diff --git a/spec/System/TestDefence_spec.lua b/spec/System/TestDefence_spec.lua index e0a0060261..dad968cf65 100644 --- a/spec/System/TestDefence_spec.lua +++ b/spec/System/TestDefence_spec.lua @@ -661,7 +661,7 @@ describe("TestDefence", function() local minionLife = build.calcsTab.mainEnv.player.allyLifeList.TotalMinionLife[1].life assert.are.equals(15, output.MinionAllyDamageMitigation) assert.are.equals(minionLife, output.TotalMinionLife) - assert.are.near(unsupportedLife * 1.6, minionLife, 20) + assert.are.near(unsupportedLife, minionLife, 20) end) it("requires exactly one summoned minion for Companionship", function() diff --git a/spec/System/TestItemParse_spec.lua b/spec/System/TestItemParse_spec.lua index d69762b330..d337f63b51 100644 --- a/spec/System/TestItemParse_spec.lua +++ b/spec/System/TestItemParse_spec.lua @@ -26,6 +26,34 @@ describe("TestItemParse", function() assert.are.equals("Plate Vest", item.baseName) end) + it("adds talisman base mods as enchants", function() + local baseName = "Test Talisman" + data.itemBases[baseName] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, talisman = true }, + req = { }, + enchant = "+10 to Strength", + enchantModTypes = { { "attribute" } }, + cannotBeAnointed = true, + } + + local item = new("Item", "Rarity: Normal\n" .. baseName) + + assert.are.equals(1, #item.enchantModLines) + assert.are.equals("+10 to Strength", item.enchantModLines[1].line) + assert.truthy(item.enchantModLines[1].crafted) + assert.truthy(item.enchantModLines[1].implicit) + assert.are.same({ "attribute" }, item.enchantModLines[1].modTags) + assert.truthy(item.base.cannotBeAnointed) + + item:BuildAndParseRaw() + assert.are.equals(1, #item.enchantModLines) + assert.truthy(item.enchantModLines[1].crafted) + assert.truthy(item.enchantModLines[1].implicit) + data.itemBases[baseName] = nil + end) + it("Two-Toned Boots", function() local item = new("Item", raw("", "Two-Toned Boots")) assert.are.equals("Two-Toned Boots (Armour/Energy Shield)", item.baseName) @@ -943,4 +971,4 @@ describe("TestAdvancedItemParse #item", function() assert.equal(8, spellDamage()) end) end) -end) \ No newline at end of file +end) diff --git a/spec/System/TestItemTools_spec.lua b/spec/System/TestItemTools_spec.lua index 8b01476c27..0652704434 100644 --- a/spec/System/TestItemTools_spec.lua +++ b/spec/System/TestItemTools_spec.lua @@ -96,4 +96,24 @@ Can be Anointed assert.are.equals("Belt", overrides[1].repSlotName) assert.are.equals("Belt", overrides[2].repSlotName) end) + + it("does not report missing anoints for non-anointable talisman bases", function() + if not common.classes.ItemsTab then + LoadModule("Classes/ItemsTab") + end + local fakeItemsTab = setmetatable({ }, common.classes.ItemsTab) + local item = { + base = { + type = "Amulet", + cannotBeAnointed = true, + }, + enchantModLines = { }, + scourgeModLines = { }, + implicitModLines = { }, + explicitModLines = { }, + crucibleModLines = { }, + } + + assert.are.equals(0, fakeItemsTab:getMissingAnointCount(item)) + end) end) diff --git a/spec/System/TestSkills_spec.lua b/spec/System/TestSkills_spec.lua index ed51fb7f3f..69b21f4677 100644 --- a/spec/System/TestSkills_spec.lua +++ b/spec/System/TestSkills_spec.lua @@ -168,10 +168,10 @@ describe("TestAttacks", function() end) it("Test cost efficiency modifiers", function() -- Test Mana Cost Efficiency - build.skillsTab:PasteSocketGroup("Ball Lightning 1/0 1\n") + build.skillsTab:PasteSocketGroup("Hydrosphere 1/0 1\n") runCallback("OnFrame") - -- Get base mana cost (Ball Lightning level 1 has 12 mana cost) + -- Get base mana cost (Hydrosphere level 1 has 12 mana cost) local baseCost = build.calcsTab.mainOutput.ManaCost assert.are.equals(12, baseCost) @@ -185,7 +185,7 @@ describe("TestAttacks", function() -- Test generic cost efficiency (should also affect mana) newBuild() - build.skillsTab:PasteSocketGroup("Ball Lightning 1/0 1\n") + build.skillsTab:PasteSocketGroup("Hydrosphere 1/0 1\n") build.configTab.input.customMods = "25% increased Cost Efficiency" build.configTab:BuildModList() runCallback("OnFrame") @@ -205,7 +205,7 @@ describe("TestAttacks", function() it("Test cost efficiency with cost modifiers", function() -- Test interaction between cost efficiency and cost multipliers - build.skillsTab:PasteSocketGroup("Ball Lightning 1/0 1\n") + build.skillsTab:PasteSocketGroup("Hydrosphere 1/0 1\n") -- Add cost multiplier and efficiency build.configTab.input.customMods = "50% increased Mana Cost\n50% increased Mana Cost Efficiency" diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua index 5b6635d0a7..3ab0e7734c 100644 --- a/src/Classes/Item.lua +++ b/src/Classes/Item.lua @@ -327,6 +327,7 @@ function ItemClass:ParseRaw(raw, rarity, highQuality) self.rawLines = { } -- Find non-blank lines and trim whitespace for line in raw:gmatch("%s*([^\n]*%S)") do + line = escapeGGGString(line) t_insert(self.rawLines, line) end local mode = rarity and "GAME" or "WIKI" @@ -1314,6 +1315,22 @@ function ItemClass:ParseRaw(raw, rarity, highQuality) self:NormaliseQuality() end end + if self.base and self.base.enchant and #self.enchantModLines == 0 then + local enchantIndex = 1 + for line in self.base.enchant:gmatch("[^\n]+") do + local modList, extra = modLib.parseMod(line) + t_insert(self.enchantModLines, { + line = line, + crafted = true, + implicit = true, + enchant = true, + extra = extra, + modList = modList or { }, + modTags = self.base.enchantModTypes and self.base.enchantModTypes[enchantIndex] or { }, + }) + enchantIndex = enchantIndex + 1 + end + end self:BuildModList() if deferJewelRadiusIndexAssignment then self.jewelRadiusIndex = self.jewelData.radiusIndex @@ -1515,6 +1532,9 @@ function ItemClass:BuildRaw() if modLine.crafted then line = "{crafted}" .. line end + if modLine.enchant then + line = "{enchant}" .. line + end if modLine.custom then line = "{custom}" .. line end diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua index e4e36724e9..12f1855091 100644 --- a/src/Classes/ItemsTab.lua +++ b/src/Classes/ItemsTab.lua @@ -61,7 +61,8 @@ for _, entry in pairs(data.flavourText) do end local function isAnointable(item) - return (item.canBeAnointed or item.base.type == "Amulet") + return item and item.base and not item.base.cannotBeAnointed + and (item.canBeAnointed or item.base.type == "Amulet") end local function buildModSortList() @@ -2627,7 +2628,7 @@ end ---@param item table @The item to inspect ---@return number @How many additional anoints can still be applied function ItemsTabClass:getMissingAnointCount(item) - if not item or not item.base or not (item.canBeAnointed or item.base.type == "Amulet") then + if not isAnointable(item) then return 0 end local maxAnoints = item.canHaveFourEnchants and 4 or item.canHaveThreeEnchants and 3 or item.canHaveTwoEnchants and 2 or 1 diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index 38ebfbb8ae..49b4dbc2ce 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -1171,6 +1171,16 @@ function PassiveSpecClass:BuildAllDependsAndPaths() jewelType = 4 elseif conqueredBy.conqueror.type == "kalguur" then jewelType = 6 + elseif conqueredBy.conqueror.type == "abyssTecrod" then + jewelType = 7 + elseif conqueredBy.conqueror.type == "abyssUlaman" then + jewelType = 8 + elseif conqueredBy.conqueror.type == "abyssKurgal" then + jewelType = 9 + elseif conqueredBy.conqueror.type == "abyssAmanamu" then + jewelType = 10 + elseif conqueredBy.conqueror.type == "abyssZorath" then + jewelType = 11 end local seed = conqueredBy.id if jewelType == 5 then diff --git a/src/Data/Bases/amulet.lua b/src/Data/Bases/amulet.lua index 6ef1be3b8a..623aa790d2 100644 --- a/src/Data/Bases/amulet.lua +++ b/src/Data/Bases/amulet.lua @@ -111,6 +111,15 @@ itemBases["Unset Amulet"] = { implicitIds = { "AmuletHasOneSocket", }, req = { level = 5, }, } +itemBases["Pearlescent Amulet"] = { + type = "Amulet", + tags = { amulet = true, default = true, not_for_sale = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicit = "+(8-10)% to all Elemental Resistances", + implicitModTypes = { { "elemental", "resistance" }, }, + implicitIds = { "AllResistancesImplicitAmulet1", }, + req = { level = 8, }, +} itemBases["Blue Pearl Amulet"] = { type = "Amulet", tags = { amulet = true, amuletatlas1 = true, atlas_base_type = true, default = true, not_for_sale = true, }, @@ -185,11 +194,10 @@ itemBases["Black Maw Talisman"] = { implicitIds = { "TalismanHasOneSocket_", }, req = { }, flavourText = { - "The First Ones stalk with us", - "upon this lifelong hunt,", - "and cast their contempt", - "upon those that would make us their prey.", - "- The Wolven King", + "\"I know where we found our belief in", + "the First Ones. I see it every time I walk", + "the untouched forests and hills. The", + "primordial world is still here. With us.\"", }, } itemBases["Bonespire Talisman"] = { @@ -202,11 +210,9 @@ itemBases["Bonespire Talisman"] = { implicitIds = { "TalismanIncreasedMana", }, req = { }, flavourText = { - "The civilised man must wrestle", - "with the demands of heart and mind.", - "The First Ones share no such struggle.", - "For their Spirit is swift and deadly certain.", - "- The Wolven King", + "\"We held our trust in the First Ones long", + "before we learned runes. Long before we", + "were shown the ways of cities and roads.\"", }, } itemBases["Ashscale Talisman"] = { @@ -219,11 +225,10 @@ itemBases["Ashscale Talisman"] = { implicitIds = { "TalismanIncreasedFireDamage", }, req = { }, flavourText = { - "The fire of the hearth is a docile dog,", - "leashed and tamed.", - "The fire of the First Ones is a ravening wolf,", - "wild and free.", - "- The Wolven King", + "\"This land was always harsh and brutal,", + "ever seeking ways to kill and maim us.", + "We had to grow and change to survive,", + "but each clan had its own ideas how...\"", }, } itemBases["Lone Antler Talisman"] = { @@ -236,11 +241,10 @@ itemBases["Lone Antler Talisman"] = { implicitIds = { "TalismanIncreasedLightningDamage", }, req = { }, flavourText = { - "The First Ones thundered over Ezomyr", - "upon hooves of grey and black.", - "The people felt their stamping rage", - "and cowered as the fury rained down.", - "- The Wolven King", + "\"A great rift formed, between clans,", + "between families. Those that remained", + "resolved to endure times of struggle,", + "if it meant we could keep our ways.\"", }, } itemBases["Deep One Talisman"] = { @@ -253,11 +257,10 @@ itemBases["Deep One Talisman"] = { implicitIds = { "TalismanIncreasedColdDamage", }, req = { }, flavourText = { - "We have basked in the cloying warmth of servitude.", - "Now the First Ones harden us", - "against the numbing chill of despair", - "so that freedom will not slip through our trembling fingers.", - "- The Wolven King", + "\"Those that departed sought the way of", + "cities and roads. Theirs would be a path", + "fraught with danger and hardship, as they", + "set out to find and build a new home.\"", }, } itemBases["Breakrib Talisman"] = { @@ -270,11 +273,10 @@ itemBases["Breakrib Talisman"] = { implicitIds = { "TalismanIncreasedPhysicalDamage", }, req = { }, flavourText = { - "I stood among the stones", - "And called out to the First Ones;", - "That with tooth and mighty claw,", - "They should tear our enemies asunder.", - "- The Wolven King", + "\"When they set out to find and build", + "Ezomyr, they encountered creatures of", + "deadly variety and intent. Many died,", + "for none yet knew how to fight back.\"", }, } itemBases["Deadhand Talisman"] = { @@ -287,11 +289,10 @@ itemBases["Deadhand Talisman"] = { implicitIds = { "TalismanIncreasedChaosDamage", }, req = { }, flavourText = { - "The Empire poisons our blood with sweet wine.", - "Poisons our flesh with silk.", - "Poisons our minds with civil lies.", - "Poisons our children with servitude.", - "- The Wolven King", + "\"Lysanda of Myr was but a girl on that exodus.", + "Ezomyr almost met its end before it began...", + "but she could not hear that deadly lure. She", + "took the Siren's head with her bare hands.\"", }, } itemBases["Undying Flesh Talisman"] = { @@ -304,11 +305,10 @@ itemBases["Undying Flesh Talisman"] = { implicitIds = { "TalismanAdditionalZombie", }, req = { }, flavourText = { - "'Sleep when you are weary,' our mothers told us.", - "'Sleep when you are dead,' our fathers told us.", - "To the First Ones, the slumbering and the corpse", - "are one and the same.", - "- The Wolven King", + "\"It turned out, Lysanda made for an excellent", + "vanguard - a light, evasive girl who could scout", + "and lead the way. The people came to see her", + "as their guide, their hope, and then... their leader.\"", }, } itemBases["Rot Head Talisman"] = { @@ -321,10 +321,10 @@ itemBases["Rot Head Talisman"] = { implicitIds = { "TalismanFishBiteSensitivity", }, req = { }, flavourText = { - "To catch a big fish you need tempting bait.", - "And there is no fish bigger than the Empire,", - "and no bait as tempting as Ezomyr.", - "- The Wolven King", + "\"Those that swore loyalty to Lysanda, that", + "forged ahead with her to clear the way.", + "became known as the first Knights...", + "armoured, battered, and courageous.\"", }, } itemBases["Mandible Talisman"] = { @@ -337,11 +337,10 @@ itemBases["Mandible Talisman"] = { implicitIds = { "TalismanAttackAndCastSpeed", }, req = { }, flavourText = { - "The First Ones hold us", - "between two sharpened blades.", - "That should we stray too far from the path,", - "we find ourselves severed.", - "- The Wolven King", + "\"Lysanda and her Knights brought the", + "settling clans to what would become", + "Ezomyr... but there was one beast against", + "which even they could not stand.\"", }, } itemBases["Chrysalis Talisman"] = { @@ -354,11 +353,10 @@ itemBases["Chrysalis Talisman"] = { implicitIds = { "TalismanSpellDamage", }, req = { }, flavourText = { - "The world of the First Ones is harsh;", - "We struggle on our bellies to survive.", - "But that which imprisons us also changes us", - "And soon we will emerge anew.", - "- The Wolven King", + "\"A great headless monstrosity with arms like", + "teeth stalked the lands they hoped to settle.", + "No other weapon would find purchase. They", + "surrounded it with fire, burning it for days.\"", }, } itemBases["Writhing Talisman"] = { @@ -371,11 +369,10 @@ itemBases["Writhing Talisman"] = { implicitIds = { "TalismanAttackDamage", }, req = { }, flavourText = { - "For too long we have crawled in darkness,", - "scavenging through rotten scraps.", - "The First Ones teach us to scavenge until we can hunt,", - "and then never crawl again.", - "- The Wolven King", + "\"With the headless beast incinerated, the", + "settlers rejoiced, and began building homes.", + "They would soon find that this hostile land", + "had more insidious ways of rejecting them.\"", }, } itemBases["Hexclaw Talisman"] = { @@ -388,11 +385,10 @@ itemBases["Hexclaw Talisman"] = { implicitIds = { "TalismanIncreasedCriticalChance", }, req = { }, flavourText = { - "The Hunter faced the First One", - "and notched his final arrow.", - "The First One bared its fangs", - "and savoured its final breath.", - "- The Wolven King", + "\"The clans had travelled to their new home", + "united, and they did love Lysanda, but some", + "men must go their own way. Those that braved", + "the inland sea settled the Isles of Skothe.\"", }, } itemBases["Primal Skull Talisman"] = { @@ -405,11 +401,10 @@ itemBases["Primal Skull Talisman"] = { implicitIds = { "TalismanPercentLifeRegeneration", }, req = { }, flavourText = { - "With the will of the first ones in our sinews", - "we shall tear down the walls of Sarn.", - "Yet as is the way of the wildlands,", - "Only the strong may grow stronger.", - "- The Wolven King", + "\"The journey was over, the land was being", + "secured, and the foundations for the first city", + "had been laid. Winter hit them with horrible", + "fury, sent not by nature, but by a curse.\"", }, } itemBases["Wereclaw Talisman"] = { @@ -422,11 +417,10 @@ itemBases["Wereclaw Talisman"] = { implicitIds = { "TalismanIncreasedCriticalStrikeMultiplier_", }, req = { }, flavourText = { - "It's said to be noble to stand one's ground.", - "To soak the earth in stalwart blood.", - "While the First Ones chose to laugh and run", - "and caper with untamed glee.", - "- The Wolven King", + "\"Against the Winter Curse, only the forges of", + "runesmiths could stand. The people huddled,", + "shoulder to shoulder, while those within were", + "pressed against the fires, screaming in agony.\"", }, } itemBases["Splitnewt Talisman"] = { @@ -439,11 +433,10 @@ itemBases["Splitnewt Talisman"] = { implicitIds = { "TalismanChanceToFreezeShockIgnite_", }, req = { }, flavourText = { - "From flesh and ferocity,", - "the First Ones roamed", - "through the realm of Spirit,", - "and into the darkness beyond.", - "- The Wolven King", + "\"And still the Winter Curse raged in through", + "every window and every door. The fathers", + "and mothers of those within let themselves", + "freeze solid, sealing the gaps with their lives.\"", }, } itemBases["Clutching Talisman"] = { @@ -456,11 +449,10 @@ itemBases["Clutching Talisman"] = { implicitIds = { "TalismanGlobalDefensesPercent", }, req = { }, flavourText = { - "Fear the children of the First Ones.", - "Let fear shield your back.", - "And let the dullard speak of bravery", - "when the First Ones come for him.", - "- The Wolven King", + "\"The night refused to end, and the Winter Curse", + "howled. The people wailed, and Lysanda raged.", + "It was then that the sky tore open, unleashing", + "a saviour fury... at the behest of the Druids.\"", }, } itemBases["Avian Twins Talisman"] = { @@ -473,11 +465,10 @@ itemBases["Avian Twins Talisman"] = { implicitIds = { "TalismanFireTakenAsCold", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman"] = { @@ -490,11 +481,10 @@ itemBases["Avian Twins Talisman"] = { implicitIds = { "TalismanFireTakenAsLightning", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman"] = { @@ -507,11 +497,10 @@ itemBases["Avian Twins Talisman"] = { implicitIds = { "TalismanColdTakenAsFire", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman"] = { @@ -524,11 +513,10 @@ itemBases["Avian Twins Talisman"] = { implicitIds = { "TalismanColdTakenAsLightning", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman"] = { @@ -541,11 +529,10 @@ itemBases["Avian Twins Talisman"] = { implicitIds = { "TalismanLightningTakenAsCold", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman"] = { @@ -558,11 +545,10 @@ itemBases["Avian Twins Talisman"] = { implicitIds = { "TalismanLightningTakenAsFire", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Fangjaw Talisman"] = { @@ -575,11 +561,10 @@ itemBases["Fangjaw Talisman"] = { implicitIds = { "TalismanIncreasedLife", }, req = { }, flavourText = { - "The First Ones are the forever ones.", - "There is no dust of the hourglass in their blood.", - "No fissures of weariness in their faces.", - "To drink of their blood is to drink of time itself.", - "- The Wolven King", + "\"As the Ezomytes of Myr prospered, they", + "needed more and spreading lands. Queen", + "Lysanda led the ongoing campaign to", + "slaughter every last creature of darkness.\"", }, } itemBases["Horned Talisman"] = { @@ -592,11 +577,10 @@ itemBases["Horned Talisman"] = { implicitIds = { "TalismanAdditionalPierce", }, req = { }, flavourText = { - "The Empire hides lies and falsehoods", - "Behind a mask of politeness and civility.", - "The First Ones teach us to look through the lies,", - "And that no beast can truly cover their tracks.", - "- The Wolven King", + "\"Each new valley, each new grove, held new", + "dangers. Many Knights paid the price. Lysanda", + "had never been known for her beauty, but she", + "bore a new scar each season, earned gladly.\"", }, } itemBases["Spinefuse Talisman"] = { @@ -609,11 +593,10 @@ itemBases["Spinefuse Talisman"] = { implicitIds = { "TalismanGlobalDamageOverTimeMultiplier", }, req = { }, flavourText = { - "We Ezomytes are beasts of burden", - "bearing wealth of an empire on our backs,", - "growing lean and strong", - "while our masters grow fat and weak.", - "- The Wolven King", + "\"Romance never interested Queen Lysanda,", + "but her advisors insisted heirs were needed.", + "To spite them, she took the Hag's only son as", + "her Consort - a quiet, pale, and strange man.\"", }, } itemBases["Three Rat Talisman"] = { @@ -626,11 +609,10 @@ itemBases["Three Rat Talisman"] = { implicitIds = { "TalismanIncreasedAllAttributes", }, req = { }, flavourText = { - "When we free ourselves from the shackles", - "of civilised existence", - "we learn to feed and run and breathe", - "as the First Ones have always done.", - "- The Wolven King", + "\"Queen Lysanda's spiteful choice of Consort", + "spited only herself. Alasdair was unlike any", + "man she had ever met. It was not long before", + "the trumpets sounded for the Royal Wedding.\"", }, } itemBases["Monkey Twins Talisman"] = { @@ -643,11 +625,10 @@ itemBases["Monkey Twins Talisman"] = { implicitIds = { "TalismanIncreasedAreaOfEffect", }, req = { }, flavourText = { - "The first ones marked their hunting grounds", - "with blood and piss.", - "We have tried to paint our future in words.", - "Now we shall paint with inks of savagery.", - "- The Wolven King", + "\"The Royal Wedding of Lysanda of Myr", + "lasted for a full month. The hunts were", + "vigorous, and the meat and drink flowed", + "freely for all. There was much rejoicing.\"", }, } itemBases["Longtooth Talisman"] = { @@ -660,11 +641,10 @@ itemBases["Longtooth Talisman"] = { implicitIds = { "TalismanReducedPhysicalDamageTaken_", }, req = { }, flavourText = { - "We grew contemptuous of our past.", - "Dismissed the first ones as ignorant and wild.", - "We were fools and naive children", - "to turn our backs on our inheritance.", - "- The Wolven King", + "\"But there were some who could not forget", + "the horrors of the Winter Curse, and of the", + "Hag that had sent it. Alasdair dropped his", + "wine goblet, and fell to the ground, choking.\"", }, } itemBases["Rotfeather Talisman"] = { @@ -677,11 +657,10 @@ itemBases["Rotfeather Talisman"] = { implicitIds = { "TalismanIncreasedDamage", }, req = { }, flavourText = { - "Death met with the First Ones", - "and demanded they hunt with mercy.", - "For while pain might delight the mind,", - "it does not fill the belly.", - "- The Wolven King", + "\"There followed a time of fear and fire.", + "None would speak against their fellows.", + "None would say who had poisoned him.", + "Lysanda's justice was swift and brutal.\"", }, } itemBases["Monkey Paw Talisman"] = { @@ -694,11 +673,10 @@ itemBases["Monkey Paw Talisman"] = { implicitIds = { "TalismanPowerChargeOnKill", }, req = { }, flavourText = { - "Look not upon me with fear, my men.", - "Though I seem strange, even monstrous,", - "were you to see with the eyes of your forebears,", - "your hearts would be filled with wonder.", - "- The Wolven King", + "\"In the years that followed, Queen Lysanda", + "poured herself into the long and brutal task", + "of securing the lands of the Ezomytes of Myr.", + "Every fell beast, every creature, had to die.\"", }, } itemBases["Monkey Paw Talisman"] = { @@ -711,11 +689,10 @@ itemBases["Monkey Paw Talisman"] = { implicitIds = { "TalismanFrenzyChargeOnKill", }, req = { }, flavourText = { - "Look not upon me with fear, my men.", - "Though I seem strange, even monstrous,", - "were you to see with the eyes of your forebears,", - "your hearts would be filled with wonder.", - "- The Wolven King", + "\"In the years that followed, Queen Lysanda", + "poured herself into the long and brutal task", + "of securing the lands of the Ezomytes of Myr.", + "Every fell beast, every creature, had to die.\"", }, } itemBases["Monkey Paw Talisman"] = { @@ -728,11 +705,10 @@ itemBases["Monkey Paw Talisman"] = { implicitIds = { "TalismanEnduranceChargeOnKill_", }, req = { }, flavourText = { - "Look not upon me with fear, my men.", - "Though I seem strange, even monstrous,", - "were you to see with the eyes of your forebears,", - "your hearts would be filled with wonder.", - "- The Wolven King", + "\"In the years that followed, Queen Lysanda", + "poured herself into the long and brutal task", + "of securing the lands of the Ezomytes of Myr.", + "Every fell beast, every creature, had to die.\"", }, } itemBases["Three Hands Talisman"] = { @@ -745,11 +721,10 @@ itemBases["Three Hands Talisman"] = { implicitIds = { "TalismanDamageDealtAddedAsRandomElement", }, req = { }, flavourText = { - "We breed thoughts of single mind,", - "fashion tools of single purpose.", - "While the First Ones bring to bear", - "anything that the wildlands provide.", - "- The Wolven King", + "\"The Blue Knight stood against the swarm,", + "icy and unassailable. His identity was not", + "known, and he never removed his helmet.", + "Glimpses were caught of piercing blue eyes.\"", }, } itemBases["Greatwolf Talisman"] = { @@ -766,6 +741,737 @@ itemBases["Greatwolf Talisman"] = { "And the king paid for it in blood.", }, } +itemBases["Chieftain Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "16% increased Area of Effect", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"I know where we found our belief in", + "the First Ones. I see it every time I walk", + "the untouched forests and hills. The", + "primordial world is still here. With us.\"", + }, +} +itemBases["Gargantuan Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "15% increased maximum Life", + enchantModTypes = { { "resource", "life" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"We held our trust in the First Ones long", + "before we learned runes. Long before we", + "were shown the ways of cities and roads.\"", + }, +} +itemBases["Goliath Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Projectiles Pierce 3 additional Targets", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"This land was always harsh and brutal,", + "ever seeking ways to kill and maim us.", + "We had to grow and change to survive,", + "but each clan had its own ideas how...\"", + }, +} +itemBases["Rhoa Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Gain 15% of Maximum Life as Extra Armour", + enchantModTypes = { { "defences" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"A great rift formed, between clans,", + "between families. Those that remained", + "resolved to endure times of struggle,", + "if it meant we could keep our ways.\"", + }, +} +itemBases["Blood Viper Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "20% increased Cooldown Recovery Rate", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Those that departed sought the way of", + "cities and roads. Theirs would be a path", + "fraught with danger and hardship, as they", + "set out to find and build a new home.\"", + }, +} +itemBases["Chimeral Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "30% increased Projectile Speed", + enchantModTypes = { { "speed" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"When they set out to find and build", + "Ezomyr, they encountered creatures of", + "deadly variety and intent. Many died,", + "for none yet knew how to fight back.\"", + }, +} +itemBases["Squid Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "30% increased maximum Mana", + enchantModTypes = { { "resource", "mana" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Lysanda of Myr was but a girl on that exodus.", + "Ezomyr almost met its end before it began...", + "but she could not hear that deadly lure. She", + "took the Siren's head with her bare hands.\"", + }, +} +itemBases["Sand Spitter Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "12% increased Movement Speed", + enchantModTypes = { { "speed" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"It turned out, Lysanda made for an excellent", + "vanguard - a light, evasive girl who could scout", + "and lead the way. The people came to see her", + "as their guide, their hope, and then... their leader.\"", + }, +} +itemBases["Shield Crab Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "30% increased Global Defences", + enchantModTypes = { { "defences" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Those that swore loyalty to Lysanda, that", + "forged ahead with her to clear the way.", + "became known as the first Knights...", + "armoured, battered, and courageous.\"", + }, +} +itemBases["Goatman Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Hits ignore Enemy Physical Damage Reduction", + enchantModTypes = { { "physical" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Lysanda and her Knights brought the", + "settling clans to what would become", + "Ezomyr... but there was one beast against", + "which even they could not stand.\"", + }, +} +itemBases["Devourer Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Damage Penetrates 15% Fire Resistance", + enchantModTypes = { { "elemental_damage", "damage", "elemental", "fire" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"A great headless monstrosity with arms like", + "teeth stalked the lands they hoped to settle.", + "No other weapon would find purchase. They", + "surrounded it with fire, burning it for days.\"", + }, +} +itemBases["Plagued Arachnid Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "35% increased Effect of Withered", + enchantModTypes = { { "chaos" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"With the headless beast incinerated, the", + "settlers rejoiced, and began building homes.", + "They would soon find that this hostile land", + "had more insidious ways of rejecting them.\"", + }, +} +itemBases["Watcher Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Damage Penetrates 15% Lightning Resistance", + enchantModTypes = { { "elemental_damage", "damage", "elemental", "lightning" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The clans had travelled to their new home", + "united, and they did love Lysanda, but some", + "men must go their own way. Those that braved", + "the inland sea settled the Isles of Skothe.\"", + }, +} +itemBases["Savage Crab Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Damage Penetrates 15% Cold Resistance", + enchantModTypes = { { "elemental_damage", "damage", "elemental", "cold" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The journey was over, the land was being", + "secured, and the foundations for the first city", + "had been laid. Winter hit them with horrible", + "fury, sent not by nature, but by a curse.\"", + }, +} +itemBases["Flame Hellion Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+4% to maximum Fire Resistance", + enchantModTypes = { { "elemental", "fire", "resistance" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Against the Winter Curse, only the forges of", + "runesmiths could stand. The people huddled,", + "shoulder to shoulder, while those within were", + "pressed against the fires, screaming in agony.\"", + }, +} +itemBases["Frost Hellion Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+4% to maximum Cold Resistance", + enchantModTypes = { { "elemental", "cold", "resistance" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"And still the Winter Curse raged in through", + "every window and every door. The fathers", + "and mothers of those within let themselves", + "freeze solid, sealing the gaps with their lives.\"", + }, +} +itemBases["Lynx Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+4% to maximum Lightning Resistance", + enchantModTypes = { { "elemental", "lightning", "resistance" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The night refused to end, and the Winter Curse", + "howled. The people wailed, and Lysanda raged.", + "It was then that the sky tore open, unleashing", + "a saviour fury... at the behest of the Druids.\"", + }, +} +itemBases["Ape Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+1 to Minimum Endurance, Frenzy and Power Charges", + enchantModTypes = { { "endurance_charge", "power_charge", "frenzy_charge" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", + }, +} +itemBases["Wolf Alpha Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+40% to Global Critical Strike Multiplier", + enchantModTypes = { { "damage", "critical" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"With the Winter Curse held at bay, Lysanda", + "and her Knights pursued the fell power that", + "had sent it... a Hag who made her lair in a", + "Tower that was ancient beyond ancient.\"", + }, +} +itemBases["Magma Hound Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Unaffected by Ignite", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"They bound the Hag of the Winter Curse", + "and set her alight, to no avail. Her cackle", + "was gleeful and wicked. Even if they slew", + "her, she boasted, she had many daughters...\"", + }, +} +itemBases["Pitbull Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Warcries Exert 1 additional Attack", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Lysanda roared, and hacked the Hag apart", + "limb by limb, not stopping until the deed", + "was done. Her daughters, however, were", + "spared... and tasked with service and duty.\"", + }, +} +itemBases["Ursa Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "30% increased Effect of your Marks", + enchantModTypes = { { "caster", "curse" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"With the Hag's daughters easing the climate,", + "an age of plenty and bounty began. Lysanda", + "revived the Phaaryl tradition of the hunt,", + "so the people never forgot their roots.\"", + }, +} +itemBases["Taurus Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+1 to Maximum Endurance Charges", + enchantModTypes = { { "endurance_charge" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The first city was completed, and others sprouted.", + "The clans came together to declare Lysanda of Myr", + "the Queen. Henceforth, they became known as the", + "Ezomytes of Myr, and their numbers swelled.\"", + }, +} +itemBases["Retch Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+1 to Maximum Power Charges", + enchantModTypes = { { "power_charge" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"As the Ezomytes of Myr prospered, they", + "needed more and spreading lands. Queen", + "Lysanda led the ongoing campaign to", + "slaughter every last creature of darkness.\"", + }, +} +itemBases["Cobra Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+1 to Maximum Frenzy Charges", + enchantModTypes = { { "frenzy_charge" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Each new valley, each new grove, held new", + "dangers. Many Knights paid the price. Lysanda", + "had never been known for her beauty, but she", + "bore a new scar each season, earned gladly.\"", + }, +} +itemBases["Carrion Queen Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+1 to maximum number of Spectres", + enchantModTypes = { { "minion" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Romance never interested Queen Lysanda,", + "but her advisors insisted heirs were needed.", + "To spite them, she took the Hag's only son as", + "her Consort - a quiet, pale, and strange man.\"", + }, +} +itemBases["Scrabbler Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+2 to Level of all Herald Skill Gems", + enchantModTypes = { { "gem" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Queen Lysanda's spiteful choice of Consort", + "spited only herself. Alasdair was unlike any", + "man she had ever met. It was not long before", + "the trumpets sounded for the Royal Wedding.\"", + }, +} +itemBases["Black Widow Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Utility Flasks gain 2 Charges every 3 seconds", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The Royal Wedding of Lysanda of Myr", + "lasted for a full month. The hunts were", + "vigorous, and the meat and drink flowed", + "freely for all. There was much rejoicing.\"", + }, +} +itemBases["Scorpion Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+20% to Damage over Time Multiplier", + enchantModTypes = { { "dot_multi", "damage" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"But there were some who could not forget", + "the horrors of the Winter Curse, and of the", + "Hag that had sent it. Alasdair dropped his", + "wine goblet, and fell to the ground, choking.\"", + }, +} +itemBases["Tiger Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "8% increased Action Speed", + enchantModTypes = { { "speed" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"There followed a time of fear and fire.", + "None would speak against their fellows.", + "None would say who had poisoned him.", + "Lysanda's justice was swift and brutal.\"", + }, +} +itemBases["Vulture Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Skills fire an additional Projectile", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"In the years that followed, Queen Lysanda", + "poured herself into the long and brutal task", + "of securing the lands of the Ezomytes of Myr.", + "Every fell beast, every creature, had to die.\"", + }, +} +itemBases["Rhex Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "100% of Cold and Lightning Damage from Hits taken as Fire Damage", + enchantModTypes = { { "elemental", "fire", "cold", "lightning" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"There began an eternal summer, as the", + "daughters of the Hag perfected their mastery", + "of the Tower. The forests became as gardens.", + "The hungry had only to pick a fruit and eat.\"", + }, +} +itemBases["Hybrid Arachnid Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Minions have +30% to Damage over Time Multiplier", + enchantModTypes = { { "damage", "minion" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Twenty-two years into Lysanda's reign, the", + "Spiders swarmed from out of the dark. Her", + "Knights were ill-equipped for this foe, and", + "the people fled in droves, seeking safety.\"", + }, +} +itemBases["Octopus Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "20% chance to Freeze Enemies for 1 second when they Hit you", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The Blue Knight stood against the swarm,", + "icy and unassailable. His identity was not", + "known, and he never removed his helmet.", + "Glimpses were caught of piercing blue eyes.\"", + }, +} +itemBases["Spider Crab Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+15% to Quality of all Skill Gems", + enchantModTypes = { { "gem" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"As deadly and dangerous creatures were", + "culled, the Queen chose to leave those", + "that were docile or beauteous. Tide pools", + "became known as places of wonder.\"", + }, +} +itemBases["Great Maw Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "15% increased Attributes", + enchantModTypes = { { "attribute" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Decades into Lysanda's reign, the", + "lands of the Ezomytes of Myr slowly", + "became known as Ezo De Myr, and", + "then simply Ezomyr. And so it was.\"", + }, +} +itemBases["Croaker Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "+1 to Level of all Skill Gems", + enchantModTypes = { { "gem" }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Ezomyr grew on a foundation of", + "choice. Its climate was chosen. Its", + "animals were chosen. For once,", + "Wraeclast was not harsh, but kind.\"", + }, +} +itemBases["Craicic Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "100% increased Aspect of the Crab Buff Effect", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The sea calmed, and contact was", + "renewed with the Isles of Skothe.", + "It was said that Craiceann had", + "given a blessing to the people.\"", + }, +} +itemBases["Fenumal Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "100% increased Aspect of the Spider Debuff Effect", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The Spiders that had been driven", + "back by the Blue Knight now sought", + "peace and cooperation. It was said", + "that Fenumus had commanded it.\"", + }, +} +itemBases["Saqawine Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "100% increased Aspect of the Avian Buff Effect", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"The skies were clear and blue, yet", + "brought rains when needed. It was", + "said that the people had proven", + "themselves to Saqawal and his flocks.\"", + }, +} +itemBases["Farric Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "100% increased Aspect of the Cat Buff Effect", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"Forty-six years into her reign, Lysanda", + "slew the last deadly creature. She smiled,", + "took a wineskin, and rode off into the forest.", + "One last hunt, it was said. Farrul would stalk", + "by her side, in this life... and the next.\"", + }, +} +itemBases["Greatwolf Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "44% increased Damage per Moon Rite completed", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "The wolf greeted the king,", + "In the light of the harvest moon.", + "The wolf offered the strength of the wild,", + "And the king paid for it in blood.", + }, +} +itemBases["Black Maw Talisman"] = { + type = "Amulet", + subType = "Talisman", + tags = { amulet = true, default = true, talisman = true, }, + influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, + implicitModTypes = { }, + enchant = "Has 1 Socket", + enchantModTypes = { { }, }, + cannotBeAnointed = true, + req = { }, + flavourText = { + "\"There are some stories that may never", + "be known, never be heard. But to history,", + "I say, let it be known the the Ezomytes", + "of Myr persevered... and built a home.\"", + }, +} itemBases["Avian Twins Talisman (Fire-To-Cold)"] = { type = "Amulet", subType = "Talisman", @@ -776,11 +1482,10 @@ itemBases["Avian Twins Talisman (Fire-To-Cold)"] = { implicitIds = { "TalismanFireTakenAsCold", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman (Fire-To-Lightning)"] = { @@ -793,11 +1498,10 @@ itemBases["Avian Twins Talisman (Fire-To-Lightning)"] = { implicitIds = { "TalismanFireTakenAsLightning", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman (Cold-To-Lightning)"] = { @@ -810,11 +1514,10 @@ itemBases["Avian Twins Talisman (Cold-To-Lightning)"] = { implicitIds = { "TalismanColdTakenAsFire", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman (Cold-To-Fire)"] = { @@ -827,11 +1530,10 @@ itemBases["Avian Twins Talisman (Cold-To-Fire)"] = { implicitIds = { "TalismanColdTakenAsLightning", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Avian Twins Talisman (Lightning-To-Cold)"] = { @@ -844,11 +1546,10 @@ itemBases["Avian Twins Talisman (Lightning-To-Cold)"] = { implicitIds = { "TalismanLightningTakenAsCold", }, req = { }, flavourText = { - "The first ones live where they can, where they must.", - "They embrace the frost, the storm, the drought.", - "Waxing and waning, breaking and mending,", - "living with time and happenstance, as must we.", - "- The Wolven King", + "\"The Druids emerged from the forests to greet", + "and warn the new settlers. This was an ancient", + "land full of mysteries and dangers. Lysanda sent", + "her best men to study and learn with them.\"", }, } itemBases["Monkey Paw Talisman (Power)"] = { @@ -861,11 +1562,10 @@ itemBases["Monkey Paw Talisman (Power)"] = { implicitIds = { "TalismanPowerChargeOnKill", }, req = { }, flavourText = { - "Look not upon me with fear, my men.", - "Though I seem strange, even monstrous,", - "were you to see with the eyes of your forebears,", - "your hearts would be filled with wonder.", - "- The Wolven King", + "\"In the years that followed, Queen Lysanda", + "poured herself into the long and brutal task", + "of securing the lands of the Ezomytes of Myr.", + "Every fell beast, every creature, had to die.\"", }, } itemBases["Monkey Paw Talisman (Frenzy)"] = { @@ -878,10 +1578,9 @@ itemBases["Monkey Paw Talisman (Frenzy)"] = { implicitIds = { "TalismanFrenzyChargeOnKill", }, req = { }, flavourText = { - "Look not upon me with fear, my men.", - "Though I seem strange, even monstrous,", - "were you to see with the eyes of your forebears,", - "your hearts would be filled with wonder.", - "- The Wolven King", + "\"In the years that followed, Queen Lysanda", + "poured herself into the long and brutal task", + "of securing the lands of the Ezomytes of Myr.", + "Every fell beast, every creature, had to die.\"", }, } diff --git a/src/Data/Bases/dagger.lua b/src/Data/Bases/dagger.lua index 4ed1de81b0..6af3961cc1 100644 --- a/src/Data/Bases/dagger.lua +++ b/src/Data/Bases/dagger.lua @@ -7,7 +7,7 @@ itemBases["Glass Shank"] = { socketLimit = 3, tags = { attack_dagger = true, dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 6, PhysicalMax = 10, CritChanceBase = 8, AttackRateBase = 1.5, Range = 10, }, @@ -18,7 +18,7 @@ itemBases["Skinning Knife"] = { socketLimit = 3, tags = { attack_dagger = true, dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 4, PhysicalMax = 17, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, @@ -29,7 +29,7 @@ itemBases["Stiletto"] = { socketLimit = 3, tags = { attack_dagger = true, dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 7, PhysicalMax = 27, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 10, }, @@ -51,7 +51,7 @@ itemBases["Flaying Knife"] = { socketLimit = 3, tags = { attack_dagger = true, dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 11, PhysicalMax = 45, CritChanceBase = 8, AttackRateBase = 1.4, Range = 10, }, @@ -62,7 +62,7 @@ itemBases["Poignard"] = { socketLimit = 3, tags = { attack_dagger = true, dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 13, PhysicalMax = 52, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 10, }, @@ -84,7 +84,7 @@ itemBases["Gutting Knife"] = { socketLimit = 3, tags = { attack_dagger = true, dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 19, PhysicalMax = 76, CritChanceBase = 9, AttackRateBase = 1.4, Range = 10, }, @@ -95,7 +95,7 @@ itemBases["Ambusher"] = { socketLimit = 3, tags = { attack_dagger = true, dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 19, PhysicalMax = 74, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 10, }, @@ -161,7 +161,7 @@ itemBases["Carving Knife"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 3, PhysicalMax = 26, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, @@ -173,7 +173,7 @@ itemBases["Boot Knife"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 8, PhysicalMax = 34, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, @@ -185,7 +185,7 @@ itemBases["Copper Kris"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "50% increased Global Critical Strike Chance", + implicit = "(60-65)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew3", }, weapon = { PhysicalMin = 10, PhysicalMax = 41, CritChanceBase = 9, AttackRateBase = 1.3, Range = 10, }, @@ -197,7 +197,7 @@ itemBases["Skean"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 11, PhysicalMax = 43, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, @@ -209,7 +209,7 @@ itemBases["Imp Dagger"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "40% increased Global Critical Strike Chance", + implicit = "(50-55)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew2", }, weapon = { PhysicalMin = 15, PhysicalMax = 59, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, @@ -221,7 +221,7 @@ itemBases["Butcher Knife"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 7, PhysicalMax = 62, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, @@ -233,7 +233,7 @@ itemBases["Boot Blade"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 15, PhysicalMax = 59, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, @@ -245,7 +245,7 @@ itemBases["Golden Kris"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "50% increased Global Critical Strike Chance", + implicit = "(60-65)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew3", }, weapon = { PhysicalMin = 19, PhysicalMax = 75, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, @@ -257,7 +257,7 @@ itemBases["Royal Skean"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 16, PhysicalMax = 64, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, @@ -269,7 +269,7 @@ itemBases["Fiend Dagger"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "40% increased Global Critical Strike Chance", + implicit = "(50-55)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew2", }, weapon = { PhysicalMin = 22, PhysicalMax = 87, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, @@ -281,7 +281,7 @@ itemBases["Slaughter Knife"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 10, PhysicalMax = 86, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, @@ -293,7 +293,7 @@ itemBases["Ezomyte Dagger"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, top_tier_base_item_type = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 20, PhysicalMax = 79, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, @@ -305,7 +305,7 @@ itemBases["Platinum Kris"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, top_tier_base_item_type = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "50% increased Global Critical Strike Chance", + implicit = "(60-65)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew3", }, weapon = { PhysicalMin = 24, PhysicalMax = 95, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, @@ -317,7 +317,7 @@ itemBases["Imperial Skean"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, top_tier_base_item_type = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "30% increased Global Critical Strike Chance", + implicit = "(40-45)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew1", }, weapon = { PhysicalMin = 18, PhysicalMax = 73, CritChanceBase = 8.5, AttackRateBase = 1.5, Range = 10, }, @@ -329,7 +329,7 @@ itemBases["Demon Dagger"] = { socketLimit = 3, tags = { dagger = true, default = true, one_hand_weapon = true, onehand = true, top_tier_base_item_type = true, weapon = true, }, influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, - implicit = "40% increased Global Critical Strike Chance", + implicit = "(50-55)% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, implicitIds = { "CriticalStrikeChanceImplicitDaggerNew2", }, weapon = { PhysicalMin = 24, PhysicalMax = 97, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, diff --git a/src/Data/Bases/ring.lua b/src/Data/Bases/ring.lua index 9f246bb209..6057c4f075 100644 --- a/src/Data/Bases/ring.lua +++ b/src/Data/Bases/ring.lua @@ -79,9 +79,9 @@ itemBases["Moonstone Ring"] = { type = "Ring", tags = { default = true, ring = true, }, influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, - implicit = "+(15-25) to maximum Energy Shield", - implicitModTypes = { { "defences", "energy_shield" }, }, - implicitIds = { "IncreasedEnergyShieldImplicitRing1", }, + implicit = "(7-10)% increased Cast Speed", + implicitModTypes = { { "caster", "speed" }, }, + implicitIds = { "IncreasedCastSpeedImplicitRing1", }, req = { level = 20, }, } itemBases["Amethyst Ring"] = { diff --git a/src/Data/Bases/staff.lua b/src/Data/Bases/staff.lua index 7a13d043ec..20b5eee360 100644 --- a/src/Data/Bases/staff.lua +++ b/src/Data/Bases/staff.lua @@ -7,7 +7,7 @@ itemBases["Gnarled Branch"] = { socketLimit = 6, tags = { default = true, small_staff = true, staff = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+20% Chance to Block Spell Damage while wielding a Staff", + implicit = "+20% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercentImplicitStaff__1", }, weapon = { PhysicalMin = 9, PhysicalMax = 19, CritChanceBase = 7.5, AttackRateBase = 1.3, Range = 13, }, @@ -18,7 +18,7 @@ itemBases["Primitive Staff"] = { socketLimit = 6, tags = { default = true, staff = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+20% Chance to Block Spell Damage while wielding a Staff", + implicit = "+20% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercentImplicitStaff__1", }, weapon = { PhysicalMin = 10, PhysicalMax = 31, CritChanceBase = 8, AttackRateBase = 1.3, Range = 13, }, @@ -29,7 +29,7 @@ itemBases["Long Staff"] = { socketLimit = 6, tags = { default = true, staff = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+20% Chance to Block Spell Damage while wielding a Staff", + implicit = "+20% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercentImplicitStaff__1", }, weapon = { PhysicalMin = 24, PhysicalMax = 41, CritChanceBase = 7.5, AttackRateBase = 1.3, Range = 13, }, @@ -40,7 +40,7 @@ itemBases["Royal Staff"] = { socketLimit = 6, tags = { default = true, staff = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+20% Chance to Block Spell Damage while wielding a Staff", + implicit = "+20% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercentImplicitStaff__1", }, weapon = { PhysicalMin = 27, PhysicalMax = 81, CritChanceBase = 8.5, AttackRateBase = 1.15, Range = 13, }, @@ -62,7 +62,7 @@ itemBases["Woodful Staff"] = { socketLimit = 6, tags = { default = true, staff = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+22% Chance to Block Spell Damage while wielding a Staff", + implicit = "+22% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercent2", }, weapon = { PhysicalMin = 34, PhysicalMax = 102, CritChanceBase = 8, AttackRateBase = 1.15, Range = 13, }, @@ -73,7 +73,7 @@ itemBases["Quarterstaff"] = { socketLimit = 6, tags = { default = true, staff = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+22% Chance to Block Spell Damage while wielding a Staff", + implicit = "+22% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercent2", }, weapon = { PhysicalMin = 51, PhysicalMax = 86, CritChanceBase = 7.5, AttackRateBase = 1.3, Range = 13, }, @@ -84,7 +84,7 @@ itemBases["Highborn Staff"] = { socketLimit = 6, tags = { default = true, staff = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+22% Chance to Block Spell Damage while wielding a Staff", + implicit = "+22% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercent2", }, weapon = { PhysicalMin = 48, PhysicalMax = 145, CritChanceBase = 8.25, AttackRateBase = 1.15, Range = 13, }, @@ -106,7 +106,7 @@ itemBases["Primordial Staff"] = { socketLimit = 6, tags = { default = true, staff = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+25% Chance to Block Spell Damage while wielding a Staff", + implicit = "+25% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercent3", }, weapon = { PhysicalMin = 55, PhysicalMax = 165, CritChanceBase = 8, AttackRateBase = 1.15, Range = 13, }, @@ -117,7 +117,7 @@ itemBases["Lathi"] = { socketLimit = 6, tags = { default = true, staff = true, top_tier_base_item_type = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+25% Chance to Block Spell Damage while wielding a Staff", + implicit = "+25% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercent3", }, weapon = { PhysicalMin = 72, PhysicalMax = 120, CritChanceBase = 7.5, AttackRateBase = 1.3, Range = 13, }, @@ -128,7 +128,7 @@ itemBases["Imperial Staff"] = { socketLimit = 6, tags = { default = true, staff = true, top_tier_base_item_type = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "staff_shaper", elder = "staff_elder", adjudicator = "staff_adjudicator", basilisk = "staff_basilisk", crusader = "staff_crusader", eyrie = "staff_eyrie", cleansing = "staff_cleansing", tangle = "staff_tangle" }, - implicit = "+25% Chance to Block Spell Damage while wielding a Staff", + implicit = "+25% Chance to Block Spell Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffSpellBlockPercent3", }, weapon = { PhysicalMin = 57, PhysicalMax = 171, CritChanceBase = 8.5, AttackRateBase = 1.15, Range = 13, }, @@ -185,7 +185,7 @@ itemBases["Iron Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+20% Chance to Block Attack Damage while wielding a Staff", + implicit = "+20% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff1", }, weapon = { PhysicalMin = 14, PhysicalMax = 42, CritChanceBase = 7.6, AttackRateBase = 1.3, Range = 13, }, @@ -197,7 +197,7 @@ itemBases["Coiled Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+20% Chance to Block Attack Damage while wielding a Staff", + implicit = "+20% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff1", }, weapon = { PhysicalMin = 27, PhysicalMax = 57, CritChanceBase = 7.7, AttackRateBase = 1.3, Range = 13, }, @@ -209,7 +209,7 @@ itemBases["Vile Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+20% Chance to Block Attack Damage while wielding a Staff", + implicit = "+20% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff1", }, weapon = { PhysicalMin = 41, PhysicalMax = 76, CritChanceBase = 7.5, AttackRateBase = 1.3, Range = 13, }, @@ -221,7 +221,7 @@ itemBases["Military Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+22% Chance to Block Attack Damage while wielding a Staff", + implicit = "+22% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff2", }, weapon = { PhysicalMin = 38, PhysicalMax = 114, CritChanceBase = 7.9, AttackRateBase = 1.25, Range = 13, }, @@ -233,7 +233,7 @@ itemBases["Serpentine Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+22% Chance to Block Attack Damage while wielding a Staff", + implicit = "+22% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff2", }, weapon = { PhysicalMin = 56, PhysicalMax = 117, CritChanceBase = 7.8, AttackRateBase = 1.25, Range = 13, }, @@ -245,7 +245,7 @@ itemBases["Foul Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+22% Chance to Block Attack Damage while wielding a Staff", + implicit = "+22% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff2", }, weapon = { PhysicalMin = 65, PhysicalMax = 121, CritChanceBase = 7.5, AttackRateBase = 1.3, Range = 13, }, @@ -257,7 +257,7 @@ itemBases["Ezomyte Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, top_tier_base_item_type = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+25% Chance to Block Attack Damage while wielding a Staff", + implicit = "+25% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff3", }, weapon = { PhysicalMin = 53, PhysicalMax = 160, CritChanceBase = 8.5, AttackRateBase = 1.25, Range = 13, }, @@ -269,7 +269,7 @@ itemBases["Maelstrom Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, top_tier_base_item_type = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+25% Chance to Block Attack Damage while wielding a Staff", + implicit = "+25% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff3", }, weapon = { PhysicalMin = 71, PhysicalMax = 147, CritChanceBase = 8.1, AttackRateBase = 1.25, Range = 13, }, @@ -281,7 +281,7 @@ itemBases["Judgement Staff"] = { socketLimit = 6, tags = { attack_staff = true, default = true, staff = true, top_tier_base_item_type = true, two_hand_weapon = true, twohand = true, warstaff = true, weapon = true, }, influenceTags = { shaper = "warstaff_shaper", elder = "warstaff_elder", adjudicator = "warstaff_adjudicator", basilisk = "warstaff_basilisk", crusader = "warstaff_crusader", eyrie = "warstaff_eyrie", cleansing = "warstaff_cleansing", tangle = "warstaff_tangle" }, - implicit = "+25% Chance to Block Attack Damage while wielding a Staff", + implicit = "+25% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, implicitIds = { "StaffBlockPercentImplicitStaff3", }, weapon = { PhysicalMin = 73, PhysicalMax = 136, CritChanceBase = 8, AttackRateBase = 1.3, Range = 13, }, diff --git a/src/Data/Bases/sword.lua b/src/Data/Bases/sword.lua index 8f24906ff0..e310eeb621 100644 --- a/src/Data/Bases/sword.lua +++ b/src/Data/Bases/sword.lua @@ -311,6 +311,15 @@ itemBases["Anarchic Spiritblade"] = { weapon = { PhysicalMin = 34, PhysicalMax = 63, CritChanceBase = 6.5, AttackRateBase = 1.6, Range = 11, }, req = { level = 70, str = 121, dex = 121, }, } +itemBases["Ghostflame Blade"] = { + type = "One Handed Sword", + socketLimit = 3, + tags = { default = true, not_for_sale = true, one_hand_weapon = true, onehand = true, sword = true, weapon = true, }, + influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, + implicitModTypes = { }, + weapon = { PhysicalMin = 21, PhysicalMax = 82, CritChanceBase = 6.5, AttackRateBase = 1.55, Range = 11, }, + req = { level = 68, str = 113, dex = 113, }, +} itemBases["Random One Hand Sword"] = { type = "One Handed Sword", socketLimit = 3, diff --git a/src/Data/Bases/wand.lua b/src/Data/Bases/wand.lua index 772d236a4b..575782f524 100644 --- a/src/Data/Bases/wand.lua +++ b/src/Data/Bases/wand.lua @@ -150,9 +150,9 @@ itemBases["Demon's Horn"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, - implicit = "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks", - implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - implicitIds = { "AddedFireDamageSpellsAndAttacksImplicit3", }, + implicit = "(30-34)% increased Spell Damage", + implicitModTypes = { { "caster_damage", "damage", "caster" }, }, + implicitIds = { "SpellDamageOnWeaponImplicitWand13", }, weapon = { PhysicalMin = 31, PhysicalMax = 57, CritChanceBase = 8, AttackRateBase = 1.4, Range = 120, }, req = { level = 56, int = 179, }, } @@ -172,9 +172,9 @@ itemBases["Opal Wand"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, - implicit = "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks", - implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - implicitIds = { "AddedColdDamageSpellsAndAttacksImplicit3", }, + implicit = "(31-35)% increased Spell Damage", + implicitModTypes = { { "caster_damage", "damage", "caster" }, }, + implicitIds = { "SpellDamageOnWeaponImplicitWand14", }, weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 62, int = 212, }, } @@ -183,9 +183,9 @@ itemBases["Tornado Wand"] = { socketLimit = 3, tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, - implicit = "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks", - implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - implicitIds = { "AddedLightningDamageSpellsAndAttacksImplicit3", }, + implicit = "(35-39)% increased Spell Damage", + implicitModTypes = { { "caster_damage", "damage", "caster" }, }, + implicitIds = { "SpellDamageOnWeaponImplicitWand16", }, weapon = { PhysicalMin = 22, PhysicalMax = 65, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 65, int = 212, }, } diff --git a/src/Data/BeastCraft.lua b/src/Data/BeastCraft.lua index d39c7093e1..cc3c7525b4 100644 --- a/src/Data/BeastCraft.lua +++ b/src/Data/BeastCraft.lua @@ -2,12 +2,16 @@ -- Item data (c) Grinding Gear Games return { - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, 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 = { 690 }, 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 = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 30 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 30 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } }, - ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 709 }, 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 = { 703 }, 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 = { 738 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 711 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, + ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 709 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 30 Aspect of the Cat Skill" }, } }, + ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 703 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 30 Aspect of the Avian Skill" }, } }, + ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 738 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } }, + ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 711 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } }, + ["GrantsBrineKingAspectCrafted"] = { type = "Suffix", affix = "of the Brine King", "Grants Level 20 Aspect of the Brine King Skill", statOrder = { 707 }, level = 20, group = "GrantsBrineKingAspect", weightKey = { "deepwater_pantheon_aspect", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3054487153] = { "Grants Level 20 Aspect of the Brine King Skill" }, } }, + ["GrantsLunarisAspectCrafted"] = { type = "Suffix", affix = "of Lunaris", "Grants Level 20 Aspect of Lunaris Skill", statOrder = { 728 }, level = 20, group = "GrantsLunarisAspect", weightKey = { "deepwater_pantheon_aspect", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [937577116] = { "Grants Level 20 Aspect of Lunaris Skill" }, } }, + ["GrantsSolarisAspectCrafted"] = { type = "Suffix", affix = "of Solaris", "Grants Level 20 Aspect of Solaris Skill", statOrder = { 737 }, level = 20, group = "GrantsSolarisAspect", weightKey = { "deepwater_pantheon_aspect", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [4280547417] = { "Grants Level 20 Aspect of Solaris Skill" }, } }, + ["GrantsArakaaliAspectCrafted"] = { type = "Suffix", affix = "of Arakaali", "Grants Level 20 Aspect of Arakaali Skill", statOrder = { 700 }, level = 20, group = "GrantsArakaaliAspect", weightKey = { "deepwater_pantheon_aspect", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1094971653] = { "Grants Level 20 Aspect of Arakaali Skill" }, } }, } \ No newline at end of file diff --git a/src/Data/ClusterJewels.lua b/src/Data/ClusterJewels.lua index 6bdbda9091..f628c78649 100644 --- a/src/Data/ClusterJewels.lua +++ b/src/Data/ClusterJewels.lua @@ -580,307 +580,307 @@ return { }, }, notableSortOrder = { - ["Prodigious Defence"] = 11259, - ["Advance Guard"] = 11260, - ["Gladiatorial Combat"] = 11261, - ["Strike Leader"] = 11262, - ["Powerful Ward"] = 11263, - ["Enduring Ward"] = 11264, - ["Gladiator's Fortitude"] = 11265, - ["Precise Retaliation"] = 11266, - ["Veteran Defender"] = 11267, - ["Iron Breaker"] = 11268, - ["Deep Cuts"] = 11269, - ["Master the Fundamentals"] = 11270, - ["Force Multiplier"] = 11271, - ["Furious Assault"] = 11272, - ["Vicious Skewering"] = 11273, - ["Grim Oath"] = 11274, - ["Battle-Hardened"] = 11275, - ["Replenishing Presence"] = 11276, - ["Master of Command"] = 11277, - ["Spiteful Presence"] = 11278, - ["Purposeful Harbinger"] = 11279, - ["Destructive Aspect"] = 11280, - ["Electric Presence"] = 11281, - ["Volatile Presence"] = 11282, - ["Righteous Path"] = 11283, - ["Skullbreaker"] = 11284, - ["Pressure Points"] = 11285, - ["Overwhelming Malice"] = 11286, - ["Magnifier"] = 11287, - ["Savage Response"] = 11288, - ["Eye of the Storm"] = 11289, - ["Basics of Pain"] = 11290, - ["Quick Getaway"] = 11291, - ["Assert Dominance"] = 11292, - ["Vast Power"] = 11293, - ["Powerful Assault"] = 11294, - ["Intensity"] = 11295, - ["Titanic Swings"] = 11296, - ["Towering Threat"] = 11297, - ["Ancestral Echo"] = 11298, - ["Ancestral Reach"] = 11299, - ["Ancestral Might"] = 11300, - ["Ancestral Preservation"] = 11301, - ["Snaring Spirits"] = 11302, - ["Sleepless Sentries"] = 11303, - ["Ancestral Guidance"] = 11304, - ["Ancestral Inspiration"] = 11305, - ["Vital Focus"] = 11306, - ["Unrestrained Focus"] = 11307, - ["Unwavering Focus"] = 11308, - ["Enduring Focus"] = 11309, - ["Precise Focus"] = 11310, - ["Stoic Focus"] = 11311, - ["Hex Breaker"] = 11312, - ["Arcane Adept"] = 11313, - ["Distilled Perfection"] = 11314, - ["Spiked Concoction"] = 11315, - ["Fasting"] = 11316, - ["Mender's Wellspring"] = 11317, - ["Special Reserve"] = 11318, - ["Numbing Elixir"] = 11319, - ["Mob Mentality"] = 11320, - ["Cry Wolf"] = 11321, - ["Haunting Shout"] = 11322, - ["Lead By Example"] = 11323, - ["Provocateur"] = 11324, - ["Warning Call"] = 11325, - ["Rattling Bellow"] = 11326, - ["Bloodscent"] = 11327, - ["Run Through"] = 11328, - ["Wound Aggravation"] = 11329, - ["Overlord"] = 11330, - ["Expansive Might"] = 11331, - ["Weight Advantage"] = 11332, - ["Wind-up"] = 11333, - ["Fan of Blades"] = 11334, - ["Disease Vector"] = 11335, - ["Arcing Shot"] = 11336, - ["Tempered Arrowheads"] = 11337, - ["Broadside"] = 11338, - ["Explosive Force"] = 11339, - ["Opportunistic Fusilade"] = 11340, - ["Storm's Hand"] = 11341, - ["Battlefield Dominator"] = 11342, - ["Martial Mastery"] = 11343, - ["Surefooted Striker"] = 11344, - ["Graceful Execution"] = 11345, - ["Brutal Infamy"] = 11346, - ["Fearsome Warrior"] = 11347, - ["Combat Rhythm"] = 11348, - ["Hit and Run"] = 11349, - ["Insatiable Killer"] = 11350, - ["Mage Bane"] = 11351, - ["Martial Momentum"] = 11352, - ["Deadly Repartee"] = 11353, - ["Quick and Deadly"] = 11354, - ["Smite the Weak"] = 11355, - ["Heavy Hitter"] = 11356, - ["Martial Prowess"] = 11357, - ["Calamitous"] = 11358, - ["Devastator"] = 11359, - ["Fuel the Fight"] = 11360, - ["Drive the Destruction"] = 11361, - ["Feed the Fury"] = 11362, - ["Seal Mender"] = 11363, - ["Conjured Wall"] = 11364, - ["Arcane Heroism"] = 11365, - ["Practiced Caster"] = 11366, - ["Burden Projection"] = 11367, - ["Thaumophage"] = 11368, - ["Essence Rush"] = 11369, - ["Sap Psyche"] = 11370, - ["Sadist"] = 11371, - ["Corrosive Elements"] = 11372, - ["Doryani's Lesson"] = 11373, - ["Disorienting Display"] = 11374, - ["Prismatic Heart"] = 11375, - ["Widespread Destruction"] = 11376, - ["Master of Fire"] = 11377, - ["Smoking Remains"] = 11378, - ["Cremator"] = 11379, - ["Snowstorm"] = 11380, - ["Storm Drinker"] = 11381, - ["Paralysis"] = 11382, - ["Supercharge"] = 11383, - ["Blanketed Snow"] = 11384, - ["Cold to the Core"] = 11385, - ["Cold-Blooded Killer"] = 11386, - ["Touch of Cruelty"] = 11387, - ["Unwaveringly Evil"] = 11388, - ["Unspeakable Gifts"] = 11389, - ["Dark Ideation"] = 11390, - ["Unholy Grace"] = 11391, - ["Wicked Pall"] = 11392, - ["Renewal"] = 11393, - ["Raze and Pillage"] = 11394, - ["Rotten Claws"] = 11395, - ["Call to the Slaughter"] = 11396, - ["Skeletal Atrophy"] = 11689, - ["Hulking Corpses"] = 11397, - ["Vicious Bite"] = 11398, - ["Primordial Bond"] = 11399, - ["Blowback"] = 11400, - ["Fan the Flames"] = 11401, - ["Cooked Alive"] = 11402, - ["Burning Bright"] = 11403, - ["Wrapped in Flame"] = 11404, - ["Vivid Hues"] = 11405, - ["Rend"] = 11406, - ["Disorienting Wounds"] = 11407, - ["Compound Injury"] = 11408, - ["Blood Artist"] = 14101, - ["Phlebotomist"] = 14102, - ["Septic Spells"] = 11409, - ["Low Tolerance"] = 11410, - ["Steady Torment"] = 11411, - ["Eternal Suffering"] = 11412, - ["Eldritch Inspiration"] = 11413, - ["Wasting Affliction"] = 11414, - ["Haemorrhage"] = 11415, - ["Flow of Life"] = 11416, - ["Exposure Therapy"] = 11417, - ["Brush with Death"] = 11418, - ["Vile Reinvigoration"] = 11419, - ["Circling Oblivion"] = 11420, - ["Brewed for Potency"] = 11421, - ["Astonishing Affliction"] = 11422, - ["Cold Conduction"] = 11423, - ["Inspired Oppression"] = 11424, - ["Chilling Presence"] = 11425, - ["Deep Chill"] = 11426, - ["Blast-Freeze"] = 11427, - ["Thunderstruck"] = 11428, - ["Stormrider"] = 11429, - ["Overshock"] = 11430, - ["Evil Eye"] = 11431, - ["Evil Eye"] = 11432, - ["Forbidden Words"] = 11433, - ["Doedre's Spite"] = 11434, - ["Victim Maker"] = 11435, - ["Master of Fear"] = 11436, - ["Wish for Death"] = 11437, - ["Heraldry"] = 11438, - ["Endbringer"] = 11439, - ["Cult-Leader"] = 11440, - ["Empowered Envoy"] = 11441, - ["Dark Messenger"] = 11442, - ["Agent of Destruction"] = 11443, - ["Lasting Impression"] = 11444, - ["Self-Fulfilling Prophecy"] = 11445, - ["Invigorating Portents"] = 11446, - ["Pure Agony"] = 11447, - ["Disciples"] = 11448, - ["Dread March"] = 11449, - ["Blessed Rebirth"] = 11450, - ["Life from Death"] = 11451, - ["Feasting Fiends"] = 11452, - ["Bodyguards"] = 11453, - ["Follow-Through"] = 11454, - ["Streamlined"] = 11455, - ["Shrieking Bolts"] = 11456, - ["Eye to Eye"] = 11457, - ["Repeater"] = 11458, - ["Aerodynamics"] = 11459, - ["Chip Away"] = 11460, - ["Seeker Runes"] = 11461, - ["Remarkable"] = 11462, - ["Brand Loyalty"] = 11463, - ["Holy Conquest"] = 11464, - ["Grand Design"] = 11465, - ["Set and Forget"] = 11466, - ["Expert Sabotage"] = 11467, - ["Guerilla Tactics"] = 11468, - ["Expendability"] = 11469, - ["Arcane Pyrotechnics"] = 11470, - ["Surprise Sabotage"] = 11471, - ["Careful Handling"] = 11472, - ["Peak Vigour"] = 11473, - ["Fettle"] = 11474, - ["Feast of Flesh"] = 11475, - ["Sublime Sensation"] = 11476, - ["Surging Vitality"] = 11477, - ["Peace Amidst Chaos"] = 11478, - ["Adrenaline"] = 11479, - ["Wall of Muscle"] = 11480, - ["Mindfulness"] = 11481, - ["Liquid Inspiration"] = 11482, - ["Openness"] = 11483, - ["Daring Ideas"] = 11484, - ["Clarity of Purpose"] = 11485, - ["Scintillating Idea"] = 11486, - ["Holistic Health"] = 11487, - ["Genius"] = 11488, - ["Improvisor"] = 11489, - ["Stubborn Student"] = 11490, - ["Savour the Moment"] = 11491, - ["Energy From Naught"] = 11492, - ["Will Shaper"] = 11493, - ["Spring Back"] = 11494, - ["Conservation of Energy"] = 11495, - ["Heart of Iron"] = 11496, - ["Prismatic Carapace"] = 11497, - ["Militarism"] = 11498, - ["Second Skin"] = 11499, - ["Dragon Hunter"] = 11500, - ["Enduring Composure"] = 11501, - ["Prismatic Dance"] = 11502, - ["Natural Vigour"] = 11503, - ["Untouchable"] = 11504, - ["Shifting Shadow"] = 11505, - ["Readiness"] = 11506, - ["Confident Combatant"] = 11507, - ["Flexible Sentry"] = 11508, - ["Vicious Guard"] = 11509, - ["Mystical Ward"] = 11510, - ["Rote Reinforcement"] = 11511, - ["Mage Hunter"] = 11512, - ["Riot Queller"] = 11513, - ["One with the Shield"] = 11514, - ["Aerialist"] = 11515, - ["Elegant Form"] = 11516, - ["Darting Movements"] = 11517, - ["No Witnesses"] = 11518, - ["Molten One's Mark"] = 11519, - ["Fire Attunement"] = 11520, - ["Pure Might"] = 11521, - ["Blacksmith"] = 11522, - ["Non-Flammable"] = 11523, - ["Winter Prowler"] = 11524, - ["Hibernator"] = 11525, - ["Pure Guile"] = 11526, - ["Alchemist"] = 11527, - ["Antifreeze"] = 11528, - ["Wizardry"] = 11529, - ["Capacitor"] = 11530, - ["Pure Aptitude"] = 11531, - ["Sage"] = 11532, - ["Insulated"] = 11533, - ["Born of Chaos"] = 11534, - ["Antivenom"] = 11535, - ["Rot-Resistant"] = 11536, - ["Blessed"] = 11537, - ["Student of Decay"] = 11538, - ["Lord of Drought"] = 12386, - ["Blizzard Caller"] = 12387, - ["Tempt the Storm"] = 12388, - ["Misery Everlasting"] = 12389, - ["Exploit Weakness"] = 12390, - ["Self-Control"] = 12395, - ["Uncompromising"] = 12396, - ["Sublime Form"] = 12397, - ["Mortifying Aspect"] = 12453, - ["Frantic Aspect"] = 12454, - ["Introspection"] = 12455, - ["Hound's Mark"] = 12391, - ["Doedre's Gluttony"] = 12392, - ["Doedre's Apathy"] = 12393, - ["Master of the Maelstrom"] = 12394, - ["Aggressive Defence"] = 15566, - ["Holy Word"] = 22668, - ["Fiery Aegis"] = 22669, + ["Prodigious Defence"] = 11281, + ["Advance Guard"] = 11282, + ["Gladiatorial Combat"] = 11283, + ["Strike Leader"] = 11284, + ["Powerful Ward"] = 11285, + ["Enduring Ward"] = 11286, + ["Gladiator's Fortitude"] = 11287, + ["Precise Retaliation"] = 11288, + ["Veteran Defender"] = 11289, + ["Iron Breaker"] = 11290, + ["Deep Cuts"] = 11291, + ["Master the Fundamentals"] = 11292, + ["Force Multiplier"] = 11293, + ["Furious Assault"] = 11294, + ["Vicious Skewering"] = 11295, + ["Grim Oath"] = 11296, + ["Battle-Hardened"] = 11297, + ["Replenishing Presence"] = 11298, + ["Master of Command"] = 11299, + ["Spiteful Presence"] = 11300, + ["Purposeful Harbinger"] = 11301, + ["Destructive Aspect"] = 11302, + ["Electric Presence"] = 11303, + ["Volatile Presence"] = 11304, + ["Righteous Path"] = 11305, + ["Skullbreaker"] = 11306, + ["Pressure Points"] = 11307, + ["Overwhelming Malice"] = 11308, + ["Magnifier"] = 11309, + ["Savage Response"] = 11310, + ["Eye of the Storm"] = 11311, + ["Basics of Pain"] = 11312, + ["Quick Getaway"] = 11313, + ["Assert Dominance"] = 11314, + ["Vast Power"] = 11315, + ["Powerful Assault"] = 11316, + ["Intensity"] = 11317, + ["Titanic Swings"] = 11318, + ["Towering Threat"] = 11319, + ["Ancestral Echo"] = 11320, + ["Ancestral Reach"] = 11321, + ["Ancestral Might"] = 11322, + ["Ancestral Preservation"] = 11323, + ["Snaring Spirits"] = 11324, + ["Sleepless Sentries"] = 11325, + ["Ancestral Guidance"] = 11326, + ["Ancestral Inspiration"] = 11327, + ["Vital Focus"] = 11328, + ["Unrestrained Focus"] = 11329, + ["Unwavering Focus"] = 11330, + ["Enduring Focus"] = 11331, + ["Precise Focus"] = 11332, + ["Stoic Focus"] = 11333, + ["Hex Breaker"] = 11334, + ["Arcane Adept"] = 11335, + ["Distilled Perfection"] = 11336, + ["Spiked Concoction"] = 11337, + ["Fasting"] = 11338, + ["Mender's Wellspring"] = 11339, + ["Special Reserve"] = 11340, + ["Numbing Elixir"] = 11341, + ["Mob Mentality"] = 11342, + ["Cry Wolf"] = 11343, + ["Haunting Shout"] = 11344, + ["Lead By Example"] = 11345, + ["Provocateur"] = 11346, + ["Warning Call"] = 11347, + ["Rattling Bellow"] = 11348, + ["Bloodscent"] = 11349, + ["Run Through"] = 11350, + ["Wound Aggravation"] = 11351, + ["Overlord"] = 11352, + ["Expansive Might"] = 11353, + ["Weight Advantage"] = 11354, + ["Wind-up"] = 11355, + ["Fan of Blades"] = 11356, + ["Disease Vector"] = 11357, + ["Arcing Shot"] = 11358, + ["Tempered Arrowheads"] = 11359, + ["Broadside"] = 11360, + ["Explosive Force"] = 11361, + ["Opportunistic Fusilade"] = 11362, + ["Storm's Hand"] = 11363, + ["Battlefield Dominator"] = 11364, + ["Martial Mastery"] = 11365, + ["Surefooted Striker"] = 11366, + ["Graceful Execution"] = 11367, + ["Brutal Infamy"] = 11368, + ["Fearsome Warrior"] = 11369, + ["Combat Rhythm"] = 11370, + ["Hit and Run"] = 11371, + ["Insatiable Killer"] = 11372, + ["Mage Bane"] = 11373, + ["Martial Momentum"] = 11374, + ["Deadly Repartee"] = 11375, + ["Quick and Deadly"] = 11376, + ["Smite the Weak"] = 11377, + ["Heavy Hitter"] = 11378, + ["Martial Prowess"] = 11379, + ["Calamitous"] = 11380, + ["Devastator"] = 11381, + ["Fuel the Fight"] = 11382, + ["Drive the Destruction"] = 11383, + ["Feed the Fury"] = 11384, + ["Seal Mender"] = 11385, + ["Conjured Wall"] = 11386, + ["Arcane Heroism"] = 11387, + ["Practiced Caster"] = 11388, + ["Burden Projection"] = 11389, + ["Thaumophage"] = 11390, + ["Essence Rush"] = 11391, + ["Sap Psyche"] = 11392, + ["Sadist"] = 11393, + ["Corrosive Elements"] = 11394, + ["Doryani's Lesson"] = 11395, + ["Disorienting Display"] = 11396, + ["Prismatic Heart"] = 11397, + ["Widespread Destruction"] = 11398, + ["Master of Fire"] = 11399, + ["Smoking Remains"] = 11400, + ["Cremator"] = 11401, + ["Snowstorm"] = 11402, + ["Storm Drinker"] = 11403, + ["Paralysis"] = 11404, + ["Supercharge"] = 11405, + ["Blanketed Snow"] = 11406, + ["Cold to the Core"] = 11407, + ["Cold-Blooded Killer"] = 11408, + ["Touch of Cruelty"] = 11409, + ["Unwaveringly Evil"] = 11410, + ["Unspeakable Gifts"] = 11411, + ["Dark Ideation"] = 11412, + ["Unholy Grace"] = 11413, + ["Wicked Pall"] = 11414, + ["Renewal"] = 11415, + ["Raze and Pillage"] = 11416, + ["Rotten Claws"] = 11417, + ["Call to the Slaughter"] = 11418, + ["Skeletal Atrophy"] = 11711, + ["Hulking Corpses"] = 11419, + ["Vicious Bite"] = 11420, + ["Primordial Bond"] = 11421, + ["Blowback"] = 11422, + ["Fan the Flames"] = 11423, + ["Cooked Alive"] = 11424, + ["Burning Bright"] = 11425, + ["Wrapped in Flame"] = 11426, + ["Vivid Hues"] = 11427, + ["Rend"] = 11428, + ["Disorienting Wounds"] = 11429, + ["Compound Injury"] = 11430, + ["Blood Artist"] = 14136, + ["Phlebotomist"] = 14137, + ["Septic Spells"] = 11431, + ["Low Tolerance"] = 11432, + ["Steady Torment"] = 11433, + ["Eternal Suffering"] = 11434, + ["Eldritch Inspiration"] = 11435, + ["Wasting Affliction"] = 11436, + ["Haemorrhage"] = 11437, + ["Flow of Life"] = 11438, + ["Exposure Therapy"] = 11439, + ["Brush with Death"] = 11440, + ["Vile Reinvigoration"] = 11441, + ["Circling Oblivion"] = 11442, + ["Brewed for Potency"] = 11443, + ["Astonishing Affliction"] = 11444, + ["Cold Conduction"] = 11445, + ["Inspired Oppression"] = 11446, + ["Chilling Presence"] = 11447, + ["Deep Chill"] = 11448, + ["Blast-Freeze"] = 11449, + ["Thunderstruck"] = 11450, + ["Stormrider"] = 11451, + ["Overshock"] = 11452, + ["Evil Eye"] = 11453, + ["Evil Eye"] = 11454, + ["Forbidden Words"] = 11455, + ["Doedre's Spite"] = 11456, + ["Victim Maker"] = 11457, + ["Master of Fear"] = 11458, + ["Wish for Death"] = 11459, + ["Heraldry"] = 11460, + ["Endbringer"] = 11461, + ["Cult-Leader"] = 11462, + ["Empowered Envoy"] = 11463, + ["Dark Messenger"] = 11464, + ["Agent of Destruction"] = 11465, + ["Lasting Impression"] = 11466, + ["Self-Fulfilling Prophecy"] = 11467, + ["Invigorating Portents"] = 11468, + ["Pure Agony"] = 11469, + ["Disciples"] = 11470, + ["Dread March"] = 11471, + ["Blessed Rebirth"] = 11472, + ["Life from Death"] = 11473, + ["Feasting Fiends"] = 11474, + ["Bodyguards"] = 11475, + ["Follow-Through"] = 11476, + ["Streamlined"] = 11477, + ["Shrieking Bolts"] = 11478, + ["Eye to Eye"] = 11479, + ["Repeater"] = 11480, + ["Aerodynamics"] = 11481, + ["Chip Away"] = 11482, + ["Seeker Runes"] = 11483, + ["Remarkable"] = 11484, + ["Brand Loyalty"] = 11485, + ["Holy Conquest"] = 11486, + ["Grand Design"] = 11487, + ["Set and Forget"] = 11488, + ["Expert Sabotage"] = 11489, + ["Guerilla Tactics"] = 11490, + ["Expendability"] = 11491, + ["Arcane Pyrotechnics"] = 11492, + ["Surprise Sabotage"] = 11493, + ["Careful Handling"] = 11494, + ["Peak Vigour"] = 11495, + ["Fettle"] = 11496, + ["Feast of Flesh"] = 11497, + ["Sublime Sensation"] = 11498, + ["Surging Vitality"] = 11499, + ["Peace Amidst Chaos"] = 11500, + ["Adrenaline"] = 11501, + ["Wall of Muscle"] = 11502, + ["Mindfulness"] = 11503, + ["Liquid Inspiration"] = 11504, + ["Openness"] = 11505, + ["Daring Ideas"] = 11506, + ["Clarity of Purpose"] = 11507, + ["Scintillating Idea"] = 11508, + ["Holistic Health"] = 11509, + ["Genius"] = 11510, + ["Improvisor"] = 11511, + ["Stubborn Student"] = 11512, + ["Savour the Moment"] = 11513, + ["Energy From Naught"] = 11514, + ["Will Shaper"] = 11515, + ["Spring Back"] = 11516, + ["Conservation of Energy"] = 11517, + ["Heart of Iron"] = 11518, + ["Prismatic Carapace"] = 11519, + ["Militarism"] = 11520, + ["Second Skin"] = 11521, + ["Dragon Hunter"] = 11522, + ["Enduring Composure"] = 11523, + ["Prismatic Dance"] = 11524, + ["Natural Vigour"] = 11525, + ["Untouchable"] = 11526, + ["Shifting Shadow"] = 11527, + ["Readiness"] = 11528, + ["Confident Combatant"] = 11529, + ["Flexible Sentry"] = 11530, + ["Vicious Guard"] = 11531, + ["Mystical Ward"] = 11532, + ["Rote Reinforcement"] = 11533, + ["Mage Hunter"] = 11534, + ["Riot Queller"] = 11535, + ["One with the Shield"] = 11536, + ["Aerialist"] = 11537, + ["Elegant Form"] = 11538, + ["Darting Movements"] = 11539, + ["No Witnesses"] = 11540, + ["Molten One's Mark"] = 11541, + ["Fire Attunement"] = 11542, + ["Pure Might"] = 11543, + ["Blacksmith"] = 11544, + ["Non-Flammable"] = 11545, + ["Winter Prowler"] = 11546, + ["Hibernator"] = 11547, + ["Pure Guile"] = 11548, + ["Alchemist"] = 11549, + ["Antifreeze"] = 11550, + ["Wizardry"] = 11551, + ["Capacitor"] = 11552, + ["Pure Aptitude"] = 11553, + ["Sage"] = 11554, + ["Insulated"] = 11555, + ["Born of Chaos"] = 11556, + ["Antivenom"] = 11557, + ["Rot-Resistant"] = 11558, + ["Blessed"] = 11559, + ["Student of Decay"] = 11560, + ["Lord of Drought"] = 12410, + ["Blizzard Caller"] = 12411, + ["Tempt the Storm"] = 12412, + ["Misery Everlasting"] = 12413, + ["Exploit Weakness"] = 12414, + ["Self-Control"] = 12419, + ["Uncompromising"] = 12420, + ["Sublime Form"] = 12421, + ["Mortifying Aspect"] = 12477, + ["Frantic Aspect"] = 12478, + ["Introspection"] = 12479, + ["Hound's Mark"] = 12415, + ["Doedre's Gluttony"] = 12416, + ["Doedre's Apathy"] = 12417, + ["Master of the Maelstrom"] = 12418, + ["Aggressive Defence"] = 15606, + ["Holy Word"] = 22726, + ["Fiery Aegis"] = 22727, }, keystones = { "Disciple of Kitava", diff --git a/src/Data/Crucible.lua b/src/Data/Crucible.lua index 3bb94d38e6..42ca8afa19 100644 --- a/src/Data/Crucible.lua +++ b/src/Data/Crucible.lua @@ -2,1747 +2,1747 @@ -- Item data (c) Grinding Gear Games return { - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 7 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 11 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 6 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 8 to 19 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 20 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 11 to 25 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 14 to 33 Physical Damage", "6% reduced Attack Speed", statOrder = { 1276, 1413 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 8 Physical Damage", statOrder = { 1276 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", statOrder = { 1276 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", statOrder = { 1276 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", statOrder = { 1276 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Physical Damage", statOrder = { 1276 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 6 to 11 Physical Damage", statOrder = { 1276 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 7 to 16 Physical Damage", statOrder = { 1276 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 8 to 19 Physical Damage", statOrder = { 1276 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 11 to 26 Physical Damage", statOrder = { 1276 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1276, 1955 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1276, 1957 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1276, 1959 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1276, 1962 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1276, 1961 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1276, 7861 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 5 to 9 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 27 to 42 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 55 to 83 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 9 to 14 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 16 to 24 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 30 to 47 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 52 to 77 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 102 to 153 Fire Damage", "6% reduced Attack Speed", statOrder = { 1362, 1413 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage", statOrder = { 1362 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Fire Damage", statOrder = { 1362 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire3"] = { type = "Spawn", tier = 3, "Adds 13 to 18 Fire Damage", statOrder = { 1362 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire4"] = { type = "Spawn", tier = 4, "Adds 22 to 32 Fire Damage", statOrder = { 1362 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire5"] = { type = "Spawn", tier = 5, "Adds 42 to 63 Fire Damage", statOrder = { 1362 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 8 to 10 Fire Damage", statOrder = { 1362 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 13 to 19 Fire Damage", statOrder = { 1362 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", statOrder = { 1362 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 39 to 61 Fire Damage", statOrder = { 1362 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 78 to 118 Fire Damage", statOrder = { 1362 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 12 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 25 to 39 Fire Damage", "10% chance to Ignite", statOrder = { 1362, 2026 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 22 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 36 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 48 to 71 Fire Damage", "20% chance to Ignite", statOrder = { 1362, 2026 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 5 Fire Damage", statOrder = { 58, 1362 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 3 to 6 Fire Damage", statOrder = { 58, 1362 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 7 to 12 Fire Damage", statOrder = { 58, 1362 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 12 to 19 Fire Damage", statOrder = { 58, 1362 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 25 to 39 Fire Damage", statOrder = { 58, 1362 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage", statOrder = { 58, 1362 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 7 to 11 Fire Damage", statOrder = { 58, 1362 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 13 to 22 Fire Damage", statOrder = { 58, 1362 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 23 to 36 Fire Damage", statOrder = { 58, 1362 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 48 to 71 Fire Damage", statOrder = { 58, 1362 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 52 to 78 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 8 to 14 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 14 to 23 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 28 to 44 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 47 to 73 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 95 to 144 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1371, 2886 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", statOrder = { 1371 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Cold Damage", statOrder = { 1371 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Cold Damage", statOrder = { 1371 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Cold Damage", statOrder = { 1371 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold5"] = { type = "Spawn", tier = 5, "Adds 41 to 60 Cold Damage", statOrder = { 1371 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage", statOrder = { 1371 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Cold Damage", statOrder = { 1371 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Cold Damage", statOrder = { 1371 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Cold Damage", statOrder = { 1371 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 74 to 111 Cold Damage", statOrder = { 1371 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "10% chance to Freeze", statOrder = { 1371, 2029 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "20% chance to Freeze", statOrder = { 1371, 2029 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "4% increased Attack Speed", statOrder = { 1371, 1413 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 20 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 41 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 3 to 66 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 7 to 132 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 21 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 38 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 3 to 75 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 6 to 124 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 13 to 242 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1382, 3388 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage", statOrder = { 1382 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 17 Lightning Damage", statOrder = { 1382 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 30 Lightning Damage", statOrder = { 1382 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 3 to 51 Lightning Damage", statOrder = { 1382 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 6 to 101 Lightning Damage", statOrder = { 1382 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage", statOrder = { 1382 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 29 Lightning Damage", statOrder = { 1382 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 3 to 58 Lightning Damage", statOrder = { 1382 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 4 to 94 Lightning Damage", statOrder = { 1382 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 10 to 186 Lightning Damage", statOrder = { 1382 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% chance to Shock", statOrder = { 1382, 2033 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "20% chance to Shock", statOrder = { 1382, 2033 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1382, 1464 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 19 to 31 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Chaos Damage", "5% reduced maximum Life", statOrder = { 1390, 1571 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 20 to 30 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 34 to 51 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 66 to 99 Chaos Damage", "7% reduced maximum Life", statOrder = { 1390, 1571 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Chaos Damage", statOrder = { 1390 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Chaos Damage", statOrder = { 1390 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage", statOrder = { 1390 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", statOrder = { 1390 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 29 to 46 Chaos Damage", statOrder = { 1390 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", statOrder = { 1390 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 13 Chaos Damage", statOrder = { 1390 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Chaos Damage", statOrder = { 1390 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Chaos Damage", statOrder = { 1390 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 50 to 77 Chaos Damage", statOrder = { 1390 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1390, 8003 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1390, 10626 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 1 to 19 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 12 to 18 Fire Damage", "Adds 12 to 18 Cold Damage", "Adds 3 to 29 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 3 to 55 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 14 to 23 Fire Damage", "Adds 14 to 23 Cold Damage", "Adds 3 to 33 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 23 to 34 Fire Damage", "Adds 23 to 34 Cold Damage", "Adds 4 to 56 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 43 to 64 Fire Damage", "Adds 43 to 64 Cold Damage", "Adds 6 to 102 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Fire Damage", "Adds 5 to 10 Cold Damage", "Adds 1 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2"] = { type = "Spawn", tier = 2, "Adds 9 to 15 Fire Damage", "Adds 9 to 15 Cold Damage", "Adds 1 to 23 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental3"] = { type = "Spawn", tier = 3, "Adds 18 to 27 Fire Damage", "Adds 18 to 27 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h1"] = { type = "Spawn", tier = 1, "Adds 10 to 17 Fire Damage", "Adds 10 to 17 Cold Damage", "Adds 3 to 26 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h2"] = { type = "Spawn", tier = 2, "Adds 17 to 26 Fire Damage", "Adds 17 to 26 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h3"] = { type = "Spawn", tier = 3, "Adds 34 to 49 Fire Damage", "Adds 34 to 49 Cold Damage", "Adds 4 to 78 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage", "Adds 6 to 10 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 20 Fire Damage", "Adds 13 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 12 to 20 Fire Damage", "Adds 12 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 4 to 9 Fire Damage", "Adds 4 to 9 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 11 to 15 Fire Damage", "Adds 11 to 15 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage", "Adds 7 to 10 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 9 to 17 Fire Damage", "Adds 9 to 17 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 20 to 29 Fire Damage", "Adds 20 to 29 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1362, 1371, 1382 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1403, 1446 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Physical Damage to Spells", statOrder = { 1403 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Physical Damage to Spells", statOrder = { 1403 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", statOrder = { 1403 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Physical Damage to Spells", statOrder = { 1403 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Physical Damage to Spells", statOrder = { 1403 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Physical Damage to Spells", statOrder = { 1403 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Physical Damage to Spells", statOrder = { 1403 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Physical Damage to Spells", statOrder = { 1403 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1403, 1955 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1403, 1957 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1403, 1959 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1403, 1962 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1403, 2978 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 11 to 17 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 73 to 109 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1404, 1446 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire5"] = { type = "Spawn", tier = 5, "Adds 30 to 45 Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 28 to 43 Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 56 to 84 Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 9 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1404, 2026 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 16 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 26 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 34 to 51 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1404, 2026 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 3 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 2 to 4 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 8 to 14 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 18 to 28 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 2 to 6 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 5 to 8 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 9 to 16 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 16 to 26 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 34 to 51 Fire Damage to Spells", statOrder = { 58, 1404 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 37 to 56 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 10 to 16 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 20 to 32 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 34 to 52 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 68 to 103 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1405, 2886 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2"] = { type = "Spawn", tier = 2, "Adds 3 to 7 Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold4"] = { type = "Spawn", tier = 4, "Adds 14 to 21 Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold5"] = { type = "Spawn", tier = 5, "Adds 29 to 43 Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 40 Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 53 to 79 Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1405, 2029 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1405, 2029 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1405, 1446 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1405, 1446 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 15 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 29 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 2 to 48 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 5 to 94 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 28 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 2 to 53 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 4 to 88 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 9 to 173 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1406, 3388 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 22 Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 2 to 37 Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 4 to 72 Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 21 Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 2 to 41 Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 3 to 68 Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 7 to 133 Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1406, 2033 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1406, 2033 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1406, 1458 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1407, 1571 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1407, 1571 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage to Spells", statOrder = { 1407 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Chaos Damage to Spells", statOrder = { 1407 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Chaos Damage to Spells", statOrder = { 1407 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", statOrder = { 1407 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Chaos Damage to Spells", statOrder = { 1407 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Chaos Damage to Spells", statOrder = { 1407 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1407, 10191 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1407, 10626 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "14% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "21% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "28% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "35% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "42% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "22% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "34% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "45% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "56% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "68% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1223, 1458 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["SpellDamage1"] = { tier = 1, "(3-7)% increased Spell Damage", statOrder = { 1223 }, level = 5, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage2"] = { tier = 2, "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 20, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage3"] = { tier = 3, "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 38, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage4"] = { tier = 4, "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 56, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage5"] = { tier = 5, "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 76, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["WeaponTreeSpellDamage2h1"] = { type = "Spawn", tier = 1, "16% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h2"] = { type = "Spawn", tier = 2, "24% increased Spell Damage", statOrder = { 1223 }, level = 21, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h3"] = { type = "Spawn", tier = 3, "32% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h4"] = { type = "Spawn", tier = 4, "40% increased Spell Damage", statOrder = { 1223 }, level = 65, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h5"] = { type = "Spawn", tier = 5, "48% increased Spell Damage", statOrder = { 1223 }, level = 77, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1223, 1580 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1223, 1580 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1223, 1561 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "14% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "21% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "28% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "35% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "42% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "22% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "34% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "45% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "56% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "68% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1210, 1578 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime1"] = { type = "Spawn", tier = 1, "10% increased Damage over Time", statOrder = { 1210 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2"] = { type = "Spawn", tier = 2, "15% increased Damage over Time", statOrder = { 1210 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime3"] = { type = "Spawn", tier = 3, "20% increased Damage over Time", statOrder = { 1210 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime4"] = { type = "Spawn", tier = 4, "25% increased Damage over Time", statOrder = { 1210 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime5"] = { type = "Spawn", tier = 5, "30% increased Damage over Time", statOrder = { 1210 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h1"] = { type = "Spawn", tier = 1, "16% increased Damage over Time", statOrder = { 1210 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h2"] = { type = "Spawn", tier = 2, "24% increased Damage over Time", statOrder = { 1210 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h3"] = { type = "Spawn", tier = 3, "32% increased Damage over Time", statOrder = { 1210 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h4"] = { type = "Spawn", tier = 4, "40% increased Damage over Time", statOrder = { 1210 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h5"] = { type = "Spawn", tier = 5, "48% increased Damage over Time", statOrder = { 1210 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1210, 1895 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1210, 4985 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 22 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 28 to 42 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 14 to 22 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 24 to 37 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 47 to 71 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3773, 9270 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Physical Damage", statOrder = { 3773 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Physical Damage", statOrder = { 3773 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Physical Damage", statOrder = { 3773 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", statOrder = { 3773 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Physical Damage", statOrder = { 3773 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", statOrder = { 3773 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Physical Damage", statOrder = { 3773 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Physical Damage", statOrder = { 3773 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Physical Damage", statOrder = { 3773 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Physical Damage", statOrder = { 3773 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1956, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1956, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1956, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1956, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1956, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1956, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1956, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1956, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1956, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1956, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1958, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1958, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1958, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1958, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1958, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1958, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1958, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1958, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1958, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1958, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1960, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1960, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1960, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1960, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1960, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1960, 3773 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1960, 3773 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1960, 3773 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1960, 3773 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1960, 3773 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1963, 3773 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1963, 3773 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1963, 3773 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1963, 3773 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1963, 3773 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1963, 3773 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1963, 3773 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1963, 3773 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1963, 3773 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1963, 3773 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 6 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 6 to 10 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 13 to 20 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 6 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 7 to 10 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 22 to 33 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3773, 9343 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3771, 9270 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Fire Damage", statOrder = { 3771 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3771 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 14 additional Fire Damage", statOrder = { 3771 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire4"] = { type = "Spawn", tier = 4, "Minions deal 15 to 24 additional Fire Damage", statOrder = { 3771 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire5"] = { type = "Spawn", tier = 5, "Minions deal 30 to 45 additional Fire Damage", statOrder = { 3771 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3771 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h2"] = { type = "Spawn", tier = 2, "Minions deal 9 to 13 additional Fire Damage", statOrder = { 3771 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h3"] = { type = "Spawn", tier = 3, "Minions deal 16 to 26 additional Fire Damage", statOrder = { 3771 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h4"] = { type = "Spawn", tier = 4, "Minions deal 28 to 43 additional Fire Damage", statOrder = { 3771 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h5"] = { type = "Spawn", tier = 5, "Minions deal 56 to 84 additional Fire Damage", statOrder = { 3771 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 9 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 18 to 28 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3771, 9285 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 16 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 26 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 34 to 51 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3771, 9285 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 1 to 3 additional Fire Damage", statOrder = { 58, 3771 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 4 additional Fire Damage", statOrder = { 58, 3771 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 4 to 9 additional Fire Damage", statOrder = { 58, 3771 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 8 to 14 additional Fire Damage", statOrder = { 58, 3771 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 18 to 28 additional Fire Damage", statOrder = { 58, 3771 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 6 additional Fire Damage", statOrder = { 58, 3771 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 5 to 8 additional Fire Damage", statOrder = { 58, 3771 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 9 to 16 additional Fire Damage", statOrder = { 58, 3771 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 16 to 26 additional Fire Damage", statOrder = { 58, 3771 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 34 to 51 additional Fire Damage", statOrder = { 58, 3771 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3770, 9289 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Cold Damage", statOrder = { 3770 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", statOrder = { 3770 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Cold Damage", statOrder = { 3770 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Cold Damage", statOrder = { 3770 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold5"] = { type = "Spawn", tier = 5, "Minions deal 37 to 56 additional Cold Damage", statOrder = { 3770 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 10 additional Cold Damage", statOrder = { 3770 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h2"] = { type = "Spawn", tier = 2, "Minions deal 10 to 16 additional Cold Damage", statOrder = { 3770 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h3"] = { type = "Spawn", tier = 3, "Minions deal 20 to 32 additional Cold Damage", statOrder = { 3770 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h4"] = { type = "Spawn", tier = 4, "Minions deal 34 to 52 additional Cold Damage", statOrder = { 3770 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h5"] = { type = "Spawn", tier = 5, "Minions deal 68 to 103 additional Cold Damage", statOrder = { 3770 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 7 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 21 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 29 to 43 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3770, 9282 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 15 to 24 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 26 to 40 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 53 to 79 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3770, 9282 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 8 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 17 to 25 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 15 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 25 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 32 to 47 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3770, 9270 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "4% increased Lightning Damage taken", "Minions deal 1 to 9 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "4% increased Lightning Damage taken", "Minions deal 1 to 15 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "4% increased Lightning Damage taken", "Minions deal 1 to 29 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "4% increased Lightning Damage taken", "Minions deal 2 to 48 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "4% increased Lightning Damage taken", "Minions deal 5 to 94 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "6% increased Lightning Damage taken", "Minions deal 1 to 16 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "6% increased Lightning Damage taken", "Minions deal 1 to 28 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "6% increased Lightning Damage taken", "Minions deal 2 to 53 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "6% increased Lightning Damage taken", "Minions deal 4 to 88 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "6% increased Lightning Damage taken", "Minions deal 9 to 173 additional Lightning Damage", statOrder = { 3388, 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 6 additional Lightning Damage", statOrder = { 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 22 additional Lightning Damage", statOrder = { 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 37 additional Lightning Damage", statOrder = { 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 72 additional Lightning Damage", statOrder = { 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3772 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 21 additional Lightning Damage", statOrder = { 3772 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 41 additional Lightning Damage", statOrder = { 3772 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 68 additional Lightning Damage", statOrder = { 3772 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h5"] = { type = "Spawn", tier = 5, "Minions deal 7 to 133 additional Lightning Damage", statOrder = { 3772 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3772, 9287 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3772, 9287 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3772, 9289 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "6% reduced maximum Life", "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "6% reduced maximum Life", "Minions deal 5 to 7 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "6% reduced maximum Life", "Minions deal 8 to 14 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "6% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "6% reduced maximum Life", "Minions deal 28 to 42 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "Minions deal 4 to 7 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "Minions deal 7 to 12 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "10% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "10% reduced maximum Life", "Minions deal 24 to 37 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "10% reduced maximum Life", "Minions deal 47 to 71 additional Chaos Damage", statOrder = { 1571, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Chaos Damage", statOrder = { 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Chaos Damage", statOrder = { 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Chaos Damage", statOrder = { 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Chaos Damage", statOrder = { 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Chaos Damage", statOrder = { 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Chaos Damage", statOrder = { 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Chaos Damage", statOrder = { 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 3174, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance1"] = { type = "Spawn", tier = 1, "+7% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance2"] = { type = "Spawn", tier = 2, "+7% to Chaos Resistance", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance3"] = { type = "Spawn", tier = 3, "+7% to Chaos Resistance", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance4"] = { type = "Spawn", tier = 4, "+7% to Chaos Resistance", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance5"] = { type = "Spawn", tier = 5, "+7% to Chaos Resistance", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance1"] = { type = "Spawn", tier = 1, "+13% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance2"] = { type = "Spawn", tier = 2, "+13% to Chaos Resistance", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance3"] = { type = "Spawn", tier = 3, "+13% to Chaos Resistance", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance4"] = { type = "Spawn", tier = 4, "+13% to Chaos Resistance", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance5"] = { type = "Spawn", tier = 5, "+13% to Chaos Resistance", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 1641, 3769 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 14% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 21% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 28% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 35% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 42% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 22% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 34% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 45% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 56% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 68% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1973, 9289 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage1"] = { type = "Spawn", tier = 1, "Minions deal 10% increased Damage", statOrder = { 1973 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% increased Damage", statOrder = { 1973 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage3"] = { type = "Spawn", tier = 3, "Minions deal 20% increased Damage", statOrder = { 1973 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage4"] = { type = "Spawn", tier = 4, "Minions deal 25% increased Damage", statOrder = { 1973 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage5"] = { type = "Spawn", tier = 5, "Minions deal 30% increased Damage", statOrder = { 1973 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 16% increased Damage", statOrder = { 1973 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 24% increased Damage", statOrder = { 1973 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h3"] = { type = "Spawn", tier = 3, "Minions deal 32% increased Damage", statOrder = { 1973 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h4"] = { type = "Spawn", tier = 4, "Minions deal 40% increased Damage", statOrder = { 1973 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h5"] = { type = "Spawn", tier = 5, "Minions deal 48% increased Damage", statOrder = { 1973 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana1"] = { type = "Spawn", tier = 1, "10% increased maximum Mana", "Minions deal 7% increased Damage", statOrder = { 1580, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased maximum Mana", "Minions deal 10% increased Damage", statOrder = { 1580, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana3"] = { type = "Spawn", tier = 3, "10% increased maximum Mana", "Minions deal 13% increased Damage", statOrder = { 1580, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana4"] = { type = "Spawn", tier = 4, "10% increased maximum Mana", "Minions deal 17% increased Damage", statOrder = { 1580, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana5"] = { type = "Spawn", tier = 5, "10% increased maximum Mana", "Minions deal 20% increased Damage", statOrder = { 1580, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana1"] = { type = "Spawn", tier = 1, "20% increased maximum Mana", "Minions deal 11% increased Damage", statOrder = { 1580, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana2"] = { type = "Spawn", tier = 2, "20% increased maximum Mana", "Minions deal 16% increased Damage", statOrder = { 1580, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana3"] = { type = "Spawn", tier = 3, "20% increased maximum Mana", "Minions deal 21% increased Damage", statOrder = { 1580, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana4"] = { type = "Spawn", tier = 4, "20% increased maximum Mana", "Minions deal 26% increased Damage", statOrder = { 1580, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana5"] = { type = "Spawn", tier = 5, "20% increased maximum Mana", "Minions deal 32% increased Damage", statOrder = { 1580, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "10% increased maximum Energy Shield", "Minions deal 7% increased Damage", statOrder = { 1561, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased maximum Energy Shield", "Minions deal 10% increased Damage", statOrder = { 1561, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "10% increased maximum Energy Shield", "Minions deal 13% increased Damage", statOrder = { 1561, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "10% increased maximum Energy Shield", "Minions deal 17% increased Damage", statOrder = { 1561, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "10% increased maximum Energy Shield", "Minions deal 20% increased Damage", statOrder = { 1561, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "20% increased maximum Energy Shield", "Minions deal 11% increased Damage", statOrder = { 1561, 1973 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "20% increased maximum Energy Shield", "Minions deal 16% increased Damage", statOrder = { 1561, 1973 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "20% increased maximum Energy Shield", "Minions deal 21% increased Damage", statOrder = { 1561, 1973 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "20% increased maximum Energy Shield", "Minions deal 26% increased Damage", statOrder = { 1561, 1973 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased maximum Energy Shield", "Minions deal 32% increased Damage", statOrder = { 1561, 1973 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeBowGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedBowGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeMeleeGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "mace", "sword", "sceptre", "axe", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMeleeGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, - ["WeaponTreeMinionGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, - ["WeaponTreeDexterityGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedDexterityGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 250, 250, 250, 500, 250, 0 }, modTags = { }, }, - ["WeaponTreeStrengthGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedStrengthGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 250, 250, 500, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeIntelliegenceGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedIntelligenceGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 500, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdPerDex"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdPerDex2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFirePerStr"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFirePerStr2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningPerInt"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningPerInt2h"] = { type = "MergeOnly", tier = 1, "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosPerLowestAttribute"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4923 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosPerLowestAttribute2h"] = { type = "MergeOnly", tier = 1, "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4923 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "40% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "50% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "60% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1192, 1881 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage1"] = { type = "Spawn", tier = 1, "15% increased Global Damage", statOrder = { 1192 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2"] = { type = "Spawn", tier = 2, "20% increased Global Damage", statOrder = { 1192 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage3"] = { type = "Spawn", tier = 3, "25% increased Global Damage", statOrder = { 1192 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", statOrder = { 1192 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", statOrder = { 1192 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", statOrder = { 1192 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "4% increased Attributes", "8% increased Global Damage", statOrder = { 1183, 1192 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "4% increased Attributes", "12% increased Global Damage", statOrder = { 1183, 1192 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "4% increased Attributes", "16% increased Global Damage", statOrder = { 1183, 1192 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "6% increased Attributes", "15% increased Global Damage", statOrder = { 1183, 1192 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "6% increased Attributes", "20% increased Global Damage", statOrder = { 1183, 1192 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "6% increased Attributes", "25% increased Global Damage", statOrder = { 1183, 1192 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife1"] = { type = "Spawn", tier = 1, "+30 to maximum Life", statOrder = { 1569 }, level = 1, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife2"] = { type = "Spawn", tier = 2, "+35 to maximum Life", statOrder = { 1569 }, level = 21, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife3"] = { type = "Spawn", tier = 3, "+40 to maximum Life", statOrder = { 1569 }, level = 46, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife4"] = { type = "Spawn", tier = 4, "+45 to maximum Life", statOrder = { 1569 }, level = 65, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife5"] = { type = "Spawn", tier = 5, "+50 to maximum Life", statOrder = { 1569 }, level = 77, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage1"] = { type = "Spawn", tier = 1, "20% reduced Damage", "+60 to maximum Life", statOrder = { 1191, 1569 }, level = 15, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage2"] = { type = "Spawn", tier = 2, "20% reduced Damage", "+75 to maximum Life", statOrder = { 1191, 1569 }, level = 45, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage3"] = { type = "Spawn", tier = 3, "20% reduced Damage", "+80 to maximum Life", statOrder = { 1191, 1569 }, level = 70, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance1"] = { type = "Spawn", tier = 1, "+60 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 15, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance2"] = { type = "Spawn", tier = 2, "+75 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 45, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance3"] = { type = "Spawn", tier = 3, "+80 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1569, 1619 }, level = 70, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences1"] = { type = "Spawn", tier = 1, "50% reduced Armour, Evasion and Energy Shield", "+60 to maximum Life", statOrder = { 1555, 1569 }, level = 15, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences2"] = { type = "Spawn", tier = 2, "50% reduced Armour, Evasion and Energy Shield", "+75 to maximum Life", statOrder = { 1555, 1569 }, level = 45, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences3"] = { type = "Spawn", tier = 3, "50% reduced Armour, Evasion and Energy Shield", "+80 to maximum Life", statOrder = { 1555, 1569 }, level = 70, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1569, 1944 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 1, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 40, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "20% increased Stun Threshold", statOrder = { 1569, 3272 }, level = 65, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1569, 1749 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour1"] = { type = "Spawn", tier = 1, "+20 to Armour", statOrder = { 1540 }, level = 1, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour2"] = { type = "Spawn", tier = 2, "+35 to Armour", statOrder = { 1540 }, level = 24, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour3"] = { type = "Spawn", tier = 3, "+50 to Armour", statOrder = { 1540 }, level = 50, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour4"] = { type = "Spawn", tier = 4, "+65 to Armour", statOrder = { 1540 }, level = 68, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour5"] = { type = "Spawn", tier = 5, "+80 to Armour", statOrder = { 1540 }, level = 82, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken1"] = { type = "Spawn", tier = 1, "+100 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken2"] = { type = "Spawn", tier = 2, "+125 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken3"] = { type = "Spawn", tier = 3, "+150 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1540, 2245 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "+100 to Armour", statOrder = { 1512, 1540 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "+125 to Armour", statOrder = { 1512, 1540 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes3"] = { type = "Spawn", tier = 3, "You take 20% increased Extra Damage from Critical Strikes", "+150 to Armour", statOrder = { 1512, 1540 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength1"] = { type = "Spawn", tier = 1, "5% increased Strength", "+20 to Armour", statOrder = { 1184, 1540 }, level = 1, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength2"] = { type = "Spawn", tier = 2, "5% increased Strength", "+30 to Armour", statOrder = { 1184, 1540 }, level = 40, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength3"] = { type = "Spawn", tier = 3, "5% increased Strength", "+40 to Armour", statOrder = { 1184, 1540 }, level = 65, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Armour", statOrder = { 58, 1540 }, level = 1, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Armour", statOrder = { 58, 1540 }, level = 40, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Armour", statOrder = { 58, 1540 }, level = 65, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock1"] = { type = "Spawn", tier = 1, "+20 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 1, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock2"] = { type = "Spawn", tier = 2, "+30 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 40, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock3"] = { type = "Spawn", tier = 3, "+40 to Armour", "+2% Chance to Block", statOrder = { 1540, 2249 }, level = 65, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion1"] = { type = "Spawn", tier = 1, "+20 to Evasion Rating", statOrder = { 1548 }, level = 1, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion2"] = { type = "Spawn", tier = 2, "+35 to Evasion Rating", statOrder = { 1548 }, level = 24, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion3"] = { type = "Spawn", tier = 3, "+50 to Evasion Rating", statOrder = { 1548 }, level = 50, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion4"] = { type = "Spawn", tier = 4, "+65 to Evasion Rating", statOrder = { 1548 }, level = 68, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion5"] = { type = "Spawn", tier = 5, "+80 to Evasion Rating", statOrder = { 1548 }, level = 82, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 20, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 55, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1548, 4985 }, level = 83, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 20, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 55, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1548, 1902 }, level = 83, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+20 to Evasion Rating", statOrder = { 1185, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+30 to Evasion Rating", statOrder = { 1185, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+40 to Evasion Rating", statOrder = { 1185, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Evasion Rating", statOrder = { 58, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Evasion Rating", statOrder = { 58, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Evasion Rating", statOrder = { 58, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression1"] = { type = "Spawn", tier = 1, "+4% chance to Suppress Spell Damage", "+20 to Evasion Rating", statOrder = { 1143, 1548 }, level = 1, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression2"] = { type = "Spawn", tier = 2, "+4% chance to Suppress Spell Damage", "+30 to Evasion Rating", statOrder = { 1143, 1548 }, level = 40, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression3"] = { type = "Spawn", tier = 3, "+4% chance to Suppress Spell Damage", "+40 to Evasion Rating", statOrder = { 1143, 1548 }, level = 65, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield1"] = { type = "Spawn", tier = 1, "+5 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield2"] = { type = "Spawn", tier = 2, "+10 to maximum Energy Shield", statOrder = { 1559 }, level = 24, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", statOrder = { 1559 }, level = 50, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield4"] = { type = "Spawn", tier = 4, "+20 to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield5"] = { type = "Spawn", tier = 5, "+25 to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1559, 1565 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1559, 1584 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence1"] = { type = "Spawn", tier = 1, "5% increased Intelligence", "+9 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 1, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence2"] = { type = "Spawn", tier = 2, "5% increased Intelligence", "+12 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 40, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence3"] = { type = "Spawn", tier = 3, "5% increased Intelligence", "+15 to maximum Energy Shield", statOrder = { 1186, 1559 }, level = 65, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+9 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 1, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+12 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 40, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+15 to maximum Energy Shield", statOrder = { 58, 1559 }, level = 65, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana1"] = { type = "Spawn", tier = 1, "+9 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 1, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana2"] = { type = "Spawn", tier = 2, "+12 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 40, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1559, 1580 }, level = 65, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance1"] = { type = "Spawn", tier = 1, "30% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 8, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance2"] = { type = "Spawn", tier = 2, "35% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 42, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance3"] = { type = "Spawn", tier = 3, "40% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1357, 1625 }, level = 72, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Fire Damage", statOrder = { 1357 }, level = 77, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire1"] = { type = "Spawn", tier = 1, "9% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 1, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire2"] = { type = "Spawn", tier = 2, "12% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 36, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire3"] = { type = "Spawn", tier = 3, "15% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1357, 2447 }, level = 68, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance1"] = { type = "Spawn", tier = 1, "30% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 8, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance2"] = { type = "Spawn", tier = 2, "35% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 42, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance3"] = { type = "Spawn", tier = 3, "40% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1366, 1631 }, level = 72, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Cold Damage", statOrder = { 1366 }, level = 77, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold1"] = { type = "Spawn", tier = 1, "9% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 1, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold2"] = { type = "Spawn", tier = 2, "12% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 36, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold3"] = { type = "Spawn", tier = 3, "15% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1366, 2448 }, level = 68, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance1"] = { type = "Spawn", tier = 1, "30% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 8, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance2"] = { type = "Spawn", tier = 2, "35% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 42, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance3"] = { type = "Spawn", tier = 3, "40% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1377, 1636 }, level = 72, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Lightning Damage", statOrder = { 1377 }, level = 77, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning1"] = { type = "Spawn", tier = 1, "9% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 1, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning2"] = { type = "Spawn", tier = 2, "12% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 36, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning3"] = { type = "Spawn", tier = 3, "15% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1377, 2449 }, level = 68, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance1"] = { type = "Spawn", tier = 1, "30% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 8, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance2"] = { type = "Spawn", tier = 2, "35% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 42, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance3"] = { type = "Spawn", tier = 3, "40% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1385, 1641 }, level = 72, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Chaos Damage", statOrder = { 1385 }, level = 50, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Chaos Damage", statOrder = { 1385 }, level = 77, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos1"] = { type = "Spawn", tier = 1, "9% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 1, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos2"] = { type = "Spawn", tier = 2, "12% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 36, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos3"] = { type = "Spawn", tier = 3, "15% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1385, 2451 }, level = 68, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate1"] = { type = "Spawn", tier = 1, "30% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 8, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate2"] = { type = "Spawn", tier = 2, "35% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 42, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate3"] = { type = "Spawn", tier = 3, "40% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1231, 1577 }, level = 72, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent1"] = { type = "Spawn", tier = 1, "15% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent2"] = { type = "Spawn", tier = 2, "20% increased Global Physical Damage", statOrder = { 1231 }, level = 50, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent3"] = { type = "Spawn", tier = 3, "25% increased Global Physical Damage", statOrder = { 1231 }, level = 77, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction1"] = { type = "Spawn", tier = 1, "9% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 1, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction2"] = { type = "Spawn", tier = 2, "12% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 36, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction3"] = { type = "Spawn", tier = 3, "15% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1231, 2273 }, level = 68, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "+4% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "+5% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "+6% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1463, 2678 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+40% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+50% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+80% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+100% to Global Critical Strike Multiplier", statOrder = { 1463, 1488 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance1"] = { type = "Spawn", tier = 1, "+0.4% to Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance2"] = { type = "Spawn", tier = 2, "+0.6% to Critical Strike Chance", statOrder = { 1463 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance3"] = { type = "Spawn", tier = 3, "+0.8% to Critical Strike Chance", statOrder = { 1463 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "15% reduced Attack Speed", "+0.9% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "15% reduced Attack Speed", "+1.2% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "15% reduced Attack Speed", "+1.5% to Critical Strike Chance", statOrder = { 1413, 1463 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy1"] = { type = "Spawn", tier = 1, "+0.9% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy2"] = { type = "Spawn", tier = 2, "+1.2% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy3"] = { type = "Spawn", tier = 3, "+1.5% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1463, 2024 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage1"] = { type = "Spawn", tier = 1, "30% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage2"] = { type = "Spawn", tier = 2, "35% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage3"] = { type = "Spawn", tier = 3, "40% increased Attack Speed", "20% less Global Damage", statOrder = { 1413, 10589 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage1"] = { type = "Spawn", tier = 1, "24% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage2"] = { type = "Spawn", tier = 2, "27% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage3"] = { type = "Spawn", tier = 3, "30% increased Attack Speed", "15% less Global Damage", statOrder = { 1413, 10589 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed1"] = { type = "Spawn", tier = 1, "8% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed2"] = { type = "Spawn", tier = 2, "9% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed3"] = { type = "Spawn", tier = 3, "10% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged1"] = { type = "Spawn", tier = 1, "5% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged2"] = { type = "Spawn", tier = 2, "6% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged3"] = { type = "Spawn", tier = 3, "7% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1413, 2993 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1413, 2631 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "25% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "25% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "25% reduced Attack Speed", "Attacks with this Weapon have 30% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "20% reduced Attack Speed", "Attacks with this Weapon have 15% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "20% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "20% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1413, 7927 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAlwaysHitReducedAttackSpeed"] = { type = "MergeOnly", tier = 1, "50% reduced Attack Speed", "Hits can't be Evaded", statOrder = { 1413, 2043 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, - ["WeaponTreeLocalAlwaysHitReducedCriticalStrikeChance"] = { type = "MergeOnly", tier = 1, "-5% to Critical Strike Chance", "Hits can't be Evaded", statOrder = { 1463, 2043 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating1"] = { type = "Spawn", tier = 1, "+150 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating2"] = { type = "Spawn", tier = 2, "+250 to Accuracy Rating", statOrder = { 2024 }, level = 30, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating3"] = { type = "Spawn", tier = 3, "+350 to Accuracy Rating", statOrder = { 2024 }, level = 60, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h1"] = { type = "Spawn", tier = 1, "10% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h3"] = { type = "Spawn", tier = 3, "10% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1185, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion1"] = { type = "Spawn", tier = 1, "15% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2"] = { type = "Spawn", tier = 2, "15% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion3"] = { type = "Spawn", tier = 3, "15% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h1"] = { type = "Spawn", tier = 1, "30% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h2"] = { type = "Spawn", tier = 2, "30% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h3"] = { type = "Spawn", tier = 3, "30% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1549, 2024 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+40% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+50% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+80% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+100% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+5% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+5.5% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+6% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+7% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+8% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+9% to Spell Critical Strike Chance", statOrder = { 2678, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "+0.4% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "+0.5% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "+0.6% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "+0.8% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "+0.9% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "+1% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-30% to Critical Strike Multiplier for Spell Damage", "+1% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-30% to Critical Strike Multiplier for Spell Damage", "+1.25% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-30% to Critical Strike Multiplier for Spell Damage", "+1.5% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-60% to Critical Strike Multiplier for Spell Damage", "+1.8% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-60% to Critical Strike Multiplier for Spell Damage", "+2.2% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-60% to Critical Strike Multiplier for Spell Damage", "+2.6% to Spell Critical Strike Chance", statOrder = { 1492, 10126 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "15% reduced Reservation Efficiency of Skills", "+0.8% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "15% reduced Reservation Efficiency of Skills", "+1% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "15% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "25% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "25% reduced Reservation Efficiency of Skills", "+1.6% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "25% reduced Reservation Efficiency of Skills", "+2% to Spell Critical Strike Chance", statOrder = { 2230, 10126 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage1"] = { type = "Spawn", tier = 1, "18% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage2"] = { type = "Spawn", tier = 2, "20% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage3"] = { type = "Spawn", tier = 3, "22% more Cast Speed", "10% less Global Damage", statOrder = { 10587, 10589 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage1"] = { type = "Spawn", tier = 1, "24% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage2"] = { type = "Spawn", tier = 2, "27% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage3"] = { type = "Spawn", tier = 3, "30% more Cast Speed", "15% less Global Damage", statOrder = { 10587, 10589 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed1"] = { type = "Spawn", tier = 1, "4% more Cast Speed", statOrder = { 10587 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2"] = { type = "Spawn", tier = 2, "5% more Cast Speed", statOrder = { 10587 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed3"] = { type = "Spawn", tier = 3, "6% more Cast Speed", statOrder = { 10587 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h1"] = { type = "Spawn", tier = 1, "8% more Cast Speed", statOrder = { 10587 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h2"] = { type = "Spawn", tier = 2, "9% more Cast Speed", statOrder = { 10587 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h3"] = { type = "Spawn", tier = 3, "10% more Cast Speed", statOrder = { 10587 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost1"] = { type = "Spawn", tier = 1, "12% increased Cost of Skills", "6% more Cast Speed", statOrder = { 1881, 10587 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost2"] = { type = "Spawn", tier = 2, "12% increased Cost of Skills", "7% more Cast Speed", statOrder = { 1881, 10587 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost3"] = { type = "Spawn", tier = 3, "12% increased Cost of Skills", "8% more Cast Speed", statOrder = { 1881, 10587 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Cost of Skills", "10% more Cast Speed", statOrder = { 1881, 10587 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost2"] = { type = "Spawn", tier = 2, "20% increased Cost of Skills", "12% more Cast Speed", statOrder = { 1881, 10587 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost3"] = { type = "Spawn", tier = 3, "20% increased Cost of Skills", "14% more Cast Speed", statOrder = { 1881, 10587 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10195, 10587 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10195, 10587 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 1.8% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 2% of Mana per second", "15% less maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 2.5% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 3% of Mana per second", "25% less maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 1.3% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 1.5% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 2% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 2.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1581, 2230 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", statOrder = { 1581 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", statOrder = { 1581 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h1"] = { type = "Spawn", tier = 1, "Regenerate 0.8% of Mana per second", statOrder = { 1581 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h2"] = { type = "Spawn", tier = 2, "Regenerate 0.9% of Mana per second", statOrder = { 1581 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h3"] = { type = "Spawn", tier = 3, "Regenerate 1% of Mana per second", statOrder = { 1581 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "5% more maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "8% more maximum Mana", statOrder = { 1581, 10611 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1581, 1883 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +1.2% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +1.4% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1.7% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +2% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +2.3% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9267, 9270 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +60% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +80% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +130% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +160% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions have +0.4% to Critical Strike Chance", statOrder = { 9267 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions have +0.6% to Critical Strike Chance", statOrder = { 9267 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions have +0.8% to Critical Strike Chance", statOrder = { 9267 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "Minions have +0.7% to Critical Strike Chance", statOrder = { 9267 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "Minions have +1% to Critical Strike Chance", statOrder = { 9267 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "Minions have +1.3% to Critical Strike Chance", statOrder = { 9267 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.2% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.3% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.4% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.3% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.5% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.7% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9267, 9291 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.2% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.4% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.7% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2.3% to Critical Strike Chance", statOrder = { 2145, 9267 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9270, 9324 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", statOrder = { 9270 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", statOrder = { 9270 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", statOrder = { 9270 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 14% increased Attack and Cast Speed", statOrder = { 9270 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 18% increased Attack and Cast Speed", statOrder = { 9270 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h3"] = { type = "Spawn", tier = 3, "Minions have 22% increased Attack and Cast Speed", statOrder = { 9270 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 4% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 5% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 6% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9270, 9299 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +400 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +500 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +600 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +700 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +850 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1000 to Accuracy Rating", statOrder = { 2145, 9264 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy1"] = { type = "Spawn", tier = 1, "Minions have +200 to Accuracy Rating", statOrder = { 9264 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2"] = { type = "Spawn", tier = 2, "Minions have +250 to Accuracy Rating", statOrder = { 9264 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy3"] = { type = "Spawn", tier = 3, "Minions have +300 to Accuracy Rating", statOrder = { 9264 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h1"] = { type = "Spawn", tier = 1, "Minions have +300 to Accuracy Rating", statOrder = { 9264 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h2"] = { type = "Spawn", tier = 2, "Minions have +400 to Accuracy Rating", statOrder = { 9264 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h3"] = { type = "Spawn", tier = 3, "Minions have +500 to Accuracy Rating", statOrder = { 9264 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +100 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +150 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +200 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +160 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +240 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +320 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9264, 9304 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAlwaysHitMinionCannotCrit"] = { type = "Spawn", tier = 1, "Minions never deal Critical Strikes", "Minions' Hits can't be Evaded", statOrder = { 9279, 9307 }, level = 60, group = "WeaponTreeMinionAlwaysHitAndCannotCrit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock1"] = { type = "Spawn", tier = 1, "16% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 15, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock2"] = { type = "Spawn", tier = 2, "20% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 48, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock3"] = { type = "Spawn", tier = 3, "24% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1160, 3266 }, level = 78, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 1, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 35, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1160, 2249 }, level = 70, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 1, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 35, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1160, 4996 }, level = 70, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock1"] = { type = "Spawn", tier = 1, "3% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock2"] = { type = "Spawn", tier = 2, "4% Chance to Block Spell Damage", statOrder = { 1160 }, level = 35, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock3"] = { type = "Spawn", tier = 3, "5% Chance to Block Spell Damage", statOrder = { 1160 }, level = 70, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockMoreMana1"] = { type = "Spawn", tier = 1, "2% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1160, 10611 }, level = 48, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockMoreMana2"] = { type = "Spawn", tier = 2, "3% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1160, 10611 }, level = 78, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 15, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 48, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2249, 5428 }, level = 78, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 1, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 35, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2249, 4996 }, level = 70, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences1"] = { type = "Spawn", tier = 1, "40% reduced Armour, Evasion and Energy Shield", "+6% Chance to Block", statOrder = { 1555, 2249 }, level = 1, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences2"] = { type = "Spawn", tier = 2, "40% reduced Armour, Evasion and Energy Shield", "+7% Chance to Block", statOrder = { 1555, 2249 }, level = 35, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences3"] = { type = "Spawn", tier = 3, "40% reduced Armour, Evasion and Energy Shield", "+8% Chance to Block", statOrder = { 1555, 2249 }, level = 70, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock1"] = { type = "Spawn", tier = 1, "+3% Chance to Block", statOrder = { 2249 }, level = 1, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock2"] = { type = "Spawn", tier = 2, "+4% Chance to Block", statOrder = { 2249 }, level = 35, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock3"] = { type = "Spawn", tier = 3, "+5% Chance to Block", statOrder = { 2249 }, level = 70, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockLifeOnBlock1"] = { type = "Spawn", tier = 1, "30 Life gained when you Block", "+2% Chance to Block", statOrder = { 1757, 2249 }, level = 10, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockLifeOnBlock2"] = { type = "Spawn", tier = 2, "30 Life gained when you Block", "+3% Chance to Block", statOrder = { 1757, 2249 }, level = 42, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockBlockRecovery1"] = { type = "Spawn", tier = 1, "30% increased Block Recovery", "+2% Chance to Block", statOrder = { 1167, 2249 }, level = 1, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockBlockRecovery2"] = { type = "Spawn", tier = 2, "30% increased Block Recovery", "+3% Chance to Block", statOrder = { 1167, 2249 }, level = 35, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 10, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 42, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1555, 1571 }, level = 75, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 1, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 35, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1555, 2249 }, level = 70, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences1"] = { type = "Spawn", tier = 1, "24% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences2"] = { type = "Spawn", tier = 2, "32% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 35, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences3"] = { type = "Spawn", tier = 3, "40% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 70, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken1"] = { type = "Spawn", tier = 1, "40% of Damage from your Hits cannot be Reflected", "15% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken2"] = { type = "Spawn", tier = 2, "40% of Damage from your Hits cannot be Reflected", "20% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken3"] = { type = "Spawn", tier = 3, "40% of Damage from your Hits cannot be Reflected", "25% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1555 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage1"] = { type = "Spawn", tier = 1, "25% increased Attack Damage with Off Hand", "15% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 10, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage2"] = { type = "Spawn", tier = 2, "25% increased Attack Damage with Off Hand", "20% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 42, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage3"] = { type = "Spawn", tier = 3, "25% increased Attack Damage with Off Hand", "25% increased Armour, Evasion and Energy Shield", statOrder = { 1283, 1555 }, level = 75, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 1, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 35, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1625, 1631 }, level = 70, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 1, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 35, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 70, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Cold Resistance", statOrder = { 1625, 1631 }, level = 1, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Cold Resistance", statOrder = { 1625, 1631 }, level = 35, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Cold Resistance", statOrder = { 1625, 1631 }, level = 70, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 1, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 35, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 70, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "-20% to Cold Resistance", "+30% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 1, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "-20% to Cold Resistance", "+36% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 35, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "-20% to Cold Resistance", "+42% to Lightning Resistance", statOrder = { 1631, 1636 }, level = 70, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 1, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 35, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Lightning Resistance", statOrder = { 1625, 1636 }, level = 70, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-6% to all Elemental Resistances", "+19% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 10, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-6% to all Elemental Resistances", "+23% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 42, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance3"] = { type = "Spawn", tier = 3, "-6% to all Elemental Resistances", "+27% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 75, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 10, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 42, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1619, 1641 }, level = 75, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences1"] = { type = "Spawn", tier = 1, "25% reduced Armour, Evasion and Energy Shield", "+10% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences2"] = { type = "Spawn", tier = 2, "25% reduced Armour, Evasion and Energy Shield", "+12% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences3"] = { type = "Spawn", tier = 3, "25% reduced Armour, Evasion and Energy Shield", "+14% to all Elemental Resistances", statOrder = { 1555, 1619 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1619, 2249 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife1"] = { type = "Spawn", tier = 1, "5% reduced maximum Life", "+19% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 10, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife2"] = { type = "Spawn", tier = 2, "5% reduced maximum Life", "+23% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 42, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife3"] = { type = "Spawn", tier = 3, "5% reduced maximum Life", "+27% to Chaos Resistance", statOrder = { 1571, 1641 }, level = 75, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Cold Resistance", statOrder = { 1623, 1629 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumColdResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Cold Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumColdResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Cold Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1629, 1634 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1623, 1634 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance1"] = { type = "Spawn", tier = 1, "-5% to maximum Chaos Resistance", "+1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 60, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance2"] = { type = "Spawn", tier = 2, "-5% to maximum Chaos Resistance", "+2% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 85, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 60, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1640, 1643 }, level = 85, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMinionInstability"] = { type = "Spawn", tier = 1, "Minion Instability", statOrder = { 10799 }, level = 30, group = "WeaponTreeMinionInstability", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneResoluteTechnique"] = { type = "Spawn", tier = 1, "Resolute Technique", statOrder = { 10829 }, level = 30, group = "WeaponTreeResoluteTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneBloodMagic"] = { type = "Spawn", tier = 1, "Blood Magic", statOrder = { 10773 }, level = 30, group = "WeaponTreeBloodMagic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePainAttunement"] = { type = "Spawn", tier = 1, "Pain Attunement", statOrder = { 10801 }, level = 30, group = "WeaponTreePainAttunement", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneElementalEquilibrium"] = { type = "Spawn", tier = 1, "Elemental Equilibrium", statOrder = { 10782 }, level = 30, group = "WeaponTreeElementalEquilibrium", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronGrip"] = { type = "Spawn", tier = 1, "Iron Grip", statOrder = { 10817 }, level = 30, group = "WeaponTreeIronGrip", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePointBlank"] = { type = "Spawn", tier = 1, "Point Blank", statOrder = { 10802 }, level = 30, group = "WeaponTreePointBlank", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAcrobatics"] = { type = "Spawn", tier = 1, "Acrobatics", statOrder = { 10768 }, level = 30, group = "WeaponTreeAcrobatics", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGhostReaver"] = { type = "Spawn", tier = 1, "Ghost Reaver", statOrder = { 10788 }, level = 30, group = "WeaponTreeKeystoneGhostReaver", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneVaalPact"] = { type = "Spawn", tier = 1, "Vaal Pact", statOrder = { 10822 }, level = 30, group = "WeaponTreeVaalPact", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneElementalOverload"] = { type = "Spawn", tier = 1, "Elemental Overload", statOrder = { 10783 }, level = 30, group = "WeaponTreeElementalOverload", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAvatarOfFire"] = { type = "Spawn", tier = 1, "Avatar of Fire", statOrder = { 10771 }, level = 30, group = "WeaponTreeAvatarOfFire", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneEldritchBattery"] = { type = "Spawn", tier = 1, "Eldritch Battery", statOrder = { 10781 }, level = 30, group = "WeaponTreeEldritchBattery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAncestralBond"] = { type = "Spawn", tier = 1, "Ancestral Bond", statOrder = { 10770 }, level = 30, group = "WeaponTreeAncestralBond", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneCrimsonDance"] = { type = "Spawn", tier = 1, "Crimson Dance", statOrder = { 10778 }, level = 30, group = "WeaponTreeCrimsonDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePerfectAgony"] = { type = "Spawn", tier = 1, "Perfect Agony", statOrder = { 10769 }, level = 30, group = "WeaponTreePerfectAgony", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneRunebinder"] = { type = "Spawn", tier = 1, "Runebinder", statOrder = { 10809 }, level = 30, group = "WeaponTreeRunebinder", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGlancingBlows"] = { type = "Spawn", tier = 1, "Glancing Blows", statOrder = { 10789 }, level = 30, group = "WeaponTreeGlancingBlows", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneCallToArms"] = { type = "Spawn", tier = 1, "Call to Arms", statOrder = { 10774 }, level = 30, group = "WeaponTreeCallToArms", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneTheAgnostic"] = { type = "Spawn", tier = 1, "The Agnostic", statOrder = { 10800 }, level = 30, group = "WeaponTreeTheAgnostic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneSupremeEgo"] = { type = "Spawn", tier = 1, "Supreme Ego", statOrder = { 10818 }, level = 30, group = "WeaponTreeSupremeEgo", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneTheImpaler"] = { type = "Spawn", tier = 1, "The Impaler", statOrder = { 10793 }, level = 30, group = "WeaponTreeImpaler", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneDoomsday"] = { type = "Spawn", tier = 1, "Hex Master", statOrder = { 10791 }, level = 30, group = "WeaponTreeHexMaster", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneLetheShade"] = { type = "Spawn", tier = 1, "Lethe Shade", statOrder = { 10795 }, level = 30, group = "WeaponTreeLetheShade", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGhostDance"] = { type = "Spawn", tier = 1, "Ghost Dance", statOrder = { 10787 }, level = 30, group = "WeaponTreeGhostDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneVersatileCombatant"] = { type = "Spawn", tier = 1, "Versatile Combatant", statOrder = { 10823 }, level = 30, group = "WeaponTreeVersatileCombatant", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMagebane"] = { type = "Spawn", tier = 1, "Magebane", statOrder = { 10796 }, level = 30, group = "WeaponTreeMagebane", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneSolipsism"] = { type = "Spawn", tier = 1, "Solipsism", statOrder = { 10815 }, level = 30, group = "WeaponTreeSolipsism", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneDivineShield"] = { type = "Spawn", tier = 1, "Divine Shield", statOrder = { 10780 }, level = 30, group = "WeaponTreeDivineShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronWill"] = { type = "Spawn", tier = 1, "Iron Will", statOrder = { 10830 }, level = 30, group = "WeaponTreeIronWill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneWickedWard"] = { type = "Spawn", tier = 1, "Wicked Ward", statOrder = { 10825 }, level = 30, group = "WeaponTreeWickedWard", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneWindDancer"] = { type = "Spawn", tier = 1, "Wind Dancer", statOrder = { 10826 }, level = 30, group = "WeaponTreeWindDancer", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneConduit"] = { type = "Spawn", tier = 1, "Conduit", statOrder = { 10776 }, level = 30, group = "WeaponTreeConduit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneArrowDancing"] = { type = "Spawn", tier = 1, "Arrow Dancing", statOrder = { 10805 }, level = 30, group = "WeaponTreeArrowDodging", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePreciseTechnique"] = { type = "Spawn", tier = 1, "Precise Technique", statOrder = { 10803 }, level = 30, group = "WeaponTreePreciseTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronReflexes"] = { type = "Spawn", tier = 1, "Iron Reflexes", statOrder = { 10794 }, level = 30, group = "WeaponTreeIronReflexes", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneUnwaveringStance"] = { type = "Spawn", tier = 1, "Unwavering Stance", statOrder = { 10821 }, level = 30, group = "WeaponTreeUnwaveringStance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneImbalancedGuard"] = { type = "Spawn", tier = 1, "Imbalanced Guard", statOrder = { 10810 }, level = 30, group = "WeaponTreeSacredBastion", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneEternalYouth"] = { type = "Spawn", tier = 1, "Eternal Youth", statOrder = { 10785 }, level = 30, group = "WeaponTreeEternalYouth", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMindoverMatter"] = { type = "Spawn", tier = 1, "Mind Over Matter", statOrder = { 10797 }, level = 30, group = "WeaponTreeManaShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneZealotsOath"] = { type = "Spawn", tier = 1, "Zealot's Oath", statOrder = { 10807 }, level = 30, group = "WeaponTreeZealotsOath", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowAvatarOfTheHunt"] = { type = "Spawn", tier = 1, "Allocates 36687", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeOfCunning"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 57839", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordRazorsEdge"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 33082", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 25367", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeDancer"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 65093", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordFatalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 1568", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBrutalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 59151", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeOfCunning2H"] = { type = "Spawn", tier = 1, "Allocates 57839", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordRazorsEdge2H"] = { type = "Spawn", tier = 1, "Allocates 33082", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeMaster2H"] = { type = "Spawn", tier = 1, "Allocates 25367", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeDancer2H"] = { type = "Spawn", tier = 1, "Allocates 65093", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordFatalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 1568", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBrutalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 59151", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeFellerOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 52090", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHatchetMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 26096", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHarvesterOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 7440", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeCleaving"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 4940", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeSlaughter"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 23038", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeFellerOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 52090", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHatchetMaster2H"] = { type = "Spawn", tier = 1, "Allocates 26096", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHarvesterOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 7440", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeCleaving2H"] = { type = "Spawn", tier = 1, "Allocates 4940", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeSlaughter2H"] = { type = "Spawn", tier = 1, "Allocates 23038", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceRibcageCrusher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 24721", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSpinecruncher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 5126", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSkullcracking"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16703", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBoneBreaker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 40645", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBlacksmithsClout"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 55772", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceGalvanicHammer"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 60619", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMacePainForger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 39657", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceRibcageCrusher2H"] = { type = "Spawn", tier = 1, "Allocates 24721", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSpinecruncher2H"] = { type = "Spawn", tier = 1, "Allocates 5126", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSkullcracking2H"] = { type = "Spawn", tier = 1, "Allocates 16703", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBoneBreaker2H"] = { type = "Spawn", tier = 1, "Allocates 40645", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBlacksmithsClout2H"] = { type = "Spawn", tier = 1, "Allocates 55772", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceGalvanicHammer2H"] = { type = "Spawn", tier = 1, "Allocates 60619", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMacePainForger2H"] = { type = "Spawn", tier = 1, "Allocates 39657", statOrder = { 8130 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawPoisonousFangs"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 529", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawLifeRaker"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 28503", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheHawk"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 15614", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheMagpie"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 54791", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheFalcon"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 56648", statOrder = { 1413, 8130 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerAddersTouch"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 32227", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerFromTheShadows"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 1405", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerBackstabbing"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 8920", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerFlaying"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 36490", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerNightstalker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 56276", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandTempestBlast"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63207", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandFusillade"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16243", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandDisintegration"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 52031", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandElderPower"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 41476", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandWandslinger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 22972", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandPrismWeave"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63944", statOrder = { 1463, 8130 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldTestudo"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 44207", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldRetaliation"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 12878", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldDeflection"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 15437", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldDefiance"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 49538", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldCommandOfSteel"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 57900", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldAggresiveBastion"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 861", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 20832", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldSafeguard"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 6967", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldArcaneSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 46904", statOrder = { 2249, 8130 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeWeaponQuality1"] = { type = "Spawn", tier = 1, "+8% to Quality", statOrder = { 7951 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrder = { 7951 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrder = { 7951 }, level = 60, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance1"] = { type = "Spawn", tier = 1, "+12% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1251, 1625 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2"] = { type = "Spawn", tier = 2, "+16% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1251, 1625 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1251, 1625 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1251, 1625 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance1"] = { type = "Spawn", tier = 1, "+12% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1256, 1631 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2"] = { type = "Spawn", tier = 2, "+16% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1256, 1631 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h1"] = { type = "Spawn", tier = 1, "+24% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1256, 1631 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h2"] = { type = "Spawn", tier = 2, "+32% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1256, 1631 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+12% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+16% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1259, 1641 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm1"] = { type = "Spawn", tier = 1, "+12% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2"] = { type = "Spawn", tier = 2, "+16% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h1"] = { type = "Spawn", tier = 1, "+24% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h2"] = { type = "Spawn", tier = 2, "+32% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1247, 7159 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalElementalPenetrationReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 8% Elemental Resistances", statOrder = { 1619, 3761 }, level = 12, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalElementalPenetrationReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 10% Elemental Resistances", statOrder = { 1619, 3761 }, level = 75, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalChaosPenetrationReducedChaosResistance1"] = { type = "Spawn", tier = 1, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 8% Chaos Resistance", statOrder = { 1641, 7876 }, level = 12, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalChaosPenetrationReducedChaosResistance2"] = { type = "Spawn", tier = 2, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 10% Chaos Resistance", statOrder = { 1641, 7876 }, level = 75, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect1"] = { type = "Spawn", tier = 1, "10% reduced Area of Effect", "25% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2"] = { type = "Spawn", tier = 2, "10% reduced Area of Effect", "30% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect", "50% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect", "60% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1880, 4729 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently1"] = { type = "Spawn", tier = 1, "20% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2"] = { type = "Spawn", tier = 2, "24% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h1"] = { type = "Spawn", tier = 1, "32% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h2"] = { type = "Spawn", tier = 2, "40% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1880, 4219 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage1"] = { type = "Spawn", tier = 1, "25% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2"] = { type = "Spawn", tier = 2, "35% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2h1"] = { type = "Spawn", tier = 1, "40% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2h2"] = { type = "Spawn", tier = 2, "55% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1796, 1996 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeArrowsChainChainingRange2h"] = { type = "MergeOnly", tier = 1, "Arrows Chain +1 times", "50% reduced Chaining range", statOrder = { 1788, 5486 }, level = 84, group = "WeaponTreeArrowsChainChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange1"] = { type = "Spawn", tier = 1, "20% increased Chaining range", statOrder = { 5486 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2"] = { type = "Spawn", tier = 2, "30% increased Chaining range", statOrder = { 5486 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2h1"] = { type = "Spawn", tier = 1, "40% increased Chaining range", statOrder = { 5486 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2h2"] = { type = "Spawn", tier = 2, "60% increased Chaining range", statOrder = { 5486 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce2h1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 16, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce2h2"] = { type = "Spawn", tier = 2, "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance1"] = { type = "Spawn", tier = 1, "Projectiles have 30% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2"] = { type = "Spawn", tier = 2, "Projectiles have 40% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2h1"] = { type = "Spawn", tier = 1, "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2h2"] = { type = "Spawn", tier = 2, "Projectiles have 75% chance for an additional Projectile when Forking", statOrder = { 5677 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost1"] = { type = "Spawn", tier = 1, "15% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2"] = { type = "Spawn", tier = 2, "20% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2598, 9106 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Marks", "6% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Marks", "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of your Marks", "12% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of your Marks", "20% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2598, 6760 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy"] = { type = "Spawn", tier = 1, "25% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4512, 5991 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy2h"] = { type = "Spawn", tier = 2, "15% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4512, 5991 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalWeaponRange1"] = { type = "Spawn", tier = 1, "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalWeaponRange2"] = { type = "Spawn", tier = 2, "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 50, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Life Leech", "0.5% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Life Leech", "0.8% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Life Leech", "1% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Life Leech", "1.6% of Attack Damage Leeched as Life", statOrder = { 2157, 7987 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Mana Leech", "0.5% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Mana Leech", "0.8% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Mana Leech", "1% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Mana Leech", "1.6% of Attack Damage Leeched as Mana", statOrder = { 2158, 7990 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed1"] = { type = "Spawn", tier = 1, "0.5% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2"] = { type = "Spawn", tier = 2, "0.8% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "1% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "1.6% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1722, 2159 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaxLifeLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxLifeLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxManaLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1733 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxManaLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1733 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeOnHitReducedManaOnHit1"] = { type = "Spawn", tier = 1, "Grants 15 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 5, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeOnHitReducedManaOnHit2"] = { type = "Spawn", tier = 2, "Grants 25 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 68, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaOnHitReducedLifeOnHit1"] = { type = "Spawn", tier = 1, "Removes 4 of your Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 5, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaOnHitReducedLifeOnHit2"] = { type = "Spawn", tier = 2, "Removes 4 of your Life per Enemy Hit", "Grants 8 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 68, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "5% reduced Movement Speed", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "5% reduced Movement Speed", "30% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "10% reduced Movement Speed", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "10% reduced Movement Speed", "60% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1798, 4381 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2h2"] = { type = "Spawn", tier = 2, "18% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1798, 10699 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3288, 6726 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3288, 5378 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3288, 5378 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3288, 5378 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3288, 5378 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3290, 5378 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3290, 5378 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3290, 5378 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3290, 5378 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3290, 3380 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3378, 5378 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3378, 5378 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3378, 5378 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3378, 5378 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3465, 5378 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3465, 5378 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3465, 5378 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3465, 5378 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun1"] = { type = "Spawn", tier = 1, "15% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2497, 2769 }, level = 15, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun2"] = { type = "Spawn", tier = 2, "25% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2497, 2769 }, level = 74, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold1"] = { type = "Spawn", tier = 1, "15% increased Enemy Stun Threshold", "16% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2"] = { type = "Spawn", tier = 2, "15% increased Enemy Stun Threshold", "24% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h1"] = { type = "Spawn", tier = 1, "30% increased Enemy Stun Threshold", "35% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h2"] = { type = "Spawn", tier = 2, "30% increased Enemy Stun Threshold", "45% chance to double Stun Duration", statOrder = { 1517, 3564 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 15% chance to Fortify", statOrder = { 2265, 5678 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 20% chance to Fortify", statOrder = { 2265, 5678 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 30% chance to Fortify", statOrder = { 2265, 5678 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 40% chance to Fortify", statOrder = { 2265, 5678 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "10% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "15% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "20% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "25% increased Cooldown Recovery Rate", statOrder = { 1895, 5005 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "40% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "80% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2742, 3391 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained1"] = { type = "Spawn", tier = 1, "15% reduced Flask Charges gained", "Flasks applied to you have 8% increased Effect", statOrder = { 2183, 2742 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2"] = { type = "Spawn", tier = 2, "15% reduced Flask Charges gained", "Flasks applied to you have 10% increased Effect", statOrder = { 2183, 2742 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h1"] = { type = "Spawn", tier = 1, "20% reduced Flask Charges gained", "Flasks applied to you have 12% increased Effect", statOrder = { 2183, 2742 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h2"] = { type = "Spawn", tier = 2, "20% reduced Flask Charges gained", "Flasks applied to you have 15% increased Effect", statOrder = { 2183, 2742 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect1"] = { type = "Spawn", tier = 1, "10% reduced Effect of your Curses", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2"] = { type = "Spawn", tier = 2, "10% reduced Effect of your Curses", "Your Curses have 30% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Curses", "Your Curses have 35% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Curses", "Your Curses have 50% increased Effect if 50% of Curse Duration expired", statOrder = { 2596, 10615 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "15% increased Effect of Curses on you", "8% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Effect of Curses on you", "10% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h1"] = { type = "Spawn", tier = 1, "25% increased Effect of Curses on you", "12% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h2"] = { type = "Spawn", tier = 2, "25% increased Effect of Curses on you", "15% increased Effect of your Curses", statOrder = { 2170, 2596 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 40% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 50% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 80% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 100% increased Skill Effect Duration", statOrder = { 2225, 7134 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeQuiverModEffect2h1"] = { type = "Spawn", tier = 1, "15% increased bonuses gained from Equipped Quiver", statOrder = { 9782 }, level = 36, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeQuiverModEffect2h2"] = { type = "Spawn", tier = 2, "20% increased bonuses gained from Equipped Quiver", statOrder = { 9782 }, level = 85, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance1"] = { type = "Spawn", tier = 1, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 10% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2"] = { type = "Spawn", tier = 2, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 14% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2h1"] = { type = "Spawn", tier = 1, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 16% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2h2"] = { type = "Spawn", tier = 2, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 20% chance to be Detonated an Additional Time", statOrder = { 8214, 9222 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 40% reduced Area of Effect", "25% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 40% reduced Area of Effect", "40% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2h1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 60% reduced Area of Effect", "50% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2h2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 60% reduced Area of Effect", "70% increased Effect of Auras from Mines", statOrder = { 9218, 9220 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed1"] = { type = "Spawn", tier = 1, "40% reduced Trap Trigger Area of Effect", "12% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2"] = { type = "Spawn", tier = 2, "40% reduced Trap Trigger Area of Effect", "16% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2h1"] = { type = "Spawn", tier = 1, "60% reduced Trap Trigger Area of Effect", "18% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2h2"] = { type = "Spawn", tier = 2, "60% reduced Trap Trigger Area of Effect", "25% increased Trap Throwing Speed", statOrder = { 1925, 1927 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapsThrowInACircle"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10420, 10612 }, level = 1, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapsThrowInACircle2h"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10420, 10612 }, level = 60, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration1"] = { type = "Spawn", tier = 1, "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5267, 10039 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2"] = { type = "Spawn", tier = 2, "Brands have 40% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5267, 10039 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2h1"] = { type = "Spawn", tier = 1, "Brands have 45% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5267, 10039 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2h2"] = { type = "Spawn", tier = 2, "Brands have 60% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5267, 10039 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange1"] = { type = "Spawn", tier = 1, "Brand Recall has 40% reduced Cooldown Recovery Rate", "40% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2"] = { type = "Spawn", tier = 2, "Brand Recall has 40% reduced Cooldown Recovery Rate", "60% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2h1"] = { type = "Spawn", tier = 1, "Brand Recall has 60% reduced Cooldown Recovery Rate", "75% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2h2"] = { type = "Spawn", tier = 2, "Brand Recall has 60% reduced Cooldown Recovery Rate", "100% increased Brand Attachment range", statOrder = { 10040, 10044 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo1"] = { type = "Spawn", tier = 1, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 25% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2"] = { type = "Spawn", tier = 2, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 40% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 50% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 70% chance to Summon two Totems instead of one", statOrder = { 2578, 5723 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath1"] = { type = "Spawn", tier = 1, "15% reduced Totem Life", "Totems Explode on Death, dealing 10% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2"] = { type = "Spawn", tier = 2, "15% reduced Totem Life", "Totems Explode on Death, dealing 15% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Life", "Totems Explode on Death, dealing 20% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Life", "Totems Explode on Death, dealing 30% of their Life as Physical Damage", statOrder = { 1774, 10405 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeUnaffectedByChillWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "Unaffected by Chill while Channelling", statOrder = { 1645, 10460 }, level = 1, group = "WeaponTreeUnaffectedByChillWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeUnaffectedByShockWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock on you", "Unaffected by Shock while Channelling", statOrder = { 10020, 10480 }, level = 1, group = "WeaponTreeUnaffectedByShockWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect1"] = { type = "Spawn", tier = 1, "20% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2"] = { type = "Spawn", tier = 2, "30% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2h1"] = { type = "Spawn", tier = 1, "35% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2h2"] = { type = "Spawn", tier = 2, "50% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10567, 10575 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently1"] = { type = "Spawn", tier = 1, "30% reduced Damage", "25% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2"] = { type = "Spawn", tier = 2, "30% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h1"] = { type = "Spawn", tier = 1, "50% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h2"] = { type = "Spawn", tier = 2, "50% reduced Damage", "60% increased Damage for each time you've Warcried Recently", statOrder = { 1191, 6067 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite1"] = { type = "Spawn", tier = 1, "6% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2"] = { type = "Spawn", tier = 2, "10% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2h1"] = { type = "Spawn", tier = 1, "12% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2h2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill1"] = { type = "Spawn", tier = 1, "6% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2"] = { type = "Spawn", tier = 2, "10% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2h1"] = { type = "Spawn", tier = 1, "12% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2h2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock1"] = { type = "Spawn", tier = 1, "6% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2"] = { type = "Spawn", tier = 2, "10% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2h1"] = { type = "Spawn", tier = 1, "12% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2h2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire Exposure on Hit", "25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit", statOrder = { 5027, 7285 }, level = 34, group = "WeaponTreeFireExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Cold Exposure on Hit", "25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit", statOrder = { 5026, 7284 }, level = 34, group = "WeaponTreeColdExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Lightning Exposure on Hit", "25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit", statOrder = { 5028, 7286 }, level = 34, group = "WeaponTreeLightningExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeAllExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire, Cold, and Lightning Exposure on Hit", "25% chance to be inflicted with a random Exposure when you take Elemental Damage from a Hit", statOrder = { 7272, 7287 }, level = 75, group = "WeaponTreeAllExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance1"] = { type = "Spawn", tier = 1, "6% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4397, 7288 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2"] = { type = "Spawn", tier = 2, "10% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4397, 7288 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2h1"] = { type = "Spawn", tier = 1, "10% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4397, 7288 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2h2"] = { type = "Spawn", tier = 2, "15% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4397, 7288 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm1"] = { type = "Spawn", tier = 1, "Overwhelm 15% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 20, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2"] = { type = "Spawn", tier = 2, "Overwhelm 20% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2h1"] = { type = "Spawn", tier = 1, "Overwhelm 24% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 25, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2h2"] = { type = "Spawn", tier = 2, "Overwhelm 32% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2978, 7159 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration1"] = { type = "Spawn", tier = 1, "30% increased Stun Duration on Enemies", "15% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2"] = { type = "Spawn", tier = 2, "40% increased Stun Duration on Enemies", "20% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2h1"] = { type = "Spawn", tier = 1, "60% increased Stun Duration on Enemies", "30% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2h2"] = { type = "Spawn", tier = 2, "80% increased Stun Duration on Enemies", "40% increased Stun Duration on you", statOrder = { 1863, 4174 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on Enemies", "15% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2"] = { type = "Spawn", tier = 2, "30% increased Freeze Duration on Enemies", "20% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Freeze Duration on Enemies", "30% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Freeze Duration on Enemies", "40% increased Freeze Duration on you", statOrder = { 1858, 1874 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on Enemies", "15% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2"] = { type = "Spawn", tier = 2, "30% increased Ignite Duration on Enemies", "20% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Ignite Duration on Enemies", "30% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Ignite Duration on Enemies", "40% increased Ignite Duration on you", statOrder = { 1859, 1875 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration1"] = { type = "Spawn", tier = 1, "20% increased Bleeding Duration", "15% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2"] = { type = "Spawn", tier = 2, "30% increased Bleeding Duration", "20% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Bleeding Duration", "30% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Bleeding Duration", "40% increased Bleed Duration on you", statOrder = { 4994, 9970 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration1"] = { type = "Spawn", tier = 1, "10% increased Poison Duration", "15% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2"] = { type = "Spawn", tier = 2, "15% increased Poison Duration", "20% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2h1"] = { type = "Spawn", tier = 1, "18% increased Poison Duration", "30% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2h2"] = { type = "Spawn", tier = 2, "24% increased Poison Duration", "40% increased Poison Duration on you", statOrder = { 3170, 9979 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect1"] = { type = "Spawn", tier = 1, "15% increased Effect of Chill on you", "30% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2"] = { type = "Spawn", tier = 2, "20% increased Effect of Chill on you", "40% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "60% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of Chill on you", "80% increased Effect of Chill", statOrder = { 1645, 5769 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect1"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock", "15% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2"] = { type = "Spawn", tier = 2, "40% increased Effect of Shock", "20% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2h1"] = { type = "Spawn", tier = 1, "60% increased Effect of Shock", "30% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2h2"] = { type = "Spawn", tier = 2, "80% increased Effect of Shock", "40% increased Effect of Shock on you", statOrder = { 10009, 10020 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect1"] = { type = "Spawn", tier = 1, "10% increased Impale Effect", "Attack Hits against you have 15% chance to Impale", statOrder = { 7243, 9835 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2"] = { type = "Spawn", tier = 2, "15% increased Impale Effect", "Attack Hits against you have 20% chance to Impale", statOrder = { 7243, 9835 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2h1"] = { type = "Spawn", tier = 1, "18% increased Impale Effect", "Attack Hits against you have 30% chance to Impale", statOrder = { 7243, 9835 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2h2"] = { type = "Spawn", tier = 2, "24% increased Impale Effect", "Attack Hits against you have 40% chance to Impale", statOrder = { 7243, 9835 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeLocalReducedAttributeRequirements1"] = { type = "Spawn", tier = 1, "20% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, - ["WeaponTreeLocalReducedAttributeRequirements2"] = { type = "Spawn", tier = 2, "30% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity1"] = { type = "Spawn", tier = 1, "+60 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2"] = { type = "Spawn", tier = 2, "+80 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h1"] = { type = "Spawn", tier = 1, "+90 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h2"] = { type = "Spawn", tier = 2, "+120 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1178, 2015 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence1"] = { type = "Spawn", tier = 1, "+60 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2"] = { type = "Spawn", tier = 2, "+80 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h1"] = { type = "Spawn", tier = 1, "+90 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h2"] = { type = "Spawn", tier = 2, "+120 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1179, 2016 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength1"] = { type = "Spawn", tier = 1, "+60 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2"] = { type = "Spawn", tier = 2, "+80 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h1"] = { type = "Spawn", tier = 1, "+90 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h2"] = { type = "Spawn", tier = 2, "+120 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1177, 2017 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Dexterity", "4% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "10% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2h2"] = { type = "Spawn", tier = 2, "20% increased Movement Speed if Dexterity is below 100", statOrder = { 9409 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence1"] = { type = "Spawn", tier = 1, "14% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2"] = { type = "Spawn", tier = 2, "20% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2h1"] = { type = "Spawn", tier = 1, "24% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2h2"] = { type = "Spawn", tier = 2, "32% increased Area of Effect if Intelligence is below 100", statOrder = { 4721 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength1"] = { type = "Spawn", tier = 1, "6% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2"] = { type = "Spawn", tier = 2, "10% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2h1"] = { type = "Spawn", tier = 1, "12% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2h2"] = { type = "Spawn", tier = 2, "16% chance to deal Double Damage if Strength is below 100", statOrder = { 6264 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 7 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 11 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 6 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 8 to 19 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 20 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 11 to 25 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 14 to 33 Physical Damage", "6% reduced Attack Speed", statOrder = { 1300, 1437 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", statOrder = { 1300 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 8 Physical Damage", statOrder = { 1300 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", statOrder = { 1300 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", statOrder = { 1300 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", statOrder = { 1300 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Physical Damage", statOrder = { 1300 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 6 to 11 Physical Damage", statOrder = { 1300 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 7 to 16 Physical Damage", statOrder = { 1300 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 8 to 19 Physical Damage", statOrder = { 1300 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 11 to 26 Physical Damage", statOrder = { 1300 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1300, 1978 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1300, 1980 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1300, 1982 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1300, 1985 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1300, 1984 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1300, 7967 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 5 to 9 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 27 to 42 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 55 to 83 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 9 to 14 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 16 to 24 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 30 to 47 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 52 to 77 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 102 to 153 Fire Damage", "6% reduced Attack Speed", statOrder = { 1386, 1437 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage", statOrder = { 1386 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Fire Damage", statOrder = { 1386 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire3"] = { type = "Spawn", tier = 3, "Adds 13 to 18 Fire Damage", statOrder = { 1386 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire4"] = { type = "Spawn", tier = 4, "Adds 22 to 32 Fire Damage", statOrder = { 1386 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire5"] = { type = "Spawn", tier = 5, "Adds 42 to 63 Fire Damage", statOrder = { 1386 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 8 to 10 Fire Damage", statOrder = { 1386 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 13 to 19 Fire Damage", statOrder = { 1386 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", statOrder = { 1386 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 39 to 61 Fire Damage", statOrder = { 1386 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 78 to 118 Fire Damage", statOrder = { 1386 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Fire Damage", "10% chance to Ignite", statOrder = { 1386, 2049 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Fire Damage", "10% chance to Ignite", statOrder = { 1386, 2049 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 12 Fire Damage", "10% chance to Ignite", statOrder = { 1386, 2049 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Fire Damage", "10% chance to Ignite", statOrder = { 1386, 2049 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 25 to 39 Fire Damage", "10% chance to Ignite", statOrder = { 1386, 2049 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Fire Damage", "20% chance to Ignite", statOrder = { 1386, 2049 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Fire Damage", "20% chance to Ignite", statOrder = { 1386, 2049 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 22 Fire Damage", "20% chance to Ignite", statOrder = { 1386, 2049 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 36 Fire Damage", "20% chance to Ignite", statOrder = { 1386, 2049 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 48 to 71 Fire Damage", "20% chance to Ignite", statOrder = { 1386, 2049 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 5 Fire Damage", statOrder = { 59, 1386 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 3 to 6 Fire Damage", statOrder = { 59, 1386 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 7 to 12 Fire Damage", statOrder = { 59, 1386 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 12 to 19 Fire Damage", statOrder = { 59, 1386 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 25 to 39 Fire Damage", statOrder = { 59, 1386 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage", statOrder = { 59, 1386 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 7 to 11 Fire Damage", statOrder = { 59, 1386 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 13 to 22 Fire Damage", statOrder = { 59, 1386 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 23 to 36 Fire Damage", statOrder = { 59, 1386 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 48 to 71 Fire Damage", statOrder = { 59, 1386 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 52 to 78 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 8 to 14 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 14 to 23 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 28 to 44 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 47 to 73 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 95 to 144 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1395, 2920 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", statOrder = { 1395 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Cold Damage", statOrder = { 1395 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Cold Damage", statOrder = { 1395 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Cold Damage", statOrder = { 1395 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold5"] = { type = "Spawn", tier = 5, "Adds 41 to 60 Cold Damage", statOrder = { 1395 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage", statOrder = { 1395 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Cold Damage", statOrder = { 1395 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Cold Damage", statOrder = { 1395 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Cold Damage", statOrder = { 1395 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 74 to 111 Cold Damage", statOrder = { 1395 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "10% chance to Freeze", statOrder = { 1395, 2052 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "10% chance to Freeze", statOrder = { 1395, 2052 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "10% chance to Freeze", statOrder = { 1395, 2052 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "10% chance to Freeze", statOrder = { 1395, 2052 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "10% chance to Freeze", statOrder = { 1395, 2052 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "20% chance to Freeze", statOrder = { 1395, 2052 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "20% chance to Freeze", statOrder = { 1395, 2052 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "20% chance to Freeze", statOrder = { 1395, 2052 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "20% chance to Freeze", statOrder = { 1395, 2052 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "20% chance to Freeze", statOrder = { 1395, 2052 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "4% increased Attack Speed", statOrder = { 1395, 1437 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 20 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 41 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 3 to 66 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 7 to 132 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 21 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 38 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 3 to 75 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 6 to 124 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 13 to 242 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1406, 3424 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage", statOrder = { 1406 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 17 Lightning Damage", statOrder = { 1406 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 30 Lightning Damage", statOrder = { 1406 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 3 to 51 Lightning Damage", statOrder = { 1406 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 6 to 101 Lightning Damage", statOrder = { 1406 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage", statOrder = { 1406 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 29 Lightning Damage", statOrder = { 1406 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 3 to 58 Lightning Damage", statOrder = { 1406 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 4 to 94 Lightning Damage", statOrder = { 1406 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 10 to 186 Lightning Damage", statOrder = { 1406 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% chance to Shock", statOrder = { 1406, 2056 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% chance to Shock", statOrder = { 1406, 2056 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% chance to Shock", statOrder = { 1406, 2056 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% chance to Shock", statOrder = { 1406, 2056 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% chance to Shock", statOrder = { 1406, 2056 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "20% chance to Shock", statOrder = { 1406, 2056 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "20% chance to Shock", statOrder = { 1406, 2056 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "20% chance to Shock", statOrder = { 1406, 2056 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "20% chance to Shock", statOrder = { 1406, 2056 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "20% chance to Shock", statOrder = { 1406, 2056 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1406, 1487 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", "5% reduced maximum Life", statOrder = { 1414, 1593 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Chaos Damage", "5% reduced maximum Life", statOrder = { 1414, 1593 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Chaos Damage", "5% reduced maximum Life", statOrder = { 1414, 1593 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 19 to 31 Chaos Damage", "5% reduced maximum Life", statOrder = { 1414, 1593 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Chaos Damage", "5% reduced maximum Life", statOrder = { 1414, 1593 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Chaos Damage", "7% reduced maximum Life", statOrder = { 1414, 1593 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Chaos Damage", "7% reduced maximum Life", statOrder = { 1414, 1593 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 20 to 30 Chaos Damage", "7% reduced maximum Life", statOrder = { 1414, 1593 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 34 to 51 Chaos Damage", "7% reduced maximum Life", statOrder = { 1414, 1593 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 66 to 99 Chaos Damage", "7% reduced maximum Life", statOrder = { 1414, 1593 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Chaos Damage", statOrder = { 1414 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Chaos Damage", statOrder = { 1414 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage", statOrder = { 1414 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", statOrder = { 1414 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 29 to 46 Chaos Damage", statOrder = { 1414 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", statOrder = { 1414 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 13 Chaos Damage", statOrder = { 1414 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Chaos Damage", statOrder = { 1414 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Chaos Damage", statOrder = { 1414 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 50 to 77 Chaos Damage", statOrder = { 1414 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1414, 8116 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1414, 10782 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 1 to 19 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 12 to 18 Fire Damage", "Adds 12 to 18 Cold Damage", "Adds 3 to 29 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 3 to 55 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 14 to 23 Fire Damage", "Adds 14 to 23 Cold Damage", "Adds 3 to 33 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 23 to 34 Fire Damage", "Adds 23 to 34 Cold Damage", "Adds 4 to 56 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 43 to 64 Fire Damage", "Adds 43 to 64 Cold Damage", "Adds 6 to 102 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Fire Damage", "Adds 5 to 10 Cold Damage", "Adds 1 to 15 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2"] = { type = "Spawn", tier = 2, "Adds 9 to 15 Fire Damage", "Adds 9 to 15 Cold Damage", "Adds 1 to 23 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental3"] = { type = "Spawn", tier = 3, "Adds 18 to 27 Fire Damage", "Adds 18 to 27 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2h1"] = { type = "Spawn", tier = 1, "Adds 10 to 17 Fire Damage", "Adds 10 to 17 Cold Damage", "Adds 3 to 26 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2h2"] = { type = "Spawn", tier = 2, "Adds 17 to 26 Fire Damage", "Adds 17 to 26 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2h3"] = { type = "Spawn", tier = 3, "Adds 34 to 49 Fire Damage", "Adds 34 to 49 Cold Damage", "Adds 4 to 78 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage", "Adds 6 to 10 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 20 Fire Damage", "Adds 13 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 12 to 20 Fire Damage", "Adds 12 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 4 to 9 Fire Damage", "Adds 4 to 9 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 11 to 15 Fire Damage", "Adds 11 to 15 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage", "Adds 7 to 10 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 9 to 17 Fire Damage", "Adds 9 to 17 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 20 to 29 Fire Damage", "Adds 20 to 29 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1386, 1395, 1406 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1427, 1470 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Physical Damage to Spells", statOrder = { 1427 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Physical Damage to Spells", statOrder = { 1427 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Physical Damage to Spells", statOrder = { 1427 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", statOrder = { 1427 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Physical Damage to Spells", statOrder = { 1427 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", statOrder = { 1427 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Physical Damage to Spells", statOrder = { 1427 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Physical Damage to Spells", statOrder = { 1427 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Physical Damage to Spells", statOrder = { 1427 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Physical Damage to Spells", statOrder = { 1427 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1427, 1978 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1427, 1980 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1427, 1982 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1427, 1985 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1427, 3012 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 11 to 17 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 73 to 109 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1428, 1470 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1428 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Fire Damage to Spells", statOrder = { 1428 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Fire Damage to Spells", statOrder = { 1428 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire5"] = { type = "Spawn", tier = 5, "Adds 30 to 45 Fire Damage to Spells", statOrder = { 1428 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage to Spells", statOrder = { 1428 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage to Spells", statOrder = { 1428 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 28 to 43 Fire Damage to Spells", statOrder = { 1428 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 56 to 84 Fire Damage to Spells", statOrder = { 1428 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1428, 2049 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1428, 2049 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 9 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1428, 2049 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1428, 2049 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1428, 2049 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1428, 2049 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1428, 2049 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 16 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1428, 2049 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 26 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1428, 2049 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 34 to 51 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1428, 2049 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 3 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 2 to 4 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 8 to 14 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 18 to 28 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 2 to 6 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 5 to 8 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 9 to 16 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 16 to 26 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 34 to 51 Fire Damage to Spells", statOrder = { 59, 1428 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 37 to 56 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 10 to 16 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 20 to 32 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 34 to 52 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 68 to 103 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1429, 2920 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2"] = { type = "Spawn", tier = 2, "Adds 3 to 7 Cold Damage to Spells", statOrder = { 1429 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Cold Damage to Spells", statOrder = { 1429 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold4"] = { type = "Spawn", tier = 4, "Adds 14 to 21 Cold Damage to Spells", statOrder = { 1429 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold5"] = { type = "Spawn", tier = 5, "Adds 29 to 43 Cold Damage to Spells", statOrder = { 1429 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Cold Damage to Spells", statOrder = { 1429 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage to Spells", statOrder = { 1429 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 40 Cold Damage to Spells", statOrder = { 1429 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 53 to 79 Cold Damage to Spells", statOrder = { 1429 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1429, 2052 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1429, 2052 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1429, 2052 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1429, 2052 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1429, 2052 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1429, 2052 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1429, 2052 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1429, 2052 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1429, 2052 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1429, 2052 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1429, 1470 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1429, 1470 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1429, 1470 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1429, 1470 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1429, 1470 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1429, 1470 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1429, 1470 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1429, 1470 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1429, 1470 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1429, 1470 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 15 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 29 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 2 to 48 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 5 to 94 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 28 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 2 to 53 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 4 to 88 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 9 to 173 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1430, 3424 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1430 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 22 Lightning Damage to Spells", statOrder = { 1430 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 2 to 37 Lightning Damage to Spells", statOrder = { 1430 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 4 to 72 Lightning Damage to Spells", statOrder = { 1430 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 21 Lightning Damage to Spells", statOrder = { 1430 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 2 to 41 Lightning Damage to Spells", statOrder = { 1430 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 3 to 68 Lightning Damage to Spells", statOrder = { 1430 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 7 to 133 Lightning Damage to Spells", statOrder = { 1430 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1430, 2056 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1430, 2056 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1430, 2056 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1430, 2056 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1430, 2056 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1430, 2056 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1430, 2056 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1430, 2056 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1430, 2056 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1430, 2056 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1430, 1481 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1431, 1593 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1431, 1593 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1431, 1593 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1431, 1593 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1431, 1593 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1431, 1593 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1431, 1593 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1431, 1593 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1431, 1593 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1431, 1593 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage to Spells", statOrder = { 1431 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Chaos Damage to Spells", statOrder = { 1431 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Chaos Damage to Spells", statOrder = { 1431 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", statOrder = { 1431 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Chaos Damage to Spells", statOrder = { 1431 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", statOrder = { 1431 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Chaos Damage to Spells", statOrder = { 1431 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Chaos Damage to Spells", statOrder = { 1431 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Chaos Damage to Spells", statOrder = { 1431 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Chaos Damage to Spells", statOrder = { 1431 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1431, 10338 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1431, 10782 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "14% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "21% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "28% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "35% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "42% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "22% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "34% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "45% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "56% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "68% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1246, 1481 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, + ["SpellDamage1"] = { tier = 1, "(3-7)% increased Spell Damage", statOrder = { 1246 }, level = 5, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage2"] = { tier = 2, "(8-12)% increased Spell Damage", statOrder = { 1246 }, level = 20, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage3"] = { tier = 3, "(13-17)% increased Spell Damage", statOrder = { 1246 }, level = 38, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage4"] = { tier = 4, "(18-22)% increased Spell Damage", statOrder = { 1246 }, level = 56, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage5"] = { tier = 5, "(23-26)% increased Spell Damage", statOrder = { 1246 }, level = 76, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["WeaponTreeSpellDamage2h1"] = { type = "Spawn", tier = 1, "16% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2h2"] = { type = "Spawn", tier = 2, "24% increased Spell Damage", statOrder = { 1246 }, level = 21, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2h3"] = { type = "Spawn", tier = 3, "32% increased Spell Damage", statOrder = { 1246 }, level = 46, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2h4"] = { type = "Spawn", tier = 4, "40% increased Spell Damage", statOrder = { 1246 }, level = 65, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2h5"] = { type = "Spawn", tier = 5, "48% increased Spell Damage", statOrder = { 1246 }, level = 77, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1246, 1603 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1246, 1603 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1246, 1603 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1246, 1603 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1246, 1603 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1246, 1603 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1246, 1603 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1246, 1603 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1246, 1603 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1246, 1603 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1246, 1583 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "14% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "21% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "28% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "35% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "42% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "22% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "34% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "45% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "56% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "68% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1233, 1601 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime1"] = { type = "Spawn", tier = 1, "10% increased Damage over Time", statOrder = { 1233 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2"] = { type = "Spawn", tier = 2, "15% increased Damage over Time", statOrder = { 1233 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime3"] = { type = "Spawn", tier = 3, "20% increased Damage over Time", statOrder = { 1233 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime4"] = { type = "Spawn", tier = 4, "25% increased Damage over Time", statOrder = { 1233 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime5"] = { type = "Spawn", tier = 5, "30% increased Damage over Time", statOrder = { 1233 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h1"] = { type = "Spawn", tier = 1, "16% increased Damage over Time", statOrder = { 1233 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h2"] = { type = "Spawn", tier = 2, "24% increased Damage over Time", statOrder = { 1233 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h3"] = { type = "Spawn", tier = 3, "32% increased Damage over Time", statOrder = { 1233 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h4"] = { type = "Spawn", tier = 4, "40% increased Damage over Time", statOrder = { 1233 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h5"] = { type = "Spawn", tier = 5, "48% increased Damage over Time", statOrder = { 1233 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1233, 1918 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1233, 5036 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 22 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 28 to 42 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 14 to 22 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 24 to 37 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 47 to 71 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3809, 9401 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Physical Damage", statOrder = { 3809 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Physical Damage", statOrder = { 3809 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Physical Damage", statOrder = { 3809 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", statOrder = { 3809 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Physical Damage", statOrder = { 3809 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", statOrder = { 3809 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Physical Damage", statOrder = { 3809 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Physical Damage", statOrder = { 3809 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Physical Damage", statOrder = { 3809 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Physical Damage", statOrder = { 3809 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1979, 3809 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1979, 3809 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1979, 3809 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1979, 3809 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1979, 3809 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1979, 3809 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1979, 3809 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1979, 3809 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1979, 3809 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1979, 3809 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1981, 3809 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1981, 3809 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1981, 3809 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1981, 3809 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1981, 3809 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1981, 3809 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1981, 3809 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1981, 3809 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1981, 3809 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1981, 3809 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1983, 3809 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1983, 3809 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1983, 3809 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1983, 3809 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1983, 3809 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1983, 3809 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1983, 3809 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1983, 3809 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1983, 3809 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1983, 3809 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1986, 3809 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1986, 3809 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1986, 3809 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1986, 3809 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1986, 3809 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1986, 3809 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1986, 3809 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1986, 3809 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1986, 3809 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1986, 3809 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 6 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 6 to 10 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 13 to 20 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 6 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 7 to 10 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 22 to 33 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3809, 9475 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3807, 9401 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Fire Damage", statOrder = { 3807 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3807 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 14 additional Fire Damage", statOrder = { 3807 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire4"] = { type = "Spawn", tier = 4, "Minions deal 15 to 24 additional Fire Damage", statOrder = { 3807 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire5"] = { type = "Spawn", tier = 5, "Minions deal 30 to 45 additional Fire Damage", statOrder = { 3807 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3807 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h2"] = { type = "Spawn", tier = 2, "Minions deal 9 to 13 additional Fire Damage", statOrder = { 3807 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h3"] = { type = "Spawn", tier = 3, "Minions deal 16 to 26 additional Fire Damage", statOrder = { 3807 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h4"] = { type = "Spawn", tier = 4, "Minions deal 28 to 43 additional Fire Damage", statOrder = { 3807 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h5"] = { type = "Spawn", tier = 5, "Minions deal 56 to 84 additional Fire Damage", statOrder = { 3807 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3807, 9416 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3807, 9416 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 9 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3807, 9416 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3807, 9416 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 18 to 28 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3807, 9416 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3807, 9416 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3807, 9416 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 16 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3807, 9416 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 26 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3807, 9416 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 34 to 51 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3807, 9416 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 1 to 3 additional Fire Damage", statOrder = { 59, 3807 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 4 additional Fire Damage", statOrder = { 59, 3807 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 4 to 9 additional Fire Damage", statOrder = { 59, 3807 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 8 to 14 additional Fire Damage", statOrder = { 59, 3807 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 18 to 28 additional Fire Damage", statOrder = { 59, 3807 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 6 additional Fire Damage", statOrder = { 59, 3807 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 5 to 8 additional Fire Damage", statOrder = { 59, 3807 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 9 to 16 additional Fire Damage", statOrder = { 59, 3807 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 16 to 26 additional Fire Damage", statOrder = { 59, 3807 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 34 to 51 additional Fire Damage", statOrder = { 59, 3807 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3806, 9421 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Cold Damage", statOrder = { 3806 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", statOrder = { 3806 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Cold Damage", statOrder = { 3806 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Cold Damage", statOrder = { 3806 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold5"] = { type = "Spawn", tier = 5, "Minions deal 37 to 56 additional Cold Damage", statOrder = { 3806 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 10 additional Cold Damage", statOrder = { 3806 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h2"] = { type = "Spawn", tier = 2, "Minions deal 10 to 16 additional Cold Damage", statOrder = { 3806 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h3"] = { type = "Spawn", tier = 3, "Minions deal 20 to 32 additional Cold Damage", statOrder = { 3806 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h4"] = { type = "Spawn", tier = 4, "Minions deal 34 to 52 additional Cold Damage", statOrder = { 3806 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h5"] = { type = "Spawn", tier = 5, "Minions deal 68 to 103 additional Cold Damage", statOrder = { 3806 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3806, 9413 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 7 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3806, 9413 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3806, 9413 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 21 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3806, 9413 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 29 to 43 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3806, 9413 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3806, 9413 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3806, 9413 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 15 to 24 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3806, 9413 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 26 to 40 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3806, 9413 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 53 to 79 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3806, 9413 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 8 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 17 to 25 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 15 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 25 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 32 to 47 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3806, 9401 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "4% increased Lightning Damage taken", "Minions deal 1 to 9 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "4% increased Lightning Damage taken", "Minions deal 1 to 15 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "4% increased Lightning Damage taken", "Minions deal 1 to 29 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "4% increased Lightning Damage taken", "Minions deal 2 to 48 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "4% increased Lightning Damage taken", "Minions deal 5 to 94 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "6% increased Lightning Damage taken", "Minions deal 1 to 16 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "6% increased Lightning Damage taken", "Minions deal 1 to 28 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "6% increased Lightning Damage taken", "Minions deal 2 to 53 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "6% increased Lightning Damage taken", "Minions deal 4 to 88 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "6% increased Lightning Damage taken", "Minions deal 9 to 173 additional Lightning Damage", statOrder = { 3424, 3808 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 6 additional Lightning Damage", statOrder = { 3808 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3808 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 22 additional Lightning Damage", statOrder = { 3808 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 37 additional Lightning Damage", statOrder = { 3808 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 72 additional Lightning Damage", statOrder = { 3808 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3808 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 21 additional Lightning Damage", statOrder = { 3808 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 41 additional Lightning Damage", statOrder = { 3808 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 68 additional Lightning Damage", statOrder = { 3808 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h5"] = { type = "Spawn", tier = 5, "Minions deal 7 to 133 additional Lightning Damage", statOrder = { 3808 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3808, 9419 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3808, 9419 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3808, 9419 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3808, 9419 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3808, 9419 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3808, 9419 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3808, 9419 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3808, 9419 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3808, 9419 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3808, 9419 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3808, 9421 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "6% reduced maximum Life", "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "6% reduced maximum Life", "Minions deal 5 to 7 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "6% reduced maximum Life", "Minions deal 8 to 14 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "6% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "6% reduced maximum Life", "Minions deal 28 to 42 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "Minions deal 4 to 7 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "Minions deal 7 to 12 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "10% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "10% reduced maximum Life", "Minions deal 24 to 37 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "10% reduced maximum Life", "Minions deal 47 to 71 additional Chaos Damage", statOrder = { 1593, 3805 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Chaos Damage", statOrder = { 3805 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Chaos Damage", statOrder = { 3805 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3805 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3805 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Chaos Damage", statOrder = { 3805 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 3805 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Chaos Damage", statOrder = { 3805 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Chaos Damage", statOrder = { 3805 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Chaos Damage", statOrder = { 3805 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Chaos Damage", statOrder = { 3805 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 3209, 3805 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance1"] = { type = "Spawn", tier = 1, "+7% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance2"] = { type = "Spawn", tier = 2, "+7% to Chaos Resistance", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance3"] = { type = "Spawn", tier = 3, "+7% to Chaos Resistance", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance4"] = { type = "Spawn", tier = 4, "+7% to Chaos Resistance", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance5"] = { type = "Spawn", tier = 5, "+7% to Chaos Resistance", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance1"] = { type = "Spawn", tier = 1, "+13% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance2"] = { type = "Spawn", tier = 2, "+13% to Chaos Resistance", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance3"] = { type = "Spawn", tier = 3, "+13% to Chaos Resistance", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance4"] = { type = "Spawn", tier = 4, "+13% to Chaos Resistance", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance5"] = { type = "Spawn", tier = 5, "+13% to Chaos Resistance", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 1664, 3805 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 14% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 21% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 28% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 35% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 42% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 22% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 34% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 45% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 56% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 68% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1996, 9421 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage1"] = { type = "Spawn", tier = 1, "Minions deal 10% increased Damage", statOrder = { 1996 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% increased Damage", statOrder = { 1996 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage3"] = { type = "Spawn", tier = 3, "Minions deal 20% increased Damage", statOrder = { 1996 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage4"] = { type = "Spawn", tier = 4, "Minions deal 25% increased Damage", statOrder = { 1996 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage5"] = { type = "Spawn", tier = 5, "Minions deal 30% increased Damage", statOrder = { 1996 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 16% increased Damage", statOrder = { 1996 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 24% increased Damage", statOrder = { 1996 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h3"] = { type = "Spawn", tier = 3, "Minions deal 32% increased Damage", statOrder = { 1996 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h4"] = { type = "Spawn", tier = 4, "Minions deal 40% increased Damage", statOrder = { 1996 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h5"] = { type = "Spawn", tier = 5, "Minions deal 48% increased Damage", statOrder = { 1996 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana1"] = { type = "Spawn", tier = 1, "10% increased maximum Mana", "Minions deal 7% increased Damage", statOrder = { 1603, 1996 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased maximum Mana", "Minions deal 10% increased Damage", statOrder = { 1603, 1996 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana3"] = { type = "Spawn", tier = 3, "10% increased maximum Mana", "Minions deal 13% increased Damage", statOrder = { 1603, 1996 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana4"] = { type = "Spawn", tier = 4, "10% increased maximum Mana", "Minions deal 17% increased Damage", statOrder = { 1603, 1996 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana5"] = { type = "Spawn", tier = 5, "10% increased maximum Mana", "Minions deal 20% increased Damage", statOrder = { 1603, 1996 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana1"] = { type = "Spawn", tier = 1, "20% increased maximum Mana", "Minions deal 11% increased Damage", statOrder = { 1603, 1996 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana2"] = { type = "Spawn", tier = 2, "20% increased maximum Mana", "Minions deal 16% increased Damage", statOrder = { 1603, 1996 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana3"] = { type = "Spawn", tier = 3, "20% increased maximum Mana", "Minions deal 21% increased Damage", statOrder = { 1603, 1996 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana4"] = { type = "Spawn", tier = 4, "20% increased maximum Mana", "Minions deal 26% increased Damage", statOrder = { 1603, 1996 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana5"] = { type = "Spawn", tier = 5, "20% increased maximum Mana", "Minions deal 32% increased Damage", statOrder = { 1603, 1996 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "10% increased maximum Energy Shield", "Minions deal 7% increased Damage", statOrder = { 1583, 1996 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased maximum Energy Shield", "Minions deal 10% increased Damage", statOrder = { 1583, 1996 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "10% increased maximum Energy Shield", "Minions deal 13% increased Damage", statOrder = { 1583, 1996 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "10% increased maximum Energy Shield", "Minions deal 17% increased Damage", statOrder = { 1583, 1996 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "10% increased maximum Energy Shield", "Minions deal 20% increased Damage", statOrder = { 1583, 1996 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "20% increased maximum Energy Shield", "Minions deal 11% increased Damage", statOrder = { 1583, 1996 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "20% increased maximum Energy Shield", "Minions deal 16% increased Damage", statOrder = { 1583, 1996 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "20% increased maximum Energy Shield", "Minions deal 21% increased Damage", statOrder = { 1583, 1996 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "20% increased maximum Energy Shield", "Minions deal 26% increased Damage", statOrder = { 1583, 1996 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased maximum Energy Shield", "Minions deal 32% increased Damage", statOrder = { 1583, 1996 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeBowGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Bow Gems", statOrder = { 184 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedBowGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeMeleeGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "mace", "sword", "sceptre", "axe", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMeleeGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Spell Gems", statOrder = { 180 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Spell Gems", statOrder = { 180 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, + ["WeaponTreeMinionGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, + ["WeaponTreeDexterityGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Dexterity Gems", statOrder = { 163 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedDexterityGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 250, 250, 250, 500, 250, 0 }, modTags = { }, }, + ["WeaponTreeStrengthGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Strength Gems", statOrder = { 161 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedStrengthGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 250, 250, 500, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeIntelliegenceGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Intelligence Gems", statOrder = { 164 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedIntelligenceGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 500, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdPerDex"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4974 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdPerDex2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4974 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedFirePerStr"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedFirePerStr2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningPerInt"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningPerInt2h"] = { type = "MergeOnly", tier = 1, "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosPerLowestAttribute"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4973 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosPerLowestAttribute2h"] = { type = "MergeOnly", tier = 1, "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4973 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1215, 1904 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1215, 1904 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1215, 1904 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "40% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1215, 1904 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "50% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1215, 1904 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "60% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1215, 1904 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage1"] = { type = "Spawn", tier = 1, "15% increased Global Damage", statOrder = { 1215 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2"] = { type = "Spawn", tier = 2, "20% increased Global Damage", statOrder = { 1215 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage3"] = { type = "Spawn", tier = 3, "25% increased Global Damage", statOrder = { 1215 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", statOrder = { 1215 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", statOrder = { 1215 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", statOrder = { 1215 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "4% increased Attributes", "8% increased Global Damage", statOrder = { 1206, 1215 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "4% increased Attributes", "12% increased Global Damage", statOrder = { 1206, 1215 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "4% increased Attributes", "16% increased Global Damage", statOrder = { 1206, 1215 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "6% increased Attributes", "15% increased Global Damage", statOrder = { 1206, 1215 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "6% increased Attributes", "20% increased Global Damage", statOrder = { 1206, 1215 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "6% increased Attributes", "25% increased Global Damage", statOrder = { 1206, 1215 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife1"] = { type = "Spawn", tier = 1, "+30 to maximum Life", statOrder = { 1591 }, level = 1, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife2"] = { type = "Spawn", tier = 2, "+35 to maximum Life", statOrder = { 1591 }, level = 21, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife3"] = { type = "Spawn", tier = 3, "+40 to maximum Life", statOrder = { 1591 }, level = 46, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife4"] = { type = "Spawn", tier = 4, "+45 to maximum Life", statOrder = { 1591 }, level = 65, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife5"] = { type = "Spawn", tier = 5, "+50 to maximum Life", statOrder = { 1591 }, level = 77, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage1"] = { type = "Spawn", tier = 1, "20% reduced Damage", "+60 to maximum Life", statOrder = { 1214, 1591 }, level = 15, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage2"] = { type = "Spawn", tier = 2, "20% reduced Damage", "+75 to maximum Life", statOrder = { 1214, 1591 }, level = 45, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage3"] = { type = "Spawn", tier = 3, "20% reduced Damage", "+80 to maximum Life", statOrder = { 1214, 1591 }, level = 70, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance1"] = { type = "Spawn", tier = 1, "+60 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1591, 1642 }, level = 15, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance2"] = { type = "Spawn", tier = 2, "+75 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1591, 1642 }, level = 45, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance3"] = { type = "Spawn", tier = 3, "+80 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1591, 1642 }, level = 70, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences1"] = { type = "Spawn", tier = 1, "50% reduced Armour, Evasion and Energy Shield", "+60 to maximum Life", statOrder = { 1577, 1591 }, level = 15, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences2"] = { type = "Spawn", tier = 2, "50% reduced Armour, Evasion and Energy Shield", "+75 to maximum Life", statOrder = { 1577, 1591 }, level = 45, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences3"] = { type = "Spawn", tier = 3, "50% reduced Armour, Evasion and Energy Shield", "+80 to maximum Life", statOrder = { 1577, 1591 }, level = 70, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1591, 1967 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1591, 1967 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1591, 1967 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "20% increased Stun Threshold", statOrder = { 1591, 3308 }, level = 1, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "20% increased Stun Threshold", statOrder = { 1591, 3308 }, level = 40, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "20% increased Stun Threshold", statOrder = { 1591, 3308 }, level = 65, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1591, 1772 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1591, 1772 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1591, 1772 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour1"] = { type = "Spawn", tier = 1, "+20 to Armour", statOrder = { 1562 }, level = 1, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour2"] = { type = "Spawn", tier = 2, "+35 to Armour", statOrder = { 1562 }, level = 24, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour3"] = { type = "Spawn", tier = 3, "+50 to Armour", statOrder = { 1562 }, level = 50, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour4"] = { type = "Spawn", tier = 4, "+65 to Armour", statOrder = { 1562 }, level = 68, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour5"] = { type = "Spawn", tier = 5, "+80 to Armour", statOrder = { 1562 }, level = 82, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken1"] = { type = "Spawn", tier = 1, "+100 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1562, 2268 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken2"] = { type = "Spawn", tier = 2, "+125 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1562, 2268 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken3"] = { type = "Spawn", tier = 3, "+150 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1562, 2268 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "+100 to Armour", statOrder = { 1535, 1562 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "+125 to Armour", statOrder = { 1535, 1562 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes3"] = { type = "Spawn", tier = 3, "You take 20% increased Extra Damage from Critical Strikes", "+150 to Armour", statOrder = { 1535, 1562 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength1"] = { type = "Spawn", tier = 1, "5% increased Strength", "+20 to Armour", statOrder = { 1207, 1562 }, level = 1, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength2"] = { type = "Spawn", tier = 2, "5% increased Strength", "+30 to Armour", statOrder = { 1207, 1562 }, level = 40, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength3"] = { type = "Spawn", tier = 3, "5% increased Strength", "+40 to Armour", statOrder = { 1207, 1562 }, level = 65, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Armour", statOrder = { 59, 1562 }, level = 1, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Armour", statOrder = { 59, 1562 }, level = 40, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Armour", statOrder = { 59, 1562 }, level = 65, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock1"] = { type = "Spawn", tier = 1, "+20 to Armour", "+2% Chance to Block", statOrder = { 1562, 2272 }, level = 1, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock2"] = { type = "Spawn", tier = 2, "+30 to Armour", "+2% Chance to Block", statOrder = { 1562, 2272 }, level = 40, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock3"] = { type = "Spawn", tier = 3, "+40 to Armour", "+2% Chance to Block", statOrder = { 1562, 2272 }, level = 65, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion1"] = { type = "Spawn", tier = 1, "+20 to Evasion Rating", statOrder = { 1570 }, level = 1, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion2"] = { type = "Spawn", tier = 2, "+35 to Evasion Rating", statOrder = { 1570 }, level = 24, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion3"] = { type = "Spawn", tier = 3, "+50 to Evasion Rating", statOrder = { 1570 }, level = 50, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion4"] = { type = "Spawn", tier = 4, "+65 to Evasion Rating", statOrder = { 1570 }, level = 68, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion5"] = { type = "Spawn", tier = 5, "+80 to Evasion Rating", statOrder = { 1570 }, level = 82, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1570, 5036 }, level = 20, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1570, 5036 }, level = 55, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1570, 5036 }, level = 83, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1570, 1925 }, level = 20, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1570, 1925 }, level = 55, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1570, 1925 }, level = 83, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+20 to Evasion Rating", statOrder = { 1208, 1570 }, level = 1, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+30 to Evasion Rating", statOrder = { 1208, 1570 }, level = 40, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+40 to Evasion Rating", statOrder = { 1208, 1570 }, level = 65, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Evasion Rating", statOrder = { 59, 1570 }, level = 1, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Evasion Rating", statOrder = { 59, 1570 }, level = 40, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Evasion Rating", statOrder = { 59, 1570 }, level = 65, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression1"] = { type = "Spawn", tier = 1, "+4% chance to Suppress Spell Damage", "+20 to Evasion Rating", statOrder = { 1167, 1570 }, level = 1, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression2"] = { type = "Spawn", tier = 2, "+4% chance to Suppress Spell Damage", "+30 to Evasion Rating", statOrder = { 1167, 1570 }, level = 40, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression3"] = { type = "Spawn", tier = 3, "+4% chance to Suppress Spell Damage", "+40 to Evasion Rating", statOrder = { 1167, 1570 }, level = 65, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield1"] = { type = "Spawn", tier = 1, "+5 to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield2"] = { type = "Spawn", tier = 2, "+10 to maximum Energy Shield", statOrder = { 1581 }, level = 24, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", statOrder = { 1581 }, level = 50, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield4"] = { type = "Spawn", tier = 4, "+20 to maximum Energy Shield", statOrder = { 1581 }, level = 68, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield5"] = { type = "Spawn", tier = 5, "+25 to maximum Energy Shield", statOrder = { 1581 }, level = 82, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1581, 1587 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1581, 1587 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1581, 1587 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1581, 1607 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1581, 1607 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1581, 1607 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence1"] = { type = "Spawn", tier = 1, "5% increased Intelligence", "+9 to maximum Energy Shield", statOrder = { 1209, 1581 }, level = 1, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence2"] = { type = "Spawn", tier = 2, "5% increased Intelligence", "+12 to maximum Energy Shield", statOrder = { 1209, 1581 }, level = 40, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence3"] = { type = "Spawn", tier = 3, "5% increased Intelligence", "+15 to maximum Energy Shield", statOrder = { 1209, 1581 }, level = 65, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+9 to maximum Energy Shield", statOrder = { 59, 1581 }, level = 1, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+12 to maximum Energy Shield", statOrder = { 59, 1581 }, level = 40, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+15 to maximum Energy Shield", statOrder = { 59, 1581 }, level = 65, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana1"] = { type = "Spawn", tier = 1, "+9 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1581, 1603 }, level = 1, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana2"] = { type = "Spawn", tier = 2, "+12 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1581, 1603 }, level = 40, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1581, 1603 }, level = 65, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance1"] = { type = "Spawn", tier = 1, "30% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1381, 1648 }, level = 8, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance2"] = { type = "Spawn", tier = 2, "35% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1381, 1648 }, level = 42, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance3"] = { type = "Spawn", tier = 3, "40% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1381, 1648 }, level = 72, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Fire Damage", statOrder = { 1381 }, level = 50, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Fire Damage", statOrder = { 1381 }, level = 77, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire1"] = { type = "Spawn", tier = 1, "9% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1381, 2472 }, level = 1, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire2"] = { type = "Spawn", tier = 2, "12% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1381, 2472 }, level = 36, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire3"] = { type = "Spawn", tier = 3, "15% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1381, 2472 }, level = 68, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance1"] = { type = "Spawn", tier = 1, "30% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1390, 1654 }, level = 8, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance2"] = { type = "Spawn", tier = 2, "35% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1390, 1654 }, level = 42, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance3"] = { type = "Spawn", tier = 3, "40% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1390, 1654 }, level = 72, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Cold Damage", statOrder = { 1390 }, level = 50, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Cold Damage", statOrder = { 1390 }, level = 77, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold1"] = { type = "Spawn", tier = 1, "9% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1390, 2473 }, level = 1, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold2"] = { type = "Spawn", tier = 2, "12% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1390, 2473 }, level = 36, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold3"] = { type = "Spawn", tier = 3, "15% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1390, 2473 }, level = 68, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance1"] = { type = "Spawn", tier = 1, "30% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1401, 1659 }, level = 8, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance2"] = { type = "Spawn", tier = 2, "35% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1401, 1659 }, level = 42, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance3"] = { type = "Spawn", tier = 3, "40% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1401, 1659 }, level = 72, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Lightning Damage", statOrder = { 1401 }, level = 50, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Lightning Damage", statOrder = { 1401 }, level = 77, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning1"] = { type = "Spawn", tier = 1, "9% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1401, 2474 }, level = 1, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning2"] = { type = "Spawn", tier = 2, "12% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1401, 2474 }, level = 36, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning3"] = { type = "Spawn", tier = 3, "15% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1401, 2474 }, level = 68, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance1"] = { type = "Spawn", tier = 1, "30% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1409, 1664 }, level = 8, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance2"] = { type = "Spawn", tier = 2, "35% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1409, 1664 }, level = 42, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance3"] = { type = "Spawn", tier = 3, "40% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1409, 1664 }, level = 72, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Chaos Damage", statOrder = { 1409 }, level = 50, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Chaos Damage", statOrder = { 1409 }, level = 77, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos1"] = { type = "Spawn", tier = 1, "9% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1409, 2476 }, level = 1, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos2"] = { type = "Spawn", tier = 2, "12% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1409, 2476 }, level = 36, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos3"] = { type = "Spawn", tier = 3, "15% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1409, 2476 }, level = 68, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate1"] = { type = "Spawn", tier = 1, "30% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1254, 1600 }, level = 8, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate2"] = { type = "Spawn", tier = 2, "35% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1254, 1600 }, level = 42, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate3"] = { type = "Spawn", tier = 3, "40% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1254, 1600 }, level = 72, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent1"] = { type = "Spawn", tier = 1, "15% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent2"] = { type = "Spawn", tier = 2, "20% increased Global Physical Damage", statOrder = { 1254 }, level = 50, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent3"] = { type = "Spawn", tier = 3, "25% increased Global Physical Damage", statOrder = { 1254 }, level = 77, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction1"] = { type = "Spawn", tier = 1, "9% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1254, 2296 }, level = 1, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction2"] = { type = "Spawn", tier = 2, "12% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1254, 2296 }, level = 36, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction3"] = { type = "Spawn", tier = 3, "15% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1254, 2296 }, level = 68, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "+4% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1486, 2705 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "+5% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1486, 2705 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "+6% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1486, 2705 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+40% to Global Critical Strike Multiplier", statOrder = { 1486, 1511 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+50% to Global Critical Strike Multiplier", statOrder = { 1486, 1511 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1486, 1511 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1486, 1511 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+80% to Global Critical Strike Multiplier", statOrder = { 1486, 1511 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+100% to Global Critical Strike Multiplier", statOrder = { 1486, 1511 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChance1"] = { type = "Spawn", tier = 1, "+0.4% to Critical Strike Chance", statOrder = { 1486 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChance2"] = { type = "Spawn", tier = 2, "+0.6% to Critical Strike Chance", statOrder = { 1486 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChance3"] = { type = "Spawn", tier = 3, "+0.8% to Critical Strike Chance", statOrder = { 1486 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "15% reduced Attack Speed", "+0.9% to Critical Strike Chance", statOrder = { 1437, 1486 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "15% reduced Attack Speed", "+1.2% to Critical Strike Chance", statOrder = { 1437, 1486 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "15% reduced Attack Speed", "+1.5% to Critical Strike Chance", statOrder = { 1437, 1486 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy1"] = { type = "Spawn", tier = 1, "+0.9% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1486, 2047 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy2"] = { type = "Spawn", tier = 2, "+1.2% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1486, 2047 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy3"] = { type = "Spawn", tier = 3, "+1.5% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1486, 2047 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage1"] = { type = "Spawn", tier = 1, "30% increased Attack Speed", "20% less Global Damage", statOrder = { 1437, 10745 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage2"] = { type = "Spawn", tier = 2, "35% increased Attack Speed", "20% less Global Damage", statOrder = { 1437, 10745 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage3"] = { type = "Spawn", tier = 3, "40% increased Attack Speed", "20% less Global Damage", statOrder = { 1437, 10745 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage1"] = { type = "Spawn", tier = 1, "24% increased Attack Speed", "15% less Global Damage", statOrder = { 1437, 10745 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage2"] = { type = "Spawn", tier = 2, "27% increased Attack Speed", "15% less Global Damage", statOrder = { 1437, 10745 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage3"] = { type = "Spawn", tier = 3, "30% increased Attack Speed", "15% less Global Damage", statOrder = { 1437, 10745 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed1"] = { type = "Spawn", tier = 1, "8% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed2"] = { type = "Spawn", tier = 2, "9% increased Attack Speed", statOrder = { 1437 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed3"] = { type = "Spawn", tier = 3, "10% increased Attack Speed", statOrder = { 1437 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged1"] = { type = "Spawn", tier = 1, "5% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged2"] = { type = "Spawn", tier = 2, "6% increased Attack Speed", statOrder = { 1437 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged3"] = { type = "Spawn", tier = 3, "7% increased Attack Speed", statOrder = { 1437 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1437, 3027 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1437, 3027 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1437, 3027 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1437, 3027 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1437, 3027 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1437, 3027 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1437, 2657 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1437, 2657 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1437, 2657 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1437, 2657 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1437, 2657 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1437, 2657 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "25% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1437, 8037 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "25% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1437, 8037 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "25% reduced Attack Speed", "Attacks with this Weapon have 30% chance to deal Double Damage", statOrder = { 1437, 8037 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "20% reduced Attack Speed", "Attacks with this Weapon have 15% chance to deal Double Damage", statOrder = { 1437, 8037 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "20% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1437, 8037 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "20% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1437, 8037 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAlwaysHitReducedAttackSpeed"] = { type = "MergeOnly", tier = 1, "50% reduced Attack Speed", "Hits can't be Evaded", statOrder = { 1437, 2066 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, + ["WeaponTreeLocalAlwaysHitReducedCriticalStrikeChance"] = { type = "MergeOnly", tier = 1, "-5% to Critical Strike Chance", "Hits can't be Evaded", statOrder = { 1486, 2066 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating1"] = { type = "Spawn", tier = 1, "+150 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating2"] = { type = "Spawn", tier = 2, "+250 to Accuracy Rating", statOrder = { 2047 }, level = 30, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating3"] = { type = "Spawn", tier = 3, "+350 to Accuracy Rating", statOrder = { 2047 }, level = 60, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1208, 2047 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1208, 2047 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1208, 2047 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h1"] = { type = "Spawn", tier = 1, "10% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1208, 2047 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1208, 2047 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h3"] = { type = "Spawn", tier = 3, "10% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1208, 2047 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion1"] = { type = "Spawn", tier = 1, "15% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1571, 2047 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2"] = { type = "Spawn", tier = 2, "15% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1571, 2047 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion3"] = { type = "Spawn", tier = 3, "15% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1571, 2047 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h1"] = { type = "Spawn", tier = 1, "30% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1571, 2047 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h2"] = { type = "Spawn", tier = 2, "30% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1571, 2047 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h3"] = { type = "Spawn", tier = 3, "30% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1571, 2047 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+40% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+50% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+80% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+100% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+5% to Spell Critical Strike Chance", statOrder = { 2705, 10271 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+5.5% to Spell Critical Strike Chance", statOrder = { 2705, 10271 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+6% to Spell Critical Strike Chance", statOrder = { 2705, 10271 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+7% to Spell Critical Strike Chance", statOrder = { 2705, 10271 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+8% to Spell Critical Strike Chance", statOrder = { 2705, 10271 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+9% to Spell Critical Strike Chance", statOrder = { 2705, 10271 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "+0.4% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "+0.5% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "+0.6% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "+0.8% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "+0.9% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "+1% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-30% to Critical Strike Multiplier for Spell Damage", "+1% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-30% to Critical Strike Multiplier for Spell Damage", "+1.25% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-30% to Critical Strike Multiplier for Spell Damage", "+1.5% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-60% to Critical Strike Multiplier for Spell Damage", "+1.8% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-60% to Critical Strike Multiplier for Spell Damage", "+2.2% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-60% to Critical Strike Multiplier for Spell Damage", "+2.6% to Spell Critical Strike Chance", statOrder = { 1515, 10271 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "15% reduced Reservation Efficiency of Skills", "+0.8% to Spell Critical Strike Chance", statOrder = { 2253, 10271 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "15% reduced Reservation Efficiency of Skills", "+1% to Spell Critical Strike Chance", statOrder = { 2253, 10271 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "15% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2253, 10271 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "25% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2253, 10271 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "25% reduced Reservation Efficiency of Skills", "+1.6% to Spell Critical Strike Chance", statOrder = { 2253, 10271 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "25% reduced Reservation Efficiency of Skills", "+2% to Spell Critical Strike Chance", statOrder = { 2253, 10271 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage1"] = { type = "Spawn", tier = 1, "18% more Cast Speed", "10% less Global Damage", statOrder = { 10743, 10745 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage2"] = { type = "Spawn", tier = 2, "20% more Cast Speed", "10% less Global Damage", statOrder = { 10743, 10745 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage3"] = { type = "Spawn", tier = 3, "22% more Cast Speed", "10% less Global Damage", statOrder = { 10743, 10745 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage1"] = { type = "Spawn", tier = 1, "24% more Cast Speed", "15% less Global Damage", statOrder = { 10743, 10745 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage2"] = { type = "Spawn", tier = 2, "27% more Cast Speed", "15% less Global Damage", statOrder = { 10743, 10745 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage3"] = { type = "Spawn", tier = 3, "30% more Cast Speed", "15% less Global Damage", statOrder = { 10743, 10745 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed1"] = { type = "Spawn", tier = 1, "4% more Cast Speed", statOrder = { 10743 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2"] = { type = "Spawn", tier = 2, "5% more Cast Speed", statOrder = { 10743 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed3"] = { type = "Spawn", tier = 3, "6% more Cast Speed", statOrder = { 10743 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2h1"] = { type = "Spawn", tier = 1, "8% more Cast Speed", statOrder = { 10743 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2h2"] = { type = "Spawn", tier = 2, "9% more Cast Speed", statOrder = { 10743 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2h3"] = { type = "Spawn", tier = 3, "10% more Cast Speed", statOrder = { 10743 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost1"] = { type = "Spawn", tier = 1, "12% increased Cost of Skills", "6% more Cast Speed", statOrder = { 1904, 10743 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost2"] = { type = "Spawn", tier = 2, "12% increased Cost of Skills", "7% more Cast Speed", statOrder = { 1904, 10743 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost3"] = { type = "Spawn", tier = 3, "12% increased Cost of Skills", "8% more Cast Speed", statOrder = { 1904, 10743 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Cost of Skills", "10% more Cast Speed", statOrder = { 1904, 10743 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost2"] = { type = "Spawn", tier = 2, "20% increased Cost of Skills", "12% more Cast Speed", statOrder = { 1904, 10743 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost3"] = { type = "Spawn", tier = 3, "20% increased Cost of Skills", "14% more Cast Speed", statOrder = { 1904, 10743 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10342, 10743 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10342, 10743 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 10342, 10743 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10342, 10743 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10342, 10743 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 10342, 10743 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "15% less maximum Mana", statOrder = { 1604, 10767 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 1.8% of Mana per second", "15% less maximum Mana", statOrder = { 1604, 10767 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 2% of Mana per second", "15% less maximum Mana", statOrder = { 1604, 10767 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Mana per second", "25% less maximum Mana", statOrder = { 1604, 10767 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 2.5% of Mana per second", "25% less maximum Mana", statOrder = { 1604, 10767 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 3% of Mana per second", "25% less maximum Mana", statOrder = { 1604, 10767 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1604, 2253 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 1.3% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1604, 2253 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 1.5% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1604, 2253 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1604, 2253 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 2% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1604, 2253 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 2.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1604, 2253 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", statOrder = { 1604 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", statOrder = { 1604 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", statOrder = { 1604 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h1"] = { type = "Spawn", tier = 1, "Regenerate 0.8% of Mana per second", statOrder = { 1604 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h2"] = { type = "Spawn", tier = 2, "Regenerate 0.9% of Mana per second", statOrder = { 1604 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h3"] = { type = "Spawn", tier = 3, "Regenerate 1% of Mana per second", statOrder = { 1604 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "5% more maximum Mana", statOrder = { 1604, 10767 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "5% more maximum Mana", statOrder = { 1604, 10767 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "5% more maximum Mana", statOrder = { 1604, 10767 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "8% more maximum Mana", statOrder = { 1604, 10767 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "8% more maximum Mana", statOrder = { 1604, 10767 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "8% more maximum Mana", statOrder = { 1604, 10767 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1604, 1906 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1604, 1906 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1604, 1906 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1604, 1906 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1604, 1906 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1604, 1906 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9398, 9401 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +1.2% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9398, 9401 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +1.4% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9398, 9401 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1.7% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9398, 9401 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +2% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9398, 9401 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +2.3% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9398, 9401 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +60% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +80% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +130% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +160% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions have +0.4% to Critical Strike Chance", statOrder = { 9398 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions have +0.6% to Critical Strike Chance", statOrder = { 9398 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions have +0.8% to Critical Strike Chance", statOrder = { 9398 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "Minions have +0.7% to Critical Strike Chance", statOrder = { 9398 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "Minions have +1% to Critical Strike Chance", statOrder = { 9398 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "Minions have +1.3% to Critical Strike Chance", statOrder = { 9398 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.2% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.3% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.4% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.3% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.5% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.7% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9398, 9423 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1% to Critical Strike Chance", statOrder = { 2168, 9398 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.2% to Critical Strike Chance", statOrder = { 2168, 9398 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.4% to Critical Strike Chance", statOrder = { 2168, 9398 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.7% to Critical Strike Chance", statOrder = { 2168, 9398 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2% to Critical Strike Chance", statOrder = { 2168, 9398 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2.3% to Critical Strike Chance", statOrder = { 2168, 9398 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9401, 9456 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9401, 9456 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9401, 9456 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9401, 9456 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9401, 9456 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9401, 9456 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", statOrder = { 9401 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", statOrder = { 9401 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", statOrder = { 9401 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 14% increased Attack and Cast Speed", statOrder = { 9401 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 18% increased Attack and Cast Speed", statOrder = { 9401 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h3"] = { type = "Spawn", tier = 3, "Minions have 22% increased Attack and Cast Speed", statOrder = { 9401 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9401, 9431 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9401, 9431 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9401, 9431 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9401, 9431 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9401, 9431 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9401, 9431 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 4% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9401, 9431 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 5% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9401, 9431 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 6% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9401, 9431 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9401, 9431 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9401, 9431 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9401, 9431 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +400 to Accuracy Rating", statOrder = { 2168, 9395 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +500 to Accuracy Rating", statOrder = { 2168, 9395 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +600 to Accuracy Rating", statOrder = { 2168, 9395 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +700 to Accuracy Rating", statOrder = { 2168, 9395 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +850 to Accuracy Rating", statOrder = { 2168, 9395 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1000 to Accuracy Rating", statOrder = { 2168, 9395 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy1"] = { type = "Spawn", tier = 1, "Minions have +200 to Accuracy Rating", statOrder = { 9395 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2"] = { type = "Spawn", tier = 2, "Minions have +250 to Accuracy Rating", statOrder = { 9395 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy3"] = { type = "Spawn", tier = 3, "Minions have +300 to Accuracy Rating", statOrder = { 9395 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h1"] = { type = "Spawn", tier = 1, "Minions have +300 to Accuracy Rating", statOrder = { 9395 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h2"] = { type = "Spawn", tier = 2, "Minions have +400 to Accuracy Rating", statOrder = { 9395 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h3"] = { type = "Spawn", tier = 3, "Minions have +500 to Accuracy Rating", statOrder = { 9395 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +100 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9395, 9436 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +150 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9395, 9436 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +200 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9395, 9436 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +160 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9395, 9436 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +240 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9395, 9436 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +320 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9395, 9436 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAlwaysHitMinionCannotCrit"] = { type = "Spawn", tier = 1, "Minions never deal Critical Strikes", "Minions' Hits can't be Evaded", statOrder = { 9410, 9439 }, level = 60, group = "WeaponTreeMinionAlwaysHitAndCannotCrit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock1"] = { type = "Spawn", tier = 1, "16% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1183, 3302 }, level = 15, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock2"] = { type = "Spawn", tier = 2, "20% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1183, 3302 }, level = 48, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock3"] = { type = "Spawn", tier = 3, "24% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1183, 3302 }, level = 78, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1183, 2272 }, level = 1, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1183, 2272 }, level = 35, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1183, 2272 }, level = 70, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1183, 5049 }, level = 1, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1183, 5049 }, level = 35, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1183, 5049 }, level = 70, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlock1"] = { type = "Spawn", tier = 1, "3% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlock2"] = { type = "Spawn", tier = 2, "4% Chance to Block Spell Damage", statOrder = { 1183 }, level = 35, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlock3"] = { type = "Spawn", tier = 3, "5% Chance to Block Spell Damage", statOrder = { 1183 }, level = 70, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockMoreMana1"] = { type = "Spawn", tier = 1, "2% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1183, 10767 }, level = 48, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockMoreMana2"] = { type = "Spawn", tier = 2, "3% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1183, 10767 }, level = 78, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2272, 5503 }, level = 15, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2272, 5503 }, level = 48, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2272, 5503 }, level = 78, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2272, 5049 }, level = 1, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2272, 5049 }, level = 35, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2272, 5049 }, level = 70, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences1"] = { type = "Spawn", tier = 1, "40% reduced Armour, Evasion and Energy Shield", "+6% Chance to Block", statOrder = { 1577, 2272 }, level = 1, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences2"] = { type = "Spawn", tier = 2, "40% reduced Armour, Evasion and Energy Shield", "+7% Chance to Block", statOrder = { 1577, 2272 }, level = 35, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences3"] = { type = "Spawn", tier = 3, "40% reduced Armour, Evasion and Energy Shield", "+8% Chance to Block", statOrder = { 1577, 2272 }, level = 70, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlock1"] = { type = "Spawn", tier = 1, "+3% Chance to Block", statOrder = { 2272 }, level = 1, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlock2"] = { type = "Spawn", tier = 2, "+4% Chance to Block", statOrder = { 2272 }, level = 35, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlock3"] = { type = "Spawn", tier = 3, "+5% Chance to Block", statOrder = { 2272 }, level = 70, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockLifeOnBlock1"] = { type = "Spawn", tier = 1, "30 Life gained when you Block", "+2% Chance to Block", statOrder = { 1780, 2272 }, level = 10, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockLifeOnBlock2"] = { type = "Spawn", tier = 2, "30 Life gained when you Block", "+3% Chance to Block", statOrder = { 1780, 2272 }, level = 42, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockBlockRecovery1"] = { type = "Spawn", tier = 1, "30% increased Block Recovery", "+2% Chance to Block", statOrder = { 1190, 2272 }, level = 1, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockBlockRecovery2"] = { type = "Spawn", tier = 2, "30% increased Block Recovery", "+3% Chance to Block", statOrder = { 1190, 2272 }, level = 35, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1577, 1593 }, level = 10, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1577, 1593 }, level = 42, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1577, 1593 }, level = 75, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1577, 2272 }, level = 1, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1577, 2272 }, level = 35, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1577, 2272 }, level = 70, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefences1"] = { type = "Spawn", tier = 1, "24% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 1, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefences2"] = { type = "Spawn", tier = 2, "32% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 35, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefences3"] = { type = "Spawn", tier = 3, "40% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 70, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken1"] = { type = "Spawn", tier = 1, "Prevent +40% of Reflected Damage", "15% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1577 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken2"] = { type = "Spawn", tier = 2, "Prevent +40% of Reflected Damage", "20% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1577 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken3"] = { type = "Spawn", tier = 3, "Prevent +40% of Reflected Damage", "25% increased Armour, Evasion and Energy Shield", statOrder = { 7, 1577 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage1"] = { type = "Spawn", tier = 1, "25% increased Attack Damage with Off Hand", "15% increased Armour, Evasion and Energy Shield", statOrder = { 1307, 1577 }, level = 10, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage2"] = { type = "Spawn", tier = 2, "25% increased Attack Damage with Off Hand", "20% increased Armour, Evasion and Energy Shield", statOrder = { 1307, 1577 }, level = 42, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage3"] = { type = "Spawn", tier = 3, "25% increased Attack Damage with Off Hand", "25% increased Armour, Evasion and Energy Shield", statOrder = { 1307, 1577 }, level = 75, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1648, 1654 }, level = 1, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1648, 1654 }, level = 35, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1648, 1654 }, level = 70, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1648, 1659 }, level = 1, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1648, 1659 }, level = 35, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1648, 1659 }, level = 70, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Cold Resistance", statOrder = { 1648, 1654 }, level = 1, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Cold Resistance", statOrder = { 1648, 1654 }, level = 35, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Cold Resistance", statOrder = { 1648, 1654 }, level = 70, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1654, 1659 }, level = 1, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1654, 1659 }, level = 35, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1654, 1659 }, level = 70, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "-20% to Cold Resistance", "+30% to Lightning Resistance", statOrder = { 1654, 1659 }, level = 1, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "-20% to Cold Resistance", "+36% to Lightning Resistance", statOrder = { 1654, 1659 }, level = 35, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "-20% to Cold Resistance", "+42% to Lightning Resistance", statOrder = { 1654, 1659 }, level = 70, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Lightning Resistance", statOrder = { 1648, 1659 }, level = 1, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Lightning Resistance", statOrder = { 1648, 1659 }, level = 35, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Lightning Resistance", statOrder = { 1648, 1659 }, level = 70, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-6% to all Elemental Resistances", "+19% to Chaos Resistance", statOrder = { 1642, 1664 }, level = 10, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-6% to all Elemental Resistances", "+23% to Chaos Resistance", statOrder = { 1642, 1664 }, level = 42, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance3"] = { type = "Spawn", tier = 3, "-6% to all Elemental Resistances", "+27% to Chaos Resistance", statOrder = { 1642, 1664 }, level = 75, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1642, 1664 }, level = 10, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1642, 1664 }, level = 42, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1642, 1664 }, level = 75, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences1"] = { type = "Spawn", tier = 1, "25% reduced Armour, Evasion and Energy Shield", "+10% to all Elemental Resistances", statOrder = { 1577, 1642 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences2"] = { type = "Spawn", tier = 2, "25% reduced Armour, Evasion and Energy Shield", "+12% to all Elemental Resistances", statOrder = { 1577, 1642 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences3"] = { type = "Spawn", tier = 3, "25% reduced Armour, Evasion and Energy Shield", "+14% to all Elemental Resistances", statOrder = { 1577, 1642 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1642, 2272 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1642, 2272 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1642, 2272 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife1"] = { type = "Spawn", tier = 1, "5% reduced maximum Life", "+19% to Chaos Resistance", statOrder = { 1593, 1664 }, level = 10, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife2"] = { type = "Spawn", tier = 2, "5% reduced maximum Life", "+23% to Chaos Resistance", statOrder = { 1593, 1664 }, level = 42, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife3"] = { type = "Spawn", tier = 3, "5% reduced maximum Life", "+27% to Chaos Resistance", statOrder = { 1593, 1664 }, level = 75, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1646, 1652 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1646, 1652 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1646, 1657 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1646, 1657 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Cold Resistance", statOrder = { 1646, 1652 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Cold Resistance", statOrder = { 1646, 1652 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1652, 1657 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1652, 1657 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumColdResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Cold Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1652, 1657 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumColdResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Cold Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1652, 1657 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1646, 1657 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1646, 1657 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance1"] = { type = "Spawn", tier = 1, "-5% to maximum Chaos Resistance", "+1% to all maximum Elemental Resistances", statOrder = { 1663, 1666 }, level = 60, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance2"] = { type = "Spawn", tier = 2, "-5% to maximum Chaos Resistance", "+2% to all maximum Elemental Resistances", statOrder = { 1663, 1666 }, level = 85, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1663, 1666 }, level = 60, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1663, 1666 }, level = 85, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneMinionInstability"] = { type = "Spawn", tier = 1, "Minion Instability", statOrder = { 10965 }, level = 30, group = "WeaponTreeMinionInstability", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneResoluteTechnique"] = { type = "Spawn", tier = 1, "Resolute Technique", statOrder = { 10996 }, level = 30, group = "WeaponTreeResoluteTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneBloodMagic"] = { type = "Spawn", tier = 1, "Blood Magic", statOrder = { 10936 }, level = 30, group = "WeaponTreeBloodMagic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystonePainAttunement"] = { type = "Spawn", tier = 1, "Pain Attunement", statOrder = { 10967 }, level = 30, group = "WeaponTreePainAttunement", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneElementalEquilibrium"] = { type = "Spawn", tier = 1, "Elemental Equilibrium", statOrder = { 10946 }, level = 30, group = "WeaponTreeElementalEquilibrium", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneIronGrip"] = { type = "Spawn", tier = 1, "Iron Grip", statOrder = { 10984 }, level = 30, group = "WeaponTreeIronGrip", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystonePointBlank"] = { type = "Spawn", tier = 1, "Point Blank", statOrder = { 10968 }, level = 30, group = "WeaponTreePointBlank", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneAcrobatics"] = { type = "Spawn", tier = 1, "Acrobatics", statOrder = { 10931 }, level = 30, group = "WeaponTreeAcrobatics", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneGhostReaver"] = { type = "Spawn", tier = 1, "Ghost Reaver", statOrder = { 10953 }, level = 30, group = "WeaponTreeKeystoneGhostReaver", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneVaalPact"] = { type = "Spawn", tier = 1, "Vaal Pact", statOrder = { 10989 }, level = 30, group = "WeaponTreeVaalPact", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneElementalOverload"] = { type = "Spawn", tier = 1, "Elemental Overload", statOrder = { 10947 }, level = 30, group = "WeaponTreeElementalOverload", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneAvatarOfFire"] = { type = "Spawn", tier = 1, "Avatar of Fire", statOrder = { 10934 }, level = 30, group = "WeaponTreeAvatarOfFire", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneEldritchBattery"] = { type = "Spawn", tier = 1, "Eldritch Battery", statOrder = { 10945 }, level = 30, group = "WeaponTreeEldritchBattery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneAncestralBond"] = { type = "Spawn", tier = 1, "Ancestral Bond", statOrder = { 10933 }, level = 30, group = "WeaponTreeAncestralBond", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneCrimsonDance"] = { type = "Spawn", tier = 1, "Crimson Dance", statOrder = { 10942 }, level = 30, group = "WeaponTreeCrimsonDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystonePerfectAgony"] = { type = "Spawn", tier = 1, "Perfect Agony", statOrder = { 10932 }, level = 30, group = "WeaponTreePerfectAgony", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneRunebinder"] = { type = "Spawn", tier = 1, "Runebinder", statOrder = { 10976 }, level = 30, group = "WeaponTreeRunebinder", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneGlancingBlows"] = { type = "Spawn", tier = 1, "Glancing Blows", statOrder = { 10954 }, level = 30, group = "WeaponTreeGlancingBlows", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneCallToArms"] = { type = "Spawn", tier = 1, "Call to Arms", statOrder = { 10937 }, level = 30, group = "WeaponTreeCallToArms", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneTheAgnostic"] = { type = "Spawn", tier = 1, "The Agnostic", statOrder = { 10966 }, level = 30, group = "WeaponTreeTheAgnostic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneSupremeEgo"] = { type = "Spawn", tier = 1, "Supreme Ego", statOrder = { 10985 }, level = 30, group = "WeaponTreeSupremeEgo", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneTheImpaler"] = { type = "Spawn", tier = 1, "The Impaler", statOrder = { 10958 }, level = 30, group = "WeaponTreeImpaler", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneDoomsday"] = { type = "Spawn", tier = 1, "Hex Master", statOrder = { 10956 }, level = 30, group = "WeaponTreeHexMaster", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneLetheShade"] = { type = "Spawn", tier = 1, "Lethe Shade", statOrder = { 10960 }, level = 30, group = "WeaponTreeLetheShade", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneGhostDance"] = { type = "Spawn", tier = 1, "Ghost Dance", statOrder = { 10952 }, level = 30, group = "WeaponTreeGhostDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneVersatileCombatant"] = { type = "Spawn", tier = 1, "Versatile Combatant", statOrder = { 10990 }, level = 30, group = "WeaponTreeVersatileCombatant", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneMagebane"] = { type = "Spawn", tier = 1, "Magebane", statOrder = { 10962 }, level = 30, group = "WeaponTreeMagebane", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneSolipsism"] = { type = "Spawn", tier = 1, "Solipsism", statOrder = { 10982 }, level = 30, group = "WeaponTreeSolipsism", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneDivineShield"] = { type = "Spawn", tier = 1, "Divine Shield", statOrder = { 10944 }, level = 30, group = "WeaponTreeDivineShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneIronWill"] = { type = "Spawn", tier = 1, "Iron Will", statOrder = { 10997 }, level = 30, group = "WeaponTreeIronWill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneWickedWard"] = { type = "Spawn", tier = 1, "Wicked Ward", statOrder = { 10992 }, level = 30, group = "WeaponTreeWickedWard", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneWindDancer"] = { type = "Spawn", tier = 1, "Wind Dancer", statOrder = { 10993 }, level = 30, group = "WeaponTreeWindDancer", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneConduit"] = { type = "Spawn", tier = 1, "Conduit", statOrder = { 10940 }, level = 30, group = "WeaponTreeConduit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneArrowDancing"] = { type = "Spawn", tier = 1, "Arrow Dancing", statOrder = { 10971 }, level = 30, group = "WeaponTreeArrowDodging", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystonePreciseTechnique"] = { type = "Spawn", tier = 1, "Precise Technique", statOrder = { 10969 }, level = 30, group = "WeaponTreePreciseTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneIronReflexes"] = { type = "Spawn", tier = 1, "Iron Reflexes", statOrder = { 10959 }, level = 30, group = "WeaponTreeIronReflexes", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneUnwaveringStance"] = { type = "Spawn", tier = 1, "Unwavering Stance", statOrder = { 10988 }, level = 30, group = "WeaponTreeUnwaveringStance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneImbalancedGuard"] = { type = "Spawn", tier = 1, "Imbalanced Guard", statOrder = { 10977 }, level = 30, group = "WeaponTreeSacredBastion", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneEternalYouth"] = { type = "Spawn", tier = 1, "Eternal Youth", statOrder = { 10949 }, level = 30, group = "WeaponTreeEternalYouth", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneMindoverMatter"] = { type = "Spawn", tier = 1, "Mind Over Matter", statOrder = { 10963 }, level = 30, group = "WeaponTreeManaShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneZealotsOath"] = { type = "Spawn", tier = 1, "Zealot's Oath", statOrder = { 10974 }, level = 30, group = "WeaponTreeZealotsOath", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowAvatarOfTheHunt"] = { type = "Spawn", tier = 1, "Allocates 36687", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeOfCunning"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 57839", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordRazorsEdge"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 33082", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 25367", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeDancer"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 65093", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordFatalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 1568", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBrutalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 59151", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeOfCunning2H"] = { type = "Spawn", tier = 1, "Allocates 57839", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordRazorsEdge2H"] = { type = "Spawn", tier = 1, "Allocates 33082", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeMaster2H"] = { type = "Spawn", tier = 1, "Allocates 25367", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeDancer2H"] = { type = "Spawn", tier = 1, "Allocates 65093", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordFatalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 1568", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBrutalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 59151", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeFellerOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 52090", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeHatchetMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 26096", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeHarvesterOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 7440", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeCleaving"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 4940", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeSlaughter"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 23038", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeFellerOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 52090", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeHatchetMaster2H"] = { type = "Spawn", tier = 1, "Allocates 26096", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeHarvesterOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 7440", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeCleaving2H"] = { type = "Spawn", tier = 1, "Allocates 4940", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeSlaughter2H"] = { type = "Spawn", tier = 1, "Allocates 23038", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceRibcageCrusher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 24721", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceSpinecruncher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 5126", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceSkullcracking"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16703", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceBoneBreaker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 40645", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceBlacksmithsClout"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 55772", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceGalvanicHammer"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 60619", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMacePainForger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 39657", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceRibcageCrusher2H"] = { type = "Spawn", tier = 1, "Allocates 24721", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceSpinecruncher2H"] = { type = "Spawn", tier = 1, "Allocates 5126", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceSkullcracking2H"] = { type = "Spawn", tier = 1, "Allocates 16703", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceBoneBreaker2H"] = { type = "Spawn", tier = 1, "Allocates 40645", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceBlacksmithsClout2H"] = { type = "Spawn", tier = 1, "Allocates 55772", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceGalvanicHammer2H"] = { type = "Spawn", tier = 1, "Allocates 60619", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMacePainForger2H"] = { type = "Spawn", tier = 1, "Allocates 39657", statOrder = { 8243 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawPoisonousFangs"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 529", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawLifeRaker"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 28503", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheHawk"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 15614", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheMagpie"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 54791", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheFalcon"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 56648", statOrder = { 1437, 8243 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerAddersTouch"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 32227", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerFromTheShadows"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 1405", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerBackstabbing"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 8920", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerFlaying"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 36490", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerNightstalker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 56276", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandTempestBlast"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63207", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandFusillade"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16243", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandDisintegration"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 52031", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandElderPower"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 41476", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandWandslinger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 22972", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandPrismWeave"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63944", statOrder = { 1486, 8243 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldTestudo"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 44207", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldRetaliation"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 12878", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldDeflection"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 15437", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldDefiance"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 49538", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldCommandOfSteel"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 57900", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldAggresiveBastion"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 861", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 20832", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldSafeguard"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 6967", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldArcaneSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 46904", statOrder = { 2272, 8243 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeWeaponQuality1"] = { type = "Spawn", tier = 1, "+8% to Quality", statOrder = { 8062 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, + ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrder = { 8062 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, + ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrder = { 8062 }, level = 60, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance1"] = { type = "Spawn", tier = 1, "+12% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1275, 1648 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2"] = { type = "Spawn", tier = 2, "+16% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1275, 1648 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1275, 1648 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1275, 1648 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance1"] = { type = "Spawn", tier = 1, "+12% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1280, 1654 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2"] = { type = "Spawn", tier = 2, "+16% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1280, 1654 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h1"] = { type = "Spawn", tier = 1, "+24% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1280, 1654 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h2"] = { type = "Spawn", tier = 2, "+32% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1280, 1654 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+12% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1283, 1664 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+16% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1283, 1664 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1283, 1664 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1283, 1664 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm1"] = { type = "Spawn", tier = 1, "+12% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1271, 7258 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2"] = { type = "Spawn", tier = 2, "+16% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1271, 7258 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h1"] = { type = "Spawn", tier = 1, "+24% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1271, 7258 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h2"] = { type = "Spawn", tier = 2, "+32% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1271, 7258 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalElementalPenetrationReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 8% Elemental Resistances", statOrder = { 1642, 3797 }, level = 12, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalElementalPenetrationReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 10% Elemental Resistances", statOrder = { 1642, 3797 }, level = 75, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalChaosPenetrationReducedChaosResistance1"] = { type = "Spawn", tier = 1, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 8% Chaos Resistance", statOrder = { 1664, 7984 }, level = 12, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalChaosPenetrationReducedChaosResistance2"] = { type = "Spawn", tier = 2, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 10% Chaos Resistance", statOrder = { 1664, 7984 }, level = 75, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect1"] = { type = "Spawn", tier = 1, "10% reduced Area of Effect", "25% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1903, 4774 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2"] = { type = "Spawn", tier = 2, "10% reduced Area of Effect", "30% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1903, 4774 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect", "50% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1903, 4774 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect", "60% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1903, 4774 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently1"] = { type = "Spawn", tier = 1, "20% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1903, 4255 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2"] = { type = "Spawn", tier = 2, "24% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1903, 4255 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h1"] = { type = "Spawn", tier = 1, "32% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1903, 4255 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h2"] = { type = "Spawn", tier = 2, "40% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1903, 4255 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage1"] = { type = "Spawn", tier = 1, "25% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1819, 2019 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2"] = { type = "Spawn", tier = 2, "35% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1819, 2019 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2h1"] = { type = "Spawn", tier = 1, "40% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1819, 2019 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2h2"] = { type = "Spawn", tier = 2, "55% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1819, 2019 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeArrowsChainChainingRange2h"] = { type = "MergeOnly", tier = 1, "Arrows Chain +1 times", "50% reduced Chaining range", statOrder = { 1811, 5562 }, level = 84, group = "WeaponTreeArrowsChainChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeChainingRange1"] = { type = "Spawn", tier = 1, "20% increased Chaining range", statOrder = { 5562 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeChainingRange2"] = { type = "Spawn", tier = 2, "30% increased Chaining range", statOrder = { 5562 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeChainingRange2h1"] = { type = "Spawn", tier = 1, "40% increased Chaining range", statOrder = { 5562 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeChainingRange2h2"] = { type = "Spawn", tier = 2, "60% increased Chaining range", statOrder = { 5562 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeAdditionalPierce1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, + ["WeaponTreeAdditionalPierce2h1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 16, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, + ["WeaponTreeAdditionalPierce2h2"] = { type = "Spawn", tier = 2, "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance1"] = { type = "Spawn", tier = 1, "Projectiles have 30% chance for an additional Projectile when Forking", statOrder = { 5755 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2"] = { type = "Spawn", tier = 2, "Projectiles have 40% chance for an additional Projectile when Forking", statOrder = { 5755 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2h1"] = { type = "Spawn", tier = 1, "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5755 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2h2"] = { type = "Spawn", tier = 2, "Projectiles have 75% chance for an additional Projectile when Forking", statOrder = { 5755 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost1"] = { type = "Spawn", tier = 1, "15% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2624, 9227 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2"] = { type = "Spawn", tier = 2, "20% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2624, 9227 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2624, 9227 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2624, 9227 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Marks", "6% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2624, 6851 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Marks", "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2624, 6851 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of your Marks", "12% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2624, 6851 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of your Marks", "20% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2624, 6851 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy"] = { type = "Spawn", tier = 1, "25% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4556, 6074 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy2h"] = { type = "Spawn", tier = 2, "15% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4556, 6074 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalWeaponRange1"] = { type = "Spawn", tier = 1, "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeLocalWeaponRange2"] = { type = "Spawn", tier = 2, "+0.3 metres to Weapon Range", statOrder = { 2779 }, level = 50, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Life Leech", "0.5% of Attack Damage Leeched as Life", statOrder = { 2180, 8098 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Life Leech", "0.8% of Attack Damage Leeched as Life", statOrder = { 2180, 8098 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Life Leech", "1% of Attack Damage Leeched as Life", statOrder = { 2180, 8098 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Life Leech", "1.6% of Attack Damage Leeched as Life", statOrder = { 2180, 8098 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Mana Leech", "0.5% of Attack Damage Leeched as Mana", statOrder = { 2181, 8101 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Mana Leech", "0.8% of Attack Damage Leeched as Mana", statOrder = { 2181, 8101 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Mana Leech", "1% of Attack Damage Leeched as Mana", statOrder = { 2181, 8101 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Mana Leech", "1.6% of Attack Damage Leeched as Mana", statOrder = { 2181, 8101 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed1"] = { type = "Spawn", tier = 1, "0.5% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1745, 2182 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2"] = { type = "Spawn", tier = 2, "0.8% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1745, 2182 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "1% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1745, 2182 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "1.6% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1745, 2182 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeMaxLifeLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxLifeLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxManaLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1756 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxManaLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1756 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1757 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1757 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeOnHitReducedManaOnHit1"] = { type = "Spawn", tier = 1, "Grants 15 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1761, 1768 }, level = 5, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeOnHitReducedManaOnHit2"] = { type = "Spawn", tier = 2, "Grants 25 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1761, 1768 }, level = 68, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaOnHitReducedLifeOnHit1"] = { type = "Spawn", tier = 1, "Removes 4 of your Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1761, 1768 }, level = 5, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaOnHitReducedLifeOnHit2"] = { type = "Spawn", tier = 2, "Removes 4 of your Life per Enemy Hit", "Grants 8 Mana per Enemy Hit", statOrder = { 1761, 1768 }, level = 68, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "5% reduced Movement Speed", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1821, 4419 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "5% reduced Movement Speed", "30% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1821, 4419 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "10% reduced Movement Speed", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1821, 4419 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "10% reduced Movement Speed", "60% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1821, 4419 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1821, 10855 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1821, 10855 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1821, 10855 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2h2"] = { type = "Spawn", tier = 2, "18% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1821, 10855 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3324, 6816 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3324, 6816 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3324, 6816 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3324, 6816 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3324, 5451 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3324, 5451 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3324, 5451 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3324, 5451 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3326, 5451 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3326, 5451 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3326, 5451 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3326, 5451 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3326, 3416 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3326, 3416 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3326, 3416 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3326, 3416 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3414, 5451 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3414, 5451 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3414, 5451 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3414, 5451 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3501, 5451 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3501, 5451 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3501, 5451 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3501, 5451 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun1"] = { type = "Spawn", tier = 1, "15% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2523, 2803 }, level = 15, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun2"] = { type = "Spawn", tier = 2, "25% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2523, 2803 }, level = 74, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold1"] = { type = "Spawn", tier = 1, "15% increased Enemy Stun Threshold", "16% chance to double Stun Duration", statOrder = { 1540, 3600 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2"] = { type = "Spawn", tier = 2, "15% increased Enemy Stun Threshold", "24% chance to double Stun Duration", statOrder = { 1540, 3600 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h1"] = { type = "Spawn", tier = 1, "30% increased Enemy Stun Threshold", "35% chance to double Stun Duration", statOrder = { 1540, 3600 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h2"] = { type = "Spawn", tier = 2, "30% increased Enemy Stun Threshold", "45% chance to double Stun Duration", statOrder = { 1540, 3600 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 15% chance to Fortify", statOrder = { 2288, 5756 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 20% chance to Fortify", statOrder = { 2288, 5756 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 30% chance to Fortify", statOrder = { 2288, 5756 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 40% chance to Fortify", statOrder = { 2288, 5756 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1918, 5058 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1918, 5058 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1918, 5058 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1918, 5058 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "10% increased Cooldown Recovery Rate", statOrder = { 1918, 5058 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "15% increased Cooldown Recovery Rate", statOrder = { 1918, 5058 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "20% increased Cooldown Recovery Rate", statOrder = { 1918, 5058 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "25% increased Cooldown Recovery Rate", statOrder = { 1918, 5058 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "40% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2776, 3427 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2776, 3427 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "80% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2776, 3427 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2776, 3427 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained1"] = { type = "Spawn", tier = 1, "15% reduced Flask Charges gained", "Flasks applied to you have 8% increased Effect", statOrder = { 2206, 2776 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2"] = { type = "Spawn", tier = 2, "15% reduced Flask Charges gained", "Flasks applied to you have 10% increased Effect", statOrder = { 2206, 2776 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h1"] = { type = "Spawn", tier = 1, "20% reduced Flask Charges gained", "Flasks applied to you have 12% increased Effect", statOrder = { 2206, 2776 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h2"] = { type = "Spawn", tier = 2, "20% reduced Flask Charges gained", "Flasks applied to you have 15% increased Effect", statOrder = { 2206, 2776 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect1"] = { type = "Spawn", tier = 1, "10% reduced Effect of your Curses", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 2622, 10771 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2"] = { type = "Spawn", tier = 2, "10% reduced Effect of your Curses", "Your Curses have 30% increased Effect if 50% of Curse Duration expired", statOrder = { 2622, 10771 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Curses", "Your Curses have 35% increased Effect if 50% of Curse Duration expired", statOrder = { 2622, 10771 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Curses", "Your Curses have 50% increased Effect if 50% of Curse Duration expired", statOrder = { 2622, 10771 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "15% increased Effect of Curses on you", "8% increased Effect of your Curses", statOrder = { 2193, 2622 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Effect of Curses on you", "10% increased Effect of your Curses", statOrder = { 2193, 2622 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h1"] = { type = "Spawn", tier = 1, "25% increased Effect of Curses on you", "12% increased Effect of your Curses", statOrder = { 2193, 2622 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h2"] = { type = "Spawn", tier = 2, "25% increased Effect of Curses on you", "15% increased Effect of your Curses", statOrder = { 2193, 2622 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 40% increased Skill Effect Duration", statOrder = { 2248, 7233 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 50% increased Skill Effect Duration", statOrder = { 2248, 7233 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 80% increased Skill Effect Duration", statOrder = { 2248, 7233 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 100% increased Skill Effect Duration", statOrder = { 2248, 7233 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeQuiverModEffect2h1"] = { type = "Spawn", tier = 1, "15% increased bonuses gained from Equipped Quiver", statOrder = { 9924 }, level = 36, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeQuiverModEffect2h2"] = { type = "Spawn", tier = 2, "20% increased bonuses gained from Equipped Quiver", statOrder = { 9924 }, level = 85, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance1"] = { type = "Spawn", tier = 1, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 10% chance to be Detonated an Additional Time", statOrder = { 8327, 9353 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2"] = { type = "Spawn", tier = 2, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 14% chance to be Detonated an Additional Time", statOrder = { 8327, 9353 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2h1"] = { type = "Spawn", tier = 1, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 16% chance to be Detonated an Additional Time", statOrder = { 8327, 9353 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2h2"] = { type = "Spawn", tier = 2, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 20% chance to be Detonated an Additional Time", statOrder = { 8327, 9353 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineAuraEffect1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 40% reduced Area of Effect", "25% increased Effect of Auras from Mines", statOrder = { 9349, 9351 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 40% reduced Area of Effect", "40% increased Effect of Auras from Mines", statOrder = { 9349, 9351 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2h1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 60% reduced Area of Effect", "50% increased Effect of Auras from Mines", statOrder = { 9349, 9351 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2h2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 60% reduced Area of Effect", "70% increased Effect of Auras from Mines", statOrder = { 9349, 9351 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed1"] = { type = "Spawn", tier = 1, "40% reduced Trap Trigger Area of Effect", "12% increased Trap Throwing Speed", statOrder = { 1948, 1950 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2"] = { type = "Spawn", tier = 2, "40% reduced Trap Trigger Area of Effect", "16% increased Trap Throwing Speed", statOrder = { 1948, 1950 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2h1"] = { type = "Spawn", tier = 1, "60% reduced Trap Trigger Area of Effect", "18% increased Trap Throwing Speed", statOrder = { 1948, 1950 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2h2"] = { type = "Spawn", tier = 2, "60% reduced Trap Trigger Area of Effect", "25% increased Trap Throwing Speed", statOrder = { 1948, 1950 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapsThrowInACircle"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10571, 10768 }, level = 1, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapsThrowInACircle2h"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10571, 10768 }, level = 60, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration1"] = { type = "Spawn", tier = 1, "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5340, 10184 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2"] = { type = "Spawn", tier = 2, "Brands have 40% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5340, 10184 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2h1"] = { type = "Spawn", tier = 1, "Brands have 45% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5340, 10184 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2h2"] = { type = "Spawn", tier = 2, "Brands have 60% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5340, 10184 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandSearchRange1"] = { type = "Spawn", tier = 1, "Brand Recall has 40% reduced Cooldown Recovery Rate", "40% increased Brand Attachment range", statOrder = { 10185, 10189 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2"] = { type = "Spawn", tier = 2, "Brand Recall has 40% reduced Cooldown Recovery Rate", "60% increased Brand Attachment range", statOrder = { 10185, 10189 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2h1"] = { type = "Spawn", tier = 1, "Brand Recall has 60% reduced Cooldown Recovery Rate", "75% increased Brand Attachment range", statOrder = { 10185, 10189 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2h2"] = { type = "Spawn", tier = 2, "Brand Recall has 60% reduced Cooldown Recovery Rate", "100% increased Brand Attachment range", statOrder = { 10185, 10189 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo1"] = { type = "Spawn", tier = 1, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 25% chance to Summon two Totems instead of one", statOrder = { 2604, 5801 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2"] = { type = "Spawn", tier = 2, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 40% chance to Summon two Totems instead of one", statOrder = { 2604, 5801 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 50% chance to Summon two Totems instead of one", statOrder = { 2604, 5801 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 70% chance to Summon two Totems instead of one", statOrder = { 2604, 5801 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath1"] = { type = "Spawn", tier = 1, "15% reduced Totem Life", "Totems Explode on Death, dealing 10% of their Life as Physical Damage", statOrder = { 1797, 10555 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2"] = { type = "Spawn", tier = 2, "15% reduced Totem Life", "Totems Explode on Death, dealing 15% of their Life as Physical Damage", statOrder = { 1797, 10555 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Life", "Totems Explode on Death, dealing 20% of their Life as Physical Damage", statOrder = { 1797, 10555 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Life", "Totems Explode on Death, dealing 30% of their Life as Physical Damage", statOrder = { 1797, 10555 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeUnaffectedByChillWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "Unaffected by Chill while Channelling", statOrder = { 1668, 10616 }, level = 1, group = "WeaponTreeUnaffectedByChillWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeUnaffectedByShockWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock on you", "Unaffected by Shock while Channelling", statOrder = { 10164, 10636 }, level = 1, group = "WeaponTreeUnaffectedByShockWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect1"] = { type = "Spawn", tier = 1, "20% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10723, 10731 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2"] = { type = "Spawn", tier = 2, "30% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10723, 10731 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2h1"] = { type = "Spawn", tier = 1, "35% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10723, 10731 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2h2"] = { type = "Spawn", tier = 2, "50% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10723, 10731 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently1"] = { type = "Spawn", tier = 1, "30% reduced Damage", "25% increased Damage for each time you've Warcried Recently", statOrder = { 1214, 6153 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2"] = { type = "Spawn", tier = 2, "30% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1214, 6153 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h1"] = { type = "Spawn", tier = 1, "50% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1214, 6153 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h2"] = { type = "Spawn", tier = 2, "50% reduced Damage", "60% increased Damage for each time you've Warcried Recently", statOrder = { 1214, 6153 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite1"] = { type = "Spawn", tier = 1, "6% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2050, 2586 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2"] = { type = "Spawn", tier = 2, "10% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2050, 2586 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2h1"] = { type = "Spawn", tier = 1, "12% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2050, 2586 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2h2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2050, 2586 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill1"] = { type = "Spawn", tier = 1, "6% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2053, 2588 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2"] = { type = "Spawn", tier = 2, "10% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2053, 2588 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2h1"] = { type = "Spawn", tier = 1, "12% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2053, 2588 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2h2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2053, 2588 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock1"] = { type = "Spawn", tier = 1, "6% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2057, 2589 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2"] = { type = "Spawn", tier = 2, "10% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2057, 2589 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2h1"] = { type = "Spawn", tier = 1, "12% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2057, 2589 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2h2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2057, 2589 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire Exposure on Hit", "25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit", statOrder = { 5081, 7385 }, level = 34, group = "WeaponTreeFireExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Cold Exposure on Hit", "25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit", statOrder = { 5080, 7384 }, level = 34, group = "WeaponTreeColdExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Lightning Exposure on Hit", "25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit", statOrder = { 5082, 7386 }, level = 34, group = "WeaponTreeLightningExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeAllExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire, Cold, and Lightning Exposure on Hit", "25% chance to be inflicted with a random Exposure when you take Elemental Damage from a Hit", statOrder = { 7372, 7387 }, level = 75, group = "WeaponTreeAllExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance1"] = { type = "Spawn", tier = 1, "6% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4435, 7388 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2"] = { type = "Spawn", tier = 2, "10% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4435, 7388 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2h1"] = { type = "Spawn", tier = 1, "10% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4435, 7388 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2h2"] = { type = "Spawn", tier = 2, "15% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4435, 7388 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeOverwhelm1"] = { type = "Spawn", tier = 1, "Overwhelm 15% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 3012, 7258 }, level = 20, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeOverwhelm2"] = { type = "Spawn", tier = 2, "Overwhelm 20% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 3012, 7258 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeOverwhelm2h1"] = { type = "Spawn", tier = 1, "Overwhelm 24% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 3012, 7258 }, level = 25, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeOverwhelm2h2"] = { type = "Spawn", tier = 2, "Overwhelm 32% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 3012, 7258 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStunDuration1"] = { type = "Spawn", tier = 1, "30% increased Stun Duration on Enemies", "15% increased Stun Duration on you", statOrder = { 1886, 4210 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStunDuration2"] = { type = "Spawn", tier = 2, "40% increased Stun Duration on Enemies", "20% increased Stun Duration on you", statOrder = { 1886, 4210 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStunDuration2h1"] = { type = "Spawn", tier = 1, "60% increased Stun Duration on Enemies", "30% increased Stun Duration on you", statOrder = { 1886, 4210 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeStunDuration2h2"] = { type = "Spawn", tier = 2, "80% increased Stun Duration on Enemies", "40% increased Stun Duration on you", statOrder = { 1886, 4210 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFreezeDuration1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on Enemies", "15% increased Freeze Duration on you", statOrder = { 1881, 1897 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeFreezeDuration2"] = { type = "Spawn", tier = 2, "30% increased Freeze Duration on Enemies", "20% increased Freeze Duration on you", statOrder = { 1881, 1897 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeFreezeDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Freeze Duration on Enemies", "30% increased Freeze Duration on you", statOrder = { 1881, 1897 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFreezeDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Freeze Duration on Enemies", "40% increased Freeze Duration on you", statOrder = { 1881, 1897 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeIgniteDuration1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on Enemies", "15% increased Ignite Duration on you", statOrder = { 1882, 1898 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeIgniteDuration2"] = { type = "Spawn", tier = 2, "30% increased Ignite Duration on Enemies", "20% increased Ignite Duration on you", statOrder = { 1882, 1898 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeIgniteDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Ignite Duration on Enemies", "30% increased Ignite Duration on you", statOrder = { 1882, 1898 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeIgniteDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Ignite Duration on Enemies", "40% increased Ignite Duration on you", statOrder = { 1882, 1898 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeBleedDuration1"] = { type = "Spawn", tier = 1, "20% increased Bleeding Duration", "15% increased Bleed Duration on you", statOrder = { 5047, 10114 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeBleedDuration2"] = { type = "Spawn", tier = 2, "30% increased Bleeding Duration", "20% increased Bleed Duration on you", statOrder = { 5047, 10114 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeBleedDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Bleeding Duration", "30% increased Bleed Duration on you", statOrder = { 5047, 10114 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeBleedDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Bleeding Duration", "40% increased Bleed Duration on you", statOrder = { 5047, 10114 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreePoisonDuration1"] = { type = "Spawn", tier = 1, "10% increased Poison Duration", "15% increased Poison Duration on you", statOrder = { 3205, 10123 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreePoisonDuration2"] = { type = "Spawn", tier = 2, "15% increased Poison Duration", "20% increased Poison Duration on you", statOrder = { 3205, 10123 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreePoisonDuration2h1"] = { type = "Spawn", tier = 1, "18% increased Poison Duration", "30% increased Poison Duration on you", statOrder = { 3205, 10123 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreePoisonDuration2h2"] = { type = "Spawn", tier = 2, "24% increased Poison Duration", "40% increased Poison Duration on you", statOrder = { 3205, 10123 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChillEffect1"] = { type = "Spawn", tier = 1, "15% increased Effect of Chill on you", "30% increased Effect of Chill", statOrder = { 1668, 5851 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChillEffect2"] = { type = "Spawn", tier = 2, "20% increased Effect of Chill on you", "40% increased Effect of Chill", statOrder = { 1668, 5851 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChillEffect2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "60% increased Effect of Chill", statOrder = { 1668, 5851 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChillEffect2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of Chill on you", "80% increased Effect of Chill", statOrder = { 1668, 5851 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeShockEffect1"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock", "15% increased Effect of Shock on you", statOrder = { 10153, 10164 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeShockEffect2"] = { type = "Spawn", tier = 2, "40% increased Effect of Shock", "20% increased Effect of Shock on you", statOrder = { 10153, 10164 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeShockEffect2h1"] = { type = "Spawn", tier = 1, "60% increased Effect of Shock", "30% increased Effect of Shock on you", statOrder = { 10153, 10164 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeShockEffect2h2"] = { type = "Spawn", tier = 2, "80% increased Effect of Shock", "40% increased Effect of Shock on you", statOrder = { 10153, 10164 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeImpaleEffect1"] = { type = "Spawn", tier = 1, "10% increased Impale Effect", "Attack Hits against you have 15% chance to Impale", statOrder = { 7343, 9978 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeImpaleEffect2"] = { type = "Spawn", tier = 2, "15% increased Impale Effect", "Attack Hits against you have 20% chance to Impale", statOrder = { 7343, 9978 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeImpaleEffect2h1"] = { type = "Spawn", tier = 1, "18% increased Impale Effect", "Attack Hits against you have 30% chance to Impale", statOrder = { 7343, 9978 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeImpaleEffect2h2"] = { type = "Spawn", tier = 2, "24% increased Impale Effect", "Attack Hits against you have 40% chance to Impale", statOrder = { 7343, 9978 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeLocalReducedAttributeRequirements1"] = { type = "Spawn", tier = 1, "20% reduced Attribute Requirements", statOrder = { 1099 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, + ["WeaponTreeLocalReducedAttributeRequirements2"] = { type = "Spawn", tier = 2, "30% reduced Attribute Requirements", statOrder = { 1099 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity1"] = { type = "Spawn", tier = 1, "+60 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1201, 2038 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2"] = { type = "Spawn", tier = 2, "+80 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1201, 2038 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h1"] = { type = "Spawn", tier = 1, "+90 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1201, 2038 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h2"] = { type = "Spawn", tier = 2, "+120 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1201, 2038 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence1"] = { type = "Spawn", tier = 1, "+60 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1202, 2039 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2"] = { type = "Spawn", tier = 2, "+80 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1202, 2039 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h1"] = { type = "Spawn", tier = 1, "+90 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1202, 2039 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h2"] = { type = "Spawn", tier = 2, "+120 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1202, 2039 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength1"] = { type = "Spawn", tier = 1, "+60 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1200, 2040 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2"] = { type = "Spawn", tier = 2, "+80 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1200, 2040 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h1"] = { type = "Spawn", tier = 1, "+90 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1200, 2040 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h2"] = { type = "Spawn", tier = 2, "+120 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1200, 2040 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Dexterity", "4% increased Intelligence", statOrder = { 1208, 1209 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1208, 1209 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1208, 1209 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "10% increased Intelligence", statOrder = { 1208, 1209 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Dexterity", statOrder = { 1207, 1208 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Dexterity", statOrder = { 1207, 1208 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Dexterity", statOrder = { 1207, 1208 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Dexterity", statOrder = { 1207, 1208 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Intelligence", statOrder = { 1207, 1209 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Intelligence", statOrder = { 1207, 1209 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Intelligence", statOrder = { 1207, 1209 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Intelligence", statOrder = { 1207, 1209 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed if Dexterity is below 100", statOrder = { 9542 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed if Dexterity is below 100", statOrder = { 9542 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed if Dexterity is below 100", statOrder = { 9542 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2h2"] = { type = "Spawn", tier = 2, "20% increased Movement Speed if Dexterity is below 100", statOrder = { 9542 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence1"] = { type = "Spawn", tier = 1, "14% increased Area of Effect if Intelligence is below 100", statOrder = { 4765 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2"] = { type = "Spawn", tier = 2, "20% increased Area of Effect if Intelligence is below 100", statOrder = { 4765 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2h1"] = { type = "Spawn", tier = 1, "24% increased Area of Effect if Intelligence is below 100", statOrder = { 4765 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2h2"] = { type = "Spawn", tier = 2, "32% increased Area of Effect if Intelligence is below 100", statOrder = { 4765 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength1"] = { type = "Spawn", tier = 1, "6% chance to deal Double Damage if Strength is below 100", statOrder = { 6351 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2"] = { type = "Spawn", tier = 2, "10% chance to deal Double Damage if Strength is below 100", statOrder = { 6351 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2h1"] = { type = "Spawn", tier = 1, "12% chance to deal Double Damage if Strength is below 100", statOrder = { 6351 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2h2"] = { type = "Spawn", tier = 2, "16% chance to deal Double Damage if Strength is below 100", statOrder = { 6351 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, ["WeaponTreeModEffectMinion1"] = { type = "Spawn", tier = 1, "10% increased Explicit Minion Modifier magnitudes", statOrder = { 54 }, level = 1, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, ["WeaponTreeModEffectMinion2"] = { type = "Spawn", tier = 2, "15% increased Explicit Minion Modifier magnitudes", statOrder = { 54 }, level = 65, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, ["WeaponTreeModEffectElementalDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 53 }, level = 1, group = "WeaponTreeModEffectElementalDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, @@ -1765,732 +1765,732 @@ return { ["WeaponTreeModEffectResistance2"] = { type = "Spawn", tier = 2, "15% increased Explicit Resistance Modifier magnitudes", statOrder = { 51 }, level = 65, group = "WeaponTreeModEffectResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, ["WeaponTreeModEffectAttributes1"] = { type = "Spawn", tier = 1, "10% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 1, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, modTags = { }, }, ["WeaponTreeModEffectAttributes2"] = { type = "Spawn", tier = 2, "15% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 65, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, modTags = { }, }, - ["WeaponTreeChargeDuration1"] = { type = "Spawn", tier = 1, "50% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2"] = { type = "Spawn", tier = 2, "65% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration3"] = { type = "Spawn", tier = 3, "80% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h1"] = { type = "Spawn", tier = 1, "100% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h2"] = { type = "Spawn", tier = 2, "120% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h3"] = { type = "Spawn", tier = 3, "140% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit1"] = { type = "Spawn", tier = 1, "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2"] = { type = "Spawn", tier = 2, "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit3"] = { type = "Spawn", tier = 3, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h1"] = { type = "Spawn", tier = 1, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h2"] = { type = "Spawn", tier = 2, "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h3"] = { type = "Spawn", tier = 3, "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeOnKill"] = { type = "Spawn", tier = 1, "75% reduced Endurance, Frenzy and Power Charge Duration", "Gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3026, 3612 }, level = 70, group = "WeaponTreeRandomChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 200 }, modTags = { }, }, - ["WeaponTreeFrenzyChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Frenzy Charge Duration", "Gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 30, group = "WeaponTreeFrenzyChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreePowerChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Power Charge Duration", "Gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 30, group = "WeaponTreePowerChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreeEnduranceChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Endurance Charge Duration", "Gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 30, group = "WeaponTreeEnduranceChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreeMinimumFrenzyAndPowerCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Minimum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1804, 1808, 1813 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumFrenzyAndPowerCharges2H"] = { type = "Spawn", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Minimum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1804, 1808, 1813 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumPowerAndEnduranceCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1803, 1809, 1813 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumPowerAndEnduranceCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1803, 1809, 1813 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumEnduranceAndFrenzyCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "+1 to Minimum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1803, 1808, 1814 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumEnduranceAndFrenzyCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "+2 to Minimum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1803, 1808, 1814 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumAllCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9142, 9259 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMinimumAllCharges2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+2 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9142, 9259 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFrenzyCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFrenzyCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumPowerCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumPowerCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumEnduranceCharges"] = { type = "MergeOnly", tier = 1, "+1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumEnduranceCharges2H"] = { type = "MergeOnly", tier = 1, "+2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1804, 1809, 1814 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedPerFrenzyCharge"] = { type = "Spawn", tier = 1, "4% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1802, 1809 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedPerFrenzyCharge2H"] = { type = "Spawn", tier = 1, "6% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1802, 1809 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryPerPowerCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "4% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1814, 5870 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryPerPowerCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "6% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1814, 5870 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectPerEnduranceCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "8% increased Area of Effect per Endurance Charge", statOrder = { 1804, 4733 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectPerEnduranceCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "12% increased Area of Effect per Endurance Charge", statOrder = { 1804, 4733 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCharge"] = { type = "Spawn", tier = 1, "15% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 6064, 9142 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCharge2H"] = { type = "Spawn", tier = 1, "25% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 6064, 9142 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrder = { 10767 }, level = 86, group = "WeaponTreeSimulatedRampage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Agony has 25% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Agony has 35% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Agony has 45% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7108, 7111 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Agony has 50% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Agony has 70% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Agony has 90% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7108, 7111 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 25% increased Buff Effect", statOrder = { 4030, 7112 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 35% increased Buff Effect", statOrder = { 4030, 7112 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 45% increased Buff Effect", statOrder = { 4030, 7112 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 50% increased Buff Effect", statOrder = { 4030, 7112 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 70% increased Buff Effect", statOrder = { 4030, 7112 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 90% increased Buff Effect", statOrder = { 4030, 7112 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 25% increased Buff Effect", statOrder = { 4031, 7116 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 35% increased Buff Effect", statOrder = { 4031, 7116 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 45% increased Buff Effect", statOrder = { 4031, 7116 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 50% increased Buff Effect", statOrder = { 4031, 7116 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 70% increased Buff Effect", statOrder = { 4031, 7116 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 90% increased Buff Effect", statOrder = { 4031, 7116 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Purity has 25% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Purity has 35% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Purity has 45% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7120, 7124 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Purity has 50% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Purity has 70% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Purity has 90% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7120, 7124 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 25% increased Buff Effect", statOrder = { 4032, 7126 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 35% increased Buff Effect", statOrder = { 4032, 7126 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 45% increased Buff Effect", statOrder = { 4032, 7126 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 4032, 7126 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 70% increased Buff Effect", statOrder = { 4032, 7126 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 90% increased Buff Effect", statOrder = { 4032, 7126 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Anger has 20% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Anger has 25% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Anger has 30% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3356, 3417 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Anger has 40% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Anger has 50% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Anger has 60% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3356, 3417 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation1"] = { type = "Spawn", tier = 1, "Wrath has 20% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2"] = { type = "Spawn", tier = 2, "Wrath has 25% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation3"] = { type = "Spawn", tier = 3, "Wrath has 30% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3361, 4042 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Wrath has 40% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Wrath has 50% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Wrath has 60% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3361, 4042 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation1"] = { type = "Spawn", tier = 1, "Hatred has 20% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2"] = { type = "Spawn", tier = 2, "Hatred has 25% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation3"] = { type = "Spawn", tier = 3, "Hatred has 30% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3366, 4034 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Hatred has 40% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Hatred has 50% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Hatred has 60% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3366, 4034 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation1"] = { type = "Spawn", tier = 1, "Determination has 20% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 24, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation2"] = { type = "Spawn", tier = 2, "Determination has 25% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 56, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation3"] = { type = "Spawn", tier = 3, "Determination has 30% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3367, 4036 }, level = 82, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation1"] = { type = "Spawn", tier = 1, "Discipline has 20% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 24, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation2"] = { type = "Spawn", tier = 2, "Discipline has 25% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 56, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation3"] = { type = "Spawn", tier = 3, "Discipline has 30% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3368, 4037 }, level = 82, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Grace has 20% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 24, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Grace has 25% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 56, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Grace has 30% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3363, 4043 }, level = 82, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation1"] = { type = "Spawn", tier = 1, "Zealotry has 20% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2"] = { type = "Spawn", tier = 2, "Zealotry has 25% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation3"] = { type = "Spawn", tier = 3, "Zealotry has 30% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10722, 10725 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Zealotry has 40% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Zealotry has 50% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Zealotry has 60% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10722, 10725 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation1"] = { type = "Spawn", tier = 1, "Pride has 20% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2"] = { type = "Spawn", tier = 2, "Pride has 25% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation3"] = { type = "Spawn", tier = 3, "Pride has 30% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9711, 9717 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Pride has 40% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Pride has 50% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Pride has 60% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9711, 9717 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Fire has 20% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 24, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Fire has 25% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 56, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Fire has 30% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3358, 4039 }, level = 82, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Ice has 20% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 24, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Ice has 25% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 56, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Ice has 30% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3359, 4035 }, level = 82, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Lightning has 20% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 24, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Lightning has 25% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 56, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Lightning has 30% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3360, 4040 }, level = 82, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Elements has 20% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 24, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Elements has 25% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 56, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Elements has 30% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3357, 4038 }, level = 82, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Malevolence has 20% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Malevolence has 25% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Malevolence has 30% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6161, 6162 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Malevolence has 40% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Malevolence has 50% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Malevolence has 60% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6161, 6162 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation1"] = { type = "Spawn", tier = 1, "Haste has 20% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2"] = { type = "Spawn", tier = 2, "Haste has 25% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation3"] = { type = "Spawn", tier = 3, "Haste has 30% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3364, 4044 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Haste has 40% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Haste has 50% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Haste has 60% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3364, 4044 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation1"] = { type = "Spawn", tier = 1, "Precision has 20% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2"] = { type = "Spawn", tier = 2, "Precision has 25% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation3"] = { type = "Spawn", tier = 3, "Precision has 30% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3365, 9708 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Precision has 40% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Precision has 50% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Precision has 60% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3365, 9708 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Banner Skills have 20% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Banner Skills have 25% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Banner Skills have 30% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Banner Skills have 40% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Banner Skills have 50% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Banner Skills have 60% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3362, 4972 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellDamageSuppressed1"] = { type = "Spawn", tier = 1, "-5% to amount of Suppressed Spell Damage Prevented", "+20% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 15, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellDamageSuppressed2"] = { type = "Spawn", tier = 2, "-5% to amount of Suppressed Spell Damage Prevented", "+25% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 60, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageSuppressedSpellSuppression1"] = { type = "Spawn", tier = 1, "Prevent +2% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 15, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageSuppressedSpellSuppression2"] = { type = "Spawn", tier = 2, "Prevent +3% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1141, 1143 }, level = 60, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently1"] = { type = "Spawn", tier = 1, "+20% chance to Suppress Spell Damage", "-15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1143, 10185 }, level = 5, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently2"] = { type = "Spawn", tier = 2, "+25% chance to Suppress Spell Damage", "-18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1143, 10185 }, level = 55, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnSupress1"] = { type = "Spawn", tier = 1, "Recover 2% of Life when you Suppress Spell Damage", statOrder = { 9844 }, level = 15, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnSupress2"] = { type = "Spawn", tier = 2, "Recover 3% of Life when you Suppress Spell Damage", statOrder = { 9844 }, level = 60, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnBlock1"] = { type = "Spawn", tier = 1, "Recover 30 Life when you Block", statOrder = { 1760 }, level = 1, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnBlock2"] = { type = "Spawn", tier = 2, "Recover 50 Life when you Block", statOrder = { 1760 }, level = 50, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldOnBlock1"] = { type = "Spawn", tier = 1, "Gain 30 Energy Shield when you Block", statOrder = { 1759 }, level = 1, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldOnBlock2"] = { type = "Spawn", tier = 2, "Gain 50 Energy Shield when you Block", statOrder = { 1759 }, level = 50, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeManaOnBlock1"] = { type = "Spawn", tier = 1, "30 Mana gained when you Block", statOrder = { 1758 }, level = 1, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeManaOnBlock2"] = { type = "Spawn", tier = 2, "50 Mana gained when you Block", statOrder = { 1758 }, level = 50, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeChillOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeChillOnBlock2"] = { type = "Spawn", tier = 2, "Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 50, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeShockOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 1, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeShockOnBlock2"] = { type = "Spawn", tier = 2, "Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 50, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeScorchOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 30, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeScorchOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 75, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeBrittleOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 30, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeBrittleOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 75, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeSapOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 30, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeSapOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 75, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1988, 4996 }, level = 45, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1988, 4996 }, level = 82, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1989, 4996 }, level = 75, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1989, 4996 }, level = 82, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidIgniteChanceToBeShocked1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1846, 2949 }, level = 1, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidIgniteChanceToBeShocked2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1846, 2949 }, level = 60, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidFreezeChanceToBeIgnited1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1845, 2948 }, level = 1, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidFreezeChanceToBeIgnited2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1845, 2948 }, level = 60, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidShockChanceToBeFrozen1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1848, 2947 }, level = 1, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidShockChanceToBeFrozen2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1848, 2947 }, level = 60, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidBleedChanceToBePoisoned1"] = { type = "Spawn", tier = 1, "+20% chance to be Poisoned", "60% chance to Avoid Bleeding", statOrder = { 3370, 4216 }, level = 12, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidBleedChanceToBePoisoned2"] = { type = "Spawn", tier = 2, "+20% chance to be Poisoned", "100% chance to Avoid Bleeding", statOrder = { 3370, 4216 }, level = 65, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidPoisonBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1849, 9970 }, level = 12, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidPoisonBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1849, 9970 }, level = 65, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf1"] = { type = "Spawn", tier = 1, "Corrupted Blood cannot be inflicted on you", "50% increased Effect of Exposure on you", statOrder = { 5408, 6522 }, level = 40, group = "WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeExposureImmunityChanceToBeMaimed1"] = { type = "Spawn", tier = 1, "Attack Hits have 20% chance to Maim you for 4 seconds", "Immune to Exposure", statOrder = { 5641, 7228 }, level = 40, group = "WeaponTreeExposureImmunityChanceToBeMaimed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf1"] = { type = "Spawn", tier = 1, "20% reduced Damage per Curse on you", "30% reduced Effect of Curses on you", statOrder = { 1216, 2170 }, level = 28, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf2"] = { type = "Spawn", tier = 2, "20% reduced Damage per Curse on you", "40% reduced Effect of Curses on you", statOrder = { 1216, 2170 }, level = 73, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "10% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1216, 2170 }, level = 28, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1216, 2170 }, level = 73, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeStunThresholdStunDurationOnSelf1"] = { type = "Spawn", tier = 1, "100% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3272, 4174 }, level = 1, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunThresholdStunDurationOnSelf2"] = { type = "Spawn", tier = 2, "150% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3272, 4174 }, level = 60, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunRecoveryReducedStunThreshold1"] = { type = "Spawn", tier = 1, "100% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 1, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunRecoveryReducedStunThreshold2"] = { type = "Spawn", tier = 2, "150% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 60, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 30% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 40% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 50% reduced Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 70% reduced Critical Strike Chance against you", statOrder = { 1512, 3130 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% reduced Reflected Elemental Damage taken", "100% increased Reflected Physical Damage taken", statOrder = { 2709, 2710 }, level = 68, group = "WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% increased Reflected Elemental Damage taken", "100% reduced Reflected Physical Damage taken", statOrder = { 2709, 2710 }, level = 68, group = "WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamageYouReflectGainedAsLife1"] = { type = "Spawn", tier = 1, "20% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamageYouReflectGainedAsLife2"] = { type = "Spawn", tier = 2, "30% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 50, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "12% increased Life Recovery rate", statOrder = { 1571, 1578 }, level = 1, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "16% increased Life Recovery rate", statOrder = { 1571, 1578 }, level = 72, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield1"] = { type = "Spawn", tier = 1, "25% reduced Energy Shield", "12% increased Energy Shield Recovery rate", statOrder = { 1560, 1568 }, level = 1, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield2"] = { type = "Spawn", tier = 2, "25% reduced Energy Shield", "16% increased Energy Shield Recovery rate", statOrder = { 1560, 1568 }, level = 72, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeManaRecoveryRateReducedMaximumMana1"] = { type = "Spawn", tier = 1, "10% reduced maximum Mana", "12% increased Mana Recovery rate", statOrder = { 1580, 1586 }, level = 1, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeManaRecoveryRateReducedMaximumMana2"] = { type = "Spawn", tier = 2, "10% reduced maximum Mana", "16% increased Mana Recovery rate", statOrder = { 1580, 1586 }, level = 72, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Life per second while on Low Life", statOrder = { 1945 }, level = 50, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 10, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 80, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock1"] = { type = "Spawn", tier = 1, "-20% chance to Block Projectile Attack Damage", "+25% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 1, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock2"] = { type = "Spawn", tier = 2, "-20% chance to Block Projectile Attack Damage", "+30% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 65, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock1"] = { type = "Spawn", tier = 1, "+25% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 1, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock2"] = { type = "Spawn", tier = 2, "+30% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2464, 5051 }, level = 62, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect1"] = { type = "Spawn", tier = 1, "30% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6350, 6745 }, level = 30, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect2"] = { type = "Spawn", tier = 2, "20% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6350, 6745 }, level = 76, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife1"] = { type = "Spawn", tier = 1, "Cannot be Stunned when on Low Life", "8% increased Damage taken while on Low Life", statOrder = { 2174, 6120 }, level = 1, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife2"] = { type = "Spawn", tier = 2, "Cannot be Stunned when on Low Life", "5% increased Damage taken while on Low Life", statOrder = { 2174, 6120 }, level = 76, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect1"] = { type = "Spawn", tier = 1, "100% chance to Avoid Elemental Ailments while on Consecrated Ground", "50% reduced Effect of Consecrated Ground you create", statOrder = { 3555, 5847 }, level = 40, group = "WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea1"] = { type = "Spawn", tier = 1, "50% reduced Consecrated Ground Area", "30% increased Effect of Consecrated Ground you create", statOrder = { 5845, 5847 }, level = 40, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea2"] = { type = "Spawn", tier = 2, "50% reduced Consecrated Ground Area", "50% increased Effect of Consecrated Ground you create", statOrder = { 5845, 5847 }, level = 80, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration1"] = { type = "Spawn", tier = 1, "Guard Skills have 60% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6920, 6921 }, level = 15, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration2"] = { type = "Spawn", tier = 2, "Guard Skills have 80% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6920, 6921 }, level = 65, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeDebuffTimePassed1"] = { type = "Spawn", tier = 1, "Debuffs on you expire 15% faster", statOrder = { 6151 }, level = 25, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeDebuffTimePassed2"] = { type = "Spawn", tier = 2, "Debuffs on you expire 25% faster", statOrder = { 6151 }, level = 78, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidAilmentsFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "50% chance to avoid Ailments from Critical Strikes", statOrder = { 4934 }, level = 1, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidAilmentsFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "75% chance to avoid Ailments from Critical Strikes", statOrder = { 4934 }, level = 70, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery1"] = { type = "Spawn", tier = 1, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 45% more Damage", statOrder = { 5889, 10588 }, level = 28, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery2"] = { type = "Spawn", tier = 2, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 60% more Damage", statOrder = { 5889, 10588 }, level = 75, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["WeaponTreeFortificationDurationMaximumFortification1"] = { type = "Spawn", tier = 1, "150% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2265, 5031 }, level = 35, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeFortificationDurationMaximumFortification2"] = { type = "Spawn", tier = 2, "200% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2265, 5031 }, level = 80, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +1 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +4 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 10% increased Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 15% increased Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 6167, 9163 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 30% increased Maximum Life", statOrder = { 6167, 9163 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration1"] = { type = "Spawn", tier = 1, "10% reduced Minion Duration", "Minions have 15% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2"] = { type = "Spawn", tier = 2, "10% reduced Minion Duration", "Minions have 25% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h1"] = { type = "Spawn", tier = 1, "20% reduced Minion Duration", "Minions have 30% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h2"] = { type = "Spawn", tier = 2, "20% reduced Minion Duration", "Minions have 50% increased Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 5032, 9288 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage1"] = { type = "Spawn", tier = 1, "Minions deal 15% reduced Damage", "Minions have 20% increased Area of Effect", statOrder = { 1973, 3024 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% reduced Damage", "Minions have 30% increased Area of Effect", statOrder = { 1973, 3024 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 30% reduced Damage", "Minions have 40% increased Area of Effect", statOrder = { 1973, 3024 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 30% reduced Damage", "Minions have 60% increased Area of Effect", statOrder = { 1973, 3024 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have +12% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have +16% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have +25% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have +35% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions have +17% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions have +23% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions have +37% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions have +47% to Chaos Resistance", statOrder = { 2912, 2913 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour1"] = { type = "Spawn", tier = 1, "Minions have +350 to Armour", statOrder = { 2905 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2"] = { type = "Spawn", tier = 2, "Minions have +500 to Armour", statOrder = { 2905 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2h1"] = { type = "Spawn", tier = 1, "Minions have +700 to Armour", statOrder = { 2905 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2h2"] = { type = "Spawn", tier = 2, "Minions have +1000 to Armour", statOrder = { 2905 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have 20% increased Evasion Rating", statOrder = { 9304 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have 30% increased Evasion Rating", statOrder = { 9304 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 40% increased Evasion Rating", statOrder = { 9304 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 60% increased Evasion Rating", statOrder = { 9304 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion1"] = { type = "Spawn", tier = 1, "Minions have 15% reduced Evasion Rating", "Minions have +15% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2"] = { type = "Spawn", tier = 2, "Minions have 15% reduced Evasion Rating", "Minions have +25% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 30% reduced Evasion Rating", "Minions have +30% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 30% reduced Evasion Rating", "Minions have +50% chance to Suppress Spell Damage", statOrder = { 9304, 9334 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Life Recovery rate", "Minions have 20% increased maximum Life", statOrder = { 1765, 1766 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Life Recovery rate", "Minions have 30% increased maximum Life", statOrder = { 1765, 1766 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced Life Recovery rate", "Minions have 40% increased maximum Life", statOrder = { 1765, 1766 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced Life Recovery rate", "Minions have 60% increased maximum Life", statOrder = { 1765, 1766 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1765, 1766 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1765, 1766 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1765, 1766 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1765, 1766 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions gain 15% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions gain 30% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2912, 9319 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionMaximumElementalResistances1"] = { type = "Spawn", tier = 1, "Minions have +1% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMaximumElementalResistances2h1"] = { type = "Spawn", tier = 1, "Minions have +2% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Movement Speed", statOrder = { 1769 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 24% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 32% increased Movement Speed", statOrder = { 1769 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Projectile Speed", statOrder = { 9327 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Projectile Speed", statOrder = { 9327 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Projectile Speed", statOrder = { 9327 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Projectile Speed", statOrder = { 9327 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2490, 9970 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3174, 9979 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on you", "Minions have 8% chance to Ignite", statOrder = { 1875, 9285 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Ignite Duration on you", "Minions have 12% chance to Ignite", statOrder = { 1875, 9285 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Ignite Duration on you", "Minions have 16% chance to Ignite", statOrder = { 1875, 9285 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Ignite Duration on you", "Minions have 24% chance to Ignite", statOrder = { 1875, 9285 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on you", "Minions have 8% chance to Freeze", statOrder = { 1874, 9282 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Freeze Duration on you", "Minions have 12% chance to Freeze", statOrder = { 1874, 9282 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Freeze Duration on you", "Minions have 16% chance to Freeze", statOrder = { 1874, 9282 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Freeze Duration on you", "Minions have 24% chance to Freeze", statOrder = { 1874, 9282 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Shock Duration on you", "Minions have 8% chance to Shock", statOrder = { 1873, 9287 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Shock Duration on you", "Minions have 12% chance to Shock", statOrder = { 1873, 9287 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Shock Duration on you", "Minions have 16% chance to Shock", statOrder = { 1873, 9287 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Shock Duration on you", "Minions have 24% chance to Shock", statOrder = { 1873, 9287 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost1"] = { type = "Spawn", tier = 1, "Link Skills have 8% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2"] = { type = "Spawn", tier = 2, "Link Skills have 12% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h1"] = { type = "Spawn", tier = 1, "Link Skills have 16% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h2"] = { type = "Spawn", tier = 2, "Link Skills have 24% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7486, 7494 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect1"] = { type = "Spawn", tier = 1, "Link Skills have 20% reduced Buff Effect", "Link Skills Link to 1 additional random target", statOrder = { 7486, 7508 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect2h1"] = { type = "Spawn", tier = 1, "Link Skills have 30% reduced Buff Effect", "Link Skills Link to 2 additional random targets", statOrder = { 7486, 7508 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect1"] = { type = "Spawn", tier = 1, "Convocation has 25% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2"] = { type = "Spawn", tier = 2, "Convocation has 40% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h1"] = { type = "Spawn", tier = 1, "Convocation has 50% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h2"] = { type = "Spawn", tier = 2, "Convocation has 80% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3877, 4023 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration1"] = { type = "Spawn", tier = 1, "10% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2"] = { type = "Spawn", tier = 2, "15% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2h1"] = { type = "Spawn", tier = 1, "20% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2h2"] = { type = "Spawn", tier = 2, "30% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect1"] = { type = "Spawn", tier = 1, "10% reduced effect of Offerings", "Offering Skills have 25% increased Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2"] = { type = "Spawn", tier = 2, "10% reduced effect of Offerings", "Offering Skills have 40% increased Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced effect of Offerings", "Offering Skills have 50% increased Duration", statOrder = { 4063, 9553 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced effect of Offerings", "Offering Skills have 80% increased Duration", statOrder = { 4063, 9553 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1769, 3381 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 10% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 15% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 20% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 30% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2913, 3379 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock1"] = { type = "Spawn", tier = 1, "Minions have +20% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2"] = { type = "Spawn", tier = 2, "Minions have +25% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2h1"] = { type = "Spawn", tier = 1, "Minions have +30% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2h2"] = { type = "Spawn", tier = 2, "Minions have +40% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock1"] = { type = "Spawn", tier = 1, "Minions have -10% Chance to Block Attack Damage", "Minions have +20% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2"] = { type = "Spawn", tier = 2, "Minions have -10% Chance to Block Attack Damage", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2h1"] = { type = "Spawn", tier = 1, "Minions have -15% Chance to Block Attack Damage", "Minions have +30% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2h2"] = { type = "Spawn", tier = 2, "Minions have -15% Chance to Block Attack Damage", "Minions have +40% Chance to Block Spell Damage", statOrder = { 2903, 2904 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced maximum Life", "Minions Recover 3% of their Life when they Block", statOrder = { 1766, 3061 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced maximum Life", "Minions Recover 4% of their Life when they Block", statOrder = { 1766, 3061 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced maximum Life", "Minions Recover 6% of their Life when they Block", statOrder = { 1766, 3061 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced maximum Life", "Minions Recover 8% of their Life when they Block", statOrder = { 1766, 3061 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeGolemsAllowedReducedGolemBuffEffect1"] = { type = "Spawn", tier = 1, "+1 to maximum number of Summoned Golems", "50% reduced Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 40, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemsAllowedReducedGolemBuffEffect2h1"] = { type = "Spawn", tier = 1, "+2 to maximum number of Summoned Golems", "100% reduced Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 77, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemBuffEffectReducedGolemsAllowed1"] = { type = "Spawn", tier = 1, "-1 to maximum number of Summoned Golems", "75% increased Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 40, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemBuffEffectReducedGolemsAllowed2h1"] = { type = "Spawn", tier = 1, "-2 to maximum number of Summoned Golems", "150% increased Effect of Buffs granted by your Golems", statOrder = { 3690, 6894 }, level = 77, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeSupportManaLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 514 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportManaLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 514 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdditionalAccuracy"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 480 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdditionalAccuracy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 480 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrogance"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 459 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrogance2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 459 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFork"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 486 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFork2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 486 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToPoison"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToPoison2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMeleeSplash"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMeleeSplash2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportStun"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 479 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportStun2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 479 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIncreasedArea"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIncreasedArea2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportKnockback"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportKnockback2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionLife"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 504 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionLife2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 504 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionSpeed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 508 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionSpeed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 508 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportLesserMultipleProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 505 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLesserMultipleProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 505 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlind"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlasphemy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 520 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlasphemy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 520 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronWill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 501 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronWill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 501 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterCast2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToFlee"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToFlee2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportItemRarity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportItemRarity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 245 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToIgnite2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 245 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeGainOnHit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 324 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeGainOnHit2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 324 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCullingStrike"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCullingStrike2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPointBlank"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 354 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPointBlank2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 354 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronGrip"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronGrip2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChain"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 243 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChain2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 243 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalArmy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 384 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalArmy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 384 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEmpower"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEmpower2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSlowerProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 377 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSlowerProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 377 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLessDuration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 365 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLessDuration2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 365 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnhance"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 271 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnhance2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 271 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnlighten"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 272 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnlighten2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 272 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 352 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPhysicalToLightning2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 352 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdvancedTraps"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdvancedTraps2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIgniteProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToBleed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 244 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToBleed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 244 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDecay2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMaim"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 331 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMaim2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 331 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOnslaught"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOnslaught2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArcaneSurge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrowNova"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 361 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrowNova2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 361 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPierce"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 509 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPierce2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 509 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportGenerosity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 495 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportGenerosity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 495 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFortify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFortify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 466 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 466 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportVolley"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 350 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportVolley2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 350 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSpellCascade2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAncestralCall"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 382 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAncestralCall2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 382 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSummonGhostOnKill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportWitheringTouch"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 405 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportWitheringTouch2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 405 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnergyLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIntensify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 380 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpale"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 310 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpale2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 310 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportRage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 360 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportRage2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 360 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportShockwave"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 376 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportShockwave2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 376 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "staff", "mace", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFeedingFrenzy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportFeedingFrenzy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 276 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPredator"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 258 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPredator2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 258 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportInfernalLegion"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 315 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportInfernalLegion2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 315 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftAssembly"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftAssembly2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSecondWind"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSecondWind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportUrgentOrders"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportUrgentOrders2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftBrand2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpendingDoom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { "support", "gem" }, }, - ["WeaponTreeSupportImpendingDoom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { "support", "gem" }, }, - ["WeaponTreeSupportLifetap"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifetap2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBehead"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 231 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBehead2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 231 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDivineBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 228 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDivineBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 228 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEternalBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 273 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEternalBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 273 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 345 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOvercharge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 345 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCursedGround"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCursedGround2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportHexBloom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 304 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportHexBloom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 304 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 353 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPinpoint2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 353 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSkillTornadoShotSplitArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot", statOrder = { 5475 }, level = 1, group = "WeaponTreeSkillTornadoShotSplitArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillMirrorArrowBlinkArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow", "Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow", statOrder = { 5453, 5459 }, level = 1, group = "WeaponTreeSkillMirrorArrowBlinkArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCleaveReave"] = { type = "Spawn", tier = 1, "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave", statOrder = { 5474 }, level = 1, group = "WeaponTreeSkillCleaveReave", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "dagger", "claw", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBodySwapDetonateDead"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead", statOrder = { 5454 }, level = 1, group = "WeaponTreeSkillBodySwapDetonateDead", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillGlacialCascadeIceNova"] = { type = "Spawn", tier = 1, "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast", statOrder = { 5458 }, level = 1, group = "WeaponTreeSkillGlacialCascadeIceNova", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillLaceratePerforate"] = { type = "Spawn", tier = 1, "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate", statOrder = { 5473 }, level = 1, group = "WeaponTreeSkillLaceratePerforate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormBurstDivineIre"] = { type = "Spawn", tier = 1, "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire", statOrder = { 5456 }, level = 1, group = "WeaponTreeSkillStormBurstDivineIre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHeavyStrikeBoneshatter"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter", statOrder = { 5455 }, level = 1, group = "WeaponTreeSkillHeavyStrikeBoneshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "staff", "sceptre", "mace", "axe", "shield", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeFlurryChargedDash"] = { type = "Spawn", tier = 1, "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash", statOrder = { 5452 }, level = 1, group = "WeaponTreeSkillBladeFlurryChargedDash", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "sword", "dagger", "claw", "weapon", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBurningArrowExplosiveArrow"] = { type = "Spawn", tier = 1, "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen", statOrder = { 5380 }, level = 1, group = "WeaponTreeSkillBurningArrowExplosiveArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlastRainArtilleryBallista"] = { type = "Spawn", tier = 1, "All Damage from Blast Rain and Artillery Ballista Hits can Poison", "25% chance for Poisons inflicted with Blast Rain or Artillery Ballista to deal 100% more Damage", statOrder = { 5096, 5097 }, level = 1, group = "WeaponTreeSkillBlastRainArtilleryBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShrapnelBallistaSiegeBallista"] = { type = "Spawn", tier = 1, "50% increased Siege and Shrapnel Ballista attack speed per maximum Summoned Totem", "45% reduced Shrapnel Ballista attack speed per Shrapnel Ballista Totem", "45% reduced Siege Ballista attack speed per Siege Ballista Totem", statOrder = { 4294, 10027, 10032 }, level = 1, group = "WeaponTreeSkillShrapnelBallistaSiegeBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillLightningArrowIceShot"] = { type = "Spawn", tier = 1, "All Damage from Lightning Arrow and Ice Shot Hits can Ignite", "25% chance for Ignites inflicted with Lightning Arrow or Ice Shot to deal 100% more Damage", statOrder = { 7437, 7438 }, level = 1, group = "WeaponTreeSkillLightningArrowIceShot", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGalvanicArrowStormRain"] = { type = "Spawn", tier = 1, "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine", statOrder = { 6852 }, level = 1, group = "WeaponTreeSkillGalvanicArrowStormRain", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillElementalHitWildStrike"] = { type = "Spawn", tier = 1, "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 6325, 9479 }, level = 1, group = "WeaponTreeSkillElementalHitWildStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "weapon", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBarrageFrenzy"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge", statOrder = { 4981 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBarrageFrenzy2H"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge", statOrder = { 4981 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillToxicRainRainofArrows"] = { type = "Spawn", tier = 1, "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding", "-60% of Toxic Rain Physical Damage Converted to Chaos Damage", statOrder = { 9811, 10413 }, level = 1, group = "WeaponTreeSkillToxicRainRainofArrows", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCausticArrowScourgeArrow"] = { type = "Spawn", tier = 1, "Caustic Arrow and Scourge Arrow fire 25% more projectiles", statOrder = { 5478 }, level = 1, group = "WeaponTreeSkillCausticArrowScourgeArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillPunctureEnsnaringArrow"] = { type = "Spawn", tier = 1, "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage", statOrder = { 9758 }, level = 1, group = "WeaponTreeSkillPunctureEnsnaringArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "dagger", "claw", "sword", "shield", "default", }, weightVal = { 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBladesLightningStrike"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "15% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrder = { 7471, 7472 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBladesLightningStrike2H"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "25% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrder = { 7471, 7472 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillViperStrikePestilentStrike"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge", statOrder = { 10528 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillViperStrikePestilentStrike2H"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge", statOrder = { 10528 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDominatingBlowAbsolution"] = { type = "Spawn", tier = 1, "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value", statOrder = { 6258 }, level = 1, group = "WeaponTreeSkillDominatingBlowAbsolution", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "shield", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "weapon", "default", }, weightVal = { 0, 500, 1000, 1000, 250, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolcanicFissureMoltenStrike"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration", statOrder = { 10525 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolcanicFissureMoltenStrike2H"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration", statOrder = { 10525 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillStaticStrikeSmite"] = { type = "Spawn", tier = 1, "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life", statOrder = { 10084 }, level = 1, group = "WeaponTreeSkillStaticStrikeSmite", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVigilantStrikeFlickerStrike"] = { type = "Spawn", tier = 1, "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges", statOrder = { 10527 }, level = 1, group = "WeaponTreeSkillVigilantStrikeFlickerStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDoubleStrikeDualStrike"] = { type = "Spawn", tier = 1, "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6262 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDoubleStrikeDualStrike2H"] = { type = "Spawn", tier = 1, "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6262 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceCrashGlacialHammer"] = { type = "Spawn", tier = 1, "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze", statOrder = { 7185 }, level = 1, group = "WeaponTreeSkillIceCrashGlacialHammer", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 500, 1000, 1000, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillEarthquakeEarthshatter"] = { type = "Spawn", tier = 1, "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen", statOrder = { 6285 }, level = 1, group = "WeaponTreeSkillEarthquakeEarthshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGroundSlamSunder"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage", statOrder = { 6915 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGroundSlamSunder2H"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage", statOrder = { 6915 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillTectonicSlamInfernalBlow"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour", statOrder = { 10360 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillTectonicSlamInfernalBlow2H"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour", statOrder = { 10359 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow2H", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRageVortexBladestorm"] = { type = "Spawn", tier = 1, "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved", statOrder = { 5092 }, level = 1, group = "WeaponTreeSkillRageVortexBladestorm", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillShieldCrushSpectralShieldThrow"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 30 to 50 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrder = { 9998, 9999, 10000 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShieldCrushSpectralShieldThrowUniqueHelmet"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 15 to 25 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrder = { 9998, 9999, 10000 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCycloneSweep"] = { type = "Spawn", tier = 1, "Knockback direction is reversed with Cyclone and Holy Sweep", "Knock Enemies Back on hit with Cyclone and Holy Sweep", statOrder = { 6011, 6012 }, level = 1, group = "WeaponTreeSkillCycloneSweep", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCobraLashVenomGyre"] = { type = "Spawn", tier = 1, "25% chance for Bleeding inflicted with Cobra Lash or Venom Gyre to deal 100% more Damage", "Cobra Lash and Venom Gyre have -60% of Physical Damage Converted to Chaos Damage", statOrder = { 5791, 5792 }, level = 1, group = "WeaponTreeSkillCobraLashVenomGyre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "claw", "dagger", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoction"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 40% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrder = { 6643, 7879 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoctionUniqueHelmet"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 25% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrder = { 6643, 7879 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel"] = { type = "Spawn", tier = 1, "Recover 1% of Energy Shield per Steel Shard Consumed", statOrder = { 9853 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "shield", "default", }, weightVal = { 0, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel2H"] = { type = "Spawn", tier = 1, "Recover 2% of Energy Shield per Steel Shard Consumed", statOrder = { 9853 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSpectralHelixSpectralThrow"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 40% more and 40% less Projectile Speed at random", statOrder = { 10112, 10112.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSpectralHelixSpectralThrow2H"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 75% more and 75% less Projectile Speed at random", statOrder = { 10112, 10112.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillChainHookShieldCharge"] = { type = "Spawn", tier = 1, "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills", statOrder = { 5482 }, level = 1, group = "WeaponTreeSkillChainHookShieldCharge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillConsecratedPathPurifyingFlame"] = { type = "Spawn", tier = 1, "Consecrated Path and Purifying Flame create Profane Ground instead of Consecrated Ground", "100% of Consecrated Path and Purifying Flame Fire Damage Converted to Chaos Damage", statOrder = { 5858, 5859 }, level = 1, group = "WeaponTreeSkillConsecratedPathPurifyingFlame", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "bow", "claw", "weapon_can_roll_minion_modifiers", "attack_dagger", "shield", "weapon", "default", }, weightVal = { 1000, 0, 0, 0, 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrozenLegionGeneralsCry"] = { type = "Spawn", tier = 1, "100% more Frozen Legion and General's Cry Cooldown Recovery Rate", "Frozen Sweep deals 30% less Damage", "General's Cry has -2 to maximum number of Mirage Warriors", statOrder = { 6688, 6693, 6859 }, level = 1, group = "WeaponTreeSkillFrozenLegionGeneralsCry", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAncestralProtectorAncestralWarchief"] = { type = "Spawn", tier = 1, "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4664 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAncestralProtectorAncestralWarchief2H"] = { type = "Spawn", tier = 1, "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4664 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillKineticBoltKineticBlastPowerSiphon"] = { type = "Spawn", tier = 1, "Kinetic Bolt, Kinetic Blast and Power Siphon have 20% reduced Enemy Stun Threshold", "100% chance for Kinetic Bolt, Kinetic Blast and Power Siphon to double Stun Duration", statOrder = { 7318, 7319 }, level = 1, group = "WeaponTreeSkillKineticBoltKineticBlastPowerSiphon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "wand", "shield", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillExsanguinateReap"] = { type = "Spawn", tier = 1, "100% of Exsanguinate and Reap Physical Damage Converted to Fire Damage", "Exsanguinate debuffs deal Fire Damage per second instead of Physical Damage per second", "Reap debuffs deal Fire Damage per second instead of Physical Damage per second", statOrder = { 6526, 6528, 9832 }, level = 1, group = "WeaponTreeSkillExsanguinateReap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFirestormBladefall"] = { type = "Spawn", tier = 1, "15% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6596 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFirestormBladefall2H"] = { type = "Spawn", tier = 1, "25% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6596 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillEtherealKnives"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade", statOrder = { 6472 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEtherealKnives2H"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade", statOrder = { 6472 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireballRollingMagma"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 100% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6592, 6593 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireballRollingMagma2H"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 200% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6592, 6593 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFreezingPulseEyeOfWinter"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "15% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrder = { 6668, 6669 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFreezingPulseEyeOfWinter2H"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "25% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrder = { 6668, 6669 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeVortexBladeBlast"] = { type = "Spawn", tier = 1, "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 5088, 5089 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeVortexBladeBlast2H"] = { type = "Spawn", tier = 1, "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 5088, 5089 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShockNovaStormCall"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "15% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrder = { 10015, 10016 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillShockNovaStormCall2H"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "25% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrder = { 10015, 10016 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCreepingFrostColdSnap"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5910, 5911 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillCreepingFrostColdSnap2H"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5910, 5911 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillLightningConduitGalvanicField"] = { type = "Spawn", tier = 1, "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen", statOrder = { 7440 }, level = 1, group = "WeaponTreeSkillLightningConduitGalvanicField", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillManabondStormbind"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage", "50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8220, 8221 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillManabondStormbind2H"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage", "100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8220, 8221 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceSpearBallLightning"] = { type = "Spawn", tier = 1, "Ice Spear and Ball Lightning fire Projectiles in a circle", "Ice Spear and Ball Lightning Projectiles Return to you", statOrder = { 7198, 7199 }, level = 1, group = "WeaponTreeSkillIceSpearBallLightning", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlameblastIncinerate"] = { type = "Spawn", tier = 1, "+0.2 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 2 additional Stages", "Incinerate starts with 2 additional Stages", statOrder = { 6621, 6622, 6623, 7263 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlameblastIncinerate2H"] = { type = "Spawn", tier = 1, "+0.4 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 4 additional Stages", "Incinerate starts with 4 additional Stages", statOrder = { 6621, 6622, 6623, 7263 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillHexblastDoomBlast"] = { type = "Spawn", tier = 1, "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7135 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHexblastDoomBlast2H"] = { type = "Spawn", tier = 1, "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7135 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillForbiddenRiteDarkPact"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 6655 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillForbiddenRiteDarkPact2H"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 6655 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBaneContagion"] = { type = "Spawn", tier = 1, "Enemies inflicted with Bane or Contagion are Chilled", statOrder = { 6368 }, level = 1, group = "WeaponTreeSkillBaneContagion", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEssenceDrainSoulrend"] = { type = "Spawn", tier = 1, "25% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 2 additional Projectiles", statOrder = { 6470, 6471 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEssenceDrainSoulrend2H"] = { type = "Spawn", tier = 1, "50% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 4 additional Projectiles", statOrder = { 6470, 6471 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSparkLightningTendrils"] = { type = "Spawn", tier = 1, "50% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 1 fewer Pulse between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrder = { 7474, 10101 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillSparkLightningTendrils2H"] = { type = "Spawn", tier = 1, "100% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 2 fewer Pulses between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrder = { 7474, 10101 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBombOrbofStorms"] = { type = "Spawn", tier = 1, "Frost Bombs gain 50% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 40% increased frequency", statOrder = { 6678, 9561 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBombOrbofStorms2H"] = { type = "Spawn", tier = 1, "Frost Bombs gain 75% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 60% increased frequency", statOrder = { 6678, 9561 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillWinterOrbHydrosphere"] = { type = "Spawn", tier = 1, "Trigger Level 20 Hydrosphere while you Channel Winter Orb", statOrder = { 5457 }, level = 1, group = "WeaponTreeSkillWinterOrbHydrosphere", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillWintertideBrandArcanistBrand"] = { type = "Spawn", tier = 1, "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage", statOrder = { 10622 }, level = 1, group = "WeaponTreeSkillWintertideBrandArcanistBrand", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateWeapon"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +1.5% to Critical Strike Chance", statOrder = { 4690 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateWeapon2H"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +2.5% to Critical Strike Chance", statOrder = { 4690 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem"] = { type = "Spawn", tier = 1, "Summoned Carrion Golems Impale on Hit if you have the same number of them as Summoned Chaos Golems", "Summoned Chaos Golems Impale on Hit if you have the same number of them as Summoned Stone Golems", "Summoned Stone Golems Impale on Hit if you have the same number of them as Summoned Carrion Golems", statOrder = { 5451, 5751, 10235 }, level = 1, group = "WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem"] = { type = "Spawn", tier = 1, "Maximum Life of Summoned Elemental Golems is Doubled", statOrder = { 6324 }, level = 1, group = "WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonHolyRelicSummonSkeletons"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "100% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrder = { 10050, 10051 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonHolyRelicSummonSkeletons2H"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "200% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrder = { 10050, 10051 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRaiseSpectreRaiseZombie"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised", statOrder = { 10117 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRaiseSpectreRaiseZombie2H"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised", statOrder = { 10117 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport"] = { type = "Spawn", tier = 1, "Maximum number of Summoned Raging Spirits is 3", "Maximum number of Summoned Phantasms is 3", "Summoned Raging Spirits have Diamond Shrine and Massive Shrine Buffs", "Summoned Phantasms have Diamond Shrine and Massive Shrine Buffs", statOrder = { 9537, 9539, 10307, 10318 }, level = 1, group = "WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireTrapExplosiveTrap"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine", statOrder = { 6552 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireTrapExplosiveTrap2H"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine", statOrder = { 6552 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceTrapLightningTrap"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 15% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrder = { 7182, 7183, 7184 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceTrapLightningTrap2H"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 25% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrder = { 7182, 7183, 7184 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use", statOrder = { 6624, 6625 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap2H"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses", statOrder = { 6624, 6625 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10254, 10255 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine2H"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10254, 10255 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBearTrapSiphoningTrap"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 5063 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBearTrapSiphoningTrap2H"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 5063 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillHolyFlameTotemShockwaveTotem"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 35% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrder = { 7174 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHolyFlameTotemShockwaveTotem2H"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 60% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrder = { 7174 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6152 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem2H"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6152 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRighteousFireScorchingRay"] = { type = "Spawn", tier = 1, "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9946 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillRighteousFireScorchingRay2H"] = { type = "Spawn", tier = 1, "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9946 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlightWither"] = { type = "Spawn", tier = 1, "Blight has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrder = { 5117, 10623 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlightWither2H"] = { type = "Spawn", tier = 1, "Blight has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrder = { 5117, 10623 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVoltaxicBurstDischarge"] = { type = "Spawn", tier = 1, "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you", statOrder = { 6181 }, level = 1, group = "WeaponTreeSkillVoltaxicBurstDischarge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormArmageddonBrandSummonReaper"] = { type = "Spawn", tier = 1, "Storm and Armageddon Brands can be attached to your Summoned Reaper", statOrder = { 10236 }, level = 1, group = "WeaponTreeSkillStormArmageddonBrandSummonReaper", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillArcCracklingLance"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "15% increased Cost of Arc and Crackling Lance", statOrder = { 4699, 4700 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillArcCracklingLance2H"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "25% increased Cost of Arc and Crackling Lance", statOrder = { 4699, 4700 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateGuardian"] = { type = "Spawn", tier = 1, "50% increased Effect of Link Buffs on Animated Guardian", "Link Skills can target Animated Guardian", statOrder = { 7483, 7498 }, level = 1, group = "WeaponTreeSkillAnimateGuardian", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlazingSalvoFlameWall"] = { type = "Spawn", tier = 1, "Blazing Salvo Projectiles Fork when they pass through a Flame Wall", statOrder = { 5100 }, level = 1, group = "WeaponTreeSkillBlazingSalvoFlameWall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolatileDeadCremation"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity", statOrder = { 10540 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolatileDeadCremation2H"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity", statOrder = { 10540 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillWaveofConviction"] = { type = "Spawn", tier = 1, "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9763 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillWaveofConviction2H"] = { type = "Spawn", tier = 1, "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9763 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVortexFrostbolt"] = { type = "Spawn", tier = 1, "+15% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10551 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVortexFrostbolt2H"] = { type = "Spawn", tier = 1, "+25% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10551 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSellPriceMagmaticOre"] = { type = "Spawn", tier = 1, "Item sells for an additional Magmatic Ore", statOrder = { 10597 }, level = 50, group = "WeaponTreeSellPriceMagmaticOre", nodeType = "SellBonus", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 1275, 1275, 938, 750 }, modTags = { }, }, - ["WeaponTreeSellNodeScouringOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Orbs of Scouring", statOrder = { 10608 }, level = 50, group = "WeaponTreeSellNodeScouringOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, - ["WeaponTreeSellNodeScouringOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Orbs of Scouring", statOrder = { 10608 }, level = 78, group = "WeaponTreeSellNodeScouringOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeChaosOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Chaos Orbs", statOrder = { 10593 }, level = 50, group = "WeaponTreeSellNodeChaosOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 408, 408, 300, 240 }, modTags = { }, }, - ["WeaponTreeSellNodeChaosOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Chaos Orbs", statOrder = { 10593 }, level = 78, group = "WeaponTreeSellNodeChaosOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 204, 204, 150, 120 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfRegret"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Orbs of Regret", statOrder = { 10605 }, level = 50, group = "WeaponTreeSellNodeOrbOfRegret", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfRegretHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Orbs of Regret", statOrder = { 10605 }, level = 78, group = "WeaponTreeSellNodeOrbOfRegretHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, - ["WeaponTreeSellNodeRegalOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Regal Orbs", statOrder = { 10606 }, level = 50, group = "WeaponTreeSellNodeRegalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 102, 102, 75, 60 }, modTags = { }, }, - ["WeaponTreeSellNodeRegalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Regal Orbs", statOrder = { 10606 }, level = 78, group = "WeaponTreeSellNodeRegalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 51, 51, 38, 30 }, modTags = { }, }, - ["WeaponTreeSellNodeVaalOrb"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Vaal Orbs", statOrder = { 10609 }, level = 50, group = "WeaponTreeSellNodeVaalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeVaalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Vaal Orbs", statOrder = { 10609 }, level = 78, group = "WeaponTreeSellNodeVaalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, - ["WeaponTreeSellNodeGemcutters"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Gemcutter's Prisms", statOrder = { 10600 }, level = 50, group = "WeaponTreeSellNodeGemcutters", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 92, 92, 68, 54 }, modTags = { }, }, - ["WeaponTreeSellNodeGemcuttersHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Gemcutter's Prisms", statOrder = { 10600 }, level = 78, group = "WeaponTreeSellNodeGemcuttersHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 46, 46, 34, 27 }, modTags = { }, }, - ["WeaponTreeSellNodeBlessedOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Blessed Orbs", statOrder = { 10592 }, level = 50, group = "WeaponTreeSellNodeBlessedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 136, 136, 100, 80 }, modTags = { }, }, - ["WeaponTreeSellNodeBlessedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Blessed Orbs", statOrder = { 10592 }, level = 78, group = "WeaponTreeSellNodeBlessedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, - ["WeaponTreeSellNodeAwakenedSextant"] = { type = "Spawn", tier = 1, "Item sells for an additional Cartography Scarab of every type", statOrder = { 10591 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextant", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 238, 238, 175, 140 }, modTags = { }, }, - ["WeaponTreeSellNodeAwakenedSextantHigh"] = { type = "Spawn", tier = 2, "Item sells for 2 additional Cartography Scarabs of every type", statOrder = { 10591 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextantHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 119, 119, 88, 70 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfAnnulment"] = { type = "Spawn", tier = 1, "Item sells for an additional Orb of Annulment", statOrder = { 10604 }, level = 68, group = "WeaponTreeSellNodeOrbOfAnnulment", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfAnnulmentHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Orbs of Annulment", statOrder = { 10604 }, level = 78, group = "WeaponTreeSellNodeOrbOfAnnulmentHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 24, 24, 18, 14 }, modTags = { }, }, - ["WeaponTreeSellNodeExaltedOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Exalted Orb", statOrder = { 10596 }, level = 68, group = "WeaponTreeSellNodeExaltedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeExaltedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Exalted Orbs", statOrder = { 10596 }, level = 78, group = "WeaponTreeSellNodeExaltedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, - ["WeaponTreeSellNodeDivineOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Divine Orb", statOrder = { 10595 }, level = 68, group = "WeaponTreeSellNodeDivineOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeDivineOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Divine Orbs", statOrder = { 10595 }, level = 78, group = "WeaponTreeSellNodeDivineOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, - ["WeaponTreeSellNodeSacredOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Sacred Orb", statOrder = { 10607 }, level = 80, group = "WeaponTreeSellNodeSacredOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 9, 9, 6, 5 }, modTags = { }, }, - ["WeaponTreeSellNodeSacredOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Sacred Orbs", statOrder = { 10607 }, level = 84, group = "WeaponTreeSellNodeSacredOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 3, 3, 3, 2 }, modTags = { }, }, - ["WeaponTreeSellNodeIgneousGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Igneous Geode", statOrder = { 10601 }, level = 75, group = "WeaponTreeSellNodeIgneousGeode", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 2125, 2125, 1563, 1250 }, modTags = { }, }, - ["WeaponTreeSellNodeCrystallineGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Crystalline Geode", statOrder = { 10594 }, level = 84, group = "WeaponTreeSellNodeCrystallineGeode", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeDouble"] = { type = "Spawn", tier = 1, "Crucible Passives that sell for items sell for twice as much", statOrder = { 10603 }, level = 84, group = "WeaponTreeSellNodeDouble", nodeType = "SellBonus", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, - ["WeaponTreeFishingLineStrength"] = { type = "Spawn", tier = 1, "30% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "WeaponTreeFishingLineStrength", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingQuantity"] = { type = "Spawn", tier = 1, "20% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "WeaponTreeFishingQuantity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingRarity"] = { type = "Spawn", tier = 1, "40% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "WeaponTreeFishingRarity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingPoolConsumption"] = { type = "Spawn", tier = 1, "20% increased Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "WeaponTreeFishingPoolConsumption", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingExoticFish"] = { type = "Spawn", tier = 1, "You can catch Exotic Fish", statOrder = { 2854 }, level = 1, group = "WeaponTreeFishingExoticFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingBiteSensitivity"] = { type = "Spawn", tier = 1, "50% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 1, group = "WeaponTreeFishingBiteSensitivity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingReelStability"] = { type = "Spawn", tier = 1, "100% increased Reeling Stability", statOrder = { 6612 }, level = 1, group = "WeaponTreeFishingReelStability", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingChanceToCatchBoots"] = { type = "Spawn", tier = 1, "25% reduced chance to catch Boots", statOrder = { 6602 }, level = 1, group = "WeaponTreeFishingChanceToCatchBoots", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingChanceToCatchDivineOrb"] = { type = "Spawn", tier = 1, "5% increased chance to catch a Divine Orb", statOrder = { 6603 }, level = 1, group = "WeaponTreeFishingChanceToCatchDivineOrb", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingCanCatchDivineFish"] = { type = "Spawn", tier = 1, "You can catch Divine Fish", statOrder = { 6601 }, level = 1, group = "WeaponTreeFishingCanCatchDivineFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingGhastlyFishermanCannotSpawn"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman cannot spawn", statOrder = { 6606 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanCannotSpawn", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingGhastlyFishermanSpawnsBehindYou"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman always appears behind you", statOrder = { 6607 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanSpawnsBehindYou", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingTasalioIrePerFishCaught"] = { type = "Spawn", tier = 1, "20% reduced Tasalio's Ire per Fish caught", statOrder = { 6613 }, level = 1, group = "WeaponTreeFishingTasalioIrePerFishCaught", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingValakoAidPerStormyDay"] = { type = "Spawn", tier = 1, "20% increased Valako's Aid per Stormy Day", statOrder = { 6614 }, level = 1, group = "WeaponTreeFishingValakoAidPerStormyDay", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingBestiaryLuresAtFishingHoles"] = { type = "Spawn", tier = 1, "Can use Bestiary Lures at Fishing Holes", statOrder = { 6600 }, level = 1, group = "WeaponTreeFishingBestiaryLuresAtFishingHoles", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingCorruptedFishCleansedChance"] = { type = "Spawn", tier = 1, "Corrupted Fish have 10% chance to be Cleansed", statOrder = { 6604 }, level = 1, group = "WeaponTreeFishingCorruptedFishCleansedChance", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingKrillsonAffectionPerFishGifted"] = { type = "Spawn", tier = 1, "23% increased Krillson Affection per Fish Gifted", statOrder = { 6608 }, level = 1, group = "WeaponTreeFishingKrillsonAffectionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingLifeOfFishWithThisRod"] = { type = "Spawn", tier = 1, "40% increased Life of Fish caught with this Fishing Rod", statOrder = { 6609 }, level = 1, group = "WeaponTreeFishingLifeOfFishWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingFishAlwaysTellTruthWithThisRod"] = { type = "Spawn", tier = 1, "Fish caught with this Fishing Rod will always tell the truth", statOrder = { 6605 }, level = 1, group = "WeaponTreeFishingFishAlwaysTellTruthWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingWishPerFish"] = { type = "Spawn", tier = 1, "+3 Wishes per Ancient Fish caught", statOrder = { 6616 }, level = 1, group = "WeaponTreeFishingWishPerFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingWishEffectOfAncientFish"] = { type = "Spawn", tier = 1, "50% increased effect of Wishes granted by Ancient Fish", statOrder = { 6615 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingMagmaticFishAreCooked"] = { type = "Spawn", tier = 1, "Fish caught from Magmatic Fishing Holes are already Cooked", statOrder = { 6610 }, level = 1, group = "WeaponTreeFishingMagmaticFishAreCooked", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingMoltenOneConfusionPerFishGifted"] = { type = "Spawn", tier = 1, "15% increased Molten One confusion per Fish Gifted", statOrder = { 6611 }, level = 1, group = "WeaponTreeFishingMoltenOneConfusionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Arcane Surge", statOrder = { 226 }, level = 1, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Combustion", statOrder = { 245 }, level = 1, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Decay", statOrder = { 259 }, level = 1, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Proliferation", statOrder = { 466 }, level = 1, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Energy Leech", statOrder = { 270 }, level = 1, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Faster Casting", statOrder = { 500 }, level = 1, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ignite Proliferation", statOrder = { 308 }, level = 1, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Intensify", statOrder = { 380 }, level = 1, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Overcharge", statOrder = { 345 }, level = 1, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Physical To Lightning", statOrder = { 352 }, level = 1, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Pinpoint", statOrder = { 353 }, level = 1, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Cascade", statOrder = { 379 }, level = 1, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Summon Phantasm", statOrder = { 385 }, level = 1, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swiftbrand", statOrder = { 387 }, level = 1, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedChaos"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "WeaponTreeSupportAddedChaos", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedCold"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Cold Damage", statOrder = { 518 }, level = 1, group = "WeaponTreeSupportAddedCold", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "WeaponTreeSupportAddedLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportArchmage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Archmage", statOrder = { 227 }, level = 1, group = "WeaponTreeSupportArchmage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportBonechill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Bonechill", statOrder = { 235 }, level = 1, group = "WeaponTreeSupportBonechill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportConcentratedEffect"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Concentrated Effect", statOrder = { 453 }, level = 1, group = "WeaponTreeSupportConcentratedEffect", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportControlledDestruction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Controlled Destruction", statOrder = { 525 }, level = 1, group = "WeaponTreeSupportControlledDestruction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportEfficacy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Efficacy", statOrder = { 265 }, level = 1, group = "WeaponTreeSupportEfficacy", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalFocus"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Focus", statOrder = { 267 }, level = 1, group = "WeaponTreeSupportElementalFocus", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Penetration", statOrder = { 268 }, level = 1, group = "WeaponTreeSupportElementalPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportImmolate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 309 }, level = 1, group = "WeaponTreeSupportImmolate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIncreasedCriticalDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 30 Increased Critical Damage", statOrder = { 485 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIncreasedCriticalStrikes"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Increased Critical Strikes", statOrder = { 313 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalStrikes", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInfusedChannelling"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Infused Channelling", statOrder = { 383 }, level = 1, group = "WeaponTreeSupportInfusedChannelling", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInnervate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Innervate", statOrder = { 521 }, level = 1, group = "WeaponTreeSupportInnervate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportFirePenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Fire Penetration", statOrder = { 465 }, level = 1, group = "WeaponTreeSupportFirePenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportColdPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold Penetration", statOrder = { 513 }, level = 1, group = "WeaponTreeSupportColdPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportLightningPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Lightning Penetration", statOrder = { 326 }, level = 1, group = "WeaponTreeSupportLightningPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPowerChargeOnCrit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike", statOrder = { 356 }, level = 1, group = "WeaponTreeSupportPowerChargeOnCrit", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSpellEcho"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Echo", statOrder = { 341 }, level = 1, group = "WeaponTreeSupportSpellEcho", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportTrinity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Trinity", statOrder = { 392 }, level = 1, group = "WeaponTreeSupportTrinity", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportUnboundAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unbound Ailments", statOrder = { 393 }, level = 1, group = "WeaponTreeSupportUnboundAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportUnleash"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unleash", statOrder = { 396 }, level = 1, group = "WeaponTreeSupportUnleash", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportBurningDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Burning Damage", statOrder = { 312 }, level = 1, group = "WeaponTreeSupportBurningDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportColdToFire"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 463 }, level = 1, group = "WeaponTreeSupportColdToFire", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInspiration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Inspiration", statOrder = { 494 }, level = 1, group = "WeaponTreeSupportInspiration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIceBite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ice Bite", statOrder = { 512 }, level = 1, group = "WeaponTreeSupportIceBite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportCriticalStrikeAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Critical Strike Affliction", statOrder = { 355 }, level = 1, group = "WeaponTreeSupportCriticalStrikeAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportDeadlyAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Deadly Ailments", statOrder = { 257 }, level = 1, group = "WeaponTreeSupportDeadlyAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportHypothermia"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Hypothermia", statOrder = { 511 }, level = 1, group = "WeaponTreeSupportHypothermia", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSwiftAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swift Affliction", statOrder = { 363 }, level = 1, group = "WeaponTreeSupportSwiftAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration1"] = { type = "Spawn", tier = 1, "50% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration2"] = { type = "Spawn", tier = 2, "65% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration3"] = { type = "Spawn", tier = 3, "80% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration2h1"] = { type = "Spawn", tier = 1, "100% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration2h2"] = { type = "Spawn", tier = 2, "120% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration2h3"] = { type = "Spawn", tier = 3, "140% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit1"] = { type = "Spawn", tier = 1, "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2"] = { type = "Spawn", tier = 2, "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit3"] = { type = "Spawn", tier = 3, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h1"] = { type = "Spawn", tier = 1, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h2"] = { type = "Spawn", tier = 2, "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h3"] = { type = "Spawn", tier = 3, "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeOnKill"] = { type = "Spawn", tier = 1, "75% reduced Endurance, Frenzy and Power Charge Duration", "Gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3060, 3648 }, level = 70, group = "WeaponTreeRandomChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 200 }, modTags = { }, }, + ["WeaponTreeFrenzyChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Frenzy Charge Duration", "Gain a Frenzy Charge on Kill", statOrder = { 2150, 2657 }, level = 30, group = "WeaponTreeFrenzyChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, + ["WeaponTreePowerChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Power Charge Duration", "Gain a Power Charge on Kill", statOrder = { 2165, 2659 }, level = 30, group = "WeaponTreePowerChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, + ["WeaponTreeEnduranceChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Endurance Charge Duration", "Gain an Endurance Charge on Kill", statOrder = { 2148, 2655 }, level = 30, group = "WeaponTreeEnduranceChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, + ["WeaponTreeMinimumFrenzyAndPowerCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Minimum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1827, 1831, 1836 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumFrenzyAndPowerCharges2H"] = { type = "Spawn", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Minimum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1827, 1831, 1836 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumPowerAndEnduranceCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1826, 1832, 1836 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumPowerAndEnduranceCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1826, 1832, 1836 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumEnduranceAndFrenzyCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "+1 to Minimum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1826, 1831, 1837 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumEnduranceAndFrenzyCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "+2 to Minimum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1826, 1831, 1837 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumAllCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9265, 9390 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMinimumAllCharges2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+2 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9265, 9390 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFrenzyCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1827, 1832, 1837 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFrenzyCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1827, 1832, 1837 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumPowerCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges", statOrder = { 1827, 1832, 1837 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumPowerCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Maximum Power Charges", statOrder = { 1827, 1832, 1837 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumEnduranceCharges"] = { type = "MergeOnly", tier = 1, "+1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1827, 1832, 1837 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumEnduranceCharges2H"] = { type = "MergeOnly", tier = 1, "+2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1827, 1832, 1837 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedPerFrenzyCharge"] = { type = "Spawn", tier = 1, "4% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1825, 1832 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedPerFrenzyCharge2H"] = { type = "Spawn", tier = 1, "6% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1825, 1832 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryPerPowerCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "4% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1837, 5953 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryPerPowerCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "6% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1837, 5953 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectPerEnduranceCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "8% increased Area of Effect per Endurance Charge", statOrder = { 1827, 4778 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectPerEnduranceCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "12% increased Area of Effect per Endurance Charge", statOrder = { 1827, 4778 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDamagePerCharge"] = { type = "Spawn", tier = 1, "15% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 6150, 9265 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeDamagePerCharge2H"] = { type = "Spawn", tier = 1, "25% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 6150, 9265 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrder = { 10930 }, level = 86, group = "WeaponTreeSimulatedRampage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Agony has 25% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7207, 7210 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Agony has 35% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7207, 7210 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Agony has 45% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 7207, 7210 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Agony has 50% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7207, 7210 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Agony has 70% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7207, 7210 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Agony has 90% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 7207, 7210 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 25% increased Buff Effect", statOrder = { 4066, 7211 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 35% increased Buff Effect", statOrder = { 4066, 7211 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 45% increased Buff Effect", statOrder = { 4066, 7211 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 50% increased Buff Effect", statOrder = { 4066, 7211 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 70% increased Buff Effect", statOrder = { 4066, 7211 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 90% increased Buff Effect", statOrder = { 4066, 7211 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 25% increased Buff Effect", statOrder = { 4067, 7215 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 35% increased Buff Effect", statOrder = { 4067, 7215 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 45% increased Buff Effect", statOrder = { 4067, 7215 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 50% increased Buff Effect", statOrder = { 4067, 7215 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 70% increased Buff Effect", statOrder = { 4067, 7215 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 90% increased Buff Effect", statOrder = { 4067, 7215 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Purity has 25% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7219, 7223 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Purity has 35% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7219, 7223 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Purity has 45% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 7219, 7223 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Purity has 50% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7219, 7223 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Purity has 70% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7219, 7223 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Purity has 90% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 7219, 7223 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 25% increased Buff Effect", statOrder = { 4068, 7225 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 35% increased Buff Effect", statOrder = { 4068, 7225 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 45% increased Buff Effect", statOrder = { 4068, 7225 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 4068, 7225 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 70% increased Buff Effect", statOrder = { 4068, 7225 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 90% increased Buff Effect", statOrder = { 4068, 7225 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Anger has 20% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3392, 3453 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Anger has 25% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3392, 3453 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Anger has 30% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3392, 3453 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Anger has 40% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3392, 3453 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Anger has 50% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3392, 3453 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Anger has 60% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3392, 3453 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation1"] = { type = "Spawn", tier = 1, "Wrath has 20% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3397, 4078 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2"] = { type = "Spawn", tier = 2, "Wrath has 25% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3397, 4078 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation3"] = { type = "Spawn", tier = 3, "Wrath has 30% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3397, 4078 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Wrath has 40% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3397, 4078 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Wrath has 50% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3397, 4078 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Wrath has 60% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3397, 4078 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation1"] = { type = "Spawn", tier = 1, "Hatred has 20% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3402, 4070 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2"] = { type = "Spawn", tier = 2, "Hatred has 25% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3402, 4070 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation3"] = { type = "Spawn", tier = 3, "Hatred has 30% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3402, 4070 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Hatred has 40% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3402, 4070 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Hatred has 50% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3402, 4070 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Hatred has 60% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3402, 4070 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation1"] = { type = "Spawn", tier = 1, "Determination has 20% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3403, 4072 }, level = 24, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation2"] = { type = "Spawn", tier = 2, "Determination has 25% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3403, 4072 }, level = 56, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation3"] = { type = "Spawn", tier = 3, "Determination has 30% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3403, 4072 }, level = 82, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation1"] = { type = "Spawn", tier = 1, "Discipline has 20% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3404, 4073 }, level = 24, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation2"] = { type = "Spawn", tier = 2, "Discipline has 25% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3404, 4073 }, level = 56, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation3"] = { type = "Spawn", tier = 3, "Discipline has 30% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3404, 4073 }, level = 82, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Grace has 20% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3399, 4079 }, level = 24, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Grace has 25% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3399, 4079 }, level = 56, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Grace has 30% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3399, 4079 }, level = 82, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation1"] = { type = "Spawn", tier = 1, "Zealotry has 20% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10884, 10887 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2"] = { type = "Spawn", tier = 2, "Zealotry has 25% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10884, 10887 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation3"] = { type = "Spawn", tier = 3, "Zealotry has 30% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10884, 10887 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Zealotry has 40% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10884, 10887 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Zealotry has 50% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10884, 10887 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Zealotry has 60% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10884, 10887 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation1"] = { type = "Spawn", tier = 1, "Pride has 20% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9853, 9859 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2"] = { type = "Spawn", tier = 2, "Pride has 25% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9853, 9859 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation3"] = { type = "Spawn", tier = 3, "Pride has 30% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9853, 9859 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Pride has 40% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9853, 9859 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Pride has 50% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9853, 9859 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Pride has 60% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9853, 9859 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Fire has 20% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3394, 4075 }, level = 24, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Fire has 25% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3394, 4075 }, level = 56, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Fire has 30% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3394, 4075 }, level = 82, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Ice has 20% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3395, 4071 }, level = 24, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Ice has 25% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3395, 4071 }, level = 56, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Ice has 30% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3395, 4071 }, level = 82, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Lightning has 20% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3396, 4076 }, level = 24, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Lightning has 25% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3396, 4076 }, level = 56, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Lightning has 30% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3396, 4076 }, level = 82, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Elements has 20% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3393, 4074 }, level = 24, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Elements has 25% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3393, 4074 }, level = 56, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Elements has 30% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3393, 4074 }, level = 82, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Malevolence has 20% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6248, 6249 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Malevolence has 25% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6248, 6249 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Malevolence has 30% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6248, 6249 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Malevolence has 40% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6248, 6249 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Malevolence has 50% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6248, 6249 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Malevolence has 60% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6248, 6249 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation1"] = { type = "Spawn", tier = 1, "Haste has 20% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3400, 4080 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2"] = { type = "Spawn", tier = 2, "Haste has 25% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3400, 4080 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation3"] = { type = "Spawn", tier = 3, "Haste has 30% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3400, 4080 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Haste has 40% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3400, 4080 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Haste has 50% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3400, 4080 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Haste has 60% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3400, 4080 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation1"] = { type = "Spawn", tier = 1, "Precision has 20% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3401, 9850 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2"] = { type = "Spawn", tier = 2, "Precision has 25% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3401, 9850 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation3"] = { type = "Spawn", tier = 3, "Precision has 30% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3401, 9850 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Precision has 40% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3401, 9850 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Precision has 50% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3401, 9850 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Precision has 60% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3401, 9850 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Banner Skills have 20% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3398, 5023 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Banner Skills have 25% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3398, 5023 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Banner Skills have 30% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3398, 5023 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Banner Skills have 40% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3398, 5023 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Banner Skills have 50% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3398, 5023 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Banner Skills have 60% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3398, 5023 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellDamageSuppressed1"] = { type = "Spawn", tier = 1, "-5% to amount of Suppressed Spell Damage Prevented", "+20% chance to Suppress Spell Damage", statOrder = { 1165, 1167 }, level = 15, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellDamageSuppressed2"] = { type = "Spawn", tier = 2, "-5% to amount of Suppressed Spell Damage Prevented", "+25% chance to Suppress Spell Damage", statOrder = { 1165, 1167 }, level = 60, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageSuppressedSpellSuppression1"] = { type = "Spawn", tier = 1, "Prevent +2% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1165, 1167 }, level = 15, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageSuppressedSpellSuppression2"] = { type = "Spawn", tier = 2, "Prevent +3% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1165, 1167 }, level = 60, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently1"] = { type = "Spawn", tier = 1, "+20% chance to Suppress Spell Damage", "-15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1167, 10332 }, level = 5, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently2"] = { type = "Spawn", tier = 2, "+25% chance to Suppress Spell Damage", "-18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1167, 10332 }, level = 55, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLifeOnSupress1"] = { type = "Spawn", tier = 1, "Recover 2% of Life when you Suppress Spell Damage", statOrder = { 9987 }, level = 15, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLifeOnSupress2"] = { type = "Spawn", tier = 2, "Recover 3% of Life when you Suppress Spell Damage", statOrder = { 9987 }, level = 60, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLifeOnBlock1"] = { type = "Spawn", tier = 1, "Recover 30 Life when you Block", statOrder = { 1783 }, level = 1, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLifeOnBlock2"] = { type = "Spawn", tier = 2, "Recover 50 Life when you Block", statOrder = { 1783 }, level = 50, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldOnBlock1"] = { type = "Spawn", tier = 1, "Gain 30 Energy Shield when you Block", statOrder = { 1782 }, level = 1, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldOnBlock2"] = { type = "Spawn", tier = 2, "Gain 50 Energy Shield when you Block", statOrder = { 1782 }, level = 50, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeManaOnBlock1"] = { type = "Spawn", tier = 1, "30 Mana gained when you Block", statOrder = { 1781 }, level = 1, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeManaOnBlock2"] = { type = "Spawn", tier = 2, "50 Mana gained when you Block", statOrder = { 1781 }, level = 50, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeChillOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 1, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeChillOnBlock2"] = { type = "Spawn", tier = 2, "Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 50, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeShockOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 1, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeShockOnBlock2"] = { type = "Spawn", tier = 2, "Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 50, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeScorchOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Scorch Enemies when you Block their Damage", statOrder = { 5791 }, level = 30, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeScorchOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies when you Block their Damage", statOrder = { 5791 }, level = 75, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeBrittleOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5786 }, level = 30, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeBrittleOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5786 }, level = 75, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeSapOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Sap Enemies when you Block their Damage", statOrder = { 5790 }, level = 30, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeSapOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies when you Block their Damage", statOrder = { 5790 }, level = 75, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeMaxBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 2011, 5049 }, level = 45, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeMaxBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 2011, 5049 }, level = 82, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeMaxSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 2012, 5049 }, level = 75, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeMaxSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 2012, 5049 }, level = 82, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAvoidIgniteChanceToBeShocked1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1869, 2983 }, level = 1, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidIgniteChanceToBeShocked2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1869, 2983 }, level = 60, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidFreezeChanceToBeIgnited1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1868, 2982 }, level = 1, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidFreezeChanceToBeIgnited2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1868, 2982 }, level = 60, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidShockChanceToBeFrozen1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1871, 2981 }, level = 1, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidShockChanceToBeFrozen2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1871, 2981 }, level = 60, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidBleedChanceToBePoisoned1"] = { type = "Spawn", tier = 1, "+20% chance to be Poisoned", "60% chance to Avoid Bleeding", statOrder = { 3406, 4252 }, level = 12, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidBleedChanceToBePoisoned2"] = { type = "Spawn", tier = 2, "+20% chance to be Poisoned", "100% chance to Avoid Bleeding", statOrder = { 3406, 4252 }, level = 65, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidPoisonBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1872, 10114 }, level = 12, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidPoisonBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1872, 10114 }, level = 65, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf1"] = { type = "Spawn", tier = 1, "Corrupted Blood cannot be inflicted on you", "50% increased Effect of Exposure on you", statOrder = { 5483, 6609 }, level = 40, group = "WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeExposureImmunityChanceToBeMaimed1"] = { type = "Spawn", tier = 1, "Attack Hits have 20% chance to Maim you for 4 seconds", "Immune to Exposure", statOrder = { 5719, 7328 }, level = 40, group = "WeaponTreeExposureImmunityChanceToBeMaimed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf1"] = { type = "Spawn", tier = 1, "20% reduced Damage per Curse on you", "30% reduced Effect of Curses on you", statOrder = { 1239, 2193 }, level = 28, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf2"] = { type = "Spawn", tier = 2, "20% reduced Damage per Curse on you", "40% reduced Effect of Curses on you", statOrder = { 1239, 2193 }, level = 73, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "10% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1239, 2193 }, level = 28, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1239, 2193 }, level = 73, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeStunThresholdStunDurationOnSelf1"] = { type = "Spawn", tier = 1, "100% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3308, 4210 }, level = 1, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStunThresholdStunDurationOnSelf2"] = { type = "Spawn", tier = 2, "150% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3308, 4210 }, level = 60, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStunRecoveryReducedStunThreshold1"] = { type = "Spawn", tier = 1, "100% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1925, 3308 }, level = 1, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStunRecoveryReducedStunThreshold2"] = { type = "Spawn", tier = 2, "150% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1925, 3308 }, level = 60, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 30% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1535, 3164 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 40% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1535, 3164 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 50% reduced Critical Strike Chance against you", statOrder = { 1535, 3164 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 70% reduced Critical Strike Chance against you", statOrder = { 1535, 3164 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% reduced Reflected Elemental Damage taken", "100% increased Reflected Physical Damage taken", statOrder = { 2736, 2737 }, level = 68, group = "WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% increased Reflected Elemental Damage taken", "100% reduced Reflected Physical Damage taken", statOrder = { 2736, 2737 }, level = 68, group = "WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDamageYouReflectGainedAsLife1"] = { type = "Spawn", tier = 1, "20% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2738 }, level = 1, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDamageYouReflectGainedAsLife2"] = { type = "Spawn", tier = 2, "30% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2738 }, level = 50, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "12% increased Life Recovery rate", statOrder = { 1593, 1601 }, level = 1, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "16% increased Life Recovery rate", statOrder = { 1593, 1601 }, level = 72, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield1"] = { type = "Spawn", tier = 1, "25% reduced Energy Shield", "12% increased Energy Shield Recovery rate", statOrder = { 1582, 1590 }, level = 1, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield2"] = { type = "Spawn", tier = 2, "25% reduced Energy Shield", "16% increased Energy Shield Recovery rate", statOrder = { 1582, 1590 }, level = 72, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeManaRecoveryRateReducedMaximumMana1"] = { type = "Spawn", tier = 1, "10% reduced maximum Mana", "12% increased Mana Recovery rate", statOrder = { 1603, 1609 }, level = 1, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeManaRecoveryRateReducedMaximumMana2"] = { type = "Spawn", tier = 2, "10% reduced maximum Mana", "16% increased Mana Recovery rate", statOrder = { 1603, 1609 }, level = 72, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLifeRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Life per second while on Low Life", statOrder = { 1968 }, level = 1, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLifeRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Life per second while on Low Life", statOrder = { 1968 }, level = 50, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1824 }, level = 10, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Energy Shield per second while on Low Life", statOrder = { 1824 }, level = 80, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock1"] = { type = "Spawn", tier = 1, "-20% chance to Block Projectile Attack Damage", "+25% chance to Block Projectile Spell Damage", statOrder = { 2490, 5120 }, level = 1, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock2"] = { type = "Spawn", tier = 2, "-20% chance to Block Projectile Attack Damage", "+30% chance to Block Projectile Spell Damage", statOrder = { 2490, 5120 }, level = 65, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock1"] = { type = "Spawn", tier = 1, "+25% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2490, 5120 }, level = 1, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock2"] = { type = "Spawn", tier = 2, "+30% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2490, 5120 }, level = 62, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect1"] = { type = "Spawn", tier = 1, "30% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6437, 6836 }, level = 30, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect2"] = { type = "Spawn", tier = 2, "20% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6437, 6836 }, level = 76, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife1"] = { type = "Spawn", tier = 1, "Cannot be Stunned when on Low Life", "8% increased Damage taken while on Low Life", statOrder = { 2197, 6207 }, level = 1, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife2"] = { type = "Spawn", tier = 2, "Cannot be Stunned when on Low Life", "5% increased Damage taken while on Low Life", statOrder = { 2197, 6207 }, level = 76, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect1"] = { type = "Spawn", tier = 1, "100% chance to Avoid Elemental Ailments while on Consecrated Ground", "50% reduced Effect of Consecrated Ground you create", statOrder = { 3591, 5929 }, level = 40, group = "WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea1"] = { type = "Spawn", tier = 1, "50% reduced Consecrated Ground Area", "30% increased Effect of Consecrated Ground you create", statOrder = { 5927, 5929 }, level = 40, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea2"] = { type = "Spawn", tier = 2, "50% reduced Consecrated Ground Area", "50% increased Effect of Consecrated Ground you create", statOrder = { 5927, 5929 }, level = 80, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration1"] = { type = "Spawn", tier = 1, "Guard Skills have 60% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 7015, 7016 }, level = 15, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration2"] = { type = "Spawn", tier = 2, "Guard Skills have 80% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 7015, 7016 }, level = 65, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeDebuffTimePassed1"] = { type = "Spawn", tier = 1, "Debuffs on you expire 15% faster", statOrder = { 6238 }, level = 25, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeDebuffTimePassed2"] = { type = "Spawn", tier = 2, "Debuffs on you expire 25% faster", statOrder = { 6238 }, level = 78, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAvoidAilmentsFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "50% chance to avoid Ailments from Critical Strikes", statOrder = { 4984 }, level = 1, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAvoidAilmentsFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "75% chance to avoid Ailments from Critical Strikes", statOrder = { 4984 }, level = 70, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery1"] = { type = "Spawn", tier = 1, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 45% more Damage", statOrder = { 5972, 10744 }, level = 28, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery2"] = { type = "Spawn", tier = 2, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 60% more Damage", statOrder = { 5972, 10744 }, level = 75, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["WeaponTreeFortificationDurationMaximumFortification1"] = { type = "Spawn", tier = 1, "150% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2288, 5097 }, level = 35, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeFortificationDurationMaximumFortification2"] = { type = "Spawn", tier = 2, "200% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2288, 5097 }, level = 80, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +1 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6254, 9287 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6254, 9287 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6254, 9287 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +4 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6254, 9287 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 10% increased Maximum Life", statOrder = { 6254, 9287 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 15% increased Maximum Life", statOrder = { 6254, 9287 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 6254, 9287 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 30% increased Maximum Life", statOrder = { 6254, 9287 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration1"] = { type = "Spawn", tier = 1, "10% reduced Minion Duration", "Minions have 15% increased Cooldown Recovery Rate", statOrder = { 5098, 9420 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2"] = { type = "Spawn", tier = 2, "10% reduced Minion Duration", "Minions have 25% increased Cooldown Recovery Rate", statOrder = { 5098, 9420 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h1"] = { type = "Spawn", tier = 1, "20% reduced Minion Duration", "Minions have 30% increased Cooldown Recovery Rate", statOrder = { 5098, 9420 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h2"] = { type = "Spawn", tier = 2, "20% reduced Minion Duration", "Minions have 50% increased Cooldown Recovery Rate", statOrder = { 5098, 9420 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 5098, 9420 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 5098, 9420 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 5098, 9420 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 5098, 9420 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage1"] = { type = "Spawn", tier = 1, "Minions deal 15% reduced Damage", "Minions have 20% increased Area of Effect", statOrder = { 1996, 3058 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% reduced Damage", "Minions have 30% increased Area of Effect", statOrder = { 1996, 3058 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 30% reduced Damage", "Minions have 40% increased Area of Effect", statOrder = { 1996, 3058 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 30% reduced Damage", "Minions have 60% increased Area of Effect", statOrder = { 1996, 3058 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have +12% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2946, 2947 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have +16% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2946, 2947 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have +25% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2946, 2947 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have +35% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2946, 2947 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions have +17% to Chaos Resistance", statOrder = { 2946, 2947 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions have +23% to Chaos Resistance", statOrder = { 2946, 2947 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions have +37% to Chaos Resistance", statOrder = { 2946, 2947 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions have +47% to Chaos Resistance", statOrder = { 2946, 2947 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionArmour1"] = { type = "Spawn", tier = 1, "Minions have +350 to Armour", statOrder = { 2939 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionArmour2"] = { type = "Spawn", tier = 2, "Minions have +500 to Armour", statOrder = { 2939 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionArmour2h1"] = { type = "Spawn", tier = 1, "Minions have +700 to Armour", statOrder = { 2939 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionArmour2h2"] = { type = "Spawn", tier = 2, "Minions have +1000 to Armour", statOrder = { 2939 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have 20% increased Evasion Rating", statOrder = { 9436 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have 30% increased Evasion Rating", statOrder = { 9436 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 40% increased Evasion Rating", statOrder = { 9436 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 60% increased Evasion Rating", statOrder = { 9436 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion1"] = { type = "Spawn", tier = 1, "Minions have 15% reduced Evasion Rating", "Minions have +15% chance to Suppress Spell Damage", statOrder = { 9436, 9466 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2"] = { type = "Spawn", tier = 2, "Minions have 15% reduced Evasion Rating", "Minions have +25% chance to Suppress Spell Damage", statOrder = { 9436, 9466 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 30% reduced Evasion Rating", "Minions have +30% chance to Suppress Spell Damage", statOrder = { 9436, 9466 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 30% reduced Evasion Rating", "Minions have +50% chance to Suppress Spell Damage", statOrder = { 9436, 9466 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Life Recovery rate", "Minions have 20% increased maximum Life", statOrder = { 1788, 1789 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Life Recovery rate", "Minions have 30% increased maximum Life", statOrder = { 1788, 1789 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced Life Recovery rate", "Minions have 40% increased maximum Life", statOrder = { 1788, 1789 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced Life Recovery rate", "Minions have 60% increased maximum Life", statOrder = { 1788, 1789 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1788, 1789 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1788, 1789 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1788, 1789 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1788, 1789 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions gain 15% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2946, 9451 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2946, 9451 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions gain 30% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2946, 9451 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2946, 9451 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionMaximumElementalResistances1"] = { type = "Spawn", tier = 1, "Minions have +1% to all maximum Elemental Resistances", statOrder = { 9450 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMaximumElementalResistances2h1"] = { type = "Spawn", tier = 1, "Minions have +2% to all maximum Elemental Resistances", statOrder = { 9450 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Blind on Hit with Attacks", statOrder = { 9408 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Blind on Hit with Attacks", statOrder = { 9408 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Blind on Hit with Attacks", statOrder = { 9408 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Blind on Hit with Attacks", statOrder = { 9408 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Hinder Enemies on Hit with Spells", statOrder = { 9467 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Hinder Enemies on Hit with Spells", statOrder = { 9467 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Hinder Enemies on Hit with Spells", statOrder = { 9467 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Hinder Enemies on Hit with Spells", statOrder = { 9467 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Movement Speed", statOrder = { 1792 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 24% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 32% increased Movement Speed", statOrder = { 1792 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Projectile Speed", statOrder = { 9459 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Projectile Speed", statOrder = { 9459 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Projectile Speed", statOrder = { 9459 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Projectile Speed", statOrder = { 9459 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2516, 10114 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2516, 10114 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2516, 10114 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2516, 10114 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3209, 10123 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3209, 10123 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3209, 10123 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3209, 10123 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on you", "Minions have 8% chance to Ignite", statOrder = { 1898, 9416 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Ignite Duration on you", "Minions have 12% chance to Ignite", statOrder = { 1898, 9416 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Ignite Duration on you", "Minions have 16% chance to Ignite", statOrder = { 1898, 9416 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Ignite Duration on you", "Minions have 24% chance to Ignite", statOrder = { 1898, 9416 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on you", "Minions have 8% chance to Freeze", statOrder = { 1897, 9413 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Freeze Duration on you", "Minions have 12% chance to Freeze", statOrder = { 1897, 9413 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Freeze Duration on you", "Minions have 16% chance to Freeze", statOrder = { 1897, 9413 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Freeze Duration on you", "Minions have 24% chance to Freeze", statOrder = { 1897, 9413 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Shock Duration on you", "Minions have 8% chance to Shock", statOrder = { 1896, 9419 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Shock Duration on you", "Minions have 12% chance to Shock", statOrder = { 1896, 9419 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Shock Duration on you", "Minions have 16% chance to Shock", statOrder = { 1896, 9419 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Shock Duration on you", "Minions have 24% chance to Shock", statOrder = { 1896, 9419 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost1"] = { type = "Spawn", tier = 1, "Link Skills have 8% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7587, 7597 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2"] = { type = "Spawn", tier = 2, "Link Skills have 12% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7587, 7597 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h1"] = { type = "Spawn", tier = 1, "Link Skills have 16% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7587, 7597 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h2"] = { type = "Spawn", tier = 2, "Link Skills have 24% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7587, 7597 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect1"] = { type = "Spawn", tier = 1, "Link Skills have 20% reduced Buff Effect", "Link Skills Link to 1 additional random target", statOrder = { 7587, 7611 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect2h1"] = { type = "Spawn", tier = 1, "Link Skills have 30% reduced Buff Effect", "Link Skills Link to 2 additional random targets", statOrder = { 7587, 7611 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect1"] = { type = "Spawn", tier = 1, "Convocation has 25% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3913, 4059 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2"] = { type = "Spawn", tier = 2, "Convocation has 40% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3913, 4059 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h1"] = { type = "Spawn", tier = 1, "Convocation has 50% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3913, 4059 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h2"] = { type = "Spawn", tier = 2, "Convocation has 80% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3913, 4059 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration1"] = { type = "Spawn", tier = 1, "10% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 4099, 9689 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2"] = { type = "Spawn", tier = 2, "15% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 4099, 9689 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2h1"] = { type = "Spawn", tier = 1, "20% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 4099, 9689 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2h2"] = { type = "Spawn", tier = 2, "30% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 4099, 9689 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect1"] = { type = "Spawn", tier = 1, "10% reduced effect of Offerings", "Offering Skills have 25% increased Duration", statOrder = { 4099, 9689 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2"] = { type = "Spawn", tier = 2, "10% reduced effect of Offerings", "Offering Skills have 40% increased Duration", statOrder = { 4099, 9689 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced effect of Offerings", "Offering Skills have 50% increased Duration", statOrder = { 4099, 9689 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced effect of Offerings", "Offering Skills have 80% increased Duration", statOrder = { 4099, 9689 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1792, 3417 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1792, 3417 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1792, 3417 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1792, 3417 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 10% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2947, 3415 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 15% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2947, 3415 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 20% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2947, 3415 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 30% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2947, 3415 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock1"] = { type = "Spawn", tier = 1, "Minions have +20% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2937, 2938 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2"] = { type = "Spawn", tier = 2, "Minions have +25% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2937, 2938 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2h1"] = { type = "Spawn", tier = 1, "Minions have +30% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2937, 2938 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2h2"] = { type = "Spawn", tier = 2, "Minions have +40% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2937, 2938 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock1"] = { type = "Spawn", tier = 1, "Minions have -10% Chance to Block Attack Damage", "Minions have +20% Chance to Block Spell Damage", statOrder = { 2937, 2938 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2"] = { type = "Spawn", tier = 2, "Minions have -10% Chance to Block Attack Damage", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2937, 2938 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2h1"] = { type = "Spawn", tier = 1, "Minions have -15% Chance to Block Attack Damage", "Minions have +30% Chance to Block Spell Damage", statOrder = { 2937, 2938 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2h2"] = { type = "Spawn", tier = 2, "Minions have -15% Chance to Block Attack Damage", "Minions have +40% Chance to Block Spell Damage", statOrder = { 2937, 2938 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced maximum Life", "Minions Recover 3% of their Life when they Block", statOrder = { 1789, 3095 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced maximum Life", "Minions Recover 4% of their Life when they Block", statOrder = { 1789, 3095 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced maximum Life", "Minions Recover 6% of their Life when they Block", statOrder = { 1789, 3095 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced maximum Life", "Minions Recover 8% of their Life when they Block", statOrder = { 1789, 3095 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeGolemsAllowedReducedGolemBuffEffect1"] = { type = "Spawn", tier = 1, "+1 to maximum number of Summoned Golems", "50% reduced Effect of Buffs granted by your Golems", statOrder = { 3726, 6988 }, level = 40, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeGolemsAllowedReducedGolemBuffEffect2h1"] = { type = "Spawn", tier = 1, "+2 to maximum number of Summoned Golems", "100% reduced Effect of Buffs granted by your Golems", statOrder = { 3726, 6988 }, level = 77, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeGolemBuffEffectReducedGolemsAllowed1"] = { type = "Spawn", tier = 1, "-1 to maximum number of Summoned Golems", "75% increased Effect of Buffs granted by your Golems", statOrder = { 3726, 6988 }, level = 40, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeGolemBuffEffectReducedGolemsAllowed2h1"] = { type = "Spawn", tier = 1, "-2 to maximum number of Summoned Golems", "150% increased Effect of Buffs granted by your Golems", statOrder = { 3726, 6988 }, level = 77, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeSupportManaLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 525 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportManaLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 525 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAdditionalAccuracy"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 491 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAdditionalAccuracy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 491 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArrogance"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 470 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArrogance2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 470 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFork"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 497 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFork2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 497 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToPoison"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 534 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToPoison2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 534 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifeLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 494 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifeLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 494 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMeleeSplash"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 482 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMeleeSplash2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 482 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFasterProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 493 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFasterProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 493 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportStun"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 490 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportStun2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 490 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIncreasedArea"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 233 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIncreasedArea2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 233 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportKnockback"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 513 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportKnockback2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 513 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMinionLife"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 515 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportMinionLife2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 515 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportMinionSpeed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 519 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportMinionSpeed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 519 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportLesserMultipleProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 516 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLesserMultipleProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 516 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBlind"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 481 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBlind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 481 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBlasphemy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 531 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBlasphemy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 531 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIronWill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 512 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIronWill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 512 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 511 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFasterCast2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 511 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToFlee"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 509 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToFlee2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 509 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportItemRarity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 331 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportItemRarity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 331 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToIgnite2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 254 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifeGainOnHit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 334 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifeGainOnHit2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 334 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportCullingStrike"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 264 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportCullingStrike2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 264 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPointBlank"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 364 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPointBlank2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 364 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIronGrip"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 329 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIronGrip2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 329 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChain"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 252 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChain2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 252 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportElementalArmy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 394 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportElementalArmy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 394 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEmpower"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 279 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEmpower2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 279 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportSlowerProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSlowerProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 387 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLessDuration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLessDuration2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 375 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnhance"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 281 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnhance2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 281 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnlighten"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 282 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnlighten2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 282 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 362 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPhysicalToLightning2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 362 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAdvancedTraps"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 400 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAdvancedTraps2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 400 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 318 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIgniteProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 318 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToBleed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 253 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToBleed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 253 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportDecay2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMaim"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 341 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMaim2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 341 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportOnslaught"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 354 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportOnslaught2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 354 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 235 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArcaneSurge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 235 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArrowNova"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 371 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSupportArrowNova2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 371 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPierce"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 520 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPierce2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 520 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportGenerosity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 506 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportGenerosity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 506 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFortify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 507 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFortify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 507 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 477 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportElementalProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 477 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportVolley"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 360 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportVolley2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 360 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 389 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSpellCascade2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 389 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAncestralCall"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 392 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAncestralCall2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 392 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 395 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportSummonGhostOnKill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 395 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportWitheringTouch"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 415 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportWitheringTouch2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 415 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 280 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnergyLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 280 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIntensify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportImpale"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 320 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportImpale2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 320 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportRage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 370 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportRage2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 370 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportShockwave"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportShockwave2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "staff", "mace", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFeedingFrenzy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 286 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportFeedingFrenzy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 286 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportPredator"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 268 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportPredator2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 268 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportInfernalLegion"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportInfernalLegion2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportSwiftAssembly"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 396 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSwiftAssembly2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 396 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSecondWind"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSecondWind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 385 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportUrgentOrders"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 407 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportUrgentOrders2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 407 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSwiftBrand2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportImpendingDoom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { "support", "gem" }, }, + ["WeaponTreeSupportImpendingDoom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { "support", "gem" }, }, + ["WeaponTreeSupportLifetap"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 335 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifetap2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 335 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBehead"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 240 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBehead2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 240 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportDivineBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 237 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportDivineBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 237 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEternalBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 283 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEternalBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 283 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 355 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportOvercharge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 355 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportCursedGround"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 266 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportCursedGround2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 266 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportHexBloom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 314 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportHexBloom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 314 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 363 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPinpoint2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 363 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSkillTornadoShotSplitArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot", statOrder = { 5551 }, level = 1, group = "WeaponTreeSkillTornadoShotSplitArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillMirrorArrowBlinkArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow", "Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow", statOrder = { 5528, 5534 }, level = 1, group = "WeaponTreeSkillMirrorArrowBlinkArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCleaveReave"] = { type = "Spawn", tier = 1, "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave", statOrder = { 5550 }, level = 1, group = "WeaponTreeSkillCleaveReave", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "dagger", "claw", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBodySwapDetonateDead"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead", statOrder = { 5529 }, level = 1, group = "WeaponTreeSkillBodySwapDetonateDead", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillGlacialCascadeIceNova"] = { type = "Spawn", tier = 1, "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast", statOrder = { 5533 }, level = 1, group = "WeaponTreeSkillGlacialCascadeIceNova", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillLaceratePerforate"] = { type = "Spawn", tier = 1, "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate", statOrder = { 5549 }, level = 1, group = "WeaponTreeSkillLaceratePerforate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillStormBurstDivineIre"] = { type = "Spawn", tier = 1, "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire", statOrder = { 5531 }, level = 1, group = "WeaponTreeSkillStormBurstDivineIre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillHeavyStrikeBoneshatter"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter", statOrder = { 5530 }, level = 1, group = "WeaponTreeSkillHeavyStrikeBoneshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "staff", "sceptre", "mace", "axe", "shield", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBladeFlurryChargedDash"] = { type = "Spawn", tier = 1, "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash", statOrder = { 5527 }, level = 1, group = "WeaponTreeSkillBladeFlurryChargedDash", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "sword", "dagger", "claw", "weapon", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBurningArrowExplosiveArrow"] = { type = "Spawn", tier = 1, "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen", statOrder = { 5453 }, level = 1, group = "WeaponTreeSkillBurningArrowExplosiveArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBlastRainArtilleryBallista"] = { type = "Spawn", tier = 1, "All Damage from Blast Rain and Artillery Ballista Hits can Poison", "25% chance for Poisons inflicted with Blast Rain or Artillery Ballista to deal 100% more Damage", statOrder = { 5168, 5169 }, level = 1, group = "WeaponTreeSkillBlastRainArtilleryBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillShrapnelBallistaSiegeBallista"] = { type = "Spawn", tier = 1, "50% increased Siege and Shrapnel Ballista attack speed per maximum Summoned Totem", "45% reduced Shrapnel Ballista attack speed per Shrapnel Ballista Totem", "45% reduced Siege Ballista attack speed per Siege Ballista Totem", statOrder = { 4330, 10171, 10177 }, level = 1, group = "WeaponTreeSkillShrapnelBallistaSiegeBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillLightningArrowIceShot"] = { type = "Spawn", tier = 1, "All Damage from Lightning Arrow and Ice Shot Hits can Ignite", "25% chance for Ignites inflicted with Lightning Arrow or Ice Shot to deal 100% more Damage", statOrder = { 7538, 7539 }, level = 1, group = "WeaponTreeSkillLightningArrowIceShot", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillGalvanicArrowStormRain"] = { type = "Spawn", tier = 1, "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine", statOrder = { 6945 }, level = 1, group = "WeaponTreeSkillGalvanicArrowStormRain", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillElementalHitWildStrike"] = { type = "Spawn", tier = 1, "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 6412, 9612 }, level = 1, group = "WeaponTreeSkillElementalHitWildStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "weapon", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBarrageFrenzy"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge", statOrder = { 5032 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBarrageFrenzy2H"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge", statOrder = { 5032 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillToxicRainRainofArrows"] = { type = "Spawn", tier = 1, "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding", "-60% of Toxic Rain Physical Damage Converted to Chaos Damage", statOrder = { 9954, 10563 }, level = 1, group = "WeaponTreeSkillToxicRainRainofArrows", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCausticArrowScourgeArrow"] = { type = "Spawn", tier = 1, "Caustic Arrow and Scourge Arrow fire 25% more projectiles", statOrder = { 5554 }, level = 1, group = "WeaponTreeSkillCausticArrowScourgeArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillPunctureEnsnaringArrow"] = { type = "Spawn", tier = 1, "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage", statOrder = { 9900 }, level = 1, group = "WeaponTreeSkillPunctureEnsnaringArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "dagger", "claw", "sword", "shield", "default", }, weightVal = { 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrostBladesLightningStrike"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "15% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrder = { 7572, 7573 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrostBladesLightningStrike2H"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "25% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrder = { 7572, 7573 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillViperStrikePestilentStrike"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge", statOrder = { 10684 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillViperStrikePestilentStrike2H"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge", statOrder = { 10684 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillDominatingBlowAbsolution"] = { type = "Spawn", tier = 1, "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value", statOrder = { 6345 }, level = 1, group = "WeaponTreeSkillDominatingBlowAbsolution", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "shield", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "weapon", "default", }, weightVal = { 0, 500, 1000, 1000, 250, 0 }, modTags = { }, }, + ["WeaponTreeSkillVolcanicFissureMoltenStrike"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration", statOrder = { 10681 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillVolcanicFissureMoltenStrike2H"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration", statOrder = { 10681 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillStaticStrikeSmite"] = { type = "Spawn", tier = 1, "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life", statOrder = { 10229 }, level = 1, group = "WeaponTreeSkillStaticStrikeSmite", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillVigilantStrikeFlickerStrike"] = { type = "Spawn", tier = 1, "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges", statOrder = { 10683 }, level = 1, group = "WeaponTreeSkillVigilantStrikeFlickerStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillDoubleStrikeDualStrike"] = { type = "Spawn", tier = 1, "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6349 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillDoubleStrikeDualStrike2H"] = { type = "Spawn", tier = 1, "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6349 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillIceCrashGlacialHammer"] = { type = "Spawn", tier = 1, "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze", statOrder = { 7285 }, level = 1, group = "WeaponTreeSkillIceCrashGlacialHammer", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 500, 1000, 1000, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillEarthquakeEarthshatter"] = { type = "Spawn", tier = 1, "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen", statOrder = { 6372 }, level = 1, group = "WeaponTreeSkillEarthquakeEarthshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillGroundSlamSunder"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage", statOrder = { 7010 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillGroundSlamSunder2H"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage", statOrder = { 7010 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillTectonicSlamInfernalBlow"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour", statOrder = { 10510 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillTectonicSlamInfernalBlow2H"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour", statOrder = { 10509 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow2H", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillRageVortexBladestorm"] = { type = "Spawn", tier = 1, "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved", statOrder = { 5164 }, level = 1, group = "WeaponTreeSkillRageVortexBladestorm", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillShieldCrushSpectralShieldThrow"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 30 to 50 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrder = { 10142, 10143, 10144 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillShieldCrushSpectralShieldThrowUniqueHelmet"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 15 to 25 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrder = { 10142, 10143, 10144 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCycloneSweep"] = { type = "Spawn", tier = 1, "Knockback direction is reversed with Cyclone and Holy Sweep", "Knock Enemies Back on hit with Cyclone and Holy Sweep", statOrder = { 6097, 6098 }, level = 1, group = "WeaponTreeSkillCycloneSweep", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCobraLashVenomGyre"] = { type = "Spawn", tier = 1, "25% chance for Bleeding inflicted with Cobra Lash or Venom Gyre to deal 100% more Damage", "Cobra Lash and Venom Gyre have -60% of Physical Damage Converted to Chaos Damage", statOrder = { 5873, 5874 }, level = 1, group = "WeaponTreeSkillCobraLashVenomGyre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "claw", "dagger", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoction"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 40% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrder = { 6732, 7987 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoctionUniqueHelmet"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 25% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrder = { 6732, 7987 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel"] = { type = "Spawn", tier = 1, "Recover 1% of Energy Shield per Steel Shard Consumed", statOrder = { 9996 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "shield", "default", }, weightVal = { 0, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel2H"] = { type = "Spawn", tier = 1, "Recover 2% of Energy Shield per Steel Shard Consumed", statOrder = { 9996 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSpectralHelixSpectralThrow"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 40% more and 40% less Projectile Speed at random", statOrder = { 10257, 10257.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSpectralHelixSpectralThrow2H"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 75% more and 75% less Projectile Speed at random", statOrder = { 10257, 10257.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillChainHookShieldCharge"] = { type = "Spawn", tier = 1, "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills", statOrder = { 5558 }, level = 1, group = "WeaponTreeSkillChainHookShieldCharge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillConsecratedPathPurifyingFlame"] = { type = "Spawn", tier = 1, "Consecrated Path and Purifying Flame create Profane Ground instead of Consecrated Ground", "100% of Consecrated Path and Purifying Flame Fire Damage Converted to Chaos Damage", statOrder = { 5940, 5941 }, level = 1, group = "WeaponTreeSkillConsecratedPathPurifyingFlame", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "bow", "claw", "weapon_can_roll_minion_modifiers", "attack_dagger", "shield", "weapon", "default", }, weightVal = { 1000, 0, 0, 0, 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrozenLegionGeneralsCry"] = { type = "Spawn", tier = 1, "100% more Frozen Legion and General's Cry Cooldown Recovery Rate", "Frozen Sweep deals 30% less Damage", "General's Cry has -2 to maximum number of Mirage Warriors", statOrder = { 6777, 6782, 6952 }, level = 1, group = "WeaponTreeSkillFrozenLegionGeneralsCry", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillAncestralProtectorAncestralWarchief"] = { type = "Spawn", tier = 1, "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4708 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillAncestralProtectorAncestralWarchief2H"] = { type = "Spawn", tier = 1, "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4708 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillKineticBoltKineticBlastPowerSiphon"] = { type = "Spawn", tier = 1, "Kinetic Bolt, Kinetic Blast and Power Siphon have 20% reduced Enemy Stun Threshold", "100% chance for Kinetic Bolt, Kinetic Blast and Power Siphon to double Stun Duration", statOrder = { 7418, 7419 }, level = 1, group = "WeaponTreeSkillKineticBoltKineticBlastPowerSiphon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "wand", "shield", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillExsanguinateReap"] = { type = "Spawn", tier = 1, "100% of Exsanguinate and Reap Physical Damage Converted to Fire Damage", "Exsanguinate debuffs deal Fire Damage per second instead of Physical Damage per second", "Reap debuffs deal Fire Damage per second instead of Physical Damage per second", statOrder = { 6613, 6615, 9975 }, level = 1, group = "WeaponTreeSkillExsanguinateReap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFirestormBladefall"] = { type = "Spawn", tier = 1, "15% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6683 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFirestormBladefall2H"] = { type = "Spawn", tier = 1, "25% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6683 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillEtherealKnives"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade", statOrder = { 6559 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillEtherealKnives2H"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade", statOrder = { 6559 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFireballRollingMagma"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 100% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6679, 6680 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFireballRollingMagma2H"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 200% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6679, 6680 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFreezingPulseEyeOfWinter"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "15% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrder = { 6757, 6758 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFreezingPulseEyeOfWinter2H"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "25% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrder = { 6757, 6758 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBladeVortexBladeBlast"] = { type = "Spawn", tier = 1, "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 5160, 5161 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBladeVortexBladeBlast2H"] = { type = "Spawn", tier = 1, "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 5160, 5161 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillShockNovaStormCall"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "15% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrder = { 10159, 10160 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillShockNovaStormCall2H"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "25% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrder = { 10159, 10160 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCreepingFrostColdSnap"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5993, 5994 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillCreepingFrostColdSnap2H"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5993, 5994 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillLightningConduitGalvanicField"] = { type = "Spawn", tier = 1, "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen", statOrder = { 7541 }, level = 1, group = "WeaponTreeSkillLightningConduitGalvanicField", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillManabondStormbind"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage", "50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8333, 8334 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillManabondStormbind2H"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage", "100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8333, 8334 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillIceSpearBallLightning"] = { type = "Spawn", tier = 1, "Ice Spear and Ball Lightning fire Projectiles in a circle", "Ice Spear and Ball Lightning Projectiles Return to you", statOrder = { 7298, 7299 }, level = 1, group = "WeaponTreeSkillIceSpearBallLightning", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFlameblastIncinerate"] = { type = "Spawn", tier = 1, "+0.2 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 2 additional Stages", "Incinerate starts with 2 additional Stages", statOrder = { 6710, 6711, 6712, 7363 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFlameblastIncinerate2H"] = { type = "Spawn", tier = 1, "+0.4 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 4 additional Stages", "Incinerate starts with 4 additional Stages", statOrder = { 6710, 6711, 6712, 7363 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillHexblastDoomBlast"] = { type = "Spawn", tier = 1, "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7234 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillHexblastDoomBlast2H"] = { type = "Spawn", tier = 1, "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7234 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillForbiddenRiteDarkPact"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Bargain gains Added Chaos Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 6744 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillForbiddenRiteDarkPact2H"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Bargain gains Added Chaos Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 6744 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBaneContagion"] = { type = "Spawn", tier = 1, "Enemies inflicted with Bane or Contagion are Chilled", statOrder = { 6455 }, level = 1, group = "WeaponTreeSkillBaneContagion", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillEssenceDrainSoulrend"] = { type = "Spawn", tier = 1, "25% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 2 additional Projectiles", statOrder = { 6557, 6558 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillEssenceDrainSoulrend2H"] = { type = "Spawn", tier = 1, "50% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 4 additional Projectiles", statOrder = { 6557, 6558 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSparkLightningTendrils"] = { type = "Spawn", tier = 1, "50% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 1 fewer Pulse between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrder = { 7575, 10246 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillSparkLightningTendrils2H"] = { type = "Spawn", tier = 1, "100% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 2 fewer Pulses between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrder = { 7575, 10246 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrostBombOrbofStorms"] = { type = "Spawn", tier = 1, "Frost Bombs gain 50% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 40% increased frequency", statOrder = { 6767, 9697 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrostBombOrbofStorms2H"] = { type = "Spawn", tier = 1, "Frost Bombs gain 75% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 60% increased frequency", statOrder = { 6767, 9697 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillWinterOrbHydrosphere"] = { type = "Spawn", tier = 1, "Trigger Level 20 Hydrosphere while you Channel Winter Orb", statOrder = { 5532 }, level = 1, group = "WeaponTreeSkillWinterOrbHydrosphere", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillWintertideBrandArcanistBrand"] = { type = "Spawn", tier = 1, "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage", statOrder = { 10778 }, level = 1, group = "WeaponTreeSkillWintertideBrandArcanistBrand", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillAnimateWeapon"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +1.5% to Critical Strike Chance", statOrder = { 4734 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillAnimateWeapon2H"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +2.5% to Critical Strike Chance", statOrder = { 4734 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem"] = { type = "Spawn", tier = 1, "Summoned Carrion Golems Impale on Hit if you have the same number of them as Summoned Chaos Golems", "Summoned Chaos Golems Impale on Hit if you have the same number of them as Summoned Stone Golems", "Summoned Stone Golems Impale on Hit if you have the same number of them as Summoned Carrion Golems", statOrder = { 5526, 5832, 10382 }, level = 1, group = "WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem"] = { type = "Spawn", tier = 1, "Maximum Life of Summoned Elemental Golems is Doubled", statOrder = { 6411 }, level = 1, group = "WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonHolyRelicSummonSkeletons"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "100% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrder = { 10195, 10196 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonHolyRelicSummonSkeletons2H"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "200% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrder = { 10195, 10196 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillRaiseSpectreRaiseZombie"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised", statOrder = { 10262 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillRaiseSpectreRaiseZombie2H"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised", statOrder = { 10262 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport"] = { type = "Spawn", tier = 1, "Maximum number of Summoned Raging Spirits is 3", "Maximum number of Summoned Phantasms is 3", "Summoned Raging Spirits have Diamond Shrine and Massive Shrine Buffs", "Summoned Phantasms have Diamond Shrine and Massive Shrine Buffs", statOrder = { 9672, 9674, 10457, 10468 }, level = 1, group = "WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFireTrapExplosiveTrap"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine", statOrder = { 6639 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFireTrapExplosiveTrap2H"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine", statOrder = { 6639 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillIceTrapLightningTrap"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 15% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrder = { 7282, 7283, 7284 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillIceTrapLightningTrap2H"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 25% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrder = { 7282, 7283, 7284 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use", statOrder = { 6713, 6714 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap2H"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses", statOrder = { 6713, 6714 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10401, 10402 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine2H"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10401, 10402 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBearTrapSiphoningTrap"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 5135 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBearTrapSiphoningTrap2H"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 5135 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillHolyFlameTotemShockwaveTotem"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 35% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrder = { 7274 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillHolyFlameTotemShockwaveTotem2H"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 60% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrder = { 7274 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6239 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem2H"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6239 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillRighteousFireScorchingRay"] = { type = "Spawn", tier = 1, "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 10090 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillRighteousFireScorchingRay2H"] = { type = "Spawn", tier = 1, "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 10090 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBlightWither"] = { type = "Spawn", tier = 1, "Blight has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrder = { 5189, 10779 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBlightWither2H"] = { type = "Spawn", tier = 1, "Blight has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrder = { 5189, 10779 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillVoltaxicBurstDischarge"] = { type = "Spawn", tier = 1, "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you", statOrder = { 6268 }, level = 1, group = "WeaponTreeSkillVoltaxicBurstDischarge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillStormArmageddonBrandSummonReaper"] = { type = "Spawn", tier = 1, "Storm and Armageddon Brands can be attached to your Summoned Reaper", statOrder = { 10383 }, level = 1, group = "WeaponTreeSkillStormArmageddonBrandSummonReaper", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillArcCracklingLance"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "15% increased Cost of Arc and Crackling Lance", statOrder = { 4743, 4744 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillArcCracklingLance2H"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "25% increased Cost of Arc and Crackling Lance", statOrder = { 4743, 4744 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillAnimateGuardian"] = { type = "Spawn", tier = 1, "50% increased Effect of Link Buffs on Animated Guardian", "Link Skills can target Animated Guardian", statOrder = { 7584, 7601 }, level = 1, group = "WeaponTreeSkillAnimateGuardian", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBlazingSalvoFlameWall"] = { type = "Spawn", tier = 1, "Blazing Salvo Projectiles Fork when they pass through a Flame Wall", statOrder = { 5172 }, level = 1, group = "WeaponTreeSkillBlazingSalvoFlameWall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillVolatileDeadCremation"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity", statOrder = { 10696 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillVolatileDeadCremation2H"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity", statOrder = { 10696 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillWaveofConviction"] = { type = "Spawn", tier = 1, "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9905 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillWaveofConviction2H"] = { type = "Spawn", tier = 1, "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9905 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillVortexFrostbolt"] = { type = "Spawn", tier = 1, "+15% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10707 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillVortexFrostbolt2H"] = { type = "Spawn", tier = 1, "+25% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10707 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSellPriceMagmaticOre"] = { type = "Spawn", tier = 1, "Item sells for an additional Magmatic Ore", statOrder = { 10753 }, level = 50, group = "WeaponTreeSellPriceMagmaticOre", nodeType = "SellBonus", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 1275, 1275, 938, 750 }, modTags = { }, }, + ["WeaponTreeSellNodeScouringOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Orbs of Scouring", statOrder = { 10764 }, level = 50, group = "WeaponTreeSellNodeScouringOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, + ["WeaponTreeSellNodeScouringOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Orbs of Scouring", statOrder = { 10764 }, level = 78, group = "WeaponTreeSellNodeScouringOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, + ["WeaponTreeSellNodeChaosOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Chaos Orbs", statOrder = { 10749 }, level = 50, group = "WeaponTreeSellNodeChaosOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 408, 408, 300, 240 }, modTags = { }, }, + ["WeaponTreeSellNodeChaosOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Chaos Orbs", statOrder = { 10749 }, level = 78, group = "WeaponTreeSellNodeChaosOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 204, 204, 150, 120 }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfRegret"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Orbs of Regret", statOrder = { 10761 }, level = 50, group = "WeaponTreeSellNodeOrbOfRegret", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfRegretHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Orbs of Regret", statOrder = { 10761 }, level = 78, group = "WeaponTreeSellNodeOrbOfRegretHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, + ["WeaponTreeSellNodeRegalOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Regal Orbs", statOrder = { 10762 }, level = 50, group = "WeaponTreeSellNodeRegalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 102, 102, 75, 60 }, modTags = { }, }, + ["WeaponTreeSellNodeRegalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Regal Orbs", statOrder = { 10762 }, level = 78, group = "WeaponTreeSellNodeRegalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 51, 51, 38, 30 }, modTags = { }, }, + ["WeaponTreeSellNodeVaalOrb"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Vaal Orbs", statOrder = { 10765 }, level = 50, group = "WeaponTreeSellNodeVaalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, + ["WeaponTreeSellNodeVaalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Vaal Orbs", statOrder = { 10765 }, level = 78, group = "WeaponTreeSellNodeVaalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, + ["WeaponTreeSellNodeGemcutters"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Gemcutter's Prisms", statOrder = { 10756 }, level = 50, group = "WeaponTreeSellNodeGemcutters", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 92, 92, 68, 54 }, modTags = { }, }, + ["WeaponTreeSellNodeGemcuttersHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Gemcutter's Prisms", statOrder = { 10756 }, level = 78, group = "WeaponTreeSellNodeGemcuttersHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 46, 46, 34, 27 }, modTags = { }, }, + ["WeaponTreeSellNodeBlessedOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Blessed Orbs", statOrder = { 10748 }, level = 50, group = "WeaponTreeSellNodeBlessedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 136, 136, 100, 80 }, modTags = { }, }, + ["WeaponTreeSellNodeBlessedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Blessed Orbs", statOrder = { 10748 }, level = 78, group = "WeaponTreeSellNodeBlessedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, + ["WeaponTreeSellNodeAwakenedSextant"] = { type = "Spawn", tier = 1, "Item sells for an additional Cartography Scarab of every type", statOrder = { 10747 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextant", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 238, 238, 175, 140 }, modTags = { }, }, + ["WeaponTreeSellNodeAwakenedSextantHigh"] = { type = "Spawn", tier = 2, "Item sells for 2 additional Cartography Scarabs of every type", statOrder = { 10747 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextantHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 119, 119, 88, 70 }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfAnnulment"] = { type = "Spawn", tier = 1, "Item sells for an additional Orb of Annulment", statOrder = { 10760 }, level = 68, group = "WeaponTreeSellNodeOrbOfAnnulment", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfAnnulmentHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Orbs of Annulment", statOrder = { 10760 }, level = 78, group = "WeaponTreeSellNodeOrbOfAnnulmentHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 24, 24, 18, 14 }, modTags = { }, }, + ["WeaponTreeSellNodeExaltedOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Exalted Orb", statOrder = { 10752 }, level = 68, group = "WeaponTreeSellNodeExaltedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, + ["WeaponTreeSellNodeExaltedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Exalted Orbs", statOrder = { 10752 }, level = 78, group = "WeaponTreeSellNodeExaltedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, + ["WeaponTreeSellNodeDivineOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Divine Orb", statOrder = { 10751 }, level = 68, group = "WeaponTreeSellNodeDivineOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, + ["WeaponTreeSellNodeDivineOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Divine Orbs", statOrder = { 10751 }, level = 78, group = "WeaponTreeSellNodeDivineOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, + ["WeaponTreeSellNodeSacredOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Sacred Orb", statOrder = { 10763 }, level = 80, group = "WeaponTreeSellNodeSacredOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 9, 9, 6, 5 }, modTags = { }, }, + ["WeaponTreeSellNodeSacredOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Sacred Orbs", statOrder = { 10763 }, level = 84, group = "WeaponTreeSellNodeSacredOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 3, 3, 3, 2 }, modTags = { }, }, + ["WeaponTreeSellNodeIgneousGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Igneous Geode", statOrder = { 10757 }, level = 75, group = "WeaponTreeSellNodeIgneousGeode", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 2125, 2125, 1563, 1250 }, modTags = { }, }, + ["WeaponTreeSellNodeCrystallineGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Crystalline Geode", statOrder = { 10750 }, level = 84, group = "WeaponTreeSellNodeCrystallineGeode", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, + ["WeaponTreeSellNodeDouble"] = { type = "Spawn", tier = 1, "Crucible Passives that sell for items sell for twice as much", statOrder = { 10759 }, level = 84, group = "WeaponTreeSellNodeDouble", nodeType = "SellBonus", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, + ["WeaponTreeFishingLineStrength"] = { type = "Spawn", tier = 1, "30% increased Fishing Line Strength", statOrder = { 2878 }, level = 1, group = "WeaponTreeFishingLineStrength", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingQuantity"] = { type = "Spawn", tier = 1, "20% increased Quantity of Fish Caught", statOrder = { 2883 }, level = 1, group = "WeaponTreeFishingQuantity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingRarity"] = { type = "Spawn", tier = 1, "40% increased Rarity of Fish Caught", statOrder = { 2884 }, level = 1, group = "WeaponTreeFishingRarity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingPoolConsumption"] = { type = "Spawn", tier = 1, "20% increased Fishing Pool Consumption", statOrder = { 2879 }, level = 1, group = "WeaponTreeFishingPoolConsumption", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingExoticFish"] = { type = "Spawn", tier = 1, "You can catch Exotic Fish", statOrder = { 2888 }, level = 1, group = "WeaponTreeFishingExoticFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingBiteSensitivity"] = { type = "Spawn", tier = 1, "50% increased Fish Bite Sensitivity", statOrder = { 3619 }, level = 1, group = "WeaponTreeFishingBiteSensitivity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingReelStability"] = { type = "Spawn", tier = 1, "100% increased Reeling Stability", statOrder = { 6701 }, level = 1, group = "WeaponTreeFishingReelStability", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingChanceToCatchBoots"] = { type = "Spawn", tier = 1, "25% reduced chance to catch Boots", statOrder = { 6691 }, level = 1, group = "WeaponTreeFishingChanceToCatchBoots", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingChanceToCatchDivineOrb"] = { type = "Spawn", tier = 1, "5% increased chance to catch a Divine Orb", statOrder = { 6692 }, level = 1, group = "WeaponTreeFishingChanceToCatchDivineOrb", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingCanCatchDivineFish"] = { type = "Spawn", tier = 1, "You can catch Divine Fish", statOrder = { 6690 }, level = 1, group = "WeaponTreeFishingCanCatchDivineFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingGhastlyFishermanCannotSpawn"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman cannot spawn", statOrder = { 6695 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanCannotSpawn", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingGhastlyFishermanSpawnsBehindYou"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman always appears behind you", statOrder = { 6696 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanSpawnsBehindYou", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingTasalioIrePerFishCaught"] = { type = "Spawn", tier = 1, "20% reduced Tasalio's Ire per Fish caught", statOrder = { 6702 }, level = 1, group = "WeaponTreeFishingTasalioIrePerFishCaught", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingValakoAidPerStormyDay"] = { type = "Spawn", tier = 1, "20% increased Valako's Aid per Stormy Day", statOrder = { 6703 }, level = 1, group = "WeaponTreeFishingValakoAidPerStormyDay", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingBestiaryLuresAtFishingHoles"] = { type = "Spawn", tier = 1, "Can use Bestiary Lures at Fishing Holes", statOrder = { 6689 }, level = 1, group = "WeaponTreeFishingBestiaryLuresAtFishingHoles", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingCorruptedFishCleansedChance"] = { type = "Spawn", tier = 1, "Corrupted Fish have 10% chance to be Cleansed", statOrder = { 6693 }, level = 1, group = "WeaponTreeFishingCorruptedFishCleansedChance", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingKrillsonAffectionPerFishGifted"] = { type = "Spawn", tier = 1, "23% increased Krillson Affection per Fish Gifted", statOrder = { 6697 }, level = 1, group = "WeaponTreeFishingKrillsonAffectionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingLifeOfFishWithThisRod"] = { type = "Spawn", tier = 1, "40% increased Life of Fish caught with this Fishing Rod", statOrder = { 6698 }, level = 1, group = "WeaponTreeFishingLifeOfFishWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingFishAlwaysTellTruthWithThisRod"] = { type = "Spawn", tier = 1, "Fish caught with this Fishing Rod will always tell the truth", statOrder = { 6694 }, level = 1, group = "WeaponTreeFishingFishAlwaysTellTruthWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingWishPerFish"] = { type = "Spawn", tier = 1, "+3 Wishes per Ancient Fish caught", statOrder = { 6705 }, level = 1, group = "WeaponTreeFishingWishPerFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingWishEffectOfAncientFish"] = { type = "Spawn", tier = 1, "50% increased effect of Wishes granted by Ancient Fish", statOrder = { 6704 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingMagmaticFishAreCooked"] = { type = "Spawn", tier = 1, "Fish caught from Magmatic Fishing Holes are already Cooked", statOrder = { 6699 }, level = 1, group = "WeaponTreeFishingMagmaticFishAreCooked", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingMoltenOneConfusionPerFishGifted"] = { type = "Spawn", tier = 1, "15% increased Molten One confusion per Fish Gifted", statOrder = { 6700 }, level = 1, group = "WeaponTreeFishingMoltenOneConfusionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Arcane Surge", statOrder = { 235 }, level = 1, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Combustion", statOrder = { 254 }, level = 1, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Decay", statOrder = { 269 }, level = 1, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Proliferation", statOrder = { 477 }, level = 1, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Energy Leech", statOrder = { 280 }, level = 1, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Faster Casting", statOrder = { 511 }, level = 1, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ignite Proliferation", statOrder = { 318 }, level = 1, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Intensify", statOrder = { 390 }, level = 1, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Overcharge", statOrder = { 355 }, level = 1, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Physical To Lightning", statOrder = { 362 }, level = 1, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Pinpoint", statOrder = { 363 }, level = 1, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Cascade", statOrder = { 389 }, level = 1, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Summon Phantasm", statOrder = { 395 }, level = 1, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swiftbrand", statOrder = { 397 }, level = 1, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedChaos"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Chaos Damage", statOrder = { 469 }, level = 1, group = "WeaponTreeSupportAddedChaos", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedCold"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Cold Damage", statOrder = { 529 }, level = 1, group = "WeaponTreeSupportAddedCold", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 478 }, level = 1, group = "WeaponTreeSupportAddedLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportArchmage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Archmage", statOrder = { 236 }, level = 1, group = "WeaponTreeSupportArchmage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportBonechill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Bonechill", statOrder = { 244 }, level = 1, group = "WeaponTreeSupportBonechill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportConcentratedEffect"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Concentrated Effect", statOrder = { 464 }, level = 1, group = "WeaponTreeSupportConcentratedEffect", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportControlledDestruction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Controlled Destruction", statOrder = { 536 }, level = 1, group = "WeaponTreeSupportControlledDestruction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportEfficacy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Efficacy", statOrder = { 275 }, level = 1, group = "WeaponTreeSupportEfficacy", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalFocus"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Focus", statOrder = { 277 }, level = 1, group = "WeaponTreeSupportElementalFocus", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Penetration", statOrder = { 278 }, level = 1, group = "WeaponTreeSupportElementalPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportImmolate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 319 }, level = 1, group = "WeaponTreeSupportImmolate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIncreasedCriticalDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 30 Increased Critical Damage", statOrder = { 496 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIncreasedCriticalStrikes"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Increased Critical Strikes", statOrder = { 323 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalStrikes", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInfusedChannelling"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Infused Channelling", statOrder = { 393 }, level = 1, group = "WeaponTreeSupportInfusedChannelling", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInnervate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Innervate", statOrder = { 532 }, level = 1, group = "WeaponTreeSupportInnervate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportFirePenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Fire Penetration", statOrder = { 476 }, level = 1, group = "WeaponTreeSupportFirePenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportColdPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold Penetration", statOrder = { 524 }, level = 1, group = "WeaponTreeSupportColdPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportLightningPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Lightning Penetration", statOrder = { 336 }, level = 1, group = "WeaponTreeSupportLightningPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPowerChargeOnCrit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike", statOrder = { 366 }, level = 1, group = "WeaponTreeSupportPowerChargeOnCrit", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSpellEcho"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Echo", statOrder = { 351 }, level = 1, group = "WeaponTreeSupportSpellEcho", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportTrinity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Trinity", statOrder = { 402 }, level = 1, group = "WeaponTreeSupportTrinity", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportUnboundAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unbound Ailments", statOrder = { 403 }, level = 1, group = "WeaponTreeSupportUnboundAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportUnleash"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unleash", statOrder = { 406 }, level = 1, group = "WeaponTreeSupportUnleash", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportBurningDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Burning Damage", statOrder = { 322 }, level = 1, group = "WeaponTreeSupportBurningDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportColdToFire"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 474 }, level = 1, group = "WeaponTreeSupportColdToFire", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInspiration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Inspiration", statOrder = { 505 }, level = 1, group = "WeaponTreeSupportInspiration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIceBite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ice Bite", statOrder = { 523 }, level = 1, group = "WeaponTreeSupportIceBite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportCriticalStrikeAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Critical Strike Affliction", statOrder = { 365 }, level = 1, group = "WeaponTreeSupportCriticalStrikeAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportDeadlyAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Deadly Ailments", statOrder = { 267 }, level = 1, group = "WeaponTreeSupportDeadlyAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportHypothermia"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Hypothermia", statOrder = { 522 }, level = 1, group = "WeaponTreeSupportHypothermia", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSwiftAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swift Affliction", statOrder = { 373 }, level = 1, group = "WeaponTreeSupportSwiftAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Data/EnchantmentHelmet.lua b/src/Data/EnchantmentHelmet.lua index 553011bcef..ef6fff730a 100644 --- a/src/Data/EnchantmentHelmet.lua +++ b/src/Data/EnchantmentHelmet.lua @@ -608,16 +608,16 @@ return { "15% increased Cyclone Attack Speed", }, }, - ["Dark Pact"] = { + ["Dark Bargain"] = { ["MERCILESS"] = { - "25% increased Dark Pact Damage", - "8% increased Dark Pact Cast Speed", - "16% increased Dark Pact Area of Effect", + "25% increased Dark Bargain Damage", + "8% increased Dark Bargain Cast Speed", + "16% increased Dark Bargain Area of Effect", }, ["ENDGAME"] = { - "40% increased Dark Pact Damage", - "12% increased Dark Pact Cast Speed", - "24% increased Dark Pact Area of Effect", + "40% increased Dark Bargain Damage", + "12% increased Dark Bargain Cast Speed", + "24% increased Dark Bargain Area of Effect", }, }, ["Dash"] = { @@ -2487,7 +2487,7 @@ return { ["MERCILESS"] = { "Stormbind has 16% increased Area of Effect", "Stormbind deals 25% increased Damage", - "Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second", + "Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 0.5 seconds", }, ["ENDGAME"] = { "Stormbind has 24% increased Area of Effect", diff --git a/src/Data/Essence.lua b/src/Data/Essence.lua index 0d7a4ac2ed..6e7adf817e 100644 --- a/src/Data/Essence.lua +++ b/src/Data/Essence.lua @@ -98,7 +98,7 @@ return { ["Metadata/Items/Currency/CurrencyEssenceDread3"] = { name = "Deafening Essence of Dread", type = 17, tier = 7, mods = { ["Amulet"] = "IncreasedPhysicalDamageReductionRatingPercentEssence7", ["Belt"] = "IncreasedPhysicalDamageReductionRatingEssence7", ["Body Armour"] = "LocalIncreasedPhysicalDamageReductionRatingEssence7", ["Boots"] = "LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7", ["Bow"] = "LocalIncreaseSocketedBowGemLevel2", ["Claw"] = "ImpaleEffectEssence3", ["Dagger"] = "ImpaleEffectEssence3", ["Gloves"] = "LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7", ["Helmet"] = "LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_", ["One Handed Axe"] = "ImpaleEffectEssence3", ["One Handed Mace"] = "ImpaleEffectEssence3", ["One Handed Sword"] = "ImpaleEffectEssence3", ["Quiver"] = "ProjectileSpeedEssence6", ["Ring"] = "IncreasedPhysicalDamageReductionRatingEssenceRing7", ["Sceptre"] = "ImpaleEffectEssence3", ["Shield"] = "LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____", ["Staff"] = "ImpaleEffectTwoHandEssence3_", ["Thrusting One Handed Sword"] = "ImpaleEffectEssence3", ["Two Handed Axe"] = "ImpaleEffectTwoHandEssence3_", ["Two Handed Mace"] = "ImpaleEffectTwoHandEssence3_", ["Two Handed Sword"] = "ImpaleEffectTwoHandEssence3_", ["Wand"] = "ProjectileSpeedEssence6", }, }, ["Metadata/Items/Currency/CurrencyEssenceScorn1"] = { name = "Screaming Essence of Scorn", type = 18, tier = 5, mods = { ["Amulet"] = "CriticalMultiplier4", ["Belt"] = "StunThresholdReduction4", ["Body Armour"] = "IncreasedStunThresholdEssence5", ["Boots"] = "StunAvoidanceEssence5", ["Bow"] = "SpellCriticalStrikeChance5", ["Claw"] = "SpellCriticalStrikeChance5", ["Dagger"] = "SpellCriticalStrikeChance5", ["Gloves"] = "StunAvoidanceEssence5", ["Helmet"] = "StunAvoidanceEssence5", ["One Handed Axe"] = "SpellCriticalStrikeChance5", ["One Handed Mace"] = "SpellCriticalStrikeChance5", ["One Handed Sword"] = "SpellCriticalStrikeChance5", ["Quiver"] = "CriticalMultiplier4", ["Ring"] = "CriticalMultiplierEssenceRing5_", ["Sceptre"] = "SpellCriticalStrikeChance5", ["Shield"] = "SpellCriticalStrikeChance5", ["Staff"] = "SpellCriticalStrikeChance5", ["Thrusting One Handed Sword"] = "SpellCriticalStrikeChance5", ["Two Handed Axe"] = "SpellCriticalStrikeChance5", ["Two Handed Mace"] = "SpellCriticalStrikeChance5", ["Two Handed Sword"] = "SpellCriticalStrikeChance5", ["Wand"] = "SpellCriticalStrikeChance5", }, }, ["Metadata/Items/Currency/CurrencyEssenceScorn2"] = { name = "Shrieking Essence of Scorn", type = 18, tier = 6, mods = { ["Amulet"] = "CriticalMultiplier5", ["Belt"] = "StunThresholdReduction5", ["Body Armour"] = "IncreasedStunThresholdEssence6", ["Boots"] = "StunAvoidanceEssence6", ["Bow"] = "SpellCriticalStrikeChance6_", ["Claw"] = "SpellCriticalStrikeChance6_", ["Dagger"] = "SpellCriticalStrikeChance6_", ["Gloves"] = "StunAvoidanceEssence6", ["Helmet"] = "StunAvoidanceEssence6", ["One Handed Axe"] = "SpellCriticalStrikeChance6_", ["One Handed Mace"] = "SpellCriticalStrikeChance6_", ["One Handed Sword"] = "SpellCriticalStrikeChance6_", ["Quiver"] = "CriticalMultiplier5", ["Ring"] = "CriticalMultiplierEssenceRing6_", ["Sceptre"] = "SpellCriticalStrikeChance6_", ["Shield"] = "SpellCriticalStrikeChance6_", ["Staff"] = "SpellCriticalStrikeChance6_", ["Thrusting One Handed Sword"] = "SpellCriticalStrikeChance6_", ["Two Handed Axe"] = "SpellCriticalStrikeChance6_", ["Two Handed Mace"] = "SpellCriticalStrikeChance6_", ["Two Handed Sword"] = "SpellCriticalStrikeChance6_", ["Wand"] = "SpellCriticalStrikeChance6_", }, }, - ["Metadata/Items/Currency/CurrencyEssenceScorn3"] = { name = "Deafening Essence of Scorn", type = 18, tier = 7, mods = { ["Amulet"] = "CriitcalMultiplierEssence7", ["Belt"] = "StunThresholdReductionEssence7", ["Body Armour"] = "IncreasedStunThresholdEssence7", ["Boots"] = "StunAvoidanceEssence7", ["Bow"] = "SpellCriticalStrikeChanceEssence7", ["Claw"] = "SpellCriticalStrikeChanceEssence7", ["Dagger"] = "SpellCriticalStrikeChanceEssence7", ["Gloves"] = "StunAvoidanceEssence7", ["Helmet"] = "StunAvoidanceEssence7", ["One Handed Axe"] = "SpellCriticalStrikeChanceEssence7", ["One Handed Mace"] = "SpellCriticalStrikeChanceEssence7", ["One Handed Sword"] = "SpellCriticalStrikeChanceEssence7", ["Quiver"] = "CriitcalMultiplierEssence7", ["Ring"] = "CriticalMultiplierEssenceRing7", ["Sceptre"] = "SpellCriticalStrikeChanceEssence7", ["Shield"] = "SpellCriticalStrikeChanceEssence7", ["Staff"] = "SpellCriticalStrikeChanceEssence7", ["Thrusting One Handed Sword"] = "SpellCriticalStrikeChanceEssence7", ["Two Handed Axe"] = "SpellCriticalStrikeChanceEssence7", ["Two Handed Mace"] = "SpellCriticalStrikeChanceEssence7", ["Two Handed Sword"] = "SpellCriticalStrikeChanceEssence7", ["Wand"] = "SpellCriticalStrikeChanceEssence7", }, }, + ["Metadata/Items/Currency/CurrencyEssenceScorn3"] = { name = "Deafening Essence of Scorn", type = 18, tier = 7, mods = { ["Amulet"] = "CriitcalMultiplierEssence7", ["Belt"] = "StunThresholdReductionEssence7", ["Body Armour"] = "IncreasedStunThresholdEssence7", ["Boots"] = "StunAvoidanceEssence7", ["Bow"] = "SpellCriticalStrikeChanceTwoHandEssence7", ["Claw"] = "SpellCriticalStrikeChanceEssence7", ["Dagger"] = "SpellCriticalStrikeChanceEssence7", ["Gloves"] = "StunAvoidanceEssence7", ["Helmet"] = "StunAvoidanceEssence7", ["One Handed Axe"] = "SpellCriticalStrikeChanceEssence7", ["One Handed Mace"] = "SpellCriticalStrikeChanceEssence7", ["One Handed Sword"] = "SpellCriticalStrikeChanceEssence7", ["Quiver"] = "CriitcalMultiplierEssence7", ["Ring"] = "CriticalMultiplierEssenceRing7", ["Sceptre"] = "SpellCriticalStrikeChanceEssence7", ["Shield"] = "SpellCriticalStrikeChanceEssence7", ["Staff"] = "SpellCriticalStrikeChanceTwoHandEssence7", ["Thrusting One Handed Sword"] = "SpellCriticalStrikeChanceEssence7", ["Two Handed Axe"] = "SpellCriticalStrikeChanceTwoHandEssence7", ["Two Handed Mace"] = "SpellCriticalStrikeChanceTwoHandEssence7", ["Two Handed Sword"] = "SpellCriticalStrikeChanceTwoHandEssence7", ["Wand"] = "SpellCriticalStrikeChanceEssence7", }, }, ["Metadata/Items/Currency/CurrencyEssenceEnvy1"] = { name = "Screaming Essence of Envy", type = 19, tier = 5, mods = { ["Amulet"] = "IncreasedChaosDamageEssence5", ["Belt"] = "ChaosResist4", ["Body Armour"] = "ChaosResist4", ["Boots"] = "ChaosResist4", ["Bow"] = "LocalAddedChaosDamageTwoHandEssence1", ["Claw"] = "LocalAddedChaosDamageEssence1_", ["Dagger"] = "LocalAddedChaosDamageEssence1_", ["Gloves"] = "ChaosResist4", ["Helmet"] = "ChaosResist4", ["One Handed Axe"] = "LocalAddedChaosDamageEssence1_", ["One Handed Mace"] = "LocalAddedChaosDamageEssence1_", ["One Handed Sword"] = "LocalAddedChaosDamageEssence1_", ["Quiver"] = "QuiverAddedChaosEssence1_", ["Ring"] = "IncreasedChaosDamageEssence5", ["Sceptre"] = "LocalAddedChaosDamageEssence1_", ["Shield"] = "ChaosResist4", ["Staff"] = "LocalAddedChaosDamageTwoHandEssence1", ["Thrusting One Handed Sword"] = "LocalAddedChaosDamageEssence1_", ["Two Handed Axe"] = "LocalAddedChaosDamageTwoHandEssence1", ["Two Handed Mace"] = "LocalAddedChaosDamageTwoHandEssence1", ["Two Handed Sword"] = "LocalAddedChaosDamageTwoHandEssence1", ["Wand"] = "LocalAddedChaosDamageEssence1_", }, }, ["Metadata/Items/Currency/CurrencyEssenceEnvy2"] = { name = "Shrieking Essence of Envy", type = 19, tier = 6, mods = { ["Amulet"] = "IncreasedChaosDamageEssence6", ["Belt"] = "ChaosResist5", ["Body Armour"] = "ChaosResist5", ["Boots"] = "ChaosResist5", ["Bow"] = "LocalAddedChaosDamageTwoHandEssence2", ["Claw"] = "LocalAddedChaosDamageEssence2__", ["Dagger"] = "LocalAddedChaosDamageEssence2__", ["Gloves"] = "ChaosResist5", ["Helmet"] = "ChaosResist5", ["One Handed Axe"] = "LocalAddedChaosDamageEssence2__", ["One Handed Mace"] = "LocalAddedChaosDamageEssence2__", ["One Handed Sword"] = "LocalAddedChaosDamageEssence2__", ["Quiver"] = "QuiverAddedChaosEssence2_", ["Ring"] = "IncreasedChaosDamageEssence6", ["Sceptre"] = "LocalAddedChaosDamageEssence2__", ["Shield"] = "ChaosResist5", ["Staff"] = "LocalAddedChaosDamageTwoHandEssence2", ["Thrusting One Handed Sword"] = "LocalAddedChaosDamageEssence2__", ["Two Handed Axe"] = "LocalAddedChaosDamageTwoHandEssence2", ["Two Handed Mace"] = "LocalAddedChaosDamageTwoHandEssence2", ["Two Handed Sword"] = "LocalAddedChaosDamageTwoHandEssence2", ["Wand"] = "LocalAddedChaosDamageEssence2__", }, }, ["Metadata/Items/Currency/CurrencyEssenceEnvy3"] = { name = "Deafening Essence of Envy", type = 19, tier = 7, mods = { ["Amulet"] = "IncreasedChaosDamageEssence7", ["Belt"] = "ChaosResist6", ["Body Armour"] = "ChaosResist6", ["Boots"] = "ChaosResist6", ["Bow"] = "LocalAddedChaosDamageTwoHandEssence3", ["Claw"] = "LocalAddedChaosDamageEssence3", ["Dagger"] = "LocalAddedChaosDamageEssence3", ["Gloves"] = "ChaosResist6", ["Helmet"] = "ChaosResist6", ["One Handed Axe"] = "LocalAddedChaosDamageEssence3", ["One Handed Mace"] = "LocalAddedChaosDamageEssence3", ["One Handed Sword"] = "LocalAddedChaosDamageEssence3", ["Quiver"] = "QuiverAddedChaosEssence3__", ["Ring"] = "IncreasedChaosDamageEssence7", ["Sceptre"] = "LocalAddedChaosDamageEssence3", ["Shield"] = "ChaosResist6", ["Staff"] = "LocalAddedChaosDamageTwoHandEssence3", ["Thrusting One Handed Sword"] = "LocalAddedChaosDamageEssence3", ["Two Handed Axe"] = "LocalAddedChaosDamageTwoHandEssence3", ["Two Handed Mace"] = "LocalAddedChaosDamageTwoHandEssence3", ["Two Handed Sword"] = "LocalAddedChaosDamageTwoHandEssence3", ["Wand"] = "LocalAddedChaosDamageEssence3", }, }, diff --git a/src/Data/FlavourText.lua b/src/Data/FlavourText.lua index 5ff34a0d72..10eb73f87e 100644 --- a/src/Data/FlavourText.lua +++ b/src/Data/FlavourText.lua @@ -1490,6 +1490,16 @@ return { }, }, [182] = { + id = "UniqueAmulet87", + name = "Rotmother's Mutiny", + text = { + "Betrayal bites cold as a southerly wind,", + "Thunder heralds the coming storm,", + "On her day of mutiny, the Rotmother sinned,", + "A brother burned, a bond forsworn", + }, + }, + [183] = { id = "UniqueAmulet9", name = "Carnage Heart", text = { @@ -1497,7 +1507,7 @@ return { "its thirst has only begun.", }, }, - [183] = { + [184] = { id = "UniqueBelt1", name = "Wurm's Molt", text = { @@ -1505,14 +1515,14 @@ return { "in every skin the great beasts shed.", }, }, - [184] = { + [185] = { id = "UniqueBelt10", name = "Prismweave", text = { "Nothing is as vivid as the rage of battle", }, }, - [185] = { + [186] = { id = "UniqueBelt10x", name = "Replica Prismweave", text = { @@ -1520,14 +1530,14 @@ return { "steal Prototype #659. What do they know that we do not?\"", }, }, - [186] = { + [187] = { id = "UniqueBelt11", name = "Bated Breath", text = { "At knifepoint, a moment's hesitation means death.", }, }, - [187] = { + [188] = { id = "UniqueBelt11x", name = "Replica Bated Breath", text = { @@ -1536,7 +1546,7 @@ return { "- Researcher Graven", }, }, - [188] = { + [189] = { id = "UniqueBelt12", name = "Maligaro's Restraint", text = { @@ -1545,7 +1555,7 @@ return { "- Inquisitor Maligaro", }, }, - [189] = { + [190] = { id = "UniqueBelt13", name = "Belt of the Deceiver", text = { @@ -1553,7 +1563,7 @@ return { "Only victory.", }, }, - [190] = { + [191] = { id = "UniqueBelt14", name = "Dyadian Dawn", text = { @@ -1562,7 +1572,7 @@ return { "The Eternal twins arose.", }, }, - [191] = { + [192] = { id = "UniqueBelt15", name = "Feastbind", text = { @@ -1571,7 +1581,7 @@ return { "So the First Ones filled the sky with fire.", }, }, - [192] = { + [193] = { id = "UniqueBelt16", name = "Faminebind", text = { @@ -1581,7 +1591,7 @@ return { "and gave them grain and water.", }, }, - [193] = { + [194] = { id = "UniqueBelt17", name = "The Retch", text = { @@ -1591,7 +1601,7 @@ return { "on the flesh of one another.", }, }, - [194] = { + [195] = { id = "UniqueBelt18", name = "Soulthirst", text = { @@ -1601,7 +1611,7 @@ return { "- Zerphi of the Vaal", }, }, - [195] = { + [196] = { id = "UniqueBelt19", name = "Umbilicus Immortalis", text = { @@ -1609,7 +1619,7 @@ return { "- Icius Perandus, Antiquities Collection, Item 3", }, }, - [196] = { + [197] = { id = "UniqueBelt2", name = "The Tactician", text = { @@ -1617,7 +1627,7 @@ return { "than the Great Meginord of the North.", }, }, - [197] = { + [198] = { id = "UniqueBelt20", name = "Ascent From Flesh", text = { @@ -1626,7 +1636,7 @@ return { "Reborn into freedom eternal", }, }, - [198] = { + [199] = { id = "UniqueBelt21", name = "Soul Tether", text = { @@ -1635,7 +1645,7 @@ return { "desperately cling to any other source of life.", }, }, - [199] = { + [200] = { id = "UniqueBelt21x", name = "Replica Soul Tether", text = { @@ -1643,7 +1653,7 @@ return { "was not as deep as expected. There is something here...\"", }, }, - [200] = { + [201] = { id = "UniqueBelt22", name = "Perseverance", text = { @@ -1652,7 +1662,7 @@ return { "- Daresso, the Sword King", }, }, - [201] = { + [202] = { id = "UniqueBelt23", name = "Bisco's Leash", text = { @@ -1662,7 +1672,7 @@ return { "I wish you could have stayed.", }, }, - [202] = { + [203] = { id = "UniqueBelt24", name = "Ryslatha's Coil", text = { @@ -1670,13 +1680,13 @@ return { "or unequivocal failure.", }, }, - [203] = { + [204] = { id = "UniqueBelt25", name = "The Flow Untethered", text = { }, }, - [204] = { + [205] = { id = "UniqueBelt26", name = "Cyclopean Coil", text = { @@ -1684,7 +1694,7 @@ return { "the Shade watched the Scholar.", }, }, - [205] = { + [206] = { id = "UniqueBelt27", name = "Darkness Enthroned", text = { @@ -1692,7 +1702,7 @@ return { "and never will the light blind you.", }, }, - [206] = { + [207] = { id = "UniqueBelt28", name = "Gluttony", text = { @@ -1700,7 +1710,7 @@ return { "became a desire to learn...", }, }, - [207] = { + [208] = { id = "UniqueBelt29", name = "String of Servitude", text = { @@ -1708,7 +1718,7 @@ return { "was as intimate and volatile as that of lovers.", }, }, - [208] = { + [209] = { id = "UniqueBelt3", name = "Perandus Blazon", text = { @@ -1717,7 +1727,7 @@ return { "had more debtors than anyone.", }, }, - [209] = { + [210] = { id = "UniqueBelt30", name = "Coward's Chains", text = { @@ -1727,7 +1737,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Consequence", }, }, - [210] = { + [211] = { id = "UniqueBelt31", name = "Coward's Legacy", text = { @@ -1735,21 +1745,21 @@ return { "Face it, or curse your bloodline for all eternity.", }, }, - [211] = { + [212] = { id = "UniqueBelt32", name = "Hyperboreus", text = { "Cold winds whirl at the crown of the world.", }, }, - [212] = { + [213] = { id = "UniqueBelt33", name = "Siegebreaker", text = { "Poison the land and they'll have nothing to defend.", }, }, - [213] = { + [214] = { id = "UniqueBelt33x", name = "Replica Siegebreaker", text = { @@ -1758,41 +1768,41 @@ return { "- Lead Researcher Ksaret", }, }, - [214] = { + [215] = { id = "UniqueBelt34", name = "Leash of Oblation", text = { "Those who offer up sacrifices to every deity entreat the full favour of none.", }, }, - [215] = { + [216] = { id = "UniqueBelt35", name = "Mother's Embrace", text = { "Drink, my children, and be strengthened.", }, }, - [216] = { + [217] = { id = "UniqueBelt36", name = "The Torrent's Reclamation", text = { }, }, - [217] = { + [218] = { id = "UniqueBelt37", name = "Bear's Girdle", text = { "Simple. Deadly. Unstoppable.", }, }, - [218] = { + [219] = { id = "UniqueBelt38", name = "Chains of Emancipation", text = { "Freedom is won only by those who are not free.", }, }, - [219] = { + [220] = { id = "UniqueBelt39", name = "The Druggery", text = { @@ -1801,7 +1811,7 @@ return { "- Doctor 'Shaky Hands' Opden", }, }, - [220] = { + [221] = { id = "UniqueBelt4", name = "Meginord's Girdle", text = { @@ -1809,14 +1819,14 @@ return { "the great Meginord of the north.", }, }, - [221] = { + [222] = { id = "UniqueBelt40", name = "Pyroshock Clasp", text = { "Teach a man to burn, and you'll be warm for the rest of his life.", }, }, - [222] = { + [223] = { id = "UniqueBelt41", name = "Survivor's Guilt", text = { @@ -1824,35 +1834,35 @@ return { "but on those that did not.", }, }, - [223] = { + [224] = { id = "UniqueBelt42a", name = "Arn's Anguish", text = { "The tortured thinker is made heavier by the weight of his guilt.", }, }, - [224] = { + [225] = { id = "UniqueBelt42b", name = "Olesya's Delight", text = { "The cruel thinker finds glee in torture most precise.", }, }, - [225] = { + [226] = { id = "UniqueBelt42c", name = "Graven's Secret", text = { "The cowardly thinker's greatest success is simply surviving.", }, }, - [226] = { + [227] = { id = "UniqueBelt43", name = "Mageblood", text = { "Rivers of power course through your veins.", }, }, - [227] = { + [228] = { id = "UniqueBelt44", name = "The Burden of Truth", text = { @@ -1860,7 +1870,7 @@ return { "but a hollow soul can never be healed.", }, }, - [228] = { + [229] = { id = "UniqueBelt45", name = "Chain of Endurance", text = { @@ -1870,7 +1880,7 @@ return { "- Weylan the Ezomyte", }, }, - [229] = { + [230] = { id = "UniqueBelt46", name = "Ceinture of Benevolence", text = { @@ -1879,7 +1889,7 @@ return { "- High Templar Maxarius", }, }, - [230] = { + [231] = { id = "UniqueBelt47", name = "Kaom's Binding", text = { @@ -1887,7 +1897,7 @@ return { "nightmare of lava and flame... but he endured.", }, }, - [231] = { + [232] = { id = "UniqueBelt48", name = "Bound Fate", text = { @@ -1896,7 +1906,7 @@ return { "are two very different things.", }, }, - [232] = { + [233] = { id = "UniqueBelt49", name = "The Tides of Time", text = { @@ -1904,7 +1914,7 @@ return { "tangible to those who watch and wait.", }, }, - [233] = { + [234] = { id = "UniqueBelt50", name = "Nevalius Inheritance", text = { @@ -1915,7 +1925,7 @@ return { "- Victario Nevalius, the People's Poet", }, }, - [234] = { + [235] = { id = "UniqueBelt51", name = "Ynda's Stand", text = { @@ -1923,7 +1933,7 @@ return { "she held the bridge to the very end.", }, }, - [235] = { + [236] = { id = "UniqueBelt52", name = "Saresh's Darkness", text = { @@ -1932,7 +1942,7 @@ return { "me, but I am merely the prophet, the one who sees the black.\"", }, }, - [236] = { + [237] = { id = "UniqueBelt54", name = "The Arkhon's Tools", text = { @@ -1941,7 +1951,7 @@ return { "Life... or something like it, engineered in its image.", }, }, - [237] = { + [238] = { id = "UniqueBelt55", name = "Solerai's Radiance", text = { @@ -1950,7 +1960,7 @@ return { "dead turned to flee. We drove them beneath for all time.\"", }, }, - [238] = { + [239] = { id = "UniqueBelt56", name = "Screams of the Desiccated", text = { @@ -1959,7 +1969,15 @@ return { "and they screamed still, begging me for vengeance...\"", }, }, - [239] = { + [240] = { + id = "UniqueBelt57", + name = "Unholy Accomplice", + text = { + "A pact is a debt which both sides repay. For a human to", + "barter an alliance in their favour... extraordinary.", + }, + }, + [241] = { id = "UniqueBelt6", name = "Sunblast", text = { @@ -1968,7 +1986,7 @@ return { "Explodes from its cage.", }, }, - [240] = { + [242] = { id = "UniqueBelt7", name = "Headhunter", text = { @@ -1978,7 +1996,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [241] = { + [243] = { id = "UniqueBelt7x", name = "Replica Headhunter", text = { @@ -1986,7 +2004,7 @@ return { "ten times the height of a man and crashing straight through walls.\"", }, }, - [242] = { + [244] = { id = "UniqueBelt8", name = "Immortal Flesh", text = { @@ -1997,7 +2015,7 @@ return { "- Berek and the Untamed", }, }, - [243] = { + [245] = { id = "UniqueBelt9", name = "Doryani's Invitation", text = { @@ -2006,7 +2024,7 @@ return { "- Doryani, Queen's Thaumaturgist", }, }, - [244] = { + [246] = { id = "UniqueBodyDex1", name = "Hyrri's Ire", text = { @@ -2015,7 +2033,7 @@ return { "only oppression can ferment.", }, }, - [245] = { + [247] = { id = "UniqueBodyDex10", name = "The Snowblind Grace", text = { @@ -2023,7 +2041,7 @@ return { "colliding as many and emerging as one.", }, }, - [246] = { + [248] = { id = "UniqueBodyDex11", name = "The Perfect Form", text = { @@ -2034,7 +2052,7 @@ return { "Brittle.", }, }, - [247] = { + [249] = { id = "UniqueBodyDex11x", name = "Replica Perfect Form", text = { @@ -2043,7 +2061,7 @@ return { "- Researcher Graven", }, }, - [248] = { + [250] = { id = "UniqueBodyDex12", name = "Yriel's Fostering", text = { @@ -2053,7 +2071,7 @@ return { "It is suffering that forges the greatest warriors.", }, }, - [249] = { + [251] = { id = "UniqueBodyDex1x", name = "Replica Hyrri's Ire", text = { @@ -2062,21 +2080,21 @@ return { "- Researcher Olesya, on #2999 and the loss of Outpost Eight", }, }, - [250] = { + [252] = { id = "UniqueBodyDex3", name = "Ashrend", text = { "The blasted oak stands forever.", }, }, - [251] = { + [253] = { id = "UniqueBodyDex4", name = "Fox's Fortune", text = { "To catch an animal, think like an animal.", }, }, - [252] = { + [254] = { id = "UniqueBodyDex5", name = "Bronn's Lithe", text = { @@ -2084,7 +2102,7 @@ return { "in the field between you and the archers.", }, }, - [253] = { + [255] = { id = "UniqueBodyDex6", name = "Queen of the Forest", text = { @@ -2096,7 +2114,7 @@ return { "she found peace at last.", }, }, - [254] = { + [256] = { id = "UniqueBodyDex7", name = "Wildwrap", text = { @@ -2105,7 +2123,7 @@ return { "- Taruk of the Wildmen", }, }, - [255] = { + [257] = { id = "UniqueBodyDex8", name = "Kintsugi", text = { @@ -2114,7 +2132,7 @@ return { "For it is these that set us apart.", }, }, - [256] = { + [258] = { id = "UniqueBodyDex9", name = "Cospri's Will", text = { @@ -2123,7 +2141,7 @@ return { "If they only knew the power I possess.", }, }, - [257] = { + [259] = { id = "UniqueBodyDexInt1", name = "Carcass Jack", text = { @@ -2132,7 +2150,7 @@ return { "- Maligaro's Journal", }, }, - [258] = { + [260] = { id = "UniqueBodyDexInt10", name = "Saqawal's Nest", text = { @@ -2141,14 +2159,14 @@ return { "that what we take for law may just be an illusion.", }, }, - [259] = { + [261] = { id = "UniqueBodyDexInt11", name = "The Eternity Shroud", text = { "There can be no defence against the celestial siblings entropy and time.", }, }, - [260] = { + [262] = { id = "UniqueBodyDexInt11x", name = "Replica Eternity Shroud", text = { @@ -2157,7 +2175,7 @@ return { "- Researcher Arn", }, }, - [261] = { + [263] = { id = "UniqueBodyDexInt12", name = "Expedition's End", text = { @@ -2165,7 +2183,7 @@ return { "but that doesn't mean he ever truly escaped them.", }, }, - [262] = { + [264] = { id = "UniqueBodyDexInt13", name = "The Admiral", text = { @@ -2173,7 +2191,7 @@ return { "them to wage war wherever their enemy was weakest.", }, }, - [263] = { + [265] = { id = "UniqueBodyDexInt14", name = "Doppelgänger Guise", text = { @@ -2181,14 +2199,14 @@ return { "held back only by the lies we tell ourselves.", }, }, - [264] = { + [266] = { id = "UniqueBodyDexInt15", name = "Stasis Prison", text = { "Those that can never die have but one wish.", }, }, - [265] = { + [267] = { id = "UniqueBodyDexInt16", name = "Seven Teachings", text = { @@ -2196,7 +2214,7 @@ return { "perfection of the body and the will.", }, }, - [266] = { + [268] = { id = "UniqueBodyDexInt17", name = "Servant of Decay", text = { @@ -2204,7 +2222,7 @@ return { "nothing remained but the void.", }, }, - [267] = { + [269] = { id = "UniqueBodyDexInt2", name = "Cloak of Defiance", text = { @@ -2218,7 +2236,7 @@ return { "Of the Defiant Heart.", }, }, - [268] = { + [270] = { id = "UniqueBodyDexInt3", name = "The Restless Ward", text = { @@ -2228,7 +2246,7 @@ return { "One lapse and all for naught.", }, }, - [269] = { + [271] = { id = "UniqueBodyDexInt3x", name = "Replica Restless Ward", text = { @@ -2236,7 +2254,7 @@ return { "There is power here, if it can be tapped.\"", }, }, - [270] = { + [272] = { id = "UniqueBodyDexInt4", name = "Victario's Influence", text = { @@ -2246,14 +2264,14 @@ return { "- Victario, the People's Poet", }, }, - [271] = { + [273] = { id = "UniqueBodyDexInt5", name = "Tinkerskin", text = { "Thin is the line between mechanical genius and magic.", }, }, - [272] = { + [274] = { id = "UniqueBodyDexInt6", name = "Inpulsa's Broken Heart", text = { @@ -2261,14 +2279,14 @@ return { "or they will give you the same treatment.", }, }, - [273] = { + [275] = { id = "UniqueBodyDexInt7", name = "Bloodbond", text = { "What mother wouldn't give her life for that of her children?", }, }, - [274] = { + [276] = { id = "UniqueBodyDexInt8", name = "Dendrobate", text = { @@ -2277,7 +2295,7 @@ return { "are the ones who don't bother to hide.", }, }, - [275] = { + [277] = { id = "UniqueBodyDexInt9x", name = "Replica Shroud of the Lightless", text = { @@ -2285,7 +2303,7 @@ return { "- Researcher Arn", }, }, - [276] = { + [278] = { id = "UniqueBodyInt1", name = "Shavronne's Wrappings", text = { @@ -2293,7 +2311,7 @@ return { "as her body and soul became ever more corrupted.", }, }, - [277] = { + [279] = { id = "UniqueBodyInt10", name = "The Beast Fur Shawl", text = { @@ -2302,7 +2320,7 @@ return { "is to walk in the skin of another.", }, }, - [278] = { + [280] = { id = "UniqueBodyInt11", name = "Cloak of Tawm'r Isley", text = { @@ -2312,7 +2330,7 @@ return { "and watches from beneath the city.", }, }, - [279] = { + [281] = { id = "UniqueBodyInt12", name = "The Coming Calamity", text = { @@ -2322,7 +2340,7 @@ return { "By your hand they dance and bend, wield them and brook no end.", }, }, - [280] = { + [282] = { id = "UniqueBodyInt13", name = "Skin of the Loyal", text = { @@ -2330,7 +2348,7 @@ return { "A net woven to keep safe the bones of the Lords.", }, }, - [281] = { + [283] = { id = "UniqueBodyInt14", name = "Skin of the Lords", text = { @@ -2338,7 +2356,7 @@ return { "Only they may grace His flesh.", }, }, - [282] = { + [284] = { id = "UniqueBodyInt15", name = "Doedre's Skin", text = { @@ -2348,7 +2366,7 @@ return { "But Wraeclast had not heard the last of her.", }, }, - [283] = { + [285] = { id = "UniqueBodyInt16", name = "Dialla's Malefaction", text = { @@ -2358,7 +2376,7 @@ return { "And I'd do it again in an instant.", }, }, - [284] = { + [286] = { id = "UniqueBodyInt17", name = "Fenumus' Shroud", text = { @@ -2367,7 +2385,7 @@ return { "and found comfort in silence and solace.", }, }, - [285] = { + [287] = { id = "UniqueBodyInt18", name = "The Queen's Hunger", text = { @@ -2375,7 +2393,7 @@ return { "They stab their own hearts and cry out in ecstasy, only to rise again.", }, }, - [286] = { + [288] = { id = "UniqueBodyInt19", name = "Garb of the Ephemeral", text = { @@ -2383,28 +2401,28 @@ return { "but something much greater is needed to unleash the wildfire of true divine flames.", }, }, - [287] = { + [289] = { id = "UniqueBodyInt2", name = "Cloak of Flame", text = { "He who sows an ember shall reap an inferno.", }, }, - [288] = { + [290] = { id = "UniqueBodyInt20", name = "Fleshcrafter", text = { "Imbue the body with stolen spirit, hold the leash tight.", }, }, - [289] = { + [291] = { id = "UniqueBodyInt21", name = "Ghostwrithe", text = { "Faith springs abundant at the edge of death.", }, }, - [290] = { + [292] = { id = "UniqueBodyInt22", name = "The Apostate", text = { @@ -2412,7 +2430,7 @@ return { "became thick white blood, as choking as it was nourishing.", }, }, - [291] = { + [293] = { id = "UniqueBodyInt3", name = "The Covenant", text = { @@ -2420,7 +2438,7 @@ return { "My Price is your Blood", }, }, - [292] = { + [294] = { id = "UniqueBodyInt3x", name = "Replica Covenant", text = { @@ -2429,7 +2447,7 @@ return { "- Lead Researcher Ksaret", }, }, - [293] = { + [295] = { id = "UniqueBodyInt4", name = "Infernal Mantle", text = { @@ -2437,7 +2455,7 @@ return { "Eyes will burn, and souls wither, as they bask in my radiance.", }, }, - [294] = { + [296] = { id = "UniqueBodyInt5", name = "Thousand Ribbons", text = { @@ -2447,7 +2465,7 @@ return { "And was born again", }, }, - [295] = { + [297] = { id = "UniqueBodyInt7", name = "Soul Mantle", text = { @@ -2455,7 +2473,7 @@ return { "long after they have been made", }, }, - [296] = { + [298] = { id = "UniqueBodyInt8", name = "Zahndethus' Cassock", text = { @@ -2465,7 +2483,7 @@ return { "Twice as strong and twice as thick", }, }, - [297] = { + [299] = { id = "UniqueBodyInt9", name = "Vis Mortis", text = { @@ -2475,7 +2493,7 @@ return { "Zealots in mortis enslaved", }, }, - [298] = { + [300] = { id = "UniqueBodyStr1", name = "Kaom's Heart", text = { @@ -2483,7 +2501,7 @@ return { "fears will fall.", }, }, - [299] = { + [301] = { id = "UniqueBodyStr10", name = "Craiceann's Carapace", text = { @@ -2492,7 +2510,7 @@ return { "who stood guard as land rose from sea.", }, }, - [300] = { + [302] = { id = "UniqueBodyStr11", name = "Perfidy", text = { @@ -2500,21 +2518,21 @@ return { "What hope have you?", }, }, - [301] = { + [303] = { id = "UniqueBodyStr12", name = "Blunderbore", text = { "The giant cares not for the ants.", }, }, - [302] = { + [304] = { id = "UniqueBodyStr13", name = "Utula's Hunger", text = { "The world will end in a divine stomach once Kitava has eaten all that lives.", }, }, - [303] = { + [305] = { id = "UniqueBodyStr14", name = "Pragmatism", text = { @@ -2522,7 +2540,7 @@ return { "so their practical warriors employed geomancy instead.", }, }, - [304] = { + [306] = { id = "UniqueBodyStr1x", name = "Replica Kaom's Heart", text = { @@ -2530,14 +2548,14 @@ return { "to an archmage to fund other experiments.\"", }, }, - [305] = { + [307] = { id = "UniqueBodyStr2", name = "Wall of Brambles", text = { "It is safer to be feared than to be loved.", }, }, - [306] = { + [308] = { id = "UniqueBodyStr3", name = "Death's Oath", text = { @@ -2545,7 +2563,7 @@ return { "My dear Isildria must depart.", }, }, - [307] = { + [309] = { id = "UniqueBodyStr4", name = "Solaris Lorica", text = { @@ -2555,7 +2573,7 @@ return { "So that I may begin my bright pursuit.", }, }, - [308] = { + [310] = { id = "UniqueBodyStr5", name = "Greed's Embrace", text = { @@ -2563,7 +2581,7 @@ return { "The rest were already dead.", }, }, - [309] = { + [311] = { id = "UniqueBodyStr6", name = "Lioneye's Vision", text = { @@ -2573,14 +2591,14 @@ return { "- Marceus Lioneye", }, }, - [310] = { + [312] = { id = "UniqueBodyStr7", name = "The Brass Dome", text = { "The turtle's shell one day becomes its tomb.", }, }, - [311] = { + [313] = { id = "UniqueBodyStr9", name = "The Iron Fortress", text = { @@ -2589,7 +2607,7 @@ return { "- Mauritius, the Iron Heart", }, }, - [312] = { + [314] = { id = "UniqueBodyStrDex1", name = "Belly of the Beast", text = { @@ -2597,7 +2615,7 @@ return { "Than the Belly of the Beast", }, }, - [313] = { + [315] = { id = "UniqueBodyStrDex2", name = "Lightning Coil", text = { @@ -2606,7 +2624,7 @@ return { "- Malachai the Soulless.", }, }, - [314] = { + [316] = { id = "UniqueBodyStrDex3", name = "Daresso's Defiance", text = { @@ -2617,7 +2635,7 @@ return { "- Daresso, the Sword King", }, }, - [315] = { + [317] = { id = "UniqueBodyStrDex4", name = "Cherrubim's Maleficence", text = { @@ -2628,7 +2646,7 @@ return { "- Blass, explorer, hunter, adventurer", }, }, - [316] = { + [318] = { id = "UniqueBodyStrDex5", name = "The Rat Cage", text = { @@ -2636,7 +2654,7 @@ return { "Many a confession was found in the bowels of Axiom.", }, }, - [317] = { + [319] = { id = "UniqueBodyStrDex6", name = "Viper's Scales", text = { @@ -2644,14 +2662,14 @@ return { "One strike, one corpse.", }, }, - [318] = { + [320] = { id = "UniqueBodyStrDex7", name = "Gruthkul's Pelt", text = { "Simple is the life of the bear.", }, }, - [319] = { + [321] = { id = "UniqueBodyStrDex8", name = "Farrul's Fur", text = { @@ -2660,7 +2678,7 @@ return { "in waiting in the shadows and picking your moment.", }, }, - [320] = { + [322] = { id = "UniqueBodyStrDex8x", name = "Replica Farrul's Fur", text = { @@ -2668,7 +2686,7 @@ return { "without breaking all the bones of the test subject. A rousing success.\"", }, }, - [321] = { + [323] = { id = "UniqueBodyStrDex9", name = "Rigwald's Hunt", text = { @@ -2677,7 +2695,7 @@ return { "brothers and sisters, we are finally free!\"", }, }, - [322] = { + [324] = { id = "UniqueBodyStrDexInt1", name = "Atziri's Splendour", text = { @@ -2686,7 +2704,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [323] = { + [325] = { id = "UniqueBodyStrDexInt2", name = "Shadowstitch", text = { @@ -2696,7 +2714,7 @@ return { "and the next.", }, }, - [324] = { + [326] = { id = "UniqueBodyStrInt1", name = "Voll's Protector", text = { @@ -2704,7 +2722,7 @@ return { "Voll proved disastrous in times of peace.", }, }, - [325] = { + [327] = { id = "UniqueBodyStrInt10", name = "Chains of Command", text = { @@ -2712,14 +2730,14 @@ return { "or be dragged beneath the mire by their burden.", }, }, - [326] = { + [328] = { id = "UniqueBodyStrInt11", name = "Rotting Legion", text = { "A glacier of putrid meat, crushing mountains and valleys alike.", }, }, - [327] = { + [329] = { id = "UniqueBodyStrInt12", name = "Sporeguard", text = { @@ -2729,14 +2747,14 @@ return { "^8This item can be anointed by Cassia", }, }, - [328] = { + [330] = { id = "UniqueBodyStrInt13", name = "The Ivory Tower", text = { "The mind is a filter through which anarchy becomes order.", }, }, - [329] = { + [331] = { id = "UniqueBodyStrInt14", name = "Doryani's Prototype", text = { @@ -2745,7 +2763,7 @@ return { "- Dominus, High Templar", }, }, - [330] = { + [332] = { id = "UniqueBodyStrInt15", name = "The Fourth Vow", text = { @@ -2753,14 +2771,23 @@ return { "In flagellation, there lies freedom from temptation.", }, }, - [331] = { + [333] = { + id = "UniqueBodyStrInt16", + name = "Waxen Soul", + text = { + "\"We huddle in the fading light of our candles,", + "begging the darkness to leave us in peace...", + "but what if we joined Him, and left fear behind?\"", + }, + }, + [334] = { id = "UniqueBodyStrInt2", name = "Ambu's Charge", text = { "Nothing stops the pain like a courageous rush into battle.", }, }, - [332] = { + [335] = { id = "UniqueBodyStrInt2x", name = "Replica Ambu's Charge", text = { @@ -2768,7 +2795,7 @@ return { "though at considerable cost to the long-term survival rate of the user.\"", }, }, - [333] = { + [336] = { id = "UniqueBodyStrInt3", name = "Crystal Vault", text = { @@ -2777,7 +2804,7 @@ return { "the world will perish in ice.", }, }, - [334] = { + [337] = { id = "UniqueBodyStrInt4", name = "Lightbane Raiment", text = { @@ -2786,7 +2813,7 @@ return { "and embraced the darkness.", }, }, - [335] = { + [338] = { id = "UniqueBodyStrInt5", name = "Incandescent Heart", text = { @@ -2794,14 +2821,14 @@ return { "And the black lies wrapped around your heart", }, }, - [336] = { + [339] = { id = "UniqueBodyStrInt6", name = "Kingsguard", text = { "The toughest armour is the trust of your people.", }, }, - [337] = { + [340] = { id = "UniqueBodyStrInt7", name = "Geofri's Sanctuary", text = { @@ -2809,7 +2836,7 @@ return { "It makes us immortal.", }, }, - [338] = { + [341] = { id = "UniqueBodyStrInt9", name = "Loreweave", text = { @@ -2818,7 +2845,7 @@ return { "boundless creativity.", }, }, - [339] = { + [342] = { id = "UniqueBodyStrInt9x", name = "Replica Loreweave", text = { @@ -2826,21 +2853,21 @@ return { "What key fundamental secret are we missing?\"", }, }, - [340] = { + [343] = { id = "UniqueBootsDex1", name = "Sin Trek", text = { "Do not let them step on your feet. Keep them at bay.", }, }, - [341] = { + [344] = { id = "UniqueBootsDex11", name = "Garukhan's Flight", text = { "The higher you soar, the further you must fall.", }, }, - [342] = { + [345] = { id = "UniqueBootsDex13", name = "Farrul's Chase", text = { @@ -2849,7 +2876,7 @@ return { "To do otherwise is to arm your foes.", }, }, - [343] = { + [346] = { id = "UniqueBootsDex14", name = "Temptation Step", text = { @@ -2857,7 +2884,7 @@ return { "them to narcotic stimulants with lethal withdrawals.", }, }, - [344] = { + [347] = { id = "UniqueBootsDex15", name = "Orbala's Stand", text = { @@ -2866,14 +2893,14 @@ return { "grinned. In that moment, the bandit king knew true despair.", }, }, - [345] = { + [348] = { id = "UniqueBootsDex2", name = "Goldwyrm", text = { "The wyrm draws warmth from the fires of desire.", }, }, - [346] = { + [349] = { id = "UniqueBootsDex3", name = "Victario's Flight", text = { @@ -2881,7 +2908,7 @@ return { "as slaughter blossomed at the gates.", }, }, - [347] = { + [350] = { id = "UniqueBootsDex4", name = "The Blood Dance", text = { @@ -2891,7 +2918,7 @@ return { "-Lavianga, Guardian of the Karui Way", }, }, - [348] = { + [351] = { id = "UniqueBootsDex5", name = "Seven-League Step", text = { @@ -2900,14 +2927,14 @@ return { "- Icius Perandus, Antiquities Collection, Item 202", }, }, - [349] = { + [352] = { id = "UniqueBootsDex6", name = "Deerstalker", text = { "Anticipation, preparation, exhilaration, celebration.", }, }, - [350] = { + [353] = { id = "UniqueBootsDex7", name = "Atziri's Step", text = { @@ -2916,14 +2943,14 @@ return { "- Atziri, Queen of the Vaal", }, }, - [351] = { + [354] = { id = "UniqueBootsDex8", name = "Nomic's Storm", text = { "It takes a clear mind to outrun a storm.", }, }, - [352] = { + [355] = { id = "UniqueBootsDex9", name = "Three-step Assault", text = { @@ -2932,7 +2959,7 @@ return { "Vanish like smoke in the wind.", }, }, - [353] = { + [356] = { id = "UniqueBootsDex9x", name = "Replica Three-step Assault", text = { @@ -2940,7 +2967,7 @@ return { "system in the hallway functioned as expected.\"", }, }, - [354] = { + [357] = { id = "UniqueBootsDexInt1", name = "Sunspite", text = { @@ -2948,7 +2975,7 @@ return { "Dance beneath the orb of gold!", }, }, - [355] = { + [358] = { id = "UniqueBootsDexInt10", name = "The Stampede", text = { @@ -2957,7 +2984,7 @@ return { "^8This item can be anointed by Cassia", }, }, - [356] = { + [359] = { id = "UniqueBootsDexInt10x", name = "Replica Stampede", text = { @@ -2967,7 +2994,7 @@ return { "^8This item can be anointed by Cassia", }, }, - [357] = { + [360] = { id = "UniqueBootsDexInt11", name = "Corpsewalker", text = { @@ -2975,7 +3002,7 @@ return { "stands astride innocent bones.", }, }, - [358] = { + [361] = { id = "UniqueBootsDexInt12", name = "Inextricable Fate", text = { @@ -2983,7 +3010,7 @@ return { "irrevocably bound together in perpetual torture.", }, }, - [359] = { + [362] = { id = "UniqueBootsDexInt13", name = "Veruso's Ambition", text = { @@ -2991,7 +3018,7 @@ return { "families. Follow me if you hunger for more than this!\"", }, }, - [360] = { + [363] = { id = "UniqueBootsDexInt4", name = "Brinerot Whalers", text = { @@ -2999,7 +3026,7 @@ return { "Let's see what they'll pay for their own.", }, }, - [361] = { + [364] = { id = "UniqueBootsDexInt5", name = "Voidwalker", text = { @@ -3007,7 +3034,7 @@ return { "and experience true freedom.", }, }, - [362] = { + [365] = { id = "UniqueBootsDexInt5x", name = "Replica Voidwalker", text = { @@ -3015,7 +3042,7 @@ return { "He was not fast enough, however. Suggest we begin excavation to retrieve prototype.\"", }, }, - [363] = { + [366] = { id = "UniqueBootsDexInt7", name = "Fenumus' Spinnerets", text = { @@ -3024,7 +3051,7 @@ return { "Though we cannot live without danger, we can learn to live with it.", }, }, - [364] = { + [367] = { id = "UniqueBootsDexInt8", name = "Dance of the Offered", text = { @@ -3035,7 +3062,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of the Ritual", }, }, - [365] = { + [368] = { id = "UniqueBootsDexInt9", name = "Omeyocan", text = { @@ -3043,7 +3070,7 @@ return { "in a life so fleeting.", }, }, - [366] = { + [369] = { id = "UniqueBootsExpedition1", name = "Vorana's March", text = { @@ -3051,7 +3078,7 @@ return { "called out for aid... and the Black Scythe answered.", }, }, - [367] = { + [370] = { id = "UniqueBootsExpedition2", name = "Olroth's Charge", text = { @@ -3059,21 +3086,21 @@ return { "Olroth the Gallant fought deeper into battle.", }, }, - [368] = { + [371] = { id = "UniqueBootsInt1", name = "Greedtrap", text = { "Wonders abound at death's door.", }, }, - [369] = { + [372] = { id = "UniqueBootsInt2", name = "Wanderlust", text = { "All the world is my home.", }, }, - [370] = { + [373] = { id = "UniqueBootsInt3", name = "Shavronne's Gambit", text = { @@ -3081,7 +3108,7 @@ return { "her last hope against the Karui tide.", }, }, - [371] = { + [374] = { id = "UniqueBootsInt4", name = "Bones of Ullr", text = { @@ -3089,7 +3116,7 @@ return { "the living fear to tread.", }, }, - [372] = { + [375] = { id = "UniqueBootsInt4x", name = "Replica Bones of Ullr", text = { @@ -3098,7 +3125,7 @@ return { "- Administrator Qotra", }, }, - [373] = { + [376] = { id = "UniqueBootsInt5", name = "Rainbowstride", text = { @@ -3107,7 +3134,7 @@ return { "- Gaius Sentari", }, }, - [374] = { + [377] = { id = "UniqueBootsInt6", name = "Steppan Eard", text = { @@ -3115,7 +3142,7 @@ return { "Make those lands your own, and the mistake becomes theirs.", }, }, - [375] = { + [378] = { id = "UniqueBootsInt7", name = "Skyforth", text = { @@ -3123,7 +3150,7 @@ return { "and the powerful stand alone in a wasteland of their own creation.", }, }, - [376] = { + [379] = { id = "UniqueBootsInt8", name = "Inya's Epiphany", text = { @@ -3131,7 +3158,7 @@ return { "each journey is different.", }, }, - [377] = { + [380] = { id = "UniqueBootsInt8x", name = "Replica Inya's Epiphany", text = { @@ -3140,7 +3167,7 @@ return { "- Researcher Graven", }, }, - [378] = { + [381] = { id = "UniqueBootsStr1", name = "Windshriek", text = { @@ -3148,7 +3175,7 @@ return { "The haunting screams, a maddening hell.", }, }, - [379] = { + [382] = { id = "UniqueBootsStr10", name = "Craiceann's Tracks", text = { @@ -3157,7 +3184,7 @@ return { "We must remember our place, and play to our strengths.", }, }, - [380] = { + [383] = { id = "UniqueBootsStr11", name = "Torchoak Step", text = { @@ -3165,7 +3192,7 @@ return { "As with all things, the Karui used its wood for war.", }, }, - [381] = { + [384] = { id = "UniqueBootsStr12", name = "Dawnstrider", text = { @@ -3174,14 +3201,14 @@ return { "consuming the knowledge of fallen civilisations.", }, }, - [382] = { + [385] = { id = "UniqueBootsStr13", name = "Kahuturoa's Certainty", text = { "Confidence is calm and measured.", }, }, - [383] = { + [386] = { id = "UniqueBootsStr14", name = "The Tempest Rising", text = { @@ -3189,14 +3216,14 @@ return { "and death laid waste to all around him.", }, }, - [384] = { + [387] = { id = "UniqueBootsStr2", name = "Kaom's Roots", text = { "Don't flinch. It's a waste of good hitting time.", }, }, - [385] = { + [388] = { id = "UniqueBootsStr3", name = "Redblade Tramplers", text = { @@ -3206,14 +3233,14 @@ return { "by sating his hunger for life.", }, }, - [386] = { + [389] = { id = "UniqueBootsStr6", name = "The Infinite Pursuit", text = { "We move to be closer to her, but the distance yet grows.", }, }, - [387] = { + [390] = { id = "UniqueBootsStr7", name = "The Red Trail", text = { @@ -3221,7 +3248,7 @@ return { "where never we will return.", }, }, - [388] = { + [391] = { id = "UniqueBootsStr7x", name = "Replica Red Trail", text = { @@ -3230,14 +3257,14 @@ return { "- Administrator Qotra", }, }, - [389] = { + [392] = { id = "UniqueBootsStr9", name = "Stormcharger", text = { "Like lightning, the Ezomyte cavalry need never strike twice.", }, }, - [390] = { + [393] = { id = "UniqueBootsStrDex1", name = "Lioneye's Paws", text = { @@ -3245,7 +3272,7 @@ return { "Fight till death, never hide.", }, }, - [391] = { + [394] = { id = "UniqueBootsStrDex1x", name = "Replica Lioneye's Paws", text = { @@ -3253,7 +3280,7 @@ return { "Prototype #12 is a 'success,' if we can ever reach it.\"", }, }, - [392] = { + [395] = { id = "UniqueBootsStrDex2", name = "Darkray Vectors", text = { @@ -3263,7 +3290,7 @@ return { "- Azmerian legend", }, }, - [393] = { + [396] = { id = "UniqueBootsStrDex3", name = "Duskblight", text = { @@ -3272,7 +3299,7 @@ return { "- Inquisitor Maligaro", }, }, - [394] = { + [397] = { id = "UniqueBootsStrDex5", name = "Mutewind Whispersteps", text = { @@ -3281,7 +3308,7 @@ return { "It is our duty to keep it so.", }, }, - [395] = { + [398] = { id = "UniqueBootsStrDex6", name = "Saqawal's Talons", text = { @@ -3290,7 +3317,7 @@ return { "so that we may live more freely.", }, }, - [396] = { + [399] = { id = "UniqueBootsStrDex7", name = "Legacy of Fury", text = { @@ -3298,7 +3325,7 @@ return { "naught remains but ash.", }, }, - [397] = { + [400] = { id = "UniqueBootsStrDex8", name = "Annihilation's Approach", text = { @@ -3306,7 +3333,7 @@ return { "for the true end follows when the great eye closes.", }, }, - [398] = { + [401] = { id = "UniqueBootsStrDex9", name = "Gamblesprint", text = { @@ -3314,7 +3341,7 @@ return { "unknown and snarled to the very last.", }, }, - [399] = { + [402] = { id = "UniqueBootsStrInt1", name = "Wake of Destruction", text = { @@ -3322,7 +3349,7 @@ return { "Flee before the walking storm.", }, }, - [400] = { + [403] = { id = "UniqueBootsStrInt2", name = "Alberon's Warpath", text = { @@ -3330,7 +3357,7 @@ return { "and they welcomed him.", }, }, - [401] = { + [404] = { id = "UniqueBootsStrInt2x", name = "Replica Alberon's Warpath", text = { @@ -3338,14 +3365,14 @@ return { "However, after being fed, he began to poison everything he touched...\"", }, }, - [402] = { + [405] = { id = "UniqueBootsStrInt3", name = "Gang's Momentum", text = { "Become one with the unstoppable flame.", }, }, - [403] = { + [406] = { id = "UniqueBootsStrInt4", name = "Death's Door", text = { @@ -3353,7 +3380,7 @@ return { "is to extend all the maladies that come with it.", }, }, - [404] = { + [407] = { id = "UniqueBootsStrInt5", name = "Ralakesh's Impatience", text = { @@ -3362,14 +3389,14 @@ return { "you can simply mimic what others have?", }, }, - [405] = { + [408] = { id = "UniqueBootsStrInt6", name = "March of the Legion", text = { "When the time comes to face evil, the faithful are never alone.", }, }, - [406] = { + [409] = { id = "UniqueBow1", name = "Lioneye's Glare", text = { @@ -3377,7 +3404,7 @@ return { "- Marceus Lioneye of Sarn", }, }, - [407] = { + [410] = { id = "UniqueBow10", name = "Voltaxic Rift", text = { @@ -3386,7 +3413,7 @@ return { "arcane power. There was no escape, no shelter. Only despair.", }, }, - [408] = { + [411] = { id = "UniqueBow11", name = "Doomfletch's Prism", text = { @@ -3397,14 +3424,14 @@ return { "- Koralus Doomfletch", }, }, - [409] = { + [412] = { id = "UniqueBow12", name = "Null's Inclination", text = { "The hunt continues when the prey falls.", }, }, - [410] = { + [413] = { id = "UniqueBow13", name = "Roth's Reach", text = { @@ -3413,7 +3440,7 @@ return { "- Captain Weylam \"Rot-tooth\" Roth of the Black Crest", }, }, - [411] = { + [414] = { id = "UniqueBow14", name = "Iron Commander", text = { @@ -3421,7 +3448,7 @@ return { "without the usual depravities of necromancy.", }, }, - [412] = { + [415] = { id = "UniqueBow14x", name = "Replica Iron Commander", text = { @@ -3429,7 +3456,7 @@ return { "Prototype #4 achieved identical results through brute force alone.\"", }, }, - [413] = { + [416] = { id = "UniqueBow15", name = "Nuro's Harp", text = { @@ -3437,35 +3464,35 @@ return { "Darkness cleansed, pure and new.", }, }, - [414] = { + [417] = { id = "UniqueBow16", name = "Reach of the Council", text = { "We stand together. We strike together.", }, }, - [415] = { + [418] = { id = "UniqueBow17", name = "Slivertongue", text = { "A hundred blind heads, each seeking the taste of prey on the air.", }, }, - [416] = { + [419] = { id = "UniqueBow18", name = "Xoph's Inception", text = { "Upon the red pyre we are born.", }, }, - [417] = { + [420] = { id = "UniqueBow19", name = "Xoph's Nurture", text = { "Upon the grey winds his love spreads.", }, }, - [418] = { + [421] = { id = "UniqueBow2", name = "Silverbough", text = { @@ -3473,7 +3500,7 @@ return { "- Hyrri of the Karui", }, }, - [419] = { + [422] = { id = "UniqueBow20", name = "Arborix", text = { @@ -3483,7 +3510,7 @@ return { "their grasp stretches ever farther.", }, }, - [420] = { + [423] = { id = "UniqueBow21", name = "Hopeshredder", text = { @@ -3493,7 +3520,7 @@ return { "and bathed in fear and ferocity.", }, }, - [421] = { + [424] = { id = "UniqueBow22", name = "The Crimson Storm", text = { @@ -3501,7 +3528,7 @@ return { "- Order of the Djinn inscription", }, }, - [422] = { + [425] = { id = "UniqueBow23", name = "The Gluttonous Tide", text = { @@ -3509,7 +3536,7 @@ return { "if but for a moment... only to disgorge and do it all again...", }, }, - [423] = { + [426] = { id = "UniqueBow24", name = "Widowhail", text = { @@ -3519,7 +3546,7 @@ return { "- Chieftainess Ahuana of the Ramako Tribe", }, }, - [424] = { + [427] = { id = "UniqueBow25", name = "Wing of the Wyvern", text = { @@ -3529,7 +3556,7 @@ return { "of hope's whisper.", }, }, - [425] = { + [428] = { id = "UniqueBow26", name = "The Flame of Hope", text = { @@ -3539,7 +3566,7 @@ return { "- Varashta, the Winter Sekhema", }, }, - [426] = { + [429] = { id = "UniqueBow27", name = "The Bane of Hope", text = { @@ -3549,7 +3576,7 @@ return { "- Batoor, of the Afarud", }, }, - [427] = { + [430] = { id = "UniqueBow3", name = "Death's Opus", text = { @@ -3559,7 +3586,7 @@ return { "The Reaper's Song, the Harp of Death.", }, }, - [428] = { + [431] = { id = "UniqueBow4", name = "Quill Rain", text = { @@ -3568,7 +3595,7 @@ return { "- Rigwald of the Ezomytes", }, }, - [429] = { + [432] = { id = "UniqueBow4x", name = "Replica Quill Rain", text = { @@ -3577,7 +3604,7 @@ return { "- Doctor Bircus", }, }, - [430] = { + [433] = { id = "UniqueBow5", name = "Darkscorn", text = { @@ -3586,7 +3613,7 @@ return { "- Sekhema Asenath", }, }, - [431] = { + [434] = { id = "UniqueBow6", name = "Chin Sol", text = { @@ -3594,7 +3621,7 @@ return { "That is not the case when fighting the Maraketh.", }, }, - [432] = { + [435] = { id = "UniqueBow7", name = "Infractem", text = { @@ -3602,7 +3629,7 @@ return { "Execute us steadily, notch away at our despair.", }, }, - [433] = { + [436] = { id = "UniqueBow7x", name = "Replica Infractem", text = { @@ -3611,7 +3638,7 @@ return { "- Doctor Bircus", }, }, - [434] = { + [437] = { id = "UniqueBow8", name = "The Tempest", text = { @@ -3620,14 +3647,14 @@ return { "into very effective lightning rods.", }, }, - [435] = { + [438] = { id = "UniqueBow9", name = "Windripper", text = { "It hunts; as silent as falling snow, as deadly as the tempest.", }, }, - [436] = { + [439] = { id = "UniqueBow9x", name = "Replica Windripper", text = { @@ -3636,7 +3663,7 @@ return { "- Researcher Arn", }, }, - [437] = { + [440] = { id = "UniqueClaw1", name = "Essentia Sanguis", text = { @@ -3644,7 +3671,7 @@ return { "giving birth to four lightning children of hate.", }, }, - [438] = { + [441] = { id = "UniqueClaw10", name = "Allure", text = { @@ -3654,7 +3681,7 @@ return { "What drives us to leave this world for the Abyss?", }, }, - [439] = { + [442] = { id = "UniqueClaw10x", name = "Replica Allure", text = { @@ -3663,7 +3690,7 @@ return { "- Researcher Graven", }, }, - [440] = { + [443] = { id = "UniqueClaw13", name = "Rive", text = { @@ -3671,7 +3698,7 @@ return { "Terror makes you run.", }, }, - [441] = { + [444] = { id = "UniqueClaw14", name = "Touch of Anguish", text = { @@ -3680,7 +3707,7 @@ return { "a splinter of your own shattered heart.", }, }, - [442] = { + [445] = { id = "UniqueClaw15", name = "The Scourge", text = { @@ -3688,7 +3715,7 @@ return { "comes an increasing desire for it.", }, }, - [443] = { + [446] = { id = "UniqueClaw16", name = "Hand of Thought and Motion", text = { @@ -3696,7 +3723,7 @@ return { "until we must feed upon each other.", }, }, - [444] = { + [447] = { id = "UniqueClaw17", name = "Hand of Wisdom and Action", text = { @@ -3705,7 +3732,7 @@ return { "Fragments of the whole that washes clean the skies.", }, }, - [445] = { + [448] = { id = "UniqueClaw18", name = "The Wasp Nest", text = { @@ -3713,14 +3740,14 @@ return { "you need only shake the wrong branch.", }, }, - [446] = { + [449] = { id = "UniqueClaw19", name = "Law of the Wilds", text = { "The strong survive. The strongest thrive.", }, }, - [447] = { + [450] = { id = "UniqueClaw2", name = "Mortem Morsu", text = { @@ -3729,7 +3756,7 @@ return { "Fear is the wound left untended.", }, }, - [448] = { + [451] = { id = "UniqueClaw3", name = "Bloodseeker", text = { @@ -3737,14 +3764,14 @@ return { "- Atalui, Vaal Priestess", }, }, - [449] = { + [452] = { id = "UniqueClaw4", name = "Last Resort", text = { "Desperate times demand desperate measures.", }, }, - [450] = { + [453] = { id = "UniqueClaw4x", name = "Replica Last Resort", text = { @@ -3753,7 +3780,7 @@ return { "- Researcher Olesya", }, }, - [451] = { + [454] = { id = "UniqueClaw6", name = "Al Dhih", text = { @@ -3762,7 +3789,7 @@ return { "-Maraketh Wisdom", }, }, - [452] = { + [455] = { id = "UniqueClaw7", name = "Cybil's Paw", text = { @@ -3771,14 +3798,14 @@ return { "Cut gently, lest their spirit haunt you.", }, }, - [453] = { + [456] = { id = "UniqueClaw8", name = "Ornament of the East", text = { "To the Maraketh, death is as intimate as love.", }, }, - [454] = { + [457] = { id = "UniqueClaw9", name = "Wildslash", text = { @@ -3786,42 +3813,42 @@ return { "When to swing like crazy, and when to run.", }, }, - [455] = { + [458] = { id = "UniqueCorruptedJewel1", name = "Combustibles", text = { "The hotter something burns, the less is left at the end.", }, }, - [456] = { + [459] = { id = "UniqueCorruptedJewel10", name = "Hungry Abyss", text = { "Darkness can never be sated.", }, }, - [457] = { + [460] = { id = "UniqueCorruptedJewel12", name = "Corrupted Energy", text = { "Nothing is immune to the Nightmare's twisted influence.", }, }, - [458] = { + [461] = { id = "UniqueCorruptedJewel13", name = "Self-Flagellation", text = { "Beg for forgiveness.", }, }, - [459] = { + [462] = { id = "UniqueCorruptedJewel14", name = "Blood Sacrifice", text = { "Power always comes with a price.", }, }, - [460] = { + [463] = { id = "UniqueCorruptedJewel14x", name = "Replica Blood Sacrifice", text = { @@ -3830,21 +3857,21 @@ return { "\"That is not what he meant.\" - Researcher Arn", }, }, - [461] = { + [464] = { id = "UniqueCorruptedJewel15", name = "Brittle Barrier", text = { "Walls built in a hurry fall in a hurry.", }, }, - [462] = { + [465] = { id = "UniqueCorruptedJewel16", name = "Pacifism", text = { "\"Your fear will overcome you.\"", }, }, - [463] = { + [466] = { id = "UniqueCorruptedJewel16x", name = "Replica Pacifism", text = { @@ -3854,14 +3881,14 @@ return { "- Lead Researcher Ksaret, two hours post-Incident", }, }, - [464] = { + [467] = { id = "UniqueCorruptedJewel17", name = "Fragility", text = { "\"Your flesh will fail you.\"", }, }, - [465] = { + [468] = { id = "UniqueCorruptedJewel17x", name = "Replica Fragility", text = { @@ -3870,14 +3897,14 @@ return { "- Lead Researcher Ksaret, three hours post-Incident", }, }, - [466] = { + [469] = { id = "UniqueCorruptedJewel18", name = "Powerlessness", text = { "\"Your desires will mislead you.\"", }, }, - [467] = { + [470] = { id = "UniqueCorruptedJewel18x", name = "Replica Powerlessness", text = { @@ -3887,21 +3914,21 @@ return { "- Lead Researcher Ksaret, one hour post-Incident", }, }, - [468] = { + [471] = { id = "UniqueCorruptedJewel2", name = "Weight of Sin", text = { "Ill will is the greatest of burdens.", }, }, - [469] = { + [472] = { id = "UniqueCorruptedJewel3", name = "Fevered Mind", text = { "In sickness, the insane becomes sane.", }, }, - [470] = { + [473] = { id = "UniqueCorruptedJewel4", name = "Sacrificial Harvest", text = { @@ -3910,7 +3937,7 @@ return { "make their machines run more efficiently.", }, }, - [471] = { + [474] = { id = "UniqueCorruptedJewel5", name = "Atziri's Reign", text = { @@ -3918,7 +3945,7 @@ return { "but nothing is eternal.", }, }, - [472] = { + [475] = { id = "UniqueCorruptedJewel6", name = "Vaal Sentencing", text = { @@ -3926,7 +3953,7 @@ return { "Atziri's empire ran on blood, but the blood was running dry.", }, }, - [473] = { + [476] = { id = "UniqueCorruptedJewel7", name = "Chill of Corruption", text = { @@ -3934,7 +3961,7 @@ return { "casts a shroud over Wraeclast.", }, }, - [474] = { + [477] = { id = "UniqueCorruptedJewel8", name = "Ancient Waystones", text = { @@ -3943,7 +3970,7 @@ return { "- Siosa, the Last Scholar", }, }, - [475] = { + [478] = { id = "UniqueCorruptedJewel9", name = "Mutated Growth", text = { @@ -3952,7 +3979,7 @@ return { "And changed...", }, }, - [476] = { + [479] = { id = "UniqueDagger1", name = "Divinarius", text = { @@ -3960,14 +3987,14 @@ return { "when you do it yourself.", }, }, - [477] = { + [480] = { id = "UniqueDagger10", name = "The Consuming Dark", text = { "The brightest flames cast the darkest shadows.", }, }, - [478] = { + [481] = { id = "UniqueDagger11", name = "Sanguine Gambol", text = { @@ -3977,7 +4004,7 @@ return { "So red and so sleek", }, }, - [479] = { + [482] = { id = "UniqueDagger12", name = "Bloodplay", text = { @@ -3985,7 +4012,7 @@ return { "- Coralito, Brotherhood of Silence", }, }, - [480] = { + [483] = { id = "UniqueDagger12x", name = "Replica Bloodplay", text = { @@ -3993,7 +4020,7 @@ return { "matter how slight. Even a tiny cut makes it exponentially more dangerous.\"", }, }, - [481] = { + [484] = { id = "UniqueDagger13", name = "Widowmaker", text = { @@ -4001,21 +4028,21 @@ return { "For she shall never let you go.", }, }, - [482] = { + [485] = { id = "UniqueDagger15", name = "Arakaali's Fang", text = { "All children must eat.", }, }, - [483] = { + [486] = { id = "UniqueDagger16", name = "Taproot", text = { "Some things must die so that others can live.", }, }, - [484] = { + [487] = { id = "UniqueDagger17", name = "White Wind", text = { @@ -4024,7 +4051,7 @@ return { "of the demon that flies on Winter's gales.", }, }, - [485] = { + [488] = { id = "UniqueDagger18", name = "Vulconus", text = { @@ -4034,14 +4061,14 @@ return { "with a thick, black scab.", }, }, - [486] = { + [489] = { id = "UniqueDagger19", name = "Cold Iron Point", text = { "There is nothing more brutal than a simple blade wielded with rage.", }, }, - [487] = { + [490] = { id = "UniqueDagger19x", name = "Replica Cold Iron Point", text = { @@ -4050,14 +4077,14 @@ return { "- Administrator Qotra", }, }, - [488] = { + [491] = { id = "UniqueDagger2", name = "Mightflay", text = { "A mighty beast, a lavish feast.", }, }, - [489] = { + [492] = { id = "UniqueDagger20", name = "The Hidden Blade", text = { @@ -4065,7 +4092,7 @@ return { "his strikes land long after he is gone.", }, }, - [490] = { + [493] = { id = "UniqueDagger21", name = "Goblinedge", text = { @@ -4073,7 +4100,7 @@ return { "- Bertrand the Plush", }, }, - [491] = { + [494] = { id = "UniqueDagger22", name = "Festering Resentment", text = { @@ -4081,7 +4108,7 @@ return { "harms all those we hold dear.", }, }, - [492] = { + [495] = { id = "UniqueDagger3", name = "Ungil's Gauche", text = { @@ -4089,7 +4116,7 @@ return { "and deadly in Ungil's nimble hands.", }, }, - [493] = { + [496] = { id = "UniqueDagger3x", name = "Replica Ungil's Gauche", text = { @@ -4097,7 +4124,7 @@ return { "an ideal weapon for our suppression troops and guards.\"", }, }, - [494] = { + [497] = { id = "UniqueDagger4", name = "Heartbreaker", text = { @@ -4105,7 +4132,7 @@ return { "If your mind is sharp enough.", }, }, - [495] = { + [498] = { id = "UniqueDagger4x", name = "Replica Heartbreaker", text = { @@ -4114,7 +4141,7 @@ return { "the spell, the screams, or both.\" - Researcher Olesya", }, }, - [496] = { + [499] = { id = "UniqueDagger8", name = "Bino's Kitchen Knife", text = { @@ -4122,7 +4149,7 @@ return { "that it was even edible.", }, }, - [497] = { + [500] = { id = "UniqueDagger9", name = "Mark of the Doubting Knight", text = { @@ -4131,7 +4158,7 @@ return { "And spill a thousand Sins.", }, }, - [498] = { + [501] = { id = "UniqueDexHelmet1", name = "Fairgraves' Tricorne", text = { @@ -4139,7 +4166,7 @@ return { "the seas, deep under the ground, and even beyond death.", }, }, - [499] = { + [502] = { id = "UniqueDexHelmet2", name = "Frostferno", text = { @@ -4148,7 +4175,7 @@ return { "You will be repaid.", }, }, - [500] = { + [503] = { id = "UniqueFishingRod1", name = "Song of the Sirens", text = { @@ -4156,7 +4183,7 @@ return { "But give a fish a man, and you can feed it for a month.", }, }, - [501] = { + [504] = { id = "UniqueFishingRod2", name = "Reefbane", text = { @@ -4164,7 +4191,14 @@ return { "And tore out her heart.", }, }, - [502] = { + [505] = { + id = "UniqueFishingRod3", + name = "The Wellhook", + text = { + "Not every well has a bottom, but every line has another end.", + }, + }, + [506] = { id = "UniqueFlask1", name = "Divination Distillate", text = { @@ -4174,7 +4208,7 @@ return { "who dream of enlightenment", }, }, - [503] = { + [507] = { id = "UniqueFlask10", name = "Coruscating Elixir", text = { @@ -4182,21 +4216,21 @@ return { "Let the pain push outwards and turn away your enemy's blows.", }, }, - [504] = { + [508] = { id = "UniqueFlask11", name = "Vessel of Vinktar", text = { "The great city of storms, washed away by Vinktar's thirst for power.", }, }, - [505] = { + [509] = { id = "UniqueFlask12", name = "Rotgut", text = { "Rancid, rotten, and wicked are those that dare to taste my serum.", }, }, - [506] = { + [510] = { id = "UniqueFlask13", name = "The Writhing Jar", text = { @@ -4205,7 +4239,7 @@ return { "- High Templar Voll", }, }, - [507] = { + [511] = { id = "UniqueFlask15", name = "The Sorrow of the Divine", text = { @@ -4213,7 +4247,7 @@ return { "God weeps.", }, }, - [508] = { + [512] = { id = "UniqueFlask15x", name = "Replica Sorrow of the Divine", text = { @@ -4221,7 +4255,7 @@ return { "Faith fuels the flesh, and the flesh fuels the fire...\"", }, }, - [509] = { + [513] = { id = "UniqueFlask16", name = "Zerphi's Last Breath", text = { @@ -4230,14 +4264,14 @@ return { "- Icius Perandus, Antiquities Collection, Item 408", }, }, - [510] = { + [514] = { id = "UniqueFlask17", name = "The Overflowing Chalice", text = { "Empty cup, full of promise.", }, }, - [511] = { + [515] = { id = "UniqueFlask18", name = "Kiara's Determination", text = { @@ -4246,7 +4280,7 @@ return { "of liquid courage.", }, }, - [512] = { + [516] = { id = "UniqueFlask19", name = "Witchfire Brew", text = { @@ -4257,7 +4291,7 @@ return { "-Vadinya, to her coven", }, }, - [513] = { + [517] = { id = "UniqueFlask19x", name = "Replica Witchfire Brew", text = { @@ -4266,7 +4300,7 @@ return { "- Researcher Graven", }, }, - [514] = { + [518] = { id = "UniqueFlask2", name = "Doedre's Elixir", text = { @@ -4274,7 +4308,7 @@ return { "In order to receive, one must give... without hesitation.", }, }, - [515] = { + [519] = { id = "UniqueFlask20", name = "Dying Sun", text = { @@ -4282,7 +4316,7 @@ return { "Whether you burn out or explode is up to you.", }, }, - [516] = { + [520] = { id = "UniqueFlask21", name = "Sin's Rebirth", text = { @@ -4290,7 +4324,7 @@ return { "The Sin of one became the Sin of many.", }, }, - [517] = { + [521] = { id = "UniqueFlask22", name = "The Wise Oak", text = { @@ -4300,7 +4334,7 @@ return { "Nature is an eternal tug of war.", }, }, - [518] = { + [522] = { id = "UniqueFlask23", name = "Coralito's Signature", text = { @@ -4309,7 +4343,7 @@ return { "- Coralito, Brotherhood of Silence", }, }, - [519] = { + [523] = { id = "UniqueFlask25", name = "Soul Catcher", text = { @@ -4318,7 +4352,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of the Ghost", }, }, - [520] = { + [524] = { id = "UniqueFlask26", name = "Soul Ripper", text = { @@ -4326,21 +4360,21 @@ return { "- Atalui, Vaal Priestess", }, }, - [521] = { + [525] = { id = "UniqueFlask27", name = "Cinderswallow Urn", text = { "A controlled burn is sometimes necessary for new life.", }, }, - [522] = { + [526] = { id = "UniqueFlask28", name = "Bottled Faith", text = { "A tourniquet for the soul, squeezing ethereal into physical.", }, }, - [523] = { + [527] = { id = "UniqueFlask29", name = "Olroth's Resolve", text = { @@ -4350,7 +4384,7 @@ return { "he fights for you!", }, }, - [524] = { + [528] = { id = "UniqueFlask3", name = "Blood of the Karui", text = { @@ -4361,7 +4395,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [525] = { + [529] = { id = "UniqueFlask30", name = "Starlight Chalice", text = { @@ -4369,7 +4403,7 @@ return { "to empower runes... and themselves.", }, }, - [526] = { + [530] = { id = "UniqueFlask31", name = "Elixir of the Unbroken Circle", text = { @@ -4377,7 +4411,7 @@ return { "Then, they begin again.", }, }, - [527] = { + [531] = { id = "UniqueFlask32", name = "Vorana's Preparation", text = { @@ -4385,7 +4419,7 @@ return { "thus: strike true and survive.", }, }, - [528] = { + [532] = { id = "UniqueFlask33", name = "Progenesis", text = { @@ -4394,7 +4428,7 @@ return { "they fought to the death for every last drop.", }, }, - [529] = { + [533] = { id = "UniqueFlask34", name = "Oriath's End", text = { @@ -4403,7 +4437,7 @@ return { "and all in his path were obliterated.", }, }, - [530] = { + [534] = { id = "UniqueFlask35", name = "Wine of the Prophet", text = { @@ -4412,7 +4446,7 @@ return { "- High Templar Andronicus", }, }, - [531] = { + [535] = { id = "UniqueFlask36", name = "Wellwater Phylactery", text = { @@ -4421,7 +4455,25 @@ return { "so long as you never speak my name...\"", }, }, - [532] = { + [536] = { + id = "UniqueFlask37a", + name = "Stormblood", + text = { + "There was no grand contest or battle with Tasalio that day.", + "Captain Brinehook Vex drank and sang merry with Karui warriors", + "on the high seas. Only later did he realise who he had met.", + }, + }, + [537] = { + id = "UniqueFlask37b", + name = "Stormblood", + text = { + "On that fateful day, beset by tempest, Captain Brinehook Vex", + "came face to face with the blustering Karui god of thunder,", + "Valako himself. A wager was had, and a wager was won.", + }, + }, + [538] = { id = "UniqueFlask4", name = "Lavianga's Spirit", text = { @@ -4430,14 +4482,14 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [533] = { + [539] = { id = "UniqueFlask4x", name = "Replica Lavianga's Spirit", text = { "\"An intriguing paradox.\"", }, }, - [534] = { + [540] = { id = "UniqueFlask5", name = "Atziri's Promise", text = { @@ -4445,14 +4497,14 @@ return { "- Atziri, Queen of the Vaal", }, }, - [535] = { + [541] = { id = "UniqueFlask6", name = "Forbidden Taste", text = { "Your reach exceeds your grasp.", }, }, - [536] = { + [542] = { id = "UniqueFlask7", name = "Rumi's Concoction", text = { @@ -4461,7 +4513,7 @@ return { "-Rumi of the Vaal", }, }, - [537] = { + [543] = { id = "UniqueFlask7x", name = "Replica Rumi's Concoction", text = { @@ -4469,7 +4521,7 @@ return { "- Researcher Graven", }, }, - [538] = { + [544] = { id = "UniqueFlask8", name = "Taste of Hate", text = { @@ -4478,7 +4530,7 @@ return { "A glass will still your soul.", }, }, - [539] = { + [545] = { id = "UniqueFlask9", name = "Lion's Roar", text = { @@ -4486,7 +4538,7 @@ return { "and three generous cups of Might.", }, }, - [540] = { + [546] = { id = "UniqueGlovesDemigods1", name = "Demigod's Touch", text = { @@ -4494,7 +4546,7 @@ return { "Victory is at hand.", }, }, - [541] = { + [547] = { id = "UniqueGlovesDex1", name = "Hrimburn", text = { @@ -4502,7 +4554,7 @@ return { "Their only trace is timeless pain.", }, }, - [542] = { + [548] = { id = "UniqueGlovesDex2", name = "Maligaro's Virtuosity", text = { @@ -4510,7 +4562,7 @@ return { "with great speed and terrible consequences.", }, }, - [543] = { + [549] = { id = "UniqueGlovesDex4", name = "Oskarm", text = { @@ -4520,14 +4572,14 @@ return { "to sate his hungry claw.", }, }, - [544] = { + [550] = { id = "UniqueGlovesDex5", name = "Painseeker", text = { "Lay bare paths to pain you never knew you had.", }, }, - [545] = { + [551] = { id = "UniqueGlovesDex6", name = "Great Old One's Tentacles", text = { @@ -4535,7 +4587,7 @@ return { "burrowing into organs, and exploding outwards in search of other victims.", }, }, - [546] = { + [552] = { id = "UniqueGlovesDex7", name = "Mercenary's Lot", text = { @@ -4543,7 +4595,7 @@ return { "family profession. The target changes, but the job's always the same.", }, }, - [547] = { + [553] = { id = "UniqueGlovesDexInt1", name = "Ondar's Clasp", text = { @@ -4551,7 +4603,7 @@ return { "A single knife stroke fells an empire.", }, }, - [548] = { + [554] = { id = "UniqueGlovesDexInt10", name = "Fenumus' Weave", text = { @@ -4560,7 +4612,7 @@ return { "are not just ours to bear, but ours to use against oppressors.", }, }, - [549] = { + [555] = { id = "UniqueGlovesDexInt11", name = "Architect's Hand", text = { @@ -4569,28 +4621,28 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Dominance", }, }, - [550] = { + [556] = { id = "UniqueGlovesDexInt12", name = "Slavedriver's Hand", text = { "A plan without a deadline stays a plan.", }, }, - [551] = { + [557] = { id = "UniqueGlovesDexInt13", name = "Storm's Gift", text = { "The power of lightning is a power best shared.", }, }, - [552] = { + [558] = { id = "UniqueGlovesDexInt14", name = "Aukuna's Will", text = { "The Black Sekhema's trial had only just begun.", }, }, - [553] = { + [559] = { id = "UniqueGlovesDexInt15", name = "Machina Mitts", text = { @@ -4598,14 +4650,14 @@ return { "death is but a curse, that can be given... or reversed.", }, }, - [554] = { + [560] = { id = "UniqueGlovesDexInt16", name = "Algor Mortis", text = { "Winter's white blanket swaddles all.", }, }, - [555] = { + [561] = { id = "UniqueGlovesDexInt17", name = "Abhorrent Interrogation", text = { @@ -4613,14 +4665,14 @@ return { "- Marcus, Brotherhood Liaison", }, }, - [556] = { + [562] = { id = "UniqueGlovesDexInt18", name = "Soul Ascension", text = { "Fear can be instilled by the smallest entity.", }, }, - [557] = { + [563] = { id = "UniqueGlovesDexInt19", name = "Entropic Devastation", text = { @@ -4628,14 +4680,14 @@ return { "by the shards of obliterated worlds.", }, }, - [558] = { + [564] = { id = "UniqueGlovesDexInt2", name = "Facebreaker", text = { "Fly like a Storm Crow, crush like a Rhoa", }, }, - [559] = { + [565] = { id = "UniqueGlovesDexInt20", name = "Stormseeker", text = { @@ -4644,7 +4696,7 @@ return { "Like all secrets, they, too, can be stolen.", }, }, - [560] = { + [566] = { id = "UniqueGlovesDexInt22", name = "Hand of the Lords", text = { @@ -4653,7 +4705,7 @@ return { "wailing, weeping, begging for unity. Now, they heed.", }, }, - [561] = { + [567] = { id = "UniqueGlovesDexInt3", name = "Thunderfist", text = { @@ -4662,7 +4714,7 @@ return { "Into the hearts of Man", }, }, - [562] = { + [568] = { id = "UniqueGlovesDexInt5", name = "Snakebite", text = { @@ -4673,7 +4725,7 @@ return { "- Deshret, The Red Sekhema", }, }, - [563] = { + [569] = { id = "UniqueGlovesDexInt6", name = "Shadows and Dust", text = { @@ -4681,7 +4733,7 @@ return { "and death in the wind?", }, }, - [564] = { + [570] = { id = "UniqueGlovesDexInt7", name = "The Embalmer", text = { @@ -4690,14 +4742,14 @@ return { "we must begin the process before expiry.\"", }, }, - [565] = { + [571] = { id = "UniqueGlovesDexInt8", name = "Malachai's Mark", text = { "What man does not wish for immortality?", }, }, - [566] = { + [572] = { id = "UniqueGlovesDexInt9", name = "Blasphemer's Grasp", text = { @@ -4705,7 +4757,7 @@ return { "many sought power in the unnatural.", }, }, - [567] = { + [573] = { id = "UniqueGlovesExpedition1", name = "Nightgrip", text = { @@ -4713,7 +4765,7 @@ return { "themselves changing, only subtly at first...", }, }, - [568] = { + [574] = { id = "UniqueGlovesExpedition2", name = "Medved's Challenge", text = { @@ -4722,14 +4774,14 @@ return { "None could match his might.", }, }, - [569] = { + [575] = { id = "UniqueGlovesInt1", name = "Sadima's Touch", text = { "Wealth unspent is wealth wasted.", }, }, - [570] = { + [576] = { id = "UniqueGlovesInt10", name = "Demon Stitcher", text = { @@ -4739,7 +4791,7 @@ return { "The first Vaal.", }, }, - [571] = { + [577] = { id = "UniqueGlovesInt11", name = "Black Zenith", text = { @@ -4747,7 +4799,7 @@ return { "only to watch in horror as it ruptured and shattered under a tide of limbs.", }, }, - [572] = { + [578] = { id = "UniqueGlovesInt2", name = "Doedre's Malevolence", text = { @@ -4755,14 +4807,14 @@ return { "she surpassed her master in pure malevolence.", }, }, - [573] = { + [579] = { id = "UniqueGlovesInt3", name = "Asenath's Gentle Touch", text = { "Cool the head and cool the blade.", }, }, - [574] = { + [580] = { id = "UniqueGlovesInt4", name = "Kalisa's Grace", text = { @@ -4770,7 +4822,7 @@ return { "- Kalisa, Prima Donna of Sarn", }, }, - [575] = { + [581] = { id = "UniqueGlovesInt4x", name = "Replica Kalisa's Grace", text = { @@ -4778,14 +4830,14 @@ return { "A single attempt of a spell with this unexpected power destroyed an entire floor.\"", }, }, - [576] = { + [582] = { id = "UniqueGlovesInt6", name = "Voidbringer", text = { "Absolute corruption empowers absolutely.", }, }, - [577] = { + [583] = { id = "UniqueGlovesInt7", name = "Grip of the Council", text = { @@ -4793,7 +4845,7 @@ return { "Death only brings you closer.", }, }, - [578] = { + [584] = { id = "UniqueGlovesInt7x", name = "Replica Grip of the Council", text = { @@ -4802,7 +4854,7 @@ return { "- Researcher Arn", }, }, - [579] = { + [585] = { id = "UniqueGlovesInt8", name = "Allelopathy", text = { @@ -4814,7 +4866,7 @@ return { "- Cadiro Perandus", }, }, - [580] = { + [586] = { id = "UniqueGlovesInt8x", name = "Replica Allelopathy", text = { @@ -4822,7 +4874,7 @@ return { "chaos and cold. Perhaps we should consult an occultist.\"", }, }, - [581] = { + [587] = { id = "UniqueGlovesInt9", name = "Vixen's Entrapment", text = { @@ -4830,7 +4882,7 @@ return { "One night I wish I'd forget.\"", }, }, - [582] = { + [588] = { id = "UniqueGlovesStr1", name = "Lochtonial Caress", text = { @@ -4838,7 +4890,7 @@ return { "Surrender to me, and I will grant you everything.", }, }, - [583] = { + [589] = { id = "UniqueGlovesStr10", name = "Hateforge", text = { @@ -4846,7 +4898,7 @@ return { "developed a blood fever born of corruption.", }, }, - [584] = { + [590] = { id = "UniqueGlovesStr11", name = "Ceaseless Feast", text = { @@ -4854,14 +4906,14 @@ return { "for any fleeting pleasure which might dull the pain.", }, }, - [585] = { + [591] = { id = "UniqueGlovesStr12", name = "Kaom's Spirit", text = { "Who can tell when whispers are truly from a god?", }, }, - [586] = { + [592] = { id = "UniqueGlovesStr13", name = "The Celestial Brace", text = { @@ -4869,7 +4921,7 @@ return { "your courage will fail long before it does.", }, }, - [587] = { + [593] = { id = "UniqueGlovesStr14", name = "Admiral's Arrogance", text = { @@ -4877,7 +4929,7 @@ return { "to produce Admirals with, shall we say... quick tempers.\"", }, }, - [588] = { + [594] = { id = "UniqueGlovesStr15", name = "The Caged Mammoth", text = { @@ -4886,7 +4938,7 @@ return { "biding his time, waiting for his chance...", }, }, - [589] = { + [595] = { id = "UniqueGlovesStr2", name = "Meginord's Vise", text = { @@ -4895,7 +4947,7 @@ return { "live with honour.", }, }, - [590] = { + [596] = { id = "UniqueGlovesStr3", name = "Atziri's Acuity", text = { @@ -4904,7 +4956,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [591] = { + [597] = { id = "UniqueGlovesStr3x", name = "Replica Atziri's Acuity", text = { @@ -4912,7 +4964,7 @@ return { "and he has not stopped screaming for months...\"", }, }, - [592] = { + [598] = { id = "UniqueGlovesStr4", name = "Doryani's Fist", text = { @@ -4921,7 +4973,7 @@ return { "reduced it to ruins and bones.", }, }, - [593] = { + [599] = { id = "UniqueGlovesStr5", name = "Empire's Grasp", text = { @@ -4930,7 +4982,7 @@ return { "- Emperor Chitus", }, }, - [594] = { + [600] = { id = "UniqueGlovesStr6", name = "Winds of Change", text = { @@ -4939,7 +4991,7 @@ return { "a captain sailing his own ship into rocks.", }, }, - [595] = { + [601] = { id = "UniqueGlovesStr7", name = "Veruso's Battering Rams", text = { @@ -4947,7 +4999,7 @@ return { "then the constructs guarding the tomb on the other side.", }, }, - [596] = { + [602] = { id = "UniqueGlovesStr8", name = "Giantsbane", text = { @@ -4955,7 +5007,7 @@ return { "theirs were just bigger.", }, }, - [597] = { + [603] = { id = "UniqueGlovesStr9", name = "Craiceann's Pincers", text = { @@ -4964,7 +5016,7 @@ return { "and choose our moments to move wisely.", }, }, - [598] = { + [604] = { id = "UniqueGlovesStrDex1", name = "Slitherpinch", text = { @@ -4972,7 +5024,7 @@ return { "that slips about the neck, so tight.", }, }, - [599] = { + [605] = { id = "UniqueGlovesStrDex10", name = "Farrul's Pounce", text = { @@ -4982,14 +5034,14 @@ return { "that the largest prey can still be whittled away.", }, }, - [600] = { + [606] = { id = "UniqueGlovesStrDex12", name = "Worldcarver", text = { "Is it better to find new lands - or to create them?", }, }, - [601] = { + [607] = { id = "UniqueGlovesStrDex13", name = "Breathstealer", text = { @@ -4998,7 +5050,7 @@ return { "^8This item can be anointed by Cassia", }, }, - [602] = { + [608] = { id = "UniqueGlovesStrDex14", name = "Gravebind", text = { @@ -5007,7 +5059,7 @@ return { "You'll still know the truth.", }, }, - [603] = { + [609] = { id = "UniqueGlovesStrDex15", name = "Tanu Ahi", text = { @@ -5015,14 +5067,14 @@ return { "slashing and hewing with utmost abandon.", }, }, - [604] = { + [610] = { id = "UniqueGlovesStrDex2", name = "Aurseize", text = { "Wealth is not to be borne lightly.", }, }, - [605] = { + [611] = { id = "UniqueGlovesStrDex4", name = "Vaal Caress", text = { @@ -5031,7 +5083,7 @@ return { "- Doryani, First Seer to the Queen", }, }, - [606] = { + [612] = { id = "UniqueGlovesStrDex5", name = "Flesh and Spirit", text = { @@ -5039,7 +5091,7 @@ return { "for a sliver of life?", }, }, - [607] = { + [613] = { id = "UniqueGlovesStrDex6", name = "Surgebinders", text = { @@ -5049,7 +5101,7 @@ return { "The fire rises!", }, }, - [608] = { + [614] = { id = "UniqueGlovesStrDex7", name = "Wyrmsign", text = { @@ -5059,7 +5111,7 @@ return { "can be measured in seconds.", }, }, - [609] = { + [615] = { id = "UniqueGlovesStrDex8", name = "Haemophilia", text = { @@ -5068,28 +5120,28 @@ return { "- Coralito, Brotherhood of Silence", }, }, - [610] = { + [616] = { id = "UniqueGlovesStrInt1", name = "Shackles of the Wretched", text = { "Captivity breeds creativity.", }, }, - [611] = { + [617] = { id = "UniqueGlovesStrInt10", name = "Triad Grip", text = { "The secret of the elements lies within a square triangle.", }, }, - [612] = { + [618] = { id = "UniqueGlovesStrInt11", name = "Hands of the High Templar", text = { "The laws of the faith do not apply to its leader.", }, }, - [613] = { + [619] = { id = "UniqueGlovesStrInt12", name = "Hand of the Fervent", text = { @@ -5097,7 +5149,7 @@ return { "Let the righteous become the Hand of God.", }, }, - [614] = { + [620] = { id = "UniqueGlovesStrInt13", name = "The Hand of Phrecia", text = { @@ -5105,7 +5157,7 @@ return { "we must fight side by side as brothers.", }, }, - [615] = { + [621] = { id = "UniqueGlovesStrInt2", name = "Null and Void", text = { @@ -5113,7 +5165,7 @@ return { "in an unclean world?", }, }, - [616] = { + [622] = { id = "UniqueGlovesStrInt3", name = "Southbound", text = { @@ -5121,7 +5173,7 @@ return { "Below the snow, adrift wanderers sleep.", }, }, - [617] = { + [623] = { id = "UniqueGlovesStrInt4", name = "Repentance", text = { @@ -5132,7 +5184,7 @@ return { "- Anonymous carving, Axiom Prison.", }, }, - [618] = { + [624] = { id = "UniqueGlovesStrInt5", name = "Shaper's Touch", text = { @@ -5142,7 +5194,7 @@ return { "Nothing.", }, }, - [619] = { + [625] = { id = "UniqueGlovesStrInt6x", name = "Replica Volkuur's Guidance", text = { @@ -5150,7 +5202,7 @@ return { "are due to some unknown polarity we have yet to discover.\"", }, }, - [620] = { + [626] = { id = "UniqueGlovesStrInt7", name = "Saqawal's Winds", text = { @@ -5159,14 +5211,14 @@ return { "as he brought the flames to a standstill.", }, }, - [621] = { + [627] = { id = "UniqueGlovesStrInt8", name = "Command of the Pit", text = { "We serve only the Night.", }, }, - [622] = { + [628] = { id = "UniqueGlovesStrInt9", name = "Offering to the Serpent", text = { @@ -5175,28 +5227,28 @@ return { "- Vaal Myth of the Third Snake", }, }, - [623] = { + [629] = { id = "UniqueHelmStrInt7", name = "Voll's Vision", text = { "Righteous men seek virtue like tame pups seek praise.", }, }, - [624] = { + [630] = { id = "UniqueHelmStrInt8", name = "Malachai's Vision", text = { "Wicked men chase power like stray dogs chase a rat.", }, }, - [625] = { + [631] = { id = "UniqueHelmetDex10", name = "Assailum", text = { "A moment of calm before the battle can end the war.", }, }, - [626] = { + [632] = { id = "UniqueHelmetDex11", name = "Elevore", text = { @@ -5204,7 +5256,7 @@ return { "by a ravenous hunger for all things mystical.", }, }, - [627] = { + [633] = { id = "UniqueHelmetDex2x", name = "Replica Heatshiver", text = { @@ -5214,14 +5266,14 @@ return { "- Researcher Graven, infirmary report", }, }, - [628] = { + [634] = { id = "UniqueHelmetDex3", name = "Goldrim", text = { "No metal slips as easily through the fingers as gold.", }, }, - [629] = { + [635] = { id = "UniqueHelmetDex4", name = "Starkonja's Head", text = { @@ -5229,7 +5281,7 @@ return { "but merely a long sleep made eternal.", }, }, - [630] = { + [636] = { id = "UniqueHelmetDex5", name = "Alpha's Howl", text = { @@ -5238,7 +5290,7 @@ return { "With the blood of the weak", }, }, - [631] = { + [637] = { id = "UniqueHelmetDex5x", name = "Replica Alpha's Howl", text = { @@ -5246,7 +5298,7 @@ return { "failed. Suppression troop six, the 'Furious Flagellants,' have been sent to intervene.\"", }, }, - [632] = { + [638] = { id = "UniqueHelmetDex6", name = "Rat's Nest", text = { @@ -5257,14 +5309,14 @@ return { "Was naught but a vermin-filled nest!", }, }, - [633] = { + [639] = { id = "UniqueHelmetDex7", name = "Obscurantis", text = { "If you know where to strike, you need only strike once.", }, }, - [634] = { + [640] = { id = "UniqueHelmetDex8", name = "Saqawal's Flock", text = { @@ -5273,7 +5325,7 @@ return { "not division and greed, is what will carry us upwards.", }, }, - [635] = { + [641] = { id = "UniqueHelmetDex9", name = "Cowl of the Cryophile", text = { @@ -5282,7 +5334,7 @@ return { "^8This item can be anointed by Cassia", }, }, - [636] = { + [642] = { id = "UniqueHelmetDexInt1", name = "Malachai's Awakening", text = { @@ -5290,7 +5342,7 @@ return { "that animated the first Eternal Guardian.", }, }, - [637] = { + [643] = { id = "UniqueHelmetDexInt10", name = "Farrul's Bite", text = { @@ -5299,7 +5351,7 @@ return { "and where no weakness can be found, to create one.", }, }, - [638] = { + [644] = { id = "UniqueHelmetDexInt11", name = "Curtain Call", text = { @@ -5309,7 +5361,7 @@ return { "Before we all must die.", }, }, - [639] = { + [645] = { id = "UniqueHelmetDexInt12", name = "Fractal Thoughts", text = { @@ -5318,7 +5370,7 @@ return { "- Tenth Song of the Islands", }, }, - [640] = { + [646] = { id = "UniqueHelmetDexInt13", name = "Eye of Malice", text = { @@ -5326,20 +5378,20 @@ return { "peers a visitor from a realm of ill intent...", }, }, - [641] = { + [647] = { id = "UniqueHelmetDexInt14", name = "The Tempest's Liberation", text = { }, }, - [642] = { + [648] = { id = "UniqueHelmetDexInt15", name = "Willclash", text = { "Obtaining information depends upon pretending one already has it.", }, }, - [643] = { + [649] = { id = "UniqueHelmetDexInt16", name = "Glimpse of Chaos", text = { @@ -5347,21 +5399,30 @@ return { "only under the blessed veil of ignorance.", }, }, - [644] = { + [650] = { id = "UniqueHelmetDexInt17", name = "Akoya's Gaze", text = { "Fight in the traditional Way, or not at all!", }, }, - [645] = { + [651] = { + id = "UniqueHelmetDexInt18", + name = "The Unblinking Eye", + text = { + "The High Templar sought sight beyond the mortal plane.", + "He feared no pain but that of touching greatness,", + "only to let it slip through his grasp.", + }, + }, + [652] = { id = "UniqueHelmetDexInt2", name = "Leer Cast", text = { "For none of us are as cruel as all of us.", }, }, - [646] = { + [653] = { id = "UniqueHelmetDexInt2x", name = "Replica Leer Cast", text = { @@ -5369,7 +5430,7 @@ return { "common with Thought Extractor technology.\"", }, }, - [647] = { + [654] = { id = "UniqueHelmetDexInt3", name = "The Gull", text = { @@ -5380,7 +5441,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [648] = { + [655] = { id = "UniqueHelmetDexInt4", name = "The Three Dragons", text = { @@ -5391,7 +5452,7 @@ return { "- From 'The Three Dragons' by Victario of Sarn", }, }, - [649] = { + [656] = { id = "UniqueHelmetDexInt5", name = "The Vertex", text = { @@ -5399,7 +5460,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [650] = { + [657] = { id = "UniqueHelmetDexInt6", name = "Crown of the Pale King", text = { @@ -5409,7 +5470,7 @@ return { "feed on your pain.", }, }, - [651] = { + [658] = { id = "UniqueHelmetDexInt7", name = "Heretic's Veil", text = { @@ -5419,13 +5480,13 @@ return { "Carry your blade into their hearts.", }, }, - [652] = { + [659] = { id = "UniqueHelmetDexInt8", name = "The Tempest's Binding", text = { }, }, - [653] = { + [660] = { id = "UniqueHelmetDexInt9", name = "Gorgon's Gaze", text = { @@ -5433,14 +5494,14 @@ return { "and broke when they hit the ground.", }, }, - [654] = { + [661] = { id = "UniqueHelmetExpedition1", name = "Faithguard", text = { "The priests of the Kalguur worshipped knowledge, not gods.", }, }, - [655] = { + [662] = { id = "UniqueHelmetExpedition2", name = "Cadigan's Crown", text = { @@ -5448,7 +5509,7 @@ return { "through the iron might of artifice.", }, }, - [656] = { + [663] = { id = "UniqueHelmetInt10", name = "Ylfeban's Trickery", text = { @@ -5457,7 +5518,7 @@ return { "with an unpredictable sense of humour.", }, }, - [657] = { + [664] = { id = "UniqueHelmetInt11", name = "Mind of the Council", text = { @@ -5465,7 +5526,7 @@ return { "We know all that you think.", }, }, - [658] = { + [665] = { id = "UniqueHelmetInt12", name = "Eber's Unification", text = { @@ -5475,7 +5536,7 @@ return { "and inexorably we inch towards oneness.", }, }, - [659] = { + [666] = { id = "UniqueHelmetInt13", name = "Wraithlord", text = { @@ -5483,7 +5544,7 @@ return { "and each one succumbed to it.", }, }, - [660] = { + [667] = { id = "UniqueHelmetInt14", name = "Indigon", text = { @@ -5491,7 +5552,7 @@ return { "the mind's limits end.", }, }, - [661] = { + [668] = { id = "UniqueHelmetInt15", name = "Mark of the Red Covenant", text = { @@ -5499,7 +5560,7 @@ return { "who bask in the blood of the many.", }, }, - [662] = { + [669] = { id = "UniqueHelmetInt16", name = "Fenumus' Toxins", text = { @@ -5509,7 +5570,7 @@ return { "and used her enemies to strengthen her many children.", }, }, - [663] = { + [670] = { id = "UniqueHelmetInt17", name = "Hale Negator", text = { @@ -5517,35 +5578,35 @@ return { "Feel the doom of dying souls.\"", }, }, - [664] = { + [671] = { id = "UniqueHelmetInt19a", name = "Flamesight", text = { "See creation as it was, aflame and frantic.", }, }, - [665] = { + [672] = { id = "UniqueHelmetInt19b", name = "Galesight", text = { "See creation as it will be, frozen and silent.", }, }, - [666] = { + [673] = { id = "UniqueHelmetInt19c", name = "Thundersight", text = { "See creation as it is, energetic and storming.", }, }, - [667] = { + [674] = { id = "UniqueHelmetInt20", name = "The Devouring Diadem", text = { "The spirit hungers for the flesh.", }, }, - [668] = { + [675] = { id = "UniqueHelmetInt21", name = "Maw of Conquest", text = { @@ -5555,14 +5616,14 @@ return { "A Leader. A Conquerer. A Viper.", }, }, - [669] = { + [676] = { id = "UniqueHelmetInt22", name = "Wreath of Phrecia", text = { "The Light drove the darkness from our lands and from our hearts.", }, }, - [670] = { + [677] = { id = "UniqueHelmetInt23", name = "Cowl of the Ceraunophile", text = { @@ -5571,14 +5632,14 @@ return { "^8This item can be anointed by Cassia", }, }, - [671] = { + [678] = { id = "UniqueHelmetInt24", name = "Plume of Pursuit", text = { "A dance as old as time.", }, }, - [672] = { + [679] = { id = "UniqueHelmetInt25", name = "Sudden Dawn", text = { @@ -5586,7 +5647,7 @@ return { "We sought the shadows, but none remained.", }, }, - [673] = { + [680] = { id = "UniqueHelmetInt26", name = "Wilma's Requital", text = { @@ -5597,14 +5658,14 @@ return { "-Franklin", }, }, - [674] = { + [681] = { id = "UniqueHelmetInt27", name = "Sandstorm Visage", text = { "A fell wind brings death.", }, }, - [675] = { + [682] = { id = "UniqueHelmetInt28", name = "The Dark Monarch", text = { @@ -5613,14 +5674,14 @@ return { "- Saresh, last words, to Sekhema Orbala", }, }, - [676] = { + [683] = { id = "UniqueHelmetInt4", name = "Rime Gaze", text = { "The malice in her gaze froze blood and shattered bone.", }, }, - [677] = { + [684] = { id = "UniqueHelmetInt7", name = "Crown of Eyes", text = { @@ -5630,7 +5691,7 @@ return { "your mind is destroyed.", }, }, - [678] = { + [685] = { id = "UniqueHelmetInt8", name = "Scold's Bridle", text = { @@ -5639,7 +5700,7 @@ return { "- Shavronne of Umbra", }, }, - [679] = { + [686] = { id = "UniqueHelmetInt9", name = "Doedre's Scorn", text = { @@ -5647,7 +5708,7 @@ return { "A scar of the mind you'll never remember.", }, }, - [680] = { + [687] = { id = "UniqueHelmetStr1", name = "Ezomyte Hold", text = { @@ -5655,7 +5716,7 @@ return { "of glory, an eternity of death.", }, }, - [681] = { + [688] = { id = "UniqueHelmetStr10", name = "Thrillsteel", text = { @@ -5663,14 +5724,14 @@ return { "moments of blood and battle, we truly live.", }, }, - [682] = { + [689] = { id = "UniqueHelmetStr11", name = "Blood Price", text = { "An eye for an eye makes the whole world dead.", }, }, - [683] = { + [690] = { id = "UniqueHelmetStr12", name = "Kaom's Command", text = { @@ -5678,7 +5739,7 @@ return { "There would be no rest or honours for the wicked.", }, }, - [684] = { + [691] = { id = "UniqueHelmetStr3", name = "Abyssus", text = { @@ -5686,7 +5747,7 @@ return { "what is left to fear?", }, }, - [685] = { + [692] = { id = "UniqueHelmetStr3x", name = "Replica Abyssus", text = { @@ -5694,7 +5755,7 @@ return { "the first researcher to don it burst into flames when he walked into sunlight...\"", }, }, - [686] = { + [693] = { id = "UniqueHelmetStr4", name = "The Formless Flame", text = { @@ -5702,14 +5763,14 @@ return { "and we are swallowed by his brilliant red light.", }, }, - [687] = { + [694] = { id = "UniqueHelmetStr5", name = "The Formless Inferno", text = { "He burns us to keep us from harm.", }, }, - [688] = { + [695] = { id = "UniqueHelmetStr6", name = "The Baron", text = { @@ -5717,7 +5778,7 @@ return { "practice the dark arts. Some of us are just more discreet.\"", }, }, - [689] = { + [696] = { id = "UniqueHelmetStr7", name = "Cowl of the Thermophile", text = { @@ -5726,14 +5787,14 @@ return { "^8This item can be anointed by Cassia", }, }, - [690] = { + [697] = { id = "UniqueHelmetStr8", name = "Usurper's Penance", text = { "Bloodlust begets suffering.", }, }, - [691] = { + [698] = { id = "UniqueHelmetStr9", name = "Echoes of Creation", text = { @@ -5742,7 +5803,7 @@ return { "Inflicting pain beyond measure", }, }, - [692] = { + [699] = { id = "UniqueHelmetStrDex10", name = "El'Abin's Visage", text = { @@ -5752,7 +5813,7 @@ return { "- El'Abin, Bloodeater", }, }, - [693] = { + [700] = { id = "UniqueHelmetStrDex11", name = "The Trickster's Smile", text = { @@ -5760,7 +5821,7 @@ return { "He merely grinned... and the foolish warrior charged.", }, }, - [694] = { + [701] = { id = "UniqueHelmetStrDex12", name = "The Devourer of Minds", text = { @@ -5768,7 +5829,7 @@ return { "but hollow husks filled with virulent void...", }, }, - [695] = { + [702] = { id = "UniqueHelmetStrDex2", name = "Devoto's Devotion", text = { @@ -5776,14 +5837,14 @@ return { "when borne on wings of divine providence.", }, }, - [696] = { + [703] = { id = "UniqueHelmetStrDex3", name = "Deidbellow", text = { "May you never hear it toll.", }, }, - [697] = { + [704] = { id = "UniqueHelmetStrDex4", name = "The Bringer of Rain", text = { @@ -5791,7 +5852,7 @@ return { "\"Sacred ground, watered with tears of blood!\"", }, }, - [698] = { + [705] = { id = "UniqueHelmetStrDex5", name = "Skullhead", text = { @@ -5799,7 +5860,7 @@ return { "Yet it was all the Iron King needed.", }, }, - [699] = { + [706] = { id = "UniqueHelmetStrDex6", name = "Black Sun Crest", text = { @@ -5807,14 +5868,14 @@ return { "are the ones who dwell in total darkness.", }, }, - [700] = { + [707] = { id = "UniqueHelmetStrDex8", name = "Crest of Desire", text = { "Expand one single ambition to crystal clarity... and beyond.", }, }, - [701] = { + [708] = { id = "UniqueHelmetStrDex9", name = "The Fledgling", text = { @@ -5822,7 +5883,7 @@ return { "must be preceded by ten thousand practice shots.", }, }, - [702] = { + [709] = { id = "UniqueHelmetStrInt1", name = "Honourhome", text = { @@ -5831,7 +5892,7 @@ return { "- Malachai the Soulless", }, }, - [703] = { + [710] = { id = "UniqueHelmetStrInt10", name = "Memory Vault", text = { @@ -5839,7 +5900,7 @@ return { "Let no one cross.", }, }, - [704] = { + [711] = { id = "UniqueHelmetStrInt12", name = "Craiceann's Chitin", text = { @@ -5848,7 +5909,7 @@ return { "that we should seek no shelter but ourselves.", }, }, - [705] = { + [712] = { id = "UniqueHelmetStrInt13", name = "Mask of the Spirit Drinker", text = { @@ -5858,7 +5919,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Summoning", }, }, - [706] = { + [713] = { id = "UniqueHelmetStrInt14", name = "Mask of the Stitched Demon", text = { @@ -5867,7 +5928,7 @@ return { "It is our duty to return to the gods what was once theirs.", }, }, - [707] = { + [714] = { id = "UniqueHelmetStrInt15", name = "Crown of the Tyrant", text = { @@ -5876,28 +5937,28 @@ return { "If it's the former, they will tear you into pieces like rabid dogs.", }, }, - [708] = { + [715] = { id = "UniqueHelmetStrInt16", name = "Mask of the Tribunal", text = { "The judge determines worthiness by comparison to the paragon: himself.", }, }, - [709] = { + [716] = { id = "UniqueHelmetStrInt17", name = "Crown of the Inward Eye", text = { "Divinity is not the only path to enlightenment.", }, }, - [710] = { + [717] = { id = "UniqueHelmetStrInt18", name = "Forbidden Shako", text = { "The Azmeri must never touch the Tears of Maji, lest Viridi weep.", }, }, - [711] = { + [718] = { id = "UniqueHelmetStrInt18x", name = "Replica Forbidden Shako", text = { @@ -5906,7 +5967,7 @@ return { "for the rest of my life.\" - Researcher Graven", }, }, - [712] = { + [719] = { id = "UniqueHelmetStrInt19", name = "Maw of Mischief", text = { @@ -5915,7 +5976,7 @@ return { "is as thin as a whisper.", }, }, - [713] = { + [720] = { id = "UniqueHelmetStrInt2", name = "Geofri's Legacy", text = { @@ -5923,7 +5984,7 @@ return { "Not so, the battle for survival.", }, }, - [714] = { + [721] = { id = "UniqueHelmetStrInt20", name = "Viridi's Veil", text = { @@ -5932,7 +5993,7 @@ return { "- Azmerian Creation Myth", }, }, - [715] = { + [722] = { id = "UniqueHelmetStrInt21", name = "Ancient Skull", text = { @@ -5940,7 +6001,7 @@ return { "of the stars to return and swallow the world.", }, }, - [716] = { + [723] = { id = "UniqueHelmetStrInt22", name = "Ravenous Passion", text = { @@ -5948,7 +6009,7 @@ return { "consume all that you have... and more.", }, }, - [717] = { + [724] = { id = "UniqueHelmetStrInt24", name = "Refuge in Isolation", text = { @@ -5956,7 +6017,7 @@ return { "the pain of heartbreak might just destroy us.", }, }, - [718] = { + [725] = { id = "UniqueHelmetStrInt25", name = "The Hallowed Monarch", text = { @@ -5966,14 +6027,14 @@ return { "- Sekhema Orbala, to be crowned Garukhan", }, }, - [719] = { + [726] = { id = "UniqueHelmetStrInt3", name = "Mindspiral", text = { "Where top is bottom and weak is strong.", }, }, - [720] = { + [727] = { id = "UniqueHelmetStrInt4", name = "Veil of the Night", text = { @@ -5983,7 +6044,7 @@ return { "And bloom steel flowers of victory.", }, }, - [721] = { + [728] = { id = "UniqueHelmetStrInt4x", name = "Replica Veil of the Night", text = { @@ -5991,14 +6052,14 @@ return { "entirely. The visions it shows the wearer... are beyond mortal endurance...\"", }, }, - [722] = { + [729] = { id = "UniqueHelmetStrInt5", name = "The Broken Crown", text = { "Every rule has an exception.", }, }, - [723] = { + [730] = { id = "UniqueHelmetStrInt6", name = "Kitava's Thirst", text = { @@ -6008,7 +6069,7 @@ return { "and Kitava swallowed the entire lake, fish and all, with a single gulp.", }, }, - [724] = { + [731] = { id = "UniqueHelmetStrInt7", name = "Speaker's Wreath", text = { @@ -6017,7 +6078,7 @@ return { "can take you to the edge of the world.", }, }, - [725] = { + [732] = { id = "UniqueHelmetStrInt8", name = "The Brine Crown", text = { @@ -6026,7 +6087,7 @@ return { "not through force, but patience.", }, }, - [726] = { + [733] = { id = "UniqueHelmetStrInt9", name = "Ahn's Contempt", text = { @@ -6035,7 +6096,7 @@ return { "- Icius Perandus, Antiquities Collection, Item 48", }, }, - [727] = { + [734] = { id = "UniqueHelmetWreath1", name = "Demigod's Triumph", text = { @@ -6043,7 +6104,7 @@ return { "no master other than your own ambition.", }, }, - [728] = { + [735] = { id = "UniqueIntHelmet1", name = "Martyr's Crown", text = { @@ -6051,7 +6112,7 @@ return { "The spikes point out and in, you know.", }, }, - [729] = { + [736] = { id = "UniqueIntHelmet2", name = "Asenath's Chant", text = { @@ -6059,7 +6120,7 @@ return { "as the fingers that drew her bowstring.", }, }, - [730] = { + [737] = { id = "UniqueIntHelmet3", name = "Chitus' Apex", text = { @@ -6068,7 +6129,7 @@ return { "- Emperor Chitus", }, }, - [731] = { + [738] = { id = "UniqueJewel1", name = "To Dust", text = { @@ -6076,14 +6137,14 @@ return { "It just comes for some much sooner.", }, }, - [732] = { + [739] = { id = "UniqueJewel10", name = "Survival Secrets", text = { "Nature provides its own solutions.", }, }, - [733] = { + [740] = { id = "UniqueJewel100", name = "Ring of Blades", text = { @@ -6091,7 +6152,7 @@ return { "his thoughts remained in the one place he called his own: The Grand Arena.", }, }, - [734] = { + [741] = { id = "UniqueJewel102", name = "Inevitability", text = { @@ -6101,7 +6162,7 @@ return { "None could stop it.", }, }, - [735] = { + [742] = { id = "UniqueJewel103", name = "Winter Burial", text = { @@ -6111,7 +6172,7 @@ return { "that the elite were all too happy to sustain.", }, }, - [736] = { + [743] = { id = "UniqueJewel104", name = "Spreading Rot", text = { @@ -6119,7 +6180,7 @@ return { "The dead lingered, and the living began to rot.", }, }, - [737] = { + [744] = { id = "UniqueJewel105", name = "Violent Dead", text = { @@ -6127,7 +6188,7 @@ return { "- Kadavrus, Surgeon to the Umbra", }, }, - [738] = { + [745] = { id = "UniqueJewel106", name = "Hazardous Research", text = { @@ -6135,7 +6196,7 @@ return { "The simple passage of energy from one to another could result in profound power, or rapid death.", }, }, - [739] = { + [746] = { id = "UniqueJewel107", name = "From Dust", text = { @@ -6145,7 +6206,7 @@ return { "and in this way the crematorium guaranteed it would have many customers.", }, }, - [740] = { + [747] = { id = "UniqueJewel11", name = "Fertile Mind", text = { @@ -6156,7 +6217,7 @@ return { "- Maraketh Proverb", }, }, - [741] = { + [748] = { id = "UniqueJewel110", name = "The Long Winter", text = { @@ -6166,7 +6227,7 @@ return { "that lay dormant deep beneath the earth.", }, }, - [742] = { + [749] = { id = "UniqueJewel111", name = "Pure Talent", text = { @@ -6174,7 +6235,7 @@ return { "The talented know who to learn from.", }, }, - [743] = { + [750] = { id = "UniqueJewel111x", name = "Replica Pure Talent", text = { @@ -6182,21 +6243,21 @@ return { "Was it worth the expense? Only time will tell.\"", }, }, - [744] = { + [751] = { id = "UniqueJewel112", name = "Might of the Meek", text = { "Enough mice can kill a wolf.", }, }, - [745] = { + [752] = { id = "UniqueJewel113", name = "The Golden Rule", text = { "Hurt as you would be hurt.", }, }, - [746] = { + [753] = { id = "UniqueJewel114", name = "Soul's Wick", text = { @@ -6206,7 +6267,7 @@ return { "Their light is fleeting, as a dream...", }, }, - [747] = { + [754] = { id = "UniqueJewel115", name = "Watcher's Eye", text = { @@ -6215,7 +6276,7 @@ return { "and one by one, they became a part of it.", }, }, - [748] = { + [755] = { id = "UniqueJewel116", name = "Tempered Flesh", text = { @@ -6224,7 +6285,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Transcendence", }, }, - [749] = { + [756] = { id = "UniqueJewel117", name = "Tempered Spirit", text = { @@ -6233,7 +6294,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Transcendence", }, }, - [750] = { + [757] = { id = "UniqueJewel118", name = "Tempered Mind", text = { @@ -6242,7 +6303,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Transcendence", }, }, - [751] = { + [758] = { id = "UniqueJewel119", name = "Transcendent Flesh", text = { @@ -6250,7 +6311,7 @@ return { "as what is done to us.", }, }, - [752] = { + [759] = { id = "UniqueJewel120", name = "Transcendent Spirit", text = { @@ -6258,7 +6319,7 @@ return { "we may serve our Queen and fuel her empire.", }, }, - [753] = { + [760] = { id = "UniqueJewel121", name = "Transcendent Mind", text = { @@ -6267,7 +6328,7 @@ return { "and is dangerous in a way that others are not.", }, }, - [754] = { + [761] = { id = "UniqueJewel122", name = "Combat Focus", text = { @@ -6277,7 +6338,7 @@ return { "But when his foot hit the sand, he thought only of the fight.", }, }, - [755] = { + [762] = { id = "UniqueJewel123", name = "Combat Focus", text = { @@ -6288,7 +6349,7 @@ return { "But when the arena gate lifted, he thought only of the fight.", }, }, - [756] = { + [763] = { id = "UniqueJewel124", name = "Combat Focus", text = { @@ -6298,7 +6359,7 @@ return { "But as Chitus and his gemlings advanced, he thought only of the fight.", }, }, - [757] = { + [764] = { id = "UniqueJewel125", name = "Unnatural Instinct", text = { @@ -6306,49 +6367,49 @@ return { "I just know that I know.\"", }, }, - [758] = { + [765] = { id = "UniqueJewel128", name = "Glorious Vanity", text = { "They believed themselves the pinnacle of civilisation, but that height toppled their empire.", }, }, - [759] = { + [766] = { id = "UniqueJewel129", name = "Lethal Pride", text = { "They believed themselves the greatest warriors, but that savagery turned upon their own.", }, }, - [760] = { + [767] = { id = "UniqueJewel13", name = "Fluid Motion", text = { "Even the strongest of steel can be made to bend.", }, }, - [761] = { + [768] = { id = "UniqueJewel130", name = "Brutal Restraint", text = { "They believed themselves the most ordered, but that tradition turned their forests to salt.", }, }, - [762] = { + [769] = { id = "UniqueJewel131", name = "Militant Faith", text = { "They believed themselves the utmost faithful, but that conviction became oppression.", }, }, - [763] = { + [770] = { id = "UniqueJewel132", name = "Elegant Hubris", text = { "They believed themselves better than the past, but that confidence brought about nightmare.", }, }, - [764] = { + [771] = { id = "UniqueJewel133", name = "Seething Fury", text = { @@ -6357,14 +6418,14 @@ return { "perfect moment to reveal the true depth of the Empire's folly.", }, }, - [765] = { + [772] = { id = "UniqueJewel136", name = "Thread of Hope", text = { "Though we cannot touch; one thought, one wish, through centuries alone in darkness.", }, }, - [766] = { + [773] = { id = "UniqueJewel137", name = "Kitava's Teachings", text = { @@ -6372,7 +6433,7 @@ return { "For there may never be another chance to eat.", }, }, - [767] = { + [774] = { id = "UniqueJewel138", name = "Calamitous Visions", text = { @@ -6382,7 +6443,7 @@ return { "And each sound tangled with pleas for mercy.\"", }, }, - [768] = { + [775] = { id = "UniqueJewel139", name = "Natural Affinity", text = { @@ -6390,7 +6451,7 @@ return { "but you can't take the woods out of the girl.", }, }, - [769] = { + [776] = { id = "UniqueJewel140", name = "The Interrogation", text = { @@ -6399,7 +6460,7 @@ return { "Fear of pain unknown has no parallel.", }, }, - [770] = { + [777] = { id = "UniqueJewel141", name = "The Siege", text = { @@ -6408,7 +6469,7 @@ return { "And stood her ground.", }, }, - [771] = { + [778] = { id = "UniqueJewel143", name = "The Front Line", text = { @@ -6416,7 +6477,7 @@ return { "You ensure you can't live without them.", }, }, - [772] = { + [779] = { id = "UniqueJewel144", name = "One With Nothing", text = { @@ -6424,28 +6485,28 @@ return { "The few that survived the initial charge were guaranteed fame and fortune.", }, }, - [773] = { + [780] = { id = "UniqueJewel145", name = "Split Personality", text = { "You need not go looking for a second opinion.", }, }, - [774] = { + [781] = { id = "UniqueJewel146", name = "Megalomaniac", text = { "If you're going to act like you're better than everyone else, make sure you are.", }, }, - [775] = { + [782] = { id = "UniqueJewel147", name = "Voices", text = { "Only a madman would ignore a god's instructions.", }, }, - [776] = { + [783] = { id = "UniqueJewel148", name = "Endless Misery", text = { @@ -6455,7 +6516,7 @@ return { "Civilisation was not simply halted, but reversed, erased.", }, }, - [777] = { + [784] = { id = "UniqueJewel149", name = "Lord of Steel", text = { @@ -6464,7 +6525,7 @@ return { "The sabre's tip reaching out, grasping for life.", }, }, - [778] = { + [785] = { id = "UniqueJewel15", name = "Spire of Stone", text = { @@ -6473,7 +6534,7 @@ return { "after their creators had been buried deep beneath the earth.", }, }, - [779] = { + [786] = { id = "UniqueJewel150", name = "Lord of Steel", text = { @@ -6482,7 +6543,7 @@ return { "But when it breaks, its service will continue.", }, }, - [780] = { + [787] = { id = "UniqueJewel151", name = "Lord of Steel", text = { @@ -6493,49 +6554,49 @@ return { "She knows the path well.", }, }, - [781] = { + [788] = { id = "UniqueJewel152", name = "Apex Mode", text = { "Maximum power fueled by science gone mad.", }, }, - [782] = { + [789] = { id = "UniqueJewel153", name = "Nadir Mode", text = { "Indiscriminate destruction fueled by science gone mad.", }, }, - [783] = { + [790] = { id = "UniqueJewel154", name = "Tecrod's Gaze", text = { "The Hated Slave seeks dominion over his own kind.", }, }, - [784] = { + [791] = { id = "UniqueJewel155", name = "Ulaman's Gaze", text = { "The Sovereign of the Well seeks dominion over the light.", }, }, - [785] = { + [792] = { id = "UniqueJewel156", name = "Kurgal's Gaze", text = { "The Blackblooded seeks dominion over darkness itself.", }, }, - [786] = { + [793] = { id = "UniqueJewel157", name = "Amanamu's Gaze", text = { "The Liege of the Lightless seeks dominion over the surface dwellers.", }, }, - [787] = { + [794] = { id = "UniqueJewel158", name = "Melding of the Flesh", text = { @@ -6544,7 +6605,7 @@ return { "then rose into the living sky. My family screams alongside me still.\"", }, }, - [788] = { + [795] = { id = "UniqueJewel159", name = "Dissolution of the Flesh", text = { @@ -6553,7 +6614,7 @@ return { "A great eye gazed upon us, and we became known—utterly.\"", }, }, - [789] = { + [796] = { id = "UniqueJewel16", name = "Quickening Covenant", text = { @@ -6561,7 +6622,7 @@ return { "sometimes things get a little stuck in between.", }, }, - [790] = { + [797] = { id = "UniqueJewel160", name = "Forbidden Flame", text = { @@ -6569,7 +6630,7 @@ return { "continue to think and dream and beg for silence...", }, }, - [791] = { + [798] = { id = "UniqueJewel161", name = "Forbidden Flesh", text = { @@ -6577,7 +6638,7 @@ return { "continue to merge and mutate and cry out for release...", }, }, - [792] = { + [799] = { id = "UniqueJewel162", name = "Divine Inferno", text = { @@ -6587,7 +6648,7 @@ return { "but using it had cost him absolutely everything.", }, }, - [793] = { + [800] = { id = "UniqueJewel163", name = "Impossible Escape", text = { @@ -6596,7 +6657,7 @@ return { "for supremacy. She alone reached her limit... and broke through.", }, }, - [794] = { + [801] = { id = "UniqueJewel164", name = "Sublime Vision", text = { @@ -6605,56 +6666,56 @@ return { "matters but the pursuit of perfection.", }, }, - [795] = { + [802] = { id = "UniqueJewel165", name = "Grand Spectrum", text = { "A wellspring of vitality bubbling from within.", }, }, - [796] = { + [803] = { id = "UniqueJewel166", name = "Grand Spectrum", text = { "A mountain fortress safe from the storm.", }, }, - [797] = { + [804] = { id = "UniqueJewel167", name = "Grand Spectrum", text = { "A mass of flesh writhing with savage fury.", }, }, - [798] = { + [805] = { id = "UniqueJewel168", name = "Grand Spectrum", text = { "A body that never falters.", }, }, - [799] = { + [806] = { id = "UniqueJewel169", name = "Grand Spectrum", text = { "A spirit that never rests.", }, }, - [800] = { + [807] = { id = "UniqueJewel17", name = "Mantra of Flames", text = { "The strong grow stronger still.", }, }, - [801] = { + [808] = { id = "UniqueJewel170", name = "Grand Spectrum", text = { "A mind that never quiets.", }, }, - [802] = { + [809] = { id = "UniqueJewel171", name = "Rational Doctrine", text = { @@ -6663,7 +6724,7 @@ return { "But can they not be one and the same?", }, }, - [803] = { + [810] = { id = "UniqueJewel172", name = "Immutable Force", text = { @@ -6671,7 +6732,7 @@ return { "when one man stands firm and says, \"I refuse.\"", }, }, - [804] = { + [811] = { id = "UniqueJewel173", name = "Stormshroud", text = { @@ -6679,7 +6740,7 @@ return { "is that all are one and the same.", }, }, - [805] = { + [812] = { id = "UniqueJewel174", name = "Firesong", text = { @@ -6688,7 +6749,7 @@ return { "For the master of fire fears nothing.", }, }, - [806] = { + [813] = { id = "UniqueJewel175", name = "Witchbane", text = { @@ -6699,7 +6760,7 @@ return { "And so becomes part of her stew.", }, }, - [807] = { + [814] = { id = "UniqueJewel176", name = "The Balance of Terror", text = { @@ -6708,7 +6769,7 @@ return { "For one to rise, the other must fall.", }, }, - [808] = { + [815] = { id = "UniqueJewel177", name = "Ancestral Vision", text = { @@ -6716,7 +6777,7 @@ return { "Inextricably, the purity of our souls is linked to the ones who came before us.", }, }, - [809] = { + [816] = { id = "UniqueJewel178", name = "Bloodnotch", text = { @@ -6725,14 +6786,14 @@ return { "igniting their capacity to endure.", }, }, - [810] = { + [817] = { id = "UniqueJewel179", name = "Warrior's Tale", text = { "The story of a life, written in blood and ink.", }, }, - [811] = { + [818] = { id = "UniqueJewel18", name = "Fortress Covenant", text = { @@ -6740,7 +6801,7 @@ return { "you only make the wall grow thicker.", }, }, - [812] = { + [819] = { id = "UniqueJewel180", name = "The Adorned", text = { @@ -6749,14 +6810,14 @@ return { "now nothing more than a passing wonder.", }, }, - [813] = { + [820] = { id = "UniqueJewel181", name = "The Light of Meaning", text = { "Faith given under false pretenses still carries the same power.", }, }, - [814] = { + [821] = { id = "UniqueJewel182", name = "The Perandus Pact", text = { @@ -6764,7 +6825,7 @@ return { "to turn even great misfortunes into golden opportunities.", }, }, - [815] = { + [822] = { id = "UniqueJewel184", name = "Bound By Destiny", text = { @@ -6772,7 +6833,7 @@ return { "driven by the passions and tragedies of those who seek.", }, }, - [816] = { + [823] = { id = "UniqueJewel185", name = "Heroic Tragedy", text = { @@ -6780,7 +6841,47 @@ return { "but that bravery became the doom at their door.", }, }, - [817] = { + [824] = { + id = "UniqueJewel186a", + name = "Festering Vengeance", + text = { + "He lusts for retribution, but his", + "captors are long since dust.", + }, + }, + [825] = { + id = "UniqueJewel186b", + name = "Extinguishing Grasp", + text = { + "He lusts for the Fall of Night,", + "but it will cost him everything.", + }, + }, + [826] = { + id = "UniqueJewel186c", + name = "Baleful Dominion", + text = { + "He lusts for power over his former", + "slavers, but he will never be free.", + }, + }, + [827] = { + id = "UniqueJewel186d", + name = "Destructive Aspiration", + text = { + "He lusts for a crown and a scepter,", + "but he destroys all he touches.", + }, + }, + [828] = { + id = "UniqueJewel186e", + name = "Reclaimed Malevolence", + text = { + "He who was made has but one desire: inflict his", + "malady upon the Boundless Cavern above.", + }, + }, + [829] = { id = "UniqueJewel2", name = "Eldritch Knowledge", text = { @@ -6789,14 +6890,14 @@ return { "- Shavronne of Umbra", }, }, - [818] = { + [830] = { id = "UniqueJewel20", name = "Hotheaded", text = { "It's hard to stay still when you're engulfed in flames.", }, }, - [819] = { + [831] = { id = "UniqueJewel20x", name = "Replica Hotheaded", text = { @@ -6805,7 +6906,7 @@ return { "- Lead Researcher Ksaret", }, }, - [820] = { + [832] = { id = "UniqueJewel24", name = "Fragile Bloom", text = { @@ -6813,14 +6914,14 @@ return { "and the most vulnerable.", }, }, - [821] = { + [833] = { id = "UniqueJewel24x", name = "Replica Fragile Bloom", text = { "\"Distribute Prototype #723 to the guards. Perhaps their survival rate will increase.\"", }, }, - [822] = { + [834] = { id = "UniqueJewel25", name = "Hidden Potential", text = { @@ -6828,7 +6929,7 @@ return { "is what they see when they look at the same block of wood.", }, }, - [823] = { + [835] = { id = "UniqueJewel26", name = "Rain of Splinters", text = { @@ -6837,14 +6938,14 @@ return { "- Ancient Karui Proverb", }, }, - [824] = { + [836] = { id = "UniqueJewel28", name = "Malicious Intent", text = { "Each life taken makes the next a little easier.", }, }, - [825] = { + [837] = { id = "UniqueJewel29", name = "Brawn", text = { @@ -6854,7 +6955,7 @@ return { "- Barkhul, the Butcher", }, }, - [826] = { + [838] = { id = "UniqueJewel3", name = "Inspired Learning", text = { @@ -6862,21 +6963,21 @@ return { "then you have already lost the war.", }, }, - [827] = { + [839] = { id = "UniqueJewel30", name = "Clear Mind", text = { "When your thoughts flow like a river, why build a dam?", }, }, - [828] = { + [840] = { id = "UniqueJewel34", name = "Efficient Training", text = { "Working smart and working hard aren't mutually exclusive.", }, }, - [829] = { + [841] = { id = "UniqueJewel35", name = "Brute Force Solution", text = { @@ -6884,7 +6985,7 @@ return { "Breaking it with a hammer takes about three seconds.", }, }, - [830] = { + [842] = { id = "UniqueJewel36", name = "Careful Planning", text = { @@ -6895,77 +6996,77 @@ return { "- History of the Maraketh", }, }, - [831] = { + [843] = { id = "UniqueJewel37", name = "Inertia", text = { "There is no force without movement.", }, }, - [832] = { + [844] = { id = "UniqueJewel4", name = "Martial Artistry", text = { "A gentle hand rarely leaves a mark on the world.", }, }, - [833] = { + [845] = { id = "UniqueJewel41", name = "Poacher's Aim", text = { "A sharp eye can be more deadly than a sharp blade.", }, }, - [834] = { + [846] = { id = "UniqueJewel42", name = "Warlord's Reach", text = { "A steady hand can hold back an army.", }, }, - [835] = { + [847] = { id = "UniqueJewel43", name = "Assassin's Haste", text = { "A quick step can advance great plans.", }, }, - [836] = { + [848] = { id = "UniqueJewel44", name = "Conqueror's Efficiency", text = { "The stone may yet bleed.", }, }, - [837] = { + [849] = { id = "UniqueJewel44x", name = "Replica Conqueror's Efficiency", text = { "\"The effect is subtle, but potentially lethal...\"", }, }, - [838] = { + [850] = { id = "UniqueJewel45", name = "Conqueror's Potency", text = { "What you earn is almost as important as what you take.", }, }, - [839] = { + [851] = { id = "UniqueJewel46", name = "Conqueror's Longevity", text = { "Victory is as simple as being the last one standing.", }, }, - [840] = { + [852] = { id = "UniqueJewel47", name = "Pugilist", text = { "The best dancers often make the best fighters.", }, }, - [841] = { + [853] = { id = "UniqueJewel48", name = "Cold Steel", text = { @@ -6973,7 +7074,7 @@ return { "hanging from the eaves of our homes.", }, }, - [842] = { + [854] = { id = "UniqueJewel49", name = "Fireborn", text = { @@ -6981,7 +7082,7 @@ return { "Leaders are born in ruins and flames.", }, }, - [843] = { + [855] = { id = "UniqueJewel5", name = "Lioneye's Fall", text = { @@ -6989,14 +7090,14 @@ return { "and even then, it knows to keep its distance.", }, }, - [844] = { + [856] = { id = "UniqueJewel50", name = "Energised Armour", text = { "\"I've yet to see prayer stop an arrow.\"", }, }, - [845] = { + [857] = { id = "UniqueJewel51", name = "Energy From Within", text = { @@ -7004,7 +7105,7 @@ return { "of going without the body's ordinary cravings.", }, }, - [846] = { + [858] = { id = "UniqueJewel52", name = "Anatomical Knowledge", text = { @@ -7012,7 +7113,7 @@ return { "you can't help but treat it better.", }, }, - [847] = { + [859] = { id = "UniqueJewel53", name = "Static Electricity", text = { @@ -7021,21 +7122,21 @@ return { "- Inquisitor Maligaro", }, }, - [848] = { + [860] = { id = "UniqueJewel54", name = "Healthy Mind", text = { "For the ambitious, flesh is a limitation.", }, }, - [849] = { + [861] = { id = "UniqueJewel55", name = "Might in All Forms", text = { "True strength can be found anywhere, and in anything.", }, }, - [850] = { + [862] = { id = "UniqueJewel56", name = "Shattered Chains", text = { @@ -7045,7 +7146,7 @@ return { "And gave them the freedom to choose corruption for themselves.", }, }, - [851] = { + [863] = { id = "UniqueJewel57", name = "Weight of the Empire", text = { @@ -7055,7 +7156,7 @@ return { "That Ondar felt the full weight of his guilt.", }, }, - [852] = { + [864] = { id = "UniqueJewel58", name = "Pitch Darkness", text = { @@ -7065,7 +7166,7 @@ return { "From Kaom's skulking horde.", }, }, - [853] = { + [865] = { id = "UniqueJewel59", name = "Steel Spirit", text = { @@ -7075,7 +7176,7 @@ return { "So that it would not consume her world.", }, }, - [854] = { + [866] = { id = "UniqueJewel6", name = "Intuitive Leap", text = { @@ -7083,7 +7184,7 @@ return { "He's ambitious.", }, }, - [855] = { + [867] = { id = "UniqueJewel60", name = "Growing Agony", text = { @@ -7093,7 +7194,7 @@ return { "And very painful.", }, }, - [856] = { + [868] = { id = "UniqueJewel61", name = "Reckless Defence", text = { @@ -7101,14 +7202,14 @@ return { "quite like desperation.", }, }, - [857] = { + [869] = { id = "UniqueJewel61x", name = "Replica Reckless Defence", text = { "\"Prototype #298 must be contained in a non-conductive glass box at all times.\"", }, }, - [858] = { + [870] = { id = "UniqueJewel62", name = "The Vigil", text = { @@ -7118,7 +7219,7 @@ return { "Blind to the damnation in his hands.", }, }, - [859] = { + [871] = { id = "UniqueJewel63", name = "Rolling Flames", text = { @@ -7128,7 +7229,7 @@ return { "With every land they consumed.", }, }, - [860] = { + [872] = { id = "UniqueJewel64", name = "Winter's Bounty", text = { @@ -7138,7 +7239,7 @@ return { "And see nothing but the long slumber ahead.", }, }, - [861] = { + [873] = { id = "UniqueJewel65", name = "Spirited Response", text = { @@ -7148,7 +7249,7 @@ return { "To temper the steel of their spirits.", }, }, - [862] = { + [874] = { id = "UniqueJewel66", name = "Izaro's Turmoil", text = { @@ -7158,7 +7259,7 @@ return { "that pushed a monster to power.", }, }, - [863] = { + [875] = { id = "UniqueJewel67", name = "Dead Reckoning", text = { @@ -7167,7 +7268,7 @@ return { "\"I watched the world we know end yesterday.\"", }, }, - [864] = { + [876] = { id = "UniqueJewel68", name = "Rapid Expansion", text = { @@ -7177,7 +7278,7 @@ return { "that a Perandus won't pay.", }, }, - [865] = { + [877] = { id = "UniqueJewel69", name = "Volley Fire", text = { @@ -7188,7 +7289,7 @@ return { "would litter the sands.", }, }, - [866] = { + [878] = { id = "UniqueJewel70", name = "Spirit Guards", text = { @@ -7197,21 +7298,21 @@ return { "at Lioneye's Watch could be heard amongst the rubble.", }, }, - [867] = { + [879] = { id = "UniqueJewel71", name = "Cheap Construction", text = { "Why waste the good stuff on something that's going to blow up?", }, }, - [868] = { + [880] = { id = "UniqueJewel71x", name = "Replica Cheap Construction", text = { "\"A curious jewel. Like so many others, a shining little paradox.\"", }, }, - [869] = { + [881] = { id = "UniqueJewel72", name = "Hair Trigger", text = { @@ -7219,7 +7320,7 @@ return { "Try catching a bird before it has even landed.", }, }, - [870] = { + [882] = { id = "UniqueJewel73", name = "Coated Shrapnel", text = { @@ -7227,14 +7328,14 @@ return { "Take everything and waste nothing.", }, }, - [871] = { + [883] = { id = "UniqueJewel74", name = "Unstable Payload", text = { "Saboteurs, like chefs, have their own secret recipes.", }, }, - [872] = { + [884] = { id = "UniqueJewel74x", name = "Replica Unstable Payload", text = { @@ -7243,28 +7344,28 @@ return { "- Administrator Qotra", }, }, - [873] = { + [885] = { id = "UniqueJewel75", name = "Grand Spectrum", text = { "Thoughts that shimmer like light across the rain.", }, }, - [874] = { + [886] = { id = "UniqueJewel76", name = "Grand Spectrum", text = { "Skin like steel tempered by bright flames.", }, }, - [875] = { + [887] = { id = "UniqueJewel77", name = "Grand Spectrum", text = { "Fists that strike like a falling tree.", }, }, - [876] = { + [888] = { id = "UniqueJewel79", name = "The Anima Stone", text = { @@ -7274,14 +7375,14 @@ return { "Stands long after all else falls.", }, }, - [877] = { + [889] = { id = "UniqueJewel8", name = "Survival Instincts", text = { "Observe and master your surroundings.", }, }, - [878] = { + [890] = { id = "UniqueJewel80", name = "Unending Hunger", text = { @@ -7291,7 +7392,7 @@ return { "Their hearts will never be content.", }, }, - [879] = { + [891] = { id = "UniqueJewel81", name = "Primordial Might", text = { @@ -7300,7 +7401,7 @@ return { "- Ezomyte proverb", }, }, - [880] = { + [892] = { id = "UniqueJewel82", name = "Primordial Eminence", text = { @@ -7309,7 +7410,7 @@ return { "- Azmerian proverb", }, }, - [881] = { + [893] = { id = "UniqueJewel83", name = "Primordial Harmony", text = { @@ -7318,7 +7419,7 @@ return { "- Maraketh proverb", }, }, - [882] = { + [894] = { id = "UniqueJewel85", name = "The Red Dream", text = { @@ -7326,7 +7427,7 @@ return { "and spill into the land we have watched forever.", }, }, - [883] = { + [895] = { id = "UniqueJewel86", name = "The Red Nightmare", text = { @@ -7334,7 +7435,7 @@ return { "that suffocates the unworthy.", }, }, - [884] = { + [896] = { id = "UniqueJewel87", name = "The Green Dream", text = { @@ -7342,7 +7443,7 @@ return { "reaching into the world that should be ours.", }, }, - [885] = { + [897] = { id = "UniqueJewel88", name = "The Green Nightmare", text = { @@ -7350,7 +7451,7 @@ return { "and strangle those who tread upon it.", }, }, - [886] = { + [898] = { id = "UniqueJewel89", name = "The Blue Dream", text = { @@ -7358,14 +7459,14 @@ return { "and fall like rain into the place we cannot go.", }, }, - [887] = { + [899] = { id = "UniqueJewel9", name = "Survival Skills", text = { "A helping hand has long reach.", }, }, - [888] = { + [900] = { id = "UniqueJewel90", name = "The Blue Nightmare", text = { @@ -7373,7 +7474,7 @@ return { "and drown the undeserving beneath our might.", }, }, - [889] = { + [901] = { id = "UniqueJewel91", name = "Collateral Damage", text = { @@ -7381,7 +7482,7 @@ return { "For him, there was no doubt that the end would justify the means.", }, }, - [890] = { + [902] = { id = "UniqueJewel92", name = "Sudden Ignition", text = { @@ -7390,7 +7491,7 @@ return { "Finally, Victario lit the match.", }, }, - [891] = { + [903] = { id = "UniqueJewel93", name = "Overwhelming Odds", text = { @@ -7399,7 +7500,7 @@ return { "every last man dying a brutal, but honourable death.", }, }, - [892] = { + [904] = { id = "UniqueJewel94", name = "First Snow", text = { @@ -7407,7 +7508,7 @@ return { "and unburdened by the responsibility the Perandus scion would soon endure.", }, }, - [893] = { + [905] = { id = "UniqueJewel95", name = "Omen on the Winds", text = { @@ -7416,7 +7517,7 @@ return { "One final, feeble attempt to save what was meant to be eternal.", }, }, - [894] = { + [906] = { id = "UniqueJewel96", name = "Wildfire", text = { @@ -7425,7 +7526,7 @@ return { "The rest fled like rats from a fire.", }, }, - [895] = { + [907] = { id = "UniqueJewel97", name = "Fight for Survival", text = { @@ -7433,7 +7534,7 @@ return { "Wraeclast's few survivors fought to the death for the last scraps of bread.", }, }, - [896] = { + [908] = { id = "UniqueJewel98", name = "Might and Influence", text = { @@ -7443,7 +7544,7 @@ return { "mixture of fear and admiration among the masses.", }, }, - [897] = { + [909] = { id = "UniqueJewel99", name = "Frozen Trail", text = { @@ -7452,7 +7553,7 @@ return { "and so the advancing Eternals were unwittingly drawn into a deathtrap.", }, }, - [898] = { + [910] = { id = "UniqueJewelLabyrinth1", name = "Emperor's Cunning", text = { @@ -7460,7 +7561,7 @@ return { "before the battle has begun.", }, }, - [899] = { + [911] = { id = "UniqueJewelLabyrinth2", name = "Emperor's Wit", text = { @@ -7468,14 +7569,14 @@ return { "or tear them down.", }, }, - [900] = { + [912] = { id = "UniqueJewelLabyrinth3", name = "Emperor's Might", text = { "Even an iron fist can be handled with grace.", }, }, - [901] = { + [913] = { id = "UniqueJewelLabyrinth4", name = "Emperor's Mastery", text = { @@ -7483,14 +7584,14 @@ return { "and surround yourself with people who know the rest.", }, }, - [902] = { + [914] = { id = "UniqueMercenaryBelt1", name = "Binds of Bloody Vengeance", text = { "What once marked his submission became the tool of his defiance - torn from the lash of House Keita.", }, }, - [903] = { + [915] = { id = "UniqueMercenaryBootsInt1", name = "Scornflux", text = { @@ -7499,7 +7600,7 @@ return { "Thus began the War of the Great Families.", }, }, - [904] = { + [916] = { id = "UniqueMercenaryGlovesStrInt1", name = "Hand of Heresy", text = { @@ -7509,7 +7610,7 @@ return { "- High Templar Andronicus, 892 IC", }, }, - [905] = { + [917] = { id = "UniqueMercenaryHelmetStr1", name = "Howlcrack", text = { @@ -7518,7 +7619,7 @@ return { "or blood.\" - Keita's Proclamation, 872 IC", }, }, - [906] = { + [918] = { id = "UniqueMercenaryShieldDex1", name = "Azadi Crest", text = { @@ -7527,14 +7628,14 @@ return { "- Azadi, first ancestor of the House Azadin", }, }, - [907] = { + [919] = { id = "UniqueOneHandAxe1", name = "Soul Taker", text = { "It is too easy for the soul to escape from an open heart.", }, }, - [908] = { + [920] = { id = "UniqueOneHandAxe10", name = "Actum", text = { @@ -7542,7 +7643,7 @@ return { "than to think without action.", }, }, - [909] = { + [921] = { id = "UniqueOneHandAxe11", name = "The Grey Wind", text = { @@ -7552,7 +7653,7 @@ return { "Four screams became one roar.", }, }, - [910] = { + [922] = { id = "UniqueOneHandAxe1x", name = "Replica Soul Taker", text = { @@ -7560,7 +7661,7 @@ return { "Results like these may justify everything we do here.\"", }, }, - [911] = { + [923] = { id = "UniqueOneHandAxe2", name = "Dyadus", text = { @@ -7571,7 +7672,7 @@ return { "At their mother's side, forever.", }, }, - [912] = { + [924] = { id = "UniqueOneHandAxe3", name = "The Gryphon", text = { @@ -7579,7 +7680,7 @@ return { "but the scream and the strike.", }, }, - [913] = { + [925] = { id = "UniqueOneHandAxe6", name = "Relentless Fury", text = { @@ -7588,7 +7689,7 @@ return { "Fuel my boiling blood", }, }, - [914] = { + [926] = { id = "UniqueOneHandAxe7", name = "Dreadsurge", text = { @@ -7596,7 +7697,7 @@ return { "is through his sternum.", }, }, - [915] = { + [927] = { id = "UniqueOneHandAxe8", name = "Moonbender's Wing", text = { @@ -7604,7 +7705,7 @@ return { "the wing moves faster than the eye.", }, }, - [916] = { + [928] = { id = "UniqueOneHandAxe9", name = "Rigwald's Savagery", text = { @@ -7613,7 +7714,7 @@ return { "Scatter the dust to the wind.", }, }, - [917] = { + [929] = { id = "UniqueOneHandClaw11", name = "Izaro's Dilemma", text = { @@ -7621,7 +7722,7 @@ return { "but as a divine saviour trapped in a man's body.", }, }, - [918] = { + [930] = { id = "UniqueOneHandClaw12", name = "Advancing Fortress", text = { @@ -7631,7 +7732,7 @@ return { "- Sekhema Deshret", }, }, - [919] = { + [931] = { id = "UniqueOneHandClaw12x", name = "Replica Advancing Fortress", text = { @@ -7639,7 +7740,7 @@ return { "need to be endured to activate Prototype #612's energies.\"", }, }, - [920] = { + [932] = { id = "UniqueOneHandMace1", name = "Brightbeak", text = { @@ -7648,7 +7749,7 @@ return { "- Voll of Thebrus", }, }, - [921] = { + [933] = { id = "UniqueOneHandMace10", name = "Frostbreath", text = { @@ -7656,7 +7757,7 @@ return { "Robbing breath from the weak and worthless.", }, }, - [922] = { + [934] = { id = "UniqueOneHandMace10x", name = "Replica Frostbreath", text = { @@ -7664,7 +7765,7 @@ return { "debilitating effect from poisons. This could be very useful.\"", }, }, - [923] = { + [935] = { id = "UniqueOneHandMace11", name = "Nebuloch", text = { @@ -7673,14 +7774,14 @@ return { "But time would not touch the fiend.", }, }, - [924] = { + [936] = { id = "UniqueOneHandMace12", name = "Serle's Masterwork", text = { "Truly great Artificers push the boundaries of the possible.", }, }, - [925] = { + [937] = { id = "UniqueOneHandMace13", name = "The Monastery Bell", text = { @@ -7689,14 +7790,14 @@ return { "- Ailith, First of the Keepers", }, }, - [926] = { + [938] = { id = "UniqueOneHandMace3", name = "Mjölner", text = { "Look the storm in the eye and you will have its respect.", }, }, - [927] = { + [939] = { id = "UniqueOneHandMace4", name = "Cameria's Avarice", text = { @@ -7705,7 +7806,7 @@ return { "\"That's how I prefer it.\"", }, }, - [928] = { + [940] = { id = "UniqueOneHandMace5", name = "Callinellus Malleus", text = { @@ -7715,7 +7816,7 @@ return { "until the waters recede and we stand together.", }, }, - [929] = { + [941] = { id = "UniqueOneHandMace6", name = "Gorebreaker", text = { @@ -7723,7 +7824,7 @@ return { "But this'll soften them up.", }, }, - [930] = { + [942] = { id = "UniqueOneHandMace7", name = "Lavianga's Wisdom", text = { @@ -7731,7 +7832,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [931] = { + [943] = { id = "UniqueOneHandMace8", name = "Flesh-Eater", text = { @@ -7739,7 +7840,7 @@ return { "Though countless corpses lie in wake.", }, }, - [932] = { + [944] = { id = "UniqueOneHandMace9", name = "Clayshaper", text = { @@ -7747,14 +7848,14 @@ return { "Free from our hunger for dominion.", }, }, - [933] = { + [945] = { id = "UniqueOneHandSword1", name = "Dreadbeak", text = { "As battle calms, blood turns to rust.", }, }, - [934] = { + [946] = { id = "UniqueOneHandSword10", name = "Oni-Goroshi", text = { @@ -7766,14 +7867,14 @@ return { "Bequeathed, betrayed...beloved. At last, I am the third.", }, }, - [935] = { + [947] = { id = "UniqueOneHandSword11", name = "Ichimonji", text = { "Master yourself before you seek to master others.", }, }, - [936] = { + [948] = { id = "UniqueOneHandSword12", name = "The Princess", text = { @@ -7781,7 +7882,7 @@ return { "want to be with her long after you're dead.\"", }, }, - [937] = { + [949] = { id = "UniqueOneHandSword13", name = "Lakishu's Blade", text = { @@ -7789,7 +7890,7 @@ return { "- Legionnaire Battle Blessing", }, }, - [938] = { + [950] = { id = "UniqueOneHandSword14", name = "Chitus' Needle", text = { @@ -7798,7 +7899,7 @@ return { "- Chitus Perandus", }, }, - [939] = { + [951] = { id = "UniqueOneHandSword15", name = "Rigwald's Command", text = { @@ -7807,7 +7908,7 @@ return { "into the throats of our oppressors.", }, }, - [940] = { + [952] = { id = "UniqueOneHandSword16", name = "The Tempestuous Steel", text = { @@ -7815,7 +7916,7 @@ return { "Eager for vengeance against all who walk free.", }, }, - [941] = { + [953] = { id = "UniqueOneHandSword16x", name = "Replica Tempestuous Steel", text = { @@ -7823,7 +7924,7 @@ return { "However, when a trained guard tried it...\"", }, }, - [942] = { + [954] = { id = "UniqueOneHandSword17", name = "Varunastra", text = { @@ -7832,7 +7933,7 @@ return { "- Icius Perandus, Antiquities Collection, Item 2992", }, }, - [943] = { + [955] = { id = "UniqueOneHandSword18", name = "Innsbury Edge", text = { @@ -7842,7 +7943,7 @@ return { "from ghoulish dreams, too strange to comprehend.", }, }, - [944] = { + [956] = { id = "UniqueOneHandSword18x", name = "Replica Innsbury Edge", text = { @@ -7851,7 +7952,7 @@ return { "- Researcher Arn", }, }, - [945] = { + [957] = { id = "UniqueOneHandSword19", name = "Scaeva", text = { @@ -7861,7 +7962,7 @@ return { "A spell only broken by the spilling of blood.", }, }, - [946] = { + [958] = { id = "UniqueOneHandSword2", name = "Ephemeral Edge", text = { @@ -7869,7 +7970,7 @@ return { "life passes quickly.", }, }, - [947] = { + [959] = { id = "UniqueOneHandSword20", name = "Razor of the Seventh Sun", text = { @@ -7878,7 +7979,7 @@ return { "the heat of the forge.", }, }, - [948] = { + [960] = { id = "UniqueOneHandSword21", name = "Cospri's Malice", text = { @@ -7888,7 +7989,7 @@ return { "And it will embrace you back.", }, }, - [949] = { + [961] = { id = "UniqueOneHandSword22", name = "Severed in Sleep", text = { @@ -7896,7 +7997,7 @@ return { "but we must crawl on our own.", }, }, - [950] = { + [962] = { id = "UniqueOneHandSword23", name = "United in Dream", text = { @@ -7904,7 +8005,7 @@ return { "To be fed upon when he wakes.", }, }, - [951] = { + [963] = { id = "UniqueOneHandSword24", name = "Ahn's Might", text = { @@ -7914,13 +8015,13 @@ return { "- Icius Perandus, Antiquities Collection, Item 47", }, }, - [952] = { + [964] = { id = "UniqueOneHandSword25", name = "The Rippling Thoughts", text = { }, }, - [953] = { + [965] = { id = "UniqueOneHandSword27", name = "Grelwood Shank", text = { @@ -7929,7 +8030,7 @@ return { "a memory written in fibrous flesh.", }, }, - [954] = { + [966] = { id = "UniqueOneHandSword28", name = "Beltimber Blade", text = { @@ -7938,7 +8039,7 @@ return { "Yet the fates of others dragged in their wake.", }, }, - [955] = { + [967] = { id = "UniqueOneHandSword29", name = "Story of the Vaal", text = { @@ -7949,7 +8050,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Fate", }, }, - [956] = { + [968] = { id = "UniqueOneHandSword3", name = "Rebuke of the Vaal", text = { @@ -7958,7 +8059,7 @@ return { "- Icius Perandus, Scholar to the Empire.", }, }, - [957] = { + [969] = { id = "UniqueOneHandSword30", name = "Fate of the Vaal", text = { @@ -7967,7 +8068,7 @@ return { "A sign of faithlessness through action.", }, }, - [958] = { + [970] = { id = "UniqueOneHandSword31", name = "The Saviour", text = { @@ -7977,20 +8078,20 @@ return { "But which one am I?", }, }, - [959] = { + [971] = { id = "UniqueOneHandSword32", name = "The Surging Thoughts", text = { }, }, - [960] = { + [972] = { id = "UniqueOneHandSword33", name = "The Iron Mass", text = { "Lead by example.", }, }, - [961] = { + [973] = { id = "UniqueOneHandSword34", name = "The Redblade", text = { @@ -7998,7 +8099,7 @@ return { "and Titan against the rising darkness.", }, }, - [962] = { + [974] = { id = "UniqueOneHandSword35", name = "Nametaker", text = { @@ -8006,7 +8107,7 @@ return { "dearly held secrets spill forth in our blood.", }, }, - [963] = { + [975] = { id = "UniqueOneHandSword4", name = "The Goddess Scorned", text = { @@ -8016,7 +8117,7 @@ return { "\"An old flame renewed can define our eclipse!\"", }, }, - [964] = { + [976] = { id = "UniqueOneHandSword5", name = "Prismatic Eclipse", text = { @@ -8026,7 +8127,7 @@ return { "- Azmerian Creation Myth", }, }, - [965] = { + [977] = { id = "UniqueOneHandSword6", name = "Hyaon's Fury", text = { @@ -8038,7 +8139,7 @@ return { "- Garivaldi, Chronicler to the Empire", }, }, - [966] = { + [978] = { id = "UniqueOneHandSword7", name = "Fidelitas' Spike", text = { @@ -8046,7 +8147,7 @@ return { "Thaumaturgy allowed Maligaro to return the favour.", }, }, - [967] = { + [979] = { id = "UniqueOneHandSword9", name = "Dreamfeather", text = { @@ -8056,7 +8157,7 @@ return { "Beneath the stars, the moondrops glowing.", }, }, - [968] = { + [980] = { id = "UniqueOneHandSword9x", name = "Replica Dreamfeather", text = { @@ -8065,7 +8166,7 @@ return { "- Researcher Graven", }, }, - [969] = { + [981] = { id = "UniqueQuiver1", name = "The Signal Fire", text = { @@ -8073,7 +8174,7 @@ return { "Hissing arrows from the dark.", }, }, - [970] = { + [982] = { id = "UniqueQuiver10", name = "Rigwald's Quills", text = { @@ -8083,7 +8184,7 @@ return { "or the blood of others.", }, }, - [971] = { + [983] = { id = "UniqueQuiver11", name = "Saemus' Gift", text = { @@ -8093,7 +8194,7 @@ return { "Guided by darkness, Magjar spilled the blood of his love", }, }, - [972] = { + [984] = { id = "UniqueQuiver12", name = "Skirmish", text = { @@ -8102,20 +8203,20 @@ return { "nothing would remain unconquered.", }, }, - [973] = { + [985] = { id = "UniqueQuiver13", name = "The Fracturing Spinner", text = { }, }, - [974] = { + [986] = { id = "UniqueQuiver14", name = "Voidfletcher", text = { "Even emptiness may be harnessed.", }, }, - [975] = { + [987] = { id = "UniqueQuiver15", name = "Maloney's Mechanism", text = { @@ -8124,7 +8225,7 @@ return { "I will see them again, but not until my work is done.", }, }, - [976] = { + [988] = { id = "UniqueQuiver15x", name = "Replica Maloney's Mechanism", text = { @@ -8132,34 +8233,34 @@ return { "but when we failed to make any progress on resurrection, he continued his search elsewhere...\"", }, }, - [977] = { + [989] = { id = "UniqueQuiver16", name = "Scorpion's Call", text = { "Claws open, brace for a bite. Stinger raised, dodge or die.", }, }, - [978] = { + [990] = { id = "UniqueQuiver17", name = "The Shattered Divinity", text = { }, }, - [979] = { + [991] = { id = "UniqueQuiver18", name = "Steelworm", text = { "The dance of metal and flesh never ends.", }, }, - [980] = { + [992] = { id = "UniqueQuiver19", name = "The Poised Prism", text = { "What do you see when you look inward?", }, }, - [981] = { + [993] = { id = "UniqueQuiver2", name = "Broadstroke", text = { @@ -8167,14 +8268,14 @@ return { "their heavy shields... and paid dearly for their mistake.", }, }, - [982] = { + [994] = { id = "UniqueQuiver20", name = "Ahuana's Bite", text = { "The last Queen of the Karui gave up power willingly.", }, }, - [983] = { + [995] = { id = "UniqueQuiver22", name = "Spinehail", text = { @@ -8182,7 +8283,7 @@ return { "The loyal must be no more than fodder against the unwilling.", }, }, - [984] = { + [996] = { id = "UniqueQuiver3", name = "Drillneck", text = { @@ -8190,7 +8291,7 @@ return { "- Kiravi, Vaal Archer", }, }, - [985] = { + [997] = { id = "UniqueQuiver4", name = "Rearguard", text = { @@ -8198,7 +8299,7 @@ return { "- Kiravi, Vaal Archer", }, }, - [986] = { + [998] = { id = "UniqueQuiver5", name = "Asphyxia's Wrath", text = { @@ -8208,7 +8309,7 @@ return { "Upon the frozen wasteland.", }, }, - [987] = { + [999] = { id = "UniqueQuiver6", name = "Hyrri's Demise", text = { @@ -8217,7 +8318,7 @@ return { "Hyrri changed all of that.", }, }, - [988] = { + [1000] = { id = "UniqueQuiver7", name = "Soul Strike", text = { @@ -8226,7 +8327,7 @@ return { "Outlast the rewards of the Flesh.", }, }, - [989] = { + [1001] = { id = "UniqueQuiver7x", name = "Replica Soul Strike", text = { @@ -8235,14 +8336,14 @@ return { "- Researcher Arn", }, }, - [990] = { + [1002] = { id = "UniqueQuiver8", name = "Cragfall", text = { "Hit them hard. Hit them once.", }, }, - [991] = { + [1003] = { id = "UniqueQuiver9", name = "Maloney's Nightfall", text = { @@ -8252,7 +8353,7 @@ return { "Rest alone, my grand nightfall.", }, }, - [992] = { + [1004] = { id = "UniqueRapier1", name = "Tipua Kaikohuru", text = { @@ -8262,7 +8363,7 @@ return { "\"With me in hand, what else need you use?\"", }, }, - [993] = { + [1005] = { id = "UniqueRapier2", name = "Aurumvorax", text = { @@ -8271,7 +8372,7 @@ return { "does not like to share its master's attention", }, }, - [994] = { + [1006] = { id = "UniqueRapier4", name = "Daresso's Passion", text = { @@ -8279,7 +8380,7 @@ return { "All form and finesse are forgotten when blood first hits the ground.", }, }, - [995] = { + [1007] = { id = "UniqueRapier5", name = "Ewar's Mirage", text = { @@ -8287,14 +8388,14 @@ return { "A hundred blades dance", }, }, - [996] = { + [1008] = { id = "UniqueRapier6", name = "Paradoxica", text = { "What has no siblings but is always a twin?", }, }, - [997] = { + [1009] = { id = "UniqueRapier6x", name = "Replica Paradoxica", text = { @@ -8302,14 +8403,14 @@ return { "- Researcher Graven", }, }, - [998] = { + [1010] = { id = "UniqueRing1", name = "Voidheart", text = { "Fear is highly infectious.", }, }, - [999] = { + [1011] = { id = "UniqueRing10", name = "Sibyl's Lament", text = { @@ -8317,7 +8418,7 @@ return { "a pain that she could never see.", }, }, - [1000] = { + [1012] = { id = "UniqueRing14", name = "Perandus Signet", text = { @@ -8326,14 +8427,14 @@ return { "- Medici Perandus, Prefect to the Treasury", }, }, - [1001] = { + [1013] = { id = "UniqueRing15", name = "Pyre", text = { "Let winter come. It will only make my fire burn brighter.", }, }, - [1002] = { + [1014] = { id = "UniqueRing16", name = "Ming's Heart", text = { @@ -8343,7 +8444,7 @@ return { "He placed his Heart", }, }, - [1003] = { + [1015] = { id = "UniqueRing17", name = "Romira's Banquet", text = { @@ -8353,7 +8454,7 @@ return { "A perfidious meal indeed.", }, }, - [1004] = { + [1016] = { id = "UniqueRing18", name = "Berek's Pass", text = { @@ -8365,7 +8466,7 @@ return { "- Berek and the Untamed", }, }, - [1005] = { + [1017] = { id = "UniqueRing19", name = "Berek's Grip", text = { @@ -8377,7 +8478,7 @@ return { "- Berek and the Untamed", }, }, - [1006] = { + [1018] = { id = "UniqueRing2", name = "Kaom's Way", text = { @@ -8386,7 +8487,7 @@ return { "to lead his Karui to Wraeclast.", }, }, - [1007] = { + [1019] = { id = "UniqueRing20", name = "Berek's Respite", text = { @@ -8399,7 +8500,7 @@ return { "- Berek and the Untamed", }, }, - [1008] = { + [1020] = { id = "UniqueRing21", name = "The Taming", text = { @@ -8412,7 +8513,7 @@ return { "- Berek and the Untamed", }, }, - [1009] = { + [1021] = { id = "UniqueRing22", name = "Kalandra's Touch", text = { @@ -8420,28 +8521,28 @@ return { "On the other, you have its twin.", }, }, - [1010] = { + [1022] = { id = "UniqueRing23", name = "Voideye", text = { "The darker the eye, the more diligent the watched.", }, }, - [1011] = { + [1023] = { id = "UniqueRing23x", name = "Replica Voideye", text = { "\"So close, yet frustratingly distinct. Something more is going on here...\"", }, }, - [1012] = { + [1024] = { id = "UniqueRing24", name = "Mokou's Embrace", text = { "Fire makes the perfect blossom in the endless night.", }, }, - [1013] = { + [1025] = { id = "UniqueRing25", name = "Malachai's Artifice", text = { @@ -8450,7 +8551,7 @@ return { "and watch the others break.", }, }, - [1014] = { + [1026] = { id = "UniqueRing25x", name = "Replica Malachai's Artifice", text = { @@ -8459,14 +8560,14 @@ return { "- Administrator Qotra", }, }, - [1015] = { + [1027] = { id = "UniqueRing26", name = "Kikazaru", text = { "Hear no evil.", }, }, - [1016] = { + [1028] = { id = "UniqueRing27", name = "Timetwist", text = { @@ -8475,14 +8576,14 @@ return { "- Doryani, Queen's Thaumaturgist", }, }, - [1017] = { + [1029] = { id = "UniqueRing28", name = "Winterweave", text = { "Rage is a big part of courage.", }, }, - [1018] = { + [1030] = { id = "UniqueRing29", name = "Valako's Sign", text = { @@ -8491,14 +8592,14 @@ return { "A title Kaom claimed when he ended Kiloava's bloodline.", }, }, - [1019] = { + [1031] = { id = "UniqueRing3", name = "Andvarius", text = { "Danger is the price of wealth.", }, }, - [1020] = { + [1032] = { id = "UniqueRing30", name = "Tasalio's Sign", text = { @@ -8508,7 +8609,7 @@ return { "so that his warriors' axes might rise and fall like the waves.", }, }, - [1021] = { + [1033] = { id = "UniqueRing30x", name = "Replica Tasalio's Sign", text = { @@ -8516,7 +8617,7 @@ return { "Are these objects actually somehow resisting our efforts?\"", }, }, - [1022] = { + [1034] = { id = "UniqueRing31", name = "Ngamahu's Sign", text = { @@ -8525,7 +8626,7 @@ return { "Given to Akoya, but inherited by Kaom with the swing of his axe.", }, }, - [1023] = { + [1035] = { id = "UniqueRing32", name = "Ventor's Gamble", text = { @@ -8535,7 +8636,7 @@ return { "And Ventor met his latest trophy.", }, }, - [1024] = { + [1036] = { id = "UniqueRing33", name = "Heartbound Loop", text = { @@ -8544,7 +8645,7 @@ return { "fading mind was her broken, shattered scream.", }, }, - [1025] = { + [1037] = { id = "UniqueRing34", name = "Call of the Brotherhood", text = { @@ -8553,7 +8654,7 @@ return { "across any distance of time or travel.", }, }, - [1026] = { + [1038] = { id = "UniqueRing35", name = "Brinerot Mark", text = { @@ -8562,7 +8663,7 @@ return { "still wrapped around a severed finger.", }, }, - [1027] = { + [1039] = { id = "UniqueRing36", name = "Redblade Band", text = { @@ -8571,7 +8672,7 @@ return { "ashes of their father.", }, }, - [1028] = { + [1040] = { id = "UniqueRing37", name = "Mutewind Seal", text = { @@ -8581,14 +8682,14 @@ return { "The rest do not return at all.", }, }, - [1029] = { + [1041] = { id = "UniqueRing38", name = "Emberwake", text = { "Leave the world in flames behind you.", }, }, - [1030] = { + [1042] = { id = "UniqueRing38x", name = "Replica Emberwake", text = { @@ -8597,7 +8698,7 @@ return { "- Lead Researcher Ksaret", }, }, - [1031] = { + [1043] = { id = "UniqueRing39", name = "The Pariah", text = { @@ -8605,7 +8706,7 @@ return { "soon finds he has none.", }, }, - [1032] = { + [1044] = { id = "UniqueRing4", name = "Doedre's Damning", text = { @@ -8613,7 +8714,7 @@ return { "there was only a whirling, black void.", }, }, - [1033] = { + [1045] = { id = "UniqueRing40", name = "Essence Worm", text = { @@ -8622,7 +8723,7 @@ return { "- Malachai the Soulless", }, }, - [1034] = { + [1046] = { id = "UniqueRing41", name = "Rigwald's Crest", text = { @@ -8631,7 +8732,7 @@ return { "If you cannot tame it, embrace it.", }, }, - [1035] = { + [1047] = { id = "UniqueRing42", name = "Praxis", text = { @@ -8641,14 +8742,14 @@ return { "Free thinking leads to free action.", }, }, - [1036] = { + [1048] = { id = "UniqueRing43", name = "Valyrium", text = { "They will rise and fall in fire and blood.", }, }, - [1037] = { + [1049] = { id = "UniqueRing44", name = "Snakepit", text = { @@ -8656,7 +8757,7 @@ return { "until your blood turns as cold as theirs.", }, }, - [1038] = { + [1050] = { id = "UniqueRing45", name = "The Warden's Brand", text = { @@ -8665,7 +8766,7 @@ return { "- Brutus, Warden of Axiom", }, }, - [1039] = { + [1051] = { id = "UniqueRing46", name = "Angler's Plait", text = { @@ -8673,21 +8774,21 @@ return { "before he learns it is not fish that he seeks.", }, }, - [1040] = { + [1052] = { id = "UniqueRing48", name = "The Hungry Loop", text = { "Be careful where you put your finger.", }, }, - [1041] = { + [1053] = { id = "UniqueRing49", name = "Mark of the Elder", text = { "Be not stirred by the Void.", }, }, - [1042] = { + [1054] = { id = "UniqueRing4x", name = "Replica Doedre's Damning", text = { @@ -8695,7 +8796,7 @@ return { "resulted when a lead researcher used an epithet in its presence.\"", }, }, - [1043] = { + [1055] = { id = "UniqueRing5", name = "Dream Fragments", text = { @@ -8703,14 +8804,14 @@ return { "And awoke its Master.", }, }, - [1044] = { + [1056] = { id = "UniqueRing50", name = "Mark of the Shaper", text = { "Let madness take control.", }, }, - [1045] = { + [1057] = { id = "UniqueRing51", name = "Stormfire", text = { @@ -8718,7 +8819,7 @@ return { "you'll wish the lightning strike had killed you.", }, }, - [1046] = { + [1058] = { id = "UniqueRing52", name = "Mark of Submission", text = { @@ -8726,7 +8827,7 @@ return { "that sacrifices soon welcomed their death.", }, }, - [1047] = { + [1059] = { id = "UniqueRing53a", name = "Ahkeli's Mountain", text = { @@ -8736,7 +8837,7 @@ return { "^8This item can be combined with a Meadow and Valley ring at a Vendor.", }, }, - [1048] = { + [1060] = { id = "UniqueRing53b", name = "Ahkeli's Meadow", text = { @@ -8748,7 +8849,7 @@ return { "^8This item can be combined with a Mountain and Valley ring at a Vendor.", }, }, - [1049] = { + [1061] = { id = "UniqueRing53c", name = "Ahkeli's Valley", text = { @@ -8760,7 +8861,7 @@ return { "^8This item can be combined with a Meadow and Mountain ring at a Vendor.", }, }, - [1050] = { + [1062] = { id = "UniqueRing53d", name = "Uzaza's Mountain", text = { @@ -8771,7 +8872,7 @@ return { "^8This item can be combined with a Meadow and Valley ring at a Vendor.", }, }, - [1051] = { + [1063] = { id = "UniqueRing53e", name = "Uzaza's Meadow", text = { @@ -8782,7 +8883,7 @@ return { "^8This item can be combined with a Mountain and Valley ring at a Vendor.", }, }, - [1052] = { + [1064] = { id = "UniqueRing53f", name = "Uzaza's Valley", text = { @@ -8794,7 +8895,7 @@ return { "^8This item can be combined with a Meadow and Mountain ring at a Vendor.", }, }, - [1053] = { + [1065] = { id = "UniqueRing53g", name = "Putembo's Mountain", text = { @@ -8806,7 +8907,7 @@ return { "^8This item can be combined with a Meadow and Valley ring at a Vendor.", }, }, - [1054] = { + [1066] = { id = "UniqueRing53h", name = "Putembo's Meadow", text = { @@ -8818,7 +8919,7 @@ return { "^8This item can be combined with a Mountain and Valley ring at a Vendor.", }, }, - [1055] = { + [1067] = { id = "UniqueRing53i", name = "Putembo's Valley", text = { @@ -8830,7 +8931,7 @@ return { "^8This item can be combined with a Meadow and Mountain ring at a Vendor.", }, }, - [1056] = { + [1068] = { id = "UniqueRing55", name = "Vivinsect", text = { @@ -8839,7 +8940,7 @@ return { "- Arzaak, Syndicate Researcher", }, }, - [1057] = { + [1069] = { id = "UniqueRing56", name = "Circle of Anguish", text = { @@ -8847,7 +8948,7 @@ return { "My only choice is to strive harder.", }, }, - [1058] = { + [1070] = { id = "UniqueRing57", name = "Circle of Fear", text = { @@ -8855,7 +8956,7 @@ return { "ready to tear me apart for their own gains.", }, }, - [1059] = { + [1071] = { id = "UniqueRing58", name = "Circle of Regret", text = { @@ -8863,7 +8964,7 @@ return { "and others like her, might be kept safe.", }, }, - [1060] = { + [1072] = { id = "UniqueRing59", name = "Circle of Nostalgia", text = { @@ -8871,7 +8972,7 @@ return { "I fight so that the children may remain ignorant.", }, }, - [1061] = { + [1073] = { id = "UniqueRing6", name = "Le Heup of All", text = { @@ -8881,7 +8982,7 @@ return { "Of the many mortal threads", }, }, - [1062] = { + [1074] = { id = "UniqueRing60", name = "Circle of Guilt", text = { @@ -8889,7 +8990,7 @@ return { "I accept my guilt without shame. It is my gift to humanity.", }, }, - [1063] = { + [1075] = { id = "UniqueRing61", name = "Venopuncture", text = { @@ -8897,7 +8998,7 @@ return { "but few have the resolve to attempt it.", }, }, - [1064] = { + [1076] = { id = "UniqueRing62", name = "Icefang Orbit", text = { @@ -8905,49 +9006,49 @@ return { "Trarthan ice snakes must take great care with the volatile substance.", }, }, - [1065] = { + [1077] = { id = "UniqueRing63", name = "Warrior's Legacy", text = { "Make your mark on history.", }, }, - [1066] = { + [1078] = { id = "UniqueRing64", name = "Astral Projector", text = { "The body stands, but the spirit soars.", }, }, - [1067] = { + [1079] = { id = "UniqueRing65", name = "Profane Proxy", text = { "The machines do not hate. They merely serve one who does.", }, }, - [1068] = { + [1080] = { id = "UniqueRing66", name = "Storm Secret", text = { "Lightning lives in an endless circle.", }, }, - [1069] = { + [1081] = { id = "UniqueRing67", name = "The Highwayman", text = { "Somebody does have to get hurt.", }, }, - [1070] = { + [1082] = { id = "UniqueRing68", name = "Fated End", text = { "All roads lead to that destined doom.", }, }, - [1071] = { + [1083] = { id = "UniqueRing69", name = "Blackflame", text = { @@ -8955,7 +9056,7 @@ return { "by whose light night is borne.", }, }, - [1072] = { + [1084] = { id = "UniqueRing7", name = "Thief's Torment", text = { @@ -8968,7 +9069,7 @@ return { "A blessing is often a curse.", }, }, - [1073] = { + [1085] = { id = "UniqueRing70", name = "Rotblood Promise", text = { @@ -8976,7 +9077,7 @@ return { "Then carry it far and wide.", }, }, - [1074] = { + [1086] = { id = "UniqueRing71", name = "Triumvirate Authority", text = { @@ -8984,7 +9085,7 @@ return { "granted one boon by each serpentine head.", }, }, - [1075] = { + [1087] = { id = "UniqueRing72", name = "Polaric Devastation", text = { @@ -8992,7 +9093,7 @@ return { "sank eternally into crushing darkness.", }, }, - [1076] = { + [1088] = { id = "UniqueRing73", name = "Call of the Void", text = { @@ -9000,7 +9101,7 @@ return { "can the cold truth of existence take hold.", }, }, - [1077] = { + [1089] = { id = "UniqueRing74", name = "Nimis", text = { @@ -9008,7 +9109,7 @@ return { "too much of nothing is just as tough.", }, }, - [1078] = { + [1090] = { id = "UniqueRing75", name = "Anathema", text = { @@ -9017,7 +9118,7 @@ return { "Unleashing a litany of pain upon the world.", }, }, - [1079] = { + [1091] = { id = "UniqueRing76", name = "Original Sin", text = { @@ -9025,7 +9126,7 @@ return { "but on the vilification and hatred of another.", }, }, - [1080] = { + [1092] = { id = "UniqueRing77", name = "Soulbound", text = { @@ -9035,14 +9136,14 @@ return { "- High Priest Atazek", }, }, - [1081] = { + [1093] = { id = "UniqueRing78", name = "Tawhanuku's Timing", text = { "The soul still beats, even when the heart never did.", }, }, - [1082] = { + [1094] = { id = "UniqueRing79", name = "Honoured Alliance", text = { @@ -9050,7 +9151,7 @@ return { "but lasts a lifetime... and beyond.", }, }, - [1083] = { + [1095] = { id = "UniqueRing80", name = "Ixchel's Temptation", text = { @@ -9058,7 +9159,7 @@ return { "Our own imaginations ensnare us.", }, }, - [1084] = { + [1096] = { id = "UniqueRing81", name = "Grattus Signet", text = { @@ -9066,7 +9167,7 @@ return { "slowly turned his ring, all cowered before him.", }, }, - [1085] = { + [1097] = { id = "UniqueRing82", name = "Circle of Ambition", text = { @@ -9074,14 +9175,14 @@ return { "The day is coming... I have seen it.", }, }, - [1086] = { + [1098] = { id = "UniqueRing83", name = "The Hateful Accuser", text = { "In truth, they point the finger at themselves.", }, }, - [1087] = { + [1099] = { id = "UniqueRing84", name = "The Selfish Shepherd", text = { @@ -9089,14 +9190,14 @@ return { "discover how much you truly mean.", }, }, - [1088] = { + [1100] = { id = "UniqueRing85", name = "The Queller of Minds", text = { "Quiet thy troubled soul. Think not. Just pray... to me.", }, }, - [1089] = { + [1101] = { id = "UniqueRing86", name = "Coiling Whisper", text = { @@ -9104,7 +9205,7 @@ return { "My promises were hollow ever after.", }, }, - [1090] = { + [1102] = { id = "UniqueRing87", name = "Enmity's Embrace", text = { @@ -9114,7 +9215,7 @@ return { "They know.", }, }, - [1091] = { + [1103] = { id = "UniqueRing88", name = "Betrayal's Sting", text = { @@ -9122,7 +9223,7 @@ return { "It is the smile, the nod... the handshake... of a former friend.", }, }, - [1092] = { + [1104] = { id = "UniqueRing9", name = "Lori's Lantern", text = { @@ -9132,7 +9233,7 @@ return { "and proof against hate.", }, }, - [1093] = { + [1105] = { id = "UniqueRing90", name = "Prospero's Protection", text = { @@ -9143,7 +9244,7 @@ return { "- Emperor Chitus, to Ondar", }, }, - [1094] = { + [1106] = { id = "UniqueRing91", name = "Squirming Terror", text = { @@ -9151,7 +9252,7 @@ return { "bursting forth from the flesh.", }, }, - [1095] = { + [1107] = { id = "UniqueRing92", name = "The Unseen Hue", text = { @@ -9160,7 +9261,7 @@ return { "Driving you on long past agony and despair", }, }, - [1096] = { + [1108] = { id = "UniqueRing93", name = "Woespike", text = { @@ -9169,7 +9270,7 @@ return { "making every smile half-hearted.", }, }, - [1097] = { + [1109] = { id = "UniqueRing94a", name = "The Will of Tul", text = { @@ -9177,7 +9278,7 @@ return { "but stillness will find them... and bury them.", }, }, - [1098] = { + [1110] = { id = "UniqueRing94b", name = "The Will of Xoph", text = { @@ -9185,7 +9286,7 @@ return { "as spiraling oblivion deepens into flame.", }, }, - [1099] = { + [1111] = { id = "UniqueRing94c", name = "The Will of Esh", text = { @@ -9193,7 +9294,7 @@ return { "mindless thought that seek a hollow truth.", }, }, - [1100] = { + [1112] = { id = "UniqueRing94d", name = "The Will of Uul-Netol", text = { @@ -9201,7 +9302,7 @@ return { "all meaning long since lost to dead-eyed lust.", }, }, - [1101] = { + [1113] = { id = "UniqueRing94e", name = "The Sundered Will", text = { @@ -9210,7 +9311,7 @@ return { "continuing to dream, and know not why.", }, }, - [1102] = { + [1114] = { id = "UniqueRing95", name = "Lost Unity", text = { @@ -9219,7 +9320,7 @@ return { "What could have been...", }, }, - [1103] = { + [1115] = { id = "UniqueRing96", name = "The Bandit Lord's Band", text = { @@ -9229,14 +9330,33 @@ return { "Why does he still wear it like a shameful secret?\"", }, }, - [1104] = { + [1116] = { + id = "UniqueRing97", + name = "Zana's Ingenuity", + text = { + "\"I designed this to protect you,", + "whatever you may face. And when", + "this is all over... let's talk.\"", + }, + }, + [1117] = { + id = "UniqueRing98", + name = "Pearl of Tsoatha", + text = { + "\"Velka was a mere pirate when she ventured to Tsoatha,", + "a reverence for the Brine King burning in her heart.", + "She returned as something different. Something more.", + "So the legend of the Tide Witch is told.\"", + }, + }, + [1118] = { id = "UniqueScepter17", name = "Breath of the Council", text = { "Breathe deep, and give yourself over to eternity.", }, }, - [1105] = { + [1119] = { id = "UniqueSceptre1", name = "The Supreme Truth", text = { @@ -9244,7 +9364,7 @@ return { "grab truth by the throat and shape it as you wish.", }, }, - [1106] = { + [1120] = { id = "UniqueSceptre10", name = "Death's Hand", text = { @@ -9252,7 +9372,7 @@ return { "- Karui Proverb", }, }, - [1107] = { + [1121] = { id = "UniqueSceptre11", name = "Spine of the First Claimant", text = { @@ -9262,7 +9382,7 @@ return { "To mark the occasion, Izaro had the Champion's remains gilded.", }, }, - [1108] = { + [1122] = { id = "UniqueSceptre13", name = "Singularity", text = { @@ -9270,7 +9390,7 @@ return { "We just expedite the process.", }, }, - [1109] = { + [1123] = { id = "UniqueSceptre14", name = "Bitterdream", text = { @@ -9279,7 +9399,7 @@ return { "Be still.", }, }, - [1110] = { + [1124] = { id = "UniqueSceptre14x", name = "Replica Bitterdream", text = { @@ -9287,14 +9407,14 @@ return { "Convinced this assignment is retribution from my superior...\"", }, }, - [1111] = { + [1125] = { id = "UniqueSceptre16", name = "Axiom Perpetuum", text = { "The worst of Axiom were imprisoned by more than iron.", }, }, - [1112] = { + [1126] = { id = "UniqueSceptre17", name = "Balefire", text = { @@ -9303,7 +9423,7 @@ return { "was a memory of that which was gone, a whisper of deeds undone.", }, }, - [1113] = { + [1127] = { id = "UniqueSceptre18", name = "Augyre", text = { @@ -9311,7 +9431,7 @@ return { "the safest place to be is in the centre.", }, }, - [1114] = { + [1128] = { id = "UniqueSceptre19", name = "Earendel's Embrace", text = { @@ -9321,7 +9441,7 @@ return { "some will go up, some down, filled with misery.", }, }, - [1115] = { + [1129] = { id = "UniqueSceptre19x", name = "Replica Earendel's Embrace", text = { @@ -9330,7 +9450,7 @@ return { "- Researcher Arn", }, }, - [1116] = { + [1130] = { id = "UniqueSceptre2", name = "Nycta's Lantern", text = { @@ -9339,14 +9459,14 @@ return { "and so did hers.", }, }, - [1117] = { + [1131] = { id = "UniqueSceptre20", name = "Cerberus Limb", text = { "The greatest of guardians make the greatest of sacrifices.", }, }, - [1118] = { + [1132] = { id = "UniqueSceptre21", name = "Nebulis", text = { @@ -9354,7 +9474,7 @@ return { "should one have the fortitude to grasp them.", }, }, - [1119] = { + [1133] = { id = "UniqueSceptre21x", name = "Replica Nebulis", text = { @@ -9362,35 +9482,44 @@ return { "to make it work. A jewel, a talisman, an armour... or the Font...\"", }, }, - [1120] = { + [1134] = { id = "UniqueSceptre22", name = "Sign of the Sin Eater", text = { "A secret few among the Templars grant absolution by bearing the guilt of others.", }, }, - [1121] = { + [1135] = { id = "UniqueSceptre23", name = "The Black Cane", text = { "Lead the army of the damned from the front.", }, }, - [1122] = { + [1136] = { id = "UniqueSceptre24", name = "Yaomac's Accord", text = { "Their three serpentine heads found unity in balance.", }, }, - [1123] = { + [1137] = { id = "UniqueSceptre25", name = "Maata's Teaching", text = { "What we give to others, we also give to ourselves.", }, }, - [1124] = { + [1138] = { + id = "UniqueSceptre25x", + name = "Replica Maata's Teaching", + text = { + "\"And so it begins. Someone,", + "somewhere, is trying again...", + "seems mankind never learns.\"", + }, + }, + [1139] = { id = "UniqueSceptre26", name = "Cadigan's Authority", text = { @@ -9399,7 +9528,7 @@ return { "continually leveraging the power of each against the next.", }, }, - [1125] = { + [1140] = { id = "UniqueSceptre27", name = "The Sands of Time", text = { @@ -9408,14 +9537,14 @@ return { "there was not one Time, but many...", }, }, - [1126] = { + [1141] = { id = "UniqueSceptre3", name = "Mon'tregul's Grasp", text = { "With death as my ally, all the world is within my grasp.", }, }, - [1127] = { + [1142] = { id = "UniqueSceptre6", name = "Doon Cuebiyari", text = { @@ -9425,7 +9554,7 @@ return { "Through endless storms of fervent devotion.", }, }, - [1128] = { + [1143] = { id = "UniqueSceptre7", name = "Doryani's Catalyst", text = { @@ -9433,7 +9562,7 @@ return { "or death for all. It was a risk Doryani was willing to take.", }, }, - [1129] = { + [1144] = { id = "UniqueSceptre8", name = "The Dark Seer", text = { @@ -9442,7 +9571,7 @@ return { "Until we are one in shadow.", }, }, - [1130] = { + [1145] = { id = "UniqueSceptre9", name = "Brutus' Lead Sprinkler", text = { @@ -9451,14 +9580,14 @@ return { "- Brutus, Warden of Axiom", }, }, - [1131] = { + [1146] = { id = "UniqueShieldDex1", name = "Kaltensoul", text = { "Cold, miserable and alone... but alive.", }, }, - [1132] = { + [1147] = { id = "UniqueShieldDex2", name = "Crest of Perandus", text = { @@ -9466,7 +9595,7 @@ return { "- Perandus family motto", }, }, - [1133] = { + [1148] = { id = "UniqueShieldDex3", name = "Atziri's Reflection", text = { @@ -9474,14 +9603,14 @@ return { "- Atziri, Queen of the Vaal", }, }, - [1134] = { + [1149] = { id = "UniqueShieldDex4", name = "Thirst for Horrors", text = { "An eye for an eye. A curse for a curse.", }, }, - [1135] = { + [1150] = { id = "UniqueShieldDex5", name = "Thousand Teeth Temu", text = { @@ -9489,7 +9618,7 @@ return { "All was woe that seem'd but gladness.", }, }, - [1136] = { + [1151] = { id = "UniqueShieldDex6", name = "Great Old One's Ward", text = { @@ -9497,14 +9626,14 @@ return { "compared to the horrors we haven't.", }, }, - [1137] = { + [1152] = { id = "UniqueShieldDex7", name = "Mutewind Pennant", text = { "Embrace the snow or be buried.", }, }, - [1138] = { + [1153] = { id = "UniqueShieldDex8", name = "Mistwall", text = { @@ -9512,7 +9641,7 @@ return { "Stiff as a feather.", }, }, - [1139] = { + [1154] = { id = "UniqueShieldDex8x", name = "Replica Mistwall", text = { @@ -9521,14 +9650,14 @@ return { "- Lead Researcher Ksaret", }, }, - [1140] = { + [1155] = { id = "UniqueShieldDex9", name = "Kiloava's Bluster", text = { "Not even the storm knows when lightning will strike.", }, }, - [1141] = { + [1156] = { id = "UniqueShieldDexInt1", name = "Jaws of Agony", text = { @@ -9536,7 +9665,7 @@ return { "Agony slowly dominates the will to live.", }, }, - [1142] = { + [1157] = { id = "UniqueShieldDexInt2", name = "Maligaro's Lens", text = { @@ -9547,7 +9676,7 @@ return { "- Inquisitor Maligaro", }, }, - [1143] = { + [1158] = { id = "UniqueShieldDexInt3", name = "Glitterdisc", text = { @@ -9555,14 +9684,14 @@ return { "resulted in some surprising material discoveries.", }, }, - [1144] = { + [1159] = { id = "UniqueShieldDexInt4", name = "Leper's Alms", text = { "One's burden is another's gift.", }, }, - [1145] = { + [1160] = { id = "UniqueShieldDexInt5", name = "Zeel's Amplifier", text = { @@ -9572,7 +9701,7 @@ return { "- Zeel, Vaal Tinkerer", }, }, - [1146] = { + [1161] = { id = "UniqueShieldDexInt6", name = "Perepiteia", text = { @@ -9580,21 +9709,21 @@ return { "but Oriathan scholars dare not open it to find out why.", }, }, - [1147] = { + [1162] = { id = "UniqueShieldDexInt7", name = "Font of Thunder", text = { "The lightning fears not the flame.", }, }, - [1148] = { + [1163] = { id = "UniqueShieldDexInt8", name = "Qotra's Regulator", text = { "Horrific experiments with corrupted flesh require careful management.", }, }, - [1149] = { + [1164] = { id = "UniqueShieldInt1", name = "Rathpith Globe", text = { @@ -9602,14 +9731,14 @@ return { "and left a mountain of twitching dead.", }, }, - [1150] = { + [1165] = { id = "UniqueShieldInt10", name = "Light of Lunaris", text = { "Without night, there can be no day.", }, }, - [1151] = { + [1166] = { id = "UniqueShieldInt11", name = "Apep's Slumber", text = { @@ -9619,14 +9748,14 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Awakening", }, }, - [1152] = { + [1167] = { id = "UniqueShieldInt12", name = "Apep's Supremacy", text = { "Give him your body, and your burdens will follow.", }, }, - [1153] = { + [1168] = { id = "UniqueShieldInt13", name = "The Eternal Apple", text = { @@ -9636,7 +9765,7 @@ return { "The idea, and our ideals, take root.", }, }, - [1154] = { + [1169] = { id = "UniqueShieldInt14", name = "Bitterbind Point", text = { @@ -9646,14 +9775,14 @@ return { "for our spirits to become entangled.", }, }, - [1155] = { + [1170] = { id = "UniqueShieldInt15", name = "Manastorm", text = { "Fear not the fury of the storm.", }, }, - [1156] = { + [1171] = { id = "UniqueShieldInt16", name = "The Scales of Justice", text = { @@ -9661,7 +9790,7 @@ return { "and perhaps you shall be found worthy.", }, }, - [1157] = { + [1172] = { id = "UniqueShieldInt2", name = "Whakatutuki o Matua", text = { @@ -9669,7 +9798,7 @@ return { "The least I can do is carry you through death.", }, }, - [1158] = { + [1173] = { id = "UniqueShieldInt4", name = "Sentari's Answer", text = { @@ -9677,14 +9806,14 @@ return { "Open your mind and you will see the cracks in your enemy's plans.", }, }, - [1159] = { + [1174] = { id = "UniqueShieldInt5", name = "Brinerot Flag", text = { "The lords of the sea bow to no one.", }, }, - [1160] = { + [1175] = { id = "UniqueShieldInt6", name = "Kongming's Stratagem", text = { @@ -9694,7 +9823,7 @@ return { "while the ignorant fight to win.", }, }, - [1161] = { + [1176] = { id = "UniqueShieldInt7", name = "Malachai's Loop", text = { @@ -9702,7 +9831,7 @@ return { "It is our fragile reality that imposes boundaries.", }, }, - [1162] = { + [1177] = { id = "UniqueShieldInt8", name = "Esh's Mirror", text = { @@ -9711,7 +9840,7 @@ return { "until she was not what she saw.", }, }, - [1163] = { + [1178] = { id = "UniqueShieldInt9", name = "Esh's Visage", text = { @@ -9720,7 +9849,7 @@ return { "And she was still.", }, }, - [1164] = { + [1179] = { id = "UniqueShieldStr1", name = "Lioneye's Remorse", text = { @@ -9728,7 +9857,7 @@ return { "to his arrogance... and his fate.", }, }, - [1165] = { + [1180] = { id = "UniqueShieldStr10", name = "Tukohama's Fortress", text = { @@ -9736,7 +9865,7 @@ return { "So he carried his fortress to the fight.", }, }, - [1166] = { + [1181] = { id = "UniqueShieldStr10x", name = "Replica Tukohama's Fortress", text = { @@ -9744,7 +9873,7 @@ return { "Prototype #10 bore unexpectedly positive results.\"", }, }, - [1167] = { + [1182] = { id = "UniqueShieldStr11", name = "Ahn's Heritage", text = { @@ -9753,7 +9882,7 @@ return { "- Icius Perandus, Antiquities Collection, Item 46", }, }, - [1168] = { + [1183] = { id = "UniqueShieldStr12", name = "Magna Eclipsis", text = { @@ -9763,7 +9892,7 @@ return { "'Neath the midday sun, the night was reborn.", }, }, - [1169] = { + [1184] = { id = "UniqueShieldStr13", name = "Dawnbreaker", text = { @@ -9772,7 +9901,7 @@ return { "- Maxarius, the first High Templar", }, }, - [1170] = { + [1185] = { id = "UniqueShieldStr14", name = "Svalinn", text = { @@ -9780,7 +9909,7 @@ return { "but it was the smiths who delved into the secrets it held.", }, }, - [1171] = { + [1186] = { id = "UniqueShieldStr15", name = "Cowards' Wail", text = { @@ -9789,7 +9918,7 @@ return { "you for what you've done... no. You've a debt to repay.\"", }, }, - [1172] = { + [1187] = { id = "UniqueShieldStr2", name = "Titucus Span", text = { @@ -9799,7 +9928,7 @@ return { "For rout of foe, for turn of tide.", }, }, - [1173] = { + [1188] = { id = "UniqueShieldStr3", name = "Chernobog's Pillar", text = { @@ -9809,14 +9938,14 @@ return { "There is no flame", }, }, - [1174] = { + [1189] = { id = "UniqueShieldStr4", name = "Redblade Banner", text = { "Blood shed is blood shared.", }, }, - [1175] = { + [1190] = { id = "UniqueShieldStr5", name = "Trolltimber Spire", text = { @@ -9825,14 +9954,14 @@ return { "the other has sprouted fresh roots!", }, }, - [1176] = { + [1191] = { id = "UniqueShieldStr7", name = "Lycosidae", text = { "A true predator does not chase; It waits.", }, }, - [1177] = { + [1192] = { id = "UniqueShieldStr8", name = "The Anticipation", text = { @@ -9841,7 +9970,7 @@ return { "she will reach into us.", }, }, - [1178] = { + [1193] = { id = "UniqueShieldStr9", name = "The Surrender", text = { @@ -9850,7 +9979,7 @@ return { "and so we give up our flesh.", }, }, - [1179] = { + [1194] = { id = "UniqueShieldStrDex1", name = "Daresso's Courage", text = { @@ -9858,7 +9987,15 @@ return { "Yet even accursed treachery failed to steal the champion's victory.", }, }, - [1180] = { + [1195] = { + id = "UniqueShieldStrDex10", + name = "Seablister", + text = { + "On the Kraken's Rot, there was no whipping.", + "No lashes. Only barnacle-scraping duty.", + }, + }, + [1196] = { id = "UniqueShieldStrDex16", name = "Bitter Instinct", text = { @@ -9866,14 +10003,14 @@ return { "We lash out, when all we want is an end to loneliness.", }, }, - [1181] = { + [1197] = { id = "UniqueShieldStrDex2", name = "Wheel of the Stormsail", text = { "Doomed to plunder forever.", }, }, - [1182] = { + [1198] = { id = "UniqueShieldStrDex3", name = "The Deep One's Hide", text = { @@ -9881,7 +10018,7 @@ return { "the greater the beast that hunts it.", }, }, - [1183] = { + [1199] = { id = "UniqueShieldStrDex4", name = "Vix Lunaris", text = { @@ -9889,14 +10026,14 @@ return { "Quench the holy light.", }, }, - [1184] = { + [1200] = { id = "UniqueShieldStrDex5", name = "Shattershard", text = { "Fragile, explosive, and punishing.", }, }, - [1185] = { + [1201] = { id = "UniqueShieldStrDex6", name = "The Ghastly Theatre", text = { @@ -9904,7 +10041,7 @@ return { "beguile them. Strike when they least expect it.", }, }, - [1186] = { + [1202] = { id = "UniqueShieldStrDex7", name = "The Squire", text = { @@ -9912,14 +10049,14 @@ return { "they empower the strong.", }, }, - [1187] = { + [1203] = { id = "UniqueShieldStrDex8", name = "The Oppressor", text = { "Every clash leaves one more scar.", }, }, - [1188] = { + [1204] = { id = "UniqueShieldStrDex9", name = "The Flawed Refuge", text = { @@ -9927,20 +10064,20 @@ return { "against the Winter of the World.", }, }, - [1189] = { + [1205] = { id = "UniqueShieldStrInt1", name = "Saffell's Frame", text = { "A swift mind solves problems before they occur.", }, }, - [1190] = { + [1206] = { id = "UniqueShieldStrInt10", name = "The Unshattered Will", text = { }, }, - [1191] = { + [1207] = { id = "UniqueShieldStrInt11", name = "Invictus Solaris", text = { @@ -9948,7 +10085,7 @@ return { "The Solaris Vanguard know only glory.", }, }, - [1192] = { + [1208] = { id = "UniqueShieldStrInt12", name = "Unyielding Flame", text = { @@ -9956,7 +10093,7 @@ return { "before he can act as a beacon of light.", }, }, - [1193] = { + [1209] = { id = "UniqueShieldStrInt13", name = "Emperor's Vigilance", text = { @@ -9964,13 +10101,13 @@ return { "risks so that greater dangers could be averted.", }, }, - [1194] = { + [1210] = { id = "UniqueShieldStrInt14", name = "The Immortal Will", text = { }, }, - [1195] = { + [1211] = { id = "UniqueShieldStrInt15", name = "Mahuxotl's Machination", text = { @@ -9978,21 +10115,21 @@ return { "darkest secrets of the Vaal... at the same time.", }, }, - [1196] = { + [1212] = { id = "UniqueShieldStrInt2", name = "Prism Guardian", text = { "When blood is paid, the weak think twice.", }, }, - [1197] = { + [1213] = { id = "UniqueShieldStrInt3", name = "The Oak", text = { "From death springs life.", }, }, - [1198] = { + [1214] = { id = "UniqueShieldStrInt4", name = "Aegis Aurora", text = { @@ -10000,7 +10137,7 @@ return { "the aurora evokes both awe and power.", }, }, - [1199] = { + [1215] = { id = "UniqueShieldStrInt5", name = "Rise of the Phoenix", text = { @@ -10008,21 +10145,21 @@ return { "for I am the phoenix, forever radiant in glory.", }, }, - [1200] = { + [1216] = { id = "UniqueShieldStrInt8", name = "Broken Faith", text = { "Be not blinded by the light.", }, }, - [1201] = { + [1217] = { id = "UniqueShieldStrInt9", name = "Victario's Charity", text = { "A man's life is the greatest gift he can give.", }, }, - [1202] = { + [1218] = { id = "UniqueShieldStrInt9x", name = "Replica Victario's Charity", text = { @@ -10031,7 +10168,7 @@ return { "- Administrator Qotra", }, }, - [1203] = { + [1219] = { id = "UniqueStaff1", name = "The Searing Touch", text = { @@ -10039,14 +10176,14 @@ return { "Rule a world, bathed in flame.", }, }, - [1204] = { + [1220] = { id = "UniqueStaff10", name = "Sire of Shards", text = { "That which was broken may yet break.", }, }, - [1205] = { + [1221] = { id = "UniqueStaff11", name = "Tremor Rod", text = { @@ -10055,7 +10192,7 @@ return { "and execute them - twice.", }, }, - [1206] = { + [1222] = { id = "UniqueStaff12", name = "The Whispering Ice", text = { @@ -10063,7 +10200,7 @@ return { "the cracks through which the Nightmare crawls.", }, }, - [1207] = { + [1223] = { id = "UniqueStaff13", name = "Realm Ender", text = { @@ -10073,7 +10210,7 @@ return { "- Archbishop Geofri", }, }, - [1208] = { + [1224] = { id = "UniqueStaff14", name = "The Stormwall", text = { @@ -10081,7 +10218,7 @@ return { "the safest place to be is the centre.", }, }, - [1209] = { + [1225] = { id = "UniqueStaff15", name = "Femurs of the Saints", text = { @@ -10090,7 +10227,7 @@ return { "- Kadavrus, Surgeon to the Umbra", }, }, - [1210] = { + [1226] = { id = "UniqueStaff16", name = "Xirgil's Crank", text = { @@ -10101,7 +10238,7 @@ return { "- Xirgil, Trapbuilder's final words.", }, }, - [1211] = { + [1227] = { id = "UniqueStaff17", name = "Duskdawn", text = { @@ -10112,7 +10249,7 @@ return { "- Archbishop Geofri", }, }, - [1212] = { + [1228] = { id = "UniqueStaff17x", name = "Replica Duskdawn", text = { @@ -10120,7 +10257,7 @@ return { "Prototype #77. It is, however, the closest we've come to perfection.\"", }, }, - [1213] = { + [1229] = { id = "UniqueStaff18", name = "Martyr of Innocence", text = { @@ -10128,7 +10265,7 @@ return { "Let the fires cleanse you of your sins.", }, }, - [1214] = { + [1230] = { id = "UniqueStaff2", name = "Taryn's Shiver", text = { @@ -10138,13 +10275,13 @@ return { "Shiver in pain at the frozen dawn.", }, }, - [1215] = { + [1231] = { id = "UniqueStaff20", name = "The Enmity Divine", text = { }, }, - [1216] = { + [1232] = { id = "UniqueStaff21", name = "Cane of Unravelling", text = { @@ -10154,7 +10291,7 @@ return { "- Doryani, Queen's Thaumaturgist", }, }, - [1217] = { + [1233] = { id = "UniqueStaff22", name = "Disintegrator", text = { @@ -10162,14 +10299,14 @@ return { "between creator and destroyer.", }, }, - [1218] = { + [1234] = { id = "UniqueStaff23", name = "Soulwrest", text = { "Death is but the start of your servitude.", }, }, - [1219] = { + [1235] = { id = "UniqueStaff24", name = "The Grey Spire", text = { @@ -10177,20 +10314,20 @@ return { "Just simpler motivations.", }, }, - [1220] = { + [1236] = { id = "UniqueStaff25", name = "Witchhunter's Judgment", text = { "The pyre is never wasted on just one heretic.", }, }, - [1221] = { + [1237] = { id = "UniqueStaff26", name = "The Yielding Mortality", text = { }, }, - [1222] = { + [1238] = { id = "UniqueStaff27", name = "The Fulcrum", text = { @@ -10198,21 +10335,21 @@ return { "the master must achieve perfect balance.", }, }, - [1223] = { + [1239] = { id = "UniqueStaff28", name = "Atziri's Rule", text = { "Bow before her... or suffer the most gruelling death imaginable.", }, }, - [1224] = { + [1240] = { id = "UniqueStaff29", name = "Cane of Kulemak", text = { "Stolen power is still power.", }, }, - [1225] = { + [1241] = { id = "UniqueStaff3", name = "Pillar of the Caged God", text = { @@ -10222,7 +10359,7 @@ return { "Deft as the needle doubt", }, }, - [1226] = { + [1242] = { id = "UniqueStaff30", name = "The Annihilating Light", text = { @@ -10230,7 +10367,7 @@ return { "than the scintillating light of utter clarity.", }, }, - [1227] = { + [1243] = { id = "UniqueStaff31", name = "The Winds of Fate", text = { @@ -10238,7 +10375,7 @@ return { "The whim of the cosmos.", }, }, - [1228] = { + [1244] = { id = "UniqueStaff32", name = "The Geomantic Gyre", text = { @@ -10246,7 +10383,7 @@ return { "one that could safely hold the first unearthed virtue gem.", }, }, - [1229] = { + [1245] = { id = "UniqueStaff33", name = "The Burden of Shadows", text = { @@ -10254,7 +10391,7 @@ return { "Every moment is a struggle to exist.", }, }, - [1230] = { + [1246] = { id = "UniqueStaff35", name = "Legacy of the Rose", text = { @@ -10264,7 +10401,7 @@ return { "but I will never leave your side.", }, }, - [1231] = { + [1247] = { id = "UniqueStaff36", name = "Jiquani's Potential", text = { @@ -10273,7 +10410,7 @@ return { "must, let us tear apart the very foundations of reality!\"", }, }, - [1232] = { + [1248] = { id = "UniqueStaff37", name = "The Broken Elegy", text = { @@ -10282,7 +10419,17 @@ return { "a fatal mistake. They did not bind him to an object.", }, }, - [1233] = { + [1249] = { + id = "UniqueStaff38", + name = "The Crustacean's Call", + text = { + "The experienced sailor knows the true mystery of the sea:", + "why, on every continent, in every lagoon, does there skitter", + "a crab of new size and colour? Not related, not lost spawn,", + "but a clawed snapper all of its own make and temperament...", + }, + }, + [1250] = { id = "UniqueStaff4", name = "Mirebough", text = { @@ -10290,7 +10437,7 @@ return { "- Old Ezomyte saying.", }, }, - [1234] = { + [1251] = { id = "UniqueStaff4x", name = "Replica Fencoil", text = { @@ -10298,7 +10445,7 @@ return { "still eludes me. Perhaps if I attach some string and a hook...\"", }, }, - [1235] = { + [1252] = { id = "UniqueStaff5", name = "Dying Breath", text = { @@ -10308,7 +10455,7 @@ return { "To listen.", }, }, - [1236] = { + [1253] = { id = "UniqueStaff6", name = "Pledge of Hands", text = { @@ -10316,7 +10463,7 @@ return { "- Jaetai, Queen's Advisor", }, }, - [1237] = { + [1254] = { id = "UniqueStaff7", name = "Hegemony's Era", text = { @@ -10325,21 +10472,21 @@ return { "And a tenacious sense of justice.", }, }, - [1238] = { + [1255] = { id = "UniqueStaff8", name = "Agnerod East", text = { "One for each corner of the great Vinktar Square.", }, }, - [1239] = { + [1256] = { id = "UniqueStaff9", name = "The Blood Thorn", text = { "Touch not the thorn, for only blood and pain await.", }, }, - [1240] = { + [1257] = { id = "UniqueStaff9x", name = "Replica Blood Thorn", text = { @@ -10347,7 +10494,7 @@ return { "What logic lies beneath the veil of reality?\"", }, }, - [1241] = { + [1258] = { id = "UniqueStrDexHelmet1", name = "The Peregrine", text = { @@ -10355,7 +10502,7 @@ return { "We travel to fulfill.", }, }, - [1242] = { + [1259] = { id = "UniqueStrHelmet2", name = "Hrimnor's Resolve", text = { @@ -10363,7 +10510,7 @@ return { "but his heart burned for vengeance.", }, }, - [1243] = { + [1260] = { id = "UniqueTalisman1", name = "Night's Hold", text = { @@ -10373,7 +10520,7 @@ return { "seek shelter from their grasp until daybreak.", }, }, - [1244] = { + [1261] = { id = "UniqueTalisman2", name = "Blightwell", text = { @@ -10383,7 +10530,7 @@ return { "never to return, and the waters turned sour.", }, }, - [1245] = { + [1262] = { id = "UniqueTalisman3", name = "Natural Hierarchy", text = { @@ -10393,7 +10540,7 @@ return { "and pray we never learn of what comes next.", }, }, - [1246] = { + [1263] = { id = "UniqueTalisman4", name = "Rigwald's Curse", text = { @@ -10403,7 +10550,7 @@ return { "And now I must live with that terrible knowledge.", }, }, - [1247] = { + [1264] = { id = "UniqueTalisman5", name = "Eyes of the Greatwolf", text = { @@ -10413,7 +10560,7 @@ return { "And will change the world through me.", }, }, - [1248] = { + [1265] = { id = "UniqueTincture1", name = "Sap of the Seasons", text = { @@ -10421,7 +10568,7 @@ return { "waiting only for the right moment.", }, }, - [1249] = { + [1266] = { id = "UniqueTincture2", name = "Mightblood Ire", text = { @@ -10429,28 +10576,28 @@ return { "ready to erupt at any provocation.", }, }, - [1250] = { + [1267] = { id = "UniqueTincture3", name = "Wildfire Phloem", text = { "New life will follow, but first come the flames.", }, }, - [1251] = { + [1268] = { id = "UniqueTincture4", name = "The Battle Within", text = { "The struggle for balance never ends.", }, }, - [1252] = { + [1269] = { id = "UniqueTincture5", name = "Grasping Nightshade", text = { "A virulent brew of death and decay.", }, }, - [1253] = { + [1270] = { id = "UniqueTwoHandAce2", name = "Reaper's Pursuit", text = { @@ -10458,7 +10605,7 @@ return { "Death collects you in the end.", }, }, - [1254] = { + [1271] = { id = "UniqueTwoHandAxe1", name = "Kaom's Primacy", text = { @@ -10466,14 +10613,14 @@ return { "leaders until the others leapt to join his cause.", }, }, - [1255] = { + [1272] = { id = "UniqueTwoHandAxe10", name = "Hezmana's Bloodlust", text = { "When a craving cannot be sated, any source will do.", }, }, - [1256] = { + [1273] = { id = "UniqueTwoHandAxe11", name = "Uul-Netol's Kiss", text = { @@ -10481,7 +10628,7 @@ return { "and beg to return to her womb.", }, }, - [1257] = { + [1274] = { id = "UniqueTwoHandAxe12", name = "Uul-Netol's Embrace", text = { @@ -10489,7 +10636,7 @@ return { "and so we turn to dust.", }, }, - [1258] = { + [1275] = { id = "UniqueTwoHandAxe13", name = "Kitava's Feast", text = { @@ -10499,7 +10646,7 @@ return { "he would devour every soul in Hinekora's domain.", }, }, - [1259] = { + [1276] = { id = "UniqueTwoHandAxe14", name = "Ngamahu's Flame", text = { @@ -10508,7 +10655,7 @@ return { "- Fairgraves, Renowned Explorer", }, }, - [1260] = { + [1277] = { id = "UniqueTwoHandAxe15", name = "Debeon's Dirge", text = { @@ -10518,7 +10665,7 @@ return { "you know death will follow soon.", }, }, - [1261] = { + [1278] = { id = "UniqueTwoHandAxe16", name = "Sinvicta's Mettle", text = { @@ -10527,14 +10674,23 @@ return { "until only emptiness remains.", }, }, - [1262] = { + [1279] = { id = "UniqueTwoHandAxe17", name = "Starcaller", text = { "What began in the stars was settled in blood, beneath an uncaring sky.", }, }, - [1263] = { + [1280] = { + id = "UniqueTwoHandAxe18", + name = "Spinesnatch", + text = { + "\"Not all the Abyssals serve the Lich Lords.", + "Some serve themselves, living off stolen", + "flesh and bone from those they... eat.\"", + }, + }, + [1281] = { id = "UniqueTwoHandAxe3", name = "The Cauteriser", text = { @@ -10542,7 +10698,7 @@ return { "of sundered, severed, missing things.", }, }, - [1264] = { + [1282] = { id = "UniqueTwoHandAxe4", name = "The Blood Reaper", text = { @@ -10551,7 +10707,7 @@ return { "Both life and land feel the thirst.", }, }, - [1265] = { + [1283] = { id = "UniqueTwoHandAxe5", name = "Wideswing", text = { @@ -10559,14 +10715,14 @@ return { "of seven men in a single cleave.", }, }, - [1266] = { + [1284] = { id = "UniqueTwoHandAxe6", name = "Wings of Entropy", text = { "Fire and Anarchy are the most reliable agents of change.", }, }, - [1267] = { + [1285] = { id = "UniqueTwoHandAxe6x", name = "Replica Wings of Entropy", text = { @@ -10574,7 +10730,7 @@ return { "power or speed when striking.\"", }, }, - [1268] = { + [1286] = { id = "UniqueTwoHandAxe7", name = "Atziri's Disfavour", text = { @@ -10582,7 +10738,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [1269] = { + [1287] = { id = "UniqueTwoHandAxe8", name = "The Harvest", text = { @@ -10591,7 +10747,7 @@ return { "Don't waste a drop.", }, }, - [1270] = { + [1288] = { id = "UniqueTwoHandAxe8x", name = "Replica Harvest", text = { @@ -10600,7 +10756,7 @@ return { "- Researcher Graven", }, }, - [1271] = { + [1289] = { id = "UniqueTwoHandAxe9", name = "Kingmaker", text = { @@ -10610,7 +10766,7 @@ return { "then forged anew.", }, }, - [1272] = { + [1290] = { id = "UniqueTwoHandMace1", name = "Hrimnor's Dirge", text = { @@ -10619,7 +10775,7 @@ return { "- Hrimnor of the Ezomytes.", }, }, - [1273] = { + [1291] = { id = "UniqueTwoHandMace10", name = "Trypanon", text = { @@ -10629,21 +10785,21 @@ return { "- Icius Perandus, Antiquities Collection, Item 3546", }, }, - [1274] = { + [1292] = { id = "UniqueTwoHandMace10x", name = "Replica Trypanon", text = { "\"The best place for this prototype would be in the hands of our enemies.\"", }, }, - [1275] = { + [1293] = { id = "UniqueTwoHandMace11", name = "Brain Rattler", text = { "The mind may have no limits, but the skull sure does.", }, }, - [1276] = { + [1294] = { id = "UniqueTwoHandMace12", name = "Tidebreaker", text = { @@ -10653,7 +10809,7 @@ return { "and the Brine King's domain will grow.", }, }, - [1277] = { + [1295] = { id = "UniqueTwoHandMace13", name = "Tawhoa's Felling", text = { @@ -10661,7 +10817,7 @@ return { "and know that you never stand alone.", }, }, - [1278] = { + [1296] = { id = "UniqueTwoHandMace15", name = "The Sacred Chalice", text = { @@ -10671,7 +10827,7 @@ return { "- Rashi, Grand Daiyata of the Sel Khari", }, }, - [1279] = { + [1297] = { id = "UniqueTwoHandMace16", name = "The Desecrated Chalice", text = { @@ -10680,7 +10836,7 @@ return { "- Rukh, of the Afarud", }, }, - [1280] = { + [1298] = { id = "UniqueTwoHandMace2", name = "Geofri's Devotion", text = { @@ -10688,7 +10844,7 @@ return { "- Archbishop Geofri of Phrecia Cathedral", }, }, - [1281] = { + [1299] = { id = "UniqueTwoHandMace3", name = "Marohi Erqi", text = { @@ -10696,28 +10852,28 @@ return { "It mattered little. When Erqi's maul fell true, so did its target.", }, }, - [1282] = { + [1300] = { id = "UniqueTwoHandMace4", name = "Voidhome", text = { "Cursed is the star whence it came.", }, }, - [1283] = { + [1301] = { id = "UniqueTwoHandMace5", name = "Chaber Cairn", text = { "The faithful may continue to serve, even after death.", }, }, - [1284] = { + [1302] = { id = "UniqueTwoHandMace6", name = "Kongor's Undying Rage", text = { "Command like a king and nothing will stand in your way.", }, }, - [1285] = { + [1303] = { id = "UniqueTwoHandMace6x", name = "Replica Kongor's Undying Rage", text = { @@ -10725,7 +10881,7 @@ return { "What underlying physics are at play here, I wonder?\"", }, }, - [1286] = { + [1304] = { id = "UniqueTwoHandMace7", name = "Panquetzaliztli", text = { @@ -10734,7 +10890,7 @@ return { "- Doryani of the Vaal", }, }, - [1287] = { + [1305] = { id = "UniqueTwoHandMace8", name = "Jorrhast's Blacksteel", text = { @@ -10743,7 +10899,7 @@ return { "in every scrap of iron he touched.", }, }, - [1288] = { + [1306] = { id = "UniqueTwoHandSword1", name = "Rigwald's Charge", text = { @@ -10751,7 +10907,7 @@ return { "- Rigwald, at the Battle of Glarryn", }, }, - [1289] = { + [1307] = { id = "UniqueTwoHandSword10", name = "Hiltless", text = { @@ -10760,7 +10916,7 @@ return { "beyond the flesh and into the demon's soul.", }, }, - [1290] = { + [1308] = { id = "UniqueTwoHandSword11", name = "Kondo's Pride", text = { @@ -10772,28 +10928,28 @@ return { "wreaking havoc like a steel squall.", }, }, - [1291] = { + [1309] = { id = "UniqueTwoHandSword12", name = "Voidforge", text = { "The end is written into the beginning.", }, }, - [1292] = { + [1310] = { id = "UniqueTwoHandSword14", name = "Echoforge", text = { "Witness the emergence of a new cosmic power.", }, }, - [1293] = { + [1311] = { id = "UniqueTwoHandSword15", name = "Rakiata's Dance", text = { "In the shifting reflections of the sea, the truth of the soul can be seen.", }, }, - [1294] = { + [1312] = { id = "UniqueTwoHandSword16", name = "The Living Blade", text = { @@ -10801,7 +10957,7 @@ return { "and named it Lorrata. Its strongest root became a weapon...", }, }, - [1295] = { + [1313] = { id = "UniqueTwoHandSword17", name = "The Golden Charlatan", text = { @@ -10810,7 +10966,7 @@ return { "spill our blood in pursuit of power?\"", }, }, - [1296] = { + [1314] = { id = "UniqueTwoHandSword18", name = "Fleshrender", text = { @@ -10819,7 +10975,7 @@ return { "- Sak, of the Afarud", }, }, - [1297] = { + [1315] = { id = "UniqueTwoHandSword19", name = "Skysunder", text = { @@ -10828,7 +10984,7 @@ return { "and searing light embraced her golden armour. The Sun was real, and it was her.\"", }, }, - [1298] = { + [1316] = { id = "UniqueTwoHandSword2", name = "Shiversting", text = { @@ -10836,7 +10992,7 @@ return { "Life of sorrow, lived apart.", }, }, - [1299] = { + [1317] = { id = "UniqueTwoHandSword3", name = "Terminus Est", text = { @@ -10846,7 +11002,7 @@ return { "Smiling, he returned death's embrace.", }, }, - [1300] = { + [1318] = { id = "UniqueTwoHandSword4", name = "Queen's Escape", text = { @@ -10858,7 +11014,7 @@ return { "She sat on her throne and wept.", }, }, - [1301] = { + [1319] = { id = "UniqueTwoHandSword6", name = "Oro's Sacrifice", text = { @@ -10866,7 +11022,7 @@ return { "will burn in the minds of men forever.", }, }, - [1302] = { + [1320] = { id = "UniqueTwoHandSword6x", name = "Replica Oro's Sacrifice", text = { @@ -10875,7 +11031,7 @@ return { "- Researcher Arn", }, }, - [1303] = { + [1321] = { id = "UniqueTwoHandSword7", name = "Edge of Madness", text = { @@ -10884,7 +11040,7 @@ return { "Laughing.", }, }, - [1304] = { + [1322] = { id = "UniqueTwoHandSword8", name = "Doomsower", text = { @@ -10892,7 +11048,7 @@ return { "Evil forged and Hope forsworn.", }, }, - [1305] = { + [1323] = { id = "UniqueTwoHandSword9", name = "The Dancing Duo", text = { @@ -10902,7 +11058,7 @@ return { "And dance with death sublime.", }, }, - [1306] = { + [1324] = { id = "UniqueWand1", name = "Moonsorrow", text = { @@ -10911,7 +11067,7 @@ return { "The lonely moon weeps", }, }, - [1307] = { + [1325] = { id = "UniqueWand10", name = "Abberath's Horn", text = { @@ -10919,7 +11075,7 @@ return { "as his ruin spread across the land.", }, }, - [1308] = { + [1326] = { id = "UniqueWand11", name = "Obliteration", text = { @@ -10927,7 +11083,7 @@ return { "Wielding anarchy and destruction as our tools of genesis.", }, }, - [1309] = { + [1327] = { id = "UniqueWand12", name = "Storm Prison", text = { @@ -10935,7 +11091,7 @@ return { "You can barely even leash it.", }, }, - [1310] = { + [1328] = { id = "UniqueWand13", name = "Corona Solaris", text = { @@ -10943,7 +11099,7 @@ return { "Each time, Solaris emerges from Lunaris, born anew.", }, }, - [1311] = { + [1329] = { id = "UniqueWand14", name = "Ashcaller", text = { @@ -10952,7 +11108,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [1312] = { + [1330] = { id = "UniqueWand15", name = "Tulborn", text = { @@ -10962,7 +11118,7 @@ return { "We return once more.", }, }, - [1313] = { + [1331] = { id = "UniqueWand16", name = "Tulfall", text = { @@ -10971,7 +11127,7 @@ return { "But in the great freeze we are forged anew.", }, }, - [1314] = { + [1332] = { id = "UniqueWand16x", name = "Replica Tulfall", text = { @@ -10980,21 +11136,21 @@ return { "- Researcher Arn", }, }, - [1315] = { + [1333] = { id = "UniqueWand17", name = "Shade of Solaris", text = { "Without light, there can be no shadow.", }, }, - [1316] = { + [1334] = { id = "UniqueWand18", name = "The Poet's Pen", text = { "In every piece of prose, lies a tiny spark of magic.", }, }, - [1317] = { + [1335] = { id = "UniqueWand19", name = "Shimmeron", text = { @@ -11003,7 +11159,7 @@ return { "unveiling forms no sound mind could grasp.", }, }, - [1318] = { + [1336] = { id = "UniqueWand2", name = "Midnight Bargain", text = { @@ -11013,21 +11169,21 @@ return { "To crush the very light of day.", }, }, - [1319] = { + [1337] = { id = "UniqueWand20", name = "Relic of the Pact", text = { "Crush your enemies with your essence, so that you may drink of theirs.", }, }, - [1320] = { + [1338] = { id = "UniqueWand21", name = "Grace of the Goddess", text = { "In a time of darkness, know that the Draíocht will bring you light.", }, }, - [1321] = { + [1339] = { id = "UniqueWand22", name = "Mystic Refractor", text = { @@ -11035,7 +11191,7 @@ return { "- Trinian, Intellectus Prime", }, }, - [1322] = { + [1340] = { id = "UniqueWand23", name = "Unlight Extant", text = { @@ -11044,7 +11200,7 @@ return { "one lantern carries a single flame.", }, }, - [1323] = { + [1341] = { id = "UniqueWand2x", name = "Replica Midnight Bargain", text = { @@ -11053,7 +11209,7 @@ return { "- Researcher Olesya", }, }, - [1324] = { + [1342] = { id = "UniqueWand3", name = "Void Battery", text = { @@ -11062,7 +11218,7 @@ return { "- Inquisitor Maligaro", }, }, - [1325] = { + [1343] = { id = "UniqueWand4", name = "Lifesprig", text = { @@ -11071,7 +11227,7 @@ return { "Life endures in Wraeclast.", }, }, - [1326] = { + [1344] = { id = "UniqueWand6", name = "Piscator's Vigil", text = { @@ -11083,7 +11239,7 @@ return { "- Jojoba Mansell, bard, angler, adventurer", }, }, - [1327] = { + [1345] = { id = "UniqueWand7", name = "Apep's Rage", text = { @@ -11091,14 +11247,14 @@ return { "and engulfs the leaking mind of Man.", }, }, - [1328] = { + [1346] = { id = "UniqueWand8", name = "Amplification Rod", text = { "If it's worth doing once, it's worth doing twice.", }, }, - [1329] = { + [1347] = { id = "UniqueWand9", name = "Twyzel", text = { @@ -11106,7 +11262,7 @@ return { "hardened, twisted.", }, }, - [1330] = { + [1348] = { id = "UniqueWand9x", name = "Replica Twyzel", text = { @@ -11114,7 +11270,7 @@ return { "Prototype #78 serves as a prime example.\"", }, }, - [1331] = { + [1349] = { id = "UniqueWatchstone1", name = "Terror", text = { @@ -11123,7 +11279,7 @@ return { "and died horrifically.", }, }, - [1332] = { + [1350] = { id = "UniqueWatchstone2", name = "Stalwart Defenders", text = { @@ -11132,7 +11288,7 @@ return { "and were swept back out to sea.", }, }, - [1333] = { + [1351] = { id = "UniqueWatchstone3", name = "Misinformation", text = { @@ -11142,14 +11298,14 @@ return { "It was always just a little farther.", }, }, - [1334] = { + [1352] = { id = "UniqueWatchstone4", name = "Irresistible Temptation", text = { "Nothing is more alluring than mystery.", }, }, - [1335] = { + [1353] = { id = "UniqueWatchstone5", name = "Territories Unknown", text = { @@ -11159,7 +11315,7 @@ return { "no matter the personal cost.", }, }, - [1336] = { + [1354] = { id = "UniqueWatchstone6", name = "War Among the Stars", text = { @@ -11167,7 +11323,7 @@ return { "For some, that is by design.", }, }, - [1337] = { + [1355] = { id = "UniqueWatchstone7", name = "Booming Populace", text = { diff --git a/src/Data/Gems.lua b/src/Data/Gems.lua index b57cf3d684..20d7057621 100644 --- a/src/Data/Gems.lua +++ b/src/Data/Gems.lua @@ -276,6 +276,27 @@ return { reqInt = 40, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemSweepAltX"] = { + name = "Holy Sweep of Hammerfalls", + baseTypeName = "Holy Sweep of Hammerfalls", + gameId = "Metadata/Items/Gems/SkillGemSweep", + variantId = "SweepAltX", + grantedEffectId = "SweepAltX", + tags = { + strength = true, + grants_active_skill = true, + attack = true, + area = true, + melee = true, + lightning = true, + duration = true, + }, + tagString = "Attack, AoE, Melee, Lightning, Duration", + reqStr = 60, + reqDex = 0, + reqInt = 40, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemGroundSlam"] = { name = "Ground Slam", baseTypeName = "Ground Slam", @@ -2907,6 +2928,27 @@ return { reqInt = 60, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemManaInfusedStaff"] = { + name = "Mana-Infused Staff", + baseTypeName = "Mana-Infused Staff", + gameId = "Metadata/Items/Gems/SkillGemManaInfusedStaff", + variantId = "ManaInfusedStaff", + grantedEffectId = "ManaInfusedStaff", + tags = { + intelligence = true, + grants_active_skill = true, + arcane = true, + spell = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Arcane, Spell, AoE, Duration, Lightning", + reqStr = 40, + reqDex = 0, + reqInt = 60, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemMoltenShell"] = { name = "Molten Shell", baseTypeName = "Molten Shell", @@ -8242,8 +8284,8 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemDarkPact"] = { - name = "Dark Pact", - baseTypeName = "Dark Pact", + name = "Dark Bargain", + baseTypeName = "Dark Bargain", gameId = "Metadata/Items/Gems/SkillGemDarkPact", variantId = "DarkPact", grantedEffectId = "DarkPact", @@ -8264,8 +8306,8 @@ return { naturalMaxLevel = 20, }, ["Metadata/Items/Gems/SkillGemDarkPactAltX"] = { - name = "Dark Pact of Trarthus", - baseTypeName = "Dark Pact of Trarthus", + name = "Dark Bargain of Trarthus", + baseTypeName = "Dark Bargain of Trarthus", gameId = "Metadata/Items/Gems/SkillGemDarkPact", variantId = "DarkPactAltX", grantedEffectId = "DarkPactAltX", @@ -12645,6 +12687,26 @@ return { reqInt = 40, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemReapAltX"] = { + name = "Reap of Butchery", + baseTypeName = "Reap of Butchery", + gameId = "Metadata/Items/Gems/SkillGemBloodreap", + variantId = "ReapAltX", + grantedEffectId = "ReapAltX", + tags = { + strength = true, + grants_active_skill = true, + spell = true, + physical = true, + area = true, + duration = true, + }, + tagString = "Spell, Physical, AoE, Duration", + reqStr = 60, + reqDex = 0, + reqInt = 40, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemPetrifiedBlood"] = { name = "Petrified Blood", baseTypeName = "Petrified Blood", @@ -14530,6 +14592,27 @@ return { reqInt = 40, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemHolyHammersAltX"] = { + name = "Holy Hammers of Spirals", + baseTypeName = "Holy Hammers of Spirals", + gameId = "Metadata/Items/Gems/SkillGemHolyHammers", + variantId = "HolyHammersAltX", + grantedEffectId = "HolyHammersAltX", + tags = { + strength = true, + grants_active_skill = true, + attack = true, + slam = true, + melee = true, + area = true, + lightning = true, + }, + tagString = "Attack, Slam, Melee, AoE, Lightning", + reqStr = 60, + reqDex = 0, + reqInt = 40, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemShieldOfLight"] = { name = "Shield of Light", baseTypeName = "Shield of Light", @@ -14595,6 +14678,28 @@ return { reqInt = 40, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemDivineBlastAltX"] = { + name = "Divine Blast of Radiance", + baseTypeName = "Divine Blast of Radiance", + gameId = "Metadata/Items/Gems/SkillGemDivineBlast", + variantId = "DivineBlastAltX", + grantedEffectId = "DivineBlastAltX", + tags = { + strength = true, + grants_active_skill = true, + area = true, + attack = true, + physical = true, + duration = true, + fire = true, + orb = true, + }, + tagString = "AoE, Attack, Physical, Duration, Fire, Orb", + reqStr = 60, + reqDex = 0, + reqInt = 40, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemQuickstepHardMode"] = { name = "Quickstep", baseTypeName = "Quickstep", @@ -15728,7 +15833,7 @@ return { naturalMaxLevel = 3, }, ["Metadata/Items/Gems/SkillGemSupportMinionPact"] = { - name = "Minion Pact", + name = "Communion", gameId = "Metadata/Items/Gems/SupportGemMinionPact", variantId = "SupportMinionPact", grantedEffectId = "SupportMinionPact", @@ -15805,6 +15910,46 @@ return { reqInt = 40, naturalMaxLevel = 3, }, + ["Metadata/Items/Gems/SkillGemSupportCrustaceousGrasp"] = { + name = "Coursing Current", + gameId = "Metadata/Items/Gems/SupportGemCrustaceousGrasp", + variantId = "SupportCrustaceousGrasp", + grantedEffectId = "SupportCrustaceousGrasp", + tags = { + low_max_level = true, + exceptional = true, + intelligence = true, + support = true, + }, + tagString = "Exceptional, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + naturalMaxLevel = 3, + }, + ["Metadata/Items/Gems/SkillGemSupportCrystalfall"] = { + name = "Crystalfall", + gameId = "Metadata/Items/Gems/SupportGemCrystalfall", + variantId = "SupportCrystalfall", + grantedEffectId = "SupportCrystalfall", + secondaryGrantedEffectId = "TriggeredSupportCrystalfall", + tags = { + low_max_level = true, + exceptional = true, + attack = true, + strength = true, + support = true, + grants_active_skill = true, + slam = true, + area = true, + melee = true, + }, + tagString = "Exceptional, Attack, Support, Slam, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + naturalMaxLevel = 3, + }, ["Metadata/Items/Gems/SkillGemSupportFocusedChannelling"] = { name = "Focused Channelling", gameId = "Metadata/Items/Gems/SupportGemFocusedChannelling", @@ -15962,4 +16107,90 @@ return { reqInt = 40, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemPactOfBeidat"] = { + name = "Pact of Beidat", + baseTypeName = "Pact of Beidat", + gameId = "Metadata/Items/Gems/SkillGemPactOfBeidat", + variantId = "PactOfBeidat", + grantedEffectId = "PactOfBeidat", + tags = { + exceptional = true, + projectile = true, + chaining = true, + area = true, + grants_active_skill = true, + spell = true, + pact = true, + }, + tagString = "Exceptional, Projectile, Chaining, AoE, Spell, Pact", + reqStr = 0, + reqDex = 0, + reqInt = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemPactOfGhorr"] = { + name = "Pact of Ghorr", + baseTypeName = "Pact of Ghorr", + gameId = "Metadata/Items/Gems/SkillGemPactOfGhorr", + variantId = "PactOfGhorr", + grantedEffectId = "PactOfGhorr", + secondaryGrantedEffectId = "TriggeredBloodrend", + tags = { + exceptional = true, + grants_active_skill = true, + spell = true, + pact = true, + area = true, + duration = true, + projectile = true, + physical = true, + trigger = true, + }, + tagString = "Exceptional, Spell, Pact, AoE, Duration, Projectile, Physical, Trigger", + reqStr = 0, + reqDex = 0, + reqInt = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemPactOfKtash"] = { + name = "Pact of K'Tash", + baseTypeName = "Pact of K'Tash", + gameId = "Metadata/Items/Gems/SkillGemPactOfKtash", + variantId = "PactOfKtash", + grantedEffectId = "PactOfKtash", + tags = { + exceptional = true, + grants_active_skill = true, + spell = true, + pact = true, + }, + tagString = "Exceptional, Spell, Pact", + reqStr = 0, + reqDex = 0, + reqInt = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemPactOfLycia"] = { + name = "Pact of Lycia", + baseTypeName = "Pact of Lycia", + gameId = "Metadata/Items/Gems/SkillGemPactOfLycia", + variantId = "PactOfLycia", + grantedEffectId = "PactOfLycia", + secondaryGrantedEffectId = "TriggeredHeavensScourge", + tags = { + exceptional = true, + channelling = true, + grants_active_skill = true, + spell = true, + pact = true, + lightning = true, + area = true, + trigger = true, + }, + tagString = "Exceptional, Channelling, Spell, Pact, Lightning, AoE, Trigger", + reqStr = 0, + reqDex = 0, + reqInt = 0, + naturalMaxLevel = 20, + }, } \ No newline at end of file diff --git a/src/Data/Global.lua b/src/Data/Global.lua index 71393a6123..7a07f9a8e4 100644 --- a/src/Data/Global.lua +++ b/src/Data/Global.lua @@ -216,142 +216,136 @@ SkillType = { Projectile = 3, -- Specifically skills which fire projectiles DualWieldOnly = 4, -- Attack requires dual wielding, only used on Dual Strike Buff = 5, - Removed6 = 6, -- Now removed, was CanDualWield: Attack can be used while dual wielding - MainHandOnly = 7, -- Attack only uses the main hand; removed in 3.5 but still needed for 2.6 - Removed8 = 8, -- Now removed, was only used on Cleave - Minion = 9, - Damage = 10, -- Skill hits (not used on attacks because all of them hit) - Area = 11, - Duration = 12, - RequiresShield = 13, - ProjectileSpeed = 14, - HasReservation = 15, - ReservationBecomesCost = 16, - Trappable = 17, -- Skill can be turned into a trap - Totemable = 18, -- Skill can be turned into a totem - Mineable = 19, -- Skill can be turned into a mine - ElementalStatus = 20, -- Causes elemental status effects, but doesn't hit (used on Herald of Ash to allow Elemental Proliferation to apply) - MinionsCanExplode = 21, - Removed22 = 22, -- Now removed, was AttackCanTotem - Chains = 23, - Melee = 24, - MeleeSingleTarget = 25, - Multicastable = 26, -- Spell can repeat via Spell Echo - TotemCastsAlone = 27, - Multistrikeable = 28, -- Attack can repeat via Multistrike - CausesBurning = 29, -- Deals burning damage - SummonsTotem = 30, - TotemCastsWhenNotDetached = 31, - Fire = 32, - Cold = 33, - Lightning = 34, - Triggerable = 35, - Trapped = 36, - Movement = 37, - Removed39 = 38, -- Now removed, was Cast - DamageOverTime = 39, - RemoteMined = 40, - Triggered = 41, - Vaal = 42, - Aura = 43, - Removed45 = 44, -- Now removed, was LightningSpell - CanTargetUnusableCorpse = 45, -- Doesn't appear to be used at all - Removed47 = 46, -- Now removed, was TriggeredAttack - RangedAttack = 47, - Removed49 = 48, -- Now removed, was MinionSpell - Chaos = 49, - FixedSpeedProjectile = 50, -- Not used by any skill - Removed52 = 51, - ThresholdJewelArea = 52, -- Allows Burning Arrow and Vigilant Strike to be supported by Inc AoE and Conc Effect - ThresholdJewelProjectile = 53, - ThresholdJewelDuration = 54, -- Allows Burning Arrow to be supported by Inc/Less Duration and Rapid Decay - ThresholdJewelRangedAttack = 55, - Removed57 = 56, - Channel = 57, - DegenOnlySpellDamage = 58, -- Allows Contagion, Blight and Scorching Ray to be supported by Controlled Destruction - Removed60 = 59, -- Now removed, was ColdSpell - InbuiltTrigger = 60, -- Skill granted by item that is automatically triggered, prevents trigger gems and trap/mine/totem from applying - Golem = 61, - Herald = 62, - AuraAffectsEnemies = 63, -- Used by Death Aura, added by Blasphemy - NoRuthless = 64, - ThresholdJewelSpellDamage = 65, - Cascadable = 66, -- Spell can cascade via Spell Cascade - ProjectilesFromUser = 67, -- Skill can be supported by Volley - MirageArcherCanUse = 68, -- Skill can be supported by Mirage Archer - ProjectileSpiral = 69, -- Excludes Volley from Vaal Fireball and Vaal Spark - SingleMainProjectile = 70, -- Excludes Volley from Spectral Shield Throw - MinionsPersistWhenSkillRemoved = 71, -- Excludes Summon Phantasm on Kill from Manifest Dancing Dervish - ProjectileNumber = 72, -- Allows LMP/GMP on Rain of Arrows and Toxic Rain - Warcry = 73, -- Warcry - Instant = 74, -- Instant cast skill - Brand = 75, - DestroysCorpse = 76, -- Consumes corpses on use - NonHitChill = 77, - ChillingArea = 78, - AppliesCurse = 79, - CanRapidFire = 80, - AuraDuration = 81, - AreaSpell = 82, - OR = 83, - AND = 84, - NOT = 85, - Physical = 86, - AppliesMaim = 87, - CreatesMinion = 88, - Guard = 89, - Travel = 90, - Blink = 91, - CanHaveBlessing = 92, - ProjectilesNotFromUser = 93, - AttackInPlaceIsDefault = 94, - Nova = 95, - InstantNoRepeatWhenHeld = 96, - InstantShiftAttackForLeftMouse = 97, - AuraNotOnCaster = 98, - Banner = 99, - Rain = 100, - Cooldown = 101, - ThresholdJewelChaining= 102, - Slam = 103, - Stance = 104, - NonRepeatable = 105, -- Blood and Sand + Flesh and Stone - OtherThingUsesSkill = 106, - Steel = 107, - Hex = 108, - Mark = 109, - Aegis = 110, - Orb = 111, - KillNoDamageModifiers = 112, - RandomElement = 113, -- means elements cannot repeat - LateConsumeCooldown = 114, - Arcane = 115, -- means it is reliant on amount of mana spent - FixedCastTime = 116, - RequiresOffHandNotWeapon = 117, - Link = 118, - Blessing = 119, - ZeroReservation = 120, - DynamicCooldown = 121, - Microtransaction = 122, - OwnerCannotUse = 123, - ProjectilesNumberModifiersNotApplied = 124, - TotemsAreBallistae = 125, - SkillGrantedBySupport = 126, - PreventHexTransfer = 127, - MinionsAreUndamagable = 128, - InnateTrauma = 129, - DualWieldRequiresDifferentTypes = 130, - NoVolley = 131, - Retaliation = 132, - NeverExertable = 133, - DisallowTriggerSupports = 134, - ProjectileCannotReturn = 135, - Offering = 136, - SupportedByBane = 137, - WandAttack = 138, - GainsIntensity = 139, - CreatesSentinelMinion = 140, - SupportedByAutoExertion = 141, + Minion = 6, + Damage = 7, -- Skill hits (not used on attacks because all of them hit) + Area = 8, + Duration = 9, + RequiresShield = 10, + ProjectileSpeed = 11, + HasReservation = 12, + ReservationBecomesCost = 13, + Trappable = 14, -- Skill can be turned into a trap + Totemable = 15, -- Skill can be turned into a totem + Mineable = 16, -- Skill can be turned into a mine + ElementalStatus = 17, -- Causes elemental status effects, but doesn't hit (used on Herald of Ash to allow Elemental Proliferation to apply) + MinionsCanExplode = 18, + Chains = 19, + Melee = 20, + MeleeSingleTarget = 21, + Multicastable = 22, -- Spell can repeat via Spell Echo + TotemCastsAlone = 23, + Multistrikeable = 24, -- Attack can repeat via Multistrike + CausesBurning = 25, -- Deals burning damage + SummonsTotem = 26, + TotemCastsWhenNotDetached = 27, + Physical = 28, + Fire = 29, + Cold = 30, + Lightning = 31, + Triggerable = 32, + Trapped = 33, + Movement = 34, + DamageOverTime = 35, + RemoteMined = 36, + Triggered = 37, + Vaal = 38, + Aura = 39, + CanTargetUnusableCorpse = 40, -- Doesn't appear to be used at all + RangedAttack = 41, + Chaos = 42, + FixedSpeedProjectile = 43, -- Not used by any skill + ThresholdJewelArea = 44, -- Allows Burning Arrow and Vigilant Strike to be supported by Inc AoE and Conc Effect + ThresholdJewelProjectile = 45, + ThresholdJewelDuration = 46, -- Allows Burning Arrow to be supported by Inc/Less Duration and Rapid Decay + ThresholdJewelRangedAttack = 47, + Channel = 48, + DegenOnlySpellDamage = 49, -- Allows Contagion, Blight and Scorching Ray to be supported by Controlled Destruction + InbuiltTrigger = 50, -- Skill granted by item that is automatically triggered, prevents trigger gems and trap/mine/totem from applying + Golem = 51, + Herald = 52, + AuraAffectsEnemies = 53, -- Used by Death Aura, added by Blasphemy + NoRuthless = 54, + ThresholdJewelSpellDamage = 55, + Cascadable = 56, -- Spell can cascade via Spell Cascade + ProjectilesFromUser = 57, -- Skill can be supported by Volley + MirageArcherCanUse = 58, -- Skill can be supported by Mirage Archer + ProjectileSpiral = 59, -- Excludes Volley from Vaal Fireball and Vaal Spark + SingleMainProjectile = 60, -- Excludes Volley from Spectral Shield Throw + MinionsPersistWhenSkillRemoved = 61, -- Excludes Summon Phantasm on Kill from Manifest Dancing Dervish + ProjectileNumber = 62, -- Allows LMP/GMP on Rain of Arrows and Toxic Rain + Warcry = 63, -- Warcry + Instant = 64, -- Instant cast skill + Brand = 65, + DestroysCorpse = 66, -- Consumes corpses on use + NonHitChill = 67, + ChillingArea = 68, + AppliesCurse = 69, + CanRapidFire = 70, + AuraDuration = 71, + AreaSpell = 72, + OR = 73, + AND = 74, + NOT = 75, + AppliesMaim = 76, + CreatesMinion = 77, + Guard = 78, + Travel = 79, + Blink = 80, + CanHaveBlessing = 81, + ProjectilesNotFromUser = 82, + AttackInPlaceIsDefault = 83, + Nova = 84, + InstantNoRepeatWhenHeld = 85, + InstantShiftAttackForLeftMouse = 86, + AuraNotOnCaster = 87, + Banner = 88, + Rain = 89, + Cooldown = 90, + ThresholdJewelChaining= 91, + Slam = 92, + Stance = 93, + NonRepeatable = 94, -- Blood and Sand + Flesh and Stone + OtherThingUsesSkill = 95, + Steel = 96, + Hex = 97, + Mark = 98, + Aegis = 99, + Orb = 100, + KillNoDamageModifiers = 101, + RandomElement = 102, -- means elements cannot repeat + LateConsumeCooldown = 103, + Arcane = 104, -- means it is reliant on amount of mana spent + FixedCastTime = 105, + RequiresOffHandNotWeapon = 106, + Link = 107, + Blessing = 108, + ZeroReservation = 109, + DynamicCooldown = 110, + Microtransaction = 111, + OwnerCannotUse = 112, + ProjectilesNumberModifiersNotApplied = 113, + TotemsAreBallistae = 114, + SkillGrantedBySupport = 115, + PreventHexTransfer = 116, + MinionsAreUndamagable = 117, + InnateTrauma = 118, + DualWieldRequiresDifferentTypes = 119, + NoVolley = 120, + Retaliation = 121, + NeverExertable = 122, + DisallowTriggerSupports = 123, + ProjectileCannotReturn = 124, + Offering = 125, + SupportedByBane = 126, + WandAttack = 127, + GainsIntensity = 128, + CreatesSentinelMinion = 129, + SupportedByAutoExertion = 130, + SupportedByCrabTotem = 131, + SupportedBySpellTotem = 132, + CreatesCorpse = 133, + RequiresStaff = 134, + Pact = 135, } GlobalCache = { diff --git a/src/Data/Minions.lua b/src/Data/Minions.lua index b03befd6a7..731eabef89 100644 --- a/src/Data/Minions.lua +++ b/src/Data/Minions.lua @@ -276,7 +276,7 @@ minions["SummonedSpectralWolf"] = { weaponType1 = "Dagger", limit = "ActiveWolfLimit", skillList = { - "MeleeAtAnimationSpeed", + "Melee", }, modList = { mod("PhysicalDamageLifeLeech", "BASE", 100, 1, 0), -- SummonedWolfLifeLeech [life_leech_from_physical_attack_damage_permyriad = 10000] @@ -293,17 +293,16 @@ minions["SummonedSpectralTiger"] = { chaosResist = 20, damage = 26.25, damageSpread = 0.2, - attackTime = 1.5, + attackTime = 0.8, attackRange = 11, accuracy = 3.4, weaponType1 = "Dagger", limit = "ActiveTigerLimit", skillList = { - "MeleeAtAnimationSpeed", + "Melee", }, modList = { mod("PhysicalDamageLifeLeech", "BASE", 100, 1, 0), -- SummonedWolfLifeLeech [life_leech_from_physical_attack_damage_permyriad = 10000] - mod("Speed", "INC", 20, 1, 0), -- MonsterImplicitFastAttack4 [attack_speed_+% = 20] }, } @@ -931,8 +930,8 @@ minions["RhoaUniqueSummoned"] = { accuracy = 3.4, limit = "ActiveBeastMinionLimit", skillList = { - "MeleeAtAnimationSpeedUnique", "SummonedRhoaShieldCharge", + "Melee", }, modList = { -- MonsterNearbyEnemiesAreIntimidated [is_intimidated = 1] @@ -990,7 +989,7 @@ minions["DropBearUniqueSummoned"] = { weaponType1 = "One Handed Mace", limit = "ActiveBeastMinionLimit", skillList = { - "MeleeAtAnimationSpeedUnique", + "Melee", "DropBearSummonedGroundSlam", "DropBearSummonedRallyingCry", }, @@ -1171,7 +1170,7 @@ minions["SummonedReaper"] = { chaosResist = 20, damage = 2.4, damageSpread = 0.2, - attackTime = 1.5, + attackTime = 1.67, attackRange = 13, accuracy = 3.4, weaponType1 = "One Handed Sword", @@ -1828,12 +1827,12 @@ minions["Hiveborn"] = { chaosResist = 20, damage = 3, damageSpread = 0.2, - attackTime = 1, + attackTime = 1.07, attackRange = 11, accuracy = 1, limit = "ActiveHivebornLimit", skillList = { - "MeleeAtAnimationSpeedComboCold", + "MeleeComboCold", }, modList = { -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1] @@ -1850,14 +1849,12 @@ minions["ShamblingUndead"] = { chaosResist = 20, damage = 2.1, damageSpread = 0.4, - attackTime = 1.17, + attackTime = 1.25, attackRange = 11, accuracy = 3.4, limit = "ShamblingUndeadLimit", skillList = { - "MeleeAtAnimationSpeedChaos", - "ZombieSlam", - "GAZombieCorpseGroundImpact", + "MeleePartialChaos", }, modList = { mod("Armour", "INC", 40, 0, 0), -- MonsterImplicitDamageReduction1 [physical_damage_reduction_rating_+% = 40] diff --git a/src/Data/Misc.lua b/src/Data/Misc.lua index 41123e521e..b067863d39 100644 --- a/src/Data/Misc.lua +++ b/src/Data/Misc.lua @@ -8,8 +8,8 @@ data.monsterLifeTable = { 22, 26, 31, 36, 42, 48, 55, 62, 70, 78, 87, 97, 107, 1 data.monsterLifeTable2 = { 10, 12, 15, 18, 21, 25, 29, 34, 39, 44, 50, 56, 63, 70, 79, 87, 97, 107, 119, 131, 144, 158, 174, 191, 209, 228, 249, 272, 296, 323, 351, 382, 415, 450, 489, 530, 574, 621, 672, 727, 786, 850, 917, 990, 1069, 1153, 1243, 1339, 1443, 1554, 1673, 1800, 1937, 2083, 2240, 2408, 2587, 2780, 2986, 3206, 3442, 3694, 3963, 4252, 4560, 4890, 5243, 5620, 6022, 6453, 6913, 7404, 7929, 8490, 9089, 9729, 10412, 11141, 11920, 12751, 13638, 14585, 15596, 16675, 17825, 19053, 20363, 21760, 23250, 24840, 26535, 28343, 30270, 32326, 34517, 36853, 39343, 41997, 44826, 47841, } data.monsterLifeTable3 = { 13, 15, 18, 22, 25, 29, 34, 38, 44, 49, 55, 62, 69, 77, 86, 95, 106, 117, 128, 141, 155, 170, 187, 204, 223, 244, 266, 290, 316, 344, 373, 406, 440, 478, 518, 561, 608, 658, 712, 769, 831, 898, 970, 1046, 1129, 1217, 1312, 1414, 1523, 1640, 1766, 1900, 2044, 2199, 2364, 2541, 2731, 2934, 3151, 3384, 3633, 3900, 4185, 4490, 4816, 5165, 5539, 5938, 6364, 6820, 7308, 7829, 8386, 8980, 9616, 10295, 11020, 11795, 12622, 13506, 14449, 15456, 16531, 17679, 18904, 20211, 21607, 23096, 24684, 26380, 28188, 30117, 32175, 34370, 36711, 39207, 41870, 44708, 47735, 50962, } data.monsterAllyLifeTable = { 15, 16, 18, 20, 22, 24, 27, 29, 32, 35, 38, 41, 44, 48, 52, 56, 60, 65, 70, 75, 81, 87, 93, 99, 106, 114, 121, 130, 138, 148, 158, 168, 179, 190, 203, 215, 229, 244, 259, 275, 292, 310, 328, 348, 369, 392, 415, 440, 465, 493, 522, 552, 584, 618, 653, 691, 730, 772, 816, 862, 910, 961, 1015, 1072, 1131, 1194, 1260, 1329, 1402, 1478, 1559, 1644, 1733, 1827, 1926, 2029, 2138, 2253, 2373, 2500, 2633, 2773, 2919, 3074, 3236, 3406, 3585, 3773, 3970, 4178, 4395, 4624, 4864, 5116, 5381, 5659, 5951, 6257, 6578, 6916, } -data.monsterDamageTable = { 4.9899997711182, 5.5599999427795, 6.1599998474121, 6.8099999427795, 7.5, 8.2299995422363, 9, 9.8199996948242, 10.699999809265, 11.619999885559, 12.60000038147, 13.640000343323, 14.739999771118, 15.909999847412, 17.139999389648, 18.450000762939, 19.829999923706, 21.290000915527, 22.840000152588, 24.469999313354, 26.190000534058, 28.010000228882, 29.940000534058, 31.959999084473, 34.110000610352, 36.360000610352, 38.75, 41.259998321533, 43.909999847412, 46.700000762939, 49.650001525879, 52.75, 56.009998321533, 59.450000762939, 63.080001831055, 66.889999389648, 70.910003662109, 75.129997253418, 79.580001831055, 84.26000213623, 89.180000305176, 94.349998474121, 99.800003051758, 105.51999664307, 111.5299987793, 117.86000061035, 124.5, 131.49000549316, 138.83000183105, 146.5299987793, 154.63000488281, 163.13999938965, 172.07000732422, 181.44999694824, 191.30000305176, 201.63000488281, 212.47999572754, 223.86999511719, 235.83000183105, 248.36999511719, 261.5299987793, 275.32998657227, 289.82000732422, 305.01000976563, 320.94000244141, 337.64999389648, 355.17999267578, 373.54998779297, 392.80999755859, 413.01000976563, 434.17999267578, 456.36999511719, 479.61999511719, 504, 529.53997802734, 556.29998779297, 584.34997558594, 613.72998046875, 644.5, 676.75, 710.52001953125, 745.89001464844, 782.94000244141, 821.72998046875, 862.35998535156, 904.90002441406, 949.44000244141, 996.07000732422, 1044.8900146484, 1096, 1149.5, 1205.5, 1264.1099853516, 1325.4499511719, 1389.6400146484, 1456.8199462891, 1527.1199951172, 1600.6800537109, 1677.6400146484, 1758.1700439453, } -data.monsterAllyDamageTable = { 5.6199998855591, 6.0300002098083, 6.460000038147, 6.9200000762939, 7.4099998474121, 7.9299998283386, 8.4799995422363, 9.0600004196167, 9.6800003051758, 10.329999923706, 11.029999732971, 11.760000228882, 12.539999961853, 13.369999885559, 14.25, 15.170000076294, 16.159999847412, 17.200000762939, 18.299999237061, 19.459999084473, 20.700000762939, 22, 23.389999389648, 24.85000038147, 26.389999389648, 28.030000686646, 29.760000228882, 31.579999923706, 33.520000457764, 35.560001373291, 37.720001220703, 40, 42.409999847412, 44.959999084473, 47.639999389648, 50.490001678467, 53.490001678467, 56.659999847412, 60, 63.529998779297, 67.26000213623, 71.199996948242, 75.360000610352, 79.73999786377, 84.370002746582, 89.25, 94.400001525879, 99.839996337891, 105.56999969482, 111.62000274658, 118, 124.73000335693, 131.83000183105, 139.30999755859, 147.19999694824, 155.52000427246, 164.2799987793, 173.5299987793, 183.27000427246, 193.53999328613, 204.36999511719, 215.7799987793, 227.80000305176, 240.46000671387, 253.80999755859, 267.86999511719, 282.69000244141, 298.29000854492, 314.73001098633, 332.04998779297, 350.29000854492, 369.5, 389.73001098633, 411.04000854492, 433.4700012207, 457.08999633789, 481.9700012207, 508.14999389648, 535.71997070313, 564.75, 595.29998779297, 627.46002197266, 661.30999755859, 696.95001220703, 734.45001220703, 773.90997314453, 815.45001220703, 859.15997314453, 905.15002441406, 953.53997802734, 1004.4699707031, 1058.0400390625, 1114.4100341797, 1173.7099609375, 1236.0999755859, 1301.7299804688, 1370.7600097656, 1443.3800048828, 1519.7600097656, 1600.0899658203, } +data.monsterDamageTable = { 4.9899997711182, 5.5599999427795, 6.1599998474121, 6.8099999427795, 7.5, 8.2299995422363, 9, 9.8199996948242, 10.699999809265, 11.619999885559, 12.60000038147, 13.640000343323, 14.739999771118, 15.909999847412, 17.139999389648, 18.450000762939, 19.829999923706, 21.290000915527, 22.840000152588, 24.469999313354, 26.190000534058, 28.010000228882, 29.940000534058, 31.959999084473, 34.110000610352, 36.360000610352, 38.75, 41.259998321533, 43.909999847412, 46.700000762939, 49.650001525879, 52.75, 56.009998321533, 59.450000762939, 63.080001831055, 66.889999389648, 70.910003662109, 75.129997253418, 79.580001831055, 84.26000213623, 89.180000305176, 94.349998474121, 99.800003051758, 105.51999664307, 111.5299987793, 117.86000061035, 124.5, 131.49000549316, 138.83000183105, 146.5299987793, 154.63000488281, 163.13999938965, 172.07000732422, 181.44999694824, 191.30000305176, 201.63000488281, 212.47999572754, 223.86999511719, 235.83000183105, 248.36999511719, 261.5299987793, 275.32998657227, 289.82000732422, 305.01000976562, 320.94000244141, 337.64999389648, 355.17999267578, 373.54998779297, 392.80999755859, 413.01000976562, 434.17999267578, 456.36999511719, 479.61999511719, 504, 529.53997802734, 556.29998779297, 584.34997558594, 613.72998046875, 644.5, 676.75, 710.52001953125, 745.89001464844, 782.94000244141, 821.72998046875, 862.35998535156, 904.90002441406, 949.44000244141, 996.07000732422, 1044.8900146484, 1096, 1149.5, 1205.5, 1264.1099853516, 1325.4499511719, 1389.6400146484, 1456.8199462891, 1527.1199951172, 1600.6800537109, 1677.6400146484, 1758.1700439453, } +data.monsterAllyDamageTable = { 5.6199998855591, 6.0300002098083, 6.460000038147, 6.9200000762939, 7.4099998474121, 7.9299998283386, 8.4799995422363, 9.0600004196167, 9.6800003051758, 10.329999923706, 11.029999732971, 11.760000228882, 12.539999961853, 13.369999885559, 14.25, 15.170000076294, 16.159999847412, 17.200000762939, 18.299999237061, 19.459999084473, 20.700000762939, 22, 23.389999389648, 24.85000038147, 26.389999389648, 28.030000686646, 29.760000228882, 31.579999923706, 33.520000457764, 35.560001373291, 37.720001220703, 40, 42.409999847412, 44.959999084473, 47.639999389648, 50.490001678467, 53.490001678467, 56.659999847412, 60, 63.529998779297, 67.26000213623, 71.199996948242, 75.360000610352, 79.73999786377, 84.370002746582, 89.25, 94.400001525879, 99.839996337891, 105.56999969482, 111.62000274658, 118, 124.73000335693, 131.83000183105, 139.30999755859, 147.19999694824, 155.52000427246, 164.2799987793, 173.5299987793, 183.27000427246, 193.53999328613, 204.36999511719, 215.7799987793, 227.80000305176, 240.46000671387, 253.80999755859, 267.86999511719, 282.69000244141, 298.29000854492, 314.73001098633, 332.04998779297, 350.29000854492, 369.5, 389.73001098633, 411.04000854492, 433.4700012207, 457.08999633789, 481.9700012207, 508.14999389648, 535.71997070312, 564.75, 595.29998779297, 627.46002197266, 661.30999755859, 696.95001220703, 734.45001220703, 773.90997314453, 815.45001220703, 859.15997314453, 905.15002441406, 953.53997802734, 1004.4699707031, 1058.0400390625, 1114.4100341797, 1173.7099609375, 1236.0999755859, 1301.7299804688, 1370.7600097656, 1443.3800048828, 1519.7600097656, 1600.0899658203, } data.monsterArmourTable = { 12, 15, 19, 23, 27, 32, 37, 43, 50, 57, 65, 74, 83, 94, 105, 118, 132, 147, 164, 182, 202, 224, 248, 275, 303, 334, 368, 405, 445, 489, 537, 589, 646, 707, 774, 846, 925, 1010, 1103, 1204, 1313, 1432, 1560, 1700, 1850, 2014, 2191, 2383, 2591, 2815, 3059, 3322, 3607, 3915, 4248, 4608, 4997, 5418, 5873, 6365, 6896, 7469, 8089, 8757, 9480, 10259, 11101, 12009, 12989, 14047, 15188, 16419, 17747, 19178, 20722, 22387, 24182, 26117, 28203, 30451, 32873, 35483, 38296, 41326, 44591, 48107, 51894, 55973, 60365, 65095, 70188, 75670, 81573, 87926, 94765, 102125, 110047, 118571, 127744, 137613, } data.monsterAilmentThresholdTable = { 22, 26, 31, 36, 42, 48, 55, 62, 70, 78, 87, 97, 107, 119, 131, 144, 158, 173, 190, 207, 226, 246, 267, 290, 315, 341, 370, 400, 432, 467, 504, 543, 585, 630, 678, 730, 785, 843, 905, 972, 1042, 1118, 1198, 1284, 1375, 1472, 1575, 1685, 1802, 1927, 2059, 2200, 2350, 2509, 2678, 2858, 3050, 3253, 3469, 3698, 3942, 4201, 4476, 4768, 5078, 5407, 5756, 6127, 6520, 6937, 7380, 7850, 8348, 8876, 9436, 10030, 10660, 11328, 12036, 12787, 13582, 14425, 15319, 16265, 17268, 18331, 19457, 20649, 21913, 23250, 24667, 26168, 27756, 29438, 31220, 33105, 35101, 37214, 39450, 41817, } data.monsterPhysConversionMultiTable = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, } @@ -55,6 +55,8 @@ data.gameConstants = { ["GoldPlusPercentPerAffix"] = 10, ["UniqueBaseGoldCost"] = 2000, ["NumAtlasPointsFromUniqueMaps"] = 10, + ["PactEmpowermentsDefaultDurationMs"] = 15000, + ["BaseMaximumActivePactAfflictions"] = 5, } -- From Metadata/Characters/Character.ot data.characterConstants = { @@ -71,6 +73,8 @@ data.characterConstants = { ["object_inherent_damage_+%_final_per_frenzy_charge"] = 4, ["physical_damage_reduction_%_per_endurance_charge"] = 4, ["elemental_damage_reduction_%_per_endurance_charge"] = 4, + ["physical_damage_%_to_add_as_cold_per_brine_charge"] = 4, + ["physical_damage_%_to_add_as_lightning_per_brine_charge"] = 4, ["critical_strike_chance_+%_per_power_charge"] = 50, ["max_viper_strike_orbs"] = 4, ["dual_wield_inherent_attack_speed_+%_final"] = 10, @@ -175,6 +179,8 @@ data.monsterConstants = { ["resist_all_elements_%_per_endurance_charge_if_not_player_minion"] = 15, ["critical_strike_chance_+%_per_power_charge"] = 50, ["critical_strike_chance_+%_per_power_charge_if_not_player_minion"] = 150, + ["physical_damage_%_to_add_as_cold_per_brine_charge"] = 4, + ["physical_damage_%_to_add_as_lightning_per_brine_charge"] = 4, ["maximum_block_%"] = 75, ["base_maximum_spell_block_%"] = 75, ["base_number_of_totems_allowed"] = 1, diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index 387ab4f047..6cc41f93c4 100755 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -1,12 +1,28 @@ -local c=...c["(10-15)% increased Energy Shield Recharge Rate"]={nil,"(10-15)% increased Energy Shield Recharge Rate "} +local c=...c[" Wolf Alpha Talisman"]={nil," Wolf Alpha Talisman "} +c[" Wolf Alpha Talisman League: Talisman Standard"]={nil," Wolf Alpha Talisman League: Talisman Standard "} +c["(10-15)% increased Energy Shield Recharge Rate"]={nil,"(10-15)% increased Energy Shield Recharge Rate "} +c["(10-20)% increased Effect of Cold Ailments"]={nil,"(10-20)% increased Effect of Cold Ailments "} +c["(10-20)% increased Effect of Lightning Ailments"]={nil,"(10-20)% increased Effect of Lightning Ailments "} c["(12-17)% increased Mana Regeneration Rate"]={nil,"(12-17)% increased Mana Regeneration Rate "} +c["(15-20)% chance to Avoid Bleeding"]={nil,"(15-20)% chance to Avoid Bleeding "} +c["(15-20)% chance to Avoid being Frozen"]={nil,"(15-20)% chance to Avoid being Frozen "} +c["(15-20)% chance to Avoid being Ignited"]={nil,"(15-20)% chance to Avoid being Ignited "} +c["(15-20)% chance to Avoid being Poisoned"]={nil,"(15-20)% chance to Avoid being Poisoned "} +c["(15-20)% chance to Avoid being Shocked"]={nil,"(15-20)% chance to Avoid being Shocked "} +c["(15-20)% chance to Avoid being Stunned"]={nil,"(15-20)% chance to Avoid being Stunned "} c["(15-25)% increased Mana Regeneration Rate"]={nil,"(15-25)% increased Mana Regeneration Rate "} c["(17-23)% increased maximum Mana"]={nil,"(17-23)% increased maximum Mana "} c["(17-23)% increased maximum Mana (15-25)% increased Mana Regeneration Rate"]={nil,"(17-23)% increased maximum Mana (15-25)% increased Mana Regeneration Rate "} +c["(2-3)% chance to Blind Enemies on Hit with Attacks"]={nil,"(2-3)% chance to Blind Enemies on Hit with Attacks "} +c["(2-3)% chance to Hinder Enemies on Hit with Spells"]={nil,"(2-3)% chance to Hinder Enemies on Hit with Spells "} +c["(2-3)% chance to Taunt Enemies on Hit with Attacks"]={nil,"(2-3)% chance to Taunt Enemies on Hit with Attacks "} +c["(2-3)% increased Attack Speed"]={nil,"(2-3)% increased Attack Speed "} c["(2-3)% increased Cast Speed"]={nil,"(2-3)% increased Cast Speed "} c["(2-3)% increased Movement Speed"]={nil,"(2-3)% increased Movement Speed "} +c["(2-3)% of Damage taken Recouped as Mana"]={nil,"(2-3)% of Damage taken Recouped as Mana "} c["(2-4)% chance to deal Double Damage"]={{[1]={[1]={globalLimit=100,globalLimitKey="DamageDoubledLimit",type="Multiplier",var="DamageDoubled"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:DamageDoubled",type="OVERRIDE",value=1}},"(2-4)% chance to deal "} c["(2-4)% chance to deal Double Damage (25-35)% increased Physical Damage"]={{[1]={[1]={globalLimit=100,globalLimitKey="DamageDoubledLimit",type="Multiplier",var="DamageDoubled"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:DamageDoubled",type="OVERRIDE",value=1}},"(2-4)% chance to deal (25-35)% increased Physical Damage "} +c["(2-4)% increased Impale Effect"]={nil,"(2-4)% increased Impale Effect "} c["(2-4)% increased effect of Non-Curse Auras from your Skills"]={nil,"(2-4)% increased effect of Non-Curse Auras from your Skills "} c["(2-4)% increased maximum Life"]={nil,"(2-4)% increased maximum Life "} c["(20-30)% increased Defences from Equipped Shield"]={nil,"(20-30)% increased Defences from Equipped Shield "} @@ -52,6 +68,7 @@ c["(6-10) Life gained when you Block +8% Chance to Block Attack Damage"]={nil,"( c["(6-10)% increased maximum Life"]={nil,"(6-10)% increased maximum Life "} c["(6-10)% increased maximum Life 0.4% of Attack Damage Leeched as Life"]={nil,"(6-10)% increased maximum Life 0.4% of Attack Damage Leeched as Life "} c["(6-10)% increased maximum Life Regenerate (0.7-1.2)% of Life per second"]={nil,"(6-10)% increased maximum Life Regenerate (0.7-1.2)% of Life per second "} +c["(6-8)% increased Critical Strike Chance"]={nil,"(6-8)% increased Critical Strike Chance "} c["(7-10)% increased effect of Non-Curse Auras from your Skills"]={nil,"(7-10)% increased effect of Non-Curse Auras from your Skills "} c["(7-11)% increased Skill Effect Duration"]={nil,"(7-11)% increased Skill Effect Duration "} c["(7-12)% increased Area Damage"]={nil,"(7-12)% increased Area Damage "} @@ -78,9 +95,31 @@ c["+(13-19)% to Chaos Resistance"]={nil,"+(13-19)% to Chaos Resistance "} c["+(20-30)% to Cold Resistance"]={nil,"+(20-30)% to Cold Resistance "} c["+(20-30)% to Fire Resistance"]={nil,"+(20-30)% to Fire Resistance "} c["+(20-30)% to Lightning Resistance"]={nil,"+(20-30)% to Lightning Resistance "} +c["+(3-5)% to all Elemental Resistances"]={nil,"+(3-5)% to all Elemental Resistances "} +c["+(31-60) to Accuracy Rating"]={nil,"+(31-60) to Accuracy Rating "} +c["+(36-60) to Armour"]={nil,"+(36-60) to Armour "} +c["+(36-60) to Evasion Rating"]={nil,"+(36-60) to Evasion Rating "} +c["+(4-6) to all Attributes"]={nil,"+(4-6) to all Attributes "} +c["+(4-6)% to Chaos Resistance"]={nil,"+(4-6)% to Chaos Resistance "} +c["+(4-6)% to Cold and Lightning Resistances"]={nil,"+(4-6)% to Cold and Lightning Resistances "} +c["+(4-6)% to Fire and Cold Resistances"]={nil,"+(4-6)% to Fire and Cold Resistances "} +c["+(4-6)% to Fire and Lightning Resistances"]={nil,"+(4-6)% to Fire and Lightning Resistances "} c["+(6-10)% to Chaos Resistance"]={nil,"+(6-10)% to Chaos Resistance "} c["+(6-10)% to Critical Strike Multiplier"]={nil,"+(6-10)% to Critical Strike Multiplier "} +c["+(6-8) to Dexterity and Intelligence"]={nil,"+(6-8) to Dexterity and Intelligence "} +c["+(6-8) to Strength and Dexterity"]={nil,"+(6-8) to Strength and Dexterity "} +c["+(6-8) to Strength and Intelligence"]={nil,"+(6-8) to Strength and Intelligence "} +c["+(6-8)% to Cold Resistance"]={nil,"+(6-8)% to Cold Resistance "} +c["+(6-8)% to Fire Resistance"]={nil,"+(6-8)% to Fire Resistance "} +c["+(6-8)% to Lightning Resistance"]={nil,"+(6-8)% to Lightning Resistance "} +c["+(7-9)% to Critical Strike Multiplier"]={nil,"+(7-9)% to Critical Strike Multiplier "} +c["+(8-10) to Dexterity"]={nil,"+(8-10) to Dexterity "} +c["+(8-10) to Intelligence"]={nil,"+(8-10) to Intelligence "} +c["+(8-10) to Strength"]={nil,"+(8-10) to Strength "} c["+(8-10)% to all Elemental Resistances"]={nil,"+(8-10)% to all Elemental Resistances "} +c["+(8-11) to maximum Mana"]={nil,"+(8-11) to maximum Mana "} +c["+(9-12) to maximum Energy Shield"]={nil,"+(9-12) to maximum Energy Shield "} +c["+(9-12) to maximum Life"]={nil,"+(9-12) to maximum Life "} c["+(9-14)% to Cold Resistance"]={nil,"+(9-14)% to Cold Resistance "} c["+(9-14)% to Fire Resistance"]={nil,"+(9-14)% to Fire Resistance "} c["+(9-14)% to Lightning Resistance"]={nil,"+(9-14)% to Lightning Resistance "} @@ -96,7 +135,6 @@ c["+0.2 metres to Melee Strike Range while Holding a Shield"]={{[1]={[1]={type=" c["+0.2% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},[3]={div=10,stat="EnergyShieldOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.2}},nil} c["+0.3 metres to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.3},[2]={flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.3}},nil} c["+0.3 metres to Melee Strike Range with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.3},[2]={flags=4194308,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.3}},nil} -c["+0.3% Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.3}},nil} c["+0.3% to Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.3}},nil} c["+0.4 metres to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} c["+0.4 metres to Melee Strike Range while at least 5 Enemies are Nearby"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyEnemies"},flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyEnemies"},flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} @@ -209,7 +247,7 @@ c["+1% Chance to Suppress Spell Damage per 15 Dexterity"]={{[1]={[1]={div=15,sta c["+1% Critical Strike Chance while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil} c["+1% to Chaos Resistance per Poison on you"]={{[1]={[1]={type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=1}},nil} c["+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance"]={{[1]={[1]={div="4",stat="ColdResistOverCap",type="PerStat"},flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=1}},nil} -c["+1% to Critical Strike Chance of Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil} +c["+1% to Critical Strike Chance of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil} c["+1% to Critical Strike Chance while affected by Aspect of the Cat"]={{[1]={[1]={type="Condition",varList={[1]="AffectedByCat'sStealth",[2]="AffectedByCat'sAgility"}},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil} c["+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}},nil} c["+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield"]={{[1]={[1]={div=10,stat="EnergyShieldOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}},nil} @@ -364,7 +402,7 @@ c["+12% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Conditio c["+12% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} c["+12% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} c["+12% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} -c["+12% chance to Avoid Elemental Damage from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=12},[2]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=12},[3]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=12}},nil} +c["+12% chance to Avoid Damage of each Element from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=12},[2]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=12},[3]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=12}},nil} c["+12% chance to Avoid Physical Damage from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidPhysicalDamageChance",type="BASE",value=12}},nil} c["+12% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=12}},nil} c["+12% chance to Suppress Spell Damage while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=12}},nil} @@ -457,7 +495,7 @@ c["+15% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type= c["+15% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil} c["+15% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil} c["+15% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil} -c["+15% chance to Avoid Elemental Damage from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=15},[2]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=15},[3]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=15}},nil} +c["+15% chance to Avoid Damage of each Element from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=15},[2]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=15},[3]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=15}},nil} c["+15% chance to Avoid Physical Damage from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidPhysicalDamageChance",type="BASE",value=15}},nil} c["+15% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=15}},nil} c["+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating"]={{[1]={[1]={stat="EvasionOnHelmet",threshold=1,type="StatThreshold"},[2]={stat="EvasionOnBody Armour",threshold=1,type="StatThreshold"},[3]={stat="EvasionOnGloves",threshold=1,type="StatThreshold"},[4]={stat="EvasionOnBoots",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=15}},nil} @@ -545,6 +583,7 @@ c["+18 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE", c["+18 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=18}},nil} c["+18 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=18}},nil} c["+18 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=18}},nil} +c["+18% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil} c["+18% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil} c["+18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil} c["+18% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=18}},nil} @@ -669,10 +708,10 @@ c["+20% Chance to Block Attack Damage from Cursed Enemies"]={{[1]={[1]={actor="e c["+20% Chance to Block Attack Damage if you have Blocked Spell Damage Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} +c["+20% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Spell Damage while Cursed"]={{[1]={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} -c["+20% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% chance to Block Spell Damage if you have Blocked Attack Damage Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20},[2]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=20},[3]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20},[4]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil} c["+20% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=20}},nil} @@ -723,8 +762,9 @@ c["+21% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",t c["+210 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=210}},nil} c["+212 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=212}},nil} c["+22 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=22}},nil} +c["+22% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=22}},nil} c["+22% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=22}},nil} -c["+22% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=22}},nil} +c["+22% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=22}},nil} c["+22% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=22}},nil} c["+22% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=22}},nil} c["+22% to Critical Strike Multiplier with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritMultiplier",type="BASE",value=22}},nil} @@ -791,9 +831,10 @@ c["+25 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",v c["+25 to maximum Life per Allocated Journey Tattoo of the Body"]={{[1]={[1]={type="Multiplier",var="JourneyTattooBody"},flags=0,keywordFlags=0,name="Life",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Multiplier:JourneyTattooBody",type="BASE",value=1}},nil} c["+25 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=25}},nil} c["+25% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}},nil} +c["+25% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}},nil} c["+25% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}},nil} +c["+25% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=25}},nil} c["+25% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=25}},nil} -c["+25% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=25}},nil} c["+25% chance to Block Projectile Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="ProjectileBlockChance",type="BASE",value=25}},nil} c["+25% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=25}},nil} c["+25% chance to Suppress Spell Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=25}},nil} @@ -939,7 +980,7 @@ c["+3 to Level of all Cremation Gems"]={{[1]={flags=0,keywordFlags=0,name="GemPr c["+3 to Level of all Critical Support Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="critical",[2]="support"},value=3}}},nil} c["+3 to Level of all Crushing Fist Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="crushing fist",value=3}}},nil} c["+3 to Level of all Cyclone Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cyclone",value=3}}},nil} -c["+3 to Level of all Dark Pact Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="dark pact",value=3}}},nil} +c["+3 to Level of all Dark Bargain Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="dark bargain",value=3}}},nil} c["+3 to Level of all Dash Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="dash",value=3}}},nil} c["+3 to Level of all Decoy Totem Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="decoy totem",value=3}}},nil} c["+3 to Level of all Defiance Banner Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="defiance banner",value=3}}},nil} @@ -1052,12 +1093,17 @@ c["+3 to Level of all Lightning Tendrils Gems"]={{[1]={flags=0,keywordFlags=0,na c["+3 to Level of all Lightning Trap Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lightning trap",value=3}}},nil} c["+3 to Level of all Lightning Warp Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lightning warp",value=3}}},nil} c["+3 to Level of all Malevolence Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="malevolence",value=3}}},nil} +c["+3 to Level of all Mana-Infused Staff Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="mana-infused staff",value=3}}},nil} c["+3 to Level of all Manabond Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="manabond",value=3}}},nil} c["+3 to Level of all Melee Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="melee",[2]="skill"},value=3}}},nil} c["+3 to Level of all Mirror Arrow Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="mirror arrow",value=3}}},nil} c["+3 to Level of all Molten Shell Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="molten shell",value=3}}},nil} c["+3 to Level of all Molten Strike Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="molten strike",value=3}}},nil} c["+3 to Level of all Orb of Storms Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="orb of storms",value=3}}},nil} +c["+3 to Level of all Pact of Beidat Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="pact of beidat",value=3}}},nil} +c["+3 to Level of all Pact of Ghorr Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="pact of ghorr",value=3}}},nil} +c["+3 to Level of all Pact of K'Tash Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="pact of k'tash",value=3}}},nil} +c["+3 to Level of all Pact of Lycia Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="pact of lycia",value=3}}},nil} c["+3 to Level of all Penance Brand Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="penance brand",value=3}}},nil} c["+3 to Level of all Perforate Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="perforate",value=3}}},nil} c["+3 to Level of all Pestilent Strike Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="pestilent strike",value=3}}},nil} @@ -1323,7 +1369,7 @@ c["+35% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="Eleme c["+350 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=350}},nil} c["+350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}},nil} c["+350 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=350}},nil} -c["+36% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=36}},nil} +c["+36% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=36}},nil} c["+36% Chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=36}},nil} c["+36% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=36}},nil} c["+36% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=36}},nil} @@ -1401,7 +1447,7 @@ c["+40 to maximum Life for each Empty Red Socket on any Equipped Item"]={{[1]={[ c["+40 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=40}},nil} c["+40 to maximum Mana for each Empty Blue Socket on any Equipped Item"]={{[1]={[1]={type="Multiplier",var="EmptyBlueSocketsInAnySlot"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=40}},nil} c["+40% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=40}},nil} -c["+40% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=40}},nil} +c["+40% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=40}},nil} c["+40% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="NearbyRareOrUniqueEnemy",[2]="RareOrUnique"}},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil} c["+40% Global Critical Strike Multiplier while you have a Frenzy Charge"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil} c["+40% chance to Suppress Spell Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=40}},nil} @@ -1543,8 +1589,8 @@ c["+50 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE", c["+50 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=50}},nil} c["+50 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil} c["+50 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}},nil} +c["+50% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=50}},nil} c["+50% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=50}},nil} -c["+50% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=50}},nil} c["+50% Global Critical Strike Multiplier while you have a Frenzy Charge"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil} c["+50% Global Critical Strike Multiplier while you have no Frenzy Charges"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil} c["+50% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=50}},nil} @@ -1906,6 +1952,8 @@ c["0% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningRes c["0% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=0}},"% to "} c["0% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=0}},"% to "} c["0% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=0}},"% to "} +c["0-4 consumed abyssal jewel modifiers"]={{},"-4 consumed abyssal jewel modifiers "} +c["0-4 consumed abyssal jewel modifiers Socketed Rare Abyssal Jewels will be Consumed"]={{},"-4 consumed abyssal jewel modifiers Socketed Rare Abyssal Jewels will be Consumed "} c["0.00 seconds to Avian's Flight Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="BASE",value=0}},".00 seconds to Avian's Flight "} c["0.00 seconds to Avian's Might Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="BASE",value=0}},".00 seconds to Avian's Might "} c["0.2% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.2}},nil} @@ -2265,7 +2313,6 @@ c["1 Added Passive Skill is Wound Aggravation"]={{[1]={flags=0,keywordFlags=0,na c["1 Added Passive Skill is Wrapped in Flame"]={{[1]={flags=0,keywordFlags=0,name="ClusterJewelNotable",type="LIST",value="Wrapped in Flame"}},nil} c["1 Rage Regenerated for every 25 Mana Regeneration per Second"]={{[1]={[1]={div=25,stat="ManaRegen",type="PerStat"},flags=0,keywordFlags=0,name="RageRegen",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["1 to 4 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil} -c["1 to 53 Spell Lightning Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=53}},nil} c["1 to 6 Added Attack Lightning Damage per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=6}},nil} c["1% additional Elemental Damage Reduction per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ElementalDamageReduction",type="BASE",value=1}},nil} c["1% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="PhysicalDamageReductionWhenHit",type="BASE",value=1}},nil} @@ -2317,8 +2364,8 @@ c["1% increased Projectile Damage per 16 Dexterity"]={{[1]={[1]={div=16,stat="De c["1% increased Rarity of Items found per 15 Rampage Kills"]={{[1]={[1]={div=15,limit=66.666666666667,limitTotal=true,type="Multiplier",var="Rampage"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=1}},nil} c["1% increased Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=1}},nil} c["1% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=1}},nil} -c["1% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=1}},nil} -c["1% increased effect of Non-Curse Auras per 10 Devotion"]={{[1]={[1]={neg=true,skillType=79,type="SkillType"},[2]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=1}},nil} +c["1% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=1}},nil} +c["1% increased effect of Non-Curse Auras per 10 Devotion"]={{[1]={[1]={neg=true,skillType=69,type="SkillType"},[2]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=1}},nil} c["1% less Damage taken per Grasping Vine"]={{[1]={[1]={type="Multiplier",var="GraspingVinesCount"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-1}},nil} c["1% less Elemental Damage taken per Raised Zombie"]={{[1]={[1]={stat="ActiveZombieLimit",type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-1}},nil} c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} @@ -2370,10 +2417,9 @@ c["10% Chance to Cause Monster to Flee on Block 100% Chance to Cause Monster to c["10% Chance to Inflict Cold Exposure on Hit with Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdExposureChance",type="BASE",value=10}},nil} c["10% Global chance to Blind Enemies on hit"]={{},"% chance to Blind Enemies on hit "} c["10% Global chance to Blind Enemies on hit Gain 1 Mana on Kill per Level"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="KilledRecently"},[3]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},"% chance to Blind Enemies on hit Gain 1 "} -c["10% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}},nil} c["10% additional Physical Damage Reduction while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}},nil} c["10% chance for Energy Shield Recharge to start when you Link to a target"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you Link to a target "} -c["10% chance for Energy Shield Recharge to start when you Link to a target Link Skills have 20% increased Buff Effect if you have Linked to a target Recently"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you Link to a target have 20% increased Buff Effect if you have Linked to a target Recently "} +c["10% chance for Energy Shield Recharge to start when you Link to a target Link Skills have 20% increased Buff Effect if you have Linked to a target Recently"]={{[1]={[1]={skillType=107,type="SkillType"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you Link to a target have 20% increased Buff Effect if you have Linked to a target Recently "} c["10% chance for Energy Shield Recharge to start when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill "} c["10% chance for Energy Shield Recharge to start when you use a Skill +15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill +15% to Fire and Chaos Resistances "} c["10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit"]={{[1]={flags=0,keywordFlags=0,name="ImpaleAdditionalDurationChance",type="BASE",value=10}},nil} @@ -2504,7 +2550,7 @@ c["10% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,k c["10% increased Action Speed while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,keywordFlags=0,name="ActionSpeed",type="INC",value=10}},nil} c["10% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} -c["10% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} +c["10% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Area of Effect per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Area of Effect per second you've been stationary, up to a maximum of 50%"]={{[1]={[1]={globalLimit=50,globalLimitKey="ExpansiveMight",limitTotal=true,type="Multiplier",var="StationarySeconds"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil} @@ -2537,9 +2583,9 @@ c["10% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",v c["10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=10}},nil} c["10% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=10}},nil} c["10% increased Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=10}},nil} -c["10% increased Cooldown Recovery Rate for Stance Skills"]={{[1]={[1]={skillType=104,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} +c["10% increased Cooldown Recovery Rate for Stance Skills"]={{[1]={[1]={skillType=93,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} c["10% increased Cooldown Recovery Rate for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=10}},nil} -c["10% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=90,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} +c["10% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=79,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} c["10% increased Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=10}},nil} c["10% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil} c["10% increased Critical Strike Chance for each Mine Detonated"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=10}}," for each Detonated "} @@ -2575,16 +2621,16 @@ c["10% increased Effect of Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="Bu c["10% increased Effect of Cold Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=10}},nil} c["10% increased Effect of Consecrated Ground you create"]={{[1]={flags=0,keywordFlags=0,name="ConsecratedGroundEffect",type="INC",value=10}},nil} c["10% increased Effect of Elusive on you per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElusiveEffect",type="INC",value=10}},nil} -c["10% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=10}},nil} +c["10% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=10}},nil} c["10% increased Effect of Impales you inflict with Two Handed Weapons"]={{[1]={flags=536870916,keywordFlags=0,name="ImpaleEffect",type="INC",value=10}},nil} c["10% increased Effect of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=10}},nil} -c["10% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="DebuffEffect",type="INC",value=10},[2]={[1]={skillName="Death Aura",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil} +c["10% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="DebuffEffect",type="INC",value=10},[2]={[1]={skillName="Death Aura",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil} c["10% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=10},[4]={flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=10},[5]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=10},[6]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=10}},nil} c["10% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="ShrineBuffEffect",type="INC",value=10}},nil} c["10% increased Effect of Tailwind on you per Gale Force"]={{[1]={[1]={type="Multiplier",var="GaleForce"},flags=0,keywordFlags=0,name="TailwindEffectOnSelf",type="INC",value=10}},nil} c["10% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil} -c["10% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil} -c["10% increased Effect of your Marks per maximum Power Charge"]={{[1]={[1]={skillType=109,type="SkillType"},[2]={type="Multiplier",var="PowerChargeMax"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil} +c["10% increased Effect of your Marks"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil} +c["10% increased Effect of your Marks per maximum Power Charge"]={{[1]={[1]={skillType=98,type="SkillType"},[2]={type="Multiplier",var="PowerChargeMax"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil} c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} c["10% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%"]={{[1]={[1]={div=1,statList={[1]="FireResistOver75",[2]="ColdResistOver75",[3]="LightningResistOver75"},type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} c["10% increased Elemental Damage per Sextant affecting the area"]={{[1]={[1]={type="Multiplier",var="Sextant"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} @@ -2614,7 +2660,7 @@ c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name= c["10% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=10}},nil} c["10% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=10}},nil} c["10% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=10}},nil} -c["10% increased Mana Cost Efficiency of Mark Skills"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=10}},nil} +c["10% increased Mana Cost Efficiency of Mark Skills"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=10}},nil} c["10% increased Mana Cost Efficiency of Spells"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=10}},nil} c["10% increased Mana Cost Efficiency per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=10}},nil} c["10% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=10}},nil} @@ -2622,11 +2668,11 @@ c["10% increased Mana Cost of Skills during Effect"]={{[1]={[1]={type="Condition c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil} c["10% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},nil} c["10% increased Mana Regeneration Rate per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},nil} -c["10% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=10}},nil} -c["10% increased Mana Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=10}},nil} +c["10% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=10}},nil} +c["10% increased Mana Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=10}},nil} c["10% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=10}},nil} c["10% increased Mana Reservation Efficiency of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReservationEfficiency",type="INC",value=10}},nil} -c["10% increased Mana Reservation Efficiency of Stance Skills"]={{[1]={[1]={skillType=104,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=10}},nil} +c["10% increased Mana Reservation Efficiency of Stance Skills"]={{[1]={[1]={skillType=93,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=10}},nil} c["10% increased Maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil} c["10% increased Maximum Recovery per Life Leech for each 5% of Life Reserved"]={{[1]={[1]={div=5,stat="LifeReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=10}},nil} c["10% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}},nil} @@ -2685,8 +2731,8 @@ c["10% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",va c["10% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=10}},nil} c["10% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=10}},nil} c["10% increased effect of Arcane Surge on you per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=10}},nil} -c["10% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil} -c["10% increased effect of Non-Curse Auras from your Skills on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}}}},nil} +c["10% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil} +c["10% increased effect of Non-Curse Auras from your Skills on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}}}},nil} c["10% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=10}},nil} c["10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil} c["10% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=10}},nil} @@ -2816,6 +2862,7 @@ c["100% increased Effect of Socketed Abyss Jewels"]={{[1]={flags=0,keywordFlags= c["100% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil} c["100% increased Elemental Damage with Melee Weapons"]={{[1]={flags=67108864,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil} c["100% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="ElusiveEffect",type="INC",value=100}},nil} +c["100% increased Enchantment Modifier magnitudes"]={{},nil} c["100% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=100},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=100}},nil} c["100% increased Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=100}},nil} c["100% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=100}},nil} @@ -2877,23 +2924,18 @@ c["100% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,key c["100% more Critical Strike Chance against Enemies that are not on Low Life"]={{[1]={[1]={actor="enemy",neg=true,type="ActorCondition",var="LowLife"},flags=0,keywordFlags=0,name="CritChance",type="MORE",value=100}},nil} c["100% more Critical Strike Chance against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=0,name="CritChance",type="MORE",value=100}},nil} c["100% more Damage with Arrow Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=4,keywordFlags=2048,name="Damage",type="MORE",value=100}},nil} -c["100% more Damage with Hits from Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}},nil} +c["100% more Damage with Hits from Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}},nil} c["100% more Duration of Ailments on you"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="MORE",value=100}},nil} c["100% more Elemental Damage while Unbound"]={{[1]={[1]={type="Condition",var="Unbound"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=100}},nil} c["100% more Main Hand attack speed"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=100}},nil} c["100% more Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="MORE",value=100}},nil} c["100% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=100}},nil} -c["100% of Cold Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageFromHitsTakenAsFire",type="BASE",value=100}},nil} -c["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageFromHitsTakenAsLightning",type="BASE",value=100}},nil} +c["100% of Cold and Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageFromHitsTakenAsFire",type="BASE",value=100}}," Cold and "} c["100% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=100}},nil} c["100% of Damage you Reflect to Enemies when Hit is leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=100}}," you Reflect to Enemies when Hit "} -c["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageFromHitsTakenAsCold",type="BASE",value=100}},nil} -c["100% of Fire Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageFromHitsTakenAsLightning",type="BASE",value=100}},nil} c["100% of Fire Damage from Hits taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageFromHitsTakenAsPhysical",type="BASE",value=100}},nil} c["100% of Life Recovery from Flasks is applied to nearby Allies instead of You"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="BASE",value=100}}," is applied to nearby Allies instead of You "} c["100% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=100}},nil} -c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageFromHitsTakenAsCold",type="BASE",value=100}},nil} -c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageFromHitsTakenAsFire",type="BASE",value=100}},nil} c["100% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=100}},nil} c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=100}},nil} c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToRandom",type="BASE",value=100}},nil} @@ -2913,10 +2955,7 @@ c["101% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="Armou c["105% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=105}},nil} c["105% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=105}},nil} c["105% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=105}},nil} -c["109% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=109}},nil} -c["109% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=109}},nil} -c["109% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=109}},nil} -c["109% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=109}},nil} +c["108% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=108}},nil} c["11% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}},nil} c["11% increased Attack Speed per socketed Searching Eye Jewel"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}}," per socketed Searching Eye Jewel "} c["11% increased Attack Speed per socketed Searching Eye Jewel 31% increased Critical Strike Chance per socketed Hypnotic Eye Jewel"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}}," per socketed Searching Eye Jewel 31% increased Critical Strike Chance per socketed Hypnotic Eye Jewel "} @@ -2945,6 +2984,7 @@ c["12% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="Block c["12% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=12}},nil} c["12% chance for Energy Shield Recharge to start when you Suppress Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=12}}," for Recharge to start when you Suppress Damage "} c["12% chance for Energy Shield Recharge to start when you Suppress Spell Damage Skills that Summon a Totem have 50% chance to Summon two Totems instead of one"]={{[1]={flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=12}}," for Recharge to start when you Suppress Damage Skills that Summon a Totem have 50% chance to Summon two Totems instead of one "} +c["12% chance to Avoid Damage of each Element from Hits during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=12},[2]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=12},[3]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=12}},nil} c["12% chance to Avoid Elemental Ailments per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=12}},nil} c["12% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=12},[2]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=12},[3]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=12}},nil} c["12% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil} @@ -2957,7 +2997,7 @@ c["12% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=60 c["12% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=12}},nil} c["12% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} c["12% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} -c["12% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} +c["12% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} c["12% increased Area of Effect per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} c["12% increased Area of Effect while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} c["12% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} @@ -2977,7 +3017,7 @@ c["12% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="Fi c["12% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%"]={{[1]={[1]={limit=120,limitTotal=true,type="Multiplier",var="ShockedNonShockedEnemyRecently"},flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=12}},nil} c["12% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil} c["12% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil} -c["12% increased Cast Speed with Brand Skills"]={{[1]={[1]={skillType=75,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil} +c["12% increased Cast Speed with Brand Skills"]={{[1]={[1]={skillType=65,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil} c["12% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=12}},nil} c["12% increased Chaos Damage over Time"]={{[1]={flags=0,keywordFlags=268435456,name="ChaosDamage",type="INC",value=12}},nil} c["12% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=12}},nil} @@ -3021,7 +3061,7 @@ c["12% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",ty c["12% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=12}},nil} c["12% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=12}},nil} c["12% increased Minion Damage per Raised Spectre"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil} -c["12% increased Minion Duration"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=12}},nil} +c["12% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},[2]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=12}},nil} c["12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil} c["12% increased Movement Speed during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil} c["12% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil} @@ -3047,8 +3087,8 @@ c["12% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapT c["12% increased Warcry Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=12}},nil} c["12% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=12}},nil} c["12% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",value=12}},nil} -c["12% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil} -c["12% increased effect of Non-Curse Auras from your skills while your Ward is Broken"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},[3]={neg=true,type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil} +c["12% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil} +c["12% increased effect of Non-Curse Auras from your skills while your Ward is Broken"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},[3]={neg=true,type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil} c["12% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil} c["12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil} c["12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}," and Mana if your equipped Staff has a Red and Blue Socket "} @@ -3103,7 +3143,6 @@ c["125% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name c["125% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=125}},nil} c["125% increased Rarity of Items Dropped by Slain Magic Enemies"]={{[1]={flags=0,keywordFlags=0,name="LootRarityMagicEnemies",type="INC",value=125}},nil} c["125% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=125}},nil} -c["129% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=129}},nil} c["13 to 24 Added Cold Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=13},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=24}},nil} c["13% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=13}},nil} c["13% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=13}},nil} @@ -3128,7 +3167,6 @@ c["13% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="Elementa c["13% increased Elemental Damage per 1% Missing Fire, Cold, or Lightning Resistance, up to a maximum of 450%"]={{[1]={[1]={div=1,globalLimit=450,globalLimitKey="ReplicaNebulisCold",statList={[1]="MissingFireResist",[2]="MissingColdResist",[3]="MissingLightningResist"},type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=13}},nil} c["13% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=13}},nil} c["13% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=13}},nil} -c["13% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=13}},nil} c["13% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=13}},nil} c["13% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil} c["13% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=13}},nil} @@ -3142,7 +3180,7 @@ c["13% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Dur c["13% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=13}},nil} c["13% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=13}},nil} c["13% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=13}},nil} -c["13% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=13}},nil} +c["13% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=13}},nil} c["13% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=13}},nil} c["13% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-13}},nil} c["13% reduced Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-13}},nil} @@ -3164,16 +3202,18 @@ c["135% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie c["135% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=135}},nil} c["135% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=135}},nil} c["135% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=135}},nil} -c["135% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=135}},nil} c["138% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=138}},nil} +c["138% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=138}},nil} c["138% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=138}},nil} +c["138% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=138}},nil} +c["138% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=138}},nil} c["138% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=138}},nil} +c["138% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=138}},nil} c["139% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=139}},nil} c["14 to 24 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil} c["14% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil} c["14% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=14}},nil} c["14% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=14}},nil} -c["14% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=14}},nil} c["14% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=14}},nil} c["14% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil} c["14% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=14}},nil} @@ -3202,7 +3242,7 @@ c["14% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=60 c["14% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=14}},nil} c["14% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=14}},nil} c["14% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=14}},nil} -c["14% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=14}},nil} +c["14% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=14}},nil} c["14% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=14}},nil} c["14% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=14}},nil} c["140% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=140}},nil} @@ -3289,8 +3329,8 @@ c["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,keywo c["15% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={[1]={type="Condition",var="StunnedEnemyRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} c["15% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} c["15% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"]={{[1]={[1]={type="Condition",var="StunnedEnemyRecently"},flags=603979776,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} -c["15% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} -c["15% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} +c["15% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} +c["15% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} c["15% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} c["15% increased Area of Effect while in Sand Stance"]={{[1]={[1]={type="Condition",var="SandStance"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} c["15% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} @@ -3397,7 +3437,7 @@ c["15% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1] c["15% increased Mana Recovery Rate while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=15}},nil} c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=15}},nil} c["15% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=15}},nil} -c["15% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=15}},nil} +c["15% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=15}},nil} c["15% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=15}},nil} c["15% increased Maximum total Energy Shield Recovery per second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="INC",value=15}},nil} c["15% increased Maximum total Life Recovery per second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=15}},nil} @@ -3444,7 +3484,7 @@ c["15% increased Warcry Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=4,n c["15% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=15}},nil} c["15% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=15}},nil} c["15% increased Ward from Equipped Armour Items"]={{[1]={[1]={slotNameList={[1]="Helmet",[2]="Body Armour",[3]="Gloves",[4]="Boots",[5]="Weapon 2"},type="SlotName"},flags=0,keywordFlags=0,name="Ward",type="INC",value=15}},nil} -c["15% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil} +c["15% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil} c["15% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=15}},nil} c["15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=15}},nil} c["15% increased maximum Life if 2 Elder Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="ElderItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=15}},nil} @@ -3481,7 +3521,7 @@ c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyS c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil} c["15% reduced Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-15}},nil} c["15% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-15}},nil} -c["15% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil} +c["15% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil} c["15% reduced Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-15}},nil} c["15% reduced Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-15}},nil} c["15% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-15}},nil} @@ -3522,13 +3562,13 @@ c["150% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1 c["150% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=150}},nil} c["152% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=152}},nil} c["155% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=155}},nil} +c["157% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=157}},nil} c["16% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=16}},nil} c["16% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil} c["16% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil} c["16% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=16}},nil} c["16% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil} c["16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=16}},nil} -c["16% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=16}},nil} c["16% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=16},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=16},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=16},[4]={flags=0,keywordFlags=0,name="All",type="INC",value=16}},nil} c["16% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=16}},nil} c["16% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=16}},nil} @@ -3585,8 +3625,6 @@ c["165% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name= c["165% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=165}},nil} c["165% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=165}},nil} c["165% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=165}},nil} -c["166% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=166}},nil} -c["166% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=166}},nil} c["17% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=17}},nil} c["17% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=17}},nil} c["17% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=17}},nil} @@ -3622,8 +3660,8 @@ c["18% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name=" c["18% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=18}},nil} c["18% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil} c["18% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil} -c["18% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil} -c["18% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil} +c["18% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil} +c["18% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil} c["18% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=18}},nil} c["18% increased Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=18}},nil} c["18% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=18}},nil} @@ -3644,7 +3682,7 @@ c["18% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",t c["18% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil} c["18% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=18}},nil} c["18% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil} -c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[2]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[3]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[4]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[5]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[6]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveCarrionGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil} +c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[2]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[3]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[4]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[5]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[6]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveCarrionGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil} c["18% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=18}},nil} c["18% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=18}},nil} c["18% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=18}},nil} @@ -3660,7 +3698,7 @@ c["18% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="Loo c["18% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=18}},nil} c["18% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=18}},nil} c["18% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=18}},nil} -c["18% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=18}},nil} +c["18% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=18}},nil} c["18% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=18}},nil} c["18% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=18}},nil} c["18% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=18}},nil} @@ -3676,10 +3714,6 @@ c["180% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie c["180% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=180}},nil} c["180% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=180}},nil} c["180% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=180}},nil} -c["183% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=183}},nil} -c["183% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=183}},nil} -c["183% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=183}},nil} -c["183% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=183}},nil} c["185% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=185}},nil} c["185% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=185}},nil} c["188 to 262 Added Cold Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=188},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=262}},nil} @@ -3693,6 +3727,8 @@ c["190% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion", c["190% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=190}},nil} c["190% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=190}},nil} c["195% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=195}},nil} +c["197% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=197}},nil} +c["197% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=197}},nil} c["2 Enemy Writhing Worms escape the Flask when used"]={{}," Enemy Writhing Worms escape the Flask when used "} c["2 Enemy Writhing Worms escape the Flask when used Writhing Worms are destroyed when Hit"]={{}," Enemy Writhing Worms escape the Flask when used Writhing Worms are destroyed when Hit "} c["2 to 38 Lightning Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=38}},nil} @@ -3704,7 +3740,7 @@ c["2% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBl c["2% additional Physical Damage Reduction for every 3% Life Recovery per second from Leech"]={{[1]={[1]={div=3,stat="MaxLifeLeechRatePercent",type="PerStat"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=2}},nil} c["2% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="PhysicalDamageReductionWhenHit",type="BASE",value=2}},nil} c["2% additional Physical Damage Reduction per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=2}},nil} -c["2% chance to Avoid Elemental Damage from Hits per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=2},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=2},[3]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=2}},nil} +c["2% chance to Avoid Damage of each Element from Hits per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=2},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=2},[3]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=2}},nil} c["2% chance to Defend with 150% of Armour per 5% missing Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2}}," to Defend with 150% of per 5% missing Energy Shield "} c["2% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=2}},nil} c["2% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=2}},nil} @@ -3736,7 +3772,7 @@ c["2% increased Mana Reservation Efficiency of Skills per 250 total Attributes"] c["2% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=2}},nil} c["2% increased Minion Attack Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil} c["2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",stat="ActiveSkeletonLimit",type="PerStat"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil} -c["2% increased Minion Duration per Raised Zombie"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},[3]={stat="ActiveZombieLimit",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}},nil} +c["2% increased Minion Duration per Raised Zombie"]={{[1]={[1]={skillType=77,type="SkillType"},[2]={skillType=6,type="SkillType"},[3]={stat="ActiveZombieLimit",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}},nil} c["2% increased Minion Movement Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}}}},nil} c["2% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil} c["2% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil} @@ -3835,7 +3871,6 @@ c["20% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="Doub c["20% chance to gain Elusive when you Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Condition:CanBeElusive",type="FLAG",value=true}},nil} c["20% chance to gain Onslaught for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} c["20% chance to gain a Frenzy Charge on Hit while Blinded"]={nil,"a Frenzy Charge on Hit "} -c["20% chance to gain a Frenzy Charge on Kill"]={nil,"a Frenzy Charge "} c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={nil,"a Frenzy Charge ing a Frozen Enemy "} c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy Skills Chain an additional time while at maximum Frenzy Charges"]={nil,"a Frenzy Charge ing a Frozen Enemy Skills Chain an additional time "} c["20% chance to gain a Frenzy Charge when you Block Attack Damage"]={nil,"a Frenzy Charge when you Block Attack Damage "} @@ -3843,7 +3878,6 @@ c["20% chance to gain a Power Charge on Critical Strike"]={nil,"a Power Charge " c["20% chance to gain a Power Charge on Critical Strike You have Mind over Matter while at maximum Power Charges"]={nil,"a Power Charge You have Mind over Matter "} c["20% chance to gain a Power Charge on Hit"]={nil,"a Power Charge on Hit "} c["20% chance to gain a Power Charge on Hit 6% increased Spell Damage per Power Charge"]={nil,"a Power Charge on Hit 6% increased Spell Damage "} -c["20% chance to gain a Power Charge on Kill"]={nil,"a Power Charge "} c["20% chance to gain a Power Charge when you Block"]={nil,"a Power Charge when you Block "} c["20% chance to gain a Power Charge when you Block +10% Chance to Block Spell Damage while at Maximum Power Charges"]={nil,"a Power Charge when you Block +10% Chance to Block Spell Damage "} c["20% chance to gain a Power Charge when you Block +8% Chance to Block Attack Damage while wielding a Staff"]={nil,"a Power Charge when you Block +8% Chance to Block Attack Damage "} @@ -3852,7 +3886,6 @@ c["20% chance to gain a Power Charge when you Cast a Curse Spell"]={nil,"a Power c["20% chance to gain a Power Charge when you Cast a Curse Spell Your Curse Limit is equal to your maximum Power Charges"]={nil,"a Power Charge when you Cast a Curse Spell Your Curse Limit is equal to your maximum Power Charges "} c["20% chance to gain a Spirit Charge on Kill"]={nil,"a Spirit Charge "} c["20% chance to gain a Spirit Charge on Kill Gain a Spirit Charge on Kill"]={nil,"a Spirit Charge Gain a Spirit Charge "} -c["20% chance to gain an Endurance Charge on Kill"]={nil,"an Endurance Charge "} c["20% chance to gain an Endurance Charge when you Block"]={nil,"an Endurance Charge when you Block "} c["20% chance to gain an Endurance Charge when you Block +10% Chance to Block Attack Damage while at Maximum Endurance Charges"]={nil,"an Endurance Charge when you Block +10% Chance to Block Attack Damage "} c["20% chance to gain an Endurance Charge when you Block +6% Chance to Block Attack Damage"]={nil,"an Endurance Charge when you Block +6% Chance to Block Attack Damage "} @@ -3870,7 +3903,7 @@ c["20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffe c["20% increased Area of Effect during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} c["20% increased Area of Effect if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} -c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} +c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} c["20% increased Area of Effect while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} c["20% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil} c["20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=20}}," for each different Retaliation Skill you've used in the past 10 seconds "} @@ -3946,12 +3979,12 @@ c["20% increased Duration of Cold Ailments"]={{[1]={flags=0,keywordFlags=0,name= c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyElementalAilmentDuration",type="INC",value=20}},nil} c["20% increased Duration of Fire Ailments"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," of Fire Ailments "} c["20% increased Effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=20}},nil} -c["20% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} +c["20% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} c["20% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}},nil} c["20% increased Effect of Cold Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=20}},nil} c["20% increased Effect of Consecrated Ground you create"]={{[1]={flags=0,keywordFlags=0,name="ConsecratedGroundEffect",type="INC",value=20}},nil} c["20% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=20}},nil} -c["20% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} +c["20% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} c["20% increased Effect of Impales you inflict on non-Impaled Enemies"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=20}}," on non-Impaled Enemies "} c["20% increased Effect of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=20}},nil} c["20% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=20},[5]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=20},[6]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=20}},nil} @@ -3960,7 +3993,7 @@ c["20% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,n c["20% increased Effect of Withered"]={{[1]={flags=0,keywordFlags=0,name="WitherEffect",type="INC",value=20}},nil} c["20% increased Effect of non-Damaging Ailments you inflict with Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[3]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=20},[4]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=20},[5]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=20},[6]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=20}},nil} c["20% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} -c["20% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} +c["20% increased Effect of your Marks"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} c["20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil} c["20% increased Elemental Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil} c["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=20}},nil} @@ -3987,7 +4020,7 @@ c["20% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,key c["20% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} c["20% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil} -c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[2]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[3]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[4]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[5]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[6]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveCarrionGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil} +c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[2]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[3]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[4]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[5]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[6]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveCarrionGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil} c["20% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=20}},nil} c["20% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=20}},nil} c["20% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=20}},nil} @@ -4002,13 +4035,13 @@ c["20% increased Main Hand Critical Strike Chance per"]={{[1]={[1]={type="Condit c["20% increased Main Hand Critical Strike Chance per Murderous Eye Jewel affecting you, up to a maximum of 200%"]={{[1]={[1]={globalLimit=200,globalLimitKey="TecrodGazeMainHand",type="Multiplier",var="MurderousEyeJewel"},[2]={type="Condition",var="MainHandAttack"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} c["20% increased Mana Cost Efficiency of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="ManaCostEfficiency",type="INC",value=20}},nil} -c["20% increased Mana Cost Efficiency of Link Skills"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} -c["20% increased Mana Cost Efficiency of Mark Skills"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} +c["20% increased Mana Cost Efficiency of Link Skills"]={{[1]={[1]={skillType=107,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} +c["20% increased Mana Cost Efficiency of Mark Skills"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} c["20% increased Mana Cost Efficiency of Spells"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} c["20% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=20}},nil} c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil} -c["20% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=20}},nil} -c["20% increased Mana Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=20}},nil} +c["20% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=20}},nil} +c["20% increased Mana Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=20}},nil} c["20% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=20}},nil} c["20% increased Maximum Energy Shield if both Equipped Left and Right Rings have an Explicit Evasion Modifier"]={{[1]={[1]={bothSlots=true,itemSlot="ring",searchCond="explicit evasion",type="ItemCondition"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil} c["20% increased Maximum total Life Recovery per second from"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}," Maximum total Recovery per second from "} @@ -4016,7 +4049,7 @@ c["20% increased Maximum total Life Recovery per second from Leech if you've dea c["20% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=20}},nil} -c["20% increased Minion Duration"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} +c["20% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},[2]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} c["20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil} c["20% increased Movement Speed on Shocked Ground"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil} c["20% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil} @@ -4069,8 +4102,8 @@ c["20% increased Ward during any Flask Effect"]={{[1]={[1]={type="Condition",var c["20% increased Ward from Equipped Armour Items"]={{[1]={[1]={slotNameList={[1]="Helmet",[2]="Body Armour",[3]="Gloves",[4]="Boots",[5]="Weapon 2"},type="SlotName"},flags=0,keywordFlags=0,name="Ward",type="INC",value=20}},nil} c["20% increased bonuses gained from Equipped Gloves"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromGloves",type="INC",value=20}},nil} c["20% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=20}},nil} -c["20% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=20}},nil} -c["20% increased effect of Non-Curse Auras from your Skills on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}}}},nil} +c["20% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=20}},nil} +c["20% increased effect of Non-Curse Auras from your Skills on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}}}},nil} c["20% increased effect of Offerings"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering",[4]="Blood Offering"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} c["20% increased magnitude of Hallowing Flame you inflict"]={{[1]={flags=0,keywordFlags=0,name="HallowingFlameMagnitude",type="INC",value=20}},nil} c["20% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil} @@ -4085,6 +4118,7 @@ c["20% less Effect of Curses from Socketed Hex Skills"]={{[1]={flags=0,keywordFl c["20% less Effect of Curses from Socketed Hex Skills +40 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="MORE",value=-20}}," of Curses from Socketed Hex Skills +40 to Intelligence "} c["20% less Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="MORE",value=-20}},nil} c["20% less Minimum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MinPhysicalDamage",type="MORE",value=-20}},nil} +c["20% less maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="MORE",value=-20}},nil} c["20% more Accuracy Rating while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=20}},nil} c["20% more Area of Effect while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="AreaOfEffect",type="MORE",value=20}},nil} c["20% more Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=20}},nil} @@ -4189,7 +4223,7 @@ c["205% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie c["21 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=21}},nil} c["21% chance to gain Phasing for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil} c["21% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=21}},nil} -c["21% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=21}},nil} +c["21% increased Effect of your Marks"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=21}},nil} c["21% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=21}},nil} c["21% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=21}},nil} c["21% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=21}},nil} @@ -4239,6 +4273,10 @@ c["225% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion", c["225% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=225}},nil} c["225% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=225}},nil} c["227% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=227}},nil} +c["229% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=229}},nil} +c["229% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=229}},nil} +c["229% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=229}},nil} +c["229% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=229}},nil} c["23% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=23}},nil} c["23% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=23}},nil} c["23% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=23},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=23}},nil} @@ -4254,6 +4292,7 @@ c["23% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="Cr c["23% increased Damage for each Magic Item Equipped"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil} c["23% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=23}},nil} c["23% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=23}},nil} +c["23% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=23}},nil} c["23% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=23}},nil} c["23% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=23}},nil} c["23% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=23}},nil} @@ -4294,7 +4333,7 @@ c["24% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier c["24% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil} c["24% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=24}},nil} c["24% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=24}},nil} -c["24% increased Minion Duration"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=24}},nil} +c["24% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},[2]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=24}},nil} c["24% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=24}},nil} c["24% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="UniqueAbyssJewels"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=24}},nil} c["24% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=24}},nil} @@ -4414,12 +4453,13 @@ c["25% chance to refresh Ignite Duration on Melee Weapon Hit"]={{[1]={flags=6710 c["25% chance to refresh Ignite Duration on Melee Weapon Hit Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon Hit"]={{[1]={flags=67108864,keywordFlags=0,name="EnemyIgniteDuration",type="BASE",value=25}}," to refresh on Hit Cover Full Life Enemies in Ash on Melee Weapon Hit "} c["25% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable"]={{}," when you use a Retaliation Skill for a different Retaliation Skill to become Usable "} c["25% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable Retaliation Skills become Usable for 30% longer"]={{}," when you use a Retaliation Skill for a different Retaliation Skill to become Usable Retaliation Skills become Usable for 30% longer "} +c["25% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil} c["25% increased Arctic Armour Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil} c["25% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} c["25% increased Area of Effect during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} c["25% increased Area of Effect if you've Killed at least 5 Enemies Recently"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="EnemyKilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} -c["25% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} -c["25% increased Area of Effect of Curse Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=25}},nil} +c["25% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} +c["25% increased Area of Effect of Curse Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=25}},nil} c["25% increased Area of Effect while in Sand Stance"]={{[1]={[1]={type="Condition",var="SandStance"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} c["25% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=25}},nil} c["25% increased Attack Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}},nil} @@ -4469,7 +4509,7 @@ c["25% increased Effect of Lightning Ailments you inflict on Chilled Enemies"]={ c["25% increased Effect of Non-Damaging Ailments you inflict during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=25},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=25},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=25},[4]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=25},[5]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=25},[6]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=25}},nil} c["25% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=25}},nil} c["25% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=25}},nil} -c["25% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=25}},nil} +c["25% increased Effect of your Marks"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=25}},nil} c["25% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil} c["25% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil} c["25% increased Elemental Damage if you've Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil} @@ -4599,7 +4639,7 @@ c["25% reduced Enemy Stun Threshold with this Weapon 60% chance to Poison on Hit c["25% reduced Enemy Stun Threshold with this Weapon Cannot Knock Enemies Back"]={{}," Enemy Stun Thresh Cannot Knock Enemies Back "} c["25% reduced Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-25}},nil} c["25% reduced Golem Size"]={{}," Size "} -c["25% reduced Golem Size Golems Deal 35% less Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}}}}," Size Golems Deal 35% less "} +c["25% reduced Golem Size Golems Deal 35% less Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}}}}," Size Golems Deal 35% less "} c["25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-25}},nil} c["25% reduced Impale Duration"]={{[1]={flags=0,keywordFlags=0,name="ImpaleDuration",type="INC",value=-25}},nil} c["25% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-25}},nil} @@ -4648,7 +4688,6 @@ c["275% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name c["275% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=275}},nil} c["28% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=28}},nil} c["28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=28}},nil} -c["28% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=28},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=28},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=28},[4]={flags=0,keywordFlags=0,name="All",type="INC",value=28}},nil} c["28% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=28}},nil} c["28% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=28}},nil} c["28% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=28}},nil} @@ -4694,13 +4733,13 @@ c["3% increased Damage per Crab Barrier"]={{[1]={[1]={type="Multiplier",var="Cra c["3% increased Damage per Endurance, Frenzy or Power Charge"]={{[1]={[1]={stat="TotalCharges",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=3}},nil} c["3% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=3}},nil} c["3% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=3}},nil} +c["3% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=3}},nil} c["3% increased Defences from Equipped Shield per 10 Devotion"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Defences",type="INC",value=3}},nil} c["3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=3},[2]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=3},[3]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=3},[4]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=3},[5]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=3},[6]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=3}},nil} c["3% increased Experience gain"]={{}," Experience gain "} c["3% increased Experience gain 2% increased Experience gain"]={{}," Experience gain 2% increased Experience gain "} c["3% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=3}}," Experience gain 20% increased "} c["3% increased Global Critical Strike Chance per Level"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=3}},nil} -c["3% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=3}},nil} c["3% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=3}},nil} c["3% increased Intelligence for each Unique Item Equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=3}},nil} c["3% increased Mana Cost Efficiency per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=3}},nil} @@ -4719,7 +4758,7 @@ c["3% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="Loot c["3% increased Rarity of Items found per Mana Burn, up to a maximum of 100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="ManaBurnStacks"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=3}},nil} c["3% increased Spell Critical Strike Chance per 100 Player Maximum Life"]={{[1]={[1]={actor="player",div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=3}},nil} c["3% increased Spell Damage per 100 Player Maximum Life"]={{[1]={[1]={actor="player",div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=3}},nil} -c["3% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil} +c["3% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil} c["3% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=3}},nil} c["3% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil} c["3% more Armour and Evasion Rating per Fortification above 20"]={{[1]={[1]={stat="FortificationStacksOver20",type="PerStat"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="MORE",value=3}},nil} @@ -4820,8 +4859,8 @@ c["30% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",typ c["30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} c["30% increased Area of Effect during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} c["30% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} -c["30% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} -c["30% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} +c["30% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} +c["30% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} c["30% increased Area of Effect while in Sand Stance"]={{[1]={[1]={type="Condition",var="SandStance"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} c["30% increased Area of Effect while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} c["30% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil} @@ -4898,14 +4937,14 @@ c["30% increased Duration of Freezes you inflict on Cursed Enemies"]={{[1]={[1]= c["30% increased Effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=30}},nil} c["30% increased Effect of Auras from Mines"]={{[1]={flags=0,keywordFlags=8192,name="AuraEffect",type="INC",value=30}},nil} c["30% increased Effect of Blind from Melee Weapons"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlindEffect",type="INC",value=30}}}},nil} -c["30% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=30}},nil} +c["30% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=30}},nil} c["30% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30}},nil} c["30% increased Effect of Cold Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=30}},nil} c["30% increased Effect of Cruelty"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=30}}," of Cruelty "} c["30% increased Effect of Impales you inflict with Two Handed Weapons on Non-Impaled Enemies"]={{[1]={flags=536870916,keywordFlags=0,name="ImpaleEffect",type="INC",value=30}}," on Non-Impaled Enemies "} c["30% increased Effect of Impales you inflict with Two Handed Weapons on Non-Impaled Enemies 50% increased Impale Duration"]={{[1]={flags=536870916,keywordFlags=0,name="ImpaleEffect",type="INC",value=30}}," on Non-Impaled Enemies 50% increased Impale Duration "} c["30% increased Effect of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=30}},nil} -c["30% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},[3]={threshold=1,type="MultiplierThreshold",var="LinkedTargets"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil} +c["30% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},[3]={threshold=1,type="MultiplierThreshold",var="LinkedTargets"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil} c["30% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=30},[4]={flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=30},[5]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=30},[6]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=30}},nil} c["30% increased Effect of Non-Damaging Ailments you inflict during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=30},[4]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=30},[5]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=30},[6]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=30}},nil} c["30% increased Effect of Onslaught on you"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=30}},nil} @@ -4935,12 +4974,14 @@ c["30% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",t c["30% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil} c["30% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=30}},nil} c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=30}},nil} +c["30% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=30}},nil} c["30% increased Flask Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=30}},nil} c["30% increased Fortification Duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=30}},nil} c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=30}},nil} c["30% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil} c["30% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} c["30% increased Global Critical Strike Chance per Blue Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} +c["30% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil} c["30% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil} c["30% increased Global Physical Damage per Red Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil} c["30% increased Life Recovery Rate while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=30}},nil} @@ -5002,7 +5043,7 @@ c["30% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,nam c["30% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=30}},nil} c["30% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=30}},nil} c["30% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",value=30}},nil} -c["30% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil} +c["30% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil} c["30% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=30}},nil} c["30% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=30}},nil} c["30% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=30}},nil} @@ -5010,7 +5051,7 @@ c["30% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keyw c["30% increased total Recovery per second from Life, Mana, or Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=30}},nil} c["30% less Animate Weapon Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Animate Weapon",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="MORE",value=-30}},nil} c["30% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-30}},nil} -c["30% less Damage with Triggered Spells"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=131072,name="Damage",type="MORE",value=-30}},nil} +c["30% less Damage with Triggered Spells"]={{[1]={[1]={skillType=37,type="SkillType"},flags=0,keywordFlags=131072,name="Damage",type="MORE",value=-30}},nil} c["30% less Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=-30}},nil} c["30% less Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="MORE",value=-30}},nil} c["30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},[2]={type="Condition",var="HaveIronReflexes"},flags=4,keywordFlags=2048,name="Damage",type="MORE",value=30}},nil} @@ -5052,12 +5093,13 @@ c["30% reduced Effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="Self c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil} c["30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil} c["30% reduced Enemy Stun Threshold with this Weapon"]={{}," Enemy Stun Thresh "} +c["30% reduced Enemy Stun Threshold with this Weapon 50% chance to gain a Brine Charge instead of an Endurance Charge"]={{}," Enemy Stun Thresh 50% chance to gain a Brine Charge instead of an Endurance Charge "} c["30% reduced Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=-30}},nil} c["30% reduced Flask Charges gained during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=-30}},nil} c["30% reduced Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-30}},nil} c["30% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfFreezeDuration",type="INC",value=-30}},nil} c["30% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-30}},nil} -c["30% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-30}},nil} +c["30% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-30}},nil} c["30% reduced Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30}},nil} c["30% reduced Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=-30}},nil} c["30% reduced Recovery rate of Life and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=-30}},nil} @@ -5086,7 +5128,7 @@ c["31% increased Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="Cost",type c["31% increased Critical Strike Chance per socketed Hypnotic Eye Jewel"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=31}}," per socketed Hypnotic Eye Jewel "} c["31% increased Critical Strike Chance per socketed Hypnotic Eye Jewel 29% increased Physical Damage per socketed Murderous Eye Jewel"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=31}}," per socketed Hypnotic Eye Jewel 29% increased Physical Damage per socketed Murderous Eye Jewel "} c["31% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=31}},nil} -c["31% increased Minion Duration"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=31}},nil} +c["31% increased Minion Duration"]={{[1]={[1]={skillType=77,type="SkillType"},[2]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=31}},nil} c["31% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=31}},nil} c["310% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=310}},nil} c["32% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=32}},nil} @@ -5094,6 +5136,7 @@ c["32% increased Damage if you've used a Travel Skill Recently"]={{[1]={[1]={typ c["32% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=32}},nil} c["32% increased Evasion Rating while Focused"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=32}},nil} c["32% increased Movement Speed while affected by a Magic Abyss Jewel"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="MagicAbyssJewels"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=32}},nil} +c["32% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=32}},nil} c["320% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=320}},nil} c["320% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=320}},nil} c["320% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=320}},nil} @@ -5120,6 +5163,7 @@ c["33% of Non-Chaos Damage taken bypasses Energy Shield"]={{[1]={flags=0,keyword c["33% reduced Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=-33}},nil} c["330% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=330}},nil} c["333% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=333}},nil} +c["34% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=34}},nil} c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=340}},nil} c["340% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=340}},nil} c["35% chance for Energy Shield Recharge to start when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=35}}," for Recharge to start when you Block "} @@ -5147,7 +5191,7 @@ c["35% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leech c["35% increased Damage with Bleeding you inflict on Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=0,keywordFlags=4194304,name="Damage",type="INC",value=35}},nil} c["35% increased Damage with Wands if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=8388612,keywordFlags=0,name="Damage",type="INC",value=35}},nil} c["35% increased Effect of Blind from Melee Weapons"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlindEffect",type="INC",value=35}}}},nil} -c["35% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=35}},nil} +c["35% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=35}},nil} c["35% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=35}},nil} c["35% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=35}},nil} c["35% increased Elemental Damage with Hits and Ailments for each type of Elemental Ailment on Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35}},nil} @@ -5220,7 +5264,7 @@ c["38% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="Cr c["38% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=38}},nil} c["38% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="ShrineBuffEffect",type="INC",value=38}},nil} c["38% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=38}},nil} -c["38% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-38}},nil} +c["38% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-38}},nil} c["380% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=380}},nil} c["39% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=39}},nil} c["4 Warlord Items are Equipped"]={{}," Warlord Items are Equipped "} @@ -5258,7 +5302,7 @@ c["4% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",va c["4% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil} c["4% increased Defences per Minion from your Non-Vaal Skills"]={{[1]={[1]={type="Multiplier",var="NonVaalSummonedMinion"},flags=0,keywordFlags=0,name="Defences",type="INC",value=4}},nil} c["4% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=4}},nil} -c["4% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=4}},nil} +c["4% increased Effect of your Marks"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=4}},nil} c["4% increased Elemental Damage per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4}},nil} c["4% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4}},nil} c["4% increased Elemental Damage per Power charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4}},nil} @@ -5317,7 +5361,7 @@ c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,na c["40% faster start of Energy Shield Recharge while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil} c["40% increased Accuracy Rating while you have at least 1 nearby Ally"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil} c["40% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=40}},nil} -c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil} +c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil} c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil} c["40% increased Armour and Evasion Rating while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=40}},nil} c["40% increased Armour if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil} @@ -5336,7 +5380,7 @@ c["40% increased Brand Attachment range"]={{[1]={flags=0,keywordFlags=0,name="Br c["40% increased Brand Damage"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=40}},nil} c["40% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=40}},nil} c["40% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,keywordFlags=0,name="Speed",type="INC",value=40}},nil} -c["40% increased Cast Speed with Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=40}},nil} +c["40% increased Cast Speed with Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=40}},nil} c["40% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=40}},nil} c["40% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeRecovery",type="INC",value=40}},nil} c["40% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=40}},nil} @@ -5344,7 +5388,7 @@ c["40% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name= c["40% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil} c["40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=40}},nil} c["40% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil} -c["40% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil} +c["40% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil} c["40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Critical Strike Chance against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} @@ -5365,19 +5409,20 @@ c["40% increased Damage with Hits and Ailments against Ignited Enemies"]={{[1]={ c["40% increased Damage with Hits and Ailments against Marked Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=40}},nil} c["40% increased Damage with Hits and Ailments against Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=40}},nil} c["40% increased Damage with Ignite inflicted on Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=8388608,name="Damage",type="INC",value=40}},nil} +c["40% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=40}},nil} c["40% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=40}},nil} c["40% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=40}},nil} c["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=40}},nil} c["40% increased Duration of Ailments you inflict while Focused"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=40}},nil} -c["40% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil} +c["40% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil} c["40% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40}}," ed Ground "} c["40% increased Effect of Chilled Ground 50% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40}}," ed Ground 50% increased Effect of Chilled Ground "} c["40% increased Effect of Consecrated Ground you create"]={{[1]={flags=0,keywordFlags=0,name="ConsecratedGroundEffect",type="INC",value=40}},nil} c["40% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=40}},nil} c["40% increased Effect of Impales inflicted with Spells"]={{[1]={flags=0,keywordFlags=131072,name="ImpaleEffect",type="INC",value=40}},nil} c["40% increased Effect of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=40}},nil} -c["40% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="DebuffEffect",type="INC",value=40},[2]={[1]={skillName="Death Aura",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=40}},nil} -c["40% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},[3]={threshold=1,type="MultiplierThreshold",var="LinkedTargets"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=40}},nil} +c["40% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="DebuffEffect",type="INC",value=40},[2]={[1]={skillName="Death Aura",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=40}},nil} +c["40% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},[3]={threshold=1,type="MultiplierThreshold",var="LinkedTargets"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=40}},nil} c["40% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=40},[4]={flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=40},[5]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=40},[6]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=40}},nil} c["40% increased Effect of Onslaught on you"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=40}},nil} c["40% increased Effect of Scorch"]={{[1]={flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=40}},nil} @@ -5401,7 +5446,6 @@ c["40% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{ c["40% increased Fortification Duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=40}},nil} c["40% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil} c["40% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} -c["40% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=40}},nil} c["40% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil} c["40% increased Global maximum Energy Shield and reduced Lightning Resistance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="LightningResist",type="INC",value=-40}},nil} c["40% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=40}},nil} @@ -5459,10 +5503,11 @@ c["40% less Physical and Chaos Damage Taken while Sane"]={{[1]={[1]={neg=true,ty c["40% less Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="MORE",value=-40}},nil} c["40% more Accuracy Rating against Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="MORE",value=40}},nil} c["40% more Attack Damage if Accuracy Rating is higher than Maximum Life"]={{[1]={[1]={type="Condition",var="MainHandAccRatingHigherThanMaxLife"},[2]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="Damage",source="Damage",type="MORE",value=40},[2]={[1]={type="Condition",var="OffHandAccRatingHigherThanMaxLife"},[2]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="Damage",source="Damage",type="MORE",value=40}},nil} -c["40% more Attack Speed with Melee Skills while you are Unencumbered"]={{[1]={[1]={skillType=24,type="SkillType"},[2]={type="Condition",var="Unencumbered"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=40}},nil} +c["40% more Attack Speed with Melee Skills while you are Unencumbered"]={{[1]={[1]={skillType=20,type="SkillType"},[2]={type="Condition",var="Unencumbered"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=40}},nil} c["40% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=40}},nil} -c["40% more Mana Reservation of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=40}},nil} +c["40% more Mana Reservation of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=40}},nil} c["40% more Maximum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MaxPhysicalDamage",type="MORE",value=40}},nil} +c["40% more Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="MORE",value=40}},nil} c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=40}},nil} c["40% of Cold Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsLightning",type="BASE",value=40}},nil} c["40% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=40}},nil} @@ -5484,7 +5529,7 @@ c["40% of Physical Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,k c["40% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalLifeRecoup",type="BASE",value=40}},nil} c["40% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=40}},nil} c["40% reduced Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=-40}},nil} -c["40% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-40}},nil} +c["40% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-40}},nil} c["40% reduced Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-40}},nil} c["40% reduced Effect of Curses on you during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingManaFlask"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-40}},nil} c["40% reduced Effect of Non-Damaging Ailments on you during Effect of any Life Flask"]={{[1]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-40},[2]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-40},[3]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfFreezeEffect",type="INC",value=-40},[4]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfScorchEffect",type="INC",value=-40},[5]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfBrittleEffect",type="INC",value=-40},[6]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfSapEffect",type="INC",value=-40}},nil} @@ -5519,10 +5564,12 @@ c["425% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical c["43% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=43}},nil} c["43% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=43}},nil} c["43% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=43}},nil} +c["43% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=43}},nil} c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=43}},nil} c["43% increased Quantity of Items Dropped by Slain Normal Enemies"]={{[1]={flags=0,keywordFlags=0,name="LootQuantityNormalEnemies",type="INC",value=43}},nil} c["43% reduced Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=-43}},nil} c["439% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=439}},nil} +c["44% increased Damage per Moon Rite completed"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=44}}," per Moon Rite completed "} c["45% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "} c["45% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges +1 to Maximum Frenzy Charges"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges +1 to MaximumCharges "} c["45% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"]={{}," that if you would gainCharges, you instead gain up to your maximum number of Frenzy Charges "} @@ -5607,6 +5654,7 @@ c["5% chance to grant an Endurance Charge to nearby Allies on Hit 10% chance to c["5% chance to throw up to 4 additional Traps"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowCount",type="BASE",value=0.2}},nil} c["5% chance when you inflict Withered to inflict up to 15 Withered Debuffs instead"]={{}," when you inflict Withered to inflict up to 15 Withered Debuffs instead "} c["5% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=5}},nil} +c["5% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=5}},nil} c["5% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil} c["5% increased Area of Effect per Enemy killed recently, up to 50%"]={{[1]={[1]={limit=50,limitTotal=true,type="Multiplier",var="EnemyKilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil} c["5% increased Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=5}},nil} @@ -5638,7 +5686,7 @@ c["5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var= c["5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}},nil} c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=5}},nil} -c["5% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=5}},nil} +c["5% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=5}},nil} c["5% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=5}},nil} c["5% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}},nil} c["5% increased Elemental Damage per Power charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}},nil} @@ -5648,7 +5696,6 @@ c["5% increased Experience gain +10% to all Elemental Resistances"]={{[1]={flags c["5% increased Experience gain 3% increased Experience gain"]={{}," Experience gain 3% increased Experience gain "} c["5% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=5}},nil} c["5% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=5}},nil} -c["5% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=5}},nil} c["5% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=5}},nil} c["5% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil} c["5% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=5}},nil} @@ -5686,7 +5733,7 @@ c["5% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type c["5% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=5}},nil} c["5% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=5}},nil} c["5% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=5}},nil} -c["5% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=5}},nil} +c["5% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=5}},nil} c["5% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=5}},nil} c["5% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil} c["5% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=5}},nil} @@ -5763,12 +5810,11 @@ c["50% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRec c["50% increased Arctic Armour Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil} c["50% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil} -c["50% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil} +c["50% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil} c["50% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=50}},nil} c["50% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=50}},nil} c["50% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil} c["50% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil} -c["50% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Attack Damage against Enemies with a higher percentage of their Life remaining than you"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HigherLifePercentThanPlayer"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=50}},nil} c["50% increased Attack Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=50}},nil} @@ -5776,7 +5822,6 @@ c["50% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={[1 c["50% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=50}},nil} c["50% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=50}},nil} c["50% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=50}},nil} -c["50% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=50}},nil} c["50% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeRecovery",type="INC",value=50}},nil} c["50% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=50}},nil} c["50% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=50}},nil} @@ -5823,7 +5868,7 @@ c["50% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,n c["50% increased Effect of Socketed Abyss Jewels"]={{[1]={flags=0,keywordFlags=0,name="SocketedJewelEffect",type="INC",value=50}},nil} c["50% increased Effect of Withered"]={{[1]={flags=0,keywordFlags=0,name="WitherEffect",type="INC",value=50}},nil} c["50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=50},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=50},[3]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=50},[4]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=50},[5]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=50},[6]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=50}},nil} -c["50% increased Effect of your Marks while Elusive"]={{[1]={[1]={skillType=109,type="SkillType"},[2]={type="Condition",var="Elusive"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=50}},nil} +c["50% increased Effect of your Marks while Elusive"]={{[1]={[1]={skillType=98,type="SkillType"},[2]={type="Condition",var="Elusive"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=50}},nil} c["50% increased Elemental Ailment Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=50}},nil} c["50% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=50}},nil} c["50% increased Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=50}},nil} @@ -5844,7 +5889,6 @@ c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name=" c["50% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["50% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil} -c["50% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=50}},nil} c["50% increased Herald of Ice Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=50}},nil} c["50% increased Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=50}},nil} @@ -5854,11 +5898,11 @@ c["50% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius" c["50% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil} c["50% increased Lightning Damage while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil} c["50% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=50}},nil} -c["50% increased Mana Cost Efficiency of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=50}},nil} +c["50% increased Mana Cost Efficiency of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=50}},nil} c["50% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=50}},nil} c["50% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil} c["50% increased Mana Regeneration Rate during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil} -c["50% increased Mana Reservation Efficiency of Stance Skills"]={{[1]={[1]={skillType=104,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} +c["50% increased Mana Reservation Efficiency of Stance Skills"]={{[1]={[1]={skillType=93,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["50% increased Maximum total Mana Recovery per second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=50}},nil} c["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["50% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=256,keywordFlags=0,name="Damage",type="INC",value=50}},nil} @@ -5905,7 +5949,7 @@ c["50% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keyw c["50% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=50}},nil} c["50% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil} c["50% less Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="MORE",value=-50}},nil} -c["50% less Cost of Link Skills"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="Cost",type="MORE",value=-50}},nil} +c["50% less Cost of Link Skills"]={{[1]={[1]={skillType=107,type="SkillType"},flags=0,keywordFlags=0,name="Cost",type="MORE",value=-50}},nil} c["50% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-50}},nil} c["50% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-50}},nil} c["50% less Damage Taken from Damage over Time while you have Unbroken Ward"]={{[1]={[1]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="DamageTakenOverTime",type="MORE",value=-50}},nil} @@ -5921,12 +5965,13 @@ c["50% less Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="Lightning c["50% less Minimum Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="MinLightningDamage",type="MORE",value=-50}},nil} c["50% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-50}},nil} c["50% less maximum Total Life Recovery per Second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="MORE",value=-50}},nil} +c["50% less recovery from Recoup"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryLowLife",type="MORE",value=-50}}," from Recoup "} c["50% more Accuracy Rating against Marked Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="MORE",value=50}},nil} c["50% more Accuracy Rating at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="MORE",value=50}},nil} c["50% more Critical Strike Chance while Insane"]={{[1]={[1]={type="Condition",var="Insane"},flags=0,keywordFlags=0,name="CritChance",type="MORE",value=50}},nil} -c["50% more Damage Over Time with Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}},nil} +c["50% more Damage Over Time with Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}},nil} c["50% more Damage with Arrow Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=4,keywordFlags=2048,name="Damage",type="MORE",value=50}},nil} -c["50% more Effect of Herald Buffs on you"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="MORE",value=50}},nil} +c["50% more Effect of Herald Buffs on you"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="MORE",value=50}},nil} c["50% of Cold Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageFromHitsTakenAsFire",type="BASE",value=50}},nil} c["50% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageFromHitsTakenAsLightning",type="BASE",value=50}},nil} c["50% of Cold and Lightning Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=50}},nil} @@ -5949,7 +5994,7 @@ c["50% of Physical Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,k c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToRandom",type="BASE",value=50}},nil} c["50% of Physical, Cold and Lightning Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageConvertToFire",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=50}},nil} c["50% of your Energy Shield is added to your Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="AddESToStunThreshold",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ESToStunThresholdPercent",type="BASE",value=50}},nil} -c["50% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-50}},nil} +c["50% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-50}},nil} c["50% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-50}},nil} c["50% reduced Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-50}},nil} c["50% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}},nil} @@ -5993,6 +6038,7 @@ c["51% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name= c["51% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=51}},nil} c["52% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=52}},nil} c["52% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=52}},nil} +c["53% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=53}},nil} c["53% reduced Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="INC",value=-53}},nil} c["53% reduced Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="INC",value=-53}},nil} c["53% reduced Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="INC",value=-53}},nil} @@ -6003,6 +6049,7 @@ c["55% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="Cr c["55% increased Critical Strike Chance during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil} c["55% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil} c["55% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=55}},nil} +c["55% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil} c["55% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=55}},nil} c["55% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=55}},nil} c["55% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=55}},nil} @@ -6075,7 +6122,7 @@ c["6% increased Spell Damage per 5% Chance to Block Attack Damage"]={{[1]={[1]={ c["6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil} c["6% increased Spell Damage per Summoned Skeleton"]={{[1]={[1]={stat="ActiveSkeletonLimit",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil} c["6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6}},nil} -c["6% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=6}},nil} +c["6% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=6}},nil} c["6% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=6}},nil} c["6% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil} c["6% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=6}},nil} @@ -6089,7 +6136,7 @@ c["60% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChanc c["60% chance to Poison on Hit against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil} c["60% faster Restoration of Ward"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=60}},nil} c["60% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=60}},nil} -c["60% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=60}},nil} +c["60% increased Area of Effect of Hex Skills"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=60}},nil} c["60% increased Area of Effect while you don't have Convergence"]={{[1]={[1]={neg=true,type="Condition",var="Convergence"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=60}},nil} c["60% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=60}},nil} c["60% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=60}},nil} @@ -6115,7 +6162,6 @@ c["60% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keyword c["60% increased Critical Strike Chance with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} -c["60% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["60% increased Damage if you've Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["60% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["60% increased Damage while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} @@ -6145,7 +6191,7 @@ c["60% increased Item Rarity per White Socket"]={{}," Item Rarity "} c["60% increased Lightning Damage while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil} c["60% increased Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil} c["60% increased Main Hand Attack Damage while wielding two different Weapon Types"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},[3]={type="Condition",var="WieldingDifferentWeaponTypes"},flags=1,keywordFlags=0,name="Damage",type="INC",value=60}},nil} -c["60% increased Mana Cost Efficiency of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=60}},nil} +c["60% increased Mana Cost Efficiency of Minion Skills"]={{[1]={[1]={skillType=6,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=60}},nil} c["60% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil} c["60% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil} c["60% increased Melee Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=256,keywordFlags=0,name="Damage",type="INC",value=60}},nil} @@ -6176,7 +6222,7 @@ c["60% of Elemental Damage from your Hits cannot be Reflected"]={{[1]={flags=0,k c["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=60}},nil} c["60% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=60}},nil} c["60% of Physical Damage from your Hits cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=60}}," from your Hits cannot be Reflected "} -c["60% reduced Cost of Aura Skills that summon Totems"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=16384,name="Cost",type="INC",value=-60}},nil} +c["60% reduced Cost of Aura Skills that summon Totems"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=16384,name="Cost",type="INC",value=-60}},nil} c["60% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-60}},nil} c["60% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="RareAbyssJewels"},flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-60}},nil} c["60% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-60}},nil} @@ -6193,15 +6239,17 @@ c["63% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name=" c["63% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=63}},nil} c["63% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots"]={{[1]={flags=0,keywordFlags=0,name="SkitterbotAilmentEffect",type="INC",value=63}},nil} c["63% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="ShrineBuffEffect",type="INC",value=63}},nil} +c["63% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=63}},nil} c["63% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=63}},nil} c["63% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-63}},nil} c["65% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=65}},nil} c["65% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=65}},nil} -c["65% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=65}},nil} +c["65% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=65}},nil} c["65% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=65}},nil} c["65% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=65}},nil} c["65% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=65}},nil} c["65% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=65}},nil} +c["65% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=65}},nil} c["65% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=65}},nil} c["65% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",value=65}},nil} c["65% reduced Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="INC",value=-65}},nil} @@ -6211,9 +6259,9 @@ c["66% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance" c["66% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=66}},nil} c["66% chance to deal Double Damage while Focused"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=66}},nil} c["66% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=66}},nil} -c["66% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=66}},nil} +c["66% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=66}},nil} c["66% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=66}},nil} -c["66% increased Mana Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=66}},nil} +c["66% increased Mana Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=66}},nil} c["66% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-66}},nil} c["67% increased Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=67}},nil} c["67% of Cold Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToChaos",type="BASE",value=67}},nil} @@ -6303,7 +6351,8 @@ c["75% increased Duration of Poisons you inflict during Effect"]={{[1]={[1]={typ c["75% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots"]={{[1]={flags=0,keywordFlags=0,name="SkitterbotAilmentEffect",type="INC",value=75}},nil} c["75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="ShrineBuffEffect",type="INC",value=75}},nil} c["75% increased Effect of Socketed Abyss Jewels"]={{[1]={flags=0,keywordFlags=0,name="SocketedJewelEffect",type="INC",value=75}},nil} -c["75% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=75}},nil} +c["75% increased Effect of your Marks"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=75}},nil} +c["75% increased Enchantment Modifier magnitudes"]={{},nil} c["75% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=75}},nil} c["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil} c["75% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=75}},nil} @@ -6314,11 +6363,7 @@ c["75% increased Unveiled Modifier magnitudes"]={{},nil} c["75% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=75}},nil} c["75% more Main Hand attack speed"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=75}},nil} c["75% of Damage taken bypasses Ward"]={{[1]={flags=0,keywordFlags=0,name="WardBypass",type="BASE",value=75}},nil} -c["75% of Elemental Damage from your Hits cannot be Reflected while"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=75}}," from your Hits cannot be Reflected while "} -c["75% of Elemental Damage from your Hits cannot be Reflected while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=75}}," from your Hits cannot be Reflected "} c["75% of Physical Damage converted to a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToRandom",type="BASE",value=75}},nil} -c["75% of Physical Damage from your Hits cannot be Reflected while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=75}}," from your Hits cannot be Reflected "} -c["75% of Physical Damage from your Hits cannot be Reflected while affected by Determination Unaffected by Vulnerability while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=75}}," from your Hits cannot be Reflected Unaffected by Vulnerability while affected by Determination "} c["75% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-75}},nil} c["75% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-75}},nil} c["75% reduced Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="INC",value=-75}},nil} @@ -6370,7 +6415,7 @@ c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=603 c["8% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil} c["8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil} c["8% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil} -c["8% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil} +c["8% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil} c["8% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=8}},nil} c["8% increased Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="INC",value=8}},nil} c["8% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil} @@ -6383,7 +6428,7 @@ c["8% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,n c["8% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil} c["8% increased Attack and Cast Speed while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil} c["8% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil} -c["8% increased Cast Speed with Brand Skills"]={{[1]={[1]={skillType=75,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil} +c["8% increased Cast Speed with Brand Skills"]={{[1]={[1]={skillType=65,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil} c["8% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=8}},nil} c["8% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=8}},nil} c["8% increased Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=8}},nil} @@ -6397,7 +6442,7 @@ c["8% increased Effect of Arcane Surge on you per"]={{[1]={flags=0,keywordFlags= c["8% increased Effect of Arcane Surge on you per Hypnotic Eye Jewel affecting you, up to a maximum of 40%"]={{[1]={[1]={globalLimit=40,globalLimitKey="KurgalGaze",type="Multiplier",var="HypnoticEyeJewel"},flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=8}},nil} c["8% increased Effect of Non-Damaging Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=8},[4]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=8},[5]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=8},[6]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=8}},nil} c["8% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=8}},nil} -c["8% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=8}},nil} +c["8% increased Effect of your Marks"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=8}},nil} c["8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil} c["8% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%"]={{[1]={[1]={div=1,statList={[1]="FireResistOver75",[2]="ColdResistOver75",[3]="LightningResistOver75"},type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil} c["8% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil} @@ -6405,7 +6450,7 @@ c["8% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier" c["8% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=8}},nil} c["8% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=8}},nil} c["8% increased Global Defences per Empty Socket"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}}," per Empty Socket "} -c["8% increased Global Defences per Empty Socket 80% increased Global Critical Strike Chance when in Main Hand"]={{[1]={[1]={type="Global"},[2]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}}," per Empty Socket 80% increased Global Critical Strike Chance "} +c["8% increased Global Defences per Empty Socket 8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}}," per Empty Socket 8% increased Global Defences "} c["8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}},nil} c["8% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=8}},nil} c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=8}},nil} @@ -6448,7 +6493,7 @@ c["8% reduced Soul Gain Prevention Duration"]={{[1]={flags=0,keywordFlags=0,name c["80% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=80}},nil} c["80% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=80}},nil} c["80% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=80}},nil} -c["80% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=80}},nil} +c["80% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=80}},nil} c["80% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil} c["80% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=80}},nil} c["80% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=80}},nil} @@ -6457,7 +6502,7 @@ c["80% increased Attack Damage if your opposite Ring is a Shaper Item"]={{[1]={[ c["80% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=80}},nil} c["80% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=80}},nil} c["80% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=80}},nil} -c["80% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=80}},nil} +c["80% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=80}},nil} c["80% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil} c["80% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil} c["80% increased Critical Strike Chance during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil} @@ -6469,7 +6514,7 @@ c["80% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]= c["80% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=80}},nil} c["80% increased Damage with Vaal Skills during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=512,name="Damage",type="INC",value=80}},nil} c["80% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=80}},nil} -c["80% increased Duration of Ailments inflicted by Retaliation Skills"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=80}},nil} +c["80% increased Duration of Ailments inflicted by Retaliation Skills"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=80}},nil} c["80% increased Effect of Arcane Surge on you while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=80}},nil} c["80% increased Effect of Chills you inflict while Leeching Mana"]={{[1]={[1]={type="Condition",var="LeechingMana"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=80}},nil} c["80% increased Effect of Shocks you inflict while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=80}},nil} @@ -6511,7 +6556,6 @@ c["800% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="S c["800% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=800}},nil} c["800% more Physical Damage with Unarmed Melee Attacks"]={{[1]={flags=16777472,keywordFlags=0,name="PhysicalDamage",type="MORE",value=800}},nil} c["83% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=83}},nil} -c["84% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=84}},nil} c["85% increased Elemental Damage with Melee Weapons"]={{[1]={flags=67108864,keywordFlags=0,name="ElementalDamage",type="INC",value=85}},nil} c["85% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=85}},nil} c["85% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="PhysicalDamage",type="INC",value=85}},nil} @@ -6528,7 +6572,7 @@ c["9% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",ty c["9% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil} c["9% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=9}},nil} c["9% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=9}},nil} -c["9% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=90,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=9}},nil} +c["9% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=79,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=9}},nil} c["9% increased Effect of Elusive on you per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElusiveEffect",type="INC",value=9}},nil} c["9% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=9}},nil} c["9% increased Energy Shield per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=9}},nil} @@ -6556,7 +6600,6 @@ c["90% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShiel c["90% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil} c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=90}},nil} c["90% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=90}},nil} -c["90% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=90}},nil} c["90% increased Implicit Modifier magnitudes"]={{},nil} c["90% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=90}},nil} c["90% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=90}},nil} @@ -6571,10 +6614,7 @@ c["90% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="Li c["90% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-90}},nil} c["90% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-90}},nil} c["95% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=95}},nil} -c["95% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=95}},nil} c["98% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=98}},nil} -c["99% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=99}},nil} -c["99% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=99}},nil} c["Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Acrobatics"}},nil} c["Action Speed cannot be Slowed below Base Value if you've cast Temporal Chains in the past 10 seconds"]={{[1]={[1]={type="Condition",var="SelfCastTemporalChains"},flags=0,keywordFlags=0,name="MinimumActionSpeed",type="MAX",value=100}},nil} c["Action Speed cannot be modified to below Base Value"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="MinimumActionSpeed",type="MAX",value=100}},nil} @@ -6632,6 +6672,7 @@ c["Adds 1 to 45 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="Lightning c["Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=5}},nil} c["Adds 1 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil} c["Adds 1 to 50 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=50}},nil} +c["Adds 1 to 53 Lightning Damage to Spells per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=53}},nil} c["Adds 1 to 54 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=54}},nil} c["Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=55}},nil} c["Adds 1 to 575 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=575}},nil} @@ -7271,9 +7312,9 @@ c["All Damage inflicts Poison while affected by Glorious Madness"]={{[1]={[1]={t c["All Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="OVERRIDE",value=100},[2]={flags=0,keywordFlags=0,name="LightningEnergyShieldBypass",type="OVERRIDE",value=100},[3]={flags=0,keywordFlags=0,name="ColdEnergyShieldBypass",type="OVERRIDE",value=100},[4]={flags=0,keywordFlags=0,name="FireEnergyShieldBypass",type="OVERRIDE",value=100},[5]={flags=0,keywordFlags=0,name="ChaosEnergyShieldBypass",type="OVERRIDE",value=100}},nil} c["All Damage with Hits can Chill"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCanChill",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="LightningCanChill",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil} c["All Damage with Maces and Sceptres inflicts Chill"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="LightningCanChill",type="FLAG",value=true},[3]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="FireCanChill",type="FLAG",value=true},[4]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil} -c["All Damage with Triggered Spells can Poison"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=131072,name="FireCanPoison",type="FLAG",value=true},[2]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=131072,name="ColdCanPoison",type="FLAG",value=true},[3]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=131072,name="LightningCanPoison",type="FLAG",value=true}},nil} +c["All Damage with Triggered Spells can Poison"]={{[1]={[1]={skillType=37,type="SkillType"},flags=0,keywordFlags=131072,name="FireCanPoison",type="FLAG",value=true},[2]={[1]={skillType=37,type="SkillType"},flags=0,keywordFlags=131072,name="ColdCanPoison",type="FLAG",value=true},[3]={[1]={skillType=37,type="SkillType"},flags=0,keywordFlags=131072,name="LightningCanPoison",type="FLAG",value=true}},nil} c["All Elemental Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToChaos",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=100}},nil} -c["All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes"]={{[1]={[1]={type="Condition",var="BeenCritRecently"},[2]={neg=true,skillType=57,type="SkillType"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil} +c["All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes"]={{[1]={[1]={type="Condition",var="BeenCritRecently"},[2]={neg=true,skillType=48,type="SkillType"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil} c["All Sockets are White"]={{},nil} c["All bonuses from an Equipped Shield apply to your Minions instead of you"]={{},nil} c["All hits are Critical Strikes while holding a Fishing Rod"]={{[1]={[1]={type="Condition",var="UsingFishing"},flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil} @@ -7627,7 +7668,7 @@ c["Ancestral Bond"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",va c["Anger has 50% increased Aura Effect while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},[2]={includeTransfigured=true,skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}},nil} c["Anger has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Anger has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} -c["Anger has no Reservation"]={{[1]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Anger has no Reservation"]={{[1]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Animated Guardian deals 5% increased Damage per Animated Weapon"]={{[1]={[1]={includeTransfigured=true,skillName="Animate Guardian",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",stat="ActiveAnimatedWeaponLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}}}},nil} c["Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage"]={nil,"Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage "} c["Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage You cannot have Non-Animated, Non-Manifested Minions"]={nil,"Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage You cannot have Non-Animated, Non-Manifested Minions "} @@ -7639,8 +7680,8 @@ c["Arcane Surge also grants 20% increased Mana Cost Efficiency to you"]={nil,"Ar c["Arcane Surge also grants 20% more Spell Damage to you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeDamage",type="MAX",value=20}},nil} c["Arcane Surge also grants 20% of Damage taken Recouped as Mana to you"]={nil,"Arcane Surge also grants 20% of Damage taken Recouped as Mana to you "} c["Arcane Surge also grants 20% of Damage taken Recouped as Mana to you Arcane Surge also grants 20% increased Mana Cost Efficiency to you"]={nil,"Arcane Surge also grants 20% of Damage taken Recouped as Mana to you Arcane Surge also grants 20% increased Mana Cost Efficiency to you "} -c["Arctic Armour has no Reservation"]={{[1]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} -c["Area Skills have 10% chance to Knock Enemies Back on Hit"]={{[1]={[1]={skillType=11,type="SkillType"},flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=10}},nil} +c["Arctic Armour has no Reservation"]={{[1]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Area Skills have 10% chance to Knock Enemies Back on Hit"]={{[1]={[1]={skillType=8,type="SkillType"},flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=10}},nil} c["Armour also applies to Chaos Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToChaosDamageTaken",type="BASE",value=100}},nil} c["Armour also applies to Lightning Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=100}},nil} c["Armour applies to Fire, Cold and Lightning Damage taken from Hits instead of Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=100},[4]={flags=0,keywordFlags=0,name="ArmourDoesNotApplyToPhysicalDamageTaken",type="FLAG",value=true}},nil} @@ -7671,7 +7712,7 @@ c["Arrows that Pierce have +50% to Critical Strike Multiplier"]={{[1]={[1]={stat c["Arrows that Pierce have 50% chance to inflict Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=2048,name="BleedChance",type="BASE",value=50}},nil} c["Arsenal of Vengeance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Arsenal of Vengeance"}},nil} c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffAppliesToAllies",type="FLAG",value=true}}}},nil} -c["Aspect of the Cat has no Reservation"]={{[1]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Aspect of the Cat has no Reservation"]={{[1]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Multiplier:SpiderWebApplyStackMax",type="BASE",value=1}}}},nil} c["Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"]={nil,"Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead "} c["Attack Critical Strikes ignore Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}},nil} @@ -7685,6 +7726,7 @@ c["Attack Hits against Blinded Enemies have 30% chance to Maim 12% increased Man c["Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies"]={{[1]={flags=1025,keywordFlags=0,name="BleedChance",type="BASE",value=100},[2]={flags=1025,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil} c["Attack Skills Cost Life instead of 10% of Mana Cost"]={{[1]={flags=1,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=10}},nil} c["Attack Skills Cost Life instead of 20% of Mana Cost"]={{[1]={flags=1,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=20}},nil} +c["Attack Skills cost Life instead of Mana"]={nil,"Attack Skills cost Life instead of Mana "} c["Attack Skills deal 10% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=10}},nil} c["Attack Skills deal 10% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=65536,name="Damage",type="INC",value=10}},nil} c["Attack Skills deal 10% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil} @@ -7705,7 +7747,7 @@ c["Attack Skills deal 8% increased Damage while Dual Wielding"]={{[1]={[1]={type c["Attack Skills deal 8% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=65536,name="Damage",type="INC",value=8}},nil} c["Attack Skills fire an additional Projectile while wielding a Claw or Dagger"]={{[1]={[1]={modFlags=786432,type="ModFlagOr"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem"]={{[1]={[1]={keyword="strength",slotName="{SlotName}",sockets={[1]=1,[2]=2,[3]=3,[4]=4,[5]=5,[6]=6},type="SocketedIn"},flags=0,keywordFlags=0,name="SocketProperty",type="LIST",value={value={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=5}}}},nil} -c["Attack Skills have +1 to maximum number of Summoned Ballista Totems"]={{[1]={[1]={skillType=125,type="SkillType"},flags=0,keywordFlags=65536,name="ActiveBallistaLimit",type="BASE",value=1}},nil} +c["Attack Skills have +1 to maximum number of Summoned Ballista Totems"]={{[1]={[1]={skillType=114,type="SkillType"},flags=0,keywordFlags=65536,name="ActiveBallistaLimit",type="BASE",value=1}},nil} c["Attack Skills have Added Lightning Damage equal to 6% of maximum Mana"]={{[1]={[1]={percent=6,stat="Mana",type="PercentStat"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={percent=6,stat="Mana",type="PercentStat"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} c["Attack skills can have 1 additional Totem Summoned at a time"]={{[1]={flags=0,keywordFlags=65536,name="ActiveTotemLimit",type="BASE",value=1}},nil} c["Attacks Chain an additional time when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=1,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil} @@ -7716,6 +7758,8 @@ c["Attacks cannot Hit you"]={{[1]={flags=0,keywordFlags=0,name="AlwaysEvade",typ c["Attacks fire 2 additional Projectile when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil} c["Attacks fire an additional Projectile"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Attacks fire an additional Projectile when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} +c["Attacks gain 1% more damage for each 2% of your Maximum Life they cost if Life Cost is not higher than the maximum you could spend"]={nil,"Attacks gain 1% more damage for each 2% of your Maximum Life they cost if Life Cost is not higher than the maximum you could spend "} +c["Attacks gain 1% more damage for each 2% of your Maximum Life they cost if Life Cost is not higher than the maximum you could spend Attack Skills cost Life instead of Mana"]={nil,"Attacks gain 1% more damage for each 2% of your Maximum Life they cost if Life Cost is not higher than the maximum you could spend Attack Skills cost Life instead of Mana "} c["Attacks have +1.5% to Critical Strike Chance if 4 Elder Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="ElderItem"},flags=1,keywordFlags=0,name="CritChance",type="BASE",value=1.5}},nil} c["Attacks have 10% chance to Ignite"]={{[1]={flags=1,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil} c["Attacks have 10% chance to Maim on Hit"]={{}," to Maim "} @@ -7723,6 +7767,7 @@ c["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,nam c["Attacks have 100% Arcane Might while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="ImprovedSpellDamageAppliesToAttacks",type="MAX",value=100}},nil} c["Attacks have 15% chance to Ignite"]={{[1]={flags=1,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=15}},nil} c["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil} +c["Attacks have 150% Arcane Might"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedSpellDamageAppliesToAttacks",type="MAX",value=150}},nil} c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil} c["Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=1,keywordFlags=262144,name="BleedChance",type="BASE",value=25}},nil} c["Attacks have 5% chance to Maim on Hit"]={{}," to Maim "} @@ -7778,28 +7823,28 @@ c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 13% of c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 15% of Player's Maximum Energy Shield"]={{[1]={[1]={actor="parent",percent=15,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 20% of Player's Maximum Energy Shield"]={{[1]={[1]={actor="parent",percent=20,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} c["Attacks with this weapon inflict Hallowing Flame on Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanInflictHallowingFlame",type="FLAG",value=true}},nil} -c["Attacks you use yourself Repeat an additional time"]={{[1]={[1]={neg=true,skillTypeList={[1]=30,[2]=40,[3]=36,[4]=41},type="SkillType"},[2]={neg=true,type="Condition",var="usedByMirage"},[3]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=1,keywordFlags=0,name="RepeatCount",type="BASE",value=1}},nil} -c["Attacks you use yourself have 50% more Attack Speed"]={{[1]={[1]={neg=true,skillTypeList={[1]=30,[2]=40,[3]=36,[4]=41},type="SkillType"},[2]={neg=true,type="Condition",var="usedByMirage"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=50}},nil} +c["Attacks you use yourself Repeat an additional time"]={{[1]={[1]={neg=true,skillTypeList={[1]=26,[2]=36,[3]=33,[4]=37},type="SkillType"},[2]={neg=true,type="Condition",var="usedByMirage"},[3]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=1,keywordFlags=0,name="RepeatCount",type="BASE",value=1}},nil} +c["Attacks you use yourself have 50% more Attack Speed"]={{[1]={[1]={neg=true,skillTypeList={[1]=26,[2]=36,[3]=33,[4]=37},type="SkillType"},[2]={neg=true,type="Condition",var="usedByMirage"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=50}},nil} c["Attribute Requirements can be satisfied by 20% of Omniscience"]={{[1]={flags=0,keywordFlags=0,name="OmniAttributeRequirements",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="OmniscienceRequirements",type="FLAG",value=true}},nil} c["Attribute Requirements can be satisfied by 25% of Omniscience"]={{[1]={flags=0,keywordFlags=0,name="OmniAttributeRequirements",type="INC",value=25},[2]={flags=0,keywordFlags=0,name="OmniscienceRequirements",type="FLAG",value=true}},nil} -c["Aura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={div=2,stat="ManaReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="AuraEffect",type="MORE",value=1}},nil} -c["Aura Skills other than Anger are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="anger",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Clarity are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="clarity",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Determination are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="determination",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Discipline are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="discipline",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Grace are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="grace",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Haste are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="haste",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Hatred are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="hatred",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Malevolence are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="malevolence",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Precision are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="precision",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Pride are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="pride",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Purity of Elements are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="purity of elements",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Purity of Fire are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="purity of fire",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Purity of Ice are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="purity of ice",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Purity of Lightning are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="purity of lightning",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Vitality are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="vitality",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Wrath are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="wrath",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} -c["Aura Skills other than Zealotry are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=40,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="zealotry",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={div=2,stat="ManaReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="AuraEffect",type="MORE",value=1}},nil} +c["Aura Skills other than Anger are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="anger",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Clarity are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="clarity",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Determination are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="determination",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Discipline are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="discipline",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Grace are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="grace",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Haste are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="haste",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Hatred are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="hatred",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Malevolence are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="malevolence",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Precision are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="precision",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Pride are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="pride",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Purity of Elements are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="purity of elements",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Purity of Fire are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="purity of fire",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Purity of Ice are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="purity of ice",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Purity of Lightning are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="purity of lightning",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Vitality are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="vitality",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Wrath are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="wrath",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Aura Skills other than Zealotry are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillName="zealotry",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} c["Auras from your Skills can only affect you"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasOnlyAffectYou",type="FLAG",value=true}},nil} c["Auras from your Skills grant 2% increased Attack and Cast"]={{}," Attack and Cast "} c["Auras from your Skills grant 2% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil} @@ -7824,16 +7869,16 @@ c["Axe Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={flags=6 c["Axe Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=8}},nil} c["Axe or Sword Attacks deal 15% increased Damage with Ailments"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=2048,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["Axe or Sword Attacks deal 20% increased Damage with Ailments"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=2048,keywordFlags=0,name="Damage",type="INC",value=20}},nil} -c["Banner Skills have 10% increased Aura Effect"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil} -c["Banner Skills have 100% increased Duration"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=100}},nil} -c["Banner Skills have 12% increased Area of Effect"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} -c["Banner Skills have 15% increased Aura Effect"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil} -c["Banner Skills have 15% increased Duration"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} -c["Banner Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} -c["Banner Skills have 20% increased Duration"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} -c["Banner Skills have 8% increased Duration"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=8}},nil} -c["Banner Skills have no Reservation"]={{[1]={[1]={skillType=99,type="SkillType"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[2]={[1]={skillType=99,type="SkillType"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} -c["Banners also grant +5% to all Elemental Resistances to you and Allies"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}}}},nil} +c["Banner Skills have 10% increased Aura Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil} +c["Banner Skills have 100% increased Duration"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=100}},nil} +c["Banner Skills have 12% increased Area of Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} +c["Banner Skills have 15% increased Aura Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil} +c["Banner Skills have 15% increased Duration"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} +c["Banner Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} +c["Banner Skills have 20% increased Duration"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} +c["Banner Skills have 8% increased Duration"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=8}},nil} +c["Banner Skills have no Reservation"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[2]={[1]={skillType=88,type="SkillType"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Banners also grant +5% to all Elemental Resistances to you and Allies"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}}}},nil} c["Base Critical Strike Chance for Attacks with Weapons is 8%"]={{[1]={flags=0,keywordFlags=0,name="WeaponBaseCritChance",type="OVERRIDE",value=8}},nil} c["Base Ignite Duration is 1 second"]={{[1]={flags=0,keywordFlags=0,name="IgniteDurationBase",type="OVERRIDE",value=1}},nil} c["Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon"]={{[1]={flags=2,keywordFlags=0,name="BaseCritFromMainHand",type="FLAG",value=true}},nil} @@ -7874,8 +7919,8 @@ c["Blind you inflict is Reflected to you 20% chance to gain a Frenzy Charge on H c["Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,skillNameList={[1]="Blink Arrow",[2]="Mirror Arrow"},type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=100}},nil} c["Blood Magic"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Blood Magic"}},nil} c["Bloodsoaked Blade"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Bloodsoaked Blade"}},nil} -c["Bow Attacks Sacrifice a random Damageable Minion to fire 2 additional Arrow"]={{[1]={[1]={type="Condition",var="SacrificeMinionOnAttack"},[2]={type="Condition",var="HaveDamageableMinion"},[3]={neg=true,skillType=41,type="SkillType"},[4]={neg=true,skillType=30,type="SkillType"},flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=2}},nil} -c["Bow Attacks Sacrifice a random Damageable Minion to fire 3 additional Arrow"]={{[1]={[1]={type="Condition",var="SacrificeMinionOnAttack"},[2]={type="Condition",var="HaveDamageableMinion"},[3]={neg=true,skillType=41,type="SkillType"},[4]={neg=true,skillType=30,type="SkillType"},flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=3}},nil} +c["Bow Attacks Sacrifice a random Damageable Minion to fire 2 additional Arrow"]={{[1]={[1]={type="Condition",var="SacrificeMinionOnAttack"},[2]={type="Condition",var="HaveDamageableMinion"},[3]={neg=true,skillType=37,type="SkillType"},[4]={neg=true,skillType=26,type="SkillType"},flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=2}},nil} +c["Bow Attacks Sacrifice a random Damageable Minion to fire 3 additional Arrow"]={{[1]={[1]={type="Condition",var="SacrificeMinionOnAttack"},[2]={type="Condition",var="HaveDamageableMinion"},[3]={neg=true,skillType=37,type="SkillType"},[4]={neg=true,skillType=26,type="SkillType"},flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=3}},nil} c["Bow Attacks fire 2 additional Arrows"]={{[1]={flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=2}},nil} c["Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently"]={{[1]={[1]={neg=true,type="Condition",var="CastDashRecently"},flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=2}},nil} c["Bow Attacks fire 4 additional Arrows"]={{[1]={flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=4}},nil} @@ -7893,16 +7938,16 @@ c["Brand Recall has 15% increased Cooldown Recovery Rate"]={{[1]={[1]={includeTr c["Brand Recall has 20% increased Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,skillName="Brand Recall",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil} c["Brand Recall has 4% increased Cooldown Recovery Rate per Brand, up to a maximum of 40%"]={{[1]={[1]={limit=40,limitTotal=true,type="Multiplier",var="ActiveBrand"},[2]={includeTransfigured=true,skillName="Brand Recall",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=4}},nil} c["Brand Recall has 50% increased Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,skillName="Brand Recall",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=50}},nil} -c["Brand Skills have 10% increased Duration"]={{[1]={[1]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil} -c["Brand Skills have 100% increased Duration"]={{[1]={[1]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=100}},nil} -c["Brand Skills have 12% increased Duration"]={{[1]={[1]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=12}},nil} -c["Brand Skills have 15% increased Duration"]={{[1]={[1]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} -c["Brand Skills have 20% increased Duration"]={{[1]={[1]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} -c["Brand Skills have 75% increased Duration"]={{[1]={[1]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=75}},nil} +c["Brand Skills have 10% increased Duration"]={{[1]={[1]={skillType=65,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil} +c["Brand Skills have 100% increased Duration"]={{[1]={[1]={skillType=65,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=100}},nil} +c["Brand Skills have 12% increased Duration"]={{[1]={[1]={skillType=65,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=12}},nil} +c["Brand Skills have 15% increased Duration"]={{[1]={[1]={skillType=65,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} +c["Brand Skills have 20% increased Duration"]={{[1]={[1]={skillType=65,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} +c["Brand Skills have 75% increased Duration"]={{[1]={[1]={skillType=65,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=75}},nil} c["Brands Attach to a new Enemy each time they Activate, no more than once every 0.3 seconds"]={nil,"Brands Attach to a new Enemy each time they Activate, no more than once every 0.3 seconds "} c["Brands have 100% more Activation Frequency if 75% of Attached Duration expired"]={{[1]={[1]={type="Condition",var="BrandLastQuarter"},flags=0,keywordFlags=0,name="BrandActivationFrequency",type="MORE",value=100}},nil} -c["Brands have 25% increased Area of Effect if 50% of Attached Duration expired"]={{[1]={[1]={type="Condition",var="BrandLastHalf"},[2]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} -c["Brands have 30% increased Area of Effect if 50% of Attached Duration expired"]={{[1]={[1]={type="Condition",var="BrandLastHalf"},[2]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} +c["Brands have 25% increased Area of Effect if 50% of Attached Duration expired"]={{[1]={[1]={type="Condition",var="BrandLastHalf"},[2]={skillType=65,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} +c["Brands have 30% increased Area of Effect if 50% of Attached Duration expired"]={{[1]={[1]={type="Condition",var="BrandLastHalf"},[2]={skillType=65,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} c["Buffs on you expire 30% slower"]={nil,"Buffs on you expire 30% slower "} c["Buffs on you expire 30% slower Debuffs on you expire 30% faster"]={nil,"Buffs on you expire 30% slower Debuffs on you expire 30% faster "} c["Buffs on you expire 30% slower Debuffs on you expire 30% faster Limited to 1 Runegraft of the Warp"]={nil,"Buffs on you expire 30% slower Debuffs on you expire 30% faster Limited to 1 Runegraft of the Warp "} @@ -8068,6 +8113,7 @@ c["Cannot inflict Ignite"]={{[1]={flags=0,keywordFlags=0,name="CannotIgnite",typ c["Cannot inflict Shock"]={{[1]={flags=0,keywordFlags=0,name="CannotShock",type="FLAG",value=true}},nil} c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently "} c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently +3% Chance to Block Attack Damage while you have at least 5 Crab Barriers"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently +3% Chance to Block Attack Damage while you have at least 5 Crab Barriers "} +c["Cannot recover Mana"]={nil,"Cannot recover Mana "} c["Cannot roll Caster Modifiers"]={{},nil} c["Cannot roll Modifiers of Non-Chaos Damage Types"]={{},nil} c["Cannot roll Modifiers of Non-Cold Damage Types"]={{},nil} @@ -8092,14 +8138,14 @@ c["Chance to Block is Lucky"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceIsL c["Chance to Block is Unlucky"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceIsUnlucky",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ProjectileBlockChanceIsUnlucky",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="SpellBlockChanceIsUnlucky",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="SpellProjectileBlockChanceIsUnlucky",type="FLAG",value=true}},nil} c["Chance to Evade Hits is based off of 200% of your Ward instead of your Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="EvadeChanceBasedOnWard",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="EvadeChanceBasedOnWardPercent",source="Black Scythe Training",type="OVERRIDE",value=200}},nil} c["Chance to Suppress Spell Damage is Lucky"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChanceIsLucky",type="FLAG",value=true}},nil} -c["Channelling Skills deal 12% increased Damage"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} -c["Channelling Skills deal 20% increased Damage"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} -c["Channelling Skills deal 25% increased Damage"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil} -c["Channelling Skills deal 30% increased Damage"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil} -c["Channelling Skills deal 4% increased Damage per 10 Devotion"]={{[1]={[1]={skillType=57,type="SkillType"},[2]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=4}},nil} -c["Channelling Skills deal 60% increased Damage"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} -c["Channelling Skills deal 70% increased Damage"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil} -c["Channelling Skills have 8% increased Attack and Cast Speed"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil} +c["Channelling Skills deal 12% increased Damage"]={{[1]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} +c["Channelling Skills deal 20% increased Damage"]={{[1]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} +c["Channelling Skills deal 25% increased Damage"]={{[1]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil} +c["Channelling Skills deal 30% increased Damage"]={{[1]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil} +c["Channelling Skills deal 4% increased Damage per 10 Devotion"]={{[1]={[1]={skillType=48,type="SkillType"},[2]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=4}},nil} +c["Channelling Skills deal 60% increased Damage"]={{[1]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} +c["Channelling Skills deal 70% increased Damage"]={{[1]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil} +c["Channelling Skills have 8% increased Attack and Cast Speed"]={{[1]={[1]={skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil} c["Chaos Damage can Ignite, Chill and Shock"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil} c["Chaos Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenFromManaBeforeLife",type="BASE",value=100}},nil} c["Chaos Damage taken does not bypass Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ChaosNotBypassEnergyShield",type="FLAG",value=true}},nil} @@ -8136,7 +8182,7 @@ c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed"]={nil, c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Rate"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Rate "} c["Chills from your Hits always reduce Action Speed by at least 10%"]={{[1]={flags=0,keywordFlags=0,name="ChillBase",type="BASE",value=10}},nil} c["Chills from your Hits always reduce Action Speed by at least 6%"]={{[1]={flags=0,keywordFlags=0,name="ChillBase",type="BASE",value=6}},nil} -c["Clarity has no Reservation"]={{[1]={[1]={skillId="Clarity",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Clarity",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Clarity",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Clarity",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Clarity has no Reservation"]={{[1]={[1]={skillId="Clarity",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Clarity",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Clarity",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Clarity",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Claw Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=12}},nil} c["Claw Attacks deal 15% increased Damage with Ailments"]={{[1]={flags=264192,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["Claw Attacks deal 25% increased Damage with Ailments"]={{[1]={flags=264192,keywordFlags=0,name="Damage",type="INC",value=25}},nil} @@ -8160,7 +8206,7 @@ c["Commissioned 160000 coins to commemorate Chitus"]={{[1]={flags=0,keywordFlags c["Commissioned 160000 coins to commemorate Victario"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=2,type="eternal"},id=160000}}}},nil} c["Commissioned 81000 coins to commemorate Caspiro"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id="3_v2",type="eternal"},id=81000}}}},nil} c["Conductivity can affect Hexproof Enemies"]={{[1]={[1]={skillId="Conductivity",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} -c["Conductivity has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Conductivity",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Conductivity",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Conductivity",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Conductivity",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Conductivity has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Conductivity",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Conductivity",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Conductivity",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Conductivity",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Conduit"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Conduit"}},nil} c["Consecrated Ground around you while stationary if 2 Crusader Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="CrusaderItem"},flags=0,keywordFlags=0,name="Condition:OnConsecratedGround",type="FLAG",value=true}},nil} c["Consecrated Ground created by this Flask has Tripled Radius"]={nil,"Consecrated Ground created by this Flask has Tripled Radius "} @@ -8340,7 +8386,7 @@ c["Damage taken from Unblocked hits always bypasses Energy Shield"]={{[1]={[1]={ c["Damage to Surrounding Targets"]={nil,"Damage to Surrounding Targets "} c["Damage to surrounding targets"]={nil,"Damage to surrounding targets "} c["Damage to surrounding targets Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage"]={nil,"Damage to surrounding targets Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage "} -c["Damage with Hits from Socketed Vaal Skills is Lucky"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LuckyHits",type="FLAG",value=true}}}},nil} +c["Damage with Hits from Socketed Vaal Skills is Lucky"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=38,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LuckyHits",type="FLAG",value=true}}}},nil} c["Damage with Hits is Unlucky"]={{[1]={flags=0,keywordFlags=0,name="UnluckyHits",type="FLAG",value=true}},nil} c["Damage with Weapons Penetrates 2% Elemental Resistances"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=2}},nil} c["Damage with Weapons Penetrates 5% Elemental Resistances"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil} @@ -8367,7 +8413,7 @@ c["Deal 1% more Damage with Hits and Ailments to Rare and Unique Enemies for eac c["Deal 1% more Damage with Hits and Ailments to Rare and Unique Enemies for every 2 seconds they've ever been in your Presence, up to a maximum of 50%"]={{[1]={[1]={actor="enemy",div="2",limit=50,type="Multiplier",var="EnemyPresenceSeconds"},[2]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=786432,name="Damage",type="MORE",value=1}},nil} c["Deal 10% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-10}},nil} c["Deal 10% more Chaos Damage to enemies which have Energy Shield"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HaveEnergyShield"},flags=0,keywordFlags=786432,name="ChaosDamage",type="MORE",value=10}},nil} -c["Deal Triple Damage with Elemental Skills"]={{[1]={[1]={skillTypeList={[1]=33,[2]=32,[3]=34},type="SkillType"},flags=0,keywordFlags=0,name="TripleDamageChance",type="BASE",value=100}},nil} +c["Deal Triple Damage with Elemental Skills"]={{[1]={[1]={skillTypeList={[1]=30,[2]=29,[3]=31},type="SkillType"},flags=0,keywordFlags=0,name="TripleDamageChance",type="BASE",value=100}},nil} c["Deal no Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil} c["Deal no Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true}},nil} c["Deal no Damage when not on Low Life"]={{[1]={[1]={neg=true,type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="DealNoDamage",type="FLAG",value=true}},nil} @@ -8403,18 +8449,18 @@ c["Denoted service of 8000 dekhara in the akhara of Nasima"]={{[1]={flags=0,keyw c["Desecrate and Unearth have +2 to Maximum number of corpses allowed"]={nil,"and Unearth have +2 to Maximum number of corpses allowed "} c["Desecrate and Unearth have +2 to Maximum number of corpses allowed Regenerate 2% of Life per second if you've Consumed a corpse Recently"]={nil,"and Unearth have +2 to Maximum number of corpses allowed Regenerate 2% of Life per second if you've Consumed a corpse Recently "} c["Despair can affect Hexproof Enemies"]={{[1]={[1]={skillId="Despair",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} -c["Despair has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Despair",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Despair",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Despair",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Despair",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Despair has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Despair",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Despair",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Despair",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Despair",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Determination has 50% increased Aura Effect while at Minimum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMin",type="StatThreshold",upper=true},[2]={includeTransfigured=true,skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}},nil} c["Determination has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Determination has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} -c["Determination has no Reservation"]={{[1]={[1]={skillId="Determination",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Determination",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Determination",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Determination",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Determination has no Reservation"]={{[1]={[1]={skillId="Determination",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Determination",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Determination",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Determination",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Detonate Mines is Triggered while you are moving"]={nil,"is Triggered while you are moving "} c["Dexterity provides no inherent bonus to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="NoDexBonusToEvasion",type="FLAG",value=true}},nil} c["Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity"]={{[1]={flags=0,keywordFlags=0,name="DexAccBonusOverride",type="OVERRIDE",value=3}},nil} c["Discipline has 50% increased Aura Effect while at Minimum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMin",type="StatThreshold",upper=true},[2]={includeTransfigured=true,skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}},nil} c["Discipline has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} c["Discipline has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} -c["Discipline has no Reservation"]={{[1]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Discipline has no Reservation"]={{[1]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Divine Flesh"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Divine Flesh"}},nil} c["Divine Shield"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Divine Shield"}},nil} c["Does not delay Inherent Loss of Rage"]={nil,"Does not delay Inherent Loss of Rage "} @@ -8612,7 +8658,7 @@ c["Energy Shield starts at zero Cannot Recharge or Regenerate Energy Shield Lose c["Energy Shield starts at zero Cannot Recharge or Regenerate Energy Shield Lose 5% of Energy Shield per second Life Leech effects are not removed when Unreserved Life is Filled"]={nil,"Energy Shield starts at zero Cannot Recharge or Regenerate Energy Shield Lose 5% of Energy Shield per second Life Leech effects are not removed when Unreserved Life is Filled "} c["Energy Shield starts at zero Cannot Recharge or Regenerate Energy Shield Lose 5% of Energy Shield per second Life Leech effects are not removed when Unreserved Life is Filled Life Leech effects Recover Energy Shield instead while on Full Life"]={nil,"Energy Shield starts at zero Cannot Recharge or Regenerate Energy Shield Lose 5% of Energy Shield per second Life Leech effects are not removed when Unreserved Life is Filled Life Leech effects Recover Energy Shield instead while on Full Life "} c["Enfeeble can affect Hexproof Enemies"]={{[1]={[1]={skillId="Enfeeble",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} -c["Envy has no Reservation"]={{[1]={[1]={skillId="Envy",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Envy",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Envy",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Envy",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Envy has no Reservation"]={{[1]={[1]={skillId="Envy",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Envy",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Envy",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Envy",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Eternal Youth"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Eternal Youth"}},nil} c["Evasion Rating is Doubled against Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="ProjectileEvasion",type="MORE",value=100}},nil} c["Evasion Rating is increased by Overcapped Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="EvasionRatingIncreasedByOvercappedColdRes",type="FLAG",value=true}},nil} @@ -8675,7 +8721,7 @@ c["Fire Skills have a 25% chance to apply Fire Exposure on Hit"]={{[1]={flags=0, c["Fire at most 1 Projectile"]={{[1]={flags=0,keywordFlags=0,name="SingleProjectile",type="FLAG",value=true}},nil} c["First and Final shots of Barrage sequences fire Projectiles that Return to you"]={nil,"First and Final shots of Barrage sequences fire Projectiles that Return to you "} c["Flammability can affect Hexproof Enemies"]={{[1]={[1]={skillId="Flammability",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} -c["Flammability has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Flammability has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Flasks Gain 4 Charges per empty Flask Slot every 5 seconds"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGeneratedPerEmptyFlask",type="BASE",value=0.8}},nil} c["Flasks adjacent to active Tinctures gain 2 charges when you Hit an"]={nil,"Flasks adjacent to active Tinctures gain 2 charges when you Hit an "} c["Flasks adjacent to active Tinctures gain 2 charges when you Hit an Enemy with a Melee Weapon, no more than once every second"]={nil,"Flasks adjacent to active Tinctures gain 2 charges when you Hit an Enemy with a Melee Weapon, no more than once every second "} @@ -8698,7 +8744,7 @@ c["Flasks gain 3 Charges every 3 seconds while they are inactive"]={nil,"Flasks c["Flasks gain 3 Charges every 3 seconds while they are inactive Survival"]={nil,"Flasks gain 3 Charges every 3 seconds while they are inactive Survival "} c["Flasks gain a Charge every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=0.33333333333333}},nil} c["Flasks you Use apply to your Raised Zombies and Spectres"]={{[1]={[1]={includeTransfigured=true,skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"},type="SkillName"},flags=0,keywordFlags=0,name="FlasksApplyToMinion",type="FLAG",value=true}},nil} -c["Flesh and Stone has no Reservation"]={{[1]={[1]={skillId="FleshAndStone",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="FleshAndStone",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="FleshAndStone",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="FleshAndStone",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Flesh and Stone has no Reservation"]={{[1]={[1]={skillId="FleshAndStone",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="FleshAndStone",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="FleshAndStone",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="FleshAndStone",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Focus has 25% increased Cooldown Recovery Rate"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="FocusCooldownRecovery",type="INC",value=25}},nil} c["Focus has 40% increased Cooldown Recovery Rate"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="FocusCooldownRecovery",type="INC",value=40}},nil} c["Focus has 50% increased Cooldown Recovery Rate"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="FocusCooldownRecovery",type="INC",value=50}},nil} @@ -8725,7 +8771,7 @@ c["Freezes you inflict spread to other Enemies within 1.5 metres 60% increased D c["Freezes you inflict spread to other Enemies within 2 metres"]={nil,"Freezes you inflict spread to other Enemies within 2 metres "} c["Frenzy or Power Charge"]={nil,"or Power Charge "} c["Frostbite can affect Hexproof Enemies"]={{[1]={[1]={skillId="Frostbite",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} -c["Frostbite has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Frostbite",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Frostbite",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Frostbite",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Frostbite",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Frostbite has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Frostbite",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Frostbite",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Frostbite",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Frostbite",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Frostblink has 50% increased Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Frostblink",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil} c["Gain +10 Life when you Taunt an Enemy"]={nil,"+10 Life when you Taunt an Enemy "} c["Gain +10 Life when you Taunt an Enemy 20% increased Endurance Charge Duration"]={nil,"+10 Life when you Taunt an Enemy 20% increased Endurance Charge Duration "} @@ -8811,6 +8857,7 @@ c["Gain 13% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keyw c["Gain 13% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=13}},nil} c["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=13}},nil} c["Gain 13% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=13}},nil} +c["Gain 13% of Physical Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=13}},nil} c["Gain 14 Mana per Cursed Enemy Hit with Attacks"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=5,keywordFlags=0,name="ManaOnHit",type="BASE",value=14}},nil} c["Gain 15 Energy Shield per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldOnKill",type="BASE",value=15}},nil} c["Gain 15 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=15}},nil} @@ -8830,6 +8877,7 @@ c["Gain 15% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlag c["Gain 15% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=15}},nil} c["Gain 15% of Physical Damage as Extra Damage of each Element if"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=15}}," as Extra Damage of each Element if "} c["Gain 15% of Physical Damage as Extra Damage of each Element if 6 Shaper Items are Equipped"]={{[1]={[1]={threshold=6,type="MultiplierThreshold",var="ShaperItem"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=15},[2]={[1]={threshold=6,type="MultiplierThreshold",var="ShaperItem"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=15},[3]={[1]={threshold=6,type="MultiplierThreshold",var="ShaperItem"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=15}},nil} +c["Gain 15% of Physical Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=15}},nil} c["Gain 150 Life on Culling Strike"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=150}}," on Culling Strike "} c["Gain 150 Life on Culling Strike Gain 20 Mana on Culling Strike"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=150}}," on Culling Strike Gain 20 Mana on Culling Strike "} c["Gain 150 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=150}},nil} @@ -8837,11 +8885,11 @@ c["Gain 17% of Non-Chaos Damage as extra Chaos Damage"]={{[1]={flags=0,keywordFl c["Gain 18 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=4,keywordFlags=0,name="EnergyShieldOnHit",type="BASE",value=18}},nil} c["Gain 18 Energy Shield per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldOnKill",type="BASE",value=18}},nil} c["Gain 18 Life per Enemy Hit with Spells"]={{[1]={flags=4,keywordFlags=131072,name="LifeOnHit",type="BASE",value=18}},nil} +c["Gain 18% of Lightning Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsCold",type="BASE",value=18}},nil} c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=18}},nil} -c["Gain 18% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsRandom",type="BASE",value=18}},nil} c["Gain 2 Endurance, Frenzy or Power Charges every 6 seconds"]={{}," Endurance,or Power Charges every 6 seconds "} c["Gain 2 Endurance, Frenzy or Power Charges every 6 seconds 172% increased Physical Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=2}}," Endurance,or Power Charges every 6 seconds 172% increased "} -c["Gain 2 Endurance, Frenzy or Power Charges every 6 seconds 84% increased Spell Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=2,keywordFlags=0,name="Damage",type="BASE",value=2}}," Endurance,or Power Charges every 6 seconds 84% increased "} +c["Gain 2 Endurance, Frenzy or Power Charges every 6 seconds 90% increased Spell Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=2,keywordFlags=0,name="Damage",type="BASE",value=2}}," Endurance,or Power Charges every 6 seconds 90% increased "} c["Gain 2 Endurance, Frenzy or Power Charges every 6 seconds Adds 70 to 130 Fire Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=2}}," Endurance,or Power Charges every 6 seconds Adds 70 to 130 "} c["Gain 2 Grasping Vines each second while stationary"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",var="StationarySeconds"},[2]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Multiplier:GraspingVinesCount",type="BASE",value=2}},nil} c["Gain 2 Mana per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="ManaOnHit",type="BASE",value=2}},nil} @@ -8869,6 +8917,7 @@ c["Gain 20 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKil c["Gain 20 Mana on Culling Strike"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," on Culling Strike "} c["Gain 20 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=20}},nil} c["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=20}},nil} +c["Gain 20% of Lightning Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsCold",type="BASE",value=20}},nil} c["Gain 20% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=20}},nil} c["Gain 20% of Missing Unreserved Life before being Hit by an Enemy"]={{[1]={flags=0,keywordFlags=0,name="MissingLifeBeforeEnemyHit",type="BASE",value=20}},nil} c["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil} @@ -8885,6 +8934,7 @@ c["Gain 20% of Physical Damage as Extra Lightning Damage if you've used a Topaz c["Gain 20% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=20}},nil} c["Gain 200 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=200}},nil} c["Gain 200 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=200}},nil} +c["Gain 23% of Cold Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageGainAsFire",type="BASE",value=23}},nil} c["Gain 24 Life per Cursed Enemy Hit with Attacks"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=5,keywordFlags=0,name="LifeOnHit",type="BASE",value=24}},nil} c["Gain 25 Energy Shield per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="EnergyShieldOnHit",type="BASE",value=25}},nil} c["Gain 25 Life per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="LifeOnHit",type="BASE",value=25}},nil} @@ -8892,12 +8942,14 @@ c["Gain 25 Life per Enemy Hit with Main Hand Claw Attacks"]={{[1]={[1]={type="Co c["Gain 25 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=25}},nil} c["Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},flags=262148,keywordFlags=0,name="ManaOnHit",type="BASE",value=25}},nil} c["Gain 25% increased Armour per 5 Power for 8 seconds when you Warcry, up to a maximum of 100%"]={{[1]={[1]={div=5,globalLimit=100,globalLimitKey="WarningCall",type="Multiplier",var="WarcryPower"},[2]={type="Condition",var="UsedWarcryInPast8Seconds"},flags=0,keywordFlags=0,name="Armour",type="INC",value=25}},nil} +c["Gain 25% of Cold Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageGainAsFire",type="BASE",value=25}},nil} c["Gain 25% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=25}},nil} c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=25}},nil} c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=25}},nil} c["Gain 25% of Weapon Physical Damage as Extra Damage of a random Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsRandom",type="BASE",value=25}},nil} c["Gain 250 Life per Ignited Enemy Killed"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=250}},nil} c["Gain 28 Life per Cursed Enemy Hit with Attacks"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=5,keywordFlags=0,name="LifeOnHit",type="BASE",value=28}},nil} +c["Gain 28% of Fire Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageGainAsChaos",type="BASE",value=28}},nil} c["Gain 28% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=28}},nil} c["Gain 3 Charges when you are Hit by an Enemy"]={{}," Charges when you are Hit by an Enemy "} c["Gain 3 Endurance Charge on use"]={{}," Endurance Charge on use "} @@ -8926,6 +8978,7 @@ c["Gain 30 Life per Ignited Enemy Killed"]={{[1]={[1]={actor="enemy",type="Actor c["Gain 30 Mana per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="ManaOnHit",type="BASE",value=30}},nil} c["Gain 30 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil} c["Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="ColdDamageGainAsFire",type="BASE",value=30}},nil} +c["Gain 30% of Fire Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageGainAsChaos",type="BASE",value=30}},nil} c["Gain 30% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=30}},nil} c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil} c["Gain 30% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil} @@ -8946,9 +8999,7 @@ c["Gain 4% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]= c["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=4}},nil} c["Gain 4% of Physical Damage as Extra Chaos Damage per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=4}},nil} c["Gain 4% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=4}},nil} -c["Gain 4% of Physical Damage as Extra Cold Damage per Brine Charge"]={{[1]={[1]={type="Multiplier",var="BrineCharge"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=4}},nil} c["Gain 4% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=4}},nil} -c["Gain 4% of Physical Damage as Extra Lightning Damage per Brine Charge"]={{[1]={[1]={type="Multiplier",var="BrineCharge"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=4}},nil} c["Gain 40 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=40}},nil} c["Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana"]={{[1]={[1]={threshold=800,type="MultiplierThreshold",var="ManaSpentRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="BASE",value=40}},"% increased "} c["Gain 40% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=40}},nil} @@ -9032,7 +9083,7 @@ c["Gain Adrenaline for 20 seconds when you reach Low Life Recover 25% of Life wh c["Gain Adrenaline for 3 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}},nil} c["Gain Adrenaline for 3 seconds when Ward Breaks"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when Breaks "} c["Gain Adrenaline for 4 seconds when you reach Low Life"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low "} -c["Gain Adrenaline for 4 seconds when you reach Low Life 35% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}}}," when you reach Low 35% increased Effect of Buffs granted by your s "} +c["Gain Adrenaline for 4 seconds when you reach Low Life 35% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}}}," when you reach Low 35% increased Effect of Buffs granted by your s "} c["Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when Stunned, per 100ms of "} c["Gain Adrenaline when you become Flame-Touched"]={{[1]={[1]={type="Condition",var="AffectedByApproachingFlames"},flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}},nil} c["Gain Affliction Charges instead of Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesConvertToAfflictionCharges",type="FLAG",value=true}},nil} @@ -9116,7 +9167,6 @@ c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stati c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"a Frenzy, Endurance, or Power Charge once per second Lose all Frenzy, Endurance, and Power Charges when you Move "} c["Gain a Power Charge after Spending a total of 200 Mana"]={nil,"a Power Charge after Spending a total of 200 Mana "} c["Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges"]={nil,"a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges "} -c["Gain a Power Charge after Spending a total of 200 Mana Regenerate 2 Mana per Second per Power Charge"]={nil,"a Power Charge after Spending a total of 200 Mana Regenerate 2 Mana per Second "} c["Gain a Power Charge each second while Channelling a Spell"]={nil,"a Power Charge each second a Spell "} c["Gain a Power Charge every Second if you haven't lost Power Charges Recently"]={nil,"a Power Charge every Second if you haven't lost Power Charges Recently "} c["Gain a Power Charge every Second if you haven't lost Power Charges Recently Lose all Power Charges when you Block"]={nil,"a Power Charge every Second if you haven't lost Power Charges Recently Lose all Power Charges when you Block "} @@ -9150,7 +9200,7 @@ c["Gain an Endurance Charge when you lose a Power Charge"]={nil,"an Endurance Ch c["Gain an Endurance Charge when you take a Critical Strike"]={nil,"an Endurance Charge when you take a Critical Strike "} c["Gain an Endurance Charge when you take a Critical Strike Regenerate 2% of Life per second while on Low Life"]={nil,"an Endurance Charge when you take a Critical Strike Regenerate 2% of Life per second "} c["Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill"]={nil,"an Endurance Charge, Frenzy Charge, and Power Charge "} -c["Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill Shepherd of Souls"]={nil,"an Endurance Charge, Frenzy Charge, and Power Charge Shepherd of Souls "} +c["Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill +2 to Level of all Vaal Skill Gems"]={nil,"an Endurance Charge, Frenzy Charge, and Power Charge +2 to Level of all Vaal Skill Gems "} c["Gain no Armour from Equipped Body Armour"]={{[1]={flags=0,keywordFlags=0,name="GainNoArmourFromBody Armour",type="FLAG",value=true}},nil} c["Gain no inherent bonuses from Attributes"]={{[1]={flags=0,keywordFlags=0,name="NoAttributeBonuses",type="FLAG",value=true}},nil} c["Gain up to maximum Endurance Charges when you take a Critical Strike"]={nil,"up to maximum Endurance Charges when you take a Critical Strike "} @@ -9169,47 +9219,47 @@ c["Gains no Charges during Effect Creates a Smoke Cloud on Use"]={nil,"Gains no c["Gains no Charges during Effect Taunts nearby Enemies on use"]={nil,"Gains no Charges during Effect Taunts nearby Enemies on use "} c["Gains no Charges during Effect of any Overflowing Chalice Flask"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask "} c["Gains no Charges during Effect of any Soul Ripper Flask"]={nil,"Gains no Charges during Effect of any Soul Ripper Flask "} +c["Gems Socketed always have the Quality bonus from Socket Colour"]={nil,"Gems Socketed always have the Quality bonus from Socket Colour "} +c["Gems Socketed always have the Quality bonus from Socket Colour Has no Attribute Requirements"]={nil,"Gems Socketed always have the Quality bonus from Socket Colour Has no Attribute Requirements "} c["Gems Socketed in Blue Sockets gain 100% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 100% increased Experience "} -c["Gems Socketed in Blue Sockets gain 100% increased Experience Has no Attribute Requirements"]={nil,"Gems Socketed in Blue Sockets gain 100% increased Experience Has no Attribute Requirements "} +c["Gems Socketed in Blue Sockets gain 100% increased Experience Gems Socketed always have the Quality bonus from Socket Colour"]={nil,"Gems Socketed in Blue Sockets gain 100% increased Experience Gems Socketed always have the Quality bonus from Socket Colour "} c["Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience "} c["Gems Socketed in Blue Sockets gain 25% increased Experience Gems Socketed in Blue Sockets gain 100% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience Gems Socketed in Blue Sockets gain 100% increased Experience "} c["Gems Socketed in Green Sockets have +10% to Quality"]={{[1]={[1]={slotName="{SlotName}",socketColor="G",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyword="all",value=10}}},nil} -c["Gems Socketed in Green Sockets have +30% to Quality"]={{[1]={[1]={slotName="{SlotName}",socketColor="G",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyword="all",value=30}}},nil} +c["Gems Socketed in Green Sockets have +20% to Quality"]={{[1]={[1]={slotName="{SlotName}",socketColor="G",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyword="all",value=20}}},nil} c["Gems Socketed in Red Sockets have +1 to Level"]={{[1]={[1]={slotName="{SlotName}",socketColor="R",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=1}}},nil} c["Gems Socketed in Red Sockets have +2 to Level"]={{[1]={[1]={slotName="{SlotName}",socketColor="R",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=2}}},nil} -c["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour "} -c["Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level "} c["Ghost Dance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ghost Dance"}},nil} c["Ghost Reaver"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ghost Reaver"}},nil} c["Glancing Blows"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Glancing Blows"}},nil} c["Glows while in an Area containing a Unique Fish"]={nil,"Glows while in an Area containing a Unique Fish "} -c["Golem Skills have 25% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=25}},nil} -c["Golem Skills have 30% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil} -c["Golems Deal 30% less Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-30}}}},nil} -c["Golems Deal 35% less Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-35}}}},nil} -c["Golems Summoned in the past 8 seconds deal 113% increased Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=113}}}},nil} -c["Golems Summoned in the past 8 seconds deal 125% increased Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=125}}}},nil} -c["Golems Summoned in the past 8 seconds deal 40% increased Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil} -c["Golems Summoned in the past 8 seconds deal 45% increased Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=45}}}},nil} -c["Golems have +1000 to Armour"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}}},nil} -c["Golems have +900 to Armour"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=900}}}},nil} -c["Golems have 100% increased Movement Speed"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil} -c["Golems have 108 to 146 Added Attack Physical Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=108}}},[2]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=146}}}},nil} -c["Golems have 120 to 160 Added Attack Physical Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=120}}},[2]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=160}}}},nil} -c["Golems have 15% increased Maximum Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil} -c["Golems have 18% increased Attack and Cast Speed"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=18}}}},nil} -c["Golems have 20% increased Attack and Cast Speed"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil} -c["Golems have 20% increased Maximum Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil} -c["Golems have 22% increased Maximum Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=22}}}},nil} -c["Golems have 25% increased Maximum Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}},nil} -c["Golems have 30% less Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-30}}}},nil} -c["Golems have 35% less Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-35}}}},nil} -c["Golems have 90% increased Movement Speed"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil} +c["Golem Skills have 25% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=25}},nil} +c["Golem Skills have 30% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil} +c["Golems Deal 30% less Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-30}}}},nil} +c["Golems Deal 35% less Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-35}}}},nil} +c["Golems Summoned in the past 8 seconds deal 113% increased Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=113}}}},nil} +c["Golems Summoned in the past 8 seconds deal 125% increased Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=125}}}},nil} +c["Golems Summoned in the past 8 seconds deal 40% increased Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil} +c["Golems Summoned in the past 8 seconds deal 45% increased Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=45}}}},nil} +c["Golems have +1000 to Armour"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}}},nil} +c["Golems have +900 to Armour"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=900}}}},nil} +c["Golems have 100% increased Movement Speed"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil} +c["Golems have 108 to 146 Added Attack Physical Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=108}}},[2]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=146}}}},nil} +c["Golems have 120 to 160 Added Attack Physical Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=120}}},[2]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=160}}}},nil} +c["Golems have 15% increased Maximum Life"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil} +c["Golems have 18% increased Attack and Cast Speed"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=18}}}},nil} +c["Golems have 20% increased Attack and Cast Speed"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil} +c["Golems have 20% increased Maximum Life"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil} +c["Golems have 22% increased Maximum Life"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=22}}}},nil} +c["Golems have 25% increased Maximum Life"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}},nil} +c["Golems have 30% less Life"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-30}}}},nil} +c["Golems have 35% less Life"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-35}}}},nil} +c["Golems have 90% increased Movement Speed"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil} c["Gore Footprints"]={nil,"Gore Footprints "} c["Grace has 50% increased Aura Effect while at Minimum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMin",type="StatThreshold",upper=true},[2]={includeTransfigured=true,skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}},nil} c["Grace has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Grace has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} -c["Grace has no Reservation"]={{[1]={[1]={skillId="Grace",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Grace",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Grace",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Grace",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Grace has no Reservation"]={{[1]={[1]={skillId="Grace",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Grace",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Grace",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Grace",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Grant bonuses to Non-Channelling Skills you use by consuming 3 Charges from a Flask of"]={nil,"Grant bonuses to Non-Channelling Skills you use by consuming 3 Charges from a Flask of "} c["Grant bonuses to Non-Channelling Skills you use by consuming 3 Charges from a Flask of each of the following types, if possible:"]={{},nil} c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=1}},nil} @@ -9332,10 +9382,10 @@ c["Grants level 20 Pacify"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type c["Grants level 20 Penance Mark"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PenanceMark"}}},nil} c["Grants maximum Energy Shield equal to 10% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 10% of your Reserved Mana to "} c["Grants maximum Energy Shield equal to 10% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedManaAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=0.1}}}},nil} -c["Guard Skills have 20% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil} -c["Guard Skills have 25% increased Duration"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil} -c["Guard Skills have 40% increased Duration"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=40}},nil} -c["Guard Skills have 6% increased Duration"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=6}},nil} +c["Guard Skills have 20% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=78,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil} +c["Guard Skills have 25% increased Duration"]={{[1]={[1]={skillType=78,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil} +c["Guard Skills have 40% increased Duration"]={{[1]={[1]={skillType=78,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=40}},nil} +c["Guard Skills have 6% increased Duration"]={{[1]={[1]={skillType=78,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=6}},nil} c["Half of your Strength is added to your Minions"]={{[1]={flags=0,keywordFlags=0,name="StrengthAddedToMinions",type="BASE",value=50}},nil} c["Hallowing Flame you inflict has 1% increased magnitude per 2% Attack Block chance"]={nil,"Hallowing Flame you inflict has 1% increased magnitude per 2% Attack Block chance "} c["Has 0 Abyssal Sockets"]={{[1]={flags=0,keywordFlags=0,name="AbyssalSocketCount",type="BASE",value=0}},nil} @@ -9359,21 +9409,21 @@ c["Has no Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourData",type=" c["Has no Sockets"]={{[1]={flags=0,keywordFlags=0,name="NoSockets",type="FLAG",value=true}},nil} c["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems "} c["Haste has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Haste",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} -c["Haste has no Reservation"]={{[1]={[1]={skillId="Haste",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Haste",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Haste",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Haste",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Haste has no Reservation"]={{[1]={[1]={skillId="Haste",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Haste",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Haste",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Haste",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Hatred has 100% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=100}},nil} c["Hatred has 50% increased Aura Effect while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},[2]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}},nil} c["Hatred has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Hatred has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} -c["Hatred has no Reservation"]={{[1]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Hatred has no Reservation"]={{[1]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Having a placed Banner does not prevent you gaining Valour"]={nil,"Having a placed Banner does not prevent you gaining Valour "} c["Having a placed Banner does not prevent you gaining Valour 40% increased Melee Damage"]={nil,"Having a placed Banner does not prevent you gaining Valour 40% increased Melee Damage "} c["Having a placed Banner does not prevent you gaining Valour Banner Skills have 100% increased Duration"]={nil,"Having a placed Banner does not prevent you gaining Valour Banner Skills have 100% increased Duration "} -c["Herald Skills and Minions from Herald Skills deal 1% more Damage for every 1% of Maximum Life those Skills Reserve"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",div=1,stat="LifeReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=1}}},[2]={[1]={div=1,stat="LifeReservedPercent",type="PerStat"},[2]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=1}},nil} -c["Herald Skills deal 20% increased Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} -c["Herald Skills deal 40% increased Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} -c["Herald Skills deal 50% increased Damage over Time"]={{[1]={[1]={skillType=62,type="SkillType"},flags=8,keywordFlags=0,name="Damage",type="INC",value=50}},nil} -c["Herald Skills have 2% more Buff Effect for every 1% of Maximum Mana they Reserve"]={{[1]={[1]={div=1,stat="ManaReservedPercent",type="PerStat"},[2]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="MORE",value=2}},nil} -c["Herald Skills have 25% increased Area of Effect"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} +c["Herald Skills and Minions from Herald Skills deal 1% more Damage for every 1% of Maximum Life those Skills Reserve"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",div=1,stat="LifeReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=1}}},[2]={[1]={div=1,stat="LifeReservedPercent",type="PerStat"},[2]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=1}},nil} +c["Herald Skills deal 20% increased Damage"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} +c["Herald Skills deal 40% increased Damage"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} +c["Herald Skills deal 50% increased Damage over Time"]={{[1]={[1]={skillType=52,type="SkillType"},flags=8,keywordFlags=0,name="Damage",type="INC",value=50}},nil} +c["Herald Skills have 2% more Buff Effect for every 1% of Maximum Mana they Reserve"]={{[1]={[1]={div=1,stat="ManaReservedPercent",type="PerStat"},[2]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="MORE",value=2}},nil} +c["Herald Skills have 25% increased Area of Effect"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} c["Herald of Agony has 100% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["Herald of Agony has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}},nil} c["Herald of Agony has 60% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=60}},nil} @@ -9422,7 +9472,7 @@ c["Hits against you are always Critical Strikes"]={{[1]={flags=0,keywordFlags=0, c["Hits always Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}},nil} c["Hits always Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100}},nil} c["Hits can't be Evaded"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil} -c["Hits from Socketed Vaal Skills ignore Enemy Monster Resistances"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="IgnoreChaosResistance",type="FLAG",value=true}}}},nil} +c["Hits from Socketed Vaal Skills ignore Enemy Monster Resistances"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=38,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=38,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="IgnoreChaosResistance",type="FLAG",value=true}}}},nil} c["Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction"]={nil,"Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction "} c["Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction Hits from Socketed Vaal Skills ignore Enemy Monster Resistances"]={nil,"Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction Hits from Socketed Vaal Skills ignore Enemy Monster Resistances "} c["Hits have 10% chance to deal 50% more Area Damage"]={{[1]={flags=516,keywordFlags=0,name="Damage",type="MORE",value=5}},nil} @@ -9449,9 +9499,9 @@ c["Hits that deal Elemental Damage remove Exposure to those Elements and inflict c["Hits that deal Elemental Damage remove Exposure to those Elements and inflict Exposure to other Elements Exposure inflicted this way applies -25% to Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalEquilibrium",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",varList={[1]="HitByColdDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="FireExposure",type="BASE",value=-25}}},[3]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="ColdExposure",type="BASE",value=-25}}},[4]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByColdDamage"}},flags=0,keywordFlags=0,name="LightningExposure",type="BASE",value=-25}}}},nil} c["Hits that fail to Freeze due to insufficient Freeze Duration inflict Hoarfrost"]={{[1]={flags=0,keywordFlags=0,name="HitsCanInflictHoarfrost",type="FLAG",value=true}},nil} c["Hits that would Ignite instead Scorch"]={{[1]={flags=0,keywordFlags=0,name="IgniteCanScorch",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CannotIgnite",type="FLAG",value=true}},nil} -c["Hits with Prismatic Skills always Sap"]={{[1]={[1]={skillType=113,type="SkillType"},flags=4,keywordFlags=0,name="EnemySapChance",type="BASE",value=100}},nil} -c["Hits with Prismatic Skills always Scorch"]={{[1]={[1]={skillType=113,type="SkillType"},flags=4,keywordFlags=0,name="EnemyScorchChance",type="BASE",value=100}},nil} -c["Hits with Prismatic Skills always inflict Brittle"]={{[1]={[1]={skillType=113,type="SkillType"},flags=4,keywordFlags=0,name="EnemyBrittleChance",type="BASE",value=100}},nil} +c["Hits with Prismatic Skills always Sap"]={{[1]={[1]={skillType=102,type="SkillType"},flags=4,keywordFlags=0,name="EnemySapChance",type="BASE",value=100}},nil} +c["Hits with Prismatic Skills always Scorch"]={{[1]={[1]={skillType=102,type="SkillType"},flags=4,keywordFlags=0,name="EnemyScorchChance",type="BASE",value=100}},nil} +c["Hits with Prismatic Skills always inflict Brittle"]={{[1]={[1]={skillType=102,type="SkillType"},flags=4,keywordFlags=0,name="EnemyBrittleChance",type="BASE",value=100}},nil} c["Hits with this Weapon Freeze Enemies as though dealing 175% more Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="FreezeAsThoughDealing",type="MORE",value=175}},nil} c["Hits with this Weapon Freeze Enemies as though dealing 200% more Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="FreezeAsThoughDealing",type="MORE",value=200}},nil} c["Hits with this Weapon Shock Enemies as though dealing 175% more Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="ShockAsThoughDealing",type="MORE",value=175}},nil} @@ -9469,9 +9519,9 @@ c["Hits with this Weapon gain 88% of Physical Damage as Extra Cold or Lightning c["Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={type="Multiplier",var="EnemyPower"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["Hits with this Weapon ignore Enemy Physical Damage Reduction"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=100}},nil} c["Hollow Palm Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Hollow Palm Technique"}},nil} -c["If Amethyst Flask Charges are consumed, 37% of Physical Damage as Extra Chaos Damage"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="HaveAmethystFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=37}},nil} -c["If Bismuth Flask Charges are consumed, Penetrate 25% Elemental Resistances"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="HaveBismuthFlask"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=25}},nil} -c["If Diamond Flask Charges are consumed, 250% increased Critical Strike Chance"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="HaveDiamondFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=250}},nil} +c["If Amethyst Flask Charges are consumed, 37% of Physical Damage as Extra Chaos Damage"]={{[1]={[1]={neg=true,skillType=37,type="SkillType"},[2]={neg=true,skillType=48,type="SkillType"},[3]={type="Condition",var="HaveAmethystFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=37}},nil} +c["If Bismuth Flask Charges are consumed, Penetrate 25% Elemental Resistances"]={{[1]={[1]={neg=true,skillType=37,type="SkillType"},[2]={neg=true,skillType=48,type="SkillType"},[3]={type="Condition",var="HaveBismuthFlask"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=25}},nil} +c["If Diamond Flask Charges are consumed, 250% increased Critical Strike Chance"]={{[1]={[1]={neg=true,skillType=37,type="SkillType"},[2]={neg=true,skillType=48,type="SkillType"},[3]={type="Condition",var="HaveDiamondFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=250}},nil} c["If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil} c["If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil} c["If you've Attacked Recently, you and nearby Allies have +10% Chance to Block Attack Damage"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil} @@ -9546,7 +9596,6 @@ c["Impales removed this way multiply their Reflected Damage for this Hit by the c["Impales you inflict gain 50% increased Effect once 1 second of Duration has expired"]={nil,"Impales you inflict gain 50% increased Effect once 1 second of Duration has expired "} c["Impales you inflict last 1 additional Hit"]={{[1]={flags=0,keywordFlags=0,name="ImpaleStacksMax",type="BASE",value=1}},nil} c["Impales you inflict last 2 additional Hits while using Pride"]={{[1]={[1]={type="Condition",var="AffectedByPride"},flags=0,keywordFlags=0,name="ImpaleStacksMax",type="BASE",value=2}},nil} -c["Implicit Modifier Magnitudes are Doubled"]={{},nil} c["Implicit Modifier magnitudes are doubled"]={{},nil} c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled "} c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted "} @@ -9584,7 +9633,7 @@ c["Increases and Reductions to Physical Damage also apply to Effect of"]={nil,"I c["Increases and Reductions to Physical Damage also apply to Effect of Auras from Physical Skills at 13% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedPhysicalDamageAppliesToPhysicalAuraEffect",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Physical Damage also apply to Effect of Auras from Physical Skills at 15% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedPhysicalDamageAppliesToPhysicalAuraEffect",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Projectile Speed also apply to Damage with Bows"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeedAppliesToBowDamage",type="FLAG",value=true}},nil} -c["Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedSpellDamageAppliesToAttacks",type="MAX",value=150}},nil} +c["Increases and reductions to Maximum Life also apply to Maximum Rage at 20% Value"]={nil,"Increases and reductions to Maximum Life also apply to Maximum Rage at 20% Value "} c["Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value"]={{[1]={flags=0,keywordFlags=0,name="ManaAppliesToShockEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedManaAppliesToShockEffect",type="MAX",value=30}},nil} c["Increases to Cast Speed from Arcane Surge also applies to Movement Speed"]={nil,"Increases to Cast Speed from Arcane Surge also applies to Movement Speed "} c["Inflict 3 additional Poisons on the same Target"]={nil,"Inflict 3 additional Poisons on the same Target "} @@ -9625,6 +9674,8 @@ c["Instant Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskInstantRecovery", c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks "} c["Insufficient Mana doesn't prevent your Melee Attacks Eat 4 Souls when you Kill a Rare or Unique Enemy with this Weapon"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Eat 4 Souls when you Kill a Rare or Unique Enemy with this Weapon "} c["Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have +50% to Critical Strike Multiplier"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have +50% to Critical Strike Multiplier "} +c["Insufficient Mana doesn't prevent your Spells"]={nil,"Insufficient Mana doesn't prevent your Spells "} +c["Insufficient Mana doesn't prevent your Spells Cannot recover Mana"]={nil,"Insufficient Mana doesn't prevent your Spells Cannot recover Mana "} c["Intelligence is added to Accuracy Rating with Wands"]={{[1]={[1]={stat="Int",type="PerStat"},flags=8388608,keywordFlags=0,name="Accuracy",type="BASE",value=1}},nil} c["Intelligence provides no inherent bonus to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="NoIntBonusToES",type="FLAG",value=true}},nil} c["Intelligence provides no inherent bonus to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="NoIntBonusToMana",type="FLAG",value=true}},nil} @@ -9659,18 +9710,18 @@ c["Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them"]={{[ c["Left ring slot: +100 to maximum Energy Shield"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil} c["Left ring slot: +250 to maximum Energy Shield"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=250}},nil} c["Left ring slot: 100% increased Mana Regeneration Rate"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil} -c["Left ring slot: 100% of Elemental Hit Damage from you and"]={{[1]={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}," from you and "} -c["Left ring slot: 100% of Elemental Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}}}," from you and your s cannot be Reflected "} -c["Left ring slot: 30% of Elemental Hit Damage from you and"]={{[1]={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," from you and "} -c["Left ring slot: 30% of Elemental Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}}}," from you and your s cannot be Reflected "} -c["Left ring slot: 40% of Elemental Hit Damage from you and"]={{[1]={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=40}}," from you and "} -c["Left ring slot: 40% of Elemental Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=40}}}}," from you and your s cannot be Reflected "} -c["Left ring slot: 80% of Elemental Hit Damage from you and"]={{[1]={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=80}}," from you and "} -c["Left ring slot: 80% of Elemental Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=80}}}}," from you and your s cannot be Reflected "} c["Left ring slot: Projectiles from Spells Fork"]={{[1]={[1]={num=1,type="SlotNumber"},flags=1026,keywordFlags=0,name="ForkOnce",type="FLAG",value=true},[2]={[1]={num=1,type="SlotNumber"},flags=1026,keywordFlags=0,name="ForkCountMax",type="BASE",value=1}},nil} c["Left ring slot: Projectiles from Spells cannot Chain"]={{[1]={[1]={num=1,type="SlotNumber"},flags=1026,keywordFlags=0,name="CannotChain",type="FLAG",value=true}},nil} c["Left ring slot: Regenerate 40 Mana per Second"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=40}},nil} c["Left ring slot: You cannot Recharge or Regenerate Energy Shield"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="NoEnergyShieldRecharge",type="FLAG",value=true},[2]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="NoEnergyShieldRegen",type="FLAG",value=true}},nil} +c["Left ring slot: you and your Minions prevent +100% of Reflected Elemental Damage"]={nil,"you and your Minions prevent +100% of Reflected Elemental Damage "} +c["Left ring slot: you and your Minions prevent +100% of Reflected Elemental Damage Right ring slot: you and your Minions prevent +30% of Reflected Physical Damage"]={nil,"you and your Minions prevent +100% of Reflected Elemental Damage Right ring slot: you and your Minions prevent +30% of Reflected Physical Damage "} +c["Left ring slot: you and your Minions prevent +30% of Reflected Elemental Damage"]={nil,"you and your Minions prevent +30% of Reflected Elemental Damage "} +c["Left ring slot: you and your Minions prevent +30% of Reflected Elemental Damage Left ring slot: you and your Minions prevent +40% of Reflected Elemental Damage"]={nil,"you and your Minions prevent +30% of Reflected Elemental Damage Left ring slot: you and your Minions prevent +40% of Reflected Elemental Damage "} +c["Left ring slot: you and your Minions prevent +40% of Reflected Elemental Damage"]={nil,"you and your Minions prevent +40% of Reflected Elemental Damage "} +c["Left ring slot: you and your Minions prevent +40% of Reflected Elemental Damage Left ring slot: you and your Minions prevent +80% of Reflected Elemental Damage"]={nil,"you and your Minions prevent +40% of Reflected Elemental Damage Left ring slot: you and your Minions prevent +80% of Reflected Elemental Damage "} +c["Left ring slot: you and your Minions prevent +80% of Reflected Elemental Damage"]={nil,"you and your Minions prevent +80% of Reflected Elemental Damage "} +c["Left ring slot: you and your Minions prevent +80% of Reflected Elemental Damage Left ring slot: you and your Minions prevent +100% of Reflected Elemental Damage"]={nil,"you and your Minions prevent +80% of Reflected Elemental Damage Left ring slot: you and your Minions prevent +100% of Reflected Elemental Damage "} c["Leftmost 3 Magic Utility Flasks constantly apply their Flask Effects to you"]={{[1]={flags=0,keywordFlags=0,name="LeftActiveMagicUtilityFlasks",type="BASE",value=3}},nil} c["Leftmost 4 Magic Utility Flasks constantly apply their Flask Effects to you"]={{[1]={flags=0,keywordFlags=0,name="LeftActiveMagicUtilityFlasks",type="BASE",value=4}},nil} c["Lethe Shade"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Lethe Shade"}},nil} @@ -9702,6 +9753,8 @@ c["Life Leech from Exerted Attacks is instant Non-Exerted Attacks deal no Damage c["Life Leech from Hits with this Weapon is instant"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=100}},nil} c["Life Leech from Melee Damage is Instant"]={{[1]={flags=256,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=100}},nil} c["Life Recoup Effects instead occur over 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="3SecondLifeRecoup",type="FLAG",value=true}},nil} +c["Life Recoup also recovers Mana"]={nil,"Life Recoup also recovers Mana "} +c["Life Recoup also recovers Mana 50% less recovery from Recoup"]={nil,"Life Recoup also recovers Mana 50% less recovery from Recoup "} c["Life Recovery from Flasks also applies to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskAppliesToEnergyShield",type="FLAG",value=true}},nil} c["Life Recovery from Flasks also applies to Energy Shield during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeFlaskAppliesToEnergyShield",type="FLAG",value=true}},nil} c["Life Recovery from Non-Instant Leech is not applied"]={{[1]={flags=0,keywordFlags=0,name="UnaffectedByNonInstantLifeLeech",type="FLAG",value=true}},nil} @@ -9760,13 +9813,13 @@ c["Limited to 1 Runegraft of the Warp"]={nil,"Limited to 1 Runegraft of the Warp c["Limited to 1 Runegraft of the Witchmark"]={nil,"Limited to 1 Runegraft of the Witchmark "} c["Link Skills Link to 1 additional random target"]={nil,"Link Skills Link to 1 additional random target "} c["Link Skills can target Damageable Minions"]={{[1]={[1]={type="Condition",var="HaveDamageableMinion"},flags=0,keywordFlags=0,name="Condition:CanLinkToMinions",type="FLAG",value=true}},nil} -c["Link Skills have 10% increased Cast Speed"]={{[1]={[1]={skillType=118,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil} -c["Link Skills have 13% increased Cast Speed"]={{[1]={[1]={skillType=118,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil} -c["Link Skills have 13% increased Skill Effect Duration"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=13}},nil} -c["Link Skills have 15% increased Cast Speed"]={{[1]={[1]={skillType=118,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil} -c["Link Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} -c["Link Skills have 20% increased Buff Effect if you have Linked to a target Recently"]={{[1]={[1]={skillType=118,type="SkillType"},[2]={type="Condition",var="LinkedRecently"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} -c["Link Skills have 5% increased Buff Effect"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=5}},nil} +c["Link Skills have 10% increased Cast Speed"]={{[1]={[1]={skillType=107,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil} +c["Link Skills have 13% increased Cast Speed"]={{[1]={[1]={skillType=107,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil} +c["Link Skills have 13% increased Skill Effect Duration"]={{[1]={[1]={skillType=107,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=13}},nil} +c["Link Skills have 15% increased Cast Speed"]={{[1]={[1]={skillType=107,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil} +c["Link Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={skillType=107,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} +c["Link Skills have 20% increased Buff Effect if you have Linked to a target Recently"]={{[1]={[1]={skillType=107,type="SkillType"},[2]={type="Condition",var="LinkedRecently"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} +c["Link Skills have 5% increased Buff Effect"]={{[1]={[1]={skillType=107,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=5}},nil} c["Link Skills have 50% increased range"]={{}," range "} c["Link Skills have 50% increased range Limited to 1 Runegraft of Connection"]={{}," range Limited to 1 Runegraft of Connection "} c["Link Skills have infinite Attachment Duration"]={nil,"infinite Attachment Duration "} @@ -9816,6 +9869,7 @@ c["Lose all Eaten Souls when you use a Flask"]={nil,"Lose all Eaten Souls when y c["Lose all Endurance Charges on use"]={nil,"Lose all Endurance Charges on use "} c["Lose all Endurance Charges on use Gain 1 Endurance Charge per Second during Effect"]={nil,"Lose all Endurance Charges on use Gain 1 Endurance Charge per Second during Effect "} c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "} +c["Lose all Endurance Charges when Rampage ends 10% increased Mana Cost Efficiency per Endurance Charge"]={nil,"Lose all Endurance Charges when Rampage ends 10% increased Mana Cost Efficiency per Endurance Charge "} c["Lose all Fanatic Charges on reaching Maximum Fanatic Charges"]={nil,"Lose all Fanatic Charges on reaching Maximum Fanatic Charges "} c["Lose all Fanatic Charges on reaching Maximum Fanatic Charges +3 to Maximum Fanatic Charges"]={nil,"Lose all Fanatic Charges on reaching Maximum Fanatic Charges +3 to Maximum Fanatic Charges "} c["Lose all Fragile Regrowth when Hit"]={nil,"Lose all Fragile Regrowth when Hit "} @@ -9859,7 +9913,7 @@ c["Magic Utility Flasks cannot be Used Leftmost 4 Magic Utility Flasks constantl c["Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance"]={nil,"Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance "} c["Malevolence has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Malevolence",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Malevolence has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Malevolence",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} -c["Malevolence has no Reservation"]={{[1]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Malevolence has no Reservation"]={{[1]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Mana Flask Effects are not removed when Unreserved Mana is Filled"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskEffectNotRemoved",type="FLAG",value=true}},nil} c["Mana Flask Effects do not Queue"]={nil,"Mana Flask Effects do not Queue "} c["Mana Flasks gain 1 Charge every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=0.33333333333333}},nil} @@ -9867,18 +9921,18 @@ c["Mana Flasks gain 2 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,na c["Mana Flasks gain 3 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=1}},nil} c["Mana Flasks used while on Low Mana apply Recovery Instantly"]={{[1]={[1]={type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ManaFlaskInstantRecovery",type="BASE",value=100}},nil} c["Mana Recovery from Regeneration is not applied"]={{[1]={flags=0,keywordFlags=0,name="UnaffectedByManaRegen",type="FLAG",value=true}},nil} -c["Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ManaReservationPercentForced",value=45}}},nil} +c["Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ManaReservationPercentForced",value=45}}},nil} c["Manifested Dancing Dervishes die when Rampage ends"]={{},nil} c["Manifested Dancing Dervishes disables both weapon slots"]={{},nil} c["Marauder: 1% of Life Regenerated per second"]={{[1]={[1]={type="Condition",var="ConnectedToMarauderStart"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil} -c["Marauder: Melee Skills have 15% increased Area of Effect"]={{[1]={[1]={type="Condition",var="ConnectedToMarauderStart"},[2]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} -c["Marauder: Melee Skills have 25% increased Area of Effect"]={{[1]={[1]={type="Condition",var="ConnectedToMarauderStart"},[2]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} -c["Mark Skills Cost no Mana"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=-100}},nil} -c["Mark Skills have 10% increased Cast Speed"]={{[1]={[1]={skillType=109,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil} -c["Mark Skills have 13% increased Cast Speed"]={{[1]={[1]={skillType=109,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil} -c["Mark Skills have 15% increased Cast Speed"]={{[1]={[1]={skillType=109,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil} -c["Mark Skills have 25% increased Cast Speed"]={{[1]={[1]={skillType=109,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=25}},nil} -c["Mark Skills have 5% increased Cast Speed"]={{[1]={[1]={skillType=109,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil} +c["Marauder: Melee Skills have 15% increased Area of Effect"]={{[1]={[1]={type="Condition",var="ConnectedToMarauderStart"},[2]={skillType=20,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} +c["Marauder: Melee Skills have 25% increased Area of Effect"]={{[1]={[1]={type="Condition",var="ConnectedToMarauderStart"},[2]={skillType=20,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} +c["Mark Skills Cost no Mana"]={{[1]={[1]={skillType=98,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=-100}},nil} +c["Mark Skills have 10% increased Cast Speed"]={{[1]={[1]={skillType=98,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil} +c["Mark Skills have 13% increased Cast Speed"]={{[1]={[1]={skillType=98,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil} +c["Mark Skills have 15% increased Cast Speed"]={{[1]={[1]={skillType=98,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil} +c["Mark Skills have 25% increased Cast Speed"]={{[1]={[1]={skillType=98,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=25}},nil} +c["Mark Skills have 5% increased Cast Speed"]={{[1]={[1]={skillType=98,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil} c["Marked Enemy cannot Regenerate Life"]={nil,"Marked Enemy cannot Regenerate Life "} c["Marked Enemy cannot deal Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Marked"},flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Marked"},flags=0,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}}}},nil} c["Marked Enemy grants 20% increased Flask Charges to you"]={nil,"Marked Enemy grants 20% increased Flask Charges to you "} @@ -9896,7 +9950,6 @@ c["Maximum Absorption Charges is equal to Maximum Power Charges"]={{[1]={flags=0 c["Maximum Affliction Charges is equal to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="MaximumFrenzyChargesEqualsMaximumAfflictionCharges",type="FLAG",value=true}},nil} c["Maximum Baryatic Tension is equal to 30% of maximum Life"]={nil,"Maximum Baryatic Tension is equal to 30% of maximum Life "} c["Maximum Baryatic Tension is equal to 30% of maximum Life When you take a Savage Hit, lose Baryatic Tension to recover that much Life, up to maximum"]={nil,"Maximum Baryatic Tension is equal to 30% of maximum Life When you take a Savage Hit, lose Baryatic Tension to recover that much Life, up to maximum "} -c["Maximum Brine Charges is equal to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="MaximumEnduranceChargesEqualsMaximumBrineCharges",type="FLAG",value=true}},nil} c["Maximum Brutal Charges is equal to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="MaximumEnduranceChargesEqualsMaximumBrutalCharges",type="FLAG",value=true}},nil} c["Maximum Chance to Dodge Spell Hits is 75%"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChanceMax",source="Acrobatics",type="OVERRIDE",value=75}},nil} c["Maximum Critical Strike Chance is 50%"]={{[1]={flags=0,keywordFlags=0,name="CritChanceCap",type="OVERRIDE",value=50}},nil} @@ -9926,6 +9979,7 @@ c["Maximum number of Summoned Raging Spirits is Doubled"]={{[1]={[1]={globalLimi c["Maximum number of Summoned Reapers is Doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="ActiveReaperLimitDoubledLimit",type="Multiplier",var="ActiveReaperLimitDoubled"},flags=0,keywordFlags=0,name="ActiveReaperLimit",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:ActiveReaperLimitDoubled",type="OVERRIDE",value=1}},nil} c["Maximum number of Summoned Skeletons is Doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="ActiveSkeletonLimitDoubledLimit",type="Multiplier",var="ActiveSkeletonLimitDoubled"},flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:ActiveSkeletonLimitDoubled",type="OVERRIDE",value=1}},nil} c["Maximum number of Summoned Spectral Wolves is Doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="ActiveWolfLimitDoubledLimit",type="Multiplier",var="ActiveWolfLimitDoubled"},flags=0,keywordFlags=0,name="ActiveWolfLimit",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:ActiveWolfLimitDoubled",type="OVERRIDE",value=1}},nil} +c["Maximum number of raised Spectres, Skeletons and Zombies is 1"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="OVERRIDE",value=1}}}},", s and Zombies "} c["Maximum total Energy Shield Recovery per second from Leech is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="MaxEnergyShieldLeechRateDoubledLimit",type="Multiplier",var="MaxEnergyShieldLeechRateDoubled"},flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:MaxEnergyShieldLeechRateDoubled",type="OVERRIDE",value=1}},nil} c["Melee Attacks Poison on Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil} c["Melee Attacks cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil} @@ -9960,9 +10014,9 @@ c["Melee Hits which Stun have 20% chance to Fortify Melee Hits which Stun Fortif c["Melee Hits which Stun have 5% chance to Fortify"]={nil,"Melee Hits which Stun have 5% chance to Fortify "} c["Melee Hits with Maces, Sceptres or Staves Fortify for 6 seconds"]={nil,"Melee Hits with Maces, Sceptres or Staves Fortify for 6 seconds "} c["Melee Hits with Strike Skills always Knockback"]={nil,"Melee Hits with Strike Skills always Knockback "} -c["Melee Skills have 10% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} -c["Melee Skills have 12% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} -c["Melee Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} +c["Melee Skills have 10% increased Area of Effect"]={{[1]={[1]={skillType=20,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} +c["Melee Skills have 12% increased Area of Effect"]={{[1]={[1]={skillType=20,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} +c["Melee Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=20,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} c["Melee Strike Skills deal Splash Damage to surrounding targets"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets "} c["Melee Strike Skills deal Splash Damage to surrounding targets +100 to Strength"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets +100 to Strength "} c["Melee Strike Skills deal Splash Damage to surrounding targets 25% reduced Mana Burn rate"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets 25% reduced Mana Burn rate "} @@ -9990,6 +10044,7 @@ c["Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses c["Minions Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have"]={nil,"Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have "} c["Minions Explode when reduced to Low Life, dealing 33% of their Life as Fire Damage to surrounding Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="MinionInstability"}}},nil} c["Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=50}}}},nil} +c["Minions Impale on Hit"]={nil,"Impale on Hit "} c["Minions Leech 0.4% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.4}}}},nil} c["Minions Leech 1% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}}}},nil} c["Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=5}}}},nil} @@ -10011,15 +10066,14 @@ c["Minions can hear the whispers for 5 seconds after they deal a Critical Strike c["Minions cannot be Blinded"]={nil,"cannot be Blinded "} c["Minions cannot be Blinded Minions have 15% chance to Blind Enemies on hit"]={nil,"cannot be Blinded Minions have 15% chance to Blind Enemies on hit "} c["Minions cannot be Killed, but die 6 seconds after being reduced to 1 Life"]={nil,"cannot be Killed, but die 6 seconds after being reduced to 1 Life "} -c["Minions convert 25% of Physical Damage to Chaos Damage per Socketed White Gem"]={nil,"convert 25% of Physical Damage to Chaos Damage per Socketed White Gem "} -c["Minions convert 25% of Physical Damage to Chaos Damage per Socketed White Gem Minions have 10% chance to Freeze, Shock and Ignite"]={nil,"convert 25% of Physical Damage to Chaos Damage per Socketed White Gem Minions have 10% chance to Freeze, Shock and Ignite "} +c["Minions convert 25% of Physical Damage to Chaos Damage per Empty Socket"]={{[1]={[1]={type="Multiplier",var="EmptySocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=25}}}},nil} +c["Minions convert 25% of Physical Damage to Chaos Damage per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=25}}}},nil} c["Minions convert 25% of Physical Damage to Cold Damage per Socketed Green Gem"]={nil,"convert 25% of Physical Damage to Cold Damage per Socketed Green Gem "} -c["Minions convert 25% of Physical Damage to Cold Damage per Socketed Green Gem Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Physical damage to cold damage per socketed green gem minions convert 25% of physicalDamageConvertToLightning",type="BASE",value=25}}}},nil} -c["Minions convert 25% of Physical Damage to Fire Damage per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=25}}}},nil} +c["Minions convert 25% of Physical Damage to Cold Damage per Socketed Green Gem Minions convert 25% of Physical Damage to Cold Damage per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Physical damage to cold damage per socketed green gem minions convert 25% of physicalDamageConvertToCold",type="BASE",value=25}}}},nil} c["Minions convert 25% of Physical Damage to Fire Damage per Socketed Red Gem"]={nil,"convert 25% of Physical Damage to Fire Damage per Socketed Red Gem "} -c["Minions convert 25% of Physical Damage to Fire Damage per Socketed Red Gem Minions convert 25% of Physical Damage to Cold Damage per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Physical damage to fire damage per socketed red gem minions convert 25% of physicalDamageConvertToCold",type="BASE",value=25}}}},nil} +c["Minions convert 25% of Physical Damage to Fire Damage per Socketed Red Gem Minions convert 25% of Physical Damage to Fire Damage per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Physical damage to fire damage per socketed red gem minions convert 25% of physicalDamageConvertToFire",type="BASE",value=25}}}},nil} c["Minions convert 25% of Physical Damage to Lightning Damage per Socketed Blue Gem"]={nil,"convert 25% of Physical Damage to Lightning Damage per Socketed Blue Gem "} -c["Minions convert 25% of Physical Damage to Lightning Damage per Socketed Blue Gem Minions convert 25% of Physical Damage to Chaos Damage per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Physical damage to lightning damage per socketed blue gem minions convert 25% of physicalDamageConvertToChaos",type="BASE",value=25}}}},nil} +c["Minions convert 25% of Physical Damage to Lightning Damage per Socketed Blue Gem Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Physical damage to lightning damage per socketed blue gem minions convert 25% of physicalDamageConvertToLightning",type="BASE",value=25}}}},nil} c["Minions convert 50% of Physical Damage to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=50}}}},nil} c["Minions count as having the same number of"]={nil,"count as having the same number of "} c["Minions count as having the same number of Endurance, Frenzy and Power Charges as you"]={nil,"count as having the same number of Endurance, Frenzy and Power Charges as you "} @@ -10033,6 +10087,9 @@ c["Minions deal 1% increased Damage per 5 Dexterity"]={{[1]={[1]={div=5,stat="De c["Minions deal 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil} c["Minions deal 10% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="AffectedByHerald"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil} c["Minions deal 10% more Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}}}},nil} +c["Minions deal 10% more Damage while you have a Skeleton"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}}}}," while you have a "} +c["Minions deal 10% more Damage while you have a Skeleton Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}}}}," while you have a Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre "} +c["Minions deal 10% more Damage while you have a Skeleton Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre Maximum number of raised Spectres, Skeletons and Zombies is 1"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}}}}," while you have a Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre Maximum number of raised Spectres, Skeletons and Zombies is 1 "} c["Minions deal 102 to 156 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=102}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=156}}}},nil} c["Minions deal 12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil} c["Minions deal 13% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=13}}}},nil} @@ -10068,7 +10125,7 @@ c["Minions deal 70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Minio c["Minions deal 70% increased Damage if you've Hit Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil} c["Minions deal 77% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=77}}}},nil} c["Minions deal 8 to 16 additional Attack Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalDamage",type="BASE",value=8}}}}," to 16 additional "} -c["Minions deal 8 to 16 additional Attack Physical Damage Golems have 120 to 160 Added Attack Physical Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalDamage",type="BASE",value=8}}}}," to 16 additional s have 120 to 160 Added Attack Physical Damage "} +c["Minions deal 8 to 16 additional Attack Physical Damage Golems have 120 to 160 Added Attack Physical Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalDamage",type="BASE",value=8}}}}," to 16 additional s have 120 to 160 Added Attack Physical Damage "} c["Minions deal 8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}}}},nil} c["Minions deal 80% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=80}}}},nil} c["Minions deal 80% increased Damage if you have Warcried Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=80}}}},nil} @@ -10076,7 +10133,9 @@ c["Minions deal 9 to 15 additional Cold Damage"]={{[1]={flags=0,keywordFlags=0,n c["Minions deal 96 to 144 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=96}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=144}}}},nil} c["Minions deal 96% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=96}}}},nil} c["Minions deal no Non-Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true}}},[3]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DealNoFire",type="FLAG",value=true}}},[4]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}}}},nil} -c["Minions from Herald Skills deal 25% more Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=25}}}},nil} +c["Minions from Herald Skills deal 25% more Damage"]={{[1]={[1]={skillType=52,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=25}}}},nil} +c["Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=10}}}}," while you have a "} +c["Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre Maximum number of raised Spectres, Skeletons and Zombies is 1"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=10}}}}," while you have a Maximum number of raised Spectres, Skeletons and Zombies is 1 "} c["Minions gain 18% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=18}}}},nil} c["Minions gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=20}}}},nil} c["Minions gain 20% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=20}}}},nil} @@ -10092,6 +10151,12 @@ c["Minions gain Unholy Might for 5 seconds on Kill"]={{[1]={flags=0,keywordFlags c["Minions gain added Resistances equal to 50% of your Resistances"]={{[1]={flags=0,keywordFlags=0,name="ResistanceAddedToMinions",type="BASE",value=50}},nil} c["Minions have (15-20)% increased maximum Life"]={nil,"(15-20)% increased maximum Life "} c["Minions have (15-20)% increased maximum Life Minions deal (25-35)% increased Damage"]={nil,"(15-20)% increased maximum Life Minions deal (25-35)% increased Damage "} +c["Minions have (2-3)% chance to Blind on Hit with Attacks"]={nil,"(2-3)% chance to Blind on Hit with Attacks "} +c["Minions have (2-3)% chance to Hinder Enemies on Hit with Spells"]={nil,"(2-3)% chance to Hinder Enemies on Hit with Spells "} +c["Minions have (2-3)% chance to Taunt on Hit with Attacks"]={nil,"(2-3)% chance to Taunt on Hit with Attacks "} +c["Minions have (2-3)% increased Attack Speed"]={nil,"(2-3)% increased Attack Speed "} +c["Minions have (2-3)% increased Attack Speed Minions have (2-3)% increased Cast Speed"]={nil,"(2-3)% increased Attack Speed Minions have (2-3)% increased Cast Speed "} +c["Minions have (2-3)% increased Cast Speed"]={nil,"(2-3)% increased Cast Speed "} c["Minions have +10% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil} c["Minions have +10% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=10}}}},nil} c["Minions have +10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}}}},nil} @@ -10230,6 +10295,10 @@ c["Minions have Unholy Might"]={{[1]={flags=0,keywordFlags=0,name="MinionModifie c["Minions have a 12% chance to Impale on Hit with Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ImpaleChance",type="BASE",value=12}}}},nil} c["Minions have the same maximum number of Endurance, Frenzy and Power Charges as you"]={nil,"the same maximum number of Endurance, Frenzy and Power Charges as you "} c["Minions have the same maximum number of Endurance, Frenzy and Power Charges as you Minions count as having the same number of"]={nil,"the same maximum number of Endurance, Frenzy and Power Charges as you Minions count as having the same number of "} +c["Minions take 10% less Damage while you have a Zombie"]={nil,"take 10% less Damage while you have a Zombie "} +c["Minions take 10% less Damage while you have a Zombie Minions deal 10% more Damage while you have a Skeleton"]={nil,"take 10% less Damage while you have a Zombie Minions deal 10% more Damage while you have a Skeleton "} +c["Minions take 10% less Damage while you have a Zombie Minions deal 10% more Damage while you have a Skeleton Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre"]={nil,"take 10% less Damage while you have a Zombie Minions deal 10% more Damage while you have a Skeleton Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre "} +c["Minions take 10% less Damage while you have a Zombie Minions deal 10% more Damage while you have a Skeleton Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre Maximum number of raised Spectres, Skeletons and Zombies is 1"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="OVERRIDE",value=1}}}},"take 10% less while you have a Minions deal 10% more Damage while you have a Skeleton Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre Maximum number of raised Spectres, Skeletons and Zombies "} c["Minions' Base Attack Critical Strike Chance is equal to the Critical"]={nil,"Minions' Base Attack Critical Strike Chance is equal to the Critical "} c["Minions' Base Attack Critical Strike Chance is equal to the Critical Strike Chance of your Main Hand Weapon"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="AttackCritIsEqualToParentMainHand",type="FLAG",value=true}}}},nil} c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies "} @@ -10343,12 +10412,11 @@ c["No Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="ArmourData",type="LI c["No Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalMin"}},[2]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalMax"}},[3]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalDPS"}}},nil} c["Non-Aura Curses you inflict are not removed from Dying Enemies"]={nil,"Non-Aura Curses you inflict are not removed from Dying Enemies "} c["Non-Aura Curses you inflict are not removed from Dying Enemies Enemies near corpses affected by your Curses are Blinded"]={nil,"Non-Aura Curses you inflict are not removed from Dying Enemies Enemies near corpses affected by your Curses are Blinded "} -c["Non-Aura Hexes expire upon reaching 200% of base Effect Non-Aura Hexes gain 20% increased Effect per second"]={{[1]={[1]={actor="enemy",limit=200,limitTotal=true,type="Multiplier",var="CurseDurationExpired"},[2]={neg=true,skillType=43,type="SkillType"},[3]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} -c["Non-Aura Hexes expire upon reaching 220% of base Effect"]={nil,"Non-Aura Hexes expire upon reaching 220% of base Effect "} -c["Non-Aura Hexes expire upon reaching 220% of base Effect Non-Aura Hexes gain 20% increased Effect per second"]={{[1]={[1]={actor="enemy",limit=220,limitTotal=true,type="Multiplier",var="CurseDurationExpired"},[2]={neg=true,skillType=43,type="SkillType"},[3]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} -c["Non-Aura Vaal Skills require 25% reduced Souls Per Use during Effect"]={{[1]={[1]={neg=true,skillType=43,type="SkillType"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=512,name="SoulCost",type="INC",value=-25}},nil} -c["Non-Channelling Skills have -5 to Total Mana Cost while affected by Clarity"]={{[1]={[1]={neg=true,skillType=57,type="SkillType"},[2]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-5}},nil} -c["Non-Channelling Skills have -9 to Total Mana Cost"]={{[1]={[1]={neg=true,skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-9}},nil} +c["Non-Aura Hexes expire upon reaching 200% of base Effect"]={nil,"Non-Aura Hexes expire upon reaching 200% of base Effect "} +c["Non-Aura Hexes expire upon reaching 200% of base Effect Non-Aura Hexes gain 20% increased Effect per second"]={{[1]={[1]={actor="enemy",limit=200,limitTotal=true,type="Multiplier",var="CurseDurationExpired"},[2]={neg=true,skillType=39,type="SkillType"},[3]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} +c["Non-Aura Vaal Skills require 25% reduced Souls Per Use during Effect"]={{[1]={[1]={neg=true,skillType=39,type="SkillType"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=512,name="SoulCost",type="INC",value=-25}},nil} +c["Non-Channelling Skills have -5 to Total Mana Cost while affected by Clarity"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-5}},nil} +c["Non-Channelling Skills have -9 to Total Mana Cost"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-9}},nil} c["Non-Chilled Enemies you Poison are Chilled"]={nil,"Non-Chilled Enemies you Poison are Chilled "} c["Non-Chilled Enemies you Poison are Chilled Poisoned Enemies you Kill with Hits Shatter"]={nil,"Non-Chilled Enemies you Poison are Chilled Poisoned Enemies you Kill with Hits Shatter "} c["Non-Chilled Enemies you inflict Bleeding on are Chilled"]={nil,"Non-Chilled Enemies you inflict Bleeding on are Chilled "} @@ -10357,9 +10425,9 @@ c["Non-Cluster, Non-Passage Jewels Socketed in your Passive Skill Tree have no e c["Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil} c["Non-Critical Strikes cannot inflict Ailments"]={{[1]={flags=0,keywordFlags=0,name="AilmentsOnlyFromCrit",type="FLAG",value=true}},nil} c["Non-Critical Strikes deal no Damage"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=-100}},nil} -c["Non-Curse Aura Skills have 20% increased Duration"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} -c["Non-Curse Aura Skills have 50% increased Duration"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil} -c["Non-Curse Auras from your Skills only apply to you and Linked Targets"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="SelfAurasAffectYouAndLinkedTarget",type="FLAG",value=true}},nil} +c["Non-Curse Aura Skills have 20% increased Duration"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} +c["Non-Curse Aura Skills have 50% increased Duration"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil} +c["Non-Curse Auras from your Skills only apply to you and Linked Targets"]={{[1]={[1]={skillType=39,type="SkillType"},[2]={neg=true,skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="SelfAurasAffectYouAndLinkedTarget",type="FLAG",value=true}},nil} c["Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds"]={nil,"Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds "} c["Non-Damaging Ailments Cannot Be inflicted on you while you already have one"]={nil,"Non-Damaging Ailments Cannot Be inflicted on you while you already have one "} c["Non-Damaging Ailments have 40% reduced Effect on you while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-40},[2]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="SelfFreezeEffect",type="INC",value=-40},[3]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-40},[4]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="SelfScorchEffect",type="INC",value=-40},[5]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="SelfBrittleEffect",type="INC",value=-40},[6]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="SelfSapEffect",type="INC",value=-40}},nil} @@ -10368,18 +10436,18 @@ c["Non-Damaging Elemental Ailments you inflict have 100% more Effect"]={{[1]={fl c["Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres"]={nil,"Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres "} c["Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres Non-Damaging Elemental Ailments you inflict have 100% more Effect"]={nil,"Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres Non-Damaging Elemental Ailments you inflict have 100% more Effect "} c["Non-Exerted Attacks deal no Damage"]={nil,"Non-Exerted Attacks deal no Damage "} -c["Non-Instant Warcries ignore their Cooldown when Used"]={{[1]={[1]={neg=true,skillType=74,type="SkillType"},flags=0,keywordFlags=4,name="CooldownRecovery",type="OVERRIDE",value=0}},nil} -c["Non-Travel Attack Skills Repeat an additional Time"]={{[1]={[1]={neg=true,skillType=90,type="SkillType"},[2]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=0,keywordFlags=65536,name="RepeatCount",type="BASE",value=1}},nil} +c["Non-Instant Warcries ignore their Cooldown when Used"]={{[1]={[1]={neg=true,skillType=64,type="SkillType"},flags=0,keywordFlags=4,name="CooldownRecovery",type="OVERRIDE",value=0}},nil} +c["Non-Travel Attack Skills Repeat an additional Time"]={{[1]={[1]={neg=true,skillType=79,type="SkillType"},[2]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=0,keywordFlags=65536,name="RepeatCount",type="BASE",value=1}},nil} c["Non-Unique Jewels cause Small and Notable Passive Skills in a Large Radius to"]={nil,"Non-Unique Jewels cause Small and Notable Passive Skills in a Large Radius to "} c["Non-Unique Utility Flasks you Use apply to Linked Targets"]={{[1]={flags=0,keywordFlags=0,name="ExtraLinkEffect",type="LIST",value={mod={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="ParentNonUniqueFlasksAppliedToYou",type="FLAG",value=true}}}},nil} -c["Non-Vaal Strike Skills target 1 additional nearby Enemy"]={{[1]={[1]={skillType=25,type="SkillType"},[2]={neg=true,skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalStrikeTarget",type="BASE",value=1}},nil} +c["Non-Vaal Strike Skills target 1 additional nearby Enemy"]={{[1]={[1]={skillType=21,type="SkillType"},[2]={neg=true,skillType=38,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalStrikeTarget",type="BASE",value=1}},nil} c["Non-critical strikes deal 80% less Damage"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=-80}},nil} c["Non-instant Mana Recovery from Flasks is also Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskAppliesToLife",type="FLAG",value=true}},nil} c["Notable Passive Skills in Radius are Transformed to"]={nil,"Notable Passive Skills in Radius are Transformed to "} c["Nova Spells Cast at a Marked target instead of around you if possible"]={nil,"Nova Spells Cast at a Marked target instead of around you if possible "} c["Nova Spells Cast at a Marked target instead of around you if possible Limited to 1 Runegraft of the Novamark"]={nil,"Nova Spells Cast at a Marked target instead of around you if possible Limited to 1 Runegraft of the Novamark "} c["Nova Spells Cast at the targeted location instead of around you"]={nil,"Nova Spells Cast at the targeted location instead of around you "} -c["Nova Spells have 20% less Area of Effect"]={{[1]={[1]={skillType=95,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="MORE",value=-20}},nil} +c["Nova Spells have 20% less Area of Effect"]={{[1]={[1]={skillType=84,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="MORE",value=-20}},nil} c["Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=0,keywordFlags=0,name="Condition:OffHandAccuracyIsMainHandAccuracy",type="FLAG",value=true}},nil} c["Offering Skills Triggered this way also affect you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="buffNotPlayer",value=false}}}}},nil} c["Offering Skills have 20% increased Duration"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering",[4]="Blood Offering"},type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} @@ -10389,7 +10457,7 @@ c["On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned"]={nil,"On c["On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned and nearby Allies Regenerate 400 Life per second"]={nil,"On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned and nearby Allies Regenerate 400 Life per second "} c["On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds"]={nil,"On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds "} c["On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%"]={nil,"On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50% "} -c["On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50% For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier"]={{[1]={[1]={floor=true,percent=50,stat="LifeFlaskCharges",type="PercentStat"},[2]={neg=true,skillType=57,type="SkillType"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=2}},nil} +c["On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50% For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier"]={{[1]={[1]={floor=true,percent=50,stat="LifeFlaskCharges",type="PercentStat"},[2]={neg=true,skillType=48,type="SkillType"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=2}},nil} c["One modifier from Consumed Jewels will be retained"]={nil,"One modifier from Consumed Jewels will be retained "} c["One modifier from Consumed Jewels will be retained Cannot have non-Abyssal sockets"]={nil,"One modifier from Consumed Jewels will be retained Cannot have non-Abyssal sockets "} c["Only affects Passives in Large Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=8}}},nil} @@ -10398,7 +10466,7 @@ c["Only affects Passives in Medium Ring"]={{[1]={flags=0,keywordFlags=0,name="Je c["Only affects Passives in Small Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=6}}},nil} c["Only affects Passives in Very Large Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=9}}},nil} c["Onslaught"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} -c["Other Aegis Skills are Disabled"]={{[1]={[1]={skillType=110,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillId="Primal Aegis",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Other Aegis Skills are Disabled"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillId="Primal Aegis",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} c["Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Pain Attunement"}},nil} c["Passage"]={nil,"Passage "} c["Passage Only affects Passives in Medium Ring"]={nil,"Passage Only affects Passives in Medium Ring "} @@ -10497,20 +10565,24 @@ c["Prevent +3% of Suppressed Spell Damage per Bark below maximum"]={{[1]={[1]={t c["Prevent +5% of Suppressed Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionEffect",type="BASE",value=5}},nil} c["Prevent +6% of Suppressed Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionEffect",type="BASE",value=6}},nil} c["Prevent +6% of Suppressed Spell Damage while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="SpellSuppressionEffect",type="BASE",value=6}},nil} +c["Prevent +75% of Reflected Elemental Damage you would take while"]={nil,"Prevent +75% of Reflected Elemental Damage you would take while "} +c["Prevent +75% of Reflected Elemental Damage you would take while affected by Purity of Elements"]={nil,"Prevent +75% of Reflected Elemental Damage you would take while affected by Purity of Elements "} +c["Prevent +75% of Reflected Physical Damage you would take while affected by Determination"]={nil,"Prevent +75% of Reflected Physical Damage you would take while affected by Determination "} +c["Prevent +75% of Reflected Physical Damage you would take while affected by Determination Unaffected by Vulnerability while affected by Determination"]={nil,"Prevent +75% of Reflected Physical Damage you would take while affected by Determination Unaffected by Vulnerability while affected by Determination "} c["Pride has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Pride",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} -c["Pride has no Reservation"]={{[1]={[1]={skillId="Pride",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Pride",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Pride",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Pride",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Pride has no Reservation"]={{[1]={[1]={skillId="Pride",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Pride",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Pride",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Pride",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Primal Aegis can take 75 Elemental Damage per Allocated Notable Passive Skill"]={{[1]={[1]={type="Multiplier",var="AllocatedNotable"},[2]={effectType="Buff",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="ElementalAegisValue",type="MAX",value=75}},nil} c["Primordial"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:PrimordialItem",type="BASE",value=1}},nil} c["Profane Ground you create also affects you and your Allies, granting Chaotic Might"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={[1]={type="Condition",var="OnProfaneGround"},flags=0,keywordFlags=0,name="Condition:ChaoticMight",type="FLAG",value=true}}}},nil} c["Profane Ground you create inflicts Malediction on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="OnProfaneGround"},flags=0,keywordFlags=0,name="HasMalediction",type="FLAG",value=true}}}},nil} c["Projectile Attack Hits deal up to 30% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={{[1]={flags=0,keywordFlags=0,name="PointBlank",type="FLAG",value=true}},nil} -c["Projectile Attack Skills have +10% to Critical Strike Multiplier"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} -c["Projectile Attack Skills have +30% to Critical Strike Multiplier"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} -c["Projectile Attack Skills have 10% increased Critical Strike Chance"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil} -c["Projectile Attack Skills have 20% increased Critical Strike Chance"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} -c["Projectile Attack Skills have 25% increased Critical Strike Chance"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil} -c["Projectile Attack Skills have 50% increased Critical Strike Chance"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} -c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={{[1]={[1]={skillType=47,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} +c["Projectile Attack Skills have +10% to Critical Strike Multiplier"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} +c["Projectile Attack Skills have +30% to Critical Strike Multiplier"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} +c["Projectile Attack Skills have 10% increased Critical Strike Chance"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil} +c["Projectile Attack Skills have 20% increased Critical Strike Chance"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} +c["Projectile Attack Skills have 25% increased Critical Strike Chance"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil} +c["Projectile Attack Skills have 50% increased Critical Strike Chance"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} +c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["Projectile Barrages have no spread"]={nil,"Projectile Barrages have no spread "} c["Projectile Barrages have no spread You take no Extra Damage from Critical Strikes while Elusive"]={nil,"Projectile Barrages have no spread You take no Extra Damage from Critical Strikes while Elusive "} c["Projectiles Chain +1 times while you have Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil} @@ -10537,16 +10609,16 @@ c["Projectiles deal 20% increased Damage with Hits and Ailments for each time th c["Projectiles deal 35% increased Damage with Hits against nearby Enemies"]={{[1]={flags=1024,keywordFlags=262144,name="Damage",type="INC",value=35}},nil} c["Projectiles deal 40% increased Damage with Hits to targets at the start"]={{[1]={flags=1024,keywordFlags=262144,name="Damage",type="INC",value=40}}," to targets at the start "} c["Projectiles deal 40% increased Damage with Hits to targets at the start of their movement, reducing to 0% as they travel farther"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=1},[2]={[1]=70,[2]=0}},type="DistanceRamp"},flags=1028,keywordFlags=0,name="Damage",type="INC",value=40}},nil} -c["Projectiles from Attacks Fork"]={{[1]={[1]={skillType=47,type="SkillType"},flags=1024,keywordFlags=0,name="ForkOnce",type="FLAG",value=true},[2]={[1]={skillType=47,type="SkillType"},flags=1024,keywordFlags=0,name="ForkCountMax",type="BASE",value=1}},nil} -c["Projectiles from Attacks can Fork 1 additional time"]={{[1]={[1]={skillType=47,type="SkillType"},flags=1024,keywordFlags=0,name="ForkTwice",type="FLAG",value=true},[2]={[1]={skillType=47,type="SkillType"},flags=1024,keywordFlags=0,name="ForkCountMax",type="BASE",value=1}},nil} +c["Projectiles from Attacks Fork"]={{[1]={[1]={skillType=41,type="SkillType"},flags=1024,keywordFlags=0,name="ForkOnce",type="FLAG",value=true},[2]={[1]={skillType=41,type="SkillType"},flags=1024,keywordFlags=0,name="ForkCountMax",type="BASE",value=1}},nil} +c["Projectiles from Attacks can Fork 1 additional time"]={{[1]={[1]={skillType=41,type="SkillType"},flags=1024,keywordFlags=0,name="ForkTwice",type="FLAG",value=true},[2]={[1]={skillType=41,type="SkillType"},flags=1024,keywordFlags=0,name="ForkCountMax",type="BASE",value=1}},nil} c["Projectiles from Attacks have 100% chance to Maim on Hit while you have a Bestial Minion"]={{}," to Maim "} -c["Projectiles from Attacks have 100% chance to Maim on Hit while you have a Bestial Minion Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=47,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},[3]={type="Condition",var="HaveBestialMinion"},flags=4,keywordFlags=0,name="ProjectileCount",type="BASE",value=100}}," to Maim from Attacks have 20% chance to Poison on Hit "} -c["Projectiles from Attacks have 100% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=47,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil} -c["Projectiles from Attacks have 100% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=47,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil} +c["Projectiles from Attacks have 100% chance to Maim on Hit while you have a Bestial Minion Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=41,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},[3]={type="Condition",var="HaveBestialMinion"},flags=4,keywordFlags=0,name="ProjectileCount",type="BASE",value=100}}," to Maim from Attacks have 20% chance to Poison on Hit "} +c["Projectiles from Attacks have 100% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=41,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil} +c["Projectiles from Attacks have 100% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=41,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil} c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={{}," to Maim "} -c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion Projectiles from Attacks have 100% chance to Maim on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=47,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},[3]={type="Condition",var="HaveBestialMinion"},flags=4,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Maim from Attacks have 100% chance to Maim on Hit "} -c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=47,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil} -c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=47,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil} +c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion Projectiles from Attacks have 100% chance to Maim on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=41,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},[3]={type="Condition",var="HaveBestialMinion"},flags=4,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Maim from Attacks have 100% chance to Maim on Hit "} +c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=41,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil} +c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=41,type="SkillType"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil} c["Projectiles from Spells cannot Pierce"]={{[1]={flags=2,keywordFlags=0,name="CannotPierce",type="FLAG",value=true}},nil} c["Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={stat="Chain",type="PerStat"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=20}},nil} c["Projectiles gain Damage as they travel farther, dealing up"]={nil,"Damage as they travel farther, dealing up "} @@ -10558,6 +10630,8 @@ c["Projectiles have 25% chance for an additional Projectile when Forking"]={{[1] c["Projectiles have 30% chance to be able to Chain when colliding with terrain"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=30}}," to be able to when colliding with terrain "} c["Projectiles have 4% chance to be able to Chain when colliding with terrain per"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=4}}," to be able to when colliding with terrain per "} c["Projectiles have 4% chance to be able to Chain when colliding with terrain per Searching Eye Jewel affecting you, up to a maximum of 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="SearchingEyeJewel"},flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=4}}," to be able to when colliding with terrain "} +c["Projectiles have 5 metres maximum Direct Flight"]={{}," metres maximum Direct Flight "} +c["Projectiles have 5 metres maximum Direct Flight 40% more Projectile Speed"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileSpeed",type="BASE",value=5}}," metres maximum Direct Flight 40% more "} c["Projectiles have 50% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," for an additional when Forking "} c["Projectiles have 50% chance to Return to you"]={{}," to Return to you "} c["Projectiles have 50% chance to Return to you Projectiles are fired in random directions"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," to Return to you are fired in random directions "} @@ -10565,13 +10639,13 @@ c["Projectiles that have Chained gain 20% of Non-Chaos Damage as extra Chaos Dam c["Projectiles that have Chained gain 28% of Non-Chaos Damage as extra Chaos Damage"]={{[1]={[1]={stat="Chain",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=28}},nil} c["Projectiles that have Chained gain 35% of Non-Chaos Damage as extra Chaos Damage"]={{[1]={[1]={stat="Chain",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=35}},nil} c["Punishment can affect Hexproof Enemies"]={{[1]={[1]={skillId="Punishment",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} -c["Purity of Elements has no Reservation"]={{[1]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Purity of Elements has no Reservation"]={{[1]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Purity of Fire has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Purity of Fire",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} -c["Purity of Fire has no Reservation"]={{[1]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Purity of Fire has no Reservation"]={{[1]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Purity of Ice has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Purity of Ice",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} -c["Purity of Ice has no Reservation"]={{[1]={[1]={skillId="PurityOfIce",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfIce",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfIce",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfIce",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Purity of Ice has no Reservation"]={{[1]={[1]={skillId="PurityOfIce",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfIce",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfIce",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfIce",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Purity of Lightning has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Purity of Lightning",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} -c["Purity of Lightning has no Reservation"]={{[1]={[1]={skillId="PurityOfLightning",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfLightning",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfLightning",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfLightning",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Purity of Lightning has no Reservation"]={{[1]={[1]={skillId="PurityOfLightning",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfLightning",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfLightning",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfLightning",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Queen's Demand can Trigger Level 20 Flames of Judgement"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AtziriUniqueStaffFlameblast",source="queen's demand",triggered=true}}},nil} c["Queen's Demand can Trigger Level 20 Storm of Judgement"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AtziriUniqueStaffStormCall",source="queen's demand",triggered=true}}},nil} c["Quicksilver Flasks you Use also apply to nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="QuickSilverAppliesToAllies",type="FLAG",value=true}},nil} @@ -10770,7 +10844,10 @@ c["Reflects opposite Ring"]={nil,"Reflects opposite Ring "} c["Reflects opposite Ring Mirrored"]={nil,"Reflects opposite Ring Mirrored "} c["Refresh Duration of Chill and Shock on Enemies you Curse"]={nil,"Refresh Duration of Chill and Shock on Enemies you Curse "} c["Refresh Duration of Chill and Shock on Enemies you Curse Remove Elemental Ailments when you Cast a Curse Spell"]={nil,"Refresh Duration of Chill and Shock on Enemies you Curse Remove Elemental Ailments when you Cast a Curse Spell "} +c["Regenerate (0.6-1) Mana per second"]={nil,"Regenerate (0.6-1) Mana per second "} c["Regenerate (0.7-1.2)% of Life per second"]={nil,"Regenerate (0.7-1.2)% of Life per second "} +c["Regenerate (4.5-6) Life per second"]={nil,"Regenerate (4.5-6) Life per second "} +c["Regenerate (9-12) Energy Shield per second"]={nil,"Regenerate (9-12) Energy Shield per second "} c["Regenerate 0.1% of Life per second per Fortification"]={{[1]={[1]={stat="FortificationStacks",type="PerStat"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.1}},nil} c["Regenerate 0.2% of Life per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}},nil} c["Regenerate 0.3% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.3}},nil} @@ -11333,42 +11410,41 @@ c["Retaliation Skills become Usable for 20% longer"]={nil,"Retaliation Skills be c["Retaliation Skills become Usable for 30% longer"]={nil,"Retaliation Skills become Usable for 30% longer "} c["Retaliation Skills become Usable for an additional 2 seconds"]={nil,"Retaliation Skills become Usable for an additional 2 seconds "} c["Retaliation Skills become Usable for an additional 2 seconds 50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use"]={nil,"Retaliation Skills become Usable for an additional 2 seconds 50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use "} -c["Retaliation Skills deal 100% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil} -c["Retaliation Skills deal 12% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} -c["Retaliation Skills deal 15% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} -c["Retaliation Skills deal 16% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=16}},nil} -c["Retaliation Skills deal 20% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} -c["Retaliation Skills deal 30% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil} -c["Retaliation Skills deal 75% increased Damage"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=75}},nil} -c["Retaliation Skills have 10% reduced Enemy Stun Threshold"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil} -c["Retaliation Skills have 12% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=12}},nil} -c["Retaliation Skills have 15% increased Area of Effect"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} -c["Retaliation Skills have 15% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}},nil} -c["Retaliation Skills have 20% increased Speed"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20},[2]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=20}},nil} -c["Retaliation Skills have 25% increased Stun Duration on Enemies"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=25}},nil} -c["Retaliation Skills have 30% increased Area of Effect"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} -c["Retaliation Skills have 50% increased Stun Duration on Enemies"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}},nil} -c["Retaliation Skills have 6% increased Speed"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=6},[2]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=6}},nil} -c["Retaliation Skills have 8% increased Speed"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8},[2]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=8}},nil} +c["Retaliation Skills deal 100% increased Damage"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil} +c["Retaliation Skills deal 12% increased Damage"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil} +c["Retaliation Skills deal 15% increased Damage"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} +c["Retaliation Skills deal 16% increased Damage"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=16}},nil} +c["Retaliation Skills deal 20% increased Damage"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil} +c["Retaliation Skills deal 30% increased Damage"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil} +c["Retaliation Skills deal 75% increased Damage"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=75}},nil} +c["Retaliation Skills have 10% reduced Enemy Stun Threshold"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil} +c["Retaliation Skills have 12% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=12}},nil} +c["Retaliation Skills have 15% increased Area of Effect"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} +c["Retaliation Skills have 15% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}},nil} +c["Retaliation Skills have 20% increased Speed"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20},[2]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=20}},nil} +c["Retaliation Skills have 25% increased Stun Duration on Enemies"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=25}},nil} +c["Retaliation Skills have 30% increased Area of Effect"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} +c["Retaliation Skills have 50% increased Stun Duration on Enemies"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}},nil} +c["Retaliation Skills have 6% increased Speed"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=6},[2]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=6}},nil} +c["Retaliation Skills have 8% increased Speed"]={{[1]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8},[2]={[1]={skillType=121,type="SkillType"},flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=8}},nil} c["Returning Projectiles have 150% increased Speed"]={nil,"Returning Projectiles have 150% increased Speed "} c["Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="SkitterbotsCannotShock",type="FLAG",value=true}},nil} c["Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them"]={{[1]={[1]={num=2,type="SlotNumber"},[2]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="CoveredInFrostEffect",type="BASE",value=20}},nil} c["Right ring slot: +100 to maximum Mana"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil} c["Right ring slot: +250 to maximum Mana"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=250}},nil} -c["Right ring slot: 100% of Physical Hit Damage from you and"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}," Physical Hit from you and "} -c["Right ring slot: 100% of Physical Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}}}," Physical Hit from you and your s cannot be Reflected "} -c["Right ring slot: 30% of Physical Hit Damage from you and"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," Physical Hit from you and "} -c["Right ring slot: 30% of Physical Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}}}," Physical Hit from you and your s cannot be Reflected "} -c["Right ring slot: 40% of Physical Hit Damage from you and"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=40}}," Physical Hit from you and "} -c["Right ring slot: 40% of Physical Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=40}}}}," Physical Hit from you and your s cannot be Reflected "} -c["Right ring slot: 80% of Physical Hit Damage from you and"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=80}}," Physical Hit from you and "} -c["Right ring slot: 80% of Physical Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=80}}}}," Physical Hit from you and your s cannot be Reflected "} c["Right ring slot: Projectiles from Spells Chain +1 times"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil} c["Right ring slot: Projectiles from Spells cannot Fork"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="CannotFork",type="FLAG",value=true}},nil} c["Right ring slot: Regenerate 3% of Energy Shield per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil} c["Right ring slot: Regenerate 4% of Energy Shield per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=4}},nil} c["Right ring slot: Regenerate 6% of Energy Shield per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=6}},nil} c["Right ring slot: You cannot Regenerate Mana"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="NoManaRegen",type="FLAG",value=true}},nil} +c["Right ring slot: you and your Minions prevent +100% of Reflected Physical Damage"]={nil,"you and your Minions prevent +100% of Reflected Physical Damage "} +c["Right ring slot: you and your Minions prevent +30% of Reflected Physical Damage"]={nil,"you and your Minions prevent +30% of Reflected Physical Damage "} +c["Right ring slot: you and your Minions prevent +30% of Reflected Physical Damage Right ring slot: you and your Minions prevent +40% of Reflected Physical Damage"]={nil,"you and your Minions prevent +30% of Reflected Physical Damage Right ring slot: you and your Minions prevent +40% of Reflected Physical Damage "} +c["Right ring slot: you and your Minions prevent +40% of Reflected Physical Damage"]={nil,"you and your Minions prevent +40% of Reflected Physical Damage "} +c["Right ring slot: you and your Minions prevent +40% of Reflected Physical Damage Right ring slot: you and your Minions prevent +80% of Reflected Physical Damage"]={nil,"you and your Minions prevent +40% of Reflected Physical Damage Right ring slot: you and your Minions prevent +80% of Reflected Physical Damage "} +c["Right ring slot: you and your Minions prevent +80% of Reflected Physical Damage"]={nil,"you and your Minions prevent +80% of Reflected Physical Damage "} +c["Right ring slot: you and your Minions prevent +80% of Reflected Physical Damage Right ring slot: you and your Minions prevent +100% of Reflected Physical Damage"]={nil,"you and your Minions prevent +80% of Reflected Physical Damage Right ring slot: you and your Minions prevent +100% of Reflected Physical Damage "} c["Roiling Tempest"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Roiling Tempest"}},nil} c["Runebinder"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Runebinder"}},nil} c["Ruthless Hits Intimidate Enemies for 4 seconds"]={nil,"Ruthless Hits Intimidate Enemies for 4 seconds "} @@ -11480,7 +11556,7 @@ c["Skills which Throw Traps throw up to 2 additional Traps"]={{[1]={flags=0,keyw c["Skills which create Brands have 35% chance to create an additional Brand"]={nil,"Skills which create Brands have 35% chance to create an additional Brand "} c["Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity"]={{[1]={[1]={stat="Dex",threshold=800,type="StatThreshold"},flags=0,keywordFlags=8192,name="MineThrowCount",type="BASE",value=1}},nil} c["Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence"]={{[1]={[1]={stat="Int",threshold=800,type="StatThreshold"},flags=0,keywordFlags=8192,name="MineThrowCount",type="BASE",value=1}},nil} -c["Skills which throw Traps Cost Life instead of Mana"]={{[1]={[1]={skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="CostLifeInsteadOfMana",type="FLAG",value=true}},nil} +c["Skills which throw Traps Cost Life instead of Mana"]={{[1]={[1]={skillType=33,type="SkillType"},flags=0,keywordFlags=0,name="CostLifeInsteadOfMana",type="FLAG",value=true}},nil} c["Socketed Curse Gems have 30% increased Reservation Efficiency"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=30}}}},nil} c["Socketed Curse Gems have 50% increased Reservation Efficiency"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=50}}}},nil} c["Socketed Curse Gems have 80% increased Reservation Efficiency"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=80}}}},nil} @@ -11536,6 +11612,7 @@ c["Socketed Gems are Supported by Level 10 Cluster Traps"]={{[1]={[1]={slotName= c["Socketed Gems are Supported by Level 10 Cold Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportColdPenetration"}}},nil} c["Socketed Gems are Supported by Level 10 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportColdToFire"}}},nil} c["Socketed Gems are Supported by Level 10 Combustion"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCombustion"}}},nil} +c["Socketed Gems are Supported by Level 10 Communion"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMinionPact"}}},nil} c["Socketed Gems are Supported by Level 10 Companionship"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCompanionship"}}},nil} c["Socketed Gems are Supported by Level 10 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportConcentratedEffect"}}},nil} c["Socketed Gems are Supported by Level 10 Congregation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCongregation"}}},nil} @@ -11543,8 +11620,10 @@ c["Socketed Gems are Supported by Level 10 Controlled Blaze"]={{[1]={[1]={slotNa c["Socketed Gems are Supported by Level 10 Controlled Destruction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportControlledDestruction"}}},nil} c["Socketed Gems are Supported by Level 10 Cooldown Recovery"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCooldownRecovery"}}},nil} c["Socketed Gems are Supported by Level 10 Corrupting Cry"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCorruptingCry"}}},nil} +c["Socketed Gems are Supported by Level 10 Coursing Current"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCrustaceousGrasp"}}},nil} c["Socketed Gems are Supported by Level 10 Critical Strike Affliction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCriticalStrikeAffliction"}}},nil} c["Socketed Gems are Supported by Level 10 Cruelty"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCruelty"}}},nil} +c["Socketed Gems are Supported by Level 10 Crystalfall"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCrystalfall"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredSupportCrystalfall"}}},nil} c["Socketed Gems are Supported by Level 10 Culling Strike"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCullingStrike"}}},nil} c["Socketed Gems are Supported by Level 10 Cursed Ground"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCursedGround"}}},nil} c["Socketed Gems are Supported by Level 10 Damage on Full Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportDamageOnFullLife"}}},nil} @@ -11631,7 +11710,6 @@ c["Socketed Gems are Supported by Level 10 Melee Splash"]={{[1]={[1]={slotName=" c["Socketed Gems are Supported by Level 10 Minefield"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMinefield"}}},nil} c["Socketed Gems are Supported by Level 10 Minion Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMinionDamage"}}},nil} c["Socketed Gems are Supported by Level 10 Minion Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMinionLife"}}},nil} -c["Socketed Gems are Supported by Level 10 Minion Pact"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMinionPact"}}},nil} c["Socketed Gems are Supported by Level 10 Minion Speed"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMinionSpeed"}}},nil} c["Socketed Gems are Supported by Level 10 Mirage Archer"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMirageArcher"}}},nil} c["Socketed Gems are Supported by Level 10 Momentum"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMomentum"}}},nil} @@ -11798,6 +11876,7 @@ c["Socketed Gems are Supported by Level 35 Cluster Traps"]={{[1]={[1]={slotName= c["Socketed Gems are Supported by Level 35 Cold Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportColdPenetration"}}},nil} c["Socketed Gems are Supported by Level 35 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportColdToFire"}}},nil} c["Socketed Gems are Supported by Level 35 Combustion"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCombustion"}}},nil} +c["Socketed Gems are Supported by Level 35 Communion"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMinionPact"}}},nil} c["Socketed Gems are Supported by Level 35 Companionship"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCompanionship"}}},nil} c["Socketed Gems are Supported by Level 35 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportConcentratedEffect"}}},nil} c["Socketed Gems are Supported by Level 35 Congregation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCongregation"}}},nil} @@ -11805,8 +11884,10 @@ c["Socketed Gems are Supported by Level 35 Controlled Blaze"]={{[1]={[1]={slotNa c["Socketed Gems are Supported by Level 35 Controlled Destruction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportControlledDestruction"}}},nil} c["Socketed Gems are Supported by Level 35 Cooldown Recovery"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCooldownRecovery"}}},nil} c["Socketed Gems are Supported by Level 35 Corrupting Cry"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCorruptingCry"}}},nil} +c["Socketed Gems are Supported by Level 35 Coursing Current"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCrustaceousGrasp"}}},nil} c["Socketed Gems are Supported by Level 35 Critical Strike Affliction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCriticalStrikeAffliction"}}},nil} c["Socketed Gems are Supported by Level 35 Cruelty"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCruelty"}}},nil} +c["Socketed Gems are Supported by Level 35 Crystalfall"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCrystalfall"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=35,skillId="TriggeredSupportCrystalfall"}}},nil} c["Socketed Gems are Supported by Level 35 Culling Strike"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCullingStrike"}}},nil} c["Socketed Gems are Supported by Level 35 Cursed Ground"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportCursedGround"}}},nil} c["Socketed Gems are Supported by Level 35 Damage on Full Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportDamageOnFullLife"}}},nil} @@ -11893,7 +11974,6 @@ c["Socketed Gems are Supported by Level 35 Melee Splash"]={{[1]={[1]={slotName=" c["Socketed Gems are Supported by Level 35 Minefield"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMinefield"}}},nil} c["Socketed Gems are Supported by Level 35 Minion Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMinionDamage"}}},nil} c["Socketed Gems are Supported by Level 35 Minion Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMinionLife"}}},nil} -c["Socketed Gems are Supported by Level 35 Minion Pact"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMinionPact"}}},nil} c["Socketed Gems are Supported by Level 35 Minion Speed"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMinionSpeed"}}},nil} c["Socketed Gems are Supported by Level 35 Mirage Archer"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMirageArcher"}}},nil} c["Socketed Gems are Supported by Level 35 Momentum"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMomentum"}}},nil} @@ -12030,7 +12110,7 @@ c["Socketed Vaal Skills have 50% increased Aura Effect"]={{[1]={[1]={keyword="va c["Socketed Vaal Skills have 60% increased Area of Effect"]={{[1]={[1]={keyword="vaal",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=60}}}},nil} c["Socketed Vaal Skills have 80% increased Projectile Speed"]={{[1]={[1]={keyword="vaal",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=80}}}},nil} c["Socketed Vaal Skills have 80% increased Skill Effect Duration"]={{[1]={[1]={keyword="vaal",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Duration",type="INC",value=80}}}},nil} -c["Socketed Vaal Skills require 30% less Souls per Use"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SoulCost",type="MORE",value=-30}}}},nil} +c["Socketed Vaal Skills require 30% less Souls per Use"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=38,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SoulCost",type="MORE",value=-30}}}},nil} c["Socketed Warcry Skills have +1 Cooldown Use"]={{[1]={[1]={keyword="warcry",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="AdditionalCooldownUses",type="BASE",value=1}}}},nil} c["Sockets cannot be modified"]={nil,"Sockets cannot be modified "} c["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems "} @@ -12082,7 +12162,7 @@ c["Staff Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags c["Staff Attacks deal 15% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=15}},nil} c["Staff Attacks deal 16% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=16}},nil} c["Staff Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=30}},nil} -c["Stance Skills have +6 seconds to Cooldown"]={{[1]={[1]={skillType=104,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="BASE",value=6}},nil} +c["Stance Skills have +6 seconds to Cooldown"]={{[1]={[1]={skillType=93,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="BASE",value=6}},nil} c["Starts Energy Shield Recharge when Used"]={nil,"Starts Energy Shield Recharge when Used "} c["Starts Energy Shield Recharge when Used Energy Shield Recharge is not delayed by Damage during Effect"]={nil,"Starts Energy Shield Recharge when Used Energy Shield Recharge is not delayed by Damage during Effect "} c["Steal Power, Frenzy, and Endurance Charges on Hit"]={nil,"Steal Power, Frenzy, and Endurance Charges on Hit "} @@ -12138,14 +12218,14 @@ c["Summoned Arbalists' Projectiles Fork"]={{[1]={[1]={skillName="Summon Arbalist c["Summoned Arbalists' Projectiles Pierce 4 additional Targets"]={{[1]={[1]={skillName="Summon Arbalists",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=4}}}},nil} c["Summoned Arbalists' Projectiles Split into 3"]={nil,"Summoned Arbalists' Projectiles Split into 3 "} c["Summoned Arbalists' Projectiles Split into 3 Summoned Arbalists gain 40% of Physical Damage as Extra Cold Damage"]={nil,"Summoned Arbalists' Projectiles Split into 3 Summoned Arbalists gain 40% of Physical Damage as Extra Cold Damage "} -c["Summoned Golems Regenerate 2% of their Life per second"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil} +c["Summoned Golems Regenerate 2% of their Life per second"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil} c["Summoned Golems are Aggressive"]={nil,"Summoned Golems are Aggressive "} -c["Summoned Golems are Immune to Elemental Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Elemancer",type="FLAG",value=true}}},[2]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-100}}}},nil} +c["Summoned Golems are Immune to Elemental Damage"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Elemancer",type="FLAG",value=true}}},[2]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-100}}}},nil} c["Summoned Golems are Resummoned 4 seconds after being Killed"]={nil,"Summoned Golems are Resummoned 4 seconds after being Killed "} c["Summoned Golems are Resummoned 4 seconds after being Killed +2 to maximum number of Summoned Golems"]={nil,"Summoned Golems are Resummoned 4 seconds after being Killed +2 to maximum number of Summoned Golems "} -c["Summoned Golems have 15% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}}},nil} -c["Summoned Golems have 38% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=38}}}},nil} -c["Summoned Golems have 45% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=45}}}},nil} +c["Summoned Golems have 15% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}}},nil} +c["Summoned Golems have 38% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=38}}}},nil} +c["Summoned Golems have 45% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=51,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=45}}}},nil} c["Summoned Holy Relics have 23% reduced Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Holy Relic",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-23}}}},nil} c["Summoned Holy Relics have 25% reduced Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Holy Relic",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-25}}}},nil} c["Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy"]={nil,"Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy "} @@ -12195,6 +12275,8 @@ c["Sword Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={flags c["Sword Attacks deal 35% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=35}},nil} c["Take 100 Fire Damage when you Ignite an Enemy"]={{[1]={flags=0,keywordFlags=0,name="EyeOfInnocenceSelfDamage",type="LIST",value={baseDamage=100,damageType="fire"}}},nil} c["Take 10000 Fire Damage per Second while Flame-Touched"]={{[1]={[1]={type="Condition",var="AffectedByApproachingFlames"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=10000}},nil} +c["Take 15% more damage from Non-Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=15}}," from Non-Critical Strikes "} +c["Take 15% more damage from Non-Critical Strikes Take 30% less damage from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=15}}," from Non-Critical Strikes Take 30% less damage "} c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},[2]={type="Condition",var="UsedSkillRecently"},flags=0,keywordFlags=0,name="PhysicalDegen",type="BASE",value=150}},nil} c["Take 150 Physical Damage when you use a Movement Skill"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=150}},nil} c["Take 200 Physical Damage when you use a Movement Skill"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=200}},nil} @@ -12202,6 +12284,7 @@ c["Take 25% less Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type= c["Take 250 Chaos Damage per Second during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=250}},nil} c["Take 250 Lightning Damage when Herald of Thunder Hits an Enemy"]={{[1]={flags=0,keywordFlags=0,name="StormSecretSelfDamage",type="LIST",value={baseDamage=250,damageType="lightning"}}},nil} c["Take 30 Chaos Damage per Second during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=30}},nil} +c["Take 30% less damage from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-30}},nil} c["Take 40% less Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-40}}," from Hits "} c["Take 40% less Damage from Hits Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-40}}," from Hits Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit "} c["Take 40% less Damage from Hits Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit Non-Cluster, Non-Passage Jewels Socketed in your Passive Skill Tree have no effect"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-40}}," from Hits Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit Non-Cluster, Non-Passage Jewels Socketed in your Passive Skill Tree have no effect "} @@ -12224,7 +12307,7 @@ c["Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the pas c["Taking Chaos Damage over Time heals you instead while Leeching Life"]={nil,"Taking Chaos Damage over Time heals you instead while Leeching Life "} c["Targets affected by Maim you inflict cannot deal Critical Strikes"]={nil,"Targets affected by Maim you inflict cannot deal Critical Strikes "} c["Targets affected by Maim you inflict cannot deal Critical Strikes Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance"]={nil,"Targets affected by Maim you inflict cannot deal Critical Strikes Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance "} -c["Targets are Unaffected by your Hexes"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="MORE",value=-100}},nil} +c["Targets are Unaffected by your Hexes"]={{[1]={[1]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="MORE",value=-100}},nil} c["Taunt on Hit"]={nil,"Taunt on Hit "} c["Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills"]={nil,"Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills "} c["Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills Your Hits permanently Intimidate Enemies that are on Full Life "} @@ -12239,8 +12322,8 @@ c["Templar: Damage Penetrates 5% Elemental Resistances"]={{[1]={[1]={type="Condi c["Temporal Chains can affect Hexproof Enemies"]={{[1]={[1]={skillId="TemporalChains",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} c["Temporal Chains has 30% reduced Effect on you"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-30}},nil} c["Temporal Chains has 50% reduced Effect on you"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil} -c["Temporal Chains has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} -c["Temporal Rift has no Reservation"]={{[1]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Temporal Chains has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Temporal Rift has no Reservation"]={{[1]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Thaumaturgical Lure"]={nil,"Thaumaturgical Lure "} c["Thaumaturgical Lure 40% increased Quantity of Fish Caught"]={nil,"Thaumaturgical Lure 40% increased Quantity of Fish Caught "} c["The Agnostic"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="The Agnostic"}},nil} @@ -12303,7 +12386,7 @@ c["Traps cannot be triggered by Enemies Traps from Skills are thrown randomly ar c["Traps from Skills are thrown randomly around targeted location"]={nil,"Traps from Skills are thrown randomly around targeted location "} c["Traps from Socketed Skills create a Smoke Cloud when triggered"]={nil,"Traps from Socketed Skills create a Smoke Cloud when triggered "} c["Traps from Socketed Skills create a Smoke Cloud when triggered Trigger Level 20 Fog of War when your Trap is triggered"]={nil,"Traps from Socketed Skills create a Smoke Cloud when triggered Trigger Level 20 Fog of War when your Trap is triggered "} -c["Travel Skills other than Dash are Disabled"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillId="Dash",type="SkillId"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} +c["Travel Skills other than Dash are Disabled"]={{[1]={[1]={skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillId="Dash",type="SkillId"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} c["Treats Enemy Monster Chaos Resistance values as inverted"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="HitsInvertChaosResChance",type="CHANCE",value=100}},nil} c["Treats Enemy Monster Elemental Resistance values as inverted"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="HitsInvertEleResChance",type="CHANCE",value=100}},nil} c["Trigger Commandment of Inferno on Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="UniqueEnchantmentOfInfernoOnCrit",triggered=true}},[2]={[1]={skillId="UniqueEnchantmentOfInfernoOnCrit",type="SkillId"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="triggerOnCrit",value=true}}}}},nil} @@ -12403,7 +12486,7 @@ c["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0, c["Trigger level 20 Suspend in Time on Casting a Spell"]={nil,"Trigger level 20 Suspend in Time on Casting a Spell "} c["Trigger level 20 Suspend in Time on Casting a Spell 80% increased Spell Damage"]={nil,"Trigger level 20 Suspend in Time on Casting a Spell 80% increased Spell Damage "} c["Trigger level 25 Ceaseless Flesh once every second"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="CeaselessFleshUnique",triggered=true}}},nil} -c["Triggered Spells Poison on Hit"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=131072,name="PoisonChance",type="BASE",value=100}},nil} +c["Triggered Spells Poison on Hit"]={{[1]={[1]={skillType=37,type="SkillType"},flags=0,keywordFlags=131072,name="PoisonChance",type="BASE",value=100}},nil} c["Triggers Drowning Domain when Allocated"]={nil,"Triggers Drowning Domain when Allocated "} c["Triggers Level 15 Manifest Dancing Dervishes on Rampage"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="ManifestDancingDervishes",triggered=true}}},nil} c["Triggers Level 20 Blinding Aura when Equipped"]={{},nil} @@ -12473,9 +12556,9 @@ c["Uses both hand slots"]={{[1]={[1]={slotName="Weapon 2",type="DisablesItem"},[ c["Utility Flasks are Disabled"]={{[1]={flags=0,keywordFlags=0,name="UtilityFlasksDoNotApplyToPlayer",type="FLAG",value=true}},nil} c["Utility Flasks gain 2 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="UtilityFlaskChargesGenerated",type="BASE",value=0.66666666666667}},nil} c["Utility Flasks gain 3 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="UtilityFlaskChargesGenerated",type="BASE",value=1}},nil} -c["Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls"]={{[1]={[1]={skillType=42,type="SkillType"},flags=1,keywordFlags=0,name="CostRageInsteadOfSouls",type="FLAG",value=true}},nil} +c["Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls"]={{[1]={[1]={skillType=38,type="SkillType"},flags=1,keywordFlags=0,name="CostRageInsteadOfSouls",type="FLAG",value=true}},nil} c["Vaal Pact"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},nil} -c["Vaal Skills can store +1 Use"]={{[1]={[1]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalUses",type="BASE",value=1}},nil} +c["Vaal Skills can store +1 Use"]={{[1]={[1]={skillType=38,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalUses",type="BASE",value=1}},nil} c["Vaal Skills deal 1% more Damage per Soul Required"]={{[1]={[1]={stat="SoulCost",type="PerStat"},flags=0,keywordFlags=512,name="Damage",type="MORE",value=1}},nil} c["Vaal Skills deal 40% more Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=512,name="Damage",type="MORE",value=40}},nil} c["Vaal Skills have 18% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=512,name="Duration",type="INC",value=18}},nil} @@ -12488,13 +12571,13 @@ c["Vaal Skills require 30% less Souls per Use"]={{[1]={flags=0,keywordFlags=512, c["Vaal Skills require 40% increased Souls per Use"]={{[1]={flags=0,keywordFlags=512,name="SoulCost",type="INC",value=40}},nil} c["Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention "} c["Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges during Effect of any Soul Ripper Flask"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges during Effect of any Soul Ripper Flask "} -c["Vaal Skills used during effect have 10% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-10}},nil} -c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-40}},nil} +c["Vaal Skills used during effect have 10% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={skillType=38,type="SkillType"},flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-10}},nil} +c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={skillType=38,type="SkillType"},flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-40}},nil} c["Versatile Combatant"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Versatile Combatant"}},nil} -c["Vitality has no Reservation"]={{[1]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Vitality has no Reservation"]={{[1]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Voracious Flame"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Voracious Flame"}},nil} c["Vulnerability can affect Hexproof Enemies"]={{[1]={[1]={skillId="Vulnerability",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} -c["Vulnerability has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Vulnerability has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=39,type="SkillType"},[3]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Wand Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=8390656,keywordFlags=0,name="Damage",type="INC",value=12}},nil} c["Wand Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=8388608,keywordFlags=786432,name="Damage",type="INC",value=12}},nil} c["Wand Attacks deal 16% increased Damage with Hits and Ailments"]={{[1]={flags=8388608,keywordFlags=786432,name="Damage",type="INC",value=16}},nil} @@ -12513,12 +12596,12 @@ c["Warcries have 10% chance to Exert 3 additional Attacks"]={{[1]={flags=0,keywo c["Warcries have 5% Chance to grant an Endurance, Frenzy or Power Charge per Power"]={nil,"Warcries have 5% Chance to grant an Endurance, Frenzy or Power Charge per Power "} c["Warcries have a minimum of 10 Power"]={{[1]={flags=0,keywordFlags=0,name="MinimumWarcryPower",type="BASE",value=10}},nil} c["Warcries have infinite Power"]={{[1]={flags=0,keywordFlags=0,name="WarcryInfinitePower",type="FLAG",value=true}},nil} -c["Warcry Skills have 15% increased Area of Effect"]={{[1]={[1]={skillType=73,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} -c["Warcry Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=73,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} -c["Warcry Skills have 25% increased Area of Effect"]={{[1]={[1]={skillType=73,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} -c["Warcry Skills have 30% increased Area of Effect"]={{[1]={[1]={skillType=73,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} -c["Warcry Skills have 35% increased Area of Effect"]={{[1]={[1]={skillType=73,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=35}},nil} -c["Warcry Skills have 40% increased Area of Effect"]={{[1]={[1]={skillType=73,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil} +c["Warcry Skills have 15% increased Area of Effect"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil} +c["Warcry Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} +c["Warcry Skills have 25% increased Area of Effect"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} +c["Warcry Skills have 30% increased Area of Effect"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} +c["Warcry Skills have 35% increased Area of Effect"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=35}},nil} +c["Warcry Skills have 40% increased Area of Effect"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil} c["Warcry Skills' Cooldown Time is 4 seconds"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="OVERRIDE",value=4}},nil} c["Ward does not Break during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:WardNotBreak",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:UnbrokenWard",type="FLAG",value=true}},nil} c["Ward has a 60% chance to not Break"]={{[1]={flags=0,keywordFlags=0,name="WardAvoidBreakChance",type="BASE",value=60}},nil} @@ -12565,7 +12648,7 @@ c["While not on Full Life, Sacrifice 20% of Mana per Second to Recover that much c["While on Low Life, Life Flasks gain 5 Charges every 3 seconds"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=1.6666666666667}},nil} c["While on Low Life, Life Flasks gain 6 Charges every 3 seconds"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=2}},nil} c["While there are at least five nearby Allies, you and nearby Allies have Onslaught"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Onslaught",type="FLAG",value=true}}}},nil} -c["While you have Unbroken Ward, your next non-channelling Attack you Use yourself breaks your Ward to gain Added Cold Damage equal to 25% of Ward"]={{[1]={[1]={percent=25,stat="Ward",type="PercentStat"},[2]={neg=true,skillType=57,type="SkillType"},[3]={skillType=1,type="SkillType"},[4]={neg=true,type="Condition",var="WardNotBreak"},[5]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=1},[2]={[1]={percent=25,stat="Ward",type="PercentStat"},[2]={neg=true,skillType=57,type="SkillType"},[3]={skillType=1,type="SkillType"},[4]={neg=true,type="Condition",var="WardNotBreak"},[5]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=1}},nil} +c["While you have Unbroken Ward, your next non-channelling Attack you Use yourself breaks your Ward to gain Added Cold Damage equal to 25% of Ward"]={{[1]={[1]={percent=25,stat="Ward",type="PercentStat"},[2]={neg=true,skillType=48,type="SkillType"},[3]={skillType=1,type="SkillType"},[4]={neg=true,type="Condition",var="WardNotBreak"},[5]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=1},[2]={[1]={percent=25,stat="Ward",type="PercentStat"},[2]={neg=true,skillType=48,type="SkillType"},[3]={skillType=1,type="SkillType"},[4]={neg=true,type="Condition",var="WardNotBreak"},[5]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=1}},nil} c["While you have at least 3 Ghastly Eye Jewels socketed:"]={nil,"While you have at least 3 Ghastly Eye Jewels socketed: "} c["While you have at least 3 Ghastly Eye Jewels socketed: Unholy Might you grant also causes target's Damage to Penetrate 10% Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosPenetration",type="BASE",value=10}},"While you have at least 3 Ghastly Eye Jewels socketed: you grant also causes target's Damage to "} c["While you have at least 3 Ghastly Eye Jewels socketed: Unholy Might you grant also causes target's Damage to Penetrate 10% Chaos Resistance Unholy Might you grant also applies 20% Increased Effect of Withered"]={{[1]={flags=0,keywordFlags=0,name="ChaosPenetration",type="BASE",value=10}},"While you have at least 3 Ghastly Eye Jewels socketed: you grant also causes target's Damage to Unholy Might you grant also applies 20% Increased Effect of Withered "} @@ -12684,7 +12767,7 @@ c["Withered you Inflict expires 10% slower"]={nil,"Withered you Inflict expires c["Wrath has 50% increased Aura Effect while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},[2]={includeTransfigured=true,skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}},nil} c["Wrath has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Wrath has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} -c["Wrath has no Reservation"]={{[1]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Wrath has no Reservation"]={{[1]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Writhing Worms are destroyed when Hit"]={nil,"Writhing Worms are destroyed when Hit "} c["You always Ignite while Burning"]={{[1]={[1]={type="Condition",var="Burning"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}},nil} c["You and Allies near your Banner Regenerate 0.1% of Life per second for each Valour consumed for that Banner"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={[1]={type="Condition",var="AffectedByPlacedBanner"},[2]={type="Multiplier",var="BannerValour"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.1}}}},nil} @@ -12752,7 +12835,7 @@ c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills "} c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage "} c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "} -c["You can't deal Damage with Skills yourself"]={{[1]={[1]={neg=true,skillTypeList={[1]=30,[2]=40,[3]=36},type="SkillType"},[2]={neg=true,type="Condition",var="usedByMirage"},flags=0,keywordFlags=0,name="DealNoDamage",type="FLAG",value=true}},nil} +c["You can't deal Damage with Skills yourself"]={{[1]={[1]={neg=true,skillTypeList={[1]=26,[2]=36,[3]=33},type="SkillType"},[2]={neg=true,type="Condition",var="usedByMirage"},flags=0,keywordFlags=0,name="DealNoDamage",type="FLAG",value=true}},nil} c["You cannot Cast Socketed Hex Curse Skills"]={nil,"You cannot Cast Socketed Hex Curse Skills "} c["You cannot Cast Socketed Hex Curse Skills Inflict Socketed Hexes on Enemies that trigger your Traps"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportCurseOnTrapTriggered"}}},nil} c["You cannot be Chilled for 3 seconds after being Chilled"]={nil,"You cannot be Chilled for 3 seconds after being Chilled "} @@ -12913,11 +12996,11 @@ c["You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to c["You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="Elusive"},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=100}},nil} c["Your Action Speed is at least 90% of base value"]={{[1]={flags=0,keywordFlags=0,name="MinimumActionSpeed",type="MAX",value=90}},nil} c["Your Aura Buffs do not affect allies"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasCannotAffectAllies",type="FLAG",value=true}},nil} -c["Your Aura Skills are Disabled"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil} +c["Your Aura Skills are Disabled"]={{[1]={[1]={skillType=39,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil} c["Your Banner Buffs Linger on you for 3 seconds after you leave the Area"]={nil,"Your Banner Buffs Linger on you for 3 seconds after you leave the Area "} c["Your Banner Buffs Linger on you for 3 seconds after you leave the Area Banner Skills have 20% increased Duration"]={nil,"Your Banner Buffs Linger on you for 3 seconds after you leave the Area Banner Skills have 20% increased Duration "} c["Your Bleeding does not deal extra Damage while the Enemy is moving and cannot be Aggravated"]={{[1]={flags=0,keywordFlags=0,name="Condition:NoExtraBleedDamageToMovingEnemy",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="Condition:CannotAggravate",type="FLAG",value=true}},nil} -c["Your Blessing Skills are Disabled"]={{[1]={[1]={skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil} +c["Your Blessing Skills are Disabled"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil} c["Your Chaos Damage Poisons Enemies"]={{[1]={flags=0,keywordFlags=0,name="ChaosPoisonChance",type="BASE",value=100}},nil} c["Your Chaos Damage can Chill"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil} c["Your Chaos Damage can Freeze"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanFreeze",type="FLAG",value=true}},nil} @@ -12939,8 +13022,8 @@ c["Your Critical Strikes do not deal extra Damage"]={{[1]={flags=0,keywordFlags= c["Your Critical Strikes do not deal extra Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil} c["Your Critical Strikes have a 5% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChanceOnCrit",type="BASE",value=5}},nil} c["Your Curse Limit is equal to your maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="CurseLimitIsMaximumPowerCharges",type="FLAG",value=true}},nil} -c["Your Curses have 20% increased Effect if 50% of Curse Duration expired"]={{[1]={[1]={actor="enemy",threshold=50,type="MultiplierThreshold",var="CurseExpired"},[2]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} -c["Your Curses have 25% increased Effect if 50% of Curse Duration expired"]={{[1]={[1]={actor="enemy",threshold=50,type="MultiplierThreshold",var="CurseExpired"},[2]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=25}},nil} +c["Your Curses have 20% increased Effect if 50% of Curse Duration expired"]={{[1]={[1]={actor="enemy",threshold=50,type="MultiplierThreshold",var="CurseExpired"},[2]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} +c["Your Curses have 25% increased Effect if 50% of Curse Duration expired"]={{[1]={[1]={actor="enemy",threshold=50,type="MultiplierThreshold",var="CurseExpired"},[2]={skillType=97,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=25}},nil} c["Your Damage with Critical Strikes is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritLucky",type="FLAG",value=true}},nil} c["Your Damage with Hits is Lucky"]={{[1]={flags=0,keywordFlags=0,name="LuckyHits",type="FLAG",value=true}},nil} c["Your Elemental Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="ColdCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true}},nil} @@ -12949,7 +13032,7 @@ c["Your Energy Shield starts at zero"]={nil,"Your Energy Shield starts at zero " c["Your Fire Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="FireCanPoison",type="FLAG",value=true}},nil} c["Your Fire Damage can Shock but not Ignite"]={{[1]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCannotIgnite",type="FLAG",value=true}},nil} c["Your Hexes can affect Hexproof Enemies"]={{[1]={flags=0,keywordFlags=0,name="CursesIgnoreHexproof",type="FLAG",value=true}},nil} -c["Your Hexes have infinite Duration"]={{[1]={[1]={skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="BASE",value=math.huge}},nil} +c["Your Hexes have infinite Duration"]={{[1]={[1]={skillType=69,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="BASE",value=math.huge}},nil} c["Your Hits Intimidate Enemies for 4 seconds while you are using Pride"]={{[1]={[1]={type="Condition",var="AffectedByPride"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Intimidated",type="FLAG",value=true}}}},nil} c["Your Hits always inflict Freeze, Shock and Ignite while Unbound"]={{[1]={[1]={type="Condition",var="Unbound"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=100},[2]={[1]={type="Condition",var="Unbound"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100},[3]={[1]={type="Condition",var="Unbound"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}},nil} c["Your Hits are always Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil} @@ -13021,11 +13104,9 @@ c["Your spells have 100% chance to Shock against Frozen Enemies"]={nil,"Your spe c["Zealot's Oath"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil} c["Zealot's Oath during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil} c["Zealotry has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Zealotry",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} -c["Zealotry has no Reservation"]={{[1]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Zealotry has no Reservation"]={{[1]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Zombies' Slam Attack has 100% increased Cooldown Recovery Rate"]={nil,"Zombies' Slam Attack has 100% increased Cooldown Recovery Rate "} c["Zombies' Slam Attack has 100% increased Cooldown Recovery Rate With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"Zombies' Slam Attack has 100% increased Cooldown Recovery Rate With at least 40 Intelligence in Radius, Raised Zombies' Slam "} -c["[0-4 consumed abyssal jewel modifiers]"]={nil,"[0-4 consumed abyssal jewel modifiers] "} -c["[0-4 consumed abyssal jewel modifiers] Socketed Rare Abyssal Jewels will be Consumed"]={nil,"[0-4 consumed abyssal jewel modifiers] Socketed Rare Abyssal Jewels will be Consumed "} c["affected by Purity of Elements"]={nil,"affected by Purity of Elements "} c["affected by Purity of Elements 12% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements"]={nil,"affected by Purity of Elements 12% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements "} c["also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"also grant an equal chance to gain a Frenzy Charge on Kill "} @@ -13076,13 +13157,5 @@ c["used if you've Hit an enemy with a Weapon Recently"]={nil,"used if you've Hit c["wielding a Bow, with a 1 second Cooldown"]={nil,"wielding a Bow, with a 1 second Cooldown "} c["wielding a Bow, with a 1 second Cooldown 12% increased Cast Speed"]={nil,"wielding a Bow, with a 1 second Cooldown 12% increased Cast Speed "} c["you consume a total of 8 Steel Shards"]={nil,"you consume a total of 8 Steel Shards "} -c["your Minions cannot be Reflected"]={nil,"your Minions cannot be Reflected "} -c["your Minions cannot be Reflected Left ring slot: 100% of Elemental Hit Damage from you and"]={nil,"your Minions cannot be Reflected Left ring slot: 100% of Elemental Hit Damage from you and "} -c["your Minions cannot be Reflected Left ring slot: 40% of Elemental Hit Damage from you and"]={nil,"your Minions cannot be Reflected Left ring slot: 40% of Elemental Hit Damage from you and "} -c["your Minions cannot be Reflected Left ring slot: 80% of Elemental Hit Damage from you and"]={nil,"your Minions cannot be Reflected Left ring slot: 80% of Elemental Hit Damage from you and "} -c["your Minions cannot be Reflected Right ring slot: 100% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 100% of Physical Hit Damage from you and "} -c["your Minions cannot be Reflected Right ring slot: 30% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 30% of Physical Hit Damage from you and "} -c["your Minions cannot be Reflected Right ring slot: 40% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 40% of Physical Hit Damage from you and "} -c["your Minions cannot be Reflected Right ring slot: 80% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 80% of Physical Hit Damage from you and "} c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers "} c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "} diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 44d73325df..9becc922f0 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -2,317 +2,375 @@ -- Item data (c) Grinding Gear Games return { - ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(2-5)% increased Movement Speed" }, } }, - ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-20)% increased Damage" }, } }, - ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+(1-2) to Level of Socketed Vaal Gems" }, } }, - ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(10-5) Physical Damage taken from Attack Hits" }, } }, - ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(16-11) Physical Damage taken from Attack Hits" }, } }, - ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(24-17) Physical Damage taken from Attack Hits" }, } }, - ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, - ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-6)% increased Cast Speed" }, } }, - ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3181974858] = { "5% chance to Cause Monsters to Flee" }, } }, - ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(2-4)% Chance to Block Attack Damage" }, } }, - ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-2) to (3-5) Chaos Damage" }, } }, - ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1390 }, level = 20, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (6-8) to (11-13) Chaos Damage" }, } }, - ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1390 }, level = 40, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-11) to (19-23) Chaos Damage" }, } }, - ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrder = { 1387 }, level = 20, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (3-4) to (6-8) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrder = { 1387 }, level = 40, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (11-13) Chaos Damage to Attacks" }, } }, - ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(2-4)% Chance to Block Spell Damage" }, } }, - ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-8)% increased Attack Speed" }, } }, - ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(6-12)% increased Elemental Damage with Attack Skills" }, } }, - ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(3-6)% of Damage taken Recouped as Mana" }, } }, - ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(10-20)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(10-20)% chance to Avoid being Ignited" }, } }, - ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(2-4)% to Chaos Resistance" }, } }, - ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(3-6)% chance to Suppress Spell Damage" }, } }, - ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrder = { 1521 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(10-20)% chance to Avoid being Shocked" }, } }, - ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, - ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(3-5)% of Damage is taken from Mana before Life" }, } }, - ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(10-20)% of Physical Damage Converted to Fire Damage" }, } }, - ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(10-20)% of Physical Damage Converted to Cold Damage" }, } }, - ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "MonsterConvertPhysicalDamageToLightning", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(10-20)% of Physical Damage Converted to Lightning Damage" }, } }, - ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, - ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-8)% increased Skill Effect Duration" }, } }, - ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to 1 additional Trap placed at a time" }, } }, - ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(3-6)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 1, group = "AdditionalArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, - ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, - ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrder = { 477 }, level = 35, group = "SupportedByCastOnStun", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1079148723] = { "Socketed Gems are supported by Level 12 Cast when Stunned" }, } }, - ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrder = { 472 }, level = 35, group = "SupportedByCastOnCrit", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 12 Cast On Critical Strike" }, } }, - ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 20, group = "SupportedByMeleeSplash", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 10 Melee Splash" }, } }, - ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrder = { 462 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 12 Added Fire Damage" }, } }, - ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrder = { 479 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [689720069] = { "Socketed Gems are supported by Level 6 Stun" }, } }, - ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.1-0.2) metres to Weapon Range" }, } }, - ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 95% Cost & Reservation Multiplier" }, } }, - ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrder = { 466 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 1 Elemental Proliferation" }, } }, - ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrder = { 480 }, level = 48, group = "SupportedByAccuracy", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 12 Additional Accuracy" }, } }, - ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 481 }, level = 28, group = "SupportedByMultistrike", weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2501237765] = { "Socketed Gems are supported by Level 1 Multistrike" }, } }, - ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrder = { 224 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 1 Increased Area of Effect" }, } }, - ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } }, - ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrder = { 485 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 14 Increased Critical Damage" }, } }, - ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrder = { 486 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2062753054] = { "Socketed Gems are supported by Level 1 Fork" }, } }, - ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrder = { 487 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2532625478] = { "Socketed Gems are supported by Level 12 Elemental Damage with Attacks" }, } }, - ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, - ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrder = { 645 }, level = 45, group = "PuritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 15 Purity of Elements Skill" }, } }, - ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrder = { 647 }, level = 31, group = "CriticalWeaknessSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3736925508] = { "Grants Level 10 Assassin's Mark Skill" }, } }, - ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrder = { 623 }, level = 45, group = "PurityOfFireSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 15 Purity of Fire Skill" }, } }, - ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrder = { 629 }, level = 45, group = "PurityOfColdSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 15 Purity of Ice Skill" }, } }, - ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrder = { 631 }, level = 45, group = "PurityOfLightningSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 15 Purity of Lightning Skill" }, } }, - ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrder = { 648 }, level = 28, group = "WrathSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 7 Wrath Skill" }, } }, - ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrder = { 649 }, level = 44, group = "HatredSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 11 Hatred Skill" }, } }, - ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrder = { 650 }, level = 56, group = "AngerSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 15 Anger Skill" }, } }, - ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrder = { 651 }, level = 61, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [4265392510] = { "Grants Level 16 Determination Skill" }, } }, - ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrder = { 652 }, level = 61, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2867050084] = { "Grants Level 16 Grace Skill" }, } }, - ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrder = { 654 }, level = 61, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2341269061] = { "Grants Level 16 Discipline Skill" }, } }, - ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Sniper's Mark Skill", statOrder = { 658 }, level = 58, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 15 Sniper's Mark Skill" }, } }, - ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrder = { 659 }, level = 31, group = "ElementalWeaknessSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3792821911] = { "Grants Level 10 Elemental Weakness Skill" }, } }, - ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrder = { 661 }, level = 31, group = "VulnerabilitySkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1447222021] = { "Grants Level 10 Vulnerability Skill" }, } }, - ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrder = { 641 }, level = 19, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 4 Clarity Skill" }, } }, - ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrder = { 641 }, level = 32, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 8 Clarity Skill" }, } }, - ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrder = { 641 }, level = 47, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 12 Clarity Skill" }, } }, - ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrder = { 641 }, level = 59, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 16 Clarity Skill" }, } }, - ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrder = { 637 }, level = 46, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 14 Frostbite Skill" }, } }, - ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrder = { 632 }, level = 46, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2209668839] = { "Grants Level 14 Flammability Skill" }, } }, - ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrder = { 636 }, level = 46, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [461472247] = { "Grants Level 14 Conductivity Skill" }, } }, - ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrder = { 638 }, level = 40, group = "TemporalChainsSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [940324562] = { "Grants Level 14 Temporal Chains Skill" }, } }, - ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrder = { 639 }, level = 40, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1188846263] = { "Grants Level 14 Haste Skill" }, } }, - ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } }, - ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrder = { 643 }, level = 35, group = "VitalitySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2410613176] = { "Grants Level 15 Vitality Skill" }, } }, - ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(5-10)% increased Quantity of Fish Caught" }, } }, - ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(5-10)% increased Rarity of Fish Caught" }, } }, - ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2855 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "vaal", "drop" }, tradeHashes = { [2451060005] = { "You can catch Corrupted Fish" }, } }, - ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrder = { 4314 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(35-60) Armour while stationary" }, } }, - ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrder = { 4314 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(61-138) Armour while stationary" }, } }, - ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrder = { 4314 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(139-322) Armour while stationary" }, } }, - ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks" }, } }, - ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks" }, } }, - ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks" }, } }, - ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(8-11) to (18-21) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(8-11) to (18-21) Added Cold Damage with Bow Attacks" }, } }, - ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(20-25) to (38-45) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(20-25) to (38-45) Added Cold Damage with Bow Attacks" }, } }, - ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-35) to (55-62) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(29-35) to (55-62) Added Cold Damage with Bow Attacks" }, } }, - ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrder = { 6879 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(35-60) to Global Evasion Rating while moving" }, } }, - ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrder = { 6879 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(61-138) to Global Evasion Rating while moving" }, } }, - ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrder = { 6879 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(139-322) to Global Evasion Rating while moving" }, } }, - ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks" }, } }, - ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks" }, } }, - ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks" }, } }, - ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(11-14) to (21-25) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(11-14) to (21-25) Added Fire Damage with Bow Attacks" }, } }, - ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(24-31) to (46-55) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(24-31) to (46-55) Added Fire Damage with Bow Attacks" }, } }, - ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-39) to (59-69) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(29-39) to (59-69) Added Fire Damage with Bow Attacks" }, } }, - ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (14-15) Lightning Damage to Spells and Attacks" }, } }, - ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks" }, } }, - ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks" }, } }, - ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "(1-3) to (38-39) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-3) to (38-39) Added Lightning Damage with Bow Attacks" }, } }, - ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(3-7) to (81-85) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(3-7) to (81-85) Added Lightning Damage with Bow Attacks" }, } }, - ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(3-8) to (101-106) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(3-8) to (101-106) Added Lightning Damage with Bow Attacks" }, } }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(3-4) to (6-10) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(3-4) to (6-10) Added Physical Damage with Bow Attacks" }, } }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted2___"] = { type = "Corrupted", affix = "", "(5-7) to (10-14) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 31, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-7) to (10-14) Added Physical Damage with Bow Attacks" }, } }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(9-12) to (16-19) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 75, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(9-12) to (16-19) Added Physical Damage with Bow Attacks" }, } }, - ["V2AddedChaosDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(23-29) to (37-43) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 81, group = "AddedChaosDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(23-29) to (37-43) Added Chaos Damage with Bow Attacks" }, } }, - ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(8-10)% increased Area of Effect" }, } }, - ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Arrows Chain +1 times", statOrder = { 1788 }, level = 80, group = "AdditionalArrowChain", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1001077145] = { "Arrows Chain +1 times" }, } }, - ["V2ChanceToSuppressSpells_"] = { type = "Corrupted", affix = "", "+(8-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(8-12)% chance to Suppress Spell Damage" }, } }, - ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrder = { 5953 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "damage", "critical" }, tradeHashes = { [240289863] = { "+(20-25)% to Critical Strike Multiplier during any Flask Effect" }, } }, - ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrder = { 4313 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "(3-5)% additional Physical Damage Reduction while stationary" }, } }, - ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrder = { 650 }, level = 56, group = "AngerSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 21 Anger Skill" }, } }, - ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, - ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2855 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "vaal", "drop" }, tradeHashes = { [2451060005] = { "You can catch Corrupted Fish" }, } }, - ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 60, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, - ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 40, group = "CannotBeIgnited", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 40, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2483, 2491 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, [3944782785] = { "(30-40)% increased Attack Damage against Bleeding Enemies" }, } }, - ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, - ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1582887649] = { "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, - ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-15)% chance to Fortify" }, } }, - ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(9-11)% chance to gain a Frenzy Charge on Kill" }, } }, - ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(10-15)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-7)% chance to gain a Power Charge on Critical Strike" }, } }, - ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "(10-15)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-9)% chance to Suppress Spell Damage" }, } }, - ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrder = { 641 }, level = 56, group = "ClaritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 21 Clarity Skill" }, } }, - ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.5% of Cold Damage Leeched as Life" }, } }, - ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrder = { 636 }, level = 56, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [461472247] = { "Grants Level 23 Conductivity Skill" }, } }, - ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, - ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2529 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1625819882] = { "Curse Enemies with Enfeeble on Hit" }, } }, - ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrder = { 628 }, level = 56, group = "DespairSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2044547677] = { "Grants Level 23 Despair Skill" }, } }, - ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrder = { 651 }, level = 56, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [4265392510] = { "Grants Level 23 Determination Skill" }, } }, - ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrder = { 654 }, level = 56, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [2341269061] = { "Grants Level 23 Discipline Skill" }, } }, - ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10179 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2907896585] = { "+(6-10)% chance to Suppress Spell Damage while moving" }, } }, - ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10179 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2907896585] = { "+(6-10)% chance to Suppress Spell Damage while moving" }, } }, - ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-10)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (8-10)% Elemental Resistances" }, } }, - ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.5% of Fire Damage Leeched as Life" }, } }, - ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(5-10)% increased Quantity of Fish Caught" }, } }, - ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(5-10)% increased Rarity of Fish Caught" }, } }, - ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrder = { 632 }, level = 56, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2209668839] = { "Grants Level 23 Flammability Skill" }, } }, - ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrder = { 637 }, level = 56, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 23 Frostbite Skill" }, } }, - ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrder = { 6702 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3868549606] = { "Gain a Frenzy Charge after Spending a total of 200 Mana" }, } }, - ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-30)% to Global Critical Strike Multiplier" }, } }, - ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrder = { 652 }, level = 56, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [2867050084] = { "Grants Level 23 Grace Skill" }, } }, - ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrder = { 639 }, level = 56, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [1188846263] = { "Grants Level 21 Haste Skill" }, } }, - ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrder = { 649 }, level = 56, group = "HatredSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 21 Hatred Skill" }, } }, - ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrder = { 712 }, level = 56, group = "MalevolenceSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [2148556029] = { "Grants Level 23 Malevolence Skill" }, } }, - ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrder = { 730 }, level = 56, group = "ZealotrySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [3224664127] = { "Grants Level 23 Zealotry Skill" }, } }, - ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrder = { 716 }, level = 56, group = "PrideSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [4184565463] = { "Grants Level 21 Pride Skill" }, } }, - ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-20)% increased Area of Effect" }, } }, - ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(25-30)% increased Area of Effect" }, } }, - ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0.5-0.8)% to Critical Strike Chance", statOrder = { 4792 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-0.8)% to Critical Strike Chance" }, } }, - ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 60, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-12)% increased Attack Speed during any Flask Effect" }, } }, - ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(30-40)% increased Burning Damage" }, } }, - ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-10)% increased Cast Speed" }, } }, - ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 60, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-12)% increased Cast Speed during any Flask Effect" }, } }, - ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(25-30)% increased Effect of Cold Ailments" }, } }, - ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrder = { 5922 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2898434123] = { "(35-40)% increased Critical Strike Chance during any Flask Effect" }, } }, - ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(40-50)% increased Damage" }, } }, - ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(50-60)% increased Damage over Time" }, } }, - ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(12-15)% increased Skill Effect Duration" }, } }, - ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } }, - ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, - ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } }, - ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, - ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "(8-12)% increased Movement Speed during any Flask Effect" }, } }, - ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained", statOrder = { 9734 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1923210508] = { "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained" }, } }, - ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9735 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, - ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrder = { 10009 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-30)% increased Effect of Shock" }, } }, - ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "+(0.5-0.8)% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-0.8)% to Spell Critical Strike Chance" }, } }, - ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, - ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.5% of Lightning Damage Leeched as Life" }, } }, - ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-2) to (3-5) Chaos Damage" }, } }, - ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1390 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (6-8) to (11-13) Chaos Damage" }, } }, - ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1390 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-11) to (19-23) Chaos Damage" }, } }, - ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-8) to (13-15) Cold Damage" }, } }, - ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrder = { 1371 }, level = 31, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (14-18) to (27-32) Cold Damage" }, } }, - ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrder = { 1371 }, level = 84, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-23) to (24-40) Cold Damage" }, } }, - ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (9-13) to (20-23) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (9-13) to (20-23) Cold Damage" }, } }, - ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (22-27) to (36-44) Cold Damage", statOrder = { 1371 }, level = 31, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-27) to (36-44) Cold Damage" }, } }, - ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (26-32) to (45-55) Cold Damage", statOrder = { 1371 }, level = 84, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-32) to (45-55) Cold Damage" }, } }, - ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, - ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrder = { 1362 }, level = 31, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } }, - ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrder = { 1362 }, level = 84, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (21-28) to (40-48) Fire Damage" }, } }, - ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (12-17) to (23-27) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (23-27) Fire Damage" }, } }, - ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (27-31) to (39-50) Fire Damage", statOrder = { 1362 }, level = 31, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (27-31) to (39-50) Fire Damage" }, } }, - ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (31-39) to (52-61) Fire Damage", statOrder = { 1362 }, level = 84, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (31-39) to (52-61) Fire Damage" }, } }, - ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (27-28) Lightning Damage" }, } }, - ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-5) to (58-61) Lightning Damage" }, } }, - ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrder = { 1382 }, level = 84, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (72-76) Lightning Damage" }, } }, - ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (35-39) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-3) to (35-39) Lightning Damage" }, } }, - ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-7) to (73-84) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-7) to (73-84) Lightning Damage" }, } }, - ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-9) to (103-107) Lightning Damage", statOrder = { 1382 }, level = 84, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-9) to (103-107) Lightning Damage" }, } }, - ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 2 Physical Damage" }, } }, - ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrder = { 1276 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-7) Physical Damage" }, } }, - ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 1276 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-7) to (10-12) Physical Damage" }, } }, - ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } }, - ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrder = { 1276 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (6-8) Physical Damage" }, } }, - ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1276 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-9) to (11-13) Physical Damage" }, } }, - ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(4-5)% Chance to Block" }, } }, - ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-5)% increased Attack Speed" }, } }, - ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, - ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 70, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, - ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-5)% increased Attack Speed" }, } }, - ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-15)% increased Cast Speed" }, } }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, - ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, - ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } }, - ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, - ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } }, - ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.1-0.2) metres to Weapon Range" }, } }, - ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (4-6) Mana per Enemy Hit with Attacks" }, } }, - ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, } }, - ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-10)% increased Movement Speed" }, } }, - ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(6-7)% Chance to Block Spell Damage" }, } }, - ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, - ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (8-12)% of Physical Damage as Extra Cold Damage" }, } }, - ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (8-12)% of Physical Damage as Extra Fire Damage" }, } }, - ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (8-12)% of Physical Damage as Extra Lightning Damage" }, } }, - ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 60, group = "PhysicalDamageTakenAsCold", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(6-8)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(6-8)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(6-8)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(6-8)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrder = { 10802 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrder = { 623 }, level = 56, group = "PurityOfFireSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 23 Purity of Fire Skill" }, } }, - ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrder = { 629 }, level = 56, group = "PurityOfColdSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 23 Purity of Ice Skill" }, } }, - ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrder = { 631 }, level = 56, group = "PurityOfLightningSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 23 Purity of Lightning Skill" }, } }, - ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrder = { 645 }, level = 56, group = "PuritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 21 Purity of Elements Skill" }, } }, - ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrder = { 2243 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(4-6)% reduced Chaos Damage taken" }, } }, - ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrder = { 3389 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(4-6)% reduced Cold Damage taken" }, } }, - ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrder = { 2239 }, level = 20, group = "AreaOfEffectDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3001376862] = { "(4-6)% reduced Area Damage taken from Hits" }, } }, - ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectile Hits", statOrder = { 2749 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1425651005] = { "(4-6)% reduced Damage taken from Projectile Hits" }, } }, - ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrder = { 2242 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(4-6)% reduced Fire Damage taken" }, } }, - ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrder = { 3388 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(4-6)% reduced Lightning Damage taken" }, } }, - ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 50% reduced Extra Damage from Critical Strikes" }, } }, - ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (20-30)% reduced Extra Damage from Critical Strikes" }, } }, - ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7407 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, - ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrder = { 10829 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 90% Cost & Reservation Multiplier" }, } }, - ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrder = { 480 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 10 Additional Accuracy" }, } }, - ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 10 Blind" }, } }, - ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, - ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 10 Faster Projectiles" }, } }, - ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 10 Fortify" }, } }, - ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrder = { 324 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2032386732] = { "Socketed Gems are Supported by Level 10 Life Gain On Hit" }, } }, - ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 10 Momentum" }, } }, - ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 494 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } }, - ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-24)% increased Elemental Damage with Attack Skills" }, } }, - ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrder = { 648 }, level = 45, group = "WrathSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 21 Wrath Skill" }, } }, - ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrder = { 175 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2115168758] = { "+2 to Level of Socketed Duration Gems" }, } }, - ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrder = { 176 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2551600084] = { "+2 to Level of Socketed AoE Gems" }, } }, - ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 20, group = "LocalIncreaseSocketedAuraLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 20, group = "LocalIncreaseSocketedCurseLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, - ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 187 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+2 to Level of Socketed Trap or Mine Gems" }, } }, - ["V2SocketedMinionGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 20, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+2 to Level of Socketed Warcry Gems" }, } }, - ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 20, group = "LocalIncreaseSocketedProjectileLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+2 to Level of Socketed Projectile Gems" }, } }, - ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } }, - ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrder = { 1592 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(3-5)% increased Quantity of Items found" }, } }, - ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrder = { 3361 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrder = { 3356 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrder = { 3366 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3367 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3368 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3363 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrder = { 6161 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrder = { 10722 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrder = { 9711 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (15-20)% increased Aura Effect" }, } }, - ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, [4139681126] = { "(4-6)% increased Dexterity" }, } }, - ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, [734614379] = { "(4-6)% increased Strength" }, } }, - ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, [656461285] = { "(4-6)% increased Intelligence" }, } }, - ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(14-16)% to all Elemental Resistances" }, } }, + ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(2-5)% increased Movement Speed" }, } }, + ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-20)% increased Damage" }, } }, + ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrder = { 194 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+(1-2) to Level of Socketed Vaal Gems" }, } }, + ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(10-5) Physical Damage taken from Attack Hits" }, } }, + ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(16-11) Physical Damage taken from Attack Hits" }, } }, + ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(24-17) Physical Damage taken from Attack Hits" }, } }, + ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, + ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-6)% increased Cast Speed" }, } }, + ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrder = { 2065 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3181974858] = { "5% chance to Cause Monsters to Flee" }, } }, + ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(2-4)% Chance to Block Attack Damage" }, } }, + ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-2) to (3-5) Chaos Damage" }, } }, + ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1414 }, level = 20, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (6-8) to (11-13) Chaos Damage" }, } }, + ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1414 }, level = 40, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-11) to (19-23) Chaos Damage" }, } }, + ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrder = { 1411 }, level = 20, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (3-4) to (6-8) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrder = { 1411 }, level = 40, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (11-13) Chaos Damage to Attacks" }, } }, + ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(2-4)% Chance to Block Spell Damage" }, } }, + ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-8)% increased Attack Speed" }, } }, + ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(6-12)% increased Elemental Damage with Attack Skills" }, } }, + ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrder = { 2062 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(3-6)% of Damage taken Recouped as Mana" }, } }, + ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2191 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(10-20)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(10-20)% chance to Avoid being Ignited" }, } }, + ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(2-4)% to Chaos Resistance" }, } }, + ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(3-6)% chance to Suppress Spell Damage" }, } }, + ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrder = { 3198 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, + ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(10-20)% chance to Avoid being Shocked" }, } }, + ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2465 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, + ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(3-5)% of Damage is taken from Mana before Life" }, } }, + ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(10-20)% of Physical Damage Converted to Fire Damage" }, } }, + ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(10-20)% of Physical Damage Converted to Cold Damage" }, } }, + ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 1, group = "MonsterConvertPhysicalDamageToLightning", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(10-20)% of Physical Damage Converted to Lightning Damage" }, } }, + ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 1, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, + ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrder = { 1918 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-8)% increased Skill Effect Duration" }, } }, + ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2278 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to 1 additional Trap placed at a time" }, } }, + ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(3-6)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrder = { 1814 }, level = 1, group = "AdditionalArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, + ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, + ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2548 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, + ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2549 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2551 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, + ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrder = { 488 }, level = 35, group = "SupportedByCastOnStun", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1079148723] = { "Socketed Gems are supported by Level 12 Cast when Stunned" }, } }, + ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrder = { 483 }, level = 35, group = "SupportedByCastOnCrit", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 12 Cast On Critical Strike" }, } }, + ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 482 }, level = 20, group = "SupportedByMeleeSplash", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 10 Melee Splash" }, } }, + ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrder = { 473 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 12 Added Fire Damage" }, } }, + ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrder = { 490 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [689720069] = { "Socketed Gems are supported by Level 6 Stun" }, } }, + ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.1-0.2) metres to Weapon Range" }, } }, + ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Cost & Reservation Multiplier", statOrder = { 541 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 95% Cost & Reservation Multiplier" }, } }, + ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrder = { 477 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 1 Elemental Proliferation" }, } }, + ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrder = { 491 }, level = 48, group = "SupportedByAccuracy", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 12 Additional Accuracy" }, } }, + ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 492 }, level = 28, group = "SupportedByMultistrike", weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2501237765] = { "Socketed Gems are supported by Level 1 Multistrike" }, } }, + ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrder = { 233 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 1 Increased Area of Effect" }, } }, + ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 494 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } }, + ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrder = { 496 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 14 Increased Critical Damage" }, } }, + ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrder = { 497 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2062753054] = { "Socketed Gems are supported by Level 1 Fork" }, } }, + ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrder = { 498 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2532625478] = { "Socketed Gems are supported by Level 12 Elemental Damage with Attacks" }, } }, + ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 511 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, + ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrder = { 657 }, level = 45, group = "PuritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 15 Purity of Elements Skill" }, } }, + ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrder = { 659 }, level = 31, group = "CriticalWeaknessSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3736925508] = { "Grants Level 10 Assassin's Mark Skill" }, } }, + ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrder = { 634 }, level = 45, group = "PurityOfFireSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 15 Purity of Fire Skill" }, } }, + ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrder = { 640 }, level = 45, group = "PurityOfColdSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 15 Purity of Ice Skill" }, } }, + ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrder = { 642 }, level = 45, group = "PurityOfLightningSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 15 Purity of Lightning Skill" }, } }, + ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrder = { 660 }, level = 28, group = "WrathSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 7 Wrath Skill" }, } }, + ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrder = { 661 }, level = 44, group = "HatredSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 11 Hatred Skill" }, } }, + ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrder = { 662 }, level = 56, group = "AngerSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 15 Anger Skill" }, } }, + ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrder = { 663 }, level = 61, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [4265392510] = { "Grants Level 16 Determination Skill" }, } }, + ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrder = { 664 }, level = 61, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2867050084] = { "Grants Level 16 Grace Skill" }, } }, + ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrder = { 666 }, level = 61, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2341269061] = { "Grants Level 16 Discipline Skill" }, } }, + ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Sniper's Mark Skill", statOrder = { 670 }, level = 58, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 15 Sniper's Mark Skill" }, } }, + ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrder = { 671 }, level = 31, group = "ElementalWeaknessSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3792821911] = { "Grants Level 10 Elemental Weakness Skill" }, } }, + ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrder = { 673 }, level = 31, group = "VulnerabilitySkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1447222021] = { "Grants Level 10 Vulnerability Skill" }, } }, + ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrder = { 653 }, level = 19, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 4 Clarity Skill" }, } }, + ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrder = { 653 }, level = 32, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 8 Clarity Skill" }, } }, + ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrder = { 653 }, level = 47, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 12 Clarity Skill" }, } }, + ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrder = { 653 }, level = 59, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 16 Clarity Skill" }, } }, + ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrder = { 648 }, level = 46, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 14 Frostbite Skill" }, } }, + ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrder = { 643 }, level = 46, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2209668839] = { "Grants Level 14 Flammability Skill" }, } }, + ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrder = { 647 }, level = 46, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [461472247] = { "Grants Level 14 Conductivity Skill" }, } }, + ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrder = { 649 }, level = 40, group = "TemporalChainsSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [940324562] = { "Grants Level 14 Temporal Chains Skill" }, } }, + ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrder = { 650 }, level = 40, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1188846263] = { "Grants Level 14 Haste Skill" }, } }, + ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } }, + ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrder = { 655 }, level = 35, group = "VitalitySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2410613176] = { "Grants Level 15 Vitality Skill" }, } }, + ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2883 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(5-10)% increased Quantity of Fish Caught" }, } }, + ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2884 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(5-10)% increased Rarity of Fish Caught" }, } }, + ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2889 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "vaal", "drop" }, tradeHashes = { [2451060005] = { "You can catch Corrupted Fish" }, } }, + ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrder = { 4352 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(35-60) Armour while stationary" }, } }, + ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrder = { 4352 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(61-138) Armour while stationary" }, } }, + ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrder = { 4352 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(139-322) Armour while stationary" }, } }, + ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks" }, } }, + ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks" }, } }, + ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks" }, } }, + ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(8-11) to (18-21) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(8-11) to (18-21) Added Cold Damage with Bow Attacks" }, } }, + ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(20-25) to (38-45) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(20-25) to (38-45) Added Cold Damage with Bow Attacks" }, } }, + ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-35) to (55-62) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(29-35) to (55-62) Added Cold Damage with Bow Attacks" }, } }, + ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrder = { 6973 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(35-60) to Global Evasion Rating while moving" }, } }, + ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrder = { 6973 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(61-138) to Global Evasion Rating while moving" }, } }, + ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrder = { 6973 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(139-322) to Global Evasion Rating while moving" }, } }, + ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks" }, } }, + ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks" }, } }, + ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks" }, } }, + ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(11-14) to (21-25) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(11-14) to (21-25) Added Fire Damage with Bow Attacks" }, } }, + ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(24-31) to (46-55) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(24-31) to (46-55) Added Fire Damage with Bow Attacks" }, } }, + ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-39) to (59-69) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(29-39) to (59-69) Added Fire Damage with Bow Attacks" }, } }, + ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (14-15) Lightning Damage to Spells and Attacks" }, } }, + ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks" }, } }, + ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks" }, } }, + ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "(1-3) to (38-39) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-3) to (38-39) Added Lightning Damage with Bow Attacks" }, } }, + ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(3-7) to (81-85) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(3-7) to (81-85) Added Lightning Damage with Bow Attacks" }, } }, + ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(3-8) to (101-106) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(3-8) to (101-106) Added Lightning Damage with Bow Attacks" }, } }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(3-4) to (6-10) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(3-4) to (6-10) Added Physical Damage with Bow Attacks" }, } }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted2___"] = { type = "Corrupted", affix = "", "(5-7) to (10-14) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 31, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-7) to (10-14) Added Physical Damage with Bow Attacks" }, } }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(9-12) to (16-19) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 75, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(9-12) to (16-19) Added Physical Damage with Bow Attacks" }, } }, + ["V2AddedChaosDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(23-29) to (37-43) Added Chaos Damage with Bow Attacks", statOrder = { 2126 }, level = 81, group = "AddedChaosDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(23-29) to (37-43) Added Chaos Damage with Bow Attacks" }, } }, + ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(8-10)% increased Area of Effect" }, } }, + ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Arrows Chain +1 times", statOrder = { 1811 }, level = 80, group = "AdditionalArrowChain", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, tradeHashes = { [1001077145] = { "Arrows Chain +1 times" }, } }, + ["V2ChanceToSuppressSpells_"] = { type = "Corrupted", affix = "", "+(8-12)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(8-12)% chance to Suppress Spell Damage" }, } }, + ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrder = { 6036 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "damage", "critical" }, tradeHashes = { [240289863] = { "+(20-25)% to Critical Strike Multiplier during any Flask Effect" }, } }, + ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2191 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrder = { 4351 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "(3-5)% additional Physical Damage Reduction while stationary" }, } }, + ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrder = { 1815 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, + ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrder = { 662 }, level = 56, group = "AngerSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 21 Anger Skill" }, } }, + ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, + ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 3008 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, + ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2889 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "vaal", "drop" }, tradeHashes = { [2451060005] = { "You can catch Corrupted Fish" }, } }, + ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4251 }, level = 60, group = "BleedingImmunity", weightKey = { "ring", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, + ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrder = { 1862 }, level = 40, group = "CannotBeIgnited", weightKey = { "ring", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrder = { 3405 }, level = 40, group = "CannotBePoisoned", weightKey = { "ring", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2509, 2517 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, [3944782785] = { "(30-40)% increased Attack Damage against Bleeding Enemies" }, } }, + ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, + ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5765 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1582887649] = { "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, + ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2287 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-15)% chance to Fortify" }, } }, + ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(9-11)% chance to gain a Frenzy Charge on Kill" }, } }, + ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "boots", "default", }, weightVal = { 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(10-15)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1853 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-7)% chance to gain a Power Charge on Critical Strike" }, } }, + ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "(10-15)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-9)% chance to Suppress Spell Damage" }, } }, + ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrder = { 653 }, level = 56, group = "ClaritySkill", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 21 Clarity Skill" }, } }, + ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.5% of Cold Damage Leeched as Life" }, } }, + ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrder = { 647 }, level = 56, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [461472247] = { "Grants Level 23 Conductivity Skill" }, } }, + ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2551 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, + ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2555 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1625819882] = { "Curse Enemies with Enfeeble on Hit" }, } }, + ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2548 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, + ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2549 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["V2CurseOnHitFlammability"] = { type = "Corrupted", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2556 }, level = 30, group = "FlammabilityOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, + ["V2CurseOnHitFrostbite"] = { type = "Corrupted", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2557 }, level = 30, group = "FrostbiteOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, + ["V2CurseOnHitConductivity"] = { type = "Corrupted", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2553 }, level = 30, group = "ConductivityOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, + ["V2CurseOnHitPunishment"] = { type = "Corrupted", affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6088 }, level = 30, group = "PunishmentOnHit", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, + ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrder = { 639 }, level = 56, group = "DespairSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2044547677] = { "Grants Level 23 Despair Skill" }, } }, + ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrder = { 663 }, level = 56, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [4265392510] = { "Grants Level 23 Determination Skill" }, } }, + ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrder = { 666 }, level = 56, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2341269061] = { "Grants Level 23 Discipline Skill" }, } }, + ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10326 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2907896585] = { "+(6-10)% chance to Suppress Spell Damage while moving" }, } }, + ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10326 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2907896585] = { "+(6-10)% chance to Suppress Spell Damage while moving" }, } }, + ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-10)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (8-10)% Elemental Resistances" }, } }, + ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.5% of Fire Damage Leeched as Life" }, } }, + ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2883 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(5-10)% increased Quantity of Fish Caught" }, } }, + ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2884 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(5-10)% increased Rarity of Fish Caught" }, } }, + ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrder = { 643 }, level = 56, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2209668839] = { "Grants Level 23 Flammability Skill" }, } }, + ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrder = { 648 }, level = 56, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 23 Frostbite Skill" }, } }, + ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrder = { 6792 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3868549606] = { "Gain a Frenzy Charge after Spending a total of 200 Mana" }, } }, + ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["V2GemQualityCorrupted"] = { type = "Corrupted", affix = "", "+(5-10)% to Quality of Socketed Gems", statOrder = { 213 }, level = 1, group = "SocketedGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(5-10)% to Quality of Socketed Gems" }, } }, + ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "wand", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-30)% to Global Critical Strike Multiplier" }, } }, + ["V2GlobalCriticalStrikeMultiplier2HCorrupted"] = { type = "Corrupted", affix = "", "+(35-50)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-50)% to Global Critical Strike Multiplier" }, } }, + ["V2GlobalCriticalStrikeMultiplierRingCorrupted"] = { type = "Corrupted", affix = "", "+(15-20)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-20)% to Global Critical Strike Multiplier" }, } }, + ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrder = { 664 }, level = 56, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2867050084] = { "Grants Level 23 Grace Skill" }, } }, + ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrder = { 650 }, level = 56, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1188846263] = { "Grants Level 21 Haste Skill" }, } }, + ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrder = { 661 }, level = 56, group = "HatredSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 21 Hatred Skill" }, } }, + ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrder = { 729 }, level = 56, group = "MalevolenceSkill", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2148556029] = { "Grants Level 23 Malevolence Skill" }, } }, + ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrder = { 748 }, level = 56, group = "ZealotrySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3224664127] = { "Grants Level 23 Zealotry Skill" }, } }, + ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrder = { 733 }, level = 56, group = "PrideSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [4184565463] = { "Grants Level 21 Pride Skill" }, } }, + ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-20)% increased Area of Effect" }, } }, + ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(25-30)% increased Area of Effect" }, } }, + ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0.5-0.8)% to Critical Strike Chance", statOrder = { 4842 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-0.8)% to Critical Strike Chance" }, } }, + ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, + ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrder = { 3336 }, level = 60, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-12)% increased Attack Speed during any Flask Effect" }, } }, + ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrder = { 1900 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(30-40)% increased Burning Damage" }, } }, + ["V2DamageOverTimeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(10-15)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 40, group = "GlobalDamageOverTimeMultiplier", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(10-15)% to Damage over Time Multiplier" }, } }, + ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-10)% increased Cast Speed" }, } }, + ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrder = { 5541 }, level = 60, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-12)% increased Cast Speed during any Flask Effect" }, } }, + ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Cold Ailments", statOrder = { 5880 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(25-30)% increased Effect of Cold Ailments" }, } }, + ["V2IncreasedLightRadiusCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(25-30)% increased Light Radius" }, } }, + ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrder = { 6005 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2898434123] = { "(35-40)% increased Critical Strike Chance during any Flask Effect" }, } }, + ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrder = { 1214 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(40-50)% increased Damage" }, } }, + ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(50-60)% increased Damage over Time" }, } }, + ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrder = { 1918 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(12-15)% increased Skill Effect Duration" }, } }, + ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } }, + ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Damage", statOrder = { 1214 }, level = 1, group = "IncreasedDamage", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(15-25)% increased Damage" }, } }, + ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-10)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, + ["V2IncreasedManaCostEfficiencyCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 1, group = "ManaCostEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-25)% increased Mana Cost Efficiency" }, } }, + ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, + ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrder = { 3222 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "(8-12)% increased Movement Speed during any Flask Effect" }, } }, + ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained", statOrder = { 9876 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1923210508] = { "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained" }, } }, + ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9877 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, + ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrder = { 10153 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-30)% increased Effect of Shock" }, } }, + ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "+(0.5-0.8)% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-0.8)% to Spell Critical Strike Chance" }, } }, + ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevelCorrupted", weightKey = { "warstaff", "helmet", "staff", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevelCorrupted", weightKey = { "warstaff", "helmet", "staff", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevelCorrupted", weightKey = { "warstaff", "helmet", "staff", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, + ["V2LevelOfSocketedPhysicalGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Physical Gems", statOrder = { 175 }, level = 1, group = "LocalIncreaseSocketedPhysicalGemLevelCorrupted", weightKey = { "warstaff", "helmet", "staff", "default", }, weightVal = { 0, 750, 750, 0 }, modTags = { "physical", "gem" }, tradeHashes = { [516565950] = { "+2 to Level of Socketed Physical Gems" }, } }, + ["V2LevelOfSocketedChaosGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevelCorrupted", weightKey = { "warstaff", "helmet", "staff", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, + ["V2GlobalIncreaseFireSpellSkillGemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "sceptre", "wand", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, + ["V2GlobalIncreaseColdSpellSkillGemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "dagger", "sceptre", "wand", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, + ["V2GlobalIncreaseLightningSpellSkillGemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "dagger", "sceptre", "wand", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, + ["V2GlobalIncreaseChaosSpellSkillGemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "dagger", "wand", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, + ["V2GlobalIncreasePhysicalSpellSkillGemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "dagger", "wand", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, + ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.5% of Lightning Damage Leeched as Life" }, } }, + ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-2) to (3-5) Chaos Damage" }, } }, + ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1414 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (6-8) to (11-13) Chaos Damage" }, } }, + ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1414 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-11) to (19-23) Chaos Damage" }, } }, + ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-8) to (13-15) Cold Damage" }, } }, + ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrder = { 1395 }, level = 31, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (14-18) to (27-32) Cold Damage" }, } }, + ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrder = { 1395 }, level = 84, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-23) to (24-40) Cold Damage" }, } }, + ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (9-13) to (20-23) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (9-13) to (20-23) Cold Damage" }, } }, + ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (22-27) to (36-44) Cold Damage", statOrder = { 1395 }, level = 31, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-27) to (36-44) Cold Damage" }, } }, + ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (26-32) to (45-55) Cold Damage", statOrder = { 1395 }, level = 84, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-32) to (45-55) Cold Damage" }, } }, + ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, + ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrder = { 1386 }, level = 31, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } }, + ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrder = { 1386 }, level = 84, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (21-28) to (40-48) Fire Damage" }, } }, + ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (12-17) to (23-27) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (23-27) Fire Damage" }, } }, + ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (27-31) to (39-50) Fire Damage", statOrder = { 1386 }, level = 31, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (27-31) to (39-50) Fire Damage" }, } }, + ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (31-39) to (52-61) Fire Damage", statOrder = { 1386 }, level = 84, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (31-39) to (52-61) Fire Damage" }, } }, + ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (27-28) Lightning Damage" }, } }, + ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrder = { 1406 }, level = 31, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-5) to (58-61) Lightning Damage" }, } }, + ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrder = { 1406 }, level = 84, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (72-76) Lightning Damage" }, } }, + ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (35-39) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-3) to (35-39) Lightning Damage" }, } }, + ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-7) to (73-84) Lightning Damage", statOrder = { 1406 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-7) to (73-84) Lightning Damage" }, } }, + ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-9) to (103-107) Lightning Damage", statOrder = { 1406 }, level = 84, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-9) to (103-107) Lightning Damage" }, } }, + ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 2 Physical Damage" }, } }, + ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrder = { 1300 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-7) Physical Damage" }, } }, + ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 1300 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-7) to (10-12) Physical Damage" }, } }, + ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "warstaff", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } }, + ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrder = { 1300 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "warstaff", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (6-8) Physical Damage" }, } }, + ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1300 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "warstaff", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-9) to (11-13) Physical Damage" }, } }, + ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(4-5)% Chance to Block" }, } }, + ["V2LocalInreasedBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Chance to Block", statOrder = { 94 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-30)% increased Chance to Block" }, } }, + ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-5)% increased Attack Speed" }, } }, + ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, + ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1437 }, level = 70, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, + ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-5)% increased Attack Speed" }, } }, + ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(14-18)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-18)% increased Cast Speed" }, } }, + ["V2IncreasedCastSpeed2HCorrupted__"] = { type = "Corrupted", affix = "", "(22-28)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(22-28)% increased Cast Speed" }, } }, + ["V2PhysicalExplodeCorrupted"] = { type = "Corrupted", affix = "", "Enemies you Kill have a (10-15)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3340 }, level = 80, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (10-15)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, + ["V2PhysicalExplodeCorrupted2H"] = { type = "Corrupted", affix = "", "Enemies you Kill have a (20-25)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3340 }, level = 80, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (20-25)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, + ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1255 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, + ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } }, + ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1255 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "warstaff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, + ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "dagger", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } }, + ["V2IncreasedSpellDamage2hCorrupted"] = { type = "Corrupted", affix = "", "(70-90)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-90)% increased Spell Damage" }, } }, + ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.2-0.4) metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "axe", "sword", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.2-0.4) metres to Weapon Range" }, } }, + ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (4-6) Mana per Enemy Hit with Attacks" }, } }, + ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots", "ring", "default", }, weightVal = { 1000, 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["V2MinEnduranceChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Minimum Endurance Charges", statOrder = { 1826 }, level = 40, group = "MinimumEnduranceCharges", weightKey = { "amulet", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, + ["V2MinFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Minimum Frenzy Charges", statOrder = { 1831 }, level = 40, group = "MinimumFrenzyCharges", weightKey = { "amulet", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, } }, + ["V2MinPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Minimum Frenzy Charges", statOrder = { 1831 }, level = 40, group = "MinimumFrenzyCharges", weightKey = { "amulet", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, } }, + ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, } }, + ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["V2MaximumFireResistanceCorrupted"] = { type = "Corrupted", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 55, group = "MaximumFireResist", weightKey = { "boots", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["V2MaximumColdResistanceCorrupted"] = { type = "Corrupted", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 55, group = "MaximumColdResist", weightKey = { "gloves", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["V2MaximumLightningResistanceCorrupted"] = { type = "Corrupted", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 55, group = "MaximumLightningResistance", weightKey = { "helmet", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-10)% increased Movement Speed" }, } }, + ["V2ActionSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "(4-6)% increased Action Speed" }, } }, + ["V2UnaffectedByBurningGroundCorrupted"] = { type = "Corrupted", affix = "", "Unaffected by Burning Ground", statOrder = { 10613 }, level = 32, group = "BurningGroundEffectEffectiveness", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, + ["V2UnaffectedByChilledGroundCorrupted"] = { type = "Corrupted", affix = "", "Unaffected by Chilled Ground", statOrder = { 10618 }, level = 32, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, + ["V2UnaffectedByShockedGroundCorrupted"] = { type = "Corrupted", affix = "", "Unaffected by Shocked Ground", statOrder = { 10638 }, level = 32, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, + ["V2UnaffectedByDesecratedGroundCorrupted"] = { type = "Corrupted", affix = "", "Unaffected by Desecrated Ground", statOrder = { 10624 }, level = 32, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, + ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(6-7)% Chance to Block Spell Damage" }, } }, + ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, + ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (8-12)% of Physical Damage as Extra Cold Damage" }, } }, + ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (8-12)% of Physical Damage as Extra Fire Damage" }, } }, + ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (8-12)% of Physical Damage as Extra Lightning Damage" }, } }, + ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 60, group = "PhysicalDamageTakenAsCold", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(6-8)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(6-8)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(6-8)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(6-8)% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrder = { 10968 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, + ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrder = { 634 }, level = 56, group = "PurityOfFireSkill", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 23 Purity of Fire Skill" }, } }, + ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrder = { 640 }, level = 56, group = "PurityOfColdSkill", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 23 Purity of Ice Skill" }, } }, + ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrder = { 642 }, level = 56, group = "PurityOfLightningSkill", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 23 Purity of Lightning Skill" }, } }, + ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrder = { 657 }, level = 56, group = "PuritySkill", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 21 Purity of Elements Skill" }, } }, + ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrder = { 2266 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(4-6)% reduced Chaos Damage taken" }, } }, + ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrder = { 3425 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(4-6)% reduced Cold Damage taken" }, } }, + ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrder = { 2262 }, level = 20, group = "AreaOfEffectDamageTaken", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3001376862] = { "(4-6)% reduced Area Damage taken from Hits" }, } }, + ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectile Hits", statOrder = { 2783 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1425651005] = { "(4-6)% reduced Damage taken from Projectile Hits" }, } }, + ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrder = { 2265 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(4-6)% reduced Fire Damage taken" }, } }, + ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrder = { 3424 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(4-6)% reduced Lightning Damage taken" }, } }, + ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 50% reduced Extra Damage from Critical Strikes" }, } }, + ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (20-30)% reduced Extra Damage from Critical Strikes" }, } }, + ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7507 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, + ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrder = { 10996 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, + ["V2GlancingBlowsCorrupted"] = { type = "Corrupted", affix = "", "Glancing Blows", statOrder = { 10954 }, level = 40, group = "GlancingBlows", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, + ["V2VersatileCombatantCorrupted"] = { type = "Corrupted", affix = "", "Versatile Combatant", statOrder = { 10990 }, level = 40, group = "VersatileCombatant", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, + ["V2UnwaveringStanceCorrupted"] = { type = "Corrupted", affix = "", "Unwavering Stance", statOrder = { 10988 }, level = 40, group = "UnwaveringStance", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Cost & Reservation Multiplier", statOrder = { 541 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 90% Cost & Reservation Multiplier" }, } }, + ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrder = { 491 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 10 Additional Accuracy" }, } }, + ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 481 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 10 Blind" }, } }, + ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 335 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, + ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 493 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 10 Faster Projectiles" }, } }, + ["V2SupportedByChainCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Chain", statOrder = { 252 }, level = 1, group = "SupportedByChain", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2643665787] = { "Socketed Gems are Supported by Level 10 Chain" }, } }, + ["V2SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Fork", statOrder = { 497 }, level = 1, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2062753054] = { "Socketed Gems are supported by Level 10 Fork" }, } }, + ["V2SupportedByMultipleProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Multiple Projectiles", statOrder = { 516 }, level = 1, group = "SupportedByMultipleProjectiles", weightKey = { "warstaff", "bow", "staff", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 10 Multiple Projectiles" }, } }, + ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 507 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 10 Fortify" }, } }, + ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrder = { 334 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2032386732] = { "Socketed Gems are Supported by Level 10 Life Gain On Hit" }, } }, + ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 354 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 10 Momentum" }, } }, + ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 505 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } }, + ["V2SupportedByElementalPenetrationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Elemental Penetration", statOrder = { 278 }, level = 1, group = "SupportedByElementalPenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 10 Elemental Penetration" }, } }, + ["V2SupportedByAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 233 }, level = 1, group = "SupportedByAreaOfEffect", weightKey = { "one_hand_weapon", "mace", "staff", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 10 Increased Area of Effect" }, } }, + ["V2SupportedByAddedChaosDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 17 Added Chaos Damage", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "one_hand_weapon", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 17 Added Chaos Damage" }, } }, + ["V2SupportedByCrueltyCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Cruelty", statOrder = { 294 }, level = 57, group = "SupportedByCruelty", weightKey = { "one_hand_weapon", "staff", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1679136] = { "Socketed Gems are Supported by Level 10 Cruelty" }, } }, + ["V2SupportedByRageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Rage", statOrder = { 370 }, level = 1, group = "SupportedByRage", weightKey = { "one_hand_weapon", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [369650395] = { "Socketed Gems are Supported by Level 10 Rage" }, } }, + ["V2SupportedByImpaleCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Impale", statOrder = { 320 }, level = 1, group = "SupportedByImpale", weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1900098804] = { "Socketed Gems are Supported by Level 10 Impale" }, } }, + ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-24)% increased Elemental Damage with Attack Skills" }, } }, + ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrder = { 660 }, level = 45, group = "WrathSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 21 Wrath Skill" }, } }, + ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrder = { 181 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2115168758] = { "+2 to Level of Socketed Duration Gems" }, } }, + ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrder = { 182 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2551600084] = { "+2 to Level of Socketed AoE Gems" }, } }, + ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 20, group = "LocalIncreaseSocketedAuraLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, + ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 190 }, level = 20, group = "LocalIncreaseSocketedCurseLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, + ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 193 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+2 to Level of Socketed Trap or Mine Gems" }, } }, + ["V2SocketedMinionGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 20, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrder = { 200 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+2 to Level of Socketed Warcry Gems" }, } }, + ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrder = { 183 }, level = 20, group = "LocalIncreaseSocketedProjectileLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+2 to Level of Socketed Projectile Gems" }, } }, + ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, + ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } }, + ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, + ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrder = { 1615 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(3-5)% increased Quantity of Items found" }, } }, + ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (20-30)% increased Aura Effect", statOrder = { 3397 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (20-30)% increased Aura Effect", statOrder = { 3392 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (20-30)% increased Aura Effect", statOrder = { 3402 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (20-30)% increased Aura Effect", statOrder = { 3403 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (20-30)% increased Aura Effect", statOrder = { 3404 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (20-30)% increased Aura Effect", statOrder = { 3399 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (20-30)% increased Aura Effect", statOrder = { 6248 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (20-30)% increased Aura Effect", statOrder = { 10884 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (20-30)% increased Aura Effect", statOrder = { 9853 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (20-30)% increased Aura Effect" }, } }, + ["V2IncreasedAuraEffectPurityOfElementsCorrupted"] = { type = "Corrupted", affix = "", "Purity of Elements has (20-30)% increased Aura Effect", statOrder = { 3393 }, level = 45, group = "IncreasedAuraEffectPurityOfElementsCorrupted", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (20-30)% increased Aura Effect" }, } }, + ["V2ManaReservationEfficiencyWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (20-30)% increased Mana Reservation Efficiency", statOrder = { 10787 }, level = 45, group = "WrathReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3444518809] = { "Wrath has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (20-30)% increased Mana Reservation Efficiency", statOrder = { 4731 }, level = 45, group = "AngerReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2549369799] = { "Anger has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (20-30)% increased Mana Reservation Efficiency", statOrder = { 7038 }, level = 45, group = "HatredReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (20-30)% increased Mana Reservation Efficiency", statOrder = { 6260 }, level = 45, group = "DeterminationReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (20-30)% increased Mana Reservation Efficiency", statOrder = { 6276 }, level = 45, group = "DisciplineReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (20-30)% increased Mana Reservation Efficiency", statOrder = { 6998 }, level = 45, group = "GraceReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (20-30)% increased Mana Reservation Efficiency", statOrder = { 8276 }, level = 45, group = "MalevolenceReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3383226338] = { "Malevolence has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (20-30)% increased Mana Reservation Efficiency", statOrder = { 10886 }, level = 45, group = "ZealotryReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [168308685] = { "Zealotry has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (20-30)% increased Mana Reservation Efficiency", statOrder = { 9858 }, level = 45, group = "PrideReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3993865658] = { "Pride has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2ManaReservationEfficiencyPurityOfElementsCorrupted"] = { type = "Corrupted", affix = "", "Purity of Elements has (20-30)% increased Mana Reservation Efficiency", statOrder = { 9909 }, level = 45, group = "PurityOfElementsReservationEfficiency", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3303293173] = { "Purity of Elements has (20-30)% increased Mana Reservation Efficiency" }, } }, + ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrder = { 1208, 1209 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, [4139681126] = { "(4-6)% increased Dexterity" }, } }, + ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrder = { 1207, 1208 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, [734614379] = { "(4-6)% increased Strength" }, } }, + ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrder = { 1207, 1209 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, [656461285] = { "(4-6)% increased Intelligence" }, } }, + ["V2IncreasedAllAttributesCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attributes", statOrder = { 1206 }, level = 1, group = "PercentageAllAttributes", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(3-5)% increased Attributes" }, } }, + ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(14-16)% to all Elemental Resistances" }, } }, + ["V2ChaosResistanceCorrupted"] = { type = "Corrupted", affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { "amulet", "ring", "belt", "armour", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, } \ No newline at end of file diff --git a/src/Data/ModDelve.lua b/src/Data/ModDelve.lua index c5c03058e6..03b5c3e7c9 100644 --- a/src/Data/ModDelve.lua +++ b/src/Data/ModDelve.lua @@ -2,190 +2,190 @@ -- Item data (c) Grinding Gear Games return { - ["DoubleModSellPrice1"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice1", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DoubleModSellPrice2"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice2", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DoubleModSellPrice3_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice3", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DoubleModSellPrice4"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice4", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DoubleModSellPrice5_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice5", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DoubleModSellPrice6"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice6", weightKey = { "default", }, weightVal = { 10 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DoubleModSellPrice7"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice7", weightKey = { "default", }, weightVal = { 2000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DoubleModSellPrice8"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice8", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DoubleModSellPrice9"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7952 }, level = 1, group = "DoubleModSellPrice9", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-15)% Fire Resistance" }, } }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, - ["DelveArmourFireResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-35)% to Fire Resistance" }, } }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7915 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, } }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-15)% Cold Resistance" }, } }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, - ["DelveArmourColdResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-35)% to Cold Resistance" }, } }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-10)% chance to Avoid Cold Damage from Hits" }, } }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7913 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-15)% Lightning Resistance" }, } }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, - ["DelveArmourLightningResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-35)% to Lightning Resistance" }, } }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-10)% chance to Avoid Lightning Damage from Hits" }, } }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7917 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(34-20) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2235 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(49-35) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "(3-5)% additional Physical Damage Reduction while moving" }, } }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (6-8) to (9-11) Physical Damage" }, } }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7919 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5041 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [511024200] = { "(1-2)% reduced Physical Damage taken over time" }, } }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-35)% to Chaos Resistance" }, } }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2266636761] = { "+(30-40)% Chaos Resistance against Damage Over Time" }, } }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7912 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-19)% increased Chaos Damage" }, } }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(50-60)% increased Damage when on Full Life" }, } }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(100-120)% increased Damage when on Full Life" }, } }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(25-40) to maximum Life" }, } }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(2-3)% increased maximum Life" }, [3299347043] = { "+(15-25) to maximum Life" }, } }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+500 to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.3% of Life per second" }, } }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+1000 to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+(250-300) to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+500 to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+1000 to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+(250-300) to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-50)% increased Armour" }, } }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(25-50)% increased Evasion Rating" }, } }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(25-50)% increased Energy Shield" }, } }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(25-50)% increased Armour and Evasion" }, } }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(25-50)% increased Armour and Energy Shield" }, } }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(25-50)% increased Evasion and Energy Shield" }, } }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(25-50)% increased Armour, Evasion and Energy Shield" }, } }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7951 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2016708976] = { "+(10-20)% to Quality" }, } }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6497 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(3-4)% Chance to Block Attack Damage" }, } }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9118 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [335507772] = { "+(3-5) to maximum Fortification" }, } }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9134 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(20-30)% increased Energy Shield from Equipped Body Armour" }, } }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "20% chance to Defend with 200% of Armour" }, } }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(1-2)% chance to Evade Attack Hits" }, } }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7872 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "50% chance to Avoid being Poisoned" }, } }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "50% chance to Avoid Bleeding" }, } }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(30-40)% increased Damage with Ailments" }, } }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-20)% increased Damage with Ailments" }, } }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9251 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [424026624] = { "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies" }, } }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies" }, } }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances" }, } }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-60)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-120)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-25)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(26-32)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-39)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-49)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(37-50)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(51-65)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(66-79)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-94)% increased Elemental Damage" }, } }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-30)% reduced Elemental Ailment Duration on you" }, } }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-30)% increased Elemental Damage" }, } }, - ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 562 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, tradeHashes = { [3425934849] = { "Socketed Skills have 18% increased Cast Speed" }, } }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 568 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, tradeHashes = { [1688834903] = { "Socketed Spells have 20% reduced Mana Cost" }, } }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 331 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 1 Maim" }, } }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 561 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, tradeHashes = { [2881124988] = { "Socketed Skills have 18% increased Attack Speed" }, } }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.3% of Attack Damage Leeched as Life" }, } }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8200 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8200 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently" }, } }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8212 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(50-70)% increased Mana Regeneration Rate while moving" }, } }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-4) Mana per Enemy Hit with Attacks" }, } }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(8-12)% increased Mana Recovery rate" }, } }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2181 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [1311723478] = { "Ignore all Movement Penalties from Armour" }, } }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5396 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [628032624] = { "Cannot be Chilled or Frozen while moving" }, } }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(15-20)% chance to gain Onslaught when you use a Flask" }, } }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5412 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3592330380] = { "Cannot be Shocked or Ignited while moving" }, } }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6761 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(5-10)% chance to gain Onslaught when you use a Flask" }, } }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-74)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (75-80)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-70)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (71-90)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (91-110)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (111-130)% increased Damage" }, } }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(20-25)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, - ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } }, - ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, - ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9487 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 20% reduced Souls Per Use" }, } }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9487 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 40% reduced Souls Per Use" }, } }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(5-8)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(3-5)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } }, - ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8763, 10827 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [728267040] = { "Found Items have 10% chance to drop Corrupted in Area" }, [57434274] = { "" }, [2306002879] = { "" }, [2390685262] = { "" }, [2017682521] = { "" }, } }, + ["DoubleModSellPrice1"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice1", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DoubleModSellPrice2"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice2", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DoubleModSellPrice3_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice3", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DoubleModSellPrice4"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice4", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DoubleModSellPrice5_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice5", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DoubleModSellPrice6"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice6", weightKey = { "default", }, weightVal = { 10 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DoubleModSellPrice7"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice7", weightKey = { "default", }, weightVal = { 2000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DoubleModSellPrice8"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice8", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DoubleModSellPrice9"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 8063 }, level = 1, group = "DoubleModSellPrice9", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-15)% Fire Resistance" }, } }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, + ["DelveArmourFireResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-35)% to Fire Resistance" }, } }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 8024 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, } }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-15)% Cold Resistance" }, } }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, + ["DelveArmourColdResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-35)% to Cold Resistance" }, } }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-10)% chance to Avoid Cold Damage from Hits" }, } }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1392 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 8022 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-15)% Lightning Resistance" }, } }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, + ["DelveArmourLightningResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-35)% to Lightning Resistance" }, } }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-10)% chance to Avoid Lightning Damage from Hits" }, } }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 8026 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7983 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2258 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2258 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(34-20) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2258 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(49-35) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2258 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4627 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "(3-5)% additional Physical Damage Reduction while moving" }, } }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1289 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (6-8) to (9-11) Physical Damage" }, } }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 8028 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5107 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [511024200] = { "(1-2)% reduced Physical Damage taken over time" }, } }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-35)% to Chaos Resistance" }, } }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5812 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2266636761] = { "+(30-40)% Chaos Resistance against Damage Over Time" }, } }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 8021 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-19)% increased Chaos Damage" }, } }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6160 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(50-60)% increased Damage when on Full Life" }, } }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6160 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(100-120)% increased Damage when on Full Life" }, } }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1591, 1593 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(25-40) to maximum Life" }, } }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1591, 1593 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(2-3)% increased maximum Life" }, [3299347043] = { "+(15-25) to maximum Life" }, } }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+500 to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.3% of Life per second" }, } }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+1000 to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+(250-300) to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+500 to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+1000 to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+(250-300) to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-50)% increased Armour" }, } }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(25-50)% increased Evasion Rating" }, } }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(25-50)% increased Energy Shield" }, } }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(25-50)% increased Armour and Evasion" }, } }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(25-50)% increased Armour and Energy Shield" }, } }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(25-50)% increased Evasion and Energy Shield" }, } }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(25-50)% increased Armour, Evasion and Energy Shield" }, } }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 8062 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2016708976] = { "+(10-20)% to Quality" }, } }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1745 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6584 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(3-4)% Chance to Block Attack Damage" }, } }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9240 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [335507772] = { "+(3-5) to maximum Fortification" }, } }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9257 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(20-30)% increased Energy Shield from Equipped Body Armour" }, } }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "20% chance to Defend with 200% of Armour" }, } }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5751 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(1-2)% chance to Evade Attack Hits" }, } }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7979 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7978 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "50% chance to Avoid being Poisoned" }, } }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "50% chance to Avoid Bleeding" }, } }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(30-40)% increased Damage with Ailments" }, } }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-20)% increased Damage with Ailments" }, } }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9382 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [424026624] = { "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies" }, } }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2520 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies" }, } }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3797 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances" }, } }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-60)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-120)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-25)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(26-32)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 2003 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-39)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 2003 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-49)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(37-50)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(51-65)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 2003 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(66-79)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 2003 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-94)% increased Elemental Damage" }, } }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-30)% reduced Elemental Ailment Duration on you" }, } }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-30)% increased Elemental Damage" }, } }, + ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 576 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 576 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 235 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 573 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, tradeHashes = { [3425934849] = { "Socketed Skills have 18% increased Cast Speed" }, } }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 579 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, tradeHashes = { [1688834903] = { "Socketed Spells have 20% reduced Mana Cost" }, } }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 557 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 557 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 341 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 1 Maim" }, } }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 572 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, tradeHashes = { [2881124988] = { "Socketed Skills have 18% increased Attack Speed" }, } }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 560 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.3% of Attack Damage Leeched as Life" }, } }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8313 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8313 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently" }, } }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8325 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(50-70)% increased Mana Regeneration Rate while moving" }, } }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-4) Mana per Enemy Hit with Attacks" }, } }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1604 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1609 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(8-12)% increased Mana Recovery rate" }, } }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4574 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9552 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4865 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2204 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [1311723478] = { "Ignore all Movement Penalties from Armour" }, } }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5471 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [628032624] = { "Cannot be Chilled or Frozen while moving" }, } }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5771 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(15-20)% chance to gain Onslaught when you use a Flask" }, } }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5487 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3592330380] = { "Cannot be Shocked or Ignited while moving" }, } }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6852 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5771 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(5-10)% chance to gain Onslaught when you use a Flask" }, } }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3494 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3494 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1996 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1996 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-74)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (75-80)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-70)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1996 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (71-90)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1996 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (91-110)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (111-130)% increased Damage" }, } }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1792 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1789 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1639 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(20-25)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, + ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } }, + ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 161 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 163 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 164 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, + ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9621 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 20% reduced Souls Per Use" }, } }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9621 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 40% reduced Souls Per Use" }, } }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(5-8)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(3-5)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3141 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3139 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } }, + ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8883, 10994 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [728267040] = { "Found Items have 10% chance to drop Corrupted in Area" }, [57434274] = { "" }, [2306002879] = { "" }, [2390685262] = { "" }, [2017682521] = { "" }, } }, } \ No newline at end of file diff --git a/src/Data/ModEldritch.lua b/src/Data/ModEldritch.lua index a10f7bd35c..0435776244 100644 --- a/src/Data/ModEldritch.lua +++ b/src/Data/ModEldritch.lua @@ -2,4072 +2,4090 @@ -- Item data (c) Grinding Gear Games return { - ["IncreasedAttackSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "8% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "9% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "11% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "14% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [4074358700] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "19% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "20% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "21% increased Attack Speed" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(19-21)% increased Critical Strike Chance for Attacks" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(22-24)% increased Critical Strike Chance for Attacks" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-27)% increased Critical Strike Chance for Attacks" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(28-30)% increased Critical Strike Chance for Attacks" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(37-39)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(40-42)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(49-51)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(52-54)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(55-57)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(58-60)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-9) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (18-21) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (10-14) to (21-24) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-28) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-15) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-9) to (14-16) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (16-20) to (32-37) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (18-24) to (37-42) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (21-27) to (42-49) Fire Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-13) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (14-18) to (28-33) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (16-21) to (32-38) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (18-24) to (37-44) Cold Damage to Attacks" }, } }, - ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-24) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (24-26) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (27-28) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (55-59) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (63-68) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (72-78) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, - ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-6) to (10-11) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-7) to (11-12) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-7) to (12-14) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (12-15) to (24-28) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (13-18) to (28-32) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (16-20) to (32-37) Chaos Damage to Attacks" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(5-7)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-10)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-13)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-18)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-20)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-19)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(20-22)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-27)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-29)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-28)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-31)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(32-34)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(35-36)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(37-38)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(5-7)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(8-10)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-13)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-18)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-20)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-19)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(20-22)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-27)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(28-29)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-28)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-31)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(32-34)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(35-36)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(37-38)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(5-7)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(8-10)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-13)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-18)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-20)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(17-19)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(20-22)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(26-27)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(28-29)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(26-28)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(29-31)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(32-34)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(35-36)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(37-38)% to Physical Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(5-7)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(8-10)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-13)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-18)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-20)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(17-19)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(20-22)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(26-27)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(28-29)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(26-28)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(29-31)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(32-34)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(35-36)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(37-38)% to Chaos Damage over Time Multiplier" }, } }, - ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (15-17)% increased Buff Effect" }, } }, - ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (18-20)% increased Buff Effect" }, } }, - ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (21-23)% increased Buff Effect" }, } }, - ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, } }, - ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-28)% increased Buff Effect" }, } }, - ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (15-17)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (18-20)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (21-23)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (27-28)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (27-29)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (30-32)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (36-37)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (38-39)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (36-38)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (39-41)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (42-44)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (45-46)% increased Buff Effect" }, } }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (47-48)% increased Buff Effect" }, } }, - ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (15-17)% increased Buff Effect" }, } }, - ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (18-20)% increased Buff Effect" }, } }, - ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (21-23)% increased Buff Effect" }, } }, - ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, } }, - ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-28)% increased Buff Effect" }, } }, - ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 7126 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (15-17)% increased Buff Effect" }, } }, - ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (18-20)% increased Buff Effect" }, } }, - ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (21-23)% increased Buff Effect" }, } }, - ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, } }, - ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-28)% increased Buff Effect" }, } }, - ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (15-17)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (18-20)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (21-23)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-28)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (29-30)% increased Buff Effect" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 7108 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.2 metres" }, } }, - ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.3 metres" }, } }, - ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.4 metres" }, } }, - ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } }, - ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, } }, - ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } }, - ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } }, - ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.2 metres" }, } }, - ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.3 metres" }, } }, - ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.4 metres" }, } }, - ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, - ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } }, - ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } }, - ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.1 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.2 metres" }, } }, - ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.3 metres" }, } }, - ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.2 metres" }, } }, - ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.3 metres" }, } }, - ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.4 metres" }, } }, - ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, - ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, } }, - ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } }, - ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } }, - ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(6-7)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(24-25)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(26-27)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(28-29)% reduced Enemy Stun Threshold" }, } }, - ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, - ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (17-19)% increased Damage" }, } }, - ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-22)% increased Damage" }, } }, - ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-25)% increased Damage" }, } }, - ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-27)% increased Damage" }, } }, - ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-29)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (26-28)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (29-31)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (32-34)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (35-37)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (38-39)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (40-41)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (38-40)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (41-43)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (44-46)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (47-49)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (50-51)% increased Damage" }, } }, - ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (52-53)% increased Damage" }, } }, - ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "8% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "9% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "10% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "11% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "14% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "15% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "18% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "19% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "20% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "21% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, - ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "8% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "9% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "10% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "11% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "12% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "13% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "12% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "13% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "14% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "15% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "18% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "19% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "20% increased Mine Throwing Speed" }, } }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "21% increased Mine Throwing Speed" }, } }, - ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "15% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "20% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "25% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "30% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "35% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "40% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "45% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "50% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "55% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "60% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "65% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "70% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "75% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "80% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "85% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "90% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "95% chance to Extinguish Enemies on Hit" }, } }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6530 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "100% chance to Extinguish Enemies on Hit" }, } }, - ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9185 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } }, - ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, - ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, - ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, - ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, - ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, - ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6890 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, - ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6839 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "20% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "30% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "35% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "40% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "45% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "50% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "55% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "60% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "65% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "70% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "75% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "80% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "85% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "90% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "95% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "15% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "20% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "25% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "30% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "35% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "40% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "45% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "50% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "55% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "60% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "65% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "70% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "75% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "80% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "85% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "90% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "95% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+6% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+13% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+14% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+15% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(33-35)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(36-38)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(39-41)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-57)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(58-61)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-56)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(57-59)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(60-62)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(63-66)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6486 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(67-70)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, - ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -20% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -21% to Fire Resistance" }, } }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6580 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -22% to Fire Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -20% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -21% to Cold Resistance" }, } }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -22% to Cold Resistance" }, } }, - ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance" }, } }, - ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance" }, } }, - ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance" }, } }, - ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, } }, - ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, } }, - ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [4074358700] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7459 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (10-12)% slower" }, } }, - ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (13-15)% slower" }, } }, - ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (16-18)% slower" }, } }, - ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-20)% slower" }, } }, - ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (21-22)% slower" }, } }, - ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (23-24)% slower" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-21)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (22-24)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (25-27)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-29)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (30-31)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (32-33)% slower" }, [4074358700] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-30)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (31-33)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (34-36)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (37-39)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (40-42)% slower" }, [3283106665] = { "" }, } }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10624 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (43-45)% slower" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "15% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "20% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "55% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "65% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "15% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "20% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "55% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "60% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "65% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, - ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "15% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "20% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "55% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "60% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "65% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "10% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "15% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "20% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "55% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "60% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "65% of Physical Damage Converted to Chaos Damage" }, } }, - ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.2% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.3% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1.1% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.2% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.3% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1.1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.2% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.3% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1.1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.2% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.3% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1.1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, - ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.2% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.3% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1.1% of Chaos Damage Leeched as Life" }, } }, - ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } }, - ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } }, - ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } }, - ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, - ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, - ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, - ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, - ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, - ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, - ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(6-7)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(8-9)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(10-11)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(12-13)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(14-15)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(16-17)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(12-13)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(14-15)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(16-17)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(24-25)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(26-27)% increased Blind Effect" }, } }, - ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(28-29)% increased Blind Effect" }, } }, - ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (20-22)% increased Damage" }, } }, - ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (23-25)% increased Damage" }, } }, - ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, } }, - ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, } }, - ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-33)% increased Damage" }, } }, - ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (34-35)% increased Damage" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, - ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 25% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 30% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 35% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 40% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 45% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 50% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 55% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 60% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 65% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 70% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 75% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 80% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 85% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 90% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 95% chance to Maim on Hit" }, } }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks always Maim on Hit" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "15% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "20% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "25% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "30% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "35% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "40% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "45% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "50% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "55% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "60% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "65% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "70% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "75% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "80% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "85% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "90% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "95% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, - ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(9-10)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(11-12)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(25-26)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(27-28)% increased Global Accuracy Rating" }, } }, - ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(6-7)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(8-9)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(10-11)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(12-13)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(14-15)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(16-17)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(12-13)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(14-15)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(16-17)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(24-25)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(26-27)% increased Effect of your Marks" }, } }, - ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(28-29)% increased Effect of your Marks" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(43-45) to Accuracy Rating per Frenzy Charge" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(46-48) to Accuracy Rating per Frenzy Charge" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(67-69) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(70-72) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, - ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } }, - ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } }, - ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "5% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "10% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "15% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "20% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "30% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "15% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "20% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "45% chance to Poison on Hit" }, } }, - ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "50% chance to Poison on Hit" }, } }, - ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 5% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 45% chance to cause Bleeding" }, } }, - ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 50% chance to cause Bleeding" }, } }, - ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "5% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "10% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "45% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "50% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "5% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "45% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "50% chance to Impale Enemies on Hit with Attacks" }, } }, - ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "9% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "11% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "13% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "12% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "13% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "14% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "15% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "18% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "19% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "20% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "21% increased Cast Speed" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(28-30)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(31-33)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(34-36)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(37-39)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(46-48)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(49-51)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(58-60)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(61-63)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(64-66)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(67-69)% increased Spell Critical Strike Chance" }, } }, - ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (20-23) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-14) to (21-25) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (11-15) to (24-27) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-31) to (47-55) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (27-35) to (54-63) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-40) to (63-72) Fire Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-11) to (17-20) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (19-22) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-14) to (21-24) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (21-27) to (42-50) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (24-32) to (48-57) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (28-36) to (56-65) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (34-36) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (37-40) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (41-44) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-8) to (83-90) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-10) to (96-103) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-11) to (110-119) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-10) to (15-18) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-11) to (17-20) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (9-12) to (19-22) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [4074358700] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-25) to (39-44) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-28) to (45-51) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-33) to (51-59) Physical Damage to Spells" }, [3283106665] = { "" }, } }, - ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (7-10) to (15-17) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (8-10) to (16-19) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (9-11) to (18-20) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (18-23) to (36-41) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (20-27) to (41-48) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (23-31) to (47-55) Chaos Damage to Spells" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(7-8)% of Fire Damage taken Recouped as Life" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(9-10)% of Fire Damage taken Recouped as Life" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(11-12)% of Fire Damage taken Recouped as Life" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(25-26)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(27-28)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(29-30)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(7-8)% of Cold Damage taken Recouped as Life" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(9-10)% of Cold Damage taken Recouped as Life" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(11-12)% of Cold Damage taken Recouped as Life" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(25-26)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(27-28)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(29-30)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(7-8)% of Lightning Damage taken Recouped as Life" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(9-10)% of Lightning Damage taken Recouped as Life" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(11-12)% of Lightning Damage taken Recouped as Life" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(25-26)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(27-28)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7452 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(29-30)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(7-8)% of Physical Damage taken Recouped as Life" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(9-10)% of Physical Damage taken Recouped as Life" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(11-12)% of Physical Damage taken Recouped as Life" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(25-26)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(27-28)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9664 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(29-30)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "10% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "11% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "12% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "13% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "14% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "15% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "14% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "15% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "16% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "17% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "20% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "21% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "22% increased Flammability Curse Effect" }, } }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "23% increased Flammability Curse Effect" }, } }, - ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "10% increased Frostbite Curse Effect" }, } }, - ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "11% increased Frostbite Curse Effect" }, } }, - ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "12% increased Frostbite Curse Effect" }, } }, - ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "13% increased Frostbite Curse Effect" }, } }, - ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, } }, - ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "16% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "17% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "20% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "21% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "22% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "23% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "10% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "11% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "12% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "13% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "14% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "15% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "14% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "15% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "16% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "17% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "20% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "21% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "22% increased Conductivity Curse Effect" }, } }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "23% increased Conductivity Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "10% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "11% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "12% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "13% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "14% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "15% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "14% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "15% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "16% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "17% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "20% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "21% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "22% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "23% increased Vulnerability Curse Effect" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "10% increased Elemental Weakness Curse Effect" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "11% increased Elemental Weakness Curse Effect" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "12% increased Elemental Weakness Curse Effect" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "13% increased Elemental Weakness Curse Effect" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "16% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "17% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "20% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "21% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "22% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "23% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "10% increased Despair Curse Effect" }, } }, - ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "11% increased Despair Curse Effect" }, } }, - ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "12% increased Despair Curse Effect" }, } }, - ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "13% increased Despair Curse Effect" }, } }, - ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, } }, - ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "16% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "17% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "20% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "21% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "22% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "23% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "10% increased Temporal Chains Curse Effect" }, } }, - ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "11% increased Temporal Chains Curse Effect" }, } }, - ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "12% increased Temporal Chains Curse Effect" }, } }, - ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "13% increased Temporal Chains Curse Effect" }, } }, - ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, } }, - ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "16% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "17% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "20% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "21% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "22% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "23% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "10% increased Enfeeble Curse Effect" }, } }, - ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "11% increased Enfeeble Curse Effect" }, } }, - ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "12% increased Enfeeble Curse Effect" }, } }, - ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "13% increased Enfeeble Curse Effect" }, } }, - ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, } }, - ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "16% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "17% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "20% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "21% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "22% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "23% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "10% increased Punishment Curse Effect" }, } }, - ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "11% increased Punishment Curse Effect" }, } }, - ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "12% increased Punishment Curse Effect" }, } }, - ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "13% increased Punishment Curse Effect" }, } }, - ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, } }, - ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "16% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "17% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "20% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "21% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "22% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "23% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, - ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(19-20)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(21-22)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(23-24)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(37-38)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(39-40)% reduced Mana Cost of Attacks" }, } }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(41-42)% reduced Mana Cost of Attacks" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } }, - ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (14-16)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (17-19)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-22)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-27)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-29)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (20-22)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (32-33)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (34-35)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (32-34)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (35-37)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (38-39)% increased maximum Life" }, } }, - ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (40-41)% increased maximum Life" }, } }, - ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-12)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-14)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-16)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (17-18)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-20)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-22)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (25-26)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (27-28)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (31-32)% increased Movement Speed" }, } }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (33-34)% increased Movement Speed" }, } }, - ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-16)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(17-18)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(13-14)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(15-16)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(17-18)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(25-26)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(27-28)% increased Area of Effect" }, } }, - ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(29-30)% increased Area of Effect" }, } }, - ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "21% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "22% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "23% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "30% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "31% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "32% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6431 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, - ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } }, - ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-14)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(15-16)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(17-18)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(31-32)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(33-34)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(35-36)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(14-16)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(17-19)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(26-27)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(28-29)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(32-33)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(34-35)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(32-34)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(35-37)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(38-39)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(40-41)% increased Effect of Non-Damaging Ailments" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, - ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "7% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "9% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "17% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "18% increased Mana Reservation Efficiency of Skills" }, } }, - ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "5% chance to Ignite" }, } }, - ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, } }, - ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } }, - ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, - ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [4074358700] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "45% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "50% chance to Ignite" }, [3283106665] = { "" }, } }, - ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "15% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "25% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "30% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "15% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "20% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "25% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "30% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "35% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "40% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "25% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "30% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "35% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "40% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "45% chance to Freeze" }, } }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "50% chance to Freeze" }, } }, - ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "5% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "20% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "15% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "20% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "35% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "40% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "35% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "40% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "45% chance to Shock" }, } }, - ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "50% chance to Shock" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(33-35)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-38)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(39-41)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(54-57)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(58-61)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(54-56)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(57-59)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(60-62)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(63-66)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(67-70)% reduced Ignite Duration on you" }, } }, - ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(33-35)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-38)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(39-41)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-57)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(58-61)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-56)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(57-59)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(60-62)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(63-66)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(67-70)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(33-35)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-38)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(39-41)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-57)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(58-61)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-56)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(57-59)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(60-62)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(63-66)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(67-70)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, - ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(19-21)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(22-24)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-27)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(37-39)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(40-42)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(49-51)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(52-54)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(55-57)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(58-60)% increased Mana Regeneration Rate" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6422 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, - ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(14-16)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-19)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-22)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(23-25)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(26-27)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(28-29)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(26-28)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(29-31)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(32-34)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(35-37)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(38-39)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(40-41)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(38-40)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(41-43)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(44-46)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(47-49)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(50-51)% increased Attack Damage" }, } }, - ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(52-53)% increased Attack Damage" }, } }, - ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-16)% increased Spell Damage" }, } }, - ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-19)% increased Spell Damage" }, } }, - ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-22)% increased Spell Damage" }, } }, - ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-25)% increased Spell Damage" }, } }, - ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-27)% increased Spell Damage" }, } }, - ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(28-29)% increased Spell Damage" }, } }, - ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-28)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-31)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(32-34)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-37)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-39)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-41)% increased Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-40)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(41-43)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(44-46)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(47-49)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-51)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(52-53)% increased Spell Damage" }, [3283106665] = { "" }, } }, - ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(6-7)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(8-9)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(10-11)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(24-25)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(26-27)% increased Effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(28-29)% increased Effect of Arcane Surge on you" }, } }, - ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "7% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "8% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "8% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "9% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "14% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "16% increased Movement Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 2 seconds" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 3 seconds" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [4074358700] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 10 seconds" }, [3283106665] = { "" }, } }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 11 seconds" }, [3283106665] = { "" }, } }, - ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 2 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 3 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 10 seconds" }, } }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 11 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 2 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 3 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 10 seconds" }, } }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 11 seconds" }, } }, - ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(13-14)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-16)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(17-18)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(19-20)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-22)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(23-24)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(19-20)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(21-22)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(23-24)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(31-32)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(33-34)% to Fire Resistance" }, } }, - ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(35-36)% to Fire Resistance" }, } }, - ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(13-14)% to Cold Resistance" }, } }, - ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-16)% to Cold Resistance" }, } }, - ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(17-18)% to Cold Resistance" }, } }, - ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, } }, - ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, } }, - ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [4074358700] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-32)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(33-34)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-36)% to Cold Resistance" }, [3283106665] = { "" }, } }, - ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(13-14)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-16)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(17-18)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(19-20)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-22)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(23-24)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(19-20)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(21-22)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(23-24)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(31-32)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(33-34)% to Lightning Resistance" }, } }, - ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(35-36)% to Lightning Resistance" }, } }, - ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(6-7)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-9)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-11)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-13)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(14-15)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-17)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(12-13)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(14-15)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(16-17)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(24-25)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(26-27)% to Chaos Resistance" }, } }, - ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(28-29)% to Chaos Resistance" }, } }, - ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "10% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "11% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "12% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "13% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "16% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "17% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [4074358700] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "20% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "21% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "22% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "23% increased Totem Placement speed" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "10% increased Brand Attachment range" }, } }, - ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "11% increased Brand Attachment range" }, } }, - ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "12% increased Brand Attachment range" }, } }, - ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "13% increased Brand Attachment range" }, } }, - ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, } }, - ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "16% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "17% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [4074358700] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "20% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "21% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "22% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 10044 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "23% increased Brand Attachment range" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(31-33)% increased Effect of the Buff granted by your Flame Golems" }, } }, - ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(34-36)% increased Effect of the Buff granted by your Flame Golems" }, } }, - ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(37-39)% increased Effect of the Buff granted by your Flame Golems" }, } }, - ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(40-42)% increased Effect of the Buff granted by your Flame Golems" }, } }, - ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, } }, - ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(49-51)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(52-54)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(61-63)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(64-66)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(67-69)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(70-72)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(31-33)% increased Effect of the Buff granted by your Ice Golems" }, } }, - ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(34-36)% increased Effect of the Buff granted by your Ice Golems" }, } }, - ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(37-39)% increased Effect of the Buff granted by your Ice Golems" }, } }, - ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(40-42)% increased Effect of the Buff granted by your Ice Golems" }, } }, - ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, } }, - ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(49-51)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(52-54)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(61-63)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(64-66)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(67-69)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(70-72)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(31-33)% increased Effect of the Buff granted by your Lightning Golems" }, } }, - ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(34-36)% increased Effect of the Buff granted by your Lightning Golems" }, } }, - ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(37-39)% increased Effect of the Buff granted by your Lightning Golems" }, } }, - ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(40-42)% increased Effect of the Buff granted by your Lightning Golems" }, } }, - ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, } }, - ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(49-51)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(52-54)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(61-63)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(64-66)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(67-69)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(70-72)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, - ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(31-33)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(34-36)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(37-39)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(40-42)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(49-51)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(52-54)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(61-63)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(64-66)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(67-69)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(70-72)% increased Effect of the Buff granted by your Stone Golems" }, } }, - ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(31-33)% increased Effect of the Buff granted by your Chaos Golems" }, } }, - ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(34-36)% increased Effect of the Buff granted by your Chaos Golems" }, } }, - ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(37-39)% increased Effect of the Buff granted by your Chaos Golems" }, } }, - ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(40-42)% increased Effect of the Buff granted by your Chaos Golems" }, } }, - ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, } }, - ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(49-51)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(52-54)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(61-63)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(64-66)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(67-69)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(70-72)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, - ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(31-33)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(34-36)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(37-39)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(40-42)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(49-51)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(52-54)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(61-63)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(64-66)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(67-69)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(70-72)% increased Effect of the Buff granted by your Carrion Golems" }, } }, - ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (6-7)% increased Effect" }, } }, - ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (8-9)% increased Effect" }, } }, - ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (10-11)% increased Effect" }, } }, - ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, } }, - ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, } }, - ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (6-7)% increased Effect" }, } }, - ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (8-9)% increased Effect" }, } }, - ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (10-11)% increased Effect" }, } }, - ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, } }, - ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, } }, - ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } }, - ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (6-7)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (8-9)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (10-11)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (24-25)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (26-27)% increased Effect" }, } }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (28-29)% increased Effect" }, } }, - ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(33-35)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-38)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(39-41)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-57)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(58-61)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-56)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(57-59)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(60-62)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(63-66)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(67-70)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, - ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(33-35)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-38)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(39-41)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(54-57)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(58-61)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(54-56)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(57-59)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(60-62)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(63-66)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(67-70)% chance to Avoid being Frozen" }, } }, - ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(33-35)% chance to Avoid being Shocked" }, } }, - ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-38)% chance to Avoid being Shocked" }, } }, - ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-41)% chance to Avoid being Shocked" }, } }, - ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, } }, - ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, } }, - ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, } }, - ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-57)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(58-61)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-56)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(57-59)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(60-62)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(63-66)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(67-70)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, - ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(15-17)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(18-20)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(21-23)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(42-44)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(45-47)% chance to Avoid being Stunned" }, } }, - ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(48-50)% chance to Avoid being Stunned" }, } }, - ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(6-7)% increased Effect of Onslaught on you" }, } }, - ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(8-9)% increased Effect of Onslaught on you" }, } }, - ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(10-11)% increased Effect of Onslaught on you" }, } }, - ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, } }, - ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, } }, - ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(24-25)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(26-27)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(28-29)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "7% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "8% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "9% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "16% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "17% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "18% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(33-35)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(36-38)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(39-41)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(54-57)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(58-61)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(54-56)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(57-59)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(60-62)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(63-66)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(67-70)% increased Armour from Equipped Helmet and Gloves" }, } }, - ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 5% faster" }, } }, - ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 6% faster" }, } }, - ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 7% faster" }, } }, - ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } }, - ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } }, - ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 14% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 15% faster" }, } }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 16% faster" }, } }, - ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 5% faster" }, } }, - ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 6% faster" }, } }, - ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 7% faster" }, } }, - ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, } }, - ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, } }, - ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [4074358700] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 14% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 15% faster" }, [3283106665] = { "" }, } }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6546 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 16% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 5% faster" }, } }, - ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 6% faster" }, } }, - ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 7% faster" }, } }, - ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, } }, - ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, } }, - ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [4074358700] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 14% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 15% faster" }, [3283106665] = { "" }, } }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6545 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 16% faster" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } }, - ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [4074358700] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(42-44)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(45-47)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(48-50)% increased Stun Threshold" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(15-17)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(18-20)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(21-23)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(42-44)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(45-47)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(48-50)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, - ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-16)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(17-18)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(19-20)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-22)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(19-20)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(21-22)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(31-32)% increased Warcry Speed" }, } }, - ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(33-34)% increased Warcry Speed" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (42-44)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (45-47)% increased Cooldown Recovery Rate" }, } }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (48-50)% increased Cooldown Recovery Rate" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7300 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage" }, } }, - ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage" }, } }, - ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, } }, - ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, } }, - ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage" }, } }, - ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9968 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage" }, } }, - ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage" }, } }, - ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, } }, - ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, } }, - ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage" }, } }, - ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, - ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(6-7)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(8-9)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(10-11)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(24-25)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(26-27)% increased Rallying Cry Buff Effect" }, } }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(28-29)% increased Rallying Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(6-7)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(8-9)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(10-11)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(24-25)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(26-27)% increased Battlemage's Cry Buff Effect" }, } }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(28-29)% increased Battlemage's Cry Buff Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (15-17)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (18-20)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (21-23)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (42-44)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (45-47)% increased Area of Effect" }, } }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7268 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (48-50)% increased Area of Effect" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6858 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-17)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-20)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-23)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(42-44)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(45-47)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(48-50)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(33-35)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(36-38)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(39-41)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-57)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(58-61)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-56)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(57-59)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(60-62)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(63-66)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(67-70)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(33-35)% chance to Avoid being Poisoned" }, } }, - ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(36-38)% chance to Avoid being Poisoned" }, } }, - ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(39-41)% chance to Avoid being Poisoned" }, } }, - ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, } }, - ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, } }, - ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-57)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(58-61)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-56)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(57-59)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(60-62)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(63-66)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(67-70)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, - ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "5% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "6% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "7% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "8% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "9% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "8% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "9% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "14% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "16% increased Cooldown Recovery Rate" }, } }, - ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(6-7)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(8-9)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(10-11)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(12-13)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(14-15)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(16-17)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(12-13)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(14-15)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(16-17)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(24-25)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(26-27)% increased Elusive Effect" }, } }, - ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6350 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(28-29)% increased Elusive Effect" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(20-21)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(22-23)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(24-25)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(38-39)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(40-41)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(42-43)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(20-21)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(22-23)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(24-25)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(38-39)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(40-41)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(42-43)% to Critical Strike Multiplier for Attack Damage" }, } }, - ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-17)% increased Fire Damage" }, } }, - ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, } }, - ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, } }, - ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, } }, - ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-28)% increased Fire Damage" }, } }, - ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-30)% increased Fire Damage" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-34)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-36)% increased Fire Damage" }, [4074358700] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-35)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(36-38)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(39-40)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-42)% increased Fire Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-17)% increased Cold Damage" }, } }, - ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-20)% increased Cold Damage" }, } }, - ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, } }, - ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, } }, - ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-28)% increased Cold Damage" }, } }, - ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-34)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-36)% increased Cold Damage" }, [4074358700] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-35)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(36-38)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(39-40)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-42)% increased Cold Damage" }, [3283106665] = { "" }, } }, - ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-17)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-20)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-28)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(33-34)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(35-36)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(33-35)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(36-38)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(39-40)% increased Lightning Damage" }, } }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(41-42)% increased Lightning Damage" }, } }, - ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-17)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-28)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(29-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-34)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-36)% increased Chaos Damage" }, [4074358700] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-35)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(36-38)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(39-40)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(41-42)% increased Chaos Damage" }, [3283106665] = { "" }, } }, - ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-17)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-20)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-23)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(24-26)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-28)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-30)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(21-23)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(24-26)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(33-34)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(35-36)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(33-35)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(36-38)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(39-40)% increased Global Physical Damage" }, } }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(41-42)% increased Global Physical Damage" }, } }, - ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(15-17)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(18-20)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(21-23)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(42-44)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(45-47)% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(48-50)% increased Arctic Armour Buff Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (15-17)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (18-20)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (21-23)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (42-44)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (45-47)% increased Area of Effect" }, } }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6649 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (48-50)% increased Area of Effect" }, } }, - ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (15-17)% increased Buff Effect" }, } }, - ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (18-20)% increased Buff Effect" }, } }, - ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (21-23)% increased Buff Effect" }, } }, - ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, } }, - ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, } }, - ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [4074358700] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (45-47)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10366 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (48-50)% increased Buff Effect" }, [3283106665] = { "" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "5% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "6% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "7% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "8% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "7% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "8% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "13% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "14% of Damage is taken from Mana before Life" }, } }, - ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(19-21)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(22-24)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(25-27)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(28-30)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(37-39)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(40-42)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(49-51)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(52-54)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(55-57)% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(58-60)% increased Effect of Buffs granted by your Golems" }, } }, - ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(9-10)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(11-12)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(13-14)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-16)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(21-22)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(23-24)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(29-30)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(31-32)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(33-34)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(35-36)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "7% increased Effect of your Curses" }, } }, - ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "8% increased Effect of your Curses" }, } }, - ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "9% increased Effect of your Curses" }, } }, - ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } }, - ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, } }, - ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [4074358700] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "16% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "17% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "18% increased Effect of your Curses" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(13-14)% increased effect of Offerings" }, } }, - ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(15-16)% increased effect of Offerings" }, } }, - ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(17-18)% increased effect of Offerings" }, } }, - ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, } }, - ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, } }, - ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [4074358700] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(31-32)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(33-34)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(35-36)% increased effect of Offerings" }, [3283106665] = { "" }, } }, - ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(19-20)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(21-22)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(23-24)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(37-38)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(39-40)% increased Warcry Buff Effect" }, } }, - ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(41-42)% increased Warcry Buff Effect" }, } }, - ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (6-7)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-9)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-11)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (24-25)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (26-27)% increased Effect" }, } }, - ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (28-29)% increased Effect" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-9)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-11)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(12-13)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(26-27)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(28-29)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(30-31)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, - ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, - ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, - ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, - ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, - ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, - ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 15 seconds" }, } }, - ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 14 seconds" }, } }, - ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 13 seconds" }, } }, - ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 12 seconds" }, } }, - ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, } }, - ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 9 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 8 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [4074358700] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 5 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 4 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 3 seconds" }, [3283106665] = { "" }, } }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 2 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 15 seconds" }, } }, - ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 14 seconds" }, } }, - ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 13 seconds" }, } }, - ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 12 seconds" }, } }, - ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, } }, - ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 9 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 8 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [4074358700] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 5 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 4 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 3 seconds" }, [3283106665] = { "" }, } }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 2 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 15 seconds" }, } }, - ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 14 seconds" }, } }, - ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 13 seconds" }, } }, - ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 12 seconds" }, } }, - ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, } }, - ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 9 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 8 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [4074358700] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 5 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 4 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 3 seconds" }, [3283106665] = { "" }, } }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 2 seconds" }, [3283106665] = { "" }, } }, - ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "5% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "7% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "8% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "9% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "10% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "7% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "8% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "13% Chance to Block Attack Damage" }, } }, - ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "14% Chance to Block Attack Damage" }, } }, - ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "5% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "6% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "13% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "14% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(17-18)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-20)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-22)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(23-24)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(25-26)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-28)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(23-24)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(25-26)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(27-28)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(35-36)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(37-38)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(39-40)% increased Armour" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(17-18)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-20)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-22)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [4074358700] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(35-36)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(37-38)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-40)% increased Evasion Rating" }, [3283106665] = { "" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-7)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-9)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-11)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(24-25)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(26-27)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(28-29)% increased maximum Energy Shield" }, } }, - ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "45% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "50% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "55% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "90% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "95% of Damage from your Hits cannot be Reflected" }, } }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "100% of Damage from your Hits cannot be Reflected" }, } }, - ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "45% of Hit Damage from your Minions cannot be Reflected" }, } }, - ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "50% of Hit Damage from your Minions cannot be Reflected" }, } }, - ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "55% of Hit Damage from your Minions cannot be Reflected" }, } }, - ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, } }, - ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, } }, - ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "90% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "95% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9356 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "100% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (19-21)% increased Aura Effect" }, } }, - ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (22-24)% increased Aura Effect" }, } }, - ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (25-27)% increased Aura Effect" }, } }, - ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-30)% increased Aura Effect" }, } }, - ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, } }, - ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (19-21)% increased Aura Effect" }, } }, - ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (22-24)% increased Aura Effect" }, } }, - ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (25-27)% increased Aura Effect" }, } }, - ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-30)% increased Aura Effect" }, } }, - ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, } }, - ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (19-21)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (22-24)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (25-27)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-30)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (37-39)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (40-42)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (49-51)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (52-54)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (55-57)% increased Aura Effect" }, } }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (58-60)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (19-21)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (22-24)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (25-27)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-30)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (19-21)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (22-24)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (25-27)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-30)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (37-39)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (40-42)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (49-51)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (52-54)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (55-57)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (58-60)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (19-21)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (22-24)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (25-27)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (28-30)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (37-39)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (40-42)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (49-51)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (52-54)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (55-57)% increased Aura Effect" }, } }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9711 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (58-60)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (19-21)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (22-24)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (25-27)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (28-30)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (37-39)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (40-42)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (49-51)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (52-54)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (55-57)% increased Aura Effect" }, } }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (58-60)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (19-21)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (22-24)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (25-27)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (28-30)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (37-39)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (40-42)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (49-51)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (52-54)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (55-57)% increased Aura Effect" }, } }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (58-60)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (19-21)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (22-24)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (25-27)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (28-30)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (37-39)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (40-42)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (49-51)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (52-54)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (55-57)% increased Aura Effect" }, } }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (58-60)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (19-21)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (22-24)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (25-27)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (28-30)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (37-39)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (40-42)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (49-51)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (52-54)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (55-57)% increased Aura Effect" }, } }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (58-60)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (19-21)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (22-24)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (25-27)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (28-30)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (37-39)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (40-42)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (49-51)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (52-54)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (55-57)% increased Aura Effect" }, } }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (58-60)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (19-21)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (22-24)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (25-27)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (28-30)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (37-39)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (40-42)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (49-51)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (52-54)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (55-57)% increased Aura Effect" }, } }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (58-60)% increased Aura Effect" }, } }, - ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (19-21)% increased Aura Effect" }, } }, - ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (22-24)% increased Aura Effect" }, } }, - ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (25-27)% increased Aura Effect" }, } }, - ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (28-30)% increased Aura Effect" }, } }, - ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, } }, - ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, - ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (19-21)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (22-24)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (25-27)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (28-30)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (37-39)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (40-42)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (49-51)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (52-54)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (55-57)% increased Aura Effect" }, } }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (58-60)% increased Aura Effect" }, } }, - ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (6-7)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (8-9)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-11)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (24-25)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (26-27)% chance to Fortify" }, } }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (28-29)% chance to Fortify" }, } }, - ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-6)% to all Elemental Resistances" }, } }, - ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(7-8)% to all Elemental Resistances" }, } }, - ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-10)% to all Elemental Resistances" }, } }, - ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, } }, - ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, } }, - ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, - ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(23-24)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-26)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(27-28)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "7% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "8% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [4074358700] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "15% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "16% increased Life Recovery rate" }, [3283106665] = { "" }, } }, - ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "7% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "8% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "9% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "11% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "12% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "9% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "10% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "15% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "16% increased Mana Recovery rate" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "7% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "8% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "15% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "16% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, - ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 230 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 220 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 210 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 200 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 210 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 200 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 150 Strength" }, } }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 140 Strength" }, } }, - ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 230 Dexterity" }, } }, - ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 220 Dexterity" }, } }, - ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, } }, - ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, } }, - ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, } }, - ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [4074358700] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 150 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 140 Dexterity" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 230 Intelligence" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 220 Intelligence" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [4074358700] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 150 Intelligence" }, [3283106665] = { "" }, } }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 140 Intelligence" }, [3283106665] = { "" }, } }, - ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(7-8)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(9-10)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(11-12)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(25-26)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(27-28)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(29-30)% increased Skill Effect Duration" }, } }, + ["IncreasedAttackSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "8% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "9% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "11% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, [4074358700] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, [4074358700] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "14% increased Attack Speed" }, [4074358700] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, [4074358700] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [4074358700] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [4074358700] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [3283106665] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [3283106665] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, [3283106665] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "19% increased Attack Speed" }, [3283106665] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "20% increased Attack Speed" }, [3283106665] = { "" }, } }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1434 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "21% increased Attack Speed" }, [3283106665] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(19-21)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(22-24)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-27)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(28-30)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(37-39)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(40-42)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(49-51)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(52-54)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(55-57)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4894 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(58-60)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-9) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (18-21) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (10-14) to (21-24) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1290 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-28) Physical Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-15) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-9) to (14-16) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (16-20) to (32-37) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (18-24) to (37-42) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1384 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (21-27) to (42-49) Fire Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-13) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (14-18) to (28-33) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (16-21) to (32-38) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1393 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (18-24) to (37-44) Cold Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-24) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (24-26) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (27-28) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [4074358700] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (55-59) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (63-68) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1404 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (72-78) Lightning Damage to Attacks" }, [3283106665] = { "" }, } }, + ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-6) to (10-11) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-7) to (11-12) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-7) to (12-14) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (12-15) to (24-28) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (13-18) to (28-32) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1411 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (16-20) to (32-37) Chaos Damage to Attacks" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(5-7)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-10)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-13)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-18)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-20)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-19)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(20-22)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-27)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-29)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-28)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-31)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(32-34)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(35-36)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(37-38)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(5-7)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(8-10)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-13)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-18)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-20)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-19)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(20-22)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-27)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(28-29)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-28)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-31)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(32-34)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(35-36)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(37-38)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(5-7)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(8-10)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-13)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-18)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-20)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(17-19)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(20-22)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(26-27)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(28-29)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(26-28)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(29-31)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(32-34)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(35-36)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(37-38)% to Physical Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(5-7)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(8-10)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-13)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-18)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-20)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(17-19)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(20-22)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(26-27)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(28-29)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(26-28)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(29-31)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(32-34)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(35-36)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(37-38)% to Chaos Damage over Time Multiplier" }, } }, + ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (15-17)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (18-20)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (21-23)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-28)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (29-30)% increased Buff Effect" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 7211 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (15-17)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (18-20)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (21-23)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (27-28)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (29-30)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (27-29)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (30-32)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (36-37)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (38-39)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (36-38)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (39-41)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (42-44)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (45-46)% increased Buff Effect" }, } }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 7215 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (47-48)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (15-17)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (18-20)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (21-23)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-28)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (29-30)% increased Buff Effect" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 7225 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (15-17)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (18-20)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (21-23)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-28)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (29-30)% increased Buff Effect" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 7219 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (15-17)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (18-20)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (21-23)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-28)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (29-30)% increased Buff Effect" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 7207 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.2 metres" }, } }, + ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.3 metres" }, } }, + ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.4 metres" }, } }, + ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } }, + ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, } }, + ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } }, + ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } }, + ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2241 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } }, + ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.2 metres" }, } }, + ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.3 metres" }, } }, + ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.4 metres" }, } }, + ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, + ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } }, + ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } }, + ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.1 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.2 metres" }, } }, + ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2244 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.3 metres" }, } }, + ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.2 metres" }, } }, + ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.3 metres" }, } }, + ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.4 metres" }, } }, + ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, + ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, } }, + ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } }, + ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } }, + ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2245 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } }, + ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(6-7)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(24-25)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(26-27)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(28-29)% reduced Enemy Stun Threshold" }, } }, + ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, + ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (17-19)% increased Damage" }, } }, + ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-22)% increased Damage" }, } }, + ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-25)% increased Damage" }, } }, + ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-27)% increased Damage" }, } }, + ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-29)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (26-28)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (29-31)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (32-34)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (35-37)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (38-39)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (40-41)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (38-40)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (41-43)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (44-46)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (47-49)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (50-51)% increased Damage" }, } }, + ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (52-53)% increased Damage" }, } }, + ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "8% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "9% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "10% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "11% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "14% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "15% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [4074358700] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "18% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "19% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "20% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1950 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "21% increased Trap Throwing Speed" }, [3283106665] = { "" }, } }, + ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "8% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "9% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "10% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "11% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "12% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "13% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "12% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "13% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "14% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "15% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "18% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "19% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "20% increased Mine Throwing Speed" }, } }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1951 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "21% increased Mine Throwing Speed" }, } }, + ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "15% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "20% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "25% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "30% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "35% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "40% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "45% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "50% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "55% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "60% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "65% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "70% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "75% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "80% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "85% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "90% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "95% chance to Extinguish Enemies on Hit" }, } }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6617 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "100% chance to Extinguish Enemies on Hit" }, } }, + ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9309 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } }, + ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6984 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } }, + ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6932 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "20% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "30% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "35% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "40% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "45% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "50% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "55% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "60% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "65% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "70% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "75% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "80% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "85% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "90% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "95% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "15% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "20% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "25% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "30% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "35% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "40% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "45% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "50% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "55% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "60% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "65% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "70% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "75% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "80% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "85% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "90% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "95% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+6% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+13% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+14% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+15% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(33-35)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(36-38)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(39-41)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-57)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(58-61)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-56)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(57-59)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(60-62)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(63-66)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6573 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(67-70)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } }, + ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -20% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -21% to Fire Resistance" }, } }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6667 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -22% to Fire Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -20% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -21% to Cold Resistance" }, } }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5905 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -22% to Cold Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, [4074358700] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, [4074358700] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, [4074358700] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [4074358700] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [4074358700] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [4074358700] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [3283106665] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [3283106665] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [3283106665] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance" }, [3283106665] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance" }, [3283106665] = { "" }, } }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7560 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance" }, [3283106665] = { "" }, } }, + ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (10-12)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (13-15)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (16-18)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-20)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (21-22)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (23-24)% slower" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-21)% slower" }, [4074358700] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (22-24)% slower" }, [4074358700] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (25-27)% slower" }, [4074358700] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-29)% slower" }, [4074358700] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (30-31)% slower" }, [4074358700] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (32-33)% slower" }, [4074358700] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-30)% slower" }, [3283106665] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (31-33)% slower" }, [3283106665] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (34-36)% slower" }, [3283106665] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (37-39)% slower" }, [3283106665] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (40-42)% slower" }, [3283106665] = { "" }, } }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10780 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (43-45)% slower" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "15% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "20% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "55% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "65% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "15% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "20% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "55% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "60% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "65% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } }, + ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "15% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "20% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "55% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "60% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "65% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "10% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "15% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "20% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "55% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "60% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "65% of Physical Damage Converted to Chaos Damage" }, } }, + ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.2% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.3% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1695 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1.1% of Fire Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.2% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.3% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1700 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1.1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.2% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.3% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1704 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1.1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.2% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.3% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1691 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1.1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } }, + ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.2% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.3% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1707 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1.1% of Chaos Damage Leeched as Life" }, } }, + ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } }, + ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6140 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } }, + ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6138 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } }, + ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, + ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, + ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6139 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } }, + ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(6-7)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(8-9)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(10-11)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(12-13)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(14-15)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(16-17)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(12-13)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(14-15)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(16-17)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(24-25)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(26-27)% increased Blind Effect" }, } }, + ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5291 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(28-29)% increased Blind Effect" }, } }, + ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (20-22)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (23-25)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-33)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (34-35)% increased Damage" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, + ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 25% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 30% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 35% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 40% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 45% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 50% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 55% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 60% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 65% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 70% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 75% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 80% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 85% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 90% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 95% chance to Maim on Hit" }, } }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks always Maim on Hit" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "15% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "20% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "25% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "30% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "35% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "40% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "45% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "50% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "55% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "60% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "65% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "70% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "75% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "80% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "85% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "90% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "95% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } }, + ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(9-10)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(11-12)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(25-26)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(27-28)% increased Global Accuracy Rating" }, } }, + ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(6-7)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(8-9)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(10-11)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(12-13)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(14-15)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(16-17)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(12-13)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(14-15)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(16-17)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(24-25)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(26-27)% increased Effect of your Marks" }, } }, + ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2624 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(28-29)% increased Effect of your Marks" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(43-45) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(46-48) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(67-69) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4561 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(70-72) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } }, + ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } }, + ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } }, + ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "5% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "10% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "15% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "20% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "30% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "15% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "20% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "45% chance to Poison on Hit" }, } }, + ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3208 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "50% chance to Poison on Hit" }, } }, + ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 5% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 45% chance to cause Bleeding" }, } }, + ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2515 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 50% chance to cause Bleeding" }, } }, + ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "5% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "10% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "45% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "50% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "5% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "45% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "50% chance to Impale Enemies on Hit with Attacks" }, } }, + ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "9% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "11% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "13% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "12% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "13% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "14% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "15% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "18% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "19% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "20% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "21% increased Cast Speed" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(28-30)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(31-33)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(34-36)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(37-39)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(46-48)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(49-51)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(58-60)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(61-63)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(64-66)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(67-69)% increased Spell Critical Strike Chance" }, } }, + ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (20-23) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-14) to (21-25) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (11-15) to (24-27) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-31) to (47-55) Fire Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (27-35) to (54-63) Fire Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-40) to (63-72) Fire Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-11) to (17-20) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (19-22) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-14) to (21-24) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (21-27) to (42-50) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (24-32) to (48-57) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (28-36) to (56-65) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (34-36) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (37-40) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (41-44) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-8) to (83-90) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-10) to (96-103) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-11) to (110-119) Lightning Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-10) to (15-18) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-11) to (17-20) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (9-12) to (19-22) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [4074358700] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-25) to (39-44) Physical Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-28) to (45-51) Physical Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-33) to (51-59) Physical Damage to Spells" }, [3283106665] = { "" }, } }, + ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (7-10) to (15-17) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (8-10) to (16-19) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (9-11) to (18-20) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (18-23) to (36-41) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (20-27) to (41-48) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (23-31) to (47-55) Chaos Damage to Spells" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(7-8)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(9-10)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(11-12)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(25-26)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(27-28)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6659 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(29-30)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(7-8)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(9-10)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(11-12)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(25-26)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(27-28)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5900 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(29-30)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(7-8)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(9-10)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(11-12)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(25-26)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(27-28)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7553 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(29-30)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(7-8)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(9-10)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(11-12)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(25-26)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(27-28)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9806 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(29-30)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "10% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "11% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "12% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "13% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "14% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "15% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "14% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "15% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "16% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "17% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "20% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "21% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "22% increased Flammability Curse Effect" }, } }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 4049 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "23% increased Flammability Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "10% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "11% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "12% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "13% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "16% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "17% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "20% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "21% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "22% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "23% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "10% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "11% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "12% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "13% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "14% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "15% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "14% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "15% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "16% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "17% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "20% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "21% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "22% increased Conductivity Curse Effect" }, } }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "23% increased Conductivity Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "10% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "11% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "12% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "13% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "14% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "15% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "14% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "15% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "16% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "17% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "20% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "21% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "22% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "23% increased Vulnerability Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "10% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "11% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "12% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "13% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "16% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "17% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "20% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "21% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "22% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "23% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "10% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "11% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "12% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "13% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "16% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "17% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "20% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "21% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "22% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6255 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "23% increased Despair Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "10% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "11% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "12% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "13% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "16% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "17% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "20% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "21% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "22% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "23% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "10% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "11% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "12% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "13% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "16% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "17% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "20% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "21% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "22% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 4048 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "23% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "10% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "11% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "12% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "13% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "16% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "17% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [4074358700] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "20% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "21% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "22% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 4051 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "23% increased Punishment Curse Effect" }, [3283106665] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicit1"] = { type = "Exarch", affix = "", "(25-26)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(25-26)% increased Mana Cost Efficiency" }, } }, + ["ManaCostEfficiencyEldritchImplicit2"] = { type = "Exarch", affix = "", "(27-28)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(27-28)% increased Mana Cost Efficiency" }, } }, + ["ManaCostEfficiencyEldritchImplicit3"] = { type = "Exarch", affix = "", "(29-30)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(29-30)% increased Mana Cost Efficiency" }, } }, + ["ManaCostEfficiencyEldritchImplicit4"] = { type = "Exarch", affix = "", "(31-32)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(31-32)% increased Mana Cost Efficiency" }, } }, + ["ManaCostEfficiencyEldritchImplicit5"] = { type = "Exarch", affix = "", "(33-34)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(33-34)% increased Mana Cost Efficiency" }, } }, + ["ManaCostEfficiencyEldritchImplicit6"] = { type = "Exarch", affix = "", "(35-36)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(35-36)% increased Mana Cost Efficiency" }, } }, + ["ManaCostEfficiencyEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(35-36)% increased Mana Cost Efficiency" }, [4074358700] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-38)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(37-38)% increased Mana Cost Efficiency" }, [4074358700] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-40)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(39-40)% increased Mana Cost Efficiency" }, [4074358700] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (41-42)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(41-42)% increased Mana Cost Efficiency" }, [4074358700] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-44)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(43-44)% increased Mana Cost Efficiency" }, [4074358700] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-46)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(45-46)% increased Mana Cost Efficiency" }, [4074358700] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-45)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(44-45)% increased Mana Cost Efficiency" }, [3283106665] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-47)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(46-47)% increased Mana Cost Efficiency" }, [3283106665] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-49)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(48-49)% increased Mana Cost Efficiency" }, [3283106665] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(50-51)% increased Mana Cost Efficiency" }, [3283106665] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(52-53)% increased Mana Cost Efficiency" }, [3283106665] = { "" }, } }, + ["ManaCostEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-55)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 75, group = "ManaCostEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(54-55)% increased Mana Cost Efficiency" }, [3283106665] = { "" }, } }, + ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(19-20)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(21-22)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(23-24)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(37-38)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(39-40)% reduced Mana Cost of Attacks" }, } }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4918 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(41-42)% reduced Mana Cost of Attacks" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6152 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } }, + ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (14-16)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (17-19)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-22)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-27)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-29)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (20-22)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (32-33)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (34-35)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (32-34)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (35-37)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (38-39)% increased maximum Life" }, } }, + ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (40-41)% increased maximum Life" }, } }, + ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-12)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-14)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-16)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (17-18)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-20)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-22)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (25-26)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (27-28)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (31-32)% increased Movement Speed" }, } }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1792 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (33-34)% increased Movement Speed" }, } }, + ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-16)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(17-18)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(13-14)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(15-16)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(17-18)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(25-26)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(27-28)% increased Area of Effect" }, } }, + ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(29-30)% increased Area of Effect" }, } }, + ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "21% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "22% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "23% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "30% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "31% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "32% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6518 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } }, + ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 3015 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 3017 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 3018 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } }, + ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-14)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(15-16)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(17-18)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(31-32)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(33-34)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(35-36)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(14-16)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(17-19)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(26-27)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(28-29)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(32-33)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(34-35)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(32-34)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(35-37)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(38-39)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(40-41)% increased Effect of Non-Damaging Ailments" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } }, + ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "7% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "9% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "17% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "18% increased Mana Reservation Efficiency of Skills" }, } }, + ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "5% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, [4074358700] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, [4074358700] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [4074358700] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [4074358700] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [4074358700] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [4074358700] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [3283106665] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [3283106665] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [3283106665] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [3283106665] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "45% chance to Ignite" }, [3283106665] = { "" }, } }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "50% chance to Ignite" }, [3283106665] = { "" }, } }, + ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "15% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "25% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "30% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "15% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "20% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "25% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "30% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "35% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "40% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "25% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "30% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "35% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "40% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "45% chance to Freeze" }, } }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "50% chance to Freeze" }, } }, + ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "5% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "20% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "15% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "20% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "25% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "30% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "35% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "40% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "25% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "30% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "35% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "40% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "45% chance to Shock" }, } }, + ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "50% chance to Shock" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(33-35)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-38)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(39-41)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(54-57)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(58-61)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(54-56)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(57-59)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(60-62)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(63-66)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(67-70)% reduced Ignite Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(33-35)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-38)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(39-41)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-57)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(58-61)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-56)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(57-59)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(60-62)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(63-66)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(67-70)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(33-35)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-38)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(39-41)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-57)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(58-61)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-56)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(57-59)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(60-62)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(63-66)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(67-70)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } }, + ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(19-21)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(22-24)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-27)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(37-39)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(40-42)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(49-51)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(52-54)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(55-57)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(58-60)% increased Mana Regeneration Rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6509 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } }, + ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(14-16)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-19)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-22)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(23-25)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(26-27)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(28-29)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(26-28)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(29-31)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(32-34)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(35-37)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(38-39)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(40-41)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(38-40)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(41-43)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(44-46)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(47-49)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(50-51)% increased Attack Damage" }, } }, + ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1221 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(52-53)% increased Attack Damage" }, } }, + ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-16)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-19)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-22)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-25)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-27)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(28-29)% increased Spell Damage" }, } }, + ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-28)% increased Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-31)% increased Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(32-34)% increased Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-37)% increased Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-39)% increased Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-41)% increased Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-40)% increased Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(41-43)% increased Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(44-46)% increased Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(47-49)% increased Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-51)% increased Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(52-53)% increased Spell Damage" }, [3283106665] = { "" }, } }, + ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(6-7)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(8-9)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(10-11)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(24-25)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(26-27)% increased Effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(28-29)% increased Effect of Arcane Surge on you" }, } }, + ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "7% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "8% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "8% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "9% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "14% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "16% increased Movement Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4571 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 2 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 3 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, [4074358700] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, [4074358700] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [4074358700] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [4074358700] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [4074358700] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [4074358700] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [3283106665] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [3283106665] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [3283106665] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [3283106665] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 10 seconds" }, [3283106665] = { "" }, } }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5333 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 11 seconds" }, [3283106665] = { "" }, } }, + ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 2 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 3 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 10 seconds" }, } }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5331 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 11 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 2 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 3 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 10 seconds" }, } }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5332 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 11 seconds" }, } }, + ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(13-14)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-16)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(17-18)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(19-20)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-22)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(23-24)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(19-20)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(21-22)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(23-24)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(31-32)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(33-34)% to Fire Resistance" }, } }, + ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1648 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(35-36)% to Fire Resistance" }, } }, + ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(13-14)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-16)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(17-18)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, [4074358700] = { "" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, [4074358700] = { "" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, [4074358700] = { "" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [4074358700] = { "" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [4074358700] = { "" }, } }, + ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [4074358700] = { "" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [3283106665] = { "" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [3283106665] = { "" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [3283106665] = { "" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-32)% to Cold Resistance" }, [3283106665] = { "" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(33-34)% to Cold Resistance" }, [3283106665] = { "" }, } }, + ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1654 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-36)% to Cold Resistance" }, [3283106665] = { "" }, } }, + ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(13-14)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-16)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(17-18)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(19-20)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-22)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(23-24)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(19-20)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(21-22)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(23-24)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(31-32)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(33-34)% to Lightning Resistance" }, } }, + ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1659 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(35-36)% to Lightning Resistance" }, } }, + ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(6-7)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-9)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-11)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-13)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(14-15)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-17)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(12-13)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(14-15)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(16-17)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(24-25)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(26-27)% to Chaos Resistance" }, } }, + ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1664 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(28-29)% to Chaos Resistance" }, } }, + ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "10% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "11% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "12% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "13% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, [4074358700] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, [4074358700] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "16% increased Totem Placement speed" }, [4074358700] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "17% increased Totem Placement speed" }, [4074358700] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [4074358700] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [4074358700] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [3283106665] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [3283106665] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "20% increased Totem Placement speed" }, [3283106665] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "21% increased Totem Placement speed" }, [3283106665] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "22% increased Totem Placement speed" }, [3283106665] = { "" }, } }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2604 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "23% increased Totem Placement speed" }, [3283106665] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "10% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "11% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "12% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "13% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, [4074358700] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, [4074358700] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "16% increased Brand Attachment range" }, [4074358700] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "17% increased Brand Attachment range" }, [4074358700] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [4074358700] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [4074358700] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [3283106665] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [3283106665] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "20% increased Brand Attachment range" }, [3283106665] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "21% increased Brand Attachment range" }, [3283106665] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "22% increased Brand Attachment range" }, [3283106665] = { "" }, } }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 10189 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "23% increased Brand Attachment range" }, [3283106665] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(31-33)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(34-36)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(37-39)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(40-42)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(49-51)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(52-54)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(61-63)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(64-66)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(67-69)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4133 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(70-72)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(31-33)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(34-36)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(37-39)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(40-42)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(49-51)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(52-54)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(61-63)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(64-66)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(67-69)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4134 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(70-72)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(31-33)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(34-36)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(37-39)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(40-42)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(49-51)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(52-54)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(61-63)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(64-66)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(67-69)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4135 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(70-72)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } }, + ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(31-33)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(34-36)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(37-39)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(40-42)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(49-51)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(52-54)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(61-63)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(64-66)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(67-69)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4132 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(70-72)% increased Effect of the Buff granted by your Stone Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(31-33)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(34-36)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(37-39)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(40-42)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(49-51)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(52-54)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(61-63)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(64-66)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(67-69)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4136 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(70-72)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } }, + ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(31-33)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(34-36)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(37-39)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(40-42)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(49-51)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(52-54)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(61-63)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(64-66)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(67-69)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5050 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(70-72)% increased Effect of the Buff granted by your Carrion Golems" }, } }, + ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (6-7)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (8-9)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (10-11)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1196 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (6-7)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (8-9)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (10-11)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1195 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } }, + ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (6-7)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (8-9)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (10-11)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (24-25)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (26-27)% increased Effect" }, } }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1197 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (28-29)% increased Effect" }, } }, + ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(33-35)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-38)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(39-41)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-57)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, + ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(58-61)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-56)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(57-59)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(60-62)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(63-66)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, + ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(67-70)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } }, + ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(33-35)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-38)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(39-41)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(54-57)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(58-61)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(54-56)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(57-59)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(60-62)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(63-66)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(67-70)% chance to Avoid being Frozen" }, } }, + ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(33-35)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-38)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-41)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, } }, + ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, + ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, + ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, + ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, + ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-57)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, + ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(58-61)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-56)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(57-59)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(60-62)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(63-66)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, + ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(67-70)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } }, + ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(15-17)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(18-20)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(21-23)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(42-44)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(45-47)% chance to Avoid being Stunned" }, } }, + ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(48-50)% chance to Avoid being Stunned" }, } }, + ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(6-7)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(8-9)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(10-11)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(24-25)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(26-27)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(28-29)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "7% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "8% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "9% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [4074358700] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "16% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "17% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1600 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "18% increased Life Regeneration rate" }, [3283106665] = { "" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(33-35)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(36-38)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(39-41)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(54-57)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(58-61)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(54-56)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(57-59)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(60-62)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(63-66)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4808 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(67-70)% increased Armour from Equipped Helmet and Gloves" }, } }, + ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 5% faster" }, } }, + ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 6% faster" }, } }, + ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 7% faster" }, } }, + ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } }, + ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } }, + ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 14% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 15% faster" }, } }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2590 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 16% faster" }, } }, + ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 5% faster" }, } }, + ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 6% faster" }, } }, + ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 7% faster" }, } }, + ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, } }, + ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, } }, + ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, [4074358700] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, [4074358700] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, [4074358700] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [4074358700] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [4074358700] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [4074358700] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [3283106665] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [3283106665] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [3283106665] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 14% faster" }, [3283106665] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 15% faster" }, [3283106665] = { "" }, } }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6633 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 16% faster" }, [3283106665] = { "" }, } }, + ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 5% faster" }, } }, + ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 6% faster" }, } }, + ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 7% faster" }, } }, + ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, } }, + ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, } }, + ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, [4074358700] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, [4074358700] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, [4074358700] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [4074358700] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [4074358700] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [4074358700] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [3283106665] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [3283106665] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [3283106665] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 14% faster" }, [3283106665] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 15% faster" }, [3283106665] = { "" }, } }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6632 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 16% faster" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } }, + ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, [4074358700] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, [4074358700] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, [4074358700] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [4074358700] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [4074358700] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [4074358700] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [3283106665] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [3283106665] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [3283106665] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(42-44)% increased Stun Threshold" }, [3283106665] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(45-47)% increased Stun Threshold" }, [3283106665] = { "" }, } }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3308 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(48-50)% increased Stun Threshold" }, [3283106665] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(15-17)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(18-20)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(21-23)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(42-44)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(45-47)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(48-50)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } }, + ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-16)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(17-18)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(19-20)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-22)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(19-20)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(21-22)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(31-32)% increased Warcry Speed" }, } }, + ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(33-34)% increased Warcry Speed" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (42-44)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (45-47)% increased Cooldown Recovery Rate" }, } }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3923 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (48-50)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7400 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 10112 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4714 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } }, + ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(6-7)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(8-9)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(10-11)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(24-25)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(26-27)% increased Rallying Cry Buff Effect" }, } }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4150 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(28-29)% increased Rallying Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(6-7)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(8-9)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(10-11)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(24-25)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(26-27)% increased Battlemage's Cry Buff Effect" }, } }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 5131 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(28-29)% increased Battlemage's Cry Buff Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (15-17)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (18-20)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (21-23)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (42-44)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (45-47)% increased Area of Effect" }, } }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7368 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (48-50)% increased Area of Effect" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (15-17)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (18-20)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (21-23)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6951 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-17)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-20)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-23)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(42-44)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(45-47)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(48-50)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(33-35)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(36-38)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(39-41)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-57)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(58-61)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-56)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(57-59)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(60-62)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(63-66)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(67-70)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(33-35)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(36-38)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(39-41)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-57)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(58-61)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-56)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(57-59)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(60-62)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(63-66)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(67-70)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } }, + ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "5% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "6% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "7% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "8% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "9% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "8% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "9% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "14% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "16% increased Cooldown Recovery Rate" }, } }, + ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(6-7)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(8-9)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(10-11)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(12-13)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(14-15)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(16-17)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(12-13)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(14-15)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(16-17)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(24-25)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(26-27)% increased Elusive Effect" }, } }, + ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6437 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(28-29)% increased Elusive Effect" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(20-21)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(22-23)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(24-25)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(38-39)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(40-41)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(42-43)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(20-21)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(22-23)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(24-25)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(38-39)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(40-41)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1514 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(42-43)% to Critical Strike Multiplier for Attack Damage" }, } }, + ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-17)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-28)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-30)% increased Fire Damage" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, [4074358700] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, [4074358700] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [4074358700] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [4074358700] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-34)% increased Fire Damage" }, [4074358700] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-36)% increased Fire Damage" }, [4074358700] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [3283106665] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [3283106665] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-35)% increased Fire Damage" }, [3283106665] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(36-38)% increased Fire Damage" }, [3283106665] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(39-40)% increased Fire Damage" }, [3283106665] = { "" }, } }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-42)% increased Fire Damage" }, [3283106665] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-17)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-20)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-28)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-30)% increased Cold Damage" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, [4074358700] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, [4074358700] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [4074358700] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [4074358700] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-34)% increased Cold Damage" }, [4074358700] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-36)% increased Cold Damage" }, [4074358700] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [3283106665] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [3283106665] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-35)% increased Cold Damage" }, [3283106665] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(36-38)% increased Cold Damage" }, [3283106665] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(39-40)% increased Cold Damage" }, [3283106665] = { "" }, } }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-42)% increased Cold Damage" }, [3283106665] = { "" }, } }, + ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-17)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-20)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-28)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-30)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(33-34)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(35-36)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(33-35)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(36-38)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(39-40)% increased Lightning Damage" }, } }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(41-42)% increased Lightning Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-17)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-28)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(29-30)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, [4074358700] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, [4074358700] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [4074358700] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [4074358700] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-34)% increased Chaos Damage" }, [4074358700] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-36)% increased Chaos Damage" }, [4074358700] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [3283106665] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [3283106665] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-35)% increased Chaos Damage" }, [3283106665] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(36-38)% increased Chaos Damage" }, [3283106665] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(39-40)% increased Chaos Damage" }, [3283106665] = { "" }, } }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(41-42)% increased Chaos Damage" }, [3283106665] = { "" }, } }, + ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-17)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-20)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-23)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(24-26)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-28)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-30)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(21-23)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(24-26)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(33-34)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(35-36)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(33-35)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(36-38)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(39-40)% increased Global Physical Damage" }, } }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(41-42)% increased Global Physical Damage" }, } }, + ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(15-17)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(18-20)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(21-23)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(42-44)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(45-47)% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(48-50)% increased Arctic Armour Buff Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (15-17)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (18-20)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (21-23)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (42-44)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (45-47)% increased Area of Effect" }, } }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6738 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (48-50)% increased Area of Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (15-17)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (18-20)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (21-23)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [4074358700] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (45-47)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10516 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (48-50)% increased Buff Effect" }, [3283106665] = { "" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "5% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "6% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "7% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "8% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "7% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "8% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "13% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "14% of Damage is taken from Mana before Life" }, } }, + ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(19-21)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(22-24)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(25-27)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(28-30)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(37-39)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(40-42)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(49-51)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(52-54)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(55-57)% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(58-60)% increased Effect of Buffs granted by your Golems" }, } }, + ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(9-10)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(11-12)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(13-14)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-16)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, + ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, + ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(21-22)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, + ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(23-24)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, + ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, + ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(29-30)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(31-32)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(33-34)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, + ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(35-36)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } }, + ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "7% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "8% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "9% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, [4074358700] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, [4074358700] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, [4074358700] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [4074358700] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [4074358700] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [4074358700] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [3283106665] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [3283106665] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [3283106665] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "16% increased Effect of your Curses" }, [3283106665] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "17% increased Effect of your Curses" }, [3283106665] = { "" }, } }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "18% increased Effect of your Curses" }, [3283106665] = { "" }, } }, + ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(13-14)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(15-16)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(17-18)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, [4074358700] = { "" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, [4074358700] = { "" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, [4074358700] = { "" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [4074358700] = { "" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [4074358700] = { "" }, } }, + ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [4074358700] = { "" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [3283106665] = { "" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [3283106665] = { "" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [3283106665] = { "" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(31-32)% increased effect of Offerings" }, [3283106665] = { "" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(33-34)% increased effect of Offerings" }, [3283106665] = { "" }, } }, + ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 4099 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(35-36)% increased effect of Offerings" }, [3283106665] = { "" }, } }, + ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(19-20)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(21-22)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(23-24)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(37-38)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(39-40)% increased Warcry Buff Effect" }, } }, + ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(41-42)% increased Warcry Buff Effect" }, } }, + ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (6-7)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-9)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-11)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (24-25)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (26-27)% increased Effect" }, } }, + ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (28-29)% increased Effect" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-9)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-11)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(12-13)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(26-27)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(28-29)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(30-31)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3514 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } }, + ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } }, + ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } }, + ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 15 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 14 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 13 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 12 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, [4074358700] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, [4074358700] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 9 seconds" }, [4074358700] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 8 seconds" }, [4074358700] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [4074358700] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [4074358700] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [3283106665] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [3283106665] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 5 seconds" }, [3283106665] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 4 seconds" }, [3283106665] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 3 seconds" }, [3283106665] = { "" }, } }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5320 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 2 seconds" }, [3283106665] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 15 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 14 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 13 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 12 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, [4074358700] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, [4074358700] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 9 seconds" }, [4074358700] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 8 seconds" }, [4074358700] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [4074358700] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [4074358700] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [3283106665] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [3283106665] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 5 seconds" }, [3283106665] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 4 seconds" }, [3283106665] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 3 seconds" }, [3283106665] = { "" }, } }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5321 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 2 seconds" }, [3283106665] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 15 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 14 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 13 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 12 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, [4074358700] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, [4074358700] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 9 seconds" }, [4074358700] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 8 seconds" }, [4074358700] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [4074358700] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [4074358700] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [3283106665] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [3283106665] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 5 seconds" }, [3283106665] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 4 seconds" }, [3283106665] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 3 seconds" }, [3283106665] = { "" }, } }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5322 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 2 seconds" }, [3283106665] = { "" }, } }, + ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "5% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "7% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "8% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "9% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "10% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "7% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "8% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "13% Chance to Block Attack Damage" }, } }, + ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1162 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "14% Chance to Block Attack Damage" }, } }, + ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "5% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "6% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [4074358700] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "13% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "14% Chance to Block Spell Damage" }, [3283106665] = { "" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(17-18)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-20)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-22)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(23-24)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(25-26)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-28)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(23-24)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(25-26)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(27-28)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(35-36)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(37-38)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1563 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(39-40)% increased Armour" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(17-18)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-20)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-22)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, [4074358700] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, [4074358700] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, [4074358700] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [4074358700] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [4074358700] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [4074358700] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [3283106665] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [3283106665] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [3283106665] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(35-36)% increased Evasion Rating" }, [3283106665] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(37-38)% increased Evasion Rating" }, [3283106665] = { "" }, } }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1571 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-40)% increased Evasion Rating" }, [3283106665] = { "" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-7)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-9)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-11)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(24-25)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(26-27)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(28-29)% increased maximum Energy Shield" }, } }, + ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Prevent +45% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "Prevent +45% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Prevent +50% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "Prevent +50% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Prevent +55% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "Prevent +55% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Prevent +60% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "Prevent +60% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Prevent +65% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "Prevent +65% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Prevent +70% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "Prevent +70% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Prevent +60% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "Prevent +60% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Prevent +65% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "Prevent +65% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Prevent +70% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "Prevent +70% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Prevent +75% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "Prevent +75% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Prevent +80% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "Prevent +80% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Prevent +85% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "Prevent +85% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Prevent +75% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "Prevent +75% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Prevent +80% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "Prevent +80% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Prevent +85% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "Prevent +85% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Prevent +90% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "Prevent +90% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Prevent +95% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "Prevent +95% of Reflected Damage" }, } }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Prevent +100% of Reflected Damage", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "Prevent +100% of Reflected Damage" }, } }, + ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Minions prevent +45% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +45% of Reflected Damage they would take" }, } }, + ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Minions prevent +50% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +50% of Reflected Damage they would take" }, } }, + ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Minions prevent +55% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +55% of Reflected Damage they would take" }, } }, + ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Minions prevent +60% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +60% of Reflected Damage they would take" }, } }, + ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Minions prevent +65% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +65% of Reflected Damage they would take" }, } }, + ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Minions prevent +70% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +70% of Reflected Damage they would take" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions prevent +60% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +60% of Reflected Damage they would take" }, [4074358700] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions prevent +65% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +65% of Reflected Damage they would take" }, [4074358700] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions prevent +70% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +70% of Reflected Damage they would take" }, [4074358700] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions prevent +75% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +75% of Reflected Damage they would take" }, [4074358700] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions prevent +80% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +80% of Reflected Damage they would take" }, [4074358700] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions prevent +85% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +85% of Reflected Damage they would take" }, [4074358700] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions prevent +75% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +75% of Reflected Damage they would take" }, [3283106665] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions prevent +80% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +80% of Reflected Damage they would take" }, [3283106665] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions prevent +85% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +85% of Reflected Damage they would take" }, [3283106665] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions prevent +90% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +90% of Reflected Damage they would take" }, [3283106665] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions prevent +95% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +95% of Reflected Damage they would take" }, [3283106665] = { "" }, } }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions prevent +100% of Reflected Damage they would take", statOrder = { 9488 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "Minions prevent +100% of Reflected Damage they would take" }, [3283106665] = { "" }, } }, + ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (19-21)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (22-24)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (25-27)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-30)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (19-21)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (22-24)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (25-27)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-30)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (19-21)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (22-24)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (25-27)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-30)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (37-39)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (40-42)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (49-51)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (52-54)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (55-57)% increased Aura Effect" }, } }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (58-60)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (19-21)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (22-24)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (25-27)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-30)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (19-21)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (22-24)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (25-27)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-30)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (37-39)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (40-42)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (49-51)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (52-54)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (55-57)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (58-60)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (19-21)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (22-24)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (25-27)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (28-30)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (37-39)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (40-42)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (49-51)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (52-54)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (55-57)% increased Aura Effect" }, } }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9853 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (58-60)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (19-21)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (22-24)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (25-27)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (28-30)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (37-39)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (40-42)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (49-51)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (52-54)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (55-57)% increased Aura Effect" }, } }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3403 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (58-60)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (19-21)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (22-24)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (25-27)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (28-30)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (37-39)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (40-42)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (49-51)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (52-54)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (55-57)% increased Aura Effect" }, } }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3399 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (58-60)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (19-21)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (22-24)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (25-27)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (28-30)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (37-39)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (40-42)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (49-51)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (52-54)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (55-57)% increased Aura Effect" }, } }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3404 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (58-60)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (19-21)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (22-24)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (25-27)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (28-30)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (37-39)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (40-42)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (49-51)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (52-54)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (55-57)% increased Aura Effect" }, } }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3400 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (58-60)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (19-21)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (22-24)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (25-27)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (28-30)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (37-39)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (40-42)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (49-51)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (52-54)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (55-57)% increased Aura Effect" }, } }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3393 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (58-60)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (19-21)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (22-24)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (25-27)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (28-30)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (37-39)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (40-42)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (49-51)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (52-54)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (55-57)% increased Aura Effect" }, } }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3394 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (58-60)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (19-21)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (22-24)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (25-27)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (28-30)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3395 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } }, + ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (19-21)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (22-24)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (25-27)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (28-30)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (37-39)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (40-42)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (49-51)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (52-54)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (55-57)% increased Aura Effect" }, } }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3396 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (58-60)% increased Aura Effect" }, } }, + ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (6-7)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (8-9)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-11)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (24-25)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (26-27)% chance to Fortify" }, } }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2287 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (28-29)% chance to Fortify" }, } }, + ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-6)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(7-8)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-10)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, + ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, + ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, + ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, + ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, + ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, + ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [4074358700] = { "" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(23-24)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-26)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, + ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(27-28)% to all Elemental Resistances" }, [3283106665] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "7% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "8% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, [4074358700] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, [4074358700] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [4074358700] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [4074358700] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [4074358700] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [4074358700] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [3283106665] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [3283106665] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [3283106665] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [3283106665] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "15% increased Life Recovery rate" }, [3283106665] = { "" }, } }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "16% increased Life Recovery rate" }, [3283106665] = { "" }, } }, + ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "7% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "8% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "9% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "11% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "12% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "9% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "10% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "15% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "16% increased Mana Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "7% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "8% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "15% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "16% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } }, + ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 230 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 220 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 210 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 200 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 210 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 200 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 150 Strength" }, } }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5319 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 140 Strength" }, } }, + ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 230 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 220 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, [4074358700] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, [4074358700] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [4074358700] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [4074358700] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [4074358700] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [4074358700] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [3283106665] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [3283106665] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [3283106665] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [3283106665] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 150 Dexterity" }, [3283106665] = { "" }, } }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5317 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 140 Dexterity" }, [3283106665] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 230 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 220 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, [4074358700] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, [4074358700] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [4074358700] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [4074358700] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [4074358700] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [4074358700] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [3283106665] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [3283106665] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [3283106665] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [3283106665] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 150 Intelligence" }, [3283106665] = { "" }, } }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5318 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 140 Intelligence" }, [3283106665] = { "" }, } }, + ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(7-8)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(9-10)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(11-12)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(25-26)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(27-28)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(29-30)% increased Skill Effect Duration" }, } }, } \ No newline at end of file diff --git a/src/Data/ModExplicit.lua b/src/Data/ModExplicit.lua index b72d7ea205..008b8a9fe6 100644 --- a/src/Data/ModExplicit.lua +++ b/src/Data/ModExplicit.lua @@ -2,4305 +2,4315 @@ -- Item data (c) Grinding Gear Games return { - ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(8-12) to Strength" }, } }, - ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrder = { 1177 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-17) to Strength" }, } }, - ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrder = { 1177 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(18-22) to Strength" }, } }, - ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrder = { 1177 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(23-27) to Strength" }, } }, - ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrder = { 1177 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-32) to Strength" }, } }, - ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrder = { 1177 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(33-37) to Strength" }, } }, - ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrder = { 1177 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(38-42) to Strength" }, } }, - ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrder = { 1177 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(43-50) to Strength" }, } }, - ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrder = { 1177 }, level = 82, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(51-55) to Strength" }, } }, - ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrder = { 1177 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(56-60) to Strength" }, } }, - ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrder = { 1177 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(51-58) to Strength" }, } }, - ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(8-12) to Dexterity" }, } }, - ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrder = { 1178 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-17) to Dexterity" }, } }, - ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrder = { 1178 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(18-22) to Dexterity" }, } }, - ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrder = { 1178 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(23-27) to Dexterity" }, } }, - ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrder = { 1178 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-32) to Dexterity" }, } }, - ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrder = { 1178 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(33-37) to Dexterity" }, } }, - ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrder = { 1178 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(38-42) to Dexterity" }, } }, - ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrder = { 1178 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(43-50) to Dexterity" }, } }, - ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrder = { 1178 }, level = 82, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(51-55) to Dexterity" }, } }, - ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrder = { 1178 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(56-60) to Dexterity" }, } }, - ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrder = { 1178 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(51-58) to Dexterity" }, } }, - ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-12) to Intelligence" }, } }, - ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrder = { 1179 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-17) to Intelligence" }, } }, - ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrder = { 1179 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(18-22) to Intelligence" }, } }, - ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrder = { 1179 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-27) to Intelligence" }, } }, - ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrder = { 1179 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-32) to Intelligence" }, } }, - ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrder = { 1179 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(33-37) to Intelligence" }, } }, - ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrder = { 1179 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(38-42) to Intelligence" }, } }, - ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrder = { 1179 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(43-50) to Intelligence" }, } }, - ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrder = { 1179 }, level = 82, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(51-55) to Intelligence" }, } }, - ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrder = { 1179 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(56-60) to Intelligence" }, } }, - ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrder = { 1179 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(51-58) to Intelligence" }, } }, - ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(1-4) to all Attributes" }, } }, - ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrder = { 1176 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-8) to all Attributes" }, } }, - ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrder = { 1176 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(9-12) to all Attributes" }, } }, - ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrder = { 1176 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(13-16) to all Attributes" }, } }, - ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrder = { 1176 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-20) to all Attributes" }, } }, - ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrder = { 1176 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-24) to all Attributes" }, } }, - ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrder = { 1176 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-28) to all Attributes" }, } }, - ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrder = { 1176 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(29-32) to all Attributes" }, } }, - ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(33-35) to all Attributes" }, } }, - ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(3-9) to maximum Life" }, } }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-24) to maximum Life", statOrder = { 1569 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-24) to maximum Life" }, } }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(25-39) to maximum Life", statOrder = { 1569 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-39) to maximum Life" }, } }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(40-54) to maximum Life", statOrder = { 1569 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-54) to maximum Life" }, } }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(55-69) to maximum Life", statOrder = { 1569 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-69) to maximum Life" }, } }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 1569 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 1569 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(100-114) to maximum Life", statOrder = { 1569 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-114) to maximum Life" }, } }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(115-129) to maximum Life", statOrder = { 1569 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(115-129) to maximum Life" }, } }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(130-144) to maximum Life", statOrder = { 1569 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-144) to maximum Life" }, } }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(145-159) to maximum Life", statOrder = { 1569 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(145-159) to maximum Life" }, } }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(160-174) to maximum Life", statOrder = { 1569 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-174) to maximum Life" }, } }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(175-189) to maximum Life", statOrder = { 1569 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, - ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrder = { 1569 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(5-14) to maximum Life" }, } }, - ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrder = { 1569 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-30) to maximum Life" }, } }, - ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrder = { 1569 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(31-45) to maximum Life" }, } }, - ["IncreasedLifeEssence4"] = { type = "Prefix", affix = "Essences", "+(46-60) to maximum Life", statOrder = { 1569 }, level = 42, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(46-60) to maximum Life" }, } }, - ["IncreasedLifeEssence5"] = { type = "Prefix", affix = "Essences", "+(61-75) to maximum Life", statOrder = { 1569 }, level = 58, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(61-75) to maximum Life" }, } }, - ["IncreasedLifeEssence6"] = { type = "Prefix", affix = "Essences", "+(76-90) to maximum Life", statOrder = { 1569 }, level = 74, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(76-90) to maximum Life" }, } }, - ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-126) to maximum Life" }, } }, - ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(110-116) to maximum Life" }, } }, - ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-106) to maximum Life" }, } }, - ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(91-105) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(91-105) to maximum Life" }, } }, - ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(70-79) to maximum Life" }, } }, - ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, [3299347043] = { "+(110-119) to maximum Life" }, } }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-19) to maximum Mana" }, } }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-24) to maximum Mana" }, } }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-29) to maximum Mana" }, } }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-34) to maximum Mana" }, } }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-39) to maximum Mana" }, } }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-44) to maximum Mana" }, } }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-49) to maximum Mana" }, } }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-54) to maximum Mana" }, } }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-59) to maximum Mana" }, } }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-64) to maximum Mana" }, } }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-68) to maximum Mana" }, } }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, } }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrder = { 1579 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, } }, - ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrder = { 1579 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-77) to maximum Mana" }, } }, - ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1579, 1580 }, level = 1, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [2748665614] = { "(7-10)% increased maximum Mana" }, } }, - ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1579, 1744 }, level = 1, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } }, - ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1579, 1582 }, level = 1, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [4291461939] = { "Regenerate (5-7) Mana per second" }, } }, - ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1579, 2232 }, level = 1, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1579, 1891 }, level = 1, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [3736589033] = { "-(8-6) to Total Mana Cost of Skills" }, } }, - ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-39) to maximum Mana" }, } }, - ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-49) to maximum Mana" }, } }, - ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-59) to maximum Mana" }, } }, - ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-69) to maximum Mana" }, } }, - ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-79) to maximum Mana" }, } }, - ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, - ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-99) to maximum Mana" }, } }, - ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-109) to maximum Mana" }, } }, - ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(110-119) to maximum Mana" }, } }, - ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-129) to maximum Mana" }, } }, - ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(130-139) to maximum Mana" }, } }, - ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(140-159) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-49) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-59) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-69) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-79) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-99) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-119) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-139) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(140-159) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(160-179) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-199) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(200-229) to maximum Mana" }, } }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrder = { 1558 }, level = 3, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(1-3) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrder = { 1558 }, level = 11, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(4-8) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrder = { 1558 }, level = 17, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-12) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrder = { 1558 }, level = 23, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(13-15) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrder = { 1558 }, level = 29, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(16-19) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrder = { 1558 }, level = 35, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-22) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrder = { 1558 }, level = 42, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(23-26) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrder = { 1558 }, level = 50, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(27-31) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrder = { 1558 }, level = 59, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(32-37) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrder = { 1558 }, level = 68, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(38-43) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrder = { 1558 }, level = 74, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrder = { 1558 }, level = 80, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(48-51) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrder = { 1558, 1561 }, level = 1, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-10)% increased maximum Energy Shield" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1558, 2646 }, level = 1, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrder = { 1559 }, level = 3, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(3-5) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrder = { 1559 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(6-11) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrder = { 1559 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(12-16) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrder = { 1559 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(17-23) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrder = { 1559 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(24-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrder = { 1559 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(31-38) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrder = { 1559 }, level = 43, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(39-49) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrder = { 1559 }, level = 51, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-61) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrder = { 1559 }, level = 60, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(62-76) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrder = { 1559 }, level = 69, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(77-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrder = { 1559 }, level = 75, group = "LocalEnergyShield", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(91-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(62-72) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(73-82) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(88-95) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(88-95) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-59) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-69) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(75-85) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(75-85) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrder = { 1559 }, level = 42, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(18-26) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(27-32) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(28-35) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(38-45) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(38-45) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(39-45) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(46-51) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(52-58) to maximum Energy Shield" }, } }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 2 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1266 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-5) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrder = { 1266 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (6-7) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-10) to (15-18) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrder = { 1266 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (19-22) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (11-15) to (22-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver2"] = { type = "Prefix", affix = "Burnished", "Adds (3-4) to (6-8) Physical Damage to Attacks", statOrder = { 1266 }, level = 13, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (6-8) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver3"] = { type = "Prefix", affix = "Polished", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 19, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (9-10) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver4"] = { type = "Prefix", affix = "Honed", "Adds (6-9) to (13-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 28, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-16) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver5"] = { type = "Prefix", affix = "Gleaming", "Adds (8-11) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 35, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-11) to (16-18) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver6"] = { type = "Prefix", affix = "Annealed", "Adds (10-13) to (19-23) Physical Damage to Attacks", statOrder = { 1266 }, level = 44, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-13) to (19-23) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (11-16) to (23-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 52, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (11-16) to (23-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver8"] = { type = "Prefix", affix = "Tempered", "Adds (14-19) to (28-33) Physical Damage to Attacks", statOrder = { 1266 }, level = 64, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (14-19) to (28-33) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageQuiver9"] = { type = "Prefix", affix = "Flaring", "Adds (17-23) to (34-39) Physical Damage to Attacks", statOrder = { 1266 }, level = 76, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (17-23) to (34-39) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (16-18) to (27-30) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrder = { 1266 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-8) to (12-13) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (13-15) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-11) to (16-17) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrder = { 1266 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-8) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (9-10) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (10-11) Physical Damage to Attacks" }, } }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 1 to 2 Fire Damage to Attacks" }, } }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (7-8) Fire Damage to Attacks" }, } }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrder = { 1360 }, level = 20, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 28, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-10) to (15-18) Fire Damage to Attacks" }, } }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 35, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrder = { 1360 }, level = 44, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-15) to (23-27) Fire Damage to Attacks" }, } }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1360 }, level = 52, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (27-31) Fire Damage to Attacks" }, } }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrder = { 1360 }, level = 64, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (16-22) to (32-38) Fire Damage to Attacks" }, } }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrder = { 1360 }, level = 76, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (19-25) to (39-45) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver2"] = { type = "Prefix", affix = "Smouldering", "Adds (5-7) to (10-12) Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (10-12) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver3"] = { type = "Prefix", affix = "Smoking", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 20, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver4"] = { type = "Prefix", affix = "Burning", "Adds (11-14) to (21-25) Fire Damage to Attacks", statOrder = { 1360 }, level = 28, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-14) to (21-25) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver5_"] = { type = "Prefix", affix = "Flaming", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1360 }, level = 35, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (27-31) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver6"] = { type = "Prefix", affix = "Scorching", "Adds (17-22) to (33-38) Fire Damage to Attacks", statOrder = { 1360 }, level = 44, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (17-22) to (33-38) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver7"] = { type = "Prefix", affix = "Incinerating", "Adds (20-27) to (40-47) Fire Damage to Attacks", statOrder = { 1360 }, level = 52, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-27) to (40-47) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver8__"] = { type = "Prefix", affix = "Blasting", "Adds (27-35) to (53-62) Fire Damage to Attacks", statOrder = { 1360 }, level = 64, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (27-35) to (53-62) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiver9"] = { type = "Prefix", affix = "Cremating", "Adds (37-50) to (74-87) Fire Damage to Attacks", statOrder = { 1360 }, level = 76, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (37-50) to (74-87) Fire Damage to Attacks" }, } }, - ["AddedFireDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (41-55) to (81-96) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (41-55) to (81-96) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (23-27) to (43-48) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrder = { 1360 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (11-14) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrder = { 1360 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-17) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (16-18) Fire Damage to Attacks" }, } }, - ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (17-21) Fire Damage to Attacks" }, } }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to 2 Cold Damage to Attacks" }, } }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrder = { 1369 }, level = 13, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (7-8) Cold Damage to Attacks" }, } }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrder = { 1369 }, level = 21, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 29, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-9) to (13-16) Cold Damage to Attacks" }, } }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 36, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (16-19) Cold Damage to Attacks" }, } }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 45, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 53, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-28) Cold Damage to Attacks" }, } }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrder = { 1369 }, level = 65, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-19) to (29-34) Cold Damage to Attacks" }, } }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrder = { 1369 }, level = 77, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (17-22) to (34-40) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (1-2) to 3 Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver2"] = { type = "Prefix", affix = "Chilled", "Adds (5-6) to (9-10) Cold Damage to Attacks", statOrder = { 1369 }, level = 13, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-10) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver3_"] = { type = "Prefix", affix = "Icy", "Adds (7-9) to (14-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 21, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (14-16) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver4__"] = { type = "Prefix", affix = "Frigid", "Adds (10-13) to (19-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 29, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (19-22) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver5"] = { type = "Prefix", affix = "Freezing", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 36, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-28) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver6"] = { type = "Prefix", affix = "Frozen", "Adds (15-20) to (30-35) Cold Damage to Attacks", statOrder = { 1369 }, level = 45, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (15-20) to (30-35) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver7"] = { type = "Prefix", affix = "Glaciated", "Adds (18-24) to (36-42) Cold Damage to Attacks", statOrder = { 1369 }, level = 53, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (18-24) to (36-42) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver8"] = { type = "Prefix", affix = "Polar", "Adds (23-32) to (48-55) Cold Damage to Attacks", statOrder = { 1369 }, level = 65, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (23-32) to (48-55) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiver9_"] = { type = "Prefix", affix = "Entombing", "Adds (33-45) to (67-78) Cold Damage to Attacks", statOrder = { 1369 }, level = 77, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (33-45) to (67-78) Cold Damage to Attacks" }, } }, - ["AddedColdDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (36-50) to (74-86) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (36-50) to (74-86) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (20-24) to (38-44) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrder = { 1369 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-14) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1369 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } }, - ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-10) to (14-17) Cold Damage to Attacks" }, } }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1380 }, level = 3, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 5 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrder = { 1380 }, level = 13, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (14-15) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrder = { 1380 }, level = 22, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 28, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrder = { 1380 }, level = 35, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (33-34) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrder = { 1380 }, level = 44, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (40-43) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 52, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (47-50) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrder = { 1380 }, level = 64, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (57-61) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrder = { 1380 }, level = 76, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-7) to (68-72) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (3-4) Lightning Damage to Attacks", statOrder = { 1380 }, level = 3, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (3-4) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (16-18) Lightning Damage to Attacks", statOrder = { 1380 }, level = 13, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 2 to (16-18) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (25-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 22, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (25-28) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver4"] = { type = "Prefix", affix = "Crackling", "Adds (2-3) to (35-40) Lightning Damage to Attacks", statOrder = { 1380 }, level = 28, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-3) to (35-40) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver5_"] = { type = "Prefix", affix = "Sparking", "Adds (2-4) to (44-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 35, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (44-50) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver6___"] = { type = "Prefix", affix = "Arcing", "Adds (2-5) to (56-62) Lightning Damage to Attacks", statOrder = { 1380 }, level = 44, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (56-62) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver7"] = { type = "Prefix", affix = "Shocking", "Adds (2-6) to (66-75) Lightning Damage to Attacks", statOrder = { 1380 }, level = 52, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (66-75) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver8"] = { type = "Prefix", affix = "Discharging", "Adds (3-8) to (89-99) Lightning Damage to Attacks", statOrder = { 1380 }, level = 64, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (89-99) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiver9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-11) to (124-140) Lightning Damage to Attacks", statOrder = { 1380 }, level = 76, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (5-11) to (124-140) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageQuiverEssence10__"] = { type = "Prefix", affix = "Essences", "Adds (6-13) to (136-155) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (6-13) to (136-155) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (4-8) to (71-76) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrder = { 1380 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (21-22) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrder = { 1380 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (23-24) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrder = { 1380 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (25-26) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-30) Lightning Damage to Attacks" }, } }, - ["AddedChaosDamageQuiver1"] = { type = "Prefix", affix = "Malicious", "Adds (27-41) to (55-69) Chaos Damage to Attacks", statOrder = { 1387 }, level = 83, group = "ChaosDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (27-41) to (55-69) Chaos Damage to Attacks" }, } }, - ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1360, 1955 }, level = 1, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } }, - ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1369, 1957 }, level = 1, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } }, - ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1380, 1959 }, level = 1, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(5-6)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffixEssence3_"] = { type = "Suffix", affix = "of the Essence", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } }, - ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrder = { 1980 }, level = 4, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, - ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(9-16)% increased Elemental Damage" }, } }, - ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 1980 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(17-24)% increased Elemental Damage" }, } }, - ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 1980 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-29)% increased Elemental Damage" }, } }, - ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 1980 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-34)% increased Elemental Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-19)% increased Physical Damage" }, [691932474] = { "+(16-20) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-24)% increased Physical Damage" }, [691932474] = { "+(21-46) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [691932474] = { "+(47-72) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [691932474] = { "+(73-97) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [691932474] = { "+(98-123) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [691932474] = { "+(124-149) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-74)% increased Physical Damage" }, [691932474] = { "+(150-174) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-79)% increased Physical Damage" }, [691932474] = { "+(175-200) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-49)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1232 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1232 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-84)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1232 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(85-109)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1232 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-134)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1232 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(135-154)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1232 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1232 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-179)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (9-10)% of Physical Damage as Extra Chaos Damage" }, } }, - ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(13-17)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1231 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-22)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrder = { 1231 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(23-28)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrder = { 1231 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-33)% increased Global Physical Damage" }, } }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrder = { 1276 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrder = { 1276 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (8-9) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (13-15) Physical Damage", statOrder = { 1276 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (13-15) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (17-20) Physical Damage", statOrder = { 1276 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (17-20) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (11-14) to (21-25) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (21-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-18) to (27-31) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-18) to (27-31) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-21) to (32-38) Physical Damage", statOrder = { 1276 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-21) to (32-38) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (19-25) to (39-45) Physical Damage", statOrder = { 1276 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-25) to (39-45) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (22-29) to (45-52) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (22-29) to (45-52) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageEssenceNew7"] = { type = "Prefix", affix = "Essences", "Adds (20-26) to (40-47) Physical Damage", statOrder = { 1276 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-26) to (40-47) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrder = { 1276 }, level = 2, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to (4-5) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-15) Physical Damage", statOrder = { 1276 }, level = 13, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-8) to (12-15) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-25) Physical Damage", statOrder = { 1276 }, level = 21, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-13) to (21-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (13-17) to (28-32) Physical Damage", statOrder = { 1276 }, level = 29, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-17) to (28-32) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (16-22) to (35-40) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-22) to (35-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (20-28) to (43-51) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-28) to (43-51) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (25-33) to (52-61) Physical Damage", statOrder = { 1276 }, level = 54, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-33) to (52-61) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (30-40) to (63-73) Physical Damage", statOrder = { 1276 }, level = 65, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-40) to (63-73) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (34-47) to (72-84) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (34-47) to (72-84) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHandEssenceNew7__"] = { type = "Prefix", affix = "Essences", "Adds (31-42) to (65-75) Physical Damage", statOrder = { 1276 }, level = 82, group = "LocalPhysicalDamageTwoHanded", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (31-42) to (65-75) Physical Damage" }, } }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrder = { 1560 }, level = 3, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(11-28)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 1560 }, level = 18, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 1560 }, level = 30, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 1560 }, level = 44, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 1560 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 1560 }, level = 72, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 1560 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 1560 }, level = 86, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 1542 }, level = 3, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 1542 }, level = 17, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 1542 }, level = 29, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 1542 }, level = 42, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 1542 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 1542 }, level = 72, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 1542 }, level = 84, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 1542 }, level = 86, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 1550 }, level = 3, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 1550 }, level = 19, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 1550 }, level = 30, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 1550 }, level = 44, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 1550 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 1550 }, level = 72, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 1550 }, level = 84, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 1550 }, level = 86, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 3, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 19, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 30, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 44, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 72, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 84, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 86, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 1553 }, level = 3, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 1553 }, level = 19, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 1553 }, level = 30, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 1553 }, level = 44, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 1553 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 1553 }, level = 72, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 84, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 1553 }, level = 86, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 3, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 19, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 30, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 44, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 72, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 84, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 86, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 3, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 85, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 3, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 18, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 30, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 44, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 60, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 78, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 17, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 29, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 42, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 60, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 78, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrder = { 1542, 2249 }, level = 45, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-30)% increased Armour" }, [4253454700] = { "+2% Chance to Block" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrder = { 1542, 2249 }, level = 78, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, tradeHashes = { [1062208444] = { "(31-36)% increased Armour" }, [4253454700] = { "+3% Chance to Block" }, } }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 2, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 19, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 30, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 44, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 60, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 78, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 2, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 2, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 19, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 30, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 44, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 60, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 78, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 2, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [3523867985] = { "(6-13)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [3523867985] = { "(14-20)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [3523867985] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [3523867985] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [3523867985] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 78, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [3523867985] = { "(39-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-4) Fire Damage" }, } }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (25-29) Fire Damage" }, } }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-24) to (35-41) Fire Damage" }, } }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (24-33) to (49-57) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (24-33) to (49-57) Fire Damage" }, } }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (34-46) to (68-80) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (34-46) to (68-80) Fire Damage" }, } }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (46-62) to (93-107) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (46-62) to (93-107) Fire Damage" }, } }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (59-81) to (120-140) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (59-81) to (120-140) Fire Damage" }, } }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (74-101) to (150-175) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (74-101) to (150-175) Fire Damage" }, } }, - ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (89-121) to (180-210) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (89-121) to (180-210) Fire Damage" }, } }, - ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (80-109) to (162-189) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (80-109) to (162-189) Fire Damage" }, } }, - ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1362, 3762 }, level = 1, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, [709508406] = { "Adds (59-79) to (118-138) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (3-5) to (6-7) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (63-85) to (128-148) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (85-115) to (172-200) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (110-150) to (223-260) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (137-188) to (279-325) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (165-225) to (335-390) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (3-5) to (6-7) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (63-85) to (128-148) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (85-115) to (172-200) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (110-150) to (223-260) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (137-188) to (279-325) Fire Damage" }, } }, - ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (165-225) to (335-390) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (149-203) to (302-351) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (149-203) to (302-351) Fire Damage" }, } }, - ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (109-147) to (220-256) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1362, 3762 }, level = 1, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, [709508406] = { "Adds (109-147) to (220-256) Fire Damage" }, } }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, } }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (23-26) Cold Damage" }, } }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-21) to (31-37) Cold Damage" }, } }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (22-30) to (44-51) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-30) to (44-51) Cold Damage" }, } }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (31-42) to (62-71) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-42) to (62-71) Cold Damage" }, } }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (41-57) to (83-97) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-57) to (83-97) Cold Damage" }, } }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (54-74) to (108-126) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (54-74) to (108-126) Cold Damage" }, } }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (68-92) to (136-157) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (68-92) to (136-157) Cold Damage" }, } }, - ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (81-111) to (163-189) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (81-111) to (163-189) Cold Damage" }, } }, - ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (73-100) to (147-170) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (73-100) to (147-170) Cold Damage" }, } }, - ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1371, 3763 }, level = 1, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (53-72) to (107-124) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (6-7) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-55) to (81-95) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (57-77) to (114-132) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (77-104) to (154-178) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (99-136) to (200-232) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (124-170) to (250-290) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (149-204) to (300-348) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (6-7) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-55) to (81-95) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (57-77) to (114-132) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (77-104) to (154-178) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (99-136) to (200-232) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (124-170) to (250-290) Cold Damage" }, } }, - ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (149-204) to (300-348) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (134-184) to (270-313) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (134-184) to (270-313) Cold Damage" }, } }, - ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (100-132) to (197-230) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1371, 3763 }, level = 1, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (100-132) to (197-230) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (5-6) Lightning Damage" }, } }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (41-48) Lightning Damage" }, } }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (57-67) Lightning Damage" }, } }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (4-5) to (80-94) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (80-94) Lightning Damage" }, } }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (5-8) to (112-131) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (112-131) Lightning Damage" }, } }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (8-10) to (152-176) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (152-176) Lightning Damage" }, } }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (10-14) to (197-229) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (10-14) to (197-229) Lightning Damage" }, } }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (13-17) to (247-286) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (13-17) to (247-286) Lightning Damage" }, } }, - ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-21) to (296-344) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (15-21) to (296-344) Lightning Damage" }, } }, - ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (13-19) to (266-310) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (13-19) to (266-310) Lightning Damage" }, } }, - ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 1, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, [3336890334] = { "Adds (7-17) to (198-224) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (10-11) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (148-173) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (11-14) to (208-242) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (14-20) to (281-327) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (19-25) to (366-425) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (23-32) to (458-531) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (28-38) to (549-638) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (10-11) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (148-173) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (11-14) to (208-242) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (14-20) to (281-327) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (19-25) to (366-425) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (23-32) to (458-531) Lightning Damage" }, } }, - ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (28-38) to (549-638) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (25-34) to (494-575) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (25-34) to (494-575) Lightning Damage" }, } }, - ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (12-31) to (367-415) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 1, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, [3336890334] = { "Adds (12-31) to (367-415) Lightning Damage" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(4-8)% increased Armour", statOrder = { 1541 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(4-8)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-13)% increased Armour", statOrder = { 1541 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(9-13)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(14-18)% increased Armour", statOrder = { 1541 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(19-23)% increased Armour", statOrder = { 1541 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-23)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(24-28)% increased Armour", statOrder = { 1541 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(24-28)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(29-32)% increased Armour", statOrder = { 1541 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-32)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(33-36)% increased Armour", statOrder = { 1541 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-36)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Armour", statOrder = { 1541 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-31)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Armour", statOrder = { 1541 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(32-33)% increased Armour" }, } }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(4-8)% increased Evasion Rating", statOrder = { 1549 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(4-8)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(9-13)% increased Evasion Rating", statOrder = { 1549 }, level = 19, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(9-13)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(14-18)% increased Evasion Rating", statOrder = { 1549 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(19-23)% increased Evasion Rating", statOrder = { 1549 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-23)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(24-28)% increased Evasion Rating", statOrder = { 1549 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(24-28)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(29-32)% increased Evasion Rating", statOrder = { 1549 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-32)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(33-36)% increased Evasion Rating", statOrder = { 1549 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-36)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Evasion Rating", statOrder = { 1549 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-31)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(32-33)% increased Evasion Rating" }, } }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrder = { 1561 }, level = 3, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(5-7)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(11-13)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(17-19)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrder = { 1561 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(20-22)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(11-13)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrder = { 1561 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(17-18)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(3-10) to Evasion Rating" }, } }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrder = { 1544 }, level = 18, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(11-35) to Evasion Rating" }, } }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrder = { 1544 }, level = 29, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(36-60) to Evasion Rating" }, } }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrder = { 1544 }, level = 42, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(61-80) to Evasion Rating" }, } }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrder = { 1544 }, level = 58, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(81-120) to Evasion Rating" }, } }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrder = { 1544 }, level = 72, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(121-150) to Evasion Rating" }, } }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrder = { 1544 }, level = 84, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(151-170) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrder = { 1544 }, level = 82, group = "EvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(151-180) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(6-12) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(6-12) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(13-35) to Evasion Rating", statOrder = { 1548 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(13-35) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-63) to Evasion Rating", statOrder = { 1548 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(36-63) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(64-82) to Evasion Rating", statOrder = { 1548 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(64-82) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(83-101) to Evasion Rating", statOrder = { 1548 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(83-101) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(102-120) to Evasion Rating", statOrder = { 1548 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(102-120) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(121-150) to Evasion Rating", statOrder = { 1548 }, level = 43, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-150) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(151-200) to Evasion Rating", statOrder = { 1548 }, level = 51, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(151-200) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(201-300) to Evasion Rating", statOrder = { 1548 }, level = 60, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(201-300) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(301-400) to Evasion Rating", statOrder = { 1548 }, level = 69, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(301-400) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(401-500) to Evasion Rating", statOrder = { 1548 }, level = 77, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(401-500) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(390-475) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrder = { 1548 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-49) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-140) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(141-160) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(141-160) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(161-180) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(161-180) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrder = { 1548 }, level = 26, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-25) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(81-90) to Evasion Rating", statOrder = { 1548 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(81-90) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(91-105) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(106-120) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-135) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(151-225) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(151-225) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(226-300) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(301-375) to Evasion Rating" }, } }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(3-10) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrder = { 1539 }, level = 18, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(11-35) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrder = { 1539 }, level = 30, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(36-60) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrder = { 1539 }, level = 44, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(61-138) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrder = { 1539 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(139-322) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrder = { 1539 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(323-400) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrder = { 1539 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(401-460) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrder = { 1539 }, level = 86, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(461-540) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(481-520) to Armour", statOrder = { 1539 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(481-520) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrder = { 1539 }, level = 58, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(80-120) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrder = { 1539 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(121-200) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrder = { 1539 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(201-300) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(6-12) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(6-12) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(13-35) to Armour", statOrder = { 1540 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(13-35) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-63) to Armour", statOrder = { 1540 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(36-63) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(64-82) to Armour", statOrder = { 1540 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(64-82) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-101) to Armour", statOrder = { 1540 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(83-101) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(102-120) to Armour", statOrder = { 1540 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(102-120) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(121-150) to Armour", statOrder = { 1540 }, level = 43, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-150) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(151-200) to Armour", statOrder = { 1540 }, level = 51, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(151-200) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(201-300) to Armour", statOrder = { 1540 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(201-300) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(301-400) to Armour", statOrder = { 1540 }, level = 69, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(301-400) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(401-500) to Armour", statOrder = { 1540 }, level = 77, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(401-500) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(390-475) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-140) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(141-160) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(141-160) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(161-180) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(161-180) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(91-105) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(106-120) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-135) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield5_"] = { type = "Prefix", affix = "Essences", "+(151-225) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(151-225) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(226-300) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, } }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(5-9) to Armour", "+(5-9) to Evasion Rating", statOrder = { 1540, 1548 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(5-9) to Armour" }, [53045048] = { "+(5-9) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(10-27) to Armour", "+(10-27) to Evasion Rating", statOrder = { 1540, 1548 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(10-27) to Armour" }, [53045048] = { "+(10-27) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(28-48) to Armour", "+(28-48) to Evasion Rating", statOrder = { 1540, 1548 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(28-48) to Armour" }, [53045048] = { "+(28-48) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(49-85) to Armour", "+(49-85) to Evasion Rating", statOrder = { 1540, 1548 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(49-85) to Armour" }, [53045048] = { "+(49-85) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-145) to Armour", "+(86-145) to Evasion Rating", statOrder = { 1540, 1548 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(86-145) to Armour" }, [53045048] = { "+(86-145) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(146-220) to Armour", "+(146-220) to Evasion Rating", statOrder = { 1540, 1548 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(146-220) to Armour" }, [53045048] = { "+(146-220) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(221-300) to Armour", "+(221-300) to Evasion Rating", statOrder = { 1540, 1548 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(221-300) to Armour" }, [53045048] = { "+(221-300) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(301-375) to Armour", "+(301-375) to Evasion Rating", statOrder = { 1540, 1548 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, [53045048] = { "+(301-375) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(5-9) to Armour", "+(3-4) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(5-9) to Armour" }, [4052037485] = { "+(3-4) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(10-27) to Armour", "+(5-12) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(10-27) to Armour" }, [4052037485] = { "+(5-12) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(28-48) to Armour", "+(13-22) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(28-48) to Armour" }, [4052037485] = { "+(13-22) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(49-85) to Armour", "+(23-28) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(49-85) to Armour" }, [4052037485] = { "+(23-28) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-145) to Armour", "+(29-48) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(86-145) to Armour" }, [4052037485] = { "+(29-48) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(146-220) to Armour", "+(49-60) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(146-220) to Armour" }, [4052037485] = { "+(49-60) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(221-300) to Armour", "+(61-72) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(221-300) to Armour" }, [4052037485] = { "+(61-72) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(301-375) to Armour", "+(73-80) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, [4052037485] = { "+(73-80) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(5-9) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(5-9) to Evasion Rating" }, [4052037485] = { "+(3-4) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-27) to Evasion Rating", "+(5-12) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(10-27) to Evasion Rating" }, [4052037485] = { "+(5-12) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(28-48) to Evasion Rating", "+(13-22) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(28-48) to Evasion Rating" }, [4052037485] = { "+(13-22) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(49-85) to Evasion Rating", "+(23-28) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(49-85) to Evasion Rating" }, [4052037485] = { "+(23-28) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(86-145) to Evasion Rating", "+(29-48) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(86-145) to Evasion Rating" }, [4052037485] = { "+(29-48) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(146-220) to Evasion Rating", "+(49-60) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(146-220) to Evasion Rating" }, [4052037485] = { "+(49-60) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(221-300) to Evasion Rating", "+(61-72) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(221-300) to Evasion Rating" }, [4052037485] = { "+(61-72) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Phantasm's", "+(301-375) to Evasion Rating", "+(73-80) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(301-375) to Evasion Rating" }, [4052037485] = { "+(73-80) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 30, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(8-10) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, [53045048] = { "+(8-10) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 46, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(11-21) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, [53045048] = { "+(11-21) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 62, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(22-48) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, [53045048] = { "+(22-48) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 78, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(49-60) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, [53045048] = { "+(49-60) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 30, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(8-10) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(3-5) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 46, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(11-21) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(6-8) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 62, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(22-48) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(9-12) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 78, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(49-60) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 30, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(8-10) to Evasion Rating" }, [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(3-5) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 46, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(11-21) to Evasion Rating" }, [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(6-8) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 62, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(22-48) to Evasion Rating" }, [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(9-12) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 78, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(49-60) to Evasion Rating" }, [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(20-32) to Armour", "+(18-23) to maximum Life", statOrder = { 1540, 1569 }, level = 30, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(20-32) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, } }, - ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(33-48) to Armour", "+(24-28) to maximum Life", statOrder = { 1540, 1569 }, level = 46, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(33-48) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, } }, - ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(49-96) to Armour", "+(29-33) to maximum Life", statOrder = { 1540, 1569 }, level = 62, group = "LocalBaseArmourAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(49-96) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, } }, - ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(97-144) to Armour", "+(34-38) to maximum Life", statOrder = { 1540, 1569 }, level = 78, group = "LocalBaseArmourAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(97-144) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, } }, - ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1548, 1569 }, level = 30, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(14-20) to Evasion Rating" }, [3299347043] = { "+(18-23) to maximum Life" }, } }, - ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1548, 1569 }, level = 46, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-42) to Evasion Rating" }, [3299347043] = { "+(24-28) to maximum Life" }, } }, - ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1548, 1569 }, level = 62, group = "LocalBaseEvasionRatingAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(43-95) to Evasion Rating" }, [3299347043] = { "+(29-33) to maximum Life" }, } }, - ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1548, 1569 }, level = 78, group = "LocalBaseEvasionRatingAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(96-120) to Evasion Rating" }, [3299347043] = { "+(34-38) to maximum Life" }, } }, - ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1559, 1569 }, level = 30, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(8-10) to maximum Energy Shield" }, } }, - ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1559, 1569 }, level = 46, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(11-15) to maximum Energy Shield" }, } }, - ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1559, 1569 }, level = 62, group = "LocalBaseEnergyShieldAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(16-25) to maximum Energy Shield" }, } }, - ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1559, 1569 }, level = 78, group = "LocalBaseEnergyShieldAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, - ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrder = { 1559, 1579 }, level = 30, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(11-15) to maximum Mana" }, [4052037485] = { "+(8-10) to maximum Energy Shield" }, } }, - ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrder = { 1559, 1579 }, level = 46, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(16-19) to maximum Mana" }, [4052037485] = { "+(11-15) to maximum Energy Shield" }, } }, - ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrder = { 1559, 1579 }, level = 62, group = "LocalBaseEnergyShieldAndMana", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(20-22) to maximum Mana" }, [4052037485] = { "+(16-25) to maximum Energy Shield" }, } }, - ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrder = { 1559, 1579 }, level = 78, group = "LocalBaseEnergyShieldAndMana", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(23-25) to maximum Mana" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 1798 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 1798 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 1798 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 1798 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 1798 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, - ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrder = { 1798 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "32% increased Movement Speed" }, } }, - ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3243 }, level = 1, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "5% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1798, 4216 }, level = 1, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1618589784] = { "(10-15)% chance to Avoid Bleeding" }, [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1798, 1849 }, level = 1, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [4053951709] = { "(10-15)% chance to Avoid being Poisoned" }, [2250533757] = { "30% increased Movement Speed" }, } }, - ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrder = { 1223 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, - ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, - ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, - ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 56, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrder = { 1223 }, level = 2, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-19)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-29)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrder = { 1223 }, level = 23, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-39)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-54)% increased Spell Damage", statOrder = { 1223 }, level = 35, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-54)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(55-69)% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-69)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(70-84)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 150, 150, 150, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-84)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrder = { 1223 }, level = 64, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 80, 80, 80, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-99)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrder = { 1223 }, level = 84, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 40, 40, 40, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-109)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-66)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(67-82)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(83-94)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrder = { 1223 }, level = 2, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-29)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-44)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrder = { 1223 }, level = 23, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-59)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrder = { 1223 }, level = 35, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-84)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-104)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-124)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrder = { 1223 }, level = 79, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(125-149)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrder = { 1223 }, level = 84, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-164)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-106)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(107-122)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(123-144)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 1223, 1579 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-9)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 1223, 1579 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 1223, 1579 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 1223, 1579 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 1223, 1579 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 1223, 1579 }, level = 58, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 1223, 1579 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 1223, 1579 }, level = 2, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-14)% increased Spell Damage" }, [1050105434] = { "+(26-30) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 1223, 1579 }, level = 11, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-22)% increased Spell Damage" }, [1050105434] = { "+(31-35) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 1223, 1579 }, level = 23, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-29)% increased Spell Damage" }, [1050105434] = { "+(36-41) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 1223, 1579 }, level = 35, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-37)% increased Spell Damage" }, [1050105434] = { "+(42-47) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 1223, 1579 }, level = 46, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-44)% increased Spell Damage" }, [1050105434] = { "+(48-53) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 1223, 1579 }, level = 58, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-50)% increased Spell Damage" }, [1050105434] = { "+(54-59) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 1223, 1579 }, level = 80, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(51-55)% increased Spell Damage" }, [1050105434] = { "+(60-64) to maximum Mana" }, } }, - ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-95)% increased Trap Damage" }, } }, - ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(133-138)% increased Trap Damage" }, } }, - ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-22)% increased Trap Throwing Speed" }, } }, - ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 1, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(17-20)% increased Trap Duration" }, [3417757416] = { "(14-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3479 }, level = 1, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (22-25)% increased Area of Effect" }, } }, - ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedTrapGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [407139870] = { "+2 to Level of Socketed Trap Gems" }, } }, - ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (90-95)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (133-138)% increased Damage" }, } }, - ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (13-15)% increased Attack Speed" }, [4000101551] = { "Minions have (13-15)% increased Cast Speed" }, } }, - ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5032 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-20)% increased Minion Duration" }, } }, - ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrder = { 1357 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-19)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-29)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrder = { 1357 }, level = 23, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-39)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-54)% increased Fire Damage", statOrder = { 1357 }, level = 35, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-54)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(55-69)% increased Fire Damage", statOrder = { 1357 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-69)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(70-84)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-84)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(85-99)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrder = { 1357 }, level = 84, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(100-109)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrder = { 1357 }, level = 2, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-29)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-44)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrder = { 1357 }, level = 23, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-59)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrder = { 1357 }, level = 35, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(60-84)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrder = { 1357 }, level = 46, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(85-104)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-124)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrder = { 1357 }, level = 79, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(125-149)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrder = { 1357 }, level = 84, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(150-164)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 1, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(75-79)% increased Fire Damage" }, [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 1, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(111-115)% increased Fire Damage" }, [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrder = { 1366 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-19)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-29)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrder = { 1366 }, level = 23, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-39)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-54)% increased Cold Damage", statOrder = { 1366 }, level = 35, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-54)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(55-69)% increased Cold Damage", statOrder = { 1366 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-69)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(70-84)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(70-84)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(85-99)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrder = { 1366 }, level = 84, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(100-109)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrder = { 1366 }, level = 2, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-29)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-44)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrder = { 1366 }, level = 23, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-59)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrder = { 1366 }, level = 35, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(60-84)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrder = { 1366 }, level = 46, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(85-104)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-124)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrder = { 1366 }, level = 79, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(125-149)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrder = { 1366 }, level = 84, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(150-164)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 1, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(75-79)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (25-29) Cold Damage to Spells" }, } }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 1, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(111-115)% increased Cold Damage" }, [2469416729] = { "Adds (19-25) to (37-44) Cold Damage to Spells" }, } }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrder = { 1377 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-19)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-29)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-39)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-54)% increased Lightning Damage", statOrder = { 1377 }, level = 35, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-54)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(55-69)% increased Lightning Damage", statOrder = { 1377 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-69)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(70-84)% increased Lightning Damage", statOrder = { 1377 }, level = 58, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(70-84)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(85-99)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrder = { 1377 }, level = 84, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(100-109)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrder = { 1377 }, level = 2, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-29)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-44)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-59)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrder = { 1377 }, level = 35, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(60-84)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrder = { 1377 }, level = 46, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(85-104)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrder = { 1377 }, level = 58, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-124)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrder = { 1377 }, level = 79, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(125-149)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrder = { 1377 }, level = 84, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(150-164)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 1, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (53-56) Lightning Damage to Spells" }, [2231156303] = { "(75-79)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 1, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (79-84) Lightning Damage to Spells" }, [2231156303] = { "(111-115)% increased Lightning Damage" }, } }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(5-10)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-36)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(37-42)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "belt", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(43-50)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-15)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(16-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-25)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(26-29)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(30-34)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(35-38)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(39-42)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-36)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(37-42)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(43-50)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(51-59)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-34)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-51)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(53-61)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(63-71)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(73-85)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attack Skills" }, } }, - ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(3-4)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } }, - ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 58, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, - ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 74, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } }, - ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 82, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(4-8)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrder = { 1592 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(9-12)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrder = { 1592 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(13-16)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrder = { 1592 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(17-20)% increased Quantity of Items found" }, } }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 1596 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 1596 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrder = { 1596 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(21-26)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrder = { 1596 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-12)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrder = { 1596 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(13-18)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrder = { 1596 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-24)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrder = { 1596 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(25-28)% increased Rarity of Items found" }, } }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-8)% increased Cast Speed", statOrder = { 1446 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-8)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(9-12)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(13-16)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(17-20)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(21-24)% increased Cast Speed", statOrder = { 1446 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(25-28)% increased Cast Speed", statOrder = { 1446 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 500, 0, 0, 500, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(29-32)% increased Cast Speed", statOrder = { 1446 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 250, 0, 0, 250, 250, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrder = { 1446 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-28)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-13)% increased Cast Speed", statOrder = { 1446 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-13)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(14-19)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(20-25)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(26-31)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(32-37)% increased Cast Speed", statOrder = { 1446 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(38-43)% increased Cast Speed", statOrder = { 1446 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(44-49)% increased Cast Speed", statOrder = { 1446 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrder = { 1446 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(39-42)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [2891184298] = { "(29-32)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (24-32) to (49-57) Chaos Damage to Spells" }, [2891184298] = { "(44-49)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedRing3"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-14)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedRing4"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-16)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrder = { 1446 }, level = 10, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(24-28)% increased Cast Speed" }, } }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1413 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1413 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 1413 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrder = { 1413 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrder = { 1413 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(28-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrder = { 1413 }, level = 42, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrder = { 1413 }, level = 58, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(13-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrder = { 1413 }, level = 74, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1413 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-18)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } }, - ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1410 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrder = { 1410 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(17-18)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrder = { 1410 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-5)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrder = { 1410 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-6)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1410 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-7)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-8)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1410 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-7)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrder = { 1410 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-9)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(10-12)% increased Attack Speed", statOrder = { 1410 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-15)% increased Attack Speed" }, } }, - ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(5-15) to Accuracy Rating" }, } }, - ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1433 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(16-60) to Accuracy Rating" }, } }, - ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1433 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-100) to Accuracy Rating" }, } }, - ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1433 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(101-130) to Accuracy Rating" }, } }, - ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1433 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(131-165) to Accuracy Rating" }, } }, - ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1433 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(166-200) to Accuracy Rating" }, } }, - ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1433 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(201-250) to Accuracy Rating" }, } }, - ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1433 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-320) to Accuracy Rating" }, } }, - ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrder = { 1433 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(321-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrder = { 1433 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(401-500) to Accuracy Rating" }, } }, - ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrder = { 1433 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(401-440) to Accuracy Rating" }, } }, - ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, - ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrder = { 1433 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-165) to Accuracy Rating" }, } }, - ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrder = { 1433 }, level = 40, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(166-250) to Accuracy Rating" }, } }, - ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrder = { 1433 }, level = 60, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrder = { 1433 }, level = 75, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(351-480) to Accuracy Rating" }, } }, - ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrder = { 1433 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(481-600) to Accuracy Rating" }, } }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (1-2) Life per second" }, } }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2.1-8) Life per second", statOrder = { 1574 }, level = 7, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2.1-8) Life per second" }, } }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (8.1-16) Life per second", statOrder = { 1574 }, level = 19, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (8.1-16) Life per second" }, } }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (16.1-24) Life per second", statOrder = { 1574 }, level = 31, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16.1-24) Life per second" }, } }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (24.1-32) Life per second", statOrder = { 1574 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (24.1-32) Life per second" }, } }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (32.1-48) Life per second", statOrder = { 1574 }, level = 55, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (32.1-48) Life per second" }, } }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (48.1-64) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (48.1-64) Life per second" }, } }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (64.1-96) Life per second", statOrder = { 1574 }, level = 74, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (64.1-96) Life per second" }, } }, - ["LifeRegeneration9"] = { type = "Suffix", affix = "of Recuperation", "Regenerate (96.1-128) Life per second", statOrder = { 1574 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "amulet", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (96.1-128) Life per second" }, } }, - ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Life-giving", "Regenerate (128.1-152) Life per second", statOrder = { 1574 }, level = 83, group = "LifeRegeneration", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (128.1-152) Life per second" }, } }, - ["LifeRegeneration11____"] = { type = "Suffix", affix = "of Convalescence", "Regenerate (152.1-176) Life per second", statOrder = { 1574 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (152.1-176) Life per second" }, } }, - ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-5) Life per second", statOrder = { 1574 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2-5) Life per second" }, } }, - ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (30-40) Life per second", statOrder = { 1574 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-40) Life per second" }, } }, - ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1574, 1944 }, level = 1, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16-20) Life per second" }, [836936635] = { "Regenerate 0.4% of Life per second" }, } }, - ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrder = { 1944 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.4-0.5)% of Life per second" }, } }, - ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1944 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.6-0.7)% of Life per second" }, } }, - ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrder = { 1944 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-0.9)% of Life per second" }, } }, - ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrder = { 1944 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.1)% of Life per second" }, } }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(20-32)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-32)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(33-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(33-45)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(46-58)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(46-58)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(59-72)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(59-72)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(73-85)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(73-85)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(86-105)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(86-105)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(70-76)% increased Mana Regeneration Rate" }, } }, - ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(5-7)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 5, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 20, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 30, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 44, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 58, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 72, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 85, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(39-44)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceWithBows1_"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 5, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(10-14)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceWithBows2_"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 20, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(15-19)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceWithBows3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 30, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-24)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceWithBows4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 44, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(25-29)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceWithBows5_"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 58, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(30-34)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceWithBows6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 72, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(35-38)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceWithBows7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 85, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(39-44)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(39-42)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 42, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-17)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 58, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(18-20)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 74, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(21-23)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(24-26)% increased Global Critical Strike Chance" }, } }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-11)% to Fire Resistance" }, } }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrder = { 1625 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-17)% to Fire Resistance" }, } }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrder = { 1625 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(18-23)% to Fire Resistance" }, } }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrder = { 1625 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(24-29)% to Fire Resistance" }, } }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrder = { 1625 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-35)% to Fire Resistance" }, } }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrder = { 1625 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-41)% to Fire Resistance" }, } }, - ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrder = { 1625 }, level = 72, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(42-45)% to Fire Resistance" }, } }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrder = { 1625 }, level = 84, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-11)% to Cold Resistance" }, } }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrder = { 1631 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-17)% to Cold Resistance" }, } }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrder = { 1631 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(18-23)% to Cold Resistance" }, } }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrder = { 1631 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(24-29)% to Cold Resistance" }, } }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrder = { 1631 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-35)% to Cold Resistance" }, } }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrder = { 1631 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-41)% to Cold Resistance" }, } }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrder = { 1631 }, level = 72, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(42-45)% to Cold Resistance" }, } }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrder = { 1631 }, level = 84, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, } }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-11)% to Lightning Resistance" }, } }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrder = { 1636 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-17)% to Lightning Resistance" }, } }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrder = { 1636 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(18-23)% to Lightning Resistance" }, } }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrder = { 1636 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(24-29)% to Lightning Resistance" }, } }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrder = { 1636 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-35)% to Lightning Resistance" }, } }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrder = { 1636 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-41)% to Lightning Resistance" }, } }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrder = { 1636 }, level = 72, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(42-45)% to Lightning Resistance" }, } }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrder = { 1636 }, level = 84, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, - ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1625, 2447 }, level = 1, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, tradeHashes = { [3342989455] = { "(9-10)% of Physical Damage from Hits taken as Fire Damage" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, - ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1631, 2448 }, level = 1, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [1871056256] = { "(9-10)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1636, 2449 }, level = 1, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, tradeHashes = { [425242359] = { "(9-10)% of Physical Damage from Hits taken as Lightning Damage" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, - ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1625, 1670 }, level = 1, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, - ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1631, 1675 }, level = 1, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } }, - ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1636, 1679 }, level = 1, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, - ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1625, 10322 }, level = 1, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [165402179] = { "(45-52) to (75-78) added Fire Damage against Burning Enemies" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, - ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1631, 6070 }, level = 1, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [2805714016] = { "(30-50)% increased Damage with Hits against Chilled Enemies" }, } }, - ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1636, 5913 }, level = 1, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, tradeHashes = { [276103140] = { "(40-60)% increased Critical Strike Chance against Shocked Enemies" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-10)% to Chaos Resistance" }, } }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrder = { 1641 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-15)% to Chaos Resistance" }, } }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrder = { 1641 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-20)% to Chaos Resistance" }, } }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrder = { 1641 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(21-25)% to Chaos Resistance" }, } }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrder = { 1641 }, level = 65, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(26-30)% to Chaos Resistance" }, } }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrder = { 1641 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-35)% to Chaos Resistance" }, } }, - ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrder = { 1641, 1948 }, level = 1, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3762784591] = { "(9-10)% reduced Chaos Damage taken over time" }, [2923486259] = { "+(31-35)% to Chaos Resistance" }, } }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1619 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1619 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(8-12)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-19)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-24)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-29)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-34)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-38)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierWithBows1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 8, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(8-12)% to Critical Strike Multiplier with Bows" }, } }, - ["CriticalMultiplierWithBows2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 21, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(13-19)% to Critical Strike Multiplier with Bows" }, } }, - ["CriticalMultiplierWithBows3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 31, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(20-24)% to Critical Strike Multiplier with Bows" }, } }, - ["CriticalMultiplierWithBows4__"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(25-29)% to Critical Strike Multiplier with Bows" }, } }, - ["CriticalMultiplierWithBows5_"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 59, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(30-34)% to Critical Strike Multiplier with Bows" }, } }, - ["CriticalMultiplierWithBows6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 74, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(35-38)% to Critical Strike Multiplier with Bows" }, } }, - ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-41)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-17)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-20)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-25)% to Global Critical Strike Multiplier" }, } }, - ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(11-13)% increased Stun and Block Recovery" }, } }, - ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(14-16)% increased Stun and Block Recovery" }, } }, - ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(17-19)% increased Stun and Block Recovery" }, } }, - ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(20-22)% increased Stun and Block Recovery" }, } }, - ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(23-25)% increased Stun and Block Recovery" }, } }, - ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(26-28)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(29-34)% increased Stun and Block Recovery" }, } }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(11-15)% increased Stun Duration on Enemies" }, } }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(16-20)% increased Stun Duration on Enemies" }, } }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(21-25)% increased Stun Duration on Enemies" }, } }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(26-30)% increased Stun Duration on Enemies" }, } }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(31-35)% increased Stun Duration on Enemies" }, } }, - ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(36-39)% increased Stun Duration on Enemies" }, } }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(10-19)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-39)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-59)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-79)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-99)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(100-109)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(110-119)% increased Spell Critical Strike Chance" }, } }, - ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrder = { 1796 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, - ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrder = { 1796 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, - ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrder = { 1796 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, - ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrder = { 1796 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, - ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrder = { 1796 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, - ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrder = { 1796 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(47-52)% increased Projectile Speed" }, } }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 8, group = "LifeGainPerTarget", weightKey = { "amulet", "ring", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 20, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 30, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 40, group = "LifeGainPerTarget", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants (2-3) Life per Enemy Hit", statOrder = { 1738 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (2-3) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants (4-6) Life per Enemy Hit", statOrder = { 1738 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (4-6) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants (7-10) Life per Enemy Hit", statOrder = { 1738 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (7-10) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants (11-14) Life per Enemy Hit", statOrder = { 1738 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (11-14) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal5"] = { type = "Suffix", affix = "of Regenesis", "Grants (15-18) Life per Enemy Hit", statOrder = { 1738 }, level = 50, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (15-18) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal6"] = { type = "Suffix", affix = "of Renewal", "Grants (19-22) Life per Enemy Hit", statOrder = { 1738 }, level = 60, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (19-22) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal7"] = { type = "Suffix", affix = "of Recuperation", "Grants (23-26) Life per Enemy Hit", statOrder = { 1738 }, level = 70, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (23-26) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal8"] = { type = "Suffix", affix = "of Revitalization", "Grants (27-30) Life per Enemy Hit", statOrder = { 1738 }, level = 80, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (27-30) Life per Enemy Hit" }, } }, - ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(10-12)% increased Fire Damage", statOrder = { 1357 }, level = 8, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-12)% increased Fire Damage" }, } }, - ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(13-15)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-15)% increased Fire Damage" }, } }, - ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(16-18)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(16-18)% increased Fire Damage" }, } }, - ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(19-22)% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(19-22)% increased Fire Damage" }, } }, - ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, - ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrder = { 1357 }, level = 76, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, - ["FireDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Embers", "(18-22)% increased Fire Damage", statOrder = { 1357 }, level = 8, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, - ["FireDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Coals", "(23-28)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-28)% increased Fire Damage" }, } }, - ["FireDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Cinders", "(29-34)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-34)% increased Fire Damage" }, } }, - ["FireDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Flames", "(35-39)% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-39)% increased Fire Damage" }, } }, - ["FireDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Immolation", "(40-44)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-44)% increased Fire Damage" }, } }, - ["FireDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Ashes", "(45-50)% increased Fire Damage", statOrder = { 1357 }, level = 76, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-50)% increased Fire Damage" }, } }, - ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrder = { 1357 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(11-14)% increased Fire Damage" }, } }, - ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrder = { 1357 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-18)% increased Fire Damage" }, } }, - ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrder = { 1357 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(19-22)% increased Fire Damage" }, } }, - ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, - ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrder = { 1357 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, - ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrder = { 1357 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(31-34)% increased Fire Damage" }, } }, - ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(10-12)% increased Cold Damage", statOrder = { 1366 }, level = 12, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-12)% increased Cold Damage" }, } }, - ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(13-15)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-15)% increased Cold Damage" }, } }, - ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(16-18)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(16-18)% increased Cold Damage" }, } }, - ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(19-22)% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(19-22)% increased Cold Damage" }, } }, - ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, - ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrder = { 1366 }, level = 76, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Snow", "(18-22)% increased Cold Damage", statOrder = { 1366 }, level = 12, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, - ["ColdDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Sleet", "(23-28)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-28)% increased Cold Damage" }, } }, - ["ColdDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Ice", "(29-34)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-34)% increased Cold Damage" }, } }, - ["ColdDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Rime", "(35-39)% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-39)% increased Cold Damage" }, } }, - ["ColdDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Floe", "(40-44)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-44)% increased Cold Damage" }, } }, - ["ColdDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Glaciation", "(45-50)% increased Cold Damage", statOrder = { 1366 }, level = 76, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(6-10)% increased Cold Damage" }, } }, - ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrder = { 1366 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(11-14)% increased Cold Damage" }, } }, - ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrder = { 1366 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-18)% increased Cold Damage" }, } }, - ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrder = { 1366 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(19-22)% increased Cold Damage" }, } }, - ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, - ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrder = { 1366 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrder = { 1366 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(31-34)% increased Cold Damage" }, } }, - ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(10-12)% increased Lightning Damage", statOrder = { 1377 }, level = 10, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-12)% increased Lightning Damage" }, } }, - ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(13-15)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-15)% increased Lightning Damage" }, } }, - ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(16-18)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(16-18)% increased Lightning Damage" }, } }, - ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(19-22)% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(19-22)% increased Lightning Damage" }, } }, - ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, - ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrder = { 1377 }, level = 76, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Sparks", "(18-22)% increased Lightning Damage", statOrder = { 1377 }, level = 10, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, - ["LightningDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Static", "(23-28)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-28)% increased Lightning Damage" }, } }, - ["LightningDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Electricity", "(29-34)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-34)% increased Lightning Damage" }, } }, - ["LightningDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Voltage", "(35-39)% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-39)% increased Lightning Damage" }, } }, - ["LightningDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Discharge", "(40-44)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-44)% increased Lightning Damage" }, } }, - ["LightningDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Arcing", "(45-50)% increased Lightning Damage", statOrder = { 1377 }, level = 76, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-50)% increased Lightning Damage" }, } }, - ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrder = { 1377 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(31-34)% increased Lightning Damage" }, } }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (7-10) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-10) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (12-18) Life per Enemy Killed", statOrder = { 1748 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (12-18) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (24-32) Life per Enemy Killed", statOrder = { 1748 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (24-32) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (35-44) Life per Enemy Killed", statOrder = { 1748 }, level = 52, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (35-44) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Feat", "Gain (56-72) Life per Enemy Killed", statOrder = { 1748 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (56-72) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Masterstroke", "Gain (84-110) Life per Enemy Killed", statOrder = { 1748 }, level = 81, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (84-110) Life per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (4-6) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-6) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (7-10) Mana per Enemy Killed", statOrder = { 1763 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (7-10) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (11-15) Mana per Enemy Killed", statOrder = { 1763 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (11-15) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Diffusion", "Gain (16-25) Mana per Enemy Killed", statOrder = { 1763 }, level = 52, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (16-25) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Permeation", "Gain (26-37) Mana per Enemy Killed", statOrder = { 1763 }, level = 66, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (26-37) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Retention", "Gain (38-50) Mana per Enemy Killed", statOrder = { 1763 }, level = 81, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (38-50) Mana per Enemy Killed" }, } }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-14)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrder = { 1464 }, level = 20, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-19)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrder = { 1464 }, level = 30, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-24)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrder = { 1464 }, level = 44, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-29)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrder = { 1464 }, level = 59, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrder = { 1464 }, level = 73, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(35-38)% increased Critical Strike Chance" }, } }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-14)% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-19)% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-24)% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-29)% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-34)% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-38)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 2, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrder = { 162 }, level = 76, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+3 to Level of Socketed Gems" }, } }, - ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } }, - ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-2) to Level of all Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 2, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 55, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, - ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(1-2) to Level of all Fire Spell Skill Gems" }, } }, - ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 77, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 2, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 55, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, - ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(1-2) to Level of all Cold Spell Skill Gems" }, } }, - ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 77, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 2, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+1 to Level of Socketed Lightning Gems" }, } }, - ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 55, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, - ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, - ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(1-2) to Level of all Lightning Spell Skill Gems" }, } }, - ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 77, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 4, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+1 to Level of Socketed Chaos Gems" }, } }, - ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 55, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, - ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, - ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(1-2) to Level of all Chaos Spell Skill Gems" }, } }, - ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 77, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skill Gems" }, } }, - ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(1-2) to Level of all Physical Spell Skill Gems" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 77, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, - ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 8, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 63, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+2 to Level of Socketed Melee Gems" }, } }, - ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 9, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } }, - ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 64, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+2 to Level of Socketed Bow Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 14, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 86, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+3 to Level of Socketed Minion Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevel1"] = { type = "Prefix", affix = "Taskmaster's", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 14, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevel2"] = { type = "Prefix", affix = "Overseer's", "+2 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skill Gems" }, } }, - ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(5-15) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 2024 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(16-60) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 2024 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-100) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 2024 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(101-130) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 2024 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(131-165) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 2024 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(166-200) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 2024 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(201-250) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 2024 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(251-320) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrder = { 2024 }, level = 80, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(321-360) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrder = { 2024 }, level = 82, group = "LocalAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(361-380) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(80-130) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrder = { 2024 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(131-215) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrder = { 2024 }, level = 40, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(216-325) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrder = { 2024 }, level = 60, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(326-455) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrder = { 2024 }, level = 75, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(456-624) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrder = { 2024 }, level = 85, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(625-780) to Accuracy Rating" }, } }, - ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowQuiver1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 70, group = "AdditionalArrows", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased Movement Speed", statOrder = { 1769 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } }, - ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased Movement Speed", statOrder = { 1769 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } }, - ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, - ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, - ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } }, - ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased Movement Speed", statOrder = { 1769 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } }, - ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased maximum Life", statOrder = { 1766 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-15)% increased maximum Life" }, } }, - ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased maximum Life", statOrder = { 1766 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (16-18)% increased maximum Life" }, } }, - ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased maximum Life", statOrder = { 1766 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-21)% increased maximum Life" }, } }, - ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased maximum Life", statOrder = { 1766 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (22-24)% increased maximum Life" }, } }, - ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (25-27)% increased maximum Life" }, } }, - ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-30)% increased maximum Life" }, } }, - ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-10)% increased Damage" }, } }, - ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-14)% increased Damage" }, } }, - ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-18)% increased Damage" }, } }, - ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-22)% increased Damage" }, } }, - ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } }, - ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } }, - ["MinionAccuracyEssence2_"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 10, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(13-15)% increased Minion Accuracy Rating" }, } }, - ["MinionAccuracyEssence3_"] = { type = "Suffix", affix = "of the Essence", "(16-18)% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 26, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(16-18)% increased Minion Accuracy Rating" }, } }, - ["MinionAccuracyEssence4___"] = { type = "Suffix", affix = "of the Essence", "(19-21)% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 42, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(19-21)% increased Minion Accuracy Rating" }, } }, - ["MinionAccuracyEssence5"] = { type = "Suffix", affix = "of the Essence", "(22-24)% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 58, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-24)% increased Minion Accuracy Rating" }, } }, - ["MinionAccuracyEssence6"] = { type = "Suffix", affix = "of the Essence", "(25-27)% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 74, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(25-27)% increased Minion Accuracy Rating" }, } }, - ["MinionAccuracyEssence7_"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 82, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(28-30)% increased Minion Accuracy Rating" }, } }, - ["MinionDamageGlovesEssence2"] = { type = "Prefix", affix = "Essences", "Minions deal (13-15)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } }, - ["MinionDamageGlovesEssence3"] = { type = "Prefix", affix = "Essences", "Minions deal (16-18)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-18)% increased Damage" }, } }, - ["MinionDamageGlovesEssence4"] = { type = "Prefix", affix = "Essences", "Minions deal (19-21)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-21)% increased Damage" }, } }, - ["MinionDamageGlovesEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (22-24)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-24)% increased Damage" }, } }, - ["MinionDamageGlovesEssence6___"] = { type = "Prefix", affix = "Essences", "Minions deal (25-27)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-27)% increased Damage" }, } }, - ["MinionDamageGlovesEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (28-30)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-30)% increased Damage" }, } }, - ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } }, - ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-21)% increased Damage" }, } }, - ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-27)% increased Damage" }, } }, - ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-33)% increased Damage" }, } }, - ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (34-39)% increased Damage" }, } }, - ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-45)% increased Damage" }, } }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 2183 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(5-10)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 2183 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(11-16)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 2183 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(17-22)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 2183 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(23-28)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 2183 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(29-34)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 2183 }, level = 84, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(35-40)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskEffect1_"] = { type = "Prefix", affix = "Distilling", "Flasks applied to you have (4-6)% increased Effect", statOrder = { 2742 }, level = 45, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-6)% increased Effect" }, } }, - ["BeltIncreasedFlaskEffect2"] = { type = "Prefix", affix = "Condensing", "Flasks applied to you have (7-9)% increased Effect", statOrder = { 2742 }, level = 65, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (7-9)% increased Effect" }, } }, - ["BeltIncreasedFlaskEffect3"] = { type = "Prefix", affix = "Magnifying", "Flasks applied to you have (10-12)% increased Effect", statOrder = { 2742 }, level = 85, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-12)% increased Effect" }, } }, - ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrder = { 2184 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% reduced Flask Charges used" }, } }, - ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Sipping", "(4-9)% increased Flask Effect Duration", statOrder = { 2187 }, level = 8, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(4-9)% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDuration2"] = { type = "Suffix", affix = "of Tasting", "(10-15)% increased Flask Effect Duration", statOrder = { 2187 }, level = 34, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-15)% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDuration3"] = { type = "Suffix", affix = "of Savouring", "(16-21)% increased Flask Effect Duration", statOrder = { 2187 }, level = 50, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(16-21)% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDuration4"] = { type = "Suffix", affix = "of Relishing", "(22-27)% increased Flask Effect Duration", statOrder = { 2187 }, level = 66, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(22-27)% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDuration5_"] = { type = "Suffix", affix = "of Reveling", "(28-33)% increased Flask Effect Duration", statOrder = { 2187 }, level = 82, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(28-33)% increased Flask Effect Duration" }, } }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 2189 }, 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 = { 2189 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } }, - ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (1-4) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (5-10) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (11-24) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (25-50) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, - ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrder = { 2249 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-3)% Chance to Block" }, } }, - ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-5)% Chance to Block", statOrder = { 2249 }, level = 25, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(4-5)% Chance to Block" }, } }, - ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(6-7)% Chance to Block", statOrder = { 2249 }, level = 40, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-7)% Chance to Block" }, } }, - ["AdditionalBlockChance4_"] = { type = "Suffix", affix = "of the Stalwart", "+(8-9)% Chance to Block", statOrder = { 2249 }, level = 55, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-9)% Chance to Block" }, } }, - ["AdditionalBlockChance5"] = { type = "Suffix", affix = "of the Buttress", "+(10-11)% Chance to Block", statOrder = { 2249 }, level = 66, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(10-11)% Chance to Block" }, } }, - ["AdditionalBlockChance6"] = { type = "Suffix", affix = "of the Sentinel", "+(12-13)% Chance to Block", statOrder = { 2249 }, level = 77, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(12-13)% Chance to Block" }, } }, - ["AdditionalBlockChance7"] = { type = "Suffix", affix = "of the Citadel", "+(14-15)% Chance to Block", statOrder = { 2249 }, level = 86, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(14-15)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 2249 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 2249 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 2249 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 2249 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } }, - ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } }, - ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, - ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(5-15)% increased Damage" }, } }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrder = { 1075 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "18% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrder = { 1075 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "32% reduced Attribute Requirements" }, } }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1433, 2500 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1433, 2500 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1434, 2500 }, level = 30, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, - ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1434, 2500 }, level = 8, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [624954515] = { "(9-11)% increased Global Accuracy Rating" }, } }, - ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1434, 2500 }, level = 15, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 2024, 2500 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 2024, 2500 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1434, 2500 }, level = 30, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1434, 2500 }, level = 8, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [624954515] = { "(9-11)% increased Global Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1434, 2500 }, level = 15, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1757 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } }, - ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1757 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } }, - ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1757 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } }, - ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1757 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } }, - ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1757 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } }, - ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1757 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } }, - ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1758 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } }, - ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1758 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } }, - ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1758 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } }, - ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1758 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } }, - ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2847 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2848 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, - ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "+4% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+4% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "+6% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+6% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 42, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 58, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 74, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(10-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 82, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "+4% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+4% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "+6% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+6% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(10-12)% chance to Suppress Spell Damage" }, } }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(4-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 30, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-6)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(7-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 52, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(7-9)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentage3_"] = { type = "Suffix", affix = "of the Barricade", "(10-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 71, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-12)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentage4_"] = { type = "Suffix", affix = "of the Bastion", "(13-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 84, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(13-15)% Chance to Block Spell Damage" }, } }, - ["LocalIncreasedBlockPercentage1"] = { type = "Prefix", affix = "Steadfast", "(40-45)% increased Chance to Block", statOrder = { 90 }, level = 2, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-45)% increased Chance to Block" }, } }, - ["LocalIncreasedBlockPercentage2"] = { type = "Prefix", affix = "Unrelenting", "(46-51)% increased Chance to Block", statOrder = { 90 }, level = 15, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(46-51)% increased Chance to Block" }, } }, - ["LocalIncreasedBlockPercentage3"] = { type = "Prefix", affix = "Adamant", "(52-57)% increased Chance to Block", statOrder = { 90 }, level = 35, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(52-57)% increased Chance to Block" }, } }, - ["LocalIncreasedBlockPercentage4"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Chance to Block", statOrder = { 90 }, level = 48, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Chance to Block" }, } }, - ["LocalIncreasedBlockPercentage5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Chance to Block", statOrder = { 90 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Chance to Block" }, } }, - ["LocalIncreasedBlockPercentage6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Chance to Block", statOrder = { 90 }, level = 77, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Chance to Block" }, } }, - ["LocalIncreasedBlockPercentage7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Chance to Block", statOrder = { 90 }, level = 86, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Chance to Block" }, } }, - ["ShieldSpellBlockPercentage1"] = { type = "Prefix", affix = "Mystic", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 16, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, - ["ShieldSpellBlockPercentage2"] = { type = "Prefix", affix = "Clairvoyant", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 28, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } }, - ["ShieldSpellBlockPercentage3"] = { type = "Prefix", affix = "Enigmatic", "(8-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 40, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(8-9)% Chance to Block Spell Damage" }, } }, - ["ShieldSpellBlockPercentage4"] = { type = "Prefix", affix = "Enlightened", "(10-11)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 55, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-11)% Chance to Block Spell Damage" }, } }, - ["ShieldSpellBlockPercentage5"] = { type = "Prefix", affix = "Seer's", "(12-13)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 66, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-13)% Chance to Block Spell Damage" }, } }, - ["ShieldSpellBlockPercentage6"] = { type = "Prefix", affix = "Oracle's", "(14-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 77, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(14-15)% Chance to Block Spell Damage" }, } }, - ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 1385 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 1385 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 1385 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "150% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "150% increased total Recovery per second from Life Leech" }, } }, - ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 63, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } }, - ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-(8-4) to Total Mana Cost of Skills" }, } }, - ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(20-40)% increased total Recovery per second from Life Leech" }, } }, - ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(3-6)% to Quality of Socketed Support Gems" }, } }, - ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2620 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [3629113735] = { "" }, [279246355] = { "Area is inhabited by an additional Invasion Boss" }, [2390685262] = { "" }, } }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2984 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2984 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2984 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2984 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } }, - ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2981 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2981 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2981 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2981 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2981 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } }, - ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2983 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2983 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2983 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2983 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2983 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2983 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2983 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } }, - ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, - ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 50, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 60, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of the Remora", "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 20, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2-2.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(2.6-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 45, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.6-3.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(3.5-4.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.5-4.5)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(2-2.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2-2.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(2.3-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.3-2.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffixEssence3"] = { type = "Suffix", affix = "of the Essence", "(2.5-2.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.5-2.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(2.9-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.9-3.2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(3.3-3.6)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.3-3.6)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(3.7-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.7-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadLocalSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(4.1-4.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(4.1-4.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of Thirst", "(2.6-3.2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(2.6-3.2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1198 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } }, - ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } }, - ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1198 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } }, - ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1198 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, - ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1198 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, - ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2578 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2578 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2578 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } }, - ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } }, - ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 3272 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 3272 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 3272 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } }, - ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1404 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1404 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1404 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (24-33) to (48-57) Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (24-33) to (48-57) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (31-42) to (64-73) Fire Damage to Spells", statOrder = { 1404 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-42) to (64-73) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (40-52) to (79-91) Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (40-52) to (79-91) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (49-66) to (98-115) Fire Damage to Spells", statOrder = { 1404 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (49-66) to (98-115) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-54) to (80-90) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1405 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1405 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (20-26) to (40-46) Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (20-26) to (40-46) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (51-60) Cold Damage to Spells", statOrder = { 1405 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (26-35) to (51-60) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (33-43) to (64-75) Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (33-43) to (64-75) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (41-54) to (81-93) Cold Damage to Spells", statOrder = { 1405 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (41-54) to (81-93) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1406 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1406 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (64-68) Lightning Damage to Spells", statOrder = { 1406 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (64-68) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (84-88) Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (84-88) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (109-115) Lightning Damage to Spells", statOrder = { 1406 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (109-115) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (136-144) Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (136-144) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (170-179) Lightning Damage to Spells", statOrder = { 1406 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (170-179) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1404 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1404 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1404 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (32-44) to (65-76) Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (32-44) to (65-76) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (42-56) to (85-99) Fire Damage to Spells", statOrder = { 1404 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (42-56) to (85-99) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (107-123) Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-70) to (107-123) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (66-88) to (132-155) Fire Damage to Spells", statOrder = { 1404 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (66-88) to (132-155) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1405 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1405 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1405 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (30-40) to (59-69) Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (30-40) to (59-69) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (77-90) Cold Damage to Spells", statOrder = { 1405 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (39-52) to (77-90) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (49-64) to (96-113) Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (49-64) to (96-113) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (61-81) to (120-140) Cold Damage to Spells", statOrder = { 1405 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (61-81) to (120-140) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1406 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1406 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1406 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1406 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1406 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } }, - ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos Damage", statOrder = { 1390 }, level = 83, group = "LocalChaosDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos Damage" }, } }, - ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos Damage", statOrder = { 1390 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos Damage" }, } }, - ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos Damage", statOrder = { 1390 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos Damage" }, } }, - ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos Damage", statOrder = { 1390 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos Damage" }, } }, - ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos Damage", statOrder = { 1390 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 700, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos Damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos Damage", statOrder = { 1390 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos Damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos Damage", statOrder = { 1390 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos Damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos Damage", statOrder = { 1390 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos Damage" }, } }, - ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrder = { 2756 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "drop" }, tradeHashes = { [301625329] = { "30% increased Rarity of Items found during any Flask Effect" }, } }, - ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "damage" }, tradeHashes = { [2947215268] = { "(20-25)% increased Damage during any Flask Effect" }, } }, - ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9783 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2125444333] = { "Projectiles Pierce an additional Target" }, } }, - ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9783 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2125444333] = { "Projectiles Pierce an additional Target" }, } }, - ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 9784 }, level = 1, group = "Quiver2AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3640956958] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3369 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 42, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(6-7)% chance to Avoid Fire Damage from Hits" }, } }, - ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(7-8)% chance to Avoid Fire Damage from Hits" }, } }, - ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-9)% chance to Avoid Fire Damage from Hits" }, } }, - ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(9-10)% chance to Avoid Fire Damage from Hits" }, } }, - ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 26, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(5-6)% chance to Avoid Cold Damage from Hits" }, } }, - ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 42, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-7)% chance to Avoid Cold Damage from Hits" }, } }, - ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 58, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(7-8)% chance to Avoid Cold Damage from Hits" }, } }, - ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 74, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(8-9)% chance to Avoid Cold Damage from Hits" }, } }, - ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(9-10)% chance to Avoid Cold Damage from Hits" }, } }, - ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(4-5)% chance to Avoid Lightning Damage from Hits" }, } }, - ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(5-6)% chance to Avoid Lightning Damage from Hits" }, } }, - ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-7)% chance to Avoid Lightning Damage from Hits" }, } }, - ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(7-8)% chance to Avoid Lightning Damage from Hits" }, } }, - ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(8-9)% chance to Avoid Lightning Damage from Hits" }, } }, - ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(9-10)% chance to Avoid Lightning Damage from Hits" }, } }, - ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1387 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } }, - ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1387 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } }, - ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1387 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } }, - ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 3170 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 3170 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } }, - ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1385, 3170 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 556 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 550 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 550 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, - ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 557 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, tradeHashes = { [1859937391] = { "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage" }, } }, - ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 553 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4312 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, [2936538132] = { "" }, } }, - ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4309 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2876075610] = { "" }, [685387835] = { "" }, [223497523] = { "" }, } }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1514 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2380848911] = { "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1948 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, - ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrder = { 541 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Strike Chance" }, } }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 4274 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } }, - ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } }, - ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, - ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 4275 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } }, - ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 534 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3984519770] = { "Socketed Gems have 50% chance to Ignite" }, } }, - ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 552 }, 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 = { 4267 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, - ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 4268 }, 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 = { 9883 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, - ["DamageCannotBeReflectedPercentEssence1"] = { type = "Suffix", affix = "of the Essence", "60% of Hit Damage from you and your Minions cannot be Reflected", statOrder = { 1 }, level = 63, group = "DamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1567747544] = { "60% of Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 4270 }, 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 = { 4271 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, - ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrder = { 3181 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "40% increased Damage with Poison" }, } }, - ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3475 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of Mana when you use a Skill" }, } }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 9118 }, 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 = { 5655 }, 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 = { 6721 }, 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 = { 3612 }, 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 = { 604 }, 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 = { 181 }, 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 = { 779 }, 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 = { 751, 751.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 = { 1880 }, 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 = { 6782 }, 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 = { 2827 }, 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 = { 602 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, - ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1145 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [2253286128] = { "+15% Chance to Block Spell Damage while on Low Life" }, } }, - ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Effect of your Curses", statOrder = { 2596 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Effect of your Curses" }, } }, - ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Effect of your Curses", statOrder = { 2596 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } }, - ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Marks", statOrder = { 2598 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "25% increased Effect of your Marks" }, } }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6136 }, 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" }, } }, - ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 63, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9435 }, 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 = { 2508 }, 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 = { 8187 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, - ["AilmentDoubleDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4619 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1916537902] = { "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them" }, } }, - ["AilmentDoubleDamageTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4619 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1916537902] = { "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them" }, } }, - ["AttackCastSpeedPerNearbyEnemyEssence1"] = { type = "Suffix", affix = "of the Essence", "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", statOrder = { 4808 }, level = 63, group = "AttackCastSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1027670161] = { "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%" }, } }, - ["MovementSpeedPerNearbyEnemyEssence1"] = { type = "Prefix", affix = "Essences", "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", statOrder = { 9412 }, level = 63, group = "MovementSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1426967889] = { "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%" }, } }, - ["GlobalDefencesNoOtherDefenceModifiersOnEquipmentEssence1"] = { type = "Prefix", affix = "Essences", "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items", statOrder = { 6875 }, level = 63, group = "GlobalDefencesNoOtherDefenceModifiersOnEquipment", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [2939710712] = { "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items" }, } }, - ["LocalGemLevelIfOnlySocketedGemEssence1"] = { type = "Prefix", affix = "Essences", "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item", statOrder = { 8018 }, level = 63, group = "LocalGemLevelIfOnlySocketedGem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3298991976] = { "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item" }, } }, - ["ProjectilesChainAtCloseRangeEssence1"] = { type = "Suffix", affix = "of the Essence", "Projectiles can Chain from any number of additional targets in Close Range", statOrder = { 9749 }, level = 63, group = "ProjectilesChainAtCloseRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2940232338] = { "Projectiles can Chain from any number of additional targets in Close Range" }, } }, - ["AilmentDurationIfNotAppliedThatAilmentRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently", statOrder = { 4984 }, level = 63, group = "AilmentDurationIfNotAppliedThatAilmentRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [967840105] = { "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently" }, } }, - ["ShockwaveUnleashCountEssence1"] = { type = "Prefix", affix = "Essences", "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals", "Right ring slot: Shockwave has +1 to Cooldown Uses", statOrder = { 7983, 8010 }, level = 63, group = "ShockwaveUnleashCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [597522922] = { "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals" }, [651133374] = { "Right ring slot: Shockwave has +1 to Cooldown Uses" }, } }, - ["MagicFlaskEffectNoAdjacentFlasksEssence1"] = { type = "Prefix", affix = "Essences", "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them", statOrder = { 8149 }, level = 63, group = "MagicFlaskEffectNoAdjacentFlasks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2649904663] = { "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them" }, } }, - ["ArmourAppliesElementalHitsIfBlockedRecentlyEssence1"] = { type = "Prefix", affix = "Essences", "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4749 }, level = 63, group = "ArmourAppliesElementalHitsIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [1239225602] = { "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } }, - ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrder = { 4994 }, level = 30, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, - ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrder = { 4994 }, level = 60, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, - ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(18-24)% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(18-24)% chance to Ignite" }, } }, - ["ChanceToIgnite2"] = { type = "Suffix", affix = "of Combustion", "(25-30)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(25-30)% chance to Ignite" }, } }, - ["ChanceToIgnite3_"] = { type = "Suffix", affix = "of Conflagration", "(31-40)% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(31-40)% chance to Ignite" }, } }, - ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(25-32)% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(25-32)% chance to Ignite" }, } }, - ["TwoHandChanceToIgnite2_"] = { type = "Suffix", affix = "of Combustion", "(33-42)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(33-42)% chance to Ignite" }, } }, - ["TwoHandChanceToIgnite3"] = { type = "Suffix", affix = "of Conflagration", "(43-55)% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(43-55)% chance to Ignite" }, } }, - ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 15, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, } }, - ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 55, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, } }, - ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 85, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, } }, - ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrder = { 8003 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "10% chance to Poison on Hit" }, } }, - ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 8003 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, - ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 8003 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, } }, - ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1385, 8003 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(18-24)% chance to Freeze" }, } }, - ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-30)% chance to Freeze" }, } }, - ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(31-40)% chance to Freeze" }, } }, - ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-32)% chance to Freeze" }, } }, - ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(33-42)% chance to Freeze" }, } }, - ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(43-55)% chance to Freeze" }, } }, - ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(18-24)% chance to Shock" }, } }, - ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-30)% chance to Shock" }, } }, - ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(31-40)% chance to Shock" }, } }, - ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(25-32)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-32)% chance to Shock" }, } }, - ["TwoHandChanceToShock2_"] = { type = "Suffix", affix = "of Zapping", "(33-42)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(33-42)% chance to Shock" }, } }, - ["TwoHandChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(43-55)% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(43-55)% chance to Shock" }, } }, - ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(26-30)% increased Burning Damage", statOrder = { 1877 }, level = 20, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(26-30)% increased Burning Damage" }, } }, - ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-35)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, } }, - ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(36-40)% increased Burning Damage", statOrder = { 1877 }, level = 60, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(36-40)% increased Burning Damage" }, } }, - ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(31-40)% increased Burning Damage", statOrder = { 1877 }, level = 20, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(31-40)% increased Burning Damage" }, } }, - ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(41-50)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(41-50)% increased Burning Damage" }, } }, - ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(51-60)% increased Burning Damage", statOrder = { 1877 }, level = 60, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(51-60)% increased Burning Damage" }, } }, - ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrder = { 3181, 8003 }, level = 20, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, [1290399200] = { "(21-30)% increased Damage with Poison" }, } }, - ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(31-40)% increased Damage with Poison", "25% chance to Poison on Hit", statOrder = { 3181, 8003 }, level = 40, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "25% chance to Poison on Hit" }, [1290399200] = { "(31-40)% increased Damage with Poison" }, } }, - ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3181, 8003 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [1290399200] = { "(41-50)% increased Damage with Poison" }, } }, - ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1390, 3181 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, - ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1407, 3181 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, - ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, [1294118672] = { "(21-30)% increased Damage with Bleeding" }, } }, - ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, [1294118672] = { "(31-40)% increased Damage with Bleeding" }, } }, - ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, [1294118672] = { "(41-50)% increased Damage with Bleeding" }, } }, - ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2273 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "2% additional Physical Damage Reduction" }, } }, - ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-4)% additional Physical Damage Reduction" }, } }, - ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } }, - ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrder = { 2646 }, level = 25, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.6% of Energy Shield per second" }, } }, - ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 85, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["LifeRegenerationRate1"] = { type = "Suffix", affix = "of Esprit", "(9-11)% increased Life Regeneration rate", statOrder = { 1577 }, level = 46, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(9-11)% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRate2"] = { type = "Suffix", affix = "of Perpetuity", "(12-14)% increased Life Regeneration rate", statOrder = { 1577 }, level = 57, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(12-14)% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRate3"] = { type = "Suffix", affix = "of Vivification", "(15-17)% increased Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-17)% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRate4"] = { type = "Suffix", affix = "of Youth", "(18-19)% increased Life Regeneration rate", statOrder = { 1577 }, level = 76, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(18-19)% increased Life Regeneration rate" }, } }, - ["LifeRegenerationRate5"] = { type = "Suffix", affix = "of Everlasting", "(20-21)% increased Life Regeneration rate", statOrder = { 1577 }, level = 85, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(20-21)% increased Life Regeneration rate" }, } }, - ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 2273 }, level = 45, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Sentry", "5% additional Physical Damage Reduction", statOrder = { 2273 }, level = 58, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Keeper", "6% additional Physical Damage Reduction", statOrder = { 2273 }, level = 67, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 2273 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 2273 }, level = 86, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, - ["ChanceToSuppressSpells1_"] = { type = "Suffix", affix = "of Rebuttal", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 46, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-6)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpells2"] = { type = "Suffix", affix = "of Snuffing", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 57, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(7-8)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpells3"] = { type = "Suffix", affix = "of Revoking", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(9-10)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpells4"] = { type = "Suffix", affix = "of Abjuration", "+(11-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 76, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(11-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpells5__"] = { type = "Suffix", affix = "of Nullification", "+(13-14)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(13-14)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsHigh1__"] = { type = "Suffix", affix = "of Rebuttal", "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(8-10)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsHigh2__"] = { type = "Suffix", affix = "of Snuffing", "+(11-13)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(11-13)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsHigh3"] = { type = "Suffix", affix = "of Revoking", "+(14-16)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 67, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(14-16)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsHigh4_"] = { type = "Suffix", affix = "of Abjuration", "+(17-19)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 77, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(17-19)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsHigh5___"] = { type = "Suffix", affix = "of Nullification", "+(20-22)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 86, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-22)% chance to Suppress Spell Damage" }, } }, - ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Allaying", "(24-26)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 46, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(24-26)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(27-29)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 57, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(27-29)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(30-32)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(30-32)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(33-35)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 76, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(33-35)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(36-38)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(36-38)% increased Energy Shield Recharge Rate" }, } }, - ["FasterStartEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Enlivening", "(27-34)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 45, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(27-34)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Zest", "(35-42)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 58, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(35-42)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartEnergyShieldRecharge3__"] = { type = "Suffix", affix = "of Galvanising", "(43-50)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 67, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(43-50)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Vigour", "(51-58)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 77, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-58)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartEnergyShieldRecharge5_"] = { type = "Suffix", affix = "of Second Wind", "(59-66)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 86, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(59-66)% faster start of Energy Shield Recharge" }, } }, - ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } }, - ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "You take (31-40)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (31-40)% reduced Extra Damage from Critical Strikes" }, } }, - ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "You take (41-50)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 67, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (41-50)% reduced Extra Damage from Critical Strikes" }, } }, - ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "You take (51-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 78, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (51-60)% reduced Extra Damage from Critical Strikes" }, } }, - ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Bandaging", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Stitching", "(7-9)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(7-9)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Suturing", "(10-12)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Fleshbinding", "(13-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, - ["GlobalSkillGemLevel1"] = { type = "Prefix", affix = "Exalter's", "+1 to Level of all Skill Gems", statOrder = { 4634 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 50, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } }, - ["GlobalFireGemLevel1_"] = { type = "Prefix", affix = "Vulcanist's", "+1 to Level of all Fire Skill Gems", statOrder = { 6587 }, level = 75, group = "GlobalFireGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skill Gems" }, } }, - ["GlobalColdGemLevel1__"] = { type = "Prefix", affix = "Rimedweller's", "+1 to Level of all Cold Skill Gems", statOrder = { 5836 }, level = 75, group = "GlobalColdGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+1 to Level of all Cold Skill Gems" }, } }, - ["GlobalLightningGemLevel1"] = { type = "Prefix", affix = "Stormbrewer's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7466 }, level = 75, group = "GlobalLightningGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skill Gems" }, } }, - ["GlobalPhysicalGemLevel1_"] = { type = "Prefix", affix = "Behemoth's", "+1 to Level of all Physical Skill Gems", statOrder = { 9672 }, level = 75, group = "GlobalPhysicalGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "gem" }, tradeHashes = { [619213329] = { "+1 to Level of all Physical Skill Gems" }, } }, - ["GlobalChaosGemLevel1"] = { type = "Prefix", affix = "Provocateur's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5756 }, level = 75, group = "GlobalChaosGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skill Gems" }, } }, - ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, - ["MaximumAllResist1_"] = { type = "Suffix", affix = "of the Sempiternal", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["MaximumAllResist2"] = { type = "Suffix", affix = "of the Deathless", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 81, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, - ["DamageWithBowSkills1"] = { type = "Prefix", affix = "Acute", "(5-10)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(5-10)% increased Damage with Bow Skills" }, } }, - ["DamageWithBowSkills2"] = { type = "Prefix", affix = "Trenchant", "(11-20)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, - ["DamageWithBowSkills3"] = { type = "Prefix", affix = "Perforating", "(21-30)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, - ["DamageWithBowSkills4_"] = { type = "Prefix", affix = "Incisive", "(31-36)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, - ["DamageWithBowSkills5"] = { type = "Prefix", affix = "Lacerating", "(37-42)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, - ["DamageWithBowSkills6_"] = { type = "Prefix", affix = "Impaling", "(43-50)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 86, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, - ["DamageWithBowSkillsEssence3a"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 26, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-25)% increased Damage with Bow Skills" }, } }, - ["DamageWithBowSkillsEssence3b_"] = { type = "Prefix", affix = "Essences", "(26-30)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 42, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(26-30)% increased Damage with Bow Skills" }, } }, - ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 314, 1895 }, level = 68, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [407317553] = { "Socketed Gems are Supported by Level 15 More Duration" }, [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 496 }, level = 68, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } }, - ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrder = { 10462 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrder = { 10457 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Desecrated Ground", statOrder = { 10468 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 84, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 83, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, - ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(15-22)% chance to Avoid being Stunned" }, } }, - ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(23-30)% chance to Avoid being Stunned" }, } }, - ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(31-35)% chance to Avoid being Stunned" }, } }, - ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(14-17)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(14-17)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(18-21)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-21)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(6-9)% chance to avoid Projectiles" }, } }, - ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrder = { 4993 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, } }, - ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(4-6)% chance to gain an Endurance Charge on Kill" }, } }, - ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrder = { 464, 1193 }, level = 68, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 18 Spell Totem" }, [3851254963] = { "(20-25)% increased Totem Damage" }, } }, - ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrder = { 464, 1193 }, level = 75, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, [3851254963] = { "(26-30)% increased Totem Damage" }, } }, - ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 464, 1193 }, level = 80, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 22 Spell Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } }, - ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 68, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(8-12)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 18 Spell Totem" }, } }, - ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 75, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(13-16)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } }, - ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 80, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 22 Spell Totem" }, } }, - ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrder = { 362, 1193 }, level = 68, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 18 Ballista Totem" }, [3851254963] = { "(20-25)% increased Totem Damage" }, } }, - ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrder = { 362, 1193 }, level = 75, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, [3851254963] = { "(26-30)% increased Totem Damage" }, } }, - ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 362, 1193 }, level = 80, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 22 Ballista Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } }, - ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 68, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(8-12)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 18 Ballista Totem" }, } }, - ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 75, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(13-16)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, } }, - ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 80, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 22 Ballista Totem" }, } }, - ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } }, - ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrder = { 700 }, level = 68, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3566242751] = { "Grants Level 20 Decoy Totem Skill" }, } }, - ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrder = { 469, 1410 }, level = 68, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 16 Faster Attacks" }, } }, - ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrder = { 469, 1410 }, level = 75, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(10-12)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } }, - ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 469, 1410 }, level = 82, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } }, - ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrder = { 500, 1446 }, level = 68, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 16 Faster Casting" }, [2891184298] = { "(7-9)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrder = { 500, 1446 }, level = 75, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, [2891184298] = { "(10-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 500, 1446 }, level = 84, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } }, - ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 68, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-9)% increased Attack and Cast Speed" }, } }, - ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 75, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-12)% increased Attack and Cast Speed" }, } }, - ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 85, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, } }, - ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrder = { 514 }, level = 68, group = "DisplaySupportedByManaLeech", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2608615082] = { "Socketed Gems are Supported by Level 15 Mana Leech" }, } }, - ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 68, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, [3759663284] = { "(15-20)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 75, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, [3759663284] = { "(21-25)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 82, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } }, - ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 68, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 16 Slower Projectiles" }, [1839076647] = { "(15-18)% increased Projectile Damage" }, } }, - ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 75, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 18 Slower Projectiles" }, [1839076647] = { "(19-22)% increased Projectile Damage" }, } }, - ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 83, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 20 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } }, - ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } }, - ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(21-25)% chance to Ignore Stuns while Casting" }, } }, - ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(26-30)% chance to Ignore Stuns while Casting" }, } }, - ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, - ["IncreasedMeleeWeaponRangeAndMeleeDamageUber1"] = { type = "Suffix", affix = "of the Elder", "(13-16)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 80, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [1002362373] = { "(13-16)% increased Melee Damage" }, } }, - ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9529 }, level = 68, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 18 Trap" }, } }, - ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9529 }, level = 75, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, } }, - ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9529 }, level = 84, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 22 Trap" }, } }, - ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrder = { 454, 1194 }, level = 68, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 18 Trap" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } }, - ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrder = { 454, 1194 }, level = 75, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } }, - ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrder = { 454, 1194 }, level = 80, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 22 Trap" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, - ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrder = { 390, 1194 }, level = 68, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 16 Advanced Traps" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } }, - ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrder = { 390, 1194 }, level = 75, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 18 Advanced Traps" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } }, - ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 390, 1194 }, level = 80, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, - ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 68, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(8-12)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 16 Advanced Traps" }, } }, - ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 75, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(13-16)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 18 Advanced Traps" }, } }, - ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 80, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(17-20)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, } }, - ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrder = { 457, 1194 }, level = 68, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } }, - ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrder = { 457, 1194 }, level = 75, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 18 Trap And Mine Damage" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } }, - ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 457, 1194 }, level = 80, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, - ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(20-25)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 68, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 16 Chance to Poison" }, [1290399200] = { "(20-25)% increased Damage with Poison" }, } }, - ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(26-30)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 75, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, [1290399200] = { "(26-30)% increased Damage with Poison" }, } }, - ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 80, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, - ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(8-12)% increased Poison Duration", statOrder = { 523, 3170 }, level = 68, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 16 Chance to Poison" }, } }, - ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(13-16)% increased Poison Duration", statOrder = { 523, 3170 }, level = 75, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(13-16)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, } }, - ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 523, 3170 }, level = 80, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(17-20)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } }, - ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 68, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 16 Chance To Bleed" }, [1294118672] = { "(20-25)% increased Damage with Bleeding" }, } }, - ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 75, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 18 Chance To Bleed" }, [1294118672] = { "(26-30)% increased Damage with Bleeding" }, } }, - ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 80, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, [1294118672] = { "(31-35)% increased Damage with Bleeding" }, } }, - ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } }, - ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } }, - ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 68, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 16 Additional Accuracy" }, [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 75, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 18 Additional Accuracy" }, [624954515] = { "(11-15)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 83, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 20 Additional Accuracy" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, - ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(2-3)% Chance to Block Attack Damage" }, } }, - ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, - ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 68, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 16 Blind" }, [2221570601] = { "(5-6)% Global chance to Blind Enemies on hit" }, } }, - ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 75, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 18 Blind" }, [2221570601] = { "(7-8)% Global chance to Blind Enemies on hit" }, } }, - ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 80, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } }, - ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrder = { 567 }, level = 68, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +30% to Critical Strike Multiplier" }, } }, - ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrder = { 567 }, level = 75, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +50% to Critical Strike Multiplier" }, } }, - ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrder = { 567 }, level = 83, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +70% to Critical Strike Multiplier" }, } }, - ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrder = { 548 }, level = 68, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +30% to Critical Strike Multiplier" }, } }, - ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrder = { 548 }, level = 75, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +50% to Critical Strike Multiplier" }, } }, - ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrder = { 548 }, level = 84, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +70% to Critical Strike Multiplier" }, } }, - ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrder = { 453, 2035 }, level = 68, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(15-18)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 16 Concentrated Effect" }, } }, - ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrder = { 453, 2035 }, level = 75, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(19-22)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 18 Concentrated Effect" }, } }, - ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 453, 2035 }, level = 82, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-25)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } }, - ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrder = { 224, 1880 }, level = 68, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 16 Increased Area of Effect" }, [280731498] = { "(7-9)% increased Area of Effect" }, } }, - ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrder = { 224, 1880 }, level = 75, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 18 Increased Area of Effect" }, [280731498] = { "(10-12)% increased Area of Effect" }, } }, - ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 224, 1880 }, level = 83, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, [280731498] = { "(13-15)% increased Area of Effect" }, } }, - ["MaximumManaUber1"] = { type = "Prefix", affix = "The Elder's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } }, - ["MaximumManaUber2_"] = { type = "Prefix", affix = "The Elder's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } }, - ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrder = { 506, 1973 }, level = 68, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 16 Minion Damage" }, [1589917703] = { "Minions deal (15-18)% increased Damage" }, } }, - ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrder = { 506, 1973 }, level = 75, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 18 Minion Damage" }, [1589917703] = { "Minions deal (19-22)% increased Damage" }, } }, - ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 506, 1973 }, level = 83, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 20 Minion Damage" }, [1589917703] = { "Minions deal (23-25)% increased Damage" }, } }, - ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrder = { 504, 1766 }, level = 68, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 16 Minion Life" }, [770672621] = { "Minions have (15-18)% increased maximum Life" }, } }, - ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrder = { 504, 1766 }, level = 75, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 18 Minion Life" }, [770672621] = { "Minions have (19-22)% increased maximum Life" }, } }, - ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 504, 1766 }, level = 80, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 20 Minion Life" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, - ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 68, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 18 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } }, - ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 75, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } }, - ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 85, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 22 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } }, - ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrder = { 497, 1196 }, level = 68, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(20-25)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 18 Blastchain Mine" }, } }, - ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrder = { 497, 1196 }, level = 75, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(26-30)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, } }, - ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 497, 1196 }, level = 80, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 22 Blastchain Mine" }, } }, - ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrder = { 457, 1196 }, level = 68, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(20-25)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } }, - ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrder = { 457, 1196 }, level = 75, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(26-30)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 18 Trap And Mine Damage" }, } }, - ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 457, 1196 }, level = 80, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, } }, - ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 68, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(8-12)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 16 Hypothermia" }, } }, - ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 75, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(13-16)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 18 Hypothermia" }, } }, - ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 80, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(17-20)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 20 Hypothermia" }, } }, - ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 521, 7434 }, level = 68, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 16 Innervate" }, } }, - ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Lightning Ailments", statOrder = { 521, 7434 }, level = 75, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(13-16)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 18 Innervate" }, } }, - ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 521, 7434 }, level = 80, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(17-20)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 20 Innervate" }, } }, - ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 68, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(8-12)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 16 Immolate" }, } }, - ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 75, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(13-16)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 18 Immolate" }, } }, - ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 80, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(17-20)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 20 Immolate" }, } }, - ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrder = { 312, 1877 }, level = 68, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(20-25)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 16 Burning Damage" }, } }, - ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrder = { 312, 1877 }, level = 75, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(26-30)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 18 Burning Damage" }, } }, - ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 312, 1877 }, level = 82, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 20 Burning Damage" }, } }, - ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(4-6)% chance to gain a Power Charge on Kill" }, } }, - ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } }, - ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 365 }, level = 68, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2487643588] = { "Socketed Gems are Supported by Level 20 Less Duration" }, } }, - ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-34) to (51-59) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1405 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-28) to (41-48) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1406 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (88-93) Lightning Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (17-22) to (33-39) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (21-28) to (42-49) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-34) to (51-59) Physical Damage to Spells" }, } }, - ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (27-32) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (17-23) to (34-40) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (21-28) to (41-48) Chaos Damage to Spells" }, } }, - ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(41-55)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } }, - ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, - ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrder = { 1582 }, level = 80, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, } }, - ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, - ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, } }, - ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrder = { 566 }, level = 68, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +1% to Critical Strike Chance" }, } }, - ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrder = { 566 }, level = 75, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +2% to Critical Strike Chance" }, } }, - ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrder = { 566 }, level = 84, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +3% to Critical Strike Chance" }, } }, - ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrder = { 547 }, level = 68, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +1% to Critical Strike Chance" }, } }, - ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrder = { 547 }, level = 75, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +2% to Critical Strike Chance" }, } }, - ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrder = { 547 }, level = 83, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +3% to Critical Strike Chance" }, } }, - ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7919 }, level = 85, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } }, - ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Nearby Enemies take 6% increased Elemental Damage", statOrder = { 7914 }, level = 85, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [639595152] = { "Nearby Enemies take 6% increased Elemental Damage" }, [2734809852] = { "6% increased Elemental Damage taken" }, } }, - ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "The Elder's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "The Elder's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 84, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(13-15)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(13-15)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 82, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(13-15)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } }, - ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } }, - ["ElementalDamageCannotBeReflectedPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, - ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, - ["PhysicalDamageCannotBeReflectedPercentUber1"] = { type = "Prefix", affix = "The Elder's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["MaximumLifeUber1"] = { type = "Prefix", affix = "The Elder's", "(5-8)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(5-8)% increased maximum Life" }, } }, - ["MaximumLifeUber2"] = { type = "Prefix", affix = "The Elder's", "(9-12)% increased maximum Life", statOrder = { 1571 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(9-12)% increased maximum Life" }, } }, - ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } }, - ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 75, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } }, - ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (3-4)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrder = { 1749 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (5-6)% of Life on Kill" }, } }, - ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (3-4)% of Mana on Kill" }, } }, - ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrder = { 1751 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-4)% of Energy Shield on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1750 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, } }, - ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-8)% increased Strength" }, } }, - ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrder = { 1184 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, } }, - ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } }, - ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrder = { 1185 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } }, - ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } }, - ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrder = { 1186 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, } }, - ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.5)% of Life per second" }, } }, - ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, - ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10505 }, level = 68, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(8-12)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 10 Item Rarity" }, } }, - ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10505 }, level = 85, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(13-18)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 15 Item Rarity" }, } }, - ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4792 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } }, - ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4792 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.1-1.5)% to Critical Strike Chance" }, } }, - ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } }, - ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.1-1.5)% to Spell Critical Strike Chance" }, } }, - ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrder = { 648 }, level = 68, group = "WrathSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2265307453] = { "Grants Level 22 Wrath Skill" }, } }, - ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrder = { 650 }, level = 68, group = "AngerSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [484879947] = { "Grants Level 22 Anger Skill" }, } }, - ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrder = { 649 }, level = 68, group = "HatredSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2429546158] = { "Grants Level 22 Hatred Skill" }, } }, - ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrder = { 655 }, level = 85, group = "GrantsEnvy", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, - ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrder = { 651 }, level = 68, group = "DeterminationSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [4265392510] = { "Grants Level 22 Determination Skill" }, } }, - ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrder = { 652 }, level = 68, group = "GraceSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2867050084] = { "Grants Level 22 Grace Skill" }, } }, - ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrder = { 654 }, level = 68, group = "DisciplineSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2341269061] = { "Grants Level 22 Discipline Skill" }, } }, - ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrder = { 639 }, level = 68, group = "HasteSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1188846263] = { "Grants Level 22 Haste Skill" }, } }, - ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrder = { 643 }, level = 68, group = "VitalitySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2410613176] = { "Grants Level 22 Vitality Skill" }, } }, - ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrder = { 641 }, level = 68, group = "ClaritySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3511815065] = { "Grants Level 22 Clarity Skill" }, } }, - ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, - ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2552 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } }, - ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechSuffixUber1_"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } }, - ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(4-6)% increased Movement Speed" }, } }, - ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrder = { 1798 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-8)% increased Movement Speed" }, } }, - ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(7-10)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(7-10)% Chance to Block Spell Damage" }, } }, - ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(10-12)% Chance to Block Spell Damage" }, } }, - ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, - ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } }, - ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } }, - ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } }, - ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } }, - ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } }, - ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 82, group = "ReducedReservation", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "The Elder's", "(7-9)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(7-9)% increased Area of Effect" }, } }, - ["AreaOfEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(10-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(10-12)% increased Area of Effect" }, } }, - ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "The Elder's", "(13-15)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, } }, - ["AdditionalPierceUber1"] = { type = "Prefix", affix = "The Elder's", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 68, group = "AdditionalPierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrder = { 1592 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, tradeHashes = { [884586851] = { "(4-7)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, tradeHashes = { [884586851] = { "(8-10)% increased Quantity of Items found" }, } }, - ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (8-11)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (12-15)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (8-11)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (12-15)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (8-11)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (12-15)% of Physical Damage as Extra Lightning Damage" }, } }, - ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [681332047] = { "(7-13)% increased Attack Speed" }, } }, - ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9489 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [2063695047] = { "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, - ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, - ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } }, - ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1732 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2916634441] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, - ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, - ["MaximumLifeLeechRateUpdatedSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, - ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-7)% Elemental Resistances" }, } }, - ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2980 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (8-10)% Elemental Resistances" }, } }, - ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 15 Strength", statOrder = { 6058 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } }, - ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrder = { 6057 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } }, - ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(25-29)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-29)% reduced Effect of Curses on you" }, } }, - ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(35-40)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(35-40)% reduced Effect of Curses on you" }, } }, - ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } }, - ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrder = { 1234 }, level = 75, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(26-30)% increased Melee Damage" }, } }, - ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrder = { 1234 }, level = 83, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(31-35)% increased Melee Damage" }, } }, - ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(20-25)% increased Projectile Attack Damage" }, } }, - ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(26-30)% increased Projectile Attack Damage" }, } }, - ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(31-35)% increased Projectile Attack Damage" }, } }, - ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-30)% increased Spell Damage" }, } }, - ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } }, - ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (31-45)% reduced Reflected Elemental Damage" }, } }, - ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (46-55)% reduced Reflected Elemental Damage" }, } }, - ["ElementalDamageCannotBeReflectedPercentRingUber1"] = { type = "Prefix", affix = "The Shaper's", "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["ElementalDamageCannotBeReflectedPercentRingUber2"] = { type = "Prefix", affix = "The Shaper's", "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (31-45)% reduced Reflected Physical Damage" }, } }, - ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (46-55)% reduced Reflected Physical Damage" }, } }, - ["PhysicalDamageCannotBeReflectedPercentRingUber1"] = { type = "Prefix", affix = "The Elder's", "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["PhysicalDamageCannotBeReflectedPercentRingUber2"] = { type = "Prefix", affix = "The Elder's", "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(10-15)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(16-20)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(21-25)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(8-12)% to Global Critical Strike Multiplier" }, } }, - ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-16)% to Global Critical Strike Multiplier" }, } }, - ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-20)% to Global Critical Strike Multiplier" }, } }, - ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks" }, } }, - ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks" }, } }, - ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrder = { 1603 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3666934677] = { "(2-3)% increased Experience gain" }, } }, - ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (10-15) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (16-20) Life per Enemy Hit with Attacks" }, } }, - ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } }, - ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "The Elder's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } }, - ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (8-12) Life per Enemy Hit with Spells" }, } }, - ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (13-15) Life per Enemy Hit with Spells" }, } }, - ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Spells", statOrder = { 8180 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "caster" }, tradeHashes = { [2474196346] = { "Gain (2-3) Mana per Enemy Hit with Spells" }, } }, - ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(11-15)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, - ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 75, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 80, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 759 }, level = 75, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2659463225] = { "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 759 }, level = 80, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2659463225] = { "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 761 }, level = 75, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2021420128] = { "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 761 }, level = 80, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2021420128] = { "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitAssassinsMarkNewUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 75, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitAssassinsMarkNewUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 80, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitPoachersMarkNewUber1__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 75, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3904501306] = { "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitPoachersMarkNewUber2__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 80, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3904501306] = { "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitWarlordsMarkNewUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 806 }, level = 75, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2049471530] = { "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitWarlordsMarkNewUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 806 }, level = 80, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2049471530] = { "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrder = { 705 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3880462354] = { "Grants Level 22 Herald of Ash Skill" }, } }, - ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrder = { 706 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3846248551] = { "Grants Level 22 Herald of Ice Skill" }, } }, - ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrder = { 709 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1665492921] = { "Grants Level 22 Herald of Thunder Skill" }, } }, - ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(2-3)% chance to Evade Attack Hits" }, } }, - ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(4-5)% chance to Evade Attack Hits" }, } }, - ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6885 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } }, - ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6885 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } }, - ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, - ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, - ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6887 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, - ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6887 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, - ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(45-36) Physical Damage taken from Attack Hits" }, } }, - ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } }, - ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(4-7)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(4-7)% increased maximum Life" }, } }, - ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-7)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } }, - ["FlaskEffectUber1"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-7)% increased Effect" }, } }, - ["FlaskEffectUber2"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2742 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-10)% increased Effect" }, } }, - ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, - ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, - ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-20)% reduced Extra Damage from Critical Strikes" }, } }, - ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } }, - ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(7-9)% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(10-12)% increased Life Recovery rate" }, } }, - ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-9)% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% increased Energy Shield Recovery rate" }, } }, - ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(7-9)% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% increased Mana Recovery rate" }, } }, - ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "The Elder's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 82, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [311641062] = { "(6-10)% chance for Flasks you use to not consume Charges" }, } }, - ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+(20-25)% to Chaos Resistance during any Flask Effect" }, } }, - ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+(26-30)% to Chaos Resistance during any Flask Effect" }, } }, - ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "speed" }, tradeHashes = { [304970526] = { "(6-10)% increased Movement Speed during any Flask Effect" }, } }, - ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "The Elder's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (8-12)% chance to Fortify" }, } }, - ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Enduring Cry Skill", statOrder = { 702 }, level = 68, group = "EnduringCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1031644844] = { "Grants Level 22 Enduring Cry Skill" }, } }, - ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Rallying Cry Skill", statOrder = { 718 }, level = 68, group = "RallyingCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2007746338] = { "Grants Level 22 Rallying Cry Skill" }, } }, - ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Intimidating Cry Skill", statOrder = { 685 }, level = 68, group = "AbyssalCrySkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1271338211] = { "Grants Level 22 Intimidating Cry Skill" }, } }, - ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrder = { 9908 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } }, - ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrder = { 9904 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } }, - ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrder = { 9918 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } }, - ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-14)% increased Attack Speed during any Flask Effect" }, } }, - ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-14)% increased Cast Speed during any Flask Effect" }, } }, - ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9191 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(20-25)% increased Melee Damage during any Flask Effect" }, } }, - ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9191 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(26-30)% increased Melee Damage during any Flask Effect" }, } }, - ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9191 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(31-35)% increased Melee Damage during any Flask Effect" }, } }, - ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9729 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(20-25)% increased Projectile Attack Damage during any Flask Effect" }, } }, - ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9729 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(26-30)% increased Projectile Attack Damage during any Flask Effect" }, } }, - ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9729 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(31-35)% increased Projectile Attack Damage during any Flask Effect" }, } }, - ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10149 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10149 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(26-30)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10149 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(31-35)% increased Spell Damage during any Flask Effect" }, } }, - ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(16-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(16-20)% increased Global Physical Damage" }, } }, - ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(21-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-25)% increased Global Physical Damage" }, } }, - ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "The Elder's", "(26-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 80, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(26-30)% increased Global Physical Damage" }, } }, - ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(11-15)% increased Elemental Damage" }, } }, - ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(16-20)% increased Elemental Damage" }, } }, - ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrder = { 1980 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(21-25)% increased Elemental Damage" }, } }, - ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "The Elder's", "(11-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [327253797] = { "(11-20)% chance to Defend with 200% of Armour" }, } }, - ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(21-30)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [327253797] = { "(21-30)% chance to Defend with 200% of Armour" }, } }, - ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Equipped Body Armour", statOrder = { 9134 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(21-25)% increased Energy Shield from Equipped Body Armour" }, } }, - ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9134 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(26-30)% increased Energy Shield from Equipped Body Armour" }, } }, - ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } }, - ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } }, - ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, - ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 8155 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } }, - ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } }, - ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "The Elder's", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, - ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } }, - ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, - ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } }, - ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6761 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } }, - ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "The Elder's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "The Elder's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "The Elder's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, - ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrder = { 239 }, level = 68, group = "SupportedByCastOnDamageTaken", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 5 Cast when Damage Taken" }, } }, - ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "The Elder's", "(3-6)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(3-6)% increased maximum Life" }, } }, - ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } }, - ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 528 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } }, - ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, - ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(9-12)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(9-12)% Chance to Block Spell Damage" }, } }, - ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(12-15)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(12-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(7-9)% Chance to Block Spell Damage" }, } }, - ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(10-12)% Chance to Block Spell Damage" }, } }, - ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "The Elder's", "+(500-650) Armour if you've Blocked Recently", statOrder = { 4499 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [4091848539] = { "+(500-650) Armour if you've Blocked Recently" }, } }, - ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "The Elder's", "+(651-800) Armour if you've Blocked Recently", statOrder = { 4499 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [4091848539] = { "+(651-800) Armour if you've Blocked Recently" }, } }, - ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4546 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1214532298] = { "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies" }, } }, - ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4546 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1214532298] = { "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies" }, } }, - ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6813 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [2199099676] = { "Gain an Endurance, Frenzy or Power charge when you Block" }, } }, - ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, - ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6059 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3400437584] = { "1% increased Damage per 1% Chance to Block Attack Damage" }, } }, - ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(25-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(41-50)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(25-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(41-50)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrder = { 3060 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } }, - ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8187 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } }, - ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2467 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } }, - ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrder = { 2254 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, - ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrder = { 526 }, level = 68, group = "SupportedByEnduranceChargeOnStunWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun" }, } }, - ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 68, group = "SupportedByOnslaughtWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 10 Momentum" }, } }, - ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrder = { 356 }, level = 68, group = "SupportedByPowerChargeOnCritWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [4015918489] = { "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike" }, } }, - ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 496 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 1 Fortify" }, } }, - ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, - ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 494 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 1 Inspiration" }, } }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 468, 1232 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 16 Melee Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 468, 1232 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 18 Melee Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 468, 1232 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 237, 1232 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 16 Brutality" }, } }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 237, 1232 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 18 Brutality" }, } }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 237, 1232 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, } }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 462, 1232 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 16 Added Fire Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 462, 1232 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 18 Added Fire Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 462, 1232 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 370, 1232 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 16 Ruthless" }, } }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 370, 1232 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 18 Ruthless" }, } }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 370, 1232 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, } }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 344, 1232 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 16 Momentum" }, } }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 344, 1232 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 344, 1232 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 526, 1232 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun" }, } }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 526, 1232 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun" }, } }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 526, 1232 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 496, 1232 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 16 Fortify" }, } }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 496, 1232 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 18 Fortify" }, } }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 496, 1232 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 356, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 356, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 356, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 319, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 16 Iron Grip" }, } }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 319, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 18 Iron Grip" }, } }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 319, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, } }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 482, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 482, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 482, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 351, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 16 Vicious Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 351, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 18 Vicious Projectiles" }, } }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 351, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, } }, - ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 471, 2035 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 16 Melee Splash" }, [4251717817] = { "(23-27)% increased Area Damage" }, } }, - ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 471, 2035 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 18 Melee Splash" }, [4251717817] = { "(28-32)% increased Area Damage" }, } }, - ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 471, 2035 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, [4251717817] = { "(33-37)% increased Area Damage" }, } }, - ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrder = { 382, 1880 }, level = 68, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(5-8)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 16 Ancestral Call" }, } }, - ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrder = { 382, 1880 }, level = 75, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(9-12)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 18 Ancestral Call" }, } }, - ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrder = { 382, 1880 }, level = 80, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 20 Ancestral Call" }, } }, - ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrder = { 481, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [2501237765] = { "Socketed Gems are supported by Level 18 Multistrike" }, } }, - ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrder = { 481, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [2501237765] = { "Socketed Gems are supported by Level 20 Multistrike" }, } }, - ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrder = { 469, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } }, - ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrder = { 469, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Momentum", "(8-10)% increased Attack Speed", statOrder = { 344, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Momentum", "(11-12)% increased Attack Speed", statOrder = { 344, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrder = { 469, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrder = { 469, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } }, - ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrder = { 313, 1464 }, level = 68, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [2259700079] = { "Socketed Gems are Supported by Level 18 Increased Critical Strikes" }, } }, - ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrder = { 313, 1464 }, level = 75, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, } }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1464, 5925 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [3914638685] = { "50% increased Critical Strike Chance if you have Killed Recently" }, } }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1464, 5925 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [3914638685] = { "50% increased Critical Strike Chance if you have Killed Recently" }, } }, - ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1464, 5960 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } }, - ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1464, 5960 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } }, - ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrder = { 485, 1488 }, level = 68, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 18 Increased Critical Damage" }, [3556824919] = { "+(22-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrder = { 485, 1488 }, level = 75, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 20 Increased Critical Damage" }, [3556824919] = { "+(26-29)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrder = { 1488, 1830 }, level = 68, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [3814876985] = { "(5-8)% chance to gain a Power Charge on Critical Strike" }, [3556824919] = { "+(22-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrder = { 1488, 1830 }, level = 75, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [3814876985] = { "(9-10)% chance to gain a Power Charge on Critical Strike" }, [3556824919] = { "+(26-29)% to Global Critical Strike Multiplier" }, } }, - ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrder = { 487, 6322 }, level = 68, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, tradeHashes = { [387439868] = { "(28-32)% increased Elemental Damage with Attack Skills" }, [2532625478] = { "Socketed Gems are supported by Level 18 Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrder = { 487, 6322 }, level = 75, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, tradeHashes = { [387439868] = { "(33-37)% increased Elemental Damage with Attack Skills" }, [2532625478] = { "Socketed Gems are supported by Level 20 Elemental Damage with Attacks" }, } }, - ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrder = { 331, 7989 }, level = 68, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 18 Maim" }, [2763429652] = { "15% chance to Maim on Hit" }, } }, - ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrder = { 331, 7989 }, level = 75, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 20 Maim" }, [2763429652] = { "20% chance to Maim on Hit" }, } }, - ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "15% chance to Poison on Hit", statOrder = { 523, 8003 }, level = 68, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit" }, [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, } }, - ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "20% chance to Poison on Hit", statOrder = { 523, 8003 }, level = 75, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } }, - ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrder = { 244, 2483 }, level = 68, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, [4197676934] = { "Socketed Gems are Supported by Level 18 Chance To Bleed" }, } }, - ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrder = { 244, 2483 }, level = 75, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, } }, - ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (7-12)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (13-17)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (18-20)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (7-12)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (13-17)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (18-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (7-12)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (13-17)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (18-20)% of Physical Damage as Extra Lightning Damage" }, } }, - ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(5-6)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(7-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(9-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(5-6)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(7-8)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(9-10)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(7-8)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(9-10)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(7-8)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(9-10)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(2-4)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(5-7)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(8-9)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(23-27)% increased Physical Attack Damage while Dual Wielding" }, } }, - ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(28-32)% increased Physical Attack Damage while Dual Wielding" }, } }, - ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(33-37)% increased Physical Attack Damage while Dual Wielding" }, } }, - ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (5-6)% Elemental Resistances" }, } }, - ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } }, - ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } }, - ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, - ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 5% Elemental Resistances" }, } }, - ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } }, - ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } }, - ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (11-12)% Elemental Resistances" }, } }, - ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } }, - ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } }, - ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } }, - ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } }, - ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7872 }, level = 83, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, - ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 83, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, - ["LocalBleedDamageOverTimeMultiplierUber1___"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7865 }, level = 68, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, - ["LocalBleedDamageOverTimeMultiplierUber2"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7865 }, level = 75, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, - ["LocalBleedDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7865 }, level = 83, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, - ["LocalPoisonDamageOverTimeMultiplierUber1__"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 68, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } }, - ["LocalPoisonDamageOverTimeMultiplierUber2__"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 75, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } }, - ["LocalPoisonDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 83, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } }, - ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(10-15)% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(16-20)% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 85, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(21-25)% of Physical Damage Converted to Chaos Damage" }, } }, - ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrder = { 472 }, level = 68, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 18 Cast On Critical Strike" }, } }, - ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 472 }, level = 75, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 20 Cast On Critical Strike" }, } }, - ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrder = { 240 }, level = 68, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3312593243] = { "Socketed Gems are Supported by Level 18 Cast On Melee Kill" }, } }, - ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 240 }, level = 75, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3312593243] = { "Socketed Gems are Supported by Level 20 Cast On Melee Kill" }, } }, - ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrder = { 242 }, level = 68, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1316646496] = { "Socketed Gems are Supported by Level 18 Cast While Channelling" }, } }, - ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 242 }, level = 75, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1316646496] = { "Socketed Gems are Supported by Level 20 Cast While Channelling" }, } }, - ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrder = { 2039 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, - ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(5-10)% increased Area of Effect" }, } }, - ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(11-15)% increased Area of Effect" }, } }, - ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(16-20)% increased Area of Effect" }, } }, - ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, - ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } }, - ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_elder", "2h_axe_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 68, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrder = { 525, 1223 }, level = 68, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(45-52)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 16 Controlled Destruction" }, } }, - ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrder = { 525, 1223 }, level = 75, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(53-56)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 18 Controlled Destruction" }, } }, - ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrder = { 525, 1223 }, level = 80, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(57-60)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 20 Controlled Destruction" }, } }, - ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrder = { 265, 1223 }, level = 68, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(45-52)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 16 Efficacy" }, } }, - ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrder = { 265, 1223 }, level = 75, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(53-56)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 18 Efficacy" }, } }, - ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrder = { 265, 1223 }, level = 80, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(57-60)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 20 Efficacy" }, } }, - ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrder = { 226, 1223 }, level = 68, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 16 Arcane Surge" }, } }, - ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrder = { 226, 1223 }, level = 75, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 18 Arcane Surge" }, } }, - ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrder = { 226, 1223 }, level = 80, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 20 Arcane Surge" }, } }, - ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrder = { 494, 1223 }, level = 68, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 16 Inspiration" }, } }, - ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrder = { 494, 1223 }, level = 75, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 18 Inspiration" }, } }, - ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrder = { 494, 1223 }, level = 80, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 20 Inspiration" }, } }, - ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrder = { 356, 1223 }, level = 68, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } }, - ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrder = { 356, 1223 }, level = 75, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } }, - ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrder = { 356, 1223 }, level = 80, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 68, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 16 Elemental Focus" }, [3141070085] = { "(45-52)% increased Elemental Damage" }, } }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 75, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 18 Elemental Focus" }, [3141070085] = { "(53-56)% increased Elemental Damage" }, } }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 80, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 20 Elemental Focus" }, [3141070085] = { "(57-60)% increased Elemental Damage" }, } }, - ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrder = { 277, 1357 }, level = 68, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(45-52)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 16 Fire Penetration" }, } }, - ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrder = { 277, 1357 }, level = 75, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(53-56)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 18 Fire Penetration" }, } }, - ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrder = { 277, 1357 }, level = 80, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(57-60)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 20 Fire Penetration" }, } }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrder = { 513, 1366 }, level = 68, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(45-52)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 16 Cold Penetration" }, } }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrder = { 513, 1366 }, level = 75, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(53-56)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 18 Cold Penetration" }, } }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrder = { 513, 1366 }, level = 80, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(57-60)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 20 Cold Penetration" }, } }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 68, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 16 Lightning Penetration" }, [2231156303] = { "(45-52)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 75, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 18 Lightning Penetration" }, [2231156303] = { "(53-56)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 80, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 20 Lightning Penetration" }, [2231156303] = { "(57-60)% increased Lightning Damage" }, } }, - ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrder = { 341, 1446 }, level = 68, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [913919528] = { "Socketed Gems are Supported by Level 18 Spell Echo" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrder = { 341, 1446 }, level = 75, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [913919528] = { "Socketed Gems are Supported by Level 20 Spell Echo" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrder = { 500, 1446 }, level = 68, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrder = { 500, 1446 }, level = 75, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Ignore Stuns while Casting", statOrder = { 1446, 1898 }, level = 68, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [1916706958] = { "(15-25)% chance to Ignore Stuns while Casting" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Ignore Stuns while Casting", statOrder = { 1446, 1898 }, level = 75, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [1916706958] = { "(26-35)% chance to Ignore Stuns while Casting" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1446, 5467 }, level = 68, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "20% increased Cast Speed if you've Killed Recently" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1446, 5467 }, level = 75, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "20% increased Cast Speed if you've Killed Recently" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } }, - ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 313, 1458 }, level = 68, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 18 Increased Critical Strikes" }, [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } }, - ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Spell Critical Strike Chance", statOrder = { 313, 1458 }, level = 75, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, [737908626] = { "(75-82)% increased Spell Critical Strike Chance" }, } }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1458, 1830 }, level = 68, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, tradeHashes = { [3814876985] = { "10% chance to gain a Power Charge on Critical Strike" }, [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1458, 1830 }, level = 75, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, tradeHashes = { [3814876985] = { "10% chance to gain a Power Charge on Critical Strike" }, [737908626] = { "(75-82)% increased Spell Critical Strike Chance" }, } }, - ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 466, 2801 }, level = 68, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(5-7)% chance to Freeze, Shock and Ignite" }, [2929101122] = { "Socketed Gems are Supported by Level 18 Elemental Proliferation" }, } }, - ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 466, 2801 }, level = 75, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(8-10)% chance to Freeze, Shock and Ignite" }, [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 393, 2801 }, level = 68, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(5-7)% chance to Freeze, Shock and Ignite" }, [3699494172] = { "Socketed Gems are Supported by Level 18 Unbound Ailments" }, } }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 393, 2801 }, level = 75, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(8-10)% chance to Freeze, Shock and Ignite" }, [3699494172] = { "Socketed Gems are Supported by Level 20 Unbound Ailments" }, } }, - ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Chance to Poison", "(19-23)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 68, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, [1290399200] = { "(19-23)% increased Damage with Poison" }, } }, - ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Chance to Poison", "(24-26)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 75, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1290399200] = { "(24-26)% increased Damage with Poison" }, } }, - ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Critical Strike Affliction", "(6-9)% increased Poison Duration", statOrder = { 355, 3170 }, level = 68, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(6-9)% increased Poison Duration" }, [2228279620] = { "Socketed Gems are Supported by Level 18 Critical Strike Affliction" }, } }, - ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", "(10-14)% increased Poison Duration", statOrder = { 355, 3170 }, level = 75, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(10-14)% increased Poison Duration" }, [2228279620] = { "Socketed Gems are Supported by Level 20 Critical Strike Affliction" }, } }, - ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrder = { 224, 2035 }, level = 68, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-27)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 16 Increased Area of Effect" }, } }, - ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrder = { 224, 2035 }, level = 75, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(28-32)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 18 Increased Area of Effect" }, } }, - ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrder = { 224, 2035 }, level = 80, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(33-37)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } }, - ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrder = { 379, 1880 }, level = 68, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 16 Spell Cascade" }, [280731498] = { "(5-8)% increased Area of Effect" }, } }, - ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrder = { 379, 1880 }, level = 75, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 18 Spell Cascade" }, [280731498] = { "(9-12)% increased Area of Effect" }, } }, - ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrder = { 379, 1880 }, level = 80, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 20 Spell Cascade" }, [280731498] = { "(13-15)% increased Area of Effect" }, } }, - ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 68, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 16 Multiple Projectiles" }, [1839076647] = { "(15-20)% increased Projectile Damage" }, } }, - ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 75, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 18 Multiple Projectiles" }, [1839076647] = { "(21-25)% increased Projectile Damage" }, } }, - ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 80, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 20 Multiple Projectiles" }, [1839076647] = { "(26-30)% increased Projectile Damage" }, } }, - ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 68, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 16 Volley" }, [3759663284] = { "(15-18)% increased Projectile Speed" }, } }, - ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 75, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 18 Volley" }, [3759663284] = { "(19-22)% increased Projectile Speed" }, } }, - ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 80, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 20 Volley" }, [3759663284] = { "(23-25)% increased Projectile Speed" }, } }, - ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (5-6)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (7-8)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-12)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (13-15)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } }, - ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-31) to (46-53) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (28-37) to (55-64) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrder = { 1403 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (32-44) to (66-76) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (37-49) to (75-86) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (44-58) to (88-103) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrder = { 1403 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (60-73) to (108-122) Physical Damage to Spells" }, } }, - ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (22-31) to (46-53) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (28-37) to (55-64) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (32-44) to (66-76) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (37-49) to (75-86) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (44-58) to (88-103) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (60-73) to (108-122) Chaos Damage to Spells" }, } }, - ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Strength", statOrder = { 10157 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } }, - ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } }, - ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10156 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } }, - ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Strength", statOrder = { 10154 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } }, - ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, - ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrder = { 1151, 4270 }, level = 68, group = "PowerChargeOnBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "power_charge", "influence_mod" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, - ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrder = { 1151, 5963 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod", "damage", "critical" }, tradeHashes = { [3527458221] = { "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently" }, [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(12-18)% Chance to Block Spell Damage", statOrder = { 1151, 1155 }, level = 68, group = "BlockingBlocksSpellsUber", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, [2881111359] = { "(12-18)% Chance to Block Spell Damage" }, } }, - ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrder = { 1151, 1160 }, level = 68, group = "SpellBlockAndBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(8-12)% Chance to Block Spell Damage" }, [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 1488, 5927 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, [2856328513] = { "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } }, - ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7893 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, - ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-10)% increased Damage per Power Charge" }, } }, - ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9735 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, - ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4308 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } }, - ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrder = { 3292 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [1345659139] = { "(80-100)% increased Critical Strike Chance against Poisoned Enemies" }, } }, - ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } }, - ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6697 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds" }, } }, - ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrder = { 6418 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [1773891268] = { "Enemies have 20% reduced Evasion if you have Hit them Recently" }, } }, - ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "Gain (35-50) Life per Blinded Enemy Hit with this Weapon", statOrder = { 7985 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [1649099067] = { "Gain (35-50) Life per Blinded Enemy Hit with this Weapon" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [1939202111] = { "(80-100)% increased Critical Strike Chance against Blinded Enemies" }, } }, - ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 2124, 4542 }, level = 68, group = "AdditionalBlockChancePerEnduranceChargeUber", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "endurance_charge", "influence_mod" }, tradeHashes = { [417188801] = { "(20-25)% chance to gain an Endurance Charge when you Block" }, [3039589351] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } }, - ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 2050, 5690 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, tradeHashes = { [3700381193] = { "5% increased Accuracy Rating per Frenzy Charge" }, [3769211656] = { "(20-25)% chance to gain a Frenzy Charge when you Block" }, } }, - ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 560 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [3263216405] = { "Socketed Movement Skills Cost no Mana" }, } }, - ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9533 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2156210979] = { "Gain an Endurance Charge every 4 seconds while Stationary" }, } }, - ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1232, 7885 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, [1805374733] = { "(30-49)% increased Physical Damage" }, } }, - ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5686 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1536266147] = { "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy" }, } }, - ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1464, 1819 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-20)% increased Critical Strike Chance" }, [2542650946] = { "(5-10)% chance to gain an Endurance Charge on Critical Strike" }, } }, - ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(80-100)% increased Critical Strike Chance if you have Killed Recently" }, } }, - ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2706 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage" }, } }, - ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Hits which Stun have (10-20)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (10-20)% chance to Fortify" }, } }, - ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrder = { 4731 }, level = 68, group = "AreaOfEffectPer50Strength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2611023406] = { "3% increased Area of Effect per 50 Strength" }, } }, - ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, - ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently", statOrder = { 9213 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "2h_sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently" }, } }, - ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Hits with Melee Movement Skills have (30-50)% chance to Fortify", statOrder = { 9195 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [59547568] = { "Hits with Melee Movement Skills have (30-50)% chance to Fortify" }, } }, - ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrder = { 5688 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1657549833] = { "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy" }, } }, - ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrder = { 9903 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [3936926420] = { "Removes Bleeding when you use a Warcry" }, } }, - ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2448279015] = { "5% increased Area of Effect per Endurance Charge" }, } }, - ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, [1443060084] = { "(20-30)% reduced Enemy Stun Threshold" }, } }, - ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (7-9)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (10-12)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (13-15)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, 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 = { 690 }, 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 = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 30 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 30 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } }, - ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } }, - ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-35)% increased Damage" }, } }, - ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(30-50)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "10% chance to deal Double Damage" }, } }, - ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1231, 1403 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } }, - ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrder = { 1231, 1403 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-20) to (30-35) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } }, - ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 60, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 60, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.4% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 60, group = "PhysicalDamageTakenAsFireUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrder = { 2242 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(4-6)% reduced Fire Damage taken" }, } }, - ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrder = { 1357, 1362 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, [709508406] = { "Adds (18-24) to (36-42) Fire Damage" }, } }, - ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (31-42) to (64-74) Fire Damage", statOrder = { 1357, 1362 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, [709508406] = { "Adds (31-42) to (64-74) Fire Damage" }, } }, - ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-20) to (29-34) Fire Damage to Spells" }, [3962278098] = { "(20-40)% increased Fire Damage" }, } }, - ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-26) to (39-46) Fire Damage to Spells" }, [3962278098] = { "(20-40)% increased Fire Damage" }, } }, - ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 60, group = "FlammabilityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 60, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, } }, - ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 60, group = "PhysicalDamageTakenAsColdUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrder = { 3389 }, level = 60, group = "ColdDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(4-6)% reduced Cold Damage taken" }, } }, - ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrder = { 1366, 1371 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (15-20) to (30-35) Cold Damage" }, [3291658075] = { "(20-40)% increased Cold Damage" }, } }, - ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (26-35) to (52-60) Cold Damage", statOrder = { 1366, 1371 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-35) to (52-60) Cold Damage" }, [3291658075] = { "(20-40)% increased Cold Damage" }, } }, - ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (24-28) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, [2469416729] = { "Adds (18-24) to (36-42) Cold Damage to Spells" }, } }, - ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 60, group = "FrostbiteOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, - ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 60, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } }, - ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 60, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrder = { 3388 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(4-6)% reduced Lightning Damage taken" }, } }, - ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrder = { 1377, 1382 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2231156303] = { "(20-40)% increased Lightning Damage" }, [3336890334] = { "Adds (2-5) to (63-66) Lightning Damage" }, } }, - ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-9) to (110-116) Lightning Damage", statOrder = { 1377, 1382 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2231156303] = { "(20-40)% increased Lightning Damage" }, [3336890334] = { "Adds (2-9) to (110-116) Lightning Damage" }, } }, - ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (50-53) Lightning Damage to Spells" }, [2231156303] = { "(20-40)% increased Lightning Damage" }, } }, - ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (76-80) Lightning Damage to Spells" }, [2231156303] = { "(20-40)% increased Lightning Damage" }, } }, - ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 60, group = "ConductivityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, - ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 60, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, } }, - ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 60, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, - ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrder = { 2243 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(4-6)% reduced Chaos Damage taken" }, } }, - ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrder = { 1385, 1390 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2223678961] = { "Adds (18-28) to (39-49) Chaos Damage" }, } }, - ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (32-50) to (68-86) Chaos Damage", statOrder = { 1385, 1390 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2223678961] = { "Adds (32-50) to (68-86) Chaos Damage" }, } }, - ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrder = { 1385, 1407 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2300399854] = { "Adds (11-15) to (23-26) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrder = { 1385, 1407 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2300399854] = { "Adds (15-20) to (30-35) Chaos Damage to Spells" }, } }, - ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 60, group = "CurseOnHitDespairMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 60, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.4% of Chaos Damage Leeched as Life" }, } }, - ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, - ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 60, group = "IncreaseSocketedCurseGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, - ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(25-40)% increased Area of Effect of Hex Skills" }, } }, - ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrder = { 6000 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (25-40)% increased Skill Effect Duration" }, } }, - ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3015 }, level = 60, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy" }, } }, - ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(5-8)% of Damage taken Recouped as Mana" }, } }, - ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 60, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, - ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrder = { 1580 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% increased maximum Mana" }, } }, - ["ImpaleChanceDelve__"] = { type = "Prefix", affix = "Subterranean", "(5-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 60, group = "AttackImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-10)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["FasterBleedDelve"] = { type = "Suffix", affix = "of the Underground", "Bleeding you inflict deals Damage (5-10)% faster", statOrder = { 6545 }, level = 60, group = "FasterBleedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (5-10)% faster" }, } }, - ["AddedPhysicalSpellDamageDelve___"] = { type = "Prefix", affix = "Subterranean", "Adds (11-22) to (34-46) Physical Damage to Spells", statOrder = { 1403 }, level = 60, group = "SpellAddedPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-22) to (34-46) Physical Damage to Spells" }, } }, - ["LightningAilmentEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of Lightning Ailments", statOrder = { 7434 }, level = 60, group = "LightningAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(15-25)% increased Effect of Lightning Ailments" }, } }, - ["PhysicalDamageConvertedToLightningDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } }, - ["ColdAilmentDurationDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Duration of Cold Ailments", statOrder = { 5796 }, level = 60, group = "ColdAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3571964448] = { "(15-25)% increased Duration of Cold Ailments" }, } }, - ["PhysicalDamageConvertedToColdDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } }, - ["FasterIgniteDelve_"] = { type = "Suffix", affix = "of the Underground", "Ignites you inflict deal Damage (5-10)% faster", statOrder = { 2564 }, level = 60, group = "FasterIgniteDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (5-10)% faster" }, } }, - ["PhysicalDamageConvertedToFireDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } }, - ["FasterPoisonDelve_"] = { type = "Suffix", affix = "of the Underground", "Poisons you inflict deal Damage (5-10)% faster", statOrder = { 6546 }, level = 60, group = "FasterPoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (5-10)% faster" }, } }, - ["ZeroChaosResistanceDelve"] = { type = "Suffix", affix = "of the Underground", "Chaos Resistance is Zero", statOrder = { 10727 }, level = 60, group = "ZeroChaosResistanceDelve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } }, - ["MinionCriticalStrikeMultiplierDelve"] = { type = "Suffix", affix = "of the Underground", "Minions have +(30-38)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 60, group = "MinionCriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(30-38)% to Critical Strike Multiplier" }, } }, - ["MinionLargerAggroRadiusDelve"] = { type = "Suffix", affix = "of the Underground", "Minions are Aggressive", statOrder = { 10761 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, - ["MinionAreaOfEffectDelve"] = { type = "Prefix", affix = "Subterranean", "Minions have (20-30)% increased Area of Effect", statOrder = { 3024 }, level = 60, group = "MinionAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (20-30)% increased Area of Effect" }, } }, - ["MinionLeechDelve___"] = { type = "Prefix", affix = "Subterranean", "Minions Leech 1% of Damage as Life", statOrder = { 2910 }, level = 60, group = "MinionLifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech 1% of Damage as Life" }, } }, - ["SpiritAndPhantasmRefreshOnUniqueDelve"] = { type = "Prefix", affix = "Subterranean", "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9615, 9803 }, level = 60, group = "SpiritAndPhantasmRefreshOnUnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } }, - ["AuraEffectOnEnemiesDelve_____"] = { type = "Suffix", affix = "of the Underground", "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3567 }, level = 60, group = "AuraEffectOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [1636209393] = { "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, - ["LifeReservationEfficiencyDelve"] = { type = "Prefix", affix = "Subterranean", "10% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 60, group = "LifeReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [635485889] = { "10% increased Life Reservation Efficiency of Skills" }, } }, - ["DoomGainRateDelve"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7152 }, level = 60, group = "HitAndAilmentDamageCursedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "curse" }, tradeHashes = { [539970476] = { "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies" }, } }, - ["MarkEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 60, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(15-25)% increased Effect of your Marks" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-35)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(36-45)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(46-55)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(56-65)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(66-75)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-18)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-23)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-33)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(34-38)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-35)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(36-45)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(46-55)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(56-65)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(66-75)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-18)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-23)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-33)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(34-38)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-35)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(36-45)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(46-55)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(56-65)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(66-75)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-18)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-23)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-33)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(34-38)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-35)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(36-45)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(46-55)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(56-65)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(66-75)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-18)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier1h2_"] = { type = "Prefix", affix = "Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-23)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier1h4_"] = { type = "Prefix", affix = "Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-33)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(34-38)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(7-11)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-15)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(16-19)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier1h4"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-23)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(24-26)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(16-21)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(24-29)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(31-35)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier2h4_"] = { type = "Suffix", affix = "of Melting", "+(36-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(36-40)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplier2h5____"] = { type = "Suffix", affix = "of Dissolution", "+(41-45)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(41-45)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierEssence1_"] = { type = "Suffix", affix = "of the Essence", "+10% to Damage over Time Multiplier", statOrder = { 1242 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+10% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierRingEssence1"] = { type = "Suffix", affix = "of the Essence", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-15)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 44, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(7-11)% to Damage over Time Multiplier with Attack Skills" }, } }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h2___"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 55, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(12-15)% to Damage over Time Multiplier with Attack Skills" }, } }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 68, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(16-19)% to Damage over Time Multiplier with Attack Skills" }, } }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h4_"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 76, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(20-23)% to Damage over Time Multiplier with Attack Skills" }, } }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 82, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(24-26)% to Damage over Time Multiplier with Attack Skills" }, } }, - ["ChaosDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-35)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierTwoHand2__"] = { type = "Suffix", affix = "of Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(36-45)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierTwoHand3_"] = { type = "Suffix", affix = "of Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(46-55)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierTwoHand4__"] = { type = "Suffix", affix = "of Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(56-65)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierTwoHand5___"] = { type = "Suffix", affix = "of Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(66-75)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplier1_"] = { type = "Suffix", affix = "of Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-18)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-23)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-33)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(34-38)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-35)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of the Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(36-45)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(46-55)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(56-65)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(66-75)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-18)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-23)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of the Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-33)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(34-38)% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-35)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierTwoHand2_"] = { type = "Suffix", affix = "of the Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(36-45)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(46-55)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(56-65)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierTwoHand5_"] = { type = "Suffix", affix = "of the Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(66-75)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-18)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-23)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier4__"] = { type = "Suffix", affix = "of the Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-33)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of the Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(34-38)% to Fire Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-35)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(36-45)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(46-55)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(56-65)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(66-75)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier1__"] = { type = "Suffix", affix = "of Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-18)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 220, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-23)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier3__"] = { type = "Suffix", affix = "of Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 140, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 70, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-33)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 35, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(34-38)% to Physical Damage over Time Multiplier" }, } }, - ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrder = { 1569, 1571 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "2% increased maximum Life" }, [3299347043] = { "+(70-79) to maximum Life" }, } }, - ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1569, 1571 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, [3299347043] = { "+(110-119) to maximum Life" }, } }, - ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1579, 1580 }, level = 50, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [2748665614] = { "(7-10)% increased maximum Mana" }, } }, - ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1579, 1744 }, level = 50, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } }, - ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1579, 1582 }, level = 50, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [4291461939] = { "Regenerate (5-7) Mana per second" }, } }, - ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1579, 2232 }, level = 50, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1579, 1891 }, level = 50, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [3736589033] = { "-(8-6) to Total Mana Cost of Skills" }, } }, - ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrder = { 1579, 10063 }, level = 50, group = "IncreasedManaAndCostNew", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [677564538] = { "Non-Channelling Skills have -(8-6) to Total Mana Cost" }, } }, - ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrder = { 1558, 1561 }, level = 50, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "3% increased maximum Energy Shield" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1558, 2646 }, level = 50, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, - ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1360, 1955 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } }, - ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1369, 1957 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } }, - ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1380, 1959 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage" }, } }, - ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } }, - ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (79-106) to (159-186) Fire Damage" }, } }, - ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-50) to (74-87) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (65-87) to (130-152) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 50, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (65-87) to (130-152) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 50, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (4-13) to (158-166) Lightning Damage" }, } }, - ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-22) to (275-290) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 50, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (7-22) to (275-290) Lightning Damage" }, } }, - ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3243 }, level = 50, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "5% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1798, 4216 }, level = 50, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1618589784] = { "(10-15)% chance to Avoid Bleeding" }, [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1798, 1849 }, level = 50, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [4053951709] = { "(10-15)% chance to Avoid being Poisoned" }, [2250533757] = { "30% increased Movement Speed" }, } }, - ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1194 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-95)% increased Trap Damage" }, } }, - ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1194 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(133-138)% increased Trap Damage" }, } }, - ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrder = { 1196 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(90-95)% increased Mine Damage" }, } }, - ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrder = { 1196 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(133-138)% increased Mine Damage" }, } }, - ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-22)% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(30-33)% increased Trap Throwing Speed" }, } }, - ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(20-22)% increased Mine Throwing Speed" }, } }, - ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(30-33)% increased Mine Throwing Speed" }, } }, - ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(17-20)% increased Trap Duration" }, [3417757416] = { "(14-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(26-30)% increased Trap Duration" }, [3417757416] = { "(21-22)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrder = { 1924, 9221 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (14-15)% increased Detonation Speed" }, [117667746] = { "(17-20)% increased Mine Duration" }, } }, - ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrder = { 1924, 9221 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (21-22)% increased Detonation Speed" }, [117667746] = { "(26-30)% increased Mine Duration" }, } }, - ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3479 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (22-25)% increased Area of Effect" }, } }, - ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrder = { 3479 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (33-37)% increased Area of Effect" }, } }, - ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrder = { 9218 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2228913626] = { "Skills used by Mines have (22-25)% increased Area of Effect" }, } }, - ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrder = { 9218 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2228913626] = { "Skills used by Mines have (33-37)% increased Area of Effect" }, } }, - ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 187 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+2 to Level of Socketed Trap or Mine Gems" }, } }, - ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (90-95)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (133-138)% increased Damage" }, } }, - ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1973, 9280 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [755922799] = { "Minions have 5% chance to deal Double Damage" }, [1589917703] = { "Minions deal (50-66)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1973, 9280 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [755922799] = { "Minions have 5% chance to deal Double Damage" }, [1589917703] = { "Minions deal (85-94)% increased Damage" }, } }, - ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (25-28)% increased Attack Speed" }, [4000101551] = { "Minions have (25-28)% increased Cast Speed" }, } }, - ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (36-40)% increased Attack Speed" }, [4000101551] = { "Minions have (36-40)% increased Cast Speed" }, } }, - ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5032 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-20)% increased Minion Duration" }, } }, - ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrder = { 5032 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(27-30)% increased Minion Duration" }, } }, - ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 50, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 50, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(75-79)% increased Fire Damage" }, [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 50, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(111-115)% increased Fire Damage" }, [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } }, - ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 50, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(75-79)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (25-29) Cold Damage to Spells" }, } }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 50, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(111-115)% increased Cold Damage" }, [2469416729] = { "Adds (19-25) to (37-44) Cold Damage to Spells" }, } }, - ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 50, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (53-56) Lightning Damage to Spells" }, [2231156303] = { "(75-79)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 50, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (79-84) Lightning Damage to Spells" }, [2231156303] = { "(111-115)% increased Lightning Damage" }, } }, - ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [2891184298] = { "(29-32)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (24-32) to (49-57) Chaos Damage to Spells" }, [2891184298] = { "(44-49)% increased Cast Speed" }, } }, - ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } }, - ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } }, - ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (32-40) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1574, 1944 }, level = 50, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (32-40) Life per second" }, [836936635] = { "Regenerate 0.4% of Life per second" }, } }, - ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1625, 2447 }, level = 50, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, tradeHashes = { [3342989455] = { "(3-5)% of Physical Damage from Hits taken as Fire Damage" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, - ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1631, 2448 }, level = 50, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [1871056256] = { "(3-5)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1636, 2449 }, level = 50, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, tradeHashes = { [425242359] = { "(3-5)% of Physical Damage from Hits taken as Lightning Damage" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, - ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1625, 1670 }, level = 50, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, - ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1631, 1675 }, level = 50, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } }, - ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1636, 1679 }, level = 50, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, - ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1625, 10322 }, level = 50, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [165402179] = { "(45-52) to (75-78) added Fire Damage against Burning Enemies" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, - ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1631, 6070 }, level = 50, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [2805714016] = { "(30-50)% increased Damage with Hits against Chilled Enemies" }, } }, - ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1636, 5913 }, level = 50, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, tradeHashes = { [276103140] = { "(40-60)% increased Critical Strike Chance against Shocked Enemies" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, - ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrder = { 1641, 1948 }, level = 50, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3762784591] = { "(5-7)% reduced Chaos Damage taken over time" }, [2923486259] = { "+(31-35)% to Chaos Resistance" }, } }, - ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1385, 3170 }, level = 50, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1385, 8003 }, level = 50, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1390, 3181 }, level = 50, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, - ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1407, 3181 }, level = 50, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, - ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (5-7)% of Fire Damage as Extra Chaos Damage" }, } }, - ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (8-10)% of Fire Damage as Extra Chaos Damage" }, } }, - ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (11-13)% of Fire Damage as Extra Chaos Damage" }, } }, - ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (5-7)% of Cold Damage as Extra Chaos Damage" }, } }, - ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (8-10)% of Cold Damage as Extra Chaos Damage" }, } }, - ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (11-13)% of Cold Damage as Extra Chaos Damage" }, } }, - ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (5-7)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (8-10)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (11-13)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (5-7)% of Physical Damage as Extra Chaos Damage" }, } }, - ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (8-10)% of Physical Damage as Extra Chaos Damage" }, } }, - ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (11-13)% of Physical Damage as Extra Chaos Damage" }, } }, - ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (10-14)% of Fire Damage as Extra Chaos Damage" }, } }, - ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (15-20)% of Fire Damage as Extra Chaos Damage" }, } }, - ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (21-26)% of Fire Damage as Extra Chaos Damage" }, } }, - ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (10-14)% of Cold Damage as Extra Chaos Damage" }, } }, - ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (15-20)% of Cold Damage as Extra Chaos Damage" }, } }, - ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (21-26)% of Cold Damage as Extra Chaos Damage" }, } }, - ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (10-14)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (15-20)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (21-26)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (10-14)% of Physical Damage as Extra Chaos Damage" }, } }, - ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (15-20)% of Physical Damage as Extra Chaos Damage" }, } }, - ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (21-26)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrder = { 1973 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-19)% increased Damage" }, } }, - ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrder = { 1973 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-29)% increased Damage" }, } }, - ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrder = { 1973 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-39)% increased Damage" }, } }, - ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-54)% increased Damage", statOrder = { 1973 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-54)% increased Damage" }, } }, - ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (55-69)% increased Damage", statOrder = { 1973 }, level = 46, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (55-69)% increased Damage" }, } }, - ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (70-84)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (70-84)% increased Damage" }, } }, - ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (85-99)% increased Damage", statOrder = { 1973 }, level = 64, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (85-99)% increased Damage" }, } }, - ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (100-109)% increased Damage", statOrder = { 1973 }, level = 84, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (100-109)% increased Damage" }, } }, - ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-66)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-66)% increased Damage" }, } }, - ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (67-82)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (67-82)% increased Damage" }, } }, - ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (83-94)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (83-94)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrder = { 1973 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-29)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-84)% increased Damage", statOrder = { 1973 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-84)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (85-106)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (85-106)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (107-122)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (107-122)% increased Damage" }, } }, - ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (123-144)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (123-144)% increased Damage" }, } }, - ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrder = { 1579, 1973 }, level = 2, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1589917703] = { "Minions deal (5-9)% increased Damage" }, } }, - ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrder = { 1579, 1973 }, level = 11, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [1589917703] = { "Minions deal (10-14)% increased Damage" }, } }, - ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrder = { 1579, 1973 }, level = 23, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [1589917703] = { "Minions deal (15-19)% increased Damage" }, } }, - ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrder = { 1579, 1973 }, level = 35, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1600, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [1589917703] = { "Minions deal (20-24)% increased Damage" }, } }, - ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrder = { 1579, 1973 }, level = 46, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [1589917703] = { "Minions deal (25-29)% increased Damage" }, } }, - ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrder = { 1579, 1973 }, level = 58, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [1589917703] = { "Minions deal (30-34)% increased Damage" }, } }, - ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrder = { 1579, 1973 }, level = 80, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [1589917703] = { "Minions deal (35-39)% increased Damage" }, } }, - ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-7)% increased Attack and Cast Speed" }, } }, - ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (8-10)% increased Attack and Cast Speed" }, } }, - ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (11-13)% increased Attack and Cast Speed" }, } }, - ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (14-16)% increased Attack and Cast Speed" }, } }, - ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (17-19)% increased Attack and Cast Speed" }, } }, - ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (20-22)% increased Attack and Cast Speed" }, } }, - ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (23-25)% increased Attack and Cast Speed" }, } }, - ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 60, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrder = { 1766 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-17)% increased maximum Life" }, } }, - ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrder = { 1766 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (18-22)% increased maximum Life" }, } }, - ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrder = { 1766 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-27)% increased maximum Life" }, } }, - ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrder = { 1766 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-32)% increased maximum Life" }, } }, - ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (33-36)% increased maximum Life" }, } }, - ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (37-40)% increased maximum Life" }, } }, - ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (6-10)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (6-10)% increased Movement Speed" }, } }, - ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Collaboration", "Minions have (11-15)% increased Movement Speed", statOrder = { 1769 }, level = 15, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-15)% increased Movement Speed" }, } }, - ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Integration", "Minions have (16-20)% increased Movement Speed", statOrder = { 1769 }, level = 30, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-20)% increased Movement Speed" }, } }, - ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrder = { 1769 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-25)% increased Movement Speed" }, } }, - ["MinionMovementSpeed5"] = { type = "Suffix", affix = "of Harmony", "Minions have (26-30)% increased Movement Speed", statOrder = { 1769 }, level = 55, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (26-30)% increased Movement Speed" }, } }, - ["MinionDamagePercent1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (5-10)% increased Damage", statOrder = { 1973 }, level = 4, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-10)% increased Damage" }, } }, - ["MinionDamagePercent2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (11-20)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-20)% increased Damage" }, } }, - ["MinionDamagePercent3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (21-30)% increased Damage", statOrder = { 1973 }, level = 30, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (21-30)% increased Damage" }, } }, - ["MinionDamagePercent4"] = { type = "Prefix", affix = "Countess's", "Minions deal (31-36)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (31-36)% increased Damage" }, } }, - ["MinionDamagePercent5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (37-42)% increased Damage", statOrder = { 1973 }, level = 81, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (37-42)% increased Damage" }, } }, - ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 8, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, - ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrder = { 2912 }, level = 24, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(16-20)% to all Elemental Resistances" }, } }, - ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-23)% to all Elemental Resistances", statOrder = { 2912 }, level = 37, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(21-23)% to all Elemental Resistances" }, } }, - ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(24-26)% to all Elemental Resistances", statOrder = { 2912 }, level = 50, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(24-26)% to all Elemental Resistances" }, } }, - ["MinionResistancesWeapon5"] = { type = "Suffix", affix = "of Metamorphosis", "Minions have +(27-30)% to all Elemental Resistances", statOrder = { 2912 }, level = 61, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(27-30)% to all Elemental Resistances" }, } }, - ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of the Instructor", "Minions have +(80-130) to Accuracy Rating", statOrder = { 9264 }, level = 1, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(80-130) to Accuracy Rating" }, } }, - ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of the Tutor", "Minions have +(131-215) to Accuracy Rating", statOrder = { 9264 }, level = 20, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(131-215) to Accuracy Rating" }, } }, - ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of the Commander", "Minions have +(216-325) to Accuracy Rating", statOrder = { 9264 }, level = 40, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(216-325) to Accuracy Rating" }, } }, - ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of the Magnate", "Minions have +(326-455) to Accuracy Rating", statOrder = { 9264 }, level = 60, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(326-455) to Accuracy Rating" }, } }, - ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of the Ruler", "Minions have +(456-545) to Accuracy Rating", statOrder = { 9264 }, level = 75, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(456-545) to Accuracy Rating" }, } }, - ["MinionAccuracyRatingWeapon6"] = { type = "Suffix", affix = "of the Monarch", "Minions have +(546-624) to Accuracy Rating", statOrder = { 9264 }, level = 85, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(546-624) to Accuracy Rating" }, } }, - ["MinionMaxElementalResistance1"] = { type = "Suffix", affix = "of Impermeability", "Minions have +(3-4)% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 68, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(3-4)% to all maximum Elemental Resistances" }, } }, - ["MinionMaxElementalResistance2"] = { type = "Suffix", affix = "of Countervailing", "Minions have +(5-6)% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 75, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(5-6)% to all maximum Elemental Resistances" }, } }, - ["MinionMaxElementalResistance3"] = { type = "Suffix", affix = "of Imperviousness", "Minions have +(7-8)% to all maximum Elemental Resistances", statOrder = { 9318 }, level = 81, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(7-8)% to all maximum Elemental Resistances" }, } }, - ["MinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Guard", "Minions have (7-9)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 68, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (7-9)% additional Physical Damage Reduction" }, } }, - ["MinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Brigade", "Minions have (10-12)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 75, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (10-12)% additional Physical Damage Reduction" }, } }, - ["MinionPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Phalanx", "Minions have (13-15)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 81, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (13-15)% additional Physical Damage Reduction" }, } }, - ["MinionCriticalStrikeChanceIncrease1"] = { type = "Suffix", affix = "of Luck", "Minions have (10-19)% increased Critical Strike Chance", statOrder = { 9289 }, level = 11, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-19)% increased Critical Strike Chance" }, } }, - ["MinionCriticalStrikeChanceIncrease2"] = { type = "Suffix", affix = "of Fortune", "Minions have (20-39)% increased Critical Strike Chance", statOrder = { 9289 }, level = 21, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (20-39)% increased Critical Strike Chance" }, } }, - ["MinionCriticalStrikeChanceIncrease3"] = { type = "Suffix", affix = "of Providence", "Minions have (40-59)% increased Critical Strike Chance", statOrder = { 9289 }, level = 28, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (40-59)% increased Critical Strike Chance" }, } }, - ["MinionCriticalStrikeChanceIncrease4"] = { type = "Suffix", affix = "of Serendipity", "Minions have (60-79)% increased Critical Strike Chance", statOrder = { 9289 }, level = 41, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (60-79)% increased Critical Strike Chance" }, } }, - ["MinionCriticalStrikeChanceIncrease5"] = { type = "Suffix", affix = "of Determinism", "Minions have (80-99)% increased Critical Strike Chance", statOrder = { 9289 }, level = 59, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (80-99)% increased Critical Strike Chance" }, } }, - ["MinionCriticalStrikeChanceIncrease6"] = { type = "Suffix", affix = "of Destiny", "Minions have (100-109)% increased Critical Strike Chance", statOrder = { 9289 }, level = 76, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (100-109)% increased Critical Strike Chance" }, } }, - ["MinionCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of the Foray", "Minions have +(10-14)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 8, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(10-14)% to Critical Strike Multiplier" }, } }, - ["MinionCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of the Horde", "Minions have +(15-19)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 21, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(15-19)% to Critical Strike Multiplier" }, } }, - ["MinionCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of the Throng", "Minions have +(20-24)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-24)% to Critical Strike Multiplier" }, } }, - ["MinionCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of the Swarm", "Minions have +(25-29)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(25-29)% to Critical Strike Multiplier" }, } }, - ["MinionCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of the Invasion", "Minions have +(30-34)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 59, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(30-34)% to Critical Strike Multiplier" }, } }, - ["MinionCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of the Legion", "Minions have +(35-38)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 73, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(35-38)% to Critical Strike Multiplier" }, } }, - ["MinionGrantsConvocation1"] = { type = "Suffix", affix = "of the Convocation", "Grants Level 1 Convocation Skill", statOrder = { 684 }, level = 45, group = "MinionGrantsConvocation", weightKey = { "focus_can_roll_minion_modifiers", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1786401772] = { "Grants Level 1 Convocation Skill" }, } }, - ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrder = { 10415 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(7-10)% increased Trap and Mine Throwing Speed" }, } }, - ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrder = { 10415 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(11-13)% increased Trap and Mine Throwing Speed" }, } }, - ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrder = { 10415 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(14-17)% increased Trap and Mine Throwing Speed" }, } }, - ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrder = { 10415 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(18-21)% increased Trap and Mine Throwing Speed" }, } }, - ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, - ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (6-8)% of Physical Damage as Extra Lightning Damage" }, } }, - ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(6-10)% increased Cooldown Recovery Rate" }, } }, - ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(11-15)% increased Cooldown Recovery Rate" }, } }, - ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(31-35)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-40)% chance to Avoid being Ignited" }, } }, - ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-60)% chance to Avoid being Ignited" }, } }, - ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(31-35)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-40)% chance to Avoid being Frozen" }, } }, - ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(51-60)% chance to Avoid being Frozen" }, } }, - ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(31-35)% chance to Avoid being Shocked" }, } }, - ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-40)% chance to Avoid being Shocked" }, } }, - ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-60)% chance to Avoid being Shocked" }, } }, - ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-9)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(6-9)% chance to avoid Projectiles" }, } }, - ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(10-12)% chance to avoid Projectiles", statOrder = { 4993 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, } }, - ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrder = { 10457 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (6-8)% of Physical Damage as Extra Fire Damage" }, } }, - ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(16-20)% chance to Avoid being Stunned" }, } }, - ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(21-25)% chance to Avoid being Stunned" }, } }, - ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(31-35)% chance to Avoid being Stunned" }, } }, - ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [42242677] = { "(5-7)% chance to Avoid Fire Damage from Hits" }, } }, - ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, - ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, tradeHashes = { [3743375737] = { "(5-7)% chance to Avoid Cold Damage from Hits" }, } }, - ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, tradeHashes = { [3743375737] = { "(8-10)% chance to Avoid Cold Damage from Hits" }, } }, - ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(5-7)% chance to Avoid Lightning Damage from Hits" }, } }, - ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(8-10)% chance to Avoid Lightning Damage from Hits" }, } }, - ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-1.2)% of Life per second" }, } }, - ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrder = { 1944 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.3-1.5)% of Life per second" }, } }, - ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(2-4)% additional Physical Damage Reduction" }, } }, - ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrder = { 10462 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(4-6)% chance to gain an Endurance Charge on Kill" }, } }, - ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 80, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (3-5)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (6-8)% of Physical Damage as Extra Cold Damage" }, } }, - ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrder = { 4281 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [2896192589] = { "(5-10)% chance to gain Elusive on Critical Strike" }, } }, - ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, - ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(30-34)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(35-40)% increased Effect of Non-Damaging Ailments" }, } }, - ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(5-7)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 10468 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, - ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 80, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-8)% increased Strength" }, } }, - ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrder = { 1184 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(9-10)% increased Strength" }, } }, - ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(21-25)% chance to Avoid Bleeding" }, [4053951709] = { "(21-25)% chance to Avoid being Poisoned" }, } }, - ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(26-30)% chance to Avoid Bleeding" }, [4053951709] = { "(26-30)% chance to Avoid being Poisoned" }, } }, - ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(41-50)% chance to Avoid being Poisoned", "(41-50)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(41-50)% chance to Avoid Bleeding" }, [4053951709] = { "(41-50)% chance to Avoid being Poisoned" }, } }, - ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10349 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1085545682] = { "You have Tailwind if you have dealt a Critical Strike Recently" }, } }, - ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (7-9)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (7-9)% faster" }, } }, - ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (10-12)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (10-12)% faster" }, } }, - ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (7-9)% faster", statOrder = { 6545 }, level = 68, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (7-9)% faster" }, } }, - ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (10-12)% faster", statOrder = { 6545 }, level = 73, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-12)% faster" }, } }, - ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (7-9)% faster", statOrder = { 6546 }, level = 68, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (7-9)% faster" }, } }, - ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (10-12)% faster", statOrder = { 6546 }, level = 73, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (10-12)% faster" }, } }, - ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceInfluence1New"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceInfluence2New"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(18-21)% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(22-25)% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(18-21)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(22-25)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(18-21)% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(22-25)% of Physical Damage Converted to Lightning Damage" }, } }, - ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 75, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "10% increased Maximum total Life Recovery per second from Leech" }, } }, - ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "15% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, - ["MaximumEnergyShieldLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "15% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, - ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(21-25)% chance to Ignore Stuns while Casting" }, } }, - ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(26-30)% chance to Ignore Stuns while Casting" }, } }, - ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-35)% chance to Ignore Stuns while Casting" }, } }, - ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(16-20)% increased Global Critical Strike Chance" }, } }, - ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 70, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(21-25)% increased Global Critical Strike Chance" }, } }, - ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(26-30)% increased Global Critical Strike Chance" }, } }, - ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(18-22)% increased Melee Damage" }, } }, - ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrder = { 1234 }, level = 70, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(23-26)% increased Melee Damage" }, } }, - ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrder = { 1234 }, level = 73, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(27-30)% increased Melee Damage" }, } }, - ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(18-22)% increased Projectile Attack Damage" }, } }, - ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(23-26)% increased Projectile Attack Damage" }, } }, - ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(27-30)% increased Projectile Attack Damage" }, } }, - ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 70, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, - ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrder = { 1223 }, level = 73, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, - ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrder = { 1210 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(18-22)% increased Damage over Time" }, } }, - ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrder = { 1210 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(23-26)% increased Damage over Time" }, } }, - ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrder = { 1210 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(27-30)% increased Damage over Time" }, } }, - ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, - ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(2-3)% Chance to Block Attack Damage" }, } }, - ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, - ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrder = { 2039 }, level = 73, group = "CullingStrike", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 250, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 80, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9248 }, level = 68, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9248 }, level = 73, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9236 }, level = 68, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9236 }, level = 73, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9231 }, level = 68, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9231 }, level = 73, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9242 }, level = 68, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9242 }, level = 73, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently" }, } }, - ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-22)% increased Damage" }, } }, - ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrder = { 1973 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } }, - ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrder = { 1973 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } }, - ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, - ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2221570601] = { "(8-11)% Global chance to Blind Enemies on hit" }, } }, - ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 80, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2221570601] = { "(12-15)% Global chance to Blind Enemies on hit" }, } }, - ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(2-4)% chance to Evade Attack Hits" }, } }, - ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, - ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(13-16)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 68, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(13-16)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(17-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 80, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(17-20)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-12)% increased Duration of Ailments on Enemies" }, } }, - ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-15)% increased Duration of Ailments on Enemies" }, } }, - ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(6-8)% increased Dexterity" }, } }, - ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrder = { 1185 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(9-10)% increased Dexterity" }, } }, - ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, - ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } }, - ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } }, - ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(4-6)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(7-10)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7917 }, level = 85, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } }, - ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, } }, - ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+(3-4) to maximum Fortification", statOrder = { 9118 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [335507772] = { "+(3-4) to maximum Fortification" }, } }, - ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(4.2-5) to maximum Fortification", statOrder = { 9118 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [335507772] = { "+(4.2-5) to maximum Fortification" }, } }, - ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2646 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } }, - ["ReducedIgniteDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 68, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(31-35)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 70, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, - ["ReducedIgniteDurationInfluence3__"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-60)% reduced Ignite Duration on you" }, } }, - ["ReducedFreezeDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(31-35)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 70, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDurationInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-60)% reduced Freeze Duration on you" }, } }, - ["ReducedShockEffectInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(31-35)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 70, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-40)% reduced Effect of Shock on you" }, } }, - ["ReducedShockEffectInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-60)% reduced Effect of Shock on you" }, } }, - ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(4-6)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(7-10)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(12-14)% increased Elemental Damage" }, } }, - ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrder = { 1980 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-18)% increased Elemental Damage" }, } }, - ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-22)% increased Elemental Damage" }, } }, - ["WarcryAreaOfEffectInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (21-25)% increased Area of Effect", statOrder = { 10575 }, level = 68, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (21-25)% increased Area of Effect" }, } }, - ["WarcryAreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10575 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (26-30)% increased Area of Effect" }, } }, - ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7915 }, level = 85, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } }, - ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(11-13)% to Global Critical Strike Multiplier" }, } }, - ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } }, - ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-20)% to Global Critical Strike Multiplier" }, } }, - ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(41-55)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } }, - ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrder = { 6713 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1575519214] = { "Gain Accuracy Rating equal to your Strength" }, } }, - ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-26)% increased maximum Life" }, } }, - ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrder = { 1766 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } }, - ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, - ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(4-6)% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } }, - ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(4-6)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(7-10)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10721 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } }, - ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7913 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, - ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 75, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(7-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1877, 2026 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(15-17)% increased Burning Damage" }, } }, - ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1877, 2026 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(18-20)% increased Burning Damage" }, } }, - ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(8-12)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } }, - ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(13-15)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } }, - ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 2033, 7434 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } }, - ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 2033, 7434 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(13-15)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } }, - ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, - ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrder = { 1582 }, level = 75, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, } }, - ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1404 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-34) to (51-59) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1405 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-28) to (41-48) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1406 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (88-93) Lightning Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (17-22) to (33-39) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1403 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (21-28) to (42-49) Physical Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-34) to (51-59) Physical Damage to Spells" }, } }, - ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (27-32) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (17-23) to (34-40) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (21-28) to (41-48) Chaos Damage to Spells" }, } }, - ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7912 }, level = 85, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } }, - ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(6-8)% increased Intelligence" }, } }, - ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrder = { 1186 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(9-10)% increased Intelligence" }, } }, - ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 6822 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Igniting Conflux for 3 seconds every 8 seconds" }, } }, - ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 6822 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Chilling Conflux for 3 seconds every 8 seconds" }, } }, - ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 6822 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, } }, - ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(13-15)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrder = { 5856 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [880970200] = { "You have Consecrated Ground around you while stationary" }, } }, - ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6373 }, level = 85, group = "EnemiesExplodeOnDeathPhysical", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage" }, } }, - ["HolyPhysicalExplosionChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, - ["HolyPhysicalExplosionChanceInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 85, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, - ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } }, - ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrder = { 1186 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, } }, - ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, } }, - ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-4)% of Energy Shield on Kill" }, } }, - ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1750 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, } }, - ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(8-11)% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 80, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(12-15)% increased Energy Shield Recovery rate" }, } }, - ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(13-15)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, - ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, - ["PhysicalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } }, - ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, - ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, - ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-8)% increased Strength" }, } }, - ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrder = { 1184 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, } }, - ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6747 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, - ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (3-4)% of Life on Kill" }, } }, - ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrder = { 1749 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (5-6)% of Life on Kill" }, } }, - ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(8-11)% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrder = { 1578 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(12-15)% increased Life Recovery rate" }, } }, - ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } }, - ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(13-15)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } }, - ["ElementalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } }, - ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1185 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } }, - ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, - ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (3-4)% of Mana on Kill" }, } }, - ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrder = { 1751 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, } }, - ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(8-11)% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrder = { 1586 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(12-15)% increased Mana Recovery rate" }, } }, - ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(15-20)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(21-25)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-8)% increased maximum Life" }, } }, - ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrder = { 1571 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(9-12)% increased maximum Life" }, } }, - ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(8-12)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(8-12)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 83, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(13-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrder = { 2168 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 4 seconds, Regenerate 15% of Life over one second", statOrder = { 3786 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 15% of Life over one second" }, } }, - ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrder = { 4063 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(16-20)% increased effect of Offerings" }, } }, - ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrder = { 4063 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-25)% increased effect of Offerings" }, } }, - ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4792 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } }, - ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4792 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.1-1.5)% to Critical Strike Chance" }, } }, - ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } }, - ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.1-1.5)% to Spell Critical Strike Chance" }, } }, - ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.5)% of Life per second" }, } }, - ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, - ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 80, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 86, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6059 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3400437584] = { "1% increased Damage per 1% Chance to Block Attack Damage" }, } }, - ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrder = { 1813 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, } }, - ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrder = { 1813 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1999711879] = { "+2 to Minimum Power Charges" }, } }, - ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2467 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } }, - ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrder = { 2646 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (1.5-2.5)% of Energy Shield per second" }, } }, - ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(25-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(41-50)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(25-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(41-50)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10134 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4263513561] = { "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" }, } }, - ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10134 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4263513561] = { "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" }, } }, - ["WarcryBuffEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 68, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3037553757] = { "(18-21)% increased Warcry Buff Effect" }, } }, - ["WarcryBuffEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 75, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3037553757] = { "(22-25)% increased Warcry Buff Effect" }, } }, - ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 80, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 86, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(7-9)% increased Area of Effect" }, } }, - ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(10-12)% increased Area of Effect" }, } }, - ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrder = { 1880 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, } }, - ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrder = { 1803 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, - ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrder = { 1803 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [3706959521] = { "+2 to Minimum Endurance Charges" }, } }, - ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrder = { 3060 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } }, - ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5230 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [3789765926] = { "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently" }, } }, - ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5230 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [3789765926] = { "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently" }, } }, - ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 80, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 86, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(16-20)% faster start of Energy Shield Recharge" }, } }, - ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(21-25)% faster start of Energy Shield Recharge" }, } }, - ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, - ["WeaponElementalDamageInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(26-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-35)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 80, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-40)% increased Elemental Damage with Attack Skills" }, } }, - ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, } }, - ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [658456881] = { "+2 to Minimum Frenzy Charges" }, } }, - ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8187 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } }, - ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(3-5)% chance to Evade Attack Hits" }, } }, - ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrder = { 3371 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [2415497478] = { "(5-7)% chance to Avoid Physical Damage from Hits" }, } }, - ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrder = { 3371 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [2415497478] = { "(8-10)% chance to Avoid Physical Damage from Hits" }, } }, - ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrder = { 2596 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-11)% increased Effect of your Curses" }, } }, - ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Effect of your Curses", statOrder = { 2596 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-12)% increased Effect of your Curses" }, } }, - ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(5-7)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(8-10)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(15-20)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(21-25)% increased Effect of Non-Damaging Ailments" }, } }, - ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, - ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 80, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, - ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 86, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, - ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-6)% increased maximum Life" }, } }, - ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } }, - ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6813 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2199099676] = { "Gain an Endurance, Frenzy or Power charge when you Block" }, } }, - ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 528 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } }, - ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, - ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "(4-6)% reduced Damage taken from Damage Over Time" }, } }, - ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "(7-10)% reduced Damage taken from Damage Over Time" }, } }, - ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.1-1.5)% of Life per second" }, } }, - ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, - ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (5-10)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (11-15)% of Physical Damage as Extra Lightning Damage" }, } }, - ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (5-10)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (11-15)% of Physical Damage as Extra Fire Damage" }, } }, - ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrder = { 8155 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } }, - ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrder = { 8155 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } }, - ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, - ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } }, - ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, - ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } }, - ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (3-5) Mana per Enemy Hit with Attacks" }, } }, - ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1261 }, level = 68, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3913282911] = { "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills" }, } }, - ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1261 }, level = 80, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3913282911] = { "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills" }, } }, - ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1250 }, level = 68, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [709768359] = { "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills" }, } }, - ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1250 }, level = 80, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [709768359] = { "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills" }, } }, - ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1253 }, level = 68, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2139660169] = { "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills" }, } }, - ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1253 }, level = 80, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2139660169] = { "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills" }, } }, - ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } }, - ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } }, - ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-9)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrder = { 1561 }, level = 78, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-12)% increased maximum Energy Shield" }, } }, - ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(13-15)% increased maximum Energy Shield" }, } }, - ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 68, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(30-34)% increased Critical Strike Chance against Shocked Enemies" }, } }, - ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 75, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(35-39)% increased Critical Strike Chance against Shocked Enemies" }, } }, - ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 80, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(40-45)% increased Critical Strike Chance against Shocked Enemies" }, } }, - ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(16-20)% increased Lightning Damage" }, } }, - ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-25)% increased Lightning Damage" }, } }, - ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrder = { 1377 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(26-30)% increased Lightning Damage" }, } }, - ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (8-12)% chance to Fortify" }, } }, - ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } }, - ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10149 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10149 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(26-30)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10149 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(31-35)% increased Spell Damage during any Flask Effect" }, } }, - ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-9)% increased Energy Shield Recovery rate" }, } }, - ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% increased Energy Shield Recovery rate" }, } }, - ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrder = { 9918 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } }, - ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrder = { 1541 }, level = 68, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(7-9)% increased Armour" }, } }, - ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrder = { 1541 }, level = 78, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-12)% increased Armour" }, } }, - ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrder = { 1541 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(13-15)% increased Armour" }, } }, - ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrder = { 10322 }, level = 68, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(22-27) to (41-46) added Fire Damage against Burning Enemies" }, } }, - ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrder = { 10322 }, level = 75, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(28-32) to (47-51) added Fire Damage against Burning Enemies" }, } }, - ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrder = { 10322 }, level = 80, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(33-39) to (52-55) added Fire Damage against Burning Enemies" }, } }, - ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(16-20)% increased Fire Damage" }, } }, - ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-25)% increased Fire Damage" }, } }, - ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrder = { 1357 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(26-30)% increased Fire Damage" }, } }, - ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-20)% reduced Extra Damage from Critical Strikes" }, } }, - ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } }, - ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrder = { 1191 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(11-15)% increased Damage" }, } }, - ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrder = { 1191 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(16-20)% increased Damage" }, } }, - ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrder = { 1191 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(21-25)% increased Damage" }, } }, - ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9191 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(20-25)% increased Melee Damage during any Flask Effect" }, } }, - ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9191 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(26-30)% increased Melee Damage during any Flask Effect" }, } }, - ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9191 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(31-35)% increased Melee Damage during any Flask Effect" }, } }, - ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(7-9)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(7-9)% increased Life Recovery rate" }, } }, - ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(10-12)% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(10-12)% increased Life Recovery rate" }, } }, - ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrder = { 9908 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } }, - ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrder = { 1549 }, level = 68, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(7-9)% increased Evasion Rating" }, } }, - ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrder = { 1549 }, level = 78, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-12)% increased Evasion Rating" }, } }, - ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(13-15)% increased Evasion Rating" }, } }, - ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 68, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(26-30)% increased Damage with Hits against Chilled Enemies" }, } }, - ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 75, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(31-35)% increased Damage with Hits against Chilled Enemies" }, } }, - ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 80, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(36-40)% increased Damage with Hits against Chilled Enemies" }, } }, - ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-7)% increased Effect" }, } }, - ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2742 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-10)% increased Effect" }, } }, - ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(16-20)% increased Cold Damage" }, } }, - ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-25)% increased Cold Damage" }, } }, - ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrder = { 1366 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(26-30)% increased Cold Damage" }, } }, - ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-14)% increased Attack Speed during any Flask Effect" }, } }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9729 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(20-25)% increased Projectile Attack Damage during any Flask Effect" }, } }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9729 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(26-30)% increased Projectile Attack Damage during any Flask Effect" }, } }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9729 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(31-35)% increased Projectile Attack Damage during any Flask Effect" }, } }, - ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-9)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(7-9)% increased Mana Recovery rate" }, } }, - ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% increased Mana Recovery rate" }, } }, - ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrder = { 9904 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } }, - ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 80, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [311641062] = { "(6-10)% chance for Flasks you use to not consume Charges" }, } }, - ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 3391 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3738001379] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(16-20)% increased Chaos Damage" }, } }, - ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-25)% increased Chaos Damage" }, } }, - ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrder = { 1385 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } }, - ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } }, - ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-14)% increased Cast Speed during any Flask Effect" }, } }, - ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "(6-10)% increased Movement Speed during any Flask Effect" }, } }, - ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(45-36) Physical Damage taken from Attack Hits" }, } }, - ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6887 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, - ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6887 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, - ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrder = { 9243 }, level = 75, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "1 to (6-8) Lightning Damage per Power Charge" }, } }, - ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrder = { 9243 }, level = 80, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (9-11) Lightning Damage per Power Charge" }, } }, - ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-17)% increased Spell Damage" }, } }, - ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-21)% increased Spell Damage" }, } }, - ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrder = { 1223 }, level = 80, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-25)% increased Spell Damage" }, } }, - ["IncreasedLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(35-40)% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateInfluence2"] = { type = "Prefix", affix = "Crusader's", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(41-45)% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateInfluence3"] = { type = "Prefix", affix = "Crusader's", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(46-50)% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(35-40)% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateSuffixInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(41-45)% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateSuffixInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(46-50)% increased total Recovery per second from Life Leech" }, } }, - ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-29)% reduced Effect of Curses on you" }, } }, - ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(35-40)% reduced Effect of Curses on you" }, } }, - ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 75, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, - ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 80, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, - ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (8-12) Life per Enemy Hit with Spells" }, } }, - ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (13-15) Life per Enemy Hit with Spells" }, } }, - ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(15-17)% increased Global Critical Strike Chance" }, } }, - ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(18-21)% increased Global Critical Strike Chance" }, } }, - ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(22-25)% increased Global Critical Strike Chance" }, } }, - ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6885 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } }, - ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6885 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } }, - ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrder = { 9238 }, level = 75, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(2-3) to (4-5) Fire Damage per Endurance Charge" }, } }, - ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrder = { 9238 }, level = 80, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(3-4) to (6-7) Fire Damage per Endurance Charge" }, } }, - ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(15-17)% increased Melee Damage" }, } }, - ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrder = { 1234 }, level = 75, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(18-21)% increased Melee Damage" }, } }, - ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrder = { 1234 }, level = 80, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(22-25)% increased Melee Damage" }, } }, - ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 75, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 80, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 75, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 80, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } }, - ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-19)% to Global Critical Strike Multiplier" }, } }, - ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-22)% to Global Critical Strike Multiplier" }, } }, - ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-6)% increased Bleeding Duration" }, [1294118672] = { "(8-12)% increased Damage with Bleeding" }, } }, - ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(7-8)% increased Bleeding Duration" }, [1294118672] = { "(13-17)% increased Damage with Bleeding" }, } }, - ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(9-10)% increased Bleeding Duration" }, [1294118672] = { "(18-22)% increased Damage with Bleeding" }, } }, - ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, - ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, - ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(2-3) to (4-5) Added Cold Damage per Frenzy Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(3-4) to (6-7) Added Cold Damage per Frenzy Charge" }, } }, - ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(15-17)% increased Projectile Attack Damage" }, } }, - ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(18-21)% increased Projectile Attack Damage" }, } }, - ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(22-25)% increased Projectile Attack Damage" }, } }, - ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-17)% increased Damage" }, } }, - ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-21)% increased Damage" }, } }, - ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrder = { 1973 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-25)% increased Damage" }, } }, - ["EnergyShieldRechargeDelayInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-20)% faster start of Energy Shield Recharge" }, } }, - ["EnergyShieldRechargeDelayInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-24)% faster start of Energy Shield Recharge" }, } }, - ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 75, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, - ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 80, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, - ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrder = { 4895 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [4137521191] = { "(8-12)% increased Attack Speed if you've been Hit Recently" }, } }, - ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrder = { 1603 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [3666934677] = { "(2-3)% increased Experience gain" }, } }, - ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (31-45)% reduced Reflected Physical Damage" }, } }, - ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (46-55)% reduced Reflected Physical Damage" }, } }, - ["PhysicalDamageCannotBeReflectedPercentRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1818622832] = { "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["PhysicalDamageCannotBeReflectedPercentRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1818622832] = { "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (31-45)% reduced Reflected Elemental Damage" }, } }, - ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (46-55)% reduced Reflected Elemental Damage" }, } }, - ["ElementalDamageCannotBeReflectedPercentRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3408683611] = { "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["ElementalDamageCannotBeReflectedPercentRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3408683611] = { "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-20)% faster start of Energy Shield Recharge" }, } }, - ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-24)% faster start of Energy Shield Recharge" }, } }, - ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (10-15) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (16-20) Life per Enemy Hit with Attacks" }, } }, - ["ExertedAttackDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (25-27)% increased Damage", statOrder = { 6357 }, level = 68, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (25-27)% increased Damage" }, } }, - ["ExertedAttackDamageInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (28-31)% increased Damage", statOrder = { 6357 }, level = 75, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (28-31)% increased Damage" }, } }, - ["ExertedAttackDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (32-35)% increased Damage", statOrder = { 6357 }, level = 80, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-35)% increased Damage" }, } }, - ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 75, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, - ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 80, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, - ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 75, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 80, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 68, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-6)% increased Poison Duration" }, [1290399200] = { "(8-12)% increased Damage with Poison" }, } }, - ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 75, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(7-8)% increased Poison Duration" }, [1290399200] = { "(13-17)% increased Damage with Poison" }, } }, - ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 80, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(9-10)% increased Poison Duration" }, [1290399200] = { "(18-22)% increased Damage with Poison" }, } }, - ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5017 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [308127151] = { "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield" }, } }, - ["LightningDamageESLeechSufffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5017 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [308127151] = { "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield" }, } }, - ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrder = { 6057 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } }, - ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(3-4)% increased Damage per Power Charge" }, } }, - ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrder = { 6066 }, level = 80, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-6)% increased Damage per Power Charge" }, } }, - ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7466 }, level = 82, group = "GlobalLightningGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skill Gems" }, } }, - ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, } }, - ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (8-10)% Lightning Resistance" }, } }, - ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, - ["MaximumLifeLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, - ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, - ["MaximumEnergyShieldLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, - ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrder = { 1989 }, level = 68, group = "MaximumSpellBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2388574377] = { "+2% to maximum Chance to Block Spell Damage" }, } }, - ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10630 }, level = 75, group = "WrathReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1761642973] = { "Wrath has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["WrathReservationEfficiencyInfluence1________"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10631 }, level = 75, group = "WrathReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3444518809] = { "Wrath has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6188 }, level = 75, group = "DisciplineReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1692887998] = { "Discipline has (50-60)% increased Mana Reservation Efficiency" }, } }, - ["DisciplineReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6189 }, level = 75, group = "DisciplineReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has (50-60)% increased Mana Reservation Efficiency" }, } }, - ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 75, group = "PurityOfLightningReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency" }, } }, - ["PurityOfLightningReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9776 }, level = 75, group = "PurityOfLightningReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency" }, } }, - ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10723 }, level = 75, group = "ZealotryReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [4216444167] = { "Zealotry has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["ZealotryReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10724 }, level = 75, group = "ZealotryReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [168308685] = { "Zealotry has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, - ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } }, - ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } }, - ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5016 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, tradeHashes = { [3885409671] = { "(0.2-0.4)% of Fire Damage Leeched as Energy Shield" }, } }, - ["FireDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5016 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, tradeHashes = { [3885409671] = { "(0.2-0.4)% of Fire Damage Leeched as Energy Shield" }, } }, - ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrder = { 6058 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } }, - ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(3-4)% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 80, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-6)% increased Damage per Endurance Charge" }, } }, - ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrder = { 6587 }, level = 82, group = "GlobalFireGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skill Gems" }, } }, - ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrder = { 9672 }, level = 82, group = "GlobalPhysicalGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "gem" }, tradeHashes = { [619213329] = { "+1 to Level of all Physical Skill Gems" }, } }, - ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, - ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (8-10)% Fire Resistance" }, } }, - ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } }, - ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4686 }, level = 75, group = "AngerReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2963485753] = { "Anger has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["AngerReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4687 }, level = 75, group = "AngerReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2549369799] = { "Anger has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6172 }, level = 75, group = "DeterminationReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2721871046] = { "Determination has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["DeterminationReservationEfficiencyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6173 }, level = 75, group = "DeterminationReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 75, group = "PurityOfFireReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has (50-60)% increased Mana Reservation Efficiency" }, } }, - ["PurityOfFireReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 75, group = "PurityOfFireReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has (50-60)% increased Mana Reservation Efficiency" }, } }, - ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9715 }, level = 75, group = "PrideReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3484910620] = { "Pride has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["PrideReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9716 }, level = 75, group = "PrideReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3993865658] = { "Pride has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5014 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, tradeHashes = { [1939452467] = { "(0.2-0.4)% of Cold Damage Leeched as Energy Shield" }, } }, - ["ColdDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5014 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, tradeHashes = { [1939452467] = { "(0.2-0.4)% of Cold Damage Leeched as Energy Shield" }, } }, - ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(3-4)% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 80, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(5-6)% increased Damage per Frenzy Charge" }, } }, - ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrder = { 5836 }, level = 82, group = "GlobalColdGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+1 to Level of all Cold Skill Gems" }, } }, - ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, - ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (8-10)% Cold Resistance" }, } }, - ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +2% of Suppressed Spell Damage" }, } }, - ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +2% of Suppressed Spell Damage" }, } }, - ["SpellDamageSuppressedInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +(3-5)% of Suppressed Spell Damage" }, } }, - ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6942 }, level = 75, group = "HatredReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["HatredReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6943 }, level = 75, group = "HatredReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6903 }, level = 75, group = "GraceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1803598623] = { "Grace has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["GraceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6904 }, level = 75, group = "GraceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 75, group = "PurityOfIceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has (50-60)% increased Mana Reservation Efficiency" }, } }, - ["PurityOfIceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 75, group = "PurityOfIceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has (50-60)% increased Mana Reservation Efficiency" }, } }, - ["WarcrySpeedInfluence1"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Warcry Speed", statOrder = { 3277 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } }, - ["WarcrySpeedInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } }, - ["WarcrySpeedInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Warcry Speed", statOrder = { 3277 }, level = 80, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(31-35)% increased Warcry Speed" }, } }, - ["WarcrySpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-20)% increased Warcry Speed", statOrder = { 3277 }, level = 42, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-20)% increased Warcry Speed" }, } }, - ["WarcrySpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Warcry Speed", statOrder = { 3277 }, level = 58, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } }, - ["WarcrySpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Warcry Speed", statOrder = { 3277 }, level = 74, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } }, - ["WarcrySpeedEssence4_"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Warcry Speed", statOrder = { 3277 }, level = 82, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(31-35)% increased Warcry Speed" }, } }, - ["DoubleDamageStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5661 }, level = 75, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [4224978303] = { "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently" }, } }, - ["DoubleDamageStunnedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5661 }, level = 83, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [4224978303] = { "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently" }, } }, - ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.3-0.5)% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechSuffixInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.3-0.5)% of Chaos Damage Leeched as Life" }, } }, - ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5756 }, level = 82, group = "GlobalChaosGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skill Gems" }, } }, - ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrder = { 10258 }, level = 82, group = "GlobalStrengthGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2339012908] = { "+1 to Level of all Strength Skill Gems" }, } }, - ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrder = { 6177 }, level = 82, group = "GlobalDexterityGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [146924886] = { "+1 to Level of all Dexterity Skill Gems" }, } }, - ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrder = { 7293 }, level = 82, group = "GlobalIntelligenceGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [493812998] = { "+1 to Level of all Intelligence Skill Gems" }, } }, - ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-4)% Elemental Resistances" }, } }, - ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2980 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (5-6)% Elemental Resistances" }, } }, - ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8162 }, level = 75, group = "MalevolenceReservation", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3266567165] = { "Malevolence has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["MalevolenceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8163 }, level = 75, group = "MalevolenceReservationEfficiency", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3383226338] = { "Malevolence has (40-50)% increased Mana Reservation Efficiency" }, } }, - ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, - ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, - ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, - ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2552 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (12-16) to (24-28) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (21-28) to (42-49) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (26-35) to (53-61) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (15-19) to (28-34) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (15-19) to (28-34) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (22-30) to (44-52) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (22-30) to (44-52) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (31-41) to (61-72) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (31-41) to (61-72) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (39-52) to (78-90) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (39-52) to (78-90) Fire Damage" }, } }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (49-65) to (99-114) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (49-65) to (99-114) Fire Damage" }, } }, - ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-14) to (22-25) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (15-20) to (30-35) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-25) to (38-44) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (23-32) to (48-55) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (13-16) to (26-30) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (13-16) to (26-30) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-26) to (41-46) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-26) to (41-46) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (28-37) to (56-65) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (28-37) to (56-65) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (35-46) to (71-81) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (35-46) to (71-81) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (43-59) to (89-102) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (43-59) to (89-102) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, - ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (1-4) to (40-45) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-5) to (55-63) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-6) to (70-79) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-8) to (89-99) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (46-53) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (74-84) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-7) to (74-84) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (102-117) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-9) to (102-117) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-12) to (130-146) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-12) to (130-146) Lightning Damage" }, } }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (6-15) to (165-183) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (6-15) to (165-183) Lightning Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (5-7) to (11-13) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (9-11) to (17-20) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (12-16) to (24-28) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (15-20) to (30-35) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (18-25) to (38-44) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (9-13) to (21-24) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (9-13) to (21-24) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (16-21) to (32-37) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (16-21) to (32-37) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (22-29) to (44-52) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (22-29) to (44-52) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (28-37) to (57-65) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (28-37) to (57-65) Chaos Damage" }, } }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (35-48) to (72-81) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7876 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (35-48) to (72-81) Chaos Damage" }, } }, - ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (19-22) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-30) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-24) to (36-42) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-30) to (45-53) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (28-38) to (57-66) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, - ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (12-16) to (23-27) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (21-27) to (41-48) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (26-34) to (52-60) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (33-35) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-49) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (69-73) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (87-92) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-9) to (109-115) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, - ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrder = { 3762 }, level = 68, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (9-10)% Fire Resistance" }, } }, - ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrder = { 3762 }, level = 73, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (11-12)% Fire Resistance" }, } }, - ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 3762 }, level = 78, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, } }, - ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrder = { 3763 }, level = 68, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (9-10)% Cold Resistance" }, } }, - ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrder = { 3763 }, level = 73, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (11-12)% Cold Resistance" }, } }, - ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 3763 }, level = 78, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } }, - ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrder = { 3764 }, level = 68, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance" }, } }, - ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrder = { 3764 }, level = 73, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance" }, } }, - ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 3764 }, level = 78, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, } }, - ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7876 }, level = 68, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance" }, } }, - ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrder = { 7876 }, level = 73, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance" }, } }, - ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrder = { 7876 }, level = 78, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance" }, } }, - ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3761 }, level = 68, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances" }, } }, - ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrder = { 3761 }, level = 73, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances" }, } }, - ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrder = { 3761 }, level = 78, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances" }, } }, - ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 73, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 78, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-11)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrder = { 2981 }, level = 73, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-13)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrder = { 2981 }, level = 78, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (14-15)% Fire Resistance" }, } }, - ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 73, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 78, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-11)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrder = { 2983 }, level = 73, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-13)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrder = { 2983 }, level = 78, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (14-15)% Cold Resistance" }, } }, - ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 73, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 78, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-11)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrder = { 2984 }, level = 73, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-13)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrder = { 2984 }, level = 78, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (14-15)% Lightning Resistance" }, } }, - ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, - ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2980 }, level = 73, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 5% Elemental Resistances" }, } }, - ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2980 }, level = 78, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } }, - ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 73, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } }, - ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2980 }, level = 78, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (11-12)% Elemental Resistances" }, } }, - ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (7-12)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (13-17)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (18-20)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (16-20)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (21-26)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (27-30)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (7-12)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (13-17)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (18-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (16-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (21-26)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (27-30)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (7-12)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (13-17)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (18-20)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (16-20)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (21-26)% of Physical Damage as Extra Lightning Damage" }, } }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (27-30)% of Physical Damage as Extra Lightning Damage" }, } }, - ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrder = { 10157 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } }, - ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } }, - ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10156 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } }, - ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrder = { 10154 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } }, - ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, - ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrder = { 1877 }, level = 68, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(60-69)% increased Burning Damage" }, } }, - ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrder = { 1877 }, level = 71, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(70-79)% increased Burning Damage" }, } }, - ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrder = { 1877 }, level = 75, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(80-89)% increased Burning Damage" }, } }, - ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrder = { 1877 }, level = 78, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(90-94)% increased Burning Damage" }, } }, - ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrder = { 1877 }, level = 68, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(100-109)% increased Burning Damage" }, } }, - ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrder = { 1877 }, level = 71, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(110-119)% increased Burning Damage" }, } }, - ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrder = { 1877 }, level = 75, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(120-129)% increased Burning Damage" }, } }, - ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrder = { 1877 }, level = 78, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(130-134)% increased Burning Damage" }, } }, - ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Physical Damage over Time", statOrder = { 1211 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(60-69)% increased Physical Damage over Time" }, } }, - ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Physical Damage over Time", statOrder = { 1211 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(70-79)% increased Physical Damage over Time" }, } }, - ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Physical Damage over Time", statOrder = { 1211 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(80-89)% increased Physical Damage over Time" }, } }, - ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Physical Damage over Time", statOrder = { 1211 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(90-94)% increased Physical Damage over Time" }, } }, - ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Physical Damage over Time", statOrder = { 1211 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(100-109)% increased Physical Damage over Time" }, } }, - ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Physical Damage over Time", statOrder = { 1211 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(110-119)% increased Physical Damage over Time" }, } }, - ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Physical Damage over Time", statOrder = { 1211 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(120-129)% increased Physical Damage over Time" }, } }, - ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Physical Damage over Time", statOrder = { 1211 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(130-134)% increased Physical Damage over Time" }, } }, - ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(60-69)% increased Chaos Damage over Time" }, } }, - ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(70-79)% increased Chaos Damage over Time" }, } }, - ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(80-89)% increased Chaos Damage over Time" }, } }, - ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(90-94)% increased Chaos Damage over Time" }, } }, - ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(100-109)% increased Chaos Damage over Time" }, } }, - ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(110-119)% increased Chaos Damage over Time" }, } }, - ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(120-129)% increased Chaos Damage over Time" }, } }, - ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(130-134)% increased Chaos Damage over Time" }, } }, - ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (8-12)% faster" }, } }, - ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (13-15)% faster" }, } }, - ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (18-21)% faster" }, } }, - ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (22-25)% faster" }, } }, - ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrder = { 6545 }, level = 68, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (8-12)% faster" }, } }, - ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrder = { 6545 }, level = 73, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (13-15)% faster" }, } }, - ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrder = { 6545 }, level = 68, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (18-21)% faster" }, } }, - ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrder = { 6545 }, level = 73, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (22-25)% faster" }, } }, - ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrder = { 6546 }, level = 68, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (8-12)% faster" }, } }, - ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrder = { 6546 }, level = 73, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (13-15)% faster" }, } }, - ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrder = { 6546 }, level = 68, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (18-21)% faster" }, } }, - ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrder = { 6546 }, level = 73, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (22-25)% faster" }, } }, - ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(12-16)% increased Impale Effect", statOrder = { 7243 }, level = 68, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(12-16)% increased Impale Effect" }, } }, - ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(17-21)% increased Impale Effect", statOrder = { 7243 }, level = 71, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(17-21)% increased Impale Effect" }, } }, - ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Impale Effect", statOrder = { 7243 }, level = 75, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(22-25)% increased Impale Effect" }, } }, - ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% increased Impale Effect", statOrder = { 7243 }, level = 68, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(25-29)% increased Impale Effect" }, } }, - ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(30-34)% increased Impale Effect", statOrder = { 7243 }, level = 71, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(30-34)% increased Impale Effect" }, } }, - ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(35-38)% increased Impale Effect", statOrder = { 7243 }, level = 75, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(35-38)% increased Impale Effect" }, } }, - ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(23-26)% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(27-30)% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(23-26)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(27-30)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(23-26)% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(27-30)% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(16-20)% of Physical Damage Converted to Chaos Damage" }, } }, - ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 71, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(21-25)% of Physical Damage Converted to Chaos Damage" }, } }, - ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 68, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 71, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 68, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 71, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 75, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3602667353] = { "(11-15)% chance to inflict Fire Exposure on Hit" }, } }, - ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 80, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3602667353] = { "(16-20)% chance to inflict Fire Exposure on Hit" }, } }, - ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 75, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2630708439] = { "(11-15)% chance to inflict Cold Exposure on Hit" }, } }, - ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 80, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2630708439] = { "(16-20)% chance to inflict Cold Exposure on Hit" }, } }, - ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 75, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4265906483] = { "(11-15)% chance to inflict Lightning Exposure on Hit" }, } }, - ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 80, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4265906483] = { "(16-20)% chance to inflict Lightning Exposure on Hit" }, } }, - ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 78, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, - ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, - ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-13)% increased Physical Damage" }, [2763429652] = { "10% chance to Maim on Hit" }, } }, - ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(14-16)% increased Physical Damage" }, [2763429652] = { "15% chance to Maim on Hit" }, } }, - ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1232, 7989 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(17-20)% increased Physical Damage" }, [2763429652] = { "20% chance to Maim on Hit" }, } }, - ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(15-18)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(19-22)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(23-25)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(15-18)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 70, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(19-22)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 73, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(23-25)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(15-18)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(19-22)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(23-25)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(15-18)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(19-22)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(23-25)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(2-4)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 70, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(5-7)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 73, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(8-9)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(23-27)% increased Physical Attack Damage while Dual Wielding" }, } }, - ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(28-32)% increased Physical Attack Damage while Dual Wielding" }, } }, - ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(33-37)% increased Physical Attack Damage while Dual Wielding" }, } }, - ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } }, - ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, - ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 73, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } }, - ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrder = { 10137 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (4-5)% chance to deal Double Damage" }, } }, - ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrder = { 10137 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (6-7)% chance to deal Double Damage" }, } }, - ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrder = { 10137 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (10-11)% chance to deal Double Damage" }, } }, - ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrder = { 10137 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (12-14)% chance to deal Double Damage" }, } }, - ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-7)% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(8-10)% increased Damage per Endurance Charge" }, } }, - ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(5-7)% increased Damage per Frenzy Charge" }, } }, - ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 73, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(8-10)% increased Damage per Frenzy Charge" }, } }, - ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-7)% increased Damage per Power Charge" }, } }, - ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrder = { 6066 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(8-10)% increased Damage per Power Charge" }, } }, - ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(10-13)% increased Damage per Endurance Charge" }, } }, - ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(14-17)% increased Damage per Endurance Charge" }, } }, - ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(10-13)% increased Damage per Power Charge" }, } }, - ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrder = { 6066 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(14-17)% increased Damage per Power Charge" }, } }, - ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrder = { 1581 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.3% of Mana per second" }, } }, - ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrder = { 1581 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.4% of Mana per second" }, } }, - ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrder = { 1581 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.7% of Mana per second" }, } }, - ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrder = { 1581 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.8% of Mana per second" }, } }, - ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-33)% increased Aura Effect" }, } }, - ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrder = { 3356 }, level = 80, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-40)% increased Aura Effect" }, } }, - ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (48-54)% increased Aura Effect" }, } }, - ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrder = { 3356 }, level = 80, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (55-60)% increased Aura Effect" }, } }, - ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-33)% increased Aura Effect" }, } }, - ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-40)% increased Aura Effect" }, } }, - ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (48-54)% increased Aura Effect" }, } }, - ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (55-60)% increased Aura Effect" }, } }, - ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-33)% increased Aura Effect" }, } }, - ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-40)% increased Aura Effect" }, } }, - ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (48-54)% increased Aura Effect" }, } }, - ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (55-60)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-33)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrder = { 6161 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-40)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (48-54)% increased Aura Effect" }, } }, - ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrder = { 6161 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (55-60)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-33)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrder = { 10722 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-40)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrder = { 10722 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (48-54)% increased Aura Effect" }, } }, - ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrder = { 10722 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (55-60)% increased Aura Effect" }, } }, - ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrder = { 3063 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(18-22)% increased Damage while Leeching" }, } }, - ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrder = { 3063 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(23-26)% increased Damage while Leeching" }, } }, - ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrder = { 3063 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(27-30)% increased Damage while Leeching" }, } }, - ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrder = { 3063 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(32-36)% increased Damage while Leeching" }, } }, - ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrder = { 3063 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(37-41)% increased Damage while Leeching" }, } }, - ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrder = { 3063 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(42-45)% increased Damage while Leeching" }, } }, - ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(10-12)% increased Attack Speed while Fortified" }, } }, - ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(13-15)% increased Attack Speed while Fortified" }, } }, - ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(20-22)% increased Attack Speed while Fortified" }, } }, - ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(23-25)% increased Attack Speed while Fortified" }, } }, - ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9213 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+0.2 metres to Melee Strike Range if you have Killed Recently" }, } }, - ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9213 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+0.3 metres to Melee Strike Range if you have Killed Recently" }, } }, - ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(5-6)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 70, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(7-8)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 73, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(9-10)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(13-16)% increased Attack Speed if you've Killed Recently" }, } }, - ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(17-20)% increased Attack Speed if you've Killed Recently" }, } }, - ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(23-26)% increased Attack Speed if you've Killed Recently" }, } }, - ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(27-30)% increased Attack Speed if you've Killed Recently" }, } }, - ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(13-16)% increased Cast Speed if you've Killed Recently" }, } }, - ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(17-20)% increased Cast Speed if you've Killed Recently" }, } }, - ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(23-26)% increased Cast Speed if you've Killed Recently" }, } }, - ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(27-30)% increased Cast Speed if you've Killed Recently" }, } }, - ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(17-21)% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(22-25)% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(35-40)% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(41-45)% increased Warcry Cooldown Recovery Rate" }, } }, - ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(31-40)% increased Critical Strike Chance if you have Killed Recently" }, } }, - ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(41-50)% increased Critical Strike Chance if you have Killed Recently" }, } }, - ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5957 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2937483991] = { "+(26-30)% to Critical Strike Multiplier if you've Killed Recently" }, } }, - ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5957 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2937483991] = { "+(31-35)% to Critical Strike Multiplier if you've Killed Recently" }, } }, - ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } }, - ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } }, - ["GainRareMonsterModsOnKillChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6697 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds" }, } }, - ["GainRareMonsterModsOnKillChanceInfluence2"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6697 }, level = 73, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds" }, } }, - ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(11-15)% increased Stun Duration on Enemies" }, [1443060084] = { "(11-15)% reduced Enemy Stun Threshold" }, } }, - ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(16-20)% increased Stun Duration on Enemies" }, [1443060084] = { "(16-20)% reduced Enemy Stun Threshold" }, } }, - ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(21-25)% increased Stun Duration on Enemies" }, [1443060084] = { "(21-25)% reduced Enemy Stun Threshold" }, } }, - ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(26-30)% increased Stun Duration on Enemies" }, [1443060084] = { "(26-30)% reduced Enemy Stun Threshold" }, } }, - ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, - ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, - ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, - ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, - ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2706 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage" }, } }, - ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrder = { 3564 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(7-11)% chance to double Stun Duration" }, } }, - ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrder = { 3564 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(12-15)% chance to double Stun Duration" }, } }, - ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrder = { 3564 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(17-21)% chance to double Stun Duration" }, } }, - ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrder = { 3564 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(22-25)% chance to double Stun Duration" }, } }, - ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(5-7)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(8-10)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(10-12)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(13-15)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(17-21)% increased Area of Effect if you've Killed Recently" }, } }, - ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(22-25)% increased Area of Effect if you've Killed Recently" }, } }, - ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(27-31)% increased Area of Effect if you've Killed Recently" }, } }, - ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(32-35)% increased Area of Effect if you've Killed Recently" }, } }, - ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [852195286] = { "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } }, - ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [852195286] = { "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } }, - ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1101206134] = { "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, - ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1101206134] = { "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, - ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } }, - ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrder = { 564 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [1519665289] = { "Projectiles from Socketed Gems Fork" }, } }, - ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9735 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, - ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9735 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, - ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9735 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, - ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (7-8)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (9-11)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (12-15)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6726 }, level = 75, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [446027070] = { "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike" }, } }, - ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6726 }, level = 80, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [446027070] = { "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike" }, } }, - ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 78, group = "FlammabilityOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 78, group = "FrostbiteOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, - ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 78, group = "ConductivityOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, - ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["ImpaleEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "(12-16)% increased Impale Effect", statOrder = { 7243 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(12-16)% increased Impale Effect" }, } }, - ["ImpaleEffectEssence2__"] = { type = "Suffix", affix = "of the Essence", "(17-21)% increased Impale Effect", statOrder = { 7243 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(17-21)% increased Impale Effect" }, } }, - ["ImpaleEffectEssence3"] = { type = "Suffix", affix = "of the Essence", "(22-25)% increased Impale Effect", statOrder = { 7243 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(22-25)% increased Impale Effect" }, } }, - ["ImpaleEffectTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "(25-29)% increased Impale Effect", statOrder = { 7243 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(25-29)% increased Impale Effect" }, } }, - ["ImpaleEffectTwoHandEssence2_"] = { type = "Suffix", affix = "of the Essence", "(30-34)% increased Impale Effect", statOrder = { 7243 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(30-34)% increased Impale Effect" }, } }, - ["ImpaleEffectTwoHandEssence3_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% increased Impale Effect", statOrder = { 7243 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(35-38)% increased Impale Effect" }, } }, - ["BreachBodyChaosDamageAsPortionOfFireDamage1_"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain 10% of Fire Damage as Extra Chaos Damage" }, } }, - ["BreachBodyChaosDamageAsPortionOfColdDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain 10% of Cold Damage as Extra Chaos Damage" }, } }, - ["BreachBodyChaosDamageAsPortionOfLightningDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain 10% of Lightning Damage as Extra Chaos Damage" }, } }, - ["BreachBodyAllDefences1"] = { type = "Prefix", affix = "Chayula's", "50% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "50% increased Global Defences" }, } }, - ["BreachBodyLifeGainedOnHittingIgnitedEnemies1"] = { type = "Suffix", affix = "of Xoph", "Gain (20-30) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 1, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (20-30) Life for each Ignited Enemy hit with Attacks" }, } }, - ["BreachBodyNoExtraBleedDamageWhileMoving1_"] = { type = "Suffix", affix = "of Uul-Netol", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["BreachBodyAddedColdDamagePerPowerCharge1"] = { type = "Prefix", affix = "Tul's", "Adds 10 to 15 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 15 Cold Damage to Spells per Power Charge" }, } }, - ["BreachBodyGainPowerChargeOnKillingFrozenEnemy1"] = { type = "Suffix", affix = "of Tul", "25% chance to gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "25% chance to gain a Power Charge on Killing a Frozen Enemy" }, } }, - ["BreachBodyIncreasedAttackSpeedPerDexterity1"] = { type = "Suffix", affix = "of Esh", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4902 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2241560081] = { "1% increased Attack Speed per 25 Dexterity" }, } }, - ["BreachBodyPhysicalDamageReductionWhileNotMoving1"] = { type = "Suffix", affix = "of Uul-Netol", "6% additional Physical Damage Reduction while stationary", statOrder = { 4313 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "6% additional Physical Damage Reduction while stationary" }, } }, - ["BreachBodyAddedLightningDamagePerShockedEnemyKilled1"] = { type = "Prefix", affix = "Esh's", "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9244 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, - ["BreachBodyReflectsShocks1"] = { type = "Suffix", affix = "of Esh", "Shock Reflection", statOrder = { 9885 }, level = 1, group = "ReflectsShocks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, - ["BreachBodyChaosDamageDoesNotBypassESNotLowLifeOrMana1_"] = { type = "Prefix", affix = "Esh's", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5729 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } }, - ["BreachBodyOnHitBlindChilledEnemies1"] = { type = "Suffix", affix = "of Tul", "Blind Chilled Enemies on Hit", statOrder = { 5216 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled Enemies on Hit" }, } }, - ["BreachBodyVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Uul-Netol", "25% chance to Curse Enemies with Vulnerability on Hit", statOrder = { 2524 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "25% chance to Curse Enemies with Vulnerability on Hit" }, } }, - ["BreachBodyGrantsEnvy1"] = { type = "Prefix", affix = "Chayula's", "Grants Level 15 Envy Skill", statOrder = { 655 }, level = 1, group = "GrantsEnvy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, - ["BreachBodyEnemiesBlockedAreIntimidated1"] = { type = "Prefix", affix = "Uul-Netol's", "Permanently Intimidate Enemies on Block", statOrder = { 9611 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate Enemies on Block" }, } }, - ["BreachBodyMinionsPoisonEnemiesOnHit1_"] = { type = "Suffix", affix = "of Chayula", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, - ["BreachBodyArmourIncreasedByUncappedFireResistance1____"] = { type = "Prefix", affix = "Xoph's", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4763 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2129352930] = { "Armour is increased by Overcapped Fire Resistance" }, } }, - ["BreachBodyEvasionIncreasedByUncappedColdResistance1"] = { type = "Prefix", affix = "Tul's", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6487 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, - ["BreachBodyCriticalChanceIncreasedByUncappedLightningResistance1"] = { type = "Suffix", affix = "of Esh", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5919 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Strike Chance is increased by Overcapped Lightning Resistance" }, } }, - ["BreachBodyCoverInAshWhenHit1__"] = { type = "Prefix", affix = "Xoph's", "Cover Enemies in Ash when they Hit you", statOrder = { 4695 }, level = 1, group = "CoverInAshWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } }, - ["BreachBodyChillEnemiesWhenHit1"] = { type = "Suffix", affix = "of Tul", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } }, - ["BreachBodyArcticArmourReservationCost1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4714 }, level = 1, group = "ArcticArmourReservationCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2605040931] = { "Arctic Armour has 100% increased Mana Reservation Efficiency" }, } }, - ["BreachBodyArcticArmourReservationEfficiency1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4715 }, level = 1, group = "ArcticArmourReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2351239732] = { "Arctic Armour has 100% increased Mana Reservation Efficiency" }, } }, - ["BreachBodyMaximumLifeConvertedToEnergyShield1___"] = { type = "Prefix", affix = "Chayula's", "10% of Maximum Life Converted to Energy Shield", statOrder = { 9162 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "10% of Maximum Life Converted to Energy Shield" }, } }, - ["LocalIncreaseSocketedActiveGemLevelUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 190, 206 }, level = 90, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [1325783255] = { "+(5-10)% to Quality of Socketed Skill Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-10)% to Quality of Socketed Support Gems" }, [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["PhysicalDamageTakenAsFirePercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2447, 6572 }, level = 94, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(16-18)% of Physical Damage from Hits taken as Fire Damage" }, [1742651309] = { "(7-10)% of Fire Damage taken Recouped as Life" }, } }, - ["PhysicalDamageTakenAsColdPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2448, 5818 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(7-10)% of Cold Damage taken Recouped as Life" }, [1871056256] = { "(16-18)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["PhysicalDamageTakenAsLightningPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2449, 7452 }, level = 92, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(16-18)% of Physical Damage from Hits taken as Lightning Damage" }, [2970621759] = { "(7-10)% of Lightning Damage taken Recouped as Life" }, } }, - ["ReducedElementalReflectTakenUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3293, 6335 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, } }, - ["ReducedPhysicalReflectTakenUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2241, 9671 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3853018505] = { "(3-5)% reduced Physical Damage taken" }, [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, - ["ElementalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3293 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["PhysicalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2241 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, [3853018505] = { "(3-5)% reduced Physical Damage taken" }, } }, - ["MaximumLifeUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } }, - ["MaximumManaBodyUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% increased maximum Mana", statOrder = { 1580 }, level = 85, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(16-18)% increased maximum Mana" }, } }, - ["DamageTakenFromManaBeforeLifeUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(11-15)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 90, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(11-15)% of Damage is taken from Mana before Life" }, } }, - ["MaximumLifeOnKillPercentUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1749, 7394 }, level = 85, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3353368340] = { "(5-10)% increased Life Recovery Rate if you haven't Killed Recently" }, [2023107756] = { "Recover (5-6)% of Life on Kill" }, } }, - ["MaximumManaOnKillPercentUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1751, 8192 }, level = 85, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, [630994130] = { "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently" }, } }, - ["MaximumEnergyShieldOnKillPercentUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1750, 6451 }, level = 85, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, [2698606393] = { "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently" }, } }, - ["PercentageStrengthUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 158, 1184 }, level = 93, group = "PercentageStrengthMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["PercentageDexterityUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 160, 1185 }, level = 93, group = "PercentageDexterityMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["PercentageIntelligenceUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 161, 1186 }, level = 93, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, - ["LifeRegenerationRatePercentUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Regenerate (2.1-3)% of Life per second", statOrder = { 1944 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (2.1-3)% of Life per second" }, } }, - ["SupportedByItemRarityUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 20 Item Rarity", "(19-25)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10505 }, level = 95, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(19-25)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 20 Item Rarity" }, } }, - ["AdditionalCriticalStrikeChanceWithAttacksUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4792 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.6-2)% to Critical Strike Chance" }, } }, - ["AdditionalCriticalStrikeChanceWithSpellsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.6-2)% to Spell Critical Strike Chance" }, } }, - ["MaximumManaInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% increased maximum Mana", statOrder = { 1580 }, level = 90, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(16-18)% increased maximum Mana" }, } }, - ["PhysTakenAsLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2449, 7452 }, level = 93, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(16-18)% of Physical Damage from Hits taken as Lightning Damage" }, [2970621759] = { "(7-10)% of Lightning Damage taken Recouped as Life" }, } }, - ["ConsecratedGroundStationaryInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "You have Consecrated Ground around you while stationary", "Effects of Consecrated Ground you create Linger for 1 second", statOrder = { 5856, 10690 }, level = 85, group = "ConsecratedGroundStationaryMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 1 second" }, [880970200] = { "You have Consecrated Ground around you while stationary" }, } }, - ["HolyPhysicalExplosionInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 1880, 6373 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage" }, [280731498] = { "(8-12)% increased Area of Effect" }, } }, - ["HolyPhysicalExplosionChanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 1880, 3304 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [280731498] = { "(8-12)% increased Area of Effect" }, [3295179224] = { "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, - ["PercentageIntelligenceBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 161, 1186 }, level = 85, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, - ["AddPowerChargeOnCritInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "15% chance to gain a Power Charge on Critical Strike", "3% increased Damage per Power Charge", statOrder = { 1830, 6066 }, level = 90, group = "PowerChargeOnCriticalStrikeChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, [2034658008] = { "3% increased Damage per Power Charge" }, } }, - ["EnergyShieldOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1750, 6451 }, level = 90, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, [2698606393] = { "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently" }, } }, - ["EnergyShieldRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(12-15)% increased Energy Shield Recovery rate", "Regenerate (50-100) Energy Shield per second", statOrder = { 1568, 2645 }, level = 90, group = "EnergyShieldRecoveryRateMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(12-15)% increased Energy Shield Recovery rate" }, [1330109706] = { "Regenerate (50-100) Energy Shield per second" }, } }, - ["PhysTakenAsFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2447, 6572 }, level = 93, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(16-18)% of Physical Damage from Hits taken as Fire Damage" }, [1742651309] = { "(7-10)% of Fire Damage taken Recouped as Life" }, } }, - ["SocketedActiveGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 190, 206 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [1325783255] = { "+(5-10)% to Quality of Socketed Skill Gems" }, } }, - ["ReflectedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2241, 9671 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3853018505] = { "(3-5)% reduced Physical Damage taken" }, [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, - ["PhysicalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2241 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, [3853018505] = { "(3-5)% reduced Physical Damage taken" }, } }, - ["AllResistancesInfluenceMaven____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(19-22)% to all Elemental Resistances", "+1% to all maximum Elemental Resistances", statOrder = { 1619, 1643 }, level = 85, group = "AllResistancesMaven", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-22)% to all Elemental Resistances" }, [1978899297] = { "+1% to all maximum Elemental Resistances" }, } }, - ["PercentageStrengthBodyInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 158, 1184 }, level = 85, group = "PercentageStrengthMaven", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["EnduranceChargeIfHitRecentlyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "3% increased Area of Effect per Endurance Charge", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 4733, 6747 }, level = 90, group = "EnduranceChargeIfHitRecentlyMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, [2448279015] = { "3% increased Area of Effect per Endurance Charge" }, } }, - ["LifeOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1749, 7394 }, level = 90, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3353368340] = { "(5-10)% increased Life Recovery Rate if you haven't Killed Recently" }, [2023107756] = { "Recover (5-6)% of Life on Kill" }, } }, - ["LifeRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(12-15)% increased Life Recovery rate", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 1578, 7348 }, level = 90, group = "LifeRecoveryRateMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(12-15)% increased Life Recovery rate" }, [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } }, - ["SocketedAttacksManaCostInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Ignore Stuns while using Socketed Attack Skills", "Socketed Attacks have -20 to Total Mana Cost", statOrder = { 545, 549 }, level = 95, group = "SocketedAttacksManaCostMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, tradeHashes = { [1439818705] = { "Ignore Stuns while using Socketed Attack Skills" }, [2264586521] = { "Socketed Attacks have -20 to Total Mana Cost" }, } }, - ["PhysTakenAsColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2448, 5818 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(7-10)% of Cold Damage taken Recouped as Life" }, [1871056256] = { "(16-18)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["SocketedSupportGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-10)% to Quality of Socketed Support Gems" }, [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["ReflectedElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3293, 6335 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, } }, - ["ElementalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3293 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } }, - ["NearbyEnemiesAreBlindedInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Cannot be Blinded", "Nearby Enemies are Blinded", statOrder = { 2974, 3396 }, level = 85, group = "NearbyEnemiesAreBlindedMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["PercentageDexterityBodyInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 160, 1185 }, level = 85, group = "PercentageDexterityMaven", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["FrenzyChargeOnHitChanceInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "1% increased Movement Speed per Frenzy Charge", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1802, 1833 }, level = 90, group = "FrenzyChargeOnHitChanceMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod", "speed" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, - ["ManaOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1751, 8192 }, level = 90, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, [630994130] = { "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently" }, } }, - ["ManaRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-15)% increased Mana Recovery rate", "(20-35)% increased Mana Recovery from Flasks", statOrder = { 1586, 2060 }, level = 90, group = "ManaRecoveryRateMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [2222186378] = { "(20-35)% increased Mana Recovery from Flasks" }, [3513180117] = { "(12-15)% increased Mana Recovery rate" }, } }, - ["AuraEffectBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(26-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 90, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(26-30)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["MaximumLifeBodyInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } }, - ["PhysTakenAsChaosInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "+1% to maximum Chaos Resistance", "(16-18)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1640, 2451 }, level = 93, group = "PhysicalDamageTakenAsChaosUberMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos", "resistance" }, tradeHashes = { [4129825612] = { "(16-18)% of Physical Damage from Hits taken as Chaos Damage" }, [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, - ["AdditionalCurseOnEnemiesInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2168, 5994 }, level = 92, group = "OLDAdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [714566414] = { "20% increased Mana Reservation Efficiency of Curse Aura Skills" }, } }, - ["AdditionalCurseOnEnemiesInfluenceMavenV2___"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2168, 5995 }, level = 92, group = "AdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [443165947] = { "20% increased Mana Reservation Efficiency of Curse Aura Skills" }, } }, - ["RegenerateLifeOverMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Every 4 seconds, Regenerate 25% of Life over one second", statOrder = { 3786 }, level = 90, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 25% of Life over one second" }, } }, - ["OfferingEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(26-35)% increased effect of Offerings", statOrder = { 4063 }, level = 90, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(26-35)% increased effect of Offerings" }, } }, - ["AdditionalCritWithAttacksInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4792 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.6-2)% to Critical Strike Chance" }, } }, - ["AdditionalCritWithSpellsInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.6-2)% to Spell Critical Strike Chance" }, } }, - ["LifeRegenerationPercentBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Regenerate (2.1-3)% of Life per second", statOrder = { 1944 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (2.1-3)% of Life per second" }, } }, - ["AreaDamageSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 453, 2035 }, level = 92, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-25)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 25 Concentrated Effect" }, } }, - ["AreaOfEffectSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 224, 1880 }, level = 93, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 25 Increased Area of Effect" }, [280731498] = { "(13-15)% increased Area of Effect" }, } }, - ["MaximumManaUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(12-15)% increased maximum Mana", "Transfiguration of Mind", statOrder = { 1580, 4603 }, level = 85, group = "MaximumManaIncreasePercentMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, [2748665614] = { "(12-15)% increased maximum Mana" }, } }, - ["MinionDamageSupportedUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 506, 1973 }, level = 93, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 25 Minion Damage" }, [1589917703] = { "Minions deal (23-25)% increased Damage" }, } }, - ["MinionLifeSupportedUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 504, 1766 }, level = 90, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 25 Minion Life" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, - ["AdditionalMinesPlacedSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 95, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 25 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } }, - ["MineDamageUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 497, 1196 }, level = 90, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 25 Blastchain Mine" }, } }, - ["MineDamageTrapUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 457, 1196 }, level = 90, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 25 Trap And Mine Damage" }, } }, - ["IncreasedChillEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 90, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(17-20)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 25 Hypothermia" }, } }, - ["IncreasedShockEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 521, 7434 }, level = 90, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(17-20)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 25 Innervate" }, } }, - ["IgniteDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 90, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(17-20)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 25 Immolate" }, } }, - ["IncreasedBurningDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 312, 1877 }, level = 92, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 25 Burning Damage" }, } }, - ["ChanceToGainPowerChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 94, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } }, - ["SupportedByLessDurationUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Less Duration", statOrder = { 365 }, level = 78, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2487643588] = { "Socketed Gems are Supported by Level 25 Less Duration" }, } }, - ["SpellAddedFireDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1404 }, level = 92, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1405 }, level = 93, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (29-39) to (49-61) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1406 }, level = 94, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (101-121) Lightning Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1403 }, level = 95, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (35-49) to (60-73) Physical Damage to Spells" }, } }, - ["SpellAddedChaosDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1407 }, level = 95, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (29-39) to (49-61) Chaos Damage to Spells" }, } }, - ["ManaRegenerationUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1584, 4316 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3308030688] = { "20% increased Mana Regeneration Rate while stationary" }, [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } }, - ["AddedManaRegenerationUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1582, 8176 }, level = 90, group = "AddedManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } }, - ["AdditionalSpellBlockChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1160, 1989 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, [2388574377] = { "+1% to maximum Chance to Block Spell Damage" }, } }, - ["SocketedSpellCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +4% to Critical Strike Chance", statOrder = { 566 }, level = 94, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +4% to Critical Strike Chance" }, } }, - ["SocketedAttackCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +4% to Critical Strike Chance", statOrder = { 547 }, level = 93, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +4% to Critical Strike Chance" }, } }, - ["EnemyPhysicalDamageTakenAuraUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Nearby Enemies take 12% increased Physical Damage", statOrder = { 7919 }, level = 95, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3853018505] = { "12% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 12% increased Physical Damage" }, } }, - ["EnemyElementalDamageTakenAuraUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Nearby Enemies take 9% increased Elemental Damage", statOrder = { 7914 }, level = 95, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [639595152] = { "Nearby Enemies take 9% increased Elemental Damage" }, [2734809852] = { "9% increased Elemental Damage taken" }, } }, - ["LifeRegenerationPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 83, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, - ["MaximumLightningResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["PhysTakenAsLightningHelmInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(11-13)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 93, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(11-13)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["EnemyLightningResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Nearby Enemies have -12% to Lightning Resistance", statOrder = { 7917 }, level = 95, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-12% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -12% to Lightning Resistance" }, } }, - ["SpellBlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1160, 1989 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, [2388574377] = { "+1% to maximum Chance to Block Spell Damage" }, } }, - ["FortifyEffectInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "+500 to Armour while Fortified", "+(4.2-5) to maximum Fortification", statOrder = { 4767, 9118 }, level = 90, group = "FortifyEffectMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [153004860] = { "+500 to Armour while Fortified" }, [335507772] = { "+(4.2-5) to maximum Fortification" }, } }, - ["EnergyShieldRegenInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(15-25)% increased Energy Shield Recharge Rate", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 1565, 2646 }, level = 85, group = "EnergyShieldRegenerationPerMinuteMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(15-25)% increased Energy Shield Recharge Rate" }, [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } }, - ["ReducedIgniteDurationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Ignite Duration on you", "(36-50)% increased Damage if you've been Ignited Recently", statOrder = { 1875, 6045 }, level = 85, group = "ReducedBurnDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [430821956] = { "(36-50)% increased Damage if you've been Ignited Recently" }, [986397080] = { "(51-60)% reduced Ignite Duration on you" }, } }, - ["ReducedFreezeDurationInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Freeze Duration on you", "(4-7)% reduced Damage taken if you've been Frozen Recently", statOrder = { 1874, 6117 }, level = 85, group = "ReducedFreezeDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-60)% reduced Freeze Duration on you" }, [3616645755] = { "(4-7)% reduced Damage taken if you've been Frozen Recently" }, } }, - ["ReducedShockEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(45-75)% increased Critical Strike Chance if you've been Shocked Recently", "(51-60)% reduced Effect of Shock on you", statOrder = { 5926, 10020 }, level = 85, group = "ReducedShockEffectOnSelfMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "critical", "ailment" }, tradeHashes = { [3801067695] = { "(51-60)% reduced Effect of Shock on you" }, [1434381067] = { "(45-75)% increased Critical Strike Chance if you've been Shocked Recently" }, } }, - ["MaximumPowerChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Power Charges", "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 1814, 6776, 6776.1 }, level = 85, group = "IncreasedMaximumPowerChargesMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1232004574] = { "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["PhysTakenAsFireHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(11-13)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 93, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(11-13)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["ElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(19-22)% increased Elemental Damage", "Damage Penetrates (2-3)% of Enemy Elemental Resistances", statOrder = { 1980, 3559 }, level = 85, group = "ElementalDamagePercentMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates (2-3)% of Enemy Elemental Resistances" }, [3141070085] = { "(19-22)% increased Elemental Damage" }, } }, - ["WarcryAreaOfEffectInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "15% increased Warcry Buff Effect", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10567, 10575 }, level = 85, group = "WarcryAreaOfEffectMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (26-30)% increased Area of Effect" }, [3037553757] = { "15% increased Warcry Buff Effect" }, } }, - ["EnemyFireResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Nearby Enemies have -12% to Fire Resistance", statOrder = { 7915 }, level = 95, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -12% to Fire Resistance" }, [3372524247] = { "-12% to Fire Resistance" }, } }, - ["CriticalStrikeMultiplierInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(21-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 85, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-24)% to Global Critical Strike Multiplier" }, } }, - ["ManaRegenerationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1584, 4316 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3308030688] = { "20% increased Mana Regeneration Rate while stationary" }, [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } }, - ["GainAccuracyEqualToStrengthInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "1% increased Critical Strike Chance per 10 Strength", "Gain Accuracy Rating equal to your Strength", statOrder = { 5930, 6713 }, level = 85, group = "GainAccuracyEqualToStrengthMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2511370818] = { "1% increased Critical Strike Chance per 10 Strength" }, [1575519214] = { "Gain Accuracy Rating equal to your Strength" }, } }, - ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1766, 2911 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-1.5)% of Life per second" }, [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, - ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } }, - ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(11-13)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10138, 10721 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [2897207025] = { "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals" }, [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } }, - ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 7913 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-12% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -12% to Cold Resistance" }, } }, - ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(12-14)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(11-14)% increased Mana Reservation Efficiency of Skills" }, } }, - ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 2026, 2564 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, [2443492284] = { "Ignites you inflict deal Damage (10-15)% faster" }, } }, - ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 2029, 7103 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1302208736] = { "Freeze Enemies as though dealing (30-50)% more Damage" }, [44571480] = { "(10-15)% chance to Freeze" }, } }, - ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 2033, 7104 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2206792089] = { "Shock Enemies as though dealing (30-50)% more Damage" }, [1538773178] = { "(10-15)% chance to Shock" }, } }, - ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1582, 8176 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } }, - ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1404 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1405 }, level = 85, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (29-39) to (49-61) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1406 }, level = 85, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (101-121) Lightning Damage to Spells" }, } }, - ["SpellAddedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1403 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (35-49) to (60-73) Physical Damage to Spells" }, } }, - ["SpellAddedChaosDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (29-39) to (49-61) Chaos Damage to Spells" }, } }, - ["EnemyChaosResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Nearby Enemies have -12% to Chaos Resistance", statOrder = { 7912 }, level = 95, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -12% to Chaos Resistance" }, [2923486259] = { "-12% to Chaos Resistance" }, } }, - ["PercentageIntelligenceInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Intelligence", statOrder = { 1186 }, level = 85, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(11-12)% increased Intelligence" }, } }, - ["IgnitingConfluxInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Ignite Duration on Enemies", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 1859, 6822 }, level = 90, group = "IgnitingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1190121450] = { "You have Igniting Conflux for 3 seconds every 8 seconds" }, [1086147743] = { "(20-30)% increased Ignite Duration on Enemies" }, } }, - ["ChillingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Chill Duration on Enemies", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 1856, 6822 }, level = 90, group = "ChillingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1190121450] = { "You have Chilling Conflux for 3 seconds every 8 seconds" }, [3485067555] = { "(20-30)% increased Chill Duration on Enemies" }, } }, - ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1857, 6822 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, [3668351662] = { "(20-30)% increased Shock Duration on Enemies" }, } }, - ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 469, 1410 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 25 Faster Attacks" }, } }, - ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 500, 1446 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 25 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } }, - ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2046, 2993 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, [2988593550] = { "(5-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 514, 1733 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [96977651] = { "(20-30)% increased Maximum total Mana Recovery per second from Leech" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, } }, - ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 25 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } }, - ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 25 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } }, - ["ChanceToAvoidInterruptionWhileCastingUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 90, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-60)% chance to Ignore Stuns while Casting" }, } }, - ["IncreasedMeleeWeaponRangeUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2534 }, level = 95, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, } }, - ["IncreasedMeleeWeaponRangeAndMeleeDamageUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-16)% increased Melee Damage", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 95, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, [1002362373] = { "(13-16)% increased Melee Damage" }, } }, - ["AdditionalTrapsThrownSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9529 }, level = 94, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 25 Trap" }, } }, - ["TrapDamageUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "(31-35)% increased Trap Damage", statOrder = { 454, 1194 }, level = 90, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 25 Trap" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, - ["TrapDamageCooldownUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 390, 1194 }, level = 90, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 25 Advanced Traps" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, - ["TrapSpeedCooldownUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 90, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(17-20)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 25 Advanced Traps" }, } }, - ["TrapDamageMineUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 457, 1194 }, level = 90, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 25 Trap And Mine Damage" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, - ["PoisonDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 90, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 25 Chance to Poison" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, - ["PoisonDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 523, 3170 }, level = 90, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(17-20)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 25 Chance to Poison" }, } }, - ["BleedingDamageUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 90, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 25 Chance To Bleed" }, [1294118672] = { "(31-35)% increased Damage with Bleeding" }, } }, - ["ChanceToGainFrenzyChargeOnKillUberElderMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 94, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [3338298622] = { "50% increased Frenzy Charge Duration" }, [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["IncreasedAccuracySupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are supported by Level 25 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 93, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 25 Additional Accuracy" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, - ["AdditionalBlockChanceUberMaven___"] = { type = "Suffix", affix = "of the Elevated Elder", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1138, 1988 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, - ["BlindOnHitSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are supported by Level 25 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 90, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 25 Blind" }, [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } }, - ["SocketedSpellCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +90% to Critical Strike Multiplier", statOrder = { 567 }, level = 93, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +90% to Critical Strike Multiplier" }, } }, - ["SocketedAttackCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +90% to Critical Strike Multiplier", statOrder = { 548 }, level = 94, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +90% to Critical Strike Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-24)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-24)% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-24)% to Fire Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-24)% to Physical Damage over Time Multiplier" }, } }, - ["AvoidStunInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "(36-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 85, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } }, - ["MaximumColdResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumColdResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["ConvertPhysicalToFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1932, 1955 }, level = 81, group = "ConvertPhysicalToFireMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(22-25)% of Physical Damage Converted to Fire Damage" }, [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } }, - ["ConvertPhysicalToColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1933, 1957 }, level = 81, group = "ConvertPhysicalToColdMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(22-25)% of Physical Damage Converted to Cold Damage" }, [979246511] = { "Gain (3-5)% of Physical Damage as Extra Cold Damage" }, } }, - ["ConvertPhysicalToLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1934, 1959 }, level = 81, group = "ConvertPhysicalToLightningMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, [3240769289] = { "(22-25)% of Physical Damage Converted to Lightning Damage" }, } }, - ["MaximumLifeLeechRateInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 85, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "20% increased Maximum total Life Recovery per second from Leech" }, } }, - ["MaximumEnergyShieldLeechRateInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "30% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 85, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "30% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, - ["AvoidInterruptionWhileCastingInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 85, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-60)% chance to Ignore Stuns while Casting" }, } }, - ["GlobalCriticalStrikeChanceInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 85, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(31-60)% increased Global Critical Strike Chance" }, } }, - ["MaximumFrenzyChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Frenzy Charges", "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 1809, 6774 }, level = 85, group = "MaximumFrenzyChargesMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, [2119664154] = { "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, - ["MeleeDamageInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Melee Damage", statOrder = { 1234 }, level = 83, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(31-38)% increased Melee Damage" }, } }, - ["ProjectileAttackDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 83, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(31-38)% increased Projectile Attack Damage" }, } }, - ["SpellDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Spell Damage", statOrder = { 1223 }, level = 83, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-38)% increased Spell Damage" }, } }, - ["DamageOverTimeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Damage over Time", statOrder = { 1210 }, level = 83, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(31-38)% increased Damage over Time" }, } }, - ["MeleeWeaponRangeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2534 }, level = 92, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, } }, - ["BlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1138, 1988 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, - ["CullingStrikeInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "Culling Strike", "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently", statOrder = { 2039, 4725 }, level = 83, group = "CullingStrikeMaven", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1785568076] = { "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently" }, [2524254339] = { "Culling Strike" }, } }, - ["FrenzyChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 90, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [3338298622] = { "50% increased Frenzy Charge Duration" }, [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["AddedPhysicalDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9248 }, level = 83, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedFireDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9236 }, level = 83, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedColdDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9231 }, level = 83, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently" }, } }, - ["AddedLightningDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9242 }, level = 83, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently" }, } }, - ["MinionDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Minions deal (31-45)% increased Damage", statOrder = { 1973 }, level = 83, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (31-45)% increased Damage" }, } }, - ["IncreasedAccuracyPercentInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(21-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 90, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(21-30)% increased Global Accuracy Rating" }, } }, - ["GlobalChanceToBlindOnHitInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2811, 2958 }, level = 90, group = "GlobalChanceToBlindOnHitMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3503466234] = { "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies" }, [2221570601] = { "(12-15)% Global chance to Blind Enemies on hit" }, } }, - ["AdditionalChanceToEvadeInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently", "+(2-4)% chance to Evade Attack Hits", statOrder = { 4816, 5673 }, level = 85, group = "AdditionalChanceToEvadeMaven", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion", "attack", "caster", "speed" }, tradeHashes = { [223937937] = { "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently" }, [2021058489] = { "+(2-4)% chance to Evade Attack Hits" }, } }, - ["ChanceToIntimidateOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 95, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, } }, - ["ChanceToUnnerveOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 95, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, } }, - ["StrikeSkillsAdditionalTargetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9185 }, level = 90, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, - ["ChanceToImpaleInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "(21-25)% chance to Impale Enemies on Hit with Attacks", "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy", statOrder = { 4918, 9250 }, level = 90, group = "AttackImpaleChanceMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [1455766505] = { "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy" }, [3739863694] = { "(21-25)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AilmentDurationInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased Duration of Ailments on Enemies", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 1860, 9500 }, level = 90, group = "IncreasedAilmentDurationMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(13-15)% increased Effect of Non-Damaging Ailments" }, [2419712247] = { "(13-15)% increased Duration of Ailments on Enemies" }, } }, - ["PercentageDexterityInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Dexterity", statOrder = { 1185 }, level = 85, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-12)% increased Dexterity" }, } }, - ["FireDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(21-25)% to Fire Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(21-25)% to Cold Damage over Time Multiplier" }, } }, - ["ChaosDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(21-25)% to Chaos Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(21-25)% to Physical Damage over Time Multiplier" }, } }, - ["ManaGainPerTargetInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", "(10-20)% increased Attack Speed while not on Low Mana", statOrder = { 1744, 4906 }, level = 78, group = "ManaGainPerTargetMaven", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack", "speed" }, tradeHashes = { [820939409] = { "Gain (3-5) Mana per Enemy Hit with Attacks" }, [779663446] = { "(10-20)% increased Attack Speed while not on Low Mana" }, } }, - ["IncreasedDurationBootsUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 20 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 314, 1895 }, level = 78, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [407317553] = { "Socketed Gems are Supported by Level 20 More Duration" }, [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["IncreasedCooldownRecoveryBootsUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } }, - ["SupportedByFortifyUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Fortify", statOrder = { 496 }, level = 78, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 25 Fortify" }, } }, - ["ImmuneToChilledGroundUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Chill", statOrder = { 10459 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [937372143] = { "Unaffected by Chill" }, } }, - ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 10474 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, - ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 10478 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 5055 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, - ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } }, - ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(36-45)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4950, 4993 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } }, - ["ChanceToGainEnduranceChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 93, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["TotemDamageSpellUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 464, 1193 }, level = 90, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 25 Spell Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } }, - ["TotemSpeedSpellUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 90, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 25 Spell Totem" }, } }, - ["TotemDamageAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 362, 1193 }, level = 90, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 25 Ballista Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } }, - ["TotemSpeedAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 90, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 25 Ballista Totem" }, } }, - ["SupportedByLifeLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 483 }, level = 78, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 20 Life Leech" }, } }, - ["GrantsDecoyTotemSkillUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Grants Level 25 Decoy Totem Skill", statOrder = { 700 }, level = 78, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3566242751] = { "Grants Level 25 Decoy Totem Skill" }, } }, - ["GlobalRaiseSpectreGemLevelUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+2 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 85, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+2 to Level of all Raise Spectre Gems" }, } }, - ["UnaffectedByShockedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Unaffected by Shock", statOrder = { 10478 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["SocketedLightningGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+2 to Level of Socketed Lightning Gems", "+(3-7)% to Quality of Socketed Lightning Gems", statOrder = { 169, 216 }, level = 78, group = "LocalIncreaseSocketedLightningGemLevelMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [1065580342] = { "+(3-7)% to Quality of Socketed Lightning Gems" }, [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, - ["MaximumFireResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MaximumFireResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["PhysicalAddedAsExtraLightningBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (9-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 85, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (9-11)% of Physical Damage as Extra Lightning Damage" }, } }, - ["CooldownRecoveryInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } }, - ["AvoidIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 85, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(71-80)% chance to Avoid being Ignited" }, } }, - ["AvoidFreezeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 85, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(71-80)% chance to Avoid being Frozen" }, } }, - ["AvoidShockInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 85, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(71-80)% chance to Avoid being Shocked" }, } }, - ["AvoidProjectilesInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4950, 4993 }, level = 83, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } }, - ["UnaffectedByBurningGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "Unaffected by Ignite", statOrder = { 10474 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, - ["SocketedFireGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+2 to Level of Socketed Fire Gems", "+(3-7)% to Quality of Socketed Fire Gems", statOrder = { 167, 214 }, level = 78, group = "LocalIncreaseSocketedFireGemLevelMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, [3422008440] = { "+(3-7)% to Quality of Socketed Fire Gems" }, } }, - ["MaximumEnduranceChargeInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Endurance Charges", "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 1804, 4239 }, level = 85, group = "MaximumEnduranceChargesMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2713233613] = { "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["PhysicalAddedAsExtraFireBootsInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Warlord's", "Gain (9-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 85, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (9-11)% of Physical Damage as Extra Fire Damage" }, } }, - ["AvoidFireDamageInfluenceMaven_____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Fire Resistance", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 1625, 3373 }, level = 90, group = "FireDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, - ["AvoidColdDamageInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Cold Resistance", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 1631, 3374 }, level = 90, group = "ColdDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3743375737] = { "(8-10)% chance to Avoid Cold Damage from Hits" }, } }, - ["AvoidLightningDamageInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Lightning Resistance", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 1636, 3375 }, level = 90, group = "LightningDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, [2889664727] = { "(8-10)% chance to Avoid Lightning Damage from Hits" }, } }, - ["AdditionalPhysicalDamageReductionInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(15-20)% increased Armour", "(2-4)% additional Physical Damage Reduction", statOrder = { 1541, 2273 }, level = 85, group = "ReducedPhysicalDamageTakenMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour", "physical" }, tradeHashes = { [3771516363] = { "(2-4)% additional Physical Damage Reduction" }, [2866361420] = { "(15-20)% increased Armour" }, } }, - ["UnaffectedByChilledGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Unaffected by Chill", statOrder = { 10459 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [937372143] = { "Unaffected by Chill" }, } }, - ["SocketedColdGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+2 to Level of Socketed Cold Gems", "+(3-7)% to Quality of Socketed Cold Gems", statOrder = { 168, 211 }, level = 78, group = "LocalIncreaseSocketedColdGemLevelMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1164882313] = { "+(3-7)% to Quality of Socketed Cold Gems" }, [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (9-11)% of Physical Damage as Extra Cold Damage" }, } }, - ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4281, 6350 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [240857668] = { "(5-10)% increased Elusive Effect" }, [2896192589] = { "(11-20)% chance to gain Elusive on Critical Strike" }, } }, - ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(41-60)% increased Effect of Non-Damaging Ailments" }, } }, - ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2993, 4839 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [879520319] = { "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught" }, [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 5055 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, - ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 170, 210 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2062835769] = { "+(3-7)% to Quality of Socketed Chaos Gems" }, [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, - ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1790 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce (3-5) additional Targets" }, } }, - ["PercentageStrengthInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Strength", statOrder = { 1184 }, level = 85, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(11-12)% increased Strength" }, } }, - ["AvoidBleedAndPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(61-70)% chance to Avoid being Poisoned", "(61-70)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 85, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(61-70)% chance to Avoid Bleeding" }, [4053951709] = { "(61-70)% chance to Avoid being Poisoned" }, } }, - ["TailwindOnCriticalStrikeInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-25)% increased Effect of Tailwind on you", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10347, 10349 }, level = 85, group = "TailwindOnCriticalStrikeMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2172944497] = { "(10-25)% increased Effect of Tailwind on you" }, [1085545682] = { "You have Tailwind if you have dealt a Critical Strike Recently" }, } }, - ["FasterIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Ignite Duration on Enemies", "Ignites you inflict deal Damage (11-15)% faster", statOrder = { 1859, 2564 }, level = 83, group = "FasterIgniteDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(10-20)% increased Ignite Duration on Enemies" }, [2443492284] = { "Ignites you inflict deal Damage (11-15)% faster" }, } }, - ["FasterBleedInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Bleeding Duration", "Bleeding you inflict deals Damage (11-15)% faster", statOrder = { 4994, 6545 }, level = 83, group = "FasterBleedDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (11-15)% faster" }, [1459321413] = { "(10-20)% increased Bleeding Duration" }, } }, - ["FasterPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Poison Duration", "Poisons you inflict deal Damage (11-15)% faster", statOrder = { 3170, 6546 }, level = 83, group = "FasterPoisonDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (11-15)% faster" }, [2011656677] = { "(10-20)% increased Poison Duration" }, } }, - ["LocalIncreasedWard1"] = { type = "Prefix", affix = "Farrier's", "+(5-9) to Ward", statOrder = { 1528 }, level = 3, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(5-9) to Ward" }, } }, - ["LocalIncreasedWard2"] = { type = "Prefix", affix = "Brownsmith's", "+(10-15) to Ward", statOrder = { 1528 }, level = 11, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(10-15) to Ward" }, } }, - ["LocalIncreasedWard3_"] = { type = "Prefix", affix = "Coppersmith's", "+(16-23) to Ward", statOrder = { 1528 }, level = 17, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(16-23) to Ward" }, } }, - ["LocalIncreasedWard4"] = { type = "Prefix", affix = "Blacksmith's", "+(24-35) to Ward", statOrder = { 1528 }, level = 23, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(24-35) to Ward" }, } }, - ["LocalIncreasedWard5___"] = { type = "Prefix", affix = "Silversmith's", "+(36-52) to Ward", statOrder = { 1528 }, level = 29, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(36-52) to Ward" }, } }, - ["LocalIncreasedWard6_"] = { type = "Prefix", affix = "Goldsmith's", "+(52-69) to Ward", statOrder = { 1528 }, level = 35, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(52-69) to Ward" }, } }, - ["LocalIncreasedWard7"] = { type = "Prefix", affix = "Whitesmith's", "+(70-84) to Ward", statOrder = { 1528 }, level = 43, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(70-84) to Ward" }, } }, - ["LocalIncreasedWard8__"] = { type = "Prefix", affix = "Engraver's", "+(85-99) to Ward", statOrder = { 1528 }, level = 51, group = "LocalWard", weightKey = { "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(85-99) to Ward" }, } }, - ["LocalIncreasedWard9"] = { type = "Prefix", affix = "Runesmith's", "+(100-119) to Ward", statOrder = { 1528 }, level = 60, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(100-119) to Ward" }, } }, - ["LocalIncreasedWard10____"] = { type = "Prefix", affix = "Runemaster's", "+(120-139) to Ward", statOrder = { 1528 }, level = 69, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(120-139) to Ward" }, } }, - ["LocalIncreasedWard11"] = { type = "Prefix", affix = "Artificer's", "+(140-159) to Ward", statOrder = { 1528 }, level = 75, group = "LocalWard", weightKey = { "shield", "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(140-159) to Ward" }, } }, - ["LocalIncreasedWardPercent1"] = { type = "Prefix", affix = "Chiseled", "(11-28)% increased Ward", statOrder = { 1530 }, level = 3, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(11-28)% increased Ward" }, } }, - ["LocalIncreasedWardPercent2"] = { type = "Prefix", affix = "Etched", "(27-42)% increased Ward", statOrder = { 1530 }, level = 18, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(27-42)% increased Ward" }, } }, - ["LocalIncreasedWardPercent3"] = { type = "Prefix", affix = "Engraved", "(43-55)% increased Ward", statOrder = { 1530 }, level = 30, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(43-55)% increased Ward" }, } }, - ["LocalIncreasedWardPercent4"] = { type = "Prefix", affix = "Embedded", "(56-67)% increased Ward", statOrder = { 1530 }, level = 44, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(56-67)% increased Ward" }, } }, - ["LocalIncreasedWardPercent5"] = { type = "Prefix", affix = "Inscribed", "(68-79)% increased Ward", statOrder = { 1530 }, level = 60, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(68-79)% increased Ward" }, } }, - ["LocalIncreasedWardPercent6"] = { type = "Prefix", affix = "Lettered", "(80-91)% increased Ward", statOrder = { 1530 }, level = 72, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(80-91)% increased Ward" }, } }, - ["LocalIncreasedWardPercent7"] = { type = "Prefix", affix = "Runed", "(92-100)% increased Ward", statOrder = { 1530 }, level = 84, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(92-100)% increased Ward" }, } }, - ["LocalIncreasedWardPercent8"] = { type = "Prefix", affix = "Calligraphic", "(101-110)% increased Ward", statOrder = { 1530 }, level = 86, group = "LocalWardPercent", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(101-110)% increased Ward" }, } }, - ["LocalIncreasedWardPercentAndStunRecovery1______"] = { type = "Prefix", affix = "Improved", "(6-13)% increased Ward", "(6-7)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 3, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [830161081] = { "(6-13)% increased Ward" }, } }, - ["LocalIncreasedWardPercentAndStunRecovery2_"] = { type = "Prefix", affix = "Enhanced", "(14-20)% increased Ward", "(8-9)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 18, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [830161081] = { "(14-20)% increased Ward" }, } }, - ["LocalIncreasedWardPercentAndStunRecovery3"] = { type = "Prefix", affix = "Bolstered", "(21-26)% increased Ward", "(10-11)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 30, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [830161081] = { "(21-26)% increased Ward" }, } }, - ["LocalIncreasedWardPercentAndStunRecovery4"] = { type = "Prefix", affix = "Elegant", "(27-32)% increased Ward", "(12-13)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 44, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [830161081] = { "(27-32)% increased Ward" }, } }, - ["LocalIncreasedWardPercentAndStunRecovery5"] = { type = "Prefix", affix = "Exquisite", "(33-38)% increased Ward", "(14-15)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 60, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [830161081] = { "(33-38)% increased Ward" }, } }, - ["LocalIncreasedWardPercentAndStunRecovery6_"] = { type = "Prefix", affix = "Masterwork", "(39-42)% increased Ward", "(16-17)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 78, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [830161081] = { "(39-42)% increased Ward" }, } }, - ["LocalBaseWardAndLife1__"] = { type = "Prefix", affix = "Annest's", "+(15-20) to Ward", "+(18-23) to maximum Life", statOrder = { 1528, 1569 }, level = 30, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(15-20) to Ward" }, [3299347043] = { "+(18-23) to maximum Life" }, } }, - ["LocalBaseWardAndLife2"] = { type = "Prefix", affix = "Owen's", "+(21-30) to Ward", "+(24-28) to maximum Life", statOrder = { 1528, 1569 }, level = 46, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(21-30) to Ward" }, [3299347043] = { "+(24-28) to maximum Life" }, } }, - ["LocalBaseWardAndLife3_"] = { type = "Prefix", affix = "Gwayne's", "+(31-40) to Ward", "+(29-33) to maximum Life", statOrder = { 1528, 1569 }, level = 62, group = "LocalBaseWardAndLife", weightKey = { "boots", "gloves", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(31-40) to Ward" }, [3299347043] = { "+(29-33) to maximum Life" }, } }, - ["LocalBaseWardAndLife4_"] = { type = "Prefix", affix = "Cadigan's", "+(41-50) to Ward", "+(34-38) to maximum Life", statOrder = { 1528, 1569 }, level = 78, group = "LocalBaseWardAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(41-50) to Ward" }, [3299347043] = { "+(34-38) to maximum Life" }, } }, - ["FasterStartOfWardRecharge1"] = { type = "Suffix", affix = "of Artifice", "(33-37)% faster Restoration of Ward", statOrder = { 1531 }, level = 46, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(33-37)% faster Restoration of Ward" }, } }, - ["FasterStartOfWardRecharge2"] = { type = "Suffix", affix = "of Etching", "(38-42)% faster Restoration of Ward", statOrder = { 1531 }, level = 57, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(38-42)% faster Restoration of Ward" }, } }, - ["FasterStartOfWardRecharge3"] = { type = "Suffix", affix = "of Engraving", "(43-47)% faster Restoration of Ward", statOrder = { 1531 }, level = 68, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(43-47)% faster Restoration of Ward" }, } }, - ["FasterStartOfWardRecharge4"] = { type = "Suffix", affix = "of Inscription", "(48-52)% faster Restoration of Ward", statOrder = { 1531 }, level = 76, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(48-52)% faster Restoration of Ward" }, } }, - ["FasterStartOfWardRecharge5"] = { type = "Suffix", affix = "of Runes", "(53-58)% faster Restoration of Ward", statOrder = { 1531 }, level = 85, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(53-58)% faster Restoration of Ward" }, } }, - ["RecombinatorSpecialMaximumEnduranceCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["RecombinatorSpecialMaximumFrenzyCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10799 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, - ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10829 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10801 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10782 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, - ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10817 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, - ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10802 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10768 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10788 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, - ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10822 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10783 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["RecombinatorSpecialKeystoneAvatarOfFire"] = { type = "Suffix", affix = "of the Sentinel", "Avatar of Fire", statOrder = { 10771 }, level = 68, group = "AvatarOfFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } }, - ["RecombinatorSpecialKeystoneEldritchBattery"] = { type = "Suffix", affix = "of the Sentinel", "Eldritch Battery", statOrder = { 10781 }, level = 68, group = "EldritchBattery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["RecombinatorSpecialKeystoneAncestralBond"] = { type = "Suffix", affix = "of the Sentinel", "Ancestral Bond", statOrder = { 10770 }, level = 68, group = "AncestralBond", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10778 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, - ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10769 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, - ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10809 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, - ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10774 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, - ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10800 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, - ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10818 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, - ["RecombinatorSpecialKeystoneTheImpaler"] = { type = "Suffix", affix = "of the Sentinel", "The Impaler", statOrder = { 10793 }, level = 68, group = "Impaler", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } }, - ["RecombinatorSpecialKeystoneDoomsday"] = { type = "Suffix", affix = "of the Sentinel", "Hex Master", statOrder = { 10791 }, level = 68, group = "HexMaster", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } }, - ["RecombinatorSpecialKeystoneLetheShade1"] = { type = "Suffix", affix = "of the Sentinel", "Lethe Shade", statOrder = { 10795 }, level = 68, group = "LetheShade", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } }, - ["RecombinatorSpecialKeystoneGhostDance"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Dance", statOrder = { 10787 }, level = 68, group = "GhostDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, - ["RecombinatorSpecialKeystoneVersatileCombatant"] = { type = "Suffix", affix = "of the Sentinel", "Versatile Combatant", statOrder = { 10823 }, level = 68, group = "VersatileCombatant", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, - ["RecombinatorSpecialKeystoneMagebane"] = { type = "Suffix", affix = "of the Sentinel", "Magebane", statOrder = { 10796 }, level = 68, group = "Magebane", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } }, - ["RecombinatorSpecialKeystoneSolipsism"] = { type = "Suffix", affix = "of the Sentinel", "Solipsism", statOrder = { 10815 }, level = 68, group = "Solipsism", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } }, - ["RecombinatorSpecialKeystoneDivineShield"] = { type = "Suffix", affix = "of the Sentinel", "Divine Shield", statOrder = { 10780 }, level = 68, group = "DivineShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } }, - ["RecombinatorSpecialKeystoneIronWill"] = { type = "Suffix", affix = "of the Sentinel", "Iron Will", statOrder = { 10830 }, level = 68, group = "IronWill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["RecombinatorSpecialMagicUtilityFlaskEffect"] = { type = "Prefix", affix = "Sentinel's", "Magic Utility Flasks applied to you have (20-25)% increased Effect", statOrder = { 2743 }, level = 68, group = "MagicUtilityFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2564857472] = { "Magic Utility Flasks applied to you have (20-25)% increased Effect" }, } }, - ["RecombinatorSpecialAuraEffect"] = { type = "Suffix", affix = "of the Sentinel", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-20)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["RecombinatorSpecialFireDamageToAttacksPerStrength"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Fire Damage to Attacks per 10 Strength", statOrder = { 9240 }, level = 68, group = "FireDamageToAttacksPerStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [68673913] = { "Adds 2 to 4 Fire Damage to Attacks per 10 Strength" }, } }, - ["RecombinatorSpecialColdDamageToAttacksPerDexterity"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9232 }, level = 68, group = "ColdDamageToAttacksPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [769783486] = { "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity" }, } }, - ["RecombinatorSpecialLightningDamageToAttacksPerIntelligence"] = { type = "Prefix", affix = "Sentinel's", "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9245 }, level = 68, group = "LightningDamageToAttacksPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3168149399] = { "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence" }, } }, - ["RecombinatorSpecialAllFireDamageCanShock"] = { type = "Suffix", affix = "of the Sentinel", "Your Fire Damage can Shock", statOrder = { 2876 }, level = 68, group = "AllFireDamageCanShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [932096321] = { "Your Fire Damage can Shock" }, } }, - ["RecombinatorSpecialAllColdDamageCanIgnite"] = { type = "Suffix", affix = "of the Sentinel", "Your Cold Damage can Ignite", statOrder = { 2871 }, level = 68, group = "AllColdDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1888494262] = { "Your Cold Damage can Ignite" }, } }, - ["RecombinatorSpecialAllLightningDamageCanFreeze"] = { type = "Suffix", affix = "of the Sentinel", "Your Lightning Damage can Freeze", statOrder = { 2883 }, level = 68, group = "AllLightningDamageCanFreeze", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [380759151] = { "Your Lightning Damage can Freeze" }, } }, - ["RecombinatorSpecialMarkEffect"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of your Marks", statOrder = { 2598 }, level = 68, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(30-40)% increased Effect of your Marks" }, } }, - ["RecombinatorSpecialArcaneSurgeEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(30-40)% increased Effect of Arcane Surge on you" }, } }, - ["RecombinatorSpecialArcaneSurgeEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(50-70)% increased Effect of Arcane Surge on you" }, } }, - ["RecombinatorSpecialOnslaughtEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(30-40)% increased Effect of Onslaught on you" }, } }, - ["RecombinatorSpecialOnslaughtEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(50-70)% increased Effect of Onslaught on you" }, } }, - ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies1H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (10-15)% increased Damage", statOrder = { 10357 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3610197448] = { "Enemies Taunted by your Warcries take (10-15)% increased Damage" }, } }, - ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies2H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (20-25)% increased Damage", statOrder = { 10357 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3610197448] = { "Enemies Taunted by your Warcries take (20-25)% increased Damage" }, } }, - ["RecombinatorSpecialSupportedByLevelFourEnlighten"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enlighten", statOrder = { 272 }, level = 68, group = "SupportedByEnlighten", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [2065361612] = { "Socketed Gems are Supported by Level 4 Enlighten" }, } }, - ["RecombinatorSpecialSupportedByLevelFourEnhance"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enhance", statOrder = { 271 }, level = 68, group = "SupportedByEnhance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [2556436882] = { "Socketed Gems are Supported by Level 4 Enhance" }, } }, - ["RecombinatorSpecialSupportedByLevelFourEmpower"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Empower", statOrder = { 269 }, level = 68, group = "SupportedByEmpower", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [3581578643] = { "Socketed Gems are Supported by Level 4 Empower" }, } }, - ["RecombinatorSpecialTriggerSkillsDoubleDamage"] = { type = "Prefix", affix = "Sentinel's", "Socketed Triggered Skills deal Double Damage", statOrder = { 409 }, level = 68, group = "SocketedTriggeredSkillsDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "damage", "gem" }, tradeHashes = { [4021083819] = { "Socketed Triggered Skills deal Double Damage" }, } }, - ["LifeRegeneration1Inverted"] = { type = "Suffix", affix = "of the Newt", "Lose (1-2) Life per second", statOrder = { 1575 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (1-2) Life per second" }, } }, - ["LifeRegeneration2Inverted"] = { type = "Suffix", affix = "of the Lizard", "Lose (2.1-8) Life per second", statOrder = { 1575 }, level = 7, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (2.1-8) Life per second" }, } }, - ["LifeRegeneration3Inverted"] = { type = "Suffix", affix = "of the Flatworm", "Lose (8.1-16) Life per second", statOrder = { 1575 }, level = 19, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (8.1-16) Life per second" }, } }, - ["LifeRegeneration4Inverted"] = { type = "Suffix", affix = "of the Starfish", "Lose (16.1-24) Life per second", statOrder = { 1575 }, level = 31, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (16.1-24) Life per second" }, } }, - ["LifeRegeneration5Inverted"] = { type = "Suffix", affix = "of the Hydra", "Lose (24.1-32) Life per second", statOrder = { 1575 }, level = 44, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (24.1-32) Life per second" }, } }, - ["LifeRegeneration6Inverted"] = { type = "Suffix", affix = "of the Troll", "Lose (32.1-48) Life per second", statOrder = { 1575 }, level = 55, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (32.1-48) Life per second" }, } }, - ["LifeRegeneration7Inverted"] = { type = "Suffix", affix = "of Ryslatha", "Lose (48.1-64) Life per second", statOrder = { 1575 }, level = 68, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (48.1-64) Life per second" }, } }, - ["LifeRegeneration8Inverted"] = { type = "Suffix", affix = "of the Phoenix", "Lose (64.1-96) Life per second", statOrder = { 1575 }, level = 74, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (64.1-96) Life per second" }, } }, - ["AddedPhysicalDamage1Inverted"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks against you", statOrder = { 1267 }, level = 5, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds 1 to 2 Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamage2Inverted"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 13, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (2-3) to (4-5) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamage3Inverted"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 19, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (3-4) to (6-7) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamage4Inverted"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 28, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (4-6) to (9-10) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamage5Inverted"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 35, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (5-7) to (11-12) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamage6Inverted"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 44, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (6-9) to (13-15) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamage7Inverted"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 52, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (7-10) to (15-18) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamage8Inverted"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 64, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (9-12) to (19-22) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamage9Inverted"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 76, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (11-15) to (22-26) Physical Damage to Attacks against you" }, } }, - ["AddedFireDamage1Inverted"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks against you", statOrder = { 1361 }, level = 1, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds 1 to 2 Fire Damage to Attacks against you" }, } }, - ["AddedFireDamage2Inverted"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 12, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (3-5) to (7-8) Fire Damage to Attacks against you" }, } }, - ["AddedFireDamage3Inverted"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 20, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (5-7) to (11-13) Fire Damage to Attacks against you" }, } }, - ["AddedFireDamage4Inverted"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 28, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (7-10) to (15-18) Fire Damage to Attacks against you" }, } }, - ["AddedFireDamage5Inverted"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 35, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (9-12) to (19-22) Fire Damage to Attacks against you" }, } }, - ["AddedFireDamage6Inverted"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 44, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (11-15) to (23-27) Fire Damage to Attacks against you" }, } }, - ["AddedFireDamage7Inverted"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 52, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (13-18) to (27-31) Fire Damage to Attacks against you" }, } }, - ["AddedFireDamage8Inverted"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 64, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (16-22) to (32-38) Fire Damage to Attacks against you" }, } }, - ["AddedFireDamage9Inverted"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 76, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (19-25) to (39-45) Fire Damage to Attacks against you" }, } }, - ["AddedColdDamage1Inverted"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks against you", statOrder = { 1370 }, level = 2, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds 1 to 2 Cold Damage to Attacks against you" }, } }, - ["AddedColdDamage2Inverted"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 13, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (3-4) to (7-8) Cold Damage to Attacks against you" }, } }, - ["AddedColdDamage3Inverted"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 21, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (5-7) to (10-12) Cold Damage to Attacks against you" }, } }, - ["AddedColdDamage4Inverted"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 29, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (6-9) to (13-16) Cold Damage to Attacks against you" }, } }, - ["AddedColdDamage5Inverted"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 36, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (8-11) to (16-19) Cold Damage to Attacks against you" }, } }, - ["AddedColdDamage6Inverted"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 45, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (10-13) to (20-24) Cold Damage to Attacks against you" }, } }, - ["AddedColdDamage7Inverted"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 53, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (12-16) to (24-28) Cold Damage to Attacks against you" }, } }, - ["AddedColdDamage8Inverted"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 65, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (14-19) to (29-34) Cold Damage to Attacks against you" }, } }, - ["AddedColdDamage9Inverted"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 77, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (17-22) to (34-40) Cold Damage to Attacks against you" }, } }, - ["AddedLightningDamage1Inverted"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 3, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds 1 to 5 Lightning Damage to Attacks against you" }, } }, - ["AddedLightningDamage2Inverted"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 13, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds 1 to (14-15) Lightning Damage to Attacks against you" }, } }, - ["AddedLightningDamage3Inverted"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 22, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks against you" }, } }, - ["AddedLightningDamage4Inverted"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 28, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks against you" }, } }, - ["AddedLightningDamage5Inverted"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 35, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-3) to (33-34) Lightning Damage to Attacks against you" }, } }, - ["AddedLightningDamage6Inverted"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 44, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-4) to (40-43) Lightning Damage to Attacks against you" }, } }, - ["AddedLightningDamage7Inverted"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 52, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (2-5) to (47-50) Lightning Damage to Attacks against you" }, } }, - ["AddedLightningDamage8Inverted"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 64, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (3-6) to (57-61) Lightning Damage to Attacks against you" }, } }, - ["AddedLightningDamage9Inverted"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 76, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (3-7) to (68-72) Lightning Damage to Attacks against you" }, } }, - ["LifeLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, - ["LifeLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, - ["LifeLeechPermyriad3Inverted"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, - ["LifeLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, - ["LifeLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, - ["LifeLeechPermyriadSuffix3Inverted"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, - ["ManaLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana" }, } }, - ["ManaLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana" }, } }, - ["ManaLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana" }, } }, - ["ManaLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana" }, } }, - ["LifeRegenerationEnhancedLevel50ModInverted"] = { type = "Suffix", affix = "of Guatelitzi", "Lose (32-40) Life per second", "Lose 0.4% of Life per second", statOrder = { 1575, 1943 }, level = 50, group = "LifeDegenerationAndPercentGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1661347488] = { "Lose 0.4% of Life per second" }, [771127912] = { "Lose (32-40) Life per second" }, } }, - ["IncreasedEnergyShieldEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Lose 0.4% of Energy Shield per second", statOrder = { 1558, 2647 }, level = 50, group = "EnergyShieldAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [761102773] = { "Lose 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, - ["FireResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1625, 1671 }, level = 50, group = "FireResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [45548764] = { "0.4% of Fire Damage Leeched by Enemy as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, - ["ColdResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1631, 1676 }, level = 50, group = "ColdResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3271464175] = { "0.4% of Cold Damage Leeched by Enemy as Life" }, } }, - ["LightningResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1636, 1680 }, level = 50, group = "LightningResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [3925004212] = { "0.4% of Lightning Damage Leeched by Enemy as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, - ["IncreasedManaEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Lose (5-7) Mana per second", statOrder = { 1579, 1583 }, level = 50, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [838272676] = { "Lose (5-7) Mana per second" }, } }, - ["IncreasedManaEnhancedLevel50ModCostNewInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills Cost -(8-6) Mana", statOrder = { 1579, 10064 }, level = 50, group = "IncreasedManaAndBaseCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [407482587] = { "Non-Channelling Skills Cost -(8-6) Mana" }, } }, - ["AddedPhysicalDamageEssenceAmulet7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (16-18) to (27-30) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamageEssenceRing5Inverted"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 58, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (6-8) to (12-13) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamageEssenceRing6Inverted"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 74, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (7-9) to (13-15) Physical Damage to Attacks against you" }, } }, - ["AddedPhysicalDamageEssenceRing7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (10-11) to (16-17) Physical Damage to Attacks against you" }, } }, - ["AddedFireDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 82, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (23-27) to (43-48) Fire Damage to Attacks against you" }, } }, - ["AddedColdDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 82, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (20-24) to (38-44) Cold Damage to Attacks against you" }, } }, - ["AddedLightningDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 82, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (4-8) to (71-76) Lightning Damage to Attacks against you" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Hits against you gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1931 }, level = 63, group = "SelfPhysAsExtraFireTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [248982637] = { "Hits against you gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["AddedColdDamagePerFrenzyChargeEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge", statOrder = { 4272 }, level = 63, group = "SelfColdDamageTakenPerFrenzy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [178386603] = { "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge" }, } }, - ["ChanceToRecoverManaOnSkillUseEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "10% chance to lose 10% of Mana when you use a Skill", statOrder = { 3474 }, level = 63, group = "ChanceToLoseManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2858930612] = { "10% chance to lose 10% of Mana when you use a Skill" }, } }, - ["DamageCannotBeReflectedPercentEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 60% increased Reflected Damage", statOrder = { 9883 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 60% increased Reflected Damage" }, } }, - ["PhysicalDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched by Enemy as Life", statOrder = { 1667 }, level = 60, group = "EnemyPhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3423022686] = { "0.4% of Physical Damage Leeched by Enemy as Life" }, } }, - ["FireDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 60, group = "EnemyFireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [45548764] = { "0.4% of Fire Damage Leeched by Enemy as Life" }, } }, - ["ColdDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1676 }, level = 60, group = "EnemyColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3271464175] = { "0.4% of Cold Damage Leeched by Enemy as Life" }, } }, - ["LightningDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1680 }, level = 60, group = "EnemyLightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3925004212] = { "0.4% of Lightning Damage Leeched by Enemy as Life" }, } }, - ["ChaosDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched by Enemy as Life", statOrder = { 1683 }, level = 60, group = "EnemyChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [334180828] = { "0.4% of Chaos Damage Leeched by Enemy as Life" }, } }, - ["AddedManaRegenerationDelveInverted"] = { type = "Suffix", affix = "of the Underground", "Lose (3-5) Mana per second", statOrder = { 1583 }, level = 60, group = "ManaDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [838272676] = { "Lose (3-5) Mana per second" }, } }, - ["WeaponSpellDamageTriggerSkillOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(70-74)% increased Spell Damage", statOrder = { 832, 832.1, 1223 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } }, - ["WeaponSpellDamageTriggerSkillOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(105-110)% increased Spell Damage", statOrder = { 832, 832.1, 1223 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } }, - ["MercenaryModLightningSkillManaCostWhileShocked"] = { type = "Suffix", affix = "of Infamy", "40% less Mana cost of Lightning Skills while Shocked", statOrder = { 7467 }, level = 68, group = "LightningSkillManaCostWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [3964669425] = { "40% less Mana cost of Lightning Skills while Shocked" }, } }, - ["MercenaryModTravelSkillCrit"] = { type = "Prefix", affix = "Infamous", "Your Travel Skills Critically Strike once every 3 uses", statOrder = { 10425 }, level = 68, group = "TravelSkillCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [335741860] = { "Your Travel Skills Critically Strike once every 3 uses" }, } }, - ["MercenaryModRecoupWhileFrozen"] = { type = "Suffix", affix = "of Infamy", "(50-90)% of Damage taken while Frozen Recouped as Life", statOrder = { 6124 }, level = 68, group = "RecoupWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2585984986] = { "(50-90)% of Damage taken while Frozen Recouped as Life" }, } }, - ["MercenaryModSkipSacrifice"] = { type = "Suffix", affix = "of Infamy", "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had", statOrder = { 10072, 10072.1 }, level = 68, group = "SkipSacrifice", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1761297940] = { "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had" }, } }, - ["MercenaryModMinionFireConvertToChaos"] = { type = "Prefix", affix = "Infamous", "Minions convert 100% of Fire Damage to Chaos Damage", statOrder = { 9278 }, level = 68, group = "MinionFireConvertToChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "chaos", "minion" }, tradeHashes = { [2727256287] = { "Minions convert 100% of Fire Damage to Chaos Damage" }, } }, - ["MercenaryModRecentMinionCrit"] = { type = "Suffix", affix = "of Infamy", "Minions created Recently have (60-100)% increased Critical Hit Chance", statOrder = { 9339 }, level = 68, group = "RecentMinionCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "critical" }, tradeHashes = { [3913090641] = { "Minions created Recently have (60-100)% increased Critical Hit Chance" }, } }, - ["MercenaryModTrapMineChain"] = { type = "Suffix", affix = "of Infamy", "Skills used by your Traps and Mines Chain 2 additional times", statOrder = { 10417 }, level = 68, group = "TrapMineChain", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2999750998] = { "Skills used by your Traps and Mines Chain 2 additional times" }, } }, - ["MercenaryModMineLifeReserve"] = { type = "Prefix", affix = "Infamous", "Your Skills that throw Mines reserve Life instead of Mana", statOrder = { 10071 }, level = 68, group = "MineLifeReserve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1192252020] = { "Your Skills that throw Mines reserve Life instead of Mana" }, } }, - ["MercenaryModProjSpeedVariance"] = { type = "Suffix", affix = "of Infamy", "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random", statOrder = { 9746, 9746.1 }, level = 68, group = "MeleeProjSpeedVariance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1563068812] = { "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random" }, } }, - ["MercenaryModMaxBlades"] = { type = "Prefix", affix = "Infamous", "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades", statOrder = { 9175 }, level = 68, group = "MaxBlades", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3954265754] = { "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades" }, } }, - ["MercenaryModDebilitate"] = { type = "Prefix", affix = "Infamous", "Debuffs on you expire (80-100)% faster", "You are Debilitated", statOrder = { 6151, 9975 }, level = 68, group = "SelfDebilitate", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, [1989416016] = { "You are Debilitated" }, } }, - ["MercenaryModAshWarcries"] = { type = "Suffix", affix = "of Infamy", "Your Warcries cover Enemies in Ash for 5 seconds", statOrder = { 10560 }, level = 68, group = "CoverInAshWarcry", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3946593978] = { "Your Warcries cover Enemies in Ash for 5 seconds" }, } }, - ["MercenaryModRageDecaySpeed"] = { type = "Prefix", affix = "Infamous", "Inherent loss of Rage is 20% slower", statOrder = { 9794 }, level = 68, group = "RageDecaySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3645269560] = { "Inherent loss of Rage is 20% slower" }, } }, - ["MercenaryModAddCritPerExert"] = { type = "Suffix", affix = "of Infamy", "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them", statOrder = { 4551 }, level = 68, group = "AddCritPerExert", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [3528761893] = { "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them" }, } }, - ["MercenaryModLGOHIgnitedEnemies"] = { type = "Suffix", affix = "of Infamy", "Gain (5-10) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 68, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (5-10) Life for each Ignited Enemy hit with Attacks" }, } }, - ["MercenaryModFortificationDamageAura"] = { type = "Suffix", affix = "of Infamy", "Nearby Enemies take 1% increased Physical Damage per two Fortification on you", statOrder = { 9464 }, level = 68, group = "FortificationDamageAura", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [4187518631] = { "Nearby Enemies take 1% increased Physical Damage per two Fortification on you" }, } }, - ["MercenaryModLifeCostOnLowLife"] = { type = "Suffix", affix = "of Infamy", "30% less Life cost of Skills while on Low Life", statOrder = { 10059 }, level = 68, group = "LifeCostOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3452986510] = { "30% less Life cost of Skills while on Low Life" }, } }, - ["MercenaryModMinionCDR"] = { type = "Suffix", affix = "of Infamy", "Minions have 20% increased Cooldown Recovery Rate", statOrder = { 9288 }, level = 68, group = "MinionCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have 20% increased Cooldown Recovery Rate" }, } }, - ["MercenaryModConsecratedChaosRes"] = { type = "Suffix", affix = "of Infamy", "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies", statOrder = { 10689 }, level = 68, group = "ConsecratedChaosRes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1235229114] = { "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies" }, } }, - ["MercenaryModImpaleEffectFromDistance"] = { type = "Suffix", affix = "of Infamy", "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect", statOrder = { 7250 }, level = 68, group = "ImpaleEffectFromDistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2521866096] = { "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect" }, } }, - ["MercenaryModClonesInheritGloves"] = { type = "Prefix", affix = "Infamous", "Your Blink and Mirror arrow clones use your Gloves", statOrder = { 5223 }, level = 68, group = "ClonesInheritGloves", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [3148879215] = { "Your Blink and Mirror arrow clones use your Gloves" }, } }, - ["MercenaryModSingleProjAOE"] = { type = "Suffix", affix = "of Infamy", "30% more Area of Effect with Bow Attacks that fire a single Projectile", statOrder = { 4723 }, level = 68, group = "SingleProjAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2379109976] = { "30% more Area of Effect with Bow Attacks that fire a single Projectile" }, } }, - ["MercenaryModSpellslingerReservation"] = { type = "Suffix", affix = "of Infamy", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10200 }, level = 68, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack", "caster" }, tradeHashes = { [3305838454] = { "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" }, } }, - ["MercenaryModMaimDOT"] = { type = "Suffix", affix = "of Infamy", "Enemies Maimed by you take 10% increased Damage Over Time", statOrder = { 6415 }, level = 68, group = "EnchantmentMaim", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2745149002] = { "Enemies Maimed by you take 10% increased Damage Over Time" }, } }, - ["MercenaryModUnaffectedShock"] = { type = "Suffix", affix = "of Infamy", "Unaffected by Shock while Channelling", statOrder = { 10480 }, level = 68, group = "UnaffectedByShockWhileChannel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2967697688] = { "Unaffected by Shock while Channelling" }, } }, - ["MercenaryModCurseEffect"] = { type = "Prefix", affix = "Infamous", "20% reduced Curse Duration", "15% increased Effect of your Curses", statOrder = { 1781, 2596 }, level = 68, group = "CurseEffectReduceCurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [3824372849] = { "20% reduced Curse Duration" }, } }, - ["MercenaryModCurseChillingAreas"] = { type = "Prefix", affix = "Infamous", "Curses on Enemies in your Chilling Areas have 15% increased Effect", statOrder = { 5777 }, level = 68, group = "CurseEffectChillingAreas", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [608898129] = { "Curses on Enemies in your Chilling Areas have 15% increased Effect" }, } }, - ["MagicSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels", statOrder = { 8023 }, level = 50, group = "MagicSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1938324031] = { "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels" }, } }, - ["MagicMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels", statOrder = { 8022 }, level = 50, group = "MagicMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3949536301] = { "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels" }, } }, - ["MagicHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels", statOrder = { 8021 }, level = 50, group = "MagicHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [654501336] = { "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels" }, } }, - ["MagicGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels", statOrder = { 8020 }, level = 50, group = "MagicGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2526952837] = { "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels" }, } }, - ["RareSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels", statOrder = { 8027 }, level = 50, group = "RareSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3524275808] = { "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels" }, } }, - ["RareMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels", statOrder = { 8026 }, level = 50, group = "RareMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1217940944] = { "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels" }, } }, - ["RareHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels", statOrder = { 8025 }, level = 50, group = "RareHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1337730278] = { "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels" }, } }, - ["RareGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels", statOrder = { 8024 }, level = 50, group = "RareGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1974290842] = { "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels" }, } }, + ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(8-12) to Strength" }, } }, + ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrder = { 1200 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-17) to Strength" }, } }, + ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrder = { 1200 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(18-22) to Strength" }, } }, + ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrder = { 1200 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(23-27) to Strength" }, } }, + ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrder = { 1200 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-32) to Strength" }, } }, + ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrder = { 1200 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(33-37) to Strength" }, } }, + ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrder = { 1200 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(38-42) to Strength" }, } }, + ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrder = { 1200 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(43-50) to Strength" }, } }, + ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrder = { 1200 }, level = 82, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(51-55) to Strength" }, } }, + ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrder = { 1200 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(56-60) to Strength" }, } }, + ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrder = { 1200 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(51-58) to Strength" }, } }, + ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(8-12) to Dexterity" }, } }, + ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrder = { 1201 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-17) to Dexterity" }, } }, + ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrder = { 1201 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(18-22) to Dexterity" }, } }, + ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrder = { 1201 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(23-27) to Dexterity" }, } }, + ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrder = { 1201 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-32) to Dexterity" }, } }, + ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrder = { 1201 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(33-37) to Dexterity" }, } }, + ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrder = { 1201 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(38-42) to Dexterity" }, } }, + ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrder = { 1201 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(43-50) to Dexterity" }, } }, + ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrder = { 1201 }, level = 82, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(51-55) to Dexterity" }, } }, + ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrder = { 1201 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(56-60) to Dexterity" }, } }, + ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrder = { 1201 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(51-58) to Dexterity" }, } }, + ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-12) to Intelligence" }, } }, + ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrder = { 1202 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-17) to Intelligence" }, } }, + ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrder = { 1202 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(18-22) to Intelligence" }, } }, + ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrder = { 1202 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-27) to Intelligence" }, } }, + ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrder = { 1202 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-32) to Intelligence" }, } }, + ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrder = { 1202 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(33-37) to Intelligence" }, } }, + ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrder = { 1202 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(38-42) to Intelligence" }, } }, + ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrder = { 1202 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(43-50) to Intelligence" }, } }, + ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrder = { 1202 }, level = 82, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(51-55) to Intelligence" }, } }, + ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrder = { 1202 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(56-60) to Intelligence" }, } }, + ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrder = { 1202 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(51-58) to Intelligence" }, } }, + ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(1-4) to all Attributes" }, } }, + ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrder = { 1199 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-8) to all Attributes" }, } }, + ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrder = { 1199 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(9-12) to all Attributes" }, } }, + ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrder = { 1199 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(13-16) to all Attributes" }, } }, + ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrder = { 1199 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-20) to all Attributes" }, } }, + ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrder = { 1199 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-24) to all Attributes" }, } }, + ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrder = { 1199 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-28) to all Attributes" }, } }, + ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrder = { 1199 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(29-32) to all Attributes" }, } }, + ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrder = { 1199 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(33-35) to all Attributes" }, } }, + ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(3-9) to maximum Life" }, } }, + ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-24) to maximum Life", statOrder = { 1591 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-24) to maximum Life" }, } }, + ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(25-39) to maximum Life", statOrder = { 1591 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-39) to maximum Life" }, } }, + ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(40-54) to maximum Life", statOrder = { 1591 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-54) to maximum Life" }, } }, + ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(55-69) to maximum Life", statOrder = { 1591 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-69) to maximum Life" }, } }, + ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 1591 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, + ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 1591 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, + ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(100-114) to maximum Life", statOrder = { 1591 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-114) to maximum Life" }, } }, + ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(115-129) to maximum Life", statOrder = { 1591 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(115-129) to maximum Life" }, } }, + ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(130-144) to maximum Life", statOrder = { 1591 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-144) to maximum Life" }, } }, + ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(145-159) to maximum Life", statOrder = { 1591 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(145-159) to maximum Life" }, } }, + ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(160-174) to maximum Life", statOrder = { 1591 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-174) to maximum Life" }, } }, + ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(175-189) to maximum Life", statOrder = { 1591 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, + ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrder = { 1591 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(5-14) to maximum Life" }, } }, + ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrder = { 1591 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-30) to maximum Life" }, } }, + ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrder = { 1591 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(31-45) to maximum Life" }, } }, + ["IncreasedLifeEssence4"] = { type = "Prefix", affix = "Essences", "+(46-60) to maximum Life", statOrder = { 1591 }, level = 42, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(46-60) to maximum Life" }, } }, + ["IncreasedLifeEssence5"] = { type = "Prefix", affix = "Essences", "+(61-75) to maximum Life", statOrder = { 1591 }, level = 58, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(61-75) to maximum Life" }, } }, + ["IncreasedLifeEssence6"] = { type = "Prefix", affix = "Essences", "+(76-90) to maximum Life", statOrder = { 1591 }, level = 74, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(76-90) to maximum Life" }, } }, + ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrder = { 1591 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-126) to maximum Life" }, } }, + ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrder = { 1591 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(110-116) to maximum Life" }, } }, + ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrder = { 1591 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-106) to maximum Life" }, } }, + ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(91-105) to maximum Life", statOrder = { 1591 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(91-105) to maximum Life" }, } }, + ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1591, 1593 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(70-79) to maximum Life" }, } }, + ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1591, 1593 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, [3299347043] = { "+(110-119) to maximum Life" }, } }, + ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-19) to maximum Mana" }, } }, + ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrder = { 1602 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-24) to maximum Mana" }, } }, + ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrder = { 1602 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-29) to maximum Mana" }, } }, + ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrder = { 1602 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-34) to maximum Mana" }, } }, + ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrder = { 1602 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-39) to maximum Mana" }, } }, + ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrder = { 1602 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-44) to maximum Mana" }, } }, + ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrder = { 1602 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-49) to maximum Mana" }, } }, + ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrder = { 1602 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-54) to maximum Mana" }, } }, + ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrder = { 1602 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-59) to maximum Mana" }, } }, + ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrder = { 1602 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-64) to maximum Mana" }, } }, + ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrder = { 1602 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-68) to maximum Mana" }, } }, + ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrder = { 1602 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, } }, + ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrder = { 1602 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, } }, + ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrder = { 1602 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-77) to maximum Mana" }, } }, + ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1602, 1603 }, level = 1, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [2748665614] = { "(7-10)% increased maximum Mana" }, } }, + ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1602, 1767 }, level = 1, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } }, + ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1602, 1605 }, level = 1, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [4291461939] = { "Regenerate (5-7) Mana per second" }, } }, + ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1602, 2255 }, level = 1, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1602, 1914 }, level = 1, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [3736589033] = { "-(8-6) to Total Mana Cost of Skills" }, } }, + ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-39) to maximum Mana" }, } }, + ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrder = { 1602 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-49) to maximum Mana" }, } }, + ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrder = { 1602 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-59) to maximum Mana" }, } }, + ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrder = { 1602 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-69) to maximum Mana" }, } }, + ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrder = { 1602 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-79) to maximum Mana" }, } }, + ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrder = { 1602 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, + ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrder = { 1602 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-99) to maximum Mana" }, } }, + ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrder = { 1602 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-109) to maximum Mana" }, } }, + ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrder = { 1602 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(110-119) to maximum Mana" }, } }, + ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrder = { 1602 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-129) to maximum Mana" }, } }, + ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrder = { 1602 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(130-139) to maximum Mana" }, } }, + ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrder = { 1602 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(140-159) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-49) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrder = { 1602 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-59) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrder = { 1602 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-69) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrder = { 1602 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-79) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrder = { 1602 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrder = { 1602 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-99) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrder = { 1602 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-119) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrder = { 1602 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-139) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrder = { 1602 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(140-159) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrder = { 1602 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(160-179) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrder = { 1602 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-199) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrder = { 1602 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(200-229) to maximum Mana" }, } }, + ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrder = { 1580 }, level = 3, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(1-3) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrder = { 1580 }, level = 11, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(4-8) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrder = { 1580 }, level = 17, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-12) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrder = { 1580 }, level = 23, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(13-15) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrder = { 1580 }, level = 29, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(16-19) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrder = { 1580 }, level = 35, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-22) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrder = { 1580 }, level = 42, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(23-26) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrder = { 1580 }, level = 50, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(27-31) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrder = { 1580 }, level = 59, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(32-37) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrder = { 1580 }, level = 68, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(38-43) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrder = { 1580 }, level = 74, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrder = { 1580 }, level = 80, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(48-51) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrder = { 1580, 1583 }, level = 1, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-10)% increased maximum Energy Shield" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1580, 2672 }, level = 1, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrder = { 1581 }, level = 3, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(3-5) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrder = { 1581 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(6-11) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrder = { 1581 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(12-16) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrder = { 1581 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(17-23) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrder = { 1581 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(24-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrder = { 1581 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(31-38) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrder = { 1581 }, level = 43, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(39-49) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrder = { 1581 }, level = 51, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-61) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrder = { 1581 }, level = 60, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(62-76) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrder = { 1581 }, level = 69, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(77-90) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrder = { 1581 }, level = 75, group = "LocalEnergyShield", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(91-100) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrder = { 1581 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(62-72) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrder = { 1581 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(73-82) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(88-95) to maximum Energy Shield", statOrder = { 1581 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(88-95) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrder = { 1581 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-59) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrder = { 1581 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-69) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(75-85) to maximum Energy Shield", statOrder = { 1581 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(75-85) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrder = { 1581 }, level = 42, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(18-26) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrder = { 1581 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(27-32) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrder = { 1581 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(28-35) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(38-45) to maximum Energy Shield", statOrder = { 1581 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(38-45) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrder = { 1581 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(39-45) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrder = { 1581 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(46-51) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrder = { 1581 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(52-58) to maximum Energy Shield" }, } }, + ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrder = { 1290 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 2 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1290 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-5) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrder = { 1290 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (6-7) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1290 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1290 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1290 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrder = { 1290 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-10) to (15-18) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrder = { 1290 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (19-22) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrder = { 1290 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (11-15) to (22-26) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 1290 }, level = 5, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver2"] = { type = "Prefix", affix = "Burnished", "Adds (3-4) to (6-8) Physical Damage to Attacks", statOrder = { 1290 }, level = 13, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (6-8) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver3"] = { type = "Prefix", affix = "Polished", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1290 }, level = 19, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (9-10) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver4"] = { type = "Prefix", affix = "Honed", "Adds (6-9) to (13-16) Physical Damage to Attacks", statOrder = { 1290 }, level = 28, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-16) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver5"] = { type = "Prefix", affix = "Gleaming", "Adds (8-11) to (16-18) Physical Damage to Attacks", statOrder = { 1290 }, level = 35, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-11) to (16-18) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver6"] = { type = "Prefix", affix = "Annealed", "Adds (10-13) to (19-23) Physical Damage to Attacks", statOrder = { 1290 }, level = 44, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-13) to (19-23) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (11-16) to (23-26) Physical Damage to Attacks", statOrder = { 1290 }, level = 52, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (11-16) to (23-26) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver8"] = { type = "Prefix", affix = "Tempered", "Adds (14-19) to (28-33) Physical Damage to Attacks", statOrder = { 1290 }, level = 64, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (14-19) to (28-33) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageQuiver9"] = { type = "Prefix", affix = "Flaring", "Adds (17-23) to (34-39) Physical Damage to Attacks", statOrder = { 1290 }, level = 76, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (17-23) to (34-39) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrder = { 1290 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (16-18) to (27-30) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrder = { 1290 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-8) to (12-13) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrder = { 1290 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (13-15) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrder = { 1290 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-11) to (16-17) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrder = { 1290 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-8) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1290 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1290 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (9-10) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrder = { 1290 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (10-11) Physical Damage to Attacks" }, } }, + ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 1 to 2 Fire Damage to Attacks" }, } }, + ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrder = { 1384 }, level = 12, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (7-8) Fire Damage to Attacks" }, } }, + ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrder = { 1384 }, level = 20, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } }, + ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrder = { 1384 }, level = 28, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-10) to (15-18) Fire Damage to Attacks" }, } }, + ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1384 }, level = 35, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } }, + ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrder = { 1384 }, level = 44, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-15) to (23-27) Fire Damage to Attacks" }, } }, + ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1384 }, level = 52, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (27-31) Fire Damage to Attacks" }, } }, + ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrder = { 1384 }, level = 64, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (16-22) to (32-38) Fire Damage to Attacks" }, } }, + ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrder = { 1384 }, level = 76, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (19-25) to (39-45) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver2"] = { type = "Prefix", affix = "Smouldering", "Adds (5-7) to (10-12) Fire Damage to Attacks", statOrder = { 1384 }, level = 12, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (10-12) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver3"] = { type = "Prefix", affix = "Smoking", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1384 }, level = 20, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver4"] = { type = "Prefix", affix = "Burning", "Adds (11-14) to (21-25) Fire Damage to Attacks", statOrder = { 1384 }, level = 28, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-14) to (21-25) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver5_"] = { type = "Prefix", affix = "Flaming", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1384 }, level = 35, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (27-31) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver6"] = { type = "Prefix", affix = "Scorching", "Adds (17-22) to (33-38) Fire Damage to Attacks", statOrder = { 1384 }, level = 44, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (17-22) to (33-38) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver7"] = { type = "Prefix", affix = "Incinerating", "Adds (20-27) to (40-47) Fire Damage to Attacks", statOrder = { 1384 }, level = 52, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-27) to (40-47) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver8__"] = { type = "Prefix", affix = "Blasting", "Adds (27-35) to (53-62) Fire Damage to Attacks", statOrder = { 1384 }, level = 64, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (27-35) to (53-62) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiver9"] = { type = "Prefix", affix = "Cremating", "Adds (37-50) to (74-87) Fire Damage to Attacks", statOrder = { 1384 }, level = 76, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (37-50) to (74-87) Fire Damage to Attacks" }, } }, + ["AddedFireDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (41-55) to (81-96) Fire Damage to Attacks", statOrder = { 1384 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (41-55) to (81-96) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrder = { 1384 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (23-27) to (43-48) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrder = { 1384 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (11-14) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrder = { 1384 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-17) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrder = { 1384 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (16-18) Fire Damage to Attacks" }, } }, + ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrder = { 1384 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (17-21) Fire Damage to Attacks" }, } }, + ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrder = { 1393 }, level = 2, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to 2 Cold Damage to Attacks" }, } }, + ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrder = { 1393 }, level = 13, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (7-8) Cold Damage to Attacks" }, } }, + ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrder = { 1393 }, level = 21, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } }, + ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrder = { 1393 }, level = 29, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-9) to (13-16) Cold Damage to Attacks" }, } }, + ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrder = { 1393 }, level = 36, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (16-19) Cold Damage to Attacks" }, } }, + ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1393 }, level = 45, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } }, + ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1393 }, level = 53, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-28) Cold Damage to Attacks" }, } }, + ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrder = { 1393 }, level = 65, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-19) to (29-34) Cold Damage to Attacks" }, } }, + ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrder = { 1393 }, level = 77, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (17-22) to (34-40) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage to Attacks", statOrder = { 1393 }, level = 2, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (1-2) to 3 Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver2"] = { type = "Prefix", affix = "Chilled", "Adds (5-6) to (9-10) Cold Damage to Attacks", statOrder = { 1393 }, level = 13, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-10) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver3_"] = { type = "Prefix", affix = "Icy", "Adds (7-9) to (14-16) Cold Damage to Attacks", statOrder = { 1393 }, level = 21, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (14-16) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver4__"] = { type = "Prefix", affix = "Frigid", "Adds (10-13) to (19-22) Cold Damage to Attacks", statOrder = { 1393 }, level = 29, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (19-22) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver5"] = { type = "Prefix", affix = "Freezing", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1393 }, level = 36, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-28) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver6"] = { type = "Prefix", affix = "Frozen", "Adds (15-20) to (30-35) Cold Damage to Attacks", statOrder = { 1393 }, level = 45, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (15-20) to (30-35) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver7"] = { type = "Prefix", affix = "Glaciated", "Adds (18-24) to (36-42) Cold Damage to Attacks", statOrder = { 1393 }, level = 53, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (18-24) to (36-42) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver8"] = { type = "Prefix", affix = "Polar", "Adds (23-32) to (48-55) Cold Damage to Attacks", statOrder = { 1393 }, level = 65, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (23-32) to (48-55) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiver9_"] = { type = "Prefix", affix = "Entombing", "Adds (33-45) to (67-78) Cold Damage to Attacks", statOrder = { 1393 }, level = 77, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (33-45) to (67-78) Cold Damage to Attacks" }, } }, + ["AddedColdDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (36-50) to (74-86) Cold Damage to Attacks", statOrder = { 1393 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (36-50) to (74-86) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrder = { 1393 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (20-24) to (38-44) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrder = { 1393 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-14) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1393 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1393 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } }, + ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrder = { 1393 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-10) to (14-17) Cold Damage to Attacks" }, } }, + ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1404 }, level = 3, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 5 Lightning Damage to Attacks" }, } }, + ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrder = { 1404 }, level = 13, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (14-15) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrder = { 1404 }, level = 22, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1404 }, level = 28, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrder = { 1404 }, level = 35, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (33-34) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrder = { 1404 }, level = 44, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (40-43) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrder = { 1404 }, level = 52, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (47-50) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrder = { 1404 }, level = 64, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (57-61) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrder = { 1404 }, level = 76, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-7) to (68-72) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (3-4) Lightning Damage to Attacks", statOrder = { 1404 }, level = 3, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (3-4) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (16-18) Lightning Damage to Attacks", statOrder = { 1404 }, level = 13, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 2 to (16-18) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (25-28) Lightning Damage to Attacks", statOrder = { 1404 }, level = 22, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (25-28) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver4"] = { type = "Prefix", affix = "Crackling", "Adds (2-3) to (35-40) Lightning Damage to Attacks", statOrder = { 1404 }, level = 28, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-3) to (35-40) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver5_"] = { type = "Prefix", affix = "Sparking", "Adds (2-4) to (44-50) Lightning Damage to Attacks", statOrder = { 1404 }, level = 35, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (44-50) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver6___"] = { type = "Prefix", affix = "Arcing", "Adds (2-5) to (56-62) Lightning Damage to Attacks", statOrder = { 1404 }, level = 44, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (56-62) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver7"] = { type = "Prefix", affix = "Shocking", "Adds (2-6) to (66-75) Lightning Damage to Attacks", statOrder = { 1404 }, level = 52, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (66-75) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver8"] = { type = "Prefix", affix = "Discharging", "Adds (3-8) to (89-99) Lightning Damage to Attacks", statOrder = { 1404 }, level = 64, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (89-99) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiver9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-11) to (124-140) Lightning Damage to Attacks", statOrder = { 1404 }, level = 76, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (5-11) to (124-140) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageQuiverEssence10__"] = { type = "Prefix", affix = "Essences", "Adds (6-13) to (136-155) Lightning Damage to Attacks", statOrder = { 1404 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (6-13) to (136-155) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrder = { 1404 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (4-8) to (71-76) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrder = { 1404 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (21-22) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrder = { 1404 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (23-24) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrder = { 1404 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (25-26) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1404 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrder = { 1404 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-30) Lightning Damage to Attacks" }, } }, + ["AddedChaosDamageQuiver1"] = { type = "Prefix", affix = "Malicious", "Adds (27-41) to (55-69) Chaos Damage to Attacks", statOrder = { 1411 }, level = 83, group = "ChaosDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (27-41) to (55-69) Chaos Damage to Attacks" }, } }, + ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1384, 1978 }, level = 1, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } }, + ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1393, 1980 }, level = 1, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } }, + ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1404, 1982 }, level = 1, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, + ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(5-6)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffixEssence3_"] = { type = "Suffix", affix = "of the Essence", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } }, + ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrder = { 2003 }, level = 4, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, + ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrder = { 2003 }, level = 15, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(9-16)% increased Elemental Damage" }, } }, + ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 2003 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(17-24)% increased Elemental Damage" }, } }, + ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 2003 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-29)% increased Elemental Damage" }, } }, + ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 2003 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-34)% increased Elemental Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1255, 2047 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-19)% increased Physical Damage" }, [691932474] = { "+(16-20) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1255, 2047 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-24)% increased Physical Damage" }, [691932474] = { "+(21-46) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1255, 2047 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [691932474] = { "+(47-72) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1255, 2047 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [691932474] = { "+(73-97) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1255, 2047 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [691932474] = { "+(98-123) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1255, 2047 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [691932474] = { "+(124-149) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1255, 2047 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-74)% increased Physical Damage" }, [691932474] = { "+(150-174) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1255, 2047 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-79)% increased Physical Damage" }, [691932474] = { "+(175-200) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-49)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1255 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1255 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-84)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1255 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(85-109)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1255 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1255 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(135-154)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1255 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1255 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-179)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1255, 1958 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (9-10)% of Physical Damage as Extra Chaos Damage" }, } }, + ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1254 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1254 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(13-17)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1254 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-22)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrder = { 1254 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(23-28)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrder = { 1254 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-33)% increased Global Physical Damage" }, } }, + ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrder = { 1300 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrder = { 1300 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (8-9) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (13-15) Physical Damage", statOrder = { 1300 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (13-15) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (17-20) Physical Damage", statOrder = { 1300 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (17-20) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (11-14) to (21-25) Physical Damage", statOrder = { 1300 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (21-25) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-18) to (27-31) Physical Damage", statOrder = { 1300 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-18) to (27-31) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-21) to (32-38) Physical Damage", statOrder = { 1300 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-21) to (32-38) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (19-25) to (39-45) Physical Damage", statOrder = { 1300 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-25) to (39-45) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (22-29) to (45-52) Physical Damage", statOrder = { 1300 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (22-29) to (45-52) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageEssenceNew7"] = { type = "Prefix", affix = "Essences", "Adds (20-26) to (40-47) Physical Damage", statOrder = { 1300 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-26) to (40-47) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrder = { 1300 }, level = 2, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to (4-5) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-15) Physical Damage", statOrder = { 1300 }, level = 13, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-8) to (12-15) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-25) Physical Damage", statOrder = { 1300 }, level = 21, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-13) to (21-25) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (13-17) to (28-32) Physical Damage", statOrder = { 1300 }, level = 29, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-17) to (28-32) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (16-22) to (35-40) Physical Damage", statOrder = { 1300 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-22) to (35-40) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (20-28) to (43-51) Physical Damage", statOrder = { 1300 }, level = 46, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-28) to (43-51) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (25-33) to (52-61) Physical Damage", statOrder = { 1300 }, level = 54, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-33) to (52-61) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (30-40) to (63-73) Physical Damage", statOrder = { 1300 }, level = 65, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-40) to (63-73) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (34-47) to (72-84) Physical Damage", statOrder = { 1300 }, level = 77, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (34-47) to (72-84) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHandEssenceNew7__"] = { type = "Prefix", affix = "Essences", "Adds (31-42) to (65-75) Physical Damage", statOrder = { 1300 }, level = 82, group = "LocalPhysicalDamageTwoHanded", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (31-42) to (65-75) Physical Damage" }, } }, + ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrder = { 1582 }, level = 3, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(11-28)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 1582 }, level = 18, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 1582 }, level = 30, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 1582 }, level = 44, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 1582 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 1582 }, level = 72, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 1582 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 1582 }, level = 86, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 1564 }, level = 3, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 1564 }, level = 17, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 1564 }, level = 29, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 1564 }, level = 42, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 1564 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 1564 }, level = 72, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 1564 }, level = 84, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 1564 }, level = 86, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, + ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 1572 }, level = 3, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 1572 }, level = 19, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 1572 }, level = 30, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 1572 }, level = 44, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 1572 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 1572 }, level = 72, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 1572 }, level = 84, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 1572 }, level = 86, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, + ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 3, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 19, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 30, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 44, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 72, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 84, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 86, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 1575 }, level = 3, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 1575 }, level = 19, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 1575 }, level = 30, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 1575 }, level = 44, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 1575 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 1575 }, level = 72, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 1575 }, level = 84, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 1575 }, level = 86, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 3, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 19, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 30, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 44, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 72, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 84, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 86, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 3, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 85, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1582, 1925 }, level = 3, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1582, 1925 }, level = 18, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1582, 1925 }, level = 30, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1582, 1925 }, level = 44, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1582, 1925 }, level = 60, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1582, 1925 }, level = 78, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrder = { 1564, 1925 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrder = { 1564, 1925 }, level = 17, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrder = { 1564, 1925 }, level = 29, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrder = { 1564, 1925 }, level = 42, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrder = { 1564, 1925 }, level = 60, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrder = { 1564, 1925 }, level = 78, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrder = { 1564, 2272 }, level = 45, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-30)% increased Armour" }, [4253454700] = { "+2% Chance to Block" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrder = { 1564, 2272 }, level = 78, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, tradeHashes = { [1062208444] = { "(31-36)% increased Armour" }, [4253454700] = { "+3% Chance to Block" }, } }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrder = { 1572, 1925 }, level = 2, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrder = { 1572, 1925 }, level = 19, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrder = { 1572, 1925 }, level = 30, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrder = { 1572, 1925 }, level = 44, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrder = { 1572, 1925 }, level = 60, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrder = { 1572, 1925 }, level = 78, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1574, 1925 }, level = 2, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1574, 1925 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1574, 1925 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1574, 1925 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1574, 1925 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1574, 1925 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrder = { 1575, 1925 }, level = 2, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrder = { 1575, 1925 }, level = 19, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrder = { 1575, 1925 }, level = 30, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrder = { 1575, 1925 }, level = 44, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrder = { 1575, 1925 }, level = 60, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrder = { 1575, 1925 }, level = 78, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1576, 1925 }, level = 2, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1576, 1925 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1576, 1925 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1576, 1925 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1576, 1925 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1576, 1925 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1577, 1925 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [3523867985] = { "(6-13)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1577, 1925 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [3523867985] = { "(14-20)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1577, 1925 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [3523867985] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1577, 1925 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [3523867985] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1577, 1925 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [3523867985] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1577, 1925 }, level = 78, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [3523867985] = { "(39-42)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-4) Fire Damage" }, } }, + ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1386 }, level = 11, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, + ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1386 }, level = 18, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (25-29) Fire Damage" }, } }, + ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1386 }, level = 26, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-24) to (35-41) Fire Damage" }, } }, + ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (24-33) to (49-57) Fire Damage", statOrder = { 1386 }, level = 33, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (24-33) to (49-57) Fire Damage" }, } }, + ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (34-46) to (68-80) Fire Damage", statOrder = { 1386 }, level = 42, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (34-46) to (68-80) Fire Damage" }, } }, + ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (46-62) to (93-107) Fire Damage", statOrder = { 1386 }, level = 51, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (46-62) to (93-107) Fire Damage" }, } }, + ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (59-81) to (120-140) Fire Damage", statOrder = { 1386 }, level = 62, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (59-81) to (120-140) Fire Damage" }, } }, + ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (74-101) to (150-175) Fire Damage", statOrder = { 1386 }, level = 74, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (74-101) to (150-175) Fire Damage" }, } }, + ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (89-121) to (180-210) Fire Damage", statOrder = { 1386 }, level = 82, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (89-121) to (180-210) Fire Damage" }, } }, + ["LocalAddedFireDamage11"] = { type = "Prefix", affix = "Ravaging", "Adds (102-140) to (207-242) Fire Damage", statOrder = { 1386 }, level = 82, group = "LocalFireDamage", weightKey = { "deepwater_sword", "default", }, weightVal = { 54, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (102-140) to (207-242) Fire Damage" }, } }, + ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (80-109) to (162-189) Fire Damage", statOrder = { 1386 }, level = 82, group = "LocalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (80-109) to (162-189) Fire Damage" }, } }, + ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1386, 3798 }, level = 1, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, [709508406] = { "Adds (59-79) to (118-138) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (3-5) to (6-7) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1386 }, level = 11, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1386 }, level = 18, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1386 }, level = 26, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1386 }, level = 33, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1386 }, level = 42, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (63-85) to (128-148) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1386 }, level = 51, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (85-115) to (172-200) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1386 }, level = 62, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (110-150) to (223-260) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1386 }, level = 74, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (137-188) to (279-325) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1386 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (165-225) to (335-390) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (3-5) to (6-7) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1386 }, level = 11, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1386 }, level = 18, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1386 }, level = 26, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1386 }, level = 33, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1386 }, level = 42, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (63-85) to (128-148) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1386 }, level = 51, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (85-115) to (172-200) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1386 }, level = 62, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (110-150) to (223-260) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1386 }, level = 74, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (137-188) to (279-325) Fire Damage" }, } }, + ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1386 }, level = 82, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (165-225) to (335-390) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (149-203) to (302-351) Fire Damage", statOrder = { 1386 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (149-203) to (302-351) Fire Damage" }, } }, + ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (109-147) to (220-256) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1386, 3798 }, level = 1, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, [709508406] = { "Adds (109-147) to (220-256) Fire Damage" }, } }, + ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 1395 }, level = 2, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, + ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1395 }, level = 12, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, } }, + ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1395 }, level = 19, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (23-26) Cold Damage" }, } }, + ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1395 }, level = 27, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-21) to (31-37) Cold Damage" }, } }, + ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (22-30) to (44-51) Cold Damage", statOrder = { 1395 }, level = 34, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-30) to (44-51) Cold Damage" }, } }, + ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (31-42) to (62-71) Cold Damage", statOrder = { 1395 }, level = 43, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-42) to (62-71) Cold Damage" }, } }, + ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (41-57) to (83-97) Cold Damage", statOrder = { 1395 }, level = 52, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-57) to (83-97) Cold Damage" }, } }, + ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (54-74) to (108-126) Cold Damage", statOrder = { 1395 }, level = 63, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 0, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (54-74) to (108-126) Cold Damage" }, } }, + ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (68-92) to (136-157) Cold Damage", statOrder = { 1395 }, level = 75, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 0, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (68-92) to (136-157) Cold Damage" }, } }, + ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (81-111) to (163-189) Cold Damage", statOrder = { 1395 }, level = 82, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 0, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (81-111) to (163-189) Cold Damage" }, } }, + ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (73-100) to (147-170) Cold Damage", statOrder = { 1395 }, level = 82, group = "LocalColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (73-100) to (147-170) Cold Damage" }, } }, + ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1395, 3799 }, level = 1, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (53-72) to (107-124) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } }, + ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1395 }, level = 2, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (6-7) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1395 }, level = 12, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1395 }, level = 19, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1395 }, level = 27, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1395 }, level = 34, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-55) to (81-95) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1395 }, level = 43, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (57-77) to (114-132) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1395 }, level = 52, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (77-104) to (154-178) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1395 }, level = 63, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (99-136) to (200-232) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1395 }, level = 75, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (124-170) to (250-290) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1395 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (149-204) to (300-348) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1395 }, level = 2, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (6-7) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1395 }, level = 12, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1395 }, level = 19, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1395 }, level = 27, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1395 }, level = 34, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-55) to (81-95) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1395 }, level = 43, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (57-77) to (114-132) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1395 }, level = 52, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (77-104) to (154-178) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1395 }, level = 63, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (99-136) to (200-232) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1395 }, level = 75, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (124-170) to (250-290) Cold Damage" }, } }, + ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1395 }, level = 82, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (149-204) to (300-348) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (134-184) to (270-313) Cold Damage", statOrder = { 1395 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (134-184) to (270-313) Cold Damage" }, } }, + ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (100-132) to (197-230) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1395, 3799 }, level = 1, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (100-132) to (197-230) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } }, + ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrder = { 1406 }, level = 3, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (5-6) Lightning Damage" }, } }, + ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1406 }, level = 13, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } }, + ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1406 }, level = 19, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (41-48) Lightning Damage" }, } }, + ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1406 }, level = 31, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (57-67) Lightning Damage" }, } }, + ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (4-5) to (80-94) Lightning Damage", statOrder = { 1406 }, level = 34, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (80-94) Lightning Damage" }, } }, + ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (5-8) to (112-131) Lightning Damage", statOrder = { 1406 }, level = 42, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (112-131) Lightning Damage" }, } }, + ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (8-10) to (152-176) Lightning Damage", statOrder = { 1406 }, level = 51, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 0, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (152-176) Lightning Damage" }, } }, + ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (10-14) to (197-229) Lightning Damage", statOrder = { 1406 }, level = 63, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 0, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (10-14) to (197-229) Lightning Damage" }, } }, + ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (13-17) to (247-286) Lightning Damage", statOrder = { 1406 }, level = 74, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 0, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (13-17) to (247-286) Lightning Damage" }, } }, + ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-21) to (296-344) Lightning Damage", statOrder = { 1406 }, level = 82, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "deepwater_sword", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 0, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (15-21) to (296-344) Lightning Damage" }, } }, + ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (13-19) to (266-310) Lightning Damage", statOrder = { 1406 }, level = 82, group = "LocalLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (13-19) to (266-310) Lightning Damage" }, } }, + ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 1, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, [3336890334] = { "Adds (7-17) to (198-224) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1406 }, level = 3, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (10-11) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1406 }, level = 13, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1406 }, level = 19, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1406 }, level = 31, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1406 }, level = 34, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (148-173) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1406 }, level = 42, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (11-14) to (208-242) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1406 }, level = 51, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (14-20) to (281-327) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1406 }, level = 63, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (19-25) to (366-425) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1406 }, level = 74, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (23-32) to (458-531) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1406 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (28-38) to (549-638) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1406 }, level = 3, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (10-11) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1406 }, level = 13, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1406 }, level = 19, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1406 }, level = 31, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1406 }, level = 34, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (148-173) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1406 }, level = 42, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (11-14) to (208-242) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1406 }, level = 51, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (14-20) to (281-327) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1406 }, level = 63, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (19-25) to (366-425) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1406 }, level = 74, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (23-32) to (458-531) Lightning Damage" }, } }, + ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1406 }, level = 82, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (28-38) to (549-638) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (25-34) to (494-575) Lightning Damage", statOrder = { 1406 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (25-34) to (494-575) Lightning Damage" }, } }, + ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (12-31) to (367-415) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 1, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, [3336890334] = { "Adds (12-31) to (367-415) Lightning Damage" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(4-8)% increased Armour", statOrder = { 1563 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(4-8)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-13)% increased Armour", statOrder = { 1563 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(9-13)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(14-18)% increased Armour", statOrder = { 1563 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(19-23)% increased Armour", statOrder = { 1563 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-23)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(24-28)% increased Armour", statOrder = { 1563 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(24-28)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(29-32)% increased Armour", statOrder = { 1563 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-32)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(33-36)% increased Armour", statOrder = { 1563 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-36)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Armour", statOrder = { 1563 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-31)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Armour", statOrder = { 1563 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(32-33)% increased Armour" }, } }, + ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(4-8)% increased Evasion Rating", statOrder = { 1571 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(4-8)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(9-13)% increased Evasion Rating", statOrder = { 1571 }, level = 19, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(9-13)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(14-18)% increased Evasion Rating", statOrder = { 1571 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(19-23)% increased Evasion Rating", statOrder = { 1571 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-23)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(24-28)% increased Evasion Rating", statOrder = { 1571 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(24-28)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(29-32)% increased Evasion Rating", statOrder = { 1571 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-32)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(33-36)% increased Evasion Rating", statOrder = { 1571 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-36)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Evasion Rating", statOrder = { 1571 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-31)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Evasion Rating", statOrder = { 1571 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(32-33)% increased Evasion Rating" }, } }, + ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrder = { 1583 }, level = 3, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrder = { 1583 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(5-7)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrder = { 1583 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrder = { 1583 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(11-13)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrder = { 1583 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrder = { 1583 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(17-19)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrder = { 1583 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(20-22)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrder = { 1583 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrder = { 1583 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(11-13)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrder = { 1583 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrder = { 1583 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(17-18)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrder = { 1583 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } }, + ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(3-10) to Evasion Rating" }, } }, + ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrder = { 1566 }, level = 18, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(11-35) to Evasion Rating" }, } }, + ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrder = { 1566 }, level = 29, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(36-60) to Evasion Rating" }, } }, + ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrder = { 1566 }, level = 42, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(61-80) to Evasion Rating" }, } }, + ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrder = { 1566 }, level = 58, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(81-120) to Evasion Rating" }, } }, + ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrder = { 1566 }, level = 72, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(121-150) to Evasion Rating" }, } }, + ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrder = { 1566 }, level = 84, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(151-170) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrder = { 1566 }, level = 82, group = "EvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(151-180) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(6-12) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(6-12) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(13-35) to Evasion Rating", statOrder = { 1570 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(13-35) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-63) to Evasion Rating", statOrder = { 1570 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(36-63) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(64-82) to Evasion Rating", statOrder = { 1570 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(64-82) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(83-101) to Evasion Rating", statOrder = { 1570 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(83-101) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(102-120) to Evasion Rating", statOrder = { 1570 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(102-120) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(121-150) to Evasion Rating", statOrder = { 1570 }, level = 43, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-150) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(151-200) to Evasion Rating", statOrder = { 1570 }, level = 51, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(151-200) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(201-300) to Evasion Rating", statOrder = { 1570 }, level = 60, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(201-300) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(301-400) to Evasion Rating", statOrder = { 1570 }, level = 69, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(301-400) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(401-500) to Evasion Rating", statOrder = { 1570 }, level = 77, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(401-500) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Evasion Rating", statOrder = { 1570 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(390-475) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrder = { 1570 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-49) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Evasion Rating", statOrder = { 1570 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-140) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(141-160) to Evasion Rating", statOrder = { 1570 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(141-160) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(161-180) to Evasion Rating", statOrder = { 1570 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(161-180) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrder = { 1570 }, level = 26, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-25) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(81-90) to Evasion Rating", statOrder = { 1570 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(81-90) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Evasion Rating", statOrder = { 1570 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(91-105) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Evasion Rating", statOrder = { 1570 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(106-120) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Evasion Rating", statOrder = { 1570 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-135) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(151-225) to Evasion Rating", statOrder = { 1570 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(151-225) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Evasion Rating", statOrder = { 1570 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(226-300) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Evasion Rating", statOrder = { 1570 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(301-375) to Evasion Rating" }, } }, + ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(3-10) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrder = { 1561 }, level = 18, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(11-35) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrder = { 1561 }, level = 30, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(36-60) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrder = { 1561 }, level = 44, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(61-138) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrder = { 1561 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(139-322) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrder = { 1561 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(323-400) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrder = { 1561 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(401-460) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrder = { 1561 }, level = 86, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(461-540) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(481-520) to Armour", statOrder = { 1561 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(481-520) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrder = { 1561 }, level = 58, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(80-120) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrder = { 1561 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(121-200) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrder = { 1561 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(201-300) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(6-12) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(6-12) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(13-35) to Armour", statOrder = { 1562 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(13-35) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-63) to Armour", statOrder = { 1562 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(36-63) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(64-82) to Armour", statOrder = { 1562 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(64-82) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-101) to Armour", statOrder = { 1562 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(83-101) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(102-120) to Armour", statOrder = { 1562 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(102-120) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(121-150) to Armour", statOrder = { 1562 }, level = 43, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-150) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(151-200) to Armour", statOrder = { 1562 }, level = 51, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(151-200) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(201-300) to Armour", statOrder = { 1562 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(201-300) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(301-400) to Armour", statOrder = { 1562 }, level = 69, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(301-400) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(401-500) to Armour", statOrder = { 1562 }, level = 77, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(401-500) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Armour", statOrder = { 1562 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(390-475) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Armour", statOrder = { 1562 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-140) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(141-160) to Armour", statOrder = { 1562 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(141-160) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(161-180) to Armour", statOrder = { 1562 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(161-180) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Armour", statOrder = { 1562 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(91-105) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Armour", statOrder = { 1562 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(106-120) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Armour", statOrder = { 1562 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-135) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield5_"] = { type = "Prefix", affix = "Essences", "+(151-225) to Armour", statOrder = { 1562 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(151-225) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Armour", statOrder = { 1562 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(226-300) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Armour", statOrder = { 1562 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, } }, + ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(5-9) to Armour", "+(5-9) to Evasion Rating", statOrder = { 1562, 1570 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(5-9) to Armour" }, [53045048] = { "+(5-9) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(10-27) to Armour", "+(10-27) to Evasion Rating", statOrder = { 1562, 1570 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(10-27) to Armour" }, [53045048] = { "+(10-27) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(28-48) to Armour", "+(28-48) to Evasion Rating", statOrder = { 1562, 1570 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(28-48) to Armour" }, [53045048] = { "+(28-48) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(49-85) to Armour", "+(49-85) to Evasion Rating", statOrder = { 1562, 1570 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(49-85) to Armour" }, [53045048] = { "+(49-85) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-145) to Armour", "+(86-145) to Evasion Rating", statOrder = { 1562, 1570 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(86-145) to Armour" }, [53045048] = { "+(86-145) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(146-220) to Armour", "+(146-220) to Evasion Rating", statOrder = { 1562, 1570 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(146-220) to Armour" }, [53045048] = { "+(146-220) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(221-300) to Armour", "+(221-300) to Evasion Rating", statOrder = { 1562, 1570 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(221-300) to Armour" }, [53045048] = { "+(221-300) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(301-375) to Armour", "+(301-375) to Evasion Rating", statOrder = { 1562, 1570 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, [53045048] = { "+(301-375) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(5-9) to Armour", "+(3-4) to maximum Energy Shield", statOrder = { 1562, 1581 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(5-9) to Armour" }, [4052037485] = { "+(3-4) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(10-27) to Armour", "+(5-12) to maximum Energy Shield", statOrder = { 1562, 1581 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(10-27) to Armour" }, [4052037485] = { "+(5-12) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(28-48) to Armour", "+(13-22) to maximum Energy Shield", statOrder = { 1562, 1581 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(28-48) to Armour" }, [4052037485] = { "+(13-22) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(49-85) to Armour", "+(23-28) to maximum Energy Shield", statOrder = { 1562, 1581 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(49-85) to Armour" }, [4052037485] = { "+(23-28) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-145) to Armour", "+(29-48) to maximum Energy Shield", statOrder = { 1562, 1581 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(86-145) to Armour" }, [4052037485] = { "+(29-48) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(146-220) to Armour", "+(49-60) to maximum Energy Shield", statOrder = { 1562, 1581 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(146-220) to Armour" }, [4052037485] = { "+(49-60) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(221-300) to Armour", "+(61-72) to maximum Energy Shield", statOrder = { 1562, 1581 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(221-300) to Armour" }, [4052037485] = { "+(61-72) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(301-375) to Armour", "+(73-80) to maximum Energy Shield", statOrder = { 1562, 1581 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, [4052037485] = { "+(73-80) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(5-9) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrder = { 1570, 1581 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(5-9) to Evasion Rating" }, [4052037485] = { "+(3-4) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-27) to Evasion Rating", "+(5-12) to maximum Energy Shield", statOrder = { 1570, 1581 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(10-27) to Evasion Rating" }, [4052037485] = { "+(5-12) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(28-48) to Evasion Rating", "+(13-22) to maximum Energy Shield", statOrder = { 1570, 1581 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(28-48) to Evasion Rating" }, [4052037485] = { "+(13-22) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(49-85) to Evasion Rating", "+(23-28) to maximum Energy Shield", statOrder = { 1570, 1581 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(49-85) to Evasion Rating" }, [4052037485] = { "+(23-28) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(86-145) to Evasion Rating", "+(29-48) to maximum Energy Shield", statOrder = { 1570, 1581 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(86-145) to Evasion Rating" }, [4052037485] = { "+(29-48) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(146-220) to Evasion Rating", "+(49-60) to maximum Energy Shield", statOrder = { 1570, 1581 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(146-220) to Evasion Rating" }, [4052037485] = { "+(49-60) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(221-300) to Evasion Rating", "+(61-72) to maximum Energy Shield", statOrder = { 1570, 1581 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(221-300) to Evasion Rating" }, [4052037485] = { "+(61-72) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Phantasm's", "+(301-375) to Evasion Rating", "+(73-80) to maximum Energy Shield", statOrder = { 1570, 1581 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(301-375) to Evasion Rating" }, [4052037485] = { "+(73-80) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1562, 1570, 1591 }, level = 30, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(8-10) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, [53045048] = { "+(8-10) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1562, 1570, 1591 }, level = 46, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(11-21) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, [53045048] = { "+(11-21) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1562, 1570, 1591 }, level = 62, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(22-48) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, [53045048] = { "+(22-48) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1562, 1570, 1591 }, level = 78, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(49-60) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, [53045048] = { "+(49-60) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1562, 1581, 1591 }, level = 30, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(8-10) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(3-5) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1562, 1581, 1591 }, level = 46, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(11-21) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(6-8) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1562, 1581, 1591 }, level = 62, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(22-48) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(9-12) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1562, 1581, 1591 }, level = 78, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(49-60) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1570, 1581, 1591 }, level = 30, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(8-10) to Evasion Rating" }, [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(3-5) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1570, 1581, 1591 }, level = 46, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(11-21) to Evasion Rating" }, [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(6-8) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1570, 1581, 1591 }, level = 62, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(22-48) to Evasion Rating" }, [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(9-12) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1570, 1581, 1591 }, level = 78, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(49-60) to Evasion Rating" }, [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(20-32) to Armour", "+(18-23) to maximum Life", statOrder = { 1562, 1591 }, level = 30, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(20-32) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, } }, + ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(33-48) to Armour", "+(24-28) to maximum Life", statOrder = { 1562, 1591 }, level = 46, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(33-48) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, } }, + ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(49-96) to Armour", "+(29-33) to maximum Life", statOrder = { 1562, 1591 }, level = 62, group = "LocalBaseArmourAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(49-96) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, } }, + ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(97-144) to Armour", "+(34-38) to maximum Life", statOrder = { 1562, 1591 }, level = 78, group = "LocalBaseArmourAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(97-144) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, } }, + ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1570, 1591 }, level = 30, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(14-20) to Evasion Rating" }, [3299347043] = { "+(18-23) to maximum Life" }, } }, + ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1570, 1591 }, level = 46, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-42) to Evasion Rating" }, [3299347043] = { "+(24-28) to maximum Life" }, } }, + ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1570, 1591 }, level = 62, group = "LocalBaseEvasionRatingAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(43-95) to Evasion Rating" }, [3299347043] = { "+(29-33) to maximum Life" }, } }, + ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1570, 1591 }, level = 78, group = "LocalBaseEvasionRatingAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(96-120) to Evasion Rating" }, [3299347043] = { "+(34-38) to maximum Life" }, } }, + ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1581, 1591 }, level = 30, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(8-10) to maximum Energy Shield" }, } }, + ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1581, 1591 }, level = 46, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(11-15) to maximum Energy Shield" }, } }, + ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1581, 1591 }, level = 62, group = "LocalBaseEnergyShieldAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(16-25) to maximum Energy Shield" }, } }, + ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1581, 1591 }, level = 78, group = "LocalBaseEnergyShieldAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, + ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrder = { 1581, 1602 }, level = 30, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(11-15) to maximum Mana" }, [4052037485] = { "+(8-10) to maximum Energy Shield" }, } }, + ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrder = { 1581, 1602 }, level = 46, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(16-19) to maximum Mana" }, [4052037485] = { "+(11-15) to maximum Energy Shield" }, } }, + ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrder = { 1581, 1602 }, level = 62, group = "LocalBaseEnergyShieldAndMana", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(20-22) to maximum Mana" }, [4052037485] = { "+(16-25) to maximum Energy Shield" }, } }, + ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrder = { 1581, 1602 }, level = 78, group = "LocalBaseEnergyShieldAndMana", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(23-25) to maximum Mana" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, + ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 1821 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 1821 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 1821 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 1821 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 1821 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, + ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrder = { 1821 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "32% increased Movement Speed" }, } }, + ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1821, 3279 }, level = 1, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "5% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1821, 4252 }, level = 1, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1618589784] = { "(10-15)% chance to Avoid Bleeding" }, [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1821, 1872 }, level = 1, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [4053951709] = { "(10-15)% chance to Avoid being Poisoned" }, [2250533757] = { "30% increased Movement Speed" }, } }, + ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrder = { 1246 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, + ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrder = { 1246 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, + ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrder = { 1246 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, + ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrder = { 1246 }, level = 56, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, + ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrder = { 1246 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrder = { 1246 }, level = 2, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-19)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrder = { 1246 }, level = 11, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-29)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrder = { 1246 }, level = 23, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-39)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-54)% increased Spell Damage", statOrder = { 1246 }, level = 35, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-54)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(55-69)% increased Spell Damage", statOrder = { 1246 }, level = 46, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-69)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(70-84)% increased Spell Damage", statOrder = { 1246 }, level = 58, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-84)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrder = { 1246 }, level = 64, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 150, 150, 150, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-99)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrder = { 1246 }, level = 84, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 40, 40, 40, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-109)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrder = { 1246 }, level = 58, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-66)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrder = { 1246 }, level = 74, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(67-82)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrder = { 1246 }, level = 82, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(83-94)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, + ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(18-34)% increased Spell Damage", statOrder = { 1246 }, level = 2, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-34)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-52)% increased Spell Damage", statOrder = { 1246 }, level = 11, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-52)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(53-69)% increased Spell Damage", statOrder = { 1246 }, level = 23, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(53-69)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(70-95)% increased Spell Damage", statOrder = { 1246 }, level = 35, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-95)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(96-120)% increased Spell Damage", statOrder = { 1246 }, level = 46, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(96-120)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(121-149)% increased Spell Damage", statOrder = { 1246 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(121-149)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(150-174)% increased Spell Damage", statOrder = { 1246 }, level = 79, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-174)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(175-200)% increased Spell Damage", statOrder = { 1246 }, level = 84, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(175-200)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(88-116)% increased Spell Damage", statOrder = { 1246 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(88-116)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(117-144)% increased Spell Damage", statOrder = { 1246 }, level = 74, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(117-144)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(145-165)% increased Spell Damage", statOrder = { 1246 }, level = 82, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(145-165)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(123-130)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(123-130)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, + ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-12)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 1246, 1602 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(13-18)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 1246, 1602 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-18)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(19-24)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 1246, 1602 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(19-24)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(25-30)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 1246, 1602 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-30)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(31-36)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 1246, 1602 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-36)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(37-43)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 1246, 1602 }, level = 58, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(37-43)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(44-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 1246, 1602 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(44-49)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(14-22)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 1246, 1602 }, level = 2, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-22)% increased Spell Damage" }, [1050105434] = { "+(26-30) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(23-32)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 1246, 1602 }, level = 11, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-32)% increased Spell Damage" }, [1050105434] = { "+(31-35) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(33-43)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 1246, 1602 }, level = 23, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(33-43)% increased Spell Damage" }, [1050105434] = { "+(36-41) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(44-53)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 1246, 1602 }, level = 35, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(44-53)% increased Spell Damage" }, [1050105434] = { "+(42-47) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(54-63)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 1246, 1602 }, level = 46, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(54-63)% increased Spell Damage" }, [1050105434] = { "+(48-53) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(64-76)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 1246, 1602 }, level = 58, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(64-76)% increased Spell Damage" }, [1050105434] = { "+(54-59) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(77-86)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 1246, 1602 }, level = 80, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(77-86)% increased Spell Damage" }, [1050105434] = { "+(60-64) to maximum Mana" }, } }, + ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1217 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-95)% increased Trap Damage" }, } }, + ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(158-166)% increased Trap Damage", statOrder = { 1217 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(158-166)% increased Trap Damage" }, } }, + ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 1, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-22)% increased Trap Throwing Speed" }, } }, + ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1946, 3497 }, level = 1, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(17-20)% increased Trap Duration" }, [3417757416] = { "(14-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, + ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3515 }, level = 1, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (22-25)% increased Area of Effect" }, } }, + ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrder = { 192 }, level = 1, group = "LocalIncreaseSocketedTrapGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [407139870] = { "+2 to Level of Socketed Trap Gems" }, } }, + ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (90-95)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (133-138)% increased Damage" }, } }, + ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 1, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (13-15)% increased Attack Speed" }, [4000101551] = { "Minions have (13-15)% increased Cast Speed" }, } }, + ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5098 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-20)% increased Minion Duration" }, } }, + ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrder = { 1381 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-19)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrder = { 1381 }, level = 11, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-29)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrder = { 1381 }, level = 23, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-39)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-54)% increased Fire Damage", statOrder = { 1381 }, level = 35, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-54)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(55-69)% increased Fire Damage", statOrder = { 1381 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-69)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(70-84)% increased Fire Damage", statOrder = { 1381 }, level = 58, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 150, 150, 150, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-84)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrder = { 1381 }, level = 64, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 40, 40, 40, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(85-99)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrder = { 1381 }, level = 84, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(100-109)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(18-34)% increased Fire Damage", statOrder = { 1381 }, level = 2, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-34)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(35-52)% increased Fire Damage", statOrder = { 1381 }, level = 11, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-52)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(53-69)% increased Fire Damage", statOrder = { 1381 }, level = 23, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(53-69)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(70-95)% increased Fire Damage", statOrder = { 1381 }, level = 35, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-95)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(96-120)% increased Fire Damage", statOrder = { 1381 }, level = 46, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(96-120)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(121-149)% increased Fire Damage", statOrder = { 1381 }, level = 58, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(121-149)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(150-174)% increased Fire Damage", statOrder = { 1381 }, level = 79, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(150-174)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(175-200)% increased Fire Damage", statOrder = { 1381 }, level = 84, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(175-200)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1381, 1428 }, level = 1, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(75-79)% increased Fire Damage" }, [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(131-138)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1381, 1428 }, level = 1, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(131-138)% increased Fire Damage" }, [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } }, + ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrder = { 1390 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-19)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrder = { 1390 }, level = 11, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-29)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrder = { 1390 }, level = 23, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-39)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-54)% increased Cold Damage", statOrder = { 1390 }, level = 35, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-54)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(55-69)% increased Cold Damage", statOrder = { 1390 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-69)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(70-84)% increased Cold Damage", statOrder = { 1390 }, level = 58, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 150, 150, 150, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(70-84)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrder = { 1390 }, level = 64, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 40, 40, 40, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(85-99)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrder = { 1390 }, level = 84, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(100-109)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(18-34)% increased Cold Damage", statOrder = { 1390 }, level = 2, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-34)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(35-52)% increased Cold Damage", statOrder = { 1390 }, level = 11, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-52)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(53-69)% increased Cold Damage", statOrder = { 1390 }, level = 23, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(53-69)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(70-95)% increased Cold Damage", statOrder = { 1390 }, level = 35, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(70-95)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(96-120)% increased Cold Damage", statOrder = { 1390 }, level = 46, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(96-120)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(121-149)% increased Cold Damage", statOrder = { 1390 }, level = 58, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(121-149)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(150-174)% increased Cold Damage", statOrder = { 1390 }, level = 79, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(150-174)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(175-200)% increased Cold Damage", statOrder = { 1390 }, level = 84, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(175-200)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1390, 1429 }, level = 1, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(75-79)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (25-29) Cold Damage to Spells" }, } }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(131-138)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1390, 1429 }, level = 1, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(131-138)% increased Cold Damage" }, [2469416729] = { "Adds (19-25) to (37-44) Cold Damage to Spells" }, } }, + ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrder = { 1401 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-19)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrder = { 1401 }, level = 11, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-29)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrder = { 1401 }, level = 23, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-39)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-54)% increased Lightning Damage", statOrder = { 1401 }, level = 35, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-54)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(55-69)% increased Lightning Damage", statOrder = { 1401 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-69)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(70-84)% increased Lightning Damage", statOrder = { 1401 }, level = 58, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 150, 150, 150, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(70-84)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrder = { 1401 }, level = 64, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 40, 40, 40, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(85-99)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrder = { 1401 }, level = 84, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(100-109)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(18-34)% increased Lightning Damage", statOrder = { 1401 }, level = 2, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-34)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-52)% increased Lightning Damage", statOrder = { 1401 }, level = 11, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-52)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(53-69)% increased Lightning Damage", statOrder = { 1401 }, level = 23, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(53-69)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(70-95)% increased Lightning Damage", statOrder = { 1401 }, level = 35, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(70-95)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(96-120)% increased Lightning Damage", statOrder = { 1401 }, level = 46, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(96-120)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(121-149)% increased Lightning Damage", statOrder = { 1401 }, level = 58, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(121-149)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(150-174)% increased Lightning Damage", statOrder = { 1401 }, level = 79, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(150-174)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(175-200)% increased Lightning Damage", statOrder = { 1401 }, level = 84, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(175-200)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1401, 1430 }, level = 1, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (53-56) Lightning Damage to Spells" }, [2231156303] = { "(75-79)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(131-138)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1401, 1430 }, level = 1, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (79-84) Lightning Damage to Spells" }, [2231156303] = { "(131-138)% increased Lightning Damage" }, } }, + ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(5-10)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-20)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-30)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-36)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(37-42)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "belt", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(43-50)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-15)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(16-20)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-25)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(26-29)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(30-34)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(35-38)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(39-42)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-20)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-30)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-36)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(37-42)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(43-50)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(51-59)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-34)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-51)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(53-61)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(63-71)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(73-85)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attack Skills" }, } }, + ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(3-4)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } }, + ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 58, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, + ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 74, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } }, + ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 82, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrder = { 1615 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(4-8)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrder = { 1615 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(9-12)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrder = { 1615 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(13-16)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrder = { 1615 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(17-20)% increased Quantity of Items found" }, } }, + ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 1619 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 1619 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrder = { 1619 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-20)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrder = { 1619 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(21-26)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrder = { 1619 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-12)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrder = { 1619 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(13-18)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrder = { 1619 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-24)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrder = { 1619 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(25-28)% increased Rarity of Items found" }, } }, + ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-8)% increased Cast Speed", statOrder = { 1470 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-8)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(9-12)% increased Cast Speed", statOrder = { 1470 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(13-16)% increased Cast Speed", statOrder = { 1470 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(17-20)% increased Cast Speed", statOrder = { 1470 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(21-24)% increased Cast Speed", statOrder = { 1470 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(25-28)% increased Cast Speed", statOrder = { 1470 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(29-32)% increased Cast Speed", statOrder = { 1470 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrder = { 1470 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-28)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-13)% increased Cast Speed", statOrder = { 1470 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-13)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(14-19)% increased Cast Speed", statOrder = { 1470 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(20-25)% increased Cast Speed", statOrder = { 1470 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(26-31)% increased Cast Speed", statOrder = { 1470 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(32-37)% increased Cast Speed", statOrder = { 1470 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(38-43)% increased Cast Speed", statOrder = { 1470 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(44-49)% increased Cast Speed", statOrder = { 1470 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrder = { 1470 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(39-42)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1431, 1470 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [2891184298] = { "(29-32)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1431, 1470 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (24-32) to (49-57) Chaos Damage to Spells" }, [2891184298] = { "(44-49)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedRing3"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Cast Speed", statOrder = { 1470 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-14)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedRing4"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Cast Speed", statOrder = { 1470 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-16)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrder = { 1470 }, level = 10, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(24-28)% increased Cast Speed" }, } }, + ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1437 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1437 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 1437 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 1437 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 1437 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 1437 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrder = { 1437 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrder = { 1437 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(28-30)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrder = { 1437 }, level = 42, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrder = { 1437 }, level = 58, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(13-14)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrder = { 1437 }, level = 74, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1437 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-18)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1414, 1437 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } }, + ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1414, 1437 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } }, + ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1434 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1434 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrder = { 1434 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1434 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(17-18)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrder = { 1434 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-5)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrder = { 1434 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-6)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1434 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-7)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrder = { 1434 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-8)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1434 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-7)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrder = { 1434 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-9)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(10-12)% increased Attack Speed", statOrder = { 1434 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-12)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Attack Speed", statOrder = { 1434 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-15)% increased Attack Speed" }, } }, + ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(5-15) to Accuracy Rating" }, } }, + ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1457 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(16-60) to Accuracy Rating" }, } }, + ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1457 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-100) to Accuracy Rating" }, } }, + ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1457 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(101-130) to Accuracy Rating" }, } }, + ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1457 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(131-165) to Accuracy Rating" }, } }, + ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1457 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(166-200) to Accuracy Rating" }, } }, + ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1457 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(201-250) to Accuracy Rating" }, } }, + ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1457 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-320) to Accuracy Rating" }, } }, + ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrder = { 1457 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(321-400) to Accuracy Rating" }, } }, + ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrder = { 1457 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(401-500) to Accuracy Rating" }, } }, + ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrder = { 1457 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(401-440) to Accuracy Rating" }, } }, + ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, + ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrder = { 1457 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-165) to Accuracy Rating" }, } }, + ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrder = { 1457 }, level = 40, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(166-250) to Accuracy Rating" }, } }, + ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrder = { 1457 }, level = 60, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-350) to Accuracy Rating" }, } }, + ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrder = { 1457 }, level = 75, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(351-480) to Accuracy Rating" }, } }, + ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrder = { 1457 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(481-600) to Accuracy Rating" }, } }, + ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (1-2) Life per second" }, } }, + ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2.1-8) Life per second", statOrder = { 1596 }, level = 7, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2.1-8) Life per second" }, } }, + ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (8.1-16) Life per second", statOrder = { 1596 }, level = 19, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (8.1-16) Life per second" }, } }, + ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (16.1-24) Life per second", statOrder = { 1596 }, level = 31, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16.1-24) Life per second" }, } }, + ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (24.1-32) Life per second", statOrder = { 1596 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (24.1-32) Life per second" }, } }, + ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (32.1-48) Life per second", statOrder = { 1596 }, level = 55, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (32.1-48) Life per second" }, } }, + ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (48.1-64) Life per second", statOrder = { 1596 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (48.1-64) Life per second" }, } }, + ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (64.1-96) Life per second", statOrder = { 1596 }, level = 74, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (64.1-96) Life per second" }, } }, + ["LifeRegeneration9"] = { type = "Suffix", affix = "of Recuperation", "Regenerate (96.1-128) Life per second", statOrder = { 1596 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "amulet", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (96.1-128) Life per second" }, } }, + ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Life-giving", "Regenerate (128.1-152) Life per second", statOrder = { 1596 }, level = 83, group = "LifeRegeneration", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (128.1-152) Life per second" }, } }, + ["LifeRegeneration11____"] = { type = "Suffix", affix = "of Convalescence", "Regenerate (152.1-176) Life per second", statOrder = { 1596 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (152.1-176) Life per second" }, } }, + ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-5) Life per second", statOrder = { 1596 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2-5) Life per second" }, } }, + ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (30-40) Life per second", statOrder = { 1596 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-40) Life per second" }, } }, + ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1596, 1967 }, level = 1, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16-20) Life per second" }, [836936635] = { "Regenerate 0.4% of Life per second" }, } }, + ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrder = { 1967 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.4-0.5)% of Life per second" }, } }, + ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1967 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.6-0.7)% of Life per second" }, } }, + ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrder = { 1967 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-0.9)% of Life per second" }, } }, + ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrder = { 1967 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.1)% of Life per second" }, } }, + ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(20-32)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 2, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-32)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(33-45)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(33-45)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(46-58)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(46-58)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(59-72)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(59-72)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(73-85)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(73-85)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(86-105)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(86-105)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(70-76)% increased Mana Regeneration Rate" }, } }, + ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(5-7)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } }, + ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 5, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 20, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 30, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 44, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 58, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 72, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 85, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(39-44)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceWithBows1_"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 5, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(10-14)% increased Critical Strike Chance with Bows" }, } }, + ["CriticalStrikeChanceWithBows2_"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 20, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(15-19)% increased Critical Strike Chance with Bows" }, } }, + ["CriticalStrikeChanceWithBows3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 30, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-24)% increased Critical Strike Chance with Bows" }, } }, + ["CriticalStrikeChanceWithBows4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 44, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(25-29)% increased Critical Strike Chance with Bows" }, } }, + ["CriticalStrikeChanceWithBows5_"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 58, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(30-34)% increased Critical Strike Chance with Bows" }, } }, + ["CriticalStrikeChanceWithBows6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 72, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(35-38)% increased Critical Strike Chance with Bows" }, } }, + ["CriticalStrikeChanceWithBows7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 85, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(39-44)% increased Critical Strike Chance with Bows" }, } }, + ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(39-42)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 42, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-17)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 58, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(18-20)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 74, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(21-23)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(24-26)% increased Global Critical Strike Chance" }, } }, + ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-11)% to Fire Resistance" }, } }, + ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrder = { 1648 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-17)% to Fire Resistance" }, } }, + ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrder = { 1648 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(18-23)% to Fire Resistance" }, } }, + ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrder = { 1648 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(24-29)% to Fire Resistance" }, } }, + ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrder = { 1648 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-35)% to Fire Resistance" }, } }, + ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrder = { 1648 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-41)% to Fire Resistance" }, } }, + ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrder = { 1648 }, level = 72, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(42-45)% to Fire Resistance" }, } }, + ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrder = { 1648 }, level = 84, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, + ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-11)% to Cold Resistance" }, } }, + ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrder = { 1654 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-17)% to Cold Resistance" }, } }, + ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrder = { 1654 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(18-23)% to Cold Resistance" }, } }, + ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrder = { 1654 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(24-29)% to Cold Resistance" }, } }, + ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrder = { 1654 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-35)% to Cold Resistance" }, } }, + ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrder = { 1654 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-41)% to Cold Resistance" }, } }, + ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrder = { 1654 }, level = 72, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(42-45)% to Cold Resistance" }, } }, + ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrder = { 1654 }, level = 84, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, } }, + ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-11)% to Lightning Resistance" }, } }, + ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrder = { 1659 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-17)% to Lightning Resistance" }, } }, + ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrder = { 1659 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(18-23)% to Lightning Resistance" }, } }, + ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrder = { 1659 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(24-29)% to Lightning Resistance" }, } }, + ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrder = { 1659 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-35)% to Lightning Resistance" }, } }, + ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrder = { 1659 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-41)% to Lightning Resistance" }, } }, + ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrder = { 1659 }, level = 72, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(42-45)% to Lightning Resistance" }, } }, + ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrder = { 1659 }, level = 84, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, + ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1648, 2472 }, level = 1, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, tradeHashes = { [3342989455] = { "(9-10)% of Physical Damage from Hits taken as Fire Damage" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, + ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1654, 2473 }, level = 1, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [1871056256] = { "(9-10)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1659, 2474 }, level = 1, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, tradeHashes = { [425242359] = { "(9-10)% of Physical Damage from Hits taken as Lightning Damage" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, + ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1648, 1693 }, level = 1, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, + ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1654, 1698 }, level = 1, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } }, + ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1659, 1702 }, level = 1, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, + ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1648, 10472 }, level = 1, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [165402179] = { "(45-52) to (75-78) added Fire Damage against Burning Enemies" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, + ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1654, 6156 }, level = 1, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [2805714016] = { "(30-50)% increased Damage with Hits against Chilled Enemies" }, } }, + ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1659, 5996 }, level = 1, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, tradeHashes = { [276103140] = { "(40-60)% increased Critical Strike Chance against Shocked Enemies" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, + ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrder = { 1664 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-10)% to Chaos Resistance" }, } }, + ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrder = { 1664 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-15)% to Chaos Resistance" }, } }, + ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrder = { 1664 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-20)% to Chaos Resistance" }, } }, + ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrder = { 1664 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(21-25)% to Chaos Resistance" }, } }, + ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrder = { 1664 }, level = 65, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(26-30)% to Chaos Resistance" }, } }, + ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrder = { 1664 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-35)% to Chaos Resistance" }, } }, + ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrder = { 1664, 1971 }, level = 1, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3762784591] = { "(9-10)% reduced Chaos Damage taken over time" }, [2923486259] = { "+(31-35)% to Chaos Resistance" }, } }, + ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1642 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, + ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1642 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, + ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1642 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, + ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1642 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, + ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1642 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, + ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1642 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, + ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(8-12)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-19)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-24)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-29)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-34)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-38)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierWithBows1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 8, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(8-12)% to Critical Strike Multiplier with Bows" }, } }, + ["CriticalMultiplierWithBows2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 21, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(13-19)% to Critical Strike Multiplier with Bows" }, } }, + ["CriticalMultiplierWithBows3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 31, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(20-24)% to Critical Strike Multiplier with Bows" }, } }, + ["CriticalMultiplierWithBows4__"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(25-29)% to Critical Strike Multiplier with Bows" }, } }, + ["CriticalMultiplierWithBows5_"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 59, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(30-34)% to Critical Strike Multiplier with Bows" }, } }, + ["CriticalMultiplierWithBows6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 74, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(35-38)% to Critical Strike Multiplier with Bows" }, } }, + ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-41)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-17)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-20)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-25)% to Global Critical Strike Multiplier" }, } }, + ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(11-13)% increased Stun and Block Recovery" }, } }, + ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(14-16)% increased Stun and Block Recovery" }, } }, + ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(17-19)% increased Stun and Block Recovery" }, } }, + ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(20-22)% increased Stun and Block Recovery" }, } }, + ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(23-25)% increased Stun and Block Recovery" }, } }, + ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(26-28)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(29-34)% increased Stun and Block Recovery" }, } }, + ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "quiver", "bow", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(11-15)% increased Stun Duration on Enemies" }, } }, + ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "quiver", "bow", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(16-20)% increased Stun Duration on Enemies" }, } }, + ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "quiver", "bow", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(21-25)% increased Stun Duration on Enemies" }, } }, + ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "quiver", "bow", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(26-30)% increased Stun Duration on Enemies" }, } }, + ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "mace", "attack_staff", "sword", "axe", "belt", "quiver", "bow", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(31-35)% increased Stun Duration on Enemies" }, } }, + ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(36-39)% increased Stun Duration on Enemies" }, } }, + ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "focus", "str_int_shield", "dex_int_shield", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-49)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "focus", "str_int_shield", "dex_int_shield", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(50-59)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "focus", "str_int_shield", "dex_int_shield", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-69)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "focus", "str_int_shield", "dex_int_shield", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(70-79)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "focus", "str_int_shield", "dex_int_shield", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-89)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "focus", "str_int_shield", "dex_int_shield", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(90-109)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(110-119)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(75-89)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(75-89)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(90-104)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(90-104)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(105-119)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(105-119)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(120-134)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(120-134)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceTwoHand6_"] = { type = "Suffix", affix = "of Unmaking", "(135-164)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(135-164)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(165-179)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(165-179)% increased Spell Critical Strike Chance" }, } }, + ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrder = { 1819 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, + ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrder = { 1819 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, + ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrder = { 1819 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, + ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrder = { 1819 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, + ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrder = { 1819 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, + ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrder = { 1819 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(47-52)% increased Projectile Speed" }, } }, + ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 8, group = "LifeGainPerTarget", weightKey = { "amulet", "ring", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 20, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 30, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 40, group = "LifeGainPerTarget", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants (2-3) Life per Enemy Hit", statOrder = { 1761 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (2-3) Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants (4-6) Life per Enemy Hit", statOrder = { 1761 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (4-6) Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants (7-10) Life per Enemy Hit", statOrder = { 1761 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (7-10) Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants (11-14) Life per Enemy Hit", statOrder = { 1761 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (11-14) Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal5"] = { type = "Suffix", affix = "of Regenesis", "Grants (15-18) Life per Enemy Hit", statOrder = { 1761 }, level = 50, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (15-18) Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal6"] = { type = "Suffix", affix = "of Renewal", "Grants (19-22) Life per Enemy Hit", statOrder = { 1761 }, level = 60, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (19-22) Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal7"] = { type = "Suffix", affix = "of Recuperation", "Grants (23-26) Life per Enemy Hit", statOrder = { 1761 }, level = 70, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (23-26) Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal8"] = { type = "Suffix", affix = "of Revitalization", "Grants (27-30) Life per Enemy Hit", statOrder = { 1761 }, level = 80, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (27-30) Life per Enemy Hit" }, } }, + ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(10-12)% increased Fire Damage", statOrder = { 1381 }, level = 8, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-12)% increased Fire Damage" }, } }, + ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(13-15)% increased Fire Damage", statOrder = { 1381 }, level = 22, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-15)% increased Fire Damage" }, } }, + ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(16-18)% increased Fire Damage", statOrder = { 1381 }, level = 36, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(16-18)% increased Fire Damage" }, } }, + ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(19-22)% increased Fire Damage", statOrder = { 1381 }, level = 50, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(19-22)% increased Fire Damage" }, } }, + ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrder = { 1381 }, level = 64, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, + ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrder = { 1381 }, level = 76, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, + ["FireDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Embers", "(18-22)% increased Fire Damage", statOrder = { 1381 }, level = 8, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, + ["FireDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Coals", "(23-28)% increased Fire Damage", statOrder = { 1381 }, level = 22, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-28)% increased Fire Damage" }, } }, + ["FireDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Cinders", "(29-34)% increased Fire Damage", statOrder = { 1381 }, level = 36, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-34)% increased Fire Damage" }, } }, + ["FireDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Flames", "(35-39)% increased Fire Damage", statOrder = { 1381 }, level = 50, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-39)% increased Fire Damage" }, } }, + ["FireDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Immolation", "(40-44)% increased Fire Damage", statOrder = { 1381 }, level = 64, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-44)% increased Fire Damage" }, } }, + ["FireDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Ashes", "(45-50)% increased Fire Damage", statOrder = { 1381 }, level = 76, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-50)% increased Fire Damage" }, } }, + ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrder = { 1381 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(11-14)% increased Fire Damage" }, } }, + ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrder = { 1381 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-18)% increased Fire Damage" }, } }, + ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrder = { 1381 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(19-22)% increased Fire Damage" }, } }, + ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrder = { 1381 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, + ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrder = { 1381 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, + ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrder = { 1381 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(31-34)% increased Fire Damage" }, } }, + ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(10-12)% increased Cold Damage", statOrder = { 1390 }, level = 12, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-12)% increased Cold Damage" }, } }, + ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(13-15)% increased Cold Damage", statOrder = { 1390 }, level = 24, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-15)% increased Cold Damage" }, } }, + ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(16-18)% increased Cold Damage", statOrder = { 1390 }, level = 36, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(16-18)% increased Cold Damage" }, } }, + ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(19-22)% increased Cold Damage", statOrder = { 1390 }, level = 50, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(19-22)% increased Cold Damage" }, } }, + ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrder = { 1390 }, level = 64, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, + ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrder = { 1390 }, level = 76, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, + ["ColdDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Snow", "(18-22)% increased Cold Damage", statOrder = { 1390 }, level = 12, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, + ["ColdDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Sleet", "(23-28)% increased Cold Damage", statOrder = { 1390 }, level = 24, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-28)% increased Cold Damage" }, } }, + ["ColdDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Ice", "(29-34)% increased Cold Damage", statOrder = { 1390 }, level = 36, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-34)% increased Cold Damage" }, } }, + ["ColdDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Rime", "(35-39)% increased Cold Damage", statOrder = { 1390 }, level = 50, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-39)% increased Cold Damage" }, } }, + ["ColdDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Floe", "(40-44)% increased Cold Damage", statOrder = { 1390 }, level = 64, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-44)% increased Cold Damage" }, } }, + ["ColdDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Glaciation", "(45-50)% increased Cold Damage", statOrder = { 1390 }, level = 76, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-50)% increased Cold Damage" }, } }, + ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(6-10)% increased Cold Damage" }, } }, + ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrder = { 1390 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(11-14)% increased Cold Damage" }, } }, + ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrder = { 1390 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-18)% increased Cold Damage" }, } }, + ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrder = { 1390 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(19-22)% increased Cold Damage" }, } }, + ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrder = { 1390 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, + ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrder = { 1390 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, + ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrder = { 1390 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(31-34)% increased Cold Damage" }, } }, + ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(10-12)% increased Lightning Damage", statOrder = { 1401 }, level = 10, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-12)% increased Lightning Damage" }, } }, + ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(13-15)% increased Lightning Damage", statOrder = { 1401 }, level = 23, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-15)% increased Lightning Damage" }, } }, + ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(16-18)% increased Lightning Damage", statOrder = { 1401 }, level = 36, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(16-18)% increased Lightning Damage" }, } }, + ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(19-22)% increased Lightning Damage", statOrder = { 1401 }, level = 50, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(19-22)% increased Lightning Damage" }, } }, + ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrder = { 1401 }, level = 64, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, + ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrder = { 1401 }, level = 76, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, + ["LightningDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Sparks", "(18-22)% increased Lightning Damage", statOrder = { 1401 }, level = 10, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, + ["LightningDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Static", "(23-28)% increased Lightning Damage", statOrder = { 1401 }, level = 23, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-28)% increased Lightning Damage" }, } }, + ["LightningDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Electricity", "(29-34)% increased Lightning Damage", statOrder = { 1401 }, level = 36, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-34)% increased Lightning Damage" }, } }, + ["LightningDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Voltage", "(35-39)% increased Lightning Damage", statOrder = { 1401 }, level = 50, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-39)% increased Lightning Damage" }, } }, + ["LightningDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Discharge", "(40-44)% increased Lightning Damage", statOrder = { 1401 }, level = 64, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-44)% increased Lightning Damage" }, } }, + ["LightningDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Arcing", "(45-50)% increased Lightning Damage", statOrder = { 1401 }, level = 76, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-50)% increased Lightning Damage" }, } }, + ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrder = { 1401 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(31-34)% increased Lightning Damage" }, } }, + ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (7-10) Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-10) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (12-18) Life per Enemy Killed", statOrder = { 1771 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (12-18) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (24-32) Life per Enemy Killed", statOrder = { 1771 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (24-32) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (35-44) Life per Enemy Killed", statOrder = { 1771 }, level = 52, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (35-44) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Feat", "Gain (56-72) Life per Enemy Killed", statOrder = { 1771 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (56-72) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Masterstroke", "Gain (84-110) Life per Enemy Killed", statOrder = { 1771 }, level = 81, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (84-110) Life per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (4-6) Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "deepwater_sword", "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-6) Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (7-10) Mana per Enemy Killed", statOrder = { 1786 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "deepwater_sword", "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (7-10) Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (11-15) Mana per Enemy Killed", statOrder = { 1786 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "deepwater_sword", "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (11-15) Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Diffusion", "Gain (16-25) Mana per Enemy Killed", statOrder = { 1786 }, level = 52, group = "ManaGainedFromEnemyDeath", weightKey = { "deepwater_sword", "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (16-25) Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Permeation", "Gain (26-37) Mana per Enemy Killed", statOrder = { 1786 }, level = 66, group = "ManaGainedFromEnemyDeath", weightKey = { "deepwater_sword", "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (26-37) Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Retention", "Gain (38-50) Mana per Enemy Killed", statOrder = { 1786 }, level = 81, group = "ManaGainedFromEnemyDeath", weightKey = { "deepwater_sword", "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (38-50) Mana per Enemy Killed" }, } }, + ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-14)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrder = { 1487 }, level = 20, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-19)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrder = { 1487 }, level = 30, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-24)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrder = { 1487 }, level = 44, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-29)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrder = { 1487 }, level = 59, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrder = { 1487 }, level = 73, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(35-38)% increased Critical Strike Chance" }, } }, + ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-14)% to Global Critical Strike Multiplier" }, } }, + ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-19)% to Global Critical Strike Multiplier" }, } }, + ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-24)% to Global Critical Strike Multiplier" }, } }, + ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-29)% to Global Critical Strike Multiplier" }, } }, + ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-34)% to Global Critical Strike Multiplier" }, } }, + ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-38)% to Global Critical Strike Multiplier" }, } }, + ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 2, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrder = { 165 }, level = 76, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+3 to Level of Socketed Gems" }, } }, + ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } }, + ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 2, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } }, + ["GlobalSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Archon's", "+2 to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 2, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 55, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, + ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skill Gems" }, } }, + ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 35, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skill Gems" }, } }, + ["GlobalFireSpellGemsLevelTwoHand3"] = { type = "Prefix", affix = "Magmancer's", "+4 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 77, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+4 to Level of all Fire Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 2, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, + ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 55, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, + ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skill Gems" }, } }, + ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 35, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skill Gems" }, } }, + ["GlobalColdSpellGemsLevelTwoHand3"] = { type = "Prefix", affix = "Ice Shaper's", "+4 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 77, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+4 to Level of all Cold Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 2, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+1 to Level of Socketed Lightning Gems" }, } }, + ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 55, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, + ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, + ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skill Gems" }, } }, + ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 35, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skill Gems" }, } }, + ["GlobalLightningSpellGemsLevelTwoHand3"] = { type = "Prefix", affix = "Typhoon Lord's", "+4 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 77, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+4 to Level of all Lightning Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 4, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+1 to Level of Socketed Chaos Gems" }, } }, + ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 55, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, + ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, + ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skill Gems" }, } }, + ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 35, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skill Gems" }, } }, + ["GlobalChaosSpellGemsLevelTwoHand3"] = { type = "Prefix", affix = "Schismatist's", "+4 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 77, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+4 to Level of all Chaos Spell Skill Gems" }, } }, + ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+2 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skill Gems" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 35, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skill Gems" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHand3"] = { type = "Prefix", affix = "Stone Singer's", "+4 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 77, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+4 to Level of all Physical Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, + ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 8, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, + ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 63, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+2 to Level of Socketed Melee Gems" }, } }, + ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrder = { 184 }, level = 9, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } }, + ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrder = { 184 }, level = 64, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+2 to Level of Socketed Bow Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 14, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 86, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+3 to Level of Socketed Minion Gems" }, } }, + ["GlobalIncreaseMinionSpellSkillGemLevel1"] = { type = "Prefix", affix = "Taskmaster's", "+1 to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 14, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, + ["GlobalIncreaseMinionSpellSkillGemLevel2"] = { type = "Prefix", affix = "Overseer's", "+2 to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skill Gems" }, } }, + ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(5-15) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 2047 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(16-60) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 2047 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-100) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 2047 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(101-130) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 2047 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(131-165) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 2047 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(166-200) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 2047 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(201-250) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 2047 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(251-320) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrder = { 2047 }, level = 80, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(321-360) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrder = { 2047 }, level = 82, group = "LocalAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(361-380) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(80-130) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrder = { 2047 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(131-215) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrder = { 2047 }, level = 40, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(216-325) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrder = { 2047 }, level = 60, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(326-455) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrder = { 2047 }, level = 75, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(456-624) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrder = { 2047 }, level = 85, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(625-780) to Accuracy Rating" }, } }, + ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrder = { 1861 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, + ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 1817 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, + ["AdditionalArrowQuiver1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 70, group = "AdditionalArrows", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased Movement Speed", statOrder = { 1792 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } }, + ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased Movement Speed", statOrder = { 1792 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } }, + ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased Movement Speed", statOrder = { 1792 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } }, + ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased Movement Speed", statOrder = { 1792 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } }, + ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased Movement Speed", statOrder = { 1792 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } }, + ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased Movement Speed", statOrder = { 1792 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } }, + ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased maximum Life", statOrder = { 1789 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-15)% increased maximum Life" }, } }, + ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased maximum Life", statOrder = { 1789 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (16-18)% increased maximum Life" }, } }, + ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased maximum Life", statOrder = { 1789 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-21)% increased maximum Life" }, } }, + ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased maximum Life", statOrder = { 1789 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (22-24)% increased maximum Life" }, } }, + ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased maximum Life", statOrder = { 1789 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (25-27)% increased maximum Life" }, } }, + ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased maximum Life", statOrder = { 1789 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-30)% increased maximum Life" }, } }, + ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrder = { 1996 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-10)% increased Damage" }, } }, + ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrder = { 1996 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-14)% increased Damage" }, } }, + ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrder = { 1996 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-18)% increased Damage" }, } }, + ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrder = { 1996 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-22)% increased Damage" }, } }, + ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrder = { 1996 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } }, + ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrder = { 1996 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } }, + ["MinionAccuracyEssence2_"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 10, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(13-15)% increased Minion Accuracy Rating" }, } }, + ["MinionAccuracyEssence3_"] = { type = "Suffix", affix = "of the Essence", "(16-18)% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 26, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(16-18)% increased Minion Accuracy Rating" }, } }, + ["MinionAccuracyEssence4___"] = { type = "Suffix", affix = "of the Essence", "(19-21)% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 42, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(19-21)% increased Minion Accuracy Rating" }, } }, + ["MinionAccuracyEssence5"] = { type = "Suffix", affix = "of the Essence", "(22-24)% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 58, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-24)% increased Minion Accuracy Rating" }, } }, + ["MinionAccuracyEssence6"] = { type = "Suffix", affix = "of the Essence", "(25-27)% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 74, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(25-27)% increased Minion Accuracy Rating" }, } }, + ["MinionAccuracyEssence7_"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 82, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(28-30)% increased Minion Accuracy Rating" }, } }, + ["MinionDamageGlovesEssence2"] = { type = "Prefix", affix = "Essences", "Minions deal (13-15)% increased Damage", statOrder = { 1996 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } }, + ["MinionDamageGlovesEssence3"] = { type = "Prefix", affix = "Essences", "Minions deal (16-18)% increased Damage", statOrder = { 1996 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-18)% increased Damage" }, } }, + ["MinionDamageGlovesEssence4"] = { type = "Prefix", affix = "Essences", "Minions deal (19-21)% increased Damage", statOrder = { 1996 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-21)% increased Damage" }, } }, + ["MinionDamageGlovesEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (22-24)% increased Damage", statOrder = { 1996 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-24)% increased Damage" }, } }, + ["MinionDamageGlovesEssence6___"] = { type = "Prefix", affix = "Essences", "Minions deal (25-27)% increased Damage", statOrder = { 1996 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-27)% increased Damage" }, } }, + ["MinionDamageGlovesEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (28-30)% increased Damage", statOrder = { 1996 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-30)% increased Damage" }, } }, + ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrder = { 1996 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } }, + ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrder = { 1996 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-21)% increased Damage" }, } }, + ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrder = { 1996 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-27)% increased Damage" }, } }, + ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrder = { 1996 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-33)% increased Damage" }, } }, + ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrder = { 1996 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (34-39)% increased Damage" }, } }, + ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrder = { 1996 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-45)% increased Damage" }, } }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 2206 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(5-10)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 2206 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(11-16)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 2206 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(17-22)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 2206 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(23-28)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 2206 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(29-34)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 2206 }, level = 84, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(35-40)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskEffect1_"] = { type = "Prefix", affix = "Distilling", "Flasks applied to you have (4-6)% increased Effect", statOrder = { 2776 }, level = 45, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-6)% increased Effect" }, } }, + ["BeltIncreasedFlaskEffect2"] = { type = "Prefix", affix = "Condensing", "Flasks applied to you have (7-9)% increased Effect", statOrder = { 2776 }, level = 65, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (7-9)% increased Effect" }, } }, + ["BeltIncreasedFlaskEffect3"] = { type = "Prefix", affix = "Magnifying", "Flasks applied to you have (10-12)% increased Effect", statOrder = { 2776 }, level = 85, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-12)% increased Effect" }, } }, + ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrder = { 2207 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% reduced Flask Charges used" }, } }, + ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Sipping", "(4-9)% increased Flask Effect Duration", statOrder = { 2210 }, level = 8, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(4-9)% increased Flask Effect Duration" }, } }, + ["BeltIncreasedFlaskDuration2"] = { type = "Suffix", affix = "of Tasting", "(10-15)% increased Flask Effect Duration", statOrder = { 2210 }, level = 34, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-15)% increased Flask Effect Duration" }, } }, + ["BeltIncreasedFlaskDuration3"] = { type = "Suffix", affix = "of Savouring", "(16-21)% increased Flask Effect Duration", statOrder = { 2210 }, level = 50, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(16-21)% increased Flask Effect Duration" }, } }, + ["BeltIncreasedFlaskDuration4"] = { type = "Suffix", affix = "of Relishing", "(22-27)% increased Flask Effect Duration", statOrder = { 2210 }, level = 66, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(22-27)% increased Flask Effect Duration" }, } }, + ["BeltIncreasedFlaskDuration5_"] = { type = "Suffix", affix = "of Reveling", "(28-33)% increased Flask Effect Duration", statOrder = { 2210 }, level = 82, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(28-33)% increased Flask Effect Duration" }, } }, + ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 2212 }, 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 = { 2212 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } }, + ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (1-4) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (5-10) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (11-24) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (25-50) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, + ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, + ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrder = { 2272 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-3)% Chance to Block" }, } }, + ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-5)% Chance to Block", statOrder = { 2272 }, level = 25, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(4-5)% Chance to Block" }, } }, + ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(6-7)% Chance to Block", statOrder = { 2272 }, level = 40, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-7)% Chance to Block" }, } }, + ["AdditionalBlockChance4_"] = { type = "Suffix", affix = "of the Stalwart", "+(8-9)% Chance to Block", statOrder = { 2272 }, level = 55, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-9)% Chance to Block" }, } }, + ["AdditionalBlockChance5"] = { type = "Suffix", affix = "of the Buttress", "+(10-11)% Chance to Block", statOrder = { 2272 }, level = 66, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(10-11)% Chance to Block" }, } }, + ["AdditionalBlockChance6"] = { type = "Suffix", affix = "of the Sentinel", "+(12-13)% Chance to Block", statOrder = { 2272 }, level = 77, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(12-13)% Chance to Block" }, } }, + ["AdditionalBlockChance7"] = { type = "Suffix", affix = "of the Citadel", "+(14-15)% Chance to Block", statOrder = { 2272 }, level = 86, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(14-15)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 2272 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 2272 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 2272 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 2272 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } }, + ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2490 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2490 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2490 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2490 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2490 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2490 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, + ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(5-15)% increased Damage" }, } }, + ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrder = { 1099 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "18% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrder = { 1099 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "32% reduced Attribute Requirements" }, } }, + ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1457, 2526 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } }, + ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1457, 2526 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, + ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1458, 2526 }, level = 30, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, + ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1458, 2526 }, level = 8, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [624954515] = { "(9-11)% increased Global Accuracy Rating" }, } }, + ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1458, 2526 }, level = 15, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 2047, 2526 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 2047, 2526 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1458, 2526 }, level = 30, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1458, 2526 }, level = 8, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [624954515] = { "(9-11)% increased Global Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1458, 2526 }, level = 15, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+0.1 metres to Weapon Range", statOrder = { 2779 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+0.3 metres to Weapon Range", statOrder = { 2779 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } }, + ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1780 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } }, + ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1780 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } }, + ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1780 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } }, + ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1780 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } }, + ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1780 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } }, + ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1780 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } }, + ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1781 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } }, + ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1781 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } }, + ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1781 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } }, + ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1781 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } }, + ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2878 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, + ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2879 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, + ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2880 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, + ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2881 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, + ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2882 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, + ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2883 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, + ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2884 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, + ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "+3% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "+4% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+4% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "+6% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+6% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 42, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 58, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 74, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(10-12)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 82, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "+3% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "+4% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+4% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "+6% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+6% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(10-12)% chance to Suppress Spell Damage" }, } }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3337 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, + ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(4-6)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 30, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-6)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(7-9)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 52, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(7-9)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentage3_"] = { type = "Suffix", affix = "of the Barricade", "(10-12)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 71, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-12)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentage4_"] = { type = "Suffix", affix = "of the Bastion", "(13-15)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 84, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(13-15)% Chance to Block Spell Damage" }, } }, + ["LocalIncreasedBlockPercentage1"] = { type = "Prefix", affix = "Steadfast", "(40-45)% increased Chance to Block", statOrder = { 94 }, level = 2, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-45)% increased Chance to Block" }, } }, + ["LocalIncreasedBlockPercentage2"] = { type = "Prefix", affix = "Unrelenting", "(46-51)% increased Chance to Block", statOrder = { 94 }, level = 15, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(46-51)% increased Chance to Block" }, } }, + ["LocalIncreasedBlockPercentage3"] = { type = "Prefix", affix = "Adamant", "(52-57)% increased Chance to Block", statOrder = { 94 }, level = 35, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(52-57)% increased Chance to Block" }, } }, + ["LocalIncreasedBlockPercentage4"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Chance to Block", statOrder = { 94 }, level = 48, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Chance to Block" }, } }, + ["LocalIncreasedBlockPercentage5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Chance to Block", statOrder = { 94 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Chance to Block" }, } }, + ["LocalIncreasedBlockPercentage6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Chance to Block", statOrder = { 94 }, level = 77, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Chance to Block" }, } }, + ["LocalIncreasedBlockPercentage7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Chance to Block", statOrder = { 94 }, level = 86, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Chance to Block" }, } }, + ["ShieldSpellBlockPercentage1"] = { type = "Prefix", affix = "Mystic", "(4-5)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 16, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, + ["ShieldSpellBlockPercentage2"] = { type = "Prefix", affix = "Clairvoyant", "(6-7)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 28, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } }, + ["ShieldSpellBlockPercentage3"] = { type = "Prefix", affix = "Enigmatic", "(8-9)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 40, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(8-9)% Chance to Block Spell Damage" }, } }, + ["ShieldSpellBlockPercentage4"] = { type = "Prefix", affix = "Enlightened", "(10-11)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 55, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-11)% Chance to Block Spell Damage" }, } }, + ["ShieldSpellBlockPercentage5"] = { type = "Prefix", affix = "Seer's", "(12-13)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 66, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-13)% Chance to Block Spell Damage" }, } }, + ["ShieldSpellBlockPercentage6"] = { type = "Prefix", affix = "Oracle's", "(14-15)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 77, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(14-15)% Chance to Block Spell Damage" }, } }, + ["StaffSpellBlockPercentage1"] = { type = "Suffix", affix = "of the Mystic", "+(8-9)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 16, group = "AdditionalSpellBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(8-9)% Chance to Block Spell Damage" }, } }, + ["StaffSpellBlockPercentage2"] = { type = "Suffix", affix = "of the Clairvoyant", "+(10-11)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 28, group = "AdditionalSpellBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(10-11)% Chance to Block Spell Damage" }, } }, + ["StaffSpellBlockPercentage3"] = { type = "Suffix", affix = "of the Enigmatic", "+(12-13)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 40, group = "AdditionalSpellBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(12-13)% Chance to Block Spell Damage" }, } }, + ["StaffSpellBlockPercentage4"] = { type = "Suffix", affix = "of the Enlightened", "+(14-15)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 55, group = "AdditionalSpellBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(14-15)% Chance to Block Spell Damage" }, } }, + ["StaffSpellBlockPercentage5"] = { type = "Suffix", affix = "of the Seer", "+(16-17)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 66, group = "AdditionalSpellBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(16-17)% Chance to Block Spell Damage" }, } }, + ["StaffSpellBlockPercentage6"] = { type = "Suffix", affix = "of the Oracle", "+(18-20)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 77, group = "AdditionalSpellBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(18-20)% Chance to Block Spell Damage" }, } }, + ["StaffAttackBlockPercentage1"] = { type = "Suffix", affix = "of the Zealot", "+(8-9)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 16, group = "AdditionalBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(8-9)% Chance to Block Attack Damage" }, } }, + ["StaffAttackBlockPercentage2"] = { type = "Suffix", affix = "of the Militant", "+(10-11)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 28, group = "AdditionalBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(10-11)% Chance to Block Attack Damage" }, } }, + ["StaffAttackBlockPercentage3"] = { type = "Suffix", affix = "of the Radical", "+(12-13)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 40, group = "AdditionalBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(12-13)% Chance to Block Attack Damage" }, } }, + ["StaffAttackBlockPercentage4"] = { type = "Suffix", affix = "of the Devotee", "+(14-15)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 55, group = "AdditionalBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(14-15)% Chance to Block Attack Damage" }, } }, + ["StaffAttackBlockPercentage5"] = { type = "Suffix", affix = "of the Idealogue", "+(16-17)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 66, group = "AdditionalBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(16-17)% Chance to Block Attack Damage" }, } }, + ["StaffAttackBlockPercentage6"] = { type = "Suffix", affix = "of the Sectarian", "+(18-20)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 77, group = "AdditionalBlock", weightKey = { "warstaff", "staff", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(18-20)% Chance to Block Attack Damage" }, } }, + ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 195 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, + ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 1409 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 1409 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 1409 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } }, + ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "150% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "150% increased total Recovery per second from Life Leech" }, } }, + ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 63, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } }, + ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1914 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-(8-4) to Total Mana Cost of Skills" }, } }, + ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(20-40)% increased total Recovery per second from Life Leech" }, } }, + ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrder = { 214 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(3-6)% to Quality of Socketed Support Gems" }, } }, + ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2507 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, + ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, + ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2066 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, + ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2646 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [3629113735] = { "" }, [279246355] = { "Area is inhabited by an additional Invasion Boss" }, [2390685262] = { "" }, } }, + ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 3018 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 3018 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 3018 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 3018 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 3018 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 3018 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 3018 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 3018 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 3018 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } }, + ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 3015 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 3015 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 3015 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 3015 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 3015 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 3015 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 3015 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 3015 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 3015 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 3015 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 3015 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } }, + ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 3017 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 3017 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 3017 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 3017 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 3017 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 3017 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 3017 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 3017 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 3017 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 3017 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 3017 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 3017 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 3017 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } }, + ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, + ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 50, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 60, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of the Remora", "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 20, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2-2.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(2.6-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 45, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.6-3.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(3.5-4.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.5-4.5)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(2-2.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2-2.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(2.3-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.3-2.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffixEssence3"] = { type = "Suffix", affix = "of the Essence", "(2.5-2.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.5-2.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(2.9-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.9-3.2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(3.3-3.6)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.3-3.6)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(3.7-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.7-4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadLocalSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(4.1-4.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(4.1-4.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of Thirst", "(2.6-3.2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "deepwater_sword", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(2.6-3.2)% of Physical Attack Damage Leeched as Mana" }, } }, + ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1221 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } }, + ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1221 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } }, + ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1221 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } }, + ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1221 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, + ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1221 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, + ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2604 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2604 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2604 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2604 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } }, + ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } }, + ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 3308 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 3308 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 3308 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } }, + ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (13-15) Fire Damage to Spells", statOrder = { 1428 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (13-15) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (11-13) to (21-25) Fire Damage to Spells", statOrder = { 1428 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (11-13) to (21-25) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1428 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (22-29) to (43-51) Fire Damage to Spells", statOrder = { 1428 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (22-29) to (43-51) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (28-39) to (57-67) Fire Damage to Spells", statOrder = { 1428 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (28-39) to (57-67) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (38-51) to (77-88) Fire Damage to Spells", statOrder = { 1428 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (38-51) to (77-88) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (50-64) to (98-113) Fire Damage to Spells", statOrder = { 1428 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (50-64) to (98-113) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-84) to (124-146) Fire Damage to Spells", statOrder = { 1428 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (62-84) to (124-146) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (54-65) to (97-109) Fire Damage to Spells", statOrder = { 1428 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (54-65) to (97-109) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (2-3) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (2-3) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (11-13) Cold Damage to Spells", statOrder = { 1429 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (11-13) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1429 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-11) to (17-20) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (12-17) to (25-28) Cold Damage to Spells", statOrder = { 1429 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-17) to (25-28) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (18-23) to (35-41) Cold Damage to Spells", statOrder = { 1429 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (18-23) to (35-41) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (24-31) to (47-54) Cold Damage to Spells", statOrder = { 1429 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-31) to (47-54) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-42) to (62-73) Cold Damage to Spells", statOrder = { 1429 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (31-42) to (62-73) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (41-53) to (79-93) Cold Damage to Spells", statOrder = { 1429 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (41-53) to (79-93) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (52-69) to (103-118) Cold Damage to Spells", statOrder = { 1429 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (52-69) to (103-118) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (42-54) to (80-90) Cold Damage to Spells", statOrder = { 1429 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (42-54) to (80-90) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (22-23) Lightning Damage to Spells", statOrder = { 1430 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (22-23) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (36-38) Lightning Damage to Spells", statOrder = { 1430 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (36-38) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (52-54) Lightning Damage to Spells", statOrder = { 1430 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (52-54) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-6) to (74-78) Lightning Damage to Spells", statOrder = { 1430 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (74-78) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-8) to (99-104) Lightning Damage to Spells", statOrder = { 1430 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (99-104) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-11) to (132-139) Lightning Damage to Spells", statOrder = { 1430 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-11) to (132-139) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (5-14) to (169-179) Lightning Damage to Spells", statOrder = { 1430 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-14) to (169-179) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-18) to (216-227) Lightning Damage to Spells", statOrder = { 1430 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 60, 60, 60, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-18) to (216-227) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (5-13) to (162-174) Lightning Damage to Spells", statOrder = { 1430 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-13) to (162-174) Lightning Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-3) to (5-6) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-3) to (5-6) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (10-15) to (23-25) Fire Damage to Spells", statOrder = { 1428 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-15) to (23-25) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (18-24) to (35-40) Fire Damage to Spells", statOrder = { 1428 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-24) to (35-40) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1428 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (36-48) to (73-85) Fire Damage to Spells", statOrder = { 1428 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (36-48) to (73-85) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (48-65) to (96-113) Fire Damage to Spells", statOrder = { 1428 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (48-65) to (96-113) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (64-85) to (129-150) Fire Damage to Spells", statOrder = { 1428 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (64-85) to (129-150) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (83-109) to (166-191) Fire Damage to Spells", statOrder = { 1428 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (83-109) to (166-191) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (105-140) to (210-246) Fire Damage to Spells", statOrder = { 1428 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 60, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (105-140) to (210-246) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (101-123) to (181-204) Fire Damage to Spells", statOrder = { 1428 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (101-123) to (181-204) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-3) to (4-5) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-3) to (4-5) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (10-14) to (20-24) Cold Damage to Spells", statOrder = { 1429 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-14) to (20-24) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (16-20) to (31-39) Cold Damage to Spells", statOrder = { 1429 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (31-39) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (23-31) to (46-54) Cold Damage to Spells", statOrder = { 1429 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (23-31) to (46-54) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (35-44) to (65-76) Cold Damage to Spells", statOrder = { 1429 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-44) to (65-76) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (44-59) to (88-101) Cold Damage to Spells", statOrder = { 1429 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (44-59) to (88-101) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (59-79) to (116-136) Cold Damage to Spells", statOrder = { 1429 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (59-79) to (116-136) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (76-99) to (149-175) Cold Damage to Spells", statOrder = { 1429 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (76-99) to (149-175) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (96-129) to (190-223) Cold Damage to Spells", statOrder = { 1429 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 60, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (96-129) to (190-223) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (86-100) to (151-168) Cold Damage to Spells", statOrder = { 1429 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (86-100) to (151-168) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (8-9) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (8-9) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-4) to (43-45) Lightning Damage to Spells", statOrder = { 1430 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (43-45) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-5) to (66-71) Lightning Damage to Spells", statOrder = { 1430 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-5) to (66-71) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (3-8) to (96-103) Lightning Damage to Spells", statOrder = { 1430 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (96-103) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (3-11) to (140-146) Lightning Damage to Spells", statOrder = { 1430 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-11) to (140-146) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (5-15) to (186-196) Lightning Damage to Spells", statOrder = { 1430 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-15) to (186-196) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (8-19) to (248-261) Lightning Damage to Spells", statOrder = { 1430 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (8-19) to (248-261) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (8-26) to (316-335) Lightning Damage to Spells", statOrder = { 1430 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (8-26) to (316-335) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (11-31) to (405-429) Lightning Damage to Spells", statOrder = { 1430 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 60, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (11-31) to (405-429) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (9-24) to (304-326) Lightning Damage to Spells", statOrder = { 1430 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (9-24) to (304-326) Lightning Damage to Spells" }, } }, + ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos Damage", statOrder = { 1414 }, level = 83, group = "LocalChaosDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos Damage" }, } }, + ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos Damage", statOrder = { 1414 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos Damage" }, } }, + ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos Damage", statOrder = { 1414 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos Damage" }, } }, + ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos Damage", statOrder = { 1414 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos Damage" }, } }, + ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos Damage", statOrder = { 1414 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 700, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos Damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos Damage", statOrder = { 1414 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos Damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos Damage", statOrder = { 1414 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos Damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos Damage", statOrder = { 1414 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos Damage" }, } }, + ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrder = { 2790 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "drop" }, tradeHashes = { [301625329] = { "30% increased Rarity of Items found during any Flask Effect" }, } }, + ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrder = { 4118 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "damage" }, tradeHashes = { [2947215268] = { "(20-25)% increased Damage during any Flask Effect" }, } }, + ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9925 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2125444333] = { "Projectiles Pierce an additional Target" }, } }, + ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9925 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2125444333] = { "Projectiles Pierce an additional Target" }, } }, + ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 9926 }, level = 1, group = "Quiver2AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3640956958] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3405 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 42, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(6-7)% chance to Avoid Fire Damage from Hits" }, } }, + ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(7-8)% chance to Avoid Fire Damage from Hits" }, } }, + ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-9)% chance to Avoid Fire Damage from Hits" }, } }, + ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(9-10)% chance to Avoid Fire Damage from Hits" }, } }, + ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 26, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(5-6)% chance to Avoid Cold Damage from Hits" }, } }, + ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 42, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-7)% chance to Avoid Cold Damage from Hits" }, } }, + ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 58, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(7-8)% chance to Avoid Cold Damage from Hits" }, } }, + ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 74, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(8-9)% chance to Avoid Cold Damage from Hits" }, } }, + ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(9-10)% chance to Avoid Cold Damage from Hits" }, } }, + ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(4-5)% chance to Avoid Lightning Damage from Hits" }, } }, + ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(5-6)% chance to Avoid Lightning Damage from Hits" }, } }, + ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-7)% chance to Avoid Lightning Damage from Hits" }, } }, + ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(7-8)% chance to Avoid Lightning Damage from Hits" }, } }, + ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(8-9)% chance to Avoid Lightning Damage from Hits" }, } }, + ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(9-10)% chance to Avoid Lightning Damage from Hits" }, } }, + ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1411 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } }, + ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1411 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } }, + ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1411 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } }, + ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 3205 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, + ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 3205 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } }, + ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1409, 3205 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, + ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 567 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 561 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 561 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, + ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 568 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, tradeHashes = { [1859937391] = { "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage" }, } }, + ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 564 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4350 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, [2936538132] = { "" }, } }, + ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4347 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2876075610] = { "" }, [685387835] = { "" }, [223497523] = { "" }, } }, + ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1537 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2380848911] = { "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, + ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1971 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, + ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrder = { 552 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Strike Chance" }, } }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 4310 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 3222 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4309 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, + ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4309 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 4311 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } }, + ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 545 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3984519770] = { "Socketed Gems have 50% chance to Ignite" }, } }, + ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 563 }, 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 = { 4303 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, + ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 4304 }, 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 = { 10026 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, + ["DamageCannotBeReflectedPercentEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions prevent +60% of Reflected Damage", statOrder = { 1 }, level = 63, group = "DamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1567747544] = { "You and your Minions prevent +60% of Reflected Damage" }, } }, + ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 4306 }, 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 = { 4307 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, + ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrder = { 3217 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "40% increased Damage with Poison" }, } }, + ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3511 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of Mana when you use a Skill" }, } }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 9240 }, 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 = { 5733 }, 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 = { 6811 }, 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 = { 3648 }, 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 = { 615 }, 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 = { 187 }, 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 = { 800 }, 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 = { 772, 772.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 = { 1903 }, 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 = { 6874 }, 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 = { 2861 }, 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 = { 613 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, + ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1169 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [2253286128] = { "+15% Chance to Block Spell Damage while on Low Life" }, } }, + ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Effect of your Curses", statOrder = { 2622 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Effect of your Curses" }, } }, + ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Effect of your Curses", statOrder = { 2622 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } }, + ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Marks", statOrder = { 2624 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "25% increased Effect of your Marks" }, } }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6223 }, 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" }, } }, + ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 63, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9568 }, 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 = { 2534 }, 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 = { 8300 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, + ["AilmentDoubleDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4663 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1916537902] = { "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them" }, } }, + ["AilmentDoubleDamageTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4663 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1916537902] = { "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them" }, } }, + ["AttackCastSpeedPerNearbyEnemyEssence1"] = { type = "Suffix", affix = "of the Essence", "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", statOrder = { 4858 }, level = 63, group = "AttackCastSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1027670161] = { "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%" }, } }, + ["MovementSpeedPerNearbyEnemyEssence1"] = { type = "Prefix", affix = "Essences", "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", statOrder = { 9545 }, level = 63, group = "MovementSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1426967889] = { "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%" }, } }, + ["GlobalDefencesNoOtherDefenceModifiersOnEquipmentEssence1"] = { type = "Prefix", affix = "Essences", "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items", statOrder = { 6969 }, level = 63, group = "GlobalDefencesNoOtherDefenceModifiersOnEquipment", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [2939710712] = { "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items" }, } }, + ["LocalGemLevelIfOnlySocketedGemEssence1"] = { type = "Prefix", affix = "Essences", "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item", statOrder = { 8131 }, level = 63, group = "LocalGemLevelIfOnlySocketedGem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3298991976] = { "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item" }, } }, + ["ProjectilesChainAtCloseRangeEssence1"] = { type = "Suffix", affix = "of the Essence", "Projectiles can Chain from any number of additional targets in Close Range", statOrder = { 9891 }, level = 63, group = "ProjectilesChainAtCloseRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2940232338] = { "Projectiles can Chain from any number of additional targets in Close Range" }, } }, + ["AilmentDurationIfNotAppliedThatAilmentRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently", statOrder = { 5035 }, level = 63, group = "AilmentDurationIfNotAppliedThatAilmentRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [967840105] = { "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently" }, } }, + ["ShockwaveUnleashCountEssence1"] = { type = "Prefix", affix = "Essences", "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals", "Right ring slot: Shockwave has +1 to Cooldown Uses", statOrder = { 8094, 8123 }, level = 63, group = "ShockwaveUnleashCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [597522922] = { "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals" }, [651133374] = { "Right ring slot: Shockwave has +1 to Cooldown Uses" }, } }, + ["MagicFlaskEffectNoAdjacentFlasksEssence1"] = { type = "Prefix", affix = "Essences", "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them", statOrder = { 8262 }, level = 63, group = "MagicFlaskEffectNoAdjacentFlasks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2649904663] = { "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them" }, } }, + ["ArmourAppliesElementalHitsIfBlockedRecentlyEssence1"] = { type = "Prefix", affix = "Essences", "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4794 }, level = 63, group = "ArmourAppliesElementalHitsIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [1239225602] = { "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } }, + ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrder = { 5047 }, level = 30, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, + ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrder = { 5047 }, level = 60, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, + ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(18-24)% chance to Ignite", statOrder = { 2049 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(18-24)% chance to Ignite" }, } }, + ["ChanceToIgnite2"] = { type = "Suffix", affix = "of Combustion", "(25-30)% chance to Ignite", statOrder = { 2049 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(25-30)% chance to Ignite" }, } }, + ["ChanceToIgnite3_"] = { type = "Suffix", affix = "of Conflagration", "(31-40)% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(31-40)% chance to Ignite" }, } }, + ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(25-32)% chance to Ignite", statOrder = { 2049 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(25-32)% chance to Ignite" }, } }, + ["TwoHandChanceToIgnite2_"] = { type = "Suffix", affix = "of Combustion", "(33-42)% chance to Ignite", statOrder = { 2049 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(33-42)% chance to Ignite" }, } }, + ["TwoHandChanceToIgnite3"] = { type = "Suffix", affix = "of Conflagration", "(43-55)% chance to Ignite", statOrder = { 2049 }, level = 75, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(43-55)% chance to Ignite" }, } }, + ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 15, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, } }, + ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 55, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, } }, + ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 85, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, } }, + ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrder = { 8116 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "10% chance to Poison on Hit" }, } }, + ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 8116 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, + ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 8116 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, } }, + ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1409, 8116 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, + ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 2052 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(18-24)% chance to Freeze" }, } }, + ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 2052 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-30)% chance to Freeze" }, } }, + ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(31-40)% chance to Freeze" }, } }, + ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 2052 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-32)% chance to Freeze" }, } }, + ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 2052 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(33-42)% chance to Freeze" }, } }, + ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 2052 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(43-55)% chance to Freeze" }, } }, + ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 2056 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(18-24)% chance to Shock" }, } }, + ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 2056 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-30)% chance to Shock" }, } }, + ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(31-40)% chance to Shock" }, } }, + ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(25-32)% chance to Shock", statOrder = { 2056 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-32)% chance to Shock" }, } }, + ["TwoHandChanceToShock2_"] = { type = "Suffix", affix = "of Zapping", "(33-42)% chance to Shock", statOrder = { 2056 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(33-42)% chance to Shock" }, } }, + ["TwoHandChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(43-55)% chance to Shock", statOrder = { 2056 }, level = 75, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(43-55)% chance to Shock" }, } }, + ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(26-30)% increased Burning Damage", statOrder = { 1900 }, level = 20, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(26-30)% increased Burning Damage" }, } }, + ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-35)% increased Burning Damage", statOrder = { 1900 }, level = 40, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, } }, + ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(36-40)% increased Burning Damage", statOrder = { 1900 }, level = 60, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(36-40)% increased Burning Damage" }, } }, + ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(31-40)% increased Burning Damage", statOrder = { 1900 }, level = 20, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(31-40)% increased Burning Damage" }, } }, + ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(41-50)% increased Burning Damage", statOrder = { 1900 }, level = 40, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(41-50)% increased Burning Damage" }, } }, + ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(51-60)% increased Burning Damage", statOrder = { 1900 }, level = 60, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(51-60)% increased Burning Damage" }, } }, + ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrder = { 3217, 8116 }, level = 20, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, [1290399200] = { "(21-30)% increased Damage with Poison" }, } }, + ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(31-40)% increased Damage with Poison", "25% chance to Poison on Hit", statOrder = { 3217, 8116 }, level = 40, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "25% chance to Poison on Hit" }, [1290399200] = { "(31-40)% increased Damage with Poison" }, } }, + ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3217, 8116 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [1290399200] = { "(41-50)% increased Damage with Poison" }, } }, + ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1414, 3217 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, + ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1431, 3217 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, + ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2515, 3204 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, [1294118672] = { "(21-30)% increased Damage with Bleeding" }, } }, + ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2515, 3204 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, [1294118672] = { "(31-40)% increased Damage with Bleeding" }, } }, + ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2515, 3204 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, [1294118672] = { "(41-50)% increased Damage with Bleeding" }, } }, + ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2296 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "2% additional Physical Damage Reduction" }, } }, + ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-4)% additional Physical Damage Reduction" }, } }, + ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } }, + ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrder = { 2672 }, level = 25, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.6% of Energy Shield per second" }, } }, + ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrder = { 2672 }, level = 85, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, + ["LifeRegenerationRate1"] = { type = "Suffix", affix = "of Esprit", "(9-11)% increased Life Regeneration rate", statOrder = { 1600 }, level = 46, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(9-11)% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRate2"] = { type = "Suffix", affix = "of Perpetuity", "(12-14)% increased Life Regeneration rate", statOrder = { 1600 }, level = 57, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(12-14)% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRate3"] = { type = "Suffix", affix = "of Vivification", "(15-17)% increased Life Regeneration rate", statOrder = { 1600 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-17)% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRate4"] = { type = "Suffix", affix = "of Youth", "(18-19)% increased Life Regeneration rate", statOrder = { 1600 }, level = 76, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(18-19)% increased Life Regeneration rate" }, } }, + ["LifeRegenerationRate5"] = { type = "Suffix", affix = "of Everlasting", "(20-21)% increased Life Regeneration rate", statOrder = { 1600 }, level = 85, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(20-21)% increased Life Regeneration rate" }, } }, + ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 2296 }, level = 45, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Sentry", "5% additional Physical Damage Reduction", statOrder = { 2296 }, level = 58, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Keeper", "6% additional Physical Damage Reduction", statOrder = { 2296 }, level = 67, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 2296 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 2296 }, level = 86, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, + ["ChanceToSuppressSpells1_"] = { type = "Suffix", affix = "of Rebuttal", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 46, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-6)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpells2"] = { type = "Suffix", affix = "of Snuffing", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 57, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(7-8)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpells3"] = { type = "Suffix", affix = "of Revoking", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(9-10)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpells4"] = { type = "Suffix", affix = "of Abjuration", "+(11-12)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 76, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(11-12)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpells5__"] = { type = "Suffix", affix = "of Nullification", "+(13-14)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(13-14)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsHigh1__"] = { type = "Suffix", affix = "of Rebuttal", "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(8-10)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsHigh2__"] = { type = "Suffix", affix = "of Snuffing", "+(11-13)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(11-13)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsHigh3"] = { type = "Suffix", affix = "of Revoking", "+(14-16)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 67, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(14-16)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsHigh4_"] = { type = "Suffix", affix = "of Abjuration", "+(17-19)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 77, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(17-19)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsHigh5___"] = { type = "Suffix", affix = "of Nullification", "+(20-22)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 86, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-22)% chance to Suppress Spell Damage" }, } }, + ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Allaying", "(24-26)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 46, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(24-26)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(27-29)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 57, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(27-29)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(30-32)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(30-32)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(33-35)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 76, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(33-35)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(36-38)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(36-38)% increased Energy Shield Recharge Rate" }, } }, + ["FasterStartEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Enlivening", "(27-34)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 45, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(27-34)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Zest", "(35-42)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 58, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(35-42)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartEnergyShieldRecharge3__"] = { type = "Suffix", affix = "of Galvanising", "(43-50)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 67, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(43-50)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Vigour", "(51-58)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 77, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-58)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartEnergyShieldRecharge5_"] = { type = "Suffix", affix = "of Second Wind", "(59-66)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 86, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(59-66)% faster start of Energy Shield Recharge" }, } }, + ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } }, + ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "You take (31-40)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (31-40)% reduced Extra Damage from Critical Strikes" }, } }, + ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "You take (41-50)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 67, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (41-50)% reduced Extra Damage from Critical Strikes" }, } }, + ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "You take (51-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 78, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (51-60)% reduced Extra Damage from Critical Strikes" }, } }, + ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Bandaging", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Stitching", "(7-9)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(7-9)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Suturing", "(10-12)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Fleshbinding", "(13-15)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, + ["GlobalSkillGemLevel1"] = { type = "Prefix", affix = "Exalter's", "+1 to Level of all Skill Gems", statOrder = { 4678 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 50, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } }, + ["GlobalFireGemLevel1_"] = { type = "Prefix", affix = "Vulcanist's", "+1 to Level of all Fire Skill Gems", statOrder = { 6674 }, level = 75, group = "GlobalFireGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skill Gems" }, } }, + ["GlobalColdGemLevel1__"] = { type = "Prefix", affix = "Rimedweller's", "+1 to Level of all Cold Skill Gems", statOrder = { 5918 }, level = 75, group = "GlobalColdGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+1 to Level of all Cold Skill Gems" }, } }, + ["GlobalLightningGemLevel1"] = { type = "Prefix", affix = "Stormbrewer's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7567 }, level = 75, group = "GlobalLightningGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skill Gems" }, } }, + ["GlobalPhysicalGemLevel1_"] = { type = "Prefix", affix = "Behemoth's", "+1 to Level of all Physical Skill Gems", statOrder = { 9814 }, level = 75, group = "GlobalPhysicalGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "gem" }, tradeHashes = { [619213329] = { "+1 to Level of all Physical Skill Gems" }, } }, + ["GlobalChaosGemLevel1"] = { type = "Prefix", affix = "Provocateur's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5837 }, level = 75, group = "GlobalChaosGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skill Gems" }, } }, + ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to maximum Chaos Resistance", statOrder = { 1663 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["MaximumAllResist1_"] = { type = "Suffix", affix = "of the Sempiternal", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 75, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["MaximumAllResist2"] = { type = "Suffix", affix = "of the Deathless", "+2% to all maximum Resistances", statOrder = { 1665 }, level = 81, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["DamageWithBowSkills1"] = { type = "Prefix", affix = "Acute", "(5-10)% increased Damage with Bow Skills", statOrder = { 6106 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(5-10)% increased Damage with Bow Skills" }, } }, + ["DamageWithBowSkills2"] = { type = "Prefix", affix = "Trenchant", "(11-20)% increased Damage with Bow Skills", statOrder = { 6106 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, + ["DamageWithBowSkills3"] = { type = "Prefix", affix = "Perforating", "(21-30)% increased Damage with Bow Skills", statOrder = { 6106 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, + ["DamageWithBowSkills4_"] = { type = "Prefix", affix = "Incisive", "(31-36)% increased Damage with Bow Skills", statOrder = { 6106 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, + ["DamageWithBowSkills5"] = { type = "Prefix", affix = "Lacerating", "(37-42)% increased Damage with Bow Skills", statOrder = { 6106 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, + ["DamageWithBowSkills6_"] = { type = "Prefix", affix = "Impaling", "(43-50)% increased Damage with Bow Skills", statOrder = { 6106 }, level = 86, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, + ["DamageWithBowSkillsEssence3a"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Damage with Bow Skills", statOrder = { 6106 }, level = 26, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-25)% increased Damage with Bow Skills" }, } }, + ["DamageWithBowSkillsEssence3b_"] = { type = "Prefix", affix = "Essences", "(26-30)% increased Damage with Bow Skills", statOrder = { 6106 }, level = 42, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(26-30)% increased Damage with Bow Skills" }, } }, + ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 324, 1918 }, level = 68, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [407317553] = { "Socketed Gems are Supported by Level 15 More Duration" }, [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, + ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 507 }, level = 68, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } }, + ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrder = { 10618 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, + ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrder = { 10613 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, + ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Shocked Ground", statOrder = { 10638 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, + ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Desecrated Ground", statOrder = { 10624 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, + ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 84, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 83, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, + ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(15-22)% chance to Avoid being Stunned" }, } }, + ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(23-30)% chance to Avoid being Stunned" }, } }, + ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(31-35)% chance to Avoid being Stunned" }, } }, + ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(14-17)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(14-17)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(18-21)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-21)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrder = { 5046 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(6-9)% chance to avoid Projectiles" }, } }, + ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrder = { 5046 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, } }, + ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(4-6)% chance to gain an Endurance Charge on Kill" }, } }, + ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, + ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrder = { 475, 1216 }, level = 68, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 18 Spell Totem" }, [3851254963] = { "(20-25)% increased Totem Damage" }, } }, + ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrder = { 475, 1216 }, level = 75, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, [3851254963] = { "(26-30)% increased Totem Damage" }, } }, + ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 475, 1216 }, level = 80, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 22 Spell Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } }, + ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrder = { 475, 2604 }, level = 68, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(8-12)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 18 Spell Totem" }, } }, + ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrder = { 475, 2604 }, level = 75, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(13-16)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } }, + ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 475, 2604 }, level = 80, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 22 Spell Totem" }, } }, + ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrder = { 372, 1216 }, level = 68, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 18 Ballista Totem" }, [3851254963] = { "(20-25)% increased Totem Damage" }, } }, + ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrder = { 372, 1216 }, level = 75, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, [3851254963] = { "(26-30)% increased Totem Damage" }, } }, + ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 372, 1216 }, level = 80, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 22 Ballista Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } }, + ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrder = { 372, 2604 }, level = 68, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(8-12)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 18 Ballista Totem" }, } }, + ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrder = { 372, 2604 }, level = 75, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(13-16)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, } }, + ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 372, 2604 }, level = 80, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 22 Ballista Totem" }, } }, + ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 494 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } }, + ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrder = { 715 }, level = 68, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3566242751] = { "Grants Level 20 Decoy Totem Skill" }, } }, + ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrder = { 1639 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, + ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrder = { 480, 1434 }, level = 68, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 16 Faster Attacks" }, } }, + ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrder = { 480, 1434 }, level = 75, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(10-12)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } }, + ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 480, 1434 }, level = 82, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } }, + ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrder = { 511, 1470 }, level = 68, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 16 Faster Casting" }, [2891184298] = { "(7-9)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrder = { 511, 1470 }, level = 75, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, [2891184298] = { "(10-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 511, 1470 }, level = 84, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } }, + ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 68, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-9)% increased Attack and Cast Speed" }, } }, + ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 75, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-12)% increased Attack and Cast Speed" }, } }, + ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 85, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, } }, + ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrder = { 525 }, level = 68, group = "DisplaySupportedByManaLeech", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2608615082] = { "Socketed Gems are Supported by Level 15 Mana Leech" }, } }, + ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrder = { 493, 1819 }, level = 68, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, [3759663284] = { "(15-20)% increased Projectile Speed" }, } }, + ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrder = { 493, 1819 }, level = 75, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, [3759663284] = { "(21-25)% increased Projectile Speed" }, } }, + ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 493, 1819 }, level = 82, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } }, + ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrder = { 387, 2019 }, level = 68, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 16 Slower Projectiles" }, [1839076647] = { "(15-18)% increased Projectile Damage" }, } }, + ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrder = { 387, 2019 }, level = 75, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 18 Slower Projectiles" }, [1839076647] = { "(19-22)% increased Projectile Damage" }, } }, + ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 387, 2019 }, level = 83, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 20 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } }, + ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } }, + ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(21-25)% chance to Ignore Stuns while Casting" }, } }, + ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(26-30)% chance to Ignore Stuns while Casting" }, } }, + ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Melee Strike Range", statOrder = { 2560 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, + ["IncreasedMeleeWeaponRangeAndMeleeDamageUber1"] = { type = "Suffix", affix = "of the Elder", "(13-16)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1257, 2560 }, level = 80, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [1002362373] = { "(13-16)% increased Melee Damage" }, } }, + ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 465, 9664 }, level = 68, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 18 Trap" }, } }, + ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 465, 9664 }, level = 75, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, } }, + ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 465, 9664 }, level = 84, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 22 Trap" }, } }, + ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrder = { 465, 1217 }, level = 68, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 18 Trap" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } }, + ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrder = { 465, 1217 }, level = 75, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } }, + ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrder = { 465, 1217 }, level = 80, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 22 Trap" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, + ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrder = { 400, 1217 }, level = 68, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 16 Advanced Traps" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } }, + ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrder = { 400, 1217 }, level = 75, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 18 Advanced Traps" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } }, + ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 400, 1217 }, level = 80, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, + ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrder = { 400, 1950 }, level = 68, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(8-12)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 16 Advanced Traps" }, } }, + ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrder = { 400, 1950 }, level = 75, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(13-16)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 18 Advanced Traps" }, } }, + ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 400, 1950 }, level = 80, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(17-20)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, } }, + ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrder = { 468, 1217 }, level = 68, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } }, + ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrder = { 468, 1217 }, level = 75, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 18 Trap And Mine Damage" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } }, + ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 468, 1217 }, level = 80, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, + ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(20-25)% increased Damage with Poison", statOrder = { 534, 3217 }, level = 68, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 16 Chance to Poison" }, [1290399200] = { "(20-25)% increased Damage with Poison" }, } }, + ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(26-30)% increased Damage with Poison", statOrder = { 534, 3217 }, level = 75, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, [1290399200] = { "(26-30)% increased Damage with Poison" }, } }, + ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 534, 3217 }, level = 80, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, + ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(8-12)% increased Poison Duration", statOrder = { 534, 3205 }, level = 68, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 16 Chance to Poison" }, } }, + ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(13-16)% increased Poison Duration", statOrder = { 534, 3205 }, level = 75, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(13-16)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, } }, + ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 534, 3205 }, level = 80, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(17-20)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } }, + ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrder = { 253, 3204 }, level = 68, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 16 Chance To Bleed" }, [1294118672] = { "(20-25)% increased Damage with Bleeding" }, } }, + ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrder = { 253, 3204 }, level = 75, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 18 Chance To Bleed" }, [1294118672] = { "(26-30)% increased Damage with Bleeding" }, } }, + ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 253, 3204 }, level = 80, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, [1294118672] = { "(31-35)% increased Damage with Bleeding" }, } }, + ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } }, + ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, + ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } }, + ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, + ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrder = { 491, 1458 }, level = 68, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 16 Additional Accuracy" }, [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrder = { 491, 1458 }, level = 75, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 18 Additional Accuracy" }, [624954515] = { "(11-15)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 491, 1458 }, level = 83, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 20 Additional Accuracy" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, + ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(2-3)% Chance to Block Attack Damage" }, } }, + ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, + ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrder = { 481, 2992 }, level = 68, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 16 Blind" }, [2221570601] = { "(5-6)% Global chance to Blind Enemies on hit" }, } }, + ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 481, 2992 }, level = 75, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 18 Blind" }, [2221570601] = { "(7-8)% Global chance to Blind Enemies on hit" }, } }, + ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 481, 2992 }, level = 80, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } }, + ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrder = { 578 }, level = 68, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +30% to Critical Strike Multiplier" }, } }, + ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrder = { 578 }, level = 75, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +50% to Critical Strike Multiplier" }, } }, + ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrder = { 578 }, level = 83, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +70% to Critical Strike Multiplier" }, } }, + ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrder = { 559 }, level = 68, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +30% to Critical Strike Multiplier" }, } }, + ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrder = { 559 }, level = 75, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +50% to Critical Strike Multiplier" }, } }, + ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrder = { 559 }, level = 84, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +70% to Critical Strike Multiplier" }, } }, + ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrder = { 464, 2058 }, level = 68, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(15-18)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 16 Concentrated Effect" }, } }, + ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrder = { 464, 2058 }, level = 75, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(19-22)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 18 Concentrated Effect" }, } }, + ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 464, 2058 }, level = 82, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-25)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } }, + ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrder = { 233, 1903 }, level = 68, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 16 Increased Area of Effect" }, [280731498] = { "(7-9)% increased Area of Effect" }, } }, + ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrder = { 233, 1903 }, level = 75, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 18 Increased Area of Effect" }, [280731498] = { "(10-12)% increased Area of Effect" }, } }, + ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 233, 1903 }, level = 83, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, [280731498] = { "(13-15)% increased Area of Effect" }, } }, + ["MaximumManaUber1"] = { type = "Prefix", affix = "The Elder's", "(9-11)% increased maximum Mana", statOrder = { 1603 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } }, + ["MaximumManaUber2_"] = { type = "Prefix", affix = "The Elder's", "(12-15)% increased maximum Mana", statOrder = { 1603 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } }, + ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrder = { 517, 1996 }, level = 68, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 16 Minion Damage" }, [1589917703] = { "Minions deal (15-18)% increased Damage" }, } }, + ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrder = { 517, 1996 }, level = 75, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 18 Minion Damage" }, [1589917703] = { "Minions deal (19-22)% increased Damage" }, } }, + ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 517, 1996 }, level = 83, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 20 Minion Damage" }, [1589917703] = { "Minions deal (23-25)% increased Damage" }, } }, + ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrder = { 515, 1789 }, level = 68, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 16 Minion Life" }, [770672621] = { "Minions have (15-18)% increased maximum Life" }, } }, + ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrder = { 515, 1789 }, level = 75, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 18 Minion Life" }, [770672621] = { "Minions have (19-22)% increased maximum Life" }, } }, + ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 515, 1789 }, level = 80, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 20 Minion Life" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, + ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrder = { 508, 3585 }, level = 68, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 18 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } }, + ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrder = { 508, 3585 }, level = 75, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } }, + ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrder = { 508, 3585 }, level = 85, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 22 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } }, + ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrder = { 508, 1219 }, level = 68, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(20-25)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 18 Blastchain Mine" }, } }, + ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrder = { 508, 1219 }, level = 75, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(26-30)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, } }, + ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 508, 1219 }, level = 80, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 22 Blastchain Mine" }, } }, + ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrder = { 468, 1219 }, level = 68, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(20-25)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } }, + ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrder = { 468, 1219 }, level = 75, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(26-30)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 18 Trap And Mine Damage" }, } }, + ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 468, 1219 }, level = 80, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, } }, + ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Cold Ailments", statOrder = { 522, 5880 }, level = 68, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(8-12)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 16 Hypothermia" }, } }, + ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Cold Ailments", statOrder = { 522, 5880 }, level = 75, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(13-16)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 18 Hypothermia" }, } }, + ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 522, 5880 }, level = 80, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(17-20)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 20 Hypothermia" }, } }, + ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 532, 7535 }, level = 68, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 16 Innervate" }, } }, + ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Lightning Ailments", statOrder = { 532, 7535 }, level = 75, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(13-16)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 18 Innervate" }, } }, + ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 532, 7535 }, level = 80, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(17-20)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 20 Innervate" }, } }, + ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrder = { 319, 1882 }, level = 68, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(8-12)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 16 Immolate" }, } }, + ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrder = { 319, 1882 }, level = 75, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(13-16)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 18 Immolate" }, } }, + ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 319, 1882 }, level = 80, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(17-20)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 20 Immolate" }, } }, + ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrder = { 322, 1900 }, level = 68, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(20-25)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 16 Burning Damage" }, } }, + ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrder = { 322, 1900 }, level = 75, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(26-30)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 18 Burning Damage" }, } }, + ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 322, 1900 }, level = 82, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 20 Burning Damage" }, } }, + ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(4-6)% chance to gain a Power Charge on Kill" }, } }, + ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } }, + ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 375 }, level = 68, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2487643588] = { "Socketed Gems are Supported by Level 20 Less Duration" }, } }, + ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1428 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1428 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-34) to (51-59) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1429 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1429 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-28) to (41-48) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1430 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1430 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (88-93) Lightning Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1427 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (17-22) to (33-39) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (21-28) to (42-49) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1427 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-34) to (51-59) Physical Damage to Spells" }, } }, + ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1431 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (27-32) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (17-23) to (34-40) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1431 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (21-28) to (41-48) Chaos Damage to Spells" }, } }, + ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(41-55)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } }, + ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrder = { 1605 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, + ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrder = { 1605 }, level = 80, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, } }, + ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, + ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, } }, + ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrder = { 577 }, level = 68, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +1% to Critical Strike Chance" }, } }, + ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrder = { 577 }, level = 75, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +2% to Critical Strike Chance" }, } }, + ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrder = { 577 }, level = 84, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +3% to Critical Strike Chance" }, } }, + ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrder = { 558 }, level = 68, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +1% to Critical Strike Chance" }, } }, + ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrder = { 558 }, level = 75, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +2% to Critical Strike Chance" }, } }, + ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrder = { 558 }, level = 83, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +3% to Critical Strike Chance" }, } }, + ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 8028 }, level = 85, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } }, + ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Nearby Enemies take 6% increased Elemental Damage", statOrder = { 8023 }, level = 85, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [639595152] = { "Nearby Enemies take 6% increased Elemental Damage" }, [2734809852] = { "6% increased Elemental Damage taken" }, } }, + ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Skill Gems", statOrder = { 196 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, + ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to Level of Socketed Support Gems", statOrder = { 195 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, + ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "The Elder's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "The Elder's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 84, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(13-15)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(13-15)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 82, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(13-15)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } }, + ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } }, + ["ElementalDamageCannotBeReflectedPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions prevent +100% of Reflected Elemental Damage", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "You and your Minions prevent +100% of Reflected Elemental Damage" }, } }, + ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, + ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, + ["PhysicalDamageCannotBeReflectedPercentUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions prevent +100% of Reflected Physical Damage", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "You and your Minions prevent +100% of Reflected Physical Damage" }, } }, + ["MaximumLifeUber1"] = { type = "Prefix", affix = "The Elder's", "(5-8)% increased maximum Life", statOrder = { 1593 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(5-8)% increased maximum Life" }, } }, + ["MaximumLifeUber2"] = { type = "Prefix", affix = "The Elder's", "(9-12)% increased maximum Life", statOrder = { 1593 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(9-12)% increased maximum Life" }, } }, + ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrder = { 1603 }, level = 68, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } }, + ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrder = { 1603 }, level = 75, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } }, + ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, + ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrder = { 1772 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (3-4)% of Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrder = { 1772 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (5-6)% of Life on Kill" }, } }, + ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrder = { 1774 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (3-4)% of Mana on Kill" }, } }, + ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrder = { 1774 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, } }, + ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1773 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-4)% of Energy Shield on Kill" }, } }, + ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1773 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, } }, + ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrder = { 1207 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-8)% increased Strength" }, } }, + ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrder = { 1207 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, } }, + ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrder = { 1208 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } }, + ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrder = { 1208 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } }, + ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrder = { 1209 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } }, + ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrder = { 1209 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, } }, + ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrder = { 1967 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.5)% of Life per second" }, } }, + ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrder = { 1967 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, + ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 331, 10661 }, level = 68, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(8-12)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 10 Item Rarity" }, } }, + ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 331, 10661 }, level = 85, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(13-18)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 15 Item Rarity" }, } }, + ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4842 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } }, + ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4842 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.1-1.5)% to Critical Strike Chance" }, } }, + ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } }, + ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.1-1.5)% to Spell Critical Strike Chance" }, } }, + ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrder = { 660 }, level = 68, group = "WrathSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2265307453] = { "Grants Level 22 Wrath Skill" }, } }, + ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrder = { 662 }, level = 68, group = "AngerSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [484879947] = { "Grants Level 22 Anger Skill" }, } }, + ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrder = { 661 }, level = 68, group = "HatredSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2429546158] = { "Grants Level 22 Hatred Skill" }, } }, + ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrder = { 667 }, level = 85, group = "GrantsEnvy", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, + ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrder = { 663 }, level = 68, group = "DeterminationSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [4265392510] = { "Grants Level 22 Determination Skill" }, } }, + ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrder = { 664 }, level = 68, group = "GraceSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2867050084] = { "Grants Level 22 Grace Skill" }, } }, + ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrder = { 666 }, level = 68, group = "DisciplineSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2341269061] = { "Grants Level 22 Discipline Skill" }, } }, + ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrder = { 650 }, level = 68, group = "HasteSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1188846263] = { "Grants Level 22 Haste Skill" }, } }, + ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrder = { 655 }, level = 68, group = "VitalitySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2410613176] = { "Grants Level 22 Vitality Skill" }, } }, + ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrder = { 653 }, level = 68, group = "ClaritySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3511815065] = { "Grants Level 22 Clarity Skill" }, } }, + ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2578 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, + ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2578 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } }, + ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechSuffixUber1_"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } }, + ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrder = { 1821 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(4-6)% increased Movement Speed" }, } }, + ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrder = { 1821 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-8)% increased Movement Speed" }, } }, + ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(7-10)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(7-10)% Chance to Block Spell Damage" }, } }, + ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(10-12)% Chance to Block Spell Damage" }, } }, + ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, + ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } }, + ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrder = { 1206 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } }, + ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrder = { 1206 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } }, + ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrder = { 1206 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } }, + ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrder = { 1206 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } }, + ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 82, group = "ReducedReservation", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "The Elder's", "(7-9)% increased Area of Effect", statOrder = { 1903 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(7-9)% increased Area of Effect" }, } }, + ["AreaOfEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(10-12)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(10-12)% increased Area of Effect" }, } }, + ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "The Elder's", "(13-15)% increased Area of Effect", statOrder = { 1903 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, } }, + ["AdditionalPierceUber1"] = { type = "Prefix", affix = "The Elder's", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 68, group = "AdditionalPierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrder = { 1615 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, tradeHashes = { [884586851] = { "(4-7)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrder = { 1615 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, tradeHashes = { [884586851] = { "(8-10)% increased Quantity of Items found" }, } }, + ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (8-11)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (12-15)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (8-11)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (12-15)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (8-11)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (12-15)% of Physical Damage as Extra Lightning Damage" }, } }, + ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrder = { 1434 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [681332047] = { "(7-13)% increased Attack Speed" }, } }, + ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9623 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [2063695047] = { "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage" }, } }, + ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3648 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, + ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3648 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, + ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2183 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, + ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2185 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } }, + ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1755 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2916634441] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, + ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, + ["MaximumLifeLeechRateUpdatedSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, + ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrder = { 3014 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-7)% Elemental Resistances" }, } }, + ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 3014 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (8-10)% Elemental Resistances" }, } }, + ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 15 Strength", statOrder = { 6144 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } }, + ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrder = { 6142 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, + ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrder = { 6143 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } }, + ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(25-29)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-29)% reduced Effect of Curses on you" }, } }, + ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(35-40)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(35-40)% reduced Effect of Curses on you" }, } }, + ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrder = { 1257 }, level = 68, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } }, + ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrder = { 1257 }, level = 75, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(26-30)% increased Melee Damage" }, } }, + ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrder = { 1257 }, level = 83, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(31-35)% increased Melee Damage" }, } }, + ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(20-25)% increased Projectile Attack Damage" }, } }, + ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(26-30)% increased Projectile Attack Damage" }, } }, + ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(31-35)% increased Projectile Attack Damage" }, } }, + ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, + ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-30)% increased Spell Damage" }, } }, + ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrder = { 1246 }, level = 82, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } }, + ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (31-45)% reduced Reflected Elemental Damage" }, } }, + ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (46-55)% reduced Reflected Elemental Damage" }, } }, + ["ElementalDamageCannotBeReflectedPercentRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions prevent +(40-55)% of Reflected Elemental Damage", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "You and your Minions prevent +(40-55)% of Reflected Elemental Damage" }, } }, + ["ElementalDamageCannotBeReflectedPercentRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions prevent +(56-75)% of Reflected Elemental Damage", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "You and your Minions prevent +(56-75)% of Reflected Elemental Damage" }, } }, + ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (31-45)% reduced Reflected Physical Damage" }, } }, + ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (46-55)% reduced Reflected Physical Damage" }, } }, + ["PhysicalDamageCannotBeReflectedPercentRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions prevent +(40-55)% of Reflected Physical Damage", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "You and your Minions prevent +(40-55)% of Reflected Physical Damage" }, } }, + ["PhysicalDamageCannotBeReflectedPercentRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions prevent +(56-75)% of Reflected Physical Damage", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "You and your Minions prevent +(56-75)% of Reflected Physical Damage" }, } }, + ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(10-15)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(16-20)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(21-25)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(8-12)% to Global Critical Strike Multiplier" }, } }, + ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-16)% to Global Critical Strike Multiplier" }, } }, + ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-20)% to Global Critical Strike Multiplier" }, } }, + ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks" }, } }, + ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks" }, } }, + ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrder = { 1626 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3666934677] = { "(2-3)% increased Experience gain" }, } }, + ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (10-15) Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (16-20) Life per Enemy Hit with Attacks" }, } }, + ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 68, group = "ManaGainPerTarget", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } }, + ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "The Elder's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 68, group = "ManaGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } }, + ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1762 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (8-12) Life per Enemy Hit with Spells" }, } }, + ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1762 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (13-15) Life per Enemy Hit with Spells" }, } }, + ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Spells", statOrder = { 8293 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "caster" }, tradeHashes = { [2474196346] = { "Gain (2-3) Mana per Enemy Hit with Spells" }, } }, + ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(11-15)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, + ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 779 }, level = 75, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 779 }, level = 80, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 780 }, level = 75, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2659463225] = { "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 780 }, level = 80, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2659463225] = { "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 782 }, level = 75, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2021420128] = { "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 782 }, level = 80, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2021420128] = { "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitAssassinsMarkNewUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 819 }, level = 75, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitAssassinsMarkNewUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 819 }, level = 80, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitPoachersMarkNewUber1__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 824 }, level = 75, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3904501306] = { "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitPoachersMarkNewUber2__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 824 }, level = 80, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3904501306] = { "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitWarlordsMarkNewUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 827 }, level = 75, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2049471530] = { "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitWarlordsMarkNewUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 827 }, level = 80, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2049471530] = { "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrder = { 721 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3880462354] = { "Grants Level 22 Herald of Ash Skill" }, } }, + ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrder = { 722 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3846248551] = { "Grants Level 22 Herald of Ice Skill" }, } }, + ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrder = { 725 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1665492921] = { "Grants Level 22 Herald of Thunder Skill" }, } }, + ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrder = { 5751 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(2-3)% chance to Evade Attack Hits" }, } }, + ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5751 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(4-5)% chance to Evade Attack Hits" }, } }, + ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6979 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } }, + ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6979 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } }, + ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6978 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, + ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6978 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, + ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6981 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, + ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6981 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, + ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } }, + ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(45-36) Physical Damage taken from Attack Hits" }, } }, + ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } }, + ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(4-7)% increased maximum Life", statOrder = { 1593 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(4-7)% increased maximum Life" }, } }, + ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(8-10)% increased maximum Life", statOrder = { 1593 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, + ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrder = { 1583 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-7)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } }, + ["FlaskEffectUber1"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-7)% increased Effect" }, } }, + ["FlaskEffectUber2"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2776 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-10)% increased Effect" }, } }, + ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, + ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, + ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-20)% reduced Extra Damage from Critical Strikes" }, } }, + ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } }, + ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Life Recovery rate", statOrder = { 1601 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(7-9)% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(10-12)% increased Life Recovery rate" }, } }, + ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-9)% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% increased Energy Shield Recovery rate" }, } }, + ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Mana Recovery rate", statOrder = { 1609 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(7-9)% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% increased Mana Recovery rate" }, } }, + ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "The Elder's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4266 }, level = 82, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [311641062] = { "(6-10)% chance for Flasks you use to not consume Charges" }, } }, + ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrder = { 3337 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+(20-25)% to Chaos Resistance during any Flask Effect" }, } }, + ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrder = { 3337 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+(26-30)% to Chaos Resistance during any Flask Effect" }, } }, + ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3222 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "speed" }, tradeHashes = { [304970526] = { "(6-10)% increased Movement Speed during any Flask Effect" }, } }, + ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "The Elder's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5756 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (8-12)% chance to Fortify" }, } }, + ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Enduring Cry Skill", statOrder = { 717 }, level = 68, group = "EnduringCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1031644844] = { "Grants Level 22 Enduring Cry Skill" }, } }, + ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Rallying Cry Skill", statOrder = { 735 }, level = 68, group = "RallyingCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2007746338] = { "Grants Level 22 Rallying Cry Skill" }, } }, + ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Intimidating Cry Skill", statOrder = { 697 }, level = 68, group = "AbyssalCrySkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1271338211] = { "Grants Level 22 Intimidating Cry Skill" }, } }, + ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrder = { 10052 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } }, + ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrder = { 10048 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } }, + ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrder = { 10062 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } }, + ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3336 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-14)% increased Attack Speed during any Flask Effect" }, } }, + ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5541 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-14)% increased Cast Speed during any Flask Effect" }, } }, + ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9315 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(20-25)% increased Melee Damage during any Flask Effect" }, } }, + ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9315 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(26-30)% increased Melee Damage during any Flask Effect" }, } }, + ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9315 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(31-35)% increased Melee Damage during any Flask Effect" }, } }, + ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9871 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(20-25)% increased Projectile Attack Damage during any Flask Effect" }, } }, + ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9871 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(26-30)% increased Projectile Attack Damage during any Flask Effect" }, } }, + ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9871 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(31-35)% increased Projectile Attack Damage during any Flask Effect" }, } }, + ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10295 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10295 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(26-30)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10295 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(31-35)% increased Spell Damage during any Flask Effect" }, } }, + ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(16-20)% increased Global Physical Damage", statOrder = { 1254 }, level = 68, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(16-20)% increased Global Physical Damage" }, } }, + ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(21-25)% increased Global Physical Damage", statOrder = { 1254 }, level = 75, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-25)% increased Global Physical Damage" }, } }, + ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "The Elder's", "(26-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 80, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(26-30)% increased Global Physical Damage" }, } }, + ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrder = { 2003 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(11-15)% increased Elemental Damage" }, } }, + ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrder = { 2003 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(16-20)% increased Elemental Damage" }, } }, + ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrder = { 2003 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(21-25)% increased Elemental Damage" }, } }, + ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "The Elder's", "(11-20)% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [327253797] = { "(11-20)% chance to Defend with 200% of Armour" }, } }, + ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(21-30)% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [327253797] = { "(21-30)% chance to Defend with 200% of Armour" }, } }, + ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Equipped Body Armour", statOrder = { 9257 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(21-25)% increased Energy Shield from Equipped Body Armour" }, } }, + ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9257 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(26-30)% increased Energy Shield from Equipped Body Armour" }, } }, + ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3208, 3217 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } }, + ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3208, 3217 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } }, + ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2515, 3204 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, + ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2515, 3204 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 8268 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } }, + ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } }, + ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "The Elder's", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4309 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, + ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } }, + ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, + ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrder = { 1821 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } }, + ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6852 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } }, + ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "The Elder's", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "The Elder's", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "The Elder's", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrder = { 1665 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrder = { 248 }, level = 68, group = "SupportedByCastOnDamageTaken", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 5 Cast when Damage Taken" }, } }, + ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "The Elder's", "(3-6)% increased maximum Life", statOrder = { 1593 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(3-6)% increased maximum Life" }, } }, + ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% increased maximum Life", statOrder = { 1593 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } }, + ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 539 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } }, + ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 539 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, + ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(9-12)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(9-12)% Chance to Block Spell Damage" }, } }, + ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(12-15)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(12-15)% Chance to Block Spell Damage" }, } }, + ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(7-9)% Chance to Block Spell Damage" }, } }, + ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(10-12)% Chance to Block Spell Damage" }, } }, + ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "The Elder's", "+(500-650) Armour if you've Blocked Recently", statOrder = { 4537 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [4091848539] = { "+(500-650) Armour if you've Blocked Recently" }, } }, + ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "The Elder's", "+(651-800) Armour if you've Blocked Recently", statOrder = { 4537 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [4091848539] = { "+(651-800) Armour if you've Blocked Recently" }, } }, + ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4590 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1214532298] = { "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies" }, } }, + ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4590 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1214532298] = { "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies" }, } }, + ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6905 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [2199099676] = { "Gain an Endurance, Frenzy or Power charge when you Block" }, } }, + ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, + ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6145 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3400437584] = { "1% increased Damage per 1% Chance to Block Attack Damage" }, } }, + ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(25-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(41-50)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(25-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(41-50)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrder = { 3094 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } }, + ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8300 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } }, + ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2493 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } }, + ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrder = { 2277 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, + ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrder = { 537 }, level = 68, group = "SupportedByEnduranceChargeOnStunWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun" }, } }, + ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 354 }, level = 68, group = "SupportedByOnslaughtWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 10 Momentum" }, } }, + ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrder = { 366 }, level = 68, group = "SupportedByPowerChargeOnCritWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [4015918489] = { "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike" }, } }, + ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 507 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 1 Fortify" }, } }, + ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 235 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, + ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 505 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 1 Inspiration" }, } }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 479, 1255 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 16 Melee Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 479, 1255 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 18 Melee Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 479, 1255 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 246, 1255 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 16 Brutality" }, } }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 246, 1255 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 18 Brutality" }, } }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 246, 1255 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, } }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 473, 1255 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 16 Added Fire Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 473, 1255 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 18 Added Fire Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 473, 1255 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 380, 1255 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 16 Ruthless" }, } }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 380, 1255 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 18 Ruthless" }, } }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 380, 1255 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, } }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 354, 1255 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 16 Momentum" }, } }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 354, 1255 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 354, 1255 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 537, 1255 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun" }, } }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 537, 1255 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun" }, } }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 537, 1255 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 507, 1255 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 16 Fortify" }, } }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 507, 1255 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 18 Fortify" }, } }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 507, 1255 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 366, 1255 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 366, 1255 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 366, 1255 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 329, 1255 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 16 Iron Grip" }, } }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 329, 1255 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 18 Iron Grip" }, } }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 329, 1255 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, } }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 493, 1255 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, } }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 493, 1255 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, } }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 493, 1255 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, } }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 361, 1255 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 16 Vicious Projectiles" }, } }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 361, 1255 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 18 Vicious Projectiles" }, } }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 361, 1255 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, } }, + ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 482, 2058 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 16 Melee Splash" }, [4251717817] = { "(23-27)% increased Area Damage" }, } }, + ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 482, 2058 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 18 Melee Splash" }, [4251717817] = { "(28-32)% increased Area Damage" }, } }, + ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 482, 2058 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, [4251717817] = { "(33-37)% increased Area Damage" }, } }, + ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrder = { 392, 1903 }, level = 68, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(5-8)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 16 Ancestral Call" }, } }, + ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrder = { 392, 1903 }, level = 75, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(9-12)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 18 Ancestral Call" }, } }, + ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrder = { 392, 1903 }, level = 80, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 20 Ancestral Call" }, } }, + ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrder = { 492, 1437 }, level = 68, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [2501237765] = { "Socketed Gems are supported by Level 18 Multistrike" }, } }, + ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrder = { 492, 1437 }, level = 75, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [2501237765] = { "Socketed Gems are supported by Level 20 Multistrike" }, } }, + ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrder = { 480, 1437 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } }, + ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrder = { 480, 1437 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Momentum", "(8-10)% increased Attack Speed", statOrder = { 354, 1437 }, level = 68, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Momentum", "(11-12)% increased Attack Speed", statOrder = { 354, 1437 }, level = 75, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrder = { 480, 1437 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrder = { 480, 1437 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1437, 5737 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1437, 5737 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1437, 4944 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1437, 4944 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1437, 5737 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1437, 5737 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1437, 4944 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1437, 4944 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } }, + ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrder = { 323, 1487 }, level = 68, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [2259700079] = { "Socketed Gems are Supported by Level 18 Increased Critical Strikes" }, } }, + ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrder = { 323, 1487 }, level = 75, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, } }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1487, 6008 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [3914638685] = { "50% increased Critical Strike Chance if you have Killed Recently" }, } }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1487, 6008 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [3914638685] = { "50% increased Critical Strike Chance if you have Killed Recently" }, } }, + ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1487, 6043 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } }, + ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1487, 6043 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } }, + ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrder = { 496, 1511 }, level = 68, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 18 Increased Critical Damage" }, [3556824919] = { "+(22-25)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrder = { 496, 1511 }, level = 75, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 20 Increased Critical Damage" }, [3556824919] = { "+(26-29)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrder = { 1511, 1853 }, level = 68, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [3814876985] = { "(5-8)% chance to gain a Power Charge on Critical Strike" }, [3556824919] = { "+(22-25)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrder = { 1511, 1853 }, level = 75, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [3814876985] = { "(9-10)% chance to gain a Power Charge on Critical Strike" }, [3556824919] = { "+(26-29)% to Global Critical Strike Multiplier" }, } }, + ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrder = { 498, 6409 }, level = 68, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, tradeHashes = { [387439868] = { "(28-32)% increased Elemental Damage with Attack Skills" }, [2532625478] = { "Socketed Gems are supported by Level 18 Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrder = { 498, 6409 }, level = 75, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, tradeHashes = { [387439868] = { "(33-37)% increased Elemental Damage with Attack Skills" }, [2532625478] = { "Socketed Gems are supported by Level 20 Elemental Damage with Attacks" }, } }, + ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrder = { 341, 8100 }, level = 68, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 18 Maim" }, [2763429652] = { "15% chance to Maim on Hit" }, } }, + ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrder = { 341, 8100 }, level = 75, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 20 Maim" }, [2763429652] = { "20% chance to Maim on Hit" }, } }, + ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "15% chance to Poison on Hit", statOrder = { 534, 8116 }, level = 68, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit" }, [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, } }, + ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "20% chance to Poison on Hit", statOrder = { 534, 8116 }, level = 75, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } }, + ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrder = { 253, 2509 }, level = 68, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, [4197676934] = { "Socketed Gems are Supported by Level 18 Chance To Bleed" }, } }, + ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrder = { 253, 2509 }, level = 75, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, } }, + ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (7-12)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (13-17)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (18-20)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (7-12)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (13-17)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (18-20)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (7-12)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (13-17)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (18-20)% of Physical Damage as Extra Lightning Damage" }, } }, + ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3416 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(5-6)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3416 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(7-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3416 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(9-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(5-6)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(7-8)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(9-10)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(7-8)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(9-10)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(7-8)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(9-10)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(2-4)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(5-7)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(8-9)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1303 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(23-27)% increased Physical Attack Damage while Dual Wielding" }, } }, + ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1303 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(28-32)% increased Physical Attack Damage while Dual Wielding" }, } }, + ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1303 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(33-37)% increased Physical Attack Damage while Dual Wielding" }, } }, + ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 3014 }, level = 68, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (5-6)% Elemental Resistances" }, } }, + ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 3014 }, level = 75, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } }, + ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 3014 }, level = 83, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } }, + ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 3014 }, level = 68, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, + ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 3014 }, level = 75, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 5% Elemental Resistances" }, } }, + ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 3014 }, level = 83, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, + ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 3014 }, level = 68, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } }, + ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 3014 }, level = 75, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } }, + ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 3014 }, level = 83, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (11-12)% Elemental Resistances" }, } }, + ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrder = { 557 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } }, + ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrder = { 557 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } }, + ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrder = { 576 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } }, + ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrder = { 576 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } }, + ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7979 }, level = 83, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, + ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7978 }, level = 83, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, + ["LocalBleedDamageOverTimeMultiplierUber1___"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7971 }, level = 68, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, + ["LocalBleedDamageOverTimeMultiplierUber2"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7971 }, level = 75, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, + ["LocalBleedDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7971 }, level = 83, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, + ["LocalPoisonDamageOverTimeMultiplierUber1__"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1288 }, level = 68, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } }, + ["LocalPoisonDamageOverTimeMultiplierUber2__"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1288 }, level = 75, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } }, + ["LocalPoisonDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1288 }, level = 83, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } }, + ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(10-15)% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 75, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(16-20)% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 85, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(21-25)% of Physical Damage Converted to Chaos Damage" }, } }, + ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, + ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, + ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4974 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, + ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4974 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, + ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, + ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, + ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrder = { 483 }, level = 68, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 18 Cast On Critical Strike" }, } }, + ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 483 }, level = 75, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 20 Cast On Critical Strike" }, } }, + ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrder = { 249 }, level = 68, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3312593243] = { "Socketed Gems are Supported by Level 18 Cast On Melee Kill" }, } }, + ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 249 }, level = 75, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3312593243] = { "Socketed Gems are Supported by Level 20 Cast On Melee Kill" }, } }, + ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrder = { 251 }, level = 68, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1316646496] = { "Socketed Gems are Supported by Level 18 Cast While Channelling" }, } }, + ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 251 }, level = 75, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1316646496] = { "Socketed Gems are Supported by Level 20 Cast While Channelling" }, } }, + ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrder = { 2062 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.1 metres to Weapon Range", statOrder = { 2779 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, + ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrder = { 1903 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(5-10)% increased Area of Effect" }, } }, + ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(11-15)% increased Area of Effect" }, } }, + ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrder = { 1903 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(16-20)% increased Area of Effect" }, } }, + ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, + ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrder = { 1821 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } }, + ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrder = { 1815 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_elder", "2h_axe_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, + ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 68, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 75, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrder = { 536, 1246 }, level = 68, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(45-52)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 16 Controlled Destruction" }, } }, + ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrder = { 536, 1246 }, level = 75, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(53-56)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 18 Controlled Destruction" }, } }, + ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrder = { 536, 1246 }, level = 80, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(57-60)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 20 Controlled Destruction" }, } }, + ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrder = { 275, 1246 }, level = 68, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(45-52)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 16 Efficacy" }, } }, + ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrder = { 275, 1246 }, level = 75, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(53-56)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 18 Efficacy" }, } }, + ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrder = { 275, 1246 }, level = 80, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(57-60)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 20 Efficacy" }, } }, + ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrder = { 235, 1246 }, level = 68, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 16 Arcane Surge" }, } }, + ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrder = { 235, 1246 }, level = 75, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 18 Arcane Surge" }, } }, + ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrder = { 235, 1246 }, level = 80, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 20 Arcane Surge" }, } }, + ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrder = { 505, 1246 }, level = 68, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 16 Inspiration" }, } }, + ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrder = { 505, 1246 }, level = 75, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 18 Inspiration" }, } }, + ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrder = { 505, 1246 }, level = 80, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 20 Inspiration" }, } }, + ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrder = { 366, 1246 }, level = 68, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } }, + ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrder = { 366, 1246 }, level = 75, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } }, + ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrder = { 366, 1246 }, level = 80, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrder = { 277, 2003 }, level = 68, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 16 Elemental Focus" }, [3141070085] = { "(45-52)% increased Elemental Damage" }, } }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrder = { 277, 2003 }, level = 75, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 18 Elemental Focus" }, [3141070085] = { "(53-56)% increased Elemental Damage" }, } }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrder = { 277, 2003 }, level = 80, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 20 Elemental Focus" }, [3141070085] = { "(57-60)% increased Elemental Damage" }, } }, + ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrder = { 287, 1381 }, level = 68, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(45-52)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 16 Fire Penetration" }, } }, + ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrder = { 287, 1381 }, level = 75, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(53-56)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 18 Fire Penetration" }, } }, + ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrder = { 287, 1381 }, level = 80, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(57-60)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 20 Fire Penetration" }, } }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrder = { 524, 1390 }, level = 68, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(45-52)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 16 Cold Penetration" }, } }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrder = { 524, 1390 }, level = 75, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(53-56)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 18 Cold Penetration" }, } }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrder = { 524, 1390 }, level = 80, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(57-60)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 20 Cold Penetration" }, } }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrder = { 336, 1401 }, level = 68, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 16 Lightning Penetration" }, [2231156303] = { "(45-52)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrder = { 336, 1401 }, level = 75, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 18 Lightning Penetration" }, [2231156303] = { "(53-56)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrder = { 336, 1401 }, level = 80, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 20 Lightning Penetration" }, [2231156303] = { "(57-60)% increased Lightning Damage" }, } }, + ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrder = { 351, 1470 }, level = 68, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [913919528] = { "Socketed Gems are Supported by Level 18 Spell Echo" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrder = { 351, 1470 }, level = 75, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [913919528] = { "Socketed Gems are Supported by Level 20 Spell Echo" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrder = { 511, 1470 }, level = 68, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrder = { 511, 1470 }, level = 75, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Ignore Stuns while Casting", statOrder = { 1470, 1921 }, level = 68, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [1916706958] = { "(15-25)% chance to Ignore Stuns while Casting" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Ignore Stuns while Casting", statOrder = { 1470, 1921 }, level = 75, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [1916706958] = { "(26-35)% chance to Ignore Stuns while Casting" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1470, 5542 }, level = 68, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "20% increased Cast Speed if you've Killed Recently" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1470, 5542 }, level = 75, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "20% increased Cast Speed if you've Killed Recently" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } }, + ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 323, 1481 }, level = 68, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 18 Increased Critical Strikes" }, [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } }, + ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Spell Critical Strike Chance", statOrder = { 323, 1481 }, level = 75, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, [737908626] = { "(75-82)% increased Spell Critical Strike Chance" }, } }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1481, 1853 }, level = 68, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, tradeHashes = { [3814876985] = { "10% chance to gain a Power Charge on Critical Strike" }, [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1481, 1853 }, level = 75, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, tradeHashes = { [3814876985] = { "10% chance to gain a Power Charge on Critical Strike" }, [737908626] = { "(75-82)% increased Spell Critical Strike Chance" }, } }, + ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 477, 2835 }, level = 68, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(5-7)% chance to Freeze, Shock and Ignite" }, [2929101122] = { "Socketed Gems are Supported by Level 18 Elemental Proliferation" }, } }, + ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 477, 2835 }, level = 75, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(8-10)% chance to Freeze, Shock and Ignite" }, [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 403, 2835 }, level = 68, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(5-7)% chance to Freeze, Shock and Ignite" }, [3699494172] = { "Socketed Gems are Supported by Level 18 Unbound Ailments" }, } }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 403, 2835 }, level = 75, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(8-10)% chance to Freeze, Shock and Ignite" }, [3699494172] = { "Socketed Gems are Supported by Level 20 Unbound Ailments" }, } }, + ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Chance to Poison", "(19-23)% increased Damage with Poison", statOrder = { 534, 3217 }, level = 68, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, [1290399200] = { "(19-23)% increased Damage with Poison" }, } }, + ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Chance to Poison", "(24-26)% increased Damage with Poison", statOrder = { 534, 3217 }, level = 75, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1290399200] = { "(24-26)% increased Damage with Poison" }, } }, + ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Critical Strike Affliction", "(6-9)% increased Poison Duration", statOrder = { 365, 3205 }, level = 68, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(6-9)% increased Poison Duration" }, [2228279620] = { "Socketed Gems are Supported by Level 18 Critical Strike Affliction" }, } }, + ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", "(10-14)% increased Poison Duration", statOrder = { 365, 3205 }, level = 75, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(10-14)% increased Poison Duration" }, [2228279620] = { "Socketed Gems are Supported by Level 20 Critical Strike Affliction" }, } }, + ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrder = { 233, 2058 }, level = 68, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-27)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 16 Increased Area of Effect" }, } }, + ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrder = { 233, 2058 }, level = 75, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(28-32)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 18 Increased Area of Effect" }, } }, + ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrder = { 233, 2058 }, level = 80, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(33-37)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } }, + ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrder = { 389, 1903 }, level = 68, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 16 Spell Cascade" }, [280731498] = { "(5-8)% increased Area of Effect" }, } }, + ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrder = { 389, 1903 }, level = 75, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 18 Spell Cascade" }, [280731498] = { "(9-12)% increased Area of Effect" }, } }, + ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrder = { 389, 1903 }, level = 80, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 20 Spell Cascade" }, [280731498] = { "(13-15)% increased Area of Effect" }, } }, + ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrder = { 516, 2019 }, level = 68, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 16 Multiple Projectiles" }, [1839076647] = { "(15-20)% increased Projectile Damage" }, } }, + ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrder = { 516, 2019 }, level = 75, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 18 Multiple Projectiles" }, [1839076647] = { "(21-25)% increased Projectile Damage" }, } }, + ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrder = { 516, 2019 }, level = 80, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 20 Multiple Projectiles" }, [1839076647] = { "(26-30)% increased Projectile Damage" }, } }, + ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrder = { 360, 1819 }, level = 68, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 16 Volley" }, [3759663284] = { "(15-18)% increased Projectile Speed" }, } }, + ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrder = { 360, 1819 }, level = 75, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 18 Volley" }, [3759663284] = { "(19-22)% increased Projectile Speed" }, } }, + ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrder = { 360, 1819 }, level = 80, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 20 Volley" }, [3759663284] = { "(23-25)% increased Projectile Speed" }, } }, + ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (5-6)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (7-8)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-12)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (13-15)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrder = { 551 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } }, + ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (39-54) to (81-93) Physical Damage to Spells", statOrder = { 1427 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (39-54) to (81-93) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "The Elder's", "Adds (49-65) to (96-112) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (49-65) to (96-112) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (56-77) to (116-133) Physical Damage to Spells", statOrder = { 1427 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (56-77) to (116-133) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "The Elder's", "Adds (65-86) to (131-151) Physical Damage to Spells", statOrder = { 1427 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (65-86) to (131-151) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (77-102) to (154-180) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (77-102) to (154-180) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (105-128) to (189-214) Physical Damage to Spells", statOrder = { 1427 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (105-128) to (189-214) Physical Damage to Spells" }, } }, + ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (39-54) to (81-93) Chaos Damage to Spells", statOrder = { 1431 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (39-54) to (81-93) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (49-65) to (96-112) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (49-65) to (96-112) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "The Elder's", "Adds (56-77) to (116-133) Chaos Damage to Spells", statOrder = { 1431 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (56-77) to (116-133) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (65-86) to (131-151) Chaos Damage to Spells", statOrder = { 1431 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (65-86) to (131-151) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (77-102) to (154-180) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (77-102) to (154-180) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (105-128) to (189-214) Chaos Damage to Spells", statOrder = { 1431 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (105-128) to (189-214) Chaos Damage to Spells" }, } }, + ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Strength", statOrder = { 10303 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } }, + ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10301 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } }, + ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10302 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } }, + ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Strength", statOrder = { 10300 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } }, + ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2772 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, + ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage", "25% chance to gain a Power Charge when you Block", statOrder = { 2483, 4306 }, level = 68, group = "PowerChargeOnBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "power_charge", "influence_mod" }, tradeHashes = { [1702195217] = { "+5% Chance to Block Attack Damage" }, [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, + ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrder = { 2483, 6046 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod", "damage", "critical" }, tradeHashes = { [3527458221] = { "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently" }, [1702195217] = { "+5% Chance to Block Attack Damage" }, } }, + ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "(12-18)% Chance to Block Spell Damage", "+5% Chance to Block Attack Damage", statOrder = { 1179, 2483 }, level = 68, group = "BlockingBlocksSpellsUber", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1702195217] = { "+5% Chance to Block Attack Damage" }, [2881111359] = { "(12-18)% Chance to Block Spell Damage" }, } }, + ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "(8-12)% Chance to Block Spell Damage", "+5% Chance to Block Attack Damage", statOrder = { 1183, 2483 }, level = 68, group = "SpellBlockAndBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(8-12)% Chance to Block Spell Damage" }, [1702195217] = { "+5% Chance to Block Attack Damage" }, } }, + ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 1511, 6010 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, [2856328513] = { "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } }, + ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 10890 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, + ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrder = { 6152 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-10)% increased Damage per Power Charge" }, } }, + ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9877 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, + ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4346 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } }, + ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrder = { 3328 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [1345659139] = { "(80-100)% increased Critical Strike Chance against Poisoned Enemies" }, } }, + ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3469 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } }, + ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6786 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds" }, } }, + ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrder = { 6505 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [1773891268] = { "Enemies have 20% reduced Evasion if you have Hit them Recently" }, } }, + ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "Gain (35-50) Life per Blinded Enemy Hit with this Weapon", statOrder = { 8096 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [1649099067] = { "Gain (35-50) Life per Blinded Enemy Hit with this Weapon" }, } }, + ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3442 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [1939202111] = { "(80-100)% increased Critical Strike Chance against Blinded Enemies" }, } }, + ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 2147, 4586 }, level = 68, group = "AdditionalBlockChancePerEnduranceChargeUber", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "endurance_charge", "influence_mod" }, tradeHashes = { [417188801] = { "(20-25)% chance to gain an Endurance Charge when you Block" }, [3039589351] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } }, + ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 2073, 5768 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, tradeHashes = { [3700381193] = { "5% increased Accuracy Rating per Frenzy Charge" }, [3769211656] = { "(20-25)% chance to gain a Frenzy Charge when you Block" }, } }, + ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 571 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [3263216405] = { "Socketed Movement Skills Cost no Mana" }, } }, + ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9668 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2156210979] = { "Gain an Endurance Charge every 4 seconds while Stationary" }, } }, + ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1255, 7994 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, [1805374733] = { "(30-49)% increased Physical Damage" }, } }, + ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5764 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1536266147] = { "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy" }, } }, + ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1487, 1842 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-20)% increased Critical Strike Chance" }, [2542650946] = { "(5-10)% chance to gain an Endurance Charge on Critical Strike" }, } }, + ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 6008 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(80-100)% increased Critical Strike Chance if you have Killed Recently" }, } }, + ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2733 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage" }, } }, + ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Hits which Stun have (10-20)% chance to Fortify", statOrder = { 5756 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (10-20)% chance to Fortify" }, } }, + ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrder = { 4776 }, level = 68, group = "AreaOfEffectPer50Strength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2611023406] = { "3% increased Area of Effect per 50 Strength" }, } }, + ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4773 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, + ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently", statOrder = { 9337 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "2h_sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently" }, } }, + ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Hits with Melee Movement Skills have (30-50)% chance to Fortify", statOrder = { 9319 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [59547568] = { "Hits with Melee Movement Skills have (30-50)% chance to Fortify" }, } }, + ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrder = { 5766 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1657549833] = { "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy" }, } }, + ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrder = { 10047 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [3936926420] = { "Removes Bleeding when you use a Warcry" }, } }, + ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrder = { 4778 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2448279015] = { "5% increased Area of Effect per Endurance Charge" }, } }, + ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1540, 1886 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, [1443060084] = { "(20-30)% reduced Enemy Stun Threshold" }, } }, + ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (7-9)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (10-12)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (13-15)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 709 }, 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 = { 703 }, 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 = { 738 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 711 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, + ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 709 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 30 Aspect of the Cat Skill" }, } }, + ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 703 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 30 Aspect of the Avian Skill" }, } }, + ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 738 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } }, + ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 711 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } }, + ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2183 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, + ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2185 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2184 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1996 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-35)% increased Damage" }, } }, + ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2183 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, + ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2185 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, + ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2515, 3204 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(30-50)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5483 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5737 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "10% chance to deal Double Damage" }, } }, + ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (14-19) to (29-33) Physical Damage to Spells", statOrder = { 1254, 1427 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (14-19) to (29-33) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } }, + ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (23-30) to (45-53) Physical Damage to Spells", statOrder = { 1254, 1427 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (23-30) to (45-53) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } }, + ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Vulnerability on Hit", statOrder = { 2549 }, level = 60, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 60, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.4% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 60, group = "PhysicalDamageTakenAsFireUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrder = { 2265 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(4-6)% reduced Fire Damage taken" }, } }, + ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrder = { 1381, 1386 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, [709508406] = { "Adds (18-24) to (36-42) Fire Damage" }, } }, + ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (31-42) to (64-74) Fire Damage", statOrder = { 1381, 1386 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, [709508406] = { "Adds (31-42) to (64-74) Fire Damage" }, } }, + ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-25) to (36-43) Fire Damage to Spells", statOrder = { 1381, 1428 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-25) to (36-43) Fire Damage to Spells" }, [3962278098] = { "(20-40)% increased Fire Damage" }, } }, + ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (30-39) to (59-69) Fire Damage to Spells", statOrder = { 1381, 1428 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (30-39) to (59-69) Fire Damage to Spells" }, [3962278098] = { "(20-40)% increased Fire Damage" }, } }, + ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Flammability on Hit", statOrder = { 2556 }, level = 60, group = "FlammabilityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, + ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 60, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, } }, + ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 60, group = "PhysicalDamageTakenAsColdUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrder = { 3425 }, level = 60, group = "ColdDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(4-6)% reduced Cold Damage taken" }, } }, + ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrder = { 1390, 1395 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (15-20) to (30-35) Cold Damage" }, [3291658075] = { "(20-40)% increased Cold Damage" }, } }, + ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (26-35) to (52-60) Cold Damage", statOrder = { 1390, 1395 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-35) to (52-60) Cold Damage" }, [3291658075] = { "(20-40)% increased Cold Damage" }, } }, + ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage to Spells", statOrder = { 1390, 1429 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, [2469416729] = { "Adds (15-20) to (30-35) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (27-36) to (54-63) Cold Damage to Spells", statOrder = { 1390, 1429 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, [2469416729] = { "Adds (27-36) to (54-63) Cold Damage to Spells" }, } }, + ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Frostbite on Hit", statOrder = { 2557 }, level = 60, group = "FrostbiteOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, + ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 60, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } }, + ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 60, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrder = { 3424 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(4-6)% reduced Lightning Damage taken" }, } }, + ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrder = { 1401, 1406 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2231156303] = { "(20-40)% increased Lightning Damage" }, [3336890334] = { "Adds (2-5) to (63-66) Lightning Damage" }, } }, + ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-9) to (110-116) Lightning Damage", statOrder = { 1401, 1406 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2231156303] = { "(20-40)% increased Lightning Damage" }, [3336890334] = { "Adds (2-9) to (110-116) Lightning Damage" }, } }, + ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-5) to (63-66) Lightning Damage to Spells", statOrder = { 1401, 1430 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-5) to (63-66) Lightning Damage to Spells" }, [2231156303] = { "(20-40)% increased Lightning Damage" }, } }, + ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (3-9) to (114-120) Lightning Damage to Spells", statOrder = { 1401, 1430 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-9) to (114-120) Lightning Damage to Spells" }, [2231156303] = { "(20-40)% increased Lightning Damage" }, } }, + ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Conductivity on Hit", statOrder = { 2553 }, level = 60, group = "ConductivityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, + ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 60, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, } }, + ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 60, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrder = { 2266 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(4-6)% reduced Chaos Damage taken" }, } }, + ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrder = { 1409, 1414 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2223678961] = { "Adds (18-28) to (39-49) Chaos Damage" }, } }, + ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (32-50) to (68-86) Chaos Damage", statOrder = { 1409, 1414 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2223678961] = { "Adds (32-50) to (68-86) Chaos Damage" }, } }, + ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (14-19) to (29-33) Chaos Damage to Spells", statOrder = { 1409, 1431 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2300399854] = { "Adds (14-19) to (29-33) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (23-30) to (45-53) Chaos Damage to Spells", statOrder = { 1409, 1431 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2300399854] = { "Adds (23-30) to (45-53) Chaos Damage to Spells" }, } }, + ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 60, group = "CurseOnHitDespairMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 60, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.4% of Chaos Damage Leeched as Life" }, } }, + ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrder = { 2622 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, + ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrder = { 2191 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrder = { 190 }, level = 60, group = "IncreaseSocketedCurseGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, + ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Hex Skills", statOrder = { 2248 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(25-40)% increased Area of Effect of Hex Skills" }, } }, + ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrder = { 6084 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (25-40)% increased Skill Effect Duration" }, } }, + ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3049 }, level = 60, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy" }, } }, + ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(5-8)% of Damage taken Recouped as Mana" }, } }, + ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrder = { 1605 }, level = 60, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, + ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrder = { 1603 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% increased maximum Mana" }, } }, + ["ImpaleChanceDelve__"] = { type = "Prefix", affix = "Subterranean", "(5-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 60, group = "AttackImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-10)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["FasterBleedDelve"] = { type = "Suffix", affix = "of the Underground", "Bleeding you inflict deals Damage (5-10)% faster", statOrder = { 6632 }, level = 60, group = "FasterBleedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (5-10)% faster" }, } }, + ["AddedPhysicalSpellDamageDelve___"] = { type = "Prefix", affix = "Subterranean", "Adds (11-22) to (34-46) Physical Damage to Spells", statOrder = { 1427 }, level = 60, group = "SpellAddedPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-22) to (34-46) Physical Damage to Spells" }, } }, + ["LightningAilmentEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of Lightning Ailments", statOrder = { 7535 }, level = 60, group = "LightningAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(15-25)% increased Effect of Lightning Ailments" }, } }, + ["PhysicalDamageConvertedToLightningDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } }, + ["ColdAilmentDurationDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Duration of Cold Ailments", statOrder = { 5878 }, level = 60, group = "ColdAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3571964448] = { "(15-25)% increased Duration of Cold Ailments" }, } }, + ["PhysicalDamageConvertedToColdDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } }, + ["FasterIgniteDelve_"] = { type = "Suffix", affix = "of the Underground", "Ignites you inflict deal Damage (5-10)% faster", statOrder = { 2590 }, level = 60, group = "FasterIgniteDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (5-10)% faster" }, } }, + ["PhysicalDamageConvertedToFireDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } }, + ["FasterPoisonDelve_"] = { type = "Suffix", affix = "of the Underground", "Poisons you inflict deal Damage (5-10)% faster", statOrder = { 6633 }, level = 60, group = "FasterPoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (5-10)% faster" }, } }, + ["ZeroChaosResistanceDelve"] = { type = "Suffix", affix = "of the Underground", "Chaos Resistance is Zero", statOrder = { 10889 }, level = 60, group = "ZeroChaosResistanceDelve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } }, + ["MinionCriticalStrikeMultiplierDelve"] = { type = "Suffix", affix = "of the Underground", "Minions have +(30-38)% to Critical Strike Multiplier", statOrder = { 9423 }, level = 60, group = "MinionCriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(30-38)% to Critical Strike Multiplier" }, } }, + ["MinionLargerAggroRadiusDelve"] = { type = "Suffix", affix = "of the Underground", "Minions are Aggressive", statOrder = { 10924 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, + ["MinionAreaOfEffectDelve"] = { type = "Prefix", affix = "Subterranean", "Minions have (20-30)% increased Area of Effect", statOrder = { 3058 }, level = 60, group = "MinionAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (20-30)% increased Area of Effect" }, } }, + ["MinionLeechDelve___"] = { type = "Prefix", affix = "Subterranean", "Minions Leech 1% of Damage as Life", statOrder = { 2944 }, level = 60, group = "MinionLifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech 1% of Damage as Life" }, } }, + ["SpiritAndPhantasmRefreshOnUniqueDelve"] = { type = "Prefix", affix = "Subterranean", "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9757, 9946 }, level = 60, group = "SpiritAndPhantasmRefreshOnUnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } }, + ["AuraEffectOnEnemiesDelve_____"] = { type = "Suffix", affix = "of the Underground", "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3603 }, level = 60, group = "AuraEffectOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [1636209393] = { "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, + ["LifeReservationEfficiencyDelve"] = { type = "Prefix", affix = "Subterranean", "10% increased Life Reservation Efficiency of Skills", statOrder = { 2249 }, level = 60, group = "LifeReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [635485889] = { "10% increased Life Reservation Efficiency of Skills" }, } }, + ["DoomGainRateDelve"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7251 }, level = 60, group = "HitAndAilmentDamageCursedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "curse" }, tradeHashes = { [539970476] = { "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies" }, } }, + ["MarkEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of your Marks", statOrder = { 2624 }, level = 60, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(15-25)% increased Effect of your Marks" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-35)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(36-45)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(46-55)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(56-65)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(66-75)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-18)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-23)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-33)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(34-38)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-35)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(36-45)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(46-55)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(56-65)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(66-75)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-18)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-23)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-33)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(34-38)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-35)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(36-45)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(46-55)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(56-65)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(66-75)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-18)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-23)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-33)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(34-38)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-35)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(36-45)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(46-55)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(56-65)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(66-75)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-18)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier1h2_"] = { type = "Prefix", affix = "Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-23)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier1h4_"] = { type = "Prefix", affix = "Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-33)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(34-38)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(7-11)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-15)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(16-19)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier1h4"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-23)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(24-26)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(16-21)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(24-29)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(31-35)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier2h4_"] = { type = "Suffix", affix = "of Melting", "+(36-40)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(36-40)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplier2h5____"] = { type = "Suffix", affix = "of Dissolution", "+(41-45)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(41-45)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplierEssence1_"] = { type = "Suffix", affix = "of the Essence", "+10% to Damage over Time Multiplier", statOrder = { 1265 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+10% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplierRingEssence1"] = { type = "Suffix", affix = "of the Essence", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-15)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1270 }, level = 44, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(7-11)% to Damage over Time Multiplier with Attack Skills" }, } }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h2___"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1270 }, level = 55, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(12-15)% to Damage over Time Multiplier with Attack Skills" }, } }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1270 }, level = 68, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(16-19)% to Damage over Time Multiplier with Attack Skills" }, } }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h4_"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1270 }, level = 76, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(20-23)% to Damage over Time Multiplier with Attack Skills" }, } }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1270 }, level = 82, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(24-26)% to Damage over Time Multiplier with Attack Skills" }, } }, + ["ChaosDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-35)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierTwoHand2__"] = { type = "Suffix", affix = "of Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(36-45)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierTwoHand3_"] = { type = "Suffix", affix = "of Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(46-55)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierTwoHand4__"] = { type = "Suffix", affix = "of Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(56-65)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierTwoHand5___"] = { type = "Suffix", affix = "of Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(66-75)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplier1_"] = { type = "Suffix", affix = "of Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-18)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-23)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-33)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(34-38)% to Chaos Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-35)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of the Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(36-45)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(46-55)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(56-65)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(66-75)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-18)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-23)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of the Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-33)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(34-38)% to Cold Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-35)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierTwoHand2_"] = { type = "Suffix", affix = "of the Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(36-45)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(46-55)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(56-65)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierTwoHand5_"] = { type = "Suffix", affix = "of the Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(66-75)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "deepwater_sword", "wand", "sceptre", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-18)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "deepwater_sword", "wand", "sceptre", "default", }, weightVal = { 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-23)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "deepwater_sword", "wand", "sceptre", "default", }, weightVal = { 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier4__"] = { type = "Suffix", affix = "of the Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "deepwater_sword", "wand", "sceptre", "default", }, weightVal = { 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-33)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of the Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "deepwater_sword", "wand", "sceptre", "default", }, weightVal = { 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(34-38)% to Fire Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-35)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(36-45)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(46-55)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(56-65)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(66-75)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier1__"] = { type = "Suffix", affix = "of Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-18)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 220, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-23)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier3__"] = { type = "Suffix", affix = "of Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 140, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 70, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-33)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 35, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(34-38)% to Physical Damage over Time Multiplier" }, } }, + ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrder = { 1591, 1593 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "2% increased maximum Life" }, [3299347043] = { "+(70-79) to maximum Life" }, } }, + ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1591, 1593 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, [3299347043] = { "+(110-119) to maximum Life" }, } }, + ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1602, 1603 }, level = 50, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [2748665614] = { "(7-10)% increased maximum Mana" }, } }, + ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1602, 1767 }, level = 50, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } }, + ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1602, 1605 }, level = 50, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [4291461939] = { "Regenerate (5-7) Mana per second" }, } }, + ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1602, 2255 }, level = 50, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1602, 1914 }, level = 50, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [3736589033] = { "-(8-6) to Total Mana Cost of Skills" }, } }, + ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrder = { 1602, 10208 }, level = 50, group = "IncreasedManaAndCostNew", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [677564538] = { "Non-Channelling Skills have -(8-6) to Total Mana Cost" }, } }, + ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrder = { 1580, 1583 }, level = 50, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "3% increased maximum Energy Shield" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1580, 2672 }, level = 50, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, + ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1384, 1978 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } }, + ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1393, 1980 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } }, + ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1404, 1982 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, + ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1255, 1958 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage" }, } }, + ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } }, + ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (79-106) to (159-186) Fire Damage" }, } }, + ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-50) to (74-87) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (65-87) to (130-152) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 50, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (65-87) to (130-152) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 50, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (4-13) to (158-166) Lightning Damage" }, } }, + ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-22) to (275-290) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 50, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (7-22) to (275-290) Lightning Damage" }, } }, + ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1821, 3279 }, level = 50, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "5% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1821, 4252 }, level = 50, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1618589784] = { "(10-15)% chance to Avoid Bleeding" }, [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1821, 1872 }, level = 50, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [4053951709] = { "(10-15)% chance to Avoid being Poisoned" }, [2250533757] = { "30% increased Movement Speed" }, } }, + ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, + ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(123-130)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(123-130)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, + ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1217 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-95)% increased Trap Damage" }, } }, + ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(158-166)% increased Trap Damage", statOrder = { 1217 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(158-166)% increased Trap Damage" }, } }, + ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrder = { 1219 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(90-95)% increased Mine Damage" }, } }, + ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(158-166)% increased Mine Damage", statOrder = { 1219 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(158-166)% increased Mine Damage" }, } }, + ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-22)% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(30-33)% increased Trap Throwing Speed" }, } }, + ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(20-22)% increased Mine Throwing Speed" }, } }, + ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(30-33)% increased Mine Throwing Speed" }, } }, + ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1946, 3497 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(17-20)% increased Trap Duration" }, [3417757416] = { "(14-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, + ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1946, 3497 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(26-30)% increased Trap Duration" }, [3417757416] = { "(21-22)% increased Cooldown Recovery Rate for throwing Traps" }, } }, + ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrder = { 1947, 9352 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (14-15)% increased Detonation Speed" }, [117667746] = { "(17-20)% increased Mine Duration" }, } }, + ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrder = { 1947, 9352 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (21-22)% increased Detonation Speed" }, [117667746] = { "(26-30)% increased Mine Duration" }, } }, + ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3515 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (22-25)% increased Area of Effect" }, } }, + ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrder = { 3515 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (33-37)% increased Area of Effect" }, } }, + ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrder = { 9349 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2228913626] = { "Skills used by Mines have (22-25)% increased Area of Effect" }, } }, + ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrder = { 9349 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2228913626] = { "Skills used by Mines have (33-37)% increased Area of Effect" }, } }, + ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 193 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+2 to Level of Socketed Trap or Mine Gems" }, } }, + ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1996 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (90-95)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1996 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (133-138)% increased Damage" }, } }, + ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1996, 9411 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [755922799] = { "Minions have 5% chance to deal Double Damage" }, [1589917703] = { "Minions deal (50-66)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1996, 9411 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [755922799] = { "Minions have 5% chance to deal Double Damage" }, [1589917703] = { "Minions deal (85-94)% increased Damage" }, } }, + ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (25-28)% increased Attack Speed" }, [4000101551] = { "Minions have (25-28)% increased Cast Speed" }, } }, + ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (36-40)% increased Attack Speed" }, [4000101551] = { "Minions have (36-40)% increased Cast Speed" }, } }, + ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5098 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-20)% increased Minion Duration" }, } }, + ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrder = { 5098 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(27-30)% increased Minion Duration" }, } }, + ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 50, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1381, 1428 }, level = 50, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(75-79)% increased Fire Damage" }, [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(131-138)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1381, 1428 }, level = 50, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(131-138)% increased Fire Damage" }, [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } }, + ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1390, 1429 }, level = 50, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(75-79)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (25-29) Cold Damage to Spells" }, } }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(131-138)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1390, 1429 }, level = 50, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(131-138)% increased Cold Damage" }, [2469416729] = { "Adds (19-25) to (37-44) Cold Damage to Spells" }, } }, + ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1401, 1430 }, level = 50, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (53-56) Lightning Damage to Spells" }, [2231156303] = { "(75-79)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(131-138)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1401, 1430 }, level = 50, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (79-84) Lightning Damage to Spells" }, [2231156303] = { "(131-138)% increased Lightning Damage" }, } }, + ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1431, 1470 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [2891184298] = { "(29-32)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1431, 1470 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (24-32) to (49-57) Chaos Damage to Spells" }, [2891184298] = { "(44-49)% increased Cast Speed" }, } }, + ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1414, 1437 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } }, + ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1414, 1437 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } }, + ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (32-40) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1596, 1967 }, level = 50, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (32-40) Life per second" }, [836936635] = { "Regenerate 0.4% of Life per second" }, } }, + ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1648, 2472 }, level = 50, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, tradeHashes = { [3342989455] = { "(3-5)% of Physical Damage from Hits taken as Fire Damage" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, + ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1654, 2473 }, level = 50, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [1871056256] = { "(3-5)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1659, 2474 }, level = 50, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, tradeHashes = { [425242359] = { "(3-5)% of Physical Damage from Hits taken as Lightning Damage" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, + ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1648, 1693 }, level = 50, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, + ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1654, 1698 }, level = 50, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } }, + ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1659, 1702 }, level = 50, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, + ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1648, 10472 }, level = 50, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [165402179] = { "(45-52) to (75-78) added Fire Damage against Burning Enemies" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, + ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1654, 6156 }, level = 50, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [2805714016] = { "(30-50)% increased Damage with Hits against Chilled Enemies" }, } }, + ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1659, 5996 }, level = 50, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, tradeHashes = { [276103140] = { "(40-60)% increased Critical Strike Chance against Shocked Enemies" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, + ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrder = { 1664, 1971 }, level = 50, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3762784591] = { "(5-7)% reduced Chaos Damage taken over time" }, [2923486259] = { "+(31-35)% to Chaos Resistance" }, } }, + ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1409, 3205 }, level = 50, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, + ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1409, 8116 }, level = 50, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, + ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1414, 3217 }, level = 50, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, + ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1431, 3217 }, level = 50, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, + ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (5-7)% of Fire Damage as Extra Chaos Damage" }, } }, + ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (8-10)% of Fire Damage as Extra Chaos Damage" }, } }, + ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (11-13)% of Fire Damage as Extra Chaos Damage" }, } }, + ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (5-7)% of Cold Damage as Extra Chaos Damage" }, } }, + ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (8-10)% of Cold Damage as Extra Chaos Damage" }, } }, + ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (11-13)% of Cold Damage as Extra Chaos Damage" }, } }, + ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (5-7)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (8-10)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (11-13)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (5-7)% of Physical Damage as Extra Chaos Damage" }, } }, + ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (8-10)% of Physical Damage as Extra Chaos Damage" }, } }, + ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (11-13)% of Physical Damage as Extra Chaos Damage" }, } }, + ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (10-14)% of Fire Damage as Extra Chaos Damage" }, } }, + ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (15-20)% of Fire Damage as Extra Chaos Damage" }, } }, + ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (21-26)% of Fire Damage as Extra Chaos Damage" }, } }, + ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (10-14)% of Cold Damage as Extra Chaos Damage" }, } }, + ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (15-20)% of Cold Damage as Extra Chaos Damage" }, } }, + ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (21-26)% of Cold Damage as Extra Chaos Damage" }, } }, + ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (10-14)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (15-20)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (21-26)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (10-14)% of Physical Damage as Extra Chaos Damage" }, } }, + ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (15-20)% of Physical Damage as Extra Chaos Damage" }, } }, + ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (21-26)% of Physical Damage as Extra Chaos Damage" }, } }, + ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrder = { 1996 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-19)% increased Damage" }, } }, + ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrder = { 1996 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-29)% increased Damage" }, } }, + ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrder = { 1996 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-39)% increased Damage" }, } }, + ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-54)% increased Damage", statOrder = { 1996 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-54)% increased Damage" }, } }, + ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (55-69)% increased Damage", statOrder = { 1996 }, level = 46, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (55-69)% increased Damage" }, } }, + ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (70-84)% increased Damage", statOrder = { 1996 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (70-84)% increased Damage" }, } }, + ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (85-99)% increased Damage", statOrder = { 1996 }, level = 64, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (85-99)% increased Damage" }, } }, + ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (100-109)% increased Damage", statOrder = { 1996 }, level = 84, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (100-109)% increased Damage" }, } }, + ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-66)% increased Damage", statOrder = { 1996 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-66)% increased Damage" }, } }, + ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (67-82)% increased Damage", statOrder = { 1996 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (67-82)% increased Damage" }, } }, + ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (83-94)% increased Damage", statOrder = { 1996 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (83-94)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrder = { 1996 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-29)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrder = { 1996 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrder = { 1996 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-84)% increased Damage", statOrder = { 1996 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-84)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (85-106)% increased Damage", statOrder = { 1996 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (85-106)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (107-122)% increased Damage", statOrder = { 1996 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (107-122)% increased Damage" }, } }, + ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (123-144)% increased Damage", statOrder = { 1996 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (123-144)% increased Damage" }, } }, + ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (8-12)% increased Damage", statOrder = { 1602, 1996 }, level = 2, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1589917703] = { "Minions deal (8-12)% increased Damage" }, } }, + ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (13-18)% increased Damage", statOrder = { 1602, 1996 }, level = 11, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [1589917703] = { "Minions deal (13-18)% increased Damage" }, } }, + ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (19-24)% increased Damage", statOrder = { 1602, 1996 }, level = 23, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [1589917703] = { "Minions deal (19-24)% increased Damage" }, } }, + ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (25-30)% increased Damage", statOrder = { 1602, 1996 }, level = 35, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1600, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [1589917703] = { "Minions deal (25-30)% increased Damage" }, } }, + ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (31-36)% increased Damage", statOrder = { 1602, 1996 }, level = 46, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [1589917703] = { "Minions deal (31-36)% increased Damage" }, } }, + ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (37-43)% increased Damage", statOrder = { 1602, 1996 }, level = 58, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [1589917703] = { "Minions deal (37-43)% increased Damage" }, } }, + ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (44-49)% increased Damage", statOrder = { 1602, 1996 }, level = 80, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [1589917703] = { "Minions deal (44-49)% increased Damage" }, } }, + ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-7)% increased Attack and Cast Speed" }, } }, + ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (8-10)% increased Attack and Cast Speed" }, } }, + ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (11-13)% increased Attack and Cast Speed" }, } }, + ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (14-16)% increased Attack and Cast Speed" }, } }, + ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (17-19)% increased Attack and Cast Speed" }, } }, + ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (20-22)% increased Attack and Cast Speed" }, } }, + ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (23-25)% increased Attack and Cast Speed" }, } }, + ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 60, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, + ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrder = { 1789 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-17)% increased maximum Life" }, } }, + ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrder = { 1789 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (18-22)% increased maximum Life" }, } }, + ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrder = { 1789 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-27)% increased maximum Life" }, } }, + ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrder = { 1789 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-32)% increased maximum Life" }, } }, + ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrder = { 1789 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (33-36)% increased maximum Life" }, } }, + ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrder = { 1789 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (37-40)% increased maximum Life" }, } }, + ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (6-10)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (6-10)% increased Movement Speed" }, } }, + ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Collaboration", "Minions have (11-15)% increased Movement Speed", statOrder = { 1792 }, level = 15, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-15)% increased Movement Speed" }, } }, + ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Integration", "Minions have (16-20)% increased Movement Speed", statOrder = { 1792 }, level = 30, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-20)% increased Movement Speed" }, } }, + ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrder = { 1792 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-25)% increased Movement Speed" }, } }, + ["MinionMovementSpeed5"] = { type = "Suffix", affix = "of Harmony", "Minions have (26-30)% increased Movement Speed", statOrder = { 1792 }, level = 55, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (26-30)% increased Movement Speed" }, } }, + ["MinionDamagePercent1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (5-10)% increased Damage", statOrder = { 1996 }, level = 4, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-10)% increased Damage" }, } }, + ["MinionDamagePercent2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (11-20)% increased Damage", statOrder = { 1996 }, level = 15, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-20)% increased Damage" }, } }, + ["MinionDamagePercent3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (21-30)% increased Damage", statOrder = { 1996 }, level = 30, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (21-30)% increased Damage" }, } }, + ["MinionDamagePercent4"] = { type = "Prefix", affix = "Countess's", "Minions deal (31-36)% increased Damage", statOrder = { 1996 }, level = 60, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (31-36)% increased Damage" }, } }, + ["MinionDamagePercent5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (37-42)% increased Damage", statOrder = { 1996 }, level = 81, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (37-42)% increased Damage" }, } }, + ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2946 }, level = 8, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, + ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrder = { 2946 }, level = 24, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(16-20)% to all Elemental Resistances" }, } }, + ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-23)% to all Elemental Resistances", statOrder = { 2946 }, level = 37, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(21-23)% to all Elemental Resistances" }, } }, + ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(24-26)% to all Elemental Resistances", statOrder = { 2946 }, level = 50, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(24-26)% to all Elemental Resistances" }, } }, + ["MinionResistancesWeapon5"] = { type = "Suffix", affix = "of Metamorphosis", "Minions have +(27-30)% to all Elemental Resistances", statOrder = { 2946 }, level = 61, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(27-30)% to all Elemental Resistances" }, } }, + ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of the Instructor", "Minions have +(80-130) to Accuracy Rating", statOrder = { 9395 }, level = 1, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(80-130) to Accuracy Rating" }, } }, + ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of the Tutor", "Minions have +(131-215) to Accuracy Rating", statOrder = { 9395 }, level = 20, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(131-215) to Accuracy Rating" }, } }, + ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of the Commander", "Minions have +(216-325) to Accuracy Rating", statOrder = { 9395 }, level = 40, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(216-325) to Accuracy Rating" }, } }, + ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of the Magnate", "Minions have +(326-455) to Accuracy Rating", statOrder = { 9395 }, level = 60, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(326-455) to Accuracy Rating" }, } }, + ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of the Ruler", "Minions have +(456-545) to Accuracy Rating", statOrder = { 9395 }, level = 75, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(456-545) to Accuracy Rating" }, } }, + ["MinionAccuracyRatingWeapon6"] = { type = "Suffix", affix = "of the Monarch", "Minions have +(546-624) to Accuracy Rating", statOrder = { 9395 }, level = 85, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(546-624) to Accuracy Rating" }, } }, + ["MinionMaxElementalResistance1"] = { type = "Suffix", affix = "of Impermeability", "Minions have +(3-4)% to all maximum Elemental Resistances", statOrder = { 9450 }, level = 68, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(3-4)% to all maximum Elemental Resistances" }, } }, + ["MinionMaxElementalResistance2"] = { type = "Suffix", affix = "of Countervailing", "Minions have +(5-6)% to all maximum Elemental Resistances", statOrder = { 9450 }, level = 75, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(5-6)% to all maximum Elemental Resistances" }, } }, + ["MinionMaxElementalResistance3"] = { type = "Suffix", affix = "of Imperviousness", "Minions have +(7-8)% to all maximum Elemental Resistances", statOrder = { 9450 }, level = 81, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(7-8)% to all maximum Elemental Resistances" }, } }, + ["MinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Guard", "Minions have (7-9)% additional Physical Damage Reduction", statOrder = { 2297 }, level = 68, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (7-9)% additional Physical Damage Reduction" }, } }, + ["MinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Brigade", "Minions have (10-12)% additional Physical Damage Reduction", statOrder = { 2297 }, level = 75, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (10-12)% additional Physical Damage Reduction" }, } }, + ["MinionPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Phalanx", "Minions have (13-15)% additional Physical Damage Reduction", statOrder = { 2297 }, level = 81, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (13-15)% additional Physical Damage Reduction" }, } }, + ["MinionCriticalStrikeChanceIncrease1"] = { type = "Suffix", affix = "of Luck", "Minions have (10-19)% increased Critical Strike Chance", statOrder = { 9421 }, level = 11, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-19)% increased Critical Strike Chance" }, } }, + ["MinionCriticalStrikeChanceIncrease2"] = { type = "Suffix", affix = "of Fortune", "Minions have (20-39)% increased Critical Strike Chance", statOrder = { 9421 }, level = 21, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (20-39)% increased Critical Strike Chance" }, } }, + ["MinionCriticalStrikeChanceIncrease3"] = { type = "Suffix", affix = "of Providence", "Minions have (40-59)% increased Critical Strike Chance", statOrder = { 9421 }, level = 28, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (40-59)% increased Critical Strike Chance" }, } }, + ["MinionCriticalStrikeChanceIncrease4"] = { type = "Suffix", affix = "of Serendipity", "Minions have (60-79)% increased Critical Strike Chance", statOrder = { 9421 }, level = 41, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (60-79)% increased Critical Strike Chance" }, } }, + ["MinionCriticalStrikeChanceIncrease5"] = { type = "Suffix", affix = "of Determinism", "Minions have (80-99)% increased Critical Strike Chance", statOrder = { 9421 }, level = 59, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (80-99)% increased Critical Strike Chance" }, } }, + ["MinionCriticalStrikeChanceIncrease6"] = { type = "Suffix", affix = "of Destiny", "Minions have (100-109)% increased Critical Strike Chance", statOrder = { 9421 }, level = 76, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (100-109)% increased Critical Strike Chance" }, } }, + ["MinionCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of the Foray", "Minions have +(10-14)% to Critical Strike Multiplier", statOrder = { 9423 }, level = 8, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(10-14)% to Critical Strike Multiplier" }, } }, + ["MinionCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of the Horde", "Minions have +(15-19)% to Critical Strike Multiplier", statOrder = { 9423 }, level = 21, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(15-19)% to Critical Strike Multiplier" }, } }, + ["MinionCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of the Throng", "Minions have +(20-24)% to Critical Strike Multiplier", statOrder = { 9423 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-24)% to Critical Strike Multiplier" }, } }, + ["MinionCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of the Swarm", "Minions have +(25-29)% to Critical Strike Multiplier", statOrder = { 9423 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(25-29)% to Critical Strike Multiplier" }, } }, + ["MinionCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of the Invasion", "Minions have +(30-34)% to Critical Strike Multiplier", statOrder = { 9423 }, level = 59, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(30-34)% to Critical Strike Multiplier" }, } }, + ["MinionCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of the Legion", "Minions have +(35-38)% to Critical Strike Multiplier", statOrder = { 9423 }, level = 73, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(35-38)% to Critical Strike Multiplier" }, } }, + ["MinionGrantsConvocation1"] = { type = "Suffix", affix = "of the Convocation", "Grants Level 1 Convocation Skill", statOrder = { 696 }, level = 45, group = "MinionGrantsConvocation", weightKey = { "focus_can_roll_minion_modifiers", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1786401772] = { "Grants Level 1 Convocation Skill" }, } }, + ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrder = { 10566 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(7-10)% increased Trap and Mine Throwing Speed" }, } }, + ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrder = { 10566 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(11-13)% increased Trap and Mine Throwing Speed" }, } }, + ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrder = { 10566 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(14-17)% increased Trap and Mine Throwing Speed" }, } }, + ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrder = { 10566 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(18-21)% increased Trap and Mine Throwing Speed" }, } }, + ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrder = { 10638 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, + ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, + ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (6-8)% of Physical Damage as Extra Lightning Damage" }, } }, + ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(6-10)% increased Cooldown Recovery Rate" }, } }, + ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(11-15)% increased Cooldown Recovery Rate" }, } }, + ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(31-35)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-40)% chance to Avoid being Ignited" }, } }, + ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-60)% chance to Avoid being Ignited" }, } }, + ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(31-35)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-40)% chance to Avoid being Frozen" }, } }, + ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(51-60)% chance to Avoid being Frozen" }, } }, + ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(31-35)% chance to Avoid being Shocked" }, } }, + ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-40)% chance to Avoid being Shocked" }, } }, + ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-60)% chance to Avoid being Shocked" }, } }, + ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-9)% chance to avoid Projectiles", statOrder = { 5046 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(6-9)% chance to avoid Projectiles" }, } }, + ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(10-12)% chance to avoid Projectiles", statOrder = { 5046 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, } }, + ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrder = { 10613 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, + ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (6-8)% of Physical Damage as Extra Fire Damage" }, } }, + ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(16-20)% chance to Avoid being Stunned" }, } }, + ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(21-25)% chance to Avoid being Stunned" }, } }, + ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(31-35)% chance to Avoid being Stunned" }, } }, + ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [42242677] = { "(5-7)% chance to Avoid Fire Damage from Hits" }, } }, + ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, + ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, tradeHashes = { [3743375737] = { "(5-7)% chance to Avoid Cold Damage from Hits" }, } }, + ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, tradeHashes = { [3743375737] = { "(8-10)% chance to Avoid Cold Damage from Hits" }, } }, + ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(5-7)% chance to Avoid Lightning Damage from Hits" }, } }, + ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(8-10)% chance to Avoid Lightning Damage from Hits" }, } }, + ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrder = { 1967 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-1.2)% of Life per second" }, } }, + ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrder = { 1967 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.3-1.5)% of Life per second" }, } }, + ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(2-4)% additional Physical Damage Reduction" }, } }, + ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrder = { 10618 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, + ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(4-6)% chance to gain an Endurance Charge on Kill" }, } }, + ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 80, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, + ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (3-5)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (6-8)% of Physical Damage as Extra Cold Damage" }, } }, + ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrder = { 4317 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [2896192589] = { "(5-10)% chance to gain Elusive on Critical Strike" }, } }, + ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } }, + ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(30-34)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(35-40)% increased Effect of Non-Damaging Ailments" }, } }, + ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(5-7)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 10624 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, + ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, + ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 80, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrder = { 1207 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-8)% increased Strength" }, } }, + ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrder = { 1207 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(9-10)% increased Strength" }, } }, + ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to Avoid Bleeding", statOrder = { 1872, 4252 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(21-25)% chance to Avoid Bleeding" }, [4053951709] = { "(21-25)% chance to Avoid being Poisoned" }, } }, + ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to Avoid Bleeding", statOrder = { 1872, 4252 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(26-30)% chance to Avoid Bleeding" }, [4053951709] = { "(26-30)% chance to Avoid being Poisoned" }, } }, + ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(41-50)% chance to Avoid being Poisoned", "(41-50)% chance to Avoid Bleeding", statOrder = { 1872, 4252 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(41-50)% chance to Avoid Bleeding" }, [4053951709] = { "(41-50)% chance to Avoid being Poisoned" }, } }, + ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10499 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1085545682] = { "You have Tailwind if you have dealt a Critical Strike Recently" }, } }, + ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (7-9)% faster", statOrder = { 2590 }, level = 68, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (7-9)% faster" }, } }, + ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (10-12)% faster", statOrder = { 2590 }, level = 73, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (10-12)% faster" }, } }, + ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (7-9)% faster", statOrder = { 6632 }, level = 68, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (7-9)% faster" }, } }, + ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (10-12)% faster", statOrder = { 6632 }, level = 73, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-12)% faster" }, } }, + ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (7-9)% faster", statOrder = { 6633 }, level = 68, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (7-9)% faster" }, } }, + ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (10-12)% faster", statOrder = { 6633 }, level = 73, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (10-12)% faster" }, } }, + ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceInfluence1New"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceInfluence2New"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(18-21)% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(22-25)% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(18-21)% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(22-25)% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(18-21)% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(22-25)% of Physical Damage Converted to Lightning Damage" }, } }, + ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 75, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "10% increased Maximum total Life Recovery per second from Leech" }, } }, + ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1757 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "15% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, + ["MaximumEnergyShieldLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1757 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "15% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, + ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(21-25)% chance to Ignore Stuns while Casting" }, } }, + ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(26-30)% chance to Ignore Stuns while Casting" }, } }, + ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-35)% chance to Ignore Stuns while Casting" }, } }, + ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 68, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(16-20)% increased Global Critical Strike Chance" }, } }, + ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 70, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(21-25)% increased Global Critical Strike Chance" }, } }, + ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 75, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(26-30)% increased Global Critical Strike Chance" }, } }, + ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrder = { 1257 }, level = 68, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(18-22)% increased Melee Damage" }, } }, + ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrder = { 1257 }, level = 70, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(23-26)% increased Melee Damage" }, } }, + ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrder = { 1257 }, level = 73, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(27-30)% increased Melee Damage" }, } }, + ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(18-22)% increased Projectile Attack Damage" }, } }, + ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(23-26)% increased Projectile Attack Damage" }, } }, + ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(27-30)% increased Projectile Attack Damage" }, } }, + ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, + ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrder = { 1246 }, level = 70, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, + ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrder = { 1246 }, level = 73, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, + ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrder = { 1233 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(18-22)% increased Damage over Time" }, } }, + ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrder = { 1233 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(23-26)% increased Damage over Time" }, } }, + ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrder = { 1233 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(27-30)% increased Damage over Time" }, } }, + ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range", statOrder = { 2560 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, + ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(2-3)% Chance to Block Attack Damage" }, } }, + ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, + ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrder = { 2062 }, level = 73, group = "CullingStrike", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 250, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } }, + ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 80, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, + ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9379 }, level = 68, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9379 }, level = 73, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9367 }, level = 68, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9367 }, level = 73, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9362 }, level = 68, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9362 }, level = 73, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9373 }, level = 68, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9373 }, level = 73, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently" }, } }, + ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrder = { 1996 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-22)% increased Damage" }, } }, + ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrder = { 1996 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } }, + ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrder = { 1996 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } }, + ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, + ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2221570601] = { "(8-11)% Global chance to Blind Enemies on hit" }, } }, + ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 80, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2221570601] = { "(12-15)% Global chance to Blind Enemies on hit" }, } }, + ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrder = { 5751 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(2-4)% chance to Evade Attack Hits" }, } }, + ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9309 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, + ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(13-16)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 68, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(13-16)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(17-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 80, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(17-20)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-12)% increased Duration of Ailments on Enemies" }, } }, + ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-15)% increased Duration of Ailments on Enemies" }, } }, + ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrder = { 1208 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(6-8)% increased Dexterity" }, } }, + ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrder = { 1208 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(9-10)% increased Dexterity" }, } }, + ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, + ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrder = { 1603 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } }, + ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrder = { 1603 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } }, + ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(4-6)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(7-10)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 8026 }, level = 85, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } }, + ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, } }, + ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+(3-4) to maximum Fortification", statOrder = { 9240 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [335507772] = { "+(3-4) to maximum Fortification" }, } }, + ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(4.2-5) to maximum Fortification", statOrder = { 9240 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [335507772] = { "+(4.2-5) to maximum Fortification" }, } }, + ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2672 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } }, + ["ReducedIgniteDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 68, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(31-35)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 70, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, + ["ReducedIgniteDurationInfluence3__"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 75, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-60)% reduced Ignite Duration on you" }, } }, + ["ReducedFreezeDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(31-35)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 70, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDurationInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-60)% reduced Freeze Duration on you" }, } }, + ["ReducedShockEffectInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(31-35)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 70, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-40)% reduced Effect of Shock on you" }, } }, + ["ReducedShockEffectInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-60)% reduced Effect of Shock on you" }, } }, + ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(4-6)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(7-10)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrder = { 2003 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(12-14)% increased Elemental Damage" }, } }, + ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrder = { 2003 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-18)% increased Elemental Damage" }, } }, + ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrder = { 2003 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-22)% increased Elemental Damage" }, } }, + ["WarcryAreaOfEffectInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (21-25)% increased Area of Effect", statOrder = { 10731 }, level = 68, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (21-25)% increased Area of Effect" }, } }, + ["WarcryAreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10731 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (26-30)% increased Area of Effect" }, } }, + ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 8024 }, level = 85, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } }, + ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(11-13)% to Global Critical Strike Multiplier" }, } }, + ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } }, + ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-20)% to Global Critical Strike Multiplier" }, } }, + ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(41-55)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } }, + ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrder = { 6803 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1575519214] = { "Gain Accuracy Rating equal to your Strength" }, } }, + ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrder = { 1789 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-26)% increased maximum Life" }, } }, + ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrder = { 1789 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } }, + ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrder = { 1789 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, + ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(4-6)% chance to gain a Power Charge on Kill" }, } }, + ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } }, + ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(4-6)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(7-10)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10880 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } }, + ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 8022 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, + ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 75, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(7-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1900, 2049 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(15-17)% increased Burning Damage" }, } }, + ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1900, 2049 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(18-20)% increased Burning Damage" }, } }, + ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1881, 2052 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(8-12)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } }, + ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1881, 2052 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(13-15)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } }, + ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 2056, 7535 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } }, + ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 2056, 7535 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(13-15)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } }, + ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1605 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, + ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrder = { 1605 }, level = 75, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, } }, + ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1428 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1428 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1428 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-34) to (51-59) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1429 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1429 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1429 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-28) to (41-48) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1430 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1430 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1430 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (88-93) Lightning Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1427 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (17-22) to (33-39) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1427 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (21-28) to (42-49) Physical Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1427 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-34) to (51-59) Physical Damage to Spells" }, } }, + ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1431 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (27-32) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1431 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (17-23) to (34-40) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1431 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (21-28) to (41-48) Chaos Damage to Spells" }, } }, + ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 8021 }, level = 85, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } }, + ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrder = { 1209 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(6-8)% increased Intelligence" }, } }, + ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrder = { 1209 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(9-10)% increased Intelligence" }, } }, + ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 6914 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Igniting Conflux for 3 seconds every 8 seconds" }, } }, + ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 6914 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Chilling Conflux for 3 seconds every 8 seconds" }, } }, + ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 6914 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, } }, + ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(13-15)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrder = { 5938 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [880970200] = { "You have Consecrated Ground around you while stationary" }, } }, + ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6460 }, level = 85, group = "EnemiesExplodeOnDeathPhysical", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage" }, } }, + ["HolyPhysicalExplosionChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3340 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, + ["HolyPhysicalExplosionChanceInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3340 }, level = 85, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, + ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrder = { 1209 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } }, + ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrder = { 1209 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, } }, + ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1853 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, } }, + ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1773 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-4)% of Energy Shield on Kill" }, } }, + ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1773 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, } }, + ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(8-11)% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 80, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(12-15)% increased Energy Shield Recovery rate" }, } }, + ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(13-15)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Skill Gems", statOrder = { 196 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, + ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, + ["PhysicalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "You and your Minions prevent +100% of Reflected Physical Damage", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "You and your Minions prevent +100% of Reflected Physical Damage" }, } }, + ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrder = { 1642 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } }, + ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, + ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, + ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrder = { 1207 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-8)% increased Strength" }, } }, + ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrder = { 1207 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, } }, + ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6838 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, + ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrder = { 1772 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (3-4)% of Life on Kill" }, } }, + ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrder = { 1772 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (5-6)% of Life on Kill" }, } }, + ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrder = { 1601 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(8-11)% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrder = { 1601 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(12-15)% increased Life Recovery rate" }, } }, + ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 560 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } }, + ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(13-15)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 195 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, + ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } }, + ["ElementalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions prevent +100% of Reflected Elemental Damage", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "You and your Minions prevent +100% of Reflected Elemental Damage" }, } }, + ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3432 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, + ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1208 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } }, + ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1208 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } }, + ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1856 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, + ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrder = { 1774 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (3-4)% of Mana on Kill" }, } }, + ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrder = { 1774 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, } }, + ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrder = { 1609 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(8-11)% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrder = { 1609 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(12-15)% increased Mana Recovery rate" }, } }, + ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(15-20)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(21-25)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrder = { 1593 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-8)% increased maximum Life" }, } }, + ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrder = { 1593 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(9-12)% increased maximum Life" }, } }, + ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(8-12)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(8-12)% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 83, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(13-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrder = { 2191 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 4 seconds, Regenerate 15% of Life over one second", statOrder = { 3822 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 15% of Life over one second" }, } }, + ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrder = { 4099 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(16-20)% increased effect of Offerings" }, } }, + ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrder = { 4099 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-25)% increased effect of Offerings" }, } }, + ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4842 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } }, + ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4842 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.1-1.5)% to Critical Strike Chance" }, } }, + ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } }, + ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.1-1.5)% to Spell Critical Strike Chance" }, } }, + ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrder = { 1967 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.5)% of Life per second" }, } }, + ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1967 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, + ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 75, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1657 }, level = 80, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 86, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6145 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3400437584] = { "1% increased Damage per 1% Chance to Block Attack Damage" }, } }, + ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrder = { 1836 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, } }, + ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrder = { 1836 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1999711879] = { "+2 to Minimum Power Charges" }, } }, + ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2493 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } }, + ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrder = { 2672 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (1.5-2.5)% of Energy Shield per second" }, } }, + ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(25-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(41-50)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(25-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(41-50)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10279 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4263513561] = { "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" }, } }, + ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10279 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4263513561] = { "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" }, } }, + ["WarcryBuffEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 68, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3037553757] = { "(18-21)% increased Warcry Buff Effect" }, } }, + ["WarcryBuffEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 75, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3037553757] = { "(22-25)% increased Warcry Buff Effect" }, } }, + ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 75, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 80, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 86, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrder = { 1903 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(7-9)% increased Area of Effect" }, } }, + ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrder = { 1903 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(10-12)% increased Area of Effect" }, } }, + ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrder = { 1903 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, } }, + ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrder = { 1826 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, + ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrder = { 1826 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [3706959521] = { "+2 to Minimum Endurance Charges" }, } }, + ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrder = { 3094 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } }, + ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5302 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [3789765926] = { "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently" }, } }, + ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5302 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [3789765926] = { "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently" }, } }, + ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 75, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrder = { 1652 }, level = 80, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 86, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(16-20)% faster start of Energy Shield Recharge" }, } }, + ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(21-25)% faster start of Energy Shield Recharge" }, } }, + ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, + ["WeaponElementalDamageInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(26-30)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-35)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 80, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-40)% increased Elemental Damage with Attack Skills" }, } }, + ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrder = { 1831 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, } }, + ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrder = { 1831 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [658456881] = { "+2 to Minimum Frenzy Charges" }, } }, + ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8300 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } }, + ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrder = { 5751 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(3-5)% chance to Evade Attack Hits" }, } }, + ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrder = { 3407 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [2415497478] = { "(5-7)% chance to Avoid Physical Damage from Hits" }, } }, + ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrder = { 3407 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [2415497478] = { "(8-10)% chance to Avoid Physical Damage from Hits" }, } }, + ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrder = { 2622 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-11)% increased Effect of your Curses" }, } }, + ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Effect of your Curses", statOrder = { 2622 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-12)% increased Effect of your Curses" }, } }, + ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(5-7)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(8-10)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(15-20)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(21-25)% increased Effect of Non-Damaging Ailments" }, } }, + ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrder = { 1665 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrder = { 1663 }, level = 75, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrder = { 1663 }, level = 80, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, + ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrder = { 1663 }, level = 86, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } }, + ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrder = { 1593 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-6)% increased maximum Life" }, } }, + ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrder = { 1593 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } }, + ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3228 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, + ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6905 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2199099676] = { "Gain an Endurance, Frenzy or Power charge when you Block" }, } }, + ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 539 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } }, + ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 539 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, + ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrder = { 2268 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "(4-6)% reduced Damage taken from Damage Over Time" }, } }, + ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrder = { 2268 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "(7-10)% reduced Damage taken from Damage Over Time" }, } }, + ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrder = { 1967 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.1-1.5)% of Life per second" }, } }, + ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1967 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, + ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (5-10)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (11-15)% of Physical Damage as Extra Lightning Damage" }, } }, + ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (5-10)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (11-15)% of Physical Damage as Extra Fire Damage" }, } }, + ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrder = { 8268 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } }, + ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrder = { 8268 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } }, + ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2515, 3204 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } }, + ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2515, 3204 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } }, + ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1821 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, + ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrder = { 1821 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } }, + ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (3-5) Mana per Enemy Hit with Attacks" }, } }, + ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1285 }, level = 68, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3913282911] = { "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills" }, } }, + ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1285 }, level = 80, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3913282911] = { "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills" }, } }, + ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1274 }, level = 68, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [709768359] = { "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills" }, } }, + ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1274 }, level = 80, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [709768359] = { "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills" }, } }, + ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1277 }, level = 68, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2139660169] = { "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills" }, } }, + ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1277 }, level = 80, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2139660169] = { "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills" }, } }, + ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3208, 3217 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } }, + ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3208, 3217 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } }, + ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrder = { 1583 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-9)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrder = { 1583 }, level = 78, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-12)% increased maximum Energy Shield" }, } }, + ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrder = { 1583 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(13-15)% increased maximum Energy Shield" }, } }, + ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5996 }, level = 68, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(30-34)% increased Critical Strike Chance against Shocked Enemies" }, } }, + ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5996 }, level = 75, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(35-39)% increased Critical Strike Chance against Shocked Enemies" }, } }, + ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5996 }, level = 80, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(40-45)% increased Critical Strike Chance against Shocked Enemies" }, } }, + ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrder = { 1401 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(16-20)% increased Lightning Damage" }, } }, + ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrder = { 1401 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-25)% increased Lightning Damage" }, } }, + ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrder = { 1401 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(26-30)% increased Lightning Damage" }, } }, + ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5756 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (8-12)% chance to Fortify" }, } }, + ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } }, + ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10295 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10295 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(26-30)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10295 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(31-35)% increased Spell Damage during any Flask Effect" }, } }, + ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-9)% increased Energy Shield Recovery rate" }, } }, + ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% increased Energy Shield Recovery rate" }, } }, + ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrder = { 10062 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } }, + ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrder = { 1563 }, level = 68, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(7-9)% increased Armour" }, } }, + ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrder = { 1563 }, level = 78, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-12)% increased Armour" }, } }, + ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrder = { 1563 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(13-15)% increased Armour" }, } }, + ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrder = { 10472 }, level = 68, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(22-27) to (41-46) added Fire Damage against Burning Enemies" }, } }, + ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrder = { 10472 }, level = 75, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(28-32) to (47-51) added Fire Damage against Burning Enemies" }, } }, + ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrder = { 10472 }, level = 80, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(33-39) to (52-55) added Fire Damage against Burning Enemies" }, } }, + ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrder = { 1381 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(16-20)% increased Fire Damage" }, } }, + ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrder = { 1381 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-25)% increased Fire Damage" }, } }, + ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrder = { 1381 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(26-30)% increased Fire Damage" }, } }, + ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-20)% reduced Extra Damage from Critical Strikes" }, } }, + ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } }, + ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrder = { 1214 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(11-15)% increased Damage" }, } }, + ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrder = { 1214 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(16-20)% increased Damage" }, } }, + ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrder = { 1214 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(21-25)% increased Damage" }, } }, + ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9315 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(20-25)% increased Melee Damage during any Flask Effect" }, } }, + ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9315 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(26-30)% increased Melee Damage during any Flask Effect" }, } }, + ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9315 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(31-35)% increased Melee Damage during any Flask Effect" }, } }, + ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(7-9)% increased Life Recovery rate", statOrder = { 1601 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(7-9)% increased Life Recovery rate" }, } }, + ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(10-12)% increased Life Recovery rate", statOrder = { 1601 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(10-12)% increased Life Recovery rate" }, } }, + ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrder = { 10052 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } }, + ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrder = { 1571 }, level = 68, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(7-9)% increased Evasion Rating" }, } }, + ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrder = { 1571 }, level = 78, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-12)% increased Evasion Rating" }, } }, + ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrder = { 1571 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(13-15)% increased Evasion Rating" }, } }, + ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrder = { 6156 }, level = 68, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(26-30)% increased Damage with Hits against Chilled Enemies" }, } }, + ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrder = { 6156 }, level = 75, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(31-35)% increased Damage with Hits against Chilled Enemies" }, } }, + ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrder = { 6156 }, level = 80, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(36-40)% increased Damage with Hits against Chilled Enemies" }, } }, + ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2776 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-7)% increased Effect" }, } }, + ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2776 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-10)% increased Effect" }, } }, + ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrder = { 1390 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(16-20)% increased Cold Damage" }, } }, + ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrder = { 1390 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-25)% increased Cold Damage" }, } }, + ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrder = { 1390 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(26-30)% increased Cold Damage" }, } }, + ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3336 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-14)% increased Attack Speed during any Flask Effect" }, } }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9871 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(20-25)% increased Projectile Attack Damage during any Flask Effect" }, } }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9871 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(26-30)% increased Projectile Attack Damage during any Flask Effect" }, } }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9871 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(31-35)% increased Projectile Attack Damage during any Flask Effect" }, } }, + ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-9)% increased Mana Recovery rate", statOrder = { 1609 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(7-9)% increased Mana Recovery rate" }, } }, + ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Mana Recovery rate", statOrder = { 1609 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% increased Mana Recovery rate" }, } }, + ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrder = { 10048 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } }, + ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4266 }, level = 80, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [311641062] = { "(6-10)% chance for Flasks you use to not consume Charges" }, } }, + ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 3427 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3738001379] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, + ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrder = { 1409 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(16-20)% increased Chaos Damage" }, } }, + ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrder = { 1409 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-25)% increased Chaos Damage" }, } }, + ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrder = { 1409 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(26-30)% increased Chaos Damage" }, } }, + ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrder = { 1206 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } }, + ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrder = { 1206 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } }, + ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5541 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-14)% increased Cast Speed during any Flask Effect" }, } }, + ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3222 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "(6-10)% increased Movement Speed during any Flask Effect" }, } }, + ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } }, + ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(45-36) Physical Damage taken from Attack Hits" }, } }, + ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6981 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, + ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6981 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } }, + ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrder = { 9374 }, level = 75, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "1 to (6-8) Lightning Damage per Power Charge" }, } }, + ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrder = { 9374 }, level = 80, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (9-11) Lightning Damage per Power Charge" }, } }, + ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-17)% increased Spell Damage" }, } }, + ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrder = { 1246 }, level = 75, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-21)% increased Spell Damage" }, } }, + ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrder = { 1246 }, level = 80, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-25)% increased Spell Damage" }, } }, + ["IncreasedLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(35-40)% increased total Recovery per second from Life Leech" }, } }, + ["IncreasedLifeLeechRateInfluence2"] = { type = "Prefix", affix = "Crusader's", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(41-45)% increased total Recovery per second from Life Leech" }, } }, + ["IncreasedLifeLeechRateInfluence3"] = { type = "Prefix", affix = "Crusader's", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(46-50)% increased total Recovery per second from Life Leech" }, } }, + ["IncreasedLifeLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(35-40)% increased total Recovery per second from Life Leech" }, } }, + ["IncreasedLifeLeechRateSuffixInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(41-45)% increased total Recovery per second from Life Leech" }, } }, + ["IncreasedLifeLeechRateSuffixInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(46-50)% increased total Recovery per second from Life Leech" }, } }, + ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-29)% reduced Effect of Curses on you" }, } }, + ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(35-40)% reduced Effect of Curses on you" }, } }, + ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2553 }, level = 75, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, + ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2553 }, level = 80, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, + ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1762 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (8-12) Life per Enemy Hit with Spells" }, } }, + ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1762 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (13-15) Life per Enemy Hit with Spells" }, } }, + ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(15-17)% increased Global Critical Strike Chance" }, } }, + ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(18-21)% increased Global Critical Strike Chance" }, } }, + ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(22-25)% increased Global Critical Strike Chance" }, } }, + ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6979 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } }, + ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6979 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } }, + ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrder = { 9369 }, level = 75, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(2-3) to (4-5) Fire Damage per Endurance Charge" }, } }, + ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrder = { 9369 }, level = 80, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(3-4) to (6-7) Fire Damage per Endurance Charge" }, } }, + ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrder = { 1257 }, level = 68, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(15-17)% increased Melee Damage" }, } }, + ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrder = { 1257 }, level = 75, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(18-21)% increased Melee Damage" }, } }, + ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrder = { 1257 }, level = 80, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(22-25)% increased Melee Damage" }, } }, + ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2556 }, level = 75, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, + ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2556 }, level = 80, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, + ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2549 }, level = 75, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2549 }, level = 80, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } }, + ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-19)% to Global Critical Strike Multiplier" }, } }, + ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-22)% to Global Critical Strike Multiplier" }, } }, + ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3204, 5047 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-6)% increased Bleeding Duration" }, [1294118672] = { "(8-12)% increased Damage with Bleeding" }, } }, + ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3204, 5047 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(7-8)% increased Bleeding Duration" }, [1294118672] = { "(13-17)% increased Damage with Bleeding" }, } }, + ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3204, 5047 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(9-10)% increased Bleeding Duration" }, [1294118672] = { "(18-22)% increased Damage with Bleeding" }, } }, + ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6978 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, + ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6978 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } }, + ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4309 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(2-3) to (4-5) Added Cold Damage per Frenzy Charge" }, } }, + ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4309 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(3-4) to (6-7) Added Cold Damage per Frenzy Charge" }, } }, + ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(15-17)% increased Projectile Attack Damage" }, } }, + ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(18-21)% increased Projectile Attack Damage" }, } }, + ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(22-25)% increased Projectile Attack Damage" }, } }, + ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrder = { 1996 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-17)% increased Damage" }, } }, + ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-21)% increased Damage" }, } }, + ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrder = { 1996 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-25)% increased Damage" }, } }, + ["EnergyShieldRechargeDelayInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-20)% faster start of Energy Shield Recharge" }, } }, + ["EnergyShieldRechargeDelayInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-24)% faster start of Energy Shield Recharge" }, } }, + ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2557 }, level = 75, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, + ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2557 }, level = 80, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, + ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrder = { 4945 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [4137521191] = { "(8-12)% increased Attack Speed if you've been Hit Recently" }, } }, + ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrder = { 1626 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [3666934677] = { "(2-3)% increased Experience gain" }, } }, + ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (31-45)% reduced Reflected Physical Damage" }, } }, + ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (46-55)% reduced Reflected Physical Damage" }, } }, + ["PhysicalDamageCannotBeReflectedPercentRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions prevent +(40-55)% of Reflected Physical Damage", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1818622832] = { "You and your Minions prevent +(40-55)% of Reflected Physical Damage" }, } }, + ["PhysicalDamageCannotBeReflectedPercentRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions prevent +(56-75)% of Reflected Physical Damage", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1818622832] = { "You and your Minions prevent +(56-75)% of Reflected Physical Damage" }, } }, + ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (31-45)% reduced Reflected Elemental Damage" }, } }, + ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (46-55)% reduced Reflected Elemental Damage" }, } }, + ["ElementalDamageCannotBeReflectedPercentRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions prevent +(40-55)% of Reflected Elemental Damage", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3408683611] = { "You and your Minions prevent +(40-55)% of Reflected Elemental Damage" }, } }, + ["ElementalDamageCannotBeReflectedPercentRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions prevent +(56-75)% of Reflected Elemental Damage", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3408683611] = { "You and your Minions prevent +(56-75)% of Reflected Elemental Damage" }, } }, + ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-20)% faster start of Energy Shield Recharge" }, } }, + ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-24)% faster start of Energy Shield Recharge" }, } }, + ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (10-15) Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (16-20) Life per Enemy Hit with Attacks" }, } }, + ["ExertedAttackDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (25-27)% increased Damage", statOrder = { 6444 }, level = 68, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (25-27)% increased Damage" }, } }, + ["ExertedAttackDamageInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (28-31)% increased Damage", statOrder = { 6444 }, level = 75, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (28-31)% increased Damage" }, } }, + ["ExertedAttackDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (32-35)% increased Damage", statOrder = { 6444 }, level = 80, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-35)% increased Damage" }, } }, + ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2551 }, level = 75, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, + ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2551 }, level = 80, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, + ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 75, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 80, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrder = { 3205, 3217 }, level = 68, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-6)% increased Poison Duration" }, [1290399200] = { "(8-12)% increased Damage with Poison" }, } }, + ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrder = { 3205, 3217 }, level = 75, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(7-8)% increased Poison Duration" }, [1290399200] = { "(13-17)% increased Damage with Poison" }, } }, + ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrder = { 3205, 3217 }, level = 80, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(9-10)% increased Poison Duration" }, [1290399200] = { "(18-22)% increased Damage with Poison" }, } }, + ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5071 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [308127151] = { "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield" }, } }, + ["LightningDamageESLeechSufffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5071 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [308127151] = { "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield" }, } }, + ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrder = { 6143 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } }, + ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrder = { 6152 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(3-4)% increased Damage per Power Charge" }, } }, + ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrder = { 6152 }, level = 80, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-6)% increased Damage per Power Charge" }, } }, + ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7567 }, level = 82, group = "GlobalLightningGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skill Gems" }, } }, + ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, } }, + ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrder = { 3018 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (8-10)% Lightning Resistance" }, } }, + ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, + ["MaximumLifeLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } }, + ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1757 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, + ["MaximumEnergyShieldLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1757 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, + ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrder = { 2012 }, level = 68, group = "MaximumSpellBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2388574377] = { "+2% to maximum Chance to Block Spell Damage" }, } }, + ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10786 }, level = 75, group = "WrathReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1761642973] = { "Wrath has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["WrathReservationEfficiencyInfluence1________"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10787 }, level = 75, group = "WrathReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3444518809] = { "Wrath has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6275 }, level = 75, group = "DisciplineReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1692887998] = { "Discipline has (50-60)% increased Mana Reservation Efficiency" }, } }, + ["DisciplineReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6276 }, level = 75, group = "DisciplineReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has (50-60)% increased Mana Reservation Efficiency" }, } }, + ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9917 }, level = 75, group = "PurityOfLightningReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency" }, } }, + ["PurityOfLightningReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9918 }, level = 75, group = "PurityOfLightningReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency" }, } }, + ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10885 }, level = 75, group = "ZealotryReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [4216444167] = { "Zealotry has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["ZealotryReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10886 }, level = 75, group = "ZealotryReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [168308685] = { "Zealotry has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, + ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } }, + ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } }, + ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5070 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, tradeHashes = { [3885409671] = { "(0.2-0.4)% of Fire Damage Leeched as Energy Shield" }, } }, + ["FireDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5070 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, tradeHashes = { [3885409671] = { "(0.2-0.4)% of Fire Damage Leeched as Energy Shield" }, } }, + ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrder = { 6144 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } }, + ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(3-4)% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 80, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-6)% increased Damage per Endurance Charge" }, } }, + ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrder = { 6674 }, level = 82, group = "GlobalFireGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skill Gems" }, } }, + ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrder = { 9814 }, level = 82, group = "GlobalPhysicalGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "gem" }, tradeHashes = { [619213329] = { "+1 to Level of all Physical Skill Gems" }, } }, + ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, + ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrder = { 3015 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (8-10)% Fire Resistance" }, } }, + ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } }, + ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4730 }, level = 75, group = "AngerReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2963485753] = { "Anger has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["AngerReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4731 }, level = 75, group = "AngerReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2549369799] = { "Anger has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6259 }, level = 75, group = "DeterminationReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2721871046] = { "Determination has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["DeterminationReservationEfficiencyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6260 }, level = 75, group = "DeterminationReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9911 }, level = 75, group = "PurityOfFireReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has (50-60)% increased Mana Reservation Efficiency" }, } }, + ["PurityOfFireReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9912 }, level = 75, group = "PurityOfFireReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has (50-60)% increased Mana Reservation Efficiency" }, } }, + ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9857 }, level = 75, group = "PrideReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3484910620] = { "Pride has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["PrideReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9858 }, level = 75, group = "PrideReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3993865658] = { "Pride has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5068 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, tradeHashes = { [1939452467] = { "(0.2-0.4)% of Cold Damage Leeched as Energy Shield" }, } }, + ["ColdDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5068 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, tradeHashes = { [1939452467] = { "(0.2-0.4)% of Cold Damage Leeched as Energy Shield" }, } }, + ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrder = { 6142 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, + ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(3-4)% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 80, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(5-6)% increased Damage per Frenzy Charge" }, } }, + ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrder = { 5918 }, level = 82, group = "GlobalColdGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+1 to Level of all Cold Skill Gems" }, } }, + ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, + ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrder = { 3017 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (8-10)% Cold Resistance" }, } }, + ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +2% of Suppressed Spell Damage" }, } }, + ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +2% of Suppressed Spell Damage" }, } }, + ["SpellDamageSuppressedInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +(3-5)% of Suppressed Spell Damage" }, } }, + ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 7037 }, level = 75, group = "HatredReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["HatredReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 7038 }, level = 75, group = "HatredReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6997 }, level = 75, group = "GraceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1803598623] = { "Grace has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["GraceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6998 }, level = 75, group = "GraceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9914 }, level = 75, group = "PurityOfIceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has (50-60)% increased Mana Reservation Efficiency" }, } }, + ["PurityOfIceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9915 }, level = 75, group = "PurityOfIceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has (50-60)% increased Mana Reservation Efficiency" }, } }, + ["WarcrySpeedInfluence1"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Warcry Speed", statOrder = { 3313 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } }, + ["WarcrySpeedInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Warcry Speed", statOrder = { 3313 }, level = 75, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } }, + ["WarcrySpeedInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Warcry Speed", statOrder = { 3313 }, level = 80, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(31-35)% increased Warcry Speed" }, } }, + ["WarcrySpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-20)% increased Warcry Speed", statOrder = { 3313 }, level = 42, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-20)% increased Warcry Speed" }, } }, + ["WarcrySpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Warcry Speed", statOrder = { 3313 }, level = 58, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } }, + ["WarcrySpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Warcry Speed", statOrder = { 3313 }, level = 74, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } }, + ["WarcrySpeedEssence4_"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Warcry Speed", statOrder = { 3313 }, level = 82, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(31-35)% increased Warcry Speed" }, } }, + ["DoubleDamageStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5739 }, level = 75, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [4224978303] = { "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently" }, } }, + ["DoubleDamageStunnedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5739 }, level = 83, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [4224978303] = { "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently" }, } }, + ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.3-0.5)% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechSuffixInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.3-0.5)% of Chaos Damage Leeched as Life" }, } }, + ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5837 }, level = 82, group = "GlobalChaosGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skill Gems" }, } }, + ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrder = { 10405 }, level = 82, group = "GlobalStrengthGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2339012908] = { "+1 to Level of all Strength Skill Gems" }, } }, + ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrder = { 6264 }, level = 82, group = "GlobalDexterityGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [146924886] = { "+1 to Level of all Dexterity Skill Gems" }, } }, + ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrder = { 7393 }, level = 82, group = "GlobalIntelligenceGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [493812998] = { "+1 to Level of all Intelligence Skill Gems" }, } }, + ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrder = { 3014 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-4)% Elemental Resistances" }, } }, + ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 3014 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (5-6)% Elemental Resistances" }, } }, + ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8275 }, level = 75, group = "MalevolenceReservation", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3266567165] = { "Malevolence has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["MalevolenceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8276 }, level = 75, group = "MalevolenceReservationEfficiency", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3383226338] = { "Malevolence has (40-50)% increased Mana Reservation Efficiency" }, } }, + ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3648 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, + ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3648 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, + ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2578 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, + ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2578 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1255, 1674 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1255, 1674 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1255, 1674 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1255, 1674 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1255, 1674 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1255, 1437 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1255, 1437 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1255, 1437 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1255, 1437 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1255, 1437 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1255, 1487 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1255, 1487 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1255, 1487 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1255, 1487 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1255, 1487 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1255, 1511 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1255, 1511 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1255, 1511 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1255, 1511 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1255, 1511 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1255, 1540 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1255, 1540 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1255, 1540 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1255, 1540 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1255, 1540 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1255, 1903 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1255, 1903 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1255, 1903 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1255, 1903 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1255, 1903 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1255, 1819 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1255, 1819 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1255, 1819 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1255, 1819 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1255, 1819 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1255, 1813 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1255, 1813 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1255, 1813 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1255, 1813 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1255, 1813 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (12-16) to (24-28) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (21-28) to (42-49) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (26-35) to (53-61) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (15-19) to (28-34) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (15-19) to (28-34) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (22-30) to (44-52) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (22-30) to (44-52) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (31-41) to (61-72) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (31-41) to (61-72) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (39-52) to (78-90) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (39-52) to (78-90) Fire Damage" }, } }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (49-65) to (99-114) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1386, 3798 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (49-65) to (99-114) Fire Damage" }, } }, + ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-14) to (22-25) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (15-20) to (30-35) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-25) to (38-44) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (23-32) to (48-55) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (13-16) to (26-30) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (13-16) to (26-30) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-26) to (41-46) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-26) to (41-46) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (28-37) to (56-65) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (28-37) to (56-65) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (35-46) to (71-81) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (35-46) to (71-81) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (43-59) to (89-102) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1395, 3799 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (43-59) to (89-102) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } }, + ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (1-4) to (40-45) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-5) to (55-63) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-6) to (70-79) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-8) to (89-99) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (46-53) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (74-84) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-7) to (74-84) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (102-117) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-9) to (102-117) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-12) to (130-146) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-12) to (130-146) Lightning Damage" }, } }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (6-15) to (165-183) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1406, 3800 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (6-15) to (165-183) Lightning Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (5-7) to (11-13) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (9-11) to (17-20) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (12-16) to (24-28) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (15-20) to (30-35) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (18-25) to (38-44) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (9-13) to (21-24) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (9-13) to (21-24) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (16-21) to (32-37) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (16-21) to (32-37) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (22-29) to (44-52) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (22-29) to (44-52) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (28-37) to (57-65) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (28-37) to (57-65) Chaos Damage" }, } }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (35-48) to (72-81) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1414, 7984 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (35-48) to (72-81) Chaos Damage" }, } }, + ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (9-12) to (18-21) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1428, 3015 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (9-12) to (18-21) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (15-20) to (29-33) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1428, 3015 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (29-33) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (20-27) to (41-47) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1428, 3015 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-47) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (26-33) to (50-59) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1428, 3015 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-33) to (50-59) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (32-42) to (63-74) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1428, 3015 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (32-42) to (63-74) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (12-17) to (26-29) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1428, 3015 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (12-17) to (26-29) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (20-26) to (39-45) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1428, 3015 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-26) to (39-45) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (27-36) to (54-63) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1428, 3015 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (27-36) to (54-63) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (35-45) to (68-80) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1428, 3015 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-45) to (68-80) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (42-57) to (86-99) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1428, 3015 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (42-57) to (86-99) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, + ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-11) to (15-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1429, 3017 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (8-11) to (15-18) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-15) to (24-27) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1429, 3017 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (12-15) to (24-27) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (33-38) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1429, 3017 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (17-23) to (33-38) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1429, 3017 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (21-27) to (41-48) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-35) to (51-60) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1429, 3017 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (26-35) to (51-60) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-15) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1429, 3017 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (12-15) to (23-27) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (18-24) to (35-41) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1429, 3017 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (18-24) to (35-41) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (24-33) to (50-57) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1429, 3017 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (24-33) to (50-57) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (32-41) to (62-72) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1429, 3017 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (32-41) to (62-72) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (39-51) to (78-90) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1429, 3017 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (39-51) to (78-90) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (2-3) to (32-33) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1430, 3018 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-3) to (32-33) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (50-53) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1430, 3018 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-74) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1430, 3018 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (69-74) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (87-92) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1430, 3018 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (87-92) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (110-116) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1430, 3018 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-9) to (110-116) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (48-51) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1430, 3018 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (48-51) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (74-78) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1430, 3018 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (74-78) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (104-110) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1430, 3018 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-9) to (104-110) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (3-11) to (131-138) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1430, 3018 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-11) to (131-138) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (5-14) to (164-173) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1430, 3018 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-14) to (164-173) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, + ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrder = { 3798 }, level = 68, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (9-10)% Fire Resistance" }, } }, + ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrder = { 3798 }, level = 73, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (11-12)% Fire Resistance" }, } }, + ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 3798 }, level = 78, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, } }, + ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrder = { 3799 }, level = 68, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (9-10)% Cold Resistance" }, } }, + ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrder = { 3799 }, level = 73, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (11-12)% Cold Resistance" }, } }, + ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 3799 }, level = 78, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } }, + ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrder = { 3800 }, level = 68, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance" }, } }, + ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrder = { 3800 }, level = 73, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance" }, } }, + ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 3800 }, level = 78, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, } }, + ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7984 }, level = 68, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance" }, } }, + ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrder = { 7984 }, level = 73, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance" }, } }, + ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrder = { 7984 }, level = 78, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance" }, } }, + ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3797 }, level = 68, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances" }, } }, + ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrder = { 3797 }, level = 73, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances" }, } }, + ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrder = { 3797 }, level = 78, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances" }, } }, + ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrder = { 3015 }, level = 73, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrder = { 3015 }, level = 78, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-11)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrder = { 3015 }, level = 73, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-13)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrder = { 3015 }, level = 78, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (14-15)% Fire Resistance" }, } }, + ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrder = { 3017 }, level = 73, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrder = { 3017 }, level = 78, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-11)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrder = { 3017 }, level = 73, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-13)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrder = { 3017 }, level = 78, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (14-15)% Cold Resistance" }, } }, + ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrder = { 3018 }, level = 73, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrder = { 3018 }, level = 78, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-11)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrder = { 3018 }, level = 73, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-13)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrder = { 3018 }, level = 78, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (14-15)% Lightning Resistance" }, } }, + ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 3014 }, level = 68, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, + ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 3014 }, level = 73, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 5% Elemental Resistances" }, } }, + ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 3014 }, level = 78, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, + ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 3014 }, level = 68, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } }, + ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 3014 }, level = 73, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } }, + ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 3014 }, level = 78, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (11-12)% Elemental Resistances" }, } }, + ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (7-12)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (13-17)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (18-20)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (16-20)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (21-26)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (27-30)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (7-12)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (13-17)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (18-20)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (16-20)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (21-26)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (27-30)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (7-12)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (13-17)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (18-20)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (16-20)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (21-26)% of Physical Damage as Extra Lightning Damage" }, } }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (27-30)% of Physical Damage as Extra Lightning Damage" }, } }, + ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, + ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, + ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4974 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, + ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4974 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, + ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, + ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, + ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrder = { 10303 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } }, + ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10301 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } }, + ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10302 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } }, + ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrder = { 10300 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } }, + ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2772 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, + ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrder = { 1900 }, level = 68, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(60-69)% increased Burning Damage" }, } }, + ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrder = { 1900 }, level = 71, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(70-79)% increased Burning Damage" }, } }, + ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrder = { 1900 }, level = 75, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(80-89)% increased Burning Damage" }, } }, + ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrder = { 1900 }, level = 78, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(90-94)% increased Burning Damage" }, } }, + ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(105-122)% increased Burning Damage", statOrder = { 1900 }, level = 68, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(105-122)% increased Burning Damage" }, } }, + ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(123-139)% increased Burning Damage", statOrder = { 1900 }, level = 71, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(123-139)% increased Burning Damage" }, } }, + ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(140-157)% increased Burning Damage", statOrder = { 1900 }, level = 75, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(140-157)% increased Burning Damage" }, } }, + ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(158-165)% increased Burning Damage", statOrder = { 1900 }, level = 78, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(158-165)% increased Burning Damage" }, } }, + ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Physical Damage over Time", statOrder = { 1234 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(60-69)% increased Physical Damage over Time" }, } }, + ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Physical Damage over Time", statOrder = { 1234 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(70-79)% increased Physical Damage over Time" }, } }, + ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Physical Damage over Time", statOrder = { 1234 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(80-89)% increased Physical Damage over Time" }, } }, + ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Physical Damage over Time", statOrder = { 1234 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(90-94)% increased Physical Damage over Time" }, } }, + ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(105-122)% increased Physical Damage over Time", statOrder = { 1234 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(105-122)% increased Physical Damage over Time" }, } }, + ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(123-139)% increased Physical Damage over Time", statOrder = { 1234 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(123-139)% increased Physical Damage over Time" }, } }, + ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(140-157)% increased Physical Damage over Time", statOrder = { 1234 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(140-157)% increased Physical Damage over Time" }, } }, + ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(158-165)% increased Physical Damage over Time", statOrder = { 1234 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(158-165)% increased Physical Damage over Time" }, } }, + ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Chaos Damage over Time", statOrder = { 1237 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(60-69)% increased Chaos Damage over Time" }, } }, + ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Chaos Damage over Time", statOrder = { 1237 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(70-79)% increased Chaos Damage over Time" }, } }, + ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Chaos Damage over Time", statOrder = { 1237 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(80-89)% increased Chaos Damage over Time" }, } }, + ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Chaos Damage over Time", statOrder = { 1237 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(90-94)% increased Chaos Damage over Time" }, } }, + ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(105-122)% increased Chaos Damage over Time", statOrder = { 1237 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(105-122)% increased Chaos Damage over Time" }, } }, + ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(123-139)% increased Chaos Damage over Time", statOrder = { 1237 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(123-139)% increased Chaos Damage over Time" }, } }, + ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(140-157)% increased Chaos Damage over Time", statOrder = { 1237 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(140-157)% increased Chaos Damage over Time" }, } }, + ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(158-165)% increased Chaos Damage over Time", statOrder = { 1237 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(158-165)% increased Chaos Damage over Time" }, } }, + ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrder = { 2590 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (8-12)% faster" }, } }, + ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrder = { 2590 }, level = 73, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (13-15)% faster" }, } }, + ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrder = { 2590 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (18-21)% faster" }, } }, + ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrder = { 2590 }, level = 73, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (22-25)% faster" }, } }, + ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrder = { 6632 }, level = 68, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (8-12)% faster" }, } }, + ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrder = { 6632 }, level = 73, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (13-15)% faster" }, } }, + ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrder = { 6632 }, level = 68, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (18-21)% faster" }, } }, + ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrder = { 6632 }, level = 73, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (22-25)% faster" }, } }, + ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrder = { 6633 }, level = 68, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (8-12)% faster" }, } }, + ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrder = { 6633 }, level = 73, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (13-15)% faster" }, } }, + ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrder = { 6633 }, level = 68, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (18-21)% faster" }, } }, + ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrder = { 6633 }, level = 73, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (22-25)% faster" }, } }, + ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(12-16)% increased Impale Effect", statOrder = { 7343 }, level = 68, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(12-16)% increased Impale Effect" }, } }, + ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(17-21)% increased Impale Effect", statOrder = { 7343 }, level = 71, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(17-21)% increased Impale Effect" }, } }, + ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Impale Effect", statOrder = { 7343 }, level = 75, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(22-25)% increased Impale Effect" }, } }, + ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% increased Impale Effect", statOrder = { 7343 }, level = 68, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(25-29)% increased Impale Effect" }, } }, + ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(30-34)% increased Impale Effect", statOrder = { 7343 }, level = 71, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(30-34)% increased Impale Effect" }, } }, + ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(35-38)% increased Impale Effect", statOrder = { 7343 }, level = 75, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(35-38)% increased Impale Effect" }, } }, + ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(23-26)% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(27-30)% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(23-26)% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(27-30)% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(23-26)% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(27-30)% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(16-20)% of Physical Damage Converted to Chaos Damage" }, } }, + ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 71, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(21-25)% of Physical Damage Converted to Chaos Damage" }, } }, + ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 8051 }, level = 68, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 8051 }, level = 71, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 8051 }, level = 68, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 8051 }, level = 71, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 75, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3602667353] = { "(11-15)% chance to inflict Fire Exposure on Hit" }, } }, + ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 80, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3602667353] = { "(16-20)% chance to inflict Fire Exposure on Hit" }, } }, + ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 75, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2630708439] = { "(11-15)% chance to inflict Cold Exposure on Hit" }, } }, + ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 80, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2630708439] = { "(16-20)% chance to inflict Cold Exposure on Hit" }, } }, + ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 75, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4265906483] = { "(11-15)% chance to inflict Lightning Exposure on Hit" }, } }, + ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 80, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4265906483] = { "(16-20)% chance to inflict Lightning Exposure on Hit" }, } }, + ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7983 }, level = 78, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7983 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3494 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, + ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3494 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, + ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1255, 8100 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-13)% increased Physical Damage" }, [2763429652] = { "10% chance to Maim on Hit" }, } }, + ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1255, 8100 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(14-16)% increased Physical Damage" }, [2763429652] = { "15% chance to Maim on Hit" }, } }, + ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1255, 8100 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(17-20)% increased Physical Damage" }, [2763429652] = { "20% chance to Maim on Hit" }, } }, + ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(15-18)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(19-22)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(23-25)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3416 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(15-18)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3416 }, level = 70, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(19-22)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3416 }, level = 73, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(23-25)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(15-18)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(19-22)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(23-25)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(15-18)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(19-22)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(23-25)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(2-4)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 70, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(5-7)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 73, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(8-9)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1303 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(23-27)% increased Physical Attack Damage while Dual Wielding" }, } }, + ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1303 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(28-32)% increased Physical Attack Damage while Dual Wielding" }, } }, + ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1303 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(33-37)% increased Physical Attack Damage while Dual Wielding" }, } }, + ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Weapon Range", statOrder = { 2779 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } }, + ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrder = { 1821 }, level = 68, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, + ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrder = { 1821 }, level = 73, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } }, + ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrder = { 10282 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (4-5)% chance to deal Double Damage" }, } }, + ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrder = { 10282 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (6-7)% chance to deal Double Damage" }, } }, + ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrder = { 10282 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (10-11)% chance to deal Double Damage" }, } }, + ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrder = { 10282 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (12-14)% chance to deal Double Damage" }, } }, + ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-7)% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(8-10)% increased Damage per Endurance Charge" }, } }, + ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(5-7)% increased Damage per Frenzy Charge" }, } }, + ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 73, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(8-10)% increased Damage per Frenzy Charge" }, } }, + ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrder = { 6152 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-7)% increased Damage per Power Charge" }, } }, + ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrder = { 6152 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(8-10)% increased Damage per Power Charge" }, } }, + ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(10-13)% increased Damage per Endurance Charge" }, } }, + ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(14-17)% increased Damage per Endurance Charge" }, } }, + ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrder = { 6152 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(10-13)% increased Damage per Power Charge" }, } }, + ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrder = { 6152 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(14-17)% increased Damage per Power Charge" }, } }, + ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrder = { 1604 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.3% of Mana per second" }, } }, + ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrder = { 1604 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.4% of Mana per second" }, } }, + ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrder = { 1604 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.7% of Mana per second" }, } }, + ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrder = { 1604 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.8% of Mana per second" }, } }, + ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-33)% increased Aura Effect" }, } }, + ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrder = { 3392 }, level = 80, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-40)% increased Aura Effect" }, } }, + ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrder = { 3392 }, level = 75, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (48-54)% increased Aura Effect" }, } }, + ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrder = { 3392 }, level = 80, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (55-60)% increased Aura Effect" }, } }, + ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-33)% increased Aura Effect" }, } }, + ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrder = { 3402 }, level = 80, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-40)% increased Aura Effect" }, } }, + ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrder = { 3402 }, level = 75, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (48-54)% increased Aura Effect" }, } }, + ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrder = { 3402 }, level = 80, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (55-60)% increased Aura Effect" }, } }, + ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-33)% increased Aura Effect" }, } }, + ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrder = { 3397 }, level = 80, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-40)% increased Aura Effect" }, } }, + ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrder = { 3397 }, level = 75, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (48-54)% increased Aura Effect" }, } }, + ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrder = { 3397 }, level = 80, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (55-60)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-33)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrder = { 6248 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-40)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrder = { 6248 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (48-54)% increased Aura Effect" }, } }, + ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrder = { 6248 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (55-60)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-33)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrder = { 10884 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-40)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrder = { 10884 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (48-54)% increased Aura Effect" }, } }, + ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrder = { 10884 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (55-60)% increased Aura Effect" }, } }, + ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrder = { 3097 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(18-22)% increased Damage while Leeching" }, } }, + ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrder = { 3097 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(23-26)% increased Damage while Leeching" }, } }, + ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrder = { 3097 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(27-30)% increased Damage while Leeching" }, } }, + ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrder = { 3097 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(32-36)% increased Damage while Leeching" }, } }, + ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrder = { 3097 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(37-41)% increased Damage while Leeching" }, } }, + ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrder = { 3097 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(42-45)% increased Damage while Leeching" }, } }, + ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while Fortified", statOrder = { 3251 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(10-12)% increased Attack Speed while Fortified" }, } }, + ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while Fortified", statOrder = { 3251 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(13-15)% increased Attack Speed while Fortified" }, } }, + ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while Fortified", statOrder = { 3251 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(20-22)% increased Attack Speed while Fortified" }, } }, + ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while Fortified", statOrder = { 3251 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(23-25)% increased Attack Speed while Fortified" }, } }, + ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9337 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+0.2 metres to Melee Strike Range if you have Killed Recently" }, } }, + ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9337 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+0.3 metres to Melee Strike Range if you have Killed Recently" }, } }, + ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(5-6)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 70, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(7-8)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 73, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(9-10)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrder = { 4944 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(13-16)% increased Attack Speed if you've Killed Recently" }, } }, + ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrder = { 4944 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(17-20)% increased Attack Speed if you've Killed Recently" }, } }, + ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrder = { 4944 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(23-26)% increased Attack Speed if you've Killed Recently" }, } }, + ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrder = { 4944 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(27-30)% increased Attack Speed if you've Killed Recently" }, } }, + ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrder = { 5542 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(13-16)% increased Cast Speed if you've Killed Recently" }, } }, + ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrder = { 5542 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(17-20)% increased Cast Speed if you've Killed Recently" }, } }, + ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrder = { 5542 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(23-26)% increased Cast Speed if you've Killed Recently" }, } }, + ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrder = { 5542 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(27-30)% increased Cast Speed if you've Killed Recently" }, } }, + ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(17-21)% increased Warcry Cooldown Recovery Rate" }, } }, + ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(22-25)% increased Warcry Cooldown Recovery Rate" }, } }, + ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(35-40)% increased Warcry Cooldown Recovery Rate" }, } }, + ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(41-45)% increased Warcry Cooldown Recovery Rate" }, } }, + ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 6008 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(31-40)% increased Critical Strike Chance if you have Killed Recently" }, } }, + ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 6008 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(41-50)% increased Critical Strike Chance if you have Killed Recently" }, } }, + ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 6040 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2937483991] = { "+(26-30)% to Critical Strike Multiplier if you've Killed Recently" }, } }, + ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 6040 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2937483991] = { "+(31-35)% to Critical Strike Multiplier if you've Killed Recently" }, } }, + ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3469 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } }, + ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3469 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } }, + ["GainRareMonsterModsOnKillChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6786 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds" }, } }, + ["GainRareMonsterModsOnKillChanceInfluence2"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6786 }, level = 73, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds" }, } }, + ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1540, 1886 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(11-15)% increased Stun Duration on Enemies" }, [1443060084] = { "(11-15)% reduced Enemy Stun Threshold" }, } }, + ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1540, 1886 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(16-20)% increased Stun Duration on Enemies" }, [1443060084] = { "(16-20)% reduced Enemy Stun Threshold" }, } }, + ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1540, 1886 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(21-25)% increased Stun Duration on Enemies" }, [1443060084] = { "(21-25)% reduced Enemy Stun Threshold" }, } }, + ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1540, 1886 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(26-30)% increased Stun Duration on Enemies" }, [1443060084] = { "(26-30)% reduced Enemy Stun Threshold" }, } }, + ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4773 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, + ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4773 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, + ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4773 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, + ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4773 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, + ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2733 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage" }, } }, + ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrder = { 3600 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(7-11)% chance to double Stun Duration" }, } }, + ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrder = { 3600 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(12-15)% chance to double Stun Duration" }, } }, + ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrder = { 3600 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(17-21)% chance to double Stun Duration" }, } }, + ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrder = { 3600 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(22-25)% chance to double Stun Duration" }, } }, + ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9552 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(5-7)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, + ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9552 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(8-10)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, + ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9552 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(10-12)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, + ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9552 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(13-15)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, + ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrder = { 4255 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(17-21)% increased Area of Effect if you've Killed Recently" }, } }, + ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrder = { 4255 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(22-25)% increased Area of Effect if you've Killed Recently" }, } }, + ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrder = { 4255 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(27-31)% increased Area of Effect if you've Killed Recently" }, } }, + ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrder = { 4255 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(32-35)% increased Area of Effect if you've Killed Recently" }, } }, + ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(15-18)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3252 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [852195286] = { "+(15-18)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } }, + ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(19-22)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3252 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [852195286] = { "+(19-22)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } }, + ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(15-18)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5729 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1101206134] = { "+(15-18)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, + ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(19-22)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5729 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1101206134] = { "+(19-22)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, + ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrder = { 1815 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, + ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrder = { 551 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } }, + ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrder = { 575 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [1519665289] = { "Projectiles from Socketed Gems Fork" }, } }, + ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9877 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, + ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9877 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, + ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9877 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } }, + ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (7-8)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (9-11)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (12-15)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6816 }, level = 75, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [446027070] = { "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike" }, } }, + ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6816 }, level = 80, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [446027070] = { "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike" }, } }, + ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2556 }, level = 78, group = "FlammabilityOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, + ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2557 }, level = 78, group = "FrostbiteOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, + ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2553 }, level = 78, group = "ConductivityOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, + ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["ImpaleEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "(12-16)% increased Impale Effect", statOrder = { 7343 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(12-16)% increased Impale Effect" }, } }, + ["ImpaleEffectEssence2__"] = { type = "Suffix", affix = "of the Essence", "(17-21)% increased Impale Effect", statOrder = { 7343 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(17-21)% increased Impale Effect" }, } }, + ["ImpaleEffectEssence3"] = { type = "Suffix", affix = "of the Essence", "(22-25)% increased Impale Effect", statOrder = { 7343 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(22-25)% increased Impale Effect" }, } }, + ["ImpaleEffectTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "(25-29)% increased Impale Effect", statOrder = { 7343 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(25-29)% increased Impale Effect" }, } }, + ["ImpaleEffectTwoHandEssence2_"] = { type = "Suffix", affix = "of the Essence", "(30-34)% increased Impale Effect", statOrder = { 7343 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(30-34)% increased Impale Effect" }, } }, + ["ImpaleEffectTwoHandEssence3_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% increased Impale Effect", statOrder = { 7343 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(35-38)% increased Impale Effect" }, } }, + ["BreachBodyChaosDamageAsPortionOfFireDamage1_"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain 10% of Fire Damage as Extra Chaos Damage" }, } }, + ["BreachBodyChaosDamageAsPortionOfColdDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain 10% of Cold Damage as Extra Chaos Damage" }, } }, + ["BreachBodyChaosDamageAsPortionOfLightningDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain 10% of Lightning Damage as Extra Chaos Damage" }, } }, + ["BreachBodyAllDefences1"] = { type = "Prefix", affix = "Chayula's", "50% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "50% increased Global Defences" }, } }, + ["BreachBodyLifeGainedOnHittingIgnitedEnemies1"] = { type = "Suffix", affix = "of Xoph", "Gain (20-30) Life for each Ignited Enemy hit with Attacks", statOrder = { 1766 }, level = 1, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (20-30) Life for each Ignited Enemy hit with Attacks" }, } }, + ["BreachBodyNoExtraBleedDamageWhileMoving1_"] = { type = "Suffix", affix = "of Uul-Netol", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3228 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, + ["BreachBodyAddedColdDamagePerPowerCharge1"] = { type = "Prefix", affix = "Tul's", "Adds 10 to 15 Cold Damage to Spells per Power Charge", statOrder = { 1848 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 15 Cold Damage to Spells per Power Charge" }, } }, + ["BreachBodyGainPowerChargeOnKillingFrozenEnemy1"] = { type = "Suffix", affix = "of Tul", "25% chance to gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1847 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "25% chance to gain a Power Charge on Killing a Frozen Enemy" }, } }, + ["BreachBodyIncreasedAttackSpeedPerDexterity1"] = { type = "Suffix", affix = "of Esh", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4952 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2241560081] = { "1% increased Attack Speed per 25 Dexterity" }, } }, + ["BreachBodyPhysicalDamageReductionWhileNotMoving1"] = { type = "Suffix", affix = "of Uul-Netol", "6% additional Physical Damage Reduction while stationary", statOrder = { 4351 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "6% additional Physical Damage Reduction while stationary" }, } }, + ["BreachBodyAddedLightningDamagePerShockedEnemyKilled1"] = { type = "Prefix", affix = "Esh's", "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9375 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, + ["BreachBodyReflectsShocks1"] = { type = "Suffix", affix = "of Esh", "Shock Reflection", statOrder = { 10028 }, level = 1, group = "ReflectsShocks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, + ["BreachBodyChaosDamageDoesNotBypassESNotLowLifeOrMana1_"] = { type = "Prefix", affix = "Esh's", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5807 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } }, + ["BreachBodyOnHitBlindChilledEnemies1"] = { type = "Suffix", affix = "of Tul", "Blind Chilled Enemies on Hit", statOrder = { 5288 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled Enemies on Hit" }, } }, + ["BreachBodyVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Uul-Netol", "25% chance to Curse Enemies with Vulnerability on Hit", statOrder = { 2550 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "25% chance to Curse Enemies with Vulnerability on Hit" }, } }, + ["BreachBodyGrantsEnvy1"] = { type = "Prefix", affix = "Chayula's", "Grants Level 15 Envy Skill", statOrder = { 667 }, level = 1, group = "GrantsEnvy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, + ["BreachBodyEnemiesBlockedAreIntimidated1"] = { type = "Prefix", affix = "Uul-Netol's", "Permanently Intimidate Enemies on Block", statOrder = { 9753 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate Enemies on Block" }, } }, + ["BreachBodyMinionsPoisonEnemiesOnHit1_"] = { type = "Suffix", affix = "of Chayula", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3209 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, + ["BreachBodyArmourIncreasedByUncappedFireResistance1____"] = { type = "Prefix", affix = "Xoph's", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4809 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2129352930] = { "Armour is increased by Overcapped Fire Resistance" }, } }, + ["BreachBodyEvasionIncreasedByUncappedColdResistance1"] = { type = "Prefix", affix = "Tul's", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6574 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, + ["BreachBodyCriticalChanceIncreasedByUncappedLightningResistance1"] = { type = "Suffix", affix = "of Esh", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 6002 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Strike Chance is increased by Overcapped Lightning Resistance" }, } }, + ["BreachBodyCoverInAshWhenHit1__"] = { type = "Prefix", affix = "Xoph's", "Cover Enemies in Ash when they Hit you", statOrder = { 4739 }, level = 1, group = "CoverInAshWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } }, + ["BreachBodyChillEnemiesWhenHit1"] = { type = "Suffix", affix = "of Tul", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3174 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } }, + ["BreachBodyArcticArmourReservationCost1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4758 }, level = 1, group = "ArcticArmourReservationCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2605040931] = { "Arctic Armour has 100% increased Mana Reservation Efficiency" }, } }, + ["BreachBodyArcticArmourReservationEfficiency1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4759 }, level = 1, group = "ArcticArmourReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2351239732] = { "Arctic Armour has 100% increased Mana Reservation Efficiency" }, } }, + ["BreachBodyMaximumLifeConvertedToEnergyShield1___"] = { type = "Prefix", affix = "Chayula's", "10% of Maximum Life Converted to Energy Shield", statOrder = { 9286 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "10% of Maximum Life Converted to Energy Shield" }, } }, + ["LocalIncreaseSocketedActiveGemLevelUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 196, 215 }, level = 90, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [1325783255] = { "+(5-10)% to Quality of Socketed Skill Gems" }, } }, + ["LocalIncreaseSocketedSupportGemLevelUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 195, 214 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-10)% to Quality of Socketed Support Gems" }, [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, + ["PhysicalDamageTakenAsFirePercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2472, 6659 }, level = 94, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(16-18)% of Physical Damage from Hits taken as Fire Damage" }, [1742651309] = { "(7-10)% of Fire Damage taken Recouped as Life" }, } }, + ["PhysicalDamageTakenAsColdPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2473, 5900 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(7-10)% of Cold Damage taken Recouped as Life" }, [1871056256] = { "(16-18)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["PhysicalDamageTakenAsLightningPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2474, 7553 }, level = 92, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(16-18)% of Physical Damage from Hits taken as Lightning Damage" }, [2970621759] = { "(7-10)% of Lightning Damage taken Recouped as Life" }, } }, + ["ReducedElementalReflectTakenUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3329, 6422 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, } }, + ["ReducedPhysicalReflectTakenUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2264, 9813 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3853018505] = { "(3-5)% reduced Physical Damage taken" }, [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, + ["ElementalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "You and your Minions prevent +100% of Reflected Elemental Damage", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3329 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, [3408683611] = { "You and your Minions prevent +100% of Reflected Elemental Damage" }, } }, + ["PhysicalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "You and your Minions prevent +100% of Reflected Physical Damage", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2264 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [1818622832] = { "You and your Minions prevent +100% of Reflected Physical Damage" }, [3853018505] = { "(3-5)% reduced Physical Damage taken" }, } }, + ["MaximumLifeUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(13-15)% increased maximum Life", statOrder = { 1593 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } }, + ["MaximumManaBodyUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% increased maximum Mana", statOrder = { 1603 }, level = 85, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(16-18)% increased maximum Mana" }, } }, + ["DamageTakenFromManaBeforeLifeUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(11-15)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 90, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(11-15)% of Damage is taken from Mana before Life" }, } }, + ["MaximumLifeOnKillPercentUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1772, 7494 }, level = 85, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3353368340] = { "(5-10)% increased Life Recovery Rate if you haven't Killed Recently" }, [2023107756] = { "Recover (5-6)% of Life on Kill" }, } }, + ["MaximumManaOnKillPercentUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1774, 8305 }, level = 85, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, [630994130] = { "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently" }, } }, + ["MaximumEnergyShieldOnKillPercentUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1773, 6538 }, level = 85, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, [2698606393] = { "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently" }, } }, + ["PercentageStrengthUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 161, 1207 }, level = 93, group = "PercentageStrengthMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, + ["PercentageDexterityUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 163, 1208 }, level = 93, group = "PercentageDexterityMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, + ["PercentageIntelligenceUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 164, 1209 }, level = 93, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, + ["LifeRegenerationRatePercentUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Regenerate (2.1-3)% of Life per second", statOrder = { 1967 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (2.1-3)% of Life per second" }, } }, + ["SupportedByItemRarityUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 20 Item Rarity", "(19-25)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 331, 10661 }, level = 95, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(19-25)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 20 Item Rarity" }, } }, + ["AdditionalCriticalStrikeChanceWithAttacksUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4842 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.6-2)% to Critical Strike Chance" }, } }, + ["AdditionalCriticalStrikeChanceWithSpellsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.6-2)% to Spell Critical Strike Chance" }, } }, + ["MaximumManaInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% increased maximum Mana", statOrder = { 1603 }, level = 90, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(16-18)% increased maximum Mana" }, } }, + ["PhysTakenAsLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2474, 7553 }, level = 93, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(16-18)% of Physical Damage from Hits taken as Lightning Damage" }, [2970621759] = { "(7-10)% of Lightning Damage taken Recouped as Life" }, } }, + ["ConsecratedGroundStationaryInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "You have Consecrated Ground around you while stationary", "Effects of Consecrated Ground you create Linger for 1 second", statOrder = { 5938, 10846 }, level = 85, group = "ConsecratedGroundStationaryMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 1 second" }, [880970200] = { "You have Consecrated Ground around you while stationary" }, } }, + ["HolyPhysicalExplosionInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 1903, 6460 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage" }, [280731498] = { "(8-12)% increased Area of Effect" }, } }, + ["HolyPhysicalExplosionChanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 1903, 3340 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [280731498] = { "(8-12)% increased Area of Effect" }, [3295179224] = { "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, + ["PercentageIntelligenceBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 164, 1209 }, level = 85, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, + ["AddPowerChargeOnCritInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "15% chance to gain a Power Charge on Critical Strike", "3% increased Damage per Power Charge", statOrder = { 1853, 6152 }, level = 90, group = "PowerChargeOnCriticalStrikeChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, [2034658008] = { "3% increased Damage per Power Charge" }, } }, + ["EnergyShieldOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1773, 6538 }, level = 90, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, [2698606393] = { "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently" }, } }, + ["EnergyShieldRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(12-15)% increased Energy Shield Recovery rate", "Regenerate (50-100) Energy Shield per second", statOrder = { 1590, 2671 }, level = 90, group = "EnergyShieldRecoveryRateMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(12-15)% increased Energy Shield Recovery rate" }, [1330109706] = { "Regenerate (50-100) Energy Shield per second" }, } }, + ["PhysTakenAsFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2472, 6659 }, level = 93, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(16-18)% of Physical Damage from Hits taken as Fire Damage" }, [1742651309] = { "(7-10)% of Fire Damage taken Recouped as Life" }, } }, + ["SocketedActiveGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 196, 215 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [1325783255] = { "+(5-10)% to Quality of Socketed Skill Gems" }, } }, + ["ReflectedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2264, 9813 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3853018505] = { "(3-5)% reduced Physical Damage taken" }, [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } }, + ["PhysicalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "You and your Minions prevent +100% of Reflected Physical Damage", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2264 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [1818622832] = { "You and your Minions prevent +100% of Reflected Physical Damage" }, [3853018505] = { "(3-5)% reduced Physical Damage taken" }, } }, + ["AllResistancesInfluenceMaven____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(19-22)% to all Elemental Resistances", "+1% to all maximum Elemental Resistances", statOrder = { 1642, 1666 }, level = 85, group = "AllResistancesMaven", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-22)% to all Elemental Resistances" }, [1978899297] = { "+1% to all maximum Elemental Resistances" }, } }, + ["PercentageStrengthBodyInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 161, 1207 }, level = 85, group = "PercentageStrengthMaven", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, + ["EnduranceChargeIfHitRecentlyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "3% increased Area of Effect per Endurance Charge", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 4778, 6838 }, level = 90, group = "EnduranceChargeIfHitRecentlyMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, [2448279015] = { "3% increased Area of Effect per Endurance Charge" }, } }, + ["LifeOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1772, 7494 }, level = 90, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3353368340] = { "(5-10)% increased Life Recovery Rate if you haven't Killed Recently" }, [2023107756] = { "Recover (5-6)% of Life on Kill" }, } }, + ["LifeRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(12-15)% increased Life Recovery rate", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 1601, 7448 }, level = 90, group = "LifeRecoveryRateMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(12-15)% increased Life Recovery rate" }, [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } }, + ["SocketedAttacksManaCostInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Ignore Stuns while using Socketed Attack Skills", "Socketed Attacks have -20 to Total Mana Cost", statOrder = { 556, 560 }, level = 95, group = "SocketedAttacksManaCostMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, tradeHashes = { [1439818705] = { "Ignore Stuns while using Socketed Attack Skills" }, [2264586521] = { "Socketed Attacks have -20 to Total Mana Cost" }, } }, + ["PhysTakenAsColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2473, 5900 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(7-10)% of Cold Damage taken Recouped as Life" }, [1871056256] = { "(16-18)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["SocketedSupportGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 195, 214 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-10)% to Quality of Socketed Support Gems" }, [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, + ["ReflectedElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3329, 6422 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, } }, + ["ElementalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "You and your Minions prevent +100% of Reflected Elemental Damage", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3329 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, [3408683611] = { "You and your Minions prevent +100% of Reflected Elemental Damage" }, } }, + ["NearbyEnemiesAreBlindedInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Cannot be Blinded", "Nearby Enemies are Blinded", statOrder = { 3008, 3432 }, level = 85, group = "NearbyEnemiesAreBlindedMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, + ["PercentageDexterityBodyInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 163, 1208 }, level = 85, group = "PercentageDexterityMaven", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, + ["FrenzyChargeOnHitChanceInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "1% increased Movement Speed per Frenzy Charge", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1825, 1856 }, level = 90, group = "FrenzyChargeOnHitChanceMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod", "speed" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, + ["ManaOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1774, 8305 }, level = 90, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, [630994130] = { "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently" }, } }, + ["ManaRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-15)% increased Mana Recovery rate", "(20-35)% increased Mana Recovery from Flasks", statOrder = { 1609, 2083 }, level = 90, group = "ManaRecoveryRateMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [2222186378] = { "(20-35)% increased Mana Recovery from Flasks" }, [3513180117] = { "(12-15)% increased Mana Recovery rate" }, } }, + ["AuraEffectBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(26-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 90, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(26-30)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["MaximumLifeBodyInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased maximum Life", statOrder = { 1593 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } }, + ["PhysTakenAsChaosInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "+1% to maximum Chaos Resistance", "(16-18)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1663, 2476 }, level = 93, group = "PhysicalDamageTakenAsChaosUberMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos", "resistance" }, tradeHashes = { [4129825612] = { "(16-18)% of Physical Damage from Hits taken as Chaos Damage" }, [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, + ["AdditionalCurseOnEnemiesInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2191, 6077 }, level = 92, group = "OLDAdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [714566414] = { "20% increased Mana Reservation Efficiency of Curse Aura Skills" }, } }, + ["AdditionalCurseOnEnemiesInfluenceMavenV2___"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2191, 6078 }, level = 92, group = "AdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [443165947] = { "20% increased Mana Reservation Efficiency of Curse Aura Skills" }, } }, + ["RegenerateLifeOverMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Every 4 seconds, Regenerate 25% of Life over one second", statOrder = { 3822 }, level = 90, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 25% of Life over one second" }, } }, + ["OfferingEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(26-35)% increased effect of Offerings", statOrder = { 4099 }, level = 90, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(26-35)% increased effect of Offerings" }, } }, + ["AdditionalCritWithAttacksInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4842 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.6-2)% to Critical Strike Chance" }, } }, + ["AdditionalCritWithSpellsInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.6-2)% to Spell Critical Strike Chance" }, } }, + ["LifeRegenerationPercentBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Regenerate (2.1-3)% of Life per second", statOrder = { 1967 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (2.1-3)% of Life per second" }, } }, + ["AreaDamageSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 464, 2058 }, level = 92, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-25)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 25 Concentrated Effect" }, } }, + ["AreaOfEffectSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 233, 1903 }, level = 93, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 25 Increased Area of Effect" }, [280731498] = { "(13-15)% increased Area of Effect" }, } }, + ["MaximumManaUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(12-15)% increased maximum Mana", "Transfiguration of Mind", statOrder = { 1603, 4647 }, level = 85, group = "MaximumManaIncreasePercentMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, [2748665614] = { "(12-15)% increased maximum Mana" }, } }, + ["MinionDamageSupportedUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 517, 1996 }, level = 93, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 25 Minion Damage" }, [1589917703] = { "Minions deal (23-25)% increased Damage" }, } }, + ["MinionLifeSupportedUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 515, 1789 }, level = 90, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 25 Minion Life" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } }, + ["AdditionalMinesPlacedSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "Throw an additional Mine", statOrder = { 508, 3585 }, level = 95, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 25 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } }, + ["MineDamageUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 508, 1219 }, level = 90, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 25 Blastchain Mine" }, } }, + ["MineDamageTrapUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 468, 1219 }, level = 90, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 25 Trap And Mine Damage" }, } }, + ["IncreasedChillEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 522, 5880 }, level = 90, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(17-20)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 25 Hypothermia" }, } }, + ["IncreasedShockEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 532, 7535 }, level = 90, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(17-20)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 25 Innervate" }, } }, + ["IgniteDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 319, 1882 }, level = 90, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(17-20)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 25 Immolate" }, } }, + ["IncreasedBurningDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 322, 1900 }, level = 92, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 25 Burning Damage" }, } }, + ["ChanceToGainPowerChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2165, 2659 }, level = 94, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } }, + ["SupportedByLessDurationUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Less Duration", statOrder = { 375 }, level = 78, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2487643588] = { "Socketed Gems are Supported by Level 25 Less Duration" }, } }, + ["SpellAddedFireDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1428 }, level = 92, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1429 }, level = 93, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (29-39) to (49-61) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1430 }, level = 94, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (101-121) Lightning Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1427 }, level = 95, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (35-49) to (60-73) Physical Damage to Spells" }, } }, + ["SpellAddedChaosDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1431 }, level = 95, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (29-39) to (49-61) Chaos Damage to Spells" }, } }, + ["ManaRegenerationUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1607, 4354 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3308030688] = { "20% increased Mana Regeneration Rate while stationary" }, [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } }, + ["AddedManaRegenerationUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1605, 8289 }, level = 90, group = "AddedManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } }, + ["AdditionalSpellBlockChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1183, 2012 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, [2388574377] = { "+1% to maximum Chance to Block Spell Damage" }, } }, + ["SocketedSpellCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +4% to Critical Strike Chance", statOrder = { 577 }, level = 94, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +4% to Critical Strike Chance" }, } }, + ["SocketedAttackCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +4% to Critical Strike Chance", statOrder = { 558 }, level = 93, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +4% to Critical Strike Chance" }, } }, + ["EnemyPhysicalDamageTakenAuraUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Nearby Enemies take 12% increased Physical Damage", statOrder = { 8028 }, level = 95, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3853018505] = { "12% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 12% increased Physical Damage" }, } }, + ["EnemyElementalDamageTakenAuraUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Nearby Enemies take 9% increased Elemental Damage", statOrder = { 8023 }, level = 95, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [639595152] = { "Nearby Enemies take 9% increased Elemental Damage" }, [2734809852] = { "9% increased Elemental Damage taken" }, } }, + ["LifeRegenerationPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Regenerate (1.6-2)% of Life per second", statOrder = { 1967 }, level = 83, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } }, + ["MaximumLightningResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["PhysTakenAsLightningHelmInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(11-13)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 93, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(11-13)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["EnemyLightningResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Nearby Enemies have -12% to Lightning Resistance", statOrder = { 8026 }, level = 95, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-12% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -12% to Lightning Resistance" }, } }, + ["SpellBlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1183, 2012 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, [2388574377] = { "+1% to maximum Chance to Block Spell Damage" }, } }, + ["FortifyEffectInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "+500 to Armour while Fortified", "+(4.2-5) to maximum Fortification", statOrder = { 4814, 9240 }, level = 90, group = "FortifyEffectMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [153004860] = { "+500 to Armour while Fortified" }, [335507772] = { "+(4.2-5) to maximum Fortification" }, } }, + ["EnergyShieldRegenInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(15-25)% increased Energy Shield Recharge Rate", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 1587, 2672 }, level = 85, group = "EnergyShieldRegenerationPerMinuteMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(15-25)% increased Energy Shield Recharge Rate" }, [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } }, + ["ReducedIgniteDurationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Ignite Duration on you", "(36-50)% increased Damage if you've been Ignited Recently", statOrder = { 1898, 6131 }, level = 85, group = "ReducedBurnDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [430821956] = { "(36-50)% increased Damage if you've been Ignited Recently" }, [986397080] = { "(51-60)% reduced Ignite Duration on you" }, } }, + ["ReducedFreezeDurationInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Freeze Duration on you", "(4-7)% reduced Damage taken if you've been Frozen Recently", statOrder = { 1897, 6204 }, level = 85, group = "ReducedFreezeDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-60)% reduced Freeze Duration on you" }, [3616645755] = { "(4-7)% reduced Damage taken if you've been Frozen Recently" }, } }, + ["ReducedShockEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(45-75)% increased Critical Strike Chance if you've been Shocked Recently", "(51-60)% reduced Effect of Shock on you", statOrder = { 6009, 10164 }, level = 85, group = "ReducedShockEffectOnSelfMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "critical", "ailment" }, tradeHashes = { [3801067695] = { "(51-60)% reduced Effect of Shock on you" }, [1434381067] = { "(45-75)% increased Critical Strike Chance if you've been Shocked Recently" }, } }, + ["MaximumPowerChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Power Charges", "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 1837, 6868, 6868.1 }, level = 85, group = "IncreasedMaximumPowerChargesMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1232004574] = { "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["PhysTakenAsFireHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(11-13)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 93, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(11-13)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["ElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(19-22)% increased Elemental Damage", "Damage Penetrates (2-3)% of Enemy Elemental Resistances", statOrder = { 2003, 3595 }, level = 85, group = "ElementalDamagePercentMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates (2-3)% of Enemy Elemental Resistances" }, [3141070085] = { "(19-22)% increased Elemental Damage" }, } }, + ["WarcryAreaOfEffectInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "15% increased Warcry Buff Effect", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10723, 10731 }, level = 85, group = "WarcryAreaOfEffectMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (26-30)% increased Area of Effect" }, [3037553757] = { "15% increased Warcry Buff Effect" }, } }, + ["EnemyFireResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Nearby Enemies have -12% to Fire Resistance", statOrder = { 8024 }, level = 95, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -12% to Fire Resistance" }, [3372524247] = { "-12% to Fire Resistance" }, } }, + ["CriticalStrikeMultiplierInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(21-24)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 85, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-24)% to Global Critical Strike Multiplier" }, } }, + ["ManaRegenerationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1607, 4354 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3308030688] = { "20% increased Mana Regeneration Rate while stationary" }, [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } }, + ["GainAccuracyEqualToStrengthInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "1% increased Critical Strike Chance per 10 Strength", "Gain Accuracy Rating equal to your Strength", statOrder = { 6013, 6803 }, level = 85, group = "GainAccuracyEqualToStrengthMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2511370818] = { "1% increased Critical Strike Chance per 10 Strength" }, [1575519214] = { "Gain Accuracy Rating equal to your Strength" }, } }, + ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1789, 2945 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-1.5)% of Life per second" }, [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, + ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2165, 2659 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } }, + ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(11-13)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10283, 10880 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [2897207025] = { "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals" }, [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } }, + ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 8022 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-12% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -12% to Cold Resistance" }, } }, + ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(12-14)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(11-14)% increased Mana Reservation Efficiency of Skills" }, } }, + ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 2049, 2590 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, [2443492284] = { "Ignites you inflict deal Damage (10-15)% faster" }, } }, + ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 2052, 7202 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1302208736] = { "Freeze Enemies as though dealing (30-50)% more Damage" }, [44571480] = { "(10-15)% chance to Freeze" }, } }, + ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 2056, 7203 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2206792089] = { "Shock Enemies as though dealing (30-50)% more Damage" }, [1538773178] = { "(10-15)% chance to Shock" }, } }, + ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1605, 8289 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } }, + ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1428 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1429 }, level = 85, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (29-39) to (49-61) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1430 }, level = 85, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (101-121) Lightning Damage to Spells" }, } }, + ["SpellAddedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1427 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (35-49) to (60-73) Physical Damage to Spells" }, } }, + ["SpellAddedChaosDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1431 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (29-39) to (49-61) Chaos Damage to Spells" }, } }, + ["EnemyChaosResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Nearby Enemies have -12% to Chaos Resistance", statOrder = { 8021 }, level = 95, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -12% to Chaos Resistance" }, [2923486259] = { "-12% to Chaos Resistance" }, } }, + ["PercentageIntelligenceInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Intelligence", statOrder = { 1209 }, level = 85, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(11-12)% increased Intelligence" }, } }, + ["IgnitingConfluxInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Ignite Duration on Enemies", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 1882, 6914 }, level = 90, group = "IgnitingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1190121450] = { "You have Igniting Conflux for 3 seconds every 8 seconds" }, [1086147743] = { "(20-30)% increased Ignite Duration on Enemies" }, } }, + ["ChillingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Chill Duration on Enemies", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 1879, 6914 }, level = 90, group = "ChillingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1190121450] = { "You have Chilling Conflux for 3 seconds every 8 seconds" }, [3485067555] = { "(20-30)% increased Chill Duration on Enemies" }, } }, + ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1880, 6914 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, [3668351662] = { "(20-30)% increased Shock Duration on Enemies" }, } }, + ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 480, 1434 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 25 Faster Attacks" }, } }, + ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 511, 1470 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 25 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } }, + ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2069, 3027 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, [2988593550] = { "(5-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 525, 1756 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [96977651] = { "(20-30)% increased Maximum total Mana Recovery per second from Leech" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, } }, + ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 493, 1819 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 25 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } }, + ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 387, 2019 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 25 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } }, + ["ChanceToAvoidInterruptionWhileCastingUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 90, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-60)% chance to Ignore Stuns while Casting" }, } }, + ["IncreasedMeleeWeaponRangeUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2560 }, level = 95, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, } }, + ["IncreasedMeleeWeaponRangeAndMeleeDamageUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-16)% increased Melee Damage", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 1257, 2560 }, level = 95, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, [1002362373] = { "(13-16)% increased Melee Damage" }, } }, + ["AdditionalTrapsThrownSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 465, 9664 }, level = 94, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 25 Trap" }, } }, + ["TrapDamageUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "(31-35)% increased Trap Damage", statOrder = { 465, 1217 }, level = 90, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 25 Trap" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, + ["TrapDamageCooldownUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 400, 1217 }, level = 90, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 25 Advanced Traps" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, + ["TrapSpeedCooldownUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 400, 1950 }, level = 90, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(17-20)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 25 Advanced Traps" }, } }, + ["TrapDamageMineUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 468, 1217 }, level = 90, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 25 Trap And Mine Damage" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } }, + ["PoisonDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 534, 3217 }, level = 90, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 25 Chance to Poison" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } }, + ["PoisonDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 534, 3205 }, level = 90, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(17-20)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 25 Chance to Poison" }, } }, + ["BleedingDamageUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 253, 3204 }, level = 90, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 25 Chance To Bleed" }, [1294118672] = { "(31-35)% increased Damage with Bleeding" }, } }, + ["ChanceToGainFrenzyChargeOnKillUberElderMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2150, 2657 }, level = 94, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [3338298622] = { "50% increased Frenzy Charge Duration" }, [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, + ["IncreasedAccuracySupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are supported by Level 25 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 491, 1458 }, level = 93, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 25 Additional Accuracy" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } }, + ["AdditionalBlockChanceUberMaven___"] = { type = "Suffix", affix = "of the Elevated Elder", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1162, 2011 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, + ["BlindOnHitSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are supported by Level 25 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 481, 2992 }, level = 90, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 25 Blind" }, [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } }, + ["SocketedSpellCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +90% to Critical Strike Multiplier", statOrder = { 578 }, level = 93, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +90% to Critical Strike Multiplier" }, } }, + ["SocketedAttackCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +90% to Critical Strike Multiplier", statOrder = { 559 }, level = 94, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +90% to Critical Strike Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-24)% to Chaos Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-24)% to Cold Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-24)% to Fire Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-24)% to Physical Damage over Time Multiplier" }, } }, + ["AvoidStunInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "(36-50)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 85, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } }, + ["MaximumColdResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["ConvertPhysicalToFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1955, 1978 }, level = 81, group = "ConvertPhysicalToFireMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(22-25)% of Physical Damage Converted to Fire Damage" }, [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } }, + ["ConvertPhysicalToColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1956, 1980 }, level = 81, group = "ConvertPhysicalToColdMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(22-25)% of Physical Damage Converted to Cold Damage" }, [979246511] = { "Gain (3-5)% of Physical Damage as Extra Cold Damage" }, } }, + ["ConvertPhysicalToLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1957, 1982 }, level = 81, group = "ConvertPhysicalToLightningMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, [3240769289] = { "(22-25)% of Physical Damage Converted to Lightning Damage" }, } }, + ["MaximumLifeLeechRateInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 85, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "20% increased Maximum total Life Recovery per second from Leech" }, } }, + ["MaximumEnergyShieldLeechRateInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "30% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1757 }, level = 85, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "30% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, + ["AvoidInterruptionWhileCastingInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 85, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-60)% chance to Ignore Stuns while Casting" }, } }, + ["GlobalCriticalStrikeChanceInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 85, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(31-60)% increased Global Critical Strike Chance" }, } }, + ["MaximumFrenzyChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Frenzy Charges", "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 1832, 6865 }, level = 85, group = "MaximumFrenzyChargesMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, [2119664154] = { "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, + ["MeleeDamageInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Melee Damage", statOrder = { 1257 }, level = 83, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(31-38)% increased Melee Damage" }, } }, + ["ProjectileAttackDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Projectile Attack Damage", statOrder = { 2020 }, level = 83, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(31-38)% increased Projectile Attack Damage" }, } }, + ["SpellDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Spell Damage", statOrder = { 1246 }, level = 83, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-38)% increased Spell Damage" }, } }, + ["DamageOverTimeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Damage over Time", statOrder = { 1233 }, level = 83, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(31-38)% increased Damage over Time" }, } }, + ["MeleeWeaponRangeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2560 }, level = 92, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, } }, + ["BlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1162, 2011 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, + ["CullingStrikeInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "Culling Strike", "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently", statOrder = { 2062, 4770 }, level = 83, group = "CullingStrikeMaven", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1785568076] = { "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently" }, [2524254339] = { "Culling Strike" }, } }, + ["FrenzyChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2150, 2657 }, level = 90, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [3338298622] = { "50% increased Frenzy Charge Duration" }, [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } }, + ["AddedPhysicalDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9379 }, level = 83, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedFireDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9367 }, level = 83, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedColdDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9362 }, level = 83, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently" }, } }, + ["AddedLightningDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9373 }, level = 83, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently" }, } }, + ["MinionDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Minions deal (31-45)% increased Damage", statOrder = { 1996 }, level = 83, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (31-45)% increased Damage" }, } }, + ["IncreasedAccuracyPercentInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(21-30)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 90, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(21-30)% increased Global Accuracy Rating" }, } }, + ["GlobalChanceToBlindOnHitInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2845, 2992 }, level = 90, group = "GlobalChanceToBlindOnHitMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3503466234] = { "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies" }, [2221570601] = { "(12-15)% Global chance to Blind Enemies on hit" }, } }, + ["AdditionalChanceToEvadeInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently", "+(2-4)% chance to Evade Attack Hits", statOrder = { 4866, 5751 }, level = 85, group = "AdditionalChanceToEvadeMaven", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion", "attack", "caster", "speed" }, tradeHashes = { [223937937] = { "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently" }, [2021058489] = { "+(2-4)% chance to Evade Attack Hits" }, } }, + ["ChanceToIntimidateOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 95, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, } }, + ["ChanceToUnnerveOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 95, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, } }, + ["StrikeSkillsAdditionalTargetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9309 }, level = 90, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } }, + ["ChanceToImpaleInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "(21-25)% chance to Impale Enemies on Hit with Attacks", "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy", statOrder = { 4968, 9381 }, level = 90, group = "AttackImpaleChanceMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [1455766505] = { "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy" }, [3739863694] = { "(21-25)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AilmentDurationInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased Duration of Ailments on Enemies", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 1883, 9634 }, level = 90, group = "IncreasedAilmentDurationMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(13-15)% increased Effect of Non-Damaging Ailments" }, [2419712247] = { "(13-15)% increased Duration of Ailments on Enemies" }, } }, + ["PercentageDexterityInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Dexterity", statOrder = { 1208 }, level = 85, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-12)% increased Dexterity" }, } }, + ["FireDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(21-25)% to Fire Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(21-25)% to Cold Damage over Time Multiplier" }, } }, + ["ChaosDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(21-25)% to Chaos Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(21-25)% to Physical Damage over Time Multiplier" }, } }, + ["ManaGainPerTargetInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", "(10-20)% increased Attack Speed while not on Low Mana", statOrder = { 1767, 4956 }, level = 78, group = "ManaGainPerTargetMaven", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack", "speed" }, tradeHashes = { [820939409] = { "Gain (3-5) Mana per Enemy Hit with Attacks" }, [779663446] = { "(10-20)% increased Attack Speed while not on Low Mana" }, } }, + ["IncreasedDurationBootsUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 20 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 324, 1918 }, level = 78, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [407317553] = { "Socketed Gems are Supported by Level 20 More Duration" }, [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, + ["IncreasedCooldownRecoveryBootsUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } }, + ["SupportedByFortifyUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Fortify", statOrder = { 507 }, level = 78, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 25 Fortify" }, } }, + ["ImmuneToChilledGroundUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Chill", statOrder = { 10615 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [937372143] = { "Unaffected by Chill" }, } }, + ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 10630 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, + ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 10634 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, + ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 5127 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, + ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } }, + ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(36-45)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 5000, 5046 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } }, + ["ChanceToGainEnduranceChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2148, 2655 }, level = 93, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, + ["TotemDamageSpellUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 475, 1216 }, level = 90, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 25 Spell Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } }, + ["TotemSpeedSpellUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 475, 2604 }, level = 90, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 25 Spell Totem" }, } }, + ["TotemDamageAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 372, 1216 }, level = 90, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 25 Ballista Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } }, + ["TotemSpeedAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 372, 2604 }, level = 90, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 25 Ballista Totem" }, } }, + ["SupportedByLifeLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 494 }, level = 78, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 20 Life Leech" }, } }, + ["GrantsDecoyTotemSkillUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Grants Level 25 Decoy Totem Skill", statOrder = { 715 }, level = 78, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3566242751] = { "Grants Level 25 Decoy Totem Skill" }, } }, + ["GlobalRaiseSpectreGemLevelUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+2 to Level of all Raise Spectre Gems", statOrder = { 1639 }, level = 85, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+2 to Level of all Raise Spectre Gems" }, } }, + ["UnaffectedByShockedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Unaffected by Shock", statOrder = { 10634 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, + ["SocketedLightningGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+2 to Level of Socketed Lightning Gems", "+(3-7)% to Quality of Socketed Lightning Gems", statOrder = { 174, 225 }, level = 78, group = "LocalIncreaseSocketedLightningGemLevelMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [1065580342] = { "+(3-7)% to Quality of Socketed Lightning Gems" }, [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, + ["MaximumFireResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MaximumFireResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["PhysicalAddedAsExtraLightningBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (9-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 85, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (9-11)% of Physical Damage as Extra Lightning Damage" }, } }, + ["CooldownRecoveryInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } }, + ["AvoidIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 85, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(71-80)% chance to Avoid being Ignited" }, } }, + ["AvoidFreezeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 85, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(71-80)% chance to Avoid being Frozen" }, } }, + ["AvoidShockInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 85, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(71-80)% chance to Avoid being Shocked" }, } }, + ["AvoidProjectilesInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 5000, 5046 }, level = 83, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } }, + ["UnaffectedByBurningGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "Unaffected by Ignite", statOrder = { 10630 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, + ["SocketedFireGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+2 to Level of Socketed Fire Gems", "+(3-7)% to Quality of Socketed Fire Gems", statOrder = { 172, 223 }, level = 78, group = "LocalIncreaseSocketedFireGemLevelMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, [3422008440] = { "+(3-7)% to Quality of Socketed Fire Gems" }, } }, + ["MaximumEnduranceChargeInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Endurance Charges", "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 1827, 4275 }, level = 85, group = "MaximumEnduranceChargesMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2713233613] = { "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["PhysicalAddedAsExtraFireBootsInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Warlord's", "Gain (9-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 85, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (9-11)% of Physical Damage as Extra Fire Damage" }, } }, + ["AvoidFireDamageInfluenceMaven_____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Fire Resistance", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 1648, 3409 }, level = 90, group = "FireDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, + ["AvoidColdDamageInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Cold Resistance", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 1654, 3410 }, level = 90, group = "ColdDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3743375737] = { "(8-10)% chance to Avoid Cold Damage from Hits" }, } }, + ["AvoidLightningDamageInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Lightning Resistance", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 1659, 3411 }, level = 90, group = "LightningDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, [2889664727] = { "(8-10)% chance to Avoid Lightning Damage from Hits" }, } }, + ["AdditionalPhysicalDamageReductionInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(15-20)% increased Armour", "(2-4)% additional Physical Damage Reduction", statOrder = { 1563, 2296 }, level = 85, group = "ReducedPhysicalDamageTakenMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour", "physical" }, tradeHashes = { [3771516363] = { "(2-4)% additional Physical Damage Reduction" }, [2866361420] = { "(15-20)% increased Armour" }, } }, + ["UnaffectedByChilledGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Unaffected by Chill", statOrder = { 10615 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [937372143] = { "Unaffected by Chill" }, } }, + ["SocketedColdGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+2 to Level of Socketed Cold Gems", "+(3-7)% to Quality of Socketed Cold Gems", statOrder = { 173, 220 }, level = 78, group = "LocalIncreaseSocketedColdGemLevelMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1164882313] = { "+(3-7)% to Quality of Socketed Cold Gems" }, [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2148, 2655 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } }, + ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (9-11)% of Physical Damage as Extra Cold Damage" }, } }, + ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4317, 6437 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [240857668] = { "(5-10)% increased Elusive Effect" }, [2896192589] = { "(11-20)% chance to gain Elusive on Critical Strike" }, } }, + ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(41-60)% increased Effect of Non-Damaging Ailments" }, } }, + ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 3027, 4889 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [879520319] = { "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught" }, [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 5127 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, + ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 176, 219 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2062835769] = { "+(3-7)% to Quality of Socketed Chaos Gems" }, [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, + ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1813 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce (3-5) additional Targets" }, } }, + ["PercentageStrengthInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Strength", statOrder = { 1207 }, level = 85, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(11-12)% increased Strength" }, } }, + ["AvoidBleedAndPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(61-70)% chance to Avoid being Poisoned", "(61-70)% chance to Avoid Bleeding", statOrder = { 1872, 4252 }, level = 85, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(61-70)% chance to Avoid Bleeding" }, [4053951709] = { "(61-70)% chance to Avoid being Poisoned" }, } }, + ["TailwindOnCriticalStrikeInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-25)% increased Effect of Tailwind on you", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10497, 10499 }, level = 85, group = "TailwindOnCriticalStrikeMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2172944497] = { "(10-25)% increased Effect of Tailwind on you" }, [1085545682] = { "You have Tailwind if you have dealt a Critical Strike Recently" }, } }, + ["FasterIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Ignite Duration on Enemies", "Ignites you inflict deal Damage (11-15)% faster", statOrder = { 1882, 2590 }, level = 83, group = "FasterIgniteDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(10-20)% increased Ignite Duration on Enemies" }, [2443492284] = { "Ignites you inflict deal Damage (11-15)% faster" }, } }, + ["FasterBleedInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Bleeding Duration", "Bleeding you inflict deals Damage (11-15)% faster", statOrder = { 5047, 6632 }, level = 83, group = "FasterBleedDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (11-15)% faster" }, [1459321413] = { "(10-20)% increased Bleeding Duration" }, } }, + ["FasterPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Poison Duration", "Poisons you inflict deal Damage (11-15)% faster", statOrder = { 3205, 6633 }, level = 83, group = "FasterPoisonDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (11-15)% faster" }, [2011656677] = { "(10-20)% increased Poison Duration" }, } }, + ["LocalIncreasedWard1"] = { type = "Prefix", affix = "Farrier's", "+(5-9) to Ward", statOrder = { 1550 }, level = 3, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(5-9) to Ward" }, } }, + ["LocalIncreasedWard2"] = { type = "Prefix", affix = "Brownsmith's", "+(10-15) to Ward", statOrder = { 1550 }, level = 11, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(10-15) to Ward" }, } }, + ["LocalIncreasedWard3_"] = { type = "Prefix", affix = "Coppersmith's", "+(16-23) to Ward", statOrder = { 1550 }, level = 17, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(16-23) to Ward" }, } }, + ["LocalIncreasedWard4"] = { type = "Prefix", affix = "Blacksmith's", "+(24-35) to Ward", statOrder = { 1550 }, level = 23, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(24-35) to Ward" }, } }, + ["LocalIncreasedWard5___"] = { type = "Prefix", affix = "Silversmith's", "+(36-52) to Ward", statOrder = { 1550 }, level = 29, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(36-52) to Ward" }, } }, + ["LocalIncreasedWard6_"] = { type = "Prefix", affix = "Goldsmith's", "+(52-69) to Ward", statOrder = { 1550 }, level = 35, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(52-69) to Ward" }, } }, + ["LocalIncreasedWard7"] = { type = "Prefix", affix = "Whitesmith's", "+(70-84) to Ward", statOrder = { 1550 }, level = 43, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(70-84) to Ward" }, } }, + ["LocalIncreasedWard8__"] = { type = "Prefix", affix = "Engraver's", "+(85-99) to Ward", statOrder = { 1550 }, level = 51, group = "LocalWard", weightKey = { "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(85-99) to Ward" }, } }, + ["LocalIncreasedWard9"] = { type = "Prefix", affix = "Runesmith's", "+(100-119) to Ward", statOrder = { 1550 }, level = 60, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(100-119) to Ward" }, } }, + ["LocalIncreasedWard10____"] = { type = "Prefix", affix = "Runemaster's", "+(120-139) to Ward", statOrder = { 1550 }, level = 69, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(120-139) to Ward" }, } }, + ["LocalIncreasedWard11"] = { type = "Prefix", affix = "Artificer's", "+(140-159) to Ward", statOrder = { 1550 }, level = 75, group = "LocalWard", weightKey = { "shield", "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(140-159) to Ward" }, } }, + ["LocalIncreasedWardPercent1"] = { type = "Prefix", affix = "Chiseled", "(11-28)% increased Ward", statOrder = { 1552 }, level = 3, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(11-28)% increased Ward" }, } }, + ["LocalIncreasedWardPercent2"] = { type = "Prefix", affix = "Etched", "(27-42)% increased Ward", statOrder = { 1552 }, level = 18, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(27-42)% increased Ward" }, } }, + ["LocalIncreasedWardPercent3"] = { type = "Prefix", affix = "Engraved", "(43-55)% increased Ward", statOrder = { 1552 }, level = 30, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(43-55)% increased Ward" }, } }, + ["LocalIncreasedWardPercent4"] = { type = "Prefix", affix = "Embedded", "(56-67)% increased Ward", statOrder = { 1552 }, level = 44, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(56-67)% increased Ward" }, } }, + ["LocalIncreasedWardPercent5"] = { type = "Prefix", affix = "Inscribed", "(68-79)% increased Ward", statOrder = { 1552 }, level = 60, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(68-79)% increased Ward" }, } }, + ["LocalIncreasedWardPercent6"] = { type = "Prefix", affix = "Lettered", "(80-91)% increased Ward", statOrder = { 1552 }, level = 72, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(80-91)% increased Ward" }, } }, + ["LocalIncreasedWardPercent7"] = { type = "Prefix", affix = "Runed", "(92-100)% increased Ward", statOrder = { 1552 }, level = 84, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(92-100)% increased Ward" }, } }, + ["LocalIncreasedWardPercent8"] = { type = "Prefix", affix = "Calligraphic", "(101-110)% increased Ward", statOrder = { 1552 }, level = 86, group = "LocalWardPercent", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(101-110)% increased Ward" }, } }, + ["LocalIncreasedWardPercentAndStunRecovery1______"] = { type = "Prefix", affix = "Improved", "(6-13)% increased Ward", "(6-7)% increased Stun and Block Recovery", statOrder = { 1552, 1925 }, level = 3, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [830161081] = { "(6-13)% increased Ward" }, } }, + ["LocalIncreasedWardPercentAndStunRecovery2_"] = { type = "Prefix", affix = "Enhanced", "(14-20)% increased Ward", "(8-9)% increased Stun and Block Recovery", statOrder = { 1552, 1925 }, level = 18, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [830161081] = { "(14-20)% increased Ward" }, } }, + ["LocalIncreasedWardPercentAndStunRecovery3"] = { type = "Prefix", affix = "Bolstered", "(21-26)% increased Ward", "(10-11)% increased Stun and Block Recovery", statOrder = { 1552, 1925 }, level = 30, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [830161081] = { "(21-26)% increased Ward" }, } }, + ["LocalIncreasedWardPercentAndStunRecovery4"] = { type = "Prefix", affix = "Elegant", "(27-32)% increased Ward", "(12-13)% increased Stun and Block Recovery", statOrder = { 1552, 1925 }, level = 44, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [830161081] = { "(27-32)% increased Ward" }, } }, + ["LocalIncreasedWardPercentAndStunRecovery5"] = { type = "Prefix", affix = "Exquisite", "(33-38)% increased Ward", "(14-15)% increased Stun and Block Recovery", statOrder = { 1552, 1925 }, level = 60, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [830161081] = { "(33-38)% increased Ward" }, } }, + ["LocalIncreasedWardPercentAndStunRecovery6_"] = { type = "Prefix", affix = "Masterwork", "(39-42)% increased Ward", "(16-17)% increased Stun and Block Recovery", statOrder = { 1552, 1925 }, level = 78, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [830161081] = { "(39-42)% increased Ward" }, } }, + ["LocalBaseWardAndLife1__"] = { type = "Prefix", affix = "Annest's", "+(15-20) to Ward", "+(18-23) to maximum Life", statOrder = { 1550, 1591 }, level = 30, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(15-20) to Ward" }, [3299347043] = { "+(18-23) to maximum Life" }, } }, + ["LocalBaseWardAndLife2"] = { type = "Prefix", affix = "Owen's", "+(21-30) to Ward", "+(24-28) to maximum Life", statOrder = { 1550, 1591 }, level = 46, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(21-30) to Ward" }, [3299347043] = { "+(24-28) to maximum Life" }, } }, + ["LocalBaseWardAndLife3_"] = { type = "Prefix", affix = "Gwayne's", "+(31-40) to Ward", "+(29-33) to maximum Life", statOrder = { 1550, 1591 }, level = 62, group = "LocalBaseWardAndLife", weightKey = { "boots", "gloves", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(31-40) to Ward" }, [3299347043] = { "+(29-33) to maximum Life" }, } }, + ["LocalBaseWardAndLife4_"] = { type = "Prefix", affix = "Cadigan's", "+(41-50) to Ward", "+(34-38) to maximum Life", statOrder = { 1550, 1591 }, level = 78, group = "LocalBaseWardAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(41-50) to Ward" }, [3299347043] = { "+(34-38) to maximum Life" }, } }, + ["FasterStartOfWardRecharge1"] = { type = "Suffix", affix = "of Artifice", "(33-37)% faster Restoration of Ward", statOrder = { 1553 }, level = 46, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(33-37)% faster Restoration of Ward" }, } }, + ["FasterStartOfWardRecharge2"] = { type = "Suffix", affix = "of Etching", "(38-42)% faster Restoration of Ward", statOrder = { 1553 }, level = 57, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(38-42)% faster Restoration of Ward" }, } }, + ["FasterStartOfWardRecharge3"] = { type = "Suffix", affix = "of Engraving", "(43-47)% faster Restoration of Ward", statOrder = { 1553 }, level = 68, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(43-47)% faster Restoration of Ward" }, } }, + ["FasterStartOfWardRecharge4"] = { type = "Suffix", affix = "of Inscription", "(48-52)% faster Restoration of Ward", statOrder = { 1553 }, level = 76, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(48-52)% faster Restoration of Ward" }, } }, + ["FasterStartOfWardRecharge5"] = { type = "Suffix", affix = "of Runes", "(53-58)% faster Restoration of Ward", statOrder = { 1553 }, level = 85, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(53-58)% faster Restoration of Ward" }, } }, + ["RecombinatorSpecialMaximumEnduranceCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["RecombinatorSpecialMaximumFrenzyCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10965 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, + ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10996 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, + ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10936 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10967 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10946 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, + ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10984 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, + ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10968 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, + ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10931 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, + ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10953 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, + ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10989 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, + ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10947 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, + ["RecombinatorSpecialKeystoneAvatarOfFire"] = { type = "Suffix", affix = "of the Sentinel", "Avatar of Fire", statOrder = { 10934 }, level = 68, group = "AvatarOfFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } }, + ["RecombinatorSpecialKeystoneEldritchBattery"] = { type = "Suffix", affix = "of the Sentinel", "Eldritch Battery", statOrder = { 10945 }, level = 68, group = "EldritchBattery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["RecombinatorSpecialKeystoneAncestralBond"] = { type = "Suffix", affix = "of the Sentinel", "Ancestral Bond", statOrder = { 10933 }, level = 68, group = "AncestralBond", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, + ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10942 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, + ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10932 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, + ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10976 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, + ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10936 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10937 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, + ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10966 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, + ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10985 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, + ["RecombinatorSpecialKeystoneTheImpaler"] = { type = "Suffix", affix = "of the Sentinel", "The Impaler", statOrder = { 10958 }, level = 68, group = "Impaler", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } }, + ["RecombinatorSpecialKeystoneDoomsday"] = { type = "Suffix", affix = "of the Sentinel", "Hex Master", statOrder = { 10956 }, level = 68, group = "HexMaster", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } }, + ["RecombinatorSpecialKeystoneLetheShade1"] = { type = "Suffix", affix = "of the Sentinel", "Lethe Shade", statOrder = { 10960 }, level = 68, group = "LetheShade", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } }, + ["RecombinatorSpecialKeystoneGhostDance"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Dance", statOrder = { 10952 }, level = 68, group = "GhostDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, + ["RecombinatorSpecialKeystoneVersatileCombatant"] = { type = "Suffix", affix = "of the Sentinel", "Versatile Combatant", statOrder = { 10990 }, level = 68, group = "VersatileCombatant", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, + ["RecombinatorSpecialKeystoneMagebane"] = { type = "Suffix", affix = "of the Sentinel", "Magebane", statOrder = { 10962 }, level = 68, group = "Magebane", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } }, + ["RecombinatorSpecialKeystoneSolipsism"] = { type = "Suffix", affix = "of the Sentinel", "Solipsism", statOrder = { 10982 }, level = 68, group = "Solipsism", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } }, + ["RecombinatorSpecialKeystoneDivineShield"] = { type = "Suffix", affix = "of the Sentinel", "Divine Shield", statOrder = { 10944 }, level = 68, group = "DivineShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } }, + ["RecombinatorSpecialKeystoneIronWill"] = { type = "Suffix", affix = "of the Sentinel", "Iron Will", statOrder = { 10997 }, level = 68, group = "IronWill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, + ["RecombinatorSpecialMagicUtilityFlaskEffect"] = { type = "Prefix", affix = "Sentinel's", "Magic Utility Flasks applied to you have (20-25)% increased Effect", statOrder = { 2777 }, level = 68, group = "MagicUtilityFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2564857472] = { "Magic Utility Flasks applied to you have (20-25)% increased Effect" }, } }, + ["RecombinatorSpecialAuraEffect"] = { type = "Suffix", affix = "of the Sentinel", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 68, group = "AuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-20)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["RecombinatorSpecialFireDamageToAttacksPerStrength"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Fire Damage to Attacks per 10 Strength", statOrder = { 9371 }, level = 68, group = "FireDamageToAttacksPerStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [68673913] = { "Adds 2 to 4 Fire Damage to Attacks per 10 Strength" }, } }, + ["RecombinatorSpecialColdDamageToAttacksPerDexterity"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9363 }, level = 68, group = "ColdDamageToAttacksPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [769783486] = { "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity" }, } }, + ["RecombinatorSpecialLightningDamageToAttacksPerIntelligence"] = { type = "Prefix", affix = "Sentinel's", "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9376 }, level = 68, group = "LightningDamageToAttacksPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3168149399] = { "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence" }, } }, + ["RecombinatorSpecialAllFireDamageCanShock"] = { type = "Suffix", affix = "of the Sentinel", "Your Fire Damage can Shock", statOrder = { 2910 }, level = 68, group = "AllFireDamageCanShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [932096321] = { "Your Fire Damage can Shock" }, } }, + ["RecombinatorSpecialAllColdDamageCanIgnite"] = { type = "Suffix", affix = "of the Sentinel", "Your Cold Damage can Ignite", statOrder = { 2905 }, level = 68, group = "AllColdDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1888494262] = { "Your Cold Damage can Ignite" }, } }, + ["RecombinatorSpecialAllLightningDamageCanFreeze"] = { type = "Suffix", affix = "of the Sentinel", "Your Lightning Damage can Freeze", statOrder = { 2917 }, level = 68, group = "AllLightningDamageCanFreeze", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [380759151] = { "Your Lightning Damage can Freeze" }, } }, + ["RecombinatorSpecialMarkEffect"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of your Marks", statOrder = { 2624 }, level = 68, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(30-40)% increased Effect of your Marks" }, } }, + ["RecombinatorSpecialArcaneSurgeEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(30-40)% increased Effect of Arcane Surge on you" }, } }, + ["RecombinatorSpecialArcaneSurgeEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(50-70)% increased Effect of Arcane Surge on you" }, } }, + ["RecombinatorSpecialOnslaughtEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(30-40)% increased Effect of Onslaught on you" }, } }, + ["RecombinatorSpecialOnslaughtEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(50-70)% increased Effect of Onslaught on you" }, } }, + ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies1H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (10-15)% increased Damage", statOrder = { 10507 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3610197448] = { "Enemies Taunted by your Warcries take (10-15)% increased Damage" }, } }, + ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies2H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (20-25)% increased Damage", statOrder = { 10507 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3610197448] = { "Enemies Taunted by your Warcries take (20-25)% increased Damage" }, } }, + ["RecombinatorSpecialSupportedByLevelFourEnlighten"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enlighten", statOrder = { 282 }, level = 68, group = "SupportedByEnlighten", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [2065361612] = { "Socketed Gems are Supported by Level 4 Enlighten" }, } }, + ["RecombinatorSpecialSupportedByLevelFourEnhance"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enhance", statOrder = { 281 }, level = 68, group = "SupportedByEnhance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [2556436882] = { "Socketed Gems are Supported by Level 4 Enhance" }, } }, + ["RecombinatorSpecialSupportedByLevelFourEmpower"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Empower", statOrder = { 279 }, level = 68, group = "SupportedByEmpower", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [3581578643] = { "Socketed Gems are Supported by Level 4 Empower" }, } }, + ["RecombinatorSpecialTriggerSkillsDoubleDamage"] = { type = "Prefix", affix = "Sentinel's", "Socketed Triggered Skills deal Double Damage", statOrder = { 420 }, level = 68, group = "SocketedTriggeredSkillsDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "damage", "gem" }, tradeHashes = { [4021083819] = { "Socketed Triggered Skills deal Double Damage" }, } }, + ["LifeRegeneration1Inverted"] = { type = "Suffix", affix = "of the Newt", "Lose (1-2) Life per second", statOrder = { 1598 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (1-2) Life per second" }, } }, + ["LifeRegeneration2Inverted"] = { type = "Suffix", affix = "of the Lizard", "Lose (2.1-8) Life per second", statOrder = { 1598 }, level = 7, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (2.1-8) Life per second" }, } }, + ["LifeRegeneration3Inverted"] = { type = "Suffix", affix = "of the Flatworm", "Lose (8.1-16) Life per second", statOrder = { 1598 }, level = 19, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (8.1-16) Life per second" }, } }, + ["LifeRegeneration4Inverted"] = { type = "Suffix", affix = "of the Starfish", "Lose (16.1-24) Life per second", statOrder = { 1598 }, level = 31, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (16.1-24) Life per second" }, } }, + ["LifeRegeneration5Inverted"] = { type = "Suffix", affix = "of the Hydra", "Lose (24.1-32) Life per second", statOrder = { 1598 }, level = 44, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (24.1-32) Life per second" }, } }, + ["LifeRegeneration6Inverted"] = { type = "Suffix", affix = "of the Troll", "Lose (32.1-48) Life per second", statOrder = { 1598 }, level = 55, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (32.1-48) Life per second" }, } }, + ["LifeRegeneration7Inverted"] = { type = "Suffix", affix = "of Ryslatha", "Lose (48.1-64) Life per second", statOrder = { 1598 }, level = 68, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (48.1-64) Life per second" }, } }, + ["LifeRegeneration8Inverted"] = { type = "Suffix", affix = "of the Phoenix", "Lose (64.1-96) Life per second", statOrder = { 1598 }, level = 74, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (64.1-96) Life per second" }, } }, + ["AddedPhysicalDamage1Inverted"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks against you", statOrder = { 1291 }, level = 5, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds 1 to 2 Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamage2Inverted"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 13, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (2-3) to (4-5) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamage3Inverted"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 19, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (3-4) to (6-7) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamage4Inverted"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 28, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (4-6) to (9-10) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamage5Inverted"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 35, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (5-7) to (11-12) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamage6Inverted"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 44, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (6-9) to (13-15) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamage7Inverted"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 52, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (7-10) to (15-18) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamage8Inverted"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 64, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (9-12) to (19-22) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamage9Inverted"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 76, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (11-15) to (22-26) Physical Damage to Attacks against you" }, } }, + ["AddedFireDamage1Inverted"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks against you", statOrder = { 1385 }, level = 1, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds 1 to 2 Fire Damage to Attacks against you" }, } }, + ["AddedFireDamage2Inverted"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 12, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (3-5) to (7-8) Fire Damage to Attacks against you" }, } }, + ["AddedFireDamage3Inverted"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 20, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (5-7) to (11-13) Fire Damage to Attacks against you" }, } }, + ["AddedFireDamage4Inverted"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 28, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (7-10) to (15-18) Fire Damage to Attacks against you" }, } }, + ["AddedFireDamage5Inverted"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 35, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (9-12) to (19-22) Fire Damage to Attacks against you" }, } }, + ["AddedFireDamage6Inverted"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 44, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (11-15) to (23-27) Fire Damage to Attacks against you" }, } }, + ["AddedFireDamage7Inverted"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 52, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (13-18) to (27-31) Fire Damage to Attacks against you" }, } }, + ["AddedFireDamage8Inverted"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 64, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (16-22) to (32-38) Fire Damage to Attacks against you" }, } }, + ["AddedFireDamage9Inverted"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 76, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (19-25) to (39-45) Fire Damage to Attacks against you" }, } }, + ["AddedColdDamage1Inverted"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks against you", statOrder = { 1394 }, level = 2, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds 1 to 2 Cold Damage to Attacks against you" }, } }, + ["AddedColdDamage2Inverted"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 13, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (3-4) to (7-8) Cold Damage to Attacks against you" }, } }, + ["AddedColdDamage3Inverted"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 21, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (5-7) to (10-12) Cold Damage to Attacks against you" }, } }, + ["AddedColdDamage4Inverted"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 29, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (6-9) to (13-16) Cold Damage to Attacks against you" }, } }, + ["AddedColdDamage5Inverted"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 36, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (8-11) to (16-19) Cold Damage to Attacks against you" }, } }, + ["AddedColdDamage6Inverted"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 45, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (10-13) to (20-24) Cold Damage to Attacks against you" }, } }, + ["AddedColdDamage7Inverted"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 53, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (12-16) to (24-28) Cold Damage to Attacks against you" }, } }, + ["AddedColdDamage8Inverted"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 65, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (14-19) to (29-34) Cold Damage to Attacks against you" }, } }, + ["AddedColdDamage9Inverted"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 77, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (17-22) to (34-40) Cold Damage to Attacks against you" }, } }, + ["AddedLightningDamage1Inverted"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 3, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds 1 to 5 Lightning Damage to Attacks against you" }, } }, + ["AddedLightningDamage2Inverted"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 13, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds 1 to (14-15) Lightning Damage to Attacks against you" }, } }, + ["AddedLightningDamage3Inverted"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 22, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks against you" }, } }, + ["AddedLightningDamage4Inverted"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 28, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks against you" }, } }, + ["AddedLightningDamage5Inverted"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 35, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-3) to (33-34) Lightning Damage to Attacks against you" }, } }, + ["AddedLightningDamage6Inverted"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 44, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-4) to (40-43) Lightning Damage to Attacks against you" }, } }, + ["AddedLightningDamage7Inverted"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 52, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (2-5) to (47-50) Lightning Damage to Attacks against you" }, } }, + ["AddedLightningDamage8Inverted"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 64, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (3-6) to (57-61) Lightning Damage to Attacks against you" }, } }, + ["AddedLightningDamage9Inverted"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 76, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (3-7) to (68-72) Lightning Damage to Attacks against you" }, } }, + ["LifeLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, + ["LifeLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, + ["LifeLeechPermyriad3Inverted"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, + ["LifeLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, + ["LifeLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, + ["LifeLeechPermyriadSuffix3Inverted"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life" }, } }, + ["ManaLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1721 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana" }, } }, + ["ManaLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1721 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana" }, } }, + ["ManaLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1721 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana" }, } }, + ["ManaLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1721 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana" }, } }, + ["LifeRegenerationEnhancedLevel50ModInverted"] = { type = "Suffix", affix = "of Guatelitzi", "Lose (32-40) Life per second", "Lose 0.4% of Life per second", statOrder = { 1598, 1966 }, level = 50, group = "LifeDegenerationAndPercentGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1661347488] = { "Lose 0.4% of Life per second" }, [771127912] = { "Lose (32-40) Life per second" }, } }, + ["IncreasedEnergyShieldEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Lose 0.4% of Energy Shield per second", statOrder = { 1580, 2673 }, level = 50, group = "EnergyShieldAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [761102773] = { "Lose 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } }, + ["FireResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1648, 1694 }, level = 50, group = "FireResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [45548764] = { "0.4% of Fire Damage Leeched by Enemy as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } }, + ["ColdResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1654, 1699 }, level = 50, group = "ColdResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3271464175] = { "0.4% of Cold Damage Leeched by Enemy as Life" }, } }, + ["LightningResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1659, 1703 }, level = 50, group = "LightningResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [3925004212] = { "0.4% of Lightning Damage Leeched by Enemy as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } }, + ["IncreasedManaEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Lose (5-7) Mana per second", statOrder = { 1602, 1606 }, level = 50, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [838272676] = { "Lose (5-7) Mana per second" }, } }, + ["IncreasedManaEnhancedLevel50ModCostNewInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills Cost -(8-6) Mana", statOrder = { 1602, 10209 }, level = 50, group = "IncreasedManaAndBaseCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [407482587] = { "Non-Channelling Skills Cost -(8-6) Mana" }, } }, + ["AddedPhysicalDamageEssenceAmulet7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (16-18) to (27-30) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamageEssenceRing5Inverted"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 58, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (6-8) to (12-13) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamageEssenceRing6Inverted"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 74, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (7-9) to (13-15) Physical Damage to Attacks against you" }, } }, + ["AddedPhysicalDamageEssenceRing7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks against you", statOrder = { 1291 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (10-11) to (16-17) Physical Damage to Attacks against you" }, } }, + ["AddedFireDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks against you", statOrder = { 1385 }, level = 82, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (23-27) to (43-48) Fire Damage to Attacks against you" }, } }, + ["AddedColdDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks against you", statOrder = { 1394 }, level = 82, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (20-24) to (38-44) Cold Damage to Attacks against you" }, } }, + ["AddedLightningDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks against you", statOrder = { 1405 }, level = 82, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (4-8) to (71-76) Lightning Damage to Attacks against you" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Hits against you gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1954 }, level = 63, group = "SelfPhysAsExtraFireTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [248982637] = { "Hits against you gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["AddedColdDamagePerFrenzyChargeEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge", statOrder = { 4308 }, level = 63, group = "SelfColdDamageTakenPerFrenzy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [178386603] = { "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge" }, } }, + ["ChanceToRecoverManaOnSkillUseEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "10% chance to lose 10% of Mana when you use a Skill", statOrder = { 3510 }, level = 63, group = "ChanceToLoseManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2858930612] = { "10% chance to lose 10% of Mana when you use a Skill" }, } }, + ["DamageCannotBeReflectedPercentEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 60% increased Reflected Damage", statOrder = { 10026 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 60% increased Reflected Damage" }, } }, + ["PhysicalDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched by Enemy as Life", statOrder = { 1690 }, level = 60, group = "EnemyPhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3423022686] = { "0.4% of Physical Damage Leeched by Enemy as Life" }, } }, + ["FireDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1694 }, level = 60, group = "EnemyFireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [45548764] = { "0.4% of Fire Damage Leeched by Enemy as Life" }, } }, + ["ColdDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1699 }, level = 60, group = "EnemyColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3271464175] = { "0.4% of Cold Damage Leeched by Enemy as Life" }, } }, + ["LightningDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1703 }, level = 60, group = "EnemyLightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3925004212] = { "0.4% of Lightning Damage Leeched by Enemy as Life" }, } }, + ["ChaosDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched by Enemy as Life", statOrder = { 1706 }, level = 60, group = "EnemyChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [334180828] = { "0.4% of Chaos Damage Leeched by Enemy as Life" }, } }, + ["AddedManaRegenerationDelveInverted"] = { type = "Suffix", affix = "of the Underground", "Lose (3-5) Mana per second", statOrder = { 1606 }, level = 60, group = "ManaDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [838272676] = { "Lose (3-5) Mana per second" }, } }, + ["WeaponSpellDamageTriggerSkillOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(70-74)% increased Spell Damage", statOrder = { 853, 853.1, 1246 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } }, + ["WeaponSpellDamageTriggerSkillOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(123-130)% increased Spell Damage", statOrder = { 853, 853.1, 1246 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(123-130)% increased Spell Damage" }, [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } }, + ["MagicSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels", statOrder = { 8136 }, level = 50, group = "MagicSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1938324031] = { "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels" }, } }, + ["MagicMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels", statOrder = { 8135 }, level = 50, group = "MagicMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3949536301] = { "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels" }, } }, + ["MagicHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels", statOrder = { 8134 }, level = 50, group = "MagicHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [654501336] = { "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels" }, } }, + ["MagicGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels", statOrder = { 8133 }, level = 50, group = "MagicGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2526952837] = { "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels" }, } }, + ["RareSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels", statOrder = { 8140 }, level = 50, group = "RareSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3524275808] = { "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels" }, } }, + ["RareMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels", statOrder = { 8139 }, level = 50, group = "RareMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1217940944] = { "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels" }, } }, + ["RareHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels", statOrder = { 8138 }, level = 50, group = "RareHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1337730278] = { "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels" }, } }, + ["RareGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels", statOrder = { 8137 }, level = 50, group = "RareGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1974290842] = { "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels" }, } }, + ["DeepwaterSwordAdditionalAttackProjectile"] = { type = "Suffix", affix = "of Phantasms", "Attacks fire an additional Projectile", statOrder = { 4232 }, level = 60, group = "DeepwaterSwordAdditionalAttackProjectile", weightKey = { "deepwater_sword", "default", }, weightVal = { 1250, 0 }, modTags = { }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, + ["DeepwaterSwordPhysAsFire"] = { type = "Prefix", affix = "Enflamed", "DNT Attacks with this Weapon gain 1% of Physical Damage as Extra Fire per 1% life reserved", statOrder = { 7613 }, level = 60, group = "DeepwaterSwordPhysAsFire", weightKey = { "deepwater_sword", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3024800067] = { "DNT Attacks with this Weapon gain 1% of Physical Damage as Extra Fire per 1% life reserved" }, } }, + ["DeepwaterSwordPhasingOnHit"] = { type = "Suffix", affix = "of Phasing", "Gain Phasing on Hit with this weapon", statOrder = { 7982 }, level = 60, group = "DeepwaterSwordPhasingOnHit", weightKey = { "deepwater_sword", "default", }, weightVal = { 3750, 0 }, modTags = { }, tradeHashes = { [1793331740] = { "Gain Phasing on Hit with this weapon" }, } }, + ["DeepwaterSwordSpiritStrike"] = { type = "Suffix", affix = "of Ghosts", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9309 }, level = 60, group = "DeepwaterSwordSpiritStrike", weightKey = { "deepwater_sword", "default", }, weightVal = { 3750, 0 }, modTags = { }, tradeHashes = { [1184277034] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, + ["DeepwaterSwordAlwaysHit"] = { type = "Suffix", affix = "of Unerring", "Always Hits Burning Enemies", statOrder = { 7960 }, level = 60, group = "DeepwaterSwordAlwaysHit", weightKey = { "deepwater_sword", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [270993809] = { "Always Hits Burning Enemies" }, } }, + ["DeepwaterSwordAngerReservation"] = { type = "Suffix", affix = "of Anger", "Anger has (40-60)% increased Mana Reservation Efficiency", statOrder = { 4731 }, level = 60, group = "DeepwaterSwordAngerReservation", weightKey = { "deepwater_sword", "default", }, weightVal = { 1250, 0 }, modTags = { }, tradeHashes = { [2549369799] = { "Anger has (40-60)% increased Mana Reservation Efficiency" }, } }, + ["DeepwaterSwordBanners"] = { type = "Suffix", affix = "of Banners", "You and Allies near your Banner have +1% to Damage over Time Multiplier per", "2 Valour consumed for that Banner", statOrder = { 5022, 5022.1 }, level = 60, group = "DeepwaterSwordBanners", weightKey = { "deepwater_sword", "default", }, weightVal = { 1250, 0 }, modTags = { }, tradeHashes = { [790453126] = { "You and Allies near your Banner have +1% to Damage over Time Multiplier per", "2 Valour consumed for that Banner" }, } }, + ["DeepwaterSwordCombustion"] = { type = "Prefix", affix = "Combusting", "Socketed Gems are Supported by Level 20 Combustion", "(70-100)% increased Burning Damage", statOrder = { 416, 1900 }, level = 60, group = "DeepwaterSwordCombustion", weightKey = { "deepwater_sword", "default", }, weightVal = { 3750, 0 }, modTags = { }, tradeHashes = { [1175385867] = { "(70-100)% increased Burning Damage" }, [961135393] = { "Socketed Gems are Supported by Level 20 Combustion" }, } }, + ["DeepwaterSwordFlammability"] = { type = "Suffix", affix = "of Curses", "Melee Strikes Curse Enemies with Flammability on Hit, ignoring Curse Limit", statOrder = { 6083 }, level = 60, group = "DeepwaterSwordFlammability", weightKey = { "deepwater_sword", "default", }, weightVal = { 3750, 0 }, modTags = { }, tradeHashes = { [3814785829] = { "Melee Strikes Curse Enemies with Flammability on Hit, ignoring Curse Limit" }, } }, + ["DeepwaterSwordMeleeDamageWhileBurning"] = { type = "Prefix", affix = "Soultorched", "(20-30)% more Melee Damage while Burning", statOrder = { 919 }, level = 60, group = "DeepwaterSwordMeleeDamageWhileBurning", weightKey = { "deepwater_sword", "default", }, weightVal = { 2500, 0 }, modTags = { }, tradeHashes = { [1353128245] = { "(20-30)% more Melee Damage while Burning" }, } }, + ["DeepwaterSwordGrantedSkillGhostCannons"] = { type = "Prefix", affix = "Ghostly Arms", "Trigger level 20 Ghostly Artillery when you Attack with this Weapon", statOrder = { 652 }, level = 60, group = "DeepwaterSwordGrantedSkillGhostCannons", weightKey = { "deepwater_sword", "default", }, weightVal = { 2500, 0 }, modTags = { }, tradeHashes = { [128830932] = { "" }, [1273709603] = { "Trigger level 20 Ghostly Artillery when you Attack with this Weapon" }, } }, } \ No newline at end of file diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua index 9bba56187e..1fadc760a8 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -2,250 +2,250 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Undiluted", "(41-46)% increased Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-46)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Thickened", "(47-52)% increased Recovery rate", statOrder = { 855 }, level = 21, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(47-52)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Viscous", "(53-58)% increased Recovery rate", statOrder = { 855 }, level = 41, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(53-58)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Condensed", "(59-64)% increased Recovery rate", statOrder = { 855 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(59-64)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Catalysed", "(65-70)% increased Recovery rate", statOrder = { 855 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(65-70)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Substantial", "(41-46)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-46)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Opaque", "(47-52)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 21, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(47-52)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(53-58)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 41, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(53-58)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Concentrated", "(59-64)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 61, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(59-64)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Saturated", "(65-70)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 81, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(65-70)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, - ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(101-106)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 6, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(101-106)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(107-112)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(107-112)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(113-118)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(113-118)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(119-124)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(119-124)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(125-130)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(125-130)% more Recovery if used while on Low Life" }, } }, - ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Startled", "(27-30)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 9, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(27-30)% reduced Amount Recovered" }, } }, - ["FlaskInstantRecoveryOnLowLife2"] = { type = "Prefix", affix = "Frightened", "(23-26)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 27, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(23-26)% reduced Amount Recovered" }, } }, - ["FlaskInstantRecoveryOnLowLife3"] = { type = "Prefix", affix = "Alarmed", "(19-22)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 45, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(19-22)% reduced Amount Recovered" }, } }, - ["FlaskInstantRecoveryOnLowLife4"] = { type = "Prefix", affix = "Terrified", "(15-18)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 63, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(15-18)% reduced Amount Recovered" }, } }, - ["FlaskInstantRecoveryOnLowLife5__"] = { type = "Prefix", affix = "Panicked", "(11-14)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 81, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(11-14)% reduced Amount Recovered" }, } }, - ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(52-55)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(52-55)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, - ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Ebullient", "(48-51)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 22, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(48-51)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, - ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Effusive", "(44-47)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 41, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(44-47)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, - ["FlaskPartialInstantRecovery4"] = { type = "Prefix", affix = "Effervescent", "(40-43)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 60, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(40-43)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, - ["FlaskPartialInstantRecovery5_"] = { type = "Prefix", affix = "Bubbling", "(36-39)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 79, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(36-39)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, - ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrder = { 854, 866 }, level = 7, group = "FlaskFullInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "66% reduced Amount Recovered" }, } }, - ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(41-46)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(41-46)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(47-52)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(47-52)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(53-58)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(53-58)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(59-64)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(59-64)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(65-70)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(65-70)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(35-39)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(35-39)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(40-44)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(40-44)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(46-50)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(46-50)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(51-55)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(51-55)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(56-60)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(56-60)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, - ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 902, 902.1 }, level = 4, group = "FlaskDispellsChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3570046771] = { "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen" }, } }, - ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 904, 904.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [2695527599] = { "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", statOrder = { 900, 900.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3233646242] = { "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood" }, } }, - ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 910 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [1823903967] = { "Grants Immunity to Shock for 4 seconds if used while Shocked" }, } }, - ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 837 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(16-19) to Maximum Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 837 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(20-23) to Maximum Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(24-27) to Maximum Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 837 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(28-31) to Maximum Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 837 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(32-35) to Maximum Charges" }, } }, - ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 845 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(16-20)% increased Charge Recovery" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 845 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(21-25)% increased Charge Recovery" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 845 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(26-30)% increased Charge Recovery" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 845 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-45)% increased Charge Recovery" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 845 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(46-50)% increased Charge Recovery" }, } }, - ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(37-42)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(43-48)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(49-54)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-60)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(61-66)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, - ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 936 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(41-45)% increased Armour during Effect" }, } }, - ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 936 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(46-50)% increased Armour during Effect" }, } }, - ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 936 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(51-55)% increased Armour during Effect" }, } }, - ["FlaskBuffArmourWhileHealing4"] = { type = "Suffix", affix = "of the Armadillo", "(56-60)% increased Armour during Effect", statOrder = { 936 }, level = 84, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(56-60)% increased Armour during Effect" }, } }, - ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of the Gazelle", "(41-45)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 6, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(41-45)% increased Evasion Rating during Effect" }, } }, - ["FlaskBuffEvasionWhileHealing2"] = { type = "Suffix", affix = "of the Antelope", "(46-50)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 32, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(46-50)% increased Evasion Rating during Effect" }, } }, - ["FlaskBuffEvasionWhileHealing3_"] = { type = "Suffix", affix = "of the Ibex", "(51-55)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 58, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(51-55)% increased Evasion Rating during Effect" }, } }, - ["FlaskBuffEvasionWhileHealing4"] = { type = "Suffix", affix = "of the Impala", "(56-60)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 84, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(56-60)% increased Evasion Rating during Effect" }, } }, - ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of the Hare", "(6-8)% increased Movement Speed during Effect", statOrder = { 946 }, level = 5, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(6-8)% increased Movement Speed during Effect" }, } }, - ["FlaskBuffMovementSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Lynx", "(9-11)% increased Movement Speed during Effect", statOrder = { 946 }, level = 65, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(9-11)% increased Movement Speed during Effect" }, } }, - ["FlaskBuffMovementSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Cheetah", "(12-14)% increased Movement Speed during Effect", statOrder = { 946 }, level = 85, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(12-14)% increased Movement Speed during Effect" }, } }, - ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Stiffness", "(51-56)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 1, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(51-56)% increased Block and Stun Recovery during Effect" }, } }, - ["FlaskBuffStunRecoveryWhileHealing2"] = { type = "Suffix", affix = "of Bracing", "(57-62)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 19, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(57-62)% increased Block and Stun Recovery during Effect" }, } }, - ["FlaskBuffStunRecoveryWhileHealing3"] = { type = "Suffix", affix = "of Ballast", "(63-68)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 37, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(63-68)% increased Block and Stun Recovery during Effect" }, } }, - ["FlaskBuffStunRecoveryWhileHealing4"] = { type = "Suffix", affix = "of Counterpoise", "(69-74)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 55, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(69-74)% increased Block and Stun Recovery during Effect" }, } }, - ["FlaskBuffStunRecoveryWhileHealing5"] = { type = "Suffix", affix = "of Stabilisation", "(75-80)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 73, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(75-80)% increased Block and Stun Recovery during Effect" }, } }, - ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of the Crystal", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 1, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(12-14)% additional Elemental Resistances during Effect" }, } }, - ["FlaskBuffResistancesWhileHealing2"] = { type = "Suffix", affix = "of the Prism", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 21, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(12-14)% additional Elemental Resistances during Effect" }, } }, - ["FlaskBuffResistancesWhileHealing3"] = { type = "Suffix", affix = "of the Kaleidoscope", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 41, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(15-17)% additional Elemental Resistances during Effect" }, } }, - ["FlaskBuffResistancesWhileHealing4"] = { type = "Suffix", affix = "of Variegation", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 61, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(15-17)% additional Elemental Resistances during Effect" }, } }, - ["FlaskBuffResistancesWhileHealing5_"] = { type = "Suffix", affix = "of the Rainbow", "(18-20)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 81, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(18-20)% additional Elemental Resistances during Effect" }, } }, - ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 949 }, level = 10, group = "FlaskBuffLifeLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, tradeHashes = { [2146299369] = { "2% of Physical Attack Damage Leeched as Life during Effect" }, } }, - ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 952 }, level = 10, group = "FlaskBuffLifeLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, tradeHashes = { [3111255591] = { "0.4% of Physical Attack Damage Leeched as Life during Effect" }, } }, - ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 954 }, level = 12, group = "FlaskBuffManaLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, tradeHashes = { [374891408] = { "0.4% of Physical Attack Damage Leeched as Mana during Effect" }, } }, - ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Effect", statOrder = { 955 }, level = 9, group = "FlaskBuffKnockbackWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack" }, tradeHashes = { [251342217] = { "Adds Knockback to Melee Attacks during Effect" }, } }, - ["FlaskBuffWardWhileHealing1"] = { type = "Suffix", affix = "of Runegleaming", "(19-21)% increased Ward during Effect", statOrder = { 939 }, level = 12, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(19-21)% increased Ward during Effect" }, } }, - ["FlaskBuffWardWhileHealing2_"] = { type = "Suffix", affix = "of Runeshining", "(22-24)% increased Ward during Effect", statOrder = { 939 }, level = 26, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(22-24)% increased Ward during Effect" }, } }, - ["FlaskBuffWardWhileHealing3"] = { type = "Suffix", affix = "of Runeflaring", "(25-27)% increased Ward during Effect", statOrder = { 939 }, level = 52, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(25-27)% increased Ward during Effect" }, } }, - ["FlaskBuffWardWhileHealing4"] = { type = "Suffix", affix = "of Runeblazing", "(28-30)% increased Ward during Effect", statOrder = { 939 }, level = 78, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(28-30)% increased Ward during Effect" }, } }, - ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of the Novice", "Grants (100-119)% of Life Recovery to Minions", statOrder = { 850 }, level = 10, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (100-119)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions2"] = { type = "Suffix", affix = "of the Acolyte", "Grants (120-139)% of Life Recovery to Minions", statOrder = { 850 }, level = 28, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (120-139)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions3"] = { type = "Suffix", affix = "of the Summoner", "Grants (140-159)% of Life Recovery to Minions", statOrder = { 850 }, level = 46, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (140-159)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions4____"] = { type = "Suffix", affix = "of the Conjurer", "Grants (160-179)% of Life Recovery to Minions", statOrder = { 850 }, level = 64, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (160-179)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions5"] = { type = "Suffix", affix = "of the Necromancer", "Grants (180-200)% of Life Recovery to Minions", statOrder = { 850 }, level = 82, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (180-200)% of Life Recovery to Minions" }, } }, - ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrder = { 841 }, level = 8, group = "FlaskFullRechargeOnCrit", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2961372685] = { "Recharges 1 Charge when you deal a Critical Strike" }, } }, - ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Medic's", "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 8, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChanceRechargeOnCrit2"] = { type = "Prefix", affix = "Physician's", "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 26, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChanceRechargeOnCrit3___"] = { type = "Prefix", affix = "Doctor's", "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 44, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChanceRechargeOnCrit4"] = { type = "Prefix", affix = "Specialist's", "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 62, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 844 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3662336899] = { "Recharges 5 Charges when you take a Critical Strike" }, } }, - ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 908 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [3596333054] = { "Grants Immunity to Poison for 4 seconds if used while Poisoned" }, } }, - ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(33-38)% reduced Duration" }, } }, - ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(28-32)% reduced Duration" }, } }, - ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(23-27)% reduced Duration" }, } }, - ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 846 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(14-16)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 846 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(17-19)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 846 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(20-22)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 846 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(23-25)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 846 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(26-28)% reduced Charges per use" }, } }, - ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 857 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(16-20)% increased Duration" }, } }, - ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 857 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(21-25)% increased Duration" }, } }, - ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 857 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(26-30)% increased Duration" }, } }, - ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 857 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(31-35)% increased Duration" }, } }, - ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 857 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(36-40)% increased Duration" }, } }, - ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 840 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } }, - ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 840 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } }, - ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } }, - ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } }, - ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 3 Charges when you are Hit by an Enemy" }, } }, - ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 846, 854 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(21-26)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 846, 854 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(27-32)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 846, 854 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(33-38)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 846, 854 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(39-44)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 846, 854 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(45-50)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, - ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 854, 865 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [4204954479] = { "Mana Recovery occurs instantly at the end of Effect" }, [700317374] = { "66% increased Amount Recovered" }, } }, - ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 854, 864, 864.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [700317374] = { "66% reduced Amount Recovered" }, [156096868] = { "" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue" }, } }, - ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.4% of Attack Damage Leeched as Life during Effect" }, } }, - ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.5% of Attack Damage Leeched as Life during Effect" }, } }, - ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.6% of Attack Damage Leeched as Life during Effect" }, } }, - ["FlaskBuffAttackLifeLeechWhileHealing4"] = { type = "Suffix", affix = "of Butchery", "0.7% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 60, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.7% of Attack Damage Leeched as Life during Effect" }, } }, - ["FlaskBuffAttackLifeLeechWhileHealing5"] = { type = "Suffix", affix = "of Bloodletting", "0.8% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 80, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.8% of Attack Damage Leeched as Life during Effect" }, } }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Diverting", "0.4% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 10, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.4% of Spell Damage Leeched as Energy Shield during Effect" }, } }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing2_"] = { type = "Suffix", affix = "of Depletion", "0.5% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 20, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.5% of Spell Damage Leeched as Energy Shield during Effect" }, } }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing3_____"] = { type = "Suffix", affix = "of Tapping", "0.6% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 40, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.6% of Spell Damage Leeched as Energy Shield during Effect" }, } }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing4"] = { type = "Suffix", affix = "of Siphoning", "0.7% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 60, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.7% of Spell Damage Leeched as Energy Shield during Effect" }, } }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing5"] = { type = "Suffix", affix = "of Draining", "0.8% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 80, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.8% of Spell Damage Leeched as Energy Shield during Effect" }, } }, - ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Falcon", "(9-11)% increased Attack Speed during Effect", statOrder = { 944 }, level = 12, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(9-11)% increased Attack Speed during Effect" }, } }, - ["FlaskBuffAttackSpeedWhileHealing2_____"] = { type = "Suffix", affix = "of the Eagle", "(12-14)% increased Attack Speed during Effect", statOrder = { 944 }, level = 62, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(12-14)% increased Attack Speed during Effect" }, } }, - ["FlaskBuffAttackSpeedWhileHealing3_"] = { type = "Suffix", affix = "of the Dove", "(15-17)% increased Attack Speed during Effect", statOrder = { 944 }, level = 82, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(15-17)% increased Attack Speed during Effect" }, } }, - ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Albatross", "(9-11)% increased Cast Speed during Effect", statOrder = { 945 }, level = 12, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(9-11)% increased Cast Speed during Effect" }, } }, - ["FlaskBuffCastSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Hummingbird", "(12-14)% increased Cast Speed during Effect", statOrder = { 945 }, level = 62, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(12-14)% increased Cast Speed during Effect" }, } }, - ["FlaskBuffCastSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Horsefly", "(15-17)% increased Cast Speed during Effect", statOrder = { 945 }, level = 82, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(15-17)% increased Cast Speed during Effect" }, } }, - ["FlaskBuffAccuracyWhileHealing1__"] = { type = "Suffix", affix = "of the Monkey", "(15-25)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 12, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(15-25)% increased Accuracy Rating during Effect" }, } }, - ["FlaskBuffAccuracyWhileHealing2"] = { type = "Suffix", affix = "of the Raccoon", "(26-35)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 42, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(26-35)% increased Accuracy Rating during Effect" }, } }, - ["FlaskBuffAccuracyWhileHealing3"] = { type = "Suffix", affix = "of the Crow", "(35-45)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 72, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(35-45)% increased Accuracy Rating during Effect" }, } }, - ["FlaskBuffCriticalChanceWhileHealing1_"] = { type = "Suffix", affix = "of Stinging", "(26-31)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 18, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(26-31)% increased Critical Strike Chance during Effect" }, } }, - ["FlaskBuffCriticalChanceWhileHealing2_"] = { type = "Suffix", affix = "of Piercing", "(32-37)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 34, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(32-37)% increased Critical Strike Chance during Effect" }, } }, - ["FlaskBuffCriticalChanceWhileHealing3"] = { type = "Suffix", affix = "of Rupturing", "(38-43)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 50, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(38-43)% increased Critical Strike Chance during Effect" }, } }, - ["FlaskBuffCriticalChanceWhileHealing4__"] = { type = "Suffix", affix = "of Penetrating", "(44-49)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 66, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(44-49)% increased Critical Strike Chance during Effect" }, } }, - ["FlaskBuffCriticalChanceWhileHealing5"] = { type = "Suffix", affix = "of Incision", "(50-55)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 82, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(50-55)% increased Critical Strike Chance during Effect" }, } }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Foisting", "(19-22)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 12, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(19-22)% chance to Freeze, Shock and Ignite during Effect" }, } }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing2____"] = { type = "Suffix", affix = "of Imposing", "(23-26)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 32, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(23-26)% chance to Freeze, Shock and Ignite during Effect" }, } }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing3"] = { type = "Suffix", affix = "of Wreaking", "(27-30)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 52, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(27-30)% chance to Freeze, Shock and Ignite during Effect" }, } }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing4_"] = { type = "Suffix", affix = "of Infliction", "(31-34)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 72, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(31-34)% chance to Freeze, Shock and Ignite during Effect" }, } }, - ["FlaskBuffAvoidStunWhileHealing1_"] = { type = "Suffix", affix = "of Composure", "(31-35)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 12, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(31-35)% Chance to Avoid being Stunned during Effect" }, } }, - ["FlaskBuffAvoidStunWhileHealing2"] = { type = "Suffix", affix = "of Surefootedness", "(36-40)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 29, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(36-40)% Chance to Avoid being Stunned during Effect" }, } }, - ["FlaskBuffAvoidStunWhileHealing3"] = { type = "Suffix", affix = "of Persistence", "(41-45)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 46, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(41-45)% Chance to Avoid being Stunned during Effect" }, } }, - ["FlaskBuffAvoidStunWhileHealing4"] = { type = "Suffix", affix = "of Relentlessness", "(46-50)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 63, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(46-50)% Chance to Avoid being Stunned during Effect" }, } }, - ["FlaskBuffAvoidStunWhileHealing5"] = { type = "Suffix", affix = "of Tenaciousness", "(51-55)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 80, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(51-55)% Chance to Avoid being Stunned during Effect" }, } }, - ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of the Pupil", "(11-14)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(11-14)% reduced Mana Cost of Skills during Effect" }, } }, - ["FlaskBuffReducedManaCostWhileHealing2__"] = { type = "Suffix", affix = "of the Initiate", "(15-18)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 29, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(15-18)% reduced Mana Cost of Skills during Effect" }, } }, - ["FlaskBuffReducedManaCostWhileHealing3"] = { type = "Suffix", affix = "of the Mage", "(19-21)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 46, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(19-21)% reduced Mana Cost of Skills during Effect" }, } }, - ["FlaskBuffReducedManaCostWhileHealing4"] = { type = "Suffix", affix = "of the Arcanist", "(22-25)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 63, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(22-25)% reduced Mana Cost of Skills during Effect" }, } }, - ["FlaskBuffReducedManaCostWhileHealing5"] = { type = "Suffix", affix = "of the Sorcerer", "(26-29)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 80, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(26-29)% reduced Mana Cost of Skills during Effect" }, } }, - ["FlaskBuffChillFreezeDuration1"] = { type = "Suffix", affix = "of the Rabbit", "(36-41)% reduced Effect of Chill on you during Effect", "(36-41)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 4, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(36-41)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(36-41)% reduced Freeze Duration on you during Effect" }, } }, - ["FlaskBuffChillFreezeDuration2_"] = { type = "Suffix", affix = "of the Cat", "(42-47)% reduced Effect of Chill on you during Effect", "(42-47)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 23, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(42-47)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(42-47)% reduced Freeze Duration on you during Effect" }, } }, - ["FlaskBuffChillFreezeDuration3_"] = { type = "Suffix", affix = "of the Fox", "(48-52)% reduced Effect of Chill on you during Effect", "(48-52)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 42, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(48-52)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(48-52)% reduced Freeze Duration on you during Effect" }, } }, - ["FlaskBuffChillFreezeDuration4"] = { type = "Suffix", affix = "of the Sable", "(52-59)% reduced Effect of Chill on you during Effect", "(52-59)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 61, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(52-59)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(52-59)% reduced Freeze Duration on you during Effect" }, } }, - ["FlaskBuffChillFreezeDuration5"] = { type = "Suffix", affix = "of the Bear", "(60-65)% reduced Effect of Chill on you during Effect", "(60-65)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 80, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(60-65)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(60-65)% reduced Freeze Duration on you during Effect" }, } }, - ["FlaskBuffShockEffect1"] = { type = "Suffix", affix = "of the Plover", "(36-41)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 6, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(36-41)% reduced Effect of Shock on you during Effect" }, } }, - ["FlaskBuffShockEffect2"] = { type = "Suffix", affix = "of the Sandpiper", "(42-47)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 25, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(42-47)% reduced Effect of Shock on you during Effect" }, } }, - ["FlaskBuffShockEffect3___"] = { type = "Suffix", affix = "of the Cormorant", "(48-52)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 44, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(48-52)% reduced Effect of Shock on you during Effect" }, } }, - ["FlaskBuffShockEffect4"] = { type = "Suffix", affix = "of the Sanderling", "(52-59)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 63, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(52-59)% reduced Effect of Shock on you during Effect" }, } }, - ["FlaskBuffShockEffect5"] = { type = "Suffix", affix = "of the Heron", "(60-65)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 82, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(60-65)% reduced Effect of Shock on you during Effect" }, } }, - ["FlaskBuffCurseEffect1"] = { type = "Suffix", affix = "of the Petrel", "(36-41)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 8, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(36-41)% reduced Effect of Curses on you during Effect" }, } }, - ["FlaskBuffCurseEffect2"] = { type = "Suffix", affix = "of the Mockingbird", "(42-47)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 27, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(42-47)% reduced Effect of Curses on you during Effect" }, } }, - ["FlaskBuffCurseEffect3_"] = { type = "Suffix", affix = "of the Curlew", "(48-52)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 46, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(48-52)% reduced Effect of Curses on you during Effect" }, } }, - ["FlaskBuffCurseEffect4"] = { type = "Suffix", affix = "of the Kakapo", "(52-59)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 65, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(52-59)% reduced Effect of Curses on you during Effect" }, } }, - ["FlaskBuffCurseEffect5"] = { type = "Suffix", affix = "of the Owl", "(60-65)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 84, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(60-65)% reduced Effect of Curses on you during Effect" }, } }, - ["FlaskBuffBleedDuration1"] = { type = "Suffix", affix = "[UNUSED] Bleed duration 1", "(35-45)% reduced Bleeding Duration on you during Effect", statOrder = { 1003 }, level = 8, group = "FlaskBuffBleedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [1050147907] = { "(35-45)% reduced Bleeding Duration on you during Effect" }, } }, - ["FlaskBuffPoisonDuration1"] = { type = "Suffix", affix = "[UNUSED] Poison duration 1", "(35-45)% reduced Poison Duration on you during Effect", statOrder = { 1008 }, level = 16, group = "FlaskBuffPoisonDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [4151049654] = { "(35-45)% reduced Poison Duration on you during Effect" }, } }, - ["FlaskBuffIgniteDuration1_"] = { type = "Suffix", affix = "[UNUSED] Ignite duration 1", "(35-45)% reduced Ignite Duration on you during Effect", statOrder = { 1007 }, level = 6, group = "FlaskBuffIgniteDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [424810649] = { "(35-45)% reduced Ignite Duration on you during Effect" }, } }, - ["FlaskBuffAvoidChillFreeze1_"] = { type = "Suffix", affix = "of the Orca", "(31-35)% chance to Avoid being Chilled during Effect", "(31-35)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 4, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(31-35)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(31-35)% chance to Avoid being Chilled during Effect" }, } }, - ["FlaskBuffAvoidChillFreeze2"] = { type = "Suffix", affix = "of the Sea Lion", "(36-40)% chance to Avoid being Chilled during Effect", "(36-40)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 23, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(36-40)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(36-40)% chance to Avoid being Chilled during Effect" }, } }, - ["FlaskBuffAvoidChillFreeze3"] = { type = "Suffix", affix = "of the Narwhal", "(41-45)% chance to Avoid being Chilled during Effect", "(41-45)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 42, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(41-45)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(41-45)% chance to Avoid being Chilled during Effect" }, } }, - ["FlaskBuffAvoidChillFreeze4"] = { type = "Suffix", affix = "of the Beluga", "(46-50)% chance to Avoid being Chilled during Effect", "(46-50)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 61, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(46-50)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(46-50)% chance to Avoid being Chilled during Effect" }, } }, - ["FlaskBuffAvoidChillFreeze5"] = { type = "Suffix", affix = "of the Seal", "(51-55)% chance to Avoid being Chilled during Effect", "(51-55)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 80, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(51-55)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(51-55)% chance to Avoid being Chilled during Effect" }, } }, - ["FlaskBuffAvoidIgnite1"] = { type = "Suffix", affix = "of the Guppy", "(31-35)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 6, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(31-35)% chance to Avoid being Ignited during Effect" }, } }, - ["FlaskBuffAvoidIgnite2"] = { type = "Suffix", affix = "of the Goldfish", "(36-40)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 25, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(36-40)% chance to Avoid being Ignited during Effect" }, } }, - ["FlaskBuffAvoidIgnite3"] = { type = "Suffix", affix = "of the Carp", "(41-45)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 44, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(41-45)% chance to Avoid being Ignited during Effect" }, } }, - ["FlaskBuffAvoidIgnite4___"] = { type = "Suffix", affix = "of the Catfish", "(46-50)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 63, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(46-50)% chance to Avoid being Ignited during Effect" }, } }, - ["FlaskBuffAvoidIgnite5_"] = { type = "Suffix", affix = "of the Sunfish", "(51-55)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 82, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(51-55)% chance to Avoid being Ignited during Effect" }, } }, - ["FlaskBuffAvoidShock1"] = { type = "Suffix", affix = "of Tree Moss", "(31-35)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 6, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(31-35)% chance to Avoid being Shocked during Effect" }, } }, - ["FlaskBuffAvoidShock2_"] = { type = "Suffix", affix = "of Turf Moss", "(36-40)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 25, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(36-40)% chance to Avoid being Shocked during Effect" }, } }, - ["FlaskBuffAvoidShock3"] = { type = "Suffix", affix = "of Tooth Moss", "(41-45)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 44, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(41-45)% chance to Avoid being Shocked during Effect" }, } }, - ["FlaskBuffAvoidShock4_____"] = { type = "Suffix", affix = "of Plume Moss", "(46-50)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 63, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(46-50)% chance to Avoid being Shocked during Effect" }, } }, - ["FlaskBuffAvoidShock5"] = { type = "Suffix", affix = "of Bog Moss", "(51-55)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 82, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(51-55)% chance to Avoid being Shocked during Effect" }, } }, - ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 897 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, - ["LocalManaFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 30, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana" }, } }, - ["LocalManaFlaskHinderNearbyEnemies2"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 48, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana" }, } }, - ["LocalManaFlaskHinderNearbyEnemies3"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 66, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana" }, } }, - ["LocalManaFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 84, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana" }, } }, - ["LocalLifeFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 30, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life" }, } }, - ["LocalLifeFlaskHinderNearbyEnemies2_"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 48, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life" }, } }, - ["LocalLifeFlaskHinderNearbyEnemies3_"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 66, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life" }, } }, - ["LocalLifeFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 84, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life" }, } }, - ["LocalFlaskImmuneToMaimAndHinder1"] = { type = "Suffix", affix = "of Movement", "Grants Immunity to Hinder for (6-8) seconds if used while Hindered", "Grants Immunity to Maim for (6-8) seconds if used while Maimed", statOrder = { 906, 907 }, level = 16, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (6-8) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (6-8) seconds if used while Maimed" }, } }, - ["LocalFlaskImmuneToMaimAndHinder2"] = { type = "Suffix", affix = "of Motion", "Grants Immunity to Hinder for (9-11) seconds if used while Hindered", "Grants Immunity to Maim for (9-11) seconds if used while Maimed", statOrder = { 906, 907 }, level = 38, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (9-11) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (9-11) seconds if used while Maimed" }, } }, - ["LocalFlaskImmuneToMaimAndHinder3"] = { type = "Suffix", affix = "of Freedom", "Grants Immunity to Hinder for (12-14) seconds if used while Hindered", "Grants Immunity to Maim for (12-14) seconds if used while Maimed", statOrder = { 906, 907 }, level = 60, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (12-14) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (12-14) seconds if used while Maimed" }, } }, - ["LocalFlaskImmuneToMaimAndHinder4"] = { type = "Suffix", affix = "of Liberation", "Grants Immunity to Hinder for (15-17) seconds if used while Hindered", "Grants Immunity to Maim for (15-17) seconds if used while Maimed", statOrder = { 906, 907 }, level = 82, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (15-17) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (15-17) seconds if used while Maimed" }, } }, - ["LocalLifeFlaskAdditionalLifeRecovery1"] = { type = "Suffix", affix = "of Abundance", "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 25, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, - ["LocalLifeFlaskAdditionalLifeRecovery2__"] = { type = "Suffix", affix = "of Plenty", "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 39, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, - ["LocalLifeFlaskAdditionalLifeRecovery3"] = { type = "Suffix", affix = "of Bounty", "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 53, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, - ["LocalLifeFlaskAdditionalLifeRecovery4"] = { type = "Suffix", affix = "of Incessance", "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 67, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, - ["LocalLifeFlaskAdditionalLifeRecovery5_"] = { type = "Suffix", affix = "of Perenniality", "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 81, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, - ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } }, - ["FlaskBleedCorruptingBloodImmunity2"] = { type = "Suffix", affix = "of Alleviation", "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 32, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood" }, } }, - ["FlaskBleedCorruptingBloodImmunity3______"] = { type = "Suffix", affix = "of Allaying", "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 56, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood" }, } }, - ["FlaskBleedCorruptingBloodImmunity4_"] = { type = "Suffix", affix = "of Assuaging", "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 80, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood" }, } }, - ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 911 }, level = 6, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } }, - ["FlaskShockImmunity2"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for (9-11) seconds if used while Shocked", statOrder = { 911 }, level = 30, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (9-11) seconds if used while Shocked" }, } }, - ["FlaskShockImmunity3"] = { type = "Suffix", affix = "of Insulation", "Grants Immunity to Shock for (12-14) seconds if used while Shocked", statOrder = { 911 }, level = 54, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (12-14) seconds if used while Shocked" }, } }, - ["FlaskShockImmunity4_"] = { type = "Suffix", affix = "of the Dielectric", "Grants Immunity to Shock for (15-17) seconds if used while Shocked", statOrder = { 911 }, level = 78, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (15-17) seconds if used while Shocked" }, } }, - ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } }, - ["FlaskChillFreezeImmunity2"] = { type = "Suffix", affix = "of Thermodynamics", "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 28, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen" }, } }, - ["FlaskChillFreezeImmunity3"] = { type = "Suffix", affix = "of Entropy", "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 52, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen" }, } }, - ["FlaskChillFreezeImmunity4"] = { type = "Suffix", affix = "of Thawing", "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 76, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen" }, } }, - ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskIgniteImmunity2_"] = { type = "Suffix", affix = "of Quashing", "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 30, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskIgniteImmunity3_"] = { type = "Suffix", affix = "of Quelling", "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 54, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskIgniteImmunity4"] = { type = "Suffix", affix = "of Quenching", "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 78, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 909 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, - ["FlaskPoisonImmunity2"] = { type = "Suffix", affix = "of the Remedy", "Grants Immunity to Poison for (9-11) seconds if used while Poisoned", statOrder = { 909 }, level = 38, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (9-11) seconds if used while Poisoned" }, } }, - ["FlaskPoisonImmunity3"] = { type = "Suffix", affix = "of the Cure", "Grants Immunity to Poison for (12-14) seconds if used while Poisoned", statOrder = { 909 }, level = 60, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (12-14) seconds if used while Poisoned" }, } }, - ["FlaskPoisonImmunity4"] = { type = "Suffix", affix = "of the Antidote", "Grants Immunity to Poison for (15-17) seconds if used while Poisoned", statOrder = { 909 }, level = 82, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (15-17) seconds if used while Poisoned" }, } }, - ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, - ["FlaskPoisonImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Hedgehog", "(40-44)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 46, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-44)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, - ["FlaskPoisonImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Opossum", "(35-39)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 76, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(35-39)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, - ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskShockImmunityDuringEffect2___"] = { type = "Suffix", affix = "of the Moray", "(40-44)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 40, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(40-44)% less Duration" }, } }, - ["FlaskShockImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Eel", "(35-39)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 74, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(35-39)% less Duration" }, } }, - ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskFreezeAndChillImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Walrus", "(40-44)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 38, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(40-44)% less Duration" }, } }, - ["FlaskFreezeAndChillImmunityDuringEffect3__"] = { type = "Suffix", affix = "of the Penguin", "(35-39)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 72, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(35-39)% less Duration" }, } }, - ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskIgniteImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Mussel", "(40-44)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 40, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(40-44)% less Duration" }, } }, - ["FlaskIgniteImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Starfish", "(35-39)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 74, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(35-39)% less Duration" }, } }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect2_"] = { type = "Suffix", affix = "of the Skink", "(40-44)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 42, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-44)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect3___"] = { type = "Suffix", affix = "of the Iguana", "(35-39)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 76, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(35-39)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, + ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Undiluted", "(41-46)% increased Recovery rate", statOrder = { 876 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-46)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Thickened", "(47-52)% increased Recovery rate", statOrder = { 876 }, level = 21, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(47-52)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Viscous", "(53-58)% increased Recovery rate", statOrder = { 876 }, level = 41, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(53-58)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Condensed", "(59-64)% increased Recovery rate", statOrder = { 876 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(59-64)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Catalysed", "(65-70)% increased Recovery rate", statOrder = { 876 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(65-70)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Substantial", "(41-46)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 875, 876 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-46)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Opaque", "(47-52)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 875, 876 }, level = 21, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(47-52)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(53-58)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 875, 876 }, level = 41, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(53-58)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Concentrated", "(59-64)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 875, 876 }, level = 61, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(59-64)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Saturated", "(65-70)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 875, 876 }, level = 81, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(65-70)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } }, + ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(101-106)% more Recovery if used while on Low Life", statOrder = { 882 }, level = 6, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(101-106)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(107-112)% more Recovery if used while on Low Life", statOrder = { 882 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(107-112)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(113-118)% more Recovery if used while on Low Life", statOrder = { 882 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(113-118)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(119-124)% more Recovery if used while on Low Life", statOrder = { 882 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(119-124)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(125-130)% more Recovery if used while on Low Life", statOrder = { 882 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(125-130)% more Recovery if used while on Low Life" }, } }, + ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Startled", "(27-30)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 875, 883 }, level = 9, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(27-30)% reduced Amount Recovered" }, } }, + ["FlaskInstantRecoveryOnLowLife2"] = { type = "Prefix", affix = "Frightened", "(23-26)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 875, 883 }, level = 27, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(23-26)% reduced Amount Recovered" }, } }, + ["FlaskInstantRecoveryOnLowLife3"] = { type = "Prefix", affix = "Alarmed", "(19-22)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 875, 883 }, level = 45, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(19-22)% reduced Amount Recovered" }, } }, + ["FlaskInstantRecoveryOnLowLife4"] = { type = "Prefix", affix = "Terrified", "(15-18)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 875, 883 }, level = 63, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(15-18)% reduced Amount Recovered" }, } }, + ["FlaskInstantRecoveryOnLowLife5__"] = { type = "Prefix", affix = "Panicked", "(11-14)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 875, 883 }, level = 81, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(11-14)% reduced Amount Recovered" }, } }, + ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(52-55)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 875, 876, 884 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(52-55)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, + ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Ebullient", "(48-51)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 875, 876, 884 }, level = 22, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(48-51)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, + ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Effusive", "(44-47)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 875, 876, 884 }, level = 41, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(44-47)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, + ["FlaskPartialInstantRecovery4"] = { type = "Prefix", affix = "Effervescent", "(40-43)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 875, 876, 884 }, level = 60, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(40-43)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, + ["FlaskPartialInstantRecovery5_"] = { type = "Prefix", affix = "Bubbling", "(36-39)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 875, 876, 884 }, level = 79, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(36-39)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } }, + ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrder = { 875, 889 }, level = 7, group = "FlaskFullInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "66% reduced Amount Recovered" }, } }, + ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(41-46)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 874, 892 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(41-46)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(47-52)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 874, 892 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(47-52)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(53-58)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 874, 892 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(53-58)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(59-64)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 874, 892 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(59-64)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(65-70)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 874, 892 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(65-70)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(35-39)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 870, 894 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(35-39)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(40-44)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 870, 894 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(40-44)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(46-50)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 870, 894 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(46-50)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(51-55)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 870, 894 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(51-55)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(56-60)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 870, 894 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(56-60)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } }, + ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 926, 926.1 }, level = 4, group = "FlaskDispellsChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3570046771] = { "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen" }, } }, + ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 928, 928.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [2695527599] = { "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", statOrder = { 924, 924.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3233646242] = { "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood" }, } }, + ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 934 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [1823903967] = { "Grants Immunity to Shock for 4 seconds if used while Shocked" }, } }, + ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 858 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(16-19) to Maximum Charges" }, } }, + ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 858 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(20-23) to Maximum Charges" }, } }, + ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 858 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(24-27) to Maximum Charges" }, } }, + ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 858 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(28-31) to Maximum Charges" }, } }, + ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 858 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(32-35) to Maximum Charges" }, } }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 866 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(16-20)% increased Charge Recovery" }, } }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 866 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(21-25)% increased Charge Recovery" }, } }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 866 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(26-30)% increased Charge Recovery" }, } }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 866 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-45)% increased Charge Recovery" }, } }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 866 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(46-50)% increased Charge Recovery" }, } }, + ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 866, 959 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(37-42)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 866, 959 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(43-48)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 866, 959 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(49-54)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 866, 959 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-60)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, + ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 866, 959 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(61-66)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } }, + ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 960 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(41-45)% increased Armour during Effect" }, } }, + ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 960 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(46-50)% increased Armour during Effect" }, } }, + ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 960 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(51-55)% increased Armour during Effect" }, } }, + ["FlaskBuffArmourWhileHealing4"] = { type = "Suffix", affix = "of the Armadillo", "(56-60)% increased Armour during Effect", statOrder = { 960 }, level = 84, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(56-60)% increased Armour during Effect" }, } }, + ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of the Gazelle", "(41-45)% increased Evasion Rating during Effect", statOrder = { 961 }, level = 6, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(41-45)% increased Evasion Rating during Effect" }, } }, + ["FlaskBuffEvasionWhileHealing2"] = { type = "Suffix", affix = "of the Antelope", "(46-50)% increased Evasion Rating during Effect", statOrder = { 961 }, level = 32, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(46-50)% increased Evasion Rating during Effect" }, } }, + ["FlaskBuffEvasionWhileHealing3_"] = { type = "Suffix", affix = "of the Ibex", "(51-55)% increased Evasion Rating during Effect", statOrder = { 961 }, level = 58, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(51-55)% increased Evasion Rating during Effect" }, } }, + ["FlaskBuffEvasionWhileHealing4"] = { type = "Suffix", affix = "of the Impala", "(56-60)% increased Evasion Rating during Effect", statOrder = { 961 }, level = 84, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(56-60)% increased Evasion Rating during Effect" }, } }, + ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of the Hare", "(6-8)% increased Movement Speed during Effect", statOrder = { 970 }, level = 5, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(6-8)% increased Movement Speed during Effect" }, } }, + ["FlaskBuffMovementSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Lynx", "(9-11)% increased Movement Speed during Effect", statOrder = { 970 }, level = 65, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(9-11)% increased Movement Speed during Effect" }, } }, + ["FlaskBuffMovementSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Cheetah", "(12-14)% increased Movement Speed during Effect", statOrder = { 970 }, level = 85, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(12-14)% increased Movement Speed during Effect" }, } }, + ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Stiffness", "(51-56)% increased Block and Stun Recovery during Effect", statOrder = { 971 }, level = 1, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(51-56)% increased Block and Stun Recovery during Effect" }, } }, + ["FlaskBuffStunRecoveryWhileHealing2"] = { type = "Suffix", affix = "of Bracing", "(57-62)% increased Block and Stun Recovery during Effect", statOrder = { 971 }, level = 19, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(57-62)% increased Block and Stun Recovery during Effect" }, } }, + ["FlaskBuffStunRecoveryWhileHealing3"] = { type = "Suffix", affix = "of Ballast", "(63-68)% increased Block and Stun Recovery during Effect", statOrder = { 971 }, level = 37, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(63-68)% increased Block and Stun Recovery during Effect" }, } }, + ["FlaskBuffStunRecoveryWhileHealing4"] = { type = "Suffix", affix = "of Counterpoise", "(69-74)% increased Block and Stun Recovery during Effect", statOrder = { 971 }, level = 55, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(69-74)% increased Block and Stun Recovery during Effect" }, } }, + ["FlaskBuffStunRecoveryWhileHealing5"] = { type = "Suffix", affix = "of Stabilisation", "(75-80)% increased Block and Stun Recovery during Effect", statOrder = { 971 }, level = 73, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(75-80)% increased Block and Stun Recovery during Effect" }, } }, + ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of the Crystal", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 972 }, level = 1, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(12-14)% additional Elemental Resistances during Effect" }, } }, + ["FlaskBuffResistancesWhileHealing2"] = { type = "Suffix", affix = "of the Prism", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 972 }, level = 21, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(12-14)% additional Elemental Resistances during Effect" }, } }, + ["FlaskBuffResistancesWhileHealing3"] = { type = "Suffix", affix = "of the Kaleidoscope", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 972 }, level = 41, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(15-17)% additional Elemental Resistances during Effect" }, } }, + ["FlaskBuffResistancesWhileHealing4"] = { type = "Suffix", affix = "of Variegation", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 972 }, level = 61, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(15-17)% additional Elemental Resistances during Effect" }, } }, + ["FlaskBuffResistancesWhileHealing5_"] = { type = "Suffix", affix = "of the Rainbow", "(18-20)% additional Elemental Resistances during Effect", statOrder = { 972 }, level = 81, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(18-20)% additional Elemental Resistances during Effect" }, } }, + ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 973 }, level = 10, group = "FlaskBuffLifeLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, tradeHashes = { [2146299369] = { "2% of Physical Attack Damage Leeched as Life during Effect" }, } }, + ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 976 }, level = 10, group = "FlaskBuffLifeLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, tradeHashes = { [3111255591] = { "0.4% of Physical Attack Damage Leeched as Life during Effect" }, } }, + ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 978 }, level = 12, group = "FlaskBuffManaLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, tradeHashes = { [374891408] = { "0.4% of Physical Attack Damage Leeched as Mana during Effect" }, } }, + ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Effect", statOrder = { 979 }, level = 9, group = "FlaskBuffKnockbackWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack" }, tradeHashes = { [251342217] = { "Adds Knockback to Melee Attacks during Effect" }, } }, + ["FlaskBuffWardWhileHealing1"] = { type = "Suffix", affix = "of Runegleaming", "(19-21)% increased Ward during Effect", statOrder = { 963 }, level = 12, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(19-21)% increased Ward during Effect" }, } }, + ["FlaskBuffWardWhileHealing2_"] = { type = "Suffix", affix = "of Runeshining", "(22-24)% increased Ward during Effect", statOrder = { 963 }, level = 26, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(22-24)% increased Ward during Effect" }, } }, + ["FlaskBuffWardWhileHealing3"] = { type = "Suffix", affix = "of Runeflaring", "(25-27)% increased Ward during Effect", statOrder = { 963 }, level = 52, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(25-27)% increased Ward during Effect" }, } }, + ["FlaskBuffWardWhileHealing4"] = { type = "Suffix", affix = "of Runeblazing", "(28-30)% increased Ward during Effect", statOrder = { 963 }, level = 78, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(28-30)% increased Ward during Effect" }, } }, + ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of the Novice", "Grants (100-119)% of Life Recovery to Minions", statOrder = { 871 }, level = 10, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (100-119)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions2"] = { type = "Suffix", affix = "of the Acolyte", "Grants (120-139)% of Life Recovery to Minions", statOrder = { 871 }, level = 28, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (120-139)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions3"] = { type = "Suffix", affix = "of the Summoner", "Grants (140-159)% of Life Recovery to Minions", statOrder = { 871 }, level = 46, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (140-159)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions4____"] = { type = "Suffix", affix = "of the Conjurer", "Grants (160-179)% of Life Recovery to Minions", statOrder = { 871 }, level = 64, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (160-179)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions5"] = { type = "Suffix", affix = "of the Necromancer", "Grants (180-200)% of Life Recovery to Minions", statOrder = { 871 }, level = 82, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (180-200)% of Life Recovery to Minions" }, } }, + ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrder = { 862 }, level = 8, group = "FlaskFullRechargeOnCrit", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2961372685] = { "Recharges 1 Charge when you deal a Critical Strike" }, } }, + ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Medic's", "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 863 }, level = 8, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskChanceRechargeOnCrit2"] = { type = "Prefix", affix = "Physician's", "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 863 }, level = 26, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskChanceRechargeOnCrit3___"] = { type = "Prefix", affix = "Doctor's", "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 863 }, level = 44, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskChanceRechargeOnCrit4"] = { type = "Prefix", affix = "Specialist's", "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 863 }, level = 62, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 863 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 865 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3662336899] = { "Recharges 5 Charges when you take a Critical Strike" }, } }, + ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 932 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [3596333054] = { "Grants Immunity to Poison for 4 seconds if used while Poisoned" }, } }, + ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 880, 959 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(33-38)% reduced Duration" }, } }, + ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 880, 959 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(28-32)% reduced Duration" }, } }, + ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 880, 959 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(23-27)% reduced Duration" }, } }, + ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 867 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(14-16)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 867 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(17-19)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 867 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(20-22)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 867 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(23-25)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 867 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(26-28)% reduced Charges per use" }, } }, + ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 880 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(16-20)% increased Duration" }, } }, + ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 880 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(21-25)% increased Duration" }, } }, + ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 880 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(26-30)% increased Duration" }, } }, + ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 880 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(31-35)% increased Duration" }, } }, + ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 880 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(36-40)% increased Duration" }, } }, + ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 861 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } }, + ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 861 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } }, + ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 861 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } }, + ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 861 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } }, + ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 861 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 3 Charges when you are Hit by an Enemy" }, } }, + ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 867, 875 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(21-26)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 867, 875 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(27-32)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 867, 875 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(33-38)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 867, 875 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(39-44)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 867, 875 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(45-50)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } }, + ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 875, 888 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [4204954479] = { "Mana Recovery occurs instantly at the end of Effect" }, [700317374] = { "66% increased Amount Recovered" }, } }, + ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 875, 887, 887.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [700317374] = { "66% reduced Amount Recovered" }, [156096868] = { "" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue" }, } }, + ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 975 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.4% of Attack Damage Leeched as Life during Effect" }, } }, + ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 975 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.5% of Attack Damage Leeched as Life during Effect" }, } }, + ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 975 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.6% of Attack Damage Leeched as Life during Effect" }, } }, + ["FlaskBuffAttackLifeLeechWhileHealing4"] = { type = "Suffix", affix = "of Butchery", "0.7% of Attack Damage Leeched as Life during Effect", statOrder = { 975 }, level = 60, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.7% of Attack Damage Leeched as Life during Effect" }, } }, + ["FlaskBuffAttackLifeLeechWhileHealing5"] = { type = "Suffix", affix = "of Bloodletting", "0.8% of Attack Damage Leeched as Life during Effect", statOrder = { 975 }, level = 80, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.8% of Attack Damage Leeched as Life during Effect" }, } }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Diverting", "0.4% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 974 }, level = 10, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.4% of Spell Damage Leeched as Energy Shield during Effect" }, } }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing2_"] = { type = "Suffix", affix = "of Depletion", "0.5% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 974 }, level = 20, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.5% of Spell Damage Leeched as Energy Shield during Effect" }, } }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing3_____"] = { type = "Suffix", affix = "of Tapping", "0.6% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 974 }, level = 40, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.6% of Spell Damage Leeched as Energy Shield during Effect" }, } }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing4"] = { type = "Suffix", affix = "of Siphoning", "0.7% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 974 }, level = 60, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.7% of Spell Damage Leeched as Energy Shield during Effect" }, } }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing5"] = { type = "Suffix", affix = "of Draining", "0.8% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 974 }, level = 80, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.8% of Spell Damage Leeched as Energy Shield during Effect" }, } }, + ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Falcon", "(9-11)% increased Attack Speed during Effect", statOrder = { 968 }, level = 12, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(9-11)% increased Attack Speed during Effect" }, } }, + ["FlaskBuffAttackSpeedWhileHealing2_____"] = { type = "Suffix", affix = "of the Eagle", "(12-14)% increased Attack Speed during Effect", statOrder = { 968 }, level = 62, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(12-14)% increased Attack Speed during Effect" }, } }, + ["FlaskBuffAttackSpeedWhileHealing3_"] = { type = "Suffix", affix = "of the Dove", "(15-17)% increased Attack Speed during Effect", statOrder = { 968 }, level = 82, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(15-17)% increased Attack Speed during Effect" }, } }, + ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Albatross", "(9-11)% increased Cast Speed during Effect", statOrder = { 969 }, level = 12, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(9-11)% increased Cast Speed during Effect" }, } }, + ["FlaskBuffCastSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Hummingbird", "(12-14)% increased Cast Speed during Effect", statOrder = { 969 }, level = 62, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(12-14)% increased Cast Speed during Effect" }, } }, + ["FlaskBuffCastSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Horsefly", "(15-17)% increased Cast Speed during Effect", statOrder = { 969 }, level = 82, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(15-17)% increased Cast Speed during Effect" }, } }, + ["FlaskBuffAccuracyWhileHealing1__"] = { type = "Suffix", affix = "of the Monkey", "(15-25)% increased Accuracy Rating during Effect", statOrder = { 967 }, level = 12, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(15-25)% increased Accuracy Rating during Effect" }, } }, + ["FlaskBuffAccuracyWhileHealing2"] = { type = "Suffix", affix = "of the Raccoon", "(26-35)% increased Accuracy Rating during Effect", statOrder = { 967 }, level = 42, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(26-35)% increased Accuracy Rating during Effect" }, } }, + ["FlaskBuffAccuracyWhileHealing3"] = { type = "Suffix", affix = "of the Crow", "(35-45)% increased Accuracy Rating during Effect", statOrder = { 967 }, level = 72, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(35-45)% increased Accuracy Rating during Effect" }, } }, + ["FlaskBuffCriticalChanceWhileHealing1_"] = { type = "Suffix", affix = "of Stinging", "(26-31)% increased Critical Strike Chance during Effect", statOrder = { 1000 }, level = 18, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(26-31)% increased Critical Strike Chance during Effect" }, } }, + ["FlaskBuffCriticalChanceWhileHealing2_"] = { type = "Suffix", affix = "of Piercing", "(32-37)% increased Critical Strike Chance during Effect", statOrder = { 1000 }, level = 34, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(32-37)% increased Critical Strike Chance during Effect" }, } }, + ["FlaskBuffCriticalChanceWhileHealing3"] = { type = "Suffix", affix = "of Rupturing", "(38-43)% increased Critical Strike Chance during Effect", statOrder = { 1000 }, level = 50, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(38-43)% increased Critical Strike Chance during Effect" }, } }, + ["FlaskBuffCriticalChanceWhileHealing4__"] = { type = "Suffix", affix = "of Penetrating", "(44-49)% increased Critical Strike Chance during Effect", statOrder = { 1000 }, level = 66, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(44-49)% increased Critical Strike Chance during Effect" }, } }, + ["FlaskBuffCriticalChanceWhileHealing5"] = { type = "Suffix", affix = "of Incision", "(50-55)% increased Critical Strike Chance during Effect", statOrder = { 1000 }, level = 82, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(50-55)% increased Critical Strike Chance during Effect" }, } }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Foisting", "(19-22)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 998 }, level = 12, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(19-22)% chance to Freeze, Shock and Ignite during Effect" }, } }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing2____"] = { type = "Suffix", affix = "of Imposing", "(23-26)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 998 }, level = 32, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(23-26)% chance to Freeze, Shock and Ignite during Effect" }, } }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing3"] = { type = "Suffix", affix = "of Wreaking", "(27-30)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 998 }, level = 52, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(27-30)% chance to Freeze, Shock and Ignite during Effect" }, } }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing4_"] = { type = "Suffix", affix = "of Infliction", "(31-34)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 998 }, level = 72, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(31-34)% chance to Freeze, Shock and Ignite during Effect" }, } }, + ["FlaskBuffAvoidStunWhileHealing1_"] = { type = "Suffix", affix = "of Composure", "(31-35)% Chance to Avoid being Stunned during Effect", statOrder = { 996 }, level = 12, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(31-35)% Chance to Avoid being Stunned during Effect" }, } }, + ["FlaskBuffAvoidStunWhileHealing2"] = { type = "Suffix", affix = "of Surefootedness", "(36-40)% Chance to Avoid being Stunned during Effect", statOrder = { 996 }, level = 29, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(36-40)% Chance to Avoid being Stunned during Effect" }, } }, + ["FlaskBuffAvoidStunWhileHealing3"] = { type = "Suffix", affix = "of Persistence", "(41-45)% Chance to Avoid being Stunned during Effect", statOrder = { 996 }, level = 46, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(41-45)% Chance to Avoid being Stunned during Effect" }, } }, + ["FlaskBuffAvoidStunWhileHealing4"] = { type = "Suffix", affix = "of Relentlessness", "(46-50)% Chance to Avoid being Stunned during Effect", statOrder = { 996 }, level = 63, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(46-50)% Chance to Avoid being Stunned during Effect" }, } }, + ["FlaskBuffAvoidStunWhileHealing5"] = { type = "Suffix", affix = "of Tenaciousness", "(51-55)% Chance to Avoid being Stunned during Effect", statOrder = { 996 }, level = 80, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(51-55)% Chance to Avoid being Stunned during Effect" }, } }, + ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of the Pupil", "(11-14)% reduced Mana Cost of Skills during Effect", statOrder = { 1023 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(11-14)% reduced Mana Cost of Skills during Effect" }, } }, + ["FlaskBuffReducedManaCostWhileHealing2__"] = { type = "Suffix", affix = "of the Initiate", "(15-18)% reduced Mana Cost of Skills during Effect", statOrder = { 1023 }, level = 29, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(15-18)% reduced Mana Cost of Skills during Effect" }, } }, + ["FlaskBuffReducedManaCostWhileHealing3"] = { type = "Suffix", affix = "of the Mage", "(19-21)% reduced Mana Cost of Skills during Effect", statOrder = { 1023 }, level = 46, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(19-21)% reduced Mana Cost of Skills during Effect" }, } }, + ["FlaskBuffReducedManaCostWhileHealing4"] = { type = "Suffix", affix = "of the Arcanist", "(22-25)% reduced Mana Cost of Skills during Effect", statOrder = { 1023 }, level = 63, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(22-25)% reduced Mana Cost of Skills during Effect" }, } }, + ["FlaskBuffReducedManaCostWhileHealing5"] = { type = "Suffix", affix = "of the Sorcerer", "(26-29)% reduced Mana Cost of Skills during Effect", statOrder = { 1023 }, level = 80, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(26-29)% reduced Mana Cost of Skills during Effect" }, } }, + ["FlaskBuffChillFreezeDuration1"] = { type = "Suffix", affix = "of the Rabbit", "(36-41)% reduced Effect of Chill on you during Effect", "(36-41)% reduced Freeze Duration on you during Effect", statOrder = { 1028, 1030 }, level = 4, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(36-41)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(36-41)% reduced Freeze Duration on you during Effect" }, } }, + ["FlaskBuffChillFreezeDuration2_"] = { type = "Suffix", affix = "of the Cat", "(42-47)% reduced Effect of Chill on you during Effect", "(42-47)% reduced Freeze Duration on you during Effect", statOrder = { 1028, 1030 }, level = 23, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(42-47)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(42-47)% reduced Freeze Duration on you during Effect" }, } }, + ["FlaskBuffChillFreezeDuration3_"] = { type = "Suffix", affix = "of the Fox", "(48-52)% reduced Effect of Chill on you during Effect", "(48-52)% reduced Freeze Duration on you during Effect", statOrder = { 1028, 1030 }, level = 42, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(48-52)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(48-52)% reduced Freeze Duration on you during Effect" }, } }, + ["FlaskBuffChillFreezeDuration4"] = { type = "Suffix", affix = "of the Sable", "(52-59)% reduced Effect of Chill on you during Effect", "(52-59)% reduced Freeze Duration on you during Effect", statOrder = { 1028, 1030 }, level = 61, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(52-59)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(52-59)% reduced Freeze Duration on you during Effect" }, } }, + ["FlaskBuffChillFreezeDuration5"] = { type = "Suffix", affix = "of the Bear", "(60-65)% reduced Effect of Chill on you during Effect", "(60-65)% reduced Freeze Duration on you during Effect", statOrder = { 1028, 1030 }, level = 80, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(60-65)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(60-65)% reduced Freeze Duration on you during Effect" }, } }, + ["FlaskBuffShockEffect1"] = { type = "Suffix", affix = "of the Plover", "(36-41)% reduced Effect of Shock on you during Effect", statOrder = { 1033 }, level = 6, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(36-41)% reduced Effect of Shock on you during Effect" }, } }, + ["FlaskBuffShockEffect2"] = { type = "Suffix", affix = "of the Sandpiper", "(42-47)% reduced Effect of Shock on you during Effect", statOrder = { 1033 }, level = 25, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(42-47)% reduced Effect of Shock on you during Effect" }, } }, + ["FlaskBuffShockEffect3___"] = { type = "Suffix", affix = "of the Cormorant", "(48-52)% reduced Effect of Shock on you during Effect", statOrder = { 1033 }, level = 44, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(48-52)% reduced Effect of Shock on you during Effect" }, } }, + ["FlaskBuffShockEffect4"] = { type = "Suffix", affix = "of the Sanderling", "(52-59)% reduced Effect of Shock on you during Effect", statOrder = { 1033 }, level = 63, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(52-59)% reduced Effect of Shock on you during Effect" }, } }, + ["FlaskBuffShockEffect5"] = { type = "Suffix", affix = "of the Heron", "(60-65)% reduced Effect of Shock on you during Effect", statOrder = { 1033 }, level = 82, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(60-65)% reduced Effect of Shock on you during Effect" }, } }, + ["FlaskBuffCurseEffect1"] = { type = "Suffix", affix = "of the Petrel", "(36-41)% reduced Effect of Curses on you during Effect", statOrder = { 1029 }, level = 8, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(36-41)% reduced Effect of Curses on you during Effect" }, } }, + ["FlaskBuffCurseEffect2"] = { type = "Suffix", affix = "of the Mockingbird", "(42-47)% reduced Effect of Curses on you during Effect", statOrder = { 1029 }, level = 27, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(42-47)% reduced Effect of Curses on you during Effect" }, } }, + ["FlaskBuffCurseEffect3_"] = { type = "Suffix", affix = "of the Curlew", "(48-52)% reduced Effect of Curses on you during Effect", statOrder = { 1029 }, level = 46, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(48-52)% reduced Effect of Curses on you during Effect" }, } }, + ["FlaskBuffCurseEffect4"] = { type = "Suffix", affix = "of the Kakapo", "(52-59)% reduced Effect of Curses on you during Effect", statOrder = { 1029 }, level = 65, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(52-59)% reduced Effect of Curses on you during Effect" }, } }, + ["FlaskBuffCurseEffect5"] = { type = "Suffix", affix = "of the Owl", "(60-65)% reduced Effect of Curses on you during Effect", statOrder = { 1029 }, level = 84, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(60-65)% reduced Effect of Curses on you during Effect" }, } }, + ["FlaskBuffBleedDuration1"] = { type = "Suffix", affix = "[UNUSED] Bleed duration 1", "(35-45)% reduced Bleeding Duration on you during Effect", statOrder = { 1027 }, level = 8, group = "FlaskBuffBleedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [1050147907] = { "(35-45)% reduced Bleeding Duration on you during Effect" }, } }, + ["FlaskBuffPoisonDuration1"] = { type = "Suffix", affix = "[UNUSED] Poison duration 1", "(35-45)% reduced Poison Duration on you during Effect", statOrder = { 1032 }, level = 16, group = "FlaskBuffPoisonDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [4151049654] = { "(35-45)% reduced Poison Duration on you during Effect" }, } }, + ["FlaskBuffIgniteDuration1_"] = { type = "Suffix", affix = "[UNUSED] Ignite duration 1", "(35-45)% reduced Ignite Duration on you during Effect", statOrder = { 1031 }, level = 6, group = "FlaskBuffIgniteDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [424810649] = { "(35-45)% reduced Ignite Duration on you during Effect" }, } }, + ["FlaskBuffAvoidChillFreeze1_"] = { type = "Suffix", affix = "of the Orca", "(31-35)% chance to Avoid being Chilled during Effect", "(31-35)% chance to Avoid being Frozen during Effect", statOrder = { 987, 988 }, level = 4, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(31-35)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(31-35)% chance to Avoid being Chilled during Effect" }, } }, + ["FlaskBuffAvoidChillFreeze2"] = { type = "Suffix", affix = "of the Sea Lion", "(36-40)% chance to Avoid being Chilled during Effect", "(36-40)% chance to Avoid being Frozen during Effect", statOrder = { 987, 988 }, level = 23, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(36-40)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(36-40)% chance to Avoid being Chilled during Effect" }, } }, + ["FlaskBuffAvoidChillFreeze3"] = { type = "Suffix", affix = "of the Narwhal", "(41-45)% chance to Avoid being Chilled during Effect", "(41-45)% chance to Avoid being Frozen during Effect", statOrder = { 987, 988 }, level = 42, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(41-45)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(41-45)% chance to Avoid being Chilled during Effect" }, } }, + ["FlaskBuffAvoidChillFreeze4"] = { type = "Suffix", affix = "of the Beluga", "(46-50)% chance to Avoid being Chilled during Effect", "(46-50)% chance to Avoid being Frozen during Effect", statOrder = { 987, 988 }, level = 61, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(46-50)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(46-50)% chance to Avoid being Chilled during Effect" }, } }, + ["FlaskBuffAvoidChillFreeze5"] = { type = "Suffix", affix = "of the Seal", "(51-55)% chance to Avoid being Chilled during Effect", "(51-55)% chance to Avoid being Frozen during Effect", statOrder = { 987, 988 }, level = 80, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(51-55)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(51-55)% chance to Avoid being Chilled during Effect" }, } }, + ["FlaskBuffAvoidIgnite1"] = { type = "Suffix", affix = "of the Guppy", "(31-35)% chance to Avoid being Ignited during Effect", statOrder = { 989 }, level = 6, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(31-35)% chance to Avoid being Ignited during Effect" }, } }, + ["FlaskBuffAvoidIgnite2"] = { type = "Suffix", affix = "of the Goldfish", "(36-40)% chance to Avoid being Ignited during Effect", statOrder = { 989 }, level = 25, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(36-40)% chance to Avoid being Ignited during Effect" }, } }, + ["FlaskBuffAvoidIgnite3"] = { type = "Suffix", affix = "of the Carp", "(41-45)% chance to Avoid being Ignited during Effect", statOrder = { 989 }, level = 44, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(41-45)% chance to Avoid being Ignited during Effect" }, } }, + ["FlaskBuffAvoidIgnite4___"] = { type = "Suffix", affix = "of the Catfish", "(46-50)% chance to Avoid being Ignited during Effect", statOrder = { 989 }, level = 63, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(46-50)% chance to Avoid being Ignited during Effect" }, } }, + ["FlaskBuffAvoidIgnite5_"] = { type = "Suffix", affix = "of the Sunfish", "(51-55)% chance to Avoid being Ignited during Effect", statOrder = { 989 }, level = 82, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(51-55)% chance to Avoid being Ignited during Effect" }, } }, + ["FlaskBuffAvoidShock1"] = { type = "Suffix", affix = "of Tree Moss", "(31-35)% chance to Avoid being Shocked during Effect", statOrder = { 990 }, level = 6, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(31-35)% chance to Avoid being Shocked during Effect" }, } }, + ["FlaskBuffAvoidShock2_"] = { type = "Suffix", affix = "of Turf Moss", "(36-40)% chance to Avoid being Shocked during Effect", statOrder = { 990 }, level = 25, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(36-40)% chance to Avoid being Shocked during Effect" }, } }, + ["FlaskBuffAvoidShock3"] = { type = "Suffix", affix = "of Tooth Moss", "(41-45)% chance to Avoid being Shocked during Effect", statOrder = { 990 }, level = 44, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(41-45)% chance to Avoid being Shocked during Effect" }, } }, + ["FlaskBuffAvoidShock4_____"] = { type = "Suffix", affix = "of Plume Moss", "(46-50)% chance to Avoid being Shocked during Effect", statOrder = { 990 }, level = 63, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(46-50)% chance to Avoid being Shocked during Effect" }, } }, + ["FlaskBuffAvoidShock5"] = { type = "Suffix", affix = "of Bog Moss", "(51-55)% chance to Avoid being Shocked during Effect", statOrder = { 990 }, level = 82, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(51-55)% chance to Avoid being Shocked during Effect" }, } }, + ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 921 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, + ["LocalManaFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana", statOrder = { 937 }, level = 30, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana" }, } }, + ["LocalManaFlaskHinderNearbyEnemies2"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana", statOrder = { 937 }, level = 48, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana" }, } }, + ["LocalManaFlaskHinderNearbyEnemies3"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana", statOrder = { 937 }, level = 66, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana" }, } }, + ["LocalManaFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana", statOrder = { 937 }, level = 84, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana" }, } }, + ["LocalLifeFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life", statOrder = { 936 }, level = 30, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life" }, } }, + ["LocalLifeFlaskHinderNearbyEnemies2_"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life", statOrder = { 936 }, level = 48, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life" }, } }, + ["LocalLifeFlaskHinderNearbyEnemies3_"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life", statOrder = { 936 }, level = 66, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life" }, } }, + ["LocalLifeFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life", statOrder = { 936 }, level = 84, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life" }, } }, + ["LocalFlaskImmuneToMaimAndHinder1"] = { type = "Suffix", affix = "of Movement", "Grants Immunity to Hinder for (6-8) seconds if used while Hindered", "Grants Immunity to Maim for (6-8) seconds if used while Maimed", statOrder = { 930, 931 }, level = 16, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (6-8) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (6-8) seconds if used while Maimed" }, } }, + ["LocalFlaskImmuneToMaimAndHinder2"] = { type = "Suffix", affix = "of Motion", "Grants Immunity to Hinder for (9-11) seconds if used while Hindered", "Grants Immunity to Maim for (9-11) seconds if used while Maimed", statOrder = { 930, 931 }, level = 38, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (9-11) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (9-11) seconds if used while Maimed" }, } }, + ["LocalFlaskImmuneToMaimAndHinder3"] = { type = "Suffix", affix = "of Freedom", "Grants Immunity to Hinder for (12-14) seconds if used while Hindered", "Grants Immunity to Maim for (12-14) seconds if used while Maimed", statOrder = { 930, 931 }, level = 60, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (12-14) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (12-14) seconds if used while Maimed" }, } }, + ["LocalFlaskImmuneToMaimAndHinder4"] = { type = "Suffix", affix = "of Liberation", "Grants Immunity to Hinder for (15-17) seconds if used while Hindered", "Grants Immunity to Maim for (15-17) seconds if used while Maimed", statOrder = { 930, 931 }, level = 82, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (15-17) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (15-17) seconds if used while Maimed" }, } }, + ["LocalLifeFlaskAdditionalLifeRecovery1"] = { type = "Suffix", affix = "of Abundance", "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 923 }, level = 25, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, + ["LocalLifeFlaskAdditionalLifeRecovery2__"] = { type = "Suffix", affix = "of Plenty", "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 923 }, level = 39, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, + ["LocalLifeFlaskAdditionalLifeRecovery3"] = { type = "Suffix", affix = "of Bounty", "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 923 }, level = 53, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, + ["LocalLifeFlaskAdditionalLifeRecovery4"] = { type = "Suffix", affix = "of Incessance", "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 923 }, level = 67, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, + ["LocalLifeFlaskAdditionalLifeRecovery5_"] = { type = "Suffix", affix = "of Perenniality", "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 923 }, level = 81, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } }, + ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 925, 925.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } }, + ["FlaskBleedCorruptingBloodImmunity2"] = { type = "Suffix", affix = "of Alleviation", "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood", statOrder = { 925, 925.1 }, level = 32, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood" }, } }, + ["FlaskBleedCorruptingBloodImmunity3______"] = { type = "Suffix", affix = "of Allaying", "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood", statOrder = { 925, 925.1 }, level = 56, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood" }, } }, + ["FlaskBleedCorruptingBloodImmunity4_"] = { type = "Suffix", affix = "of Assuaging", "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood", statOrder = { 925, 925.1 }, level = 80, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood" }, } }, + ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 935 }, level = 6, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } }, + ["FlaskShockImmunity2"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for (9-11) seconds if used while Shocked", statOrder = { 935 }, level = 30, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (9-11) seconds if used while Shocked" }, } }, + ["FlaskShockImmunity3"] = { type = "Suffix", affix = "of Insulation", "Grants Immunity to Shock for (12-14) seconds if used while Shocked", statOrder = { 935 }, level = 54, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (12-14) seconds if used while Shocked" }, } }, + ["FlaskShockImmunity4_"] = { type = "Suffix", affix = "of the Dielectric", "Grants Immunity to Shock for (15-17) seconds if used while Shocked", statOrder = { 935 }, level = 78, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (15-17) seconds if used while Shocked" }, } }, + ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 927, 927.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } }, + ["FlaskChillFreezeImmunity2"] = { type = "Suffix", affix = "of Thermodynamics", "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen", statOrder = { 927, 927.1 }, level = 28, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen" }, } }, + ["FlaskChillFreezeImmunity3"] = { type = "Suffix", affix = "of Entropy", "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen", statOrder = { 927, 927.1 }, level = 52, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen" }, } }, + ["FlaskChillFreezeImmunity4"] = { type = "Suffix", affix = "of Thawing", "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen", statOrder = { 927, 927.1 }, level = 76, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen" }, } }, + ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 929, 929.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskIgniteImmunity2_"] = { type = "Suffix", affix = "of Quashing", "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 929, 929.1 }, level = 30, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskIgniteImmunity3_"] = { type = "Suffix", affix = "of Quelling", "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 929, 929.1 }, level = 54, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskIgniteImmunity4"] = { type = "Suffix", affix = "of Quenching", "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 929, 929.1 }, level = 78, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 933 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, + ["FlaskPoisonImmunity2"] = { type = "Suffix", affix = "of the Remedy", "Grants Immunity to Poison for (9-11) seconds if used while Poisoned", statOrder = { 933 }, level = 38, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (9-11) seconds if used while Poisoned" }, } }, + ["FlaskPoisonImmunity3"] = { type = "Suffix", affix = "of the Cure", "Grants Immunity to Poison for (12-14) seconds if used while Poisoned", statOrder = { 933 }, level = 60, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (12-14) seconds if used while Poisoned" }, } }, + ["FlaskPoisonImmunity4"] = { type = "Suffix", affix = "of the Antidote", "Grants Immunity to Poison for (15-17) seconds if used while Poisoned", statOrder = { 933 }, level = 82, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (15-17) seconds if used while Poisoned" }, } }, + ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 881, 1010 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, + ["FlaskPoisonImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Hedgehog", "(40-44)% less Duration", "Immunity to Poison during Effect", statOrder = { 881, 1010 }, level = 46, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-44)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, + ["FlaskPoisonImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Opossum", "(35-39)% less Duration", "Immunity to Poison during Effect", statOrder = { 881, 1010 }, level = 76, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(35-39)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, + ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 881, 1011 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskShockImmunityDuringEffect2___"] = { type = "Suffix", affix = "of the Moray", "(40-44)% less Duration", "Immunity to Shock during Effect", statOrder = { 881, 1011 }, level = 40, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(40-44)% less Duration" }, } }, + ["FlaskShockImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Eel", "(35-39)% less Duration", "Immunity to Shock during Effect", statOrder = { 881, 1011 }, level = 74, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(35-39)% less Duration" }, } }, + ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 881, 1009 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskFreezeAndChillImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Walrus", "(40-44)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 881, 1009 }, level = 38, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(40-44)% less Duration" }, } }, + ["FlaskFreezeAndChillImmunityDuringEffect3__"] = { type = "Suffix", affix = "of the Penguin", "(35-39)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 881, 1009 }, level = 72, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(35-39)% less Duration" }, } }, + ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 881, 940, 940.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskIgniteImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Mussel", "(40-44)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 881, 940, 940.1 }, level = 40, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(40-44)% less Duration" }, } }, + ["FlaskIgniteImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Starfish", "(35-39)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 881, 940, 940.1 }, level = 74, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(35-39)% less Duration" }, } }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 881, 1007 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect2_"] = { type = "Suffix", affix = "of the Skink", "(40-44)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 881, 1007 }, level = 42, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-44)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect3___"] = { type = "Suffix", affix = "of the Iguana", "(35-39)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 881, 1007 }, level = 76, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(35-39)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/ModFoulborn.lua b/src/Data/ModFoulborn.lua index fafb5489e8..aa1a2f0c3a 100644 --- a/src/Data/ModFoulborn.lua +++ b/src/Data/ModFoulborn.lua @@ -2,367 +2,369 @@ -- Item data (c) Grinding Gear Games return { - ["MutatedUniqueBow4BowAttacksUsableWithoutMana"] = { affix = "", "Insufficient Mana doesn't prevent your Bow Attacks", statOrder = { 5264 }, level = 1, group = "BowAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "attack" }, tradeHashes = { [2564976564] = { "Insufficient Mana doesn't prevent your Bow Attacks" }, } }, - ["MutatedUniqueBow4AreaOfEffect"] = { affix = "", "(40-60)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(40-60)% increased Area of Effect" }, } }, - ["MutatedUniqueHelmetDex3ChaosResistance"] = { affix = "", "+(50-75)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(50-75)% to Chaos Resistance" }, } }, - ["MutatedUniqueHelmetDex5LocalIncreaseSocketedMinionGemLevel"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["MutatedUniqueHelmetDex5LifeReservationEfficiency"] = { affix = "", "32% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "32% increased Life Reservation Efficiency of Skills" }, } }, - ["MutatedUniqueBow18FasterIgnite"] = { affix = "", "Ignites you inflict deal Damage (20-40)% faster", statOrder = { 2564 }, level = 1, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (20-40)% faster" }, } }, - ["MutatedUniqueBow19SupportedByImmolate"] = { affix = "", "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 309 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 30 Immolate" }, } }, - ["MutatedUniqueBow19AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4625 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, - ["MutatedUniqueHelmetStr4FireDamageTakenAsPhysical"] = { affix = "", "30% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2445 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "30% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["MutatedUniqueHelmetStr4TotemLifeIncreasedByOvercappedFireResistance"] = { affix = "", "Totem Life is increased by their Overcapped Fire Resistance", statOrder = { 10397 }, level = 1, group = "TotemLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [284063465] = { "Totem Life is increased by their Overcapped Fire Resistance" }, } }, - ["MutatedUniqueHelmetStr5SupportedByMinionLife"] = { affix = "", "Socketed Gems are Supported by Level 30 Minion Life", statOrder = { 504 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 30 Minion Life" }, } }, - ["MutatedUniqueAmulet37PhysicalDamageTakenAsFire"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(5-15)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["MutatedUniqueAmulet37NearbyEnemiesDebilitated"] = { affix = "", "Nearby Enemies are Debilitated", statOrder = { 7908 }, level = 1, group = "NearbyEnemiesDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2006060276] = { "Nearby Enemies are Debilitated" }, } }, - ["MutatedUniqueAmulet38KeystoneElementalOverload"] = { affix = "", "Elemental Overload", statOrder = { 10783 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["MutatedUniqueWand15PowerChargeOnManaSpent"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7893 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, - ["MutatedUniqueWand15GlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skill Gems" }, } }, - ["MutatedUniqueWand16ColdDamageOverTimeMultiplierPerPowerCharge"] = { affix = "", "+(15-20)% to Cold Damage over Time Multiplier per Power Charge", statOrder = { 5806 }, level = 1, group = "ColdDamageOverTimeMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [2936849585] = { "+(15-20)% to Cold Damage over Time Multiplier per Power Charge" }, } }, - ["MutatedUniqueBodyDex10PurityOfIceNoReservation"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9774 }, level = 1, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } }, - ["MutatedUniqueBodyDex10EvasionRatingPer10PlayerLife"] = { affix = "", "+6 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6484 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+6 to Evasion Rating per 10 Player Maximum Life" }, } }, - ["MutatedUniqueBodyDex11GhostDance"] = { affix = "", "Ghost Dance", statOrder = { 10787 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, - ["MutatedUniqueBodyDex11EvasionRatingPer10PlayerLife"] = { affix = "", "+8 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6484 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+8 to Evasion Rating per 10 Player Maximum Life" }, } }, - ["MutatedUniqueAmulet39PhysicalDamageTakenAsCold"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(5-15)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["MutatedUniqueAmulet39CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["MutatedUniqueAmulet40CannotBeChilled"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["MutatedUniqueClaw16PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } }, - ["MutatedUniqueClaw16AccuracyRatingPercentPer25Intelligence"] = { affix = "", "3% increased Accuracy Rating per 25 Intelligence", statOrder = { 4510 }, level = 1, group = "AccuracyRatingPercentPer25Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4106889136] = { "3% increased Accuracy Rating per 25 Intelligence" }, } }, - ["MutatedUniqueClaw17PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } }, - ["MutatedUniqueClaw17CriticalStrikeMultiplierPer25Dexterity"] = { affix = "", "+3% to Critical Strike Multiplier per 25 Dexterity", statOrder = { 5949 }, level = 1, group = "CriticalStrikeMultiplierPer25Dexterity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [2846122155] = { "+3% to Critical Strike Multiplier per 25 Dexterity" }, } }, - ["MutatedUniqueShieldInt8DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueShieldInt8AlwaysShockLowLifeEnemies"] = { affix = "", "Hits always Shock Enemies that are on Low Life", statOrder = { 4658 }, level = 1, group = "AlwaysShockLowLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2610583760] = { "Hits always Shock Enemies that are on Low Life" }, } }, - ["MutatedUniqueShieldInt9DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueShieldInt9ChaosDamageDoesNotBypassESWhileNotLowMana"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", statOrder = { 5730 }, level = 1, group = "ChaosDamageDoesNotBypassESWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield", "chaos" }, tradeHashes = { [795512669] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Mana" }, } }, - ["MutatedUniqueAmulet41MaximumLightningResistance"] = { affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["MutatedUniqueAmulet41EnemyExtraDamageRolls"] = { affix = "", "Damage of Enemies Hitting you is Unlucky", statOrder = { 5012 }, level = 1, group = "EnemyExtraDamageRolls", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1937473464] = { "Damage of Enemies Hitting you is Unlucky" }, } }, - ["MutatedUniqueAmulet42ManaIncreasedPerOvercappedLightningResistUniqueAmulet42"] = { affix = "", "Mana is increased by 1% per 4% Overcapped Lightning Resistance", statOrder = { 8182 }, level = 1, group = "ManaIncreasedPerOvercappedLightningResistUniqueAmulet42", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "lightning" }, tradeHashes = { [3178534707] = { "Mana is increased by 1% per 4% Overcapped Lightning Resistance" }, } }, - ["MutatedUniqueBootsStr6IncreasedArmourWhileBleeding"] = { affix = "", "(50-100)% increased Armour while Bleeding", statOrder = { 4773 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [2466912132] = { "(50-100)% increased Armour while Bleeding" }, } }, - ["MutatedUniqueBootsStr6ImmuneToElementalAilmentsWhileBleeding"] = { affix = "", "Immune to Elemental Ailments while Bleeding", statOrder = { 7224 }, level = 1, group = "ImmuneToElementalAilmentsWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2526304488] = { "Immune to Elemental Ailments while Bleeding" }, } }, - ["MutatedUniqueBootsStr7GainEnduranceChargeEveryXSecondsWhileStationary"] = { affix = "", "Gain an Endurance Charge each second while Stationary", statOrder = { 6708 }, level = 1, group = "GainEnduranceChargePerXSecondsWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [3331206505] = { "Gain an Endurance Charge each second while Stationary" }, } }, - ["MutatedUniqueBottsStr7GainPowerChargeOnHitWhileBleeding"] = { affix = "", "Gain a Power Charge on Hit while Bleeding", statOrder = { 6807 }, level = 1, group = "GainPowerChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique", "ailment" }, tradeHashes = { [3468151987] = { "Gain a Power Charge on Hit while Bleeding" }, } }, - ["MutatedUniqueTwoHandAxe11WarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10571 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, - ["MutatedUniqueTwoHandAxe11WarcryCooldownSpeed"] = { affix = "", "500% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "500% increased Warcry Cooldown Recovery Rate" }, } }, - ["MutatedUniqueTwoHandAxe12PercentageIntelligence"] = { affix = "", "80% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "80% reduced Intelligence" }, } }, - ["MutatedUniqueTwoHandAxe12FasterBleedDamage"] = { affix = "", "Bleeding you inflict deals Damage (20-40)% faster", statOrder = { 6545 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (20-40)% faster" }, } }, - ["MutatedUniqueShieldStr8MaximumBlockChance"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, - ["MutatedUniqueShieldStr8ArmourAppliesToElementalIfBlockedRecently"] = { affix = "", "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4749 }, level = 1, group = "ArmourAppliesToElementalIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences" }, tradeHashes = { [1239225602] = { "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } }, - ["MutatedUniqueShieldStr9GainEnergyShieldOnBlock"] = { affix = "", "Gain (300-650) Energy Shield when you Block", statOrder = { 1759 }, level = 1, group = "GainEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (300-650) Energy Shield when you Block" }, } }, - ["MutatedUniqueOneHandSword22MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } }, - ["MutatedUniqueOneHandSword23MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } }, - ["MutatedUniqueOneHandSword22MinionBaseCriticalStrikeChance"] = { affix = "", "Minions have +5% to Critical Strike Chance", statOrder = { 9267 }, level = 1, group = "MinionBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "critical" }, tradeHashes = { [440812751] = { "Minions have +5% to Critical Strike Chance" }, } }, - ["MutatedUniqueOneHandSword23MinionSkillGemQuality"] = { affix = "", "+(20-30)% to Quality of all Minion Skill Gems", statOrder = { 9331 }, level = 1, group = "MinionSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [1723333214] = { "+(20-30)% to Quality of all Minion Skill Gems" }, } }, - ["MutatedUniqueBodyInt13SocketedGemQuality"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+20% to Quality of Socketed Gems" }, } }, - ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, - ["MutatedUniqueBodyInt14aSocketedGemQuality"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } }, - ["MutatedUniqueBodyInt14IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, - ["MutatedUniqueJewel85FireResistAlsoGrantsMaximumLifePercent"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Life at 50% of its value", statOrder = { 8074, 8074.1 }, level = 1, group = "UniqueJewelFireResistAlsoGrantsMaximumLifePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [4068640319] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Life at 50% of its value" }, [3802517517] = { "" }, } }, - ["MutatedUniqueJewel85ChaosResistancePerEnduranceCharge"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["MutatedUniqueJewel87ColdResistAlsoGrantsMaximumManaPercent"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Mana at 75% of its value", statOrder = { 8049, 8049.1 }, level = 1, group = "UniqueJewelColdResistAlsoGrantsMaximumManaPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "cold" }, tradeHashes = { [3802517517] = { "" }, [1535088208] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Mana at 75% of its value" }, } }, - ["MutatedUniqueJewel87MovementSpeedPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "mutatedunique" }, tradeHashes = { [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, - ["MutatedUniqueJewel89LightningResistAlsoGrantsMaximumESPercent"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Energy Shield at 75% of its value", statOrder = { 8090, 8090.1 }, level = 1, group = "UniqueJewelLightningResistAlsoGrantsMaximumESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [3802517517] = { "" }, [1348513056] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Energy Shield at 75% of its value" }, } }, - ["MutatedUniqueJewel89CriticalMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [4164870816] = { "+3% to Critical Strike Multiplier per Power Charge" }, } }, - ["MutatedUniqueJewel86UniqueJewelFireResistAlsoGrantsConvertFireToChaos"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Fire Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8073, 8073.1 }, level = 1, group = "UniqueJewelFireResistAlsoGrantsConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "chaos" }, tradeHashes = { [1124207360] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Fire Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, - ["MutatedUniqueJewel86ExtraDamageRollsWithFireIfBlockedAttackRecently"] = { affix = "", "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently", statOrder = { 6534 }, level = 1, group = "ExtraDamageRollsWithFireIfBlockedAttackRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "elemental", "fire" }, tradeHashes = { [3601177816] = { "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently" }, } }, - ["MutatedUniqueJewel88UniqueJewelColdResistAlsoGrantsConvertColdToChaos"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Cold Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8047, 8047.1 }, level = 1, group = "UniqueJewelColdResistAlsoGrantsConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "chaos" }, tradeHashes = { [248241207] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Cold Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, - ["MutatedUniqueJewel88ExtraDamageRollsWithColdIfSuppressedRecently"] = { affix = "", "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently", statOrder = { 6533 }, level = 1, group = "ExtraDamageRollsWithColdIfSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [3810337989] = { "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently" }, } }, - ["MutatedUniqueJewel90UniqueJewelLightningResistAlsoGrantsConvertLightningToChaos"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Lightning Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8089, 8089.1 }, level = 1, group = "UniqueJewelLightningResistAlsoGrantsConvertLightningToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "chaos" }, tradeHashes = { [1525329150] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Lightning Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, - ["MutatedUniqueJewel90ExtraDamageRollsWithLightningIfBlockedSpellRecently"] = { affix = "", "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently", statOrder = { 6535 }, level = 1, group = "ExtraDamageRollsWithLightningIfBlockedSpellRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [1327356547] = { "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently" }, } }, - ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 406 }, level = 1, group = "DisplaySocketedGemsSupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1792524915] = { "Socketed Gems are Supported by Level 20 Intensify" }, } }, - ["MutatedUniqueBodyDexInt1AuraEffectOnEnemies"] = { affix = "", "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3567 }, level = 1, group = "AuraEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1636209393] = { "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, - ["MutatedUniqueGlovesInt4DisplaySocketedGemsSupportedByFocusedChannelling"] = { affix = "", "Socketed Gems are Supported by Level 18 Focused Channelling", statOrder = { 503 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1948535732] = { "Socketed Gems are Supported by Level 18 Focused Channelling" }, } }, - ["MutatedUniqueBelt7CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["MutatedUniqueBodyInt12HeraldOfDoom"] = { affix = "", "Lone Messenger", statOrder = { 10790 }, level = 1, group = "KeystoneHeraldOfDoom", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [155220198] = { "Lone Messenger" }, } }, - ["MutatedUniqueBodyInt12HeraldEffectOnSelf"] = { affix = "", "(80-100)% increased Effect of Herald Buffs on you", statOrder = { 7105 }, level = 1, group = "HeraldEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [870531513] = { "(80-100)% increased Effect of Herald Buffs on you" }, } }, - ["MutatedUniqueBodyInt16LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["MutatedUniqueShieldStrDex7LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["MutatedUniqueFishingRod1FishingMutatedFish"] = { affix = "", "You can catch Foulborn Fish", statOrder = { 5385 }, level = 1, group = "FishingMutatedFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3564016014] = { "You can catch Foulborn Fish" }, } }, - ["MutatedUniqueFishingRod1FishingLureType"] = { affix = "", "Wombgift Bait", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Wombgift Bait" }, } }, - ["MutatedUniqueFishingRod2AvoidInterruptionWhileCasting"] = { affix = "", "(30-40)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1916706958] = { "(30-40)% chance to Ignore Stuns while Casting" }, } }, - ["MutatedUniqueFishingRod2FishingLureType"] = { affix = "", "Otherworldly Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Otherworldly Lure" }, } }, - ["MutatedUniqueRing9IncreasedAttackSpeedWhenOnLowLife"] = { affix = "", "(12-16)% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [1921572790] = { "(12-16)% increased Attack Speed when on Low Life" }, } }, - ["MutatedUniqueBodyDex6DamageTaken"] = { affix = "", "25% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3691641145] = { "25% increased Damage taken" }, } }, - ["MutatedUniqueWand2MaximumGolems"] = { affix = "", "+2 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2821079699] = { "+2 to maximum number of Summoned Golems" }, } }, - ["MutatedUniqueShieldDex9TreatElementalResistanceAsInverted"] = { affix = "", "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10427 }, level = 1, group = "TreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental" }, tradeHashes = { [3593401321] = { "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, - ["MutatedUniqueGlovesDex2ActionSpeedMinimum90"] = { affix = "", "Your Action Speed is at least 90% of base value", statOrder = { 171 }, level = 1, group = "ActionSpeedMinimum90", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [179010262] = { "Your Action Speed is at least 90% of base value" }, } }, - ["MutatedUniqueGlovesDex2CriticalStrikesNonDamagingAilmentEffect"] = { affix = "", "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9504 }, level = 1, group = "CriticalStrikesNonDamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [3772078232] = { "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } }, - ["MutatedUniqueOneHandMace3AreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(20-30)% increased Area of Effect" }, } }, - ["MutatedUniqueHelmetStrDex3WarcryBuffEffect"] = { affix = "", "(20-35)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 1, group = "WarcryBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3037553757] = { "(20-35)% increased Warcry Buff Effect" }, } }, - ["MutatedUniqueHelmetStrDex3WarcryCooldownSpeed"] = { affix = "", "(20-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "(20-40)% increased Warcry Cooldown Recovery Rate" }, } }, - ["MutatedUniqueOneHandMace3LightningBoltOnHit"] = { affix = "", "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown", statOrder = { 773 }, level = 1, group = "LightningBoltOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [3195558548] = { "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown" }, [1478425331] = { "" }, } }, - ["MutatedUniqueClaw13CrushOnHitChance"] = { affix = "", "25% chance to Crush on Hit", statOrder = { 5655 }, level = 1, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [2228892313] = { "25% chance to Crush on Hit" }, } }, - ["MutatedUniqueRing18RecoupWhileFrozen"] = { affix = "", "25% of Damage taken while Frozen Recouped as Life", statOrder = { 6124 }, level = 1, group = "RecoupWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [2585984986] = { "25% of Damage taken while Frozen Recouped as Life" }, } }, - ["MutatedUniqueRing18ActionSpeedMinimumWhileIgnited"] = { affix = "", "Action Speed cannot be modified to below Base Value while Ignited", statOrder = { 4524 }, level = 1, group = "ActionSpeedMinimumWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "speed", "ailment" }, tradeHashes = { [2146687910] = { "Action Speed cannot be modified to below Base Value while Ignited" }, } }, - ["MutatedUniqueTwoHandSword8RecoupedAsLifePerRedGem"] = { affix = "", "10% of Damage taken Recouped as Life per Socketed Red Gem", statOrder = { 6123 }, level = 1, group = "RecoupedAsLifePerRedGem", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "gem" }, tradeHashes = { [902847342] = { "10% of Damage taken Recouped as Life per Socketed Red Gem" }, } }, - ["MutatedUniqueTwoHandSword8ImmortalAmbitionIfAllSocketsRed"] = { affix = "", "You have Immortal Ambition while all Socketed Gems are Red", statOrder = { 7936 }, level = 1, group = "ImmortalAmbitionIfAllSocketsRed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2954550164] = { "You have Immortal Ambition while all Socketed Gems are Red" }, } }, - ["MutatedUniqueHelmStrInt7MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems"] = { affix = "", "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", statOrder = { 9145 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [70766949] = { "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted" }, } }, - ["MutatedUniqueClaw13PhysicalSkillEffectDurationPerIntelligence"] = { affix = "", "Physical Skills have 1% increased Duration per 12 Intelligence", statOrder = { 3800 }, level = 1, group = "PhysicalSkillEffectDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attribute" }, tradeHashes = { [2632037464] = { "Physical Skills have 1% increased Duration per 12 Intelligence" }, } }, - ["MutatedUniqueBelt14MaximumLifeOnChillPercent"] = { affix = "", "Recover 2% of Life when you Chill a non-Chilled Enemy", statOrder = { 9841 }, level = 1, group = "MaximumLifeOnChillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "cold", "ailment" }, tradeHashes = { [3883840239] = { "Recover 2% of Life when you Chill a non-Chilled Enemy" }, } }, - ["MutatedUniqueRing19FrozenMonstersTakePercentIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 10% increased Damage", statOrder = { 6691 }, level = 1, group = "FrozenMonstersTakePercentIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [1588094148] = { "Enemies Frozen by you take 10% increased Damage" }, } }, - ["MutatedUniqueBodyInt16BlueSocketGemsIgnoreAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", statOrder = { 7939 }, level = 1, group = "BlueSocketGemsIgnoreAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2852307173] = { "Ignore Attribute Requirements of Gems Socketed in Blue Sockets" }, } }, - ["MutatedUniqueRing20IgnitedEnemiesExplode"] = { affix = "", "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite", statOrder = { 7208 }, level = 1, group = "IgnitedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [321971518] = { "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite" }, } }, - ["MutatedUniqueShieldInt1DamageOverTimePer100PlayerMaxLife"] = { affix = "", "Deal 5% increased Damage Over Time per 100 Player Maximum Life", statOrder = { 6023 }, level = 1, group = "DamageOverTimePer100PlayerMaxLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [1855381243] = { "Deal 5% increased Damage Over Time per 100 Player Maximum Life" }, } }, - ["MutatedUniqueRing9ExtraDamageRollsWhileLowLife"] = { affix = "", "Your Damage with Hits is Lucky while on Low Life", statOrder = { 4554 }, level = 1, group = "ExtraDamageRollsWhileLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [204466006] = { "Your Damage with Hits is Lucky while on Low Life" }, } }, - ["MutatedUniqueBodyInt21ChaosDamageTakenRecoupedAsLifeActual"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5747 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } }, - ["MutatedUniqueBodyStrDex7WarcriesAreDisabled"] = { affix = "", "Your Warcries are disabled", statOrder = { 10701 }, level = 1, group = "WarcriesAreDisabled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [345628839] = { "Your Warcries are disabled" }, } }, - ["MutatedUniqueRing13LeftRingSlotEvasionRating"] = { affix = "", "Left ring slot: +1000 to Evasion Rating", statOrder = { 2672 }, level = 1, group = "LeftRingSlotEvasionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [674502195] = { "Left ring slot: +1000 to Evasion Rating" }, } }, - ["MutatedUniqueRing13RightRingSlotArmour"] = { affix = "", "Right ring slot: +1000 to Armour", statOrder = { 2651 }, level = 1, group = "RightRingSlotArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1223912433] = { "Right ring slot: +1000 to Armour" }, } }, - ["MutatedUniqueShieldStrDex8SpellBlockPercentage"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } }, - ["MutatedUniqueShieldStrDex8MonsterChanceToAvoid"] = { affix = "", "(10-15)% chance to Avoid All Damage from Hits", statOrder = { 4940 }, level = 1, group = "MonsterChanceToAvoid", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [407415930] = { "(10-15)% chance to Avoid All Damage from Hits" }, } }, - ["MutatedUniqueBelt14AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4625 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, - ["MutatedUniqueRing20ShockedEnemiesExplode"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10021, 10021.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, - ["MutatedUniqueBodyDexInt2GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["MutatedUniqueBodyDexInt2EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["MutatedUniqueShieldDex9DegenDamageTaken"] = { affix = "", "(10-15)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 1, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1101403182] = { "(10-15)% reduced Damage taken from Damage Over Time" }, } }, - ["MutatedUniqueGlovesStr12RageLossDelay"] = { affix = "", "Inherent Rage Loss starts 2 seconds later", statOrder = { 9798 }, level = 1, group = "RageLossDelay", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2842935061] = { "Inherent Rage Loss starts 2 seconds later" }, } }, - ["MutatedUniqueBodyStrDex8AttackDamage"] = { affix = "", "100% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } }, - ["MutatedUniqueBodyInt2DamageWhileIgnited"] = { affix = "", "(50-100)% increased Damage while Ignited", statOrder = { 2802 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1686122637] = { "(50-100)% increased Damage while Ignited" }, } }, - ["MutatedUniqueBodyInt2FireDamageLifeLeechPermyriad"] = { affix = "", "(5-7)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(5-7)% of Fire Damage Leeched as Life" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanShock"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanFreeze"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2869 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } }, - ["MutatedUniqueQuiver7StartEnergyShieldRechargeOnSkillChance"] = { affix = "", "(10-15)% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6450 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "(10-15)% chance for Energy Shield Recharge to start when you use a Skill" }, } }, - ["MutatedUniqueQuiver7MaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 9162 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["MutatedUniqueBow12DisplaySupportedBySummonPhantasm"] = { affix = "", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 408 }, level = 1, group = "DisplaySupportedBySummonPhantasm", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2169409479] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, } }, - ["MutatedUniqueBow12SummonWrithingWormEveryXMs"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 620 }, level = 1, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } }, - ["MutatedUniqueBow12MinionAddedChaosDamage"] = { affix = "", "Minions deal (25-35) to (50-65) additional Chaos Damage", statOrder = { 3769 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (25-35) to (50-65) additional Chaos Damage" }, } }, - ["MutatedUniqueTwoHandMace8IncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (50-70)% increased Damage if you've Hit Recently", statOrder = { 9296 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (50-70)% increased Damage if you've Hit Recently" }, } }, - ["MutatedUniqueTwoHandMace8DoubleAnimateWeaponLimit"] = { affix = "", "Maximum number of Animated Weapons is Doubled", statOrder = { 6263 }, level = 1, group = "DoubleAnimateWeaponLimit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [737980235] = { "Maximum number of Animated Weapons is Doubled" }, } }, - ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3683134121] = { "20% increased Attack Speed with Movement Skills" }, } }, - ["MutatedUniqueHelmetStrDex2ChanceToSuppressSpells"] = { affix = "", "+(10-20)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(10-20)% chance to Suppress Spell Damage" }, } }, - ["MutatedUniqueBow6ProjectilesPierceAllNearbyTargets"] = { affix = "", "Projectiles Pierce all nearby Targets", statOrder = { 9754 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1284333657] = { "Projectiles Pierce all nearby Targets" }, } }, - ["MutatedUniqueJewel174BurnDurationForJewel"] = { affix = "", "(25-50)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDurationForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(25-50)% increased Ignite Duration on Enemies" }, } }, - ["MutatedUniqueJewel174FireDamageOverTimeMultiplier"] = { affix = "", "+(10-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(10-15)% to Fire Damage over Time Multiplier" }, } }, - ["MutatedUniqueJewel175CurseEnemiesExplode25%Chaos"] = { affix = "", "Cursed Enemies you or your Minions Kill have a (10-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3306 }, level = 1, group = "CurseEnemiesExplode25%Chaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [1763939859] = { "Cursed Enemies you or your Minions Kill have a (10-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, - ["MutatedUniqueJewel175CurseDuration"] = { affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (10-15)% increased Skill Effect Duration" }, } }, - ["MutatedUniqueJewel173ShockEffect"] = { affix = "", "(25-50)% increased Effect of Shock", statOrder = { 10009 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-50)% increased Effect of Shock" }, } }, - ["MutatedUniqueJewel173ShockDuration"] = { affix = "", "(10-15)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(10-15)% increased Shock Duration on Enemies" }, } }, - ["MutatedUniqueJewel177SpellDamageSuppressed"] = { affix = "", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(3-5)% of Suppressed Spell Damage" }, } }, - ["MutatedUniqueJewel177ChanceToSuppressSpells"] = { affix = "", "+(5-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(5-10)% chance to Suppress Spell Damage" }, } }, - ["MutatedUniqueJewel112Medium"] = { affix = "", "75% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8100, 8101 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [607548408] = { "75% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, - ["MutatedUniqueJewel112Small"] = { affix = "", "100% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8100, 8101 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [607548408] = { "100% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, - ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10786 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7339 }, level = 1, group = "AnimalCharmLeechPercentIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3561837752] = { "(8-12)% of Leech is Instant" }, } }, - ["MutatedUniqueBelt13CurseEffectOnYou"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, - ["MutatedUniqueBodyStr7PrismaticBulwark"] = { affix = "", "Transcendence", statOrder = { 10804 }, level = 1, group = "PrismaticBulwark", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2381571742] = { "Transcendence" }, } }, - ["MutatedUniqueBodyStr7GainNoInherentBonusFromStrength"] = { affix = "", "Gain no inherent bonuses from Strength", statOrder = { 2017 }, level = 1, group = "GainNoInherentBonusFromStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [2035199242] = { "Gain no inherent bonuses from Strength" }, } }, - ["MutatedUniqueBelt19FlaskChargesUsed"] = { affix = "", "100% increased Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [644456512] = { "100% increased Flask Charges used" }, } }, - ["MutatedUniqueBelt19AnimalCharmFlaskChargesEvery3Secondsage"] = { affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 1, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, - ["MutatedUniqueAmulet43ChaosDamageTakenRecoupedAsLife"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5747 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } }, - ["MutatedUniqueAmulet43RecoupEnergyShieldInsteadOfLife"] = { affix = "", "Recoup Energy Shield instead of Life", statOrder = { 7389 }, level = 1, group = "RecoupEnergyShieldInsteadOfLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [4074053582] = { "Recoup Energy Shield instead of Life" }, } }, - ["MutatedUniqueBow18DisplaySupportedByReturningProjectiles"] = { affix = "", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 407 }, level = 1, group = "DisplaySupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1549219417] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, } }, - ["MutatedUniqueGlovesDexInt7PoisonSpread"] = { affix = "", "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", statOrder = { 1041 }, level = 1, group = "PoisonSpread", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [3559020159] = { "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned" }, } }, - ["MutatedUniqueGlovesDexInt7FasterPoisonDamage"] = { affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6546 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "mutatedunique", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (15-20)% faster" }, } }, - ["MutatedUniqueAmulet14GainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6811 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["MutatedUniqueAmulet14LosePowerChargesOnMaxPowerCharges"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["MutatedUniqueRing2WarcryMonsterPower"] = { affix = "", "(20-30)% increased total Power counted by Warcries", statOrder = { 10573 }, level = 1, group = "WarcryMonsterPower", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2663359259] = { "(20-30)% increased total Power counted by Warcries" }, } }, - ["MutatedUniqueHelmetDexInt1MinionDoubleDamage"] = { affix = "", "Minions have 20% chance to deal Double Damage", statOrder = { 9280 }, level = 1, group = "MinionDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [755922799] = { "Minions have 20% chance to deal Double Damage" }, } }, - ["MutatedUniqueRing4TemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["MutatedUniqueRing4VulnerabilityOnHit"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2520 }, level = 1, group = "VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1826297223] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["MutatedUniqueRing4EnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, - ["MutatedUniqueHelmetStrInt2HeraldOfPurityAdditionalMinion"] = { affix = "", "+(2-3) to maximum number of Sentinels of Purity", statOrder = { 5033 }, level = 1, group = "HeraldOfPurityAdditionalMinion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2836937264] = { "+(2-3) to maximum number of Sentinels of Purity" }, } }, - ["MutatedUniqueBootsStrDex1MovementVelocityOnFullLife"] = { affix = "", "40% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3393547195] = { "40% increased Movement Speed when on Full Life" }, } }, - ["MutatedUniqueGlovesInt1IncreasedGold"] = { affix = "", "(5-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(5-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueBelt4PercentageStrength"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, - ["MutatedUniqueBodyStrInt2MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MutatedUniqueGlovesDexInt2UnarmedAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect while Unarmed", statOrder = { 3053 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2216127021] = { "(20-30)% increased Area of Effect while Unarmed" }, } }, - ["MutatedUniqueBootsDex2IncreasedGold"] = { affix = "", "(20-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(20-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueBootsDex3ActionSpeedReduction"] = { affix = "", "(6-12)% increased Action Speed", statOrder = { 4527 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "(6-12)% increased Action Speed" }, } }, - ["MutatedUniqueBodyStr2LocalPhysicalDamageReductionRating"] = { affix = "", "+(500-800) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(500-800) to Armour" }, } }, - ["MutatedUniqueBodyDex3MeleeFireDamage"] = { affix = "", "(75-150)% increased Melee Fire Damage", statOrder = { 1982 }, level = 1, group = "MeleeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3630160064] = { "(75-150)% increased Melee Fire Damage" }, } }, - ["MutatedUniqueShieldInt2LocalIncreaseSocketedAuraLevel"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["MutatedUniqueRing6CriticalStrikeMultiplier"] = { affix = "", "+(10-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-30)% to Global Critical Strike Multiplier" }, } }, - ["MutatedUniqueRing6AllDefences"] = { affix = "", "(10-30)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1389153006] = { "(10-30)% increased Global Defences" }, } }, - ["MutatedUniqueHelmetDex4IncreasedMana"] = { affix = "", "+(100-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1050105434] = { "+(100-200) to maximum Mana" }, } }, - ["MutatedUniqueShieldStrInt5FlatEnergyShieldRegenerationPerMinute"] = { affix = "", "Regenerate (100-200) Energy Shield per second", statOrder = { 2645 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (100-200) Energy Shield per second" }, } }, - ["MutatedUniqueShieldStrInt5CastSpeedOnLowLife"] = { affix = "", "(10-20)% increased Cast Speed when on Low Life", statOrder = { 1999 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "speed" }, tradeHashes = { [1136768410] = { "(10-20)% increased Cast Speed when on Low Life" }, } }, - ["MutatedUniqueBodyDex5MovementSkillCooldown"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 9406 }, level = 1, group = "MovementSkillCooldown", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1124980805] = { "(20-40)% increased Cooldown Recovery Rate of Movement Skills" }, } }, - ["MutatedUniqueBootsStrDex2IncreasedAccuracyPerFrenzy"] = { affix = "", "(4-8)% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3700381193] = { "(4-8)% increased Accuracy Rating per Frenzy Charge" }, } }, - ["MutatedUniqueBodyInt7SupportedByFlamewood"] = { affix = "", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 280 }, level = 1, group = "SupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, } }, - ["MutatedUniqueGlovesInt6ChaosDamagePerCorruptedItem"] = { affix = "", "(10-15)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(10-15)% increased Chaos Damage for each Corrupted Item Equipped" }, } }, - ["MutatedUniqueRing7NonDamagingAilmentEffectOnSelf"] = { affix = "", "50% reduced Effect of Non-Damaging Ailments on you", statOrder = { 9501 }, level = 1, group = "NonDamagingAilmentEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [1519474779] = { "50% reduced Effect of Non-Damaging Ailments on you" }, } }, - ["MutatedUniqueClaw6ChaosDamage"] = { affix = "", "(100-120)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-120)% increased Chaos Damage" }, } }, - ["MutatedUniqueRing11ConsecratedGroundEffect"] = { affix = "", "(25-40)% increased Effect of Consecrated Ground you create", statOrder = { 5847 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4058190193] = { "(25-40)% increased Effect of Consecrated Ground you create" }, } }, - ["MutatedUniqueTwoHandMace6KeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["MutatedUniqueTwoHandMace6LoseLifePercentOnCrit"] = { affix = "", "Lose 1% of Life when you deal a Critical Strike", statOrder = { 8142 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose 1% of Life when you deal a Critical Strike" }, } }, - ["MutatedUniqueRing17IncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["MutatedUniqueBodyStr4ElementalDamageTakenAsChaos"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2453 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } }, - ["MutatedUniqueShieldDex4ChaosDamageOverTimeMultiplier"] = { affix = "", "+(23-37)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(23-37)% to Chaos Damage over Time Multiplier" }, } }, - ["MutatedUniqueHelmetStrInt4MaximumLifeIncreasePercent"] = { affix = "", "50% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } }, - ["MutatedUniqueGlovesStrInt1SelfCurseDuration"] = { affix = "", "(-30-30)% reduced Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2920970371] = { "(-30-30)% reduced Duration of Curses on you" }, } }, - ["MutatedUniqueGlovesDexInt5LocalEnergyShield"] = { affix = "", "+(100-130) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-130) to maximum Energy Shield" }, } }, - ["MutatedUniqueBootsStrInt2PercentageIntelligence"] = { affix = "", "(15-18)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(15-18)% increased Intelligence" }, } }, - ["MutatedUniqueQuiver3ImpaleEffect"] = { affix = "", "(20-30)% increased Impale Effect", statOrder = { 7243 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [298173317] = { "(20-30)% increased Impale Effect" }, } }, - ["MutatedUniqueQuiver4BowStunThresholdReduction"] = { affix = "", "50% reduced Enemy Stun Threshold with Bows", statOrder = { 1519 }, level = 1, group = "BowStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2410484864] = { "50% reduced Enemy Stun Threshold with Bows" }, } }, - ["MutatedUniqueBodyInt9MinionHasUnholyMight"] = { affix = "", "Minions have Unholy Might", statOrder = { 9309 }, level = 1, group = "MinionHasUnholyMight", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [1436083424] = { "Minions have Unholy Might" }, } }, - ["MutatedUniqueWand6WeaponTreeFishingWishEffectOfAncientFish"] = { affix = "", "(30-50)% increased effect of Wishes granted by Ancient Fish", statOrder = { 6615 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [796951852] = { "(30-50)% increased effect of Wishes granted by Ancient Fish" }, } }, - ["MutatedUniqueRing24MaximumFireResist"] = { affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["MutatedUniqueBodyStrDex4PhysicalDamageTakenAsChaos"] = { affix = "", "20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["MutatedUniqueGlovesStrInt2LifeRegenerationRatePercentage"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["MutatedUniqueGlovesStrDex5VaalSkillDuration"] = { affix = "", "Vaal Skills have (20-40)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (20-40)% increased Skill Effect Duration" }, } }, - ["MutatedUniqueGlovesDexInt6BlindEffect"] = { affix = "", "(20-30)% increased Blind Effect", statOrder = { 5219 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1585769763] = { "(20-30)% increased Blind Effect" }, } }, - ["MutatedUniqueTwoHandAxe8SpellDamage"] = { affix = "", "(120-140)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "mutatedunique", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-140)% increased Spell Damage" }, } }, - ["MutatedUniqueTwoHandSword7AccuracyRatingPerLevel"] = { affix = "", "+(6-8) to Accuracy Rating per Level", statOrder = { 4515 }, level = 1, group = "AccuracyRatingPerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [539841130] = { "+(6-8) to Accuracy Rating per Level" }, } }, - ["MutatedUniqueShieldDex6ImpaleChanceForJewel"] = { affix = "", "(20-40)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attack" }, tradeHashes = { [3739863694] = { "(20-40)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["MutatedUniqueRing26ManaPerLevel"] = { affix = "", "+2 Maximum Mana per Level", statOrder = { 8186 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2563691316] = { "+2 Maximum Mana per Level" }, } }, - ["MutatedUniqueBelt12ConvertLightningDamageToChaos"] = { affix = "", "40% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "mutatedunique", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "40% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MutatedUniqueRing27DebuffTimePassed"] = { affix = "", "Debuffs on you expire (-20-20)% slower", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (-20-20)% slower" }, } }, - ["MutatedUniqueBodyStr5ExperienceIncrease"] = { affix = "", "5% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["MutatedUniqueAmulet20CurseEffectTemporalChains"] = { affix = "", "(20-30)% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 1, group = "CurseEffectTemporalChains", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1662974426] = { "(20-30)% increased Temporal Chains Curse Effect" }, } }, - ["MutatedUniqueHelmetInt9WeaponTreeSupportImpendingDoom"] = { affix = "", "Socketed Gems are Supported by Level 30 Impending Doom", statOrder = { 311 }, level = 1, group = "WeaponTreeSupportImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3227145554] = { "Socketed Gems are Supported by Level 30 Impending Doom" }, } }, - ["MutatedUniqueRing32EnergyShieldAndMana"] = { affix = "", "+(0-60) to maximum Energy Shield", "+(0-60) to maximum Mana", statOrder = { 1558, 1579 }, level = 1, group = "EnergyShieldAndMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(0-60) to maximum Mana" }, [3489782002] = { "+(0-60) to maximum Energy Shield" }, } }, - ["MutatedUniqueRing33MinionSkillManaCost"] = { affix = "", "(10-20)% reduced Mana Cost of Minion Skills", statOrder = { 9332 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-20)% reduced Mana Cost of Minion Skills" }, } }, - ["MutatedUniqueStaff10DisplaySocketedSkillsChain"] = { affix = "", "Socketed Gems Chain 2 additional times", statOrder = { 540 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 2 additional times" }, } }, - ["MutatedUniqueBodyDexInt4NonCurseAuraDuration"] = { affix = "", "Non-Curse Aura Skills have (40-80)% increased Duration", statOrder = { 10056 }, level = 1, group = "NonCurseAuraDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4152389562] = { "Non-Curse Aura Skills have (40-80)% increased Duration" }, } }, - ["MutatedUniqueDagger10ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["MutatedUniqueBodyStr6ChanceToAvoidProjectiles"] = { affix = "", "25% chance to avoid Projectiles", statOrder = { 4993 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3452269808] = { "25% chance to avoid Projectiles" }, } }, - ["MutatedUniqueOneHandAxe8LocalIncreasedAttackSpeed"] = { affix = "", "(30-50)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(30-50)% increased Attack Speed" }, } }, - ["MutatedUniqueHelmetDexInt6RetaliationSkillCooldownRecoveryRate"] = { affix = "", "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate", statOrder = { 5889 }, level = 1, group = "RetaliationSkillCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1173860008] = { "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate" }, } }, - ["MutatedUniqueAmluet24EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["MutatedUniqueShieldInt6EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 100% reduced Critical Strike Chance", statOrder = { 6405 }, level = 1, group = "EnchantmentBlind", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have 100% reduced Critical Strike Chance" }, } }, - ["MutatedUniqueGlovesStrDex7SupportedByManaforgedArrows"] = { affix = "", "Socketed Gems are Supported by Level 5 Manaforged Arrows", statOrder = { 332 }, level = 1, group = "SupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [4022502578] = { "Socketed Gems are Supported by Level 5 Manaforged Arrows" }, } }, - ["MutatedUniqueTwoHandSword9LocalLightningDamage"] = { affix = "", "Adds 1 to 777 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 777 Lightning Damage" }, } }, - ["MutatedUniqueSceptre13ColdDamageOverTimeMultiplier"] = { affix = "", "+(30-40)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(30-40)% to Cold Damage over Time Multiplier" }, } }, - ["MutatedUniqueOneHandAxe9MeleeHitsCannotBeEvadedWhileWieldingSword"] = { affix = "", "Your Melee Hits can't be Evaded while wielding a Sword", statOrder = { 9193 }, level = 1, group = "MeleeHitsCannotBeEvadedWhileWieldingSword", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2537902937] = { "Your Melee Hits can't be Evaded while wielding a Sword" }, } }, - ["MutatedUniqueOneHandSword15DualWieldingSpellBlockForJewel"] = { affix = "", "+10% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1144 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [138741818] = { "+10% Chance to Block Spell Damage while Dual Wielding" }, } }, - ["MutatedUniqueShieldInt7DodgeChancePerPowerCharge"] = { affix = "", "+4% chance to Suppress Spell Damage per Power Charge", statOrder = { 10174 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1309947938] = { "+4% chance to Suppress Spell Damage per Power Charge" }, } }, - ["MutatedUniqueOneHandMace10LocalCriticalStrikeChance"] = { affix = "", "(60-100)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-100)% increased Critical Strike Chance" }, } }, - ["MutatedUniqueWand14MinionPhysicalDamageAddedAsFire"] = { affix = "", "Minions gain (20-40)% of Physical Damage as Extra Fire Damage", statOrder = { 9326 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain (20-40)% of Physical Damage as Extra Fire Damage" }, } }, - ["MutatedUniqueHelmStrInt7LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems"] = { affix = "", "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", statOrder = { 10634 }, level = 1, group = "LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [1750141122] = { "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted" }, } }, - ["MutatedUniqueGlovesInt4GainManaCostReductionOnManaSpent"] = { affix = "", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", statOrder = { 8167 }, level = 1, group = "GainManaCostReductionOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1375431760] = { "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana" }, } }, - ["MutatedUniqueBelt7GainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds", statOrder = { 6824 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds" }, } }, - ["MutatedUniqueShieldStrDex7LocalGemsSocketedHaveNoAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Socketed Gems", statOrder = { 7938 }, level = 1, group = "LocalGemsSocketedHaveNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3850932596] = { "Ignore Attribute Requirements of Socketed Gems" }, } }, - ["MutatedUniqueRing19EnemiesShockedByHitsAreDebilitated"] = { affix = "", "Enemies Shocked by you are Debilitated", statOrder = { 6398 }, level = 25, group = "EnemiesShockedByHitsAreDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2983226297] = { "Enemies Shocked by you are Debilitated" }, } }, - ["MutatedUniqueShieldInt1NonDamagingAilmentWithCritsEffectPer100MaxLife"] = { affix = "", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", statOrder = { 9499 }, level = 1, group = "NonDamagingAilmentWithCritsEffectPer100MaxLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [1572854306] = { "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life" }, } }, - ["MutatedUniqueBodyInt21MaximumEnergyShieldIsEqualToPercentOfMaximumLife"] = { affix = "", "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life", statOrder = { 9136 }, level = 1, group = "MaximumEnergyShieldIsEqualToPercentOfMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4053338379] = { "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life" }, } }, - ["MutatedUniqueBodyDex6ProjectileSpeedPercentPerEvasionRatingUpToCap"] = { affix = "", "1% increased Projectile Speed per 600 Evasion Rating, up to 75%", statOrder = { 9745 }, level = 1, group = "ProjectileSpeedPercentPerEvasionRatingUpToCap", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1382953917] = { "1% increased Projectile Speed per 600 Evasion Rating, up to 75%" }, } }, - ["MutatedUniqueWand2LifeAndEnergyShieldDegenPerMinion"] = { affix = "", "Lose 0.5% Life and Energy Shield per Second per Minion", statOrder = { 7340 }, level = 1, group = "LifeAndEnergyShieldDegenPerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [1383458163] = { "Lose 0.5% Life and Energy Shield per Second per Minion" }, } }, - ["MutatedUniqueBow6ChinsolDamageAgainstEnemiesOutsideCloseRange"] = { affix = "", "50% more Damage with Arrow Hits not at Close Range", statOrder = { 2443 }, level = 1, group = "ChinsolDamageAgainstEnemiesOutsideCloseRange", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [402730593] = { "50% more Damage with Arrow Hits not at Close Range" }, } }, - ["MutatedUniqueJewel125GrantsAllBonusesOfUnallocatedNotablesInRadius"] = { affix = "", "Grants all bonuses of Unallocated Notable Passive Skills in Radius", statOrder = { 7957 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [3530244373] = { "Grants all bonuses of Unallocated Notable Passive Skills in Radius" }, } }, - ["MutatedUniqueJewel125AllocatedNotablePassiveSkillsInRadiusDoNothing"] = { affix = "", "Allocated Notable Passive Skills in Radius grant nothing", statOrder = { 7955 }, level = 1, group = "AllocatedNotablePassiveSkillsInRadiusDoNothing", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [680202695] = { "Allocated Notable Passive Skills in Radius grant nothing" }, } }, - ["MutatedUniqueJewel6KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected"] = { affix = "", "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10716, 10716.1 }, level = 1, group = "KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1211779989] = { "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, [3802517517] = { "" }, } }, - ["MutatedUniqueJewel177ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", statOrder = { 10184 }, level = 1, group = "ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [860891010] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value" }, } }, - ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius"] = { affix = "", "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3057 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [4151744887] = { "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, - ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius"] = { affix = "", "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3058 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [370099215] = { "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, [3802517517] = { "" }, } }, - ["MutatedUniqueJewel5EvasionModifiersInRadiusAreTransformedToArmour"] = { affix = "", "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour", statOrder = { 3066 }, level = 1, group = "EvasionModifiersInRadiusAreTransformedToArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3802517517] = { "" }, [2548156334] = { "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour" }, } }, - ["MutatedUniqueBelt13NearbyEnemiesAreUnnerved"] = { affix = "", "Nearby Enemies are Unnerved", statOrder = { 9455 }, level = 1, group = "NearbyEnemiesAreUnnerved", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1439308328] = { "Nearby Enemies are Unnerved" }, } }, - ["MutatedUniqueBodyDex8SuppressionPreventionIfYouHaventSuppressedRecently"] = { affix = "", "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently", statOrder = { 10141 }, level = 1, group = "SuppressionPreventionIfYouHaventSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1409317489] = { "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently" }, } }, - ["MutatedUniqueBodyDex8ChanceToSuppressIfYouHaveSuppressedRecently"] = { affix = "", "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 10185 }, level = 1, group = "ChanceToSuppressIfYouHaveSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3273678959] = { "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently" }, } }, - ["MutatedUniqueHelmetStrInt6ChanceToCastOnManaSpent"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 755, 755.1 }, level = 1, group = "ChanceToCastOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "caster", "gem" }, tradeHashes = { [2827553480] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1178126501] = { "0% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, - ["MutatedUniqueBootsInt7PowerChargeOnCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [4164870816] = { "+(3-5)% to Critical Strike Multiplier per Power Charge" }, } }, - ["MutatedUniqueBodyInt3BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["MutatedUniqueRing16DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1605 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["MutatedUniqueBodyStrInt1ChaosResistance"] = { affix = "", "-(17-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(17-13)% to Chaos Resistance" }, } }, - ["MutatedUniqueBow3ChaosDamageAsPortionOfDamage"] = { affix = "", "Gain (67-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (67-83)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MutatedUniqueStaff1SearingBondTotemsAllowed"] = { affix = "", "+(3-5) to maximum number of Summoned Searing Bond Totems", statOrder = { 9527 }, level = 1, group = "SearingBondTotemsAllowed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2674643140] = { "+(3-5) to maximum number of Summoned Searing Bond Totems" }, } }, - ["MutatedUniqueRing5StunRecovery"] = { affix = "", "(200-300)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2511217560] = { "(200-300)% increased Stun and Block Recovery" }, } }, - ["MutatedUniqueHelmetDex2ConvertColdToFire"] = { affix = "", "50% of Cold Damage Converted to Fire Damage", statOrder = { 1968 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "50% of Cold Damage Converted to Fire Damage" }, } }, - ["MutatedUniqueBootsStr1CurseImmunity"] = { affix = "", "You are Immune to Curses", statOrder = { 7219 }, level = 1, group = "CurseImmunity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [116621037] = { "You are Immune to Curses" }, } }, - ["MutatedUniqueGlovesStrDex2IncreasedGold"] = { affix = "", "15% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "15% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["MutatedUniqueShieldStr1MaximumLifeAddedAsArmour"] = { affix = "", "Gain (20-25)% of Maximum Life as Extra Armour", statOrder = { 9160 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [4118694562] = { "Gain (20-25)% of Maximum Life as Extra Armour" }, } }, - ["MutatedUniqueShieldStrInt1EnergyShieldIncreasedByChaosResistance"] = { affix = "", "Maximum Energy Shield is increased by Chaos Resistance", statOrder = { 6435 }, level = 1, group = "EnergyShieldIncreasedByChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1301612627] = { "Maximum Energy Shield is increased by Chaos Resistance" }, } }, - ["MutatedUniqueHelmetInt4SupportedByFrigidBond"] = { affix = "", "Socketed Gems are Supported by Level 25 Frigid Bond", statOrder = { 287 }, level = 1, group = "SupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 25 Frigid Bond" }, } }, - ["MutatedUniqueGlovesStr2StrengthRequirementAndTripleDamageChance"] = { affix = "", "+700 Strength Requirement", "(10-15)% chance to deal Triple Damage", statOrder = { 1085, 5000 }, level = 1, group = "StrengthRequirementAndTripleDamageChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2445189705] = { "(10-15)% chance to deal Triple Damage" }, [2833226514] = { "+700 Strength Requirement" }, } }, - ["MutatedUniqueBodyInt4GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["MutatedUniqueHelmetDex5LifeReservationEfficiencyCopy"] = { affix = "", "30% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "30% increased Life Reservation Efficiency of Skills" }, } }, - ["MutatedUniqueHelmetStr3BleedDotMultiplier"] = { affix = "", "+(50-75)% to Damage over Time Multiplier for Bleeding", statOrder = { 1248 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+(50-75)% to Damage over Time Multiplier for Bleeding" }, } }, - ["MutatedUniqueHelmetStrDex4SupportedBySadism"] = { affix = "", "Socketed Gems are Supported by Level 30 Sadism", statOrder = { 373 }, level = 1, group = "SupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [794471597] = { "Socketed Gems are Supported by Level 30 Sadism" }, } }, - ["MutatedUniqueOneHandSword3TrapThrowSpeed"] = { affix = "", "(20-40)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [118398748] = { "(20-40)% increased Trap Throwing Speed" }, } }, - ["MutatedUniqueBelt5IncreasedEnergyShieldPerPowerCharge"] = { affix = "", "(4-6)% increased Energy Shield per Power Charge", statOrder = { 6444 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "(4-6)% increased Energy Shield per Power Charge" }, } }, - ["MutatedUniqueSceptre3DamagePerZombie"] = { affix = "", "(40-60)% increased Damage per Raised Zombie", statOrder = { 6018 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [3868443508] = { "(40-60)% increased Damage per Raised Zombie" }, } }, - ["MutatedUniqueRing15ColdDamageTakenAsFire"] = { affix = "", "40% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3178 }, level = 14, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "40% of Cold Damage from Hits taken as Fire Damage" }, } }, - ["MutatedUniqueBodyStr3WitheredEffect"] = { affix = "", "(20-40)% increased Effect of Withered", statOrder = { 10626 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2545584555] = { "(20-40)% increased Effect of Withered" }, } }, - ["MutatedUniqueBodyStrDex1MaximumRage"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, - ["MutatedUniqueBodyStrDex2ChaosDamageTakenAsLightning"] = { affix = "", "50% of Chaos Damage taken as Lightning Damage", statOrder = { 5753 }, level = 1, group = "ChaosDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2313674117] = { "50% of Chaos Damage taken as Lightning Damage" }, } }, - ["MutatedUniqueSceptre6ManaPerStrengthIfInMainHand"] = { affix = "", "1% increased maximum Mana per 18 Strength when in Main Hand", statOrder = { 9168 }, level = 1, group = "ManaPerStrengthIfInMainHand", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3548542256] = { "1% increased maximum Mana per 18 Strength when in Main Hand" }, } }, - ["MutatedUniqueSceptre6EnergyShieldPerStrengthIfInOffHand"] = { affix = "", "1% increased maximum Energy Shield per 25 Strength when in Off Hand", statOrder = { 6427 }, level = 1, group = "EnergyShieldPerStrengthIfInOffHand", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [699783004] = { "1% increased maximum Energy Shield per 25 Strength when in Off Hand" }, } }, - ["MutatedUniqueGlovesStrDex4AdrenalineOnVaalSkillUse"] = { affix = "", "You gain Adrenaline for 3 seconds on using a Vaal Skill", statOrder = { 2919 }, level = 1, group = "AdrenalineOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3856092403] = { "You gain Adrenaline for 3 seconds on using a Vaal Skill" }, } }, - ["MutatedUniqueBodyStrInt5LightRadiusAppliesToAccuracy"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7430 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, - ["MutatedUniqueBow11SupportedByPrismaticBurst"] = { affix = "", "Socketed Gems are Supported by Level 25 Prismatic Burst", statOrder = { 357 }, level = 1, group = "SupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2910545715] = { "Socketed Gems are Supported by Level 25 Prismatic Burst" }, } }, - ["MutatedUniqueBootsStr2Strength"] = { affix = "", "+(150-200) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [4080418644] = { "+(150-200) to Strength" }, } }, - ["MutatedUniqueOneHandSword9AttackSpeedPer200Accuracy"] = { affix = "", "1% increased Attack Speed per 150 Accuracy Rating", statOrder = { 4238 }, level = 1, group = "AttackSpeedPer200Accuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [2937694716] = { "1% increased Attack Speed per 150 Accuracy Rating" }, } }, - ["MutatedUniqueWand7AddedChaosDamageFromManaCost"] = { affix = "", "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 4534 }, level = 1, group = "AddedChaosDamageFromManaCost", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [820155465] = { "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend" }, } }, - ["MutatedUniqueWand8SupportedByAwakenedSpellCascade"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Cascade", statOrder = { 297 }, level = 1, group = "SupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2292610865] = { "Socketed Gems are Supported by Level 1 Greater Spell Cascade" }, } }, - ["MutatedUniqueHelmetInt8ManaCostReduction"] = { affix = "", "(20-30)% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [474294393] = { "(20-30)% increased Mana Cost of Skills" }, } }, - ["MutatedUniqueStaff11AnimalCharmMineAuraEffect"] = { affix = "", "(60-100)% increased Effect of Auras from Mines", statOrder = { 9220 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2121424530] = { "(60-100)% increased Effect of Auras from Mines" }, } }, - ["MutatedUniqueStaff12AreaOfEffectPer20Int"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2543 }, level = 1, group = "AreaOfEffectPer20Int", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, - ["MutatedUniqueGlovesStrInt4PercentageIntelligence"] = { affix = "", "(12-16)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(12-16)% increased Intelligence" }, } }, - ["MutatedUniqueRing34GainPowerChargeOnKillingFrozenEnemy"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on Killing a Frozen Enemy" }, } }, - ["MutatedUniqueHelmetInt10AdditiveSpellModifiersApplyToRetaliationAttackDamage"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value", statOrder = { 2689 }, level = 1, group = "AdditiveSpellModifiersApplyToRetaliationAttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [4171078509] = { "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value" }, } }, - ["MutatedUniqueBelt18ManaRecoveryRate"] = { affix = "", "50% reduced Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3513180117] = { "50% reduced Mana Recovery rate" }, } }, - ["MutatedUniqueTwoHandAxe14AttackAdditionalProjectiles"] = { affix = "", "Attacks fire 3 additional Projectiles", statOrder = { 4196 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [1195705739] = { "Attacks fire 3 additional Projectiles" }, } }, - ["MutatedUniqueHelmetInt11PhysicalDamageRemovedFromManaBeforeLife"] = { affix = "", "30% of Physical Damage is taken from Mana before Life", statOrder = { 4169 }, level = 1, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "30% of Physical Damage is taken from Mana before Life" }, } }, - ["MutatedUniqueAmulet31LightRadius"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } }, - ["MutatedUniqueBodyDex9WitherOnHitChanceVsCursedEnemies"] = { affix = "", "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", statOrder = { 10627 }, level = 1, group = "WitherOnHitChanceVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [465526645] = { "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies" }, } }, - ["MutatedUniqueBodyDexInt5TrapSkillCooldownCount"] = { affix = "", "Skills which Throw Traps have +2 Cooldown Uses", statOrder = { 10418 }, level = 1, group = "TrapSkillCooldownCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4001105802] = { "Skills which Throw Traps have +2 Cooldown Uses" }, } }, - ["MutatedUniqueOneHandSword20LocalWeaponMoreIgniteDamage"] = { affix = "", "Ignites inflicted with this Weapon deal 100% more Damage", statOrder = { 7944 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal 100% more Damage" }, } }, - ["MutatedUniqueRing44ProjectileSpeed"] = { affix = "", "(-10-10)% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3759663284] = { "(-10-10)% reduced Projectile Speed" }, } }, - ["MutatedUniqueTwoHandAxe1MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MutatedUniqueBodyDex1SpellDamageSuppressed"] = { affix = "", "Prevent +(8-10)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(8-10)% of Suppressed Spell Damage" }, } }, - ["MutatedUniqueHelmetInt2GlobalCooldownRecovery"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["MutatedUniqueAmulet8ChaosResistance"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } }, - ["MutatedUniqueBelt2FlaskEffect"] = { affix = "", "Flasks applied to you have (10-15)% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-15)% increased Effect" }, } }, - ["MutatedUniqueShieldStrInt2SocketedGemQuality"] = { affix = "", "+(20-30)% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+(20-30)% to Quality of Socketed Gems" }, } }, - ["MutatedUniqueBodyInt1SupportedByLivingLightning"] = { affix = "", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 327 }, level = 1, group = "SupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, } }, - ["MutatedUniqueBow5UnholyMightOnCritChance"] = { affix = "", "25% chance to gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 5700 }, level = 1, group = "UnholyMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2807857784] = { "25% chance to gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["MutatedUniqueShieldStrInt4DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["MutatedUniqueGlovesDexInt3HeraldOfThunderBuffEffect"] = { affix = "", "Herald of Thunder has 100% increased Buff Effect", statOrder = { 7126 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3814686091] = { "Herald of Thunder has 100% increased Buff Effect" }, } }, - ["MutatedUniqueWand3AreaOfEffectPerPowerCharge"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } }, - ["MutatedUniqueRing12AdditionalVaalSoulOnKill"] = { affix = "", "(20-40)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [1962922582] = { "(20-40)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["MutatedUniqueBelt6TrapAreaOfEffect"] = { affix = "", "Skills used by Traps have (40-60)% increased Area of Effect", statOrder = { 3479 }, level = 47, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4050593908] = { "Skills used by Traps have (40-60)% increased Area of Effect" }, } }, - ["MutatedUniqueHelmetDexInt3MaximumLifeConvertedToEnergyShield"] = { affix = "", "(15-20)% of Maximum Life Converted to Energy Shield", statOrder = { 9162 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(15-20)% of Maximum Life Converted to Energy Shield" }, } }, - ["MutatedUniqueGlovesStr4SapChance"] = { affix = "", "30% chance to Sap Enemies", statOrder = { 2034 }, level = 1, group = "SapChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [532324017] = { "30% chance to Sap Enemies" }, } }, - ["MutatedUniqueQuiver10ChanceToAggravateBleed"] = { affix = "", "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 1, group = "ChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "mutatedunique", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["MutatedUniqueOneHandSword21IncreasedWeaponElementalDamagePercent"] = { affix = "", "(80-120)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(80-120)% increased Elemental Damage with Attack Skills" }, } }, - ["MutatedUniqueBodyDexInt6PurityOfLightningNoReservation"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9777 }, level = 1, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } }, - ["MutatedUniqueWand18SpellAddedPhysicalDamagePerLevel"] = { affix = "", "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", statOrder = { 1270 }, level = 1, group = "SpellAddedPhysicalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "caster" }, tradeHashes = { [1092545959] = { "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels" }, } }, - ["MutatedUniqueBodyStr9SpellBlockPer50Strength"] = { affix = "", "+1% Chance to Block Spell Damage per 50 Strength", statOrder = { 1153 }, level = 1, group = "SpellBlockPer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [1114429046] = { "+1% Chance to Block Spell Damage per 50 Strength" }, } }, - ["MutatedUniqueBodyStr9AttackBlockLuck"] = { affix = "", "Chance to Block Attack Damage is Unlucky", statOrder = { 4991 }, level = 1, group = "AttackBlockLuck", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [3776150692] = { "Chance to Block Attack Damage is Unlucky" }, } }, - ["MutatedUniqueQuiver15SupportedByArrowNova"] = { affix = "", "Socketed Gems are Supported by Level 25 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 25 Arrow Nova" }, } }, - ["MutatedUniqueAmulet57MovementVelocityPerFrenzyCharge"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["MutatedUniqueRing63MaximumLifeIncreasePercent"] = { affix = "", "(40-50)% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(40-50)% reduced maximum Life" }, } }, - ["MutatedUniqueRing64GlobalEnergyShieldPercent"] = { affix = "", "(40-50)% reduced maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% reduced maximum Energy Shield" }, } }, - ["MutatedUniqueShieldStrInt13LocalMaximumQuality"] = { affix = "", "+20% to Maximum Quality", statOrder = { 7997 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, - ["MutatedUniqueRing75CurseDuration"] = { affix = "", "Curse Skills have (-30-30)% reduced Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (-30-30)% reduced Skill Effect Duration" }, } }, - ["MutatedUniqueBodyStrInt15NonChaosDamageBypassEnergyShieldPercent"] = { affix = "", "40% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 644 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3379724776] = { "40% of Non-Chaos Damage taken bypasses Energy Shield" }, } }, - ["MutatedUniqueSceptre25MinionCriticalStrikeMultiplier"] = { affix = "", "Minions have +(20-40)% to Critical Strike Multiplier", statOrder = { 9291 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-40)% to Critical Strike Multiplier" }, } }, - ["MutatedUniqueBodyStr13MaximumEnergyShieldIfNoDefenceModifiersOnEquipment"] = { affix = "", "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", statOrder = { 9133 }, level = 1, group = "MaximumEnergyShieldIfNoDefenceModifiersOnEquipment", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [2236622399] = { "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items" }, } }, - ["MutatedUniqueGlovesInt3PunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6002 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, - ["MutatedUniqueBodyInt20MinionLeechEnergyShieldFromElementalDamage"] = { affix = "", "Minions Leech 5% of Elemental Damage as Energy Shield", statOrder = { 9303 }, level = 1, group = "MinionLeechEnergyShieldFromElementalDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [2809815072] = { "Minions Leech 5% of Elemental Damage as Energy Shield" }, } }, - ["MutatedUniqueSceptre10PowerChargeOnStunUniqueSceptre10"] = { affix = "", "Gain Chaotic Might for 4 seconds on Critical Strike", statOrder = { 5684 }, level = 1, group = "ChaoticMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "critical" }, tradeHashes = { [1183009081] = { "Gain Chaotic Might for 4 seconds on Critical Strike" }, } }, - ["MutatedUniqueGlovesStr7CannotBeIgnitedAtMaxEnduranceCharges"] = { affix = "", "Cannot be Ignited while at maximum Endurance Charges", statOrder = { 5405 }, level = 1, group = "CannotBeIgnitedAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire" }, tradeHashes = { [2420971151] = { "Cannot be Ignited while at maximum Endurance Charges" }, } }, - ["MutatedUniqueBootsDex5ActionSpeedReduction"] = { affix = "", "15% increased Action Speed", statOrder = { 4527 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "15% increased Action Speed" }, } }, - ["MutatedUniqueAmulet76GainMissingManaPercentWhenHit"] = { affix = "", "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy", statOrder = { 9379 }, level = 62, group = "GainMissingManaPercentWhenHit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1441107401] = { "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy" }, } }, - ["MutatedUniqueBootsStrInt3MovementVelocityWhileIgnited"] = { affix = "", "(25-50)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [581625445] = { "(25-50)% increased Movement Speed while Ignited" }, } }, - ["MutatedUniqueClaw7RecoverEnergyShieldFromEvasionOnBlock"] = { affix = "", "Recover Energy Shield equal to 1% of Evasion Rating when you Block", statOrder = { 6424 }, level = 1, group = "RecoverEnergyShieldFromEvasionOnBlock", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3495989808] = { "Recover Energy Shield equal to 1% of Evasion Rating when you Block" }, } }, - ["MutatedUniqueBodyInt8ProfaneGroundInsteadOfConsecratedGround"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5908 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, - ["MutatedUniqueBelt7RareAndUniqueEnemiesHaveIcons"] = { affix = "", "Rare and Unique Enemies within 120 metres have Minimap Icons", statOrder = { 10584 }, level = 1, group = "RareAndUniqueEnemiesHaveIcons", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2543266731] = { "Rare and Unique Enemies within 120 metres have Minimap Icons" }, } }, - ["MutatedUniqueHelmetStr6ZombiesLeechEnergyShieldToYouAt1000Intelligence"] = { affix = "", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", statOrder = { 10754 }, level = 1, group = "ZombiesLeechEnergyShieldToYouAt1000Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [1919087214] = { "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield" }, } }, - ["MutatedUniqueHelmetStr6AdditionalZombiesPerXIntelligence"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Intelligence", statOrder = { 9540 }, level = 1, group = "AdditionalZombiesPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [900892599] = { "+1 to maximum number of Raised Zombies per 500 Intelligence" }, } }, - ["MutatedUniqueBelt43MagicUtilityFlasksAlwaysApplyRightmost"] = { affix = "", "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4422 }, level = 56, group = "MagicUtilityFlasksAlwaysApplyRightmost", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [2651470813] = { "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } }, - ["MutatedUniqueUniqueBelt52AvoidPoison"] = { affix = "", "(40-60)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(40-60)% chance to Avoid being Poisoned" }, } }, - ["MutatedUniqueUniqueBelt52ChaosDamage"] = { affix = "", "(30-50)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-50)% increased Chaos Damage" }, } }, - ["MutatedUniqueUniqueBelt55FireDamage"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } }, - ["MutatedUniqueUniqueBelt55IgniteDurationOnYou"] = { affix = "", "(40-60)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(40-60)% reduced Ignite Duration on you" }, } }, - ["MutatedUniqueUniqueBow27ImpalesChanceToLastAdditionalHit"] = { affix = "", "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", statOrder = { 7257 }, level = 1, group = "ChanceImpaleLastsAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [220868259] = { "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" }, } }, - ["MutatedUniqueUniqueBow27AttackSpeed"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueBow26LocalCriticalStrikeChance"] = { affix = "", "(30-34)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } }, - ["MutatedUniqueUniqueBow26FireDamageOverTimeMultiplier"] = { affix = "", "+(28-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-35)% to Fire Damage over Time Multiplier" }, } }, - ["MutatedUniqueUniqueTwoHandSword18FasterDamagingAilments"] = { affix = "", "Damaging Ailments deal damage (20-40)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (20-40)% faster" }, } }, - ["MutatedUniqueUniqueTwoHandSword18LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandSword19AilmentDuration"] = { affix = "", "(30-35)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2419712247] = { "(30-35)% increased Duration of Ailments on Enemies" }, } }, - ["MutatedUniqueUniqueTwoHandSword19LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace16LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace16ChaosResistance"] = { affix = "", "+(25-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(25-30)% to Chaos Resistance" }, } }, - ["MutatedUniqueUniqueTwoHandMace16PhysicalAddedAsChaos"] = { affix = "", "Gain (35-45)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (35-45)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsFire"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (20-25)% of Physical Damage as Extra Fire Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsCold"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (20-25)% of Physical Damage as Extra Cold Damage" }, } }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsLightning"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (20-25)% of Physical Damage as Extra Lightning Damage" }, } }, - ["MutatedUniqueUniqueAmulet85PercentIncreasedLife"] = { affix = "", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["MutatedUniqueUniqueAmulet85LifeFlaskChargesEvery3Seconds"] = { affix = "", "Life Flasks gain (1-3) Charge every 3 seconds", statOrder = { 7348 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2592686757] = { "Life Flasks gain (1-3) Charge every 3 seconds" }, } }, - ["MutatedUniqueUniqueAmulet81PercentIncreasedMana"] = { affix = "", "(12-14)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "(12-14)% increased maximum Mana" }, } }, - ["MutatedUniqueUniqueAmulet81ManaFlaskChargesEvery3Seconds"] = { affix = "", "Mana Flasks gain (1-3) Charge every 3 seconds", statOrder = { 8176 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1193925814] = { "Mana Flasks gain (1-3) Charge every 3 seconds" }, } }, - ["MutatedUniqueUniqueAmulet6ReducedMaximumMana"] = { affix = "", "20% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "20% reduced maximum Mana" }, } }, - ["MutatedUniqueUniqueAmulet6IncreasedGoldFound"] = { affix = "", "20% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "20% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["MutatedUniqueBow4BowAttacksUsableWithoutMana"] = { affix = "", "Insufficient Mana doesn't prevent your Bow Attacks", statOrder = { 5337 }, level = 1, group = "BowAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "attack" }, tradeHashes = { [2564976564] = { "Insufficient Mana doesn't prevent your Bow Attacks" }, } }, + ["MutatedUniqueBow4AreaOfEffect"] = { affix = "", "(40-60)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(40-60)% increased Area of Effect" }, } }, + ["MutatedUniqueHelmetDex3ChaosResistance"] = { affix = "", "+(50-75)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(50-75)% to Chaos Resistance" }, } }, + ["MutatedUniqueHelmetDex5LocalIncreaseSocketedMinionGemLevel"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["MutatedUniqueHelmetDex5LifeReservationEfficiency"] = { affix = "", "32% increased Life Reservation Efficiency of Skills", statOrder = { 2249 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "32% increased Life Reservation Efficiency of Skills" }, } }, + ["MutatedUniqueBow18FasterIgnite"] = { affix = "", "Ignites you inflict deal Damage (20-40)% faster", statOrder = { 2590 }, level = 1, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (20-40)% faster" }, } }, + ["MutatedUniqueBow19SupportedByImmolate"] = { affix = "", "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 319 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 30 Immolate" }, } }, + ["MutatedUniqueBow19AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4669 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, + ["MutatedUniqueHelmetStr4FireDamageTakenAsPhysical"] = { affix = "", "30% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2470 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "30% of Fire Damage from Hits taken as Physical Damage" }, } }, + ["MutatedUniqueHelmetStr4TotemLifeIncreasedByOvercappedFireResistance"] = { affix = "", "Totem Life is increased by their Overcapped Fire Resistance", statOrder = { 10547 }, level = 1, group = "TotemLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [284063465] = { "Totem Life is increased by their Overcapped Fire Resistance" }, } }, + ["MutatedUniqueHelmetStr5SupportedByMinionLife"] = { affix = "", "Socketed Gems are Supported by Level 30 Minion Life", statOrder = { 515 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 30 Minion Life" }, } }, + ["MutatedUniqueAmulet37PhysicalDamageTakenAsFire"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(5-15)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["MutatedUniqueAmulet37NearbyEnemiesDebilitated"] = { affix = "", "Nearby Enemies are Debilitated", statOrder = { 8017 }, level = 1, group = "NearbyEnemiesDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2006060276] = { "Nearby Enemies are Debilitated" }, } }, + ["MutatedUniqueAmulet38KeystoneElementalOverload"] = { affix = "", "Elemental Overload", statOrder = { 10947 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, + ["MutatedUniqueWand15PowerChargeOnManaSpent"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 10890 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, + ["MutatedUniqueWand15GlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skill Gems" }, } }, + ["MutatedUniqueWand16ColdDamageOverTimeMultiplierPerPowerCharge"] = { affix = "", "+(15-20)% to Cold Damage over Time Multiplier per Power Charge", statOrder = { 5888 }, level = 1, group = "ColdDamageOverTimeMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [2936849585] = { "+(15-20)% to Cold Damage over Time Multiplier per Power Charge" }, } }, + ["MutatedUniqueBodyDex10PurityOfIceNoReservation"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9916 }, level = 1, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } }, + ["MutatedUniqueBodyDex10EvasionRatingPer10PlayerLife"] = { affix = "", "+6 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6571 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+6 to Evasion Rating per 10 Player Maximum Life" }, } }, + ["MutatedUniqueBodyDex11GhostDance"] = { affix = "", "Ghost Dance", statOrder = { 10952 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, + ["MutatedUniqueBodyDex11EvasionRatingPer10PlayerLife"] = { affix = "", "+8 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6571 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+8 to Evasion Rating per 10 Player Maximum Life" }, } }, + ["MutatedUniqueAmulet39PhysicalDamageTakenAsCold"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(5-15)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["MutatedUniqueAmulet39CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1861 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, + ["MutatedUniqueAmulet40CannotBeChilled"] = { affix = "", "Cannot be Chilled", statOrder = { 1860 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, + ["MutatedUniqueClaw16PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } }, + ["MutatedUniqueClaw16AccuracyRatingPercentPer25Intelligence"] = { affix = "", "3% increased Accuracy Rating per 25 Intelligence", statOrder = { 4554 }, level = 1, group = "AccuracyRatingPercentPer25Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4106889136] = { "3% increased Accuracy Rating per 25 Intelligence" }, } }, + ["MutatedUniqueClaw17PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } }, + ["MutatedUniqueClaw17CriticalStrikeMultiplierPer25Dexterity"] = { affix = "", "+3% to Critical Strike Multiplier per 25 Dexterity", statOrder = { 6032 }, level = 1, group = "CriticalStrikeMultiplierPer25Dexterity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [2846122155] = { "+3% to Critical Strike Multiplier per 25 Dexterity" }, } }, + ["MutatedUniqueShieldInt8DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6107 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, + ["MutatedUniqueShieldInt8AlwaysShockLowLifeEnemies"] = { affix = "", "Hits always Shock Enemies that are on Low Life", statOrder = { 4702 }, level = 1, group = "AlwaysShockLowLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2610583760] = { "Hits always Shock Enemies that are on Low Life" }, } }, + ["MutatedUniqueShieldInt9DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6107 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, + ["MutatedUniqueShieldInt9ChaosDamageDoesNotBypassESWhileNotLowMana"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", statOrder = { 5808 }, level = 1, group = "ChaosDamageDoesNotBypassESWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield", "chaos" }, tradeHashes = { [795512669] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Mana" }, } }, + ["MutatedUniqueAmulet41MaximumLightningResistance"] = { affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["MutatedUniqueAmulet41EnemyExtraDamageRolls"] = { affix = "", "Damage of Enemies Hitting you is Unlucky", statOrder = { 5066 }, level = 1, group = "EnemyExtraDamageRolls", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1937473464] = { "Damage of Enemies Hitting you is Unlucky" }, } }, + ["MutatedUniqueAmulet42ManaIncreasedPerOvercappedLightningResistUniqueAmulet42"] = { affix = "", "Mana is increased by 1% per 4% Overcapped Lightning Resistance", statOrder = { 8295 }, level = 1, group = "ManaIncreasedPerOvercappedLightningResistUniqueAmulet42", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "lightning" }, tradeHashes = { [3178534707] = { "Mana is increased by 1% per 4% Overcapped Lightning Resistance" }, } }, + ["MutatedUniqueBootsStr6IncreasedArmourWhileBleeding"] = { affix = "", "(50-100)% increased Armour while Bleeding", statOrder = { 4820 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [2466912132] = { "(50-100)% increased Armour while Bleeding" }, } }, + ["MutatedUniqueBootsStr6ImmuneToElementalAilmentsWhileBleeding"] = { affix = "", "Immune to Elemental Ailments while Bleeding", statOrder = { 7324 }, level = 1, group = "ImmuneToElementalAilmentsWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2526304488] = { "Immune to Elemental Ailments while Bleeding" }, } }, + ["MutatedUniqueBootsStr7GainEnduranceChargeEveryXSecondsWhileStationary"] = { affix = "", "Gain an Endurance Charge each second while Stationary", statOrder = { 6798 }, level = 1, group = "GainEnduranceChargePerXSecondsWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [3331206505] = { "Gain an Endurance Charge each second while Stationary" }, } }, + ["MutatedUniqueBottsStr7GainPowerChargeOnHitWhileBleeding"] = { affix = "", "Gain a Power Charge on Hit while Bleeding", statOrder = { 6899 }, level = 1, group = "GainPowerChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique", "ailment" }, tradeHashes = { [3468151987] = { "Gain a Power Charge on Hit while Bleeding" }, } }, + ["MutatedUniqueTwoHandAxe11WarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10727 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, + ["MutatedUniqueTwoHandAxe11WarcryCooldownSpeed"] = { affix = "", "500% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "500% increased Warcry Cooldown Recovery Rate" }, } }, + ["MutatedUniqueTwoHandAxe12PercentageIntelligence"] = { affix = "", "80% reduced Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "80% reduced Intelligence" }, } }, + ["MutatedUniqueTwoHandAxe12FasterBleedDamage"] = { affix = "", "Bleeding you inflict deals Damage (20-40)% faster", statOrder = { 6632 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (20-40)% faster" }, } }, + ["MutatedUniqueShieldStr8MaximumBlockChance"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, + ["MutatedUniqueShieldStr8ArmourAppliesToElementalIfBlockedRecently"] = { affix = "", "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4794 }, level = 1, group = "ArmourAppliesToElementalIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences" }, tradeHashes = { [1239225602] = { "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } }, + ["MutatedUniqueShieldStr9GainEnergyShieldOnBlock"] = { affix = "", "Gain (300-650) Energy Shield when you Block", statOrder = { 1782 }, level = 1, group = "GainEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (300-650) Energy Shield when you Block" }, } }, + ["MutatedUniqueOneHandSword22MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3415 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } }, + ["MutatedUniqueOneHandSword23MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3415 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } }, + ["MutatedUniqueOneHandSword22MinionBaseCriticalStrikeChance"] = { affix = "", "Minions have +5% to Critical Strike Chance", statOrder = { 9398 }, level = 1, group = "MinionBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "critical" }, tradeHashes = { [440812751] = { "Minions have +5% to Critical Strike Chance" }, } }, + ["MutatedUniqueOneHandSword23MinionSkillGemQuality"] = { affix = "", "+(20-30)% to Quality of all Minion Skill Gems", statOrder = { 9463 }, level = 1, group = "MinionSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [1723333214] = { "+(20-30)% to Quality of all Minion Skill Gems" }, } }, + ["MutatedUniqueBodyInt13SocketedGemQuality"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 213 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+20% to Quality of Socketed Gems" }, } }, + ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4673 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, + ["MutatedUniqueBodyInt14aSocketedGemQuality"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 213 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } }, + ["MutatedUniqueBodyInt14IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4673 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } }, + ["MutatedUniqueJewel85FireResistAlsoGrantsMaximumLifePercent"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Life at 50% of its value", statOrder = { 8187, 8187.1 }, level = 1, group = "UniqueJewelFireResistAlsoGrantsMaximumLifePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [4068640319] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Life at 50% of its value" }, [3802517517] = { "" }, } }, + ["MutatedUniqueJewel85ChaosResistancePerEnduranceCharge"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5820 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["MutatedUniqueJewel87ColdResistAlsoGrantsMaximumManaPercent"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Mana at 75% of its value", statOrder = { 8162, 8162.1 }, level = 1, group = "UniqueJewelColdResistAlsoGrantsMaximumManaPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "cold" }, tradeHashes = { [3802517517] = { "" }, [1535088208] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Mana at 75% of its value" }, } }, + ["MutatedUniqueJewel87MovementSpeedPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 1, group = "MovementSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "mutatedunique" }, tradeHashes = { [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, + ["MutatedUniqueJewel89LightningResistAlsoGrantsMaximumESPercent"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Energy Shield at 75% of its value", statOrder = { 8203, 8203.1 }, level = 1, group = "UniqueJewelLightningResistAlsoGrantsMaximumESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [3802517517] = { "" }, [1348513056] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant increased Maximum Energy Shield at 75% of its value" }, } }, + ["MutatedUniqueJewel89CriticalMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3318 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [4164870816] = { "+3% to Critical Strike Multiplier per Power Charge" }, } }, + ["MutatedUniqueJewel86UniqueJewelFireResistAlsoGrantsConvertFireToChaos"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Fire Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8186, 8186.1 }, level = 1, group = "UniqueJewelFireResistAlsoGrantsConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "chaos" }, tradeHashes = { [1124207360] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Fire Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel86ExtraDamageRollsWithFireIfBlockedAttackRecently"] = { affix = "", "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently", statOrder = { 6621 }, level = 1, group = "ExtraDamageRollsWithFireIfBlockedAttackRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "elemental", "fire" }, tradeHashes = { [3601177816] = { "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently" }, } }, + ["MutatedUniqueJewel88UniqueJewelColdResistAlsoGrantsConvertColdToChaos"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Cold Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8160, 8160.1 }, level = 1, group = "UniqueJewelColdResistAlsoGrantsConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "chaos" }, tradeHashes = { [248241207] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Cold Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel88ExtraDamageRollsWithColdIfSuppressedRecently"] = { affix = "", "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently", statOrder = { 6620 }, level = 1, group = "ExtraDamageRollsWithColdIfSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [3810337989] = { "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently" }, } }, + ["MutatedUniqueJewel90UniqueJewelLightningResistAlsoGrantsConvertLightningToChaos"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Lightning Damage Converted to Chaos Damage at 100% of its value", statOrder = { 8202, 8202.1 }, level = 1, group = "UniqueJewelLightningResistAlsoGrantsConvertLightningToChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "chaos" }, tradeHashes = { [1525329150] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Lightning Damage Converted to Chaos Damage at 100% of its value" }, [223497523] = { "" }, } }, + ["MutatedUniqueJewel90ExtraDamageRollsWithLightningIfBlockedSpellRecently"] = { affix = "", "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently", statOrder = { 6622 }, level = 1, group = "ExtraDamageRollsWithLightningIfBlockedSpellRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [1327356547] = { "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently" }, } }, + ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 417 }, level = 1, group = "DisplaySocketedGemsSupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1792524915] = { "Socketed Gems are Supported by Level 20 Intensify" }, } }, + ["MutatedUniqueBodyDexInt1AuraEffectOnEnemies"] = { affix = "", "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3603 }, level = 1, group = "AuraEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1636209393] = { "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, + ["MutatedUniqueGlovesInt4DisplaySocketedGemsSupportedByFocusedChannelling"] = { affix = "", "Socketed Gems are Supported by Level 18 Focused Channelling", statOrder = { 514 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1948535732] = { "Socketed Gems are Supported by Level 18 Focused Channelling" }, } }, + ["MutatedUniqueBelt7CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2062 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["MutatedUniqueBodyInt12HeraldOfDoom"] = { affix = "", "Lone Messenger", statOrder = { 10955 }, level = 1, group = "KeystoneHeraldOfDoom", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [155220198] = { "Lone Messenger" }, } }, + ["MutatedUniqueBodyInt12HeraldEffectOnSelf"] = { affix = "", "(80-100)% increased Effect of Herald Buffs on you", statOrder = { 7204 }, level = 1, group = "HeraldEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [870531513] = { "(80-100)% increased Effect of Herald Buffs on you" }, } }, + ["MutatedUniqueBodyInt16LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["MutatedUniqueShieldStrDex7LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["MutatedUniqueFishingRod1FishingMutatedFish"] = { affix = "", "You can catch Foulborn Fish", statOrder = { 5459 }, level = 1, group = "FishingMutatedFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3564016014] = { "You can catch Foulborn Fish" }, } }, + ["MutatedUniqueFishingRod1FishingLureType"] = { affix = "", "Wombgift Bait", statOrder = { 2880 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Wombgift Bait" }, } }, + ["MutatedUniqueFishingRod2AvoidInterruptionWhileCasting"] = { affix = "", "(30-40)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1916706958] = { "(30-40)% chance to Ignore Stuns while Casting" }, } }, + ["MutatedUniqueFishingRod2FishingLureType"] = { affix = "", "Otherworldly Lure", statOrder = { 2880 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Otherworldly Lure" }, } }, + ["MutatedUniqueRing9IncreasedAttackSpeedWhenOnLowLife"] = { affix = "", "(12-16)% increased Attack Speed when on Low Life", statOrder = { 1244 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [1921572790] = { "(12-16)% increased Attack Speed when on Low Life" }, } }, + ["MutatedUniqueBodyDex6DamageTaken"] = { affix = "", "25% increased Damage taken", statOrder = { 2261 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3691641145] = { "25% increased Damage taken" }, } }, + ["MutatedUniqueWand2MaximumGolems"] = { affix = "", "+2 to maximum number of Summoned Golems", statOrder = { 3726 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2821079699] = { "+2 to maximum number of Summoned Golems" }, } }, + ["MutatedUniqueShieldDex9TreatElementalResistanceAsInverted"] = { affix = "", "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10578 }, level = 1, group = "TreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental" }, tradeHashes = { [3593401321] = { "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, + ["MutatedUniqueGlovesDex2ActionSpeedMinimum90"] = { affix = "", "Your Action Speed is at least 90% of base value", statOrder = { 177 }, level = 1, group = "ActionSpeedMinimum90", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [179010262] = { "Your Action Speed is at least 90% of base value" }, } }, + ["MutatedUniqueGlovesDex2CriticalStrikesNonDamagingAilmentEffect"] = { affix = "", "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9638 }, level = 1, group = "CriticalStrikesNonDamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [3772078232] = { "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } }, + ["MutatedUniqueOneHandMace3AreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(20-30)% increased Area of Effect" }, } }, + ["MutatedUniqueHelmetStrDex3WarcryBuffEffect"] = { affix = "", "(20-35)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 1, group = "WarcryBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3037553757] = { "(20-35)% increased Warcry Buff Effect" }, } }, + ["MutatedUniqueHelmetStrDex3WarcryCooldownSpeed"] = { affix = "", "(20-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "(20-40)% increased Warcry Cooldown Recovery Rate" }, } }, + ["MutatedUniqueOneHandMace3LightningBoltOnHit"] = { affix = "", "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown", statOrder = { 794 }, level = 1, group = "LightningBoltOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [3195558548] = { "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown" }, [1478425331] = { "" }, } }, + ["MutatedUniqueClaw13CrushOnHitChance"] = { affix = "", "25% chance to Crush on Hit", statOrder = { 5733 }, level = 1, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [2228892313] = { "25% chance to Crush on Hit" }, } }, + ["MutatedUniqueRing18RecoupWhileFrozen"] = { affix = "", "25% of Damage taken while Frozen Recouped as Life", statOrder = { 6211 }, level = 1, group = "RecoupWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [2585984986] = { "25% of Damage taken while Frozen Recouped as Life" }, } }, + ["MutatedUniqueRing18ActionSpeedMinimumWhileIgnited"] = { affix = "", "Action Speed cannot be modified to below Base Value while Ignited", statOrder = { 4568 }, level = 1, group = "ActionSpeedMinimumWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "speed", "ailment" }, tradeHashes = { [2146687910] = { "Action Speed cannot be modified to below Base Value while Ignited" }, } }, + ["MutatedUniqueTwoHandSword8RecoupedAsLifePerRedGem"] = { affix = "", "10% of Damage taken Recouped as Life per Socketed Red Gem", statOrder = { 6210 }, level = 1, group = "RecoupedAsLifePerRedGem", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "gem" }, tradeHashes = { [902847342] = { "10% of Damage taken Recouped as Life per Socketed Red Gem" }, } }, + ["MutatedUniqueTwoHandSword8ImmortalAmbitionIfAllSocketsRed"] = { affix = "", "You have Immortal Ambition while all Socketed Gems are Red", statOrder = { 8047 }, level = 1, group = "ImmortalAmbitionIfAllSocketsRed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2954550164] = { "You have Immortal Ambition while all Socketed Gems are Red" }, } }, + ["MutatedUniqueHelmStrInt7MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems"] = { affix = "", "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", statOrder = { 9268 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [70766949] = { "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted" }, } }, + ["MutatedUniqueClaw13PhysicalSkillEffectDurationPerIntelligence"] = { affix = "", "Physical Skills have 1% increased Duration per 12 Intelligence", statOrder = { 3836 }, level = 1, group = "PhysicalSkillEffectDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attribute" }, tradeHashes = { [2632037464] = { "Physical Skills have 1% increased Duration per 12 Intelligence" }, } }, + ["MutatedUniqueBelt14MaximumLifeOnChillPercent"] = { affix = "", "Recover 2% of Life when you Chill a non-Chilled Enemy", statOrder = { 9984 }, level = 1, group = "MaximumLifeOnChillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "cold", "ailment" }, tradeHashes = { [3883840239] = { "Recover 2% of Life when you Chill a non-Chilled Enemy" }, } }, + ["MutatedUniqueRing19FrozenMonstersTakePercentIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 10% increased Damage", statOrder = { 6780 }, level = 1, group = "FrozenMonstersTakePercentIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [1588094148] = { "Enemies Frozen by you take 10% increased Damage" }, } }, + ["MutatedUniqueBodyInt16BlueSocketGemsIgnoreAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", statOrder = { 8050 }, level = 1, group = "BlueSocketGemsIgnoreAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2852307173] = { "Ignore Attribute Requirements of Gems Socketed in Blue Sockets" }, } }, + ["MutatedUniqueRing20IgnitedEnemiesExplode"] = { affix = "", "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite", statOrder = { 7308 }, level = 1, group = "IgnitedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [321971518] = { "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite" }, } }, + ["MutatedUniqueShieldInt1DamageOverTimePer100PlayerMaxLife"] = { affix = "", "Deal 3% increased Damage Over Time per 100 Player Maximum Life", statOrder = { 6109 }, level = 1, group = "DamageOverTimePer100PlayerMaxLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [1855381243] = { "Deal 3% increased Damage Over Time per 100 Player Maximum Life" }, } }, + ["MutatedUniqueRing9ExtraDamageRollsWhileLowLife"] = { affix = "", "Your Damage with Hits is Lucky while on Low Life", statOrder = { 4597 }, level = 1, group = "ExtraDamageRollsWhileLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [204466006] = { "Your Damage with Hits is Lucky while on Low Life" }, } }, + ["MutatedUniqueBodyInt21ChaosDamageTakenRecoupedAsLifeActual"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5828 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } }, + ["MutatedUniqueBodyStrDex7WarcriesAreDisabled"] = { affix = "", "Your Warcries are disabled", statOrder = { 10857 }, level = 1, group = "WarcriesAreDisabled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [345628839] = { "Your Warcries are disabled" }, } }, + ["MutatedUniqueRing13LeftRingSlotEvasionRating"] = { affix = "", "Left ring slot: +1000 to Evasion Rating", statOrder = { 2698 }, level = 1, group = "LeftRingSlotEvasionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [674502195] = { "Left ring slot: +1000 to Evasion Rating" }, } }, + ["MutatedUniqueRing13RightRingSlotArmour"] = { affix = "", "Right ring slot: +1000 to Armour", statOrder = { 2677 }, level = 1, group = "RightRingSlotArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1223912433] = { "Right ring slot: +1000 to Armour" }, } }, + ["MutatedUniqueShieldStrDex8SpellBlockPercentage"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } }, + ["MutatedUniqueShieldStrDex8MonsterChanceToAvoid"] = { affix = "", "(10-15)% chance to Avoid Damage of each Type from Hits", statOrder = { 4990 }, level = 1, group = "MonsterChanceToAvoid", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [407415930] = { "(10-15)% chance to Avoid Damage of each Type from Hits" }, } }, + ["MutatedUniqueBelt14AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4669 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, + ["MutatedUniqueRing20ShockedEnemiesExplode"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10165, 10165.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, + ["MutatedUniqueBodyDexInt2GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2198 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, + ["MutatedUniqueBodyDexInt2EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10945 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["MutatedUniqueShieldDex9DegenDamageTaken"] = { affix = "", "(10-15)% reduced Damage taken from Damage Over Time", statOrder = { 2268 }, level = 1, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1101403182] = { "(10-15)% reduced Damage taken from Damage Over Time" }, } }, + ["MutatedUniqueGlovesStr12RageLossDelay"] = { affix = "", "Inherent Rage Loss starts 2 seconds later", statOrder = { 9941 }, level = 1, group = "RageLossDelay", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2842935061] = { "Inherent Rage Loss starts 2 seconds later" }, } }, + ["MutatedUniqueBodyStrDex8AttackDamage"] = { affix = "", "100% increased Attack Damage", statOrder = { 1221 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } }, + ["MutatedUniqueBodyInt2DamageWhileIgnited"] = { affix = "", "(50-100)% increased Damage while Ignited", statOrder = { 2836 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1686122637] = { "(50-100)% increased Damage while Ignited" }, } }, + ["MutatedUniqueBodyInt2FireDamageLifeLeechPermyriad"] = { affix = "", "(5-7)% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(5-7)% of Fire Damage Leeched as Life" }, } }, + ["MutatedUniqueHelmetDexInt4ChaosDamageCanShock"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2904 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, + ["MutatedUniqueHelmetDexInt4ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5054 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, + ["MutatedUniqueHelmetDexInt4ChaosDamageCanFreeze"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2903 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } }, + ["MutatedUniqueQuiver7StartEnergyShieldRechargeOnSkillChance"] = { affix = "", "(10-15)% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6537 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "(10-15)% chance for Energy Shield Recharge to start when you use a Skill" }, } }, + ["MutatedUniqueQuiver7MaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 9286 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["MutatedUniqueBow12DisplaySupportedBySummonPhantasm"] = { affix = "", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 419 }, level = 1, group = "DisplaySupportedBySummonPhantasm", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2169409479] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, } }, + ["MutatedUniqueBow12SummonWrithingWormEveryXMs"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 631 }, level = 1, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } }, + ["MutatedUniqueBow12MinionAddedChaosDamage"] = { affix = "", "Minions deal (25-35) to (50-65) additional Chaos Damage", statOrder = { 3805 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (25-35) to (50-65) additional Chaos Damage" }, } }, + ["MutatedUniqueTwoHandMace8IncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (50-70)% increased Damage if you've Hit Recently", statOrder = { 9428 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (50-70)% increased Damage if you've Hit Recently" }, } }, + ["MutatedUniqueTwoHandMace8DoubleAnimateWeaponLimit"] = { affix = "", "Maximum number of Animated Weapons is Doubled", statOrder = { 6350 }, level = 1, group = "DoubleAnimateWeaponLimit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [737980235] = { "Maximum number of Animated Weapons is Doubled" }, } }, + ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1456 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3683134121] = { "20% increased Attack Speed with Movement Skills" }, } }, + ["MutatedUniqueHelmetStrDex2ChanceToSuppressSpells"] = { affix = "", "+(10-20)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(10-20)% chance to Suppress Spell Damage" }, } }, + ["MutatedUniqueBow6ProjectilesPierceAllNearbyTargets"] = { affix = "", "Projectiles Pierce all nearby Targets", statOrder = { 9896 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1284333657] = { "Projectiles Pierce all nearby Targets" }, } }, + ["MutatedUniqueJewel174BurnDurationForJewel"] = { affix = "", "(25-50)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDurationForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(25-50)% increased Ignite Duration on Enemies" }, } }, + ["MutatedUniqueJewel174FireDamageOverTimeMultiplier"] = { affix = "", "+(10-15)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(10-15)% to Fire Damage over Time Multiplier" }, } }, + ["MutatedUniqueJewel175CurseEnemiesExplode25%Chaos"] = { affix = "", "Cursed Enemies you or your Minions Kill have a (10-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3342 }, level = 1, group = "CurseEnemiesExplode25%Chaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [1763939859] = { "Cursed Enemies you or your Minions Kill have a (10-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, + ["MutatedUniqueJewel175CurseDuration"] = { affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 6084 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (10-15)% increased Skill Effect Duration" }, } }, + ["MutatedUniqueJewel173ShockEffect"] = { affix = "", "(25-50)% increased Effect of Shock", statOrder = { 10153 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-50)% increased Effect of Shock" }, } }, + ["MutatedUniqueJewel173ShockDuration"] = { affix = "", "(10-15)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(10-15)% increased Shock Duration on Enemies" }, } }, + ["MutatedUniqueJewel177SpellDamageSuppressed"] = { affix = "", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(3-5)% of Suppressed Spell Damage" }, } }, + ["MutatedUniqueJewel177ChanceToSuppressSpells"] = { affix = "", "+(5-10)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(5-10)% chance to Suppress Spell Damage" }, } }, + ["MutatedUniqueJewel112Medium"] = { affix = "", "75% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8213, 8214 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [607548408] = { "75% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, + ["MutatedUniqueJewel112Small"] = { affix = "", "100% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8213, 8214 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [607548408] = { "100% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, + ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10950 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, + ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7439 }, level = 1, group = "AnimalCharmLeechPercentIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3561837752] = { "(8-12)% of Leech is Instant" }, } }, + ["MutatedUniqueBelt13CurseEffectOnYou"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, + ["MutatedUniqueBodyStr7PrismaticBulwark"] = { affix = "", "Transcendence", statOrder = { 10970 }, level = 1, group = "PrismaticBulwark", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2381571742] = { "Transcendence" }, } }, + ["MutatedUniqueBodyStr7GainNoInherentBonusFromStrength"] = { affix = "", "Gain no inherent bonuses from Strength", statOrder = { 2040 }, level = 1, group = "GainNoInherentBonusFromStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [2035199242] = { "Gain no inherent bonuses from Strength" }, } }, + ["MutatedUniqueBelt19FlaskChargesUsed"] = { affix = "", "100% increased Flask Charges used", statOrder = { 2207 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [644456512] = { "100% increased Flask Charges used" }, } }, + ["MutatedUniqueBelt19AnimalCharmFlaskChargesEvery3Secondsage"] = { affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3514 }, level = 1, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, + ["MutatedUniqueAmulet43ChaosDamageTakenRecoupedAsLife"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5828 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } }, + ["MutatedUniqueAmulet43RecoupEnergyShieldInsteadOfLife"] = { affix = "", "Recoup Energy Shield instead of Life", statOrder = { 7489 }, level = 1, group = "RecoupEnergyShieldInsteadOfLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [4074053582] = { "Recoup Energy Shield instead of Life" }, } }, + ["MutatedUniqueBow18DisplaySupportedByReturningProjectiles"] = { affix = "", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 418 }, level = 1, group = "DisplaySupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1549219417] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, } }, + ["MutatedUniqueGlovesDexInt7PoisonSpread"] = { affix = "", "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", statOrder = { 1065 }, level = 1, group = "PoisonSpread", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [3559020159] = { "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned" }, } }, + ["MutatedUniqueGlovesDexInt7FasterPoisonDamage"] = { affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6633 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "mutatedunique", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (15-20)% faster" }, } }, + ["MutatedUniqueAmulet14GainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6903 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, + ["MutatedUniqueAmulet14LosePowerChargesOnMaxPowerCharges"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3639 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, + ["MutatedUniqueRing2WarcryMonsterPower"] = { affix = "", "(20-30)% increased total Power counted by Warcries", statOrder = { 10729 }, level = 1, group = "WarcryMonsterPower", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2663359259] = { "(20-30)% increased total Power counted by Warcries" }, } }, + ["MutatedUniqueHelmetDexInt1MinionDoubleDamage"] = { affix = "", "Minions have 20% chance to deal Double Damage", statOrder = { 9411 }, level = 1, group = "MinionDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [755922799] = { "Minions have 20% chance to deal Double Damage" }, } }, + ["MutatedUniqueRing4TemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2545 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, + ["MutatedUniqueRing4VulnerabilityOnHit"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2546 }, level = 1, group = "VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1826297223] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["MutatedUniqueRing4EnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2539 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, + ["MutatedUniqueHelmetStrInt2HeraldOfPurityAdditionalMinion"] = { affix = "", "+(2-3) to maximum number of Sentinels of Purity", statOrder = { 5099 }, level = 1, group = "HeraldOfPurityAdditionalMinion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2836937264] = { "+(2-3) to maximum number of Sentinels of Purity" }, } }, + ["MutatedUniqueBootsStrDex1MovementVelocityOnFullLife"] = { affix = "", "40% increased Movement Speed when on Full Life", statOrder = { 1823 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3393547195] = { "40% increased Movement Speed when on Full Life" }, } }, + ["MutatedUniqueGlovesInt1IncreasedGold"] = { affix = "", "(5-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7404 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(5-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["MutatedUniqueBelt4PercentageStrength"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, + ["MutatedUniqueBodyStrInt2MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["MutatedUniqueGlovesDexInt2UnarmedAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect while Unarmed", statOrder = { 3087 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2216127021] = { "(20-30)% increased Area of Effect while Unarmed" }, } }, + ["MutatedUniqueBootsDex2IncreasedGold"] = { affix = "", "(20-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7404 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(20-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["MutatedUniqueBootsDex3ActionSpeedReduction"] = { affix = "", "(6-12)% increased Action Speed", statOrder = { 4571 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "(6-12)% increased Action Speed" }, } }, + ["MutatedUniqueBodyStr2LocalPhysicalDamageReductionRating"] = { affix = "", "+(500-800) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(500-800) to Armour" }, } }, + ["MutatedUniqueBodyDex3MeleeFireDamage"] = { affix = "", "(75-150)% increased Melee Fire Damage", statOrder = { 2005 }, level = 1, group = "MeleeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3630160064] = { "(75-150)% increased Melee Fire Damage" }, } }, + ["MutatedUniqueShieldInt2LocalIncreaseSocketedAuraLevel"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, + ["MutatedUniqueRing6CriticalStrikeMultiplier"] = { affix = "", "+(10-30)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-30)% to Global Critical Strike Multiplier" }, } }, + ["MutatedUniqueRing6AllDefences"] = { affix = "", "(10-30)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1389153006] = { "(10-30)% increased Global Defences" }, } }, + ["MutatedUniqueHelmetDex4IncreasedMana"] = { affix = "", "+(100-200) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1050105434] = { "+(100-200) to maximum Mana" }, } }, + ["MutatedUniqueShieldStrInt5FlatEnergyShieldRegenerationPerMinute"] = { affix = "", "Regenerate (100-200) Energy Shield per second", statOrder = { 2671 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (100-200) Energy Shield per second" }, } }, + ["MutatedUniqueShieldStrInt5CastSpeedOnLowLife"] = { affix = "", "(10-20)% increased Cast Speed when on Low Life", statOrder = { 2022 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "speed" }, tradeHashes = { [1136768410] = { "(10-20)% increased Cast Speed when on Low Life" }, } }, + ["MutatedUniqueBodyDex5MovementSkillCooldown"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 9539 }, level = 1, group = "MovementSkillCooldown", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1124980805] = { "(20-40)% increased Cooldown Recovery Rate of Movement Skills" }, } }, + ["MutatedUniqueBootsStrDex2IncreasedAccuracyPerFrenzy"] = { affix = "", "(4-8)% increased Accuracy Rating per Frenzy Charge", statOrder = { 2073 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3700381193] = { "(4-8)% increased Accuracy Rating per Frenzy Charge" }, } }, + ["MutatedUniqueBodyInt7SupportedByFlamewood"] = { affix = "", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 290 }, level = 1, group = "SupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, } }, + ["MutatedUniqueGlovesInt6ChaosDamagePerCorruptedItem"] = { affix = "", "(10-15)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3133 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(10-15)% increased Chaos Damage for each Corrupted Item Equipped" }, } }, + ["MutatedUniqueRing7NonDamagingAilmentEffectOnSelf"] = { affix = "", "50% reduced Effect of Non-Damaging Ailments on you", statOrder = { 9635 }, level = 1, group = "NonDamagingAilmentEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [1519474779] = { "50% reduced Effect of Non-Damaging Ailments on you" }, } }, + ["MutatedUniqueClaw6ChaosDamage"] = { affix = "", "(100-120)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-120)% increased Chaos Damage" }, } }, + ["MutatedUniqueRing11ConsecratedGroundEffect"] = { affix = "", "(25-40)% increased Effect of Consecrated Ground you create", statOrder = { 5929 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4058190193] = { "(25-40)% increased Effect of Consecrated Ground you create" }, } }, + ["MutatedUniqueTwoHandMace6KeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["MutatedUniqueTwoHandMace6LoseLifePercentOnCrit"] = { affix = "", "Lose 1% of Life when you deal a Critical Strike", statOrder = { 8255 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose 1% of Life when you deal a Critical Strike" }, } }, + ["MutatedUniqueRing17IncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["MutatedUniqueBodyStr4ElementalDamageTakenAsChaos"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2478 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } }, + ["MutatedUniqueShieldDex4ChaosDamageOverTimeMultiplier"] = { affix = "", "+(23-37)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(23-37)% to Chaos Damage over Time Multiplier" }, } }, + ["MutatedUniqueHelmetStrInt4MaximumLifeIncreasePercent"] = { affix = "", "50% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } }, + ["MutatedUniqueGlovesStrInt1SelfCurseDuration"] = { affix = "", "(-30-30)% reduced Duration of Curses on you", statOrder = { 2194 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2920970371] = { "(-30-30)% reduced Duration of Curses on you" }, } }, + ["MutatedUniqueGlovesDexInt5LocalEnergyShield"] = { affix = "", "+(100-130) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-130) to maximum Energy Shield" }, } }, + ["MutatedUniqueBootsStrInt2PercentageIntelligence"] = { affix = "", "(15-18)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(15-18)% increased Intelligence" }, } }, + ["MutatedUniqueQuiver3ImpaleEffect"] = { affix = "", "(20-30)% increased Impale Effect", statOrder = { 7343 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [298173317] = { "(20-30)% increased Impale Effect" }, } }, + ["MutatedUniqueQuiver4BowStunThresholdReduction"] = { affix = "", "50% reduced Enemy Stun Threshold with Bows", statOrder = { 1542 }, level = 1, group = "BowStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2410484864] = { "50% reduced Enemy Stun Threshold with Bows" }, } }, + ["MutatedUniqueBodyInt9MinionHasUnholyMight"] = { affix = "", "Minions have Unholy Might", statOrder = { 9441 }, level = 1, group = "MinionHasUnholyMight", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [1436083424] = { "Minions have Unholy Might" }, } }, + ["MutatedUniqueWand6WeaponTreeFishingWishEffectOfAncientFish"] = { affix = "", "(30-50)% increased effect of Wishes granted by Ancient Fish", statOrder = { 6704 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [796951852] = { "(30-50)% increased effect of Wishes granted by Ancient Fish" }, } }, + ["MutatedUniqueRing24MaximumFireResist"] = { affix = "", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["MutatedUniqueBodyStrDex4PhysicalDamageTakenAsChaos"] = { affix = "", "20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["MutatedUniqueGlovesStrInt2LifeRegenerationRatePercentage"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1600 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, + ["MutatedUniqueGlovesStrDex5VaalSkillDuration"] = { affix = "", "Vaal Skills have (20-40)% increased Skill Effect Duration", statOrder = { 3139 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (20-40)% increased Skill Effect Duration" }, } }, + ["MutatedUniqueGlovesDexInt6BlindEffect"] = { affix = "", "(20-30)% increased Blind Effect", statOrder = { 5291 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1585769763] = { "(20-30)% increased Blind Effect" }, } }, + ["MutatedUniqueTwoHandAxe8SpellDamage"] = { affix = "", "(120-140)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "mutatedunique", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-140)% increased Spell Damage" }, } }, + ["MutatedUniqueTwoHandSword7AccuracyRatingPerLevel"] = { affix = "", "+(6-8) to Accuracy Rating per Level", statOrder = { 4559 }, level = 1, group = "AccuracyRatingPerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [539841130] = { "+(6-8) to Accuracy Rating per Level" }, } }, + ["MutatedUniqueShieldDex6ImpaleChanceForJewel"] = { affix = "", "(20-40)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attack" }, tradeHashes = { [3739863694] = { "(20-40)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["MutatedUniqueRing26ManaPerLevel"] = { affix = "", "+2 Maximum Mana per Level", statOrder = { 8299 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2563691316] = { "+2 Maximum Mana per Level" }, } }, + ["MutatedUniqueBelt12ConvertLightningDamageToChaos"] = { affix = "", "40% of Lightning Damage Converted to Chaos Damage", statOrder = { 1989 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "mutatedunique", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "40% of Lightning Damage Converted to Chaos Damage" }, } }, + ["MutatedUniqueRing27DebuffTimePassed"] = { affix = "", "Debuffs on you expire (-20-20)% slower", statOrder = { 6238 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (-20-20)% slower" }, } }, + ["MutatedUniqueBodyStr5ExperienceIncrease"] = { affix = "", "5% increased Experience gain", statOrder = { 1626 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, + ["MutatedUniqueAmulet20CurseEffectTemporalChains"] = { affix = "", "(20-30)% increased Temporal Chains Curse Effect", statOrder = { 4044 }, level = 1, group = "CurseEffectTemporalChains", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1662974426] = { "(20-30)% increased Temporal Chains Curse Effect" }, } }, + ["MutatedUniqueHelmetInt9WeaponTreeSupportImpendingDoom"] = { affix = "", "Socketed Gems are Supported by Level 30 Impending Doom", statOrder = { 321 }, level = 1, group = "WeaponTreeSupportImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3227145554] = { "Socketed Gems are Supported by Level 30 Impending Doom" }, } }, + ["MutatedUniqueRing32EnergyShieldAndMana"] = { affix = "", "+(0-60) to maximum Energy Shield", "+(0-60) to maximum Mana", statOrder = { 1580, 1602 }, level = 1, group = "EnergyShieldAndMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(0-60) to maximum Mana" }, [3489782002] = { "+(0-60) to maximum Energy Shield" }, } }, + ["MutatedUniqueRing33MinionSkillManaCost"] = { affix = "", "(10-20)% reduced Mana Cost of Minion Skills", statOrder = { 9464 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-20)% reduced Mana Cost of Minion Skills" }, } }, + ["MutatedUniqueRing33MinionSkillManaCostEfficiency"] = { affix = "", "(20-30)% increased Mana Cost Efficiency of Minion Skills", statOrder = { 5091 }, level = 1, group = "MinionSkillManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, tradeHashes = { [2407942498] = { "(20-30)% increased Mana Cost Efficiency of Minion Skills" }, } }, + ["MutatedUniqueStaff10DisplaySocketedSkillsChain"] = { affix = "", "Socketed Gems Chain 2 additional times", statOrder = { 551 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 2 additional times" }, } }, + ["MutatedUniqueBodyDexInt4NonCurseAuraDuration"] = { affix = "", "Non-Curse Aura Skills have (40-80)% increased Duration", statOrder = { 10201 }, level = 1, group = "NonCurseAuraDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4152389562] = { "Non-Curse Aura Skills have (40-80)% increased Duration" }, } }, + ["MutatedUniqueDagger10ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5054 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, + ["MutatedUniqueBodyStr6ChanceToAvoidProjectiles"] = { affix = "", "25% chance to avoid Projectiles", statOrder = { 5046 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3452269808] = { "25% chance to avoid Projectiles" }, } }, + ["MutatedUniqueOneHandAxe8LocalIncreasedAttackSpeed"] = { affix = "", "(30-50)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(30-50)% increased Attack Speed" }, } }, + ["MutatedUniqueHelmetDexInt6RetaliationSkillCooldownRecoveryRate"] = { affix = "", "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate", statOrder = { 5972 }, level = 1, group = "RetaliationSkillCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1173860008] = { "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate" }, } }, + ["MutatedUniqueAmluet24EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10945 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["MutatedUniqueShieldInt6EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 100% reduced Critical Strike Chance", statOrder = { 6492 }, level = 1, group = "EnchantmentBlind", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have 100% reduced Critical Strike Chance" }, } }, + ["MutatedUniqueGlovesStrDex7SupportedByManaforgedArrows"] = { affix = "", "Socketed Gems are Supported by Level 5 Manaforged Arrows", statOrder = { 342 }, level = 1, group = "SupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [4022502578] = { "Socketed Gems are Supported by Level 5 Manaforged Arrows" }, } }, + ["MutatedUniqueTwoHandSword9LocalLightningDamage"] = { affix = "", "Adds 1 to 777 Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 777 Lightning Damage" }, } }, + ["MutatedUniqueSceptre13ColdDamageOverTimeMultiplier"] = { affix = "", "+(30-40)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(30-40)% to Cold Damage over Time Multiplier" }, } }, + ["MutatedUniqueOneHandAxe9MeleeHitsCannotBeEvadedWhileWieldingSword"] = { affix = "", "Your Melee Hits can't be Evaded while wielding a Sword", statOrder = { 9317 }, level = 1, group = "MeleeHitsCannotBeEvadedWhileWieldingSword", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2537902937] = { "Your Melee Hits can't be Evaded while wielding a Sword" }, } }, + ["MutatedUniqueOneHandSword15DualWieldingSpellBlockForJewel"] = { affix = "", "+10% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1168 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [138741818] = { "+10% Chance to Block Spell Damage while Dual Wielding" }, } }, + ["MutatedUniqueShieldInt7DodgeChancePerPowerCharge"] = { affix = "", "+4% chance to Suppress Spell Damage per Power Charge", statOrder = { 10321 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1309947938] = { "+4% chance to Suppress Spell Damage per Power Charge" }, } }, + ["MutatedUniqueOneHandMace10LocalCriticalStrikeChance"] = { affix = "", "(60-100)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-100)% increased Critical Strike Chance" }, } }, + ["MutatedUniqueWand14MinionPhysicalDamageAddedAsFire"] = { affix = "", "Minions gain (20-40)% of Physical Damage as Extra Fire Damage", statOrder = { 9458 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain (20-40)% of Physical Damage as Extra Fire Damage" }, } }, + ["MutatedUniqueHelmStrInt7LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems"] = { affix = "", "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", statOrder = { 10790 }, level = 1, group = "LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [1750141122] = { "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted" }, } }, + ["MutatedUniqueGlovesInt4GainManaCostReductionOnManaSpent"] = { affix = "", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", statOrder = { 8280 }, level = 1, group = "GainManaCostReductionOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1375431760] = { "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana" }, } }, + ["MutatedUniqueGlovesInt4GainManaCostEfficiencyOnManaSpent"] = { affix = "", "100% increased Mana Cost Efficiency for 2 seconds after Spending a total of 800 Mana", statOrder = { 5087 }, level = 1, group = "GainManaCostEfficiencyOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2814910323] = { "100% increased Mana Cost Efficiency for 2 seconds after Spending a total of 800 Mana" }, } }, + ["MutatedUniqueBelt7GainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds", statOrder = { 6916 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds" }, } }, + ["MutatedUniqueShieldStrDex7LocalGemsSocketedHaveNoAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Socketed Gems", statOrder = { 8049 }, level = 1, group = "LocalGemsSocketedHaveNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3850932596] = { "Ignore Attribute Requirements of Socketed Gems" }, } }, + ["MutatedUniqueRing19EnemiesShockedByHitsAreDebilitated"] = { affix = "", "Enemies Shocked by you are Debilitated", statOrder = { 6485 }, level = 25, group = "EnemiesShockedByHitsAreDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2983226297] = { "Enemies Shocked by you are Debilitated" }, } }, + ["MutatedUniqueShieldInt1NonDamagingAilmentWithCritsEffectPer100MaxLife"] = { affix = "", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", statOrder = { 9633 }, level = 1, group = "NonDamagingAilmentWithCritsEffectPer100MaxLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [1572854306] = { "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life" }, } }, + ["MutatedUniqueBodyInt21MaximumEnergyShieldIsEqualToPercentOfMaximumLife"] = { affix = "", "Your Maximum Energy Shield is Equal to 35% of Your Maximum Life", statOrder = { 9259 }, level = 1, group = "MaximumEnergyShieldIsEqualToPercentOfMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4053338379] = { "Your Maximum Energy Shield is Equal to 35% of Your Maximum Life" }, } }, + ["MutatedUniqueBodyDex6ProjectileSpeedPercentPerEvasionRatingUpToCap"] = { affix = "", "1% increased Projectile Speed per 600 Evasion Rating, up to 75%", statOrder = { 9887 }, level = 1, group = "ProjectileSpeedPercentPerEvasionRatingUpToCap", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1382953917] = { "1% increased Projectile Speed per 600 Evasion Rating, up to 75%" }, } }, + ["MutatedUniqueWand2LifeAndEnergyShieldDegenPerMinion"] = { affix = "", "Lose 0.5% Life and Energy Shield per Second per Minion", statOrder = { 7440 }, level = 1, group = "LifeAndEnergyShieldDegenPerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [1383458163] = { "Lose 0.5% Life and Energy Shield per Second per Minion" }, } }, + ["MutatedUniqueBow6ChinsolDamageAgainstEnemiesOutsideCloseRange"] = { affix = "", "50% more Damage with Arrow Hits not at Close Range", statOrder = { 2468 }, level = 1, group = "ChinsolDamageAgainstEnemiesOutsideCloseRange", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [402730593] = { "50% more Damage with Arrow Hits not at Close Range" }, } }, + ["MutatedUniqueJewel125GrantsAllBonusesOfUnallocatedNotablesInRadius"] = { affix = "", "Grants all bonuses of Unallocated Notable Passive Skills in Radius", statOrder = { 8068 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [3530244373] = { "Grants all bonuses of Unallocated Notable Passive Skills in Radius" }, } }, + ["MutatedUniqueJewel125AllocatedNotablePassiveSkillsInRadiusDoNothing"] = { affix = "", "Allocated Notable Passive Skills in Radius grant nothing", statOrder = { 8066 }, level = 1, group = "AllocatedNotablePassiveSkillsInRadiusDoNothing", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [680202695] = { "Allocated Notable Passive Skills in Radius grant nothing" }, } }, + ["MutatedUniqueJewel6KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected"] = { affix = "", "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10875, 10875.1 }, level = 1, group = "KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1211779989] = { "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, [3802517517] = { "" }, } }, + ["MutatedUniqueJewel177ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", statOrder = { 10331 }, level = 1, group = "ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [860891010] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value" }, } }, + ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius"] = { affix = "", "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3091 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [4151744887] = { "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, + ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius"] = { affix = "", "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3092 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [370099215] = { "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, [3802517517] = { "" }, } }, + ["MutatedUniqueJewel5EvasionModifiersInRadiusAreTransformedToArmour"] = { affix = "", "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour", statOrder = { 3100 }, level = 1, group = "EvasionModifiersInRadiusAreTransformedToArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3802517517] = { "" }, [2548156334] = { "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour" }, } }, + ["MutatedUniqueBelt13NearbyEnemiesAreUnnerved"] = { affix = "", "Nearby Enemies are Unnerved", statOrder = { 9588 }, level = 1, group = "NearbyEnemiesAreUnnerved", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1439308328] = { "Nearby Enemies are Unnerved" }, } }, + ["MutatedUniqueBodyDex8SuppressionPreventionIfYouHaventSuppressedRecently"] = { affix = "", "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently", statOrder = { 10287 }, level = 1, group = "SuppressionPreventionIfYouHaventSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1409317489] = { "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently" }, } }, + ["MutatedUniqueBodyDex8ChanceToSuppressIfYouHaveSuppressedRecently"] = { affix = "", "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 10332 }, level = 1, group = "ChanceToSuppressIfYouHaveSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3273678959] = { "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently" }, } }, + ["MutatedUniqueHelmetStrInt6ChanceToCastOnManaSpent"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 776, 776.1 }, level = 1, group = "ChanceToCastOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "caster", "gem" }, tradeHashes = { [2827553480] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1178126501] = { "0% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, + ["MutatedUniqueBootsInt7PowerChargeOnCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3318 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [4164870816] = { "+(3-5)% to Critical Strike Multiplier per Power Charge" }, } }, + ["MutatedUniqueBodyInt3BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10936 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["MutatedUniqueRing16DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1628 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, + ["MutatedUniqueBodyStrInt1ChaosResistance"] = { affix = "", "-(17-13)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(17-13)% to Chaos Resistance" }, } }, + ["MutatedUniqueBow3ChaosDamageAsPortionOfDamage"] = { affix = "", "Gain (67-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (67-83)% of Physical Damage as Extra Chaos Damage" }, } }, + ["MutatedUniqueStaff1SearingBondTotemsAllowed"] = { affix = "", "+(3-5) to maximum number of Summoned Searing Bond Totems", statOrder = { 9662 }, level = 1, group = "SearingBondTotemsAllowed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2674643140] = { "+(3-5) to maximum number of Summoned Searing Bond Totems" }, } }, + ["MutatedUniqueRing5StunRecovery"] = { affix = "", "(200-300)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2511217560] = { "(200-300)% increased Stun and Block Recovery" }, } }, + ["MutatedUniqueHelmetDex2ConvertColdToFire"] = { affix = "", "50% of Cold Damage Converted to Fire Damage", statOrder = { 1991 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "50% of Cold Damage Converted to Fire Damage" }, } }, + ["MutatedUniqueBootsStr1CurseImmunity"] = { affix = "", "You are Immune to Curses", statOrder = { 7319 }, level = 1, group = "CurseImmunity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [116621037] = { "You are Immune to Curses" }, } }, + ["MutatedUniqueGlovesStrDex2IncreasedGold"] = { affix = "", "15% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7404 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "15% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["MutatedUniqueShieldStr1MaximumLifeAddedAsArmour"] = { affix = "", "Gain (20-25)% of Maximum Life as Extra Armour", statOrder = { 9284 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [4118694562] = { "Gain (20-25)% of Maximum Life as Extra Armour" }, } }, + ["MutatedUniqueShieldStrInt1EnergyShieldIncreasedByChaosResistance"] = { affix = "", "Maximum Energy Shield is increased by Chaos Resistance", statOrder = { 6522 }, level = 1, group = "EnergyShieldIncreasedByChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1301612627] = { "Maximum Energy Shield is increased by Chaos Resistance" }, } }, + ["MutatedUniqueHelmetInt4SupportedByFrigidBond"] = { affix = "", "Socketed Gems are Supported by Level 25 Frigid Bond", statOrder = { 297 }, level = 1, group = "SupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 25 Frigid Bond" }, } }, + ["MutatedUniqueGlovesStr2StrengthRequirementAndTripleDamageChance"] = { affix = "", "+700 Strength Requirement", "(10-15)% chance to deal Triple Damage", statOrder = { 1109, 5053 }, level = 1, group = "StrengthRequirementAndTripleDamageChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2445189705] = { "(10-15)% chance to deal Triple Damage" }, [2833226514] = { "+700 Strength Requirement" }, } }, + ["MutatedUniqueBodyInt4GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2198 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, + ["MutatedUniqueHelmetDex5LifeReservationEfficiencyCopy"] = { affix = "", "30% increased Life Reservation Efficiency of Skills", statOrder = { 2249 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "30% increased Life Reservation Efficiency of Skills" }, } }, + ["MutatedUniqueHelmetStr3BleedDotMultiplier"] = { affix = "", "+(50-75)% to Damage over Time Multiplier for Bleeding", statOrder = { 1272 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+(50-75)% to Damage over Time Multiplier for Bleeding" }, } }, + ["MutatedUniqueHelmetStrDex4SupportedBySadism"] = { affix = "", "Socketed Gems are Supported by Level 30 Sadism", statOrder = { 383 }, level = 1, group = "SupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [794471597] = { "Socketed Gems are Supported by Level 30 Sadism" }, } }, + ["MutatedUniqueOneHandSword3TrapThrowSpeed"] = { affix = "", "(20-40)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [118398748] = { "(20-40)% increased Trap Throwing Speed" }, } }, + ["MutatedUniqueBelt5IncreasedEnergyShieldPerPowerCharge"] = { affix = "", "(4-6)% increased Energy Shield per Power Charge", statOrder = { 6531 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "(4-6)% increased Energy Shield per Power Charge" }, } }, + ["MutatedUniqueSceptre3DamagePerZombie"] = { affix = "", "(40-60)% increased Damage per Raised Zombie", statOrder = { 6104 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [3868443508] = { "(40-60)% increased Damage per Raised Zombie" }, } }, + ["MutatedUniqueRing15ColdDamageTakenAsFire"] = { affix = "", "40% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3213 }, level = 14, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "40% of Cold Damage from Hits taken as Fire Damage" }, } }, + ["MutatedUniqueBodyStr3WitheredEffect"] = { affix = "", "(20-40)% increased Effect of Withered", statOrder = { 10782 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2545584555] = { "(20-40)% increased Effect of Withered" }, } }, + ["MutatedUniqueBodyStrDex1MaximumRage"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9928 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, + ["MutatedUniqueBodyStrDex2ChaosDamageTakenAsLightning"] = { affix = "", "50% of Chaos Damage taken as Lightning Damage", statOrder = { 5834 }, level = 1, group = "ChaosDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2313674117] = { "50% of Chaos Damage taken as Lightning Damage" }, } }, + ["MutatedUniqueSceptre6ManaPerStrengthIfInMainHand"] = { affix = "", "1% increased maximum Mana per 18 Strength when in Main Hand", statOrder = { 9292 }, level = 1, group = "ManaPerStrengthIfInMainHand", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3548542256] = { "1% increased maximum Mana per 18 Strength when in Main Hand" }, } }, + ["MutatedUniqueSceptre6EnergyShieldPerStrengthIfInOffHand"] = { affix = "", "1% increased maximum Energy Shield per 25 Strength when in Off Hand", statOrder = { 6514 }, level = 1, group = "EnergyShieldPerStrengthIfInOffHand", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [699783004] = { "1% increased maximum Energy Shield per 25 Strength when in Off Hand" }, } }, + ["MutatedUniqueGlovesStrDex4AdrenalineOnVaalSkillUse"] = { affix = "", "You gain Adrenaline for 3 seconds on using a Vaal Skill", statOrder = { 2953 }, level = 1, group = "AdrenalineOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3856092403] = { "You gain Adrenaline for 3 seconds on using a Vaal Skill" }, } }, + ["MutatedUniqueBodyStrInt5LightRadiusAppliesToAccuracy"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7531 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, + ["MutatedUniqueBow11SupportedByPrismaticBurst"] = { affix = "", "Socketed Gems are Supported by Level 25 Prismatic Burst", statOrder = { 367 }, level = 1, group = "SupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2910545715] = { "Socketed Gems are Supported by Level 25 Prismatic Burst" }, } }, + ["MutatedUniqueBootsStr2Strength"] = { affix = "", "+(150-200) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [4080418644] = { "+(150-200) to Strength" }, } }, + ["MutatedUniqueOneHandSword9AttackSpeedPer200Accuracy"] = { affix = "", "1% increased Attack Speed per 150 Accuracy Rating", statOrder = { 4274 }, level = 1, group = "AttackSpeedPer200Accuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [2937694716] = { "1% increased Attack Speed per 150 Accuracy Rating" }, } }, + ["MutatedUniqueWand7AddedChaosDamageFromManaCost"] = { affix = "", "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 4578 }, level = 1, group = "AddedChaosDamageFromManaCost", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [820155465] = { "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend" }, } }, + ["MutatedUniqueWand8SupportedByAwakenedSpellCascade"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Cascade", statOrder = { 307 }, level = 1, group = "SupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2292610865] = { "Socketed Gems are Supported by Level 1 Greater Spell Cascade" }, } }, + ["MutatedUniqueHelmetInt8ManaCostReduction"] = { affix = "", "(20-30)% increased Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [474294393] = { "(20-30)% increased Mana Cost of Skills" }, } }, + ["MutatedUniqueStaff11AnimalCharmMineAuraEffect"] = { affix = "", "(60-100)% increased Effect of Auras from Mines", statOrder = { 9351 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2121424530] = { "(60-100)% increased Effect of Auras from Mines" }, } }, + ["MutatedUniqueStaff12AreaOfEffectPer20Int"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2569 }, level = 1, group = "AreaOfEffectPer20Int", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, + ["MutatedUniqueGlovesStrInt4PercentageIntelligence"] = { affix = "", "(12-16)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(12-16)% increased Intelligence" }, } }, + ["MutatedUniqueRing34GainPowerChargeOnKillingFrozenEnemy"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1847 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on Killing a Frozen Enemy" }, } }, + ["MutatedUniqueHelmetInt10AdditiveSpellModifiersApplyToRetaliationAttackDamage"] = { affix = "", "Retaliation Skills have 200% Arcane Might", statOrder = { 2716 }, level = 1, group = "AdditiveSpellModifiersApplyToRetaliationAttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [4171078509] = { "Retaliation Skills have 200% Arcane Might" }, } }, + ["MutatedUniqueBelt18ManaRecoveryRate"] = { affix = "", "50% reduced Mana Recovery rate", statOrder = { 1609 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3513180117] = { "50% reduced Mana Recovery rate" }, } }, + ["MutatedUniqueTwoHandAxe14AttackAdditionalProjectiles"] = { affix = "", "Attacks fire 3 additional Projectiles", statOrder = { 4232 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [1195705739] = { "Attacks fire 3 additional Projectiles" }, } }, + ["MutatedUniqueHelmetInt11PhysicalDamageRemovedFromManaBeforeLife"] = { affix = "", "30% of Physical Damage is taken from Mana before Life", statOrder = { 4205 }, level = 1, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "30% of Physical Damage is taken from Mana before Life" }, } }, + ["MutatedUniqueAmulet31LightRadius"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } }, + ["MutatedUniqueBodyDex9WitherOnHitChanceVsCursedEnemies"] = { affix = "", "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", statOrder = { 10783 }, level = 1, group = "WitherOnHitChanceVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [465526645] = { "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies" }, } }, + ["MutatedUniqueBodyDexInt5TrapSkillCooldownCount"] = { affix = "", "Skills which Throw Traps have +2 Cooldown Uses", statOrder = { 10569 }, level = 1, group = "TrapSkillCooldownCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4001105802] = { "Skills which Throw Traps have +2 Cooldown Uses" }, } }, + ["MutatedUniqueOneHandSword20LocalWeaponMoreIgniteDamage"] = { affix = "", "Ignites inflicted with this Weapon deal 100% more Damage", statOrder = { 8055 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal 100% more Damage" }, } }, + ["MutatedUniqueRing44ProjectileSpeed"] = { affix = "", "(-10-10)% reduced Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3759663284] = { "(-10-10)% reduced Projectile Speed" }, } }, + ["MutatedUniqueTwoHandAxe1MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["MutatedUniqueBodyDex1SpellDamageSuppressed"] = { affix = "", "Prevent +(8-10)% of Suppressed Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(8-10)% of Suppressed Spell Damage" }, } }, + ["MutatedUniqueHelmetInt2GlobalCooldownRecovery"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["MutatedUniqueAmulet8ChaosResistance"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } }, + ["MutatedUniqueBelt2FlaskEffect"] = { affix = "", "Flasks applied to you have (10-15)% increased Effect", statOrder = { 2776 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-15)% increased Effect" }, } }, + ["MutatedUniqueShieldStrInt2SocketedGemQuality"] = { affix = "", "+(20-30)% to Quality of Socketed Gems", statOrder = { 213 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+(20-30)% to Quality of Socketed Gems" }, } }, + ["MutatedUniqueBodyInt1SupportedByLivingLightning"] = { affix = "", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 337 }, level = 1, group = "SupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, } }, + ["MutatedUniqueBow5UnholyMightOnCritChance"] = { affix = "", "25% chance to gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 5778 }, level = 1, group = "UnholyMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2807857784] = { "25% chance to gain Unholy Might for 4 seconds on Critical Strike" }, } }, + ["MutatedUniqueShieldStrInt4DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6107 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, + ["MutatedUniqueGlovesDexInt3HeraldOfThunderBuffEffect"] = { affix = "", "Herald of Thunder has 100% increased Buff Effect", statOrder = { 7225 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3814686091] = { "Herald of Thunder has 100% increased Buff Effect" }, } }, + ["MutatedUniqueWand3AreaOfEffectPerPowerCharge"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2152 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } }, + ["MutatedUniqueRing12AdditionalVaalSoulOnKill"] = { affix = "", "(20-40)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [1962922582] = { "(20-40)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["MutatedUniqueBelt6TrapAreaOfEffect"] = { affix = "", "Skills used by Traps have (40-60)% increased Area of Effect", statOrder = { 3515 }, level = 47, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4050593908] = { "Skills used by Traps have (40-60)% increased Area of Effect" }, } }, + ["MutatedUniqueHelmetDexInt3MaximumLifeConvertedToEnergyShield"] = { affix = "", "(15-20)% of Maximum Life Converted to Energy Shield", statOrder = { 9286 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(15-20)% of Maximum Life Converted to Energy Shield" }, } }, + ["MutatedUniqueGlovesStr4SapChance"] = { affix = "", "30% chance to Sap Enemies", statOrder = { 2057 }, level = 1, group = "SapChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [532324017] = { "30% chance to Sap Enemies" }, } }, + ["MutatedUniqueQuiver10ChanceToAggravateBleed"] = { affix = "", "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 1, group = "ChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "mutatedunique", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["MutatedUniqueOneHandSword21IncreasedWeaponElementalDamagePercent"] = { affix = "", "(80-120)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(80-120)% increased Elemental Damage with Attack Skills" }, } }, + ["MutatedUniqueBodyDexInt6PurityOfLightningNoReservation"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9919 }, level = 1, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } }, + ["MutatedUniqueWand18SpellAddedPhysicalDamagePerLevel"] = { affix = "", "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", statOrder = { 1294 }, level = 1, group = "SpellAddedPhysicalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "caster" }, tradeHashes = { [1092545959] = { "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels" }, } }, + ["MutatedUniqueBodyStr9SpellBlockPer50Strength"] = { affix = "", "+1% Chance to Block Spell Damage per 50 Strength", statOrder = { 1177 }, level = 1, group = "SpellBlockPer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [1114429046] = { "+1% Chance to Block Spell Damage per 50 Strength" }, } }, + ["MutatedUniqueBodyStr9AttackBlockLuck"] = { affix = "", "Chance to Block Attack Damage is Unlucky", statOrder = { 5043 }, level = 1, group = "AttackBlockLuck", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [3776150692] = { "Chance to Block Attack Damage is Unlucky" }, } }, + ["MutatedUniqueQuiver15SupportedByArrowNova"] = { affix = "", "Socketed Gems are Supported by Level 25 Arrow Nova", statOrder = { 371 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 25 Arrow Nova" }, } }, + ["MutatedUniqueAmulet57MovementVelocityPerFrenzyCharge"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, + ["MutatedUniqueRing63MaximumLifeIncreasePercent"] = { affix = "", "(40-50)% reduced maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(40-50)% reduced maximum Life" }, } }, + ["MutatedUniqueRing64GlobalEnergyShieldPercent"] = { affix = "", "(40-50)% reduced maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% reduced maximum Energy Shield" }, } }, + ["MutatedUniqueShieldStrInt13LocalMaximumQuality"] = { affix = "", "+20% to Maximum Quality", statOrder = { 8108 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, + ["MutatedUniqueRing75CurseDuration"] = { affix = "", "Curse Skills have (-30-30)% reduced Skill Effect Duration", statOrder = { 6084 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (-30-30)% reduced Skill Effect Duration" }, } }, + ["MutatedUniqueBodyStrInt15NonChaosDamageBypassEnergyShieldPercent"] = { affix = "", "40% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 656 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3379724776] = { "40% of Non-Chaos Damage taken bypasses Energy Shield" }, } }, + ["MutatedUniqueSceptre25MinionCriticalStrikeMultiplier"] = { affix = "", "Minions have +(20-40)% to Critical Strike Multiplier", statOrder = { 9423 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-40)% to Critical Strike Multiplier" }, } }, + ["MutatedUniqueBodyStr13MaximumEnergyShieldIfNoDefenceModifiersOnEquipment"] = { affix = "", "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", statOrder = { 9256 }, level = 1, group = "MaximumEnergyShieldIfNoDefenceModifiersOnEquipment", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [2236622399] = { "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items" }, } }, + ["MutatedUniqueGlovesInt3PunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6088 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, + ["MutatedUniqueBodyInt20MinionLeechEnergyShieldFromElementalDamage"] = { affix = "", "Minions Leech 5% of Elemental Damage as Energy Shield", statOrder = { 9435 }, level = 1, group = "MinionLeechEnergyShieldFromElementalDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [2809815072] = { "Minions Leech 5% of Elemental Damage as Energy Shield" }, } }, + ["MutatedUniqueSceptre10PowerChargeOnStunUniqueSceptre10"] = { affix = "", "Gain Chaotic Might for 4 seconds on Critical Strike", statOrder = { 5762 }, level = 1, group = "ChaoticMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "critical" }, tradeHashes = { [1183009081] = { "Gain Chaotic Might for 4 seconds on Critical Strike" }, } }, + ["MutatedUniqueGlovesStr7CannotBeIgnitedAtMaxEnduranceCharges"] = { affix = "", "Cannot be Ignited while at maximum Endurance Charges", statOrder = { 5480 }, level = 1, group = "CannotBeIgnitedAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire" }, tradeHashes = { [2420971151] = { "Cannot be Ignited while at maximum Endurance Charges" }, } }, + ["MutatedUniqueBootsDex5ActionSpeedReduction"] = { affix = "", "15% increased Action Speed", statOrder = { 4571 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "15% increased Action Speed" }, } }, + ["MutatedUniqueAmulet76GainMissingManaPercentWhenHit"] = { affix = "", "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy", statOrder = { 9512 }, level = 62, group = "GainMissingManaPercentWhenHit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1441107401] = { "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy" }, } }, + ["MutatedUniqueBootsStrInt3MovementVelocityWhileIgnited"] = { affix = "", "(25-50)% increased Movement Speed while Ignited", statOrder = { 2839 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [581625445] = { "(25-50)% increased Movement Speed while Ignited" }, } }, + ["MutatedUniqueClaw7RecoverEnergyShieldFromEvasionOnBlock"] = { affix = "", "Recover Energy Shield equal to 1% of Evasion Rating when you Block", statOrder = { 6511 }, level = 1, group = "RecoverEnergyShieldFromEvasionOnBlock", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3495989808] = { "Recover Energy Shield equal to 1% of Evasion Rating when you Block" }, } }, + ["MutatedUniqueBodyInt8ProfaneGroundInsteadOfConsecratedGround"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5991 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, + ["MutatedUniqueBelt7RareAndUniqueEnemiesHaveIcons"] = { affix = "", "Rare and Unique Enemies within 120 metres have Minimap Icons", statOrder = { 10740 }, level = 1, group = "RareAndUniqueEnemiesHaveIcons", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2543266731] = { "Rare and Unique Enemies within 120 metres have Minimap Icons" }, } }, + ["MutatedUniqueHelmetStr6ZombiesLeechEnergyShieldToYouAt1000Intelligence"] = { affix = "", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", statOrder = { 10917 }, level = 1, group = "ZombiesLeechEnergyShieldToYouAt1000Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [1919087214] = { "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield" }, } }, + ["MutatedUniqueHelmetStr6AdditionalZombiesPerXIntelligence"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Intelligence", statOrder = { 9675 }, level = 1, group = "AdditionalZombiesPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [900892599] = { "+1 to maximum number of Raised Zombies per 500 Intelligence" }, } }, + ["MutatedUniqueBelt43MagicUtilityFlasksAlwaysApplyRightmost"] = { affix = "", "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4460 }, level = 56, group = "MagicUtilityFlasksAlwaysApplyRightmost", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [2651470813] = { "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } }, + ["MutatedUniqueUniqueBelt52AvoidPoison"] = { affix = "", "(40-60)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(40-60)% chance to Avoid being Poisoned" }, } }, + ["MutatedUniqueUniqueBelt52ChaosDamage"] = { affix = "", "(30-50)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-50)% increased Chaos Damage" }, } }, + ["MutatedUniqueUniqueBelt55FireDamage"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } }, + ["MutatedUniqueUniqueBelt55IgniteDurationOnYou"] = { affix = "", "(40-60)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(40-60)% reduced Ignite Duration on you" }, } }, + ["MutatedUniqueUniqueBow27ImpalesChanceToLastAdditionalHit"] = { affix = "", "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", statOrder = { 7357 }, level = 1, group = "ChanceImpaleLastsAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [220868259] = { "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" }, } }, + ["MutatedUniqueUniqueBow27AttackSpeed"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, + ["MutatedUniqueUniqueBow26LocalCriticalStrikeChance"] = { affix = "", "(30-34)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } }, + ["MutatedUniqueUniqueBow26FireDamageOverTimeMultiplier"] = { affix = "", "+(28-35)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-35)% to Fire Damage over Time Multiplier" }, } }, + ["MutatedUniqueUniqueTwoHandSword18FasterDamagingAilments"] = { affix = "", "Damaging Ailments deal damage (20-40)% faster", statOrder = { 6214 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (20-40)% faster" }, } }, + ["MutatedUniqueUniqueTwoHandSword18LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } }, + ["MutatedUniqueUniqueTwoHandSword19AilmentDuration"] = { affix = "", "(30-35)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2419712247] = { "(30-35)% increased Duration of Ailments on Enemies" }, } }, + ["MutatedUniqueUniqueTwoHandSword19LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } }, + ["MutatedUniqueUniqueTwoHandMace16LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, + ["MutatedUniqueUniqueTwoHandMace16ChaosResistance"] = { affix = "", "+(25-30)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(25-30)% to Chaos Resistance" }, } }, + ["MutatedUniqueUniqueTwoHandMace16PhysicalAddedAsChaos"] = { affix = "", "Gain (35-45)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 1, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (35-45)% of Physical Damage as Extra Chaos Damage" }, } }, + ["MutatedUniqueUniqueTwoHandMace15LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, + ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsFire"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (20-25)% of Physical Damage as Extra Fire Damage" }, } }, + ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsCold"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (20-25)% of Physical Damage as Extra Cold Damage" }, } }, + ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsLightning"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (20-25)% of Physical Damage as Extra Lightning Damage" }, } }, + ["MutatedUniqueUniqueAmulet85PercentIncreasedLife"] = { affix = "", "(8-10)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, + ["MutatedUniqueUniqueAmulet85LifeFlaskChargesEvery3Seconds"] = { affix = "", "Life Flasks gain (1-3) Charge every 3 seconds", statOrder = { 7448 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2592686757] = { "Life Flasks gain (1-3) Charge every 3 seconds" }, } }, + ["MutatedUniqueUniqueAmulet81PercentIncreasedMana"] = { affix = "", "(12-14)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "(12-14)% increased maximum Mana" }, } }, + ["MutatedUniqueUniqueAmulet81ManaFlaskChargesEvery3Seconds"] = { affix = "", "Mana Flasks gain (1-3) Charge every 3 seconds", statOrder = { 8289 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1193925814] = { "Mana Flasks gain (1-3) Charge every 3 seconds" }, } }, + ["MutatedUniqueUniqueAmulet6ReducedMaximumMana"] = { affix = "", "20% reduced maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "20% reduced maximum Mana" }, } }, + ["MutatedUniqueUniqueAmulet6IncreasedGoldFound"] = { affix = "", "20% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7404 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "20% increased Quantity of Gold Dropped by Slain Enemies" }, } }, } \ No newline at end of file diff --git a/src/Data/ModFoulbornMap.lua b/src/Data/ModFoulbornMap.lua index bb2e9e1e1a..ff7def0f97 100644 --- a/src/Data/ModFoulbornMap.lua +++ b/src/Data/ModFoulbornMap.lua @@ -29,7 +29,9 @@ return { "Curse Skills have (-30-30)% reduced Skill Effect Duration", }, ["Ancestral Vision"] = { + "+(5-10)% chance to Suppress Spell Damage", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", + "Prevent +(3-5)% of Suppressed Spell Damage", }, ["Apep's Rage"] = { "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", @@ -221,6 +223,10 @@ return { ["Farrul's Fur"] = { "100% increased Attack Damage", }, + ["Firesong"] = { + "(25-50)% increased Ignite Duration on Enemies", + "+(10-15)% to Fire Damage over Time Multiplier", + }, ["Flesh and Spirit"] = { "Vaal Skills have (20-40)% increased Skill Effect Duration", }, @@ -245,7 +251,7 @@ return { }, ["Ghostwrithe"] = { "50% of Chaos Damage taken Recouped as Life", - "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life", + "Your Maximum Energy Shield is Equal to 35% of Your Maximum Life", }, ["Gifts from Above"] = { "(25-40)% increased Effect of Consecrated Ground you create", @@ -280,6 +286,7 @@ return { }, ["Heartbound Loop"] = { "(10-20)% reduced Mana Cost of Minion Skills", + "(20-30)% increased Mana Cost Efficiency of Minion Skills", }, ["Heatshiver"] = { "50% of Cold Damage Converted to Fire Damage", @@ -316,6 +323,7 @@ return { }, ["Kalisa's Grace"] = { "Socketed Gems are Supported by Level 18 Focused Channelling", + "100% increased Mana Cost Efficiency for 2 seconds after Spending a total of 800 Mana", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", }, ["Kaom's Primacy"] = { @@ -423,6 +431,10 @@ return { "Lose 0.5% Life and Energy Shield per Second per Minion", "+2 to maximum number of Summoned Golems", }, + ["Might of the Meek"] = { + "75% increased Effect of non-Keystone Passive Skills in Radius Notable Passive Skills in Radius grant nothing", + "100% increased Effect of non-Keystone Passive Skills in Radius Notable Passive Skills in Radius grant nothing", + }, ["Mind of the Council"] = { "30% of Physical Damage is taken from Mana before Life", }, @@ -475,7 +487,7 @@ return { "Insufficient Mana doesn't prevent your Bow Attacks", }, ["Rathpith Globe"] = { - "Deal 5% increased Damage Over Time per 100 Player Maximum Life", + "Deal 3% increased Damage Over Time per 100 Player Maximum Life", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", }, ["Razor of the Seventh Sun"] = { @@ -608,6 +620,10 @@ return { ["Starkonja's Head"] = { "+(100-200) to maximum Mana", }, + ["Stormshroud"] = { + "(10-15)% increased Shock Duration on Enemies", + "(25-50)% increased Effect of Shock", + }, ["Sunblast"] = { "Skills used by Traps have (40-60)% increased Area of Effect", }, @@ -626,6 +642,14 @@ return { "+1 to maximum number of Raised Zombies per 500 Intelligence", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", }, + ["The Blue Dream"] = { + "+3% to Critical Strike Multiplier per Power Charge", + "Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant increased Maximum Energy Shield at 75% of its value", + }, + ["The Blue Nightmare"] = { + "Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently", + "Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant Lightning Damage Converted to Chaos Damage at 100% of its value", + }, ["The Brass Dome"] = { "Gain no inherent bonuses from Strength", "Transcendence", @@ -669,6 +693,14 @@ return { ["The Fourth Vow"] = { "40% of Non-Chaos Damage taken bypasses Energy Shield", }, + ["The Green Dream"] = { + "Passives granting Cold Resistance or all Elemental Resistances in Radius also grant increased Maximum Mana at 75% of its value", + "1% increased Movement Speed per Frenzy Charge", + }, + ["The Green Nightmare"] = { + "Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently", + "Passives granting Cold Resistance or all Elemental Resistances in Radius also grant Cold Damage Converted to Chaos Damage at 100% of its value", + }, ["The Gull"] = { "(15-20)% of Maximum Life Converted to Energy Shield", }, @@ -691,7 +723,7 @@ return { "Flasks applied to you have (10-15)% increased Effect", }, ["The Oppressor"] = { - "(10-15)% chance to Avoid All Damage from Hits", + "(10-15)% chance to Avoid Damage of each Type from Hits", "(20-30)% Chance to Block Spell Damage", }, ["The Pandemonius"] = { @@ -704,6 +736,14 @@ return { ["The Poet's Pen"] = { "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", }, + ["The Red Dream"] = { + "+4% to Chaos Resistance per Endurance Charge", + "Passives granting Fire Resistance or all Elemental Resistances in Radius also grant increased Maximum Life at 50% of its value", + }, + ["The Red Nightmare"] = { + "Fire Damage with Hits is Lucky if you've Blocked an Attack Recently", + "Passives granting Fire Resistance or all Elemental Resistances in Radius also grant Fire Damage Converted to Chaos Damage at 100% of its value", + }, ["The Red Trail"] = { "Gain an Endurance Charge each second while Stationary", "Gain a Power Charge on Hit while Bleeding", @@ -847,6 +887,10 @@ return { ["Windshriek"] = { "You are Immune to Curses", }, + ["Witchbane"] = { + "Curse Skills have (10-15)% increased Skill Effect Duration", + "Cursed Enemies you or your Minions Kill have a (10-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", + }, ["Wyrmsign"] = { "Socketed Gems are Supported by Level 5 Manaforged Arrows", }, @@ -866,7 +910,7 @@ return { "Socketed Gems are Supported by Level 30 Immolate", }, ["Ylfeban's Trickery"] = { - "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value", + "Retaliation Skills have 200% Arcane Might", }, ["Zahndethus' Cassock"] = { "Create Profane Ground instead of Consecrated Ground", diff --git a/src/Data/ModGraft.lua b/src/Data/ModGraft.lua index a81a21963f..50632c17f1 100644 --- a/src/Data/ModGraft.lua +++ b/src/Data/ModGraft.lua @@ -2,489 +2,489 @@ -- Item data (c) Grinding Gear Games return { - ["GraftPrefixUulnetolFlatAddedPhysical1"] = { type = "Prefix", affix = "Blunt", "Adds 1 to (3-5) Physical Damage", statOrder = { 1265 }, level = 1, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds 1 to (3-5) Physical Damage" }, } }, - ["GraftPrefixUulnetolFlatAddedPhysical2"] = { type = "Prefix", affix = "Heavy", "Adds (1-3) to (6-9) Physical Damage", statOrder = { 1265 }, level = 22, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (1-3) to (6-9) Physical Damage" }, } }, - ["GraftPrefixUulnetolFlatAddedPhysical3"] = { type = "Prefix", affix = "Weighted", "Adds (2-3) to (10-12) Physical Damage", statOrder = { 1265 }, level = 44, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-3) to (10-12) Physical Damage" }, } }, - ["GraftPrefixUulnetolFlatAddedPhysical4"] = { type = "Prefix", affix = "Dense", "Adds (2-4) to (13-15) Physical Damage", statOrder = { 1265 }, level = 66, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-4) to (13-15) Physical Damage" }, } }, - ["GraftPrefixUulnetolFlatAddedPhysical5"] = { type = "Prefix", affix = "Hefty", "Adds (3-5) to (14-18) Physical Damage", statOrder = { 1265 }, level = 82, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (3-5) to (14-18) Physical Damage" }, } }, - ["GraftPrefixUulnetolBleedChance1"] = { type = "Prefix", affix = "Pointed", "Attacks have (5-9)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (5-9)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolBleedChance2"] = { type = "Prefix", affix = "Needling", "Attacks have (10-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 22, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (10-14)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolBleedChance3"] = { type = "Prefix", affix = "Cutting", "Attacks have (15-19)% chance to cause Bleeding", statOrder = { 2489 }, level = 44, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (15-19)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolBleedChance4"] = { type = "Prefix", affix = "Biting", "Attacks have (20-24)% chance to cause Bleeding", statOrder = { 2489 }, level = 66, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (20-24)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolBleedChance5"] = { type = "Prefix", affix = "Incisive", "Attacks have (25-30)% chance to cause Bleeding", statOrder = { 2489 }, level = 82, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (25-30)% chance to cause Bleeding" }, } }, - ["GraftPrefixUulnetolDamageOverTimeMultiplier1"] = { type = "Prefix", affix = "Putrefying", "+(5-9)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 22, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(5-9)% to Damage over Time Multiplier" }, } }, - ["GraftPrefixUulnetolDamageOverTimeMultiplier2"] = { type = "Prefix", affix = "Sickening", "+(10-14)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 66, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(10-14)% to Damage over Time Multiplier" }, } }, - ["GraftPrefixUulnetolDamageOverTimeMultiplier3"] = { type = "Prefix", affix = "Repugnant", "+(15-20)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(15-20)% to Damage over Time Multiplier" }, } }, - ["GraftPrefixUulnetolKnockback1"] = { type = "Prefix", affix = "Swatting", "(5-9)% chance to Knock Enemies Back on hit", "10% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 22, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [565784293] = { "10% increased Knockback Distance" }, [977908611] = { "(5-9)% chance to Knock Enemies Back on hit" }, } }, - ["GraftPrefixUulnetolKnockback2"] = { type = "Prefix", affix = "Bashing", "(10-14)% chance to Knock Enemies Back on hit", "20% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 66, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [565784293] = { "20% increased Knockback Distance" }, [977908611] = { "(10-14)% chance to Knock Enemies Back on hit" }, } }, - ["GraftPrefixUulnetolKnockback3"] = { type = "Prefix", affix = "Walloping", "(15-20)% chance to Knock Enemies Back on hit", "30% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 82, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [565784293] = { "30% increased Knockback Distance" }, [977908611] = { "(15-20)% chance to Knock Enemies Back on hit" }, } }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold1"] = { type = "Prefix", affix = "Inundating", "(3-6)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(3-6)% reduced Enemy Stun Threshold" }, } }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold2"] = { type = "Prefix", affix = "Devastating", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 22, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(7-8)% reduced Enemy Stun Threshold" }, } }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold3"] = { type = "Prefix", affix = "Stunning", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 44, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(9-10)% reduced Enemy Stun Threshold" }, } }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold4"] = { type = "Prefix", affix = "Overpowering", "(11-12)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 66, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(11-12)% reduced Enemy Stun Threshold" }, } }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold5"] = { type = "Prefix", affix = "Overwhelming", "(13-14)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 82, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(13-14)% reduced Enemy Stun Threshold" }, } }, - ["GraftPrefixUulnetolStunDuration1"] = { type = "Prefix", affix = "Smashing", "(7-10)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(7-10)% increased Stun Duration on Enemies" }, } }, - ["GraftPrefixUulnetolStunDuration2"] = { type = "Prefix", affix = "Thundering", "(11-14)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 22, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(11-14)% increased Stun Duration on Enemies" }, } }, - ["GraftPrefixUulnetolStunDuration3"] = { type = "Prefix", affix = "Brutish", "(14-17)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 44, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(14-17)% increased Stun Duration on Enemies" }, } }, - ["GraftPrefixUulnetolStunDuration4"] = { type = "Prefix", affix = "Sweeping", "(18-21)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 66, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(18-21)% increased Stun Duration on Enemies" }, } }, - ["GraftPrefixUulnetolStunDuration5"] = { type = "Prefix", affix = "Thudding", "(21-24)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 82, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(21-24)% increased Stun Duration on Enemies" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage1"] = { type = "Prefix", affix = "Squire's", "(5-9)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(5-9)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage2"] = { type = "Prefix", affix = "Journeyman's", "(10-14)% increased Global Physical Damage", statOrder = { 1231 }, level = 11, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(10-14)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage3"] = { type = "Prefix", affix = "Reaver's", "(15-19)% increased Global Physical Damage", statOrder = { 1231 }, level = 22, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(15-19)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage4"] = { type = "Prefix", affix = "Mercenary's", "(20-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 33, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(20-24)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage5"] = { type = "Prefix", affix = "Champion's", "(25-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 44, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(25-29)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage6"] = { type = "Prefix", affix = "Conqueror's", "(30-34)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(30-34)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage7"] = { type = "Prefix", affix = "Slayer's", "(35-39)% increased Global Physical Damage", statOrder = { 1231 }, level = 66, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(35-39)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage8"] = { type = "Prefix", affix = "General's", "(40-44)% increased Global Physical Damage", statOrder = { 1231 }, level = 74, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(40-44)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage9"] = { type = "Prefix", affix = "Emperor's", "(45-49)% increased Global Physical Damage", statOrder = { 1231 }, level = 82, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(45-49)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage10"] = { type = "Prefix", affix = "Dictator's", "(50-55)% increased Global Physical Damage", statOrder = { 1231 }, level = 85, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(50-55)% increased Global Physical Damage" }, } }, - ["GraftPrefixUulnetolImpaleChance1"] = { type = "Prefix", affix = "Brutal", "(3-5)% chance to Impale Enemies on Hit", statOrder = { 7253 }, level = 1, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(3-5)% chance to Impale Enemies on Hit" }, } }, - ["GraftPrefixUulnetolImpaleChance2"] = { type = "Prefix", affix = "Unforgiving", "(6-10)% chance to Impale Enemies on Hit", statOrder = { 7253 }, level = 22, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(6-10)% chance to Impale Enemies on Hit" }, } }, - ["GraftPrefixUulnetolImpaleChance3"] = { type = "Prefix", affix = "Unrelenting", "(11-15)% chance to Impale Enemies on Hit", statOrder = { 7253 }, level = 44, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(11-15)% chance to Impale Enemies on Hit" }, } }, - ["GraftPrefixUulnetolImpaleChance4"] = { type = "Prefix", affix = "Grim", "(16-20)% chance to Impale Enemies on Hit", statOrder = { 7253 }, level = 66, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(16-20)% chance to Impale Enemies on Hit" }, } }, - ["GraftPrefixUulnetolImpaleChance5"] = { type = "Prefix", affix = "Impaling", "(21-25)% chance to Impale Enemies on Hit", statOrder = { 7253 }, level = 82, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(21-25)% chance to Impale Enemies on Hit" }, } }, - ["GraftPrefixUulnetolImpaleEffect1"] = { type = "Prefix", affix = "Cruel", "(10-14)% increased Impale Effect", statOrder = { 7243 }, level = 44, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(10-14)% increased Impale Effect" }, } }, - ["GraftPrefixUulnetolImpaleEffect2"] = { type = "Prefix", affix = "Wicked", "(15-19)% increased Impale Effect", statOrder = { 7243 }, level = 66, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(15-19)% increased Impale Effect" }, } }, - ["GraftPrefixUulnetolImpaleEffect3"] = { type = "Prefix", affix = "Vicious", "(20-24)% increased Impale Effect", statOrder = { 7243 }, level = 82, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(20-24)% increased Impale Effect" }, } }, - ["GraftPrefixUulnetolEnduranceChargeWhenHit1"] = { type = "Prefix", affix = "Stoic", "(10-20)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 66, group = "GraftPrefixUulnetolEnduranceChargeWhenHit", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1514657588] = { "(10-20)% chance to gain an Endurance Charge when you are Hit" }, } }, - ["GraftPrefixUulnetolStunThreshold1"] = { type = "Prefix", affix = "Steadfast", "(15-17)% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } }, - ["GraftPrefixUulnetolStunThreshold2"] = { type = "Prefix", affix = "Staunch", "(18-20)% increased Stun Threshold", statOrder = { 3272 }, level = 22, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } }, - ["GraftPrefixUulnetolStunThreshold3"] = { type = "Prefix", affix = "Steady", "(21-23)% increased Stun Threshold", statOrder = { 3272 }, level = 44, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } }, - ["GraftPrefixUulnetolStunThreshold4"] = { type = "Prefix", affix = "Unwavering", "(24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 66, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } }, - ["GraftPrefixUulnetolStunThreshold5"] = { type = "Prefix", affix = "Unmoving", "(27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 82, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } }, - ["GraftPrefixUulnetolMaximumLife1"] = { type = "Prefix", affix = "Lively", "(3-4)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, - ["GraftPrefixUulnetolMaximumLife2"] = { type = "Prefix", affix = "Vigorous", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 22, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, - ["GraftPrefixUulnetolMaximumLife3"] = { type = "Prefix", affix = "Healthy", "(7-9)% increased maximum Life", statOrder = { 1571 }, level = 44, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(7-9)% increased maximum Life" }, } }, - ["GraftPrefixUulnetolMaximumLife4"] = { type = "Prefix", affix = "Robust", "(10-12)% increased maximum Life", statOrder = { 1571 }, level = 66, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(10-12)% increased maximum Life" }, } }, - ["GraftPrefixUulnetolMaximumLife5"] = { type = "Prefix", affix = "Hale", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 82, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } }, - ["GraftPrefixUulnetolLifeLeech1"] = { type = "Prefix", affix = "Vampiric", "(10-20)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 44, group = "GraftPrefixUulnetolLifeLeech", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4118987751] = { "(10-20)% increased Maximum total Life Recovery per second from Leech" }, } }, - ["GraftPrefixXophFasterAilments1"] = { type = "Prefix", affix = "Wasting", "Damaging Ailments deal damage (3-5)% faster", statOrder = { 6127 }, level = 44, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-5)% faster" }, } }, - ["GraftPrefixXophFasterAilments2"] = { type = "Prefix", affix = "Wilting", "Damaging Ailments deal damage (6-8)% faster", statOrder = { 6127 }, level = 66, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (6-8)% faster" }, } }, - ["GraftPrefixXophFasterAilments3"] = { type = "Prefix", affix = "Deteriorating", "Damaging Ailments deal damage (9-11)% faster", statOrder = { 6127 }, level = 82, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (9-11)% faster" }, } }, - ["GraftPrefixXophIgniteChance1"] = { type = "Prefix", affix = "Alight", "(4-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(4-10)% chance to Ignite" }, } }, - ["GraftPrefixXophIgniteChance2"] = { type = "Prefix", affix = "Smouldering", "(11-17)% chance to Ignite", statOrder = { 2026 }, level = 22, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(11-17)% chance to Ignite" }, } }, - ["GraftPrefixXophIgniteChance3"] = { type = "Prefix", affix = "Burning", "(18-24)% chance to Ignite", statOrder = { 2026 }, level = 44, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(18-24)% chance to Ignite" }, } }, - ["GraftPrefixXophIgniteChance4"] = { type = "Prefix", affix = "Fiery", "(25-30)% chance to Ignite", statOrder = { 2026 }, level = 66, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(25-30)% chance to Ignite" }, } }, - ["GraftPrefixXophIgniteChance5"] = { type = "Prefix", affix = "Blazing", "(31-40)% chance to Ignite", statOrder = { 2026 }, level = 82, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(31-40)% chance to Ignite" }, } }, - ["GraftPrefixXophFlatAddedFire1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (6-8) Fire Damage", statOrder = { 1359 }, level = 1, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (3-4) to (6-8) Fire Damage" }, } }, - ["GraftPrefixXophFlatAddedFire2"] = { type = "Prefix", affix = "Fierce", "Adds (4-7) to (11-15) Fire Damage", statOrder = { 1359 }, level = 22, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (4-7) to (11-15) Fire Damage" }, } }, - ["GraftPrefixXophFlatAddedFire3"] = { type = "Prefix", affix = "Fervent", "Adds (10-12) to (15-19) Fire Damage", statOrder = { 1359 }, level = 44, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (10-12) to (15-19) Fire Damage" }, } }, - ["GraftPrefixXophFlatAddedFire4"] = { type = "Prefix", affix = "Torrid", "Adds (14-17) to (21-25) Fire Damage", statOrder = { 1359 }, level = 66, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (14-17) to (21-25) Fire Damage" }, } }, - ["GraftPrefixXophFlatAddedFire5"] = { type = "Prefix", affix = "Magmatic", "Adds (20-23) to (26-32) Fire Damage", statOrder = { 1359 }, level = 82, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (20-23) to (26-32) Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage1"] = { type = "Prefix", affix = "Hellish", "(5-9)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(5-9)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage2"] = { type = "Prefix", affix = "Damnable", "(10-14)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(10-14)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage3"] = { type = "Prefix", affix = "Devil's", "(15-19)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(15-19)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage4"] = { type = "Prefix", affix = "Imps'", "(20-24)% increased Fire Damage", statOrder = { 1357 }, level = 33, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(20-24)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage5"] = { type = "Prefix", affix = "Fiend's", "(25-29)% increased Fire Damage", statOrder = { 1357 }, level = 44, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(25-29)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage6"] = { type = "Prefix", affix = "Demon's", "(30-34)% increased Fire Damage", statOrder = { 1357 }, level = 55, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(30-34)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage7"] = { type = "Prefix", affix = "Tartarean", "(35-39)% increased Fire Damage", statOrder = { 1357 }, level = 66, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(35-39)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage8"] = { type = "Prefix", affix = "Stygian", "(40-44)% increased Fire Damage", statOrder = { 1357 }, level = 74, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(40-44)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage9"] = { type = "Prefix", affix = "Hadean", "(45-49)% increased Fire Damage", statOrder = { 1357 }, level = 82, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(45-49)% increased Fire Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedFireDamage10"] = { type = "Prefix", affix = "Infernal", "(50-55)% increased Fire Damage", statOrder = { 1357 }, level = 85, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(50-55)% increased Fire Damage" }, } }, - ["GraftPrefixXophIgniteDuration1"] = { type = "Prefix", affix = "Unquenchable", "(10-14)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 44, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(10-14)% increased Ignite Duration on Enemies" }, } }, - ["GraftPrefixXophIgniteDuration2"] = { type = "Prefix", affix = "Everburning", "(15-19)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 66, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(15-19)% increased Ignite Duration on Enemies" }, } }, - ["GraftPrefixXophIgniteDuration3"] = { type = "Prefix", affix = "Inextinguishable", "(20-25)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 82, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(20-25)% increased Ignite Duration on Enemies" }, } }, - ["GraftPrefixXophWarcryCooldown1"] = { type = "Prefix", affix = "Howling", "(12-17)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 44, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(12-17)% increased Warcry Cooldown Recovery Rate" }, } }, - ["GraftPrefixXophWarcryCooldown2"] = { type = "Prefix", affix = "Screaming", "(18-22)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 82, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(18-22)% increased Warcry Cooldown Recovery Rate" }, } }, - ["GraftPrefixXophAreaOfEffect1"] = { type = "Prefix", affix = "Snatching", "(5-6)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(5-6)% increased Area of Effect" }, } }, - ["GraftPrefixXophAreaOfEffect2"] = { type = "Prefix", affix = "Grasping", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 22, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } }, - ["GraftPrefixXophAreaOfEffect3"] = { type = "Prefix", affix = "Clutching", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 44, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } }, - ["GraftPrefixXophAreaOfEffect4"] = { type = "Prefix", affix = "Siezing", "(11-12)% increased Area of Effect", statOrder = { 1880 }, level = 66, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } }, - ["GraftPrefixXophAreaOfEffect5"] = { type = "Prefix", affix = "Reaching", "(13-14)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } }, - ["GraftPrefixXophStrength1"] = { type = "Prefix", affix = "Brawny", "+(3-5) to Strength", statOrder = { 1177 }, level = 1, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(3-5) to Strength" }, } }, - ["GraftPrefixXophStrength2"] = { type = "Prefix", affix = "Powerful", "+(6-8) to Strength", statOrder = { 1177 }, level = 22, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(6-8) to Strength" }, } }, - ["GraftPrefixXophStrength3"] = { type = "Prefix", affix = "Burly", "+(9-11) to Strength", statOrder = { 1177 }, level = 44, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(9-11) to Strength" }, } }, - ["GraftPrefixXophStrength4"] = { type = "Prefix", affix = "Muscular", "+(12-14) to Strength", statOrder = { 1177 }, level = 66, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(12-14) to Strength" }, } }, - ["GraftPrefixXophStrength5"] = { type = "Prefix", affix = "Beefy", "+(15-17) to Strength", statOrder = { 1177 }, level = 82, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(15-17) to Strength" }, } }, - ["GraftPrefixXophPercentageStrength1"] = { type = "Prefix", affix = "Brutish", "(2-4)% increased Strength", statOrder = { 1184 }, level = 74, group = "GraftPrefixXophPercentageStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [734614379] = { "(2-4)% increased Strength" }, } }, - ["GraftPrefixXophPercentageArmour1"] = { type = "Prefix", affix = "Carapaced", "(15-18)% increased Armour", statOrder = { 1541 }, level = 1, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(15-18)% increased Armour" }, } }, - ["GraftPrefixXophPercentageArmour2"] = { type = "Prefix", affix = "Clad", "(19-22)% increased Armour", statOrder = { 1541 }, level = 22, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(19-22)% increased Armour" }, } }, - ["GraftPrefixXophPercentageArmour3"] = { type = "Prefix", affix = "Reinforced", "(23-26)% increased Armour", statOrder = { 1541 }, level = 44, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(23-26)% increased Armour" }, } }, - ["GraftPrefixXophPercentageArmour4"] = { type = "Prefix", affix = "Plated", "(27-30)% increased Armour", statOrder = { 1541 }, level = 66, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(27-30)% increased Armour" }, } }, - ["GraftPrefixXophPercentageArmour5"] = { type = "Prefix", affix = "Iron", "(30-35)% increased Armour", statOrder = { 1541 }, level = 82, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(30-35)% increased Armour" }, } }, - ["GraftPrefixXophFireResistance1"] = { type = "Prefix", affix = "Thermal", "+(5-12)% to Fire Resistance", statOrder = { 1625 }, level = 44, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(5-12)% to Fire Resistance" }, } }, - ["GraftPrefixXophFireResistance2"] = { type = "Prefix", affix = "Refractory", "+(13-20)% to Fire Resistance", statOrder = { 1625 }, level = 66, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(13-20)% to Fire Resistance" }, } }, - ["GraftPrefixXophFireResistance3"] = { type = "Prefix", affix = "Heatproof", "+(21-28)% to Fire Resistance", statOrder = { 1625 }, level = 82, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(21-28)% to Fire Resistance" }, } }, - ["GraftPrefixXophFirePenetration1"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2981 }, level = 66, group = "GraftPrefixXophFirePenetration", weightKey = { "graft_xoph", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, - ["GraftPrefixXophMaximumFireResistance1"] = { type = "Prefix", affix = "Fireproof", "+(1-2)% to maximum Fire Resistance", statOrder = { 1623 }, level = 74, group = "GraftPrefixXophMaximumFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+(1-2)% to maximum Fire Resistance" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage1"] = { type = "Prefix", affix = "Combatant's", "(5-9)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(5-9)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage2"] = { type = "Prefix", affix = "Warrior's", "(10-14)% increased Attack Damage", statOrder = { 1198 }, level = 11, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(10-14)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage3"] = { type = "Prefix", affix = "Fighter's", "(15-19)% increased Attack Damage", statOrder = { 1198 }, level = 22, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(15-19)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage4"] = { type = "Prefix", affix = "Brawler's", "(20-24)% increased Attack Damage", statOrder = { 1198 }, level = 33, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(20-24)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage5"] = { type = "Prefix", affix = "Soldier's", "(25-29)% increased Attack Damage", statOrder = { 1198 }, level = 44, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage6"] = { type = "Prefix", affix = "Veteran's", "(30-34)% increased Attack Damage", statOrder = { 1198 }, level = 55, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage7"] = { type = "Prefix", affix = "Assailant's", "(35-39)% increased Attack Damage", statOrder = { 1198 }, level = 66, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(35-39)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage8"] = { type = "Prefix", affix = "Gladiator's", "(40-44)% increased Attack Damage", statOrder = { 1198 }, level = 74, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(40-44)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage9"] = { type = "Prefix", affix = "Prizefighter's", "(45-49)% increased Attack Damage", statOrder = { 1198 }, level = 82, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(45-49)% increased Attack Damage" }, } }, - ["GraftPrefixXophGlobalIncreasedAttackDamage10"] = { type = "Prefix", affix = "Pitfighter's", "(50-55)% increased Attack Damage", statOrder = { 1198 }, level = 85, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(50-55)% increased Attack Damage" }, } }, - ["GraftPrefixXophMinionDuration1"] = { type = "Prefix", affix = "Lingering", "(10-12)% increased Minion Duration", statOrder = { 5032 }, level = 44, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(10-12)% increased Minion Duration" }, } }, - ["GraftPrefixXophMinionDuration2"] = { type = "Prefix", affix = "Abiding", "(13-15)% increased Minion Duration", statOrder = { 5032 }, level = 66, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(13-15)% increased Minion Duration" }, } }, - ["GraftPrefixXophMinionDuration3"] = { type = "Prefix", affix = "Undying", "(16-18)% increased Minion Duration", statOrder = { 5032 }, level = 82, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(16-18)% increased Minion Duration" }, } }, - ["GraftPrefixEshShockChance1"] = { type = "Prefix", affix = "Jolting", "(3-5)% chance to Shock", statOrder = { 2033 }, level = 1, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(3-5)% chance to Shock" }, } }, - ["GraftPrefixEshShockChance2"] = { type = "Prefix", affix = "Enervating", "(6-8)% chance to Shock", statOrder = { 2033 }, level = 22, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(6-8)% chance to Shock" }, } }, - ["GraftPrefixEshShockChance3"] = { type = "Prefix", affix = "Sparking", "(9-11)% chance to Shock", statOrder = { 2033 }, level = 44, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(9-11)% chance to Shock" }, } }, - ["GraftPrefixEshShockChance4"] = { type = "Prefix", affix = "Zapping", "(12-14)% chance to Shock", statOrder = { 2033 }, level = 66, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(12-14)% chance to Shock" }, } }, - ["GraftPrefixEshShockChance5"] = { type = "Prefix", affix = "Shocking", "(15-17)% chance to Shock", statOrder = { 2033 }, level = 82, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(15-17)% chance to Shock" }, } }, - ["GraftPrefixEshShockDuration1"] = { type = "Prefix", affix = "Sustained", "(15-24)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 44, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(15-24)% increased Shock Duration on Enemies" }, } }, - ["GraftPrefixEshShockDuration2"] = { type = "Prefix", affix = "Lasting", "(25-34)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 66, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(25-34)% increased Shock Duration on Enemies" }, } }, - ["GraftPrefixEshShockDuration3"] = { type = "Prefix", affix = "Perpetual", "(35-45)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 82, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(35-45)% increased Shock Duration on Enemies" }, } }, - ["GraftPrefixEshLightningDamage1"] = { type = "Prefix", affix = "Flashing", "(5-9)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(5-9)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage2"] = { type = "Prefix", affix = "Bright", "(10-14)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(10-14)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage3"] = { type = "Prefix", affix = "Bolting", "(15-19)% increased Lightning Damage", statOrder = { 1377 }, level = 22, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(15-19)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage4"] = { type = "Prefix", affix = "Discharging", "(20-24)% increased Lightning Damage", statOrder = { 1377 }, level = 33, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(20-24)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage5"] = { type = "Prefix", affix = "Stormrider's", "(25-29)% increased Lightning Damage", statOrder = { 1377 }, level = 44, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(25-29)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage6"] = { type = "Prefix", affix = "Thunderbolt's", "(30-34)% increased Lightning Damage", statOrder = { 1377 }, level = 55, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(30-34)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage7"] = { type = "Prefix", affix = "Stormcaller's", "(35-39)% increased Lightning Damage", statOrder = { 1377 }, level = 66, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(35-39)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage8"] = { type = "Prefix", affix = "Invoker's", "(40-44)% increased Lightning Damage", statOrder = { 1377 }, level = 74, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(40-44)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage9"] = { type = "Prefix", affix = "Stormweaver's", "(45-49)% increased Lightning Damage", statOrder = { 1377 }, level = 82, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(45-49)% increased Lightning Damage" }, } }, - ["GraftPrefixEshLightningDamage10"] = { type = "Prefix", affix = "Esh's", "(50-55)% increased Lightning Damage", statOrder = { 1377 }, level = 85, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(50-55)% increased Lightning Damage" }, } }, - ["GraftPrefixEshFlatAddedLightning1"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (5-7) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-2) to (5-7) Lightning Damage" }, } }, - ["GraftPrefixEshFlatAddedLightning2"] = { type = "Prefix", affix = "Empowered", "Adds (1-2) to (8-16) Lightning Damage", statOrder = { 1379 }, level = 22, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-2) to (8-16) Lightning Damage" }, } }, - ["GraftPrefixEshFlatAddedLightning3"] = { type = "Prefix", affix = "Flashing", "Adds (1-3) to (20-24) Lightning Damage", statOrder = { 1379 }, level = 44, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-3) to (20-24) Lightning Damage" }, } }, - ["GraftPrefixEshFlatAddedLightning4"] = { type = "Prefix", affix = "Fulminating", "Adds (2-4) to (33-41) Lightning Damage", statOrder = { 1379 }, level = 66, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (2-4) to (33-41) Lightning Damage" }, } }, - ["GraftPrefixEshFlatAddedLightning5"] = { type = "Prefix", affix = "Static", "Adds (4-6) to (54-60) Lightning Damage", statOrder = { 1379 }, level = 82, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (4-6) to (54-60) Lightning Damage" }, } }, - ["GraftPrefixEshCriticalChanceVSShocked1"] = { type = "Prefix", affix = "Convulsive", "(30-49)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 66, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(30-49)% increased Critical Strike Chance against Shocked Enemies" }, } }, - ["GraftPrefixEshCriticalChanceVSShocked2"] = { type = "Prefix", affix = "Fulgurating", "(50-65)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 82, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(50-65)% increased Critical Strike Chance against Shocked Enemies" }, } }, - ["GraftPrefixEshAttackAndCastSpeed1"] = { type = "Prefix", affix = "Rapid", "(4-6)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 44, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(4-6)% increased Attack and Cast Speed" }, } }, - ["GraftPrefixEshAttackAndCastSpeed2"] = { type = "Prefix", affix = "Fleet", "(8-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 66, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(8-10)% increased Attack and Cast Speed" }, } }, - ["GraftPrefixEshAttackAndCastSpeed3"] = { type = "Prefix", affix = "Quickening", "(12-14)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 82, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(12-14)% increased Attack and Cast Speed" }, } }, - ["GraftPrefixEshMinionDamage1"] = { type = "Prefix", affix = "Noble", "Minions deal (5-9)% increased Damage", statOrder = { 1973 }, level = 1, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (5-9)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage2"] = { type = "Prefix", affix = "Regal", "Minions deal (10-14)% increased Damage", statOrder = { 1973 }, level = 11, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (10-14)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage3"] = { type = "Prefix", affix = "Lord's", "Minions deal (15-19)% increased Damage", statOrder = { 1973 }, level = 22, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (15-19)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage4"] = { type = "Prefix", affix = "Lady's", "Minions deal (20-24)% increased Damage", statOrder = { 1973 }, level = 33, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (20-24)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage5"] = { type = "Prefix", affix = "Baron's", "Minions deal (25-29)% increased Damage", statOrder = { 1973 }, level = 44, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (25-29)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage6"] = { type = "Prefix", affix = "Duke's", "Minions deal (30-34)% increased Damage", statOrder = { 1973 }, level = 55, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (30-34)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage7"] = { type = "Prefix", affix = "Aristocrat's", "Minions deal (35-39)% increased Damage", statOrder = { 1973 }, level = 66, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (35-39)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage8"] = { type = "Prefix", affix = "Elite", "Minions deal (40-44)% increased Damage", statOrder = { 1973 }, level = 74, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (40-44)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage9"] = { type = "Prefix", affix = "Prince's", "Minions deal (45-49)% increased Damage", statOrder = { 1973 }, level = 82, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (45-49)% increased Damage" }, } }, - ["GraftPrefixEshMinionDamage10"] = { type = "Prefix", affix = "Monarch's", "Minions deal (50-55)% increased Damage", statOrder = { 1973 }, level = 85, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (50-55)% increased Damage" }, } }, - ["GraftPrefixEshMinionAttackAndCastSpeed1"] = { type = "Prefix", affix = "Feverish", "Minions have (4-6)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 44, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (4-6)% increased Attack and Cast Speed" }, } }, - ["GraftPrefixEshMinionAttackAndCastSpeed2"] = { type = "Prefix", affix = "Manic", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 66, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (8-10)% increased Attack and Cast Speed" }, } }, - ["GraftPrefixEshMinionAttackAndCastSpeed3"] = { type = "Prefix", affix = "Frenetic", "Minions have (12-14)% increased Attack and Cast Speed", statOrder = { 9270 }, level = 82, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (12-14)% increased Attack and Cast Speed" }, } }, - ["GraftPrefixEshGlobalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Protective", "(3-5)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(3-5)% increased maximum Energy Shield" }, } }, - ["GraftPrefixEshGlobalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Bolstered", "(6-8)% increased maximum Energy Shield", statOrder = { 1561 }, level = 11, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } }, - ["GraftPrefixEshGlobalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Barrier", "(9-11)% increased maximum Energy Shield", statOrder = { 1561 }, level = 33, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(9-11)% increased maximum Energy Shield" }, } }, - ["GraftPrefixEshGlobalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Reinforced", "(12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 54, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, - ["GraftPrefixEshGlobalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Buttressed", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 66, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } }, - ["GraftPrefixEshLightningResistance1"] = { type = "Prefix", affix = "Grounded", "+(5-12)% to Lightning Resistance", statOrder = { 1636 }, level = 22, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(5-12)% to Lightning Resistance" }, } }, - ["GraftPrefixEshLightningResistance2"] = { type = "Prefix", affix = "Insulated", "+(13-20)% to Lightning Resistance", statOrder = { 1636 }, level = 66, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(13-20)% to Lightning Resistance" }, } }, - ["GraftPrefixEshLightningResistance3"] = { type = "Prefix", affix = "Absorbing", "+(21-28)% to Lightning Resistance", statOrder = { 1636 }, level = 82, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(21-28)% to Lightning Resistance" }, } }, - ["GraftPrefixEshLightningPenetration1"] = { type = "Prefix", affix = "Energetic", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2984 }, level = 66, group = "GraftPrefixEshLightningPenetration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, - ["GraftPrefixEshMovementSpeed1"] = { type = "Prefix", affix = "Expedient", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 66, group = "GraftPrefixEshMovementSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 50, 0, 0 }, modTags = { }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, - ["GraftPrefixEshMaximumLightningResistance1"] = { type = "Prefix", affix = "Sequestered", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1634 }, level = 74, group = "GraftPrefixEshMaximumLightningResistance", weightKey = { "graft_esh", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+(1-2)% to maximum Lightning Resistance" }, } }, - ["GraftPrefixEshIncreasedMana1"] = { type = "Prefix", affix = "Expansive", "(3-6)% increased maximum Mana", statOrder = { 1580 }, level = 22, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(3-6)% increased maximum Mana" }, } }, - ["GraftPrefixEshIncreasedMana2"] = { type = "Prefix", affix = "Unbounded", "(7-10)% increased maximum Mana", statOrder = { 1580 }, level = 66, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(7-10)% increased maximum Mana" }, } }, - ["GraftPrefixEshIncreasedMana3"] = { type = "Prefix", affix = "Illimitable", "(11-14)% increased maximum Mana", statOrder = { 1580 }, level = 82, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(11-14)% increased maximum Mana" }, } }, - ["GraftPrefixEshIntelligence1"] = { type = "Prefix", affix = "Controlled", "+(3-5) to Intelligence", statOrder = { 1179 }, level = 1, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 100, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(3-5) to Intelligence" }, } }, - ["GraftPrefixEshIntelligence2"] = { type = "Prefix", affix = "Brilliant", "+(6-8) to Intelligence", statOrder = { 1179 }, level = 22, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(6-8) to Intelligence" }, } }, - ["GraftPrefixEshIntelligence3"] = { type = "Prefix", affix = "Astute", "+(9-11) to Intelligence", statOrder = { 1179 }, level = 44, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(9-11) to Intelligence" }, } }, - ["GraftPrefixEshIntelligence4"] = { type = "Prefix", affix = "Acute", "+(12-14) to Intelligence", statOrder = { 1179 }, level = 66, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(12-14) to Intelligence" }, } }, - ["GraftPrefixEshIntelligence5"] = { type = "Prefix", affix = "Genius'", "+(15-17) to Intelligence", statOrder = { 1179 }, level = 82, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(15-17) to Intelligence" }, } }, - ["GraftPrefixEshPercentageIntelligence1"] = { type = "Prefix", affix = "Composed", "(2-4)% increased Intelligence", statOrder = { 1186 }, level = 74, group = "GraftPrefixEshPercentageIntelligence", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [656461285] = { "(2-4)% increased Intelligence" }, } }, - ["GraftPrefixEshSpellDamage1"] = { type = "Prefix", affix = "Arcane", "(5-9)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(5-9)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage2"] = { type = "Prefix", affix = "Spelleweaving", "(10-14)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage3"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", statOrder = { 1223 }, level = 22, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage4"] = { type = "Prefix", affix = "Mage's", "(20-24)% increased Spell Damage", statOrder = { 1223 }, level = 33, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage5"] = { type = "Prefix", affix = "Scholar's", "(25-29)% increased Spell Damage", statOrder = { 1223 }, level = 44, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage6"] = { type = "Prefix", affix = "Wizard's", "(30-34)% increased Spell Damage", statOrder = { 1223 }, level = 55, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage7"] = { type = "Prefix", affix = "Sage's", "(35-39)% increased Spell Damage", statOrder = { 1223 }, level = 66, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage8"] = { type = "Prefix", affix = "Sorcerer's", "(40-44)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage9"] = { type = "Prefix", affix = "Magician's", "(45-49)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, } }, - ["GraftPrefixEshSpellDamage10"] = { type = "Prefix", affix = "Lich's", "(50-55)% increased Spell Damage", statOrder = { 1223 }, level = 85, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(50-55)% increased Spell Damage" }, } }, - ["GraftPrefixTulFreezeChance1"] = { type = "Prefix", affix = "Frigid", "(3-5)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(3-5)% chance to Freeze" }, } }, - ["GraftPrefixTulFreezeChance2"] = { type = "Prefix", affix = "Frosted", "(6-8)% chance to Freeze", statOrder = { 2029 }, level = 22, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(6-8)% chance to Freeze" }, } }, - ["GraftPrefixTulFreezeChance3"] = { type = "Prefix", affix = "Bitter", "(9-11)% chance to Freeze", statOrder = { 2029 }, level = 44, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(9-11)% chance to Freeze" }, } }, - ["GraftPrefixTulFreezeChance4"] = { type = "Prefix", affix = "Wintry", "(12-14)% chance to Freeze", statOrder = { 2029 }, level = 66, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(12-14)% chance to Freeze" }, } }, - ["GraftPrefixTulFreezeChance5"] = { type = "Prefix", affix = "Freezing", "(15-17)% chance to Freeze", statOrder = { 2029 }, level = 82, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(15-17)% chance to Freeze" }, } }, - ["GraftPrefixTulFlatAddedColdDamage1"] = { type = "Prefix", affix = "Icy", "Adds (3-4) to (6-8) Cold Damage", statOrder = { 1368 }, level = 1, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (3-4) to (6-8) Cold Damage" }, } }, - ["GraftPrefixTulFlatAddedColdDamage2"] = { type = "Prefix", affix = "Cold", "Adds (4-7) to (11-15) Cold Damage", statOrder = { 1368 }, level = 22, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (4-7) to (11-15) Cold Damage" }, } }, - ["GraftPrefixTulFlatAddedColdDamage3"] = { type = "Prefix", affix = "Brumal", "Adds (10-12) to (15-19) Cold Damage", statOrder = { 1368 }, level = 44, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (10-12) to (15-19) Cold Damage" }, } }, - ["GraftPrefixTulFlatAddedColdDamage4"] = { type = "Prefix", affix = "Bleak", "Adds (14-17) to (21-25) Cold Damage", statOrder = { 1368 }, level = 66, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (14-17) to (21-25) Cold Damage" }, } }, - ["GraftPrefixTulFlatAddedColdDamage5"] = { type = "Prefix", affix = "Frostbound", "Adds (20-23) to (26-32) Cold Damage", statOrder = { 1368 }, level = 82, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (20-23) to (26-32) Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage1"] = { type = "Prefix", affix = "", "(5-9)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(5-9)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage2"] = { type = "Prefix", affix = "", "(10-14)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(10-14)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage3"] = { type = "Prefix", affix = "", "(15-19)% increased Cold Damage", statOrder = { 1366 }, level = 22, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(15-19)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage4"] = { type = "Prefix", affix = "", "(20-24)% increased Cold Damage", statOrder = { 1366 }, level = 33, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(20-24)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage5"] = { type = "Prefix", affix = "", "(25-29)% increased Cold Damage", statOrder = { 1366 }, level = 44, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(25-29)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage6"] = { type = "Prefix", affix = "", "(30-34)% increased Cold Damage", statOrder = { 1366 }, level = 55, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(30-34)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage7"] = { type = "Prefix", affix = "", "(35-39)% increased Cold Damage", statOrder = { 1366 }, level = 66, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(35-39)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage8"] = { type = "Prefix", affix = "", "(40-44)% increased Cold Damage", statOrder = { 1366 }, level = 74, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(40-44)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage9"] = { type = "Prefix", affix = "", "(45-49)% increased Cold Damage", statOrder = { 1366 }, level = 82, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(45-49)% increased Cold Damage" }, } }, - ["GraftPrefixTulIncreasedColdDamage10"] = { type = "Prefix", affix = "", "(50-55)% increased Cold Damage", statOrder = { 1366 }, level = 85, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(50-55)% increased Cold Damage" }, } }, - ["GraftPrefixTulStrikeRange1"] = { type = "Prefix", affix = "Extended", "+(0.1-0.3) metres to Melee Strike Range", statOrder = { 2534 }, level = 66, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2264295449] = { "+(0.1-0.3) metres to Melee Strike Range" }, } }, - ["GraftPrefixTulStrikeRange2"] = { type = "Prefix", affix = "Elongated", "+0.4 metres to Melee Strike Range", statOrder = { 2534 }, level = 82, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2264295449] = { "+0.4 metres to Melee Strike Range" }, } }, - ["GraftPrefixTulAdditionalStrike1"] = { type = "Prefix", affix = "Versatile", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9185 }, level = 66, group = "GraftPrefixTulAdditionalStrike", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, - ["GraftPrefixTulProjectileSpeed1"] = { type = "Prefix", affix = "Tossing", "(5-9)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(5-9)% increased Projectile Speed" }, } }, - ["GraftPrefixTulProjectileSpeed2"] = { type = "Prefix", affix = "Hurling", "(10-14)% increased Projectile Speed", statOrder = { 1796 }, level = 22, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(10-14)% increased Projectile Speed" }, } }, - ["GraftPrefixTulProjectileSpeed3"] = { type = "Prefix", affix = "Lobbing", "(15-19)% increased Projectile Speed", statOrder = { 1796 }, level = 44, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(15-19)% increased Projectile Speed" }, } }, - ["GraftPrefixTulProjectileSpeed4"] = { type = "Prefix", affix = "Slinging", "(20-24)% increased Projectile Speed", statOrder = { 1796 }, level = 66, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(20-24)% increased Projectile Speed" }, } }, - ["GraftPrefixTulProjectileSpeed5"] = { type = "Prefix", affix = "Propeling", "(25-30)% increased Projectile Speed", statOrder = { 1796 }, level = 82, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(25-30)% increased Projectile Speed" }, } }, - ["GraftPrefixTulGlobalIncreasedEvasion1"] = { type = "Prefix", affix = "Blurred", "(15-18)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(15-18)% increased Evasion Rating" }, } }, - ["GraftPrefixTulGlobalIncreasedEvasion2"] = { type = "Prefix", affix = "Obscuring", "(19-22)% increased Evasion Rating", statOrder = { 1549 }, level = 22, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(19-22)% increased Evasion Rating" }, } }, - ["GraftPrefixTulGlobalIncreasedEvasion3"] = { type = "Prefix", affix = "Hazy", "(23-26)% increased Evasion Rating", statOrder = { 1549 }, level = 44, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(23-26)% increased Evasion Rating" }, } }, - ["GraftPrefixTulGlobalIncreasedEvasion4"] = { type = "Prefix", affix = "Shrouded", "(27-30)% increased Evasion Rating", statOrder = { 1549 }, level = 66, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(27-30)% increased Evasion Rating" }, } }, - ["GraftPrefixTulGlobalIncreasedEvasion5"] = { type = "Prefix", affix = "Mistborn", "(30-35)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(30-35)% increased Evasion Rating" }, } }, - ["GraftPrefixTulColdResistance1"] = { type = "Prefix", affix = "Winterised", "+(5-12)% to Cold Resistance", statOrder = { 1631 }, level = 44, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(5-12)% to Cold Resistance" }, } }, - ["GraftPrefixTulColdResistance2"] = { type = "Prefix", affix = "Insular", "+(13-20)% to Cold Resistance", statOrder = { 1631 }, level = 66, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(13-20)% to Cold Resistance" }, } }, - ["GraftPrefixTulColdResistance3"] = { type = "Prefix", affix = "Yeti's", "+(21-28)% to Cold Resistance", statOrder = { 1631 }, level = 82, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(21-28)% to Cold Resistance" }, } }, - ["GraftPrefixTulColdPenetration1"] = { type = "Prefix", affix = "Biting", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2983 }, level = 66, group = "GraftPrefixTulColdPenetration", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, - ["GraftPrefixTulChillEffect1"] = { type = "Prefix", affix = "Impeding", "(20-29)% increased Effect of Chill", statOrder = { 5769 }, level = 66, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [828179689] = { "(20-29)% increased Effect of Chill" }, } }, - ["GraftPrefixTulChillEffect2"] = { type = "Prefix", affix = "Shackling", "(30-40)% increased Effect of Chill", statOrder = { 5769 }, level = 82, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [828179689] = { "(30-40)% increased Effect of Chill" }, } }, - ["GraftPrefixTulCritMultiplier1"] = { type = "Prefix", affix = "Dangerous", "+(9-10)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(9-10)% to Global Critical Strike Multiplier" }, } }, - ["GraftPrefixTulCritMultiplier2"] = { type = "Prefix", affix = "Harmful", "+(11-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 22, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(11-12)% to Global Critical Strike Multiplier" }, } }, - ["GraftPrefixTulCritMultiplier3"] = { type = "Prefix", affix = "Threatening", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 44, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(13-14)% to Global Critical Strike Multiplier" }, } }, - ["GraftPrefixTulCritMultiplier4"] = { type = "Prefix", affix = "Lethal", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 66, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } }, - ["GraftPrefixTulCritMultiplier5"] = { type = "Prefix", affix = "Deadly", "+(16-18)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(16-18)% to Global Critical Strike Multiplier" }, } }, - ["GraftPrefixTulCritChance1"] = { type = "Prefix", affix = "Careful", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(10-14)% increased Global Critical Strike Chance" }, } }, - ["GraftPrefixTulCritChance2"] = { type = "Prefix", affix = "Exact", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 22, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(15-19)% increased Global Critical Strike Chance" }, } }, - ["GraftPrefixTulCritChance3"] = { type = "Prefix", affix = "Unerring", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 44, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(20-24)% increased Global Critical Strike Chance" }, } }, - ["GraftPrefixTulCritChance4"] = { type = "Prefix", affix = "Precise", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 66, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(25-29)% increased Global Critical Strike Chance" }, } }, - ["GraftPrefixTulCritChance5"] = { type = "Prefix", affix = "Pinpoint", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(30-34)% increased Global Critical Strike Chance" }, } }, - ["GraftPrefixTulPowerChargeOnKill1"] = { type = "Prefix", affix = "Potent", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 66, group = "GraftPrefixTulPowerChargeOnKill", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } }, - ["GraftPrefixTulFrenzyChargeOnHitVsUnique1"] = { type = "Prefix", affix = "Frenzied", "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy", statOrder = { 6762 }, level = 66, group = "GraftPrefixTulFrenzyChargeOnHitVsUnique", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4113439745] = { "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy" }, } }, - ["GraftPrefixTulMaximumColdResistance1"] = { type = "Prefix", affix = "Blustering", "+(1-2)% to maximum Cold Resistance", statOrder = { 1629 }, level = 74, group = "GraftPrefixTulMaximumColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+(1-2)% to maximum Cold Resistance" }, } }, - ["GraftPrefixTulDexterity1"] = { type = "Prefix", affix = "Lithe", "+(3-5) to Dexterity", statOrder = { 1178 }, level = 1, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(3-5) to Dexterity" }, } }, - ["GraftPrefixTulDexterity2"] = { type = "Prefix", affix = "Adroit", "+(6-8) to Dexterity", statOrder = { 1178 }, level = 22, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(6-8) to Dexterity" }, } }, - ["GraftPrefixTulDexterity3"] = { type = "Prefix", affix = "Nimble", "+(9-11) to Dexterity", statOrder = { 1178 }, level = 44, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(9-11) to Dexterity" }, } }, - ["GraftPrefixTulDexterity4"] = { type = "Prefix", affix = "Adept", "+(12-14) to Dexterity", statOrder = { 1178 }, level = 66, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(12-14) to Dexterity" }, } }, - ["GraftPrefixTulDexterity5"] = { type = "Prefix", affix = "Dexterous", "+(15-17) to Dexterity", statOrder = { 1178 }, level = 82, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(15-17) to Dexterity" }, } }, - ["GraftPrefixTulPercentageDexterity1"] = { type = "Prefix", affix = "Graceful", "(2-4)% increased Dexterity", statOrder = { 1185 }, level = 74, group = "GraftPrefixTulPercentageDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4139681126] = { "(2-4)% increased Dexterity" }, } }, - ["GraftPrefixTulMinionLife1"] = { type = "Prefix", affix = "Chief's", "Minions have (9-10)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (9-10)% increased maximum Life" }, } }, - ["GraftPrefixTulMinionLife2"] = { type = "Prefix", affix = "Ruler's", "Minions have (11-12)% increased maximum Life", statOrder = { 1766 }, level = 22, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (11-12)% increased maximum Life" }, } }, - ["GraftPrefixTulMinionLife3"] = { type = "Prefix", affix = "Despot's", "Minions have (13-14)% increased maximum Life", statOrder = { 1766 }, level = 44, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (13-14)% increased maximum Life" }, } }, - ["GraftPrefixTulMinionLife4"] = { type = "Prefix", affix = "Authoritarian's", "Minions have (15-16)% increased maximum Life", statOrder = { 1766 }, level = 66, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (15-16)% increased maximum Life" }, } }, - ["GraftPrefixTulMinionLife5"] = { type = "Prefix", affix = "Overlord's", "Minions have (17-18)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (17-18)% increased maximum Life" }, } }, - ["GraftPrefixTulMinionResistances1"] = { type = "Prefix", affix = "Noble's", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 2912 }, level = 22, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(5-8)% to all Elemental Resistances" }, } }, - ["GraftPrefixTulMinionResistances2"] = { type = "Prefix", affix = "Lord's", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 2912 }, level = 44, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(9-12)% to all Elemental Resistances" }, } }, - ["GraftPrefixTulMinionResistances3"] = { type = "Prefix", affix = "King's", "Minions have +(13-16)% to all Elemental Resistances", statOrder = { 2912 }, level = 66, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(13-16)% to all Elemental Resistances" }, } }, - ["GraftSuffixStunDuration1"] = { type = "Suffix", affix = "of Slamming", "Skills used by this Graft have (10-19)% increased Stun Duration", statOrder = { 10923 }, level = 44, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (10-19)% increased Stun Duration" }, } }, - ["GraftSuffixStunDuration2"] = { type = "Suffix", affix = "of Thudding", "Skills used by this Graft have (20-29)% increased Stun Duration", statOrder = { 10923 }, level = 66, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (20-29)% increased Stun Duration" }, } }, - ["GraftSuffixStunDuration3"] = { type = "Suffix", affix = "of Dazing", "Skills used by this Graft have (30-39)% increased Stun Duration", statOrder = { 10923 }, level = 82, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (30-39)% increased Stun Duration" }, } }, - ["GraftSuffixAreaOfEffect1"] = { type = "Suffix", affix = "of Reach", "Skills used by this Graft have (8-12)% increased Area of Effect", statOrder = { 10870 }, level = 1, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (8-12)% increased Area of Effect" }, } }, - ["GraftSuffixAreaOfEffect2"] = { type = "Suffix", affix = "of Grasping", "Skills used by this Graft have (14-16)% increased Area of Effect", statOrder = { 10870 }, level = 22, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (14-16)% increased Area of Effect" }, } }, - ["GraftSuffixAreaOfEffect3"] = { type = "Suffix", affix = "of Extension", "Skills used by this Graft have (18-22)% increased Area of Effect", statOrder = { 10870 }, level = 44, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (18-22)% increased Area of Effect" }, } }, - ["GraftSuffixAreaOfEffect4"] = { type = "Suffix", affix = "of Broadening", "Skills used by this Graft have (24-28)% increased Area of Effect", statOrder = { 10870 }, level = 66, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (24-28)% increased Area of Effect" }, } }, - ["GraftSuffixAreaOfEffect5"] = { type = "Suffix", affix = "of the Expanse", "Skills used by this Graft have (30-34)% increased Area of Effect", statOrder = { 10870 }, level = 82, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (30-34)% increased Area of Effect" }, } }, - ["GraftSuffixHinderOnHit1"] = { type = "Suffix", affix = "of Hindrance", "Spells used by this Graft Hinder Enemies on Hit", statOrder = { 10922 }, level = 44, group = "GraftSuffixHinderOnHit", weightKey = { "graft_tul_tornado", "graft_esh_lightning_hands", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [463925000] = { "Spells used by this Graft Hinder Enemies on Hit" }, } }, - ["GraftSuffixChainingDistance1"] = { type = "Suffix", affix = "of Ricocheting", "Skills used by this Graft have (40-69)% increased Chaining range", statOrder = { 10872 }, level = 44, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (40-69)% increased Chaining range" }, } }, - ["GraftSuffixChainingDistance2"] = { type = "Suffix", affix = "of Chaining", "Skills used by this Graft have (70-100)% increased Chaining range", statOrder = { 10872 }, level = 82, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (70-100)% increased Chaining range" }, } }, - ["GraftSuffixAdditionalProjectiles1"] = { type = "Suffix", affix = "of Splitting", "Skills used by this Graft fire 2 additional Projectiles", statOrder = { 10913 }, level = 44, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 2 additional Projectiles" }, } }, - ["GraftSuffixAdditionalProjectiles2"] = { type = "Suffix", affix = "of Splintering", "Skills used by this Graft fire 3 additional Projectiles", statOrder = { 10913 }, level = 82, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 3 additional Projectiles" }, } }, - ["GraftSuffixProjectileSpeed1"] = { type = "Suffix", affix = "of Flight", "Skills used by this Graft have (8-12)% increased Projectile Speed", statOrder = { 10915 }, level = 1, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (8-12)% increased Projectile Speed" }, } }, - ["GraftSuffixProjectileSpeed2"] = { type = "Suffix", affix = "of Gliding", "Skills used by this Graft have (13-17)% increased Projectile Speed", statOrder = { 10915 }, level = 22, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (13-17)% increased Projectile Speed" }, } }, - ["GraftSuffixProjectileSpeed3"] = { type = "Suffix", affix = "of Homing", "Skills used by this Graft have (18-22)% increased Projectile Speed", statOrder = { 10915 }, level = 44, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (18-22)% increased Projectile Speed" }, } }, - ["GraftSuffixProjectileSpeed4"] = { type = "Suffix", affix = "of Launching", "Skills used by this Graft have (23-27)% increased Projectile Speed", statOrder = { 10915 }, level = 66, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (23-27)% increased Projectile Speed" }, } }, - ["GraftSuffixProjectileSpeed5"] = { type = "Suffix", affix = "of Soaring", "Skills used by this Graft have (28-32)% increased Projectile Speed", statOrder = { 10915 }, level = 82, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (28-32)% increased Projectile Speed" }, } }, - ["GraftSuffixIncreasedDamage1"] = { type = "Suffix", affix = "of Blasting", "Skills used by this Graft deal (10-29)% increased Damage", statOrder = { 10885 }, level = 1, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (10-29)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage2"] = { type = "Suffix", affix = "of Smashing", "Skills used by this Graft deal (30-49)% increased Damage", statOrder = { 10885 }, level = 11, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (30-49)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage3"] = { type = "Suffix", affix = "of Shattering", "Skills used by this Graft deal (50-69)% increased Damage", statOrder = { 10885 }, level = 22, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (50-69)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage4"] = { type = "Suffix", affix = "of Wrecking", "Skills used by this Graft deal (70-89)% increased Damage", statOrder = { 10885 }, level = 33, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (70-89)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage5"] = { type = "Suffix", affix = "of Destroying", "Skills used by this Graft deal (90-109)% increased Damage", statOrder = { 10885 }, level = 44, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (90-109)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage6"] = { type = "Suffix", affix = "of Crushing", "Skills used by this Graft deal (110-129)% increased Damage", statOrder = { 10885 }, level = 55, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (110-129)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage7"] = { type = "Suffix", affix = "of Disintegration", "Skills used by this Graft deal (130-149)% increased Damage", statOrder = { 10885 }, level = 66, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (130-149)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage8"] = { type = "Suffix", affix = "of Demolishing", "Skills used by this Graft deal (150-169)% increased Damage", statOrder = { 10885 }, level = 74, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (150-169)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage9"] = { type = "Suffix", affix = "of Ruination", "Skills used by this Graft deal (170-189)% increased Damage", statOrder = { 10885 }, level = 82, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (170-189)% increased Damage" }, } }, - ["GraftSuffixIncreasedDamage10"] = { type = "Suffix", affix = "of Annihilation", "Skills used by this Graft deal (190-220)% increased Damage", statOrder = { 10885 }, level = 85, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (190-220)% increased Damage" }, } }, - ["GraftSuffixIncreasedDuration1"] = { type = "Suffix", affix = "of Lingering", "Skills used by this Graft have (10-14)% increased Skill Effect Duration", statOrder = { 10888 }, level = 1, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (10-14)% increased Skill Effect Duration" }, } }, - ["GraftSuffixIncreasedDuration2"] = { type = "Suffix", affix = "of Lasting", "Skills used by this Graft have (15-20)% increased Skill Effect Duration", statOrder = { 10888 }, level = 22, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (15-20)% increased Skill Effect Duration" }, } }, - ["GraftSuffixIncreasedDuration3"] = { type = "Suffix", affix = "of the Unending", "Skills used by this Graft have (20-24)% increased Skill Effect Duration", statOrder = { 10888 }, level = 44, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (20-24)% increased Skill Effect Duration" }, } }, - ["GraftSuffixIncreasedDuration4"] = { type = "Suffix", affix = "of Permanence", "Skills used by this Graft have (25-29)% increased Skill Effect Duration", statOrder = { 10888 }, level = 66, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (25-29)% increased Skill Effect Duration" }, } }, - ["GraftSuffixIncreasedDuration5"] = { type = "Suffix", affix = "of Eternity", "Skills used by this Graft have (30-35)% increased Skill Effect Duration", statOrder = { 10888 }, level = 82, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (30-35)% increased Skill Effect Duration" }, } }, - ["GraftSuffixCooldownSpeed1"] = { type = "Suffix", affix = "of the Creek", "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 1, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixCooldownSpeed2"] = { type = "Suffix", affix = "of the Stream", "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 22, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixCooldownSpeed3"] = { type = "Suffix", affix = "of the River", "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 44, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 700, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixCooldownSpeed4"] = { type = "Suffix", affix = "of the Tide", "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 66, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixCooldownSpeed5"] = { type = "Suffix", affix = "of the Oceans", "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate", statOrder = { 10878 }, level = 82, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 300, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate" }, } }, - ["GraftSuffixSkipCooldown1"] = { type = "Suffix", affix = "of Chronomancy", "Skills used by this Graft have 25% chance to not consume a Cooldown on use", statOrder = { 10921 }, level = 66, group = "GraftSuffixSkipCooldown", weightKey = { "graft_esh_bolt_ring", "graft_uulnetol_hand_slam", "graft_xoph_cremations", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2520970416] = { "Skills used by this Graft have 25% chance to not consume a Cooldown on use" }, } }, - ["GraftSuffixAttackSpeed1"] = { type = "Suffix", affix = "of Speed", "Skills used by this Graft have (10-24)% increased Attack Speed", statOrder = { 10871 }, level = 22, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (10-24)% increased Attack Speed" }, } }, - ["GraftSuffixAttackSpeed2"] = { type = "Suffix", affix = "of Quickness", "Skills used by this Graft have (25-39)% increased Attack Speed", statOrder = { 10871 }, level = 44, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (25-39)% increased Attack Speed" }, } }, - ["GraftSuffixAttackSpeed3"] = { type = "Suffix", affix = "of Agility", "Skills used by this Graft have (40-55)% increased Attack Speed", statOrder = { 10871 }, level = 66, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (40-55)% increased Attack Speed" }, } }, - ["GraftSuffixSkillLevel1"] = { type = "Suffix", affix = "of Nobility", "+2 to level of Skills used by this Graft", statOrder = { 10904 }, level = 44, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+2 to level of Skills used by this Graft" }, } }, - ["GraftSuffixSkillLevel2"] = { type = "Suffix", affix = "of Lordship", "+3 to level of Skills used by this Graft", statOrder = { 10904 }, level = 66, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+3 to level of Skills used by this Graft" }, } }, - ["GraftSuffixSkillLevel3"] = { type = "Suffix", affix = "of Royalty", "+4 to level of Skills used by this Graft", statOrder = { 10904 }, level = 85, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+4 to level of Skills used by this Graft" }, } }, - ["GraftSuffixCriticalChance1"] = { type = "Suffix", affix = "of Incision", "Skills used by this Graft have (40-79)% increased Critical Strike Chance", "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 1, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (40-79)% increased Critical Strike Chance" }, } }, - ["GraftSuffixCriticalChance2"] = { type = "Suffix", affix = "of Slicing", "Skills used by this Graft have (80-119)% increased Critical Strike Chance", "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 22, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (80-119)% increased Critical Strike Chance" }, } }, - ["GraftSuffixCriticalChance3"] = { type = "Suffix", affix = "of Dicing", "Skills used by this Graft have (120-139)% increased Critical Strike Chance", "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 44, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (120-139)% increased Critical Strike Chance" }, } }, - ["GraftSuffixCriticalChance4"] = { type = "Suffix", affix = "of Striking", "Skills used by this Graft have (140-159)% increased Critical Strike Chance", "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 66, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (140-159)% increased Critical Strike Chance" }, } }, - ["GraftSuffixCriticalChance5"] = { type = "Suffix", affix = "of Precision", "Skills used by this Graft have (160-200)% increased Critical Strike Chance", "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier", statOrder = { 10881, 10882 }, level = 82, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (160-200)% increased Critical Strike Chance" }, } }, - ["GraftSuffixFirePenetration1"] = { type = "Suffix", affix = "of Singing", "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance", statOrder = { 10917 }, level = 44, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance" }, } }, - ["GraftSuffixFirePenetration2"] = { type = "Suffix", affix = "of Searing", "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance", statOrder = { 10917 }, level = 66, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance" }, } }, - ["GraftSuffixFirePenetration3"] = { type = "Suffix", affix = "of Blackening", "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance", statOrder = { 10917 }, level = 82, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance" }, } }, - ["GraftSuffixColdPenetration1"] = { type = "Suffix", affix = "of the North", "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance", statOrder = { 10916 }, level = 44, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance" }, } }, - ["GraftSuffixColdPenetration2"] = { type = "Suffix", affix = "of the Boreal", "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance", statOrder = { 10916 }, level = 66, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance" }, } }, - ["GraftSuffixColdPenetration3"] = { type = "Suffix", affix = "of the Arctic", "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance", statOrder = { 10916 }, level = 82, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance" }, } }, - ["GraftSuffixLightningPenetration1"] = { type = "Suffix", affix = "of Scattered Bolts", "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 44, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance" }, } }, - ["GraftSuffixLightningPenetration2"] = { type = "Suffix", affix = "of Striking Jolts", "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 66, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance" }, } }, - ["GraftSuffixLightningPenetration3"] = { type = "Suffix", affix = "of Seeking Sparks", "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance", statOrder = { 10918 }, level = 82, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance" }, } }, - ["GraftSuffixUulnetolHandSlamDamageForCDR1"] = { type = "Suffix", affix = "of Impact", "Skills used by this Graft have 20% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (20-29)% more Damage", statOrder = { 10878, 10933 }, level = 44, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (20-29)% more Damage" }, [1053840971] = { "Skills used by this Graft have 20% reduced Cooldown Recovery Rate" }, } }, - ["GraftSuffixUulnetolHandSlamDamageForCDR2"] = { type = "Suffix", affix = "of Cratering", "Skills used by this Graft have 25% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (30-45)% more Damage", statOrder = { 10878, 10933 }, level = 82, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (30-45)% more Damage" }, [1053840971] = { "Skills used by this Graft have 25% reduced Cooldown Recovery Rate" }, } }, - ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE1"] = { type = "Suffix", affix = "of Earthshaking", "Skills used by this Graft have (15-24)% more Area of Effect", "Skills used by this Graft have 15% less Attack Speed", statOrder = { 10956, 10957 }, level = 44, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 15% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (15-24)% more Area of Effect" }, } }, - ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE2"] = { type = "Suffix", affix = "of Earthshattering", "Skills used by this Graft have (25-35)% more Area of Effect", "Skills used by this Graft have 10% less Attack Speed", statOrder = { 10956, 10957 }, level = 82, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 10% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (25-35)% more Area of Effect" }, } }, - ["GraftSuffixUulnetolHandSlamCrushOnHit1"] = { type = "Suffix", affix = "of Pulverising", "Skills used by this Graft Crush on Hit", statOrder = { 10883 }, level = 44, group = "GraftSuffixUulnetolHandSlamCrushOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [668072950] = { "Skills used by this Graft Crush on Hit" }, } }, - ["GraftSuffixUulnetolHandSlamVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Vulnerability", "Skills used by this Graft inflict Vulnerability on Hit", statOrder = { 10939 }, level = 44, group = "GraftSuffixUulnetolHandSlamVulnerabilityOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3989101809] = { "Skills used by this Graft inflict Vulnerability on Hit" }, } }, - ["GraftSuffixUulnetolHandSlamIntimidateOnHit1"] = { type = "Suffix", affix = "of Intimidation", "Skills used by this Graft Intimidate on Hit", statOrder = { 10899 }, level = 44, group = "GraftSuffixUulnetolHandSlamIntimidateOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1790471105] = { "Skills used by this Graft Intimidate on Hit" }, } }, - ["GraftSuffixIgnorePhysMitigation1"] = { type = "Suffix", affix = "of Overwhelming", "Skills used by this Graft ignore Enemy Physical Damage Reduction", statOrder = { 10895 }, level = 44, group = "GraftSuffixIgnorePhysMitigation", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2150059749] = { "Skills used by this Graft ignore Enemy Physical Damage Reduction" }, } }, - ["GraftSuffixShockChance1"] = { type = "Suffix", affix = "of Zapping", "Skills used by this Graft have (19-57)% chance to Shock", statOrder = { 10920 }, level = 1, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (19-57)% chance to Shock" }, } }, - ["GraftSuffixShockChance2"] = { type = "Suffix", affix = "of Jolting", "Skills used by this Graft have (29-87)% chance to Shock", statOrder = { 10920 }, level = 22, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (29-87)% chance to Shock" }, } }, - ["GraftSuffixShockChance3"] = { type = "Suffix", affix = "of Blitzing", "Skills used by this Graft have (39-117)% chance to Shock", statOrder = { 10920 }, level = 44, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (39-117)% chance to Shock" }, } }, - ["GraftSuffixShockChance4"] = { type = "Suffix", affix = "of Electricity", "Skills used by this Graft have (49-147)% chance to Shock", statOrder = { 10920 }, level = 66, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (49-147)% chance to Shock" }, } }, - ["GraftSuffixShockChance5"] = { type = "Suffix", affix = "of Sublimation", "Skills used by this Graft have (60-180)% chance to Shock", statOrder = { 10920 }, level = 82, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (60-180)% chance to Shock" }, } }, - ["GraftSuffixIgniteChance1"] = { type = "Suffix", affix = "of Cinders", "Skills used by this Graft have (13-29)% chance to Ignite", statOrder = { 10874 }, level = 1, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (13-29)% chance to Ignite" }, } }, - ["GraftSuffixIgniteChance2"] = { type = "Suffix", affix = "of Coal", "Skills used by this Graft have (29-44)% chance to Ignite", statOrder = { 10874 }, level = 22, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (29-44)% chance to Ignite" }, } }, - ["GraftSuffixIgniteChance3"] = { type = "Suffix", affix = "of Embers", "Skills used by this Graft have (44-59)% chance to Ignite", statOrder = { 10874 }, level = 44, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (44-59)% chance to Ignite" }, } }, - ["GraftSuffixIgniteChance4"] = { type = "Suffix", affix = "of Ashes", "Skills used by this Graft have (60-74)% chance to Ignite", statOrder = { 10874 }, level = 66, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (60-74)% chance to Ignite" }, } }, - ["GraftSuffixIgniteChance5"] = { type = "Suffix", affix = "of Glowing", "Skills used by this Graft have (75-100)% chance to Ignite", statOrder = { 10874 }, level = 82, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (75-100)% chance to Ignite" }, } }, - ["GraftSuffixFreezeChance1"] = { type = "Suffix", affix = "of Ice", "Skills used by this Graft have (10-19)% chance to Freeze", statOrder = { 10873 }, level = 1, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (10-19)% chance to Freeze" }, } }, - ["GraftSuffixFreezeChance2"] = { type = "Suffix", affix = "of Sleet", "Skills used by this Graft have (20-29)% chance to Freeze", statOrder = { 10873 }, level = 22, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (20-29)% chance to Freeze" }, } }, - ["GraftSuffixFreezeChance3"] = { type = "Suffix", affix = "of Snow", "Skills used by this Graft have (30-39)% chance to Freeze", statOrder = { 10873 }, level = 44, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (30-39)% chance to Freeze" }, } }, - ["GraftSuffixFreezeChance4"] = { type = "Suffix", affix = "of Hail", "Skills used by this Graft have (40-49)% chance to Freeze", statOrder = { 10873 }, level = 66, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (40-49)% chance to Freeze" }, } }, - ["GraftSuffixFreezeChance5"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft have (50-60)% chance to Freeze", statOrder = { 10873 }, level = 82, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (50-60)% chance to Freeze" }, } }, - ["GraftSuffixShockAsThoughDealingMoreDamage1"] = { type = "Suffix", affix = "of Amplification", "Skills used by this Graft Shock Enemies as though dealing 100% more Damage", statOrder = { 10919 }, level = 66, group = "GraftSuffixShockAsThoughDealingMoreDamage", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3626715014] = { "Skills used by this Graft Shock Enemies as though dealing 100% more Damage" }, } }, - ["GraftSuffixLightningGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Bolt", "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 44, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixLightningGainAsChaos2"] = { type = "Suffix", affix = "of Twisted Thunder", "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 66, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixLightningGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Storms", "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10905 }, level = 82, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixFireGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Smoke", "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 44, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixFireGainAsChaos2"] = { type = "Suffix", affix = "of Umbral Flame", "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 66, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixFireGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Flame", "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage", statOrder = { 10893 }, level = 82, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixColdGainAsChaos1"] = { type = "Suffix", affix = "of Blasted Snow", "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 44, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixColdGainAsChaos2"] = { type = "Suffix", affix = "of Blackened Ice", "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 66, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixColdGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Frost", "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage", statOrder = { 10876 }, level = 82, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage" }, } }, - ["GraftSuffixCoverInFrost1"] = { type = "Suffix", affix = "of Snowdrifts", "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit", statOrder = { 10880 }, level = 66, group = "GraftSuffixCoverInFrost", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1987305786] = { "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit" }, } }, - ["GraftSuffixAilmentDuration1"] = { type = "Suffix", affix = "of Torment", "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration", statOrder = { 10869 }, level = 22, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration" }, } }, - ["GraftSuffixAilmentDuration2"] = { type = "Suffix", affix = "of Misery", "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration", statOrder = { 10869 }, level = 66, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration" }, } }, - ["GraftSuffixAilmentDuration3"] = { type = "Suffix", affix = "of Torture", "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration", statOrder = { 10869 }, level = 82, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration" }, } }, - ["GraftSuffixFireExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 44, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit" }, } }, - ["GraftSuffixFireExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 66, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit" }, } }, - ["GraftSuffixFireExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit", statOrder = { 10897 }, level = 82, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit" }, } }, - ["GraftSuffixLightningExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 44, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit" }, } }, - ["GraftSuffixLightningExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 66, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit" }, } }, - ["GraftSuffixLightningExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit", statOrder = { 10898 }, level = 82, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit" }, } }, - ["GraftSuffixImpaleEffect1"] = { type = "Suffix", affix = "of Wringing", "Skills used by this Graft have (20-34)% increased Impale Effect", statOrder = { 10896 }, level = 44, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (20-34)% increased Impale Effect" }, } }, - ["GraftSuffixImpaleEffect2"] = { type = "Suffix", affix = "of Twisting", "Skills used by this Graft have (35-44)% increased Impale Effect", statOrder = { 10896 }, level = 66, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (35-44)% increased Impale Effect" }, } }, - ["GraftSuffixImpaleEffect3"] = { type = "Suffix", affix = "of Mangling", "Skills used by this Graft have (45-55)% increased Impale Effect", statOrder = { 10896 }, level = 82, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (45-55)% increased Impale Effect" }, } }, - ["GraftSuffixMinionDamage1"] = { type = "Suffix", affix = "of Armies", "Minions summoned by this Graft deal (10-29)% increased Damage", statOrder = { 10908 }, level = 1, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (10-29)% increased Damage" }, } }, - ["GraftSuffixMinionDamage2"] = { type = "Suffix", affix = "of Infantry", "Minions summoned by this Graft deal (30-49)% increased Damage", statOrder = { 10908 }, level = 11, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (30-49)% increased Damage" }, } }, - ["GraftSuffixMinionDamage3"] = { type = "Suffix", affix = "of Troops", "Minions summoned by this Graft deal (50-69)% increased Damage", statOrder = { 10908 }, level = 22, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (50-69)% increased Damage" }, } }, - ["GraftSuffixMinionDamage4"] = { type = "Suffix", affix = "of the Multitude", "Minions summoned by this Graft deal (70-89)% increased Damage", statOrder = { 10908 }, level = 33, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (70-89)% increased Damage" }, } }, - ["GraftSuffixMinionDamage5"] = { type = "Suffix", affix = "of Swarms", "Minions summoned by this Graft deal (90-109)% increased Damage", statOrder = { 10908 }, level = 44, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (90-109)% increased Damage" }, } }, - ["GraftSuffixMinionDamage6"] = { type = "Suffix", affix = "of Hordes", "Minions summoned by this Graft deal (110-129)% increased Damage", statOrder = { 10908 }, level = 55, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (110-129)% increased Damage" }, } }, - ["GraftSuffixMinionDamage7"] = { type = "Suffix", affix = "of Hosts", "Minions summoned by this Graft deal (130-149)% increased Damage", statOrder = { 10908 }, level = 66, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (130-149)% increased Damage" }, } }, - ["GraftSuffixMinionDamage8"] = { type = "Suffix", affix = "of Throngs", "Minions summoned by this Graft deal (150-169)% increased Damage", statOrder = { 10908 }, level = 74, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (150-169)% increased Damage" }, } }, - ["GraftSuffixMinionDamage9"] = { type = "Suffix", affix = "of Droves", "Minions summoned by this Graft deal (170-189)% increased Damage", statOrder = { 10908 }, level = 82, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (170-189)% increased Damage" }, } }, - ["GraftSuffixMinionDamage10"] = { type = "Suffix", affix = "of Legions", "Minions summoned by this Graft deal (190-220)% increased Damage", statOrder = { 10908 }, level = 85, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (190-220)% increased Damage" }, } }, - ["GraftSuffixMinionLife1"] = { type = "Suffix", affix = "of Muscle", "Minions summoned by this Graft have (32-36)% increased Life", statOrder = { 10909 }, level = 1, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (32-36)% increased Life" }, } }, - ["GraftSuffixMinionLife2"] = { type = "Suffix", affix = "of Flesh", "Minions summoned by this Graft have (38-42)% increased Life", statOrder = { 10909 }, level = 22, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (38-42)% increased Life" }, } }, - ["GraftSuffixMinionLife3"] = { type = "Suffix", affix = "of Sinew", "Minions summoned by this Graft have (44-48)% increased Life", statOrder = { 10909 }, level = 44, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (44-48)% increased Life" }, } }, - ["GraftSuffixMinionLife4"] = { type = "Suffix", affix = "of Beef", "Minions summoned by this Graft have (50-54)% increased Life", statOrder = { 10909 }, level = 66, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (50-54)% increased Life" }, } }, - ["GraftSuffixMinionLife5"] = { type = "Suffix", affix = "of Meat", "Minions summoned by this Graft have (56-60)% increased Life", statOrder = { 10909 }, level = 82, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (56-60)% increased Life" }, } }, - ["GraftSuffixMinionAttackSpeed1"] = { type = "Suffix", affix = "of Lunacy", "Minions summoned by this Graft have (12-18)% increased Attack Speed", statOrder = { 10906 }, level = 44, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (12-18)% increased Attack Speed" }, } }, - ["GraftSuffixMinionAttackSpeed2"] = { type = "Suffix", affix = "of Psychopathy", "Minions summoned by this Graft have (19-25)% increased Attack Speed", statOrder = { 10906 }, level = 66, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (19-25)% increased Attack Speed" }, } }, - ["GraftSuffixMinionAttackSpeed3"] = { type = "Suffix", affix = "of Maniacism", "Minions summoned by this Graft have (26-31)% increased Attack Speed", statOrder = { 10906 }, level = 82, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (26-31)% increased Attack Speed" }, } }, - ["GraftSuffixMinionBlindOnHit1"] = { type = "Suffix", affix = "of Blinding Snow", "Minions summoned by this Graft have (10-20)% chance to Blind on Hit", statOrder = { 10911 }, level = 66, group = "GraftSuffixMinionBlindOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2313228671] = { "Minions summoned by this Graft have (10-20)% chance to Blind on Hit" }, } }, - ["GraftSuffixMinionTauntOnHit1"] = { type = "Suffix", affix = "of Taunting", "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit", statOrder = { 10907 }, level = 66, group = "GraftSuffixMinionTauntOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [131940510] = { "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit" }, } }, - ["GraftSuffixMinionDamageGainAsCold1"] = { type = "Suffix", affix = "of Frozen Falls", "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 44, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage" }, } }, - ["GraftSuffixMinionDamageGainAsCold2"] = { type = "Suffix", affix = "of Winter Winds", "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 66, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage" }, } }, - ["GraftSuffixMinionDamageGainAsCold3"] = { type = "Suffix", affix = "of Sleetbound Snow", "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage", statOrder = { 10910 }, level = 82, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage" }, } }, - ["GraftSuffixFasterAilments1"] = { type = "Suffix", affix = "of Decomposition", "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster", statOrder = { 10887 }, level = 44, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster" }, } }, - ["GraftSuffixFasterAilments2"] = { type = "Suffix", affix = "of Festering", "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster", statOrder = { 10887 }, level = 66, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster" }, } }, - ["GraftSuffixFasterAilments3"] = { type = "Suffix", affix = "of Perishing", "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster", statOrder = { 10887 }, level = 82, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster" }, } }, - ["GraftSuffixPunishmentOnHit1"] = { type = "Suffix", affix = "of Punishment", "Skills used by this Graft inflict Punishment on Hit", statOrder = { 10884 }, level = 44, group = "GraftSuffixPunishmentOnHit", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1245902490] = { "Skills used by this Graft inflict Punishment on Hit" }, } }, - ["GraftSuffixNonDamagingAilmentEffect1"] = { type = "Suffix", affix = "of Oppression", "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 22, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments" }, } }, - ["GraftSuffixNonDamagingAilmentEffect2"] = { type = "Suffix", affix = "of Suppression", "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 66, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments" }, } }, - ["GraftSuffixNonDamagingAilmentEffect3"] = { type = "Suffix", affix = "of Persecution", "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments", statOrder = { 10912 }, level = 82, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments" }, } }, - ["GraftSuffixIncreasedDamageVsIgnited1"] = { type = "Suffix", affix = "of Aggravation", "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 44, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies" }, } }, - ["GraftSuffixIncreasedDamageVsIgnited2"] = { type = "Suffix", affix = "of Exacerbation", "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 66, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies" }, } }, - ["GraftSuffixIncreasedDamageVsIgnited3"] = { type = "Suffix", affix = "of Anguish", "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies", statOrder = { 10886 }, level = 82, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies" }, } }, - ["GraftSuffixEshLightningRingBuffAddedLightning1"] = { type = "Suffix", affix = "of Glowing", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage", statOrder = { 10868 }, level = 44, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage" }, } }, - ["GraftSuffixEshLightningRingBuffAddedLightning2"] = { type = "Suffix", affix = "of Shimmering", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage", statOrder = { 10868 }, level = 66, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage" }, } }, - ["GraftSuffixEshLightningRingBuffAddedLightning3"] = { type = "Suffix", affix = "of Radiance", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage", statOrder = { 10868 }, level = 82, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage" }, } }, - ["GraftSuffixEshLightningRingConductivityOnHit"] = { type = "Suffix", affix = "of Conductivity", "Skills used by this Graft inflict Conductivity on Hit", statOrder = { 10877 }, level = 66, group = "GraftSuffixEshLightningRingConductivityOnHit", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3285341404] = { "Skills used by this Graft inflict Conductivity on Hit" }, } }, - ["GraftSuffixEshLightningRingNumberOfBolts1"] = { type = "Suffix", affix = "of Bolts", "Skills used by this Graft cause 4 additional lightning bolt strikes", statOrder = { 10891 }, level = 44, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 4 additional lightning bolt strikes" }, } }, - ["GraftSuffixEshLightningRingNumberOfBolts2"] = { type = "Suffix", affix = "of Thunderclaps", "Skills used by this Graft cause 6 additional lightning bolt strikes", statOrder = { 10891 }, level = 82, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 6 additional lightning bolt strikes" }, } }, - ["GraftSuffixXophMoltenShellShieldAmount1"] = { type = "Suffix", affix = "of the Core", "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage", statOrder = { 10947 }, level = 44, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage" }, } }, - ["GraftSuffixXophMoltenShellShieldAmount2"] = { type = "Suffix", affix = "of the Crux", "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage", statOrder = { 10947 }, level = 66, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage" }, } }, - ["GraftSuffixXophMoltenShellShieldAmount3"] = { type = "Suffix", affix = "of the Heart", "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage", statOrder = { 10947 }, level = 82, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage" }, } }, - ["GraftSuffixXophMoltenShellCoverInAsh1"] = { type = "Suffix", affix = "of Ashen Flame", "Skills used by this Graft Cover Enemies in Ash on Hit", statOrder = { 10879 }, level = 66, group = "GraftSuffixXophMoltenShellCoverInAsh", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [613591578] = { "Skills used by this Graft Cover Enemies in Ash on Hit" }, } }, - ["GraftSuffixXophMoltenShellArmourDuringBuff1"] = { type = "Suffix", affix = "of Flameplating", "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour", statOrder = { 10948 }, level = 44, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour" }, } }, - ["GraftSuffixXophMoltenShellArmourDuringBuff2"] = { type = "Suffix", affix = "of Fiery Buttresses", "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour", statOrder = { 10948 }, level = 82, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour" }, } }, - ["GraftSuffixXophMoltenShellPercentTakenByBuff1"] = { type = "Suffix", affix = "of the Fireheart", "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", statOrder = { 10949 }, level = 66, group = "GraftSuffixXophMoltenShellPercentTakenByBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2664271989] = { "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield" }, } }, - ["GraftSuffixXophMoltenShellLessShieldIncreasedCDR1"] = { type = "Suffix", affix = "of Hasty Reconstruction", "Skills used by this Graft have 40% increased Cooldown Recovery Rate", "Heart of Flame Buff used by this Graft can take 30% less Damage", statOrder = { 10878, 10950 }, level = 44, group = "GraftSuffixXophMoltenShellLessShieldIncreasedCDR", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have 40% increased Cooldown Recovery Rate" }, [2338032775] = { "Heart of Flame Buff used by this Graft can take 30% less Damage" }, } }, - ["GraftSuffixFrostbiteOnHit1"] = { type = "Suffix", affix = "of Frostbite", "Skills used by this Graft inflict Frostbite on Hit", statOrder = { 10894 }, level = 44, group = "GraftSuffixFrostbiteOnHit", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [1593675162] = { "Skills used by this Graft inflict Frostbite on Hit" }, } }, - ["GraftSuffixTulTornadoProjectileDamageAfterPierce1"] = { type = "Suffix", affix = "of Boring", "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage", statOrder = { 10914 }, level = 66, group = "GraftSuffixTulTornadoProjectileDamageAfterPierce", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [793704702] = { "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage" }, } }, - ["GraftSuffixTulTornadoAdditionalTornado1"] = { type = "Suffix", affix = "of Whirlwinds", "Skills used by this Graft deal 40% less Damage", "Dance in the White used by this Graft creates an additional Tornado", "Dance in the White used by this Graft has +1 to maximum Tornados", statOrder = { 10929, 10930, 10931 }, level = 66, group = "GraftSuffixTulTornadoAdditionalTornado", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4064732043] = { "Skills used by this Graft deal 40% less Damage" }, [1180345918] = { "Dance in the White used by this Graft has +1 to maximum Tornados" }, [2372432170] = { "Dance in the White used by this Graft creates an additional Tornado" }, } }, - ["GraftSuffixXophGeysersAdditionalGeyser1"] = { type = "Suffix", affix = "of Eruption", "His Burning Message used by this Graft creates an additional geyser", statOrder = { 10945 }, level = 44, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates an additional geyser" }, } }, - ["GraftSuffixXophGeysersAdditionalGeyser2"] = { type = "Suffix", affix = "of Geysers", "His Burning Message used by this Graft creates 2 additional geysers", statOrder = { 10945 }, level = 82, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates 2 additional geysers" }, } }, - ["GraftSuffixXophGeysersAdditionalWarcyProjectiles1"] = { type = "Suffix", affix = "of Deafening", "Geysers created by this Graft fire 2 additional Projectiles when you Warcry", statOrder = { 10946 }, level = 66, group = "GraftSuffixXophGeysersAdditionalWarcyProjectiles", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4169460025] = { "Geysers created by this Graft fire 2 additional Projectiles when you Warcry" }, } }, - ["GraftSuffixJoltBuffMaximumJoltBuffCount1"] = { type = "Suffix", affix = "of Trembling", "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs", statOrder = { 10902 }, level = 44, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs" }, } }, - ["GraftSuffixJoltBuffMaximumJoltBuffCount2"] = { type = "Suffix", affix = "of Shuddering", "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs", statOrder = { 10902 }, level = 82, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs" }, } }, - ["GraftSuffixJoltMaxDamageAndDamageTaken1"] = { type = "Suffix", affix = "of Peril", "Jolt granted by this Graft grants +1% increased Damage taken", "Jolt granted by this Graft grants +1% more Maximum Attack Damage", statOrder = { 10889, 10890 }, level = 66, group = "GraftSuffixJoltMaxDamageAndDamageTaken", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3955143601] = { "Jolt granted by this Graft grants +1% more Maximum Attack Damage" }, [3853303544] = { "Jolt granted by this Graft grants +1% increased Damage taken" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance1"] = { type = "Suffix", affix = "of Heightening", "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance", statOrder = { 10900 }, level = 1, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance2"] = { type = "Suffix", affix = "of Sharpening", "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance", statOrder = { 10900 }, level = 22, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance3"] = { type = "Suffix", affix = "of Amplification", "Jolt granted by this Graft grants 4% increased Critical Strike Chance", statOrder = { 10900 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 4% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance4"] = { type = "Suffix", affix = "of Intensity", "Jolt granted by this Graft grants 5% increased Critical Strike Chance", statOrder = { 10900 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 5% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeChance5"] = { type = "Suffix", affix = "of Escalation", "Jolt granted by this Graft grants 6% increased Critical Strike Chance", statOrder = { 10900 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 6% increased Critical Strike Chance" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Pins", "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier", statOrder = { 10901 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Blades", "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier", statOrder = { 10901 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier" }, } }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Daggers", "Jolt granted by this Graft grants +4% to Critical Strike Multiplier", statOrder = { 10901 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +4% to Critical Strike Multiplier" }, } }, - ["GraftSuffixJoltGrantsMovementVelocity1"] = { type = "Suffix", affix = "of Velocity", "Jolt granted by this Graft grants 1% increased Movement Speed", statOrder = { 10903 }, level = 66, group = "GraftSuffixJoltGrantsMovementVelocity", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1945948244] = { "Jolt granted by this Graft grants 1% increased Movement Speed" }, } }, - ["GraftSuffixLightningHandsAdditionalHands1"] = { type = "Suffix", affix = "of Grasping", "Enervating Grasp used by this Graft creates (3-5) additional Hands", statOrder = { 10892 }, level = 66, group = "GraftSuffixLightningHandsAdditionalHands", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [300482938] = { "Enervating Grasp used by this Graft creates (3-5) additional Hands" }, } }, - ["GraftSuffixLightningHandsUnnerveOnHit1"] = { type = "Suffix", affix = "of Unnerving", "Skills used by this Graft Unnerve on Hit", statOrder = { 10875 }, level = 44, group = "GraftSuffixLightningHandsUnnerveOnHit", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2418139890] = { "Skills used by this Graft Unnerve on Hit" }, } }, - ["GraftSuffixUulNetolLowLifeBuffDurationForEffect1"] = { type = "Suffix", affix = "of Dilution", "Skills used by this Graft have (34-40)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10888, 10953 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (34-40)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffDurationForEffect2"] = { type = "Suffix", affix = "of Thinning", "Skills used by this Graft have (41-45)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10888, 10953 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (41-45)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffAdditionalCharge1"] = { type = "Suffix", affix = "of Endurance", "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained", statOrder = { 10954 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffAdditionalCharge", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [994844444] = { "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained" }, } }, - ["GraftSuffixUulNetolLowLifeBuffRecovery1"] = { type = "Suffix", affix = "of Recovery", "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate", statOrder = { 10953 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffRecovery2"] = { type = "Suffix", affix = "of Rejuvenation", "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate", statOrder = { 10953 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffRecovery3"] = { type = "Suffix", affix = "of Renewal", "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate", statOrder = { 10953 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate" }, } }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance1"] = { type = "Suffix", affix = "of the Bulwark", "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage", statOrder = { 10951 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage" }, } }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance2"] = { type = "Suffix", affix = "of Shielding", "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage", statOrder = { 10951 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage" }, } }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance3"] = { type = "Suffix", affix = "of the Turtle", "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage", statOrder = { 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage" }, } }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech1"] = { type = "Suffix", affix = "of Bloodhunger", "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life", statOrder = { 10952 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life" }, } }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech2"] = { type = "Suffix", affix = "of Vampirism", "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life", statOrder = { 10952 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life" }, } }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech3"] = { type = "Suffix", affix = "of the Leech", "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life", statOrder = { 10952 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life" }, } }, - ["GraftSuffixUulNetolImpaleBuffImpaleEffect1"] = { type = "Suffix", affix = "of Twisting", "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale", statOrder = { 10938 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale" }, } }, - ["GraftSuffixUulNetolImpaleBuffImpaleEffect2"] = { type = "Suffix", affix = "of Wrenching", "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale", statOrder = { 10938 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed1"] = { type = "Suffix", affix = "of the Berserker", "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed", statOrder = { 10936 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed2"] = { type = "Suffix", affix = "of the Maniac", "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed", statOrder = { 10936 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed3"] = { type = "Suffix", affix = "of the Madman", "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed", statOrder = { 10936 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE1"] = { type = "Suffix", affix = "of Grasping", "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE2"] = { type = "Suffix", affix = "of Clutching", "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE3"] = { type = "Suffix", affix = "of Siezing", "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks", statOrder = { 10935 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks" }, } }, - ["GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction1"] = { type = "Suffix", affix = "of Devastation", "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10937 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3830354140] = { "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["GraftSuffixTulMortarAdditionalMortar1"] = { type = "Suffix", affix = "of Flinging", "Falling Crystals used by this Graft fires up to 1 additional mortar", statOrder = { 10928 }, level = 66, group = "GraftSuffixTulMortarAdditionalMortar", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2123039991] = { "Falling Crystals used by this Graft fires up to 1 additional mortar" }, } }, - ["GraftSuffixTulMortarMoreDamageVSFrozen1"] = { type = "Suffix", affix = "of Icebergs", "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 44, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies" }, } }, - ["GraftSuffixTulMortarMoreDamageVSFrozen2"] = { type = "Suffix", affix = "of Floes", "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 66, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies" }, } }, - ["GraftSuffixTulMortarMoreDamageVSFrozen3"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies", statOrder = { 10927 }, level = 82, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies" }, } }, - ["GraftSuffixUulNetolSpikesAdditionalSpikes1"] = { type = "Suffix", affix = "of Foothills", "Seize the Flesh used by this Graft creates +(1-2) Spire", statOrder = { 10932 }, level = 66, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(1-2) Spire" }, } }, - ["GraftSuffixUulNetolSpikesAdditionalSpikes2"] = { type = "Suffix", affix = "of Mountains", "Seize the Flesh used by this Graft creates +(3-4) Spires", statOrder = { 10932 }, level = 82, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(3-4) Spires" }, } }, - ["GraftSuffixXophPillarAdditionalPillar1"] = { type = "Suffix", affix = "of Pillars", "Call the Pyre used by this Graft creates +1 Ashen Pillar", statOrder = { 10944 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +1 Ashen Pillar" }, } }, - ["GraftSuffixXophPillarAdditionalPillar2"] = { type = "Suffix", affix = "of Obelisks", "Call the Pyre used by this Graft creates +2 Ashen Pillars", statOrder = { 10944 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +2 Ashen Pillars" }, } }, - ["GraftSuffixXophAilmentBuffEleGainAsChaos1"] = { type = "Suffix", affix = "of Foulness", "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophAilmentBuffEleGainAsChaos", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1761211254] = { "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage" }, } }, - ["GraftSuffixXophAilmentBuffEleResistances1"] = { type = "Suffix", affix = "of the Span", "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances", statOrder = { 10941 }, level = 44, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances" }, } }, - ["GraftSuffixXophAilmentBuffEleResistances2"] = { type = "Suffix", affix = "of Resistance", "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances", statOrder = { 10941 }, level = 66, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances" }, } }, - ["GraftSuffixXophAilmentBuffEleResistances3"] = { type = "Suffix", affix = "of Facets", "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances", statOrder = { 10941 }, level = 82, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances" }, } }, - ["GraftSuffixXophAilmentBuffElementalAilmentAvoid1"] = { type = "Suffix", affix = "of Eschewing", "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments", statOrder = { 10943 }, level = 44, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments" }, } }, - ["GraftSuffixXophAilmentBuffElementalAilmentAvoid2"] = { type = "Suffix", affix = "of Avoidance", "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments", statOrder = { 10943 }, level = 66, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments" }, } }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra1"] = { type = "Suffix", affix = "of Prisms", "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 44, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage" }, } }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra2"] = { type = "Suffix", affix = "of the Spectrum", "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 66, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage" }, } }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra3"] = { type = "Suffix", affix = "of the Continuum", "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10940 }, level = 82, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage" }, } }, - ["GraftSuffixTulAegisBuffAmount1"] = { type = "Suffix", affix = "of Guarding", "Preserving Stillness used by this Graft can take (200-299) additional Damage", statOrder = { 10926 }, level = 44, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (200-299) additional Damage" }, } }, - ["GraftSuffixTulAegisBuffAmount2"] = { type = "Suffix", affix = "of Shelter", "Preserving Stillness used by this Graft can take (300-399) additional Damage", statOrder = { 10926 }, level = 66, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (300-399) additional Damage" }, } }, - ["GraftSuffixTulAegisBuffAmount3"] = { type = "Suffix", affix = "of Protection", "Preserving Stillness used by this Graft can take (400-500) additional Damage", statOrder = { 10926 }, level = 82, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (400-500) additional Damage" }, } }, - ["GraftSuffixTulAegisBuffMaxResistance1"] = { type = "Suffix", affix = "of the Mosaic", "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances", statOrder = { 10925 }, level = 66, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances" }, } }, - ["GraftSuffixTulAegisBuffMaxResistance2"] = { type = "Suffix", affix = "of Hues", "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances", statOrder = { 10925 }, level = 82, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances" }, } }, - ["GraftSuffixTulAegisBuffAdditionalResistance1"] = { type = "Suffix", affix = "of Resistance", "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances", statOrder = { 10924 }, level = 44, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances" }, } }, - ["GraftSuffixTulAegisBuffAdditionalResistance2"] = { type = "Suffix", affix = "of Resilience", "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances", statOrder = { 10924 }, level = 66, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances" }, } }, - ["GraftSuffixTulAegisBuffAdditionalResistance3"] = { type = "Suffix", affix = "of Mettle", "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances", statOrder = { 10924 }, level = 82, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances" }, } }, - ["GraftCorruptionAttackSpeedPerFrenzy"] = { type = "Corrupted", affix = "", "(1-2)% increased Attack Speed per Frenzy Charge", statOrder = { 2049 }, level = 1, group = "GraftCorruptionAttackSpeedPerFrenzy", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [3548561213] = { "(1-2)% increased Attack Speed per Frenzy Charge" }, } }, - ["GraftCorruptionCritChancePerPower"] = { type = "Corrupted", affix = "", "(4-8)% increased Critical Strike Chance per Power Charge", statOrder = { 3166 }, level = 1, group = "GraftCorruptionCritChancePerPower", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [2102212273] = { "(4-8)% increased Critical Strike Chance per Power Charge" }, } }, - ["GraftCorruptionLifeRegenerationPerEndurance"] = { type = "Corrupted", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 1, group = "GraftCorruptionLifeRegenerationPerEndurance", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, - ["GraftCorruptionAccuracyFromLightRadius"] = { type = "Corrupted", affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7430 }, level = 1, group = "GraftCorruptionAccuracyFromLightRadius", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, - ["GraftCorruptionStunThresholdFromFireResistance"] = { type = "Corrupted", affix = "", "Stun Threshold is increased by Overcapped Fire Resistance", statOrder = { 10267 }, level = 1, group = "GraftCorruptionStunThresholdFromFireResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [2898944747] = { "Stun Threshold is increased by Overcapped Fire Resistance" }, } }, - ["GraftCorruptionLessAreaDamageChanceFromColdResistance"] = { type = "Corrupted", affix = "", "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance", statOrder = { 10350 }, level = 1, group = "GraftCorruptionLessAreaDamageChanceFromColdResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [1469603435] = { "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance" }, } }, - ["GraftCorruptionProjectileSpeedPerStrength"] = { type = "Corrupted", affix = "", "1% increased Projectile Speed per 20 Strength", statOrder = { 9743 }, level = 66, group = "GraftCorruptionProjectileSpeedPerStrength", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [1998937909] = { "1% increased Projectile Speed per 20 Strength" }, } }, - ["GraftCorruptionCastSpeedPerDexterity"] = { type = "Corrupted", affix = "", "1% increased Cast Speed per 20 Dexterity", statOrder = { 5461 }, level = 66, group = "GraftCorruptionCastSpeedPerDexterity", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [1334577255] = { "1% increased Cast Speed per 20 Dexterity" }, } }, - ["GraftCorruptionMeleeDamagePerIntelligence"] = { type = "Corrupted", affix = "", "1% increased Melee Damage per 20 Intelligence", statOrder = { 9189 }, level = 66, group = "GraftCorruptionMeleeDamagePerIntelligence", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [2645167381] = { "1% increased Melee Damage per 20 Intelligence" }, } }, - ["GraftCorruptionNonDamagingAilmentEffectPerBlueGem"] = { type = "Corrupted", affix = "", "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed", statOrder = { 9498 }, level = 66, group = "GraftCorruptionNonDamagingAilmentEffectPerBlueGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [2324668473] = { "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed" }, } }, - ["GraftCorruptionCooldownSpeedPerGreenGem"] = { type = "Corrupted", affix = "", "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed", statOrder = { 5871 }, level = 66, group = "GraftCorruptionCooldownSpeedPerGreenGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [162292333] = { "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed" }, } }, - ["GraftCorruptionSkillEffectDurationPerRedGem"] = { type = "Corrupted", affix = "", "2% increased Skill Effect Duration for each Red Skill Gem you have socketed", statOrder = { 10053 }, level = 66, group = "GraftCorruptionSkillEffectDurationPerRedGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [1430991954] = { "2% increased Skill Effect Duration for each Red Skill Gem you have socketed" }, } }, + ["GraftPrefixUulnetolFlatAddedPhysical1"] = { type = "Prefix", affix = "Blunt", "Adds 1 to (3-5) Physical Damage", statOrder = { 1289 }, level = 1, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds 1 to (3-5) Physical Damage" }, } }, + ["GraftPrefixUulnetolFlatAddedPhysical2"] = { type = "Prefix", affix = "Heavy", "Adds (1-3) to (6-9) Physical Damage", statOrder = { 1289 }, level = 22, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (1-3) to (6-9) Physical Damage" }, } }, + ["GraftPrefixUulnetolFlatAddedPhysical3"] = { type = "Prefix", affix = "Weighted", "Adds (2-3) to (10-12) Physical Damage", statOrder = { 1289 }, level = 44, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-3) to (10-12) Physical Damage" }, } }, + ["GraftPrefixUulnetolFlatAddedPhysical4"] = { type = "Prefix", affix = "Dense", "Adds (2-4) to (13-15) Physical Damage", statOrder = { 1289 }, level = 66, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-4) to (13-15) Physical Damage" }, } }, + ["GraftPrefixUulnetolFlatAddedPhysical5"] = { type = "Prefix", affix = "Hefty", "Adds (3-5) to (14-18) Physical Damage", statOrder = { 1289 }, level = 82, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (3-5) to (14-18) Physical Damage" }, } }, + ["GraftPrefixUulnetolBleedChance1"] = { type = "Prefix", affix = "Pointed", "Attacks have (5-9)% chance to cause Bleeding", statOrder = { 2515 }, level = 1, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (5-9)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance2"] = { type = "Prefix", affix = "Needling", "Attacks have (10-14)% chance to cause Bleeding", statOrder = { 2515 }, level = 22, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (10-14)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance3"] = { type = "Prefix", affix = "Cutting", "Attacks have (15-19)% chance to cause Bleeding", statOrder = { 2515 }, level = 44, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (15-19)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance4"] = { type = "Prefix", affix = "Biting", "Attacks have (20-24)% chance to cause Bleeding", statOrder = { 2515 }, level = 66, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (20-24)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolBleedChance5"] = { type = "Prefix", affix = "Incisive", "Attacks have (25-30)% chance to cause Bleeding", statOrder = { 2515 }, level = 82, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (25-30)% chance to cause Bleeding" }, } }, + ["GraftPrefixUulnetolDamageOverTimeMultiplier1"] = { type = "Prefix", affix = "Putrefying", "+(5-9)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 22, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(5-9)% to Damage over Time Multiplier" }, } }, + ["GraftPrefixUulnetolDamageOverTimeMultiplier2"] = { type = "Prefix", affix = "Sickening", "+(10-14)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 66, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(10-14)% to Damage over Time Multiplier" }, } }, + ["GraftPrefixUulnetolDamageOverTimeMultiplier3"] = { type = "Prefix", affix = "Repugnant", "+(15-20)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 82, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(15-20)% to Damage over Time Multiplier" }, } }, + ["GraftPrefixUulnetolKnockback1"] = { type = "Prefix", affix = "Swatting", "(5-9)% chance to Knock Enemies Back on hit", "10% increased Knockback Distance", statOrder = { 2018, 2025 }, level = 22, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [565784293] = { "10% increased Knockback Distance" }, [977908611] = { "(5-9)% chance to Knock Enemies Back on hit" }, } }, + ["GraftPrefixUulnetolKnockback2"] = { type = "Prefix", affix = "Bashing", "(10-14)% chance to Knock Enemies Back on hit", "20% increased Knockback Distance", statOrder = { 2018, 2025 }, level = 66, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [565784293] = { "20% increased Knockback Distance" }, [977908611] = { "(10-14)% chance to Knock Enemies Back on hit" }, } }, + ["GraftPrefixUulnetolKnockback3"] = { type = "Prefix", affix = "Walloping", "(15-20)% chance to Knock Enemies Back on hit", "30% increased Knockback Distance", statOrder = { 2018, 2025 }, level = 82, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [565784293] = { "30% increased Knockback Distance" }, [977908611] = { "(15-20)% chance to Knock Enemies Back on hit" }, } }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold1"] = { type = "Prefix", affix = "Inundating", "(3-6)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(3-6)% reduced Enemy Stun Threshold" }, } }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold2"] = { type = "Prefix", affix = "Devastating", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 22, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(7-8)% reduced Enemy Stun Threshold" }, } }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold3"] = { type = "Prefix", affix = "Stunning", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 44, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(9-10)% reduced Enemy Stun Threshold" }, } }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold4"] = { type = "Prefix", affix = "Overpowering", "(11-12)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 66, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(11-12)% reduced Enemy Stun Threshold" }, } }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold5"] = { type = "Prefix", affix = "Overwhelming", "(13-14)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 82, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(13-14)% reduced Enemy Stun Threshold" }, } }, + ["GraftPrefixUulnetolStunDuration1"] = { type = "Prefix", affix = "Smashing", "(7-10)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(7-10)% increased Stun Duration on Enemies" }, } }, + ["GraftPrefixUulnetolStunDuration2"] = { type = "Prefix", affix = "Thundering", "(11-14)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 22, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(11-14)% increased Stun Duration on Enemies" }, } }, + ["GraftPrefixUulnetolStunDuration3"] = { type = "Prefix", affix = "Brutish", "(14-17)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 44, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(14-17)% increased Stun Duration on Enemies" }, } }, + ["GraftPrefixUulnetolStunDuration4"] = { type = "Prefix", affix = "Sweeping", "(18-21)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 66, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(18-21)% increased Stun Duration on Enemies" }, } }, + ["GraftPrefixUulnetolStunDuration5"] = { type = "Prefix", affix = "Thudding", "(21-24)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 82, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(21-24)% increased Stun Duration on Enemies" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage1"] = { type = "Prefix", affix = "Squire's", "(5-9)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(5-9)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage2"] = { type = "Prefix", affix = "Journeyman's", "(10-14)% increased Global Physical Damage", statOrder = { 1254 }, level = 11, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(10-14)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage3"] = { type = "Prefix", affix = "Reaver's", "(15-19)% increased Global Physical Damage", statOrder = { 1254 }, level = 22, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(15-19)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage4"] = { type = "Prefix", affix = "Mercenary's", "(20-24)% increased Global Physical Damage", statOrder = { 1254 }, level = 33, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(20-24)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage5"] = { type = "Prefix", affix = "Champion's", "(25-29)% increased Global Physical Damage", statOrder = { 1254 }, level = 44, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(25-29)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage6"] = { type = "Prefix", affix = "Conqueror's", "(30-34)% increased Global Physical Damage", statOrder = { 1254 }, level = 55, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(30-34)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage7"] = { type = "Prefix", affix = "Slayer's", "(35-39)% increased Global Physical Damage", statOrder = { 1254 }, level = 66, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(35-39)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage8"] = { type = "Prefix", affix = "General's", "(40-44)% increased Global Physical Damage", statOrder = { 1254 }, level = 74, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(40-44)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage9"] = { type = "Prefix", affix = "Emperor's", "(45-49)% increased Global Physical Damage", statOrder = { 1254 }, level = 82, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(45-49)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage10"] = { type = "Prefix", affix = "Dictator's", "(50-55)% increased Global Physical Damage", statOrder = { 1254 }, level = 85, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(50-55)% increased Global Physical Damage" }, } }, + ["GraftPrefixUulnetolImpaleChance1"] = { type = "Prefix", affix = "Brutal", "(3-5)% chance to Impale Enemies on Hit", statOrder = { 7353 }, level = 1, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(3-5)% chance to Impale Enemies on Hit" }, } }, + ["GraftPrefixUulnetolImpaleChance2"] = { type = "Prefix", affix = "Unforgiving", "(6-10)% chance to Impale Enemies on Hit", statOrder = { 7353 }, level = 22, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(6-10)% chance to Impale Enemies on Hit" }, } }, + ["GraftPrefixUulnetolImpaleChance3"] = { type = "Prefix", affix = "Unrelenting", "(11-15)% chance to Impale Enemies on Hit", statOrder = { 7353 }, level = 44, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(11-15)% chance to Impale Enemies on Hit" }, } }, + ["GraftPrefixUulnetolImpaleChance4"] = { type = "Prefix", affix = "Grim", "(16-20)% chance to Impale Enemies on Hit", statOrder = { 7353 }, level = 66, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(16-20)% chance to Impale Enemies on Hit" }, } }, + ["GraftPrefixUulnetolImpaleChance5"] = { type = "Prefix", affix = "Impaling", "(21-25)% chance to Impale Enemies on Hit", statOrder = { 7353 }, level = 82, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(21-25)% chance to Impale Enemies on Hit" }, } }, + ["GraftPrefixUulnetolImpaleEffect1"] = { type = "Prefix", affix = "Cruel", "(10-14)% increased Impale Effect", statOrder = { 7343 }, level = 44, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(10-14)% increased Impale Effect" }, } }, + ["GraftPrefixUulnetolImpaleEffect2"] = { type = "Prefix", affix = "Wicked", "(15-19)% increased Impale Effect", statOrder = { 7343 }, level = 66, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(15-19)% increased Impale Effect" }, } }, + ["GraftPrefixUulnetolImpaleEffect3"] = { type = "Prefix", affix = "Vicious", "(20-24)% increased Impale Effect", statOrder = { 7343 }, level = 82, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(20-24)% increased Impale Effect" }, } }, + ["GraftPrefixUulnetolEnduranceChargeWhenHit1"] = { type = "Prefix", affix = "Stoic", "(10-20)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2785 }, level = 66, group = "GraftPrefixUulnetolEnduranceChargeWhenHit", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1514657588] = { "(10-20)% chance to gain an Endurance Charge when you are Hit" }, } }, + ["GraftPrefixUulnetolStunThreshold1"] = { type = "Prefix", affix = "Steadfast", "(15-17)% increased Stun Threshold", statOrder = { 3308 }, level = 1, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } }, + ["GraftPrefixUulnetolStunThreshold2"] = { type = "Prefix", affix = "Staunch", "(18-20)% increased Stun Threshold", statOrder = { 3308 }, level = 22, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } }, + ["GraftPrefixUulnetolStunThreshold3"] = { type = "Prefix", affix = "Steady", "(21-23)% increased Stun Threshold", statOrder = { 3308 }, level = 44, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } }, + ["GraftPrefixUulnetolStunThreshold4"] = { type = "Prefix", affix = "Unwavering", "(24-26)% increased Stun Threshold", statOrder = { 3308 }, level = 66, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } }, + ["GraftPrefixUulnetolStunThreshold5"] = { type = "Prefix", affix = "Unmoving", "(27-29)% increased Stun Threshold", statOrder = { 3308 }, level = 82, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } }, + ["GraftPrefixUulnetolMaximumLife1"] = { type = "Prefix", affix = "Lively", "(3-4)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, + ["GraftPrefixUulnetolMaximumLife2"] = { type = "Prefix", affix = "Vigorous", "(5-6)% increased maximum Life", statOrder = { 1593 }, level = 22, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, + ["GraftPrefixUulnetolMaximumLife3"] = { type = "Prefix", affix = "Healthy", "(7-9)% increased maximum Life", statOrder = { 1593 }, level = 44, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(7-9)% increased maximum Life" }, } }, + ["GraftPrefixUulnetolMaximumLife4"] = { type = "Prefix", affix = "Robust", "(10-12)% increased maximum Life", statOrder = { 1593 }, level = 66, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(10-12)% increased maximum Life" }, } }, + ["GraftPrefixUulnetolMaximumLife5"] = { type = "Prefix", affix = "Hale", "(13-15)% increased maximum Life", statOrder = { 1593 }, level = 82, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } }, + ["GraftPrefixUulnetolLifeLeech1"] = { type = "Prefix", affix = "Vampiric", "(10-20)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 44, group = "GraftPrefixUulnetolLifeLeech", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4118987751] = { "(10-20)% increased Maximum total Life Recovery per second from Leech" }, } }, + ["GraftPrefixXophFasterAilments1"] = { type = "Prefix", affix = "Wasting", "Damaging Ailments deal damage (3-5)% faster", statOrder = { 6214 }, level = 44, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-5)% faster" }, } }, + ["GraftPrefixXophFasterAilments2"] = { type = "Prefix", affix = "Wilting", "Damaging Ailments deal damage (6-8)% faster", statOrder = { 6214 }, level = 66, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (6-8)% faster" }, } }, + ["GraftPrefixXophFasterAilments3"] = { type = "Prefix", affix = "Deteriorating", "Damaging Ailments deal damage (9-11)% faster", statOrder = { 6214 }, level = 82, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (9-11)% faster" }, } }, + ["GraftPrefixXophIgniteChance1"] = { type = "Prefix", affix = "Alight", "(4-10)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(4-10)% chance to Ignite" }, } }, + ["GraftPrefixXophIgniteChance2"] = { type = "Prefix", affix = "Smouldering", "(11-17)% chance to Ignite", statOrder = { 2049 }, level = 22, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(11-17)% chance to Ignite" }, } }, + ["GraftPrefixXophIgniteChance3"] = { type = "Prefix", affix = "Burning", "(18-24)% chance to Ignite", statOrder = { 2049 }, level = 44, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(18-24)% chance to Ignite" }, } }, + ["GraftPrefixXophIgniteChance4"] = { type = "Prefix", affix = "Fiery", "(25-30)% chance to Ignite", statOrder = { 2049 }, level = 66, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(25-30)% chance to Ignite" }, } }, + ["GraftPrefixXophIgniteChance5"] = { type = "Prefix", affix = "Blazing", "(31-40)% chance to Ignite", statOrder = { 2049 }, level = 82, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(31-40)% chance to Ignite" }, } }, + ["GraftPrefixXophFlatAddedFire1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (6-8) Fire Damage", statOrder = { 1383 }, level = 1, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (3-4) to (6-8) Fire Damage" }, } }, + ["GraftPrefixXophFlatAddedFire2"] = { type = "Prefix", affix = "Fierce", "Adds (4-7) to (11-15) Fire Damage", statOrder = { 1383 }, level = 22, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (4-7) to (11-15) Fire Damage" }, } }, + ["GraftPrefixXophFlatAddedFire3"] = { type = "Prefix", affix = "Fervent", "Adds (10-12) to (15-19) Fire Damage", statOrder = { 1383 }, level = 44, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (10-12) to (15-19) Fire Damage" }, } }, + ["GraftPrefixXophFlatAddedFire4"] = { type = "Prefix", affix = "Torrid", "Adds (14-17) to (21-25) Fire Damage", statOrder = { 1383 }, level = 66, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (14-17) to (21-25) Fire Damage" }, } }, + ["GraftPrefixXophFlatAddedFire5"] = { type = "Prefix", affix = "Magmatic", "Adds (20-23) to (26-32) Fire Damage", statOrder = { 1383 }, level = 82, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (20-23) to (26-32) Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage1"] = { type = "Prefix", affix = "Hellish", "(5-9)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(5-9)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage2"] = { type = "Prefix", affix = "Damnable", "(10-14)% increased Fire Damage", statOrder = { 1381 }, level = 11, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(10-14)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage3"] = { type = "Prefix", affix = "Devil's", "(15-19)% increased Fire Damage", statOrder = { 1381 }, level = 22, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(15-19)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage4"] = { type = "Prefix", affix = "Imps'", "(20-24)% increased Fire Damage", statOrder = { 1381 }, level = 33, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(20-24)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage5"] = { type = "Prefix", affix = "Fiend's", "(25-29)% increased Fire Damage", statOrder = { 1381 }, level = 44, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(25-29)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage6"] = { type = "Prefix", affix = "Demon's", "(30-34)% increased Fire Damage", statOrder = { 1381 }, level = 55, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(30-34)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage7"] = { type = "Prefix", affix = "Tartarean", "(35-39)% increased Fire Damage", statOrder = { 1381 }, level = 66, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(35-39)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage8"] = { type = "Prefix", affix = "Stygian", "(40-44)% increased Fire Damage", statOrder = { 1381 }, level = 74, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(40-44)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage9"] = { type = "Prefix", affix = "Hadean", "(45-49)% increased Fire Damage", statOrder = { 1381 }, level = 82, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(45-49)% increased Fire Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedFireDamage10"] = { type = "Prefix", affix = "Infernal", "(50-55)% increased Fire Damage", statOrder = { 1381 }, level = 85, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(50-55)% increased Fire Damage" }, } }, + ["GraftPrefixXophIgniteDuration1"] = { type = "Prefix", affix = "Unquenchable", "(10-14)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 44, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(10-14)% increased Ignite Duration on Enemies" }, } }, + ["GraftPrefixXophIgniteDuration2"] = { type = "Prefix", affix = "Everburning", "(15-19)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 66, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(15-19)% increased Ignite Duration on Enemies" }, } }, + ["GraftPrefixXophIgniteDuration3"] = { type = "Prefix", affix = "Inextinguishable", "(20-25)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 82, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(20-25)% increased Ignite Duration on Enemies" }, } }, + ["GraftPrefixXophWarcryCooldown1"] = { type = "Prefix", affix = "Howling", "(12-17)% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 44, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(12-17)% increased Warcry Cooldown Recovery Rate" }, } }, + ["GraftPrefixXophWarcryCooldown2"] = { type = "Prefix", affix = "Screaming", "(18-22)% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 82, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(18-22)% increased Warcry Cooldown Recovery Rate" }, } }, + ["GraftPrefixXophAreaOfEffect1"] = { type = "Prefix", affix = "Snatching", "(5-6)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(5-6)% increased Area of Effect" }, } }, + ["GraftPrefixXophAreaOfEffect2"] = { type = "Prefix", affix = "Grasping", "(7-8)% increased Area of Effect", statOrder = { 1903 }, level = 22, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } }, + ["GraftPrefixXophAreaOfEffect3"] = { type = "Prefix", affix = "Clutching", "(9-10)% increased Area of Effect", statOrder = { 1903 }, level = 44, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } }, + ["GraftPrefixXophAreaOfEffect4"] = { type = "Prefix", affix = "Siezing", "(11-12)% increased Area of Effect", statOrder = { 1903 }, level = 66, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } }, + ["GraftPrefixXophAreaOfEffect5"] = { type = "Prefix", affix = "Reaching", "(13-14)% increased Area of Effect", statOrder = { 1903 }, level = 82, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } }, + ["GraftPrefixXophStrength1"] = { type = "Prefix", affix = "Brawny", "+(3-5) to Strength", statOrder = { 1200 }, level = 1, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(3-5) to Strength" }, } }, + ["GraftPrefixXophStrength2"] = { type = "Prefix", affix = "Powerful", "+(6-8) to Strength", statOrder = { 1200 }, level = 22, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(6-8) to Strength" }, } }, + ["GraftPrefixXophStrength3"] = { type = "Prefix", affix = "Burly", "+(9-11) to Strength", statOrder = { 1200 }, level = 44, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(9-11) to Strength" }, } }, + ["GraftPrefixXophStrength4"] = { type = "Prefix", affix = "Muscular", "+(12-14) to Strength", statOrder = { 1200 }, level = 66, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(12-14) to Strength" }, } }, + ["GraftPrefixXophStrength5"] = { type = "Prefix", affix = "Beefy", "+(15-17) to Strength", statOrder = { 1200 }, level = 82, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(15-17) to Strength" }, } }, + ["GraftPrefixXophPercentageStrength1"] = { type = "Prefix", affix = "Brutish", "(2-4)% increased Strength", statOrder = { 1207 }, level = 74, group = "GraftPrefixXophPercentageStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [734614379] = { "(2-4)% increased Strength" }, } }, + ["GraftPrefixXophPercentageArmour1"] = { type = "Prefix", affix = "Carapaced", "(15-18)% increased Armour", statOrder = { 1563 }, level = 1, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(15-18)% increased Armour" }, } }, + ["GraftPrefixXophPercentageArmour2"] = { type = "Prefix", affix = "Clad", "(19-22)% increased Armour", statOrder = { 1563 }, level = 22, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(19-22)% increased Armour" }, } }, + ["GraftPrefixXophPercentageArmour3"] = { type = "Prefix", affix = "Reinforced", "(23-26)% increased Armour", statOrder = { 1563 }, level = 44, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(23-26)% increased Armour" }, } }, + ["GraftPrefixXophPercentageArmour4"] = { type = "Prefix", affix = "Plated", "(27-30)% increased Armour", statOrder = { 1563 }, level = 66, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(27-30)% increased Armour" }, } }, + ["GraftPrefixXophPercentageArmour5"] = { type = "Prefix", affix = "Iron", "(30-35)% increased Armour", statOrder = { 1563 }, level = 82, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(30-35)% increased Armour" }, } }, + ["GraftPrefixXophFireResistance1"] = { type = "Prefix", affix = "Thermal", "+(5-12)% to Fire Resistance", statOrder = { 1648 }, level = 44, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(5-12)% to Fire Resistance" }, } }, + ["GraftPrefixXophFireResistance2"] = { type = "Prefix", affix = "Refractory", "+(13-20)% to Fire Resistance", statOrder = { 1648 }, level = 66, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(13-20)% to Fire Resistance" }, } }, + ["GraftPrefixXophFireResistance3"] = { type = "Prefix", affix = "Heatproof", "+(21-28)% to Fire Resistance", statOrder = { 1648 }, level = 82, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(21-28)% to Fire Resistance" }, } }, + ["GraftPrefixXophFirePenetration1"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 3015 }, level = 66, group = "GraftPrefixXophFirePenetration", weightKey = { "graft_xoph", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, + ["GraftPrefixXophMaximumFireResistance1"] = { type = "Prefix", affix = "Fireproof", "+(1-2)% to maximum Fire Resistance", statOrder = { 1646 }, level = 74, group = "GraftPrefixXophMaximumFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+(1-2)% to maximum Fire Resistance" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage1"] = { type = "Prefix", affix = "Combatant's", "(5-9)% increased Attack Damage", statOrder = { 1221 }, level = 1, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(5-9)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage2"] = { type = "Prefix", affix = "Warrior's", "(10-14)% increased Attack Damage", statOrder = { 1221 }, level = 11, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(10-14)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage3"] = { type = "Prefix", affix = "Fighter's", "(15-19)% increased Attack Damage", statOrder = { 1221 }, level = 22, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(15-19)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage4"] = { type = "Prefix", affix = "Brawler's", "(20-24)% increased Attack Damage", statOrder = { 1221 }, level = 33, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(20-24)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage5"] = { type = "Prefix", affix = "Soldier's", "(25-29)% increased Attack Damage", statOrder = { 1221 }, level = 44, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage6"] = { type = "Prefix", affix = "Veteran's", "(30-34)% increased Attack Damage", statOrder = { 1221 }, level = 55, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage7"] = { type = "Prefix", affix = "Assailant's", "(35-39)% increased Attack Damage", statOrder = { 1221 }, level = 66, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(35-39)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage8"] = { type = "Prefix", affix = "Gladiator's", "(40-44)% increased Attack Damage", statOrder = { 1221 }, level = 74, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(40-44)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage9"] = { type = "Prefix", affix = "Prizefighter's", "(45-49)% increased Attack Damage", statOrder = { 1221 }, level = 82, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(45-49)% increased Attack Damage" }, } }, + ["GraftPrefixXophGlobalIncreasedAttackDamage10"] = { type = "Prefix", affix = "Pitfighter's", "(50-55)% increased Attack Damage", statOrder = { 1221 }, level = 85, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(50-55)% increased Attack Damage" }, } }, + ["GraftPrefixXophMinionDuration1"] = { type = "Prefix", affix = "Lingering", "(10-12)% increased Minion Duration", statOrder = { 5098 }, level = 44, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(10-12)% increased Minion Duration" }, } }, + ["GraftPrefixXophMinionDuration2"] = { type = "Prefix", affix = "Abiding", "(13-15)% increased Minion Duration", statOrder = { 5098 }, level = 66, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(13-15)% increased Minion Duration" }, } }, + ["GraftPrefixXophMinionDuration3"] = { type = "Prefix", affix = "Undying", "(16-18)% increased Minion Duration", statOrder = { 5098 }, level = 82, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(16-18)% increased Minion Duration" }, } }, + ["GraftPrefixEshShockChance1"] = { type = "Prefix", affix = "Jolting", "(3-5)% chance to Shock", statOrder = { 2056 }, level = 1, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(3-5)% chance to Shock" }, } }, + ["GraftPrefixEshShockChance2"] = { type = "Prefix", affix = "Enervating", "(6-8)% chance to Shock", statOrder = { 2056 }, level = 22, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(6-8)% chance to Shock" }, } }, + ["GraftPrefixEshShockChance3"] = { type = "Prefix", affix = "Sparking", "(9-11)% chance to Shock", statOrder = { 2056 }, level = 44, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(9-11)% chance to Shock" }, } }, + ["GraftPrefixEshShockChance4"] = { type = "Prefix", affix = "Zapping", "(12-14)% chance to Shock", statOrder = { 2056 }, level = 66, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(12-14)% chance to Shock" }, } }, + ["GraftPrefixEshShockChance5"] = { type = "Prefix", affix = "Shocking", "(15-17)% chance to Shock", statOrder = { 2056 }, level = 82, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(15-17)% chance to Shock" }, } }, + ["GraftPrefixEshShockDuration1"] = { type = "Prefix", affix = "Sustained", "(15-24)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 44, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(15-24)% increased Shock Duration on Enemies" }, } }, + ["GraftPrefixEshShockDuration2"] = { type = "Prefix", affix = "Lasting", "(25-34)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 66, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(25-34)% increased Shock Duration on Enemies" }, } }, + ["GraftPrefixEshShockDuration3"] = { type = "Prefix", affix = "Perpetual", "(35-45)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 82, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(35-45)% increased Shock Duration on Enemies" }, } }, + ["GraftPrefixEshLightningDamage1"] = { type = "Prefix", affix = "Flashing", "(5-9)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(5-9)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage2"] = { type = "Prefix", affix = "Bright", "(10-14)% increased Lightning Damage", statOrder = { 1401 }, level = 11, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(10-14)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage3"] = { type = "Prefix", affix = "Bolting", "(15-19)% increased Lightning Damage", statOrder = { 1401 }, level = 22, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(15-19)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage4"] = { type = "Prefix", affix = "Discharging", "(20-24)% increased Lightning Damage", statOrder = { 1401 }, level = 33, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(20-24)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage5"] = { type = "Prefix", affix = "Stormrider's", "(25-29)% increased Lightning Damage", statOrder = { 1401 }, level = 44, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(25-29)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage6"] = { type = "Prefix", affix = "Thunderbolt's", "(30-34)% increased Lightning Damage", statOrder = { 1401 }, level = 55, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(30-34)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage7"] = { type = "Prefix", affix = "Stormcaller's", "(35-39)% increased Lightning Damage", statOrder = { 1401 }, level = 66, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(35-39)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage8"] = { type = "Prefix", affix = "Invoker's", "(40-44)% increased Lightning Damage", statOrder = { 1401 }, level = 74, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(40-44)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage9"] = { type = "Prefix", affix = "Stormweaver's", "(45-49)% increased Lightning Damage", statOrder = { 1401 }, level = 82, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(45-49)% increased Lightning Damage" }, } }, + ["GraftPrefixEshLightningDamage10"] = { type = "Prefix", affix = "Esh's", "(50-55)% increased Lightning Damage", statOrder = { 1401 }, level = 85, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(50-55)% increased Lightning Damage" }, } }, + ["GraftPrefixEshFlatAddedLightning1"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (5-7) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-2) to (5-7) Lightning Damage" }, } }, + ["GraftPrefixEshFlatAddedLightning2"] = { type = "Prefix", affix = "Empowered", "Adds (1-2) to (8-16) Lightning Damage", statOrder = { 1403 }, level = 22, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-2) to (8-16) Lightning Damage" }, } }, + ["GraftPrefixEshFlatAddedLightning3"] = { type = "Prefix", affix = "Flashing", "Adds (1-3) to (20-24) Lightning Damage", statOrder = { 1403 }, level = 44, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-3) to (20-24) Lightning Damage" }, } }, + ["GraftPrefixEshFlatAddedLightning4"] = { type = "Prefix", affix = "Fulminating", "Adds (2-4) to (33-41) Lightning Damage", statOrder = { 1403 }, level = 66, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (2-4) to (33-41) Lightning Damage" }, } }, + ["GraftPrefixEshFlatAddedLightning5"] = { type = "Prefix", affix = "Static", "Adds (4-6) to (54-60) Lightning Damage", statOrder = { 1403 }, level = 82, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (4-6) to (54-60) Lightning Damage" }, } }, + ["GraftPrefixEshCriticalChanceVSShocked1"] = { type = "Prefix", affix = "Convulsive", "(30-49)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5996 }, level = 66, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(30-49)% increased Critical Strike Chance against Shocked Enemies" }, } }, + ["GraftPrefixEshCriticalChanceVSShocked2"] = { type = "Prefix", affix = "Fulgurating", "(50-65)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5996 }, level = 82, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(50-65)% increased Critical Strike Chance against Shocked Enemies" }, } }, + ["GraftPrefixEshAttackAndCastSpeed1"] = { type = "Prefix", affix = "Rapid", "(4-6)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 44, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(4-6)% increased Attack and Cast Speed" }, } }, + ["GraftPrefixEshAttackAndCastSpeed2"] = { type = "Prefix", affix = "Fleet", "(8-10)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 66, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(8-10)% increased Attack and Cast Speed" }, } }, + ["GraftPrefixEshAttackAndCastSpeed3"] = { type = "Prefix", affix = "Quickening", "(12-14)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 82, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(12-14)% increased Attack and Cast Speed" }, } }, + ["GraftPrefixEshMinionDamage1"] = { type = "Prefix", affix = "Noble", "Minions deal (5-9)% increased Damage", statOrder = { 1996 }, level = 1, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (5-9)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage2"] = { type = "Prefix", affix = "Regal", "Minions deal (10-14)% increased Damage", statOrder = { 1996 }, level = 11, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (10-14)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage3"] = { type = "Prefix", affix = "Lord's", "Minions deal (15-19)% increased Damage", statOrder = { 1996 }, level = 22, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (15-19)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage4"] = { type = "Prefix", affix = "Lady's", "Minions deal (20-24)% increased Damage", statOrder = { 1996 }, level = 33, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (20-24)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage5"] = { type = "Prefix", affix = "Baron's", "Minions deal (25-29)% increased Damage", statOrder = { 1996 }, level = 44, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (25-29)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage6"] = { type = "Prefix", affix = "Duke's", "Minions deal (30-34)% increased Damage", statOrder = { 1996 }, level = 55, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (30-34)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage7"] = { type = "Prefix", affix = "Aristocrat's", "Minions deal (35-39)% increased Damage", statOrder = { 1996 }, level = 66, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (35-39)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage8"] = { type = "Prefix", affix = "Elite", "Minions deal (40-44)% increased Damage", statOrder = { 1996 }, level = 74, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (40-44)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage9"] = { type = "Prefix", affix = "Prince's", "Minions deal (45-49)% increased Damage", statOrder = { 1996 }, level = 82, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (45-49)% increased Damage" }, } }, + ["GraftPrefixEshMinionDamage10"] = { type = "Prefix", affix = "Monarch's", "Minions deal (50-55)% increased Damage", statOrder = { 1996 }, level = 85, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (50-55)% increased Damage" }, } }, + ["GraftPrefixEshMinionAttackAndCastSpeed1"] = { type = "Prefix", affix = "Feverish", "Minions have (4-6)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 44, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (4-6)% increased Attack and Cast Speed" }, } }, + ["GraftPrefixEshMinionAttackAndCastSpeed2"] = { type = "Prefix", affix = "Manic", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 66, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (8-10)% increased Attack and Cast Speed" }, } }, + ["GraftPrefixEshMinionAttackAndCastSpeed3"] = { type = "Prefix", affix = "Frenetic", "Minions have (12-14)% increased Attack and Cast Speed", statOrder = { 9401 }, level = 82, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (12-14)% increased Attack and Cast Speed" }, } }, + ["GraftPrefixEshGlobalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Protective", "(3-5)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(3-5)% increased maximum Energy Shield" }, } }, + ["GraftPrefixEshGlobalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Bolstered", "(6-8)% increased maximum Energy Shield", statOrder = { 1583 }, level = 11, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } }, + ["GraftPrefixEshGlobalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Barrier", "(9-11)% increased maximum Energy Shield", statOrder = { 1583 }, level = 33, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(9-11)% increased maximum Energy Shield" }, } }, + ["GraftPrefixEshGlobalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Reinforced", "(12-13)% increased maximum Energy Shield", statOrder = { 1583 }, level = 54, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } }, + ["GraftPrefixEshGlobalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Buttressed", "(14-16)% increased maximum Energy Shield", statOrder = { 1583 }, level = 66, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } }, + ["GraftPrefixEshLightningResistance1"] = { type = "Prefix", affix = "Grounded", "+(5-12)% to Lightning Resistance", statOrder = { 1659 }, level = 22, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(5-12)% to Lightning Resistance" }, } }, + ["GraftPrefixEshLightningResistance2"] = { type = "Prefix", affix = "Insulated", "+(13-20)% to Lightning Resistance", statOrder = { 1659 }, level = 66, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(13-20)% to Lightning Resistance" }, } }, + ["GraftPrefixEshLightningResistance3"] = { type = "Prefix", affix = "Absorbing", "+(21-28)% to Lightning Resistance", statOrder = { 1659 }, level = 82, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(21-28)% to Lightning Resistance" }, } }, + ["GraftPrefixEshLightningPenetration1"] = { type = "Prefix", affix = "Energetic", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 3018 }, level = 66, group = "GraftPrefixEshLightningPenetration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, + ["GraftPrefixEshMovementSpeed1"] = { type = "Prefix", affix = "Expedient", "(3-6)% increased Movement Speed", statOrder = { 1821 }, level = 66, group = "GraftPrefixEshMovementSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 50, 0, 0 }, modTags = { }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, + ["GraftPrefixEshMaximumLightningResistance1"] = { type = "Prefix", affix = "Sequestered", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1657 }, level = 74, group = "GraftPrefixEshMaximumLightningResistance", weightKey = { "graft_esh", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+(1-2)% to maximum Lightning Resistance" }, } }, + ["GraftPrefixEshIncreasedMana1"] = { type = "Prefix", affix = "Expansive", "(3-6)% increased maximum Mana", statOrder = { 1603 }, level = 22, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(3-6)% increased maximum Mana" }, } }, + ["GraftPrefixEshIncreasedMana2"] = { type = "Prefix", affix = "Unbounded", "(7-10)% increased maximum Mana", statOrder = { 1603 }, level = 66, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(7-10)% increased maximum Mana" }, } }, + ["GraftPrefixEshIncreasedMana3"] = { type = "Prefix", affix = "Illimitable", "(11-14)% increased maximum Mana", statOrder = { 1603 }, level = 82, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(11-14)% increased maximum Mana" }, } }, + ["GraftPrefixEshIntelligence1"] = { type = "Prefix", affix = "Controlled", "+(3-5) to Intelligence", statOrder = { 1202 }, level = 1, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 100, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(3-5) to Intelligence" }, } }, + ["GraftPrefixEshIntelligence2"] = { type = "Prefix", affix = "Brilliant", "+(6-8) to Intelligence", statOrder = { 1202 }, level = 22, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(6-8) to Intelligence" }, } }, + ["GraftPrefixEshIntelligence3"] = { type = "Prefix", affix = "Astute", "+(9-11) to Intelligence", statOrder = { 1202 }, level = 44, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(9-11) to Intelligence" }, } }, + ["GraftPrefixEshIntelligence4"] = { type = "Prefix", affix = "Acute", "+(12-14) to Intelligence", statOrder = { 1202 }, level = 66, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(12-14) to Intelligence" }, } }, + ["GraftPrefixEshIntelligence5"] = { type = "Prefix", affix = "Genius'", "+(15-17) to Intelligence", statOrder = { 1202 }, level = 82, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(15-17) to Intelligence" }, } }, + ["GraftPrefixEshPercentageIntelligence1"] = { type = "Prefix", affix = "Composed", "(2-4)% increased Intelligence", statOrder = { 1209 }, level = 74, group = "GraftPrefixEshPercentageIntelligence", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [656461285] = { "(2-4)% increased Intelligence" }, } }, + ["GraftPrefixEshSpellDamage1"] = { type = "Prefix", affix = "Arcane", "(5-9)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(5-9)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage2"] = { type = "Prefix", affix = "Spelleweaving", "(10-14)% increased Spell Damage", statOrder = { 1246 }, level = 11, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage3"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", statOrder = { 1246 }, level = 22, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage4"] = { type = "Prefix", affix = "Mage's", "(20-24)% increased Spell Damage", statOrder = { 1246 }, level = 33, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage5"] = { type = "Prefix", affix = "Scholar's", "(25-29)% increased Spell Damage", statOrder = { 1246 }, level = 44, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage6"] = { type = "Prefix", affix = "Wizard's", "(30-34)% increased Spell Damage", statOrder = { 1246 }, level = 55, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage7"] = { type = "Prefix", affix = "Sage's", "(35-39)% increased Spell Damage", statOrder = { 1246 }, level = 66, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage8"] = { type = "Prefix", affix = "Sorcerer's", "(40-44)% increased Spell Damage", statOrder = { 1246 }, level = 74, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage9"] = { type = "Prefix", affix = "Magician's", "(45-49)% increased Spell Damage", statOrder = { 1246 }, level = 82, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, } }, + ["GraftPrefixEshSpellDamage10"] = { type = "Prefix", affix = "Lich's", "(50-55)% increased Spell Damage", statOrder = { 1246 }, level = 85, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(50-55)% increased Spell Damage" }, } }, + ["GraftPrefixTulFreezeChance1"] = { type = "Prefix", affix = "Frigid", "(3-5)% chance to Freeze", statOrder = { 2052 }, level = 1, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(3-5)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance2"] = { type = "Prefix", affix = "Frosted", "(6-8)% chance to Freeze", statOrder = { 2052 }, level = 22, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(6-8)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance3"] = { type = "Prefix", affix = "Bitter", "(9-11)% chance to Freeze", statOrder = { 2052 }, level = 44, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(9-11)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance4"] = { type = "Prefix", affix = "Wintry", "(12-14)% chance to Freeze", statOrder = { 2052 }, level = 66, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(12-14)% chance to Freeze" }, } }, + ["GraftPrefixTulFreezeChance5"] = { type = "Prefix", affix = "Freezing", "(15-17)% chance to Freeze", statOrder = { 2052 }, level = 82, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(15-17)% chance to Freeze" }, } }, + ["GraftPrefixTulFlatAddedColdDamage1"] = { type = "Prefix", affix = "Icy", "Adds (3-4) to (6-8) Cold Damage", statOrder = { 1392 }, level = 1, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (3-4) to (6-8) Cold Damage" }, } }, + ["GraftPrefixTulFlatAddedColdDamage2"] = { type = "Prefix", affix = "Cold", "Adds (4-7) to (11-15) Cold Damage", statOrder = { 1392 }, level = 22, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (4-7) to (11-15) Cold Damage" }, } }, + ["GraftPrefixTulFlatAddedColdDamage3"] = { type = "Prefix", affix = "Brumal", "Adds (10-12) to (15-19) Cold Damage", statOrder = { 1392 }, level = 44, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (10-12) to (15-19) Cold Damage" }, } }, + ["GraftPrefixTulFlatAddedColdDamage4"] = { type = "Prefix", affix = "Bleak", "Adds (14-17) to (21-25) Cold Damage", statOrder = { 1392 }, level = 66, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (14-17) to (21-25) Cold Damage" }, } }, + ["GraftPrefixTulFlatAddedColdDamage5"] = { type = "Prefix", affix = "Frostbound", "Adds (20-23) to (26-32) Cold Damage", statOrder = { 1392 }, level = 82, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (20-23) to (26-32) Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage1"] = { type = "Prefix", affix = "", "(5-9)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(5-9)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage2"] = { type = "Prefix", affix = "", "(10-14)% increased Cold Damage", statOrder = { 1390 }, level = 11, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(10-14)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage3"] = { type = "Prefix", affix = "", "(15-19)% increased Cold Damage", statOrder = { 1390 }, level = 22, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(15-19)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage4"] = { type = "Prefix", affix = "", "(20-24)% increased Cold Damage", statOrder = { 1390 }, level = 33, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(20-24)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage5"] = { type = "Prefix", affix = "", "(25-29)% increased Cold Damage", statOrder = { 1390 }, level = 44, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(25-29)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage6"] = { type = "Prefix", affix = "", "(30-34)% increased Cold Damage", statOrder = { 1390 }, level = 55, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(30-34)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage7"] = { type = "Prefix", affix = "", "(35-39)% increased Cold Damage", statOrder = { 1390 }, level = 66, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(35-39)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage8"] = { type = "Prefix", affix = "", "(40-44)% increased Cold Damage", statOrder = { 1390 }, level = 74, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(40-44)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage9"] = { type = "Prefix", affix = "", "(45-49)% increased Cold Damage", statOrder = { 1390 }, level = 82, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(45-49)% increased Cold Damage" }, } }, + ["GraftPrefixTulIncreasedColdDamage10"] = { type = "Prefix", affix = "", "(50-55)% increased Cold Damage", statOrder = { 1390 }, level = 85, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(50-55)% increased Cold Damage" }, } }, + ["GraftPrefixTulStrikeRange1"] = { type = "Prefix", affix = "Extended", "+(0.1-0.3) metres to Melee Strike Range", statOrder = { 2560 }, level = 66, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2264295449] = { "+(0.1-0.3) metres to Melee Strike Range" }, } }, + ["GraftPrefixTulStrikeRange2"] = { type = "Prefix", affix = "Elongated", "+0.4 metres to Melee Strike Range", statOrder = { 2560 }, level = 82, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2264295449] = { "+0.4 metres to Melee Strike Range" }, } }, + ["GraftPrefixTulAdditionalStrike1"] = { type = "Prefix", affix = "Versatile", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9309 }, level = 66, group = "GraftPrefixTulAdditionalStrike", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } }, + ["GraftPrefixTulProjectileSpeed1"] = { type = "Prefix", affix = "Tossing", "(5-9)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(5-9)% increased Projectile Speed" }, } }, + ["GraftPrefixTulProjectileSpeed2"] = { type = "Prefix", affix = "Hurling", "(10-14)% increased Projectile Speed", statOrder = { 1819 }, level = 22, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(10-14)% increased Projectile Speed" }, } }, + ["GraftPrefixTulProjectileSpeed3"] = { type = "Prefix", affix = "Lobbing", "(15-19)% increased Projectile Speed", statOrder = { 1819 }, level = 44, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(15-19)% increased Projectile Speed" }, } }, + ["GraftPrefixTulProjectileSpeed4"] = { type = "Prefix", affix = "Slinging", "(20-24)% increased Projectile Speed", statOrder = { 1819 }, level = 66, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(20-24)% increased Projectile Speed" }, } }, + ["GraftPrefixTulProjectileSpeed5"] = { type = "Prefix", affix = "Propeling", "(25-30)% increased Projectile Speed", statOrder = { 1819 }, level = 82, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(25-30)% increased Projectile Speed" }, } }, + ["GraftPrefixTulGlobalIncreasedEvasion1"] = { type = "Prefix", affix = "Blurred", "(15-18)% increased Evasion Rating", statOrder = { 1571 }, level = 1, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(15-18)% increased Evasion Rating" }, } }, + ["GraftPrefixTulGlobalIncreasedEvasion2"] = { type = "Prefix", affix = "Obscuring", "(19-22)% increased Evasion Rating", statOrder = { 1571 }, level = 22, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(19-22)% increased Evasion Rating" }, } }, + ["GraftPrefixTulGlobalIncreasedEvasion3"] = { type = "Prefix", affix = "Hazy", "(23-26)% increased Evasion Rating", statOrder = { 1571 }, level = 44, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(23-26)% increased Evasion Rating" }, } }, + ["GraftPrefixTulGlobalIncreasedEvasion4"] = { type = "Prefix", affix = "Shrouded", "(27-30)% increased Evasion Rating", statOrder = { 1571 }, level = 66, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(27-30)% increased Evasion Rating" }, } }, + ["GraftPrefixTulGlobalIncreasedEvasion5"] = { type = "Prefix", affix = "Mistborn", "(30-35)% increased Evasion Rating", statOrder = { 1571 }, level = 82, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(30-35)% increased Evasion Rating" }, } }, + ["GraftPrefixTulColdResistance1"] = { type = "Prefix", affix = "Winterised", "+(5-12)% to Cold Resistance", statOrder = { 1654 }, level = 44, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(5-12)% to Cold Resistance" }, } }, + ["GraftPrefixTulColdResistance2"] = { type = "Prefix", affix = "Insular", "+(13-20)% to Cold Resistance", statOrder = { 1654 }, level = 66, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(13-20)% to Cold Resistance" }, } }, + ["GraftPrefixTulColdResistance3"] = { type = "Prefix", affix = "Yeti's", "+(21-28)% to Cold Resistance", statOrder = { 1654 }, level = 82, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(21-28)% to Cold Resistance" }, } }, + ["GraftPrefixTulColdPenetration1"] = { type = "Prefix", affix = "Biting", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 3017 }, level = 66, group = "GraftPrefixTulColdPenetration", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, + ["GraftPrefixTulChillEffect1"] = { type = "Prefix", affix = "Impeding", "(20-29)% increased Effect of Chill", statOrder = { 5851 }, level = 66, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [828179689] = { "(20-29)% increased Effect of Chill" }, } }, + ["GraftPrefixTulChillEffect2"] = { type = "Prefix", affix = "Shackling", "(30-40)% increased Effect of Chill", statOrder = { 5851 }, level = 82, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [828179689] = { "(30-40)% increased Effect of Chill" }, } }, + ["GraftPrefixTulCritMultiplier1"] = { type = "Prefix", affix = "Dangerous", "+(9-10)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(9-10)% to Global Critical Strike Multiplier" }, } }, + ["GraftPrefixTulCritMultiplier2"] = { type = "Prefix", affix = "Harmful", "+(11-12)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 22, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(11-12)% to Global Critical Strike Multiplier" }, } }, + ["GraftPrefixTulCritMultiplier3"] = { type = "Prefix", affix = "Threatening", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 44, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(13-14)% to Global Critical Strike Multiplier" }, } }, + ["GraftPrefixTulCritMultiplier4"] = { type = "Prefix", affix = "Lethal", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 66, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } }, + ["GraftPrefixTulCritMultiplier5"] = { type = "Prefix", affix = "Deadly", "+(16-18)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 82, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(16-18)% to Global Critical Strike Multiplier" }, } }, + ["GraftPrefixTulCritChance1"] = { type = "Prefix", affix = "Careful", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(10-14)% increased Global Critical Strike Chance" }, } }, + ["GraftPrefixTulCritChance2"] = { type = "Prefix", affix = "Exact", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 22, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(15-19)% increased Global Critical Strike Chance" }, } }, + ["GraftPrefixTulCritChance3"] = { type = "Prefix", affix = "Unerring", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 44, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(20-24)% increased Global Critical Strike Chance" }, } }, + ["GraftPrefixTulCritChance4"] = { type = "Prefix", affix = "Precise", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 66, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(25-29)% increased Global Critical Strike Chance" }, } }, + ["GraftPrefixTulCritChance5"] = { type = "Prefix", affix = "Pinpoint", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 82, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(30-34)% increased Global Critical Strike Chance" }, } }, + ["GraftPrefixTulPowerChargeOnKill1"] = { type = "Prefix", affix = "Potent", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 66, group = "GraftPrefixTulPowerChargeOnKill", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } }, + ["GraftPrefixTulFrenzyChargeOnHitVsUnique1"] = { type = "Prefix", affix = "Frenzied", "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy", statOrder = { 6853 }, level = 66, group = "GraftPrefixTulFrenzyChargeOnHitVsUnique", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4113439745] = { "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy" }, } }, + ["GraftPrefixTulMaximumColdResistance1"] = { type = "Prefix", affix = "Blustering", "+(1-2)% to maximum Cold Resistance", statOrder = { 1652 }, level = 74, group = "GraftPrefixTulMaximumColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+(1-2)% to maximum Cold Resistance" }, } }, + ["GraftPrefixTulDexterity1"] = { type = "Prefix", affix = "Lithe", "+(3-5) to Dexterity", statOrder = { 1201 }, level = 1, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(3-5) to Dexterity" }, } }, + ["GraftPrefixTulDexterity2"] = { type = "Prefix", affix = "Adroit", "+(6-8) to Dexterity", statOrder = { 1201 }, level = 22, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(6-8) to Dexterity" }, } }, + ["GraftPrefixTulDexterity3"] = { type = "Prefix", affix = "Nimble", "+(9-11) to Dexterity", statOrder = { 1201 }, level = 44, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(9-11) to Dexterity" }, } }, + ["GraftPrefixTulDexterity4"] = { type = "Prefix", affix = "Adept", "+(12-14) to Dexterity", statOrder = { 1201 }, level = 66, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(12-14) to Dexterity" }, } }, + ["GraftPrefixTulDexterity5"] = { type = "Prefix", affix = "Dexterous", "+(15-17) to Dexterity", statOrder = { 1201 }, level = 82, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(15-17) to Dexterity" }, } }, + ["GraftPrefixTulPercentageDexterity1"] = { type = "Prefix", affix = "Graceful", "(2-4)% increased Dexterity", statOrder = { 1208 }, level = 74, group = "GraftPrefixTulPercentageDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4139681126] = { "(2-4)% increased Dexterity" }, } }, + ["GraftPrefixTulMinionLife1"] = { type = "Prefix", affix = "Chief's", "Minions have (9-10)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (9-10)% increased maximum Life" }, } }, + ["GraftPrefixTulMinionLife2"] = { type = "Prefix", affix = "Ruler's", "Minions have (11-12)% increased maximum Life", statOrder = { 1789 }, level = 22, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (11-12)% increased maximum Life" }, } }, + ["GraftPrefixTulMinionLife3"] = { type = "Prefix", affix = "Despot's", "Minions have (13-14)% increased maximum Life", statOrder = { 1789 }, level = 44, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (13-14)% increased maximum Life" }, } }, + ["GraftPrefixTulMinionLife4"] = { type = "Prefix", affix = "Authoritarian's", "Minions have (15-16)% increased maximum Life", statOrder = { 1789 }, level = 66, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (15-16)% increased maximum Life" }, } }, + ["GraftPrefixTulMinionLife5"] = { type = "Prefix", affix = "Overlord's", "Minions have (17-18)% increased maximum Life", statOrder = { 1789 }, level = 82, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (17-18)% increased maximum Life" }, } }, + ["GraftPrefixTulMinionResistances1"] = { type = "Prefix", affix = "Noble's", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 2946 }, level = 22, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(5-8)% to all Elemental Resistances" }, } }, + ["GraftPrefixTulMinionResistances2"] = { type = "Prefix", affix = "Lord's", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 2946 }, level = 44, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(9-12)% to all Elemental Resistances" }, } }, + ["GraftPrefixTulMinionResistances3"] = { type = "Prefix", affix = "King's", "Minions have +(13-16)% to all Elemental Resistances", statOrder = { 2946 }, level = 66, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(13-16)% to all Elemental Resistances" }, } }, + ["GraftSuffixStunDuration1"] = { type = "Suffix", affix = "of Slamming", "Skills used by this Graft have (10-19)% increased Stun Duration", statOrder = { 11090 }, level = 44, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (10-19)% increased Stun Duration" }, } }, + ["GraftSuffixStunDuration2"] = { type = "Suffix", affix = "of Thudding", "Skills used by this Graft have (20-29)% increased Stun Duration", statOrder = { 11090 }, level = 66, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (20-29)% increased Stun Duration" }, } }, + ["GraftSuffixStunDuration3"] = { type = "Suffix", affix = "of Dazing", "Skills used by this Graft have (30-39)% increased Stun Duration", statOrder = { 11090 }, level = 82, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (30-39)% increased Stun Duration" }, } }, + ["GraftSuffixAreaOfEffect1"] = { type = "Suffix", affix = "of Reach", "Skills used by this Graft have (8-12)% increased Area of Effect", statOrder = { 11037 }, level = 1, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (8-12)% increased Area of Effect" }, } }, + ["GraftSuffixAreaOfEffect2"] = { type = "Suffix", affix = "of Grasping", "Skills used by this Graft have (14-16)% increased Area of Effect", statOrder = { 11037 }, level = 22, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (14-16)% increased Area of Effect" }, } }, + ["GraftSuffixAreaOfEffect3"] = { type = "Suffix", affix = "of Extension", "Skills used by this Graft have (18-22)% increased Area of Effect", statOrder = { 11037 }, level = 44, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (18-22)% increased Area of Effect" }, } }, + ["GraftSuffixAreaOfEffect4"] = { type = "Suffix", affix = "of Broadening", "Skills used by this Graft have (24-28)% increased Area of Effect", statOrder = { 11037 }, level = 66, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (24-28)% increased Area of Effect" }, } }, + ["GraftSuffixAreaOfEffect5"] = { type = "Suffix", affix = "of the Expanse", "Skills used by this Graft have (30-34)% increased Area of Effect", statOrder = { 11037 }, level = 82, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (30-34)% increased Area of Effect" }, } }, + ["GraftSuffixHinderOnHit1"] = { type = "Suffix", affix = "of Hindrance", "Spells used by this Graft Hinder Enemies on Hit", statOrder = { 11089 }, level = 44, group = "GraftSuffixHinderOnHit", weightKey = { "graft_tul_tornado", "graft_esh_lightning_hands", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [463925000] = { "Spells used by this Graft Hinder Enemies on Hit" }, } }, + ["GraftSuffixChainingDistance1"] = { type = "Suffix", affix = "of Ricocheting", "Skills used by this Graft have (40-69)% increased Chaining range", statOrder = { 11039 }, level = 44, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (40-69)% increased Chaining range" }, } }, + ["GraftSuffixChainingDistance2"] = { type = "Suffix", affix = "of Chaining", "Skills used by this Graft have (70-100)% increased Chaining range", statOrder = { 11039 }, level = 82, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (70-100)% increased Chaining range" }, } }, + ["GraftSuffixAdditionalProjectiles1"] = { type = "Suffix", affix = "of Splitting", "Skills used by this Graft fire 2 additional Projectiles", statOrder = { 11080 }, level = 44, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 2 additional Projectiles" }, } }, + ["GraftSuffixAdditionalProjectiles2"] = { type = "Suffix", affix = "of Splintering", "Skills used by this Graft fire 3 additional Projectiles", statOrder = { 11080 }, level = 82, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 3 additional Projectiles" }, } }, + ["GraftSuffixProjectileSpeed1"] = { type = "Suffix", affix = "of Flight", "Skills used by this Graft have (8-12)% increased Projectile Speed", statOrder = { 11082 }, level = 1, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (8-12)% increased Projectile Speed" }, } }, + ["GraftSuffixProjectileSpeed2"] = { type = "Suffix", affix = "of Gliding", "Skills used by this Graft have (13-17)% increased Projectile Speed", statOrder = { 11082 }, level = 22, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (13-17)% increased Projectile Speed" }, } }, + ["GraftSuffixProjectileSpeed3"] = { type = "Suffix", affix = "of Homing", "Skills used by this Graft have (18-22)% increased Projectile Speed", statOrder = { 11082 }, level = 44, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (18-22)% increased Projectile Speed" }, } }, + ["GraftSuffixProjectileSpeed4"] = { type = "Suffix", affix = "of Launching", "Skills used by this Graft have (23-27)% increased Projectile Speed", statOrder = { 11082 }, level = 66, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (23-27)% increased Projectile Speed" }, } }, + ["GraftSuffixProjectileSpeed5"] = { type = "Suffix", affix = "of Soaring", "Skills used by this Graft have (28-32)% increased Projectile Speed", statOrder = { 11082 }, level = 82, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (28-32)% increased Projectile Speed" }, } }, + ["GraftSuffixIncreasedDamage1"] = { type = "Suffix", affix = "of Blasting", "Skills used by this Graft deal (10-29)% increased Damage", statOrder = { 11052 }, level = 1, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (10-29)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage2"] = { type = "Suffix", affix = "of Smashing", "Skills used by this Graft deal (30-49)% increased Damage", statOrder = { 11052 }, level = 11, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (30-49)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage3"] = { type = "Suffix", affix = "of Shattering", "Skills used by this Graft deal (50-69)% increased Damage", statOrder = { 11052 }, level = 22, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (50-69)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage4"] = { type = "Suffix", affix = "of Wrecking", "Skills used by this Graft deal (70-89)% increased Damage", statOrder = { 11052 }, level = 33, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (70-89)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage5"] = { type = "Suffix", affix = "of Destroying", "Skills used by this Graft deal (90-109)% increased Damage", statOrder = { 11052 }, level = 44, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (90-109)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage6"] = { type = "Suffix", affix = "of Crushing", "Skills used by this Graft deal (110-129)% increased Damage", statOrder = { 11052 }, level = 55, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (110-129)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage7"] = { type = "Suffix", affix = "of Disintegration", "Skills used by this Graft deal (130-149)% increased Damage", statOrder = { 11052 }, level = 66, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (130-149)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage8"] = { type = "Suffix", affix = "of Demolishing", "Skills used by this Graft deal (150-169)% increased Damage", statOrder = { 11052 }, level = 74, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (150-169)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage9"] = { type = "Suffix", affix = "of Ruination", "Skills used by this Graft deal (170-189)% increased Damage", statOrder = { 11052 }, level = 82, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (170-189)% increased Damage" }, } }, + ["GraftSuffixIncreasedDamage10"] = { type = "Suffix", affix = "of Annihilation", "Skills used by this Graft deal (190-220)% increased Damage", statOrder = { 11052 }, level = 85, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (190-220)% increased Damage" }, } }, + ["GraftSuffixIncreasedDuration1"] = { type = "Suffix", affix = "of Lingering", "Skills used by this Graft have (10-14)% increased Skill Effect Duration", statOrder = { 11055 }, level = 1, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (10-14)% increased Skill Effect Duration" }, } }, + ["GraftSuffixIncreasedDuration2"] = { type = "Suffix", affix = "of Lasting", "Skills used by this Graft have (15-20)% increased Skill Effect Duration", statOrder = { 11055 }, level = 22, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (15-20)% increased Skill Effect Duration" }, } }, + ["GraftSuffixIncreasedDuration3"] = { type = "Suffix", affix = "of the Unending", "Skills used by this Graft have (20-24)% increased Skill Effect Duration", statOrder = { 11055 }, level = 44, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (20-24)% increased Skill Effect Duration" }, } }, + ["GraftSuffixIncreasedDuration4"] = { type = "Suffix", affix = "of Permanence", "Skills used by this Graft have (25-29)% increased Skill Effect Duration", statOrder = { 11055 }, level = 66, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (25-29)% increased Skill Effect Duration" }, } }, + ["GraftSuffixIncreasedDuration5"] = { type = "Suffix", affix = "of Eternity", "Skills used by this Graft have (30-35)% increased Skill Effect Duration", statOrder = { 11055 }, level = 82, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (30-35)% increased Skill Effect Duration" }, } }, + ["GraftSuffixCooldownSpeed1"] = { type = "Suffix", affix = "of the Creek", "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate", statOrder = { 11045 }, level = 1, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate" }, } }, + ["GraftSuffixCooldownSpeed2"] = { type = "Suffix", affix = "of the Stream", "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate", statOrder = { 11045 }, level = 22, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate" }, } }, + ["GraftSuffixCooldownSpeed3"] = { type = "Suffix", affix = "of the River", "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate", statOrder = { 11045 }, level = 44, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 700, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate" }, } }, + ["GraftSuffixCooldownSpeed4"] = { type = "Suffix", affix = "of the Tide", "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate", statOrder = { 11045 }, level = 66, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate" }, } }, + ["GraftSuffixCooldownSpeed5"] = { type = "Suffix", affix = "of the Oceans", "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate", statOrder = { 11045 }, level = 82, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 300, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate" }, } }, + ["GraftSuffixSkipCooldown1"] = { type = "Suffix", affix = "of Chronomancy", "Skills used by this Graft have 25% chance to not consume a Cooldown on use", statOrder = { 11088 }, level = 66, group = "GraftSuffixSkipCooldown", weightKey = { "graft_esh_bolt_ring", "graft_uulnetol_hand_slam", "graft_xoph_cremations", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2520970416] = { "Skills used by this Graft have 25% chance to not consume a Cooldown on use" }, } }, + ["GraftSuffixAttackSpeed1"] = { type = "Suffix", affix = "of Speed", "Skills used by this Graft have (10-24)% increased Attack Speed", statOrder = { 11038 }, level = 22, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (10-24)% increased Attack Speed" }, } }, + ["GraftSuffixAttackSpeed2"] = { type = "Suffix", affix = "of Quickness", "Skills used by this Graft have (25-39)% increased Attack Speed", statOrder = { 11038 }, level = 44, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (25-39)% increased Attack Speed" }, } }, + ["GraftSuffixAttackSpeed3"] = { type = "Suffix", affix = "of Agility", "Skills used by this Graft have (40-55)% increased Attack Speed", statOrder = { 11038 }, level = 66, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (40-55)% increased Attack Speed" }, } }, + ["GraftSuffixSkillLevel1"] = { type = "Suffix", affix = "of Nobility", "+2 to level of Skills used by this Graft", statOrder = { 11071 }, level = 44, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+2 to level of Skills used by this Graft" }, } }, + ["GraftSuffixSkillLevel2"] = { type = "Suffix", affix = "of Lordship", "+3 to level of Skills used by this Graft", statOrder = { 11071 }, level = 66, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+3 to level of Skills used by this Graft" }, } }, + ["GraftSuffixSkillLevel3"] = { type = "Suffix", affix = "of Royalty", "+4 to level of Skills used by this Graft", statOrder = { 11071 }, level = 85, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+4 to level of Skills used by this Graft" }, } }, + ["GraftSuffixCriticalChance1"] = { type = "Suffix", affix = "of Incision", "Skills used by this Graft have (40-79)% increased Critical Strike Chance", "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier", statOrder = { 11048, 11049 }, level = 1, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (40-79)% increased Critical Strike Chance" }, } }, + ["GraftSuffixCriticalChance2"] = { type = "Suffix", affix = "of Slicing", "Skills used by this Graft have (80-119)% increased Critical Strike Chance", "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier", statOrder = { 11048, 11049 }, level = 22, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (80-119)% increased Critical Strike Chance" }, } }, + ["GraftSuffixCriticalChance3"] = { type = "Suffix", affix = "of Dicing", "Skills used by this Graft have (120-139)% increased Critical Strike Chance", "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier", statOrder = { 11048, 11049 }, level = 44, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (120-139)% increased Critical Strike Chance" }, } }, + ["GraftSuffixCriticalChance4"] = { type = "Suffix", affix = "of Striking", "Skills used by this Graft have (140-159)% increased Critical Strike Chance", "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier", statOrder = { 11048, 11049 }, level = 66, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (140-159)% increased Critical Strike Chance" }, } }, + ["GraftSuffixCriticalChance5"] = { type = "Suffix", affix = "of Precision", "Skills used by this Graft have (160-200)% increased Critical Strike Chance", "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier", statOrder = { 11048, 11049 }, level = 82, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (160-200)% increased Critical Strike Chance" }, } }, + ["GraftSuffixFirePenetration1"] = { type = "Suffix", affix = "of Singing", "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance", statOrder = { 11084 }, level = 44, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance" }, } }, + ["GraftSuffixFirePenetration2"] = { type = "Suffix", affix = "of Searing", "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance", statOrder = { 11084 }, level = 66, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance" }, } }, + ["GraftSuffixFirePenetration3"] = { type = "Suffix", affix = "of Blackening", "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance", statOrder = { 11084 }, level = 82, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance" }, } }, + ["GraftSuffixColdPenetration1"] = { type = "Suffix", affix = "of the North", "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance", statOrder = { 11083 }, level = 44, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance" }, } }, + ["GraftSuffixColdPenetration2"] = { type = "Suffix", affix = "of the Boreal", "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance", statOrder = { 11083 }, level = 66, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance" }, } }, + ["GraftSuffixColdPenetration3"] = { type = "Suffix", affix = "of the Arctic", "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance", statOrder = { 11083 }, level = 82, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance" }, } }, + ["GraftSuffixLightningPenetration1"] = { type = "Suffix", affix = "of Scattered Bolts", "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance", statOrder = { 11085 }, level = 44, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance" }, } }, + ["GraftSuffixLightningPenetration2"] = { type = "Suffix", affix = "of Striking Jolts", "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance", statOrder = { 11085 }, level = 66, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance" }, } }, + ["GraftSuffixLightningPenetration3"] = { type = "Suffix", affix = "of Seeking Sparks", "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance", statOrder = { 11085 }, level = 82, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance" }, } }, + ["GraftSuffixUulnetolHandSlamDamageForCDR1"] = { type = "Suffix", affix = "of Impact", "Skills used by this Graft have 20% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (20-29)% more Damage", statOrder = { 11045, 11100 }, level = 44, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (20-29)% more Damage" }, [1053840971] = { "Skills used by this Graft have 20% reduced Cooldown Recovery Rate" }, } }, + ["GraftSuffixUulnetolHandSlamDamageForCDR2"] = { type = "Suffix", affix = "of Cratering", "Skills used by this Graft have 25% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (30-45)% more Damage", statOrder = { 11045, 11100 }, level = 82, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (30-45)% more Damage" }, [1053840971] = { "Skills used by this Graft have 25% reduced Cooldown Recovery Rate" }, } }, + ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE1"] = { type = "Suffix", affix = "of Earthshaking", "Skills used by this Graft have (15-24)% more Area of Effect", "Skills used by this Graft have 15% less Attack Speed", statOrder = { 11123, 11124 }, level = 44, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 15% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (15-24)% more Area of Effect" }, } }, + ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE2"] = { type = "Suffix", affix = "of Earthshattering", "Skills used by this Graft have (25-35)% more Area of Effect", "Skills used by this Graft have 10% less Attack Speed", statOrder = { 11123, 11124 }, level = 82, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 10% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (25-35)% more Area of Effect" }, } }, + ["GraftSuffixUulnetolHandSlamCrushOnHit1"] = { type = "Suffix", affix = "of Pulverising", "Skills used by this Graft Crush on Hit", statOrder = { 11050 }, level = 44, group = "GraftSuffixUulnetolHandSlamCrushOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [668072950] = { "Skills used by this Graft Crush on Hit" }, } }, + ["GraftSuffixUulnetolHandSlamVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Vulnerability", "Skills used by this Graft inflict Vulnerability on Hit", statOrder = { 11106 }, level = 44, group = "GraftSuffixUulnetolHandSlamVulnerabilityOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3989101809] = { "Skills used by this Graft inflict Vulnerability on Hit" }, } }, + ["GraftSuffixUulnetolHandSlamIntimidateOnHit1"] = { type = "Suffix", affix = "of Intimidation", "Skills used by this Graft Intimidate on Hit", statOrder = { 11066 }, level = 44, group = "GraftSuffixUulnetolHandSlamIntimidateOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1790471105] = { "Skills used by this Graft Intimidate on Hit" }, } }, + ["GraftSuffixIgnorePhysMitigation1"] = { type = "Suffix", affix = "of Overwhelming", "Skills used by this Graft ignore Enemy Physical Damage Reduction", statOrder = { 11062 }, level = 44, group = "GraftSuffixIgnorePhysMitigation", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2150059749] = { "Skills used by this Graft ignore Enemy Physical Damage Reduction" }, } }, + ["GraftSuffixShockChance1"] = { type = "Suffix", affix = "of Zapping", "Skills used by this Graft have (19-57)% chance to Shock", statOrder = { 11087 }, level = 1, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (19-57)% chance to Shock" }, } }, + ["GraftSuffixShockChance2"] = { type = "Suffix", affix = "of Jolting", "Skills used by this Graft have (29-87)% chance to Shock", statOrder = { 11087 }, level = 22, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (29-87)% chance to Shock" }, } }, + ["GraftSuffixShockChance3"] = { type = "Suffix", affix = "of Blitzing", "Skills used by this Graft have (39-117)% chance to Shock", statOrder = { 11087 }, level = 44, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (39-117)% chance to Shock" }, } }, + ["GraftSuffixShockChance4"] = { type = "Suffix", affix = "of Electricity", "Skills used by this Graft have (49-147)% chance to Shock", statOrder = { 11087 }, level = 66, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (49-147)% chance to Shock" }, } }, + ["GraftSuffixShockChance5"] = { type = "Suffix", affix = "of Sublimation", "Skills used by this Graft have (60-180)% chance to Shock", statOrder = { 11087 }, level = 82, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (60-180)% chance to Shock" }, } }, + ["GraftSuffixIgniteChance1"] = { type = "Suffix", affix = "of Cinders", "Skills used by this Graft have (13-29)% chance to Ignite", statOrder = { 11041 }, level = 1, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (13-29)% chance to Ignite" }, } }, + ["GraftSuffixIgniteChance2"] = { type = "Suffix", affix = "of Coal", "Skills used by this Graft have (29-44)% chance to Ignite", statOrder = { 11041 }, level = 22, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (29-44)% chance to Ignite" }, } }, + ["GraftSuffixIgniteChance3"] = { type = "Suffix", affix = "of Embers", "Skills used by this Graft have (44-59)% chance to Ignite", statOrder = { 11041 }, level = 44, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (44-59)% chance to Ignite" }, } }, + ["GraftSuffixIgniteChance4"] = { type = "Suffix", affix = "of Ashes", "Skills used by this Graft have (60-74)% chance to Ignite", statOrder = { 11041 }, level = 66, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (60-74)% chance to Ignite" }, } }, + ["GraftSuffixIgniteChance5"] = { type = "Suffix", affix = "of Glowing", "Skills used by this Graft have (75-100)% chance to Ignite", statOrder = { 11041 }, level = 82, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (75-100)% chance to Ignite" }, } }, + ["GraftSuffixFreezeChance1"] = { type = "Suffix", affix = "of Ice", "Skills used by this Graft have (10-19)% chance to Freeze", statOrder = { 11040 }, level = 1, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (10-19)% chance to Freeze" }, } }, + ["GraftSuffixFreezeChance2"] = { type = "Suffix", affix = "of Sleet", "Skills used by this Graft have (20-29)% chance to Freeze", statOrder = { 11040 }, level = 22, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (20-29)% chance to Freeze" }, } }, + ["GraftSuffixFreezeChance3"] = { type = "Suffix", affix = "of Snow", "Skills used by this Graft have (30-39)% chance to Freeze", statOrder = { 11040 }, level = 44, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (30-39)% chance to Freeze" }, } }, + ["GraftSuffixFreezeChance4"] = { type = "Suffix", affix = "of Hail", "Skills used by this Graft have (40-49)% chance to Freeze", statOrder = { 11040 }, level = 66, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (40-49)% chance to Freeze" }, } }, + ["GraftSuffixFreezeChance5"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft have (50-60)% chance to Freeze", statOrder = { 11040 }, level = 82, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (50-60)% chance to Freeze" }, } }, + ["GraftSuffixShockAsThoughDealingMoreDamage1"] = { type = "Suffix", affix = "of Amplification", "Skills used by this Graft Shock Enemies as though dealing 100% more Damage", statOrder = { 11086 }, level = 66, group = "GraftSuffixShockAsThoughDealingMoreDamage", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3626715014] = { "Skills used by this Graft Shock Enemies as though dealing 100% more Damage" }, } }, + ["GraftSuffixLightningGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Bolt", "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage", statOrder = { 11072 }, level = 44, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixLightningGainAsChaos2"] = { type = "Suffix", affix = "of Twisted Thunder", "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage", statOrder = { 11072 }, level = 66, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixLightningGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Storms", "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage", statOrder = { 11072 }, level = 82, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixFireGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Smoke", "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage", statOrder = { 11060 }, level = 44, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixFireGainAsChaos2"] = { type = "Suffix", affix = "of Umbral Flame", "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage", statOrder = { 11060 }, level = 66, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixFireGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Flame", "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage", statOrder = { 11060 }, level = 82, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixColdGainAsChaos1"] = { type = "Suffix", affix = "of Blasted Snow", "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage", statOrder = { 11043 }, level = 44, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixColdGainAsChaos2"] = { type = "Suffix", affix = "of Blackened Ice", "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage", statOrder = { 11043 }, level = 66, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixColdGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Frost", "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage", statOrder = { 11043 }, level = 82, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage" }, } }, + ["GraftSuffixCoverInFrost1"] = { type = "Suffix", affix = "of Snowdrifts", "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit", statOrder = { 11047 }, level = 66, group = "GraftSuffixCoverInFrost", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1987305786] = { "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit" }, } }, + ["GraftSuffixAilmentDuration1"] = { type = "Suffix", affix = "of Torment", "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration", statOrder = { 11036 }, level = 22, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration" }, } }, + ["GraftSuffixAilmentDuration2"] = { type = "Suffix", affix = "of Misery", "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration", statOrder = { 11036 }, level = 66, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration" }, } }, + ["GraftSuffixAilmentDuration3"] = { type = "Suffix", affix = "of Torture", "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration", statOrder = { 11036 }, level = 82, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration" }, } }, + ["GraftSuffixFireExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit", statOrder = { 11064 }, level = 44, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit" }, } }, + ["GraftSuffixFireExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit", statOrder = { 11064 }, level = 66, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit" }, } }, + ["GraftSuffixFireExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit", statOrder = { 11064 }, level = 82, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit" }, } }, + ["GraftSuffixLightningExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit", statOrder = { 11065 }, level = 44, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit" }, } }, + ["GraftSuffixLightningExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit", statOrder = { 11065 }, level = 66, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit" }, } }, + ["GraftSuffixLightningExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit", statOrder = { 11065 }, level = 82, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit" }, } }, + ["GraftSuffixImpaleEffect1"] = { type = "Suffix", affix = "of Wringing", "Skills used by this Graft have (20-34)% increased Impale Effect", statOrder = { 11063 }, level = 44, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (20-34)% increased Impale Effect" }, } }, + ["GraftSuffixImpaleEffect2"] = { type = "Suffix", affix = "of Twisting", "Skills used by this Graft have (35-44)% increased Impale Effect", statOrder = { 11063 }, level = 66, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (35-44)% increased Impale Effect" }, } }, + ["GraftSuffixImpaleEffect3"] = { type = "Suffix", affix = "of Mangling", "Skills used by this Graft have (45-55)% increased Impale Effect", statOrder = { 11063 }, level = 82, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (45-55)% increased Impale Effect" }, } }, + ["GraftSuffixMinionDamage1"] = { type = "Suffix", affix = "of Armies", "Minions summoned by this Graft deal (10-29)% increased Damage", statOrder = { 11075 }, level = 1, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (10-29)% increased Damage" }, } }, + ["GraftSuffixMinionDamage2"] = { type = "Suffix", affix = "of Infantry", "Minions summoned by this Graft deal (30-49)% increased Damage", statOrder = { 11075 }, level = 11, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (30-49)% increased Damage" }, } }, + ["GraftSuffixMinionDamage3"] = { type = "Suffix", affix = "of Troops", "Minions summoned by this Graft deal (50-69)% increased Damage", statOrder = { 11075 }, level = 22, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (50-69)% increased Damage" }, } }, + ["GraftSuffixMinionDamage4"] = { type = "Suffix", affix = "of the Multitude", "Minions summoned by this Graft deal (70-89)% increased Damage", statOrder = { 11075 }, level = 33, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (70-89)% increased Damage" }, } }, + ["GraftSuffixMinionDamage5"] = { type = "Suffix", affix = "of Swarms", "Minions summoned by this Graft deal (90-109)% increased Damage", statOrder = { 11075 }, level = 44, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (90-109)% increased Damage" }, } }, + ["GraftSuffixMinionDamage6"] = { type = "Suffix", affix = "of Hordes", "Minions summoned by this Graft deal (110-129)% increased Damage", statOrder = { 11075 }, level = 55, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (110-129)% increased Damage" }, } }, + ["GraftSuffixMinionDamage7"] = { type = "Suffix", affix = "of Hosts", "Minions summoned by this Graft deal (130-149)% increased Damage", statOrder = { 11075 }, level = 66, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (130-149)% increased Damage" }, } }, + ["GraftSuffixMinionDamage8"] = { type = "Suffix", affix = "of Throngs", "Minions summoned by this Graft deal (150-169)% increased Damage", statOrder = { 11075 }, level = 74, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (150-169)% increased Damage" }, } }, + ["GraftSuffixMinionDamage9"] = { type = "Suffix", affix = "of Droves", "Minions summoned by this Graft deal (170-189)% increased Damage", statOrder = { 11075 }, level = 82, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (170-189)% increased Damage" }, } }, + ["GraftSuffixMinionDamage10"] = { type = "Suffix", affix = "of Legions", "Minions summoned by this Graft deal (190-220)% increased Damage", statOrder = { 11075 }, level = 85, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (190-220)% increased Damage" }, } }, + ["GraftSuffixMinionLife1"] = { type = "Suffix", affix = "of Muscle", "Minions summoned by this Graft have (32-36)% increased Life", statOrder = { 11076 }, level = 1, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (32-36)% increased Life" }, } }, + ["GraftSuffixMinionLife2"] = { type = "Suffix", affix = "of Flesh", "Minions summoned by this Graft have (38-42)% increased Life", statOrder = { 11076 }, level = 22, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (38-42)% increased Life" }, } }, + ["GraftSuffixMinionLife3"] = { type = "Suffix", affix = "of Sinew", "Minions summoned by this Graft have (44-48)% increased Life", statOrder = { 11076 }, level = 44, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (44-48)% increased Life" }, } }, + ["GraftSuffixMinionLife4"] = { type = "Suffix", affix = "of Beef", "Minions summoned by this Graft have (50-54)% increased Life", statOrder = { 11076 }, level = 66, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (50-54)% increased Life" }, } }, + ["GraftSuffixMinionLife5"] = { type = "Suffix", affix = "of Meat", "Minions summoned by this Graft have (56-60)% increased Life", statOrder = { 11076 }, level = 82, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (56-60)% increased Life" }, } }, + ["GraftSuffixMinionAttackSpeed1"] = { type = "Suffix", affix = "of Lunacy", "Minions summoned by this Graft have (12-18)% increased Attack Speed", statOrder = { 11073 }, level = 44, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (12-18)% increased Attack Speed" }, } }, + ["GraftSuffixMinionAttackSpeed2"] = { type = "Suffix", affix = "of Psychopathy", "Minions summoned by this Graft have (19-25)% increased Attack Speed", statOrder = { 11073 }, level = 66, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (19-25)% increased Attack Speed" }, } }, + ["GraftSuffixMinionAttackSpeed3"] = { type = "Suffix", affix = "of Maniacism", "Minions summoned by this Graft have (26-31)% increased Attack Speed", statOrder = { 11073 }, level = 82, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (26-31)% increased Attack Speed" }, } }, + ["GraftSuffixMinionBlindOnHit1"] = { type = "Suffix", affix = "of Blinding Snow", "Minions summoned by this Graft have (10-20)% chance to Blind on Hit", statOrder = { 11078 }, level = 66, group = "GraftSuffixMinionBlindOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2313228671] = { "Minions summoned by this Graft have (10-20)% chance to Blind on Hit" }, } }, + ["GraftSuffixMinionTauntOnHit1"] = { type = "Suffix", affix = "of Taunting", "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit", statOrder = { 11074 }, level = 66, group = "GraftSuffixMinionTauntOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [131940510] = { "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit" }, } }, + ["GraftSuffixMinionDamageGainAsCold1"] = { type = "Suffix", affix = "of Frozen Falls", "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage", statOrder = { 11077 }, level = 44, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage" }, } }, + ["GraftSuffixMinionDamageGainAsCold2"] = { type = "Suffix", affix = "of Winter Winds", "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage", statOrder = { 11077 }, level = 66, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage" }, } }, + ["GraftSuffixMinionDamageGainAsCold3"] = { type = "Suffix", affix = "of Sleetbound Snow", "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage", statOrder = { 11077 }, level = 82, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage" }, } }, + ["GraftSuffixFasterAilments1"] = { type = "Suffix", affix = "of Decomposition", "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster", statOrder = { 11054 }, level = 44, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster" }, } }, + ["GraftSuffixFasterAilments2"] = { type = "Suffix", affix = "of Festering", "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster", statOrder = { 11054 }, level = 66, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster" }, } }, + ["GraftSuffixFasterAilments3"] = { type = "Suffix", affix = "of Perishing", "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster", statOrder = { 11054 }, level = 82, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster" }, } }, + ["GraftSuffixPunishmentOnHit1"] = { type = "Suffix", affix = "of Punishment", "Skills used by this Graft inflict Punishment on Hit", statOrder = { 11051 }, level = 44, group = "GraftSuffixPunishmentOnHit", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1245902490] = { "Skills used by this Graft inflict Punishment on Hit" }, } }, + ["GraftSuffixNonDamagingAilmentEffect1"] = { type = "Suffix", affix = "of Oppression", "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments", statOrder = { 11079 }, level = 22, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments" }, } }, + ["GraftSuffixNonDamagingAilmentEffect2"] = { type = "Suffix", affix = "of Suppression", "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments", statOrder = { 11079 }, level = 66, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments" }, } }, + ["GraftSuffixNonDamagingAilmentEffect3"] = { type = "Suffix", affix = "of Persecution", "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments", statOrder = { 11079 }, level = 82, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments" }, } }, + ["GraftSuffixIncreasedDamageVsIgnited1"] = { type = "Suffix", affix = "of Aggravation", "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies", statOrder = { 11053 }, level = 44, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies" }, } }, + ["GraftSuffixIncreasedDamageVsIgnited2"] = { type = "Suffix", affix = "of Exacerbation", "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies", statOrder = { 11053 }, level = 66, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies" }, } }, + ["GraftSuffixIncreasedDamageVsIgnited3"] = { type = "Suffix", affix = "of Anguish", "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies", statOrder = { 11053 }, level = 82, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies" }, } }, + ["GraftSuffixEshLightningRingBuffAddedLightning1"] = { type = "Suffix", affix = "of Glowing", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage", statOrder = { 11035 }, level = 44, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage" }, } }, + ["GraftSuffixEshLightningRingBuffAddedLightning2"] = { type = "Suffix", affix = "of Shimmering", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage", statOrder = { 11035 }, level = 66, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage" }, } }, + ["GraftSuffixEshLightningRingBuffAddedLightning3"] = { type = "Suffix", affix = "of Radiance", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage", statOrder = { 11035 }, level = 82, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage" }, } }, + ["GraftSuffixEshLightningRingConductivityOnHit"] = { type = "Suffix", affix = "of Conductivity", "Skills used by this Graft inflict Conductivity on Hit", statOrder = { 11044 }, level = 66, group = "GraftSuffixEshLightningRingConductivityOnHit", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3285341404] = { "Skills used by this Graft inflict Conductivity on Hit" }, } }, + ["GraftSuffixEshLightningRingNumberOfBolts1"] = { type = "Suffix", affix = "of Bolts", "Skills used by this Graft cause 4 additional lightning bolt strikes", statOrder = { 11058 }, level = 44, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 4 additional lightning bolt strikes" }, } }, + ["GraftSuffixEshLightningRingNumberOfBolts2"] = { type = "Suffix", affix = "of Thunderclaps", "Skills used by this Graft cause 6 additional lightning bolt strikes", statOrder = { 11058 }, level = 82, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 6 additional lightning bolt strikes" }, } }, + ["GraftSuffixXophMoltenShellShieldAmount1"] = { type = "Suffix", affix = "of the Core", "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage", statOrder = { 11114 }, level = 44, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage" }, } }, + ["GraftSuffixXophMoltenShellShieldAmount2"] = { type = "Suffix", affix = "of the Crux", "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage", statOrder = { 11114 }, level = 66, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage" }, } }, + ["GraftSuffixXophMoltenShellShieldAmount3"] = { type = "Suffix", affix = "of the Heart", "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage", statOrder = { 11114 }, level = 82, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage" }, } }, + ["GraftSuffixXophMoltenShellCoverInAsh1"] = { type = "Suffix", affix = "of Ashen Flame", "Skills used by this Graft Cover Enemies in Ash on Hit", statOrder = { 11046 }, level = 66, group = "GraftSuffixXophMoltenShellCoverInAsh", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [613591578] = { "Skills used by this Graft Cover Enemies in Ash on Hit" }, } }, + ["GraftSuffixXophMoltenShellArmourDuringBuff1"] = { type = "Suffix", affix = "of Flameplating", "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour", statOrder = { 11115 }, level = 44, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour" }, } }, + ["GraftSuffixXophMoltenShellArmourDuringBuff2"] = { type = "Suffix", affix = "of Fiery Buttresses", "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour", statOrder = { 11115 }, level = 82, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour" }, } }, + ["GraftSuffixXophMoltenShellPercentTakenByBuff1"] = { type = "Suffix", affix = "of the Fireheart", "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", statOrder = { 11116 }, level = 66, group = "GraftSuffixXophMoltenShellPercentTakenByBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2664271989] = { "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield" }, } }, + ["GraftSuffixXophMoltenShellLessShieldIncreasedCDR1"] = { type = "Suffix", affix = "of Hasty Reconstruction", "Skills used by this Graft have 40% increased Cooldown Recovery Rate", "Heart of Flame Buff used by this Graft can take 30% less Damage", statOrder = { 11045, 11117 }, level = 44, group = "GraftSuffixXophMoltenShellLessShieldIncreasedCDR", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have 40% increased Cooldown Recovery Rate" }, [2338032775] = { "Heart of Flame Buff used by this Graft can take 30% less Damage" }, } }, + ["GraftSuffixFrostbiteOnHit1"] = { type = "Suffix", affix = "of Frostbite", "Skills used by this Graft inflict Frostbite on Hit", statOrder = { 11061 }, level = 44, group = "GraftSuffixFrostbiteOnHit", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [1593675162] = { "Skills used by this Graft inflict Frostbite on Hit" }, } }, + ["GraftSuffixTulTornadoProjectileDamageAfterPierce1"] = { type = "Suffix", affix = "of Boring", "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage", statOrder = { 11081 }, level = 66, group = "GraftSuffixTulTornadoProjectileDamageAfterPierce", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [793704702] = { "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage" }, } }, + ["GraftSuffixTulTornadoAdditionalTornado1"] = { type = "Suffix", affix = "of Whirlwinds", "Skills used by this Graft deal 40% less Damage", "Dance in the White used by this Graft creates an additional Tornado", "Dance in the White used by this Graft has +1 to maximum Tornados", statOrder = { 11096, 11097, 11098 }, level = 66, group = "GraftSuffixTulTornadoAdditionalTornado", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4064732043] = { "Skills used by this Graft deal 40% less Damage" }, [1180345918] = { "Dance in the White used by this Graft has +1 to maximum Tornados" }, [2372432170] = { "Dance in the White used by this Graft creates an additional Tornado" }, } }, + ["GraftSuffixXophGeysersAdditionalGeyser1"] = { type = "Suffix", affix = "of Eruption", "His Burning Message used by this Graft creates an additional geyser", statOrder = { 11112 }, level = 44, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates an additional geyser" }, } }, + ["GraftSuffixXophGeysersAdditionalGeyser2"] = { type = "Suffix", affix = "of Geysers", "His Burning Message used by this Graft creates 2 additional geysers", statOrder = { 11112 }, level = 82, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates 2 additional geysers" }, } }, + ["GraftSuffixXophGeysersAdditionalWarcyProjectiles1"] = { type = "Suffix", affix = "of Deafening", "Geysers created by this Graft fire 2 additional Projectiles when you Warcry", statOrder = { 11113 }, level = 66, group = "GraftSuffixXophGeysersAdditionalWarcyProjectiles", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4169460025] = { "Geysers created by this Graft fire 2 additional Projectiles when you Warcry" }, } }, + ["GraftSuffixJoltBuffMaximumJoltBuffCount1"] = { type = "Suffix", affix = "of Trembling", "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs", statOrder = { 11069 }, level = 44, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs" }, } }, + ["GraftSuffixJoltBuffMaximumJoltBuffCount2"] = { type = "Suffix", affix = "of Shuddering", "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs", statOrder = { 11069 }, level = 82, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs" }, } }, + ["GraftSuffixJoltMaxDamageAndDamageTaken1"] = { type = "Suffix", affix = "of Peril", "Jolt granted by this Graft grants +1% increased Damage taken", "Jolt granted by this Graft grants +1% more Maximum Attack Damage", statOrder = { 11056, 11057 }, level = 66, group = "GraftSuffixJoltMaxDamageAndDamageTaken", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3955143601] = { "Jolt granted by this Graft grants +1% more Maximum Attack Damage" }, [3853303544] = { "Jolt granted by this Graft grants +1% increased Damage taken" }, } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance1"] = { type = "Suffix", affix = "of Heightening", "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance", statOrder = { 11067 }, level = 1, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance" }, } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance2"] = { type = "Suffix", affix = "of Sharpening", "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance", statOrder = { 11067 }, level = 22, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance" }, } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance3"] = { type = "Suffix", affix = "of Amplification", "Jolt granted by this Graft grants 4% increased Critical Strike Chance", statOrder = { 11067 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 4% increased Critical Strike Chance" }, } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance4"] = { type = "Suffix", affix = "of Intensity", "Jolt granted by this Graft grants 5% increased Critical Strike Chance", statOrder = { 11067 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 5% increased Critical Strike Chance" }, } }, + ["GraftSuffixJoltGrantsCriticalStrikeChance5"] = { type = "Suffix", affix = "of Escalation", "Jolt granted by this Graft grants 6% increased Critical Strike Chance", statOrder = { 11067 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 6% increased Critical Strike Chance" }, } }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Pins", "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier", statOrder = { 11068 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier" }, } }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Blades", "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier", statOrder = { 11068 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier" }, } }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Daggers", "Jolt granted by this Graft grants +4% to Critical Strike Multiplier", statOrder = { 11068 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +4% to Critical Strike Multiplier" }, } }, + ["GraftSuffixJoltGrantsMovementVelocity1"] = { type = "Suffix", affix = "of Velocity", "Jolt granted by this Graft grants 1% increased Movement Speed", statOrder = { 11070 }, level = 66, group = "GraftSuffixJoltGrantsMovementVelocity", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1945948244] = { "Jolt granted by this Graft grants 1% increased Movement Speed" }, } }, + ["GraftSuffixLightningHandsAdditionalHands1"] = { type = "Suffix", affix = "of Grasping", "Enervating Grasp used by this Graft creates (3-5) additional Hands", statOrder = { 11059 }, level = 66, group = "GraftSuffixLightningHandsAdditionalHands", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [300482938] = { "Enervating Grasp used by this Graft creates (3-5) additional Hands" }, } }, + ["GraftSuffixLightningHandsUnnerveOnHit1"] = { type = "Suffix", affix = "of Unnerving", "Skills used by this Graft Unnerve on Hit", statOrder = { 11042 }, level = 44, group = "GraftSuffixLightningHandsUnnerveOnHit", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2418139890] = { "Skills used by this Graft Unnerve on Hit" }, } }, + ["GraftSuffixUulNetolLowLifeBuffDurationForEffect1"] = { type = "Suffix", affix = "of Dilution", "Skills used by this Graft have (34-40)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 11055, 11120 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (34-40)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } }, + ["GraftSuffixUulNetolLowLifeBuffDurationForEffect2"] = { type = "Suffix", affix = "of Thinning", "Skills used by this Graft have (41-45)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 11055, 11120 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (41-45)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } }, + ["GraftSuffixUulNetolLowLifeBuffAdditionalCharge1"] = { type = "Suffix", affix = "of Endurance", "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained", statOrder = { 11121 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffAdditionalCharge", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [994844444] = { "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained" }, } }, + ["GraftSuffixUulNetolLowLifeBuffRecovery1"] = { type = "Suffix", affix = "of Recovery", "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate", statOrder = { 11120 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate" }, } }, + ["GraftSuffixUulNetolLowLifeBuffRecovery2"] = { type = "Suffix", affix = "of Rejuvenation", "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate", statOrder = { 11120 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate" }, } }, + ["GraftSuffixUulNetolLowLifeBuffRecovery3"] = { type = "Suffix", affix = "of Renewal", "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate", statOrder = { 11120 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate" }, } }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance1"] = { type = "Suffix", affix = "of the Bulwark", "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage", statOrder = { 11118 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage" }, } }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance2"] = { type = "Suffix", affix = "of Shielding", "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage", statOrder = { 11118 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage" }, } }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance3"] = { type = "Suffix", affix = "of the Turtle", "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage", statOrder = { 11118 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage" }, } }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech1"] = { type = "Suffix", affix = "of Bloodhunger", "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life", statOrder = { 11119 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life" }, } }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech2"] = { type = "Suffix", affix = "of Vampirism", "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life", statOrder = { 11119 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life" }, } }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech3"] = { type = "Suffix", affix = "of the Leech", "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life", statOrder = { 11119 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life" }, } }, + ["GraftSuffixUulNetolImpaleBuffImpaleEffect1"] = { type = "Suffix", affix = "of Twisting", "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale", statOrder = { 11105 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale" }, } }, + ["GraftSuffixUulNetolImpaleBuffImpaleEffect2"] = { type = "Suffix", affix = "of Wrenching", "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale", statOrder = { 11105 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale" }, } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed1"] = { type = "Suffix", affix = "of the Berserker", "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed", statOrder = { 11103 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed" }, } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed2"] = { type = "Suffix", affix = "of the Maniac", "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed", statOrder = { 11103 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed" }, } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed3"] = { type = "Suffix", affix = "of the Madman", "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed", statOrder = { 11103 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed" }, } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE1"] = { type = "Suffix", affix = "of Grasping", "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks", statOrder = { 11102 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks" }, } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE2"] = { type = "Suffix", affix = "of Clutching", "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks", statOrder = { 11102 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks" }, } }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE3"] = { type = "Suffix", affix = "of Siezing", "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks", statOrder = { 11102 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks" }, } }, + ["GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction1"] = { type = "Suffix", affix = "of Devastation", "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 11104 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3830354140] = { "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["GraftSuffixTulMortarAdditionalMortar1"] = { type = "Suffix", affix = "of Flinging", "Falling Crystals used by this Graft fires up to 1 additional mortar", statOrder = { 11095 }, level = 66, group = "GraftSuffixTulMortarAdditionalMortar", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2123039991] = { "Falling Crystals used by this Graft fires up to 1 additional mortar" }, } }, + ["GraftSuffixTulMortarMoreDamageVSFrozen1"] = { type = "Suffix", affix = "of Icebergs", "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies", statOrder = { 11094 }, level = 44, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies" }, } }, + ["GraftSuffixTulMortarMoreDamageVSFrozen2"] = { type = "Suffix", affix = "of Floes", "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies", statOrder = { 11094 }, level = 66, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies" }, } }, + ["GraftSuffixTulMortarMoreDamageVSFrozen3"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies", statOrder = { 11094 }, level = 82, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies" }, } }, + ["GraftSuffixUulNetolSpikesAdditionalSpikes1"] = { type = "Suffix", affix = "of Foothills", "Seize the Flesh used by this Graft creates +(1-2) Spire", statOrder = { 11099 }, level = 66, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(1-2) Spire" }, } }, + ["GraftSuffixUulNetolSpikesAdditionalSpikes2"] = { type = "Suffix", affix = "of Mountains", "Seize the Flesh used by this Graft creates +(3-4) Spires", statOrder = { 11099 }, level = 82, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(3-4) Spires" }, } }, + ["GraftSuffixXophPillarAdditionalPillar1"] = { type = "Suffix", affix = "of Pillars", "Call the Pyre used by this Graft creates +1 Ashen Pillar", statOrder = { 11111 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +1 Ashen Pillar" }, } }, + ["GraftSuffixXophPillarAdditionalPillar2"] = { type = "Suffix", affix = "of Obelisks", "Call the Pyre used by this Graft creates +2 Ashen Pillars", statOrder = { 11111 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +2 Ashen Pillars" }, } }, + ["GraftSuffixXophAilmentBuffEleGainAsChaos1"] = { type = "Suffix", affix = "of Foulness", "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage", statOrder = { 11109 }, level = 66, group = "GraftSuffixXophAilmentBuffEleGainAsChaos", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1761211254] = { "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage" }, } }, + ["GraftSuffixXophAilmentBuffEleResistances1"] = { type = "Suffix", affix = "of the Span", "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances", statOrder = { 11108 }, level = 44, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances" }, } }, + ["GraftSuffixXophAilmentBuffEleResistances2"] = { type = "Suffix", affix = "of Resistance", "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances", statOrder = { 11108 }, level = 66, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances" }, } }, + ["GraftSuffixXophAilmentBuffEleResistances3"] = { type = "Suffix", affix = "of Facets", "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances", statOrder = { 11108 }, level = 82, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances" }, } }, + ["GraftSuffixXophAilmentBuffElementalAilmentAvoid1"] = { type = "Suffix", affix = "of Eschewing", "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments", statOrder = { 11110 }, level = 44, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments" }, } }, + ["GraftSuffixXophAilmentBuffElementalAilmentAvoid2"] = { type = "Suffix", affix = "of Avoidance", "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments", statOrder = { 11110 }, level = 66, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments" }, } }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra1"] = { type = "Suffix", affix = "of Prisms", "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 11107 }, level = 44, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage" }, } }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra2"] = { type = "Suffix", affix = "of the Spectrum", "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 11107 }, level = 66, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage" }, } }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra3"] = { type = "Suffix", affix = "of the Continuum", "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 11107 }, level = 82, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage" }, } }, + ["GraftSuffixTulAegisBuffAmount1"] = { type = "Suffix", affix = "of Guarding", "Preserving Stillness used by this Graft can take (200-299) additional Damage", statOrder = { 11093 }, level = 44, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (200-299) additional Damage" }, } }, + ["GraftSuffixTulAegisBuffAmount2"] = { type = "Suffix", affix = "of Shelter", "Preserving Stillness used by this Graft can take (300-399) additional Damage", statOrder = { 11093 }, level = 66, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (300-399) additional Damage" }, } }, + ["GraftSuffixTulAegisBuffAmount3"] = { type = "Suffix", affix = "of Protection", "Preserving Stillness used by this Graft can take (400-500) additional Damage", statOrder = { 11093 }, level = 82, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (400-500) additional Damage" }, } }, + ["GraftSuffixTulAegisBuffMaxResistance1"] = { type = "Suffix", affix = "of the Mosaic", "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances", statOrder = { 11092 }, level = 66, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances" }, } }, + ["GraftSuffixTulAegisBuffMaxResistance2"] = { type = "Suffix", affix = "of Hues", "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances", statOrder = { 11092 }, level = 82, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances" }, } }, + ["GraftSuffixTulAegisBuffAdditionalResistance1"] = { type = "Suffix", affix = "of Resistance", "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances", statOrder = { 11091 }, level = 44, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances" }, } }, + ["GraftSuffixTulAegisBuffAdditionalResistance2"] = { type = "Suffix", affix = "of Resilience", "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances", statOrder = { 11091 }, level = 66, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances" }, } }, + ["GraftSuffixTulAegisBuffAdditionalResistance3"] = { type = "Suffix", affix = "of Mettle", "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances", statOrder = { 11091 }, level = 82, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances" }, } }, + ["GraftCorruptionAttackSpeedPerFrenzy"] = { type = "Corrupted", affix = "", "(1-2)% increased Attack Speed per Frenzy Charge", statOrder = { 2072 }, level = 1, group = "GraftCorruptionAttackSpeedPerFrenzy", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [3548561213] = { "(1-2)% increased Attack Speed per Frenzy Charge" }, } }, + ["GraftCorruptionCritChancePerPower"] = { type = "Corrupted", affix = "", "(4-8)% increased Critical Strike Chance per Power Charge", statOrder = { 3201 }, level = 1, group = "GraftCorruptionCritChancePerPower", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [2102212273] = { "(4-8)% increased Critical Strike Chance per Power Charge" }, } }, + ["GraftCorruptionLifeRegenerationPerEndurance"] = { type = "Corrupted", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 1, group = "GraftCorruptionLifeRegenerationPerEndurance", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, + ["GraftCorruptionAccuracyFromLightRadius"] = { type = "Corrupted", affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7531 }, level = 1, group = "GraftCorruptionAccuracyFromLightRadius", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, + ["GraftCorruptionStunThresholdFromFireResistance"] = { type = "Corrupted", affix = "", "Stun Threshold is increased by Overcapped Fire Resistance", statOrder = { 10414 }, level = 1, group = "GraftCorruptionStunThresholdFromFireResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [2898944747] = { "Stun Threshold is increased by Overcapped Fire Resistance" }, } }, + ["GraftCorruptionLessAreaDamageChanceFromColdResistance"] = { type = "Corrupted", affix = "", "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance", statOrder = { 10500 }, level = 1, group = "GraftCorruptionLessAreaDamageChanceFromColdResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [1469603435] = { "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance" }, } }, + ["GraftCorruptionProjectileSpeedPerStrength"] = { type = "Corrupted", affix = "", "1% increased Projectile Speed per 20 Strength", statOrder = { 9885 }, level = 66, group = "GraftCorruptionProjectileSpeedPerStrength", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [1998937909] = { "1% increased Projectile Speed per 20 Strength" }, } }, + ["GraftCorruptionCastSpeedPerDexterity"] = { type = "Corrupted", affix = "", "1% increased Cast Speed per 20 Dexterity", statOrder = { 5536 }, level = 66, group = "GraftCorruptionCastSpeedPerDexterity", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [1334577255] = { "1% increased Cast Speed per 20 Dexterity" }, } }, + ["GraftCorruptionMeleeDamagePerIntelligence"] = { type = "Corrupted", affix = "", "1% increased Melee Damage per 20 Intelligence", statOrder = { 9313 }, level = 66, group = "GraftCorruptionMeleeDamagePerIntelligence", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [2645167381] = { "1% increased Melee Damage per 20 Intelligence" }, } }, + ["GraftCorruptionNonDamagingAilmentEffectPerBlueGem"] = { type = "Corrupted", affix = "", "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed", statOrder = { 9632 }, level = 66, group = "GraftCorruptionNonDamagingAilmentEffectPerBlueGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [2324668473] = { "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed" }, } }, + ["GraftCorruptionCooldownSpeedPerGreenGem"] = { type = "Corrupted", affix = "", "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed", statOrder = { 5954 }, level = 66, group = "GraftCorruptionCooldownSpeedPerGreenGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [162292333] = { "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed" }, } }, + ["GraftCorruptionSkillEffectDurationPerRedGem"] = { type = "Corrupted", affix = "", "2% increased Skill Effect Duration for each Red Skill Gem you have socketed", statOrder = { 10198 }, level = 66, group = "GraftCorruptionSkillEffectDurationPerRedGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [1430991954] = { "2% increased Skill Effect Duration for each Red Skill Gem you have socketed" }, } }, } \ No newline at end of file diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 22af44de38..9e759968c6 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -2,7011 +2,7121 @@ -- Item data (c) Grinding Gear Games return { - ["StrengthUniqueRing2"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthImplicitAmulet1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 7, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthImplicitBelt1"] = { affix = "", "+(25-35) to Strength", statOrder = { 1177 }, level = 10, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-35) to Strength" }, } }, - ["StrengthUniqueHelmetDexInt1"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUniqueTwoHandMace1"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueAmulet5"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueIntHelmet3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBootsInt1"] = { affix = "", "+(5-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-30) to Strength" }, } }, - ["StrengthUniqueDagger2"] = { affix = "", "+25 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } }, - ["StrengthUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-60) to Strength" }, } }, - ["StrengthUniqueGlovesDex1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBelt1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBelt2"] = { affix = "", "+(40-50) to Strength", statOrder = { 1177 }, level = 20, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, - ["StrengthUniqueBelt4"] = { affix = "", "+25 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } }, - ["StrengthUniqueGlovesStr2"] = { affix = "", "+50 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+50 to Strength" }, } }, - ["StrengthUniqueTwoHandAxe3"] = { affix = "", "+(15-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-30) to Strength" }, } }, - ["StrengthUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUniqueGlovesStrDex3"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueClaw5_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueRing8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueTwoHandAxe5"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, - ["StrengthUniqueTwoHandSword5"] = { affix = "", "+(40-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, - ["StrengthUniqueBelt7"] = { affix = "", "+(40-55) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-55) to Strength" }, } }, - ["StrengthUniqueSceptre6"] = { affix = "", "+(50-70) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(50-70) to Strength" }, } }, - ["StrengthUniqueBodyStr4"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthUniqueQuiver6"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUniqueOneHandSword8"] = { affix = "", "+(35-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, - ["StrengthUniqueGlovesStrInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUniqueRing31__"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUniqueClaw9"] = { affix = "", "+(10-15) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["StrengthUniqueRing36"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__1"] = { affix = "", "+30 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } }, - ["StrengthUnique___2"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__4"] = { affix = "", "+30 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } }, - ["StrengthUnique__5"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__6"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__7_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__9"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__10"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__11"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__12"] = { affix = "", "+200 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+200 to Strength" }, } }, - ["StrengthUnique__13_"] = { affix = "", "+(60-120) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(60-120) to Strength" }, } }, - ["StrengthUnique__14"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__15"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUnique__16"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 65, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__17"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 62, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__18"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__19_"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, - ["StrengthUnique__20_"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, - ["StrengthUnique__21"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 50, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, - ["StrengthUnique__22"] = { affix = "", "+(20-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-50) to Strength" }, } }, - ["StrengthUnique__23"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__24"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, - ["StrengthUnique__25"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__26"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__27"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__28"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__29"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__30"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 75, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, - ["StrengthUnique__31"] = { affix = "", "+(15-35) to Strength", statOrder = { 1177 }, level = 40, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-35) to Strength" }, } }, - ["StrengthUnique__32"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 100, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, - ["StrengthUnique__33"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["StrengthUnique__34"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, - ["PercentageStrengthUniqueBootsStrInt2"] = { affix = "", "(15-18)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(15-18)% increased Strength" }, } }, - ["PercentageStrengthUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, - ["PercentageStrengthUniqueJewel29"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, - ["PercentageStrengthUnique__1"] = { affix = "", "100% reduced Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "100% reduced Strength" }, } }, - ["PercentageStrengthUnique__2"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, - ["PercentageStrengthUnique__3"] = { affix = "", "10% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, - ["PercentageStrengthUnique__4_"] = { affix = "", "10% reduced Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% reduced Strength" }, } }, - ["PercentageStrengthUnique__5"] = { affix = "", "(6-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-12)% increased Strength" }, } }, - ["PercentageStrengthImplicitMace1"] = { affix = "", "10% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, - ["DexterityImplicitAmulet1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 7, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityImplicitQuiver1"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUniqueRing3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueBodyDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueBootsInt1"] = { affix = "", "+(5-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-30) to Dexterity" }, } }, - ["DexterityUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-60) to Dexterity" }, } }, - ["DexterityUniqueBootsInt2"] = { affix = "", "+5 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, - ["DexterityUniqueBootsInt3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueGlovesDex2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueGlovesStrDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueAmulet7"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueHelmetStrDex2"] = { affix = "", "+(50-65) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-65) to Dexterity" }, } }, - ["DexterityUniqueBootsDex1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueDagger3"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueShieldStrInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBow4"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBow6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBootsDex3"] = { affix = "", "+15 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+15 to Dexterity" }, } }, - ["DexterityUniqueBow7"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBodyDex4"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueHelmetDex4"] = { affix = "", "+(50-70) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-70) to Dexterity" }, } }, - ["DexterityUniqueGlovesStrDex3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, - ["DexterityUniqueGlovesInt4__"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueGlovesDexInt4"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueRing8"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUniqueBootsDex4_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUniqueHelmetDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBelt7"] = { affix = "", "+(40-55) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-55) to Dexterity" }, } }, - ["DexterityUniqueQuiver6"] = { affix = "", "+(35-45) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(35-45) to Dexterity" }, } }, - ["DexterityUniqueQuiver7"] = { affix = "", "+30 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+30 to Dexterity" }, } }, - ["DexterityUniqueBootsDex8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueJewel8"] = { affix = "", "+20 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, - ["DexterityUniqueDagger11"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["DexterityUniqueDagger12"] = { affix = "", "+20 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, - ["DexterityUniqueClaw9"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["DexterityUnique__1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 53, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUniqueBootsDex9"] = { affix = "", "+(25-35) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-35) to Dexterity" }, } }, - ["DexterityUnique__2"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 57, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__3"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__4"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__5"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__6"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__7"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__8"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__9"] = { affix = "", "+25 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+25 to Dexterity" }, } }, - ["DexterityUnique__10_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__11"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, - ["DexterityUnique__12"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__13"] = { affix = "", "+20 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, - ["DexterityUnique__14"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 65, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__15"] = { affix = "", "+(40-80) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-80) to Dexterity" }, } }, - ["DexterityUnique__16"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__17"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 62, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__18"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__19"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 54, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__20__"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__21_"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 50, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, - ["DexterityUnique__22"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__23"] = { affix = "", "+(20-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-50) to Dexterity" }, } }, - ["DexterityUnique__24"] = { affix = "", "+(30-55) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-55) to Dexterity" }, } }, - ["DexterityUnique__25"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, - ["DexterityUnique__26"] = { affix = "", "+(5-10) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-10) to Dexterity" }, } }, - ["DexterityUnique__27"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, - ["DexterityUnique__28"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__29"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__30"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__31"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 20, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, - ["DexterityUnique__32"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, - ["DexterityUnique__34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, - ["StrengthAndDexterityUnique_1"] = { affix = "", "+(25-40) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [538848803] = { "+(25-40) to Strength and Dexterity" }, } }, - ["PercentageDexterityUniqueBodyDex7"] = { affix = "", "15% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } }, - ["PercentageDexterityUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(5-15)% increased Dexterity" }, } }, - ["PercentageDexterityUniqueJewel29"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__1"] = { affix = "", "100% reduced Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "100% reduced Dexterity" }, } }, - ["PercentageDexterityUnique__2"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__3"] = { affix = "", "(8-12)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-12)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__4"] = { affix = "", "(10-15)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(10-15)% increased Dexterity" }, } }, - ["PercentageDexterityUnique__5"] = { affix = "", "15% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } }, - ["IntelligenceUniqueOneHandSword2"] = { affix = "", "+10 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, - ["IntelligenceImplicitAmulet1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 7, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueRing4"] = { affix = "", "+(5-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-20) to Intelligence" }, } }, - ["IntelligenceUniqueBootsInt1"] = { affix = "", "+(5-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-30) to Intelligence" }, } }, - ["IntelligenceUniqueBootsInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt2"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } }, - ["IntelligenceUniqueBelt1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueWand1"] = { affix = "", "+10 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, - ["IntelligenceUniqueBootsDex1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueWand2"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueBootsDex3"] = { affix = "", "+15 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+15 to Intelligence" }, } }, - ["IntelligenceUniqueBodyInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueShieldDex3"] = { affix = "", "+(40-60) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-60) to Intelligence" }, } }, - ["IntelligenceUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesInt5"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt5"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt6"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetWard1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueRing13"] = { affix = "", "+(60-75) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-75) to Intelligence" }, } }, - ["IntelligenceUniqueOneHandAxe1"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueSceptre5"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUniqueGlovesStr3"] = { affix = "", "+(60-80) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-80) to Intelligence" }, } }, - ["IntelligenceUniqueQuiver6"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUniqueShieldInt4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueStaff8"] = { affix = "", "+(80-120) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(80-120) to Intelligence" }, } }, - ["IntelligenceUniqueBelt11"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUniqueWand8"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-30) to Intelligence" }, } }, - ["IntelligenceUniqueHelmetInt9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUniqueDagger10_"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUniqueRing34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["Intelligence__1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__3"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUnique__4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__5"] = { affix = "", "+40 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+40 to Intelligence" }, } }, - ["IntelligenceUnique__6"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUnique__7"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__8"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__9"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__10"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__11"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__12"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__13"] = { affix = "", "+20 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+20 to Intelligence" }, } }, - ["IntelligenceUnique__14"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 65, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__15_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__16"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 60, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__17"] = { affix = "", "+(40-70) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-70) to Intelligence" }, } }, - ["IntelligenceUnique__18"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__19"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__21"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, - ["IntelligenceUnique__22_"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__23"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__24"] = { affix = "", "-(25-15) to Intelligence", statOrder = { 1179 }, level = 28, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "-(25-15) to Intelligence" }, } }, - ["IntelligenceUnique__25"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, - ["IntelligenceUnique__26_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 50, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, - ["IntelligenceUnique__29"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } }, - ["IntelligenceUnique__30"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 62, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__31"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, - ["IntelligenceUnique__32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, - ["IntelligenceUnique__33"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, - ["IntelligenceUnique__34"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, - ["IntelligenceUnique__35"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, - ["IntelligenceUnique__36"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, - ["IntelligenceUnique__37"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, - ["IntelligenceUnique__38"] = { affix = "", "+(23-32) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-32) to Intelligence" }, } }, - ["PercentageIntelligenceUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, - ["PercentageIntelligenceUniqueStaff12_"] = { affix = "", "(14-18)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(14-18)% increased Intelligence" }, } }, - ["PercentageIntelligenceUniqueJewel29"] = { affix = "", "(10-15)% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(10-15)% reduced Intelligence" }, } }, - ["PercentageIntelligenceUnique__1"] = { affix = "", "100% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "100% reduced Intelligence" }, } }, - ["PercentageIntelligenceUnique__2"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__3"] = { affix = "", "(8-12)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-12)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__4"] = { affix = "", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } }, - ["PercentageIntelligenceUnique__5"] = { affix = "", "(1-7)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(1-7)% increased Intelligence" }, } }, - ["AllAttributesImplicitAmulet1"] = { affix = "", "+(10-16) to all Attributes", statOrder = { 1176 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-16) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet8"] = { affix = "", "+(80-100) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(80-100) to all Attributes" }, } }, - ["AllAttributesUniqueBelt3"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 20, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet9"] = { affix = "", "+(20-40) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-40) to all Attributes" }, } }, - ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["AllAttributesUniqueRing6"] = { affix = "", "+(10-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-30) to all Attributes" }, } }, - ["AllAttributesUniqueHelmetStr3"] = { affix = "", "+(20-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-25) to all Attributes" }, } }, - ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+500 to all Attributes" }, } }, - ["AllAttributesUniqueBodyStr3"] = { affix = "", "+(40-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(40-50) to all Attributes" }, } }, - ["AllAttributesUniqueTwoHandMace7"] = { affix = "", "+(25-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-50) to all Attributes" }, } }, - ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 1176 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-12) to all Attributes" }, } }, - ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, - ["AllAttributesUniqueRing26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUniqueHelmetStrInt5"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUniqueStaff10"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUniqueAmulet22"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__1"] = { affix = "", "+(30-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(30-50) to all Attributes" }, } }, - ["AllAttributesUnique__2"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__3"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__4"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__5"] = { affix = "", "+(25-75) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-75) to all Attributes" }, } }, - ["AllAttributesUnique__6"] = { affix = "", "+(8-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-24) to all Attributes" }, } }, - ["AllAttributesUnique__7"] = { affix = "", "+(15-30) to all Attributes", statOrder = { 1176 }, level = 57, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-30) to all Attributes" }, } }, - ["AllAttributesUnique__8_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__9"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__10_"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__11"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__12"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__13_"] = { affix = "", "+20 to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+20 to all Attributes" }, } }, - ["AllAttributesUnique__14"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["AllAttributesUnique__15"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } }, - ["AllAttributesUnique__16_"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, - ["AllAttributesUnique__17_"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 65, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__18"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__19"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__20"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, - ["AllAttributesUnique__21"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } }, - ["AllAttributesUnique__22_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 60, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, - ["AllAttributesUnique__23"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 1176 }, level = 50, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["AllAttributesUnique__24"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__25"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__27"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__28"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, - ["AllAttributesUnique__29"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__30"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, - ["AllAttributesUnique__31"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, - ["IncreasedLifeImplicitShield1"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } }, - ["IncreasedLifeImplicitShield2"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeImplicitShield3"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandSword1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStr1"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } }, - ["IncreasedLifeImplicitRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 2, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeImplicitBelt1"] = { affix = "", "+(25-40) to maximum Life", statOrder = { 1569 }, level = 10, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr1"] = { affix = "", "+1000 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+1000 to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr1"] = { affix = "", "+(160-180) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-180) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsInt4"] = { affix = "", "+20 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+20 to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr2"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueTwoHandAxe4"] = { affix = "", "+100 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDexInt1"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDex4"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["ReducedLifeUniqueGlovesDexInt4"] = { affix = "", "-20 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-20 to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStrDex4"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet14"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueTwoHandMace6"] = { affix = "", "+(35-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDex6"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetDex5"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex3_"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStrInt6"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex6"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt7"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt8"] = { affix = "", "+(75-100) to maximum Life", statOrder = { 1569 }, level = 63, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr2"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueDescentShield1"] = { affix = "", "+15 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+15 to maximum Life" }, } }, - ["IncreasedLifeUniqueDescentHelmet1"] = { affix = "", "+10 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+10 to maximum Life" }, } }, - ["IncreasedLifeUniqueWand4"] = { affix = "", "+(15-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-20) to maximum Life" }, } }, - ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandAxe3"] = { affix = "", "+(10-15) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-15) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStrDex3"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesDexInt5"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueHelmetStrDex5"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStrDex4"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueQuiver3"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex7"] = { affix = "", "+(55-75) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-75) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStr3"] = { affix = "", "+(60-75) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-75) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDexInt1"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt5"] = { affix = "", "+(80-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStr2"] = { affix = "", "+(150-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-200) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDexInt1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex5"] = { affix = "", "+(70-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex4"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueGlovesStrInt2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldDex6"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStrDex7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUniqueQuiver9"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueBelt13"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrDex5"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing28"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet19"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1569 }, level = 60, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueRing32"] = { affix = "", "+(0-60) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-60) to maximum Life" }, } }, - ["IncreasedLifeFireResistUniqueBelt14"] = { affix = "", "+(70-85) to maximum Life", statOrder = { 1569 }, level = 65, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-85) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyDexInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet22"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStr6"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt6"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUniqueBodyStrInt7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUniqueOneHandMace7"] = { affix = "", "+70 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+70 to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr4"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueShieldStr5"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsStr3_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__15"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__5"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__6"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUniqueAmulet25"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__1"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique___7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__8"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__9"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__10"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__11"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__12_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUniqueBootsDex9__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__14"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__16"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__18"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } }, - ["IncreasedLifeUnique__19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__20"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__21"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__22"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 1569 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, - ["IncreasedLifeUnique__23"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__24"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__25"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-35) to maximum Life" }, } }, - ["IncreasedLifeUnique__26"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__27"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__28"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__29"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__30"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__31"] = { affix = "", "+(65-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(65-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__32"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__33"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__34"] = { affix = "", "+(240-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(240-300) to maximum Life" }, } }, - ["IncreasedLifeUnique__35"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__36_"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__37"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__39"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, - ["IncreasedLifeUnique__40"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__41"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__42_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__43"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__44"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__45"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__46"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__47"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__48"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["IncreasedLifeUnique__49_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__50"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__51"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__52"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__53"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 75, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__54"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__55"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__56"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__57"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__58"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__59"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__60"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__61"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__62"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__63_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__64"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__65"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__66"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__67_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__68_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__69"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__70"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__71"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__72_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } }, - ["IncreasedLifeUnique__73"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__74"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__75"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__76"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__77"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__78"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__79"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__80_"] = { affix = "", "+(20-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-60) to maximum Life" }, } }, - ["IncreasedLifeUnique__81"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__82"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__83"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__84"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__85_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__86_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } }, - ["IncreasedLifeUnique__87"] = { affix = "", "+23 to maximum Life", statOrder = { 1569 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+23 to maximum Life" }, } }, - ["IncreasedLifeUnique__88"] = { affix = "", "+(50-175) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-175) to maximum Life" }, } }, - ["IncreasedLifeUnique__89"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__90"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__91"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__92_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__93"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__94"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__95"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__96__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__97"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__98"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__99"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__100"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__101"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__102"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__103"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 77, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__104_"] = { affix = "", "+100 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, - ["IncreasedLifeUnique__105"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__106_"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } }, - ["IncreasedLifeUnique__107"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__108"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__109_"] = { affix = "", "+(45-65) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-65) to maximum Life" }, } }, - ["IncreasedLifeUnique__110"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__111__"] = { affix = "", "+(40-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__112"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__113"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__114"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__115"] = { affix = "", "+(50-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__116"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__117"] = { affix = "", "+(-200-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(-200-200) to maximum Life" }, } }, - ["IncreasedLifeUnique__118"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__119"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, - ["IncreasedLifeUnique__120"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__121"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__122"] = { affix = "", "+(25-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-30) to maximum Life" }, } }, - ["IncreasedLifeUnique__123"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, - ["IncreasedLifeUnique__124"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, - ["IncreasedLifeUnique__125"] = { affix = "", "+(1-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(1-100) to maximum Life" }, } }, - ["IncreasedLifeUnique__126"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 98, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, - ["IncreasedLifeUnique__127"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 70, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, - ["IncreasedManaImplicitRing1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 2, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaImplicitArmour1"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet1"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueBow1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueTwoHandSword2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueQuiver1"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueQuiver1a"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueDexHelmet1"] = { affix = "", "+(15-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueIntHelmet3"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueGlovesStr1"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% reduced maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetInt4"] = { affix = "", "+(25-75) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-75) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsInt4"] = { affix = "", "+20 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+20 to maximum Mana" }, } }, - ["IncreasedManaUniqueShieldInt2"] = { affix = "", "+(15-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-25) to maximum Mana" }, } }, - ["IncreasedManaUniqueDagger4"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsInt5"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet10"] = { affix = "", "+100 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+100 to maximum Mana" }, } }, - ["IncreasedManaUniqueWand3"] = { affix = "", "+(40-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueBelt5"] = { affix = "", "+(45-55) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-55) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing14"] = { affix = "", "+(25-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetStrInt3"] = { affix = "", "+(100-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-120) to maximum Mana" }, } }, - ["IncreasedManaUniqueClaw7"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing20"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetDexInt3"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyDexInt2"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["IncreasedManaUniqueSceptre6"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueWand4"] = { affix = "", "+(15-20) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-20) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsStrDex4"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueBootsStrDex3"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-20) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetStrDex5_"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyInt9"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUniqueRing29"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueHelmetInt8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["IncreasedManaUniqueAmulet19"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, - ["IncreasedManaUniqueTwoHandAxe9"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, - ["IncreasedManaUniqueBodyStrInt6"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUniqueOneHandMace7"] = { affix = "", "+70 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+70 to maximum Mana" }, } }, - ["IncreasedManaUnique__3"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__1"] = { affix = "", "+(60-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-120) to maximum Mana" }, } }, - ["IncreasedManaUnique__2"] = { affix = "", "+30 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+30 to maximum Mana" }, } }, - ["IncreasedManaUnique__4"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-120) to maximum Mana" }, } }, - ["IncreasedManaUnique__5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__6"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__7"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__9"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, - ["IncreasedManaUnique__10"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } }, - ["IncreasedManaUnique__12"] = { affix = "", "+(20-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__13"] = { affix = "", "+(50-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__14"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__15"] = { affix = "", "+(1-75) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-75) to maximum Mana" }, } }, - ["IncreasedManaUnique__16"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, - ["IncreasedManaUnique__17"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__18"] = { affix = "", "+(1-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__19"] = { affix = "", "+500 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+500 to maximum Mana" }, } }, - ["IncreasedManaUnique__20_"] = { affix = "", "+(120-160) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-160) to maximum Mana" }, } }, - ["IncreasedManaUnique__21"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__22__"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__23"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__24"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__25"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, - ["IncreasedManaUnique__26"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } }, - ["IncreasedManaUnique__27"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, - ["IncreasedManaUnique__28"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, - ["IncreasedManaUnique__29"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["IncreasedManaUnique__30"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, - ["IncreasedManaUnique__31"] = { affix = "", "+(55-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-70) to maximum Mana" }, } }, - ["IncreasedEnergyShieldImplicitBelt1"] = { affix = "", "+(9-20) to maximum Energy Shield", statOrder = { 1558 }, level = 2, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-20) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldImplicitBelt2"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1558 }, level = 99, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueClaw1"] = { affix = "", "+(200-300) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(200-300) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueDagger4"] = { affix = "", "+50 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+50 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "+15 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+15 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldImplicitRing1"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 25, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueAmulet14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 40, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBelt5"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1558 }, level = 70, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing18"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1558 }, level = 25, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBodyStrDexInt1"] = { affix = "", "+(70-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueQuiver7"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(100-120) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueBelt11"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing27"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUniqueRing35"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique___1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__2"] = { affix = "", "+35 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+35 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__3"] = { affix = "", "+(70-150) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(70-150) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__4"] = { affix = "", "+(75-80) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(75-80) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__6"] = { affix = "", "+250 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+250 to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__7"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-120) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__8"] = { affix = "", "+(40-45) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-45) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__9"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__10"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-35) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-35) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldUnique__13"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDex1"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt5"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt9"] = { affix = "", "(200-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDex8"] = { affix = "", "+(15-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetStrInt5_"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesStr4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueShieldInt5"] = { affix = "", "+(70-90) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsDexInt4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShiledUniqueBootsInt6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergySheildUnique__2_"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique___4"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+20 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__5"] = { affix = "", "+(40-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__7"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__8"] = { affix = "", "+(110-130) to maximum Energy Shield", statOrder = { 1559 }, level = 65, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(110-130) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__9"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__10"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-45) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-45) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__13_"] = { affix = "", "+40 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+40 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__14"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__15"] = { affix = "", "+(130-160) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-160) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__16"] = { affix = "", "+(90-110) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-110) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__17__"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__18_"] = { affix = "", "+(64-96) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(64-96) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__19"] = { affix = "", "+(180-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(180-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__20"] = { affix = "", "+(15-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__21"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__22"] = { affix = "", "+(130-150) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-150) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__23"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__24_"] = { affix = "", "+(160-180) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(160-180) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__25"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__26"] = { affix = "", "+(40-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__27_"] = { affix = "", "+(50-90) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__28"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__29"] = { affix = "", "+(15-20) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__30__"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__31"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__32"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__33"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__34"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUnique__35"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["AddedPhysicalDamageImplicitRing1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 2, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitRing2"] = { affix = "", "Adds (3-4) to (10-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 100, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (10-14) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 7, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver1New"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver6New"] = { affix = "", "Adds (7-9) to (13-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 39, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (13-16) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver12New"] = { affix = "", "Adds (12-15) to (24-27) Physical Damage to Attacks", statOrder = { 1266 }, level = 77, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-27) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver6_"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 7, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "1 to 4 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiverDescent"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "1 to 4 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageImplicitQuiver11"] = { affix = "", "6 to 12 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 35, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "6 to 12 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueBelt4"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBodyStr2"] = { affix = "", "Adds 2 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 2 to 4 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBodyDex2"] = { affix = "", "Your Attacks deal -3 Physical Damage", statOrder = { 2466 }, level = 1, group = "DewathsHidePhysicalDamageDealt", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1454654776] = { "Your Attacks deal -3 Physical Damage" }, } }, - ["AddedPhysicalDamageUniqueBodyDex4"] = { affix = "", "Adds 5 to 12 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 12 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueHelmetStr3"] = { affix = "", "Adds 40 to 60 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 40 to 60 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueRing8"] = { affix = "", "Adds 5 to 9 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 9 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Adds 20 to 30 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 20 to 30 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver3"] = { affix = "", "(10-14) to (19-24) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(10-14) to (19-24) Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver8"] = { affix = "", "6 to 10 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "6 to 10 Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueShieldDex6"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueJewel9"] = { affix = "", "Adds 3 to 7 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 3 to 7 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueQuiver9"] = { affix = "", "(8-10) to (14-16) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(8-10) to (14-16) Added Physical Damage with Bow Attacks" }, } }, - ["AddedPhysicalDamageUniqueShieldStrDex3"] = { affix = "", "Adds 4 to 8 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 4 to 8 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueRing37"] = { affix = "", "Adds (5-10) to (11-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-10) to (11-15) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueBootsStr3"] = { affix = "", "Adds (2-5) to (7-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-5) to (7-10) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique___1"] = { affix = "", "Adds 5 to 10 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 10 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUniqueAmulet25"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__2"] = { affix = "", "Adds (5-15) to (25-50) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-15) to (25-50) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__3"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__4"] = { affix = "", "Adds 1 to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__5"] = { affix = "", "Adds (5-8) to (12-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-8) to (12-16) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (4-10) to (14-36) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-10) to (14-36) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__8"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (15-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__9_"] = { affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__10"] = { affix = "", "Adds (13-18) to (26-32) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (13-18) to (26-32) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__11__"] = { affix = "", "Adds (2-3) to (22-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (22-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__12"] = { affix = "", "Adds (8-12) to (18-24) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (18-24) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamageUnique__13"] = { affix = "", "Adds (6-10) to (16-22) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (16-22) Physical Damage to Attacks" }, } }, - ["LocalAddedPhysicalDamageUnique__1"] = { affix = "", "Adds (15-20) to (30-40) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-20) to (30-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre9"] = { affix = "", "Adds (8-13) to (26-31) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-13) to (26-31) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandAxe3"] = { affix = "", "Adds 5 to 10 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 5 to 10 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueRapier2"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 10 to 15 Physical Damage" }, } }, - ["LocalAddedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "Adds 2 to 10 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 10 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandMace6"] = { affix = "", "Adds (43-56) to (330-400) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (43-56) to (330-400) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandMace7"] = { affix = "", "Adds 5 to 25 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 5 to 25 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword5"] = { affix = "", "Adds (60-70) to (71-80) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-70) to (71-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe3"] = { affix = "", "Adds (10-15) to (25-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (25-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandAxe7"] = { affix = "", "Adds (310-330) to (370-390) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (310-330) to (370-390) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueStaff7"] = { affix = "", "Adds (135-145) to (160-175) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (135-145) to (160-175) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentClaw1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe5"] = { affix = "", "Adds (11-14) to (18-23) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (18-23) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow7"] = { affix = "", "Adds (25-35) to (36-45) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (36-45) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow5"] = { affix = "", "Adds (15-20) to (25-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-20) to (25-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueTwoHandSword8"] = { affix = "", "Adds (65-75) to (100-110) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-75) to (100-110) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "Adds (5-10) to (15-23) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-10) to (15-23) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre10"] = { affix = "", "Adds (35-46) to (85-128) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-46) to (85-128) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "Adds (5-10) to (13-20) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-10) to (13-20) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueWand9"] = { affix = "", "Adds (5-8) to (13-17) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (13-17) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__6"] = { affix = "", "Adds (60-80) to (150-180) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-80) to (150-180) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__7"] = { affix = "", "Adds (50-70) to (135-165) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (50-70) to (135-165) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__8"] = { affix = "", "Adds (35-40) to (55-60) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-40) to (55-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__9"] = { affix = "", "Adds (24-30) to (34-40) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (24-30) to (34-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__10"] = { affix = "", "Adds (5-8) to (15-20) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (15-20) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__11"] = { affix = "", "Adds (30-38) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-38) to (40-50) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__12"] = { affix = "", "Adds (30-45) to (80-100) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-45) to (80-100) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__13"] = { affix = "", "Adds (25-35) to (50-65) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (50-65) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__14"] = { affix = "", "Adds (40-50) to (130-150) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-50) to (130-150) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__15"] = { affix = "", "Adds (90-115) to (230-260) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (90-115) to (230-260) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__16_"] = { affix = "", "Adds (10-16) to (45-60) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-16) to (45-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__17_"] = { affix = "", "Adds (6-12) to (20-25) Physical Damage", statOrder = { 1276 }, level = 50, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-12) to (20-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__18"] = { affix = "", "Adds (30-40) to (70-80) Physical Damage", statOrder = { 1276 }, level = 40, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-40) to (70-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__19"] = { affix = "", "Adds (15-25) to (50-60) Physical Damage", statOrder = { 1276 }, level = 45, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-25) to (50-60) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__20_"] = { affix = "", "Adds (10-20) to (30-40) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-20) to (30-40) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__21"] = { affix = "", "Adds (90-110) to (145-170) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (90-110) to (145-170) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__22"] = { affix = "", "Adds (80-95) to (220-240) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-95) to (220-240) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__23_"] = { affix = "", "Adds (35-50) to (100-125) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-50) to (100-125) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__24"] = { affix = "", "Adds (100-130) to (360-430) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (100-130) to (360-430) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__25"] = { affix = "", "Adds (8-13) to (20-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-13) to (20-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__26"] = { affix = "", "Adds (70-80) to (340-375) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (70-80) to (340-375) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__27"] = { affix = "", "Adds (80-115) to (150-205) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-115) to (150-205) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__28"] = { affix = "", "Adds (225-265) to (315-385) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (225-265) to (315-385) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__29___"] = { affix = "", "Adds (80-100) to (200-225) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-100) to (200-225) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__30_"] = { affix = "", "Adds (45-60) to (100-120) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (45-60) to (100-120) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__31"] = { affix = "", "Adds (220-240) to (270-300) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (220-240) to (270-300) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__32"] = { affix = "", "Adds (94-98) to (115-121) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (94-98) to (115-121) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__33_"] = { affix = "", "Adds (242-260) to (268-285) Physical Damage", statOrder = { 1276 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (242-260) to (268-285) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__34"] = { affix = "", "Adds (11-14) to (17-21) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (17-21) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__35"] = { affix = "", "Adds (83-91) to (123-130) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (83-91) to (123-130) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__36"] = { affix = "", "Adds (70-85) to (110-118) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (70-85) to (110-118) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__37"] = { affix = "", "Adds (42-47) to (66-71) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (42-47) to (66-71) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__38"] = { affix = "", "Adds (25-35) to (45-55) Physical Damage", statOrder = { 1276 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (45-55) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__39"] = { affix = "", "Adds (85-110) to (135-150) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (85-110) to (135-150) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__40__"] = { affix = "", "Adds (16-22) to (40-45) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-22) to (40-45) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__41_"] = { affix = "", "Adds (40-65) to (70-100) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-65) to (70-100) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__42"] = { affix = "", "Adds (20-25) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-25) to (40-50) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__43"] = { affix = "", "Adds (5-9) to (13-18) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-9) to (13-18) Physical Damage" }, } }, - ["LocalAddedPhyiscalDamageUnique__44"] = { affix = "", "Adds (20-30) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-30) to (40-50) Physical Damage" }, } }, - ["AddedFireDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 4 Fire Damage to Attacks", statOrder = { 1360 }, level = 2, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 2 to 4 Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver2New"] = { affix = "", "Adds 3 to 5 Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 3 to 5 Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver9New"] = { affix = "", "Adds (12-15) to (24-27) Fire Damage to Attacks", statOrder = { 1360 }, level = 57, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-15) to (24-27) Fire Damage to Attacks" }, } }, - ["AddedFireDamageImplicitQuiver10"] = { affix = "", "4 to 8 Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 28, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "4 to 8 Added Fire Damage with Bow Attacks" }, } }, - ["AddedFireDamageUniqueQuiver1a"] = { affix = "", "5 to 10 Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 1, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "5 to 10 Added Fire Damage with Bow Attacks" }, } }, - ["AddedFireDamageUniqueBootsStrDex1"] = { affix = "", "Adds 12 to 24 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 12 to 24 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueGlovesInt1"] = { affix = "", "Adds 4 to 8 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 4 to 8 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueAmulet7"] = { affix = "", "Adds (18-24) to (32-40) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (18-24) to (32-40) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueRing10"] = { affix = "", "Adds (8-15) to (20-28) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-15) to (20-28) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing20"] = { affix = "", "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueBelt10"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (14-16) to (30-32) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing31"] = { affix = "", "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueRing28"] = { affix = "", "Adds (12-15) to (25-30) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-15) to (25-30) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueShieldStr3"] = { affix = "", "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUniqueShieldDemigods"] = { affix = "", "Adds 10 to 20 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 10 to 20 Fire Damage to Attacks" }, } }, - ["AddedFireDamageUniqueRing36"] = { affix = "", "Adds (8-12) to (20-30) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-12) to (20-30) Fire Damage to Attacks" }, } }, - ["AddedFireDamageUnique__1_"] = { affix = "", "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__2"] = { affix = "", "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__3"] = { affix = "", "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageUnique__4"] = { affix = "", "Adds 40 to 75 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 40 to 75 Fire Damage to Attacks" }, } }, - ["AddedColdDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 3 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 2 to 3 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueBodyDex1"] = { affix = "", "(105-145) to (160-200) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 47, group = "AddedColdDamageWithBowsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(105-145) to (160-200) Added Cold Damage with Bow Attacks" }, } }, - ["AddedColdDamageUniqueDexHelmet1"] = { affix = "", "Adds 15 to 25 Cold Damage to Attacks", statOrder = { 1369 }, level = 15, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 15 to 25 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueBow9"] = { affix = "", "Adds (48-60) to (72-90) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (48-60) to (72-90) Cold Damage" }, } }, - ["AddedColdDamageUniqueRing18"] = { affix = "", "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueBelt10"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-12) to (24-28) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueRing30"] = { affix = "", "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUniqueGlovesStrInt3_"] = { affix = "", "Adds (60-72) to (88-100) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (60-72) to (88-100) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUniqueShieldStrDex3"] = { affix = "", "Adds 12 to 15 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 12 to 15 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 10 to 20 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__2"] = { affix = "", "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__3"] = { affix = "", "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__4"] = { affix = "", "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__5"] = { affix = "", "Adds (26-32) to (42-48) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (26-32) to (42-48) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__6"] = { affix = "", "Adds (12-15) to (25-30) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-15) to (25-30) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__7"] = { affix = "", "Adds (30-40) to (80-100) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (30-40) to (80-100) Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__9"] = { affix = "", "Adds 30 to 65 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 30 to 65 Cold Damage to Attacks" }, } }, - ["AddedColdDamageUnique__10"] = { affix = "", "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageUnique__11"] = { affix = "", "Adds (30-40) to (60-70) Cold Damage to Attacks", statOrder = { 1369 }, level = 71, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (30-40) to (60-70) Cold Damage to Attacks" }, } }, - ["AddedLightningDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1380 }, level = 2, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 5 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueHelmetStrInt1"] = { affix = "", "Adds 1 to 30 Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to 30 Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueBootsStrInt1"] = { affix = "", "Adds 1 to 120 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 120 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesInt1"] = { affix = "", "Adds 1 to 13 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 13 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesDexInt1"] = { affix = "", "Adds (1-4) to (30-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (30-50) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueDagger3"] = { affix = "", "Adds 3 to 30 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to 30 Lightning Damage" }, } }, - ["AddedLocalLightningDamageUniqueClaw1"] = { affix = "", "Adds 1 to (650-850) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (650-850) Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBow8"] = { affix = "", "Adds 1 to 85 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 85 Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBodyInt5_"] = { affix = "", "Adds 1 to (4-12) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (4-12) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueGlovesDexInt3"] = { affix = "", "Adds 1 to 100 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 100 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBodyInt8"] = { affix = "", "Adds 1 to 40 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 40 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBow9"] = { affix = "", "Adds 1 to (120-150) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (120-150) Lightning Damage" }, } }, - ["AddedLightningDamageUniqueBodyStrDex2"] = { affix = "", "Adds 1 to (20-30) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (20-30) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueRing19"] = { affix = "", "Adds 1 to (50-70) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 25, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (50-70) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUniqueBelt10"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (60-68) Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUniqueBelt12"] = { affix = "", "Adds 1 to (30-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 55, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning Damage to Attacks" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword6"] = { affix = "", "Adds 1 to (550-650) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (550-650) Lightning Damage" }, } }, - ["AddedLightningDamageUnique__1"] = { affix = "", "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageUnique__3"] = { affix = "", "Adds 10 to 130 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 10 to 130 Lightning Damage to Attacks" }, } }, - ["AddedLightningDamageUnique__4"] = { affix = "", "(12-18) to (231-347) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 1, group = "AddedLightningDamageWithWandsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(12-18) to (231-347) Added Lightning Damage with Wand Attacks" }, } }, - ["AddedChaosDamageUniqueRing1"] = { affix = "", "Adds (10-15) to (20-25) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (10-15) to (20-25) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBootsStrDex4"] = { affix = "", "Adds (6-9) to (12-16) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (12-16) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBootsStrInt2"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to 80 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueQuiver7"] = { affix = "", "Adds (13-18) to (26-32) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-18) to (26-32) Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueAmulet23"] = { affix = "", "Adds 19 to 43 Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 19 to 43 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUniqueBow12"] = { affix = "", "Adds (50-80) to (130-180) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (50-80) to (130-180) Chaos Damage" }, } }, - ["AddedChaosDamageUnique__1"] = { affix = "", "Adds 12 to 24 Chaos Damage to Attacks", statOrder = { 1387 }, level = 25, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 12 to 24 Chaos Damage to Attacks" }, } }, - ["AddedChaosDamageUnique__2"] = { affix = "", "Adds (7-10) to (15-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-10) to (15-18) Chaos Damage to Attacks" }, } }, - ["LifeLeechUniqueRing2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueRing2"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechImplicitClaw1"] = { affix = "", "8% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "8% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadImplicitClaw1"] = { affix = "", "1.6% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechImplicitClaw2"] = { affix = "", "10% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "10% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadImplicitClaw2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechAllAttackDamagePermyriadImplicitClaw2"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 7987 }, level = 1, group = "LifeLeechLocalAllDamagePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1828023575] = { "2% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueTwoHandMace1"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueTwoHandMace1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueGlovesStrDex1"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueShieldDex2"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueShieldDex2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueAmulet9"] = { affix = "", "(6-10)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(6-10)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueAmulet9"] = { affix = "", "(1.2-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.2-2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueTwoHandAxe4"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueTwoHandAxe4"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueClaw3"] = { affix = "", "6% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueClaw3"] = { affix = "", "1.2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueClaw6"] = { affix = "", "15% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "15% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueClaw6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueRing12"] = { affix = "", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueRing12"] = { affix = "", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueHelmetInt7"] = { affix = "", "(2-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(2-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.4-0.8)% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "(0.4-0.8)% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStr3"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStr3"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "1% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStrDex3"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStrDex3"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "2% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueBodyStrInt5"] = { affix = "", "(4-5)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(4-5)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueBodyStrInt5"] = { affix = "", "(0.8-1)% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "(0.8-1)% of Attack Damage Leeched as Life" }, } }, - ["LifeLeechUniqueShieldDex5"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueShieldDex5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueHelmetDexInt6"] = { affix = "", "(0.4-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.4-0.8)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__2"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__3"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriad__1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__4"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__5"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__7"] = { affix = "", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.3-0.5)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__8"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUnique__9"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, - ["AxeBonus1"] = { affix = "Butcher's", "5% increased Physical Damage with Axes", "2% increased Attack Speed with Axes", "3% increased Accuracy Rating with Axes", statOrder = { 1303, 1420, 1438 }, level = 6, group = "AxeBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2538120572] = { "3% increased Accuracy Rating with Axes" }, [3550868361] = { "2% increased Attack Speed with Axes" }, [2008219439] = { "5% increased Physical Damage with Axes" }, } }, - ["StaffBonus1"] = { affix = "Monk's", "5% increased Physical Damage with Staves", "2% increased Attack Speed with Staves", "3% increased Accuracy Rating with Staves", statOrder = { 1307, 1421, 1439 }, level = 8, group = "StaffBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1394963553] = { "2% increased Attack Speed with Staves" }, [1617235962] = { "3% increased Accuracy Rating with Staves" }, [3150705301] = { "5% increased Physical Damage with Staves" }, } }, - ["ClawBonus1"] = { affix = "Feline", "5% increased Physical Damage with Claws", "2% increased Attack Speed with Claws", "3% increased Accuracy Rating with Claws", statOrder = { 1315, 1422, 1440 }, level = 10, group = "ClawBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1421645223] = { "2% increased Attack Speed with Claws" }, [1297965523] = { "3% increased Accuracy Rating with Claws" }, [635761691] = { "5% increased Physical Damage with Claws" }, } }, - ["DaggerBonus1"] = { affix = "Assassin's", "5% increased Physical Damage with Daggers", "2% increased Attack Speed with Daggers", "3% increased Accuracy Rating with Daggers", statOrder = { 1321, 1423, 1441 }, level = 7, group = "DaggerBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2538566497] = { "2% increased Attack Speed with Daggers" }, [3882531569] = { "5% increased Physical Damage with Daggers" }, [2054715690] = { "3% increased Accuracy Rating with Daggers" }, } }, - ["MaceBonus1"] = { affix = "Crusher's", "5% increased Physical Damage with Maces or Sceptres", "2% increased Attack Speed with Maces or Sceptres", "3% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1327, 1424, 1442 }, level = 5, group = "MaceBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3208450870] = { "3% increased Accuracy Rating with Maces or Sceptres" }, [3774831856] = { "5% increased Physical Damage with Maces or Sceptres" }, [2515515064] = { "2% increased Attack Speed with Maces or Sceptres" }, } }, - ["BowBonus1"] = { affix = "Archer's", "5% increased Physical Damage with Bows", "2% increased Attack Speed with Bows", "3% increased Accuracy Rating with Bows", statOrder = { 1333, 1425, 1443 }, level = 3, group = "BowBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759735052] = { "2% increased Attack Speed with Bows" }, [402920808] = { "5% increased Physical Damage with Bows" }, [169946467] = { "3% increased Accuracy Rating with Bows" }, } }, - ["SwordBonus1"] = { affix = "Blademaster's", "5% increased Physical Damage with Swords", "2% increased Attack Speed with Swords", "3% increased Accuracy Rating with Swords", statOrder = { 1338, 1426, 1444 }, level = 2, group = "SwordBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3293699237] = { "2% increased Attack Speed with Swords" }, [3814560373] = { "5% increased Physical Damage with Swords" }, [2090868905] = { "3% increased Accuracy Rating with Swords" }, } }, - ["WandBonus1"] = { affix = "Magician's", "5% increased Physical Damage with Wands", "2% increased Attack Speed with Wands", "3% increased Accuracy Rating with Wands", statOrder = { 1345, 1427, 1445 }, level = 4, group = "WandBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2150183156] = { "3% increased Accuracy Rating with Wands" }, [3720627346] = { "2% increased Attack Speed with Wands" }, [2769075491] = { "5% increased Physical Damage with Wands" }, } }, - ["AccuracyPercentImplicitSword1"] = { affix = "", "40% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "40% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicitSword2"] = { affix = "", "30% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "30% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicit2HSword1"] = { affix = "", "60% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "60% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentImplicit2HSword2_"] = { affix = "", "45% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "45% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentUniqueBow5"] = { affix = "", "(15-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-30)% increased Global Accuracy Rating" }, } }, - ["AccuracyPercentUniqueClaw9"] = { affix = "", "15% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "15% reduced Global Accuracy Rating" }, } }, - ["AccuracyPercentUnique__1"] = { affix = "", "100% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "100% reduced Global Accuracy Rating" }, } }, - ["StaffBlockPercentImplicitStaff1"] = { affix = "", "+20% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+20% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentImplicitStaff2"] = { affix = "", "+22% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+22% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentImplicitStaff3"] = { affix = "", "+25% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+25% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUniqueStaff7"] = { affix = "", "+6% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+6% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUniqueStaff9"] = { affix = "", "+12% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+12% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__1"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 36, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+15% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__2_"] = { affix = "", "+10% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+10% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__3"] = { affix = "", "+(12-16)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+(12-16)% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__4_"] = { affix = "", "+5% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffBlockPercentUnique__5"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+15% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercentImplicitStaff__1"] = { affix = "", "+20% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+20% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercent2"] = { affix = "", "+22% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+22% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["StaffSpellBlockPercent3"] = { affix = "", "+25% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+25% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["BlockPercentUniqueHelmetStrDex4"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueAmulet16"] = { affix = "", "(10-15)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(10-15)% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueDescentStaff1"] = { affix = "", "16% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "16% Chance to Block Attack Damage" }, } }, - ["BlockPercentUniqueQuiver4"] = { affix = "", "(20-24)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 35, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(20-24)% Chance to Block Attack Damage" }, } }, - ["BlockPercentMarakethDaggerImplicit1"] = { affix = "", "4% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "4% Chance to Block Attack Damage" }, } }, - ["BlockPercentMarakethDaggerImplicit2_"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__1"] = { affix = "", "(8-12)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(8-12)% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__2"] = { affix = "", "20% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "20% Chance to Block Attack Damage" }, } }, - ["BlockPercentUnique__3"] = { affix = "", "(4-6)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 40, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-6)% Chance to Block Attack Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre2"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptre3"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew2"] = { affix = "", "12% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "12% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew3"] = { affix = "", "12% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "12% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew4"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew5"] = { affix = "", "14% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "14% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew6"] = { affix = "", "16% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "16% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew7"] = { affix = "", "16% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "16% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew8"] = { affix = "", "22% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "22% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew9"] = { affix = "", "18% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "18% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew10"] = { affix = "", "18% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "18% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew11"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew12___"] = { affix = "", "22% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "22% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew13"] = { affix = "", "24% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "24% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew14"] = { affix = "", "24% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "24% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew15"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew16"] = { affix = "", "26% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "26% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew17"] = { affix = "", "26% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "26% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew18"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew19"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew20"] = { affix = "", "32% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "32% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew21__"] = { affix = "", "32% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "32% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitSceptreNew22"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, - ["ElementalDamagePercentImplicitAtlasRing_"] = { affix = "", "(15-25)% increased Elemental Damage", statOrder = { 1980 }, level = 100, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-25)% increased Elemental Damage" }, } }, - ["ElementalDamagePercentUnique__1"] = { affix = "", "(15-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-50)% increased Elemental Damage" }, } }, - ["ElementalDamagePercentUnique__2"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitBelt1"] = { affix = "", "(12-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 2, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(12-24)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1"] = { affix = "", "8% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "8% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2"] = { affix = "", "12% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "12% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueRing1"] = { affix = "", "5% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "5% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueHelmetStr1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueQuiver2"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 7, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt2"] = { affix = "", "(25-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(25-40)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueShieldStrDex1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueHelmetStrDex2"] = { affix = "", "10% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% reduced Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueGlovesStr2"] = { affix = "", "10% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt9d"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueDescentClaw1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueShieldDexInt1"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBelt13"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueJewel9"] = { affix = "", "10% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBootsDexInt4"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueSwordImplicit1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUniqueBowImplicit1"] = { affix = "", "(20-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-24)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__1"] = { affix = "", "(8-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__2"] = { affix = "", "(8-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__3"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "100% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "100% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__5"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__6"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentUnique__7"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2"] = { affix = "", "150% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "150% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1"] = { affix = "", "50% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "50% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow1"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow3"] = { affix = "", "(90-105)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(90-105)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1"] = { affix = "", "(140-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace2"] = { affix = "", "200% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "200% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-150)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2"] = { affix = "", "(100-125)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-125)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3"] = { affix = "", "(180-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-220)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueRapier1"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueWand1"] = { affix = "", "(250-275)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-275)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3"] = { affix = "", "(500-600)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(500-600)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger3"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow4"] = { affix = "", "30% less Damage", statOrder = { 2456 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "30% less Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow5"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace4"] = { affix = "", "150% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "150% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow6"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow7"] = { affix = "", "(70-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(70-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw1"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueSceptre1"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw2"] = { affix = "", "(75-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw3"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5"] = { affix = "", "(200-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-220)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueRapier2"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-150)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw5"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueClaw6"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-120)% increased Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueBow8"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueSceptre5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueBow10"] = { affix = "", "(50-70)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-70)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDescentStaff1"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDescentBow1"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger9"] = { affix = "", "(250-270)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-270)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword8"] = { affix = "", "(230-260)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-260)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5"] = { affix = "", "(130-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-150)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8"] = { affix = "", "(120-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8"] = { affix = "", "(30-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(30-50)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueStaff9"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueSceptre9"] = { affix = "", "20% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "20% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueOneHandMace4"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueOneHandSceptre10"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "(80-95)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-95)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamageUniqueClaw8"] = { affix = "", "(160-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueWand9"] = { affix = "", "(80-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueWand9x"] = { affix = "", "(110-170)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-170)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9"] = { affix = "", "(300-360)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-360)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger11"] = { affix = "", "(50-70)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-70)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueDagger12"] = { affix = "", "(20-40)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-40)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique13"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8"] = { affix = "", "(30-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(30-50)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword12"] = { affix = "", "(20-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-50)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace6"] = { affix = "", "(300-360)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-360)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace7"] = { affix = "", "(160-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace8"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueStaff14"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueSceptre2"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__1"] = { affix = "", "(110-130)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-130)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__2"] = { affix = "", "(100-125)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-125)% increased Physical Damage" }, } }, - ["LocalIncreasedPhyiscalDamagePercentUnique__3"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__5"] = { affix = "", "(140-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__6"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__7"] = { affix = "", "(130-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__8"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__9"] = { affix = "", "(170-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-190)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__10"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-120)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__11_"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__12"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__13"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__14"] = { affix = "", "(35-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-50)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__15"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__16"] = { affix = "", "(260-310)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(260-310)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__17_"] = { affix = "", "(170-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-190)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__18"] = { affix = "", "(220-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(220-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__19"] = { affix = "", "(400-450)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(400-450)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__20"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__21"] = { affix = "", "(160-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-190)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__22"] = { affix = "", "(230-270)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-270)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__23"] = { affix = "", "(200-240)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-240)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__24"] = { affix = "", "(280-320)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(280-320)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__25"] = { affix = "", "(170-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__26"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__27"] = { affix = "", "(140-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__28__"] = { affix = "", "(150-170)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-170)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__29"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__30"] = { affix = "", "(185-215)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(185-215)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__31"] = { affix = "", "(180-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-220)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__33"] = { affix = "", "(140-152)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-152)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__34___"] = { affix = "", "(180-210)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-210)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__35"] = { affix = "", "(180-210)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-210)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__36_"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__37__"] = { affix = "", "(130-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-150)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__38"] = { affix = "", "(165-195)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(165-195)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__39"] = { affix = "", "(175-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(175-200)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__40"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__41___"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__42"] = { affix = "", "(230-260)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-260)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__43"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__44"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__45"] = { affix = "", "(700-800)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(700-800)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__46"] = { affix = "", "(150-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-180)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__47"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-350)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__48"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__49"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__50"] = { affix = "", "(150-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-250)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__52"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__53"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-300)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__54"] = { affix = "", "(180-240)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-240)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__55"] = { affix = "", "(130-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__56"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__57"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__58"] = { affix = "", "(90-130)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(90-130)% increased Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueTwoHandSword6"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueWand6"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUniqueOneHandSword7"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUnique__1"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["LocalReducedPhysicalDamagePercentUnique__2"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1"] = { affix = "", "100% increased Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "PhysicalDamagePercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "100% increased Damage when on Low Life" }, } }, - ["ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "50% reduced Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "PhysicalDamagePercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "50% reduced Damage when on Low Life" }, } }, - ["LocalAddedPhysicalDamageUniqueBow1"] = { affix = "", "Adds (7-14) to (24-34) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-14) to (24-34) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueClaw3"] = { affix = "", "Adds 25 to 30 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 25 to 30 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageOneHandAxe1"] = { affix = "", "Adds 30 to 40 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 30 to 40 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (49-98) to (101-140) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentDagger1"] = { affix = "", "Adds 1 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDescentStaff1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 4 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger2"] = { affix = "", "Adds 12 to 24 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 12 to 24 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger8"] = { affix = "", "Adds (140-155) to (210-235) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (140-155) to (210-235) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueSceptre7"] = { affix = "", "Adds (65-85) to (100-160) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-85) to (100-160) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword9"] = { affix = "", "Adds (30-50) to (65-80) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-50) to (65-80) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword10"] = { affix = "", "Adds (3-6) to (33-66) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-6) to (33-66) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueBow11"] = { affix = "", "Adds (12-16) to (20-24) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (12-16) to (20-24) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger11"] = { affix = "", "Adds (1-2) to (3-5) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (3-5) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueDagger12"] = { affix = "", "Adds (3-6) to (9-13) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-6) to (9-13) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueClaw9"] = { affix = "", "Adds (2-6) to (16-22) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-6) to (16-22) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-15) to (20-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe8"] = { affix = "", "Adds (5-9) to (13-17) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-9) to (13-17) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword12"] = { affix = "", "Adds (3-4) to (5-8) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-8) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandSword13"] = { affix = "", "Adds (5-8) to (10-14) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-14) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandMace8"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 10 to 15 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique14"] = { affix = "", "Adds (10-16) to (12-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-16) to (12-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage__1"] = { affix = "", "Adds (7-10) to (15-25) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-10) to (15-25) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (25-50) to (85-125) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-50) to (85-125) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds 20 to 50 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 20 to 50 Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__4"] = { affix = "", "Adds (18-22) to (36-44) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (18-22) to (36-44) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__5"] = { affix = "", "Adds (8-12) to (16-24) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-24) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (26-32) to (36-42) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-32) to (36-42) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageUnique__7_"] = { affix = "", "Adds (75-92) to (125-154) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (75-92) to (125-154) Physical Damage" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1"] = { affix = "", "60% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "60% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueIntHelmet1"] = { affix = "", "+(150-225) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-225) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt1"] = { affix = "", "+(5-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(5-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueShieldInt1"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueShieldInt2"] = { affix = "", "(40-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBodyInt8"] = { affix = "", "(125-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(125-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsInt2"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt1"] = { affix = "", "+18 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+18 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt2"] = { affix = "", "+32 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+32 to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt4"] = { affix = "", "50% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "50% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBootsInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt1"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt3"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(210-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt4"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt5"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(140-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyInt7"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt5"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "(180-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueGlovesDexInt3"] = { affix = "", "+(25-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt5_"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt6"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt7"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueShieldInt3"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g"] = { affix = "", "(270-300)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(270-300)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt10"] = { affix = "", "(130-170)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(130-170)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBootsInt6"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent__1"] = { affix = "", "(250-300)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(250-300)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent__2"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(210-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent___3"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique___4_"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__6"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__7"] = { affix = "", "(170-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(170-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__8"] = { affix = "", "(475-600)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(475-600)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__9"] = { affix = "", "(240-260)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(240-260)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__10"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__11"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__12"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__13"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__14"] = { affix = "", "(130-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(130-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__15_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__16"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__17"] = { affix = "", "(120-140)% increased Energy Shield", statOrder = { 1560 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-140)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__18"] = { affix = "", "(220-250)% increased Energy Shield", statOrder = { 1560 }, level = 82, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(220-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__19"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__20_"] = { affix = "", "(100-130)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-130)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__21"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-220)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__22"] = { affix = "", "(200-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__23"] = { affix = "", "(240-280)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(240-280)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__24"] = { affix = "", "(180-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-230)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__25_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__26"] = { affix = "", "(60-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-80)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__27"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-120)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__28__"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__29"] = { affix = "", "(80-130)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-130)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__30___"] = { affix = "", "(300-350)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(300-350)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__31____"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(140-180)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__32"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__33"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUniqueOneHandSword2"] = { affix = "", "(40-50)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% increased maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrInt1"] = { affix = "", "60% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "60% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1"] = { affix = "", "+(75-100) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(75-100) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1"] = { affix = "", "+(10-20) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(10-20) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(35-45) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3"] = { affix = "", "+(200-300) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(200-300) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(20-40) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2"] = { affix = "", "+(180-220) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(180-220) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5"] = { affix = "", "+(400-600) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(400-600) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3"] = { affix = "", "(200-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a"] = { affix = "", "(380-420)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(380-420)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1"] = { affix = "", "+(100-150) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique6"] = { affix = "", "(90-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(90-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique7"] = { affix = "", "(120-180)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-180)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_"] = { affix = "", "(90-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(90-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "+(120-160) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(120-160) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3"] = { affix = "", "(350-400)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-400)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4"] = { affix = "", "100% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "100% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5"] = { affix = "", "(165-205)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(165-205)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11"] = { affix = "", "(130-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(130-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__17"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18"] = { affix = "", "(150-180)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-180)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25"] = { affix = "", "(150-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-250)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__30"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__32"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-140)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33"] = { affix = "", "(100-160)% increased Armour", statOrder = { 1542 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-160)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35"] = { affix = "", "(150-230)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-230)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED"] = { affix = "", "(120-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-200)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38"] = { affix = "", "(120-240)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-240)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1"] = { affix = "", "+2000 to Armour", statOrder = { 1540 }, level = 38, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+2000 to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(100-120) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-120) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex1"] = { affix = "", "(140-220)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(140-220)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueDexHelmet2"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex1"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex3"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex2"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex3"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex4"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-70)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex3"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex3"] = { affix = "", "(180-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(180-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex2"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex5"] = { affix = "", "(200-250)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-250)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(35-45) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex6"] = { affix = "", "150% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "150% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyDex6"] = { affix = "", "+(240-380) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(240-380) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyDex6"] = { affix = "", "(200-240)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-240)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, - ["LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3"] = { affix = "", "(180-220)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(180-220)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionRatingUnique__1"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex6"] = { affix = "", "(160-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(160-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex4"] = { affix = "", "+(40-60) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-60) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyDex7"] = { affix = "", "+(120-180) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(120-180) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__1"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(100-150) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__2"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(600-700) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__3"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(400-500) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__4"] = { affix = "", "+(350-500) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(350-500) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUnique__5"] = { affix = "", "+(80-120) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(80-120) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex4"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(30-50)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5"] = { affix = "", "(150-180)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-180)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsDex7"] = { affix = "", "180% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "180% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c"] = { affix = "", "(380-420)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(380-420)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueShieldDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvationRatingPercentUniqueBootsDex9"] = { affix = "", "(20-40)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(20-40)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__1"] = { affix = "", "(160-220)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(160-220)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__3"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__4"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__6"] = { affix = "", "(300-340)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(300-340)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__7"] = { affix = "", "(100-130)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-130)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__8"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__9"] = { affix = "", "(130-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(130-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__11"] = { affix = "", "(450-500)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(450-500)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__13"] = { affix = "", "(110-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(110-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__14"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(120-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__15_"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__16"] = { affix = "", "(60-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-120)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__17"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(120-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__18"] = { affix = "", "(170-250)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(170-250)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__19"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__20"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercentUnique__21"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2"] = { affix = "", "(120-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-150)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1"] = { affix = "", "(20-60)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(20-60)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2"] = { affix = "", "(180-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(180-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4"] = { affix = "", "(300-400)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(300-400)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt5"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3"] = { affix = "", "(140-160)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-160)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4"] = { affix = "", "(120-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt6"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1h"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5"] = { affix = "", "(220-240)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(220-240)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3"] = { affix = "", "(160-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(160-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2"] = { affix = "", "(150-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6"] = { affix = "", "(70-80)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-80)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__1"] = { affix = "", "(400-500)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(400-500)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-170)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt7"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-170)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__2"] = { affix = "", "(50-75)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-75)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__3"] = { affix = "", "(140-190)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-190)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__4"] = { affix = "", "200% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "200% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__5"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__6"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__7"] = { affix = "", "(60-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__8"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__9_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__10_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__11"] = { affix = "", "(150-190)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-190)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__12"] = { affix = "", "(140-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-220)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__13_"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__14"] = { affix = "", "(250-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(250-300)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__15"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__16"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__17_"] = { affix = "", "(100-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-140)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__18_"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__19"] = { affix = "", "333% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "333% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__20"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__21"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__22"] = { affix = "", "1000% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "1000% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__23_"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-130)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__24"] = { affix = "", "(120-160)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-160)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__25"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__26"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-250)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__27"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__28"] = { affix = "", "(50-70)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-70)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUnique__30"] = { affix = "", "(40-80)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 97, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(40-80)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex1"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBootsStrDex3"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex2"] = { affix = "", "(90-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4"] = { affix = "", "(120-140)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-140)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b"] = { affix = "", "(200-220)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-220)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex4"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(160-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6"] = { affix = "", "(90-110)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-110)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex3"] = { affix = "", "(90-130)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-130)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex4"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex5"] = { affix = "", "(170-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(170-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__1"] = { affix = "", "(120-160)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-160)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__2"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__3_"] = { affix = "", "(40-70)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-70)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__4"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__5_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__6"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__8_"] = { affix = "", "(100-140)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-140)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__9"] = { affix = "", "(170-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(170-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__10_"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__11"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__12"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__13"] = { affix = "", "(150-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__14"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__15_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__16__"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__17_"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__18"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__19_"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__20"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__22"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__23"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__24"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__25"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__27"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasionUnique__28"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(160-200)% increased Armour and Evasion" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(300-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "(245-280)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(245-280)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6"] = { affix = "", "(100-130)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-130)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3"] = { affix = "", "(220-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(220-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "(120-140)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-140)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__2"] = { affix = "", "(90-110)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(90-110)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__3"] = { affix = "", "(230-260)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(230-260)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__4"] = { affix = "", "(140-170)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-170)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__5"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__6_"] = { affix = "", "(100-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__7"] = { affix = "", "(130-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(130-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__8"] = { affix = "", "(80-100)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-100)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__9"] = { affix = "", "(500-600)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(500-600)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__10"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__11_"] = { affix = "", "(160-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__12"] = { affix = "", "(180-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(180-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__13"] = { affix = "", "(120-170)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-170)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__14"] = { affix = "", "(160-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__15"] = { affix = "", "(260-300)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(260-300)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__16"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__17"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__18"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__19___"] = { affix = "", "(250-300)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(250-300)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__20"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(300-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__21_"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__22"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-180)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__23"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__24"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__25"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__26"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__27"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__28"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__29"] = { affix = "", "(350-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(350-400)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__30_"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__31"] = { affix = "", "(120-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__32_"] = { affix = "", "(160-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-220)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__33"] = { affix = "", "(140-160)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-160)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__34"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__35"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__36"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__37"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-120)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__39"] = { affix = "", "(120-160)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-160)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourEvasionEnergyShieldUnique__1_"] = { affix = "", "(250-350)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(250-350)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2"] = { affix = "", "+(30-50) to maximum Energy Shield", "(10-15)% increased Stun and Block Recovery", statOrder = { 1559, 1902 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-15)% increased Stun and Block Recovery" }, [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3"] = { affix = "", "(100-140)% increased Energy Shield", "(150-200)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 1, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, [2511217560] = { "(150-200)% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1"] = { affix = "", "+(100-120) to maximum Energy Shield", "(30-40)% increased Stun and Block Recovery", statOrder = { 1559, 1902 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2"] = { affix = "", "(100-120)% increased Armour", "10% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, [2511217560] = { "10% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1"] = { affix = "", "(180-220)% increased Armour", "20% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, [2511217560] = { "20% increased Stun and Block Recovery" }, } }, - ["LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1"] = { affix = "", "70% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "70% increased Evasion Rating" }, } }, - ["LocalAddedFireDamageUniqueTwoHandAxe1"] = { affix = "", "Adds (16-21) to (32-38) Fire Damage", statOrder = { 1362 }, level = 37, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (16-21) to (32-38) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueRapier1"] = { affix = "", "Adds 3 to 7 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 3 to 7 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueBow6"] = { affix = "", "Adds 25 to 50 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 25 to 50 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (49-98) to (101-140) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueTwoHandSword6"] = { affix = "", "Adds (425-475) to (550-600) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (425-475) to (550-600) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueDescentOneHandMace1"] = { affix = "", "Adds 3 to 6 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 3 to 6 Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (10-15) to (20-25) Fire Damage" }, } }, - ["LocalAddedFireDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (5-15) to (20-25) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 100 to 100 Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__2"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (38-46) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__3"] = { affix = "", "Adds (315-360) to (450-540) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (315-360) to (450-540) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__4"] = { affix = "", "Adds (223-250) to (264-280) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (223-250) to (264-280) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__5__"] = { affix = "", "Adds (130-160) to (220-240) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (130-160) to (220-240) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__6"] = { affix = "", "Adds (30-45) to (60-80) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-45) to (60-80) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__7"] = { affix = "", "Adds (76-98) to (161-176) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (76-98) to (161-176) Fire Damage" }, } }, - ["LocalAddedFireDamageUnique__8"] = { affix = "", "Adds (180-230) to (310-360) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (180-230) to (310-360) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE1_"] = { affix = "", "Adds (46-55) to (69-83) Fire Damage", statOrder = { 1362 }, level = 30, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (46-55) to (69-83) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE2_"] = { affix = "", "Adds (80-97) to (126-144) Fire Damage", statOrder = { 1362 }, level = 50, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (80-97) to (126-144) Fire Damage" }, } }, - ["LocalAddedFireDamageImplicitE3_"] = { affix = "", "Adds (121-133) to (184-197) Fire Damage", statOrder = { 1362 }, level = 70, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (121-133) to (184-197) Fire Damage" }, } }, - ["LocalAddedColdDamageUniqueTwoHandMace2"] = { affix = "", "Adds 11 to 23 Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 11 to 23 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueTwoHandSword2"] = { affix = "", "Adds 35 to 70 Cold Damage", statOrder = { 1371 }, level = 18, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 35 to 70 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueClaw5"] = { affix = "", "Adds 25 to 50 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 25 to 50 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (49-98) to (101-140) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 2 to 4 Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueOneHandMace4_"] = { affix = "", "Adds (10-20) to (30-50) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-20) to (30-50) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-15) to (20-25) Cold Damage" }, } }, - ["LocalAddedColdDamageUniqueStaff14"] = { affix = "", "Adds (25-35) to (45-60) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-35) to (45-60) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 100 to 100 Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__2"] = { affix = "", "Adds (26-32) to (36-42) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-32) to (36-42) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__3"] = { affix = "", "Adds (30-38) to (40-50) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (30-38) to (40-50) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__4"] = { affix = "", "Adds (180-210) to (240-280) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (180-210) to (240-280) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__5"] = { affix = "", "Adds (80-100) to (160-200) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (80-100) to (160-200) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__6_"] = { affix = "", "Adds (310-350) to (460-500) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (310-350) to (460-500) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__7"] = { affix = "", "Adds (160-190) to (280-320) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (160-190) to (280-320) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__8"] = { affix = "", "Adds (130-150) to (270-300) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (130-150) to (270-300) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__9_"] = { affix = "", "Adds (385-440) to (490-545) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (385-440) to (490-545) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__10"] = { affix = "", "Adds (150-200) to (300-350) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (150-200) to (300-350) Cold Damage" }, } }, - ["LocalAddedColdDamageUnique__11"] = { affix = "", "Adds (164-204) to (250-300) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (164-204) to (250-300) Cold Damage" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword3"] = { affix = "", "Adds 1 to (210-250) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (210-250) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueBow10"] = { affix = "", "Adds 1 to (600-750) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (600-750) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueDescentTwoHandSword1_"] = { affix = "", "Adds 1 to 9 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 9 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueOneHandSword7"] = { affix = "", "Adds 1 to (40-50) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (40-50) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUniqueStaff14"] = { affix = "", "Adds (1-10) to (70-90) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (70-90) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 100 to 100 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__2"] = { affix = "", "Adds 1 to (35-45) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (35-45) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (45-55) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (45-55) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (50-60) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (50-60) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__5"] = { affix = "", "Adds 1 to (60-70) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (60-70) Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__6"] = { affix = "", "Adds 1 to 75 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 75 Lightning Damage" }, } }, - ["LocalAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (550-600) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (550-600) Lightning Damage" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercentUniqueJewel50"] = { affix = "", "(15-20)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(10-15)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-15)% increased Armour" }, } }, - ["IncreasedEvasionRatingPercentUnique__1_"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(60-100)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(15-25)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, - ["IncreasedEnergyShieldPercentUniqueJewel51"] = { affix = "", "(3-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(3-6)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__1"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "20% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__2_"] = { affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__3"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-10)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__4"] = { affix = "", "5% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "5% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-10)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercentUnique__6"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "20% increased maximum Energy Shield" }, } }, - ["ReducedEnergyShieldPercentUniqueAmulet13"] = { affix = "", "50% reduced maximum Energy Shield", statOrder = { 1561 }, level = 20, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "50% reduced maximum Energy Shield" }, } }, - ["ReducedEnergyShieldPercentUniqueRing16"] = { affix = "", "25% reduced maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "25% reduced maximum Energy Shield" }, } }, - ["IncreasedEvasionRatingUniqueQuiver1"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueAmulet7"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(100-150) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueRapier1"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(20-40) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueOneHandSword4"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(400-500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueAmulet17"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueQuiver3_"] = { affix = "", "+350 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+350 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueOneHandSword9"] = { affix = "", "+(180-200) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(180-200) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUniqueRing30"] = { affix = "", "+(200-300) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(200-300) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique___1"] = { affix = "", "+110 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+110 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__2"] = { affix = "", "+300 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+300 to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__3"] = { affix = "", "+(1000-1500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(1000-1500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__4"] = { affix = "", "+(300-500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(300-500) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__5_"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(600-700) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__6_"] = { affix = "", "+(600-1000) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(600-1000) to Evasion Rating" }, } }, - ["IncreasedEvasionRatingUnique__7"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBodyInt5"] = { affix = "", "+(30-60) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-60) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueBootsDex8"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-40) to Evasion Rating" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueRing12"] = { affix = "", "+(260-300) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(260-300) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueAmulet16"] = { affix = "", "+(400-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueQuiver4"] = { affix = "", "+(400-450) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-450) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueBelt9"] = { affix = "", "+(300-350) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(300-350) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUniqueJewel9"] = { affix = "", "+50 to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+50 to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(450-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(450-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__3"] = { affix = "", "+(400-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "+(260-300) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(260-300) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__4"] = { affix = "", "+(350-400) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(350-400) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__5"] = { affix = "", "+(180-200) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(180-200) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__6_"] = { affix = "", "+(800-1200) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(800-1200) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__7"] = { affix = "", "+(600-700) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(600-700) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__8"] = { affix = "", "+(300-500) to Armour", statOrder = { 1539 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(300-500) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__9"] = { affix = "", "+(80-100) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(80-100) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__10"] = { affix = "", "+(600-1000) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(600-1000) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingUnique__11"] = { affix = "", "+(200-400) to Armour", statOrder = { 1539 }, level = 98, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(200-400) to Armour" }, } }, - ["MovementVelocityMarakethBowImplicit1"] = { affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, - ["MovementVelocityMarakethBowImplicit2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield2"] = { affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, - ["MovementVelocityImplicitShield3"] = { affix = "", "9% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandSword1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueAmulet5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueIntHelmet2"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt1"] = { affix = "", "(10-25)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-25)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStr1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueGlovesStrDex2"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueShieldStr1"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityImplicitArmour1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandSword3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetStrDex2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueTwoHandMace3"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt4"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-15)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBow7"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex4"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetStrDex1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueClaw3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt5"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetDex6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueHelmetInt6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueAmulet12"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueBootsDex4"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVeolcityUniqueBodyDex6"] = { affix = "", "25% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% reduced Movement Speed" }, } }, - ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique___6"] = { affix = "", "50% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "50% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt2"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityDescent2Boots1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex4"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyDex7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex3"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandAxe3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrInt2_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex7"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsA1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsW1"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandSword9"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrInt3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityVictorAmulet"] = { affix = "", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 16, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyStrDex5_"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBodyStr5"] = { affix = "", "20% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% reduced Movement Speed" }, } }, - ["MovementVelocityUniqueAmulet20"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUniqueJewel43"] = { affix = "", "4% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "4% increased Movement Speed" }, } }, - ["MovementVelocityUniqueOneHandAxe7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsDexInt4"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStrDex5"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsStr3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUniqueBootsInt6"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__2"] = { affix = "", "(5-10)% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% reduced Movement Speed" }, } }, - ["MovementVelocityUnique__3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique__4"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique___5"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["MovementVelocityUnique__7"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__8"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__9_"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__10"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__11"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__12"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__13"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__14"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__15"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__16"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__17__"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__18"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocityUnique__19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__20_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__21"] = { affix = "", "(1-40)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-40)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__22"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__24"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__25"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__26"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__27"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__28"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__29"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__30"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__31"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__32"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__33_"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__34"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__35"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__36_"] = { affix = "", "(5-8)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-8)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__37"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUnique__38"] = { affix = "", "(1-20)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-20)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__39_"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__40"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__42"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocityUnique__43"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocityUnique__44"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__45"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__46"] = { affix = "", "(8-12)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-12)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__47_"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocityUnique__48"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__49"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__50"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__51"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__52"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["MovementVelocityUnique__53"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__54"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocityUnique__56"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__57"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-25)% increased Movement Speed" }, } }, - ["MovementVelocityUnique__58"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 100, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__1"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__2"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUnique__3"] = { affix = "", "3% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUniqueOneHandMace7"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, - ["ReducedMovementVelocityUniqueCorruptedJewel2_"] = { affix = "", "15% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% reduced Movement Speed" }, } }, - ["SpellDamageImplicitShield1"] = { affix = "", "(5-10)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-10)% increased Spell Damage" }, } }, - ["SpellDamageImplicitShield2"] = { affix = "", "(10-15)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-15)% increased Spell Damage" }, } }, - ["SpellDamageImplicitShield3"] = { affix = "", "(15-20)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-20)% increased Spell Damage" }, } }, - ["SpellDamageImplicitArmour1"] = { affix = "", "(3-10)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-10)% increased Spell Damage" }, } }, - ["SpellDamageImplicitGloves1"] = { affix = "", "(12-16)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(12-16)% increased Spell Damage" }, } }, - ["SpellDamageUniqueHelmetDexInt1"] = { affix = "", "(15-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueGlovesInt2"] = { affix = "", "100% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, - ["SpellDamageUniqueShieldInt1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueShieldStrInt1"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand1"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff2"] = { affix = "", "(50-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueSceptre2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueBodyInt7"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUniqueSceptre5"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["SpellDamageUniqueDescentWand1"] = { affix = "", "20% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "20% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand4"] = { affix = "", "(20-28)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-28)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff6"] = { affix = "", "(120-160)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-160)% increased Spell Damage" }, } }, - ["SpellDamageUniqueWand7"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["SpellDamageUniqueHelmetInt8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, - ["SpellDamageUniqueDagger10"] = { affix = "", "(40-60)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-60)% increased Fire Damage" }, } }, - ["SpellDamageUniqueStaff12"] = { affix = "", "(50-70)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-70)% increased Spell Damage" }, } }, - ["SpellDamageUniqueStaff11_"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["SpellDamageUniqueCorruptedJewel3_"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUniqueRing35"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__2"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-80)% increased Spell Damage" }, } }, - ["SpellDamageUnique__3"] = { affix = "", "40% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "40% increased Spell Damage" }, } }, - ["SpellDamageUnique__4"] = { affix = "", "(20-45)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-45)% increased Spell Damage" }, } }, - ["SpellDamageUnique__5"] = { affix = "", "(75-90)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-90)% increased Spell Damage" }, } }, - ["SpellDamageUnique__6"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__7"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-50)% increased Spell Damage" }, } }, - ["SpellDamageUnique__8_"] = { affix = "", "(100-140)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-140)% increased Spell Damage" }, } }, - ["SpellDamageUnique__9"] = { affix = "", "(70-100)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-100)% increased Spell Damage" }, } }, - ["SpellDamageUnique__10"] = { affix = "", "(30-50)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-50)% increased Spell Damage" }, } }, - ["SpellDamageUnique__11"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1223 }, level = 85, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__12"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__13"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, - ["SpellDamageUnique__14"] = { affix = "", "(30-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-60)% increased Spell Damage" }, } }, - ["SpellDamageUnique__15"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, - ["SpellDamageUnique__16"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, - ["SpellDamageUnique__17"] = { affix = "", "(100-150)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-150)% increased Spell Damage" }, } }, - ["SpellDamageUnique__18"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-80)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueDagger1"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueDagger4"] = { affix = "", "(60-70)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-70)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueWand3"] = { affix = "", "80% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "80% reduced Spell Damage" }, } }, - ["SpellDamageOnWeaponUniqueTwoHandAxe9"] = { affix = "", "(100-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-200)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand1"] = { affix = "", "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand2"] = { affix = "", "(10-14)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand3"] = { affix = "", "(11-15)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(11-15)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand4"] = { affix = "", "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand5"] = { affix = "", "(15-19)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand6"] = { affix = "", "(17-21)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-21)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand7"] = { affix = "", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand8"] = { affix = "", "(20-24)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand9"] = { affix = "", "(22-26)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-26)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand10"] = { affix = "", "(24-28)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(24-28)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand11"] = { affix = "", "(26-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-30)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand12"] = { affix = "", "(27-31)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-31)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand13"] = { affix = "", "(29-33)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-33)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand14"] = { affix = "", "(31-35)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand15"] = { affix = "", "(33-37)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(33-37)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand16"] = { affix = "", "(35-39)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand17"] = { affix = "", "(36-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(36-40)% increased Spell Damage" }, } }, - ["SpellDamageOnWeaponImplicitWand18"] = { affix = "", "(38-42)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-42)% increased Spell Damage" }, } }, - ["TrapThrowingSpeedUnique_1"] = { affix = "", "(6-12)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-12)% increased Trap Throwing Speed" }, } }, - ["NumberOfAdditionalTrapsUnique_1"] = { affix = "", "Can have up to (3-5) additional Traps placed at a time", statOrder = { 2255 }, level = 1, group = "NumberOfAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to (3-5) additional Traps placed at a time" }, } }, - ["GraspFromBeyondTrapUnique_1"] = { affix = "", "Grants Level 30 Will of the Lords Skill", statOrder = { 693 }, level = 85, group = "GrantsBreachHandTrap", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [608058997] = { "Grants Level 30 Will of the Lords Skill" }, } }, - ["HeraldOfTheBreachUnique_1"] = { affix = "", "Grants Level 30 Herald of the Hive Skill", statOrder = { 708 }, level = 53, group = "GrantsHeraldOfTheBreach", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3610535490] = { "Grants Level 30 Herald of the Hive Skill" }, } }, - ["SoulcordDiamondShrineUnique_1"] = { affix = "", "You have Diamond Shrine Buff while affected by no Flasks", statOrder = { 592 }, level = 70, group = "SoulcordDiamondShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1962944794] = { "You have Diamond Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordGloomShrineUnique__1"] = { affix = "", "You have Gloom Shrine Buff while affected by no Flasks", statOrder = { 594 }, level = 70, group = "SoulcordGloomShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [1525347447] = { "You have Gloom Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordAccelerationShrineUnique__1"] = { affix = "", "You have Acceleration Shrine Buff while affected by no Flasks", statOrder = { 589 }, level = 70, group = "SoulcordAccelerationShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [845062586] = { "You have Acceleration Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordEchoingShrineUnique__1"] = { affix = "", "You have Echoing Shrine Buff while affected by no Flasks", statOrder = { 593 }, level = 70, group = "SoulcordEchoingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1941745370] = { "You have Echoing Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordMassiveShrineUnique_1"] = { affix = "", "You have Massive Shrine Buff while affected by no Flasks", statOrder = { 596 }, level = 70, group = "SoulcordMassiveShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [3810260531] = { "You have Massive Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordResonatingShrineUnique_1"] = { affix = "", "You have Resonating Shrine Buff while affected by no Flasks", statOrder = { 599 }, level = 70, group = "SoulcordResonatingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [736980450] = { "You have Resonating Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordBrutalShrineUnique_1"] = { affix = "", "You have Brutal Shrine Buff while affected by no Flasks", statOrder = { 590 }, level = 70, group = "SoulcordBrutalShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1665800734] = { "You have Brutal Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordReplenishingShrineUnique_1"] = { affix = "", "You have Replenishing Shrine Buff while affected by no Flasks", statOrder = { 597 }, level = 70, group = "SoulcordReplenishingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2752009372] = { "You have Replenishing Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordImpenetrableShrineUnique_1"] = { affix = "", "You have Impenetrable Shrine Buff while affected by no Flasks", statOrder = { 595 }, level = 70, group = "SoulcordImpenetrableShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1451444229] = { "You have Impenetrable Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordResistanceShrineUnique_1"] = { affix = "", "You have Resistance Shrine Buff while affected by no Flasks", statOrder = { 598 }, level = 70, group = "SoulcordResistanceShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3934633832] = { "You have Resistance Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, - ["SoulcordShockingShrineUnique_1"] = { affix = "", "You have Greater Shocking Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 600, 2812 }, level = 70, group = "SoulcordShockingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, [1838429243] = { "You have Greater Shocking Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordSkeletonShrineUnique_1"] = { affix = "", "You have Greater Skeletal Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 601, 2812 }, level = 70, group = "SoulcordSkeletonShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, [3878995435] = { "You have Greater Skeletal Shrine Buff while affected by no Flasks" }, } }, - ["SoulcordChillingShrineUnique_1"] = { affix = "", "You have Greater Freezing Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 591, 2812 }, level = 70, group = "SoulcordChillingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3677336814] = { "You have Greater Freezing Shrine Buff while affected by no Flasks" }, [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, } }, - ["BlindedEnemiesCannotInflictAilmentsUnique_1"] = { affix = "", "Enemies Blinded by you cannot inflict Damaging Ailments", statOrder = { 6365 }, level = 30, group = "BlindedEnemiesCannotInflictAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [445314012] = { "Enemies Blinded by you cannot inflict Damaging Ailments" }, } }, + ["StrengthUniqueRing2"] = { affix = "", "+(10-20) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["StrengthImplicitAmulet1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 7, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthImplicitBelt1"] = { affix = "", "+(25-35) to Strength", statOrder = { 1200 }, level = 10, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-35) to Strength" }, } }, + ["StrengthUniqueHelmetDexInt1"] = { affix = "", "+20 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, + ["StrengthUniqueTwoHandMace1"] = { affix = "", "+10 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, + ["StrengthUniqueAmulet5"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueIntHelmet3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueBootsInt1"] = { affix = "", "+(5-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-30) to Strength" }, } }, + ["StrengthUniqueDagger2"] = { affix = "", "+25 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } }, + ["StrengthUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-60) to Strength" }, } }, + ["StrengthUniqueGlovesDex1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueBelt1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueBelt2"] = { affix = "", "+(40-50) to Strength", statOrder = { 1200 }, level = 20, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, + ["StrengthUniqueBelt4"] = { affix = "", "+25 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } }, + ["StrengthUniqueGlovesStr2"] = { affix = "", "+50 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+50 to Strength" }, } }, + ["StrengthUniqueTwoHandAxe3"] = { affix = "", "+(15-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-30) to Strength" }, } }, + ["StrengthUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, + ["StrengthUniqueGlovesStrDex3"] = { affix = "", "+10 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, + ["StrengthUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueClaw5_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueRing8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueTwoHandAxe5"] = { affix = "", "+10 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } }, + ["StrengthUniqueTwoHandSword5"] = { affix = "", "+(40-50) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } }, + ["StrengthUniqueBelt7"] = { affix = "", "+(40-55) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-55) to Strength" }, } }, + ["StrengthUniqueSceptre6"] = { affix = "", "+(50-70) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(50-70) to Strength" }, } }, + ["StrengthUniqueBodyStr4"] = { affix = "", "+(10-20) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["StrengthUniqueQuiver6"] = { affix = "", "+(15-25) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, + ["StrengthUniqueOneHandSword8"] = { affix = "", "+(35-50) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, + ["StrengthUniqueGlovesStrInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUniqueRing31__"] = { affix = "", "+(15-25) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, + ["StrengthUniqueClaw9"] = { affix = "", "+(10-15) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["StrengthUniqueRing36"] = { affix = "", "+(30-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, + ["StrengthUnique__1"] = { affix = "", "+30 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } }, + ["StrengthUnique___2"] = { affix = "", "+(30-50) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, + ["StrengthUnique__3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__4"] = { affix = "", "+30 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } }, + ["StrengthUnique__5"] = { affix = "", "+(20-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, + ["StrengthUnique__6"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__7_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__9"] = { affix = "", "+(20-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, + ["StrengthUnique__10"] = { affix = "", "+(20-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, + ["StrengthUnique__11"] = { affix = "", "+(30-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, + ["StrengthUnique__12"] = { affix = "", "+200 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+200 to Strength" }, } }, + ["StrengthUnique__13_"] = { affix = "", "+(60-120) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(60-120) to Strength" }, } }, + ["StrengthUnique__14"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__15"] = { affix = "", "+20 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, + ["StrengthUnique__16"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 65, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__17"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 62, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__18"] = { affix = "", "+(30-50) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, + ["StrengthUnique__19_"] = { affix = "", "+(20-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } }, + ["StrengthUnique__20_"] = { affix = "", "+20 to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } }, + ["StrengthUnique__21"] = { affix = "", "+(10-20) to Strength", statOrder = { 1200 }, level = 50, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, + ["StrengthUnique__22"] = { affix = "", "+(20-50) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-50) to Strength" }, } }, + ["StrengthUnique__23"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__24"] = { affix = "", "+(20-30) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } }, + ["StrengthUnique__25"] = { affix = "", "+(30-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, + ["StrengthUnique__26"] = { affix = "", "+(30-50) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, + ["StrengthUnique__27"] = { affix = "", "+(30-50) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, + ["StrengthUnique__28"] = { affix = "", "+(30-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, + ["StrengthUnique__29"] = { affix = "", "+(30-40) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, + ["StrengthUnique__30"] = { affix = "", "+(30-40) to Strength", statOrder = { 1200 }, level = 75, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } }, + ["StrengthUnique__31"] = { affix = "", "+(15-35) to Strength", statOrder = { 1200 }, level = 40, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-35) to Strength" }, } }, + ["StrengthUnique__32"] = { affix = "", "+(30-50) to Strength", statOrder = { 1200 }, level = 100, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, + ["StrengthUnique__33"] = { affix = "", "+(15-25) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, + ["StrengthUnique__34"] = { affix = "", "+(15-25) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } }, + ["PercentageStrengthUniqueBootsStrInt2"] = { affix = "", "(15-18)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(15-18)% increased Strength" }, } }, + ["PercentageStrengthUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, + ["PercentageStrengthUniqueJewel29"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, + ["PercentageStrengthUnique__1"] = { affix = "", "100% reduced Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "100% reduced Strength" }, } }, + ["PercentageStrengthUnique__2"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, + ["PercentageStrengthUnique__3"] = { affix = "", "10% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, + ["PercentageStrengthUnique__4_"] = { affix = "", "10% reduced Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% reduced Strength" }, } }, + ["PercentageStrengthUnique__5"] = { affix = "", "(6-12)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-12)% increased Strength" }, } }, + ["PercentageStrengthImplicitMace1"] = { affix = "", "10% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, + ["DexterityImplicitAmulet1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 7, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityImplicitQuiver1"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUniqueRing3"] = { affix = "", "+10 to Dexterity", statOrder = { 1201 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, + ["DexterityUniqueBodyDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, + ["DexterityUniqueBootsInt1"] = { affix = "", "+(5-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-30) to Dexterity" }, } }, + ["DexterityUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-60) to Dexterity" }, } }, + ["DexterityUniqueBootsInt2"] = { affix = "", "+5 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, + ["DexterityUniqueBootsInt3"] = { affix = "", "+10 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, + ["DexterityUniqueGlovesDex2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueGlovesStrDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, + ["DexterityUniqueAmulet7"] = { affix = "", "+10 to Dexterity", statOrder = { 1201 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, + ["DexterityUniqueHelmetStrDex2"] = { affix = "", "+(50-65) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-65) to Dexterity" }, } }, + ["DexterityUniqueBootsDex1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueDagger3"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["DexterityUniqueShieldStrInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueBow4"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["DexterityUniqueBow6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["DexterityUniqueBootsDex3"] = { affix = "", "+15 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+15 to Dexterity" }, } }, + ["DexterityUniqueBow7"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueBodyDex4"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueHelmetDex4"] = { affix = "", "+(50-70) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-70) to Dexterity" }, } }, + ["DexterityUniqueGlovesStrDex3"] = { affix = "", "+10 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } }, + ["DexterityUniqueGlovesInt4__"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueGlovesDexInt4"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, + ["DexterityUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueRing8"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["DexterityUniqueBootsDex4_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUniqueHelmetDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueBelt7"] = { affix = "", "+(40-55) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-55) to Dexterity" }, } }, + ["DexterityUniqueQuiver6"] = { affix = "", "+(35-45) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(35-45) to Dexterity" }, } }, + ["DexterityUniqueQuiver7"] = { affix = "", "+30 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+30 to Dexterity" }, } }, + ["DexterityUniqueBootsDex8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueJewel8"] = { affix = "", "+20 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, + ["DexterityUniqueDagger11"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, + ["DexterityUniqueDagger12"] = { affix = "", "+20 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, + ["DexterityUniqueClaw9"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, + ["DexterityUnique__1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 53, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUniqueBootsDex9"] = { affix = "", "+(25-35) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-35) to Dexterity" }, } }, + ["DexterityUnique__2"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 57, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUnique__3"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, + ["DexterityUnique__4"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUnique__5"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUnique__6"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, + ["DexterityUnique__7"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, + ["DexterityUnique__8"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, + ["DexterityUnique__9"] = { affix = "", "+25 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+25 to Dexterity" }, } }, + ["DexterityUnique__10_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUnique__11"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } }, + ["DexterityUnique__12"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUnique__13"] = { affix = "", "+20 to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } }, + ["DexterityUnique__14"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 65, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUnique__15"] = { affix = "", "+(40-80) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-80) to Dexterity" }, } }, + ["DexterityUnique__16"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUnique__17"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 62, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUnique__18"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, + ["DexterityUnique__19"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 54, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUnique__20__"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, + ["DexterityUnique__21_"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1201 }, level = 50, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } }, + ["DexterityUnique__22"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, + ["DexterityUnique__23"] = { affix = "", "+(20-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-50) to Dexterity" }, } }, + ["DexterityUnique__24"] = { affix = "", "+(30-55) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-55) to Dexterity" }, } }, + ["DexterityUnique__25"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } }, + ["DexterityUnique__26"] = { affix = "", "+(5-10) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-10) to Dexterity" }, } }, + ["DexterityUnique__27"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } }, + ["DexterityUnique__28"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUnique__29"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUnique__30"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUnique__31"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1201 }, level = 20, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } }, + ["DexterityUnique__32"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } }, + ["DexterityUnique__34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } }, + ["DexterityUnique__35"] = { affix = "", "+(50-100) to Dexterity", statOrder = { 1201 }, level = 58, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-100) to Dexterity" }, } }, + ["StrengthAndDexterityUnique_1"] = { affix = "", "+(25-40) to Strength and Dexterity", statOrder = { 1203 }, level = 1, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [538848803] = { "+(25-40) to Strength and Dexterity" }, } }, + ["PercentageDexterityUniqueBodyDex7"] = { affix = "", "15% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } }, + ["PercentageDexterityUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(5-15)% increased Dexterity" }, } }, + ["PercentageDexterityUniqueJewel29"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, + ["PercentageDexterityUnique__1"] = { affix = "", "100% reduced Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "100% reduced Dexterity" }, } }, + ["PercentageDexterityUnique__2"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, + ["PercentageDexterityUnique__3"] = { affix = "", "(8-12)% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-12)% increased Dexterity" }, } }, + ["PercentageDexterityUnique__4"] = { affix = "", "(10-15)% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(10-15)% increased Dexterity" }, } }, + ["PercentageDexterityUnique__5"] = { affix = "", "15% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } }, + ["IntelligenceUniqueOneHandSword2"] = { affix = "", "+10 to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, + ["IntelligenceImplicitAmulet1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 7, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueRing4"] = { affix = "", "+(5-20) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-20) to Intelligence" }, } }, + ["IntelligenceUniqueBootsInt1"] = { affix = "", "+(5-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-30) to Intelligence" }, } }, + ["IntelligenceUniqueBootsInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueGlovesInt2"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } }, + ["IntelligenceUniqueBelt1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueWand1"] = { affix = "", "+10 to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } }, + ["IntelligenceUniqueBootsDex1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueWand2"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["IntelligenceUniqueBootsDex3"] = { affix = "", "+15 to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+15 to Intelligence" }, } }, + ["IntelligenceUniqueBodyInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueShieldDex3"] = { affix = "", "+(40-60) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-60) to Intelligence" }, } }, + ["IntelligenceUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUniqueGlovesInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueGlovesInt5"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueHelmetInt5"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUniqueHelmetInt6"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, + ["IntelligenceUniqueHelmetWard1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueRing13"] = { affix = "", "+(60-75) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-75) to Intelligence" }, } }, + ["IntelligenceUniqueOneHandAxe1"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["IntelligenceUniqueSceptre5"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["IntelligenceUniqueGlovesStr3"] = { affix = "", "+(60-80) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-80) to Intelligence" }, } }, + ["IntelligenceUniqueQuiver6"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["IntelligenceUniqueShieldInt4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueStaff8"] = { affix = "", "+(80-120) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(80-120) to Intelligence" }, } }, + ["IntelligenceUniqueBelt11"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["IntelligenceUniqueWand8"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-30) to Intelligence" }, } }, + ["IntelligenceUniqueHelmetInt9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUniqueDagger10_"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, + ["IntelligenceUniqueRing34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["Intelligence__1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__3"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["IntelligenceUnique__4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__5"] = { affix = "", "+40 to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+40 to Intelligence" }, } }, + ["IntelligenceUnique__6"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, + ["IntelligenceUnique__7"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__8"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUnique__9"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, + ["IntelligenceUnique__10"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUnique__11"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, + ["IntelligenceUnique__12"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__13"] = { affix = "", "+20 to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+20 to Intelligence" }, } }, + ["IntelligenceUnique__14"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 65, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__15_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUnique__16"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 60, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUnique__17"] = { affix = "", "+(40-70) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-70) to Intelligence" }, } }, + ["IntelligenceUnique__18"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__19"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, + ["IntelligenceUnique__20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__21"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } }, + ["IntelligenceUnique__22_"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, + ["IntelligenceUnique__23"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__24"] = { affix = "", "-(25-15) to Intelligence", statOrder = { 1202 }, level = 28, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "-(25-15) to Intelligence" }, } }, + ["IntelligenceUnique__25"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } }, + ["IntelligenceUnique__26_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUnique__27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1202 }, level = 50, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } }, + ["IntelligenceUnique__29"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } }, + ["IntelligenceUnique__30"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 62, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUnique__31"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, + ["IntelligenceUnique__32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } }, + ["IntelligenceUnique__33"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } }, + ["IntelligenceUnique__34"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } }, + ["IntelligenceUnique__35"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } }, + ["IntelligenceUnique__36"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } }, + ["IntelligenceUnique__37"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } }, + ["IntelligenceUnique__38"] = { affix = "", "+(23-32) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-32) to Intelligence" }, } }, + ["PercentageIntelligenceUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, + ["PercentageIntelligenceUniqueStaff12_"] = { affix = "", "(14-18)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(14-18)% increased Intelligence" }, } }, + ["PercentageIntelligenceUniqueJewel29"] = { affix = "", "(10-15)% reduced Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(10-15)% reduced Intelligence" }, } }, + ["PercentageIntelligenceUnique__1"] = { affix = "", "100% reduced Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "100% reduced Intelligence" }, } }, + ["PercentageIntelligenceUnique__2"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, } }, + ["PercentageIntelligenceUnique__3"] = { affix = "", "(8-12)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-12)% increased Intelligence" }, } }, + ["PercentageIntelligenceUnique__4"] = { affix = "", "(5-8)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } }, + ["PercentageIntelligenceUnique__5"] = { affix = "", "(1-7)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(1-7)% increased Intelligence" }, } }, + ["AllAttributesImplicitAmulet1"] = { affix = "", "+(10-16) to all Attributes", statOrder = { 1199 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-16) to all Attributes" }, } }, + ["AllAttributesUniqueAmulet8"] = { affix = "", "+(80-100) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(80-100) to all Attributes" }, } }, + ["AllAttributesUniqueBelt3"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1199 }, level = 20, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, + ["AllAttributesUniqueAmulet9"] = { affix = "", "+(20-40) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-40) to all Attributes" }, } }, + ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, + ["AllAttributesUniqueRing6"] = { affix = "", "+(10-30) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-30) to all Attributes" }, } }, + ["AllAttributesUniqueHelmetStr3"] = { affix = "", "+(20-25) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-25) to all Attributes" }, } }, + ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+500 to all Attributes" }, } }, + ["AllAttributesUniqueBodyStr3"] = { affix = "", "+(40-50) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(40-50) to all Attributes" }, } }, + ["AllAttributesUniqueTwoHandMace7"] = { affix = "", "+(25-50) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-50) to all Attributes" }, } }, + ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 1199 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-12) to all Attributes" }, } }, + ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } }, + ["AllAttributesUniqueRing26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1199 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["AllAttributesUniqueHelmetStrInt5"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["AllAttributesUniqueStaff10"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, + ["AllAttributesUniqueAmulet22"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["AllAttributesUnique__1"] = { affix = "", "+(30-50) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(30-50) to all Attributes" }, } }, + ["AllAttributesUnique__2"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["AllAttributesUnique__3"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["AllAttributesUnique__4"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, + ["AllAttributesUnique__5"] = { affix = "", "+(25-75) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-75) to all Attributes" }, } }, + ["AllAttributesUnique__6"] = { affix = "", "+(8-24) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-24) to all Attributes" }, } }, + ["AllAttributesUnique__7"] = { affix = "", "+(15-30) to all Attributes", statOrder = { 1199 }, level = 57, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-30) to all Attributes" }, } }, + ["AllAttributesUnique__8_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, + ["AllAttributesUnique__9"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, + ["AllAttributesUnique__10_"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, + ["AllAttributesUnique__11"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, + ["AllAttributesUnique__12"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, + ["AllAttributesUnique__13_"] = { affix = "", "+20 to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+20 to all Attributes" }, } }, + ["AllAttributesUnique__14"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, + ["AllAttributesUnique__15"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } }, + ["AllAttributesUnique__16_"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } }, + ["AllAttributesUnique__17_"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1199 }, level = 65, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["AllAttributesUnique__18"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, + ["AllAttributesUnique__19"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, + ["AllAttributesUnique__20"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } }, + ["AllAttributesUnique__21"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1199 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } }, + ["AllAttributesUnique__22_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1199 }, level = 60, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } }, + ["AllAttributesUnique__23"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 1199 }, level = 50, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, + ["AllAttributesUnique__24"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["AllAttributesUnique__25"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["AllAttributesUnique__26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["AllAttributesUnique__27"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["AllAttributesUnique__28"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } }, + ["AllAttributesUnique__29"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1199 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["AllAttributesUnique__30"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } }, + ["AllAttributesUnique__31"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } }, + ["IncreasedLifeImplicitShield1"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } }, + ["IncreasedLifeImplicitShield2"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, + ["IncreasedLifeImplicitShield3"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["IncreasedLifeUniqueRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, + ["IncreasedLifeUniqueOneHandSword1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, + ["IncreasedLifeUniqueHelmetStr1"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } }, + ["IncreasedLifeImplicitRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1591 }, level = 2, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, + ["IncreasedLifeImplicitBelt1"] = { affix = "", "+(25-40) to maximum Life", statOrder = { 1591 }, level = 10, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-40) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStr1"] = { affix = "", "+1000 to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+1000 to maximum Life" }, } }, + ["IncreasedLifeUniqueAmulet4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldStr1"] = { affix = "", "+(160-180) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-180) to maximum Life" }, } }, + ["IncreasedLifeUniqueBootsInt4"] = { affix = "", "+20 to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+20 to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldStr2"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUniqueTwoHandAxe4"] = { affix = "", "+100 to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyDexInt1"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueHelmetDex4"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } }, + ["IncreasedLifeUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["ReducedLifeUniqueGlovesDexInt4"] = { affix = "", "-20 to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-20 to maximum Life" }, } }, + ["IncreasedLifeUniqueHelmetStrDex4"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } }, + ["IncreasedLifeUniqueAmulet14"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1591 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["IncreasedLifeUniqueTwoHandMace6"] = { affix = "", "+(35-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-40) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyDex6"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, + ["IncreasedLifeUniqueHelmetDex5"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStrDex3_"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldStrInt6"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStrDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUniqueBootsDex6"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } }, + ["IncreasedLifeUniqueRing19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["IncreasedLifeUniqueBelt7"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1591 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, + ["IncreasedLifeUniqueBelt8"] = { affix = "", "+(75-100) to maximum Life", statOrder = { 1591 }, level = 63, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-100) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStr2"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, + ["IncreasedLifeUniqueDescentShield1"] = { affix = "", "+15 to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+15 to maximum Life" }, } }, + ["IncreasedLifeUniqueDescentHelmet1"] = { affix = "", "+10 to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+10 to maximum Life" }, } }, + ["IncreasedLifeUniqueWand4"] = { affix = "", "+(15-20) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-20) to maximum Life" }, } }, + ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, + ["IncreasedLifeUniqueOneHandAxe3"] = { affix = "", "+(10-15) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-15) to maximum Life" }, } }, + ["IncreasedLifeUniqueBootsStrDex3"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, + ["IncreasedLifeUniqueGlovesDexInt5"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueHelmetStrDex5"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueGlovesStrDex4"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueQuiver3"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, + ["IncreasedLifeUniqueBootsDex7"] = { affix = "", "+(55-75) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-75) to maximum Life" }, } }, + ["IncreasedLifeUniqueGlovesStr3"] = { affix = "", "+(60-75) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-75) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStrDexInt1"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStrInt5"] = { affix = "", "+(80-90) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-90) to maximum Life" }, } }, + ["IncreasedLifeUniqueBootsStr2"] = { affix = "", "+(150-200) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-200) to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldDexInt1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldDex5"] = { affix = "", "+(70-90) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-90) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStrDex4"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, + ["IncreasedLifeUniqueGlovesStrInt2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldDex6"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldStrDex7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUniqueQuiver9"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueBelt13"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStrDex5"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } }, + ["IncreasedLifeUniqueRing28"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, + ["IncreasedLifeUniqueAmulet19"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1591 }, level = 60, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, + ["IncreasedLifeUniqueRing32"] = { affix = "", "+(0-60) to maximum Life", statOrder = { 1591 }, level = 82, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-60) to maximum Life" }, } }, + ["IncreasedLifeFireResistUniqueBelt14"] = { affix = "", "+(70-85) to maximum Life", statOrder = { 1591 }, level = 65, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-85) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyDexInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUniqueAmulet22"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStr6"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStrInt6"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, + ["IncreasedLifeUniqueBodyStrInt7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUniqueOneHandMace7"] = { affix = "", "+70 to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+70 to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldStr4"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, + ["IncreasedLifeUniqueShieldStr5"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["IncreasedLifeUniqueBootsStr3_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__15"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__5"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } }, + ["IncreasedLifeUnique__6"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUniqueAmulet25"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__1"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique___7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__8"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__9"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__10"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["IncreasedLifeUnique__11"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__12_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUniqueBootsDex9__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__14"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__16"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__18"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } }, + ["IncreasedLifeUnique__19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["IncreasedLifeUnique__20"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__21"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, + ["IncreasedLifeUnique__22"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 1591 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } }, + ["IncreasedLifeUnique__23"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__24"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__25"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-35) to maximum Life" }, } }, + ["IncreasedLifeUnique__26"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__27"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__28"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__29"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__30"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__31"] = { affix = "", "+(65-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(65-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__32"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__33"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__34"] = { affix = "", "+(240-300) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(240-300) to maximum Life" }, } }, + ["IncreasedLifeUnique__35"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__36_"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__37"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__39"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } }, + ["IncreasedLifeUnique__40"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__41"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__42_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__43"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__44"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__45"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__46"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__47"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__48"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["IncreasedLifeUnique__49_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__50"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__51"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__52"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__53"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 75, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__54"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__55"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__56"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__57"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__58"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__59"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__60"] = { affix = "", "+(0-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__61"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__62"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__63_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__64"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__65"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__66"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__67_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__68_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__69"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__70"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__71"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__72_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } }, + ["IncreasedLifeUnique__73"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__74"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__75"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__76"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__77"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__78"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__79"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__80_"] = { affix = "", "+(20-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-60) to maximum Life" }, } }, + ["IncreasedLifeUnique__81"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, + ["IncreasedLifeUnique__82"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__83"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__84"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__85_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__86_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } }, + ["IncreasedLifeUnique__87"] = { affix = "", "+23 to maximum Life", statOrder = { 1591 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+23 to maximum Life" }, } }, + ["IncreasedLifeUnique__88"] = { affix = "", "+(50-175) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-175) to maximum Life" }, } }, + ["IncreasedLifeUnique__89"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__90"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__91"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__92_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__93"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__94"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__95"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__96__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__97"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__98"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__99"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__100"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, + ["IncreasedLifeUnique__101"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, + ["IncreasedLifeUnique__102"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__103"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 77, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__104_"] = { affix = "", "+100 to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } }, + ["IncreasedLifeUnique__105"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__106_"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } }, + ["IncreasedLifeUnique__107"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__108"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__109_"] = { affix = "", "+(45-65) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-65) to maximum Life" }, } }, + ["IncreasedLifeUnique__110"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__111__"] = { affix = "", "+(40-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__112"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__113"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__114"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__115"] = { affix = "", "+(50-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__116"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__117"] = { affix = "", "+(-200-200) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(-200-200) to maximum Life" }, } }, + ["IncreasedLifeUnique__118"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__119"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } }, + ["IncreasedLifeUnique__120"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__121"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__122"] = { affix = "", "+(25-30) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-30) to maximum Life" }, } }, + ["IncreasedLifeUnique__123"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1591 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } }, + ["IncreasedLifeUnique__124"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, + ["IncreasedLifeUnique__125"] = { affix = "", "+(1-100) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(1-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__126"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1591 }, level = 98, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } }, + ["IncreasedLifeUnique__127"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1591 }, level = 70, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } }, + ["IncreasedLifeUnique__128"] = { affix = "", "+(66-99) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(66-99) to maximum Life" }, } }, + ["IncreasedLifeUnique__129"] = { affix = "", "+(50-77) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-77) to maximum Life" }, } }, + ["IncreasedManaImplicitRing1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1602 }, level = 2, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, + ["IncreasedManaImplicitArmour1"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, + ["IncreasedManaUniqueAmulet1"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, + ["IncreasedManaUniqueBow1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, + ["IncreasedManaUniqueTwoHandSword2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, + ["IncreasedManaUniqueQuiver1"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1602 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } }, + ["IncreasedManaUniqueQuiver1a"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1602 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } }, + ["IncreasedManaUniqueDexHelmet1"] = { affix = "", "+(15-30) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-30) to maximum Mana" }, } }, + ["IncreasedManaUniqueIntHelmet3"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, + ["IncreasedManaUniqueGlovesStr1"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% reduced maximum Mana" }, } }, + ["IncreasedManaUniqueHelmetInt4"] = { affix = "", "+(25-75) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-75) to maximum Mana" }, } }, + ["IncreasedManaUniqueBootsInt4"] = { affix = "", "+20 to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+20 to maximum Mana" }, } }, + ["IncreasedManaUniqueShieldInt2"] = { affix = "", "+(15-25) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-25) to maximum Mana" }, } }, + ["IncreasedManaUniqueDagger4"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["IncreasedManaUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-50) to maximum Mana" }, } }, + ["IncreasedManaUniqueBootsInt5"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["IncreasedManaUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, + ["IncreasedManaUniqueAmulet10"] = { affix = "", "+100 to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+100 to maximum Mana" }, } }, + ["IncreasedManaUniqueWand3"] = { affix = "", "+(100-120) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-120) to maximum Mana" }, } }, + ["IncreasedManaUniqueBelt5"] = { affix = "", "+(45-55) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-55) to maximum Mana" }, } }, + ["IncreasedManaUniqueRing14"] = { affix = "", "+(25-30) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-30) to maximum Mana" }, } }, + ["IncreasedManaUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["IncreasedManaUniqueHelmetStrInt3"] = { affix = "", "+(100-120) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-120) to maximum Mana" }, } }, + ["IncreasedManaUniqueClaw7"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, + ["IncreasedManaUniqueRing20"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, + ["IncreasedManaUniqueHelmetDexInt3"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } }, + ["IncreasedManaUniqueBodyDexInt2"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, + ["IncreasedManaUniqueSceptre6"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, + ["IncreasedManaUniqueWand4"] = { affix = "", "+(15-20) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-20) to maximum Mana" }, } }, + ["IncreasedManaUniqueBootsStrDex4"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, + ["IncreasedManaUniqueBootsStrDex3"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-20) to maximum Mana" }, } }, + ["IncreasedManaUniqueRing17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["IncreasedManaUniqueHelmetStrDex5_"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, + ["IncreasedManaUniqueBodyInt9"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, + ["IncreasedManaUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["IncreasedManaUniqueRing29"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, + ["IncreasedManaUniqueHelmetInt8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, + ["IncreasedManaUniqueAmulet19"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } }, + ["IncreasedManaUniqueTwoHandAxe9"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } }, + ["IncreasedManaUniqueBodyStrInt6"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, + ["IncreasedManaUniqueOneHandMace7"] = { affix = "", "+70 to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+70 to maximum Mana" }, } }, + ["IncreasedManaUnique__3"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, + ["IncreasedManaUnique__1"] = { affix = "", "+(60-120) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-120) to maximum Mana" }, } }, + ["IncreasedManaUnique__2"] = { affix = "", "+30 to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+30 to maximum Mana" }, } }, + ["IncreasedManaUnique__4"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-120) to maximum Mana" }, } }, + ["IncreasedManaUnique__5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["IncreasedManaUnique__6"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["IncreasedManaUnique__7"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1602 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["IncreasedManaUnique__8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1602 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, + ["IncreasedManaUnique__9"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } }, + ["IncreasedManaUnique__10"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } }, + ["IncreasedManaUnique__12"] = { affix = "", "+(20-50) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-50) to maximum Mana" }, } }, + ["IncreasedManaUnique__13"] = { affix = "", "+(50-60) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-60) to maximum Mana" }, } }, + ["IncreasedManaUnique__14"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["IncreasedManaUnique__15"] = { affix = "", "+(1-75) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-75) to maximum Mana" }, } }, + ["IncreasedManaUnique__16"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } }, + ["IncreasedManaUnique__17"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } }, + ["IncreasedManaUnique__18"] = { affix = "", "+(1-100) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-100) to maximum Mana" }, } }, + ["IncreasedManaUnique__19"] = { affix = "", "+500 to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+500 to maximum Mana" }, } }, + ["IncreasedManaUnique__20_"] = { affix = "", "+(120-160) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-160) to maximum Mana" }, } }, + ["IncreasedManaUnique__21"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, + ["IncreasedManaUnique__22__"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } }, + ["IncreasedManaUnique__23"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, + ["IncreasedManaUnique__24"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["IncreasedManaUnique__25"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } }, + ["IncreasedManaUnique__26"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } }, + ["IncreasedManaUnique__27"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } }, + ["IncreasedManaUnique__28"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } }, + ["IncreasedManaUnique__29"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, + ["IncreasedManaUnique__30"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } }, + ["IncreasedManaUnique__31"] = { affix = "", "+(55-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-70) to maximum Mana" }, } }, + ["IncreasedEnergyShieldImplicitBelt1"] = { affix = "", "+(9-20) to maximum Energy Shield", statOrder = { 1580 }, level = 2, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-20) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldImplicitBelt2"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1580 }, level = 99, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-80) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueClaw1"] = { affix = "", "+(200-300) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(200-300) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueDagger4"] = { affix = "", "+50 to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+50 to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "+15 to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+15 to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldImplicitRing1"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1580 }, level = 25, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueAmulet14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1580 }, level = 40, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueBelt5"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1580 }, level = 70, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueRing18"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1580 }, level = 25, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueBodyStrDexInt1"] = { affix = "", "+(70-80) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-80) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueQuiver7"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(100-120) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueBelt11"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueRing27"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUniqueRing35"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique___1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-100) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__2"] = { affix = "", "+35 to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+35 to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__3"] = { affix = "", "+(70-150) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(70-150) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__4"] = { affix = "", "+(75-80) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(75-80) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__6"] = { affix = "", "+250 to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+250 to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__7"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-120) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__8"] = { affix = "", "+(40-45) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-45) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__9"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-70) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__10"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-35) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-35) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__13"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldUnique__14"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-80) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBootsDex1"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBodyInt5"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBodyInt9"] = { affix = "", "(200-220)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-220)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBootsDex8"] = { affix = "", "+(15-30) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueHelmetStrInt5_"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueGlovesStr4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueShieldInt5"] = { affix = "", "+(70-90) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-90) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBootsDexInt4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShiledUniqueBootsInt6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergySheildUnique__2_"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique___4"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+20 to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__5"] = { affix = "", "+(40-50) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-50) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__7"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__8"] = { affix = "", "+(110-130) to maximum Energy Shield", statOrder = { 1581 }, level = 65, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(110-130) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__9"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__10"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-45) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-45) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__13_"] = { affix = "", "+40 to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+40 to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__14"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__15"] = { affix = "", "+(130-160) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-160) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__16"] = { affix = "", "+(90-110) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-110) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__17__"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__18_"] = { affix = "", "+(64-96) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(64-96) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__19"] = { affix = "", "+(180-200) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(180-200) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__20"] = { affix = "", "+(15-50) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-50) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__21"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__22"] = { affix = "", "+(130-150) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-150) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__23"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-80) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__24_"] = { affix = "", "+(160-180) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(160-180) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__25"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__26"] = { affix = "", "+(40-80) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-80) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__27_"] = { affix = "", "+(50-90) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-90) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__28"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__29"] = { affix = "", "+(15-20) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-20) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__30__"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__31"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__32"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__33"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__34"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUnique__35"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, + ["AddedPhysicalDamageImplicitRing1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1290 }, level = 2, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageImplicitRing2"] = { affix = "", "Adds (3-4) to (10-14) Physical Damage to Attacks", statOrder = { 1290 }, level = 100, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (10-14) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1290 }, level = 7, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageImplicitQuiver1New"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1290 }, level = 5, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageImplicitQuiver6New"] = { affix = "", "Adds (7-9) to (13-16) Physical Damage to Attacks", statOrder = { 1290 }, level = 39, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (13-16) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageImplicitQuiver12New"] = { affix = "", "Adds (12-15) to (24-27) Physical Damage to Attacks", statOrder = { 1290 }, level = 77, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-27) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageImplicitQuiver6_"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 7, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "1 to 4 Added Physical Damage with Bow Attacks" }, } }, + ["AddedPhysicalDamageImplicitQuiverDescent"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "1 to 4 Added Physical Damage with Bow Attacks" }, } }, + ["AddedPhysicalDamageImplicitQuiver11"] = { affix = "", "6 to 12 Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 35, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "6 to 12 Added Physical Damage with Bow Attacks" }, } }, + ["AddedPhysicalDamageUniqueBelt4"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueBodyStr2"] = { affix = "", "Adds 2 to 4 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 2 to 4 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueBodyDex2"] = { affix = "", "Your Attacks deal -3 Physical Damage", statOrder = { 2492 }, level = 1, group = "DewathsHidePhysicalDamageDealt", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1454654776] = { "Your Attacks deal -3 Physical Damage" }, } }, + ["AddedPhysicalDamageUniqueBodyDex4"] = { affix = "", "Adds 5 to 12 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 12 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueHelmetStr3"] = { affix = "", "Adds 40 to 60 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 40 to 60 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueRing8"] = { affix = "", "Adds 5 to 9 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 9 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Adds 20 to 30 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 20 to 30 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueQuiver3"] = { affix = "", "(10-14) to (19-24) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(10-14) to (19-24) Added Physical Damage with Bow Attacks" }, } }, + ["AddedPhysicalDamageUniqueQuiver8"] = { affix = "", "6 to 10 Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "6 to 10 Added Physical Damage with Bow Attacks" }, } }, + ["AddedPhysicalDamageUniqueShieldDex6"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (15-20) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueJewel9"] = { affix = "", "Adds 3 to 7 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 3 to 7 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueQuiver9"] = { affix = "", "(8-10) to (14-16) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(8-10) to (14-16) Added Physical Damage with Bow Attacks" }, } }, + ["AddedPhysicalDamageUniqueShieldStrDex3"] = { affix = "", "Adds 4 to 8 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 4 to 8 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueRing37"] = { affix = "", "Adds (5-10) to (11-15) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-10) to (11-15) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueBootsStr3"] = { affix = "", "Adds (2-5) to (7-10) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-5) to (7-10) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique___1"] = { affix = "", "Adds 5 to 10 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 5 to 10 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUniqueAmulet25"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__2"] = { affix = "", "Adds (5-15) to (25-50) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-15) to (25-50) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__3"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 20 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__4"] = { affix = "", "Adds 1 to (15-20) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to (15-20) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__5"] = { affix = "", "Adds (5-8) to (12-16) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-8) to (12-16) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (4-10) to (14-36) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-10) to (14-36) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__8"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (15-20) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__9_"] = { affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__10"] = { affix = "", "Adds (13-18) to (26-32) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (13-18) to (26-32) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__11__"] = { affix = "", "Adds (2-3) to (22-26) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (22-26) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__12"] = { affix = "", "Adds (8-12) to (18-24) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-12) to (18-24) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamageUnique__13"] = { affix = "", "Adds (6-10) to (16-22) Physical Damage to Attacks", statOrder = { 1290 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (16-22) Physical Damage to Attacks" }, } }, + ["LocalAddedPhysicalDamageUnique__1"] = { affix = "", "Adds (15-20) to (30-40) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-20) to (30-40) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueSceptre9"] = { affix = "", "Adds (8-13) to (26-31) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-13) to (26-31) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueTwoHandAxe3"] = { affix = "", "Adds 5 to 10 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 5 to 10 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueRapier2"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 10 to 15 Physical Damage" }, } }, + ["LocalAddedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "Adds 2 to 10 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 10 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueTwoHandMace6"] = { affix = "", "Adds (43-56) to (330-400) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (43-56) to (330-400) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueTwoHandMace7"] = { affix = "", "Adds 5 to 25 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 5 to 25 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandSword5"] = { affix = "", "Adds (60-70) to (71-80) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-70) to (71-80) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe3"] = { affix = "", "Adds (10-15) to (25-30) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (25-30) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueTwoHandAxe7"] = { affix = "", "Adds (310-330) to (370-390) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (310-330) to (370-390) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueStaff7"] = { affix = "", "Adds (135-145) to (160-175) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (135-145) to (160-175) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDescentOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDescentClaw1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe5"] = { affix = "", "Adds (11-14) to (18-23) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (18-23) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueBow7"] = { affix = "", "Adds (25-35) to (36-45) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (36-45) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueBow5"] = { affix = "", "Adds (15-20) to (25-30) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-20) to (25-30) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueTwoHandSword8"] = { affix = "", "Adds (65-75) to (100-110) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-75) to (100-110) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "Adds (5-10) to (15-23) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-10) to (15-23) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueSceptre10"] = { affix = "", "Adds (35-46) to (85-128) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-46) to (85-128) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "Adds (5-10) to (13-20) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-10) to (13-20) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueWand9"] = { affix = "", "Adds (5-8) to (13-17) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (13-17) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__6"] = { affix = "", "Adds (60-80) to (150-180) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-80) to (150-180) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__7"] = { affix = "", "Adds (50-70) to (135-165) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (50-70) to (135-165) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__8"] = { affix = "", "Adds (35-40) to (55-60) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-40) to (55-60) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__9"] = { affix = "", "Adds (24-30) to (34-40) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (24-30) to (34-40) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__10"] = { affix = "", "Adds (5-8) to (15-20) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (15-20) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__11"] = { affix = "", "Adds (30-38) to (40-50) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-38) to (40-50) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__12"] = { affix = "", "Adds (30-45) to (80-100) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-45) to (80-100) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__13"] = { affix = "", "Adds (25-35) to (50-65) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (50-65) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__14"] = { affix = "", "Adds (40-50) to (130-150) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-50) to (130-150) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__15"] = { affix = "", "Adds (90-115) to (230-260) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (90-115) to (230-260) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__16_"] = { affix = "", "Adds (10-16) to (45-60) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-16) to (45-60) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__17_"] = { affix = "", "Adds (6-12) to (20-25) Physical Damage", statOrder = { 1300 }, level = 50, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-12) to (20-25) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__18"] = { affix = "", "Adds (30-40) to (70-80) Physical Damage", statOrder = { 1300 }, level = 40, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-40) to (70-80) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__19"] = { affix = "", "Adds (15-25) to (50-60) Physical Damage", statOrder = { 1300 }, level = 45, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (15-25) to (50-60) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__20_"] = { affix = "", "Adds (10-20) to (30-40) Physical Damage", statOrder = { 1300 }, level = 46, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-20) to (30-40) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__21"] = { affix = "", "Adds (90-110) to (145-170) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (90-110) to (145-170) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__22"] = { affix = "", "Adds (80-95) to (220-240) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-95) to (220-240) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__23_"] = { affix = "", "Adds (35-50) to (100-125) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (35-50) to (100-125) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__24"] = { affix = "", "Adds (100-130) to (360-430) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (100-130) to (360-430) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__25"] = { affix = "", "Adds (8-13) to (20-30) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-13) to (20-30) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__26"] = { affix = "", "Adds (70-80) to (340-375) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (70-80) to (340-375) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__27"] = { affix = "", "Adds (80-115) to (150-205) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-115) to (150-205) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__28"] = { affix = "", "Adds (225-265) to (315-385) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (225-265) to (315-385) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__29___"] = { affix = "", "Adds (80-100) to (200-225) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (80-100) to (200-225) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__30_"] = { affix = "", "Adds (45-60) to (100-120) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (45-60) to (100-120) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__31"] = { affix = "", "Adds (220-240) to (270-300) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (220-240) to (270-300) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__32"] = { affix = "", "Adds (94-98) to (115-121) Physical Damage", statOrder = { 1300 }, level = 77, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (94-98) to (115-121) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__33_"] = { affix = "", "Adds (242-260) to (268-285) Physical Damage", statOrder = { 1300 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (242-260) to (268-285) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__34"] = { affix = "", "Adds (11-14) to (17-21) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (17-21) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__35"] = { affix = "", "Adds (83-91) to (123-130) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (83-91) to (123-130) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__36"] = { affix = "", "Adds (70-85) to (110-118) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (70-85) to (110-118) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__37"] = { affix = "", "Adds (42-47) to (66-71) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (42-47) to (66-71) Physical Damage" }, } }, + ["LocalAddedPhyiscalDamageUnique__38"] = { affix = "", "Adds (25-35) to (45-55) Physical Damage", statOrder = { 1300 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-35) to (45-55) Physical Damage" }, } }, + ["LocalAddedPhyiscalDamageUnique__39"] = { affix = "", "Adds (85-110) to (135-150) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (85-110) to (135-150) Physical Damage" }, } }, + ["LocalAddedPhyiscalDamageUnique__40__"] = { affix = "", "Adds (16-22) to (40-45) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-22) to (40-45) Physical Damage" }, } }, + ["LocalAddedPhyiscalDamageUnique__41_"] = { affix = "", "Adds (40-65) to (70-100) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-65) to (70-100) Physical Damage" }, } }, + ["LocalAddedPhyiscalDamageUnique__42"] = { affix = "", "Adds (20-25) to (40-50) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-25) to (40-50) Physical Damage" }, } }, + ["LocalAddedPhyiscalDamageUnique__43"] = { affix = "", "Adds (5-9) to (13-18) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-9) to (13-18) Physical Damage" }, } }, + ["LocalAddedPhyiscalDamageUnique__44"] = { affix = "", "Adds (20-30) to (40-50) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-30) to (40-50) Physical Damage" }, } }, + ["AddedFireDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 4 Fire Damage to Attacks", statOrder = { 1384 }, level = 2, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 2 to 4 Fire Damage to Attacks" }, } }, + ["AddedFireDamageImplicitQuiver2New"] = { affix = "", "Adds 3 to 5 Fire Damage to Attacks", statOrder = { 1384 }, level = 12, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 3 to 5 Fire Damage to Attacks" }, } }, + ["AddedFireDamageImplicitQuiver9New"] = { affix = "", "Adds (12-15) to (24-27) Fire Damage to Attacks", statOrder = { 1384 }, level = 57, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-15) to (24-27) Fire Damage to Attacks" }, } }, + ["AddedFireDamageImplicitQuiver10"] = { affix = "", "4 to 8 Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 28, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "4 to 8 Added Fire Damage with Bow Attacks" }, } }, + ["AddedFireDamageUniqueQuiver1a"] = { affix = "", "5 to 10 Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 1, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "5 to 10 Added Fire Damage with Bow Attacks" }, } }, + ["AddedFireDamageUniqueBootsStrDex1"] = { affix = "", "Adds 12 to 24 Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 12 to 24 Fire Damage to Attacks" }, } }, + ["AddedFireDamageUniqueGlovesInt1"] = { affix = "", "Adds 4 to 8 Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 4 to 8 Fire Damage to Attacks" }, } }, + ["AddedFireDamageUniqueAmulet7"] = { affix = "", "Adds (18-24) to (32-40) Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (18-24) to (32-40) Fire Damage to Attacks" }, } }, + ["AddedFireDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageUniqueRing10"] = { affix = "", "Adds (8-15) to (20-28) Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-15) to (20-28) Fire Damage to Attacks" }, } }, + ["AddedFireDamageUniqueRing20"] = { affix = "", "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageUniqueBelt10"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (14-16) to (30-32) Fire Damage to Attacks" }, } }, + ["AddedFireDamageUniqueRing31"] = { affix = "", "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageUniqueRing28"] = { affix = "", "Adds (12-15) to (25-30) Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-15) to (25-30) Fire Damage to Attacks" }, } }, + ["AddedFireDamageUniqueShieldStr3"] = { affix = "", "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageUniqueShieldDemigods"] = { affix = "", "Adds 10 to 20 Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 10 to 20 Fire Damage to Attacks" }, } }, + ["AddedFireDamageUniqueRing36"] = { affix = "", "Adds (8-12) to (20-30) Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-12) to (20-30) Fire Damage to Attacks" }, } }, + ["AddedFireDamageUnique__1_"] = { affix = "", "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageUnique__2"] = { affix = "", "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageUnique__3"] = { affix = "", "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageUnique__4"] = { affix = "", "Adds 40 to 75 Fire Damage to Attacks", statOrder = { 1384 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 40 to 75 Fire Damage to Attacks" }, } }, + ["AddedColdDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 3 Cold Damage to Attacks", statOrder = { 1393 }, level = 2, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 2 to 3 Cold Damage to Attacks" }, } }, + ["AddedColdDamageUniqueBodyDex1"] = { affix = "", "(105-145) to (160-200) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 47, group = "AddedColdDamageWithBowsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(105-145) to (160-200) Added Cold Damage with Bow Attacks" }, } }, + ["AddedColdDamageUniqueDexHelmet1"] = { affix = "", "Adds 15 to 25 Cold Damage to Attacks", statOrder = { 1393 }, level = 15, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 15 to 25 Cold Damage to Attacks" }, } }, + ["AddedColdDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageUniqueBow9"] = { affix = "", "Adds (48-60) to (72-90) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (48-60) to (72-90) Cold Damage" }, } }, + ["AddedColdDamageUniqueRing18"] = { affix = "", "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageUniqueBelt10"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Attacks", statOrder = { 1393 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-12) to (24-28) Cold Damage to Attacks" }, } }, + ["AddedColdDamageUniqueRing30"] = { affix = "", "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageUniqueGlovesStrInt3_"] = { affix = "", "Adds (60-72) to (88-100) Cold Damage to Attacks", statOrder = { 1393 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (60-72) to (88-100) Cold Damage to Attacks" }, } }, + ["AddedColdDamageUniqueShieldStrDex3"] = { affix = "", "Adds 12 to 15 Cold Damage to Attacks", statOrder = { 1393 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 12 to 15 Cold Damage to Attacks" }, } }, + ["AddedColdDamageUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Attacks", statOrder = { 1393 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 10 to 20 Cold Damage to Attacks" }, } }, + ["AddedColdDamageUnique__2"] = { affix = "", "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageUnique__3"] = { affix = "", "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageUnique__4"] = { affix = "", "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageUnique__5"] = { affix = "", "Adds (26-32) to (42-48) Cold Damage to Attacks", statOrder = { 1393 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (26-32) to (42-48) Cold Damage to Attacks" }, } }, + ["AddedColdDamageUnique__6"] = { affix = "", "Adds (12-15) to (25-30) Cold Damage to Attacks", statOrder = { 1393 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-15) to (25-30) Cold Damage to Attacks" }, } }, + ["AddedColdDamageUnique__7"] = { affix = "", "Adds (30-40) to (80-100) Cold Damage to Attacks", statOrder = { 1393 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (30-40) to (80-100) Cold Damage to Attacks" }, } }, + ["AddedColdDamageUnique__9"] = { affix = "", "Adds 30 to 65 Cold Damage to Attacks", statOrder = { 1393 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 30 to 65 Cold Damage to Attacks" }, } }, + ["AddedColdDamageUnique__10"] = { affix = "", "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageUnique__11"] = { affix = "", "Adds (30-40) to (60-70) Cold Damage to Attacks", statOrder = { 1393 }, level = 71, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (30-40) to (60-70) Cold Damage to Attacks" }, } }, + ["AddedLightningDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1404 }, level = 2, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 5 Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUniqueHelmetStrInt1"] = { affix = "", "Adds 1 to 30 Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to 30 Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageUniqueBootsStrInt1"] = { affix = "", "Adds 1 to 120 Lightning Damage to Attacks", statOrder = { 1404 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 120 Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUniqueGlovesInt1"] = { affix = "", "Adds 1 to 13 Lightning Damage to Attacks", statOrder = { 1404 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 13 Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUniqueGlovesDexInt1"] = { affix = "", "Adds (1-4) to (30-50) Lightning Damage to Attacks", statOrder = { 1404 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (30-50) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUniqueDagger3"] = { affix = "", "Adds 3 to 30 Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to 30 Lightning Damage" }, } }, + ["AddedLocalLightningDamageUniqueClaw1"] = { affix = "", "Adds 1 to (650-850) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (650-850) Lightning Damage" }, } }, + ["AddedLightningDamageUniqueBow8"] = { affix = "", "Adds 1 to 85 Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 85 Lightning Damage" }, } }, + ["AddedLightningDamageUniqueBodyInt5_"] = { affix = "", "Adds 1 to (4-12) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (4-12) Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageUniqueGlovesDexInt3"] = { affix = "", "Adds 1 to 100 Lightning Damage to Attacks", statOrder = { 1404 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 100 Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUniqueBodyInt8"] = { affix = "", "Adds 1 to 40 Lightning Damage to Attacks", statOrder = { 1404 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 40 Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUniqueBow9"] = { affix = "", "Adds 1 to (120-150) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (120-150) Lightning Damage" }, } }, + ["AddedLightningDamageUniqueBodyStrDex2"] = { affix = "", "Adds 1 to (20-30) Lightning Damage to Attacks", statOrder = { 1404 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (20-30) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUniqueRing19"] = { affix = "", "Adds 1 to (50-70) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 25, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (50-70) Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageUniqueBelt10"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Attacks", statOrder = { 1404 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (60-68) Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUniqueBelt12"] = { affix = "", "Adds 1 to (30-50) Lightning Damage to Attacks", statOrder = { 1404 }, level = 55, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (30-50) Lightning Damage to Attacks" }, } }, + ["LocalAddedLightningDamageUniqueOneHandSword6"] = { affix = "", "Adds 1 to (550-650) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (550-650) Lightning Damage" }, } }, + ["AddedLightningDamageUnique__1"] = { affix = "", "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageUnique__3"] = { affix = "", "Adds 10 to 130 Lightning Damage to Attacks", statOrder = { 1404 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 10 to 130 Lightning Damage to Attacks" }, } }, + ["AddedLightningDamageUnique__4"] = { affix = "", "(12-18) to (231-347) Added Lightning Damage with Wand Attacks", statOrder = { 2125 }, level = 1, group = "AddedLightningDamageWithWandsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(12-18) to (231-347) Added Lightning Damage with Wand Attacks" }, } }, + ["AddedChaosDamageUniqueRing1"] = { affix = "", "Adds (10-15) to (20-25) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (10-15) to (20-25) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageUniqueBootsStrDex4"] = { affix = "", "Adds (6-9) to (12-16) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (12-16) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageUniqueBootsStrInt2"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to 80 Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageUniqueQuiver7"] = { affix = "", "Adds (13-18) to (26-32) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-18) to (26-32) Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageUniqueAmulet23"] = { affix = "", "Adds 19 to 43 Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 19 to 43 Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageUniqueBow12"] = { affix = "", "Adds (50-80) to (130-180) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (50-80) to (130-180) Chaos Damage" }, } }, + ["AddedChaosDamageUnique__1"] = { affix = "", "Adds 12 to 24 Chaos Damage to Attacks", statOrder = { 1411 }, level = 25, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 12 to 24 Chaos Damage to Attacks" }, } }, + ["AddedChaosDamageUnique__2"] = { affix = "", "Adds (7-10) to (15-18) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-10) to (15-18) Chaos Damage to Attacks" }, } }, + ["LifeLeechUniqueRing2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueRing2"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechImplicitClaw1"] = { affix = "", "8% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "8% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadImplicitClaw1"] = { affix = "", "1.6% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechImplicitClaw2"] = { affix = "", "10% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "10% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadImplicitClaw2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechAllAttackDamagePermyriadImplicitClaw2"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 8098 }, level = 1, group = "LifeLeechLocalAllDamagePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1828023575] = { "2% of Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueTwoHandMace1"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueTwoHandMace1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueGlovesStrDex1"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "3% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "2% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueShieldDex2"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "3% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueShieldDex2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueAmulet9"] = { affix = "", "(6-10)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(6-10)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueAmulet9"] = { affix = "", "(1.2-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.2-2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueTwoHandAxe4"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueTwoHandAxe4"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueClaw3"] = { affix = "", "6% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "6% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueClaw3"] = { affix = "", "1.2% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.2% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueClaw6"] = { affix = "", "15% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "15% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueClaw6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "3% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueRing12"] = { affix = "", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueRing12"] = { affix = "", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueHelmetInt7"] = { affix = "", "(2-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(2-4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.4-0.8)% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "(0.4-0.8)% of Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueBodyStr3"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "5% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueBodyStr3"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "1% of Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueBodyStrDex3"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueBodyStrDex3"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "2% of Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueBodyStrInt5"] = { affix = "", "(4-5)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(4-5)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueBodyStrInt5"] = { affix = "", "(0.8-1)% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "(0.8-1)% of Attack Damage Leeched as Life" }, } }, + ["LifeLeechUniqueShieldDex5"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "2% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueShieldDex5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueHelmetDexInt6"] = { affix = "", "(0.4-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.4-0.8)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUnique__2"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUnique__3"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriad__1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "1% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUnique__4"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUnique__5"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUnique__7"] = { affix = "", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.3-0.5)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUnique__8"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUnique__9"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(2-3)% of Physical Attack Damage Leeched as Life" }, } }, + ["AxeBonus1"] = { affix = "Butcher's", "5% increased Physical Damage with Axes", "2% increased Attack Speed with Axes", "3% increased Accuracy Rating with Axes", statOrder = { 1327, 1444, 1462 }, level = 6, group = "AxeBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2538120572] = { "3% increased Accuracy Rating with Axes" }, [3550868361] = { "2% increased Attack Speed with Axes" }, [2008219439] = { "5% increased Physical Damage with Axes" }, } }, + ["StaffBonus1"] = { affix = "Monk's", "5% increased Physical Damage with Staves", "2% increased Attack Speed with Staves", "3% increased Accuracy Rating with Staves", statOrder = { 1331, 1445, 1463 }, level = 8, group = "StaffBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1394963553] = { "2% increased Attack Speed with Staves" }, [1617235962] = { "3% increased Accuracy Rating with Staves" }, [3150705301] = { "5% increased Physical Damage with Staves" }, } }, + ["ClawBonus1"] = { affix = "Feline", "5% increased Physical Damage with Claws", "2% increased Attack Speed with Claws", "3% increased Accuracy Rating with Claws", statOrder = { 1339, 1446, 1464 }, level = 10, group = "ClawBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1421645223] = { "2% increased Attack Speed with Claws" }, [1297965523] = { "3% increased Accuracy Rating with Claws" }, [635761691] = { "5% increased Physical Damage with Claws" }, } }, + ["DaggerBonus1"] = { affix = "Assassin's", "5% increased Physical Damage with Daggers", "2% increased Attack Speed with Daggers", "3% increased Accuracy Rating with Daggers", statOrder = { 1345, 1447, 1465 }, level = 7, group = "DaggerBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2538566497] = { "2% increased Attack Speed with Daggers" }, [3882531569] = { "5% increased Physical Damage with Daggers" }, [2054715690] = { "3% increased Accuracy Rating with Daggers" }, } }, + ["MaceBonus1"] = { affix = "Crusher's", "5% increased Physical Damage with Maces or Sceptres", "2% increased Attack Speed with Maces or Sceptres", "3% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1351, 1448, 1466 }, level = 5, group = "MaceBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3208450870] = { "3% increased Accuracy Rating with Maces or Sceptres" }, [3774831856] = { "5% increased Physical Damage with Maces or Sceptres" }, [2515515064] = { "2% increased Attack Speed with Maces or Sceptres" }, } }, + ["BowBonus1"] = { affix = "Archer's", "5% increased Physical Damage with Bows", "2% increased Attack Speed with Bows", "3% increased Accuracy Rating with Bows", statOrder = { 1357, 1449, 1467 }, level = 3, group = "BowBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3759735052] = { "2% increased Attack Speed with Bows" }, [402920808] = { "5% increased Physical Damage with Bows" }, [169946467] = { "3% increased Accuracy Rating with Bows" }, } }, + ["SwordBonus1"] = { affix = "Blademaster's", "5% increased Physical Damage with Swords", "2% increased Attack Speed with Swords", "3% increased Accuracy Rating with Swords", statOrder = { 1362, 1450, 1468 }, level = 2, group = "SwordBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3293699237] = { "2% increased Attack Speed with Swords" }, [3814560373] = { "5% increased Physical Damage with Swords" }, [2090868905] = { "3% increased Accuracy Rating with Swords" }, } }, + ["WandBonus1"] = { affix = "Magician's", "5% increased Physical Damage with Wands", "2% increased Attack Speed with Wands", "3% increased Accuracy Rating with Wands", statOrder = { 1369, 1451, 1469 }, level = 4, group = "WandBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [2150183156] = { "3% increased Accuracy Rating with Wands" }, [3720627346] = { "2% increased Attack Speed with Wands" }, [2769075491] = { "5% increased Physical Damage with Wands" }, } }, + ["AccuracyPercentImplicitSword1"] = { affix = "", "40% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "40% increased Global Accuracy Rating" }, } }, + ["AccuracyPercentImplicitSword2"] = { affix = "", "30% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "30% increased Global Accuracy Rating" }, } }, + ["AccuracyPercentImplicit2HSword1"] = { affix = "", "60% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "60% increased Global Accuracy Rating" }, } }, + ["AccuracyPercentImplicit2HSword2_"] = { affix = "", "45% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "45% increased Global Accuracy Rating" }, } }, + ["AccuracyPercentUniqueBow5"] = { affix = "", "(15-30)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-30)% increased Global Accuracy Rating" }, } }, + ["AccuracyPercentUniqueClaw9"] = { affix = "", "15% reduced Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "15% reduced Global Accuracy Rating" }, } }, + ["AccuracyPercentUnique__1"] = { affix = "", "100% reduced Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "100% reduced Global Accuracy Rating" }, } }, + ["StaffBlockPercentImplicitStaff1"] = { affix = "", "+20% Chance to Block Attack Damage", statOrder = { 2483 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+20% Chance to Block Attack Damage" }, } }, + ["StaffBlockPercentImplicitStaff2"] = { affix = "", "+22% Chance to Block Attack Damage", statOrder = { 2483 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+22% Chance to Block Attack Damage" }, } }, + ["StaffBlockPercentImplicitStaff3"] = { affix = "", "+25% Chance to Block Attack Damage", statOrder = { 2483 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+25% Chance to Block Attack Damage" }, } }, + ["StaffBlockPercentUniqueStaff7"] = { affix = "", "+6% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1175 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+6% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["StaffBlockPercentUniqueStaff9"] = { affix = "", "+12% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1175 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+12% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["StaffBlockPercentUnique__1"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1175 }, level = 36, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+15% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["StaffBlockPercentUnique__2_"] = { affix = "", "+(20-30)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1175 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+(20-30)% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["StaffBlockPercentUnique__3"] = { affix = "", "+(20-25)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1175 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+(20-25)% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["StaffBlockPercentUnique__4_"] = { affix = "", "+5% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1175 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["StaffBlockPercentUnique__5"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1175 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1001829678] = { "+15% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["StaffSpellBlockPercentImplicitStaff__1"] = { affix = "", "+20% Chance to Block Spell Damage", statOrder = { 2484 }, level = 1, group = "AdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [19803471] = { "+20% Chance to Block Spell Damage" }, } }, + ["StaffSpellBlockPercent2"] = { affix = "", "+22% Chance to Block Spell Damage", statOrder = { 2484 }, level = 1, group = "AdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [19803471] = { "+22% Chance to Block Spell Damage" }, } }, + ["StaffSpellBlockPercent3"] = { affix = "", "+25% Chance to Block Spell Damage", statOrder = { 2484 }, level = 1, group = "AdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [19803471] = { "+25% Chance to Block Spell Damage" }, } }, + ["BlockPercentUniqueHelmetStrDex4"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, + ["BlockPercentUniqueAmulet16"] = { affix = "", "(10-15)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(10-15)% Chance to Block Attack Damage" }, } }, + ["BlockPercentUniqueDescentStaff1"] = { affix = "", "16% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "16% Chance to Block Attack Damage" }, } }, + ["BlockPercentUniqueQuiver4"] = { affix = "", "(20-24)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 35, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(20-24)% Chance to Block Attack Damage" }, } }, + ["BlockPercentMarakethDaggerImplicit1"] = { affix = "", "4% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "4% Chance to Block Attack Damage" }, } }, + ["BlockPercentMarakethDaggerImplicit2_"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } }, + ["BlockPercentUnique__1"] = { affix = "", "(8-12)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(8-12)% Chance to Block Attack Damage" }, } }, + ["BlockPercentUnique__2"] = { affix = "", "20% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "20% Chance to Block Attack Damage" }, } }, + ["BlockPercentUnique__3"] = { affix = "", "(4-6)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 40, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-6)% Chance to Block Attack Damage" }, } }, + ["ElementalDamagePercentImplicitSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptre2"] = { affix = "", "30% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptre3"] = { affix = "", "40% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew2"] = { affix = "", "12% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "12% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew3"] = { affix = "", "12% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "12% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew4"] = { affix = "", "20% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew5"] = { affix = "", "14% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "14% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew6"] = { affix = "", "16% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "16% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew7"] = { affix = "", "16% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "16% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew8"] = { affix = "", "22% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "22% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew9"] = { affix = "", "18% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "18% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew10"] = { affix = "", "18% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "18% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew11"] = { affix = "", "30% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew12___"] = { affix = "", "22% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "22% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew13"] = { affix = "", "24% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "24% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew14"] = { affix = "", "24% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "24% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew15"] = { affix = "", "30% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew16"] = { affix = "", "26% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "26% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew17"] = { affix = "", "26% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "26% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew18"] = { affix = "", "40% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew19"] = { affix = "", "30% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew20"] = { affix = "", "32% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "32% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew21__"] = { affix = "", "32% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "32% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitSceptreNew22"] = { affix = "", "40% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "40% increased Elemental Damage" }, } }, + ["ElementalDamagePercentImplicitAtlasRing_"] = { affix = "", "(15-25)% increased Elemental Damage", statOrder = { 2003 }, level = 100, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-25)% increased Elemental Damage" }, } }, + ["ElementalDamagePercentUnique__1"] = { affix = "", "(15-50)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-50)% increased Elemental Damage" }, } }, + ["ElementalDamagePercentUnique__2"] = { affix = "", "10% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, + ["IncreasedPhysicalDamagePercentImplicitBelt1"] = { affix = "", "(12-24)% increased Global Physical Damage", statOrder = { 1254 }, level = 2, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(12-24)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1"] = { affix = "", "8% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "8% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2"] = { affix = "", "12% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "12% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueRing1"] = { affix = "", "5% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "5% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueHelmetStr1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueQuiver2"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1254 }, level = 7, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueBelt2"] = { affix = "", "(25-40)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(25-40)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueShieldStrDex1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueHelmetStrDex2"] = { affix = "", "10% reduced Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% reduced Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueGlovesStr2"] = { affix = "", "10% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueBelt9d"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueDescentClaw1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueShieldDexInt1"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueBelt13"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueJewel9"] = { affix = "", "10% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "10% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueBootsDexInt4"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "20% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueSwordImplicit1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "30% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUniqueBowImplicit1"] = { affix = "", "(20-24)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-24)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUnique__1"] = { affix = "", "(8-12)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUnique__2"] = { affix = "", "(8-12)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUnique__3"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1254 }, level = 55, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "100% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "100% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUnique__5"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUnique__6"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentUnique__7"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2"] = { affix = "", "150% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "150% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1"] = { affix = "", "50% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "50% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow1"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow3"] = { affix = "", "(90-105)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(90-105)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1"] = { affix = "", "(140-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace2"] = { affix = "", "200% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "200% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-150)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2"] = { affix = "", "(100-125)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-125)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3"] = { affix = "", "(180-220)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-220)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueRapier1"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueWand1"] = { affix = "", "(250-275)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-275)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3"] = { affix = "", "(500-600)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(500-600)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger3"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow4"] = { affix = "", "30% less Damage", statOrder = { 2481 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "30% less Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow5"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace4"] = { affix = "", "150% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "150% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow6"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow7"] = { affix = "", "(70-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(70-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw1"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueSceptre1"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw2"] = { affix = "", "(75-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw3"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5"] = { affix = "", "(200-220)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-220)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueRapier2"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-150)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw5"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw6"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-120)% increased Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUniqueBow8"] = { affix = "", "No Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueSceptre5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow10"] = { affix = "", "(50-70)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-70)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueDescentStaff1"] = { affix = "", "100% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueDescentBow1"] = { affix = "", "100% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger9"] = { affix = "", "(250-270)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-270)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword8"] = { affix = "", "(230-260)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-260)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5"] = { affix = "", "(130-150)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-150)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8"] = { affix = "", "(120-140)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-140)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8"] = { affix = "", "(30-50)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(30-50)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueStaff9"] = { affix = "", "100% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamageUniqueSceptre9"] = { affix = "", "20% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "20% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamageUniqueOneHandMace4"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamageUniqueOneHandSceptre10"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "(80-95)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-95)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamageUniqueClaw8"] = { affix = "", "(160-180)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-180)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueWand9"] = { affix = "", "(80-140)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-140)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueWand9x"] = { affix = "", "(110-170)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-170)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9"] = { affix = "", "(300-360)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-360)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger11"] = { affix = "", "(50-70)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-70)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger12"] = { affix = "", "(20-40)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-40)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique13"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8"] = { affix = "", "(30-50)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(30-50)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword12"] = { affix = "", "(20-50)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-50)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace6"] = { affix = "", "(300-360)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-360)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace7"] = { affix = "", "(160-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace8"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueStaff14"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueSceptre2"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__1"] = { affix = "", "(110-130)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-130)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__2"] = { affix = "", "(100-125)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-125)% increased Physical Damage" }, } }, + ["LocalIncreasedPhyiscalDamagePercentUnique__3"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__5"] = { affix = "", "(140-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__6"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__7"] = { affix = "", "(130-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__8"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__9"] = { affix = "", "(170-190)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-190)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__10"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-120)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__11_"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__12"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-100)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__13"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__14"] = { affix = "", "(35-50)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-50)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__15"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__16"] = { affix = "", "(260-310)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(260-310)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__17_"] = { affix = "", "(170-190)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-190)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__18"] = { affix = "", "(220-250)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(220-250)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__19"] = { affix = "", "(400-450)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(400-450)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__20"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__21"] = { affix = "", "(160-190)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(160-190)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__22"] = { affix = "", "(230-270)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-270)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__23"] = { affix = "", "(200-240)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-240)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__24"] = { affix = "", "(280-320)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(280-320)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__25"] = { affix = "", "(170-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__26"] = { affix = "", "100% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "100% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__27"] = { affix = "", "(140-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__28__"] = { affix = "", "(150-170)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-170)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__29"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__30"] = { affix = "", "(185-215)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(185-215)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__31"] = { affix = "", "(180-220)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-220)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__33"] = { affix = "", "(140-152)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-152)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__34___"] = { affix = "", "(180-210)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-210)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__35"] = { affix = "", "(180-210)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-210)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__36_"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__37__"] = { affix = "", "(130-150)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-150)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__38"] = { affix = "", "(165-195)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(165-195)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__39"] = { affix = "", "(175-200)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(175-200)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__40"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__41___"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(140-180)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__42"] = { affix = "", "(230-260)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(230-260)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__43"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-250)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__44"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__45"] = { affix = "", "(700-800)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(700-800)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__46"] = { affix = "", "(150-180)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-180)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__47"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-350)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__48"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-140)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__49"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__50"] = { affix = "", "(150-250)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-250)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__52"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__53"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-300)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__54"] = { affix = "", "(180-240)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(180-240)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__55"] = { affix = "", "(130-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(130-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__56"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__57"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__58"] = { affix = "", "(90-130)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(90-130)% increased Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUniqueTwoHandSword6"] = { affix = "", "No Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUniqueWand6"] = { affix = "", "No Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUniqueOneHandSword7"] = { affix = "", "No Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUnique__1"] = { affix = "", "No Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, + ["LocalReducedPhysicalDamagePercentUnique__2"] = { affix = "", "No Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, + ["IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1"] = { affix = "", "100% increased Damage when on Low Life", statOrder = { 1238 }, level = 1, group = "PhysicalDamagePercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "100% increased Damage when on Low Life" }, } }, + ["ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "50% reduced Damage when on Low Life", statOrder = { 1238 }, level = 1, group = "PhysicalDamagePercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "50% reduced Damage when on Low Life" }, } }, + ["LocalAddedPhysicalDamageUniqueBow1"] = { affix = "", "Adds (7-14) to (24-34) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-14) to (24-34) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 6 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueClaw3"] = { affix = "", "Adds 25 to 30 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 25 to 30 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageOneHandAxe1"] = { affix = "", "Adds 30 to 40 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 30 to 40 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (49-98) to (101-140) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDescentDagger1"] = { affix = "", "Adds 1 to 4 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 4 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 4 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDescentStaff1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to 4 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDagger2"] = { affix = "", "Adds 12 to 24 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 12 to 24 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDagger8"] = { affix = "", "Adds (140-155) to (210-235) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (140-155) to (210-235) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueSceptre7"] = { affix = "", "Adds (65-85) to (100-160) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-85) to (100-160) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandSword9"] = { affix = "", "Adds (30-50) to (65-80) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-50) to (65-80) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandSword10"] = { affix = "", "Adds (3-6) to (33-66) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-6) to (33-66) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueBow11"] = { affix = "", "Adds (12-16) to (20-24) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (12-16) to (20-24) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDagger11"] = { affix = "", "Adds (1-2) to (3-5) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (3-5) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueDagger12"] = { affix = "", "Adds (3-6) to (9-13) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-6) to (9-13) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueClaw9"] = { affix = "", "Adds (2-6) to (16-22) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-6) to (16-22) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-15) to (20-25) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe8"] = { affix = "", "Adds (5-9) to (13-17) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-9) to (13-17) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandSword12"] = { affix = "", "Adds (3-4) to (5-8) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-8) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandSword13"] = { affix = "", "Adds (5-8) to (10-14) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-14) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandMace8"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 10 to 15 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique14"] = { affix = "", "Adds (10-16) to (12-30) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-16) to (12-30) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage__1"] = { affix = "", "Adds (7-10) to (15-25) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-10) to (15-25) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (25-50) to (85-125) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-50) to (85-125) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds 20 to 50 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 20 to 50 Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__4"] = { affix = "", "Adds (18-22) to (36-44) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (18-22) to (36-44) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__5"] = { affix = "", "Adds (8-12) to (16-24) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (16-24) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (26-32) to (36-42) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-32) to (36-42) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageUnique__7_"] = { affix = "", "Adds (75-92) to (125-154) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (75-92) to (125-154) Physical Damage" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1"] = { affix = "", "60% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "60% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueIntHelmet1"] = { affix = "", "+(150-225) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-225) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueBootsInt1"] = { affix = "", "+(5-30) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(5-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueShieldInt1"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueShieldInt2"] = { affix = "", "(40-80)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-80)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueBodyInt8"] = { affix = "", "(125-150)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(125-150)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBootsInt2"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-20) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt1"] = { affix = "", "+18 to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+18 to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt2"] = { affix = "", "+32 to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+32 to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt4"] = { affix = "", "50% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "50% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBootsInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBodyInt1"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBodyInt3"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(210-250)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBodyInt4"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueBootsInt5"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(140-180)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBodyInt7"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt5"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "(180-250)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-250)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueGlovesDexInt3"] = { affix = "", "+(25-30) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt5_"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt6"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt7"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-150)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueShieldInt3"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g"] = { affix = "", "(270-300)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(270-300)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt10"] = { affix = "", "(130-170)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(130-170)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueBootsInt6"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(50-80)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent__1"] = { affix = "", "(250-300)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(250-300)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent__2"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(210-250)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent___3"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-160)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique___4_"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__6"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-100)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__7"] = { affix = "", "(170-230)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(170-230)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__8"] = { affix = "", "(475-600)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(475-600)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__9"] = { affix = "", "(240-260)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(240-260)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__10"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__11"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-120)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__12"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-150)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__13"] = { affix = "", "(0-200)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(0-200)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__14"] = { affix = "", "(130-150)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(130-150)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__15_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__16"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-180)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__17"] = { affix = "", "(120-140)% increased Energy Shield", statOrder = { 1582 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(120-140)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__18"] = { affix = "", "(220-250)% increased Energy Shield", statOrder = { 1582 }, level = 82, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(220-250)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__19"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-220)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__20_"] = { affix = "", "(100-130)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-130)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__21"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-220)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__22"] = { affix = "", "(200-230)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-230)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__23"] = { affix = "", "(240-280)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(240-280)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__24"] = { affix = "", "(180-230)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(180-230)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__25_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__26"] = { affix = "", "(60-80)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-80)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__27"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-120)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__28__"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-150)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__29"] = { affix = "", "(80-130)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-130)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__30___"] = { affix = "", "(300-350)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(300-350)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__31____"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(140-180)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__32"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__33"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-250)% increased Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentUniqueOneHandSword2"] = { affix = "", "(40-50)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% increased maximum Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrInt1"] = { affix = "", "60% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "60% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1"] = { affix = "", "+(75-100) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(75-100) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1"] = { affix = "", "+(10-20) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(10-20) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-150)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(35-45) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3"] = { affix = "", "+(200-300) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(200-300) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(20-40) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2"] = { affix = "", "+(180-220) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(180-220) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5"] = { affix = "", "+(400-600) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(400-600) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3"] = { affix = "", "(200-220)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-220)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a"] = { affix = "", "(380-420)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(380-420)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1"] = { affix = "", "+(100-150) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-150) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-140)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique6"] = { affix = "", "(90-140)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(90-140)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique7"] = { affix = "", "(120-180)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-180)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_"] = { affix = "", "(90-150)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(90-150)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "+(120-160) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(120-160) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3"] = { affix = "", "(350-400)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-400)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4"] = { affix = "", "100% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "100% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5"] = { affix = "", "(165-205)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(165-205)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11"] = { affix = "", "(130-150)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(130-150)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13"] = { affix = "", "(0-200)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(0-200)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__17"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-200)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18"] = { affix = "", "(150-180)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-180)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-80)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-80)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-150)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25"] = { affix = "", "(150-250)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-250)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(60-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__30"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-150)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__32"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-140)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33"] = { affix = "", "(100-160)% increased Armour", statOrder = { 1564 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-160)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(50-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35"] = { affix = "", "(150-230)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(150-230)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED"] = { affix = "", "(120-200)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-200)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-120)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38"] = { affix = "", "(120-240)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(120-240)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1"] = { affix = "", "+2000 to Armour", statOrder = { 1562 }, level = 38, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+2000 to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(100-120) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(100-120) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(200-250)% increased Armour" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex1"] = { affix = "", "(140-220)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(140-220)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueDexHelmet2"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-120)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex1"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-50) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueShieldDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex3"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex2"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex3"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex4"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(50-70)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex3"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueShieldDex3"] = { affix = "", "(180-200)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(180-200)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex2"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex5"] = { affix = "", "(200-250)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-250)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(35-45) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex6"] = { affix = "", "150% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "150% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUniqueBodyDex6"] = { affix = "", "+(240-380) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(240-380) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex6"] = { affix = "", "(200-240)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(200-240)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-30) to Evasion Rating" }, } }, + ["LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3"] = { affix = "", "(180-220)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(180-220)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionRatingUnique__1"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex6"] = { affix = "", "(160-200)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(160-200)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex4"] = { affix = "", "+(40-60) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-60) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUniqueBodyDex7"] = { affix = "", "+(120-180) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(120-180) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUnique__1"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(100-150) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUnique__2"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(600-700) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUnique__3"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(400-500) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUnique__4"] = { affix = "", "+(350-500) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(350-500) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUnique__5"] = { affix = "", "+(80-120) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(80-120) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueShieldDex4"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(30-50)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5"] = { affix = "", "(150-180)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-180)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex7"] = { affix = "", "180% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "180% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c"] = { affix = "", "(380-420)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(380-420)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueShieldDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvationRatingPercentUniqueBootsDex9"] = { affix = "", "(20-40)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(20-40)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__1"] = { affix = "", "(160-220)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(160-220)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__3"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-120)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__4"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(150-200)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__6"] = { affix = "", "(300-340)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(300-340)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__7"] = { affix = "", "(100-130)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-130)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__8"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__9"] = { affix = "", "(130-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(130-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__10"] = { affix = "", "(0-200)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(0-200)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__11"] = { affix = "", "(450-500)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(450-500)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__13"] = { affix = "", "(110-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(110-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__14"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(120-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__15_"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-80)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__16"] = { affix = "", "(60-120)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-120)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__17"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(120-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__18"] = { affix = "", "(170-250)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(170-250)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__19"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(60-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__20"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercentUnique__21"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(100-150)% increased Evasion Rating" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2"] = { affix = "", "(120-150)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-150)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1"] = { affix = "", "(20-60)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(20-60)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2"] = { affix = "", "(180-220)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(180-220)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4"] = { affix = "", "(300-400)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(300-400)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt5"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-300)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3"] = { affix = "", "(140-160)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-160)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4"] = { affix = "", "(120-140)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-140)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt6"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-220)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1h"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-220)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5"] = { affix = "", "(220-240)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(220-240)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3"] = { affix = "", "(160-180)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(160-180)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2"] = { affix = "", "(150-180)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-180)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-100)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6"] = { affix = "", "(70-80)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-80)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__1"] = { affix = "", "(400-500)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(400-500)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-170)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt7"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-170)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__2"] = { affix = "", "(50-75)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-75)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__3"] = { affix = "", "(140-190)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-190)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__4"] = { affix = "", "200% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "200% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__5"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__6"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(240-300)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__7"] = { affix = "", "(60-140)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(60-140)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__8"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-250)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__9_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__10_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-180)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__11"] = { affix = "", "(150-190)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-190)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__12"] = { affix = "", "(140-220)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(140-220)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__13_"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__14"] = { affix = "", "(250-300)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(250-300)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__15"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__16"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__17_"] = { affix = "", "(100-140)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-140)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__18_"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(200-250)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__19"] = { affix = "", "333% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "333% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__20"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__21"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__22"] = { affix = "", "1000% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "1000% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__23_"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(70-130)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__24"] = { affix = "", "(120-160)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-160)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__25"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__26"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-250)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__27"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-120)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__28"] = { affix = "", "(50-70)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(50-70)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUnique__30"] = { affix = "", "(40-80)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 97, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(40-80)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-60)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex1"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueBootsStrDex3"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex2"] = { affix = "", "(90-120)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-120)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-80)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4"] = { affix = "", "(120-140)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-140)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b"] = { affix = "", "(200-220)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-220)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex4"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(160-200)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6"] = { affix = "", "(90-110)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-110)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex3"] = { affix = "", "(90-130)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(90-130)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex4"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex5"] = { affix = "", "(170-250)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(170-250)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__1"] = { affix = "", "(120-160)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-160)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__2"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__3_"] = { affix = "", "(40-70)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(40-70)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__4"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__5_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__6"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__8_"] = { affix = "", "(100-140)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-140)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__9"] = { affix = "", "(170-200)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(170-200)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__10_"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__11"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__12"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__13"] = { affix = "", "(150-300)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-300)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__14"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__15_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__16__"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__17_"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-200)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__18"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-300)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__19_"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__20"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(200-250)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__22"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__23"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__24"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__25"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(60-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-150)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__27"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-120)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__28"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(160-200)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasionUnique__29"] = { affix = "", "(100-200)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(100-200)% increased Armour and Evasion" }, } }, + ["LocalBaseArmourAndEvasionRatingUnique__1"] = { affix = "", "+(50-100) to Armour", "+(50-100) to Evasion Rating", statOrder = { 1562, 1570 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(50-100) to Armour" }, [53045048] = { "+(50-100) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(300-400)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-220)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-220)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "(245-280)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(245-280)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6"] = { affix = "", "(100-130)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-130)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3"] = { affix = "", "(220-250)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(220-250)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt18"] = { affix = "", "(120-160)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 58, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-160)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "(120-140)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-140)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__2"] = { affix = "", "(90-110)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(90-110)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__3"] = { affix = "", "(230-260)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(230-260)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__4"] = { affix = "", "(140-170)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-170)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__5"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-180)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__6_"] = { affix = "", "(100-120)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-120)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__7"] = { affix = "", "(130-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(130-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__8"] = { affix = "", "(80-100)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-100)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__9"] = { affix = "", "(500-600)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(500-600)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__10"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__11_"] = { affix = "", "(160-180)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-180)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__12"] = { affix = "", "(180-220)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(180-220)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__13"] = { affix = "", "(120-170)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-170)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__14"] = { affix = "", "(160-200)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-200)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__15"] = { affix = "", "(260-300)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(260-300)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__16"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__17"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__18"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__19___"] = { affix = "", "(250-300)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(250-300)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__20"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(300-400)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__21_"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__22"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-180)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__23"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(200-250)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__24"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__25"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__26"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__27"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__28"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-120)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__29"] = { affix = "", "(350-400)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(350-400)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__30_"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(400-500)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__31"] = { affix = "", "(120-200)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-200)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__32_"] = { affix = "", "(160-220)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(160-220)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__33"] = { affix = "", "(140-160)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(140-160)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__34"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__35"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-200)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__36"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-150)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__37"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-120)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__39"] = { affix = "", "(120-160)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-160)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourEvasionEnergyShieldUnique__1_"] = { affix = "", "(250-350)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(250-350)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2"] = { affix = "", "+(30-50) to maximum Energy Shield", "(10-15)% increased Stun and Block Recovery", statOrder = { 1581, 1925 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-15)% increased Stun and Block Recovery" }, [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3"] = { affix = "", "(100-140)% increased Energy Shield", "(150-200)% increased Stun and Block Recovery", statOrder = { 1582, 1925 }, level = 1, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(100-140)% increased Energy Shield" }, [2511217560] = { "(150-200)% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1"] = { affix = "", "+(100-120) to maximum Energy Shield", "(30-40)% increased Stun and Block Recovery", statOrder = { 1581, 1925 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, [4052037485] = { "+(100-120) to maximum Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2"] = { affix = "", "(100-120)% increased Armour", "10% increased Stun and Block Recovery", statOrder = { 1564, 1925 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(100-120)% increased Armour" }, [2511217560] = { "10% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1"] = { affix = "", "(180-220)% increased Armour", "20% increased Stun and Block Recovery", statOrder = { 1564, 1925 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(180-220)% increased Armour" }, [2511217560] = { "20% increased Stun and Block Recovery" }, } }, + ["LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1"] = { affix = "", "70% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "70% increased Evasion Rating" }, } }, + ["LocalAddedFireDamageUniqueTwoHandAxe1"] = { affix = "", "Adds (16-21) to (32-38) Fire Damage", statOrder = { 1386 }, level = 37, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (16-21) to (32-38) Fire Damage" }, } }, + ["LocalAddedFireDamageUniqueRapier1"] = { affix = "", "Adds 3 to 7 Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 3 to 7 Fire Damage" }, } }, + ["LocalAddedFireDamageUniqueBow6"] = { affix = "", "Adds 25 to 50 Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 25 to 50 Fire Damage" }, } }, + ["LocalAddedFireDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (49-98) to (101-140) Fire Damage" }, } }, + ["LocalAddedFireDamageUniqueTwoHandSword6"] = { affix = "", "Adds (425-475) to (550-600) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (425-475) to (550-600) Fire Damage" }, } }, + ["LocalAddedFireDamageUniqueDescentOneHandMace1"] = { affix = "", "Adds 3 to 6 Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 3 to 6 Fire Damage" }, } }, + ["LocalAddedFireDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (10-15) to (20-25) Fire Damage" }, } }, + ["LocalAddedFireDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (5-15) to (20-25) Fire Damage" }, } }, + ["LocalAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds 100 to 100 Fire Damage" }, } }, + ["LocalAddedFireDamageUnique__2"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (38-46) Fire Damage" }, } }, + ["LocalAddedFireDamageUnique__3"] = { affix = "", "Adds (315-360) to (450-540) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (315-360) to (450-540) Fire Damage" }, } }, + ["LocalAddedFireDamageUnique__4"] = { affix = "", "Adds (223-250) to (264-280) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (223-250) to (264-280) Fire Damage" }, } }, + ["LocalAddedFireDamageUnique__5__"] = { affix = "", "Adds (130-160) to (220-240) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (130-160) to (220-240) Fire Damage" }, } }, + ["LocalAddedFireDamageUnique__6"] = { affix = "", "Adds (30-45) to (60-80) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-45) to (60-80) Fire Damage" }, } }, + ["LocalAddedFireDamageUnique__7"] = { affix = "", "Adds (76-98) to (161-176) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (76-98) to (161-176) Fire Damage" }, } }, + ["LocalAddedFireDamageUnique__8"] = { affix = "", "Adds (180-230) to (310-360) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (180-230) to (310-360) Fire Damage" }, } }, + ["LocalAddedFireDamageImplicitE1_"] = { affix = "", "Adds (46-55) to (69-83) Fire Damage", statOrder = { 1386 }, level = 30, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (46-55) to (69-83) Fire Damage" }, } }, + ["LocalAddedFireDamageImplicitE2_"] = { affix = "", "Adds (80-97) to (126-144) Fire Damage", statOrder = { 1386 }, level = 50, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (80-97) to (126-144) Fire Damage" }, } }, + ["LocalAddedFireDamageImplicitE3_"] = { affix = "", "Adds (121-133) to (184-197) Fire Damage", statOrder = { 1386 }, level = 70, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (121-133) to (184-197) Fire Damage" }, } }, + ["LocalAddedColdDamageUniqueTwoHandMace2"] = { affix = "", "Adds 11 to 23 Cold Damage", statOrder = { 1395 }, level = 19, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 11 to 23 Cold Damage" }, } }, + ["LocalAddedColdDamageUniqueTwoHandSword2"] = { affix = "", "Adds 35 to 70 Cold Damage", statOrder = { 1395 }, level = 18, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 35 to 70 Cold Damage" }, } }, + ["LocalAddedColdDamageUniqueClaw5"] = { affix = "", "Adds 25 to 50 Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 25 to 50 Cold Damage" }, } }, + ["LocalAddedColdDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (49-98) to (101-140) Cold Damage" }, } }, + ["LocalAddedColdDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 2 to 4 Cold Damage" }, } }, + ["LocalAddedColdDamageUniqueOneHandMace4_"] = { affix = "", "Adds (10-20) to (30-50) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-20) to (30-50) Cold Damage" }, } }, + ["LocalAddedColdDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-15) to (20-25) Cold Damage" }, } }, + ["LocalAddedColdDamageUniqueStaff14"] = { affix = "", "Adds (25-35) to (45-60) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-35) to (45-60) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds 100 to 100 Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__2"] = { affix = "", "Adds (26-32) to (36-42) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-32) to (36-42) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__3"] = { affix = "", "Adds (30-38) to (40-50) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (30-38) to (40-50) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__4"] = { affix = "", "Adds (180-210) to (240-280) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (180-210) to (240-280) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__5"] = { affix = "", "Adds (80-100) to (160-200) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (80-100) to (160-200) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__6_"] = { affix = "", "Adds (310-350) to (460-500) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (310-350) to (460-500) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__7"] = { affix = "", "Adds (160-190) to (280-320) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (160-190) to (280-320) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__8"] = { affix = "", "Adds (130-150) to (270-300) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (130-150) to (270-300) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__9_"] = { affix = "", "Adds (385-440) to (490-545) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (385-440) to (490-545) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__10"] = { affix = "", "Adds (150-200) to (300-350) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (150-200) to (300-350) Cold Damage" }, } }, + ["LocalAddedColdDamageUnique__11"] = { affix = "", "Adds (164-204) to (250-300) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (164-204) to (250-300) Cold Damage" }, } }, + ["LocalAddedLightningDamageUniqueOneHandSword3"] = { affix = "", "Adds 1 to (210-250) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (210-250) Lightning Damage" }, } }, + ["LocalAddedLightningDamageUniqueBow10"] = { affix = "", "Adds 1 to (600-750) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (600-750) Lightning Damage" }, } }, + ["LocalAddedLightningDamageUniqueDescentTwoHandSword1_"] = { affix = "", "Adds 1 to 9 Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 9 Lightning Damage" }, } }, + ["LocalAddedLightningDamageUniqueOneHandSword7"] = { affix = "", "Adds 1 to (40-50) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (40-50) Lightning Damage" }, } }, + ["LocalAddedLightningDamageUniqueStaff14"] = { affix = "", "Adds (1-10) to (70-90) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (70-90) Lightning Damage" }, } }, + ["LocalAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 100 to 100 Lightning Damage" }, } }, + ["LocalAddedLightningDamageUnique__2"] = { affix = "", "Adds 1 to (35-45) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (35-45) Lightning Damage" }, } }, + ["LocalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (45-55) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (45-55) Lightning Damage" }, } }, + ["LocalAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (50-60) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (50-60) Lightning Damage" }, } }, + ["LocalAddedLightningDamageUnique__5"] = { affix = "", "Adds 1 to (60-70) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (60-70) Lightning Damage" }, } }, + ["LocalAddedLightningDamageUnique__6"] = { affix = "", "Adds 1 to 75 Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 75 Lightning Damage" }, } }, + ["LocalAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (550-600) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (550-600) Lightning Damage" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercentUniqueJewel50"] = { affix = "", "(15-20)% increased Armour", statOrder = { 1563 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(10-15)% increased Armour", statOrder = { 1563 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-15)% increased Armour" }, } }, + ["IncreasedEvasionRatingPercentUnique__1_"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1571 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(60-100)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(15-25)% increased Evasion Rating", statOrder = { 1571 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, + ["IncreasedEnergyShieldPercentUniqueJewel51"] = { affix = "", "(3-6)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(3-6)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentUnique__1"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "20% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentUnique__2_"] = { affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentUnique__3"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-10)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentUnique__4"] = { affix = "", "5% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "5% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-10)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercentUnique__6"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "20% increased maximum Energy Shield" }, } }, + ["ReducedEnergyShieldPercentUniqueAmulet13"] = { affix = "", "50% reduced maximum Energy Shield", statOrder = { 1583 }, level = 20, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "50% reduced maximum Energy Shield" }, } }, + ["ReducedEnergyShieldPercentUniqueRing16"] = { affix = "", "25% reduced maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "25% reduced maximum Energy Shield" }, } }, + ["IncreasedEvasionRatingUniqueQuiver1"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUniqueAmulet7"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(100-150) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUniqueRapier1"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(20-40) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUniqueOneHandSword4"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(400-500) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUniqueAmulet17"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUniqueQuiver3_"] = { affix = "", "+350 to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+350 to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUniqueOneHandSword9"] = { affix = "", "+(180-200) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(180-200) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUniqueRing30"] = { affix = "", "+(200-300) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(200-300) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUnique___1"] = { affix = "", "+110 to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+110 to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUnique__2"] = { affix = "", "+300 to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+300 to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUnique__3"] = { affix = "", "+(1000-1500) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(1000-1500) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUnique__4"] = { affix = "", "+(300-500) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(300-500) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUnique__5_"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(600-700) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUnique__6_"] = { affix = "", "+(600-1000) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(600-1000) to Evasion Rating" }, } }, + ["IncreasedEvasionRatingUnique__7"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-100) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUniqueBodyInt5"] = { affix = "", "+(30-60) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-60) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUniqueBootsDex8"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-50) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-40) to Evasion Rating" }, } }, + ["IncreasedPhysicalDamageReductionRatingUniqueRing12"] = { affix = "", "+(260-300) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(260-300) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUniqueAmulet16"] = { affix = "", "+(400-500) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-500) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUniqueQuiver4"] = { affix = "", "+(400-450) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-450) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUniqueBelt9"] = { affix = "", "+(300-350) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(300-350) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUniqueJewel9"] = { affix = "", "+50 to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+50 to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(450-500) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(450-500) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__3"] = { affix = "", "+(400-500) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-500) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "+(260-300) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(260-300) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__4"] = { affix = "", "+(350-400) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(350-400) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__5"] = { affix = "", "+(180-200) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(180-200) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__6_"] = { affix = "", "+(800-1200) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(800-1200) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__7"] = { affix = "", "+(600-700) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(600-700) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__8"] = { affix = "", "+(300-500) to Armour", statOrder = { 1561 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(300-500) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__9"] = { affix = "", "+(80-100) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(80-100) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__10"] = { affix = "", "+(600-1000) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(600-1000) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__11"] = { affix = "", "+(200-400) to Armour", statOrder = { 1561 }, level = 98, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(200-400) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingUnique__12"] = { affix = "", "+(400-600) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(400-600) to Armour" }, } }, + ["MovementVelocityMarakethBowImplicit1"] = { affix = "", "6% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, + ["MovementVelocityMarakethBowImplicit2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityImplicitShield1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, + ["MovementVelocityImplicitShield2"] = { affix = "", "6% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } }, + ["MovementVelocityImplicitShield3"] = { affix = "", "9% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } }, + ["MovementVelocityUniqueTwoHandSword1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueAmulet5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueIntHelmet2"] = { affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsInt1"] = { affix = "", "(10-25)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-25)% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsStrDex1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsInt2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsDexInt1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsStr1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUniqueGlovesStrDex2"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, + ["MovementVelocityUniqueShieldStr1"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, + ["MovementVelocityImplicitArmour1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, + ["MovementVelocityUniqueTwoHandSword3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueHelmetStrDex2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUniqueTwoHandMace3"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, + ["MovementVelocityUniqueBootsDex1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsDex2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsInt4"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-15)% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBow7"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBodyDex4"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueHelmetStrDex1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueClaw3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBodyDex5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsInt5"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUniqueHelmetDex6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueHelmetInt6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVeolcityUniqueAmulet12"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, + ["MovementVeolcityUniqueBootsDex4"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVeolcityUniqueBodyDex6"] = { affix = "", "25% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% reduced Movement Speed" }, } }, + ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUnique___6"] = { affix = "", "50% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "50% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsDexInt2"] = { affix = "", "15% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityDescent2Boots1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsStrDex4"] = { affix = "", "15% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBodyDex7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsStrDex3"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUniqueOneHandAxe3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsStrInt2_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsDex7"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsA1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsW1"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUniqueOneHandSword9"] = { affix = "", "3% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsStrInt3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityVictorAmulet"] = { affix = "", "(3-6)% increased Movement Speed", statOrder = { 1821 }, level = 16, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBodyStrDex5_"] = { affix = "", "15% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBodyStr5"] = { affix = "", "20% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% reduced Movement Speed" }, } }, + ["MovementVelocityUniqueAmulet20"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, + ["MovementVelocityUniqueJewel43"] = { affix = "", "4% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "4% increased Movement Speed" }, } }, + ["MovementVelocityUniqueOneHandAxe7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsDexInt4"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsStrDex5"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsStr3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUniqueBootsInt6"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__2"] = { affix = "", "(5-10)% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% reduced Movement Speed" }, } }, + ["MovementVelocityUnique__3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["MovementVelocityUnique__4"] = { affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["MovementVelocityUnique___5"] = { affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["MovementVelocityUnique__7"] = { affix = "", "15% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityUnique__8"] = { affix = "", "15% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityUnique__9_"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__10"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__11"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__12"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__13"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUnique__14"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__15"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__16"] = { affix = "", "15% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityUnique__17__"] = { affix = "", "15% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityUnique__18"] = { affix = "", "15% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocityUnique__19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-20)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__20_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__21"] = { affix = "", "(1-40)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-40)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__22"] = { affix = "", "(0-40)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(0-40)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__24"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__25"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUnique__26"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__27"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUnique__28"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__29"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__30"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUnique__31"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__32"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__33_"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__34"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__35"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__36_"] = { affix = "", "(5-8)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-8)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__37"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUnique__38"] = { affix = "", "(1-20)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-20)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__39_"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__40"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__42"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocityUnique__43"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocityUnique__44"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-10)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__45"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__46"] = { affix = "", "(8-12)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-12)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__47_"] = { affix = "", "20% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocityUnique__48"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__49"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__50"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__51"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__52"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, + ["MovementVelocityUnique__53"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(20-30)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__54"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocityUnique__56"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__57"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(15-25)% increased Movement Speed" }, } }, + ["MovementVelocityUnique__58"] = { affix = "", "5% increased Movement Speed", statOrder = { 1821 }, level = 100, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, + ["ReducedMovementVelocityUnique__1"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, + ["ReducedMovementVelocityUnique__2"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% reduced Movement Speed" }, } }, + ["ReducedMovementVelocityUnique__3"] = { affix = "", "3% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "3% reduced Movement Speed" }, } }, + ["ReducedMovementVelocityUniqueOneHandMace7"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% reduced Movement Speed" }, } }, + ["ReducedMovementVelocityUniqueCorruptedJewel2_"] = { affix = "", "15% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% reduced Movement Speed" }, } }, + ["SpellDamageImplicitShield1"] = { affix = "", "(5-10)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-10)% increased Spell Damage" }, } }, + ["SpellDamageImplicitShield2"] = { affix = "", "(10-15)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-15)% increased Spell Damage" }, } }, + ["SpellDamageImplicitShield3"] = { affix = "", "(15-20)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-20)% increased Spell Damage" }, } }, + ["SpellDamageImplicitArmour1"] = { affix = "", "(3-10)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-10)% increased Spell Damage" }, } }, + ["SpellDamageImplicitGloves1"] = { affix = "", "(12-16)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(12-16)% increased Spell Damage" }, } }, + ["SpellDamageUniqueHelmetDexInt1"] = { affix = "", "(15-30)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-30)% increased Spell Damage" }, } }, + ["SpellDamageUniqueGlovesInt2"] = { affix = "", "100% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, + ["SpellDamageUniqueShieldInt1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, + ["SpellDamageUniqueShieldStrInt1"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, + ["SpellDamageUniqueWand1"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, + ["SpellDamageUniqueStaff2"] = { affix = "", "(50-60)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } }, + ["SpellDamageUniqueSceptre2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, + ["SpellDamageUniqueBodyInt7"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, + ["SpellDamageUniqueSceptre5"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, + ["SpellDamageUniqueDescentWand1"] = { affix = "", "20% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "20% increased Spell Damage" }, } }, + ["SpellDamageUniqueWand4"] = { affix = "", "(20-28)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-28)% increased Spell Damage" }, } }, + ["SpellDamageUniqueStaff6"] = { affix = "", "(120-160)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-160)% increased Spell Damage" }, } }, + ["SpellDamageUniqueWand7"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, + ["SpellDamageUniqueHelmetInt8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, + ["SpellDamageUniqueDagger10"] = { affix = "", "(40-60)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-60)% increased Fire Damage" }, } }, + ["SpellDamageUniqueStaff12"] = { affix = "", "(50-70)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-70)% increased Spell Damage" }, } }, + ["SpellDamageUniqueStaff11_"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, + ["SpellDamageUniqueCorruptedJewel3_"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, + ["SpellDamageUniqueRing35"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, + ["SpellDamageUnique__2"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-80)% increased Spell Damage" }, } }, + ["SpellDamageUnique__3"] = { affix = "", "40% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "40% increased Spell Damage" }, } }, + ["SpellDamageUnique__4"] = { affix = "", "(20-45)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-45)% increased Spell Damage" }, } }, + ["SpellDamageUnique__5"] = { affix = "", "(75-90)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-90)% increased Spell Damage" }, } }, + ["SpellDamageUnique__6"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, + ["SpellDamageUnique__7"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-50)% increased Spell Damage" }, } }, + ["SpellDamageUnique__8_"] = { affix = "", "(100-140)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-140)% increased Spell Damage" }, } }, + ["SpellDamageUnique__9"] = { affix = "", "(70-100)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-100)% increased Spell Damage" }, } }, + ["SpellDamageUnique__10"] = { affix = "", "(30-50)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-50)% increased Spell Damage" }, } }, + ["SpellDamageUnique__11"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1246 }, level = 85, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, + ["SpellDamageUnique__12"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, + ["SpellDamageUnique__13"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } }, + ["SpellDamageUnique__14"] = { affix = "", "(30-60)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-60)% increased Spell Damage" }, } }, + ["SpellDamageUnique__15"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, + ["SpellDamageUnique__16"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-40)% increased Spell Damage" }, } }, + ["SpellDamageUnique__17"] = { affix = "", "(100-150)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-150)% increased Spell Damage" }, } }, + ["SpellDamageUnique__18"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-80)% increased Spell Damage" }, } }, + ["SpellDamageUnique__19"] = { affix = "", "(30-50)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-50)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponUniqueDagger1"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponUniqueStaff38"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-200)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponUniqueDagger4"] = { affix = "", "(60-70)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-70)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponUniqueWand3"] = { affix = "", "50% reduced Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "50% reduced Spell Damage" }, } }, + ["SpellDamageOnWeaponUniqueTwoHandAxe9"] = { affix = "", "(100-200)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-200)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand1"] = { affix = "", "(8-12)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand2"] = { affix = "", "(10-14)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand3"] = { affix = "", "(11-15)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(11-15)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand4"] = { affix = "", "(13-17)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand5"] = { affix = "", "(15-19)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand6"] = { affix = "", "(17-21)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-21)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand7"] = { affix = "", "(18-22)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand8"] = { affix = "", "(20-24)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand9"] = { affix = "", "(22-26)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-26)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand10"] = { affix = "", "(24-28)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(24-28)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand11"] = { affix = "", "(26-30)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-30)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand12"] = { affix = "", "(27-31)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-31)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand13"] = { affix = "", "(30-34)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand14"] = { affix = "", "(31-35)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand15"] = { affix = "", "(33-37)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(33-37)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand16"] = { affix = "", "(35-39)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand17"] = { affix = "", "(36-40)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(36-40)% increased Spell Damage" }, } }, + ["SpellDamageOnWeaponImplicitWand18"] = { affix = "", "(38-42)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-42)% increased Spell Damage" }, } }, + ["TrapThrowingSpeedUnique_1"] = { affix = "", "(6-12)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-12)% increased Trap Throwing Speed" }, } }, + ["NumberOfAdditionalTrapsUnique_1"] = { affix = "", "Can have up to (3-5) additional Traps placed at a time", statOrder = { 2278 }, level = 1, group = "NumberOfAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to (3-5) additional Traps placed at a time" }, } }, + ["GraspFromBeyondTrapUnique_1"] = { affix = "", "Grants Level 30 Will of the Lords Skill", statOrder = { 706 }, level = 85, group = "GrantsBreachHandTrap", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [608058997] = { "Grants Level 30 Will of the Lords Skill" }, } }, + ["HeraldOfTheBreachUnique_1"] = { affix = "", "Grants Level 30 Herald of the Hive Skill", statOrder = { 724 }, level = 53, group = "GrantsHeraldOfTheBreach", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3610535490] = { "Grants Level 30 Herald of the Hive Skill" }, } }, + ["SoulcordDiamondShrineUnique_1"] = { affix = "", "You have Diamond Shrine Buff while affected by no Flasks", statOrder = { 603 }, level = 70, group = "SoulcordDiamondShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1962944794] = { "You have Diamond Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, + ["SoulcordGloomShrineUnique__1"] = { affix = "", "You have Gloom Shrine Buff while affected by no Flasks", statOrder = { 605 }, level = 70, group = "SoulcordGloomShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [1525347447] = { "You have Gloom Shrine Buff while affected by no Flasks" }, } }, + ["SoulcordAccelerationShrineUnique__1"] = { affix = "", "You have Acceleration Shrine Buff while affected by no Flasks", statOrder = { 600 }, level = 70, group = "SoulcordAccelerationShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [845062586] = { "You have Acceleration Shrine Buff while affected by no Flasks" }, } }, + ["SoulcordEchoingShrineUnique__1"] = { affix = "", "You have Echoing Shrine Buff while affected by no Flasks", statOrder = { 604 }, level = 70, group = "SoulcordEchoingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1941745370] = { "You have Echoing Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, + ["SoulcordMassiveShrineUnique_1"] = { affix = "", "You have Massive Shrine Buff while affected by no Flasks", statOrder = { 607 }, level = 70, group = "SoulcordMassiveShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [3810260531] = { "You have Massive Shrine Buff while affected by no Flasks" }, } }, + ["SoulcordResonatingShrineUnique_1"] = { affix = "", "You have Resonating Shrine Buff while affected by no Flasks", statOrder = { 610 }, level = 70, group = "SoulcordResonatingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "" }, [736980450] = { "You have Resonating Shrine Buff while affected by no Flasks" }, } }, + ["SoulcordBrutalShrineUnique_1"] = { affix = "", "You have Brutal Shrine Buff while affected by no Flasks", statOrder = { 601 }, level = 70, group = "SoulcordBrutalShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1665800734] = { "You have Brutal Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, + ["SoulcordReplenishingShrineUnique_1"] = { affix = "", "You have Replenishing Shrine Buff while affected by no Flasks", statOrder = { 608 }, level = 70, group = "SoulcordReplenishingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2752009372] = { "You have Replenishing Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, + ["SoulcordImpenetrableShrineUnique_1"] = { affix = "", "You have Impenetrable Shrine Buff while affected by no Flasks", statOrder = { 606 }, level = 70, group = "SoulcordImpenetrableShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1451444229] = { "You have Impenetrable Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, + ["SoulcordResistanceShrineUnique_1"] = { affix = "", "You have Resistance Shrine Buff while affected by no Flasks", statOrder = { 609 }, level = 70, group = "SoulcordResistanceShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3934633832] = { "You have Resistance Shrine Buff while affected by no Flasks" }, [1939175721] = { "" }, } }, + ["SoulcordShockingShrineUnique_1"] = { affix = "", "You have Greater Shocking Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 611, 2846 }, level = 70, group = "SoulcordShockingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, [1838429243] = { "You have Greater Shocking Shrine Buff while affected by no Flasks" }, } }, + ["SoulcordSkeletonShrineUnique_1"] = { affix = "", "You have Greater Skeletal Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 612, 2846 }, level = 70, group = "SoulcordSkeletonShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, [3878995435] = { "You have Greater Skeletal Shrine Buff while affected by no Flasks" }, } }, + ["SoulcordChillingShrineUnique_1"] = { affix = "", "You have Greater Freezing Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 602, 2846 }, level = 70, group = "SoulcordChillingShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3677336814] = { "You have Greater Freezing Shrine Buff while affected by no Flasks" }, [1939175721] = { "(15-20)% increased Effect of Shrine Buffs on you" }, } }, + ["BlindedEnemiesCannotInflictAilmentsUnique_1"] = { affix = "", "Enemies Blinded by you cannot inflict Damaging Ailments", statOrder = { 6452 }, level = 30, group = "BlindedEnemiesCannotInflictAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [445314012] = { "Enemies Blinded by you cannot inflict Damaging Ailments" }, } }, ["CeaselessFleshGrantedSkillUnique__1"] = { affix = "", "Trigger level 25 Ceaseless Flesh once every second", statOrder = { 20 }, level = 80, group = "CeaselessFleshGrantedSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "minion" }, tradeHashes = { [2397674290] = { "Trigger level 25 Ceaseless Flesh once every second" }, [1560737213] = { "" }, } }, - ["FleshShieldOnMinionDeathUnique__1"] = { affix = "", "When a nearby Minion dies, gain Rotten Bulwark equal to (7-9)% of its maximum Life", statOrder = { 9311 }, level = 80, group = "FleshShieldOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1960869129] = { "When a nearby Minion dies, gain Rotten Bulwark equal to (7-9)% of its maximum Life" }, } }, - ["ConsumeLifeFlaskChargesForDoTMultiOnAttackUnique__1"] = { affix = "", "On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%", "For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier", statOrder = { 5864, 5864.1 }, level = 70, group = "ConsumeLifeFlaskChargesForDoTMultiOnAttack", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1341154644] = { "On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%", "For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier" }, } }, - ["CannotUseManaFlaskUnique__1"] = { affix = "", "Can't use Mana Flasks", statOrder = { 5450 }, level = 70, group = "CannotUseManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1863071073] = { "Can't use Mana Flasks" }, } }, - ["IncreasedGoldFoundUnique__1"] = { affix = "", "(25-35)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 55, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [253956903] = { "(25-35)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["SandMirageOnCastUnique__1"] = { affix = "", "Trigger level 20 Suspend in Time on Casting a Spell", statOrder = { 191 }, level = 1, group = "SandMirageOnCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1925643497] = { "Trigger level 20 Suspend in Time on Casting a Spell" }, } }, - ["SpellDamagePerUniqueSpellRecentlyUnique__1"] = { affix = "", "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5462 }, level = 1, group = "SpellDamagePerUniqueSpellRecently", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1518586897] = { "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, - ["WeaponElementalDamageUniqueShieldStrInt4"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(10-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueRing10"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueBelt5"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(10-20)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow1"] = { affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-24)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow2"] = { affix = "", "(25-28)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(25-28)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitBow3"] = { affix = "", "(29-32)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(29-32)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitSword1"] = { affix = "", "30% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "30% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageImplicitQuiver13New"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 83, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUniqueBelt10"] = { affix = "", "10% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "10% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__1"] = { affix = "", "(4-12)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(4-12)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__2"] = { affix = "", "(60-80)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(60-80)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__3"] = { affix = "", "(40-55)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(40-55)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__4"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-25)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__5"] = { affix = "", "(25-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(25-30)% increased Elemental Damage with Attack Skills" }, } }, - ["WeaponElementalDamageUnique__6"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, - ["ThisWeaponsWeaponElementalDamageUniqueWand6"] = { affix = "", "Attacks with this Weapon have (100-115)% increased Elemental Damage", statOrder = { 2929 }, level = 1, group = "ThisWeaponWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [17526298] = { "Attacks with this Weapon have (100-115)% increased Elemental Damage" }, } }, - ["ManaLeechUniqueOneHandSword2"] = { affix = "", "(3-5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "(3-5)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueOneHandSword2"] = { affix = "", "(0.6-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.6-1)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueTwoHandSword2"] = { affix = "", "3% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "3% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueTwoHandSword2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.6% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueAmulet3"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueAmulet3"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechStrDexHelmet1"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadStrDexHelmet1"] = { affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.4% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueGlovesStrDex1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueTwoHandMace4"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueTwoHandMace4"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueHelmetInt7"] = { affix = "", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.2-0.4)% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "(0.2-0.4)% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueRing17"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueRing17"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueGlovesDexInt6"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueGlovesDexInt6"] = { affix = "", "0.2% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.2% of Attack Damage Leeched as Mana" }, } }, - ["ManaLeechUniqueBodyStr6"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUniqueBodyStr6"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__1"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__2"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadUnique__3"] = { affix = "", "(1-1.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(1-1.5)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ItemFoundQuantityIncreaseUniqueGlovesInt1"] = { affix = "", "(5-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 14, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(5-10)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBelt3"] = { affix = "", "(6-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-8)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBootsDex2"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-10)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueRing7"] = { affix = "", "(10-16)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(10-16)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueShieldInt4"] = { affix = "", "(4-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(4-8)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueBodyStr5"] = { affix = "", "(10-15)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(10-15)% increased Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreaseUniqueRing32"] = { affix = "", "(-10-10)% reduced Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(-10-10)% reduced Quantity of Items found" }, } }, - ["ItemFoundQuantityReduceUniqueCorruptedJewel1"] = { affix = "", "10% reduced Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "10% reduced Quantity of Items found" }, } }, - ["ItemFoundQuantityIncreasedUnique__1"] = { affix = "", "5% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "5% increased Quantity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitRing1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitAmulet1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 10, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing3"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(50-70)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueAmulet6"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueStrDexHelmet1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBootsDexInt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueGlovesStrDex2"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueTwoHandAxe2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueRapier1"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "20% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueRing10"] = { affix = "", "(10-20)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetDex3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetWreath1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing6"] = { affix = "", "(10-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueHelmetDex6"] = { affix = "", "(20-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRapier2"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "20% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityDecreaseUniqueOneHandSword4"] = { affix = "", "50% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "50% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBootsDemigods1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueShieldStrDex2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRingDemigods1"] = { affix = "", "(16-24)% increased Rarity of Items found", statOrder = { 1596 }, level = 16, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-24)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueBodyStr5"] = { affix = "", "100% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "100% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueRing32_"] = { affix = "", "(-40-40)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-40-40)% reduced Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUniqueShieldDemigods"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__1"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__2"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__3"] = { affix = "", "(6-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__4_"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__5"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__6"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__7"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(5-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__8"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__9"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreaseUnique__10"] = { affix = "", "(20-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-40)% increased Rarity of Items found" }, } }, - ["ReducedEnergyShieldDelayUniqueBodyInt1"] = { affix = "", "10% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "10% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueDagger4"] = { affix = "", "(40-80)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(40-80)% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueQuiver7"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayUniqueBelt11"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 28, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% increased Energy Shield Recharge Rate" }, } }, - ["ReducedEnergyShieldDelayUniqueCorruptedJewel15"] = { affix = "", "20% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "20% faster start of Energy Shield Recharge" }, } }, - ["IncreasedEnergyShieldDelayUniqueHelmetInt4"] = { affix = "", "50% reduced Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% reduced Energy Shield Recharge Rate" }, } }, - ["ReducedEnergyShieldDelayUnique__1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["ReducedEnergyShieldDelayImplicit1_"] = { affix = "", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 93, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, - ["IncreasedCastSpeedImplicitMarakethWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedImplicitMarakethWand2"] = { affix = "", "14% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "14% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet1"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesInt2"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff2"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesInt4"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand3"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet16"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueClaw7"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueDescentWand1"] = { affix = "", "12% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueSceptre6"] = { affix = "", "(15-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand4"] = { affix = "", "(5-8)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-8)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff5"] = { affix = "", "18% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "18% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueSceptre7"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand7"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["ReducedCastSpeedUniqueBootsDex5"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueHelmetInt8"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueHelmetStrInt6"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUniqueGlovesStrInt4_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% reduced Cast Speed" }, } }, - ["ReducedCastSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% reduced Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueStaff12"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand10"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueWand11"] = { affix = "", "(7-13)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-13)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueTwoHandMace8"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUniqueRing38"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__1"] = { affix = "", "(4-8)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-8)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__2"] = { affix = "", "(14-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__3"] = { affix = "", "(30-40)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(30-40)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__4"] = { affix = "", "(4-6)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-6)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__5"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__6"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__7"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__9"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__10"] = { affix = "", "(12-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__11__"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__12"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__13"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__14"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__15_"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__16"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__17"] = { affix = "", "(1-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(1-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__18_"] = { affix = "", "(5-7)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-7)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__19__"] = { affix = "", "(8-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__20"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__21"] = { affix = "", "(7-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__22"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__23"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__24"] = { affix = "", "(8-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__25"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__26"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__27"] = { affix = "", "(5-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-15)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedUnique__28"] = { affix = "", "(12-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-18)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedFishing__Unique1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { }, weightVal = { }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1"] = { affix = "", "4% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "4% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2"] = { affix = "", "6% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "6% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow2"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword3"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueRapier1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace3"] = { affix = "", "25% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "25% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDagger3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandMace1"] = { affix = "", "45% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "45% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow4"] = { affix = "", "100% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "100% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow5"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace4"] = { affix = "", "50% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow6"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw1"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw2"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow8"] = { affix = "", "(36-50)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(36-50)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw3"] = { affix = "", "5% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "5% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe1"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-35)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedOneHandSword3"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow10"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword6"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentDagger1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentBow1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDescentOneHandMace1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandAxe7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre7"] = { affix = "", "(11-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueWand6"] = { affix = "", "(10-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-18)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow11"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword7"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueStaff7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword8"] = { affix = "", "(22-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(22-27)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword9"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandSword8"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueStaff9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueSceptre9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueBow12"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword11"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueWand9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandAxe9"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-12)% increased Attack Speed" }, } }, - ["LocalReducedAttackSpeedUniqueDagger9"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueDagger12"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueClaw9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandAxe7"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword12"] = { affix = "", "15% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "15% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandSword13_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalReducedAttackSpeedUniqueOneHandMace6"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__1"] = { affix = "", "50% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__2"] = { affix = "", "15% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, } }, - ["LocalReducedAttackSpeedUnique__3"] = { affix = "", "(25-30)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueOneHandMace8"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUniqueTwoHandMace8_"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__2"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__1"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(4-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__3"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__4"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__5"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__6"] = { affix = "", "(14-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__9"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__10"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__11"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__12"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__14"] = { affix = "", "(17-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__15"] = { affix = "", "(16-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(16-22)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__16"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__18"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__19"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__20"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__21"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__22"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__23"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__24"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__25"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__26_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__27"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__28"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__29"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__30"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__31"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__32"] = { affix = "", "(20-26)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-26)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__33"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__34"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__35"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__36"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__37___"] = { affix = "", "(16-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(16-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__38"] = { affix = "", "(-16-16)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(-16-16)% reduced Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__39"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__40"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-35)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__42"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__43"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__44"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeedUnique__45"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield1"] = { affix = "", "6% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "6% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield2"] = { affix = "", "12% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitShield3"] = { affix = "", "18% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedImplicitQuiver10New"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 62, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBootsDexInt1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDex2"] = { affix = "", "5% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStrDex1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetStrDex2"] = { affix = "", "16% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStr2"] = { affix = "", "(5-15)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-15)% reduced Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetDex4"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyDex5"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDexInt3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueHelmetDex6"] = { affix = "", "15% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyStr3"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDemigods1"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-16)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueBodyDex7"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver3"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 4, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1410 }, level = 10, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver7"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueGlovesStrDex5"] = { affix = "", "(6-9)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-9)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldDex6"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldDexInt2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueQuiver9"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueShieldInt5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["ReducedAttackSpeedUniqueAmulet16"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(20-30)% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUnique__1"] = { affix = "", "30% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "30% reduced Attack Speed" }, } }, - ["ReducedAttackSpeedUnique__2"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% reduced Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-25)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUniqueRing37"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique_1"] = { affix = "", "(8-13)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-13)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__3_"] = { affix = "", "(1-20)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(1-20)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__4_"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__6"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__7"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__8"] = { affix = "", "(8-16)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-16)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedUnique__9"] = { affix = "", "(5-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-15)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeedTransformedUnique__1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, - ["IncreasedAccuracyUniqueBow2"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+30 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandAxe1"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(150-250) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandSword1"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet5"] = { affix = "", "+100 to Accuracy Rating", statOrder = { 1433 }, level = 7, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+100 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueStrDexHelmet1"] = { affix = "", "+500 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+500 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueGlovesDexInt1"] = { affix = "", "+(100-200) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-200) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandMace3"] = { affix = "", "-500 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "-500 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueBow4"] = { affix = "", "+(25-50) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(25-50) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueBow7"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(350-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueRing12"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueHelmetInt7"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-350) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandAxe5"] = { affix = "", "+(120-150) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(120-150) to Accuracy Rating" }, } }, - ["ReducedAccuracyUniqueTwoHandSword5"] = { affix = "", "-150 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "-150 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueAmulet17_"] = { affix = "", "+(80-120) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(80-120) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueDescentBow1"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+30 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueRing17"] = { affix = "", "+333 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+333 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueWand6"] = { affix = "", "+(340-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(340-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueOneHandSword9"] = { affix = "", "+(280-300) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(280-300) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueTwoHandSword7"] = { affix = "", "+(90-120) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(90-120) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUniqueSceptre8"] = { affix = "", "+(160-220) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(160-220) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__1"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__2"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(350-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__3"] = { affix = "", "+(600-1000) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(600-1000) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__4"] = { affix = "", "+(800-1000) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(800-1000) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__6"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-250) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__7_"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__8"] = { affix = "", "+(350-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(350-500) to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__9____"] = { affix = "", "-5000 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "-5000 to Accuracy Rating" }, } }, - ["IncreasedAccuracyUnique__10"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-500) to Accuracy Rating" }, } }, - ["LifeRegenerationUniqueRing1"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10-15) Life per second" }, } }, - ["LifeRegenerationImplicitAmulet1"] = { affix = "", "Regenerate (2-4) Life per second", statOrder = { 1574 }, level = 2, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2-4) Life per second" }, } }, - ["LifeRegenerationImplicitAmulet2"] = { affix = "", "Regenerate (1.2-1.6)% of Life per second", statOrder = { 1944 }, level = 93, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.2-1.6)% of Life per second" }, } }, - ["LifeRegenerationUniqueShieldDex2"] = { affix = "", "Regenerate (5-7.5) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (5-7.5) Life per second" }, } }, - ["LifeRegenerationUniqueTwoHandAxe4"] = { affix = "", "Regenerate 20 Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate 20 Life per second" }, } }, - ["LifeRegenerationUniqueWreath1"] = { affix = "", "Regenerate 2 Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate 2 Life per second" }, } }, - ["LifeRegenerationUniqueShieldStrInt5"] = { affix = "", "Regenerate (100-200) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (100-200) Life per second" }, } }, - ["LifeRegenerationUniqueBootsDex5"] = { affix = "", "Regenerate (1.7-2.7) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (1.7-2.7) Life per second" }, } }, - ["LifeRegenerationUniqueBelt8"] = { affix = "", "Regenerate (200-350) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (200-350) Life per second" }, } }, - ["LifeRegenerationUniqueGlovesStrDex5"] = { affix = "", "Regenerate (3-4) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (3-4) Life per second" }, } }, - ["LifeRegenerationUniqueRing26"] = { affix = "", "Regenerate (13-17) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (13-17) Life per second" }, } }, - ["LifeRegenerationUniqueRing33"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10-15) Life per second" }, } }, - ["LifeRegenerationUniqueAmulet25"] = { affix = "", "Regenerate (16-24) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16-24) Life per second" }, } }, - ["LifeRegenerationUnique__1"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (50-70) Life per second" }, } }, - ["LifeRegenerationUnique__2__"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (50-70) Life per second" }, } }, - ["LifeRegenerationUnique__3"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-50) Life per second" }, } }, - ["LifeRegenerationUnique__4"] = { affix = "", "Regenerate (200-250) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (200-250) Life per second" }, } }, - ["LifeRegenerationUnique__5"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-50) Life per second" }, } }, - ["LifeRegenerationUnique__6"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 97, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["ManaRegenerationImplicitAmulet1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationImplicitAmulet2"] = { affix = "", "(48-56)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 97, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(48-56)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationImplicitDemigodsBelt1"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing5"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueDexHelmet2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueIntHelmet2"] = { affix = "", "30% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsDex2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueAmulet10"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 20, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(80-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing14"] = { affix = "", "(45-65)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-65)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsDex5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBelt6"] = { affix = "", "20% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "20% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBodyDexInt2"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBootsStrDex4"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueOneHandMace3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueBow11"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueGlovesStrInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRingDemigod1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 16, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing26"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueHelmetStrInt5"] = { affix = "", "20% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "20% reduced Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing33"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueAmulet21"] = { affix = "", "(60-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueJewel30"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueJewel43"] = { affix = "", "10% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "10% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueRing34"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUniqueShieldInt5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__1"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-25)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__2"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__3"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__4"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__6"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__7"] = { affix = "", "(45-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__8"] = { affix = "", "(40-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-45)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__9___"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(80-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__10"] = { affix = "", "(1-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(1-100)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__11___"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__12"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__14___"] = { affix = "", "60% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% reduced Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__15"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationUnique__16"] = { affix = "", "(60-80)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-80)% increased Mana Regeneration Rate" }, } }, - ["ReducedManaRegenerationUniqueRing27"] = { affix = "", "15% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "15% increased Mana Regeneration Rate" }, } }, - ["BaseManaRegenerationUniqueBodyDexInt2"] = { affix = "", "Regenerate 1% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 1% of Mana per second" }, } }, - ["StunThresholdReductionImlicitMarakethOneHandSword1"] = { affix = "", "8% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "8% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImlicitMarakethOneHandSword2"] = { affix = "", "12% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "12% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace1"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "10% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace2"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "15% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionImplicitMace3_"] = { affix = "", "20% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "20% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueTwoHandMace1"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "15% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueQuiver2"] = { affix = "", "(10-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(10-15)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueGlovesDexInt2"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "10% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueClaw2_"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "25% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueClaw6"] = { affix = "", "10% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "10% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueTwoHandSword5"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "25% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueQuiver8"] = { affix = "", "(20-25)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(20-25)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueOneHandMace5"] = { affix = "", "(15-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(15-25)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUniqueStaff11"] = { affix = "", "(15-20)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(15-20)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueOneHandMace6"] = { affix = "", "(10-20)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(10-20)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUniqueBootsStr3"] = { affix = "", "(5-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(5-10)% reduced Enemy Stun Threshold" }, } }, - ["StunThresholdReductionUnique__1___"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(20-30)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["StunThresholdReductionUnique__2"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(20-30)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["CriticalStrikeChanceImplicitDagger1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1460 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit1", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [340093681] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDagger2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1461 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1824597675] = { "40% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1462 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit3", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1410117599] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "40% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitDaggerNew3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitQuiver13"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 57, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitQuiver8New"] = { affix = "", "(20-30)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 50, group = "CriticalStrikeChanceWithBows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-30)% increased Critical Strike Chance with Bows" }, } }, - ["CriticalStrikeChanceImplicitMarakethStaff1"] = { affix = "", "80% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "80% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitMarakethStaff2"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueOneHandSword2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesDex2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueRapier1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueBodyInt4"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueHelmetDex4"] = { affix = "", "25% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "25% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueHelmetDex6"] = { affix = "", "(60-75)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(60-75)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueWand3"] = { affix = "", "(50-65)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-65)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceImplicitRing1"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 25, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueRing11_"] = { affix = "", "(30-35)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 35, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-35)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueAmulet17"] = { affix = "", "(200-250)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(200-250)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesStr3"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueGlovesDexInt6"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueBow9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["CriticalSrikeChanceUniqueSceptre7"] = { affix = "", "(30-40)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-40)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueAmulet18"] = { affix = "", "(250-350)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(250-350)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUniqueWand10"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__2"] = { affix = "", "(20-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-60)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__3"] = { affix = "", "(50-70)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-70)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__4_"] = { affix = "", "(120-160)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(120-160)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__5__"] = { affix = "", "(15-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeChanceUnique__6"] = { affix = "", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Global Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe1"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "50% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe2"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "50% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueBow11"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueClaw2"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "25% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceImplicitBow1"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueStaff7"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-20)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword8"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandMace4"] = { affix = "", "(15-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniquSceptre10"] = { affix = "", "(25-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword10"] = { affix = "", "(44-66)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(44-66)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueWand9"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-20)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDagger11"] = { affix = "", "30% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "30% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__1"] = { affix = "", "(26-32)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-32)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__2"] = { affix = "", "(22-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique14"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__3"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__4"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__5"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__6"] = { affix = "", "(40-60)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-60)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__7"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__8"] = { affix = "", "(50-75)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(50-75)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__10"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__11"] = { affix = "", "(20-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__12"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__13"] = { affix = "", "(70-90)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(70-90)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__14"] = { affix = "", "(80-100)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(80-100)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__15"] = { affix = "", "(25-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__16"] = { affix = "", "(8-12)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-12)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__17_"] = { affix = "", "(22-28)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-28)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__18"] = { affix = "", "(60-80)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-80)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__19"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__20"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__21"] = { affix = "", "(15-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__22"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__23"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__24"] = { affix = "", "(100-200)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(100-200)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__25"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__26"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__27"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUnique__28"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["FireResistImplicitRing1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 20, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistImplicitAmulet1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueDexHelmet2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet4"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsDexInt1"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet7"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, - ["FireResistUniqueBelt3"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsDex2"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyDex3"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyInt2"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStr3"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-50)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrInt5"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUniqueAmulet16"] = { affix = "", "+(30-45)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-45)% to Fire Resistance" }, } }, - ["FireResistUniqueHelmetInt7"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-30% to Fire Resistance" }, } }, - ["FireResistanceBodyDex6"] = { affix = "", "+(6-10)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandSword4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt6"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt9"] = { affix = "", "+(30-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-35)% to Fire Resistance" }, } }, - ["FireResistUniqueRing15"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-35)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsStrInt3"] = { affix = "", "+(50-60)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-60)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt13"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUniqueBodyStr5"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["FireResistUniqueRing32"] = { affix = "", "+(-25-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-25-50)% to Fire Resistance" }, } }, - ["FireResistUniqueBelt14"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 65, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUniqueShieldStrDex3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["FireResistUniqueOneHandAxe7_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUniqueBootsStr3_"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__2"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, - ["FireResistUnique__3"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, - ["FireResistUnique__4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, - ["FireResistUnique__5"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__6"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, - ["FireResistUnique__7_"] = { affix = "", "+(26-32)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-32)% to Fire Resistance" }, } }, - ["FireResistUnique__8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__9"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__10"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-30% to Fire Resistance" }, } }, - ["FireResistUnique__11"] = { affix = "", "-50% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-50% to Fire Resistance" }, } }, - ["FireResistUnique__12"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__13"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__14"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["FireResistUnique__15"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, - ["FireResistUnique__16"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__19"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__20_"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, - ["FireResistUnique__21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__22_"] = { affix = "", "-(30-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(30-20)% to Fire Resistance" }, } }, - ["FireResistUnique__23_"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__24"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__25"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__26"] = { affix = "", "+(40-60)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-60)% to Fire Resistance" }, } }, - ["FireResistUnique__27_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__28_"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-30-30)% to Fire Resistance" }, } }, - ["FireResistUnique__29"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, - ["FireResistUnique__30"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__31"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, - ["FireResistUnique__32"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 83, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, - ["FireResistUnique__34"] = { affix = "", "+(10-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-40)% to Fire Resistance" }, } }, - ["FireResistUnique__35"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__36"] = { affix = "", "+(5-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-30)% to Fire Resistance" }, } }, - ["FireResistUnique__37"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, - ["FireResistUnique__38"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1625 }, level = 30, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-50)% to Fire Resistance" }, } }, - ["ColdResistImplicitRing1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueAmulet3"] = { affix = "", "+25% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+25% to Cold Resistance" }, } }, - ["ColdResistDexHelmet2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueStrHelmet2"] = { affix = "", "+30% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+30% to Cold Resistance" }, } }, - ["ColdResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesDex1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt4"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldDex1"] = { affix = "", "+50% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+50% to Cold Resistance" }, } }, - ["ColdResistUniqueHelmetDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyStrInt3"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrDex3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueOneHandAxe1_"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["ColdResistanceBodyDex6"] = { affix = "", "+(26-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsDexInt2"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+20% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyDex7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrDex4"] = { affix = "", "+40% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+40% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt9"] = { affix = "", "+(30-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-35)% to Cold Resistance" }, } }, - ["ColdResistUniqueQuiver5"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing24"] = { affix = "", "+(25-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsDex8"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+20% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt13"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing28"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, - ["ColdResistUniqueBodyStr5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUniqueGlovesStrInt3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueRing32"] = { affix = "", "+(-25-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-25-50)% to Cold Resistance" }, } }, - ["ColdResistUniqueBelt14"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueShieldDex7"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUniqueBootsStrDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__3"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 23, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__4"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__5"] = { affix = "", "+75% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+75% to Cold Resistance" }, } }, - ["ColdResistUnique__6"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__7"] = { affix = "", "+(32-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(32-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__8"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__9"] = { affix = "", "-40% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-40% to Cold Resistance" }, } }, - ["ColdResistUnique__10"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-50)% to Cold Resistance" }, } }, - ["ColdResistUnique__11"] = { affix = "", "+(35-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__12"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__13"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__14"] = { affix = "", "-30% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-30% to Cold Resistance" }, } }, - ["ColdResistUnique__15"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__16"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__17"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__18"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__19"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__20"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__21"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, - ["ColdResistUnique__22_"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 80, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__23"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__24"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__25"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, - ["ColdResistUnique__26"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__27"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__29"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__30"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__31_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__32"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__33"] = { affix = "", "+(40-60)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-60)% to Cold Resistance" }, } }, - ["ColdResistUnique__34"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__35"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-30-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__36_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__37"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__38"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, - ["ColdResistUnique__39"] = { affix = "", "+(10-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-40)% to Cold Resistance" }, } }, - ["ColdResistUnique__40"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__41"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__42"] = { affix = "", "+(5-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-30)% to Cold Resistance" }, } }, - ["ColdResistUnique__43"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, - ["LightningResistImplicitRing1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetDexInt1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueDexHelmet1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueStrDexHelmet1"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+30% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldInt1"] = { affix = "", "+25% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+25% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldDex2"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+30% to Lightning Resistance" }, } }, - ["LightningResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyInt1"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBootsStrDex2"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueAmulet15"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistanceBodyDex6"] = { affix = "", "+(11-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-25)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyStrDex2"] = { affix = "", "-60% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-60% to Lightning Resistance" }, } }, - ["LightningResistUniqueDescentTwoHandSword1"] = { affix = "", "+40% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+40% to Lightning Resistance" }, } }, - ["LightningResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBelt9"] = { affix = "", "+(30-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-35)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBelt11"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBodyStr5"] = { affix = "", "-(20-10)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(20-10)% to Lightning Resistance" }, } }, - ["LightningResistUniqueRing32"] = { affix = "", "+(-25-50)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-25-50)% to Lightning Resistance" }, } }, - ["LightningResistUniqueRing35"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUniqueBootsDexInt4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUniqueHelmetInt10"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, - ["LightningResistUnique__1"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__3"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__5"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__6"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-20)% to Lightning Resistance" }, } }, - ["LightningResistUnique__7"] = { affix = "", "+(35-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(35-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__8"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__9"] = { affix = "", "-30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-30% to Lightning Resistance" }, } }, - ["LightningResistUnique__10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__11"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["LightningResistUnique__12"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__13"] = { affix = "", "+(1-50)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(1-50)% to Lightning Resistance" }, } }, - ["LightningResistUnique__14"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__15"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__16"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__17_"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__18"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__19_"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__21"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__22"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__23_"] = { affix = "", "+75% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+75% to Lightning Resistance" }, } }, - ["LightningResistUnique__24"] = { affix = "", "+(40-60)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(40-60)% to Lightning Resistance" }, } }, - ["LightningResistUnique__25"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-30-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__26"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-75)% to Lightning Resistance" }, } }, - ["LightningResistUnique__27"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, - ["LightningResistUnique__28"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-15)% to Lightning Resistance" }, } }, - ["LightningResistUnique__29"] = { affix = "", "+(10-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__30"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, - ["LightningResistUnique__31"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__32"] = { affix = "", "+(5-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-30)% to Lightning Resistance" }, } }, - ["LightningResistUnique__33"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, - ["ChaosResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBodyInt8"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(40-50)% to Chaos Resistance" }, } }, - ["ChaosResistImplicitRing1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 38, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistImplicitBoots1"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1641 }, level = 85, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueAmulet15_"] = { affix = "", "+(8-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-10)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueRing12"] = { affix = "", "+(15-20)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-20)% to Chaos Resistance" }, } }, - ["ChaosResistHelmetStrDex2"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-25)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueRing16"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(40-50)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueDagger8"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBootsStrInt2"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueHelmetDexInt5"] = { affix = "", "+(24-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-30)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueWand7"] = { affix = "", "+(5-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-10)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueHelmetStrInt5"] = { affix = "", "+(43-61)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(43-61)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueQuiver9"] = { affix = "", "+(12-16)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-16)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueBow12"] = { affix = "", "+(7-11)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-11)% to Chaos Resistance" }, } }, - ["ChaosResistUniqueAmulet23"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-19)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__1"] = { affix = "", "+11% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+11% to Chaos Resistance" }, } }, - ["ChaosResistUnique__2"] = { affix = "", "+(8-16)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-16)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__3"] = { affix = "", "+(31-53)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-53)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__4"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__5"] = { affix = "", "+60% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+60% to Chaos Resistance" }, } }, - ["ChaosResistUnique__6"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__7"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-25)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__8"] = { affix = "", "-(20-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(20-10)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__11"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__15"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-31)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__16"] = { affix = "", "+(29-43)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-43)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__18_"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__19"] = { affix = "", "+(29-41)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-41)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__20_"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-31)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__21"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__22"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__23"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__24"] = { affix = "", "+(-23-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-23-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__25"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__26"] = { affix = "", "+50% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+50% to Chaos Resistance" }, } }, - ["ChaosResistUnique__27"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__28"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__29"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__30"] = { affix = "", "+(13-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__31"] = { affix = "", "+(7-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-19)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__34"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__35"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-29)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__36"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__37"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["ChaosResistUnique__38"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 30, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["FireAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 25, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(12-16)% to Fire and Lightning Resistances" }, } }, - ["ColdAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 25, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(12-16)% to Cold and Lightning Resistances" }, } }, - ["FireAndColdResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 25, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(12-16)% to Fire and Cold Resistances" }, } }, - ["FireAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 78, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(8-12)% to Fire and Lightning Resistances" }, } }, - ["ColdAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 78, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(8-12)% to Cold and Lightning Resistances" }, } }, - ["FireAndColdResistImplicitBoots1_"] = { affix = "", "+(8-12)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 78, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(8-12)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__1"] = { affix = "", "+(15-25)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 75, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(15-25)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(20-30)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__3"] = { affix = "", "+(25-30)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(25-30)% to Fire and Cold Resistances" }, } }, - ["FireAndColdResistUnique__4_"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-20)% to Fire and Cold Resistances" }, } }, - ["ColdAndLightningResistUnique__1"] = { affix = "", "+(20-25)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 81, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(20-25)% to Cold and Lightning Resistances" }, } }, - ["ColdAndLightningResistUnique__2"] = { affix = "", "+(15-20)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 1, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(15-20)% to Cold and Lightning Resistances" }, } }, - ["FireAndLightningResistUnique__1"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(20-30)% to Fire and Lightning Resistances" }, } }, - ["FireAndLightningResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(20-30)% to Fire and Lightning Resistances" }, } }, - ["AllResistancesImplicitShield1"] = { affix = "", "+4% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+4% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitShield2"] = { affix = "", "+8% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+8% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitShield3"] = { affix = "", "+12% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+12% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitArmour1"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-12)% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitRing1"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["AllResistancesImplicitVictorAmulet"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 16, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-12)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet2"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1619 }, level = 10, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing4"] = { affix = "", "+(5-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueIntHelmet3"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetStrInt1"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBootsStr1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueGlovesStrDex2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt1"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrInt2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet9"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt2"] = { affix = "", "+25% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+25% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetDex3"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(30-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldStrInt4"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldDex3"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyDexInt1"] = { affix = "", "+(9-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-12)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing6"] = { affix = "", "+(10-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 30, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBootsInt5"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRapier2"] = { affix = "", "+(40-60)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(40-60)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing7"] = { affix = "", "+(25-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing9"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet14"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueTwoHandMace6_"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, - ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrDex1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing21"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt8"] = { affix = "", "-(25-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(25-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBodyStrDexInt1"] = { affix = "", "+(20-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-24)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueHelmetDexInt4"] = { affix = "", "+(26-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(26-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBeltDemigods1"] = { affix = "", "+(16-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-24)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueDagger9"] = { affix = "", "+(6-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueRing25"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1619 }, level = 7, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt10"] = { affix = "", "+(6-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 32, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueShieldDexInt2"] = { affix = "", "-50% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-50% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueBelt13"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistajcesUniqueStaff10"] = { affix = "", "+(5-7)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-7)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueAmulet23"] = { affix = "", "-(10-5)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(10-5)% to all Elemental Resistances" }, } }, - ["AllResistancesUniqueJewel8"] = { affix = "", "+6% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+6% to all Elemental Resistances" }, } }, - ["AllResistancesDescentUniqueQuiver1"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__1"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__2"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__3"] = { affix = "", "+(14-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(14-18)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__4"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__5"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__6"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(20-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__8"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__9"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__10"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__11__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__12"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__13"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__15"] = { affix = "", "+(12-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(12-18)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__16"] = { affix = "", "+(10-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-16)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__17"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__18"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 10717 }, level = 1, group = "UniqueJewelDonutAllocationAllReistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4285168237] = { "-(20-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__19"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__20"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__21"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__23__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__24_"] = { affix = "", "-(80-70)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(80-70)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__26"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__27"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__28"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__29"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__30"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__31"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__32"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__33"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__34"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__35"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-35)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__36"] = { affix = "", "-(50-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(50-40)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__37"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, - ["AllResistancesUnique__38"] = { affix = "", "+(-15-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 80, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(-15-15)% to all Elemental Resistances" }, } }, - ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, - ["CriticalMultiplierImplicitSword1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+25% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword2"] = { affix = "", "+35% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+35% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+50% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSword2H1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+25% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitSwordM2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierImplicitBow1"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDex2"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt2"] = { affix = "", "+30% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+30% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt4"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueHelmetStr3"] = { affix = "", "+60% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+60% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueRing8"] = { affix = "", "-50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "-50% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueAmulet17"] = { affix = "", "+(210-240)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 50, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(210-240)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueDescentDagger1"] = { affix = "", "+45% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+45% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueDagger8"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueRing17"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueGlovesDexInt6_"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUniqueAmulet18"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2678 }, level = 29, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, - ["CriticalMultiplierUnique__1"] = { affix = "", "+(27-33)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(27-33)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__2"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__3__"] = { affix = "", "+(25-50)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-50)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__4____"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__5"] = { affix = "", "+(18-35)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-35)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__6"] = { affix = "", "+(100-150)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(100-150)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__7"] = { affix = "", "+(15-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-20)% to Global Critical Strike Multiplier" }, } }, - ["CriticalMultiplierUnique__8"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["StunRecoveryImplicitBelt1"] = { affix = "", "(15-25)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 20, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(15-25)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueBootsStrDex1"] = { affix = "", "20% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "20% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueHelmetInt6"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueBootsStrDex3"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueHelmetStrInt4"] = { affix = "", "(20-22)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(20-22)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueGlovesStrInt1"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(40-60)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueQuiver4"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueAmulet18"] = { affix = "", "40% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "40% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueClaw8"] = { affix = "", "25% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "25% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUniqueOneHandSword13"] = { affix = "", "(30-40)% reduced Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% reduced Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__1_"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__2"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__3"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__4"] = { affix = "", "(500-1000)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(500-1000)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__5"] = { affix = "", "100% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "100% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__6"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(40-60)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__7"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, - ["StunRecoveryUnique__8"] = { affix = "", "(100-200)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(100-200)% increased Stun and Block Recovery" }, } }, - ["StunDurationImplicitBelt1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitMace1"] = { affix = "", "30% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "30% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitMace2"] = { affix = "", "45% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "45% increased Stun Duration on Enemies" }, } }, - ["StunDurationImplicitQuiver9"] = { affix = "", "(25-35)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(25-35)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace1"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(40-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace2"] = { affix = "", "(10-20)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(10-20)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueQuiver2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandMace3"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(40-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueGlovesInt4_"] = { affix = "", "50% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "50% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueGlovesDexInt3"] = { affix = "", "10% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "10% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueTwoHandSword5"] = { affix = "", "400% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "400% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueQuiver8"] = { affix = "", "(140-200)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(140-200)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUniqueOneHandMace6"] = { affix = "", "(30-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(30-50)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUnique__1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["StunDurationUnique__2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, - ["SpellCriticalStrikeChanceUniqueDagger1"] = { affix = "", "(80-100)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-100)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueGlovesInt5"] = { affix = "", "(75-100)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(75-100)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueGlovesInt6"] = { affix = "", "(125-150)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(125-150)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueHelmetInt6"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-25)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueShieldInt3"] = { affix = "", "(25-35)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(25-35)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUniqueBootsStrDex5"] = { affix = "", "(50-70)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(50-70)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__1"] = { affix = "", "(100-140)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(100-140)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__2"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__3"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__4"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, - ["SpellCriticalStrikeChanceUnique__5"] = { affix = "", "(80-120)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-120)% increased Spell Critical Strike Chance" }, } }, - ["ProjectileSpeedImplicitQuiver4New"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 25, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueAmulet5"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueBow4_"] = { affix = "", "(50-100)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(50-100)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver2"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver4"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUniqueQuiver8"] = { affix = "", "25% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "25% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique___1"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__2"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__3"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique__4"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, - ["ProjectileSpeedUnique__5__"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__6"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__7"] = { affix = "", "(30-40)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(30-40)% increased Projectile Speed" }, } }, - ["ProjectileSpeedUnique__8"] = { affix = "", "(30-50)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(30-50)% increased Projectile Speed" }, } }, - ["LifeGainPerTargetUniqueRing2"] = { affix = "", "Gain (2-4) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-4) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueOneHandSword1"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueDagger2"] = { affix = "", "Grants 10 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 10 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw2"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw3"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitClaw4"] = { affix = "", "Grants 22 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 22 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw2"] = { affix = "", "Grants 6 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 6 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw3"] = { affix = "", "Grants 7 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 7 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw3_1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw4"] = { affix = "", "Grants 12 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 12 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw4_1"] = { affix = "", "Grants 19 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 19 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw5"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw5_1"] = { affix = "", "Grants 20 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 20 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw6"] = { affix = "", "Grants 25 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 25 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw7"] = { affix = "", "Grants 24 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 24 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw8"] = { affix = "", "Grants 44 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 44 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw9_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 40 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw10"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 46 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw11_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 40 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw12"] = { affix = "", "Grants 50 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 50 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicit2Claw13"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 46 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetImplicitQuiver3New"] = { affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 18, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (6-8) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetImplicitQuiver8"] = { affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 13, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (3-4) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueSceptre2"] = { affix = "", "Grants (6-10) Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (6-10) Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueRapier2"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueRing7"] = { affix = "", "Gain (40-60) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (40-60) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueQuiver6_"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetUniqueOneHandSword7"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUniqueDescentClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetUnique__1"] = { affix = "", "Gain 7 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 7 Life per Enemy Hit with Attacks" }, } }, - ["LoseLifePerTargetUnique__1"] = { affix = "", "Lose (20-25) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Lose (20-25) Life per Enemy Hit with Attacks" }, } }, - ["LoseLifePerTargetUnique__2"] = { affix = "", "Lose (10-20) Life per Enemy Killed", statOrder = { 1748 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Lose (10-20) Life per Enemy Killed" }, } }, - ["FireDamagePercentUniqueStaff1_"] = { affix = "", "(70-90)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-90)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueStrHelmet2"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-40)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueBodyInt4"] = { affix = "", "(25-35)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-35)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueHelmetInt5"] = { affix = "", "50% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "50% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing18"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueBelt9a"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing24"] = { affix = "", "(15-25)% increased Fire Damage", statOrder = { 1357 }, level = 14, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-25)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueSceptre9"] = { affix = "", "30% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "30% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueWand10"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing36"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUniqueRing38"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-40)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__1"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique___2"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__3"] = { affix = "", "(18-25)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-25)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__4"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique___5"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__6"] = { affix = "", "(50-70)% increased Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-70)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique___7"] = { affix = "", "25% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "25% increased Fire Damage" }, } }, - ["FireDamagePercentUnique____8"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__9"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__10"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__11"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__12___"] = { affix = "", "100% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, - ["ColdDamagePercentUniqueStaff2"] = { affix = "", "(40-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueRing19"] = { affix = "", "(25-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUniqueBelt9b"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__1"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__2"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__3"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__4"] = { affix = "", "(18-25)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-25)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__5"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-50)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__6"] = { affix = "", "(20-25)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-25)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__8"] = { affix = "", "30% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "30% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__9"] = { affix = "", "(20-40)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique___10"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique___11"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__12"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__13"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__14"] = { affix = "", "(5-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, - ["ColdDamagePercentUnique__15"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, - ["LightningDamageUniqueWand1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamageUniqueHelmetDexInt1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing20"] = { affix = "", "(25-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueBelt9c"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueStaff8"] = { affix = "", "(30-50)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-50)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing29"] = { affix = "", "20% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "20% increased Lightning Damage" }, } }, - ["LightningDamagePercentUniqueRing34"] = { affix = "", "(15-25)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-25)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__2"] = { affix = "", "(15-20)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-20)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__3"] = { affix = "", "35% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "35% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__4"] = { affix = "", "100% increased Lightning Damage", statOrder = { 1377 }, level = 40, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "100% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__5"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__6"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["LightningDamagePercentUnique__8"] = { affix = "", "(30-40)% increased Lightning Damage", statOrder = { 1377 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-40)% increased Lightning Damage" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandAxe1"] = { affix = "", "Gain 20 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 20 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (100-200) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (100-200) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueBootsStrInt1"] = { affix = "", "Gain (10-20) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-20) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandAxe2"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueTwoHandMace7"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (15-20) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (15-20) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueOneHandAxe3"] = { affix = "", "Gain (5-7) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (5-7) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1748 }, level = 94, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 100 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUniqueDagger11"] = { affix = "", "Gain 5 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 5 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (15-25) Life per Enemy Hit with Attacks" }, } }, - ["LifeGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (15-25) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (15-25) Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__4"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 100 Life per Enemy Killed" }, } }, - ["LifeGainedFromEnemyDeathUnique__5"] = { affix = "", "Gain 150 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 150 Life per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueBow2"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (50-100) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (50-100) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueRing4"] = { affix = "", "Gain (5-20) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (5-20) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueTwoHandSword3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueTwoHandAxe5"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueShieldInt3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 100 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain 30 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 30 Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-40) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-40) Mana per Enemy Killed" }, } }, - ["ManaGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (1-100) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (1-100) Mana per Enemy Killed" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandMace1"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "25% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandSword4"] = { affix = "", "(90-110)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(90-110)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDescentDagger1"] = { affix = "", "100% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "100% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueDagger8"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueWand6_"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueSceptre9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueOneHandAxe8_"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueStaff14"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-35)% increased Critical Strike Chance" }, } }, - ["LocalCriticalStrikeChanceUniqueTwoHandMace6"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, - ["LocalCriticalMultiplierUniqueBow3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+50% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueClaw2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueDagger4"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, - ["LocalCriticalMultiplierUniqueOneHandSword4"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, - ["FlaskIncreasedRecoverySpeedUniqueFlask3"] = { affix = "", "(35-50)% reduced Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(35-50)% reduced Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeedUnique___1"] = { affix = "", "(80-120)% increased Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(80-120)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmountUniqueFlask4"] = { affix = "", "(30-50)% increased Amount Recovered", "100% increased Recovery rate", statOrder = { 854, 855 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(30-50)% increased Amount Recovered" }, [173226756] = { "100% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmountUnique__1"] = { affix = "", "(30-50)% increased Amount Recovered", "50% reduced Recovery rate", statOrder = { 854, 855 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(30-50)% increased Amount Recovered" }, [173226756] = { "50% reduced Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmountUnique__2"] = { affix = "", "(150-200)% increased Amount Recovered", statOrder = { 854 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(150-200)% increased Amount Recovered" }, [173226756] = { "" }, } }, - ["FlaskIncreasedDuration1"] = { affix = "Saturated", "33% reduced Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 3000, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "33% reduced Recovery rate" }, } }, - ["FlaskFullInstantRecoveryUnique__1"] = { affix = "", "(65-75)% reduced Amount Recovered", "Instant Recovery", statOrder = { 854, 866 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "(65-75)% reduced Amount Recovered" }, } }, - ["FlaskExtraLifeUnique__1"] = { affix = "", "50% increased Life Recovered", statOrder = { 849 }, level = 1, group = "FlaskExtraLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1261982764] = { "50% increased Life Recovered" }, } }, - ["FlaskFreezeImmunityUnique__1"] = { affix = "", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 902, 902.1 }, level = 1, group = "FlaskDispellsChill", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3570046771] = { "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen" }, } }, - ["FlaskDispellsBurningUnique__1"] = { affix = "", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 904, 904.1 }, level = 1, group = "FlaskDispellsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [2695527599] = { "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskExtraChargesUnique__1"] = { affix = "", "+45 to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+45 to Maximum Charges" }, } }, - ["FlaskChargesAddedIncreasePercentUnique_1"] = { affix = "", "(40-60)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(40-60)% increased Charge Recovery" }, } }, - ["FlaskChargesAddedIncreasePercentUnique__2"] = { affix = "", "(20-30)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(20-30)% increased Charge Recovery" }, } }, - ["FlaskChargesAddedIncreasePercentUnique__3"] = { affix = "", "(20-40)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(20-40)% increased Charge Recovery" }, } }, - ["FlaskBuffManaLeechWhileHealing"] = { affix = "of Craving", "2% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 953 }, level = 12, group = "FlaskBuffManaLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, tradeHashes = { [464954991] = { "2% of Physical Attack Damage Leeched as Mana during Effect" }, } }, - ["FlaskChanceRechargeOnCritUnique__1"] = { affix = "", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 50, group = "FlaskChanceRechargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "50% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect1"] = { affix = "[UNUSED]", "(35-45)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(35-45)% increased Duration" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect2"] = { affix = "[UNUSED]", "(46-55)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 36, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(46-55)% increased Duration" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect3_"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 52, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect4__"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 68, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, - ["FlaskEffectIncreasedDurationReducedEffect5"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 84, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, - ["FlaskEffectDurationUnique__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(25-50)% increased Duration" }, } }, - ["FlaskEffectDurationUnique__2"] = { affix = "", "(60-80)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(60-80)% reduced Duration" }, } }, - ["FlaskEffectDurationUnique__3"] = { affix = "", "(30-50)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(30-50)% increased Duration" }, } }, - ["FlaskEffectDurationUnique__4"] = { affix = "", "25% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "25% increased Duration" }, } }, - ["FlaskEffectDurationUnique__6"] = { affix = "", "(70-80)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(70-80)% reduced Duration" }, } }, - ["FlaskEffectDurationUnique__7"] = { affix = "", "(50-80)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(50-80)% increased Duration" }, } }, - ["FlaskChargesUsedUnique___1"] = { affix = "", "500% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "500% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique___2"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(125-150)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__3"] = { affix = "", "50% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "50% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__4"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(-10-10)% reduced Charges per use" }, } }, - ["FlaskChargesUsedUnique__5"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(125-150)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__6_"] = { affix = "", "(80-100)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(80-100)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__7"] = { affix = "", "100% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "100% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__8"] = { affix = "", "(175-200)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(175-200)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__9_"] = { affix = "", "(40-50)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(40-50)% increased Charges per use" }, } }, - ["FlaskChargesUsedUnique__10"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(-10-10)% reduced Charges per use" }, } }, - ["FlaskChargesUsedUnique__11"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(10-20)% reduced Charges per use" }, } }, - ["FlaskExtraChargesUnique__2_"] = { affix = "", "+(-40-90) to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(-40-90) to Maximum Charges" }, } }, - ["FlaskExtraChargesUnique__3"] = { affix = "", "+(10-20) to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(10-20) to Maximum Charges" }, } }, - ["FlaskIncreasedDurationUnique__2"] = { affix = "", "90% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "90% reduced Duration" }, } }, - ["FlaskIncreasedDurationUnique__3"] = { affix = "", "(-35-35)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(-35-35)% reduced Duration" }, } }, - ["FlaskBuffReducedManaCostWhileHealingUnique__1"] = { affix = "", "10% increased Mana Cost of Skills during Effect", statOrder = { 999 }, level = 1, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "10% increased Mana Cost of Skills during Effect" }, } }, - ["FlaskBuffWardWhileHealingUnique__1"] = { affix = "", "50% reduced Ward during Effect", statOrder = { 939 }, level = 1, group = "FlaskBuffWardWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "50% reduced Ward during Effect" }, } }, - ["FlaskWardUnbreakableDuringEffectUnique__1"] = { affix = "", "Ward does not Break during Effect", statOrder = { 940 }, level = 1, group = "FlaskWardUnbreakableDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences" }, tradeHashes = { [80764074] = { "Ward does not Break during Effect" }, } }, - ["GlobalSpellGemsLevelUnique__1"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, - ["GlobalColdSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedLightningGemLevelUniqueStaff8"] = { affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedLightningGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+(1-3) to Level of Socketed Lightning Gems" }, } }, - ["LocalIncreaseSocketedChaosGemLevelUnique__1"] = { affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skill Gems" }, } }, - ["GlobalPhysicalSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skill Gems" }, } }, - ["GlobalVaalGemsLevelImplicit1_"] = { affix = "", "+1 to Level of all Vaal Skill Gems", statOrder = { 10518 }, level = 1, group = "GlobalVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4180346416] = { "+1 to Level of all Vaal Skill Gems" }, } }, - ["LocalIncreaseSocketedProjectileGemLevel1"] = { affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 1, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+1 to Level of Socketed Projectile Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevel1"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevelUniqueWand4"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__1"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__2"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__3"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__4"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 100, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMinionSpellSkillGemLevelUnique__5"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, - ["GlobalIncreaseMeleeSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Melee Skill Gems", statOrder = { 9209 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+(1-3) to Level of all Melee Skill Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__2_"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__3"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__4"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUnique__5____"] = { affix = "", "+3 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+3 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedSpellGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+2 to Level of Socketed Spell Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueStaff1"] = { affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueDagger10"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueStaff13"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUnique__2"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedBowGemLevelUniqueBow2"] = { affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 1, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueStaff13"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__4"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedMeleeGemLevelUniqueRapier1"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueStaff2"] = { affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueSceptre1"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedFireGemLevelUniqueBodyInt4"] = { affix = "", "+3 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+3 to Level of Socketed Fire Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4"] = { affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+1 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___1"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___2___"] = { affix = "", "+5 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+5 to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedAuraGemLevelUnique___3"] = { affix = "", "+(3-5) to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+(3-5) to Level of Socketed Aura Gems" }, } }, - ["LocalIncreaseSocketedColdGemLevelUniqueClaw5"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueRing23"] = { affix = "", "+5 to Level of Socketed Gems", statOrder = { 162 }, level = 57, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+5 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueRing39"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueWand8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique___3"] = { affix = "", "+1 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__6"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__7"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__9"] = { affix = "", "+(5-8) to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+(5-8) to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__10"] = { affix = "", "+(1-2) to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+(1-2) to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedGemLevelUnique__11_"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["LocalIncreaseSocketedDexterityGemLevelUniqueClaw8"] = { affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing35"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing36"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedGolemLevelUniqueRing37"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5"] = { affix = "", "+3 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+3 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, - ["LocalIncreasedAccuracyUnique__1"] = { affix = "", "+(330-350) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(330-350) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__2"] = { affix = "", "(15-25)% increased Attack Speed", "+(400-500) to Accuracy Rating", statOrder = { 1413, 2024 }, level = 1, group = "LocalAccuracyRatingAndAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-25)% increased Attack Speed" }, [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__3"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__4"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(400-500) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit1"] = { affix = "", "+45 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+45 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit2"] = { affix = "", "+165 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+165 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit3"] = { affix = "", "+190 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+190 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit4"] = { affix = "", "+240 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+240 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit5"] = { affix = "", "+330 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+330 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit6"] = { affix = "", "+350 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+350 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+400 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit8"] = { affix = "", "+460 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+460 to Accuracy Rating" }, } }, - ["IncreasedAccuracySwordImplicit9"] = { affix = "", "+475 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+475 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit1"] = { affix = "", "+60 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+60 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit2"] = { affix = "", "+120 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+120 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit3"] = { affix = "", "+185 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+185 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit4"] = { affix = "", "+250 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+250 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit5"] = { affix = "", "+305 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+305 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit6"] = { affix = "", "+360 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+360 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+400 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit8"] = { affix = "", "+435 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+435 to Accuracy Rating" }, } }, - ["IncreasedAccuracy2hSwordImplicit9"] = { affix = "", "+470 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+470 to Accuracy Rating" }, } }, - ["CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["CannotBeFrozenUnique__1"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["BlockingBlocksSpellsUniqueAmulet1"] = { affix = "", "15% Chance to Block Spell Damage", statOrder = { 1155 }, level = 7, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "15% Chance to Block Spell Damage" }, } }, - ["BlockingBlocksSpellsUnique__1"] = { affix = "", "6% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "6% Chance to Block Spell Damage" }, } }, - ["BlockingBlocksSpellsUnique__2"] = { affix = "", "(7-9)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(7-9)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueAmulet1"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 7, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__1"] = { affix = "", "+(2-6)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 1, group = "AdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(2-6)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__2"] = { affix = "", "(4-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-6)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__3_"] = { affix = "", "(16-22)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(16-22)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUnique__4"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-15)% Chance to Block Spell Damage" }, } }, - ["CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["CullingStrikeUniqueDescentTwoHandSword1"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["CullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["BlockRecoveryImplicitShield1"] = { affix = "", "60% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "60% increased Block Recovery" }, } }, - ["BlockRecoveryImplicitShield2"] = { affix = "", "120% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "120% increased Block Recovery" }, } }, - ["BlockRecoveryImplicitShield3"] = { affix = "", "180% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "180% increased Block Recovery" }, } }, - ["AlwaysHits"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUniqueTwoHandMace6"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUnique__1"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["AlwaysHitsUnique__2"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2044 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1165023334] = { "Your hits can't be Evaded" }, } }, - ["AlwaysHitsUniqueGlovesDexInt4"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2044 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1165023334] = { "Your hits can't be Evaded" }, } }, - ["HitsCauseMonsterFleeUniqueRing1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["HitsCauseMonsterFleeUniqueBootsStrInt1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["HitsCauseMonsterFleeUnique__1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, - ["MaximumEnduranceChargeUniqueRing2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUniqueBodyStr3"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUniqueBodyStrDex3"] = { affix = "", "+2 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+2 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUnique__1_"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["MaximumEnduranceChargeUnique__2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["ReducedMaximumEnduranceChargeUniqueCorruptedJewel17"] = { affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-1 to Maximum Endurance Charges" }, } }, - ["ReducedMaximumEnduranceChargeUnique__1"] = { affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-1 to Maximum Endurance Charges" }, } }, - ["ReducedMaximumEnduranceChargeUnique__2"] = { affix = "", "-2 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-2 to Maximum Endurance Charges" }, } }, - ["AddPowerChargeOnCrit1__"] = { affix = "", "Gain a Power Charge for each Enemy you hit with a Critical Strike", statOrder = { 2547 }, level = 1, group = "AddPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1556625719] = { "Gain a Power Charge for each Enemy you hit with a Critical Strike" }, } }, - ["ActorSizeUniqueAmulet2"] = { affix = "", "20% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "20% increased Character Size" }, } }, - ["ActorSizeUniqueHelmetDex6"] = { affix = "", "10% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% reduced Character Size" }, } }, - ["ActorSizeUniqueAmulet12"] = { affix = "", "10% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% reduced Character Size" }, } }, - ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, - ["ActorSizeUnique__1"] = { affix = "", "3% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, - ["ActorSizeUnique__2"] = { affix = "", "15% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "15% increased Character Size" }, } }, - ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, - ["ActorSizeUnique__4"] = { affix = "", "5% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "5% increased Character Size" }, } }, - ["MaximumManaUniqueBodyStrInt1"] = { affix = "", "50% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "50% reduced maximum Mana" }, } }, - ["MaximumManaUniqueRing5"] = { affix = "", "20% increased maximum Mana", statOrder = { 1580 }, level = 14, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "20% increased maximum Mana" }, } }, - ["MaximumManaUniqueTwoHandMace5"] = { affix = "", "25% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% increased maximum Mana" }, } }, - ["MaximumManaUniqueAmulet10"] = { affix = "", "(16-24)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(16-24)% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff5"] = { affix = "", "18% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "18% increased maximum Mana" }, } }, - ["MaximumManaUniqueStaff6"] = { affix = "", "(50-100)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(50-100)% increased maximum Mana" }, } }, - ["MaximumManaUniqueJewel54"] = { affix = "", "(15-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(15-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__1"] = { affix = "", "(7-10)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-10)% increased maximum Mana" }, } }, - ["MaximumManaUnique___2"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["MaximumManaUnique__3"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__4"] = { affix = "", "(4-6)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, - ["MaximumManaUnique__5"] = { affix = "", "(9-15)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(9-15)% increased maximum Mana" }, } }, - ["MaximumManaUnique__6"] = { affix = "", "(6-10)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(6-10)% increased maximum Mana" }, } }, - ["MaximumManaUnique__7"] = { affix = "", "(15-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(15-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__8"] = { affix = "", "(16-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(16-20)% increased maximum Mana" }, } }, - ["MaximumManaUnique__10"] = { affix = "", "20% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "20% increased maximum Mana" }, } }, - ["MaximumManaImplicitAtlasRing_"] = { affix = "", "(8-10)% increased maximum Mana", statOrder = { 1580 }, level = 100, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, - ["MaximumLifeUniqueOneHandSword2"] = { affix = "", "25% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "25% reduced maximum Life" }, } }, - ["MaximumLifeUniqueAmulet6"] = { affix = "", "20% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, - ["MaximumLifeUniqueBelt4"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeShieldInt1"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUniqueBodyInt3"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUniqueRing16"] = { affix = "", "25% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "25% reduced maximum Life" }, } }, - ["MaximumLifeUniqueBodyStrDex1"] = { affix = "", "(30-40)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(30-40)% increased maximum Life" }, } }, - ["MaximumLifeUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["MaximumLifeUniqueShieldDexInt2"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, - ["MaximumLifeUniqueGlovesStrInt3"] = { affix = "", "(12-16)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(12-16)% increased maximum Life" }, } }, - ["MaximumLifeUniqueJewel52"] = { affix = "", "(6-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__1"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-12)% increased maximum Life" }, } }, - ["MaximumLifeUnique__2"] = { affix = "", "4% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "4% increased maximum Life" }, } }, - ["MaximumLifeUnique__3"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeUnique__4_"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__5"] = { affix = "", "(15-25)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(15-25)% increased maximum Life" }, } }, - ["MaximumLifeUnique__6"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1571 }, level = 25, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__7"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["MaximumLifeUnique__9"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["MaximumLifeUnique__10_"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__11"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__12"] = { affix = "", "(4-7)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-7)% increased maximum Life" }, } }, - ["MaximumLifeUnique__13"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, - ["MaximumLifeUnique__14"] = { affix = "", "5% increased maximum Life", statOrder = { 1571 }, level = 62, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "5% increased maximum Life" }, } }, - ["MaximumLifeUnique__15"] = { affix = "", "(6-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } }, - ["MaximumLifeUnique__16"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__17"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__18"] = { affix = "", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__19"] = { affix = "", "(7-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-12)% increased maximum Life" }, } }, - ["MaximumLifeUnique__20___"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-15)% increased maximum Life" }, } }, - ["MaximumLifeUnique__21"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["MaximumLifeUnique__22"] = { affix = "", "(12-15)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(12-15)% increased maximum Life" }, } }, - ["MaximumLifeUnique__23"] = { affix = "", "24% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "24% reduced maximum Life" }, } }, - ["MaximumLifeUnique__24"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1569 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } }, - ["MaximumLifeUnique__25"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, - ["MaximumLifeUnique__26"] = { affix = "", "(-17-17)% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(-17-17)% reduced maximum Life" }, } }, - ["MaximumLifeUnique__27"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, - ["MaximumLifeImplicitAtlasRing"] = { affix = "", "(5-7)% increased maximum Life", statOrder = { 1571 }, level = 100, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, - ["AreaOfEffectImplicitMarakethTwoHandMace1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitMarakethTwoHandMace2"] = { affix = "", "20% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "20% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitTwoHandMace1__"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectImplicitTwoHandMace2_"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDagger1"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(40-50)% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDescentStaff1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueQuiver6"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 13, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "20% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "20% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueShieldDexInt2"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueOneHandMace7"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["AreaOfEffectUniqueShieldDex7"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__1"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__2_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__3"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__4_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__5"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__6"] = { affix = "", "(10-15)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__7_"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__8"] = { affix = "", "(15-20)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-20)% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__9"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, - ["AreaOfEffectUnique__10"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(40-50)% increased Area of Effect" }, } }, - ["BurnDamageUniqueStaff1"] = { affix = "", "70% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "70% increased Burning Damage" }, } }, - ["BurnDamageUniqueDescentOneHandMace1"] = { affix = "", "25% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "25% increased Burning Damage" }, } }, - ["BurnDamageUniqueRing15"] = { affix = "", "(60-80)% increased Burning Damage", statOrder = { 1877 }, level = 14, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(60-80)% increased Burning Damage" }, } }, - ["BurnDamageUniqueCorruptedJewel1"] = { affix = "", "(20-30)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(20-30)% increased Burning Damage" }, } }, - ["BurnDamageUnique__1"] = { affix = "", "(20-30)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(20-30)% increased Burning Damage" }, } }, - ["CannotCrit"] = { affix = "", "Never deal Critical Strikes", statOrder = { 2178 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3638599682] = { "Never deal Critical Strikes" }, } }, - ["ManaCostIncreaseUniqueTwoHandAxe4"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreaseUniqueGlovesInt6"] = { affix = "", "(40-80)% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(40-80)% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreasedUniqueWand7"] = { affix = "", "40% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "40% increased Mana Cost of Skills" }, } }, - ["ManaCostIncreasedUniqueHelmetStrInt6"] = { affix = "", "75% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "75% increased Mana Cost of Skills" }, } }, - ["ManaCostReductionUnique__1"] = { affix = "", "(6-8)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(6-8)% reduced Mana Cost of Skills" }, } }, - ["ManaCostReductionUnique__2_"] = { affix = "", "(10-20)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(10-20)% reduced Mana Cost of Skills" }, } }, - ["SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5"] = { affix = "", "Socketed Gems have 50% reduced Mana Cost", statOrder = { 555 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2816901897] = { "Socketed Gems have 50% reduced Mana Cost" }, } }, - ["SocketedGemsHaveReducedManaCostUniqueDescentClaw1"] = { affix = "", "Socketed Gems have 50% reduced Mana Cost", statOrder = { 555 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2816901897] = { "Socketed Gems have 50% reduced Mana Cost" }, } }, - ["BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["ArsenalOfVengeance"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10808 }, level = 1, group = "ArsenalOfVengeance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [971749694] = { "Arsenal of Vengeance" }, } }, - ["RetaliationSkillsBecomeUsableEveryXSecondsUnique_1"] = { affix = "", "Damaging Retaliation Skills become Usable every 4 seconds", statOrder = { 9937 }, level = 78, group = "RetaliationSkillsUsableAfterDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1631195850] = { "Damaging Retaliation Skills become Usable every 4 seconds" }, } }, - ["RetaliationSkillDamageUnique_1"] = { affix = "", "Retaliation Skills deal (50-100)% increased Damage", statOrder = { 9931 }, level = 1, group = "RetaliationSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1531617714] = { "Retaliation Skills deal (50-100)% increased Damage" }, } }, - ["RetaliateSkillUseWindowDuration_1"] = { affix = "", "Retaliation Skills become Usable for (50-100)% longer", statOrder = { 9941 }, level = 1, group = "RetaliationSkillUseWindowDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2547149004] = { "Retaliation Skills become Usable for (50-100)% longer" }, } }, - ["CannotEvade"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1918 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, - ["AdditionalArrowsUniqueBow3"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowsUniqueTransformed__1"] = { affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 55, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["AdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowsUnique__2"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 77, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["MinionRunSpeedUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-15)% increased Movement Speed" }, } }, - ["MinionRunSpeedUniqueWand2"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (20-30)% increased Movement Speed" }, } }, - ["MinionRunSpeedUniqueJewel16"] = { affix = "", "Minions have (5-10)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (5-10)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__1"] = { affix = "", "Minions have 10% reduced Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have 10% reduced Movement Speed" }, } }, - ["MinionRunSpeedUnique__2"] = { affix = "", "Minions have (80-100)% increased Movement Speed", statOrder = { 1769 }, level = 48, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (80-100)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__3"] = { affix = "", "Minions have (25-45)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-45)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__4"] = { affix = "", "Minions have (10-20)% increased Movement Speed", statOrder = { 1769 }, level = 78, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-20)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__5"] = { affix = "", "Minions have (40-50)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (40-50)% increased Movement Speed" }, } }, - ["MinionRunSpeedUnique__6"] = { affix = "", "Minions have (15-25)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-25)% increased Movement Speed" }, } }, - ["MinionLifeUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-15)% increased maximum Life" }, } }, - ["MinionLifeUniqueTwoHandSword4"] = { affix = "", "Minions have (30-40)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (30-40)% increased maximum Life" }, } }, - ["MinionLifeUniqueTwoHandMace5"] = { affix = "", "Minions have (20-40)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-40)% increased maximum Life" }, } }, - ["MinionLifeUniqueBodyInt9"] = { affix = "", "Minions have 20% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 20% reduced maximum Life" }, } }, - ["MinionLifeUniqueRing33"] = { affix = "", "Minions have 15% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 15% increased maximum Life" }, } }, - ["MinionLifeUniqueJewel18"] = { affix = "", "Minions have (5-15)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, - ["MinionLifeUnique__1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["MinionLifeUnique__2"] = { affix = "", "Minions have (10-20)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-20)% increased maximum Life" }, } }, - ["MinionLifeUnique__3_"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["MinionLifeUnique__4__"] = { affix = "", "Minions have 10% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 10% reduced maximum Life" }, } }, - ["MinionLifeUnique__5_"] = { affix = "", "Minions have (20-40)% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-40)% reduced maximum Life" }, } }, - ["MinionDamageImplicitHelmet1"] = { affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1973 }, level = 78, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-20)% increased Damage" }, } }, - ["MinionDamageUniqueAmulet3"] = { affix = "", "Minions deal (10-15)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } }, - ["MinionDamageUniqueWand2"] = { affix = "", "Minions deal (50-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-70)% increased Damage" }, } }, - ["MinionDamageUniqueTwoHandSword4"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-40)% increased Damage" }, } }, - ["MinionDamageUniqueBodyInt9"] = { affix = "", "Minions deal 15% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal 15% increased Damage" }, } }, - ["MinionDamageUniqueJewel1"] = { affix = "", "Minions deal (8-12)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (8-12)% increased Damage" }, } }, - ["MinionDamageUnique__1"] = { affix = "", "Minions deal (8-12)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (8-12)% increased Damage" }, } }, - ["MinionDamageUnique__2"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["MinionDamageUnique__3_"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-80)% increased Damage" }, } }, - ["MinionDamageUnique4"] = { affix = "", "Minions deal (10-15)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } }, - ["MinionDamageUnique__5"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-40)% increased Damage" }, } }, - ["MinionDamageUnique__6"] = { affix = "", "Minions deal (35-45)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (35-45)% increased Damage" }, } }, - ["MinionDamageUnique__7"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-80)% increased Damage" }, } }, - ["MinionDamageUnique__8_"] = { affix = "", "Minions deal (40-60)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-60)% increased Damage" }, } }, - ["MinionDamageUnique__9"] = { affix = "", "Minions deal (113-157)% increased Damage", statOrder = { 1973 }, level = 80, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (113-157)% increased Damage" }, } }, - ["MinionDurationUnique__1"] = { affix = "", "(17-31)% increased Minion Duration", statOrder = { 5032 }, level = 80, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-31)% increased Minion Duration" }, } }, - ["MinionPhysicalDamageAsChaosUnique__1"] = { affix = "", "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 9350 }, level = 80, group = "MinionPhysicalDamageAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "minion" }, tradeHashes = { [2656936969] = { "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage" }, } }, - ["MinionAttackAndCastSpeedUnique__1"] = { affix = "", "Minions have (12-16)% increased Attack Speed", "Minions have (12-16)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (12-16)% increased Attack Speed" }, [4000101551] = { "Minions have (12-16)% increased Cast Speed" }, } }, - ["MinionChaosResistanceUnique___1"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +29% to Chaos Resistance" }, } }, - ["MinionChaosResistanceUnique__2__"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +29% to Chaos Resistance" }, } }, - ["MinionChaosResistanceUnique__3"] = { affix = "", "Minions have +(-17-17)% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(-17-17)% to Chaos Resistance" }, } }, - ["MinionAttackBlockChanceUnique__1"] = { affix = "", "Minions have +(10-12)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(10-12)% Chance to Block Attack Damage" }, } }, - ["MinionAttackBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +25% Chance to Block Attack Damage" }, } }, - ["MinionSpellBlockChanceUnique__1_"] = { affix = "", "Minions have +(10-12)% Chance to Block Spell Damage", statOrder = { 2904 }, level = 1, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +(10-12)% Chance to Block Spell Damage" }, } }, - ["MinionSpellBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2904 }, level = 1, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +25% Chance to Block Spell Damage" }, } }, - ["MinionAttackDodgeChanceUnique__1"] = { affix = "", "Minions have +(10-12)% chance to Suppress Spell Damage", statOrder = { 9334 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(10-12)% chance to Suppress Spell Damage" }, } }, - ["MinionSpellDodgeChanceUnique__1_"] = { affix = "", "Minions have +(10-12)% chance to Suppress Spell Damage", statOrder = { 9334 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(10-12)% chance to Suppress Spell Damage" }, } }, - ["MinionSuppressSpellChanceUnique__1"] = { affix = "", "Minions have +(20-24)% chance to Suppress Spell Damage", statOrder = { 9334 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(20-24)% chance to Suppress Spell Damage" }, } }, - ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 2173 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 2173 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, - ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply one fewer Curse" }, } }, - ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "100% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, - ["ConvertPhysicalToFireUnique__4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "100% of Physical Damage Converted to Fire Damage" }, } }, - ["BeltIncreasedFlaskEffectUnique__1"] = { affix = "", "Flasks applied to you have 25% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 25% increased Effect" }, } }, - ["BeltIncreasedFlaskEffectUnique__2"] = { affix = "", "Flasks applied to you have 60% reduced Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 60% reduced Effect" }, } }, - ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "30% reduced Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(15-25)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 2184 }, 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 = { 2184 }, 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 = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__4"] = { affix = "", "150% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "150% increased Flask Effect Duration" }, } }, - ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "30% reduced Flask Effect Duration" }, } }, - ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 2187 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, - ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(20-30)% reduced Flask Effect Duration" }, } }, - ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "30% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "10% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "100% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-40)% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryUnique__2"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "100% increased Life Recovery from Flasks" }, } }, - ["FlaskLifeRecoveryUnique__1"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "30% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskManaRecoveryUnique__2"] = { affix = "", "100% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "100% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUnique__1"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUnique__2"] = { affix = "", "(1-100)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(1-100)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(60-100)% increased Mana Recovery from Flasks" }, } }, - ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "15% increased Mana Recovery from Flasks" }, } }, - ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "25% increased Flask Life Recovery rate" }, } }, - ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "50% increased Flask Life Recovery rate" }, } }, - ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 2189 }, 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 = { 2190 }, 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 = { 2190 }, 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 = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "50% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, - ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1856 }, 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 = { 1856 }, 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 = { 1856 }, 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 = { 1856 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 67 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, - ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1841 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["AttackerTakesDamageUnique_1"] = { affix = "", "Reflects (200-300) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (200-300) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (5-12) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (10-23) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (24-35) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (36-50) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (51-70) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (91-120) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (121-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (151-180) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (181-220) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (221-260) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (261-300) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects 5 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (100-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects 100 Cold Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 2197 }, 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 = { 2234 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, - ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10801 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, - ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, - ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, - ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "25% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, - ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, - ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1837, 1838 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, - ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1837, 1838 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, - ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1886 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [73272763] = { "20% reduced Mana Cost of Skills when on Low Life" }, } }, - ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1622 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1637928656] = { "+20% to all Elemental Resistances while on Low Life" }, } }, - ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1545 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3470876581] = { "+(150-250) to Evasion Rating while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 1% of Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 2% of Life per second while on Low Life" }, } }, - ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of Life per second while on Low Life" }, } }, - ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1599 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2929867083] = { "100% increased Rarity of Items found when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "40% reduced Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "20% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "30% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "(10-20)% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "20% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "15% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "30% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "10% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "(6-8)% increased Movement Speed when on Low Life" }, } }, - ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, - ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "30% increased Movement Speed when on Full Life" }, } }, - ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-100)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, - ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-50)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(20-30)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-40)% increased Elemental Damage" }, } }, - ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(7-10)% increased Elemental Damage" }, } }, - ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "100% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 20% of Physical Damage as Extra Cold Damage" }, } }, - ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(0-50)% of Physical Damage Converted to Cold Damage" }, } }, - ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, - ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, - ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1222 }, 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 = { 1222 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, - ["Conduit"] = { affix = "", "Conduit", statOrder = { 10776 }, 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 = { 2234 }, 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 = { 2234 }, 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 = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-10) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-3 Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(7-5) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(50-40) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(18-14) Physical Damage taken from Attack Hits" }, } }, - ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(60-30) Physical Damage taken from Attack Hits" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-6)% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+3% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+10% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "-10% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-10)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-12)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(9-13)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(20-25)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__10"] = { affix = "", "+(3-8)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-8)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__11"] = { affix = "", "+15% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+15% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__12"] = { affix = "", "+(1-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-10)% Chance to Block" }, } }, - ["AdditionalBlockChanceUnique__13"] = { affix = "", "+(5-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-10)% Chance to Block" }, } }, - ["SpellBlockOnLowLifeUniqueShieldStrDex1"] = { affix = "", "36% Chance to Block Spell Damage while on Low Life", statOrder = { 1156 }, level = 1, group = "BlockPercentAppliedToSpellsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4070519133] = { "36% Chance to Block Spell Damage while on Low Life" }, } }, - ["SpellBlockUniqueShieldInt1"] = { affix = "", "(12-18)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(12-18)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueShieldStrInt1"] = { affix = "", "(21-24)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(21-24)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueBootsInt5"] = { affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(6-7)% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueTwoHandAxe6"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "7% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueDescentShieldStr1"] = { affix = "", "30% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "30% Chance to Block Spell Damage" }, } }, - ["SpellBlockUniqueShieldInt4"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "7% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_"] = { affix = "", "+30% Chance to Block Spell Damage while on Low Life", statOrder = { 1145 }, level = 1, group = "SpellBlockPercentageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2253286128] = { "+30% Chance to Block Spell Damage while on Low Life" }, } }, - ["SpellBlockPercentageUniqueShieldInt1"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldStrInt1"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueBootsInt5"] = { affix = "", "(15-20)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentageRainbowstride", weightKey = { }, weightVal = { }, modTags = { "block", "blue_herring" }, tradeHashes = { [561307714] = { "(15-20)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueTwoHandAxe6"] = { affix = "", "(7-10)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(7-10)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldInt4"] = { affix = "", "10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, - ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, - ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(-3-3)% to maximum Cold Resistance" }, } }, - ["MaximumColdResistUnique__2"] = { affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, } }, - ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(-3-3)% to maximum Fire Resistance" }, } }, - ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, } }, - ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(-3-3)% to maximum Lightning Resistance" }, } }, - ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects (25-50) Cold Damage to Melee Attackers" }, } }, - ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-25 Physical Damage taken from Projectile Attacks", statOrder = { 2246 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-25 Physical Damage taken from Projectile Attacks" }, } }, - ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical Damage taken from Projectile Attacks", statOrder = { 2246 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-(80-50) Physical Damage taken from Projectile Attacks" }, } }, - ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Strike", statOrder = { 1828 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [398702949] = { "Gain a Frenzy Charge on Critical Strike" }, } }, - ["DisableOffhandSlot"] = { affix = "", "Uses both hand slots", statOrder = { 1074 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2846730569] = { "Uses both hand slots" }, } }, - ["DisableOffHandSlotUnique__1"] = { affix = "", "Uses both hand slots", statOrder = { 1074 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2846730569] = { "Uses both hand slots" }, } }, - ["CannotBlockAttacks"] = { affix = "", "Cannot Block Attack Damage", statOrder = { 2258 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3162258068] = { "Cannot Block Attack Damage" }, } }, - ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, } }, - ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-4)% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+(1-4)% to all maximum Resistances" }, } }, - ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "-5% to all maximum Resistances" }, } }, - ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 10 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 15 Concentrated Effect" }, } }, - ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 5 Concentrated Effect" }, } }, - ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 465 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3265951306] = { "Socketed Gems are Supported by Level 10 Fire Penetration" }, } }, - ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 462 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 10 Added Fire Damage" }, } }, - ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 10 Cold to Fire" }, } }, - ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 5 Cold to Fire" }, } }, - ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 463 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 30 Cold to Fire" }, } }, - ["ShareEnduranceChargesWithParty"] = { affix = "", "Share Endurance Charges with nearby party members", statOrder = { 2260 }, level = 1, group = "ShareEnduranceChargesWithParty", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1881314095] = { "Share Endurance Charges with nearby party members" }, } }, - ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Strike", statOrder = { 1835 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHashes = { [2609824731] = { "Gain an Endurance Charge when you take a Critical Strike" }, } }, - ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 2263 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "10% chance to Blind Enemies on hit" }, } }, - ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, } }, - ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 30 Blind" }, } }, - ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 6 Blind" }, } }, - ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 10 Blind" }, } }, - ["ReducedFreezeDurationUniqueShieldStrInt3"] = { affix = "", "80% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "80% reduced Freeze Duration on you" }, } }, - ["FreezeDurationOnSelfUnique__1"] = { affix = "", "10000% increased Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "10000% increased Freeze Duration on you" }, } }, - ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-1000)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2436 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1814782245] = { "(600-1000)% more Physical Damage with Unarmed Melee Attacks" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 358 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [282757414] = { "Socketed Gems are Supported by Level 15 Pulverise" }, } }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 224 }, 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 = { 224 }, 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 = { 411 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["EnemiesCantLifeLeech"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, - ["UniqueEnemiesCantLifeLeech__1"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, - ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10857 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, - ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 79 }, 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 = { 1162 }, 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 = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-12)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+8% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+5% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, 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 = { 1162 }, 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 = { 1615, 1616 }, 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 Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 9538 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+(1-2) to maximum number of Raised Zombies", "+(1-2) to maximum number of Spectres", "+(1-2) to maximum number of Skeletons", statOrder = { 2160, 2161, 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+(1-2) to maximum number of Raised Zombies" }, [2428829184] = { "+(1-2) to maximum number of Skeletons" }, [125218179] = { "+(1-2) to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9538 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [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 = { 10047, 10048, 10049 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 10049 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 10047 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, - ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 10048 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, - ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 527 }, 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 = { 527 }, 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 = { 527 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, - ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 535 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3418772] = { "Socketed Gems have 10% chance to cause Enemies to Flee on Hit" }, } }, - ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 2200 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, - ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 2200 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 150 Lightning Damage to Melee Attackers" }, } }, - ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 5042 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3555122266] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, [3711497052] = { "" }, } }, - ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 9538 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 1076, 2439 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2492660287] = { "Reserves 30% of Life" }, [623651254] = { "Cannot be used with Chaos Inoculation" }, } }, - ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, 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 bypass Energy Shield", statOrder = { 2510 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1119465199] = { "Chaos Damage taken does not bypass Energy Shield" }, } }, - ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "25% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2442 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2749166636] = { "50% more Damage with Arrow Hits at Close Range" }, } }, - ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2444 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3261557635] = { "Bow Knockback at Close Range" }, } }, - ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(5-10)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "8% of Damage taken Recouped as Mana" }, } }, - ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(6-12)% of Damage taken Recouped as Mana" }, } }, - ["ChanceToIgniteUniqueBodyInt2"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueTwoHandSword6"] = { affix = "", "20% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueDescentOneHandMace1"] = { affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueBootsStrInt3"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, - ["ChanceToIgniteUniqueRing38"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__1"] = { affix = "", "(16-22)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(16-22)% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__2"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__3"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__4"] = { affix = "", "(6-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-10)% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__5"] = { affix = "", "25% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, - ["ChanceToIgniteUnique__6"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, - ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(40-75)% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "500% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "15% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "25% reduced Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "33% increased Ignite Duration on Enemies" }, } }, - ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "10000% increased Ignite Duration on Enemies" }, } }, - ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { affix = "", "20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["PhysicalDamageTakenAsFirePercentUnique__1"] = { affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["AttackerTakesFireDamageUniqueBodyInt2"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2204 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, [223497523] = { "" }, } }, - ["AttackerTakesFireDamageUnique__1"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2204 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, [223497523] = { "" }, } }, - ["AttackerTakesColdDamageUnique__1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects 100 Cold Damage to Melee Attackers" }, } }, - ["AttackerTakesLightningDamageUnique__1"] = { affix = "", "Reflects 100 Lightning Damage to Melee Attackers", statOrder = { 2205 }, level = 1, group = "AttackerTakesLightningDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3868184702] = { "Reflects 100 Lightning Damage to Melee Attackers" }, } }, - ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1998 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "(10-15)% increased Physical Damage with Ranged Weapons" }, } }, - ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 1998 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "(75-150)% increased Physical Damage with Ranged Weapons" }, } }, - ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2457 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "1000% of Melee Physical Damage taken reflected to Attacker" }, } }, - ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+5% Chance to Block Attack Damage" }, } }, - ["AdditionalBlockUnique__1"] = { affix = "", "+(2-6)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-6)% Chance to Block Attack Damage" }, } }, - ["AdditionalBlockUnique__2"] = { affix = "", "15% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "15% Chance to Block Attack Damage" }, } }, - ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4990 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, - ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Leech Energy Shield instead of Life", statOrder = { 7337 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3346092312] = { "Leech Energy Shield instead of Life" }, } }, - ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1163 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, - ["ArmourPercent VsProjectilesUniqueShieldStr2"] = { affix = "", "200% increased Armour against Projectiles", statOrder = { 2463 }, level = 1, group = "ArmourPercentVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [706246936] = { "200% increased Armour against Projectiles" }, } }, - ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, - ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2465 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, - ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, - ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 45% increased Reservation Efficiency" }, } }, - ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 25% increased Reservation Efficiency" }, } }, - ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 528 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% reduced Reservation Efficiency" }, } }, - ["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "8% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-10)% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "2% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } }, - ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2461 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 20% increased Damage" }, } }, - ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2461 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 20% increased Damage" }, } }, - ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 1080 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "60% increased Intelligence Requirement" }, } }, - ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 1080 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "500% increased Intelligence Requirement" }, } }, - ["LocalInflictHallowingFlameOnHitUnique__1"] = { affix = "", "Attacks with this weapon inflict Hallowing Flame on Hit", statOrder = { 63 }, level = 1, group = "LocalInflictHallowingFlameOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [254952564] = { "Attacks with this weapon inflict Hallowing Flame on Hit" }, } }, - ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+257 Intelligence Requirement" }, } }, - ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 15 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 10 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 458 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 25 Added Chaos Damage" }, } }, - ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 29 Added Chaos Damage" }, } }, - ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2468 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, - ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2469 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [4075957192] = { "Poisonous Hit" }, } }, - ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1779 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(150-200)% increased Skeleton Duration" }, } }, - ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1779 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(10-20)% reduced Skeleton Duration" }, } }, - ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "25% increased Strength Requirement" }, } }, - ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "20% reduced Strength Requirement" }, } }, - ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "30% reduced Strength Requirement" }, } }, - ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "40% increased Strength Requirement" }, } }, - ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "500% increased Strength Requirement" }, } }, - ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, - ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+(500-700) Strength Requirement" }, } }, - ["StrengthRequirementsUnique__4"] = { affix = "", "+100 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, - ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+300 Intelligence Requirement" }, } }, - ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+212 Intelligence Requirement" }, } }, - ["IntelligenceRequirementsUnique_1"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, - ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 1077 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+160 Dexterity Requirement" }, } }, - ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4272453892] = { "+600 Strength and Intelligence Requirement" }, } }, - ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2471 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3557561376] = { "100% increased Spell Damage taken when on Low Mana" }, } }, - ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1546 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1000 to Evasion Rating while on Full Life" }, } }, - ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1546 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1500 to Evasion Rating while on Full Life" }, } }, - ["ReflectCurses"] = { affix = "", "Hex Reflection", statOrder = { 2476 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Hex Reflection" }, } }, - ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 897 }, level = 1, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, - ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2482 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [20157668] = { "50% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, 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 = { 2481 }, 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 = { 2483 }, 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 Strike", statOrder = { 7864 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Strike" }, } }, - ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7874 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Strike" }, } }, - ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2479 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, - ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2495 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, - ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 2174 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, - ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2145 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHashes = { [634031003] = { "20% increased effect of Non-Curse Auras from your Skills on your Minions" }, } }, - ["AuraEffectUnique__1"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectUnique__2____"] = { affix = "", "10% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "10% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2145 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHashes = { [634031003] = { "20% increased effect of Non-Curse Auras from your Skills on your Minions" }, } }, - ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(40-50)% increased Area Damage" }, } }, - ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "10% increased Area Damage" }, } }, - ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-20)% increased Area Damage" }, } }, - ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, - ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1191 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-30)% increased Damage" }, } }, - ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, - ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-50)% increased Global Damage" }, } }, - ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-60)% increased Global Damage" }, } }, - ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, - ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-25)% increased Damage" }, } }, - ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(250-300)% increased Global Damage" }, } }, - ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-40)% increased Damage" }, } }, - ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "31% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, - ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2500 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, - ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, - ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, - ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, - ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__1"] = { affix = "", "(15-20)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-20)% increased Light Radius" }, } }, - ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-30)% increased Light Radius" }, } }, - ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, - ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, - ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, - ["LightRadiusUnique__9"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, - ["LightRadiusUnique__10"] = { affix = "", "50% reduced Light Radius", statOrder = { 2500 }, level = 100, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, - ["LightRadiusUnique__11"] = { affix = "", "50% increased Light Radius", statOrder = { 2500 }, level = 92, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, - ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2521 }, 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 Strike", statOrder = { 2511 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2283772011] = { "" }, [927458676] = { "Spreads Tar when you take a Critical Strike" }, [545338400] = { "" }, } }, - ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6918 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, [1208949000] = { "" }, [3568390883] = { "" }, [640757053] = { "" }, } }, - ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2532 }, 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 = { 2535 }, 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 = { 2537 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, - ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__1"] = { affix = "", "(-15-15)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(-15-15)% reduced Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__3"] = { affix = "", "(10-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 20, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(10-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "80% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "80% reduced Reservation Efficiency of Skills" }, } }, - ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "20% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "20% reduced Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "12% increased Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "12% increased Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__5"] = { affix = "", "(5-10)% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(5-10)% increased Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__6"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__7"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__8"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__9"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ReservationEfficiencyUnique__10"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, - ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1627 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, - ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1847 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4271082039] = { "100% chance to Avoid being Ignited while on Low Life" }, } }, - ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 466 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 5 Elemental Proliferation" }, } }, - ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 466 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } }, - ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "15% increased Skill Effect Duration" }, } }, - ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1895 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-20)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-20-20)% reduced Skill Effect Duration" }, } }, - ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "4% increased Skill Effect Duration" }, } }, - ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "30% increased Skill Effect Duration" }, } }, - ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 183 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3852526385] = { "+5 to Level of Socketed Movement Gems" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "5% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, - ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "+2% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2546 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [482967934] = { "+2% chance to Suppress Spell Damage per Frenzy Charge" }, } }, - ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "10% increased Evasion Rating per Frenzy Charge" }, } }, - ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1809 }, 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 = { 1809 }, 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 = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, - ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2543 }, level = 1, group = "WeaponPhysicalDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, - ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 2544 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, - ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Physical Weapon Damage per 10 Strength", statOrder = { 2545 }, level = 1, group = "IncreasedAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2594215131] = { "16% increased Physical Weapon Damage per 10 Strength" }, } }, - ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 2127 }, 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 = { 2127 }, 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 = { 2254 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, - ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% increased Totem Life" }, } }, - ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(14-20)% increased Totem Life" }, } }, - ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% increased Totem Life" }, } }, - ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 464 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } }, - ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 460 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2091466357] = { "Socketed Gems are Supported by Level 10 Increased Duration" }, } }, - ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Hex on you when your Totems die", statOrder = { 2551 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Hex on you when your Totems die" }, } }, - ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 467 }, 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 = { 467 }, 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 = { 7432 }, 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 = { 7432 }, 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 on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration on Enemies" }, } }, - ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7432 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUnique__3"] = { affix = "", "25% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "25% increased Shock Duration on Enemies" }, } }, - ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, - ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "500% increased Attribute Requirements" }, } }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1"] = { affix = "", "400% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "400% increased Attribute Requirements" }, } }, - ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "800% increased Attribute Requirements" }, } }, - ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Strike Multiplier", statOrder = { 1502 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-125)% to Melee Critical Strike Multiplier" }, } }, - ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1605 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Items and Gems have 25% reduced Attribute Requirements", statOrder = { 2552 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 25% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Items and Gems have 10% increased Attribute Requirements", statOrder = { 2552 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 10% increased Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Items and Gems have 100% reduced Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 100% reduced Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Items and Gems have 50% increased Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 50% increased Attribute Requirements" }, } }, - ["GlobalItemAttributeRequirementsUnique__3"] = { affix = "", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, - ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "50% reduced Effect of Curses on you" }, } }, - ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "60% reduced Effect of Curses on you" }, } }, - ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "50% increased Effect of Curses on you" }, } }, - ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, - ["ReducedCurseEffectUnique__2"] = { affix = "", "80% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "80% reduced Effect of Curses on you" }, } }, - ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 30 Mana per Enemy Hit with Attacks" }, } }, - ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 30 Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants (2-3) Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 2 Mana per Enemy Hit" }, } }, - ["ManaGainPerTargetUnique__3"] = { affix = "", "Gain (5-10) Mana per Enemy Killed", statOrder = { 1763 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (5-10) Mana per Enemy Killed" }, } }, - ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 10 Chance to Flee" }, } }, - ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 498 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 2 Chance to Flee" }, } }, - ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 50% reduced Extra Damage from Critical Strikes" }, } }, - ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2554 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1252481812] = { "Emits a golden glow" }, } }, - ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2555 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2366940416] = { "+(20-25)% to Chaos Resistance when on Low Life" }, } }, - ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2553 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482008875] = { "Enemy hits on you roll low Damage" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 30 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 12 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 13 Faster Attacks" }, } }, - ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 15 Faster Attacks" }, } }, - ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 468 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2985291457] = { "Socketed Gems are Supported by Level 30 Melee Physical Damage" }, } }, - ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 2124 }, 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 = { 2124 }, 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 = { 2556 }, 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 = { 6420 }, 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 = { 6420 }, 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 = { 6379 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, - ["EnemyExtraDamagerollsWithPhysicalDamageUnique_1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6378 }, level = 98, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, - ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2558 }, 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 = { 2557 }, 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 = { 2206 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [189451991] = { "Reflects 30 Chaos Damage to Melee Attackers" }, } }, - ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, - ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "15% increased Power Charge Duration" }, } }, - ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "30% reduced Power Charge Duration" }, } }, - ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(80-100)% increased Power Charge Duration" }, } }, - ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "25% increased Spell Damage per Power Charge" }, } }, - ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(4-7)% increased Spell Damage per Power Charge" }, } }, - ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(12-16)% increased Spell Damage per Power Charge" }, } }, - ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2573 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [16552558] = { "" }, [2298756203] = { "" }, [573884683] = { "100% chance to create Consecrated Ground when you Block" }, [264301062] = { "" }, } }, - ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2574 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, [3161959833] = { "" }, [2544633803] = { "" }, [800117438] = { "" }, } }, - ["DisableChestSlot"] = { affix = "", "Can't use Chest armour", statOrder = { 2583 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Chest armour" }, } }, - ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 213 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+1 to Level of Socketed Elemental Gems" }, } }, - ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 213 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+2 to Level of Socketed Elemental Gems" }, } }, - ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per Enemy Killed", statOrder = { 2571 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (15-20) Energy Shield per Enemy Killed" }, } }, - ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per Enemy Killed", statOrder = { 2571 }, 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 Hit with Attacks", statOrder = { 1747 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (15-25) Energy Shield per Enemy Hit with Attacks" }, } }, - ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2584 }, 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 = { 5788 }, 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 = { 2585 }, 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 = { 1221 }, 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 = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "30% increased Attack Speed when on Low Life" }, } }, - ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "40% reduced Projectile Damage" }, } }, - ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2749 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1425651005] = { "20% reduced Damage taken from Projectile Hits" }, } }, - ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2549 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [993866933] = { "You cannot increase the Rarity of Items found" }, } }, - ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2550 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778266957] = { "You cannot increase the Quantity of Items found" }, } }, - ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2676 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2776725787] = { "You cannot be killed by reflected Elemental Damage" }, } }, - ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2995 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1852317988] = { "Insufficient Mana doesn't prevent your Melee Attacks" }, } }, - ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2995 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1852317988] = { "Insufficient Mana doesn't prevent your Melee Attacks" }, } }, - ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1180 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(16-24) to Strength and Dexterity" }, } }, - ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1181 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(16-24) to Strength and Intelligence" }, } }, - ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1182 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(16-24) to Dexterity and Intelligence" }, } }, - ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(30-50) to Strength and Dexterity" }, } }, - ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, - ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+1 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% reduced Endurance Charge Duration" }, } }, - ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% increased Endurance Charge Duration" }, } }, - ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(20-30)% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "33% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "15% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "25% chance to gain a Frenzy Charge on Kill" }, } }, - ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "30% chance to gain a Frenzy Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "15% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(25-35)% chance to gain a Power Charge on Kill" }, } }, - ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "30% chance to gain a Power Charge on Kill" }, } }, - ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "30% chance to gain an Endurance Charge on Kill" }, } }, - ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2636 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1791875585] = { "Gain an Endurance Charge when you lose a Power Charge" }, } }, - ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2591 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1194648995] = { "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield" }, } }, - ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2638 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3579807004] = { "60% increased Melee Damage when on Full Life" }, } }, - ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Strike", statOrder = { 2639 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3195625581] = { "Creates Consecrated Ground on Critical Strike" }, } }, - ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2640 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3159161267] = { "5% increased Projectile Speed per Frenzy Charge" }, } }, - ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2641 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "5% increased Projectile Damage per Power Charge" }, } }, - ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2648 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [783864527] = { "Right ring slot: You cannot Regenerate Mana" }, } }, - ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of Energy Shield per second", statOrder = { 2649 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3676958605] = { "Right ring slot: Regenerate 6% of Energy Shield per second" }, } }, - ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2660 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [195090426] = { "Left ring slot: 100% increased Mana Regeneration Rate" }, } }, - ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2653 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4263540840] = { "Left ring slot: You cannot Recharge or Regenerate Energy Shield" }, } }, - ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 2% of Energy Shield per second" }, } }, - ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2645 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (80-100) Energy Shield per second" }, } }, - ["NoEnergyShieldRegenerationUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 60, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["LifeLeechAnyDamageUnique__1"] = { affix = "", "1% of Damage Leeched as Life", statOrder = { 1661 }, level = 1, group = "LifeLeechAnyDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4069440714] = { "1% of Damage Leeched as Life" }, } }, - ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Strike", statOrder = { 2642 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical", "drop" }, tradeHashes = { [21824003] = { "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Strike" }, } }, - ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2643 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2643 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 3 seconds on Kill" }, } }, - ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 2048 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [269590092] = { "4% reduced Attack and Cast Speed per Frenzy Charge" }, } }, - ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of Life per second per Frenzy Charge", statOrder = { 2628 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.8% of Life per second per Frenzy Charge" }, } }, - ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2810 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1696792323] = { "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life" }, } }, - ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2627 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "30% increased Movement Speed while Cursed" }, } }, - ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1139 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+10% Chance to Block Attack Damage while holding a Shield" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 240 to 300 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 8 to 14 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 4 to 8 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 1000 to 10000 Physical Damage to Attackers on Block" }, } }, - ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects (22-44) Physical Damage to Attackers on Block" }, } }, - ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1757 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(34-48) Life gained when you Block" }, } }, - ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1758 }, 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 = { 1758 }, 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 = { 2589 }, 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 = { 10756 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, - ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2590 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, tradeHashes = { [3150000576] = { "Raised Zombies have +(25-30)% to all Resistances" }, } }, - ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2680 }, 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 = { 2682 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2857427872] = { "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage" }, } }, - ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2588 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4041805509] = { "50% reduced maximum number of Raised Zombies" }, } }, - ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2592 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4207939995] = { "2% increased Intelligence for each Unique Item Equipped" }, } }, - ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2595 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2920230984] = { "3% chance for Slain monsters to drop an additional Scroll of Wisdom" }, } }, - ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1968 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "40% of Cold Damage Converted to Fire Damage" }, } }, - ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2593 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3173052379] = { "Ignited Enemies Killed by your Hits are destroyed" }, } }, - ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Strike", statOrder = { 2679 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1055188639] = { "You gain Onslaught for 4 seconds on Critical Strike" }, } }, - ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2678 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, - ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(30-50)% increased Rarity of Items found during Effect", statOrder = { 1023 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask", "drop" }, tradeHashes = { [1740200922] = { "(30-50)% increased Rarity of Items found during Effect" }, } }, - ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 1022 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask", "drop" }, tradeHashes = { [3736953565] = { "(8-12)% increased Quantity of Items found during Effect" }, } }, - ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 1026 }, level = 1, group = "FlaskLightRadius", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2745936267] = { "25% increased Light Radius during Effect" }, } }, - ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 1011 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [4026156644] = { "+4% to all maximum Elemental Resistances during Effect" }, } }, - ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+10% to Elemental Resistances during Effect", statOrder = { 1031 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [3110554274] = { "+10% to Elemental Resistances during Effect" }, } }, - ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2687 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [185598681] = { "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value" }, } }, - ["ConvertFireToChaosUniqueBodyInt4"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [3901645945] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1970 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueDagger10"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [3901645945] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, - ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1970 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, - ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2675 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2591020064] = { "1% increased Movement Speed per 600 Evasion Rating, up to 75%" }, } }, - ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2879 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Your Physical Damage can Chill" }, } }, - ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2879 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Your Physical Damage can Chill" }, } }, - ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2694 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3304763863] = { "15% increased Quantity of Items Dropped by Slain Frozen Enemies" }, } }, - ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2696 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3188291252] = { "30% increased Rarity of Items Dropped by Slain Shocked Enemies" }, } }, - ["ManaLeechPerPowerChargeUniqueBelt5"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana per Power Charge", statOrder = { 1719 }, level = 88, group = "ManaLeechPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3394240821] = { "1% of Physical Attack Damage Leeched as Mana per Power Charge" }, } }, - ["ManaLeechPermyriadPerPowerChargeUniqueBelt5_"] = { affix = "", "0.2% of Attack Damage Leeched as Mana per Power Charge", statOrder = { 8183 }, level = 88, group = "ManaLeechPermyriadPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2628721358] = { "0.2% of Attack Damage Leeched as Mana per Power Charge" }, } }, - ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (49-98) to (101-140) Chaos Damage" }, } }, - ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (60-68) to (90-102) Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds 1 to 59 Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-67) to (71-89) Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (600-650) to (750-800) Chaos Damage" }, } }, - ["LocalAddedChaosDamageUnique__4"] = { affix = "", "Adds (163-199) to (241-293) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (163-199) to (241-293) Chaos Damage" }, } }, - ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2698 }, 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 = { 2693 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2524948385] = { "You take 450 Chaos Damage per second for 0 seconds on Kill" }, [3856647970] = { "You take 0 Chaos Damage per second for 3 seconds on Kill" }, } }, - ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10854 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2692 }, 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 = { 2692 }, 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 = { 10854 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10860 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10854 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, - ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, - ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "-10% to maximum Chance to Block Attack Damage" }, } }, - ["MaximumBlockChanceUnique__2"] = { affix = "", "-10% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "-10% to maximum Chance to Block Attack Damage" }, } }, - ["MaximumSpellBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Spell Damage", statOrder = { 1989 }, level = 1, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2388574377] = { "-10% to maximum Chance to Block Spell Damage" }, } }, - ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2564 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 50% faster" }, } }, - ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2568 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2568 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["EnemiesCannotLeechMana"] = { affix = "", "Enemies Cannot Leech Mana From you", statOrder = { 2441 }, level = 1, group = "EnemiesCannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293245253] = { "Enemies Cannot Leech Mana From you" }, } }, - ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2570 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3279535558] = { "Cannot Leech when on Low Life" }, } }, - ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "20% increased Melee Damage" }, } }, - ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(30-40)% increased Melee Damage" }, } }, - ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1234 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(16-20)% increased Melee Damage" }, } }, - ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1234 }, 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 = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, - ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10794 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["ChanceToIgniteUniqueOneHandSword4"] = { affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, - ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2700 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, - ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (150-200) to (330-400) Fire Damage in Main Hand", statOrder = { 1363 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (150-200) to (330-400) Fire Damage in Main Hand" }, } }, - ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1363 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (255-285) to (300-330) Fire Damage in Main Hand" }, } }, - ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (151-199) to (331-401) Chaos Damage in Off Hand", statOrder = { 1391 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3758293500] = { "Adds (151-199) to (331-401) Chaos Damage in Off Hand" }, } }, - ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1372 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2109066258] = { "Adds (255-285) to (300-330) Cold Damage in Off Hand" }, } }, - ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["ChaosDamageCanShockUnique__1"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10511 }, 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 = { 7943 }, 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 = { 7943 }, 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 = { 2706 }, 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 = { 494 }, 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 = { 500 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, - ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 500 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, } }, - ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 874 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [2917449574] = { "Removes 80% of your maximum Energy Shield on use" }, } }, - ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 875 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [2301696196] = { "You take 50% of your maximum Life as Chaos Damage on use" }, } }, - ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 887 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [3230795453] = { "Gain (1-3) Frenzy Charge on use" }, } }, - ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 888 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "power_charge" }, tradeHashes = { [2697049014] = { "Gain (1-3) Power Charge on use" }, } }, - ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 886 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain (1-3) Endurance Charge on use" }, } }, - ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 886 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain 1 Endurance Charge on use" }, } }, - ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2712 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3128318472] = { "You can only deal Damage with this Weapon or Ignite" }, } }, - ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(250-300)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(70-100)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUniqueFlask36"] = { affix = "", "(200-300)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(200-300)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(10-20)% reduced Charges per use" }, } }, - ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: 100% of Elemental Hit Damage from you and", "your Minions cannot be Reflected", statOrder = { 7979, 7979.1 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [3991837781] = { "Left ring slot: 100% of Elemental Hit Damage from you and", "your Minions cannot be Reflected" }, } }, - ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: 100% of Physical Hit Damage from you and", "your Minions cannot be Reflected", statOrder = { 8006, 8006.1 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3829555156] = { "Right ring slot: 100% of Physical Hit Damage from you and", "your Minions cannot be Reflected" }, } }, - ["DamageCannotBeReflectedUnique__1"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["DamageCannotBeReflectedUnique__2"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2981 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 25% Fire Resistance" }, } }, - ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2755 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [1305605911] = { "Removes Burning when you use a Flask" }, } }, - ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "30% of Damage is taken from Mana before Life" }, } }, - ["ChanceToShockUniqueBow10"] = { affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(15-20)% chance to Shock" }, } }, - ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "9% chance to Shock" }, } }, - ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, - ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, - ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, - ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, - ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "50% chance to Shock" }, } }, - ["ChanceToShockUnique__3"] = { affix = "", "(5-10)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(5-10)% chance to Shock" }, } }, - ["ChanceToShockUnique__4_"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-15)% chance to Shock" }, } }, - ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1842038569] = { "100% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1550221644] = { "50% increased Fishing Pool Consumption" }, } }, - ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Siren Worm Bait" }, } }, - ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Thaumaturgical Lure" }, } }, - ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2848 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [170497091] = { "20% increased Fishing Range" }, } }, - ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(40-50)% reduced Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "20% increased Quantity of Fish Caught" }, } }, - ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(10-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(50-60)% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "40% increased Rarity of Fish Caught" }, } }, - ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(20-30)% increased Rarity of Fish Caught" }, } }, - ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2737 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2449668043] = { "8% increased Spell Damage per 5% Chance to Block Attack Damage" }, } }, - ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (15-20) Life per Enemy Hit with Spells" }, } }, - ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 3 Life per Enemy Hit with Spells" }, } }, - ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Lose (10-15) Life per Enemy Hit with Spells" }, } }, - ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "12% increased Global Attack Speed per Green Socket", statOrder = { 2721 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [250876318] = { "12% increased Global Attack Speed per Green Socket" }, } }, - ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "25% increased Global Physical Damage with Weapons per Red Socket", statOrder = { 2718 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2112615899] = { "25% increased Global Physical Damage with Weapons per Red Socket" }, } }, - ["ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2726 }, level = 1, group = "ManaLeechFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1390269837] = { "2% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2727 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2727 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, - ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+0.2 metres to Melee Strike Range per White Socket", statOrder = { 2732 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2076080860] = { "+0.2 metres to Melee Strike Range per White Socket" }, } }, - ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2748 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2626398389] = { "60% increased Damage taken from Melee Attacks" }, } }, - ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2832 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [3002650433] = { "Regenerate 2% of your Armour as Life over 1 second when you Block" }, } }, - ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your Energy Shield when you Block", statOrder = { 2739 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [4059516437] = { "Lose 10% of your Energy Shield when you Block" }, } }, - ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (40-60)% of Physical Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (30-40)% of Physical Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (6-10)% of Fire Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (6-10)% of Cold Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (6-10)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["MainHandChanceToIgniteUniqueOneHandAxe2"] = { affix = "", "25% chance to Ignite when in Main Hand", statOrder = { 2767 }, level = 1, group = "MainHandChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2919089822] = { "25% chance to Ignite when in Main Hand" }, } }, - ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2768 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4199402748] = { "100% increased Chill Duration on Enemies when in Off Hand" }, } }, - ["BurningDamageToChilledEnemiesUniqueOneHandAxe2"] = { affix = "", "100% increased Damage with Ignite inflicted on Chilled Enemies", statOrder = { 7204 }, level = 1, group = "BurningDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1891782369] = { "100% increased Damage with Ignite inflicted on Chilled Enemies" }, } }, - ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(14-18)% increased Trap Throwing Speed" }, } }, - ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-30)% reduced Trap Throwing Speed" }, } }, - ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2772 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2772 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1180565017] = { "15% increased Movement Speed for 0 seconds on Throwing a Trap" }, [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 454 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 15 Trap" }, } }, - ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 454 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 8 Trap" }, } }, - ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 454 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 16 Trap" }, } }, - ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1923 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "(50-75)% reduced Trap Duration" }, } }, - ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1923 }, level = 1, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "10% reduced Trap Duration" }, } }, - ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(30-40)% increased Trap Damage" }, } }, - ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(18-28)% increased Trap Damage" }, } }, - ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(15-25)% increased Trap Damage" }, } }, - ["ChanceToFreezeShockIgniteUniqueRing21"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "10% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueDescentWand1"] = { affix = "", "4% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "4% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueHelmetDexInt4"] = { affix = "", "5% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "5% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUniqueAmulet19"] = { affix = "", "Always Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "Always Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteDescentUniqueQuiver1"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "10% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__1"] = { affix = "", "(10-25)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(10-25)% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__2"] = { affix = "", "(20-25)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(20-25)% chance to Freeze, Shock and Ignite" }, } }, - ["ChanceToFreezeShockIgniteUnique__3"] = { affix = "", "(5-10)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(5-10)% chance to Freeze, Shock and Ignite" }, } }, - ["DamageWhileIgnitedUniqueRing18"] = { affix = "", "30% increased Damage while Ignited", statOrder = { 2802 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1686122637] = { "30% increased Damage while Ignited" }, } }, - ["DamageWhileIgnitedUnique__1"] = { affix = "", "(50-70)% increased Damage while Ignited", statOrder = { 2802 }, level = 85, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1686122637] = { "(50-70)% increased Damage while Ignited" }, } }, - ["ArmourWhileFrozenUniqueRing18"] = { affix = "", "+5000 to Armour while Frozen", statOrder = { 2803 }, level = 1, group = "ArmourWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [504366827] = { "+5000 to Armour while Frozen" }, } }, - ["ManaLeechOnShockedEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Shocked Enemies Leeched as Mana", statOrder = { 1717 }, level = 1, group = "ManaLeechOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1831556341] = { "5% of Damage against Shocked Enemies Leeched as Mana" }, } }, - ["ManaLeechPermyriadOnShockedEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Mana against Frozen Enemies", statOrder = { 8185 }, level = 1, group = "ManaLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2908111053] = { "1% of Damage Leeched as Mana against Frozen Enemies" }, } }, - ["EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Energy Shield against Frozen Enemies", statOrder = { 6440 }, level = 1, group = "EnergyShieldLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4091709362] = { "1% of Damage Leeched as Energy Shield against Frozen Enemies" }, } }, - ["LifeLeechOnFrozenEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1689 }, level = 1, group = "LifeLeechOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210079745] = { "5% of Damage against Frozen Enemies Leeched as Life" }, } }, - ["LifeLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1688 }, level = 1, group = "LifeLeechPermyriadOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2614321687] = { "1% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["DamageOnRareMonstersUniqueBelt7"] = { affix = "", "(20-30)% increased Damage with Hits against Rare monsters", statOrder = { 2807 }, level = 1, group = "DamageOnRareMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2137878565] = { "(20-30)% increased Damage with Hits against Rare monsters" }, } }, - ["DamageOnMagicMonstersUnique__1_"] = { affix = "", "(20-30)% increased Damage with Hits against Magic monsters", statOrder = { 6071 }, level = 1, group = "DamageOnMagicMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1278047991] = { "(20-30)% increased Damage with Hits against Magic monsters" }, } }, - ["DamagePerStatusAilmentOnEnemiesUniqueRing21"] = { affix = "", "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy", statOrder = { 6294, 6294.1 }, level = 1, group = "DamagePerStatusAilmentOnEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2605663324] = { "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy" }, } }, - ["ShrineBuffEffectUniqueHelmetDexInt3"] = { affix = "", "75% increased Effect of Shrine Buffs on you", statOrder = { 2812 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "75% increased Effect of Shrine Buffs on you" }, } }, - ["ShrineBuffEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Shrine Buffs on you", statOrder = { 2812 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(50-75)% increased Effect of Shrine Buffs on you" }, } }, - ["ShrineEffectDurationUniqueHelmetDexInt3"] = { affix = "", "50% increased Duration of Shrine Effects on you", statOrder = { 2813 }, level = 1, group = "ShrineEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1877661946] = { "50% increased Duration of Shrine Effects on you" }, } }, - ["LocalFlaskLifeOnFlaskDurationEndUniqueFlask3"] = { affix = "", "Recover Full Life at the end of the Effect", statOrder = { 868 }, level = 1, group = "LocalFlaskLifeOnFlaskDurationEnd", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [4078194486] = { "Recover Full Life at the end of the Effect" }, } }, - ["LocalFlaskNoManaCostWhileHealingUniqueFlask4"] = { affix = "", "Skills Cost no Mana during Effect", statOrder = { 1029 }, level = 1, group = "LocalFlaskNoManaCostWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1669220541] = { "Skills Cost no Mana during Effect" }, } }, - ["ShockNearbyEnemyOnShockedKillUniqueRing20"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 25, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["ShockNearbyEnemyOnShockedKillUniqueDescentTwoHandSword1_"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["IgniteNearbyEnemyOnIgnitedKillUniqueRing20"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["IgniteNearbyEnemyOnIgnitedKillUnique__1"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["GainRareMonsterModsOnKillUniqueBelt7_"] = { affix = "", "When you Kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2817 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you Kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, - ["GainMagicMonsterModsOnKillUnique__1_"] = { affix = "", "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6768 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976991498] = { "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds" }, } }, - ["GainShrineOnRareOrUniqueKillUnique_1"] = { affix = "", "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6821 }, level = 81, group = "GainShrineOnRareOrUniqueKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3493440964] = { "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy" }, } }, - ["GainManaPer2IntelligenceUnique_1"] = { affix = "", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9172 }, level = 1, group = "ManaPer2Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3822999954] = { "+1 to maximum Mana per 2 Intelligence" }, } }, - ["AddedManaRegenerationUniqueBelt8"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-10) Mana per second" }, } }, - ["AddedManaRegenerationUniqueDescentWand1"] = { affix = "", "Regenerate 2 Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 2 Mana per second" }, } }, - ["AddedManaRegenerationUniqueJewel10"] = { affix = "", "Regenerate 3 Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 3 Mana per second" }, } }, - ["AddedManaRegenerationUnique__1"] = { affix = "", "Regenerate (3-6) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-6) Mana per second" }, } }, - ["AddedManaRegenerationUnique__2"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-10) Mana per second" }, } }, - ["AddedManaRegenerationUnique__3"] = { affix = "", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, - ["ArmourWhileNotIgnitedFrozenShockedBelt8"] = { affix = "", "40% increased Armour while not Ignited, Frozen or Shocked", statOrder = { 2818 }, level = 1, group = "ArmourWhileNotIgnitedFrozenShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1164767410] = { "40% increased Armour while not Ignited, Frozen or Shocked" }, } }, - ["ManaShield"] = { affix = "", "Mind Over Matter", statOrder = { 10797 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, - ["ElementalResistancePerEnduranceChargeDescentShield1"] = { affix = "", "+3% to all Elemental Resistances per Endurance Charge", statOrder = { 1620 }, level = 1, group = "ElementalResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1852896268] = { "+3% to all Elemental Resistances per Endurance Charge" }, } }, - ["ReturningProjectilesUniqueDescentBow1"] = { affix = "", "Projectiles Return to you", statOrder = { 2823 }, level = 1, group = "ReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4015038379] = { "Projectiles Return to you" }, } }, - ["CastSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "9% increased Cast Speed when on Full Life", statOrder = { 2000 }, level = 1, group = "CastSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [656291658] = { "9% increased Cast Speed when on Full Life" }, } }, - ["CastSpeedOnLowLifeUniqueDescentHelmet1"] = { affix = "", "20% increased Cast Speed when on Low Life", statOrder = { 1999 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1136768410] = { "20% increased Cast Speed when on Low Life" }, } }, - ["MaximumCriticalStrikeChanceUniqueAmulet17"] = { affix = "", "50% maximum Critical Strike Chance", statOrder = { 2747 }, level = 1, group = "MaximumCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2251704631] = { "50% maximum Critical Strike Chance" }, } }, - ["DamagePerStrengthInMainHandUniqueSceptre6"] = { affix = "", "1% increased Damage per 8 Strength when in Main Hand", statOrder = { 2776 }, level = 1, group = "DamagePerStrengthInMainHand", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [679194784] = { "1% increased Damage per 8 Strength when in Main Hand" }, } }, - ["ArmourPerStrengthInOffHandUniqueSceptre6"] = { affix = "", "1% increased Armour per 16 Strength when in Off Hand", statOrder = { 2777 }, level = 1, group = "ArmourPerStrengthInOffHand", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2192181096] = { "1% increased Armour per 16 Strength when in Off Hand" }, } }, - ["DisplaySocketedGemsSupportedByIronWillUniqueSceptre6"] = { affix = "", "Socketed Gems are Supported by Level 30 Iron Will", statOrder = { 501 }, level = 1, group = "DisplaySocketedGemsSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [906997920] = { "Socketed Gems are Supported by Level 30 Iron Will" }, } }, - ["DisplaySocketedGemsSupportedByIronWillUniqueOneHandMace3"] = { affix = "", "Socketed Gems have Iron Will", statOrder = { 539 }, level = 1, group = "DisplaySocketedGemsHaveIronWill", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [49017695] = { "Socketed Gems have Iron Will" }, } }, - ["LessCriticalStrikeChanceAmulet17"] = { affix = "", "40% less Critical Strike Chance", statOrder = { 2825 }, level = 1, group = "CriticalStrikeChanceFinal", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4181057577] = { "40% less Critical Strike Chance" }, } }, - ["ChanceToDodgeUniqueBootsDex7"] = { affix = "", "+12% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+12% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUniqueJewel46"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUniqueJewel46"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__1"] = { affix = "", "+50% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+50% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+15% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeUniqueRing37"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["ChanceToDodgeUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+15% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUniqueBodyDex1"] = { affix = "", "+30% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+30% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__2"] = { affix = "", "+20% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+20% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsUnique__3_"] = { affix = "", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(10-12)% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+3% chance to Suppress Spell Damage" }, } }, - ["ChanceToDodgeSpellsImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__1_"] = { affix = "", "+(26-32)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(26-32)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__2"] = { affix = "", "+(20-25)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-25)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__3"] = { affix = "", "+(0-30)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 50, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(0-30)% chance to Suppress Spell Damage" }, } }, - ["ChanceToSuppressSpellsUnique__4"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, - ["EnduranceChargeOnKillUniqueBodyStrDex3"] = { affix = "", "You gain an Endurance Charge on Kill", statOrder = { 2828 }, level = 1, group = "EnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2064503808] = { "You gain an Endurance Charge on Kill" }, } }, - ["LoseEnduranceChargesWhenHitUniqueBodyStrDex3"] = { affix = "", "You lose all Endurance Charges when Hit", statOrder = { 2826 }, level = 1, group = "LoseEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2994477068] = { "You lose all Endurance Charges when Hit" }, } }, - ["GainOnslaughtWhenHitUniqueBodyStrDex3"] = { affix = "", "You gain Onslaught for 5 seconds per Endurance Charge when Hit", statOrder = { 2842 }, level = 1, group = "GainOnslaughtWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3714207489] = { "You gain Onslaught for 5 seconds per Endurance Charge when Hit" }, } }, - ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2831 }, level = 1, group = "LeechLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1955882986] = { "Regenerate (6-8) Life over 1 second when you Cast a Spell" }, } }, - ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2821 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [963290143] = { "Phasing" }, } }, - ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3440 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, - ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 2242 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "10% increased Fire Damage taken" }, } }, - ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 2237 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(200-100) Fire Damage taken from Hits" }, } }, - ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2837 }, 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 = { 2836 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, - ["CullingAgainstFrozenEnemiesUnique__1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 5989 }, level = 1, group = "CullingAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2664667514] = { "Culling Strike against Frozen Enemies" }, } }, - ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2839 }, 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 = { 6000 }, 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 = { 6000 }, 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 = { 6000 }, 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 = { 184 }, 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 = { 184 }, 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 = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, - ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, - ["PoisonSpreadAndHealOnPoisonedKillUniqueDagger8"] = { affix = "", "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and", "Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres", statOrder = { 2851, 2851.1 }, level = 82, group = "PoisonSpreadAndHealOnPoisonedKill", weightKey = { }, weightVal = { }, modTags = { "poison", "resource", "life", "chaos", "ailment" }, tradeHashes = { [456916387] = { "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and", "Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres" }, [1168603868] = { "" }, } }, - ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "100% increased Duration of Curses on you" }, } }, - ["ReducedSelfCurseDurationUniqueShieldDex3"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, - ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "Elemental Resistances are Zero", statOrder = { 2835 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [85576425] = { "Elemental Resistances are Zero" }, } }, - ["AllDefencesUniqueHelmetStrInt4_"] = { affix = "", "(18-22)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(18-22)% increased Global Defences" }, } }, - ["AllDefencesVictorAmulet"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-10)% increased Global Defences" }, } }, - ["AllDefencesUnique__1"] = { affix = "", "5% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "5% increased Global Defences" }, } }, - ["AllDefencesUnique__2"] = { affix = "", "100% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "100% increased Global Defences" }, } }, - ["AllDefencesUnique__3"] = { affix = "", "100% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "100% increased Global Defences" }, } }, - ["AllDefencesUnique__4"] = { affix = "", "(15-20)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(15-20)% increased Global Defences" }, } }, - ["AllDefencesUnique__5"] = { affix = "", "(10-15)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(10-15)% increased Global Defences" }, } }, - ["DodgeImplicitMarakethSword1"] = { affix = "", "15% chance to Maim on Hit", statOrder = { 7989 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "15% chance to Maim on Hit" }, } }, - ["DodgeImplicitMarakethSword2"] = { affix = "", "20% chance to Maim on Hit", statOrder = { 7989 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "20% chance to Maim on Hit" }, } }, - ["AllDefensesImplicitJetRing"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-10)% increased Global Defences" }, } }, - ["LightningDamageOnBlockUniqueHelmetStrInt4"] = { affix = "", "Reflects 1 to (180-220) Lightning Damage to Attackers on Block", statOrder = { 2587 }, level = 1, group = "LightningDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1810011556] = { "Reflects 1 to (180-220) Lightning Damage to Attackers on Block" }, } }, - ["DuplicatesRingStats"] = { affix = "", "Reflects opposite Ring", statOrder = { 2853 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, - ["DegenerationDamageUniqueDagger8"] = { affix = "", "30% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "30% increased Damage over Time" }, } }, - ["DegenerationDamageEssence_1"] = { affix = "", "(14-20)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(14-20)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__1"] = { affix = "", "25% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "25% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__2"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(20-30)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__3"] = { affix = "", "(30-40)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(30-40)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__4__"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(8-12)% increased Damage over Time" }, } }, - ["DegenerationDamageUnique__5"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(20-30)% increased Damage over Time" }, } }, - ["DegenerationDamageImplicit1"] = { affix = "", "(14-18)% increased Damage over Time", statOrder = { 1210 }, level = 85, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(14-18)% increased Damage over Time" }, } }, - ["FishingExoticFishUniqueFishingRod1"] = { affix = "", "You can catch Exotic Fish", statOrder = { 2854 }, level = 1, group = "FishingExoticFish", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1471580517] = { "You can catch Exotic Fish" }, } }, - ["FireShocksUniqueHelmetDexInt4"] = { affix = "", "Your Fire Damage can Shock but not Ignite", statOrder = { 2856 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Your Fire Damage can Shock but not Ignite" }, } }, - ["ColdIgnitesUniqueHelmetDexInt4_"] = { affix = "", "Your Cold Damage can Ignite but not Freeze or Chill", statOrder = { 2857 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Your Cold Damage can Ignite but not Freeze or Chill" }, } }, - ["LightningFreezesUniqueHelmetDexInt4"] = { affix = "", "Your Lightning Damage can Freeze but not Shock", statOrder = { 2858 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Your Lightning Damage can Freeze but not Shock" }, } }, - ["SocketedCursesAreReflectedUniqueGlovesStrInt1"] = { affix = "", "Hexes applied by Socketed Curse Skills are Reflected back to you", statOrder = { 538 }, level = 1, group = "SocketedCursesAreReflected", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [32859524] = { "Hexes applied by Socketed Curse Skills are Reflected back to you" }, } }, - ["ChillImmunityWhenChilledUniqueGlovesStrInt1"] = { affix = "", "You cannot be Chilled for 3 seconds after being Chilled", statOrder = { 2893 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 3 seconds after being Chilled" }, } }, - ["FreezeImmunityWhenFrozenUniqueGlovesStrInt1"] = { affix = "", "You cannot be Frozen for 3 seconds after being Frozen", statOrder = { 2895 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 3 seconds after being Frozen" }, } }, - ["IgniteImmunityWhenIgnitedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Ignited for 3 seconds after being Ignited", statOrder = { 2896 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 3 seconds after being Ignited" }, } }, - ["ShockImmunityWhenShockedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Shocked for 3 seconds after being Shocked", statOrder = { 2897 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 3 seconds after being Shocked" }, } }, - ["GrantFrenzyChargesToAlliesOnDeathUniqueGlovesStrInt1"] = { affix = "", "You grant (4-6) Frenzy Charges to allies on Death", statOrder = { 2899 }, level = 1, group = "GrantFrenzyChargesToAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2105456174] = { "You grant (4-6) Frenzy Charges to allies on Death" }, } }, - ["PowerChargeOnNonCritUniqueRing17"] = { affix = "", "Gain a Power Charge on Non-Critical Strike", statOrder = { 2900 }, level = 1, group = "PowerChargeOnNonCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1592029809] = { "Gain a Power Charge on Non-Critical Strike" }, } }, - ["ConsumeAllPowerChargesOnCritUniqueRing17"] = { affix = "", "Lose all Power Charges on Critical Strike", statOrder = { 2901 }, level = 75, group = "ConsumeAllPowerChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2735889191] = { "Lose all Power Charges on Critical Strike" }, } }, - ["CastSocketedLightningSpellsOnHit"] = { affix = "", "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered", statOrder = { 826, 826.1 }, level = 1, group = "CastSocketedLightningSpellsOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster" }, tradeHashes = { [654971543] = { "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered" }, } }, - ["UndyingBreathCurseAuraDisplayUniqueStaff5"] = { affix = "", "Nearby Enemies have 18% increased Effect of Curses on them", statOrder = { 2701 }, level = 1, group = "UndyingBreathCurseAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "caster", "aura", "curse" }, tradeHashes = { [443525707] = { "Nearby Enemies have 18% increased Effect of Curses on them" }, } }, - ["UndyingBreathDamageAuraDisplayUniqueStaff5"] = { affix = "", "Nearby allies gain 18% increased Damage", statOrder = { 2906 }, level = 1, group = "UndyingBreathDamageAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3175679225] = { "Nearby allies gain 18% increased Damage" }, } }, - ["CurseAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "18% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUniqueQuiver5"] = { affix = "", "40% reduced Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "40% reduced Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__1"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "60% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__2_"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 76, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "60% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__3"] = { affix = "", "50% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "50% increased Area of Effect of Hex Skills" }, } }, - ["CurseAreaOfEffectUnique__4"] = { affix = "", "(25-50)% reduced Area of Effect of Hex Skills", statOrder = { 2225 }, level = 40, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(25-50)% reduced Area of Effect of Hex Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "18% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_1"] = { affix = "", "15% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 97, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "15% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_2"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_3"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_4"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_5"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["AuraIncreasedIncreasedAreaOfEffectUnique_6"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, - ["ColdDamageModsApplyToColdAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4596, 4596.1 }, level = 53, group = "ColdDamageAppliesToColdAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "aura" }, tradeHashes = { [935686778] = { "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["LightningDamageModsApplyToLightningAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4602, 4602.1 }, level = 53, group = "LightningDamageAppliesToLightningAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "aura" }, tradeHashes = { [232010308] = { "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["FireDamageModsApplyToFireAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4598, 4598.1 }, level = 53, group = "FireDamageAppliesToFireAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [1320057994] = { "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["PhysicalDamageModsApplyToPhysicalAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4605, 4605.1 }, level = 53, group = "PhysicalDamageAppliesToPhysicalAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "physical", "aura" }, tradeHashes = { [1092506510] = { "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["ChaosDamageModsApplyToChaosAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4595, 4595.1 }, level = 53, group = "ChaosDamageAppliesToChaosAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "chaos", "aura" }, tradeHashes = { [2628865242] = { "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, - ["DamageTakenUniqueStaff5"] = { affix = "", "18% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "18% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AuraEffectGlobalUnique__1"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "2% increased Attack Speed per Frenzy Charge", statOrder = { 2049 }, level = 1, group = "AttackSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3548561213] = { "2% increased Attack Speed per Frenzy Charge" }, } }, - ["AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "6% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "6% increased Accuracy Rating per Frenzy Charge" }, } }, - ["FrenzyChargeDurationPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "10% reduced Frenzy Charge Duration per Frenzy Charge", statOrder = { 2051 }, level = 1, group = "FrenzyChargeDurationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2543931078] = { "10% reduced Frenzy Charge Duration per Frenzy Charge" }, } }, - ["PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "+5% to Damage over Time Multiplier for Poison per Frenzy Charge", statOrder = { 9684 }, level = 1, group = "PoisonDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [3504652942] = { "+5% to Damage over Time Multiplier for Poison per Frenzy Charge" }, } }, - ["AtMaximumFrenzyChargesPoisonUniqueGlovesDexInt5"] = { affix = "", "While at maximum Frenzy Charges, Attacks Poison Enemies", statOrder = { 2052 }, level = 1, group = "AtMaximumFrenzyChargesPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [413362507] = { "While at maximum Frenzy Charges, Attacks Poison Enemies" }, } }, - ["AtMaximumFrenzyChargesChanceToPoisonUnique_1_"] = { affix = "", "Attacks have 60% chance to Poison while at maximum Frenzy Charges", statOrder = { 2053 }, level = 1, group = "AtMaximumFrenzyChargesChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3654074125] = { "Attacks have 60% chance to Poison while at maximum Frenzy Charges" }, } }, - ["NecromanticAegisUniqueHelmetStrDex5"] = { affix = "", "All bonuses from an Equipped Shield apply to your Minions instead of you", statOrder = { 2192 }, level = 1, group = "NecromanticAegis", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2739284880] = { "All bonuses from an Equipped Shield apply to your Minions instead of you" }, } }, - ["MinionBlockChanceUniqueHelmetStrDex5"] = { affix = "", "Minions have +10% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +10% Chance to Block Attack Damage" }, } }, - ["MinionLifeRegenerationUniqueHelmetStrDex5"] = { affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 2% of Life per second" }, } }, - ["MinionLifeRegenerationUnique__1"] = { affix = "", "Minions Regenerate 1% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 1% of Life per second" }, } }, - ["MinionArmourUniqueHelmetStrDex5"] = { affix = "", "Minions have +(300-350) to Armour", statOrder = { 2905 }, level = 1, group = "MinionArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [2048970144] = { "Minions have +(300-350) to Armour" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Global Accuracy Rating" }, } }, - ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-40)% increased Global Accuracy Rating" }, } }, - ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } }, - ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+5 to Level of Socketed Vaal Gems" }, } }, - ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 192 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2574694107] = { "-5 to Level of Socketed Non-Vaal Gems" }, } }, - ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+2 to Level of Socketed Vaal Gems" }, } }, - ["RingHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["QuiverHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["AmuletHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["BeltHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 70, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasSixSocketsUnique__1"] = { affix = "", "Has 6 Sockets", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 6 Sockets" }, } }, - ["HasOneSocketUnique__1"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasOneSocketUnique__2"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasOneSocketUnique__3"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["HasTwoSocketsUnique__1"] = { affix = "", "Has 2 Sockets", statOrder = { 69 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 2 Sockets" }, } }, - ["HasThreeSocketsUnique__1_"] = { affix = "", "Has 3 Sockets", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["IncreasedProjectileDamageUniqueQuiver4"] = { affix = "", "(15-20)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(15-20)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUniqueStaff10"] = { affix = "", "(60-100)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(60-100)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUniqueBootsDexInt4"] = { affix = "", "(20-40)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(20-40)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__5"] = { affix = "", "20% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "20% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__1"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__2"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___3"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___4"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__6"] = { affix = "", "30% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "30% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique__7"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___8"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___9"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___10_"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["IncreasedProjectileDamageUnique___11"] = { affix = "", "(25-35)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(25-35)% increased Projectile Damage" }, } }, - ["SpellBlockPercentageUniqueQuiver4"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-15)% Chance to Block Spell Damage" }, } }, - ["SpellBlockPercentageUniqueShieldDex6"] = { affix = "", "(8-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(8-12)% Chance to Block Spell Damage" }, } }, - ["SupportedByEchoUniqueStaff6"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Echo", statOrder = { 225 }, level = 1, group = "DisplaySupportedByLevel1GreaterEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2530022765] = { "Socketed Gems are Supported by Level 1 Greater Spell Echo" }, } }, - ["SupportedByEchoUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 412 }, level = 1, group = "DisplaySupportedByEchoLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [725896422] = { "Socketed Gems are Supported by Level 10 Spell Echo" }, } }, - ["SupportedByEchoUniqueWand8New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 493 }, level = 1, group = "DisplaySupportedByEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [438778966] = { "Socketed Gems are Supported by Level 10 Spell Echo" }, } }, - ["ControlledDestructionSupportUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 525 }, level = 1, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["SupportedByArcaneSurgeUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 10 Arcane Surge" }, } }, - ["SpellDodgeUniqueBootsDex7_"] = { affix = "", "+(21-24)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+(21-24)% chance to Suppress Spell Damage" }, } }, - ["SpellDodgeUniqueBootsDex7New"] = { affix = "", "+(20-26)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-26)% chance to Suppress Spell Damage" }, } }, - ["FireDamageLifeLeechPerMyriadUniqueBelt9a_"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1669 }, level = 85, group = "FireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2760596458] = { "100% of Fire Damage Leeched as Life" }, } }, - ["FireDamageLifeLeechPermyriadUniqueBelt9aNew"] = { affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 85, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.6% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechPerMyriadUniqueBelt9b"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1674 }, level = 85, group = "ColdDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [280832469] = { "100% of Cold Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechPermyriadUniqueBelt9bNew"] = { affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 85, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.6% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechPerMyriadUniqueBelt9c"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1678 }, level = 85, group = "LightningDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [888622567] = { "100% of Lightning Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechPermyriadUniqueBelt9cNew"] = { affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 85, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.6% of Lightning Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechPerMyriadUniqueBelt9d"] = { affix = "", "100% of Physical Damage Leeched as Life", statOrder = { 1665 }, level = 85, group = "PhysicalDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3992463881] = { "100% of Physical Damage Leeched as Life" }, } }, - ["PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew"] = { affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 85, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.6% of Physical Damage Leeched as Life" }, } }, - ["IgniteChanceWhileUsingFlaskUniqueBelt9a"] = { affix = "", "(20-30)% chance to Ignite during any Flask Effect", statOrder = { 2922 }, level = 85, group = "ChanceToIgnightWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [3888064854] = { "(20-30)% chance to Ignite during any Flask Effect" }, } }, - ["FreezeChanceWhileUsingFlaskUniqueBelt9b"] = { affix = "", "(20-30)% chance to Freeze during any Flask Effect", statOrder = { 2923 }, level = 85, group = "ChanceToFreezeWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [2332726055] = { "(20-30)% chance to Freeze during any Flask Effect" }, } }, - ["ShockChanceWhileUsingFlaskUniqueBelt9c"] = { affix = "", "(20-30)% chance to Shock during any Flask Effect", statOrder = { 2924 }, level = 85, group = "ChanceToShockWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [796406325] = { "(20-30)% chance to Shock during any Flask Effect" }, } }, - ["ReducedStunThresholdWhileUsingFlaskUniqueBelt9d"] = { affix = "", "25% reduced Enemy Stun Threshold during any Flask Effect", statOrder = { 2927 }, level = 85, group = "ReducedStunThresholdWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4228951304] = { "25% reduced Enemy Stun Threshold during any Flask Effect" }, } }, - ["AddedChaosDamageAsPercentOfPhysicalWhileUsingFlaskUniqueFlask5"] = { affix = "", "Gain (5-8)% of Physical Damage as Extra Chaos Damage during effect", statOrder = { 1030 }, level = 85, group = "AddedChaosDamageAsPercentOfPhysicalWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [2818167778] = { "Gain (5-8)% of Physical Damage as Extra Chaos Damage during effect" }, } }, - ["AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5"] = { affix = "", "Gain (5-8)% of Elemental Damage as Extra Chaos Damage during effect", statOrder = { 1020 }, level = 85, group = "AddedChaosDamageAsPercentOfElementalWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3562241510] = { "Gain (5-8)% of Elemental Damage as Extra Chaos Damage during effect" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__1"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__2"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__3"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ElementalDamagePercentAddedAsChaosUnique__4"] = { affix = "", "Gain (5-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (5-8)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["ChaosDamageLifeLeechPerMyriadWhileUsingFlaskUniqueFlask5"] = { affix = "", "1000% of Chaos Damage Leeched as Life during Effect", statOrder = { 1040 }, level = 85, group = "ChaosDamageLifeLeechWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "chaos" }, tradeHashes = { [425162810] = { "1000% of Chaos Damage Leeched as Life during Effect" }, } }, - ["ChaosDamageLifeLeechPermyriadWhileUsingFlaskUniqueFlask5New"] = { affix = "", "2% of Chaos Damage Leeched as Life during Effect", statOrder = { 1025 }, level = 85, group = "ChaosDamageLifeLeechPermyriadWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "chaos" }, tradeHashes = { [1341148741] = { "2% of Chaos Damage Leeched as Life during Effect" }, } }, - ["FireDamageLifeLeechCorrupted"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2760596458] = { "100% of Fire Damage Leeched as Life" }, } }, - ["ColdDamageLifeLeechCorrupted_"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [280832469] = { "100% of Cold Damage Leeched as Life" }, } }, - ["LightningDamageLifeLeechCorrupted"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1678 }, level = 1, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [888622567] = { "100% of Lightning Damage Leeched as Life" }, } }, - ["DamageConversionFireUnique__1"] = { affix = "", "60% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, } }, - ["AdditionalTrapsUnique__1"] = { affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to 1 additional Trap placed at a time" }, } }, - ["AdditionalTrapsUnique__2__"] = { affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have 5 fewer Traps placed at a time" }, } }, - ["AdditionalTrapsThresholdJewel"] = { affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to 1 additional Trap placed at a time" }, } }, - ["PierceCurruption"] = { affix = "", "Arrows Pierce 1 additional Target", statOrder = { 4782 }, level = 1, group = "CorruptionBowArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3492025235] = { "Arrows Pierce 1 additional Target" }, } }, - ["AdditionalPierceUnique__1"] = { affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1791 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce 2 additional Targets" }, } }, - ["PierceChanceUniqueJewel41"] = { affix = "", "Projectiles Pierce an additional Target", statOrder = { 9753 }, level = 1, group = "AdditionalPiercePer15Old", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3004680641] = { "Projectiles Pierce an additional Target" }, } }, - ["AdditionalPierceUniqueJewel__1"] = { affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["CurseOnHitTemporalChainsUnique__1"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 1, group = "CurseOnHitLevelTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["CurseOnHitCriticalWeaknessUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 1, group = "CurseOnHitCriticalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CurseOnHitCriticalWeaknessUniqueNewUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 1, group = "TriggerOnRareAssassinsMark", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["SupportedByCastOnStunUnique___1"] = { affix = "", "Socketed Gems are supported by Level 10 Cast when Stunned", statOrder = { 477 }, level = 15, group = "SupportedByCastOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1079148723] = { "Socketed Gems are supported by Level 10 Cast when Stunned" }, } }, - ["SupportedByMeleeSplashUnique__1_"] = { affix = "", "Socketed Gems are supported by Level 30 Melee Splash", statOrder = { 471 }, level = 1, group = "SupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 30 Melee Splash" }, } }, - ["SupportedByAddedFireDamageUnique__1_"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 462 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 10 Added Fire Damage" }, } }, - ["PuritySkillUniqueAmulet22"] = { affix = "", "Grants Level 10 Purity of Elements Skill", statOrder = { 645 }, level = 7, group = "PuritySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 10 Purity of Elements Skill" }, } }, - ["HatredSkillUniqueDescentClaw1"] = { affix = "", "Grants Level 20 Hatred Skill", statOrder = { 649 }, level = 1, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 20 Hatred Skill" }, } }, - ["ChanceToBeCritJewelUnique__1"] = { affix = "", "Hits have (140-200)% increased Critical Strike Chance against you", statOrder = { 3132 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [165218607] = { "Hits have (140-200)% increased Critical Strike Chance against you" }, } }, - ["ChanceToBeCritJewelUpdatedUnique__1"] = { affix = "", "Hits have (140-200)% increased Critical Strike Chance against you", statOrder = { 3130 }, level = 1, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4270096386] = { "Hits have (140-200)% increased Critical Strike Chance against you" }, } }, - ["SilenceImmunityUnique__1"] = { affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 36, group = "ImmuneToSilence", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["UniqueSpecialCorruptionAreaOfEffect_"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["UniqueSpecialCorruptionSkillEffectDuration"] = { affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, - ["UniqueSpecialCorruptionSocketedGemsManaMultiplier_"] = { affix = "", "Socketed Skill Gems get a 80% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 80% Cost & Reservation Multiplier" }, } }, - ["UniqueSpecialCorruptionCooldownRecoverySpeed__"] = { affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["UniqueSpecialCorruptionItemQuantity_"] = { affix = "", "(5-7)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(5-7)% increased Quantity of Items found" }, } }, - ["UniqueSpecialCorruptionAdditionalProjectile"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["UniqueSpecialCorruptionAuraEffect"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["UniqueSpecialCorruptionCurseEffect___"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, - ["UniqueSpecialCorruptionSocketedGemLevel"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["UniqueSpecialCorruptionAllMinCharges"] = { affix = "", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9259 }, level = 1, group = "MinimumEndurancePowerFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "power_charge", "frenzy_charge" }, tradeHashes = { [66303477] = { "+1 to Minimum Endurance, Frenzy and Power Charges" }, } }, - ["UniqueSpecialCorruptionNearbyEnemiesBlinded"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 1, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["UniqueSpecialCorruptionNearbyEnemiesMalediction"] = { affix = "", "Nearby Enemies have Malediction", statOrder = { 3398 }, level = 1, group = "NearbyEnemiesHaveMalediction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2774148053] = { "Nearby Enemies have Malediction" }, } }, - ["UniqueSpecialCorruptionNearbyEnemiesCrushed"] = { affix = "", "Nearby Enemies are Crushed", statOrder = { 3397 }, level = 1, group = "NearbyEnemiesAreCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3608782127] = { "Nearby Enemies are Crushed" }, } }, - ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Life and Mana Leech from Critical Strikes are instant", statOrder = { 2538 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Life and Mana Leech from Critical Strikes are instant" }, } }, - ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(270-340)% increased Armour, Evasion and Energy Shield" }, } }, - ["MinionUnholyMightOnKillUniqueBodyInt9"] = { affix = "", "Minions gain Unholy Might for 10 seconds on Kill", statOrder = { 2918 }, level = 1, group = "MinionUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3835570161] = { "Minions gain Unholy Might for 10 seconds on Kill" }, } }, - ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4777 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce" }, } }, - ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4776 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce" }, } }, - ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2920 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, - ["ElementalDamageLeechedAsLifeUniqueSceptre7"] = { affix = "", "100% of Elemental Damage Leeched as Life", statOrder = { 1685 }, level = 1, group = "ElementalDamageLeechedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3780129663] = { "100% of Elemental Damage Leeched as Life" }, } }, - ["ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_"] = { affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1686 }, level = 1, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [720395808] = { "0.2% of Elemental Damage Leeched as Life" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 189 }, 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 = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +2 times" }, } }, - ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies", statOrder = { 2934 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies" }, } }, - ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1239 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [17354819] = { "100% increased Melee Damage against Ignited Enemies" }, } }, - ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1237 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1138694108] = { "100% increased Melee Damage against Shocked Enemies" }, } }, - ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1235 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [298331790] = { "100% increased Melee Damage against Frozen Enemies" }, } }, - ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2705 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, - ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2704 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3733737728] = { "Projectiles have (15-20)% chance to Freeze" }, } }, - ["ProjectileIgniteChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Ignite", statOrder = { 2703 }, level = 1, group = "ProjectileIgniteChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4260460340] = { "Projectiles have (15-20)% chance to Ignite" }, } }, - ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } }, - ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 10 Life Leech" }, } }, - ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 484 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2178803872] = { "Socketed Gems are supported by Level 1 Chance to Bleed" }, } }, - ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2453 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } }, - ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2741 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3836017971] = { "Light Radius is based on Energy Shield instead of Life" }, } }, - ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2928 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3277537093] = { "-(50-40) Physical Damage taken from Hits by Animals" }, } }, - ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-100)% increased Lightning Damage" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUniqueBow11"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementDescentUniqueQuiver1"] = { affix = "", "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUnique__1__"] = { affix = "", "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["WeaponPhysicalDamageAddedAsColdOrLightningUnique__1"] = { affix = "", "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage", statOrder = { 4366 }, level = 1, group = "WeaponPhysicalDamageAddedAsColdOrLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "lightning", "attack" }, tradeHashes = { [1023968711] = { "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage" }, } }, - ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2930 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1625103793] = { "1% increased Damage taken per Frenzy Charge" }, } }, - ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2931 }, 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 = { 2932 }, 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 = { 1521 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10821 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["UnwaveringStanceUnique_2"] = { affix = "", "Unwavering Stance", statOrder = { 10821 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1565 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, - ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of Life on use", statOrder = { 876 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2629106530] = { "Recover (75-100)% of Life on use" }, } }, - ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 877 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3232201443] = { "25% of Maximum Life taken as Chaos Damage per second" }, } }, - ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2937 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, tradeHashes = { [2179619644] = { "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage" }, } }, - ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 625 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3541114083] = { "Grants Level 25 Bear Trap Skill" }, } }, - ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2938 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1936544447] = { "25% chance to gain a Power Charge when you Throw a Trap" }, } }, - ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Strike Chance per 8 Strength", statOrder = { 2939 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3068290007] = { "1% increased Critical Strike Chance per 8 Strength" }, } }, - ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2940 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2047819517] = { "(25-40)% increased Attack Speed while Ignited" }, } }, - ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2940 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2047819517] = { "(10-20)% increased Attack Speed while Ignited" }, } }, - ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2941 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(25-40)% increased Cast Speed while Ignited" }, } }, - ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2941 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, - ["IncreasedChanceToIgniteUniqueRing24"] = { affix = "", "(5-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(5-10)% chance to Ignite" }, } }, - ["IncreasedChanceToIgniteUniqueRing31"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, - ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2948 }, 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 = { 2948 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["IncreasedChanceToIgniteUnique__1"] = { affix = "", "2% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "2% chance to Ignite" }, } }, - ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Strike", statOrder = { 8002 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Strike" }, } }, - ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Strikes Poison the Enemy", statOrder = { 2773 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Strikes Poison the Enemy" }, } }, - ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 1012 }, 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 = { 1012 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(35-50)% Chance to Block Attack Damage during Effect" }, } }, - ["SpellBlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(4-6)% Chance to Block Spell Damage during Effect", statOrder = { 1032 }, level = 85, group = "SpellBlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [215754572] = { "+(4-6)% Chance to Block Spell Damage during Effect" }, } }, - ["SpellBlockIncreasedDuringFlaskEffectUnique__1_"] = { affix = "", "+(20-30)% Chance to Block Spell Damage during Effect", statOrder = { 1032 }, level = 85, group = "SpellBlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [215754572] = { "+(20-30)% Chance to Block Spell Damage during Effect" }, } }, - ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2946 }, 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 and Ailments against Ignited Enemies", statOrder = { 2953 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [485151258] = { "(25-40)% increased Damage with Hits and Ailments against Ignited Enemies" }, } }, - ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2969 }, 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 = { 2960 }, 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 = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-20)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-35)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-100)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(80-100)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-40)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 1385 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(17-23)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "30% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "100% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "100% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7383 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [2314393054] = { "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech" }, } }, - ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "50% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "50% increased total Recovery per second from Life Leech" }, } }, - ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "(10-20)% reduced total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(10-20)% reduced total Recovery per second from Life Leech" }, } }, - ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "(500-1000)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(500-1000)% increased total Recovery per second from Life Leech" }, } }, - ["IncreasedManaLeechRateUnique__1"] = { affix = "", "(500-1000)% increased total Recovery per second from Mana Leech", statOrder = { 2158 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [690135178] = { "(500-1000)% increased total Recovery per second from Mana Leech" }, } }, - ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1407 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (90-130) to (140-190) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1407 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (48-56) to (73-84) Chaos Damage to Spells" }, } }, - ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (16-21) to (31-36) Chaos Damage to Spells" }, } }, - ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of Life on Rampage", statOrder = { 2954 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of Life on Rampage" }, } }, - ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2955 }, 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 = { 2956 }, 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 = { 6722 }, 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 = { 2967 }, 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 = { 2968 }, 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 = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "10% Global chance to Blind Enemies on hit" }, } }, - ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2961 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1384864963] = { "Regenerate 0.2 Life per second per Level" }, } }, - ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Strike Chance per Level", statOrder = { 2962 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3081076859] = { "3% increased Global Critical Strike Chance per Level" }, } }, - ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2963 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [63607615] = { "1% increased Attack Damage per Level" }, } }, - ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2964 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, - ["FlaskChargesOnCritUniqueTwoHandMace__1"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChargesOnCritUniqueTwoHandMace__2"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, - ["LifeLeechOnCritUniqueTwoHandAxe8"] = { affix = "", "600% of Damage Leeched as Life on Critical Strike", statOrder = { 1694 }, level = 1, group = "LifeLeechOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [180850565] = { "600% of Damage Leeched as Life on Critical Strike" }, } }, - ["LifeLeechOnCritPermyriadUniqueTwoHandAxe8"] = { affix = "", "1.2% of Damage Leeched as Life on Critical Strike", statOrder = { 1695 }, level = 1, group = "LifeLeechOnCritPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [958088871] = { "1.2% of Damage Leeched as Life on Critical Strike" }, } }, - ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2970 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3226921326] = { "" }, [2736066171] = { "Enemies you Attack have 20% chance to Reflect 0 to 0 Chaos Damage to you" }, } }, - ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10766, 10766.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, - ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10767 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2972 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1064067689] = { "Gain 1 Mana on Kill per Level" }, } }, - ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2973 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [294153754] = { "Gain 1 Energy Shield on Kill per Level" }, } }, - ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, - ["LocalIncreaseSocketedActiveSkillGemLevelUnique__1"] = { affix = "", "+12 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+12 to Level of Socketed Skill Gems" }, } }, - ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2976 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2094646950] = { "1% increased Elemental Damage per Level" }, } }, - ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2977 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4084331136] = { "1% increased Chaos Damage per Level" }, } }, - ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2971 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, - ["UnholyMightOnRampageUniqueGlovesDexInt6"] = { affix = "", "Gain Unholy Might for 3 seconds on Rampage", statOrder = { 2975 }, level = 1, group = "UnholyMightOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [757315075] = { "Gain Unholy Might for 3 seconds on Rampage" }, } }, - ["ReduceGlobalFlatManaCostUnique__1"] = { affix = "", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-(8-4) to Total Mana Cost of Skills" }, } }, - ["IncreaseGlobalFlatManaCostUnique__1"] = { affix = "", "+50 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "+50 to Total Mana Cost of Skills" }, } }, - ["IncreaseGlobalFlatManaCostUnique__2"] = { affix = "", "Lose (40-80) Mana when you use a Skill", statOrder = { 8145 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2924302129] = { "Lose (40-80) Mana when you use a Skill" }, } }, - ["IncreaseGlobalFlatManaCostUnique__3_"] = { affix = "", "Lose 40 Mana when you use a Skill", statOrder = { 8145 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2924302129] = { "Lose 40 Mana when you use a Skill" }, } }, - ["ReducedLifeRegenerationPercentUniqueOneHandAxe5"] = { affix = "", "50% reduced Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "IncreaseLifeRegenerationPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% reduced Life Regeneration rate" }, } }, - ["IncreaseSocketedSupportGemQualityUnique__1___"] = { affix = "", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(5-8)% to Quality of Socketed Support Gems" }, } }, - ["IncreaseSocketedSupportGemQualityUnique__2"] = { affix = "", "+30% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+30% to Quality of Socketed Support Gems" }, } }, - ["IgniteDurationUnique__1"] = { affix = "", "20% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "20% reduced Ignite Duration on Enemies" }, } }, - ["IgniteDurationUnique__2"] = { affix = "", "90% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "90% reduced Ignite Duration on Enemies" }, } }, - ["IgniteDurationUnique__3_"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "50% reduced Ignite Duration on Enemies" }, } }, - ["IgniteDurationUnique__4"] = { affix = "", "(10-25)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 30, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(10-25)% increased Ignite Duration on Enemies" }, } }, - ["SocketedGemsGetBloodMagicUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, - ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 603 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [223497523] = { "" }, [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, - ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 605 }, 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 = { 10475 }, 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 = { 1626 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHashes = { [3051845758] = { "+(75-100)% to Fire Resistance when Socketed with a Red Gem" }, } }, - ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1638 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, tradeHashes = { [289814996] = { "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem" }, } }, - ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1632 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, tradeHashes = { [1064331314] = { "+(75-100)% to Cold Resistance when Socketed with a Green Gem" }, } }, - ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, - ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2984 }, 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 = { 2981 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, - ["ManaLeechFromLightningDamageUniqueStaff8"] = { affix = "", "200% of Lightning Damage Leeched as Mana", statOrder = { 1711 }, level = 1, group = "LightningManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [636708308] = { "200% of Lightning Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadFromLightningDamageUniqueStaff8"] = { affix = "", "0.4% of Lightning Damage Leeched as Mana", statOrder = { 1712 }, level = 1, group = "LightningManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [1399420168] = { "0.4% of Lightning Damage Leeched as Mana" }, } }, - ["AllSocketsAreWhiteUniqueRing25"] = { affix = "", "All Sockets are White", statOrder = { 76 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [211836731] = { "All Sockets are White" }, } }, - ["AllSocketsAreWhiteUniqueShieldStrDex7_"] = { affix = "", "All Sockets are White", statOrder = { 76 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [211836731] = { "All Sockets are White" }, } }, - ["PunishmentOnMeleeBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", statOrder = { 2987 }, level = 1, group = "PunishmentOnMeleeBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [2922377850] = { "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit" }, } }, - ["TemporalChainsOnProjectileBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", statOrder = { 2988 }, level = 1, group = "TemporalChainsOnProjectileBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [541329769] = { "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit" }, } }, - ["ElementalWeaknessOnSpellBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", statOrder = { 2989 }, level = 1, group = "ElementalWeaknessOnSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [2048643052] = { "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit" }, } }, - ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 536 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem", "drop" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, - ["VulnerabilityOnBlockUniqueStaff9"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2985 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, - ["VulnerabilityOnBlockUniqueShieldStrDex3"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2985 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, - ["HealAlliesOnDeathUniqueShieldDexInt2"] = { affix = "", "Nearby allies Recover 1% of your Maximum Life when you Die", statOrder = { 2991 }, level = 1, group = "HealAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3484267929] = { "Nearby allies Recover 1% of your Maximum Life when you Die" }, } }, - ["SelfShockDurationUniqueBelt12_"] = { affix = "", "100% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "100% increased Shock Duration on you" }, } }, - ["SelfShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "10000% increased Shock Duration on you" }, } }, - ["SelfShockDurationUnique__2"] = { affix = "", "50% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "50% increased Shock Duration on you" }, } }, - ["ShocksReflectToSelfUniqueBelt12"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2774 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [807955413] = { "Shocks you cause are reflected back to you" }, } }, - ["ShocksReflectToSelfUnique__1"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2774 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [807955413] = { "Shocks you cause are reflected back to you" }, } }, - ["MovementVelocityWhileShockedUniqueBelt12"] = { affix = "", "15% increased Movement Speed while Shocked", statOrder = { 2806 }, level = 1, group = "MovementVelocityWhileShocked", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [542923416] = { "15% increased Movement Speed while Shocked" }, } }, - ["DamageIncreaseWhileShockedUniqueBelt12"] = { affix = "", "60% increased Damage while Shocked", statOrder = { 2775 }, level = 1, group = "DamageIncreaseWhileShocked", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [529432426] = { "60% increased Damage while Shocked" }, } }, - ["DamageOnLowLifeUniqueHelmetStrInt5"] = { affix = "", "20% increased Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "DamagePercentageWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "20% increased Damage when on Low Life" }, } }, - ["SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5"] = { affix = "", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 478 }, level = 1, group = "SocketedGemsSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, } }, - ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2811 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3503466234] = { "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2811 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3503466234] = { "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2576 }, 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 = { 2757 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [782323220] = { "30% increased Elemental Damage with Attack Skills during any Flask Effect" }, } }, - ["IncreasedDamageToShockedTargetsUniqueRing29"] = { affix = "", "40% increased Damage with Hits against Shocked Enemies", statOrder = { 1238 }, level = 1, group = "IncreasedDamageToShockedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4194900521] = { "40% increased Damage with Hits against Shocked Enemies" }, } }, - ["LifeLeechVsShockedEnemiesUniqueRing29"] = { affix = "", "100% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1687 }, level = 48, group = "LeechLifeVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1825669392] = { "100% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["LifeLeechPermyriadVsShockedEnemiesUniqueRing29"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1688 }, level = 48, group = "LeechLifePermyriadVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2614321687] = { "1% of Damage Leeched as Life against Shocked Enemies" }, } }, - ["AddedPhysicalDamageVsFrozenEnemiesUniqueRing30"] = { affix = "", "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies", statOrder = { 1271 }, level = 1, group = "AddedPhysicalDamageOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3856468419] = { "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies" }, } }, - ["ReducedChillDurationOnSelfUniqueRing30"] = { affix = "", "20% reduced Chill Duration on you", statOrder = { 1872 }, level = 25, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "20% reduced Chill Duration on you" }, } }, - ["ChillDurationOnSelfUnique__1"] = { affix = "", "10000% increased Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "10000% increased Chill Duration on you" }, } }, - ["LifeGainOnHitVsIgnitedEnemiesUniqueRing31"] = { affix = "", "Gain (4-5) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 37, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (4-5) Life for each Ignited Enemy hit with Attacks" }, } }, - ["SocketedRedGemsHaveAddedFireDamageUniqueTwoHandSword8_"] = { affix = "", "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage", statOrder = { 532 }, level = 1, group = "SocketedRedGemsHaveAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "gem" }, tradeHashes = { [2629366488] = { "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage" }, } }, - ["SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8"] = { affix = "", "Socketed Melee Gems have 15% increased Area of Effect", statOrder = { 531 }, level = 1, group = "SocketedMeleeGemsHaveIncreasedAoE", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2462976337] = { "Socketed Melee Gems have 15% increased Area of Effect" }, } }, - ["ReducedCriticalStrikeDamageTakenUniqueBelt13"] = { affix = "", "You take 30% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 30% reduced Extra Damage from Critical Strikes" }, } }, - ["PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9"] = { affix = "", "50% of Physical Damage Converted to Fire Damage against Ignited Enemies", statOrder = { 2177 }, level = 1, group = "PhysicalDamageConvertedToFireVsBurningEnemy", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [4178812762] = { "50% of Physical Damage Converted to Fire Damage against Ignited Enemies" }, } }, - ["PhysicalTakenAsColdUniqueFlask8"] = { affix = "", "(10-15)% of Physical Damage from Hits taken as Cold Damage during Effect", statOrder = { 957 }, level = 1, group = "PhysicalTakenAsColdFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical", "elemental", "cold" }, tradeHashes = { [625682777] = { "(10-15)% of Physical Damage from Hits taken as Cold Damage during Effect" }, } }, - ["PhysicalAddedAsColdUniqueFlask8"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Cold Damage during effect", statOrder = { 958 }, level = 1, group = "PhysicalAddedAsColdFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2661163721] = { "Gain (10-15)% of Physical Damage as Extra Cold Damage during effect" }, } }, - ["PhysicalAddedAsColdUniqueOneHandSword12"] = { affix = "", "Gain (25-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (25-30)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__1"] = { affix = "", "Gain 50% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 35, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 50% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__2"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (10-15)% of Physical Damage as Extra Cold Damage" }, } }, - ["PhysicalAddedAsColdUnique__3"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (10-50)% of Physical Damage as Extra Cold Damage" }, } }, - ["AvoidChillUniqueFlask8"] = { affix = "", "30% chance to Avoid being Chilled during Effect", statOrder = { 959 }, level = 1, group = "AvoidChillFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [1053326368] = { "30% chance to Avoid being Chilled during Effect" }, } }, - ["AvoidFreezeUniqueFlask8"] = { affix = "", "30% chance to Avoid being Frozen during Effect", statOrder = { 961 }, level = 1, group = "AvoidFreezeFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [2872815301] = { "30% chance to Avoid being Frozen during Effect" }, } }, - ["IncreasedSelfBurnDurationUniqueRing28"] = { affix = "", "100% increased Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "100% increased Ignite Duration on you" }, } }, - ["SelfBurnDurationUnique__1"] = { affix = "", "10000% increased Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "10000% increased Ignite Duration on you" }, } }, - ["FireDamageTakenCausesExtraPhysicalDamageUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage taken causes extra Physical Damage", statOrder = { 2454 }, level = 1, group = "FireDamageTakenCausesExtraPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1359741607] = { "10% of Fire Damage taken causes extra Physical Damage" }, } }, - ["ReducedChanceToBlockUnique__1"] = { affix = "", "30% reduced Chance to Block Attack and Spell Damage", statOrder = { 1166 }, level = 1, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "30% reduced Chance to Block Attack and Spell Damage" }, } }, - ["ChillEffectivenessOnSelfUniqueRing28"] = { affix = "", "75% reduced Effect of Chill on you", statOrder = { 1645 }, level = 30, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "75% reduced Effect of Chill on you" }, } }, - ["TemporalChainsEffectivenessOnSelfUniqueRing27"] = { affix = "", "Temporal Chains has 50% reduced Effect on you", statOrder = { 1644 }, level = 28, group = "TemporalChainsEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1152934561] = { "Temporal Chains has 50% reduced Effect on you" }, } }, - ["TemporalChainsEffectivenessOnSelfUnique__1"] = { affix = "", "Unaffected by Temporal Chains", statOrder = { 10484 }, level = 32, group = "UnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4212372504] = { "Unaffected by Temporal Chains" }, } }, - ["PhysicalDamageOnSkillUseUniqueHelmetInt8"] = { affix = "", "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage", statOrder = { 2213 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [99487834] = { "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage" }, } }, - ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 2242 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "20% increased Fire Damage taken" }, } }, - ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2446 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1029319062] = { "10% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2445 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, - ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1272 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [627339348] = { "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies" }, } }, - ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 754, 754.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, tradeHashes = { [2816098341] = { "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses" }, } }, - ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 2% increased Damage per 5 Dexterity", statOrder = { 1978 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [4187741589] = { "Minions deal 2% increased Damage per 5 Dexterity" }, } }, - ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy", statOrder = { 753 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2770461177] = { "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy" }, } }, - ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5435 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, - ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3015 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy" }, } }, - ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [875143443] = { "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, - ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [875143443] = { "Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, - ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 2139 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2481358827] = { "(4-7)% increased Physical Damage per Endurance Charge" }, } }, - ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 2139 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2481358827] = { "10% increased Physical Damage per Endurance Charge" }, } }, - ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Full Life", statOrder = { 2997 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2111067745] = { "2% increased Damage per Power Charge with Hits against Enemies on Full Life" }, } }, - ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2998 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [82392902] = { "2% increased Damage per Power Charge with Hits against Enemies on Low Life" }, } }, - ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 2996 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2724643145] = { "Penetrate 1% Elemental Resistances per Frenzy Charge" }, } }, - ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(100-200)% increased Endurance, Frenzy and Power Charge Duration" }, } }, - ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "20% reduced Duration of Elemental Ailments on Enemies" }, } }, - ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "50% increased Duration of Elemental Ailments on Enemies" }, } }, - ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "(10-15)% increased Duration of Elemental Ailments on Enemies" }, } }, - ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 3021 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740359895] = { "Your Hits can only Kill Frozen Enemies" }, } }, - ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "100% increased Freeze Duration on Enemies" }, } }, - ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1856, 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "10000% increased Chill Duration on Enemies" }, [1073942215] = { "10000% increased Freeze Duration on Enemies" }, } }, - ["FreezeDurationUnique__1"] = { affix = "", "30% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "30% increased Freeze Duration on Enemies" }, } }, - ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, 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 = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 3024 }, 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 = { 3024 }, 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 = { 3027 }, 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 = { 3023 }, 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 = { 2790 }, 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 = { 2791 }, 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 = { 4909 }, 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 8 Steel Shards", statOrder = { 10067, 10067.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1031404836] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 8 Steel Shards" }, } }, - ["LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "300% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1692 }, level = 65, group = "LifeLeechFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1028143379] = { "300% of Attack Damage Leeched as Life against Chilled Enemies" }, } }, - ["LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "1% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1693 }, level = 65, group = "LifeLeechPermyriadFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [748813744] = { "1% of Attack Damage Leeched as Life against Chilled Enemies" }, } }, - ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2566 }, 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 = { 609 }, 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 = { 610 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3235941702] = { "Socketed Projectile Spells fire Projectiles in a circle" }, } }, - ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 607 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4016885052] = { "Socketed Gems fire 4 additional Projectiles" }, } }, - ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 607 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4016885052] = { "Socketed Gems fire an additional Projectile" }, } }, - ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 608 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [973574623] = { "Socketed Projectile Spells fire 4 additional Projectiles" }, } }, - ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 611 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [678608747] = { "Socketed Gems have 70% reduced Skill Effect Duration" }, } }, - ["MainHandAdditionalProjectilesWhileInOffHandUnique__1"] = { affix = "", "Attacks fire (1-2) additional Projectile when in Off Hand", statOrder = { 10492 }, level = 1, group = "MainHandAdditionalProjectilesWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4209631466] = { "Attacks fire (1-2) additional Projectile when in Off Hand" }, } }, - ["OffHandAreaOfEffectWhileInMainHandUnique__1"] = { affix = "", "Attacks have (40-60)% increased Area of Effect when in Main Hand", statOrder = { 10493 }, level = 1, group = "OffHandAreaOfEffectWhileInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [421841616] = { "Attacks have (40-60)% increased Area of Effect when in Main Hand" }, } }, - ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 494 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 495 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2593773031] = { "Socketed Gems are Supported by Level 30 Generosity" }, } }, - ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "3% increased effect of Non-Curse Auras from your Skills" }, } }, - ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-40)% increased Area of Effect of Aura Skills" }, } }, - ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "20% increased Area of Effect of Aura Skills" }, } }, - ["ChaosDamagePoisonsUniqueDagger10"] = { affix = "", "Your Chaos Damage Poisons Enemies", statOrder = { 3031 }, level = 1, group = "ChaosDamagePoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3549040753] = { "Your Chaos Damage Poisons Enemies" }, } }, - ["ChaosDamageChanceToPoisonUnique__1"] = { affix = "", "Your Chaos Damage has 60% chance to Poison Enemies", statOrder = { 3032 }, level = 1, group = "ChaosDamageChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2894297982] = { "Your Chaos Damage has 60% chance to Poison Enemies" }, } }, - ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 2138 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1586440250] = { "(4-7)% increased Elemental Damage per Frenzy Charge" }, } }, - ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 3033 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325437053] = { "Mines can be Detonated an additional time" }, } }, - ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 3028 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3818161429] = { "You gain Onslaught for 3 seconds on Culling Strike" }, } }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-5) to (7-10) Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, - ["LifeLeechUniqueOneHandAxe6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 3030 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2872105818] = { "100% chance to Avoid being Chilled during Onslaught" }, } }, - ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of Life per second", statOrder = { 1944 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of Life per second" }, } }, - ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of Life per second" }, } }, - ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, - ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem", statOrder = { 10647 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem" }, } }, - ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of Life per second" }, } }, - ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of Life per second" }, } }, - ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1928 }, 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 = { 1928 }, 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 = { 9221 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, - ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1197 }, 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 = { 497 }, 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 = { 5821 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, - ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2437 }, 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 = { 2438 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3597806437] = { "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed" }, } }, - ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2572 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [347328113] = { "+(200-250) Energy Shield gained on Killing a Shocked Enemy" }, } }, - ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2572 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [347328113] = { "+(90-120) Energy Shield gained on Killing a Shocked Enemy" }, } }, - ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 3011 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2095084973] = { "Cannot Knock Enemies Back" }, } }, - ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 3012 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [2437193018] = { "All Attack Damage Chills when you Stun" }, } }, - ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of Life Regenerated per second", statOrder = { 3000 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3462673103] = { "Nearby Allies gain 4% of Life Regenerated per second" }, } }, - ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 3005 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [778848857] = { "Nearby Allies gain 80% increased Mana Regeneration Rate" }, } }, - ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2697 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2138434718] = { "40% increased Rarity of Items Dropped by Frozen Enemies" }, } }, - ["IncreasedRarityWhenSlayingFrozenUnique__1"] = { affix = "", "30% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2697 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2138434718] = { "30% increased Rarity of Items Dropped by Frozen Enemies" }, } }, - ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage", statOrder = { 3040 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [754005431] = { "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage" }, } }, - ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 3018 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1489905076] = { "Allies' Aura Buffs do not affect you" }, } }, - ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect allies", statOrder = { 3020 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [4196775867] = { "Your Aura Buffs do not affect allies" }, } }, - ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased Effect of Buffs on you", statOrder = { 2144 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "10% increased Effect of Buffs on you" }, } }, - ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased Effect of Buffs on you", statOrder = { 2144 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "30% increased Effect of Buffs on you" }, } }, - ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 3017 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, - ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4066711249] = { "Socketed Gems are Supported by Level 10 Knockback" }, } }, - ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 3010 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate 75 Life per second per Endurance Charge" }, } }, - ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 3010 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate (100-140) Life per second per Endurance Charge" }, } }, - ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 895 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1457911472] = { "75% chance to cause Enemies to Flee on use" }, } }, - ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 1039 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3636096208] = { "(7-10)% more Melee Physical Damage during effect" }, } }, - ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 955 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "attack" }, tradeHashes = { [251342217] = { "Adds Knockback to Melee Attacks during Effect" }, } }, - ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2480 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 6 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 10 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 14 Life and Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, [640052854] = { "Grants 6 Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 28 Life per Enemy Hit" }, [640052854] = { "Grants 10 Mana per Enemy Hit" }, } }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 38 Life per Enemy Hit" }, [640052854] = { "Grants 14 Mana per Enemy Hit" }, } }, - ["LifeAndManaLeechImplicitMarakethClaw1"] = { affix = "", "0.8% of Physical Attack Damage Leeched as Life and Mana", statOrder = { 1656 }, level = 1, group = "LifeAndManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical", "attack" }, tradeHashes = { [237471491] = { "0.8% of Physical Attack Damage Leeched as Life and Mana" }, } }, - ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 663 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, [231162761] = { "" }, } }, - ["SolartwineUniqueBelt55"] = { affix = "", "Grants Level 20 Blazing Glare", statOrder = { 7898 }, level = 30, group = "SolartwineActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3696252104] = { "Grants Level 20 Blazing Glare" }, } }, - ["BitingBraidUniqueBelt52"] = { affix = "", "Grants Level 20 Caustic Retribution", statOrder = { 7894 }, level = 30, group = "BitingBraidActiveSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [124458098] = { "Grants Level 20 Caustic Retribution" }, } }, - ["EnemiesPoisonedByYouCannotCritUnique_1"] = { affix = "", "Enemies Poisoned by you cannot deal Critical Strikes", statOrder = { 6392 }, level = 30, group = "EnemiesPoisonedByYouCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1330636770] = { "Enemies Poisoned by you cannot deal Critical Strikes" }, } }, - ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2770 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2318615887] = { "30% chance to gain a Power Charge when you Stun with Melee Damage" }, } }, - ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2771 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, - ["UnholyMightOnMeleeCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 2 seconds on Melee Critical Strike", statOrder = { 2915 }, level = 1, group = "UnholyMightOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1483655843] = { "Gain Unholy Might for 2 seconds on Melee Critical Strike" }, } }, - ["UnholyMightOnCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2917 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2959020308] = { "Gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1843 }, 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 = { 9748 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, - ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10830 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 646 }, 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 = { 510 }, 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 = { 7398 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, - ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "10% increased Projectile Damage" }, } }, - ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, - ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(8-12)% increased Damage over Time" }, } }, - ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "4% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-9)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-7)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-8)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__8"] = { affix = "", "(6-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-8)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__9"] = { affix = "", "(0-40)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(0-40)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeedUnique__10"] = { affix = "", "(6-12)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-12)% increased Attack and Cast Speed" }, } }, - ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+20 to Strength and Dexterity" }, } }, - ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+50 to Strength and Dexterity" }, } }, - ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+20 to Strength and Intelligence" }, } }, - ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-30) to Strength and Intelligence" }, } }, - ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+20 to Dexterity and Intelligence" }, } }, - ["LifeLeechJewel"] = { affix = "Hungering", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } }, - ["ManaLeechJewel"] = { affix = "Thirsting", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["SpellLifeLeechJewel"] = { affix = "Transfusing", "1% of Spell Damage Leeched as Life", statOrder = { 1662 }, level = 1, group = "SpellLifeLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1482980366] = { "1% of Spell Damage Leeched as Life" }, } }, - ["SpellManaLeechJewel"] = { affix = "Siphoning", "1% of Spell Damage Leeched as Mana", statOrder = { 1703 }, level = 1, group = "SpellManaLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [785819929] = { "1% of Spell Damage Leeched as Mana" }, } }, - ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Global Accuracy Rating" }, } }, - ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Strike Chance with Traps", statOrder = { 1474 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(100-120)% increased Critical Strike Chance with Traps" }, } }, - ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1883 }, 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 = { 1883 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, - ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "10% chance to Knock Enemies Back on hit" }, } }, - ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-10)% to all Elemental Resistances" }, } }, - ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(30-50)% reduced Totem Damage" }, } }, - ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, - ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3047 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, [3802517517] = { "" }, } }, - ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3047 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, [3802517517] = { "" }, } }, - ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, - ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3050 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, [3802517517] = { "" }, } }, - ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3050 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, [3802517517] = { "" }, } }, - ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, - ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3051 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, - ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3051 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, - ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, - ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3048 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, - ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3048 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, - ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, - ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3052 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, - ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3052 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, - ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, - ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3049 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, [3802517517] = { "" }, } }, - ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3049 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, [3802517517] = { "" }, } }, - ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, - ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(20-30)% reduced Attack and Cast Speed" }, } }, - ["NonDamagingAilmentEffectUnique_1"] = { affix = "", "(10-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 100, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(10-20)% increased Effect of Non-Damaging Ailments" }, } }, - ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, - ["LifeLeechLocal1"] = { affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 9, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocal2"] = { affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 25, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocal3"] = { affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 72, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(5-6)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalPermyriadUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalUniqueOneHandMace8"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, - ["ManaLeechLocal1"] = { affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 9, group = "ManaLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadLocalUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, - ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 894 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3591397930] = { "Knocks Back Enemies in an Area when you use a Flask" }, } }, - ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1892 }, 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 = { 2569 }, 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 = { 2569 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10829 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10717, 10717.1 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [4077035099] = { "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, } }, + ["FleshShieldOnMinionDeathUnique__1"] = { affix = "", "When a nearby Minion dies, gain Rotten Bulwark equal to (7-9)% of its maximum Life", statOrder = { 9443 }, level = 80, group = "FleshShieldOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1960869129] = { "When a nearby Minion dies, gain Rotten Bulwark equal to (7-9)% of its maximum Life" }, } }, + ["ConsumeLifeFlaskChargesForDoTMultiOnAttackUnique__1"] = { affix = "", "On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%", "For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier", statOrder = { 5947, 5947.1 }, level = 70, group = "ConsumeLifeFlaskChargesForDoTMultiOnAttack", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1341154644] = { "On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%", "For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier" }, } }, + ["CannotUseManaFlaskUnique__1"] = { affix = "", "Can't use Mana Flasks", statOrder = { 5525 }, level = 70, group = "CannotUseManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1863071073] = { "Can't use Mana Flasks" }, } }, + ["IncreasedGoldFoundUnique__1"] = { affix = "", "(25-35)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7404 }, level = 55, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [253956903] = { "(25-35)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["SandMirageOnCastUnique__1"] = { affix = "", "Trigger level 20 Suspend in Time on Casting a Spell", statOrder = { 197 }, level = 1, group = "SandMirageOnCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1925643497] = { "Trigger level 20 Suspend in Time on Casting a Spell" }, } }, + ["SpellDamagePerUniqueSpellRecentlyUnique__1"] = { affix = "", "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5537 }, level = 1, group = "SpellDamagePerUniqueSpellRecently", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1518586897] = { "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, + ["WeaponElementalDamageUniqueShieldStrInt4"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(10-20)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUniqueRing10"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUniqueBelt5"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(10-20)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageImplicitBow1"] = { affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-24)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageImplicitBow2"] = { affix = "", "(25-28)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(25-28)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageImplicitBow3"] = { affix = "", "(29-32)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(29-32)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageImplicitSword1"] = { affix = "", "30% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "30% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageImplicitQuiver13New"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 83, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUniqueBelt10"] = { affix = "", "10% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "10% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUnique__1"] = { affix = "", "(4-12)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(4-12)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUnique__2"] = { affix = "", "(60-80)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(60-80)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUnique__3"] = { affix = "", "(40-55)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(40-55)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUnique__4"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-25)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUnique__5"] = { affix = "", "(25-30)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(25-30)% increased Elemental Damage with Attack Skills" }, } }, + ["WeaponElementalDamageUnique__6"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attack Skills" }, } }, + ["ThisWeaponsWeaponElementalDamageUniqueWand6"] = { affix = "", "Attacks with this Weapon have (100-115)% increased Elemental Damage", statOrder = { 2963 }, level = 1, group = "ThisWeaponWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [17526298] = { "Attacks with this Weapon have (100-115)% increased Elemental Damage" }, } }, + ["ManaLeechUniqueOneHandSword2"] = { affix = "", "(3-5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1723 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "(3-5)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueOneHandSword2"] = { affix = "", "(0.6-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.6-1)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueTwoHandSword2"] = { affix = "", "3% of Physical Attack Damage Leeched as Mana", statOrder = { 1723 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "3% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueTwoHandSword2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.6% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueAmulet3"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueAmulet3"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechStrDexHelmet1"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadStrDexHelmet1"] = { affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1728 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.4% of Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueGlovesStrDex1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueTwoHandMace4"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1723 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueTwoHandMace4"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueHelmetInt7"] = { affix = "", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.2-0.4)% of Attack Damage Leeched as Mana", statOrder = { 1728 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "(0.2-0.4)% of Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueRing17"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueRing17"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueGlovesDexInt6"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueGlovesDexInt6"] = { affix = "", "0.2% of Attack Damage Leeched as Mana", statOrder = { 1728 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.2% of Attack Damage Leeched as Mana" }, } }, + ["ManaLeechUniqueBodyStr6"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUniqueBodyStr6"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUnique__1"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUnique__2"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadUnique__3"] = { affix = "", "(1-1.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(1-1.5)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ItemFoundQuantityIncreaseUniqueGlovesInt1"] = { affix = "", "(5-10)% increased Quantity of Items found", statOrder = { 1615 }, level = 14, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(5-10)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncreaseUniqueBelt3"] = { affix = "", "(6-8)% increased Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-8)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncreaseUniqueBootsDex2"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-10)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncreaseUniqueRing7"] = { affix = "", "(10-16)% increased Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(10-16)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncreaseUniqueShieldInt4"] = { affix = "", "(4-8)% increased Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(4-8)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncreaseUniqueBodyStr5"] = { affix = "", "(10-15)% increased Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(10-15)% increased Quantity of Items found" }, } }, + ["ItemFoundQuantityIncreaseUniqueRing32"] = { affix = "", "(-10-10)% reduced Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(-10-10)% reduced Quantity of Items found" }, } }, + ["ItemFoundQuantityReduceUniqueCorruptedJewel1"] = { affix = "", "10% reduced Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "10% reduced Quantity of Items found" }, } }, + ["ItemFoundQuantityIncreasedUnique__1"] = { affix = "", "5% increased Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "5% increased Quantity of Items found" }, } }, + ["ItemFoundRarityIncreaseImplicitRing1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 1619 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-15)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseImplicitAmulet1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 1619 }, level = 10, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-20)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueRing3"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 1619 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(50-70)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueAmulet6"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1619 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueStrDexHelmet1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueBootsDexInt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueGlovesStrDex2"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueTwoHandAxe2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityDecreaseUniqueRapier1"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "20% reduced Rarity of Items found" }, } }, + ["ItemFoundRarityDecreaseUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-50)% reduced Rarity of Items found" }, } }, + ["ItemFoundRarityDecreaseUniqueRing10"] = { affix = "", "(10-20)% reduced Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% reduced Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueHelmetDex3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueHelmetWreath1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueRing6"] = { affix = "", "(10-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-30)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueHelmetDex6"] = { affix = "", "(20-25)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-25)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueRapier2"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "20% reduced Rarity of Items found" }, } }, + ["ItemFoundRarityDecreaseUniqueOneHandSword4"] = { affix = "", "50% reduced Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "50% reduced Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueBootsDemigods1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueShieldStrDex2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-40)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueRingDemigods1"] = { affix = "", "(16-24)% increased Rarity of Items found", statOrder = { 1619 }, level = 16, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-24)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueBodyStr5"] = { affix = "", "100% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "100% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueRing32_"] = { affix = "", "(-40-40)% reduced Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(-40-40)% reduced Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUniqueShieldDemigods"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__1"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__2"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__3"] = { affix = "", "(6-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-30)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__4_"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__5"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__6"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__7"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(5-15)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__8"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-20)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__9"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreaseUnique__10"] = { affix = "", "(20-40)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-40)% increased Rarity of Items found" }, } }, + ["ReducedEnergyShieldDelayUniqueBodyInt1"] = { affix = "", "10% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "10% faster start of Energy Shield Recharge" }, } }, + ["ReducedEnergyShieldDelayUniqueDagger4"] = { affix = "", "(40-80)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(40-80)% faster start of Energy Shield Recharge" }, } }, + ["ReducedEnergyShieldDelayUniqueQuiver7"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, + ["ReducedEnergyShieldDelayUniqueBelt11"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 28, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% increased Energy Shield Recharge Rate" }, } }, + ["ReducedEnergyShieldDelayUniqueCorruptedJewel15"] = { affix = "", "20% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "20% faster start of Energy Shield Recharge" }, } }, + ["IncreasedEnergyShieldDelayUniqueHelmetInt4"] = { affix = "", "50% reduced Energy Shield Recharge Rate", statOrder = { 1587 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "50% reduced Energy Shield Recharge Rate" }, } }, + ["ReducedEnergyShieldDelayUnique__1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, + ["ReducedEnergyShieldDelayImplicit1_"] = { affix = "", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 93, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, + ["IncreasedCastSpeedImplicitMarakethWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, + ["IncreasedCastSpeedImplicitMarakethWand2"] = { affix = "", "14% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "14% increased Cast Speed" }, } }, + ["IncreasedCastSpeedImplicitRing1"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 1470 }, level = 25, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-10)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueAmulet1"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueStaff1"] = { affix = "", "(20-40)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-40)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueGlovesInt2"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% reduced Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueStaff2"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueGlovesInt4"] = { affix = "", "10% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueWand3"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueAmulet16"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% reduced Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueClaw7"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueDescentWand1"] = { affix = "", "12% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueSceptre6"] = { affix = "", "(15-18)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-18)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueWand4"] = { affix = "", "(5-8)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-8)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueStaff5"] = { affix = "", "18% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "18% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueSceptre7"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueWand7"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-30)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["ReducedCastSpeedUniqueBootsDex5"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% reduced Cast Speed" }, } }, + ["ReducedCastSpeedUniqueHelmetInt8"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, + ["ReducedCastSpeedUniqueHelmetStrInt6"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, + ["ReducedCastSpeedUniqueGlovesStrInt4_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% reduced Cast Speed" }, } }, + ["ReducedCastSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% reduced Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-25)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueStaff12"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueWand10"] = { affix = "", "10% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueWand11"] = { affix = "", "(7-13)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-13)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueTwoHandMace8"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUniqueRing38"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__1"] = { affix = "", "(4-8)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-8)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__2"] = { affix = "", "(14-18)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-18)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__3"] = { affix = "", "(30-40)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(30-40)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__4"] = { affix = "", "(4-6)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-6)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__5"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__6"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__7"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__9"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__10"] = { affix = "", "(12-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__11__"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__12"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__13"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-30)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__14"] = { affix = "", "(20-40)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-40)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__15_"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__16"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__17"] = { affix = "", "(1-20)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(1-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__18_"] = { affix = "", "(5-7)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-7)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__19__"] = { affix = "", "(8-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-15)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__20"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__21"] = { affix = "", "(7-12)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__22"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-25)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__23"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__24"] = { affix = "", "(8-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-10)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__25"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-30)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__26"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-10)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__27"] = { affix = "", "(5-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-15)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedUnique__28"] = { affix = "", "(12-18)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-18)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedFishing__Unique1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { }, weightVal = { }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedFishing__Unique2"] = { affix = "", "(35-40)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { }, weightVal = { }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(35-40)% increased Cast Speed" }, } }, + ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1"] = { affix = "", "4% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "4% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2"] = { affix = "", "6% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "6% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow2"] = { affix = "", "10% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandSword1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandSword3"] = { affix = "", "20% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueRapier1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandMace3"] = { affix = "", "25% reduced Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "25% reduced Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueDagger3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandMace1"] = { affix = "", "45% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "45% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow4"] = { affix = "", "100% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "100% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow5"] = { affix = "", "20% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandMace4"] = { affix = "", "50% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow6"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-14)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueClaw1"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueSceptre1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueClaw2"] = { affix = "", "20% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow8"] = { affix = "", "(36-50)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(36-50)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueClaw3"] = { affix = "", "5% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "5% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandAxe1"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-35)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedOneHandSword3"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow10"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandSword6"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandAxe2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueDescentDagger1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueDescentBow1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueDescentOneHandMace1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandAxe7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueSceptre7"] = { affix = "", "(11-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueWand6"] = { affix = "", "(10-18)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-18)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow11"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-14)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword7"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueStaff7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword8"] = { affix = "", "(22-27)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(22-27)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword9"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandSword8"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueStaff9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueSceptre9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueBow12"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword11"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueClaw8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueWand9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandAxe9"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-12)% increased Attack Speed" }, } }, + ["LocalReducedAttackSpeedUniqueDagger9"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueDagger12"] = { affix = "", "10% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueClaw9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandAxe7"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword12"] = { affix = "", "15% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "15% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword13_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalReducedAttackSpeedUniqueOneHandMace6"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "20% reduced Attack Speed" }, } }, + ["LocalReducedAttackSpeedUnique__1"] = { affix = "", "50% reduced Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "50% reduced Attack Speed" }, } }, + ["LocalReducedAttackSpeedUnique__2"] = { affix = "", "15% reduced Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, } }, + ["LocalReducedAttackSpeedUnique__3"] = { affix = "", "(25-30)% reduced Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% reduced Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueOneHandMace8"] = { affix = "", "10% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "10% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUniqueTwoHandMace8_"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__2"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__1"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(4-8)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__3"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__4"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__5"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__6"] = { affix = "", "(14-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__9"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__10"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__11"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__12"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__14"] = { affix = "", "(17-25)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-25)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__15"] = { affix = "", "(16-22)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(16-22)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__16"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__18"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-14)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__19"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__20"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__21"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-25)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__22"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__23"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__24"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__25"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__26_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__27"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__28"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__29"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-15)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__30"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__31"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-12)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__32"] = { affix = "", "(20-26)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-26)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__33"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__34"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__35"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-30)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__36"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__37___"] = { affix = "", "(16-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(16-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__38"] = { affix = "", "(-16-16)% reduced Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(-16-16)% reduced Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__39"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-20)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__40"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(25-35)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__42"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__43"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__44"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__45"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeedUnique__46"] = { affix = "", "(8-16)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-16)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedImplicitShield1"] = { affix = "", "6% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "6% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedImplicitShield2"] = { affix = "", "12% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedImplicitShield3"] = { affix = "", "18% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedImplicitQuiver10New"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1434 }, level = 62, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueQuiver1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueBootsDexInt1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueGlovesDex2"] = { affix = "", "5% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueGlovesStrDex1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueHelmetStrDex2"] = { affix = "", "16% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueGlovesStr2"] = { affix = "", "(5-15)% reduced Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-15)% reduced Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueHelmetDex4"] = { affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueBodyDex5"] = { affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueGlovesDexInt3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueHelmetDex6"] = { affix = "", "15% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueBodyStr3"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueGlovesDemigods1"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-16)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueBodyDex7"] = { affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueQuiver3"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueQuiver5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1434 }, level = 4, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueQuiver6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1434 }, level = 10, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueQuiver7"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueGlovesStrDex5"] = { affix = "", "(6-9)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-9)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueShieldDex6"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueShieldDexInt2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueQuiver9"] = { affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-15)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueShieldInt5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, + ["ReducedAttackSpeedUniqueAmulet16"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% reduced Attack Speed" }, } }, + ["ReducedAttackSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(20-30)% reduced Attack Speed" }, } }, + ["ReducedAttackSpeedUnique__1"] = { affix = "", "30% reduced Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "30% reduced Attack Speed" }, } }, + ["ReducedAttackSpeedUnique__2"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% reduced Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-25)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUniqueRing37"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique_1"] = { affix = "", "(8-13)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-13)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique__3_"] = { affix = "", "(1-20)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(1-20)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique__4_"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-12)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique__5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique__6"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique__7"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique__8"] = { affix = "", "(8-16)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-16)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedUnique__9"] = { affix = "", "(5-15)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-15)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeedTransformedUnique__1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1434 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-10)% increased Attack Speed" }, } }, + ["IncreasedAccuracyUniqueBow2"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+30 to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueTwoHandAxe1"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(150-250) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueTwoHandSword1"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-350) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueAmulet5"] = { affix = "", "+100 to Accuracy Rating", statOrder = { 1457 }, level = 7, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+100 to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueStrDexHelmet1"] = { affix = "", "+500 to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+500 to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueGlovesDexInt1"] = { affix = "", "+(100-200) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-200) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueAmulet7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-150) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueTwoHandMace3"] = { affix = "", "-500 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "-500 to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueBow4"] = { affix = "", "+(25-50) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(25-50) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueBow7"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(350-400) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueRing12"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-350) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueHelmetInt7"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-350) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueTwoHandAxe5"] = { affix = "", "+(120-150) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(120-150) to Accuracy Rating" }, } }, + ["ReducedAccuracyUniqueTwoHandSword5"] = { affix = "", "-150 to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "-150 to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueAmulet17_"] = { affix = "", "+(80-120) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(80-120) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueDescentBow1"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+30 to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueRing17"] = { affix = "", "+333 to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+333 to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueWand6"] = { affix = "", "+(340-400) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(340-400) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueOneHandSword9"] = { affix = "", "+(280-300) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(280-300) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueTwoHandSword7"] = { affix = "", "+(90-120) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(90-120) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUniqueSceptre8"] = { affix = "", "+(160-220) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(160-220) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__1"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__2"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(350-400) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__3"] = { affix = "", "+(600-1000) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(600-1000) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__4"] = { affix = "", "+(800-1000) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(800-1000) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-400) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__6"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-250) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__7_"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(200-300) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__8"] = { affix = "", "+(350-500) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(350-500) to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__9____"] = { affix = "", "-5000 to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "-5000 to Accuracy Rating" }, } }, + ["IncreasedAccuracyUnique__10"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(300-500) to Accuracy Rating" }, } }, + ["LifeRegenerationUniqueRing1"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10-15) Life per second" }, } }, + ["LifeRegenerationImplicitAmulet1"] = { affix = "", "Regenerate (2-4) Life per second", statOrder = { 1596 }, level = 2, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2-4) Life per second" }, } }, + ["LifeRegenerationImplicitAmulet2"] = { affix = "", "Regenerate (1.2-1.6)% of Life per second", statOrder = { 1967 }, level = 93, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.2-1.6)% of Life per second" }, } }, + ["LifeRegenerationUniqueShieldDex2"] = { affix = "", "Regenerate (5-7.5) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (5-7.5) Life per second" }, } }, + ["LifeRegenerationUniqueTwoHandAxe4"] = { affix = "", "Regenerate 20 Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate 20 Life per second" }, } }, + ["LifeRegenerationUniqueWreath1"] = { affix = "", "Regenerate 2 Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate 2 Life per second" }, } }, + ["LifeRegenerationUniqueShieldStrInt5"] = { affix = "", "Regenerate (100-200) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (100-200) Life per second" }, } }, + ["LifeRegenerationUniqueBootsDex5"] = { affix = "", "Regenerate (1.7-2.7) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (1.7-2.7) Life per second" }, } }, + ["LifeRegenerationUniqueBelt8"] = { affix = "", "Regenerate (200-350) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (200-350) Life per second" }, } }, + ["LifeRegenerationUniqueGlovesStrDex5"] = { affix = "", "Regenerate (3-4) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (3-4) Life per second" }, } }, + ["LifeRegenerationUniqueRing26"] = { affix = "", "Regenerate (13-17) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (13-17) Life per second" }, } }, + ["LifeRegenerationUniqueRing33"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10-15) Life per second" }, } }, + ["LifeRegenerationUniqueAmulet25"] = { affix = "", "Regenerate (16-24) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16-24) Life per second" }, } }, + ["LifeRegenerationUnique__1"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (50-70) Life per second" }, } }, + ["LifeRegenerationUnique__2__"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (50-70) Life per second" }, } }, + ["LifeRegenerationUnique__3"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-50) Life per second" }, } }, + ["LifeRegenerationUnique__4"] = { affix = "", "Regenerate (200-250) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (200-250) Life per second" }, } }, + ["LifeRegenerationUnique__5"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-50) Life per second" }, } }, + ["LifeRegenerationUnique__6"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1600 }, level = 97, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, + ["ManaRegenerationImplicitAmulet1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 2, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationImplicitAmulet2"] = { affix = "", "(48-56)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 97, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(48-56)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationImplicitDemigodsBelt1"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueRing5"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "50% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueDexHelmet2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueIntHelmet2"] = { affix = "", "30% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueBootsInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueBootsDex2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueAmulet10"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 20, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(80-100)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueRing14"] = { affix = "", "(45-65)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-65)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueBootsDex5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueBelt6"] = { affix = "", "20% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "20% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueBodyDexInt2"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueBootsStrDex4"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueOneHandMace3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueBow11"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueGlovesStrInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueRingDemigod1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 16, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueRing26"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueHelmetStrInt5"] = { affix = "", "20% reduced Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "20% reduced Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueRing33"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueAmulet21"] = { affix = "", "(60-100)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-100)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueJewel30"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueJewel43"] = { affix = "", "10% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "10% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueRing34"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUniqueShieldInt5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__1"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-25)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__2"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__3"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__4"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__6"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__7"] = { affix = "", "(45-50)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-50)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__8"] = { affix = "", "(40-45)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-45)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__9___"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(80-100)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__10"] = { affix = "", "(1-100)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(1-100)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__11___"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__12"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-40)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__14___"] = { affix = "", "60% reduced Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "60% reduced Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__15"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationUnique__16"] = { affix = "", "(60-80)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-80)% increased Mana Regeneration Rate" }, } }, + ["ReducedManaRegenerationUniqueRing27"] = { affix = "", "15% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "15% increased Mana Regeneration Rate" }, } }, + ["BaseManaRegenerationUniqueBodyDexInt2"] = { affix = "", "Regenerate 1% of Mana per second", statOrder = { 1604 }, level = 1, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 1% of Mana per second" }, } }, + ["StunThresholdReductionImlicitMarakethOneHandSword1"] = { affix = "", "8% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "8% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionImlicitMarakethOneHandSword2"] = { affix = "", "12% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "12% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionImplicitMace1"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "10% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionImplicitMace2"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "15% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionImplicitMace3_"] = { affix = "", "20% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "20% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionUniqueTwoHandMace1"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "15% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionUniqueQuiver2"] = { affix = "", "(10-15)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(10-15)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionUniqueGlovesDexInt2"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "10% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionUniqueClaw2_"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2523 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "25% reduced Enemy Stun Threshold with this Weapon" }, } }, + ["StunThresholdReductionUniqueClaw6"] = { affix = "", "10% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2523 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "10% reduced Enemy Stun Threshold with this Weapon" }, } }, + ["StunThresholdReductionUniqueTwoHandSword5"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2523 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "25% reduced Enemy Stun Threshold with this Weapon" }, } }, + ["StunThresholdReductionUniqueQuiver8"] = { affix = "", "(20-25)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(20-25)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionUniqueOneHandMace5"] = { affix = "", "(15-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2523 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(15-25)% reduced Enemy Stun Threshold with this Weapon" }, } }, + ["StunThresholdReductionUniqueStaff11"] = { affix = "", "(15-20)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(15-20)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionUniqueOneHandMace6"] = { affix = "", "(10-20)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(10-20)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionUniqueBootsStr3"] = { affix = "", "(5-10)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(5-10)% reduced Enemy Stun Threshold" }, } }, + ["StunThresholdReductionUnique__1___"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2523 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(20-30)% reduced Enemy Stun Threshold with this Weapon" }, } }, + ["StunThresholdReductionUnique__2"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2523 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [832404842] = { "(20-30)% reduced Enemy Stun Threshold with this Weapon" }, } }, + ["CriticalStrikeChanceImplicitDagger1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1483 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit1", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [340093681] = { "30% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitDagger2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1484 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1824597675] = { "40% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1485 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit3", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1410117599] = { "50% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitDaggerNew1"] = { affix = "", "(40-45)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-45)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitDaggerNew2"] = { affix = "", "(50-55)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-55)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitDaggerNew3"] = { affix = "", "(60-65)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(60-65)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitQuiver13"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 57, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitQuiver8New"] = { affix = "", "(20-30)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 50, group = "CriticalStrikeChanceWithBows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-30)% increased Critical Strike Chance with Bows" }, } }, + ["CriticalStrikeChanceImplicitMarakethStaff1"] = { affix = "", "80% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "80% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitMarakethStaff2"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueOneHandSword2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueGlovesDex2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueRapier1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueBodyInt4"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "100% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueHelmetDex4"] = { affix = "", "25% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "25% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueHelmetDex6"] = { affix = "", "(60-75)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(60-75)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueWand3"] = { affix = "", "(50-65)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-65)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceImplicitRing1"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 25, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueRing11_"] = { affix = "", "(30-35)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 35, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-35)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueAmulet17"] = { affix = "", "(200-250)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(200-250)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueGlovesStr3"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueGlovesDexInt6"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-30)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueBow9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, + ["CriticalSrikeChanceUniqueSceptre7"] = { affix = "", "(30-40)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-40)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueAmulet18"] = { affix = "", "(250-350)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(250-350)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUniqueWand10"] = { affix = "", "(80-120)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(80-120)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUnique__1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "30% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUnique__2"] = { affix = "", "(20-60)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-60)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUnique__3"] = { affix = "", "(50-70)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(50-70)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUnique__4_"] = { affix = "", "(120-160)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(120-160)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUnique__5__"] = { affix = "", "(15-25)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-25)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeChanceUnique__6"] = { affix = "", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Global Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe1"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "50% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe2"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "50% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueBow11"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueClaw2"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "25% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceImplicitBow1"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueStaff7"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-20)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueOneHandSword8"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueOneHandMace4"] = { affix = "", "(15-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniquSceptre10"] = { affix = "", "(25-50)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-50)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueOneHandSword10"] = { affix = "", "(44-66)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(44-66)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueWand9"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-20)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueDagger11"] = { affix = "", "30% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "30% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__1"] = { affix = "", "(26-32)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-32)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__2"] = { affix = "", "(22-30)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-30)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique14"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__3"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__4"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__5"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__6"] = { affix = "", "(40-60)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-60)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__7"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-35)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__8"] = { affix = "", "(50-75)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(50-75)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__10"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__11"] = { affix = "", "(20-25)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-25)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__12"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-25)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__13"] = { affix = "", "(70-90)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(70-90)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__14"] = { affix = "", "(80-100)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(80-100)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__15"] = { affix = "", "(25-35)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-35)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__16"] = { affix = "", "(8-12)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(8-12)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__17_"] = { affix = "", "(22-28)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-28)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__18"] = { affix = "", "(60-80)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-80)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__19"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__20"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__21"] = { affix = "", "(15-30)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-30)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__22"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__23"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__24"] = { affix = "", "(100-200)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(100-200)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__25"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__26"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__27"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUnique__28"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, + ["FireResistImplicitRing1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 20, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistImplicitAmulet1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUniqueDexHelmet2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUniqueAmulet4"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUniqueBootsDexInt1"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, + ["FireResistUniqueAmulet7"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, + ["FireResistUniqueBelt3"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+20% to Fire Resistance" }, } }, + ["FireResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, + ["FireResistUniqueBootsDex2"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, + ["FireResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUniqueBodyDex3"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, + ["FireResistUniqueBodyInt2"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, + ["FireResistUniqueShieldStr3"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-50)% to Fire Resistance" }, } }, + ["FireResistUniqueShieldStrInt5"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, + ["FireResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, + ["FireResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, + ["FireResistUniqueAmulet16"] = { affix = "", "+(30-45)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-45)% to Fire Resistance" }, } }, + ["FireResistUniqueHelmetInt7"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-30% to Fire Resistance" }, } }, + ["FireResistanceBodyDex6"] = { affix = "", "+(6-10)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, + ["FireResistUniqueOneHandSword4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, + ["FireResistUniqueBelt6"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUniqueBelt9"] = { affix = "", "+(30-35)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-35)% to Fire Resistance" }, } }, + ["FireResistUniqueRing15"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(25-35)% to Fire Resistance" }, } }, + ["FireResistUniqueBootsStrInt3"] = { affix = "", "+(50-60)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-60)% to Fire Resistance" }, } }, + ["FireResistUniqueBelt13"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, + ["FireResistUniqueBodyStr5"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, + ["FireResistUniqueRing32"] = { affix = "", "+(-25-50)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-25-50)% to Fire Resistance" }, } }, + ["FireResistUniqueBelt14"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1648 }, level = 65, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, + ["FireResistUniqueShieldStrDex3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, + ["FireResistUniqueOneHandAxe7_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["FireResistUniqueBootsStr3_"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__2"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-30)% to Fire Resistance" }, } }, + ["FireResistUnique__3"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-10% to Fire Resistance" }, } }, + ["FireResistUnique__4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-50)% to Fire Resistance" }, } }, + ["FireResistUnique__5"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__6"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-50)% to Fire Resistance" }, } }, + ["FireResistUnique__7_"] = { affix = "", "+(26-32)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-32)% to Fire Resistance" }, } }, + ["FireResistUnique__8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, + ["FireResistUnique__9"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, + ["FireResistUnique__10"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-30% to Fire Resistance" }, } }, + ["FireResistUnique__11"] = { affix = "", "-50% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-50% to Fire Resistance" }, } }, + ["FireResistUnique__12"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, + ["FireResistUnique__13"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__14"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, + ["FireResistUnique__15"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-20)% to Fire Resistance" }, } }, + ["FireResistUnique__16"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, + ["FireResistUnique__18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__19"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__20_"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-40)% to Fire Resistance" }, } }, + ["FireResistUnique__21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__22_"] = { affix = "", "-(30-20)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(30-20)% to Fire Resistance" }, } }, + ["FireResistUnique__23_"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, + ["FireResistUnique__24"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["FireResistUnique__25"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, + ["FireResistUnique__26"] = { affix = "", "+(40-60)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(40-60)% to Fire Resistance" }, } }, + ["FireResistUnique__27_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["FireResistUnique__28_"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(-30-30)% to Fire Resistance" }, } }, + ["FireResistUnique__29"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-40)% to Fire Resistance" }, } }, + ["FireResistUnique__30"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__31"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, + ["FireResistUnique__32"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1648 }, level = 83, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, + ["FireResistUnique__34"] = { affix = "", "+(10-40)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-40)% to Fire Resistance" }, } }, + ["FireResistUnique__35"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__36"] = { affix = "", "+(5-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-30)% to Fire Resistance" }, } }, + ["FireResistUnique__37"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, + ["FireResistUnique__38"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1648 }, level = 30, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(35-50)% to Fire Resistance" }, } }, + ["ColdResistImplicitRing1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUniqueAmulet3"] = { affix = "", "+25% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+25% to Cold Resistance" }, } }, + ["ColdResistDexHelmet2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUniqueStrHelmet2"] = { affix = "", "+30% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+30% to Cold Resistance" }, } }, + ["ColdResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUniqueGlovesDex1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUniqueBelt1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUniqueBelt4"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1654 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, + ["ColdResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, + ["ColdResistUniqueShieldDex1"] = { affix = "", "+50% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+50% to Cold Resistance" }, } }, + ["ColdResistUniqueHelmetDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-30)% to Cold Resistance" }, } }, + ["ColdResistUniqueBodyStrInt3"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, + ["ColdResistUniqueGlovesStrDex3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, + ["ColdResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUniqueOneHandAxe1_"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, + ["ColdResistanceBodyDex6"] = { affix = "", "+(26-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-40)% to Cold Resistance" }, } }, + ["ColdResistUniqueBootsDexInt2"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+20% to Cold Resistance" }, } }, + ["ColdResistUniqueBodyDex7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, + ["ColdResistUniqueGlovesStrDex4"] = { affix = "", "+40% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+40% to Cold Resistance" }, } }, + ["ColdResistUniqueBelt9"] = { affix = "", "+(30-35)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-35)% to Cold Resistance" }, } }, + ["ColdResistUniqueQuiver5"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUniqueRing24"] = { affix = "", "+(25-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-40)% to Cold Resistance" }, } }, + ["ColdResistUniqueBootsDex8"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+20% to Cold Resistance" }, } }, + ["ColdResistUniqueBelt13"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, + ["ColdResistUniqueRing28"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-15)% to Cold Resistance" }, } }, + ["ColdResistUniqueBodyStr5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUniqueGlovesStrInt3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-50)% to Cold Resistance" }, } }, + ["ColdResistUniqueRing32"] = { affix = "", "+(-25-50)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-25-50)% to Cold Resistance" }, } }, + ["ColdResistUniqueBelt14"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, + ["ColdResistUniqueShieldDex7"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, + ["ColdResistUniqueBootsStrDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__3"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 23, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__4"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__5"] = { affix = "", "+75% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+75% to Cold Resistance" }, } }, + ["ColdResistUnique__6"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, + ["ColdResistUnique__7"] = { affix = "", "+(32-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(32-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__8"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__9"] = { affix = "", "-40% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-40% to Cold Resistance" }, } }, + ["ColdResistUnique__10"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-50)% to Cold Resistance" }, } }, + ["ColdResistUnique__11"] = { affix = "", "+(35-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__12"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__13"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__14"] = { affix = "", "-30% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-30% to Cold Resistance" }, } }, + ["ColdResistUnique__15"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__16"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__17"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__18"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__19"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, + ["ColdResistUnique__20"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, + ["ColdResistUnique__21"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-20)% to Cold Resistance" }, } }, + ["ColdResistUnique__22_"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 80, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__23"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__24"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__25"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-35)% to Cold Resistance" }, } }, + ["ColdResistUnique__26"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__27"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__29"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__30"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__31_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__32"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__33"] = { affix = "", "+(40-60)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(40-60)% to Cold Resistance" }, } }, + ["ColdResistUnique__34"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, + ["ColdResistUnique__35"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(-30-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__36_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__37"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__38"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, } }, + ["ColdResistUnique__39"] = { affix = "", "+(10-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-40)% to Cold Resistance" }, } }, + ["ColdResistUnique__40"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__41"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__42"] = { affix = "", "+(5-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__43"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, } }, + ["ColdResistUnique__44"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-40)% to Cold Resistance" }, } }, + ["LightningResistImplicitRing1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUniqueHelmetDexInt1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUniqueDexHelmet1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUniqueStrDexHelmet1"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+30% to Lightning Resistance" }, } }, + ["LightningResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, + ["LightningResistUniqueShieldInt1"] = { affix = "", "+25% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+25% to Lightning Resistance" }, } }, + ["LightningResistUniqueShieldDex2"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+30% to Lightning Resistance" }, } }, + ["LightningResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUniqueBodyInt1"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["LightningResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, + ["LightningResistUniqueBootsStrDex2"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, + ["LightningResistUniqueAmulet15"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["LightningResistanceBodyDex6"] = { affix = "", "+(11-25)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-25)% to Lightning Resistance" }, } }, + ["LightningResistUniqueBodyStrDex2"] = { affix = "", "-60% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-60% to Lightning Resistance" }, } }, + ["LightningResistUniqueDescentTwoHandSword1"] = { affix = "", "+40% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+40% to Lightning Resistance" }, } }, + ["LightningResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-20)% to Lightning Resistance" }, } }, + ["LightningResistUniqueBelt9"] = { affix = "", "+(30-35)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-35)% to Lightning Resistance" }, } }, + ["LightningResistUniqueBelt11"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, + ["LightningResistUniqueBodyStr5"] = { affix = "", "-(20-10)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(20-10)% to Lightning Resistance" }, } }, + ["LightningResistUniqueRing32"] = { affix = "", "+(-25-50)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-25-50)% to Lightning Resistance" }, } }, + ["LightningResistUniqueRing35"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, + ["LightningResistUniqueBootsDexInt4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUniqueHelmetInt10"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, + ["LightningResistUnique__1"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__3"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__5"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__6"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-20)% to Lightning Resistance" }, } }, + ["LightningResistUnique__7"] = { affix = "", "+(35-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(35-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__8"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__9"] = { affix = "", "-30% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-30% to Lightning Resistance" }, } }, + ["LightningResistUnique__10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__11"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, + ["LightningResistUnique__12"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__13"] = { affix = "", "+(1-50)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(1-50)% to Lightning Resistance" }, } }, + ["LightningResistUnique__14"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__15"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__16"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__17_"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__18"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(25-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__19_"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__21"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__22"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__23_"] = { affix = "", "+75% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+75% to Lightning Resistance" }, } }, + ["LightningResistUnique__24"] = { affix = "", "+(40-60)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(40-60)% to Lightning Resistance" }, } }, + ["LightningResistUnique__25"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-30-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__26"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(50-75)% to Lightning Resistance" }, } }, + ["LightningResistUnique__27"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, + ["LightningResistUnique__28"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-15)% to Lightning Resistance" }, } }, + ["LightningResistUnique__29"] = { affix = "", "+(10-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(10-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__30"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-40)% to Lightning Resistance" }, } }, + ["LightningResistUnique__31"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__32"] = { affix = "", "+(5-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-30)% to Lightning Resistance" }, } }, + ["LightningResistUnique__33"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, } }, + ["ChaosResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueBodyInt8"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(40-50)% to Chaos Resistance" }, } }, + ["ChaosResistImplicitRing1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 38, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistImplicitBoots1"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1664 }, level = 85, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueAmulet15_"] = { affix = "", "+(8-10)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-10)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueRing12"] = { affix = "", "+(15-20)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-20)% to Chaos Resistance" }, } }, + ["ChaosResistHelmetStrDex2"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-25)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueRing16"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(40-50)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueDagger8"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueBootsStrInt2"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueHelmetDexInt5"] = { affix = "", "+(24-30)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-30)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueWand7"] = { affix = "", "+(5-10)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-10)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueHelmetStrInt5"] = { affix = "", "+(43-61)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(43-61)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueQuiver9"] = { affix = "", "+(12-16)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-16)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueBow12"] = { affix = "", "+(7-11)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-11)% to Chaos Resistance" }, } }, + ["ChaosResistUniqueAmulet23"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, + ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-19)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__1"] = { affix = "", "+11% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+11% to Chaos Resistance" }, } }, + ["ChaosResistUnique__2"] = { affix = "", "+(8-16)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-16)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__3"] = { affix = "", "+(31-53)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-53)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__4"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__5"] = { affix = "", "+60% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+60% to Chaos Resistance" }, } }, + ["ChaosResistUnique__6"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__7"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(15-25)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__8"] = { affix = "", "-(20-10)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(20-10)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__11"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__15"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-31)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__16"] = { affix = "", "+(29-43)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-43)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__18_"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__19"] = { affix = "", "+(29-41)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(29-41)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__20_"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-31)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__21"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__22"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__23"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(19-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__24"] = { affix = "", "+(-23-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-23-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__25"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__26"] = { affix = "", "+50% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+50% to Chaos Resistance" }, } }, + ["ChaosResistUnique__27"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__28"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__29"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__30"] = { affix = "", "+(13-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__31"] = { affix = "", "+(7-19)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-19)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__34"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__35"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-29)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__36"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__37"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__38"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1664 }, level = 30, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, + ["ChaosResistUnique__39"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(17-29)% to Chaos Resistance" }, } }, + ["LightningAndChaosResistanceUnique__1"] = { affix = "", "+(23-37)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 1, group = "LightningAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(23-37)% to Lightning and Chaos Resistances" }, } }, + ["FireAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 25, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(12-16)% to Fire and Lightning Resistances" }, } }, + ["ColdAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 25, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(12-16)% to Cold and Lightning Resistances" }, } }, + ["FireAndColdResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 25, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(12-16)% to Fire and Cold Resistances" }, } }, + ["FireAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 78, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(8-12)% to Fire and Lightning Resistances" }, } }, + ["ColdAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 78, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(8-12)% to Cold and Lightning Resistances" }, } }, + ["FireAndColdResistImplicitBoots1_"] = { affix = "", "+(8-12)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 78, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(8-12)% to Fire and Cold Resistances" }, } }, + ["FireAndColdResistUnique__1"] = { affix = "", "+(15-25)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 75, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(15-25)% to Fire and Cold Resistances" }, } }, + ["FireAndColdResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(20-30)% to Fire and Cold Resistances" }, } }, + ["FireAndColdResistUnique__3"] = { affix = "", "+(25-30)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(25-30)% to Fire and Cold Resistances" }, } }, + ["FireAndColdResistUnique__4_"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-20)% to Fire and Cold Resistances" }, } }, + ["ColdAndLightningResistUnique__1"] = { affix = "", "+(20-25)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 81, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(20-25)% to Cold and Lightning Resistances" }, } }, + ["ColdAndLightningResistUnique__2"] = { affix = "", "+(15-20)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 1, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(15-20)% to Cold and Lightning Resistances" }, } }, + ["FireAndLightningResistUnique__1"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(20-30)% to Fire and Lightning Resistances" }, } }, + ["FireAndLightningResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(20-30)% to Fire and Lightning Resistances" }, } }, + ["AllResistancesImplicitShield1"] = { affix = "", "+4% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+4% to all Elemental Resistances" }, } }, + ["AllResistancesImplicitShield2"] = { affix = "", "+8% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+8% to all Elemental Resistances" }, } }, + ["AllResistancesImplicitShield3"] = { affix = "", "+12% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+12% to all Elemental Resistances" }, } }, + ["AllResistancesImplicitArmour1"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-12)% to all Elemental Resistances" }, } }, + ["AllResistancesImplicitRing1"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, + ["AllResistancesImplicitVictorAmulet"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1642 }, level = 16, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-12)% to all Elemental Resistances" }, } }, + ["AllResistancesImplicitAmulet1"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 10, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRing3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueAmulet2"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1642 }, level = 10, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRing4"] = { affix = "", "+(5-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueIntHelmet3"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueHelmetStrInt1"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBootsStr1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueGlovesStrDex2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueShieldStrInt1"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBodyStrInt2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueAmulet9"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueShieldStrInt2"] = { affix = "", "+25% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+25% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueHelmetDex3"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(30-40)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueShieldStrInt4"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueShieldDex3"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBodyDexInt1"] = { affix = "", "+(9-12)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-12)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRing6"] = { affix = "", "+(10-30)% to all Elemental Resistances", statOrder = { 1642 }, level = 30, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-30)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBootsInt5"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRapier2"] = { affix = "", "+(40-60)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(40-60)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRing7"] = { affix = "", "+(25-40)% to all Elemental Resistances", statOrder = { 1642 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-40)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRing9"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1642 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueAmulet14"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueTwoHandMace6_"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, + ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, + ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-16)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBodyStrDex1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRing21"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1642 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBelt8"] = { affix = "", "-(25-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(25-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBodyStrDexInt1"] = { affix = "", "+(20-24)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-24)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueHelmetDexInt4"] = { affix = "", "+(26-30)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(26-30)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBeltDemigods1"] = { affix = "", "+(16-24)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-24)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueDagger9"] = { affix = "", "+(6-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-10)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRing25"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1642 }, level = 7, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-20% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBelt10"] = { affix = "", "+(6-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 32, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueShieldDexInt2"] = { affix = "", "-50% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-50% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueBelt13"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistajcesUniqueStaff10"] = { affix = "", "+(5-7)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-7)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueAmulet23"] = { affix = "", "-(10-5)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(10-5)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueJewel8"] = { affix = "", "+6% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+6% to all Elemental Resistances" }, } }, + ["AllResistancesDescentUniqueQuiver1"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueRing98"] = { affix = "", "+(27-34)% to all Elemental Resistances", statOrder = { 1642 }, level = 36, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(27-34)% to all Elemental Resistances" }, } }, + ["AllResistancesUniqueAmulet87"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__1"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+15% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__2"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__3"] = { affix = "", "+(14-18)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(14-18)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__4"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__5"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__6"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(20-10)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__8"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__9"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__10"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__11__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__12"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__13"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1642 }, level = 75, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__15"] = { affix = "", "+(12-18)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(12-18)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__16"] = { affix = "", "+(10-16)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-16)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__17"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__18"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 10876 }, level = 1, group = "UniqueJewelDonutAllocationAllReistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4285168237] = { "-(20-10)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__19"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__20"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__21"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__23__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__24_"] = { affix = "", "-(80-70)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(80-70)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__26"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__27"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-25)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__28"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__29"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__30"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__31"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__32"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__33"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__34"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-15)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__35"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-35)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__36"] = { affix = "", "-(50-40)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(50-40)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__37"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-20)% to all Elemental Resistances" }, } }, + ["AllResistancesUnique__38"] = { affix = "", "+(-15-15)% to all Elemental Resistances", statOrder = { 1642 }, level = 80, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(-15-15)% to all Elemental Resistances" }, } }, + ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, + ["CriticalMultiplierImplicitSword1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+25% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierImplicitSword2"] = { affix = "", "+35% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+35% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierImplicitSword3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+50% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierImplicitSword2H1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+25% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierImplicitSwordM2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierImplicitBow1"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueGlovesDex2"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueGlovesDexInt2"] = { affix = "", "+30% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+30% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueGlovesDexInt4"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueHelmetStr3"] = { affix = "", "+60% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+60% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueRing8"] = { affix = "", "-50% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "-50% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueAmulet17"] = { affix = "", "+(210-240)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 50, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(210-240)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueDescentDagger1"] = { affix = "", "+45% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+45% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueDagger8"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueRing17"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueGlovesDexInt6_"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUniqueAmulet18"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2705 }, level = 29, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, + ["CriticalMultiplierUnique__1"] = { affix = "", "+(27-33)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(27-33)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUnique__2"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUnique__3__"] = { affix = "", "+(25-50)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-50)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUnique__4____"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUnique__5"] = { affix = "", "+(18-35)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-35)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUnique__6"] = { affix = "", "+(100-150)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(100-150)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUnique__7"] = { affix = "", "+(15-20)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-20)% to Global Critical Strike Multiplier" }, } }, + ["CriticalMultiplierUnique__8"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, + ["StunRecoveryImplicitBelt1"] = { affix = "", "(15-25)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 20, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(15-25)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueBootsStrDex1"] = { affix = "", "20% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "20% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueHelmetInt6"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueBootsStrDex3"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueHelmetStrInt4"] = { affix = "", "(20-22)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(20-22)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueGlovesStrInt1"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(40-60)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueQuiver4"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueAmulet18"] = { affix = "", "40% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "40% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueClaw8"] = { affix = "", "25% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "25% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUniqueOneHandSword13"] = { affix = "", "(30-40)% reduced Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% reduced Stun and Block Recovery" }, } }, + ["StunRecoveryUnique__1_"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "50% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUnique__2"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUnique__3"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUnique__4"] = { affix = "", "(500-1000)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(500-1000)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUnique__5"] = { affix = "", "100% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "100% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUnique__6"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(40-60)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUnique__7"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(30-40)% increased Stun and Block Recovery" }, } }, + ["StunRecoveryUnique__8"] = { affix = "", "(100-200)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(100-200)% increased Stun and Block Recovery" }, } }, + ["StunDurationImplicitBelt1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, + ["StunDurationImplicitMace1"] = { affix = "", "30% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "30% increased Stun Duration on Enemies" }, } }, + ["StunDurationImplicitMace2"] = { affix = "", "45% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "45% increased Stun Duration on Enemies" }, } }, + ["StunDurationImplicitQuiver9"] = { affix = "", "(25-35)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(25-35)% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueTwoHandMace1"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(40-50)% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueTwoHandMace2"] = { affix = "", "(10-20)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(10-20)% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueQuiver2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueTwoHandMace3"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(40-50)% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueGlovesInt4_"] = { affix = "", "50% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "50% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueGlovesDexInt3"] = { affix = "", "10% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "10% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueTwoHandSword5"] = { affix = "", "400% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "400% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueQuiver8"] = { affix = "", "(140-200)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(140-200)% increased Stun Duration on Enemies" }, } }, + ["StunDurationUniqueOneHandMace6"] = { affix = "", "(30-50)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(30-50)% increased Stun Duration on Enemies" }, } }, + ["StunDurationUnique__1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, + ["StunDurationUnique__2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, } }, + ["SpellCriticalStrikeChanceUniqueDagger1"] = { affix = "", "(80-100)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-100)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUniqueGlovesInt5"] = { affix = "", "(75-100)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(75-100)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUniqueGlovesInt6"] = { affix = "", "(125-150)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(125-150)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUniqueHelmetInt6"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-25)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUniqueShieldInt3"] = { affix = "", "(25-35)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(25-35)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUniqueBootsStrDex5"] = { affix = "", "(50-70)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(50-70)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUnique__1"] = { affix = "", "(100-140)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(100-140)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUnique__2"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUnique__3"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUnique__4"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-80)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUnique__5"] = { affix = "", "(80-120)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-120)% increased Spell Critical Strike Chance" }, } }, + ["SpellCriticalStrikeChanceUnique__6"] = { affix = "", "(100-300)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(100-300)% increased Spell Critical Strike Chance" }, } }, + ["ProjectileSpeedImplicitQuiver4New"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1819 }, level = 25, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, + ["ProjectileSpeedUniqueAmulet5"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, + ["ProjectileSpeedUniqueBow4_"] = { affix = "", "(50-100)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(50-100)% increased Projectile Speed" }, } }, + ["ProjectileSpeedUniqueQuiver2"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, + ["ProjectileSpeedUniqueQuiver4"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, + ["ProjectileSpeedUniqueQuiver8"] = { affix = "", "25% reduced Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "25% reduced Projectile Speed" }, } }, + ["ProjectileSpeedUnique___1"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, + ["ProjectileSpeedUnique__2"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, + ["ProjectileSpeedUnique__3"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, + ["ProjectileSpeedUnique__4"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "20% reduced Projectile Speed" }, } }, + ["ProjectileSpeedUnique__5__"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, + ["ProjectileSpeedUnique__6"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, + ["ProjectileSpeedUnique__7"] = { affix = "", "(30-40)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(30-40)% increased Projectile Speed" }, } }, + ["ProjectileSpeedUnique__8"] = { affix = "", "(30-50)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(30-50)% increased Projectile Speed" }, } }, + ["LifeGainPerTargetUniqueRing2"] = { affix = "", "Gain (2-4) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-4) Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetUniqueOneHandSword1"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetUniqueDagger2"] = { affix = "", "Grants 10 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 10 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicitClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicitClaw2"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicitClaw3"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicitClaw4"] = { affix = "", "Grants 22 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 22 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw2"] = { affix = "", "Grants 6 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 6 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw3"] = { affix = "", "Grants 7 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 7 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw3_1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw4"] = { affix = "", "Grants 12 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 12 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw4_1"] = { affix = "", "Grants 19 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 19 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw5"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw5_1"] = { affix = "", "Grants 20 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 20 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw6"] = { affix = "", "Grants 25 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 25 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw7"] = { affix = "", "Grants 24 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 24 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw8"] = { affix = "", "Grants 44 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 44 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw9_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 40 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw10"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 46 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw11_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 40 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw12"] = { affix = "", "Grants 50 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 50 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicit2Claw13"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 46 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetImplicitQuiver3New"] = { affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 18, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (6-8) Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetImplicitQuiver8"] = { affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 13, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (3-4) Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetUniqueSceptre2"] = { affix = "", "Grants (6-10) Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (6-10) Life per Enemy Hit" }, } }, + ["LifeGainPerTargetUniqueRapier2"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetUniqueRing7"] = { affix = "", "Gain (40-60) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (40-60) Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetUniqueQuiver6_"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetUniqueOneHandSword7"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetUniqueDescentClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetUnique__1"] = { affix = "", "Gain 7 Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 7 Life per Enemy Hit with Attacks" }, } }, + ["LoseLifePerTargetUnique__1"] = { affix = "", "Lose (20-25) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Lose (20-25) Life per Enemy Hit with Attacks" }, } }, + ["LoseLifePerTargetUnique__2"] = { affix = "", "Lose (10-20) Life per Enemy Killed", statOrder = { 1771 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Lose (10-20) Life per Enemy Killed" }, } }, + ["FireDamagePercentUniqueStaff1_"] = { affix = "", "(70-90)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-90)% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueStrHelmet2"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-40)% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueBodyInt4"] = { affix = "", "(25-35)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-35)% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueHelmetInt5"] = { affix = "", "50% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "50% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueRing18"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-30)% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueBelt9a"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueRing24"] = { affix = "", "(15-25)% increased Fire Damage", statOrder = { 1381 }, level = 14, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-25)% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueSceptre9"] = { affix = "", "30% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "30% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueWand10"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueRing36"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["FireDamagePercentUniqueRing38"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-40)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__1"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique___2"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__3"] = { affix = "", "(18-25)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-25)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__4"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-30)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique___5"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__6"] = { affix = "", "(50-70)% increased Fire Damage", statOrder = { 1381 }, level = 45, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-70)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique___7"] = { affix = "", "25% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "25% increased Fire Damage" }, } }, + ["FireDamagePercentUnique____8"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__9"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__10"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__11"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-15)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__12___"] = { affix = "", "100% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, + ["ColdDamagePercentUniqueStaff2"] = { affix = "", "(80-140)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(80-140)% increased Cold Damage" }, } }, + ["ColdDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, + ["ColdDamagePercentUniqueRing19"] = { affix = "", "(25-30)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-30)% increased Cold Damage" }, } }, + ["ColdDamagePercentUniqueBelt9b"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__1"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__2"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__3"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-50)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__4"] = { affix = "", "(18-25)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-25)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__5"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-50)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__6"] = { affix = "", "(20-25)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-25)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__8"] = { affix = "", "30% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "30% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__9"] = { affix = "", "(20-40)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique___10"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique___11"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__12"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__13"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__14"] = { affix = "", "(5-15)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, + ["ColdDamagePercentUnique__15"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-15)% increased Cold Damage" }, } }, + ["LightningDamageUniqueWand1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, + ["LightningDamageUniqueHelmetDexInt1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUniqueRing20"] = { affix = "", "(25-30)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-30)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUniqueBelt9c"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUniqueStaff8"] = { affix = "", "(30-50)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-50)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUniqueRing29"] = { affix = "", "20% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "20% increased Lightning Damage" }, } }, + ["LightningDamagePercentUniqueRing34"] = { affix = "", "(15-25)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-25)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUnique__2"] = { affix = "", "(15-20)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-20)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUnique__3"] = { affix = "", "35% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "35% increased Lightning Damage" }, } }, + ["LightningDamagePercentUnique__4"] = { affix = "", "100% increased Lightning Damage", statOrder = { 1401 }, level = 40, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "100% increased Lightning Damage" }, } }, + ["LightningDamagePercentUnique__5"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUnique__6"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-15)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1401 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, + ["LightningDamagePercentUnique__8"] = { affix = "", "(30-40)% increased Lightning Damage", statOrder = { 1401 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-40)% increased Lightning Damage" }, } }, + ["LifeGainedFromEnemyDeathUniqueTwoHandAxe1"] = { affix = "", "Gain 20 Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 20 Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (100-200) Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (100-200) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUniqueBootsStrInt1"] = { affix = "", "Gain (10-20) Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-20) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUniqueTwoHandAxe2"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUniqueTwoHandMace7"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 10 Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (15-20) Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (15-20) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUniqueOneHandAxe3"] = { affix = "", "Gain (5-7) Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (5-7) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1771 }, level = 94, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 100 Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUniqueDagger11"] = { affix = "", "Gain 5 Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 5 Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (15-25) Life per Enemy Hit with Attacks" }, } }, + ["LifeGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-30) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (15-25) Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (15-25) Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUnique__4"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 100 Life per Enemy Killed" }, } }, + ["LifeGainedFromEnemyDeathUnique__5"] = { affix = "", "Gain 150 Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain 150 Life per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUniqueBow2"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (50-100) Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (50-100) Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUniqueRing4"] = { affix = "", "Gain (5-20) Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (5-20) Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUniqueTwoHandSword3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUniqueTwoHandAxe5"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUniqueShieldInt3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 10 Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 100 Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain 30 Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 30 Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-40) Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-40) Mana per Enemy Killed" }, } }, + ["ManaGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (1-100) Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (1-100) Mana per Enemy Killed" }, } }, + ["LocalCriticalStrikeChanceUniqueOneHandMace1"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "25% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueOneHandSword4"] = { affix = "", "(90-110)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(90-110)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueDescentDagger1"] = { affix = "", "100% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "100% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueDagger8"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(40-50)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueWand6_"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueSceptre9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueOneHandAxe8_"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-50)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueStaff14"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-35)% increased Critical Strike Chance" }, } }, + ["LocalCriticalStrikeChanceUniqueTwoHandMace6"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-40)% increased Critical Strike Chance" }, } }, + ["LocalCriticalMultiplierUniqueBow3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+50% to Global Critical Strike Multiplier" }, } }, + ["LocalCriticalMultiplierUniqueClaw2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, + ["LocalCriticalMultiplierUniqueDagger4"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-40)% to Global Critical Strike Multiplier" }, } }, + ["LocalCriticalMultiplierUniqueOneHandSword4"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-30)% to Global Critical Strike Multiplier" }, } }, + ["FlaskIncreasedRecoverySpeedUniqueFlask3"] = { affix = "", "(35-50)% reduced Recovery rate", statOrder = { 876 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(35-50)% reduced Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeedUnique___1"] = { affix = "", "(80-120)% increased Recovery rate", statOrder = { 876 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(80-120)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmountUniqueFlask4"] = { affix = "", "(30-50)% increased Amount Recovered", "100% increased Recovery rate", statOrder = { 875, 876 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(30-50)% increased Amount Recovered" }, [173226756] = { "100% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmountUnique__1"] = { affix = "", "(30-50)% increased Amount Recovered", "50% reduced Recovery rate", statOrder = { 875, 876 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(30-50)% increased Amount Recovered" }, [173226756] = { "50% reduced Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmountUnique__2"] = { affix = "", "(150-200)% increased Amount Recovered", statOrder = { 875 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(150-200)% increased Amount Recovered" }, [173226756] = { "" }, } }, + ["FlaskIncreasedDuration1"] = { affix = "Saturated", "33% reduced Recovery rate", statOrder = { 876 }, level = 1, group = "FlaskIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 3000, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "33% reduced Recovery rate" }, } }, + ["FlaskFullInstantRecoveryUnique__1"] = { affix = "", "(65-75)% reduced Amount Recovered", "Instant Recovery", statOrder = { 875, 889 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "(65-75)% reduced Amount Recovered" }, } }, + ["FlaskExtraLifeUnique__1"] = { affix = "", "50% increased Life Recovered", statOrder = { 870 }, level = 1, group = "FlaskExtraLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1261982764] = { "50% increased Life Recovered" }, } }, + ["FlaskFreezeImmunityUnique__1"] = { affix = "", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 926, 926.1 }, level = 1, group = "FlaskDispellsChill", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3570046771] = { "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen" }, } }, + ["FlaskDispellsBurningUnique__1"] = { affix = "", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 928, 928.1 }, level = 1, group = "FlaskDispellsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [2695527599] = { "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskExtraChargesUnique__1"] = { affix = "", "+45 to Maximum Charges", statOrder = { 858 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+45 to Maximum Charges" }, } }, + ["FlaskChargesAddedIncreasePercentUnique_1"] = { affix = "", "(40-60)% increased Charge Recovery", statOrder = { 866 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(40-60)% increased Charge Recovery" }, } }, + ["FlaskChargesAddedIncreasePercentUnique__2"] = { affix = "", "(20-30)% increased Charge Recovery", statOrder = { 866 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(20-30)% increased Charge Recovery" }, } }, + ["FlaskChargesAddedIncreasePercentUnique__3"] = { affix = "", "(20-40)% increased Charge Recovery", statOrder = { 866 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(20-40)% increased Charge Recovery" }, } }, + ["FlaskBuffManaLeechWhileHealing"] = { affix = "of Craving", "2% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 977 }, level = 12, group = "FlaskBuffManaLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, tradeHashes = { [464954991] = { "2% of Physical Attack Damage Leeched as Mana during Effect" }, } }, + ["FlaskChanceRechargeOnCritUnique__1"] = { affix = "", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 863 }, level = 50, group = "FlaskChanceRechargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "50% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskChanceRechargeOnCritUnique__2"] = { affix = "", "(20-40)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 863 }, level = 1, group = "FlaskChanceRechargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(20-40)% chance to gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect1"] = { affix = "[UNUSED]", "(35-45)% increased Duration", "25% reduced effect", statOrder = { 880, 959 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(35-45)% increased Duration" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect2"] = { affix = "[UNUSED]", "(46-55)% increased Duration", "25% reduced effect", statOrder = { 880, 959 }, level = 36, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(46-55)% increased Duration" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect3_"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 880, 959 }, level = 52, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect4__"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 880, 959 }, level = 68, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, + ["FlaskEffectIncreasedDurationReducedEffect5"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 880, 959 }, level = 84, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% reduced effect" }, [156096868] = { "(56-66)% increased Duration" }, } }, + ["FlaskEffectDurationUnique__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 880 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(25-50)% increased Duration" }, } }, + ["FlaskEffectDurationUnique__2"] = { affix = "", "(60-80)% reduced Duration", statOrder = { 880 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(60-80)% reduced Duration" }, } }, + ["FlaskEffectDurationUnique__3"] = { affix = "", "(30-50)% increased Duration", statOrder = { 880 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(30-50)% increased Duration" }, } }, + ["FlaskEffectDurationUnique__4"] = { affix = "", "25% increased Duration", statOrder = { 880 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "25% increased Duration" }, } }, + ["FlaskEffectDurationUnique__6"] = { affix = "", "(70-80)% reduced Duration", statOrder = { 880 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(70-80)% reduced Duration" }, } }, + ["FlaskEffectDurationUnique__7"] = { affix = "", "(50-80)% increased Duration", statOrder = { 880 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "(50-80)% increased Duration" }, } }, + ["FlaskEffectDurationUnique__8"] = { affix = "", "50% reduced Duration", statOrder = { 880 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [553298121] = { "" }, [156096868] = { "50% reduced Duration" }, } }, + ["FlaskChargesUsedUnique___1"] = { affix = "", "500% increased Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "500% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique___2"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(125-150)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__3"] = { affix = "", "50% increased Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "50% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__4"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(-10-10)% reduced Charges per use" }, } }, + ["FlaskChargesUsedUnique__5"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(125-150)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__6_"] = { affix = "", "(80-100)% increased Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(80-100)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__7"] = { affix = "", "100% increased Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "100% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__8"] = { affix = "", "(175-200)% increased Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(175-200)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__9_"] = { affix = "", "(40-50)% increased Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(40-50)% increased Charges per use" }, } }, + ["FlaskChargesUsedUnique__10"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(-10-10)% reduced Charges per use" }, } }, + ["FlaskChargesUsedUnique__11"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 867 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(10-20)% reduced Charges per use" }, } }, + ["FlaskExtraChargesUnique__2_"] = { affix = "", "+(-40-90) to Maximum Charges", statOrder = { 858 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(-40-90) to Maximum Charges" }, } }, + ["FlaskExtraChargesUnique__3"] = { affix = "", "+(10-20) to Maximum Charges", statOrder = { 858 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(10-20) to Maximum Charges" }, } }, + ["FlaskIncreasedDurationUnique__2"] = { affix = "", "90% reduced Duration", statOrder = { 880 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "90% reduced Duration" }, } }, + ["FlaskIncreasedDurationUnique__3"] = { affix = "", "(-35-35)% reduced Duration", statOrder = { 880 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(-35-35)% reduced Duration" }, } }, + ["FlaskBuffReducedManaCostWhileHealingUnique__1"] = { affix = "", "10% increased Mana Cost of Skills during Effect", statOrder = { 1023 }, level = 1, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "10% increased Mana Cost of Skills during Effect" }, } }, + ["FlaskBuffWardWhileHealingUnique__1"] = { affix = "", "50% reduced Ward during Effect", statOrder = { 963 }, level = 1, group = "FlaskBuffWardWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "50% reduced Ward during Effect" }, } }, + ["FlaskWardUnbreakableDuringEffectUnique__1"] = { affix = "", "Ward does not Break during Effect", statOrder = { 964 }, level = 1, group = "FlaskWardUnbreakableDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences" }, tradeHashes = { [80764074] = { "Ward does not Break during Effect" }, } }, + ["GlobalSpellGemsLevelUnique__1"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, + ["GlobalColdSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedLightningGemLevelUniqueStaff8"] = { affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedLightningGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+(1-3) to Level of Socketed Lightning Gems" }, } }, + ["LocalIncreaseSocketedChaosGemLevelUnique__1"] = { affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skill Gems" }, } }, + ["GlobalPhysicalSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skill Gems" }, } }, + ["GlobalVaalGemsLevelImplicit1_"] = { affix = "", "+1 to Level of all Vaal Skill Gems", statOrder = { 10674 }, level = 1, group = "GlobalVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4180346416] = { "+1 to Level of all Vaal Skill Gems" }, } }, + ["GlobalVaalGemsLevelUnique__1"] = { affix = "", "+(1-2) to Level of all Vaal Skill Gems", statOrder = { 10674 }, level = 1, group = "GlobalVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4180346416] = { "+(1-2) to Level of all Vaal Skill Gems" }, } }, + ["LocalIncreaseSocketedProjectileGemLevel1"] = { affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 183 }, level = 1, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+1 to Level of Socketed Projectile Gems" }, } }, + ["LocalIncreaseSocketedSpellGemLevel1"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, + ["LocalIncreaseSocketedSpellGemLevelUniqueWand4"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__1"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__2"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__3"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__4"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 100, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__5"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skill Gems" }, } }, + ["GlobalIncreaseMeleeSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Melee Skill Gems", statOrder = { 9333 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+(1-3) to Level of all Melee Skill Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevelUnique__2_"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevelUnique__3"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevelUnique__4"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevelUnique__5____"] = { affix = "", "+3 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+3 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedSpellGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Spell Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+2 to Level of Socketed Spell Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevelUniqueStaff1"] = { affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevelUniqueDagger10"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevelUniqueStaff13"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevelUnique__2"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["LocalIncreaseSocketedBowGemLevelUniqueBow2"] = { affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 184 }, level = 1, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } }, + ["LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, + ["LocalIncreaseSocketedColdGemLevelUniqueStaff13"] = { affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["LocalIncreaseSocketedColdGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__4"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedMeleeGemLevelUniqueRapier1"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, + ["LocalIncreaseSocketedColdGemLevelUniqueStaff2"] = { affix = "", "+(2-4) to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-4) to Level of all Cold Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUniqueSceptre1"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedFireGemLevelUniqueBodyInt4"] = { affix = "", "+3 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+3 to Level of Socketed Fire Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, + ["LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, + ["LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, + ["LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4"] = { affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+1 to Level of Socketed Aura Gems" }, } }, + ["LocalIncreaseSocketedAuraGemLevelUnique___1"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, + ["LocalIncreaseSocketedAuraGemLevelUnique___2___"] = { affix = "", "+5 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+5 to Level of Socketed Aura Gems" }, } }, + ["LocalIncreaseSocketedAuraGemLevelUnique___3"] = { affix = "", "+(3-5) to Level of Socketed Aura Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+(3-5) to Level of Socketed Aura Gems" }, } }, + ["LocalIncreaseSocketedColdGemLevelUniqueClaw5"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUniqueRing23"] = { affix = "", "+5 to Level of Socketed Gems", statOrder = { 165 }, level = 57, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+5 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUniqueRing39"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUniqueWand8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique___3"] = { affix = "", "+1 to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__6"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__7"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__9"] = { affix = "", "+(5-8) to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+(5-8) to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__10"] = { affix = "", "+(1-2) to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+(1-2) to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedGemLevelUnique__11_"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["LocalIncreaseSocketedDexterityGemLevelUniqueClaw8"] = { affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 163 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, + ["LocalIncreaseSocketedGolemLevelUniqueRing35"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 211 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, + ["LocalIncreaseSocketedGolemLevelUniqueRing36"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 211 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, + ["LocalIncreaseSocketedGolemLevelUniqueRing37"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 211 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3448743676] = { "+3 to Level of Socketed Golem Gems" }, } }, + ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5"] = { affix = "", "+3 to Level of Socketed Warcry Gems", statOrder = { 200 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+3 to Level of Socketed Warcry Gems" }, } }, + ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 200 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, + ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 200 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, + ["LocalIncreasedAccuracyUnique__1"] = { affix = "", "+(330-350) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(330-350) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyUnique__2"] = { affix = "", "(15-25)% increased Attack Speed", "+(400-500) to Accuracy Rating", statOrder = { 1437, 2047 }, level = 1, group = "LocalAccuracyRatingAndAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-25)% increased Attack Speed" }, [691932474] = { "+(400-500) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyUnique__3"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(400-500) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyUnique__4"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(400-500) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(300-400) to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit1"] = { affix = "", "+45 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+45 to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit2"] = { affix = "", "+165 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+165 to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit3"] = { affix = "", "+190 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+190 to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit4"] = { affix = "", "+240 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+240 to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit5"] = { affix = "", "+330 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+330 to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit6"] = { affix = "", "+350 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+350 to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+400 to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit8"] = { affix = "", "+460 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+460 to Accuracy Rating" }, } }, + ["IncreasedAccuracySwordImplicit9"] = { affix = "", "+475 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+475 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit1"] = { affix = "", "+60 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+60 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit2"] = { affix = "", "+120 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+120 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit3"] = { affix = "", "+185 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+185 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit4"] = { affix = "", "+250 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+250 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit5"] = { affix = "", "+305 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+305 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit6"] = { affix = "", "+360 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+360 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+400 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit8"] = { affix = "", "+435 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+435 to Accuracy Rating" }, } }, + ["IncreasedAccuracy2hSwordImplicit9"] = { affix = "", "+470 to Accuracy Rating", statOrder = { 2047 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+470 to Accuracy Rating" }, } }, + ["CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1861 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, + ["CannotBeFrozenUnique__1"] = { affix = "", "Cannot be Frozen", statOrder = { 1861 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, + ["BlockingBlocksSpellsUniqueAmulet1"] = { affix = "", "15% Chance to Block Spell Damage", statOrder = { 1179 }, level = 7, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "15% Chance to Block Spell Damage" }, } }, + ["BlockingBlocksSpellsUnique__1"] = { affix = "", "6% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "6% Chance to Block Spell Damage" }, } }, + ["BlockingBlocksSpellsUnique__2"] = { affix = "", "(7-9)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(7-9)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUniqueAmulet1"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 7, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-15)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUnique__1"] = { affix = "", "+(2-6)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 1, group = "AdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(2-6)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUnique__2"] = { affix = "", "(4-6)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-6)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUnique__3_"] = { affix = "", "(16-22)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(16-22)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUnique__4"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-15)% Chance to Block Spell Damage" }, } }, + ["CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2062 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["CullingStrikeUniqueDescentTwoHandSword1"] = { affix = "", "Culling Strike", statOrder = { 2062 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["CullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 2062 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["BlockRecoveryImplicitShield1"] = { affix = "", "60% increased Block Recovery", statOrder = { 1190 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "60% increased Block Recovery" }, } }, + ["BlockRecoveryImplicitShield2"] = { affix = "", "120% increased Block Recovery", statOrder = { 1190 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "120% increased Block Recovery" }, } }, + ["BlockRecoveryImplicitShield3"] = { affix = "", "180% increased Block Recovery", statOrder = { 1190 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [369183568] = { "180% increased Block Recovery" }, } }, + ["AlwaysHits"] = { affix = "", "Hits can't be Evaded", statOrder = { 2066 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, + ["AlwaysHitsUniqueTwoHandMace6"] = { affix = "", "Hits can't be Evaded", statOrder = { 2066 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, + ["AlwaysHitsUnique__1"] = { affix = "", "Hits can't be Evaded", statOrder = { 2066 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, + ["AlwaysHitsUnique__2"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2067 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1165023334] = { "Your hits can't be Evaded" }, } }, + ["AlwaysHitsUniqueGlovesDexInt4"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2067 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1165023334] = { "Your hits can't be Evaded" }, } }, + ["HitsCauseMonsterFleeUniqueRing1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2065 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, + ["HitsCauseMonsterFleeUniqueBootsStrInt1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2065 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, + ["HitsCauseMonsterFleeUnique__1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2065 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3181974858] = { "10% chance to Cause Monsters to Flee" }, } }, + ["MaximumEnduranceChargeUniqueRing2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["MaximumEnduranceChargeUniqueBodyStr3"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["MaximumEnduranceChargeUniqueBodyStrDex3"] = { affix = "", "+2 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+2 to Maximum Endurance Charges" }, } }, + ["MaximumEnduranceChargeUnique__1_"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["MaximumEnduranceChargeUnique__2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["ReducedMaximumEnduranceChargeUniqueCorruptedJewel17"] = { affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-1 to Maximum Endurance Charges" }, } }, + ["ReducedMaximumEnduranceChargeUnique__1"] = { affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-1 to Maximum Endurance Charges" }, } }, + ["ReducedMaximumEnduranceChargeUnique__2"] = { affix = "", "-2 to Maximum Endurance Charges", statOrder = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-2 to Maximum Endurance Charges" }, } }, + ["AddPowerChargeOnCrit1__"] = { affix = "", "Gain a Power Charge for each Enemy you hit with a Critical Strike", statOrder = { 2573 }, level = 1, group = "AddPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1556625719] = { "Gain a Power Charge for each Enemy you hit with a Critical Strike" }, } }, + ["ActorSizeUniqueAmulet2"] = { affix = "", "20% increased Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "20% increased Character Size" }, } }, + ["ActorSizeUniqueHelmetDex6"] = { affix = "", "10% reduced Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% reduced Character Size" }, } }, + ["ActorSizeUniqueAmulet12"] = { affix = "", "10% reduced Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% reduced Character Size" }, } }, + ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, + ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, + ["ActorSizeUnique__1"] = { affix = "", "3% increased Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "3% increased Character Size" }, } }, + ["ActorSizeUnique__2"] = { affix = "", "15% increased Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "15% increased Character Size" }, } }, + ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "10% increased Character Size" }, } }, + ["ActorSizeUnique__4"] = { affix = "", "5% increased Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1408638732] = { "5% increased Character Size" }, } }, + ["MaximumManaUniqueBodyStrInt1"] = { affix = "", "50% reduced maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "50% reduced maximum Mana" }, } }, + ["MaximumManaUniqueRing5"] = { affix = "", "20% increased maximum Mana", statOrder = { 1603 }, level = 14, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "20% increased maximum Mana" }, } }, + ["MaximumManaUniqueTwoHandMace5"] = { affix = "", "25% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "25% increased maximum Mana" }, } }, + ["MaximumManaUniqueAmulet10"] = { affix = "", "(16-24)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(16-24)% increased maximum Mana" }, } }, + ["MaximumManaUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, + ["MaximumManaUniqueStaff5"] = { affix = "", "18% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "18% increased maximum Mana" }, } }, + ["MaximumManaUniqueStaff6"] = { affix = "", "(50-100)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(50-100)% increased maximum Mana" }, } }, + ["MaximumManaUniqueJewel54"] = { affix = "", "(15-20)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(15-20)% increased maximum Mana" }, } }, + ["MaximumManaUnique__1"] = { affix = "", "(7-10)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-10)% increased maximum Mana" }, } }, + ["MaximumManaUnique___2"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, + ["MaximumManaUnique__3"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, + ["MaximumManaUnique__4"] = { affix = "", "(4-6)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, + ["MaximumManaUnique__5"] = { affix = "", "(9-15)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(9-15)% increased maximum Mana" }, } }, + ["MaximumManaUnique__6"] = { affix = "", "(6-10)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(6-10)% increased maximum Mana" }, } }, + ["MaximumManaUnique__7"] = { affix = "", "(15-20)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(15-20)% increased maximum Mana" }, } }, + ["MaximumManaUnique__8"] = { affix = "", "(16-20)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(16-20)% increased maximum Mana" }, } }, + ["MaximumManaUnique__10"] = { affix = "", "20% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "20% increased maximum Mana" }, } }, + ["MaximumManaImplicitAtlasRing_"] = { affix = "", "(8-10)% increased maximum Mana", statOrder = { 1603 }, level = 100, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, + ["MaximumLifeUniqueOneHandSword2"] = { affix = "", "25% reduced maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "25% reduced maximum Life" }, } }, + ["MaximumLifeUniqueAmulet6"] = { affix = "", "20% reduced maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "20% reduced maximum Life" }, } }, + ["MaximumLifeUniqueBelt4"] = { affix = "", "10% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, + ["MaximumLifeShieldInt1"] = { affix = "", "10% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, + ["MaximumLifeUniqueBodyInt3"] = { affix = "", "10% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, + ["MaximumLifeUniqueRing16"] = { affix = "", "25% reduced maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "25% reduced maximum Life" }, } }, + ["MaximumLifeUniqueBodyStrDex1"] = { affix = "", "(30-40)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(30-40)% increased maximum Life" }, } }, + ["MaximumLifeUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, + ["MaximumLifeUniqueShieldDexInt2"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, + ["MaximumLifeUniqueGlovesStrInt3"] = { affix = "", "(12-16)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(12-16)% increased maximum Life" }, } }, + ["MaximumLifeUniqueJewel52"] = { affix = "", "(6-8)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } }, + ["MaximumLifeUnique__1"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-12)% increased maximum Life" }, } }, + ["MaximumLifeUnique__2"] = { affix = "", "4% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "4% increased maximum Life" }, } }, + ["MaximumLifeUnique__3"] = { affix = "", "10% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, + ["MaximumLifeUnique__4_"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-8)% increased maximum Life" }, } }, + ["MaximumLifeUnique__5"] = { affix = "", "(15-25)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(15-25)% increased maximum Life" }, } }, + ["MaximumLifeUnique__6"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1593 }, level = 25, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-8)% increased maximum Life" }, } }, + ["MaximumLifeUnique__7"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, + ["MaximumLifeUnique__9"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, + ["MaximumLifeUnique__10_"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, + ["MaximumLifeUnique__11"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, + ["MaximumLifeUnique__12"] = { affix = "", "(4-7)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-7)% increased maximum Life" }, } }, + ["MaximumLifeUnique__13"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } }, + ["MaximumLifeUnique__14"] = { affix = "", "5% increased maximum Life", statOrder = { 1593 }, level = 62, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "5% increased maximum Life" }, } }, + ["MaximumLifeUnique__15"] = { affix = "", "(6-8)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } }, + ["MaximumLifeUnique__16"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, + ["MaximumLifeUnique__17"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-10)% increased maximum Life" }, } }, + ["MaximumLifeUnique__18"] = { affix = "", "(7-10)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } }, + ["MaximumLifeUnique__19"] = { affix = "", "(7-12)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-12)% increased maximum Life" }, } }, + ["MaximumLifeUnique__20___"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-15)% increased maximum Life" }, } }, + ["MaximumLifeUnique__21"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, + ["MaximumLifeUnique__22"] = { affix = "", "(12-15)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(12-15)% increased maximum Life" }, } }, + ["MaximumLifeUnique__23"] = { affix = "", "24% reduced maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "24% reduced maximum Life" }, } }, + ["MaximumLifeUnique__24"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1591 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } }, + ["MaximumLifeUnique__25"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } }, + ["MaximumLifeUnique__26"] = { affix = "", "(-17-17)% reduced maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(-17-17)% reduced maximum Life" }, } }, + ["MaximumLifeUnique__27"] = { affix = "", "10% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "10% increased maximum Life" }, } }, + ["MaximumLifeUnique__28"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(10-20)% increased maximum Life" }, } }, + ["MaximumLifeImplicitAtlasRing"] = { affix = "", "(5-7)% increased maximum Life", statOrder = { 1593 }, level = 100, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, + ["AreaOfEffectImplicitMarakethTwoHandMace1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, + ["AreaOfEffectImplicitMarakethTwoHandMace2"] = { affix = "", "20% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "20% increased Area of Effect" }, } }, + ["AreaOfEffectImplicitTwoHandMace1__"] = { affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["AreaOfEffectImplicitTwoHandMace2_"] = { affix = "", "15% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, + ["AreaOfEffectUniqueDagger1"] = { affix = "", "30% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, + ["AreaOfEffectUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(40-50)% increased Area of Effect" }, } }, + ["AreaOfEffectUniqueDescentStaff1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "15% increased Area of Effect" }, } }, + ["AreaOfEffectUniqueQuiver6"] = { affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 13, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["AreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "20% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "20% increased Area of Effect" }, } }, + ["AreaOfEffectUniqueShieldDexInt2"] = { affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["AreaOfEffectUniqueOneHandMace7"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, + ["AreaOfEffectUniqueShieldDex7"] = { affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__1"] = { affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__2_"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__3"] = { affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__4_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__5"] = { affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__6"] = { affix = "", "(10-15)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-15)% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__7_"] = { affix = "", "30% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__8"] = { affix = "", "(15-20)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-20)% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__9"] = { affix = "", "30% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "30% increased Area of Effect" }, } }, + ["AreaOfEffectUnique__10"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(40-50)% increased Area of Effect" }, } }, + ["BurnDamageUniqueStaff1"] = { affix = "", "70% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "70% increased Burning Damage" }, } }, + ["BurnDamageUniqueDescentOneHandMace1"] = { affix = "", "25% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "25% increased Burning Damage" }, } }, + ["BurnDamageUniqueRing15"] = { affix = "", "(60-80)% increased Burning Damage", statOrder = { 1900 }, level = 14, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(60-80)% increased Burning Damage" }, } }, + ["BurnDamageUniqueCorruptedJewel1"] = { affix = "", "(20-30)% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(20-30)% increased Burning Damage" }, } }, + ["BurnDamageUnique__1"] = { affix = "", "(20-30)% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(20-30)% increased Burning Damage" }, } }, + ["CannotCrit"] = { affix = "", "Never deal Critical Strikes", statOrder = { 2201 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3638599682] = { "Never deal Critical Strikes" }, } }, + ["ManaCostIncreaseUniqueTwoHandAxe4"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, + ["ManaCostIncreaseUniqueGlovesInt6"] = { affix = "", "(40-80)% increased Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(40-80)% increased Mana Cost of Skills" }, } }, + ["ManaCostIncreasedUniqueWand7"] = { affix = "", "40% increased Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "40% increased Mana Cost of Skills" }, } }, + ["ManaCostIncreasedUniqueHelmetStrInt6"] = { affix = "", "75% increased Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "75% increased Mana Cost of Skills" }, } }, + ["ManaCostReductionUnique__1"] = { affix = "", "(6-8)% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(6-8)% reduced Mana Cost of Skills" }, } }, + ["ManaCostReductionUnique__2_"] = { affix = "", "(10-20)% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(10-20)% reduced Mana Cost of Skills" }, } }, + ["ManaCostEffiencyUnique__1"] = { affix = "", "(15-25)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(15-25)% increased Mana Cost Efficiency" }, } }, + ["ManaCostEffiencyUnique__2"] = { affix = "", "(30-50)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(30-50)% increased Mana Cost Efficiency" }, } }, + ["SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5"] = { affix = "", "Socketed Gems have 50% less Mana Cost", statOrder = { 566 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2816901897] = { "Socketed Gems have 50% less Mana Cost" }, } }, + ["SocketedGemsHaveReducedManaCostUniqueDescentClaw1"] = { affix = "", "Socketed Gems have 50% less Mana Cost", statOrder = { 566 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2816901897] = { "Socketed Gems have 50% less Mana Cost" }, } }, + ["BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10936 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["ArsenalOfVengeance"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10975 }, level = 1, group = "ArsenalOfVengeance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [971749694] = { "Arsenal of Vengeance" }, } }, + ["RetaliationSkillsBecomeUsableEveryXSecondsUnique_1"] = { affix = "", "Damaging Retaliation Skills become Usable every 4 seconds", statOrder = { 10081 }, level = 78, group = "RetaliationSkillsUsableAfterDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1631195850] = { "Damaging Retaliation Skills become Usable every 4 seconds" }, } }, + ["RetaliationSkillDamageUnique_1"] = { affix = "", "Retaliation Skills deal (50-100)% increased Damage", statOrder = { 10075 }, level = 1, group = "RetaliationSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1531617714] = { "Retaliation Skills deal (50-100)% increased Damage" }, } }, + ["RetaliateSkillUseWindowDuration_1"] = { affix = "", "Retaliation Skills become Usable for (50-100)% longer", statOrder = { 10085 }, level = 1, group = "RetaliationSkillUseWindowDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2547149004] = { "Retaliation Skills become Usable for (50-100)% longer" }, } }, + ["CannotEvade"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1941 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, + ["AdditionalArrowsUniqueBow3"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1817 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, + ["AdditionalArrowsUniqueTransformed__1"] = { affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 55, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["AdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1817 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, + ["AdditionalArrowsUnique__2"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1817 }, level = 77, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, + ["MinionRunSpeedUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-15)% increased Movement Speed" }, } }, + ["MinionRunSpeedUniqueWand2"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (20-30)% increased Movement Speed" }, } }, + ["MinionRunSpeedUniqueJewel16"] = { affix = "", "Minions have (5-10)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (5-10)% increased Movement Speed" }, } }, + ["MinionRunSpeedUnique__1"] = { affix = "", "Minions have 10% reduced Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have 10% reduced Movement Speed" }, } }, + ["MinionRunSpeedUnique__2"] = { affix = "", "Minions have (80-100)% increased Movement Speed", statOrder = { 1792 }, level = 48, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (80-100)% increased Movement Speed" }, } }, + ["MinionRunSpeedUnique__3"] = { affix = "", "Minions have (25-45)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-45)% increased Movement Speed" }, } }, + ["MinionRunSpeedUnique__4"] = { affix = "", "Minions have (10-20)% increased Movement Speed", statOrder = { 1792 }, level = 78, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-20)% increased Movement Speed" }, } }, + ["MinionRunSpeedUnique__5"] = { affix = "", "Minions have (40-50)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (40-50)% increased Movement Speed" }, } }, + ["MinionRunSpeedUnique__6"] = { affix = "", "Minions have (15-25)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-25)% increased Movement Speed" }, } }, + ["MinionLifeUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-15)% increased maximum Life" }, } }, + ["MinionLifeUniqueTwoHandSword4"] = { affix = "", "Minions have (30-40)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (30-40)% increased maximum Life" }, } }, + ["MinionLifeUniqueTwoHandMace5"] = { affix = "", "Minions have (20-40)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-40)% increased maximum Life" }, } }, + ["MinionLifeUniqueBodyInt9"] = { affix = "", "Minions have 20% reduced maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 20% reduced maximum Life" }, } }, + ["MinionLifeUniqueRing33"] = { affix = "", "Minions have 15% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 15% increased maximum Life" }, } }, + ["MinionLifeUniqueJewel18"] = { affix = "", "Minions have (5-15)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, + ["MinionLifeUnique__1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["MinionLifeUnique__2"] = { affix = "", "Minions have (10-20)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-20)% increased maximum Life" }, } }, + ["MinionLifeUnique__3_"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["MinionLifeUnique__4__"] = { affix = "", "Minions have 10% reduced maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have 10% reduced maximum Life" }, } }, + ["MinionLifeUnique__5_"] = { affix = "", "Minions have (20-40)% reduced maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-40)% reduced maximum Life" }, } }, + ["MinionDamageImplicitHelmet1"] = { affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1996 }, level = 78, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-20)% increased Damage" }, } }, + ["MinionDamageUniqueAmulet3"] = { affix = "", "Minions deal (10-15)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } }, + ["MinionDamageUniqueWand2"] = { affix = "", "Minions deal (50-70)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-70)% increased Damage" }, } }, + ["MinionDamageUniqueTwoHandSword4"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-40)% increased Damage" }, } }, + ["MinionDamageUniqueBodyInt9"] = { affix = "", "Minions deal 15% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal 15% increased Damage" }, } }, + ["MinionDamageUniqueJewel1"] = { affix = "", "Minions deal (8-12)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (8-12)% increased Damage" }, } }, + ["MinionDamageUnique__1"] = { affix = "", "Minions deal (8-12)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (8-12)% increased Damage" }, } }, + ["MinionDamageUnique__2"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, + ["MinionDamageUnique__3_"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-80)% increased Damage" }, } }, + ["MinionDamageUnique4"] = { affix = "", "Minions deal (10-15)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } }, + ["MinionDamageUnique__5"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-40)% increased Damage" }, } }, + ["MinionDamageUnique__6"] = { affix = "", "Minions deal (35-45)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (35-45)% increased Damage" }, } }, + ["MinionDamageUnique__7"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-80)% increased Damage" }, } }, + ["MinionDamageUnique__8_"] = { affix = "", "Minions deal (40-60)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-60)% increased Damage" }, } }, + ["MinionDamageUnique__9"] = { affix = "", "Minions deal (113-157)% increased Damage", statOrder = { 1996 }, level = 80, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (113-157)% increased Damage" }, } }, + ["MinionDurationUnique__1"] = { affix = "", "(17-31)% increased Minion Duration", statOrder = { 5098 }, level = 80, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-31)% increased Minion Duration" }, } }, + ["MinionPhysicalDamageAsChaosUnique__1"] = { affix = "", "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 9482 }, level = 80, group = "MinionPhysicalDamageAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "minion" }, tradeHashes = { [2656936969] = { "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage" }, } }, + ["MinionAttackAndCastSpeedUnique__1"] = { affix = "", "Minions have (12-16)% increased Attack Speed", "Minions have (12-16)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (12-16)% increased Attack Speed" }, [4000101551] = { "Minions have (12-16)% increased Cast Speed" }, } }, + ["MinionChaosResistanceUnique___1"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2947 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +29% to Chaos Resistance" }, } }, + ["MinionChaosResistanceUnique__2__"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2947 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +29% to Chaos Resistance" }, } }, + ["MinionChaosResistanceUnique__3"] = { affix = "", "Minions have +(-17-17)% to Chaos Resistance", statOrder = { 2947 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(-17-17)% to Chaos Resistance" }, } }, + ["MinionAttackBlockChanceUnique__1"] = { affix = "", "Minions have +(10-12)% Chance to Block Attack Damage", statOrder = { 2937 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(10-12)% Chance to Block Attack Damage" }, } }, + ["MinionAttackBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Attack Damage", statOrder = { 2937 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +25% Chance to Block Attack Damage" }, } }, + ["MinionSpellBlockChanceUnique__1_"] = { affix = "", "Minions have +(10-12)% Chance to Block Spell Damage", statOrder = { 2938 }, level = 1, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +(10-12)% Chance to Block Spell Damage" }, } }, + ["MinionSpellBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2938 }, level = 1, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +25% Chance to Block Spell Damage" }, } }, + ["MinionAttackDodgeChanceUnique__1"] = { affix = "", "Minions have +(10-12)% chance to Suppress Spell Damage", statOrder = { 9466 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(10-12)% chance to Suppress Spell Damage" }, } }, + ["MinionSpellDodgeChanceUnique__1_"] = { affix = "", "Minions have +(10-12)% chance to Suppress Spell Damage", statOrder = { 9466 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(10-12)% chance to Suppress Spell Damage" }, } }, + ["MinionSuppressSpellChanceUnique__1"] = { affix = "", "Minions have +(20-24)% chance to Suppress Spell Damage", statOrder = { 9466 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(20-24)% chance to Suppress Spell Damage" }, } }, + ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 2196 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, + ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 2196 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1694106311] = { "Cannot be Stunned" }, } }, + ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 2191 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 2191 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 2191 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply one fewer Curse" }, } }, + ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "100% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, + ["ConvertPhysicalToFireUnique__4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "100% of Physical Damage Converted to Fire Damage" }, } }, + ["BeltIncreasedFlaskEffectUnique__1"] = { affix = "", "Flasks applied to you have 25% increased Effect", statOrder = { 2776 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 25% increased Effect" }, } }, + ["BeltIncreasedFlaskEffectUnique__2"] = { affix = "", "Flasks applied to you have 60% reduced Effect", statOrder = { 2776 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 60% reduced Effect" }, } }, + ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 2206 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "30% reduced Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 2206 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(15-25)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 2207 }, 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 = { 2207 }, 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 = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, + ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, + ["BeltIncreasedFlaskDurationUnique__4"] = { affix = "", "150% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "150% increased Flask Effect Duration" }, } }, + ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "30% reduced Flask Effect Duration" }, } }, + ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 2210 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, + ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(20-30)% reduced Flask Effect Duration" }, } }, + ["IncreasedFlaskDurationUnique__2"] = { affix = "", "(15-30)% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(15-30)% increased Flask Effect Duration" }, } }, + ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "30% increased Life Recovery from Flasks" }, } }, + ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "10% increased Life Recovery from Flasks" }, } }, + ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "100% increased Life Recovery from Flasks" }, } }, + ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-40)% increased Life Recovery from Flasks" }, } }, + ["BeltFlaskLifeRecoveryUnique__2"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "100% increased Life Recovery from Flasks" }, } }, + ["FlaskLifeRecoveryUnique__1"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, + ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 2083 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "30% increased Mana Recovery from Flasks" }, } }, + ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 2083 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, + ["BeltFlaskManaRecoveryUnique__2"] = { affix = "", "100% increased Mana Recovery from Flasks", statOrder = { 2083 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "100% increased Mana Recovery from Flasks" }, } }, + ["FlaskManaRecoveryUnique__1"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 2083 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, + ["FlaskManaRecoveryUnique__2"] = { affix = "", "(1-100)% increased Mana Recovery from Flasks", statOrder = { 2083 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(1-100)% increased Mana Recovery from Flasks" }, } }, + ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 2083 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(60-100)% increased Mana Recovery from Flasks" }, } }, + ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 2083 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "15% increased Mana Recovery from Flasks" }, } }, + ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "25% increased Flask Life Recovery rate" }, } }, + ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "50% increased Flask Life Recovery rate" }, } }, + ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 2212 }, 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 = { 2213 }, 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 = { 2213 }, 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 = { 2206 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "50% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, + ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1879 }, 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 = { 1879 }, 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 = { 1879 }, 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 = { 1879 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, + ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10931 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, + ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 68 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, + ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1864 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, + ["AttackerTakesDamageUnique_1"] = { affix = "", "Reflects (200-300) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (200-300) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (5-12) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (10-23) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (24-35) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (36-50) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (51-70) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (91-120) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (121-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (151-180) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (181-220) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (221-260) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (261-300) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects 5 Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (71-90) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (100-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2226 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects 100 Cold Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 2220 }, 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 = { 2257 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, + ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10967 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1626 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, + ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1626 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, + ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1626 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, + ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1626 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, + ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1867 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "25% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, + ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1867 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, + ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1860 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, + ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1860 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } }, + ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1867 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "50% chance to Avoid being Chilled" }, [1514829491] = { "" }, } }, + ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1860, 1861 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, + ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1860, 1861 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, + ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1909 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [73272763] = { "20% reduced Mana Cost of Skills when on Low Life" }, } }, + ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1645 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1637928656] = { "+20% to all Elemental Resistances while on Low Life" }, } }, + ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1567 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3470876581] = { "+(150-250) to Evasion Rating while on Low Life" }, } }, + ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of Life per second while on Low Life", statOrder = { 1968 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 1% of Life per second while on Low Life" }, } }, + ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of Life per second while on Low Life", statOrder = { 1968 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 2% of Life per second while on Low Life" }, } }, + ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of Life per second while on Low Life", statOrder = { 1968 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of Life per second while on Low Life" }, } }, + ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1622 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2929867083] = { "100% increased Rarity of Items found when on Low Life" }, } }, + ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1822 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "40% reduced Movement Speed when on Low Life" }, } }, + ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1822 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "20% increased Movement Speed when on Low Life" }, } }, + ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1822 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "30% increased Movement Speed when on Low Life" }, } }, + ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1822 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "(10-20)% increased Movement Speed when on Low Life" }, } }, + ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1823 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "20% increased Movement Speed when on Full Life" }, } }, + ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1823 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "15% increased Movement Speed when on Full Life" }, } }, + ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1822 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "30% increased Movement Speed when on Low Life" }, } }, + ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1822 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "10% increased Movement Speed when on Low Life" }, } }, + ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1822 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [649025131] = { "(6-8)% increased Movement Speed when on Low Life" }, } }, + ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1823 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, + ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1823 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "30% increased Movement Speed when on Full Life" }, } }, + ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-100)% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "20% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-20)% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "10% increased Elemental Damage" }, } }, + ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-50)% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "30% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(20-30)% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-40)% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(7-10)% increased Elemental Damage" }, } }, + ["ElementalDamageUnique__5"] = { affix = "", "(30-60)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-60)% increased Elemental Damage" }, } }, + ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "100% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 20% of Physical Damage as Extra Cold Damage" }, } }, + ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(0-50)% of Physical Damage Converted to Cold Damage" }, } }, + ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } }, + ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, + ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1245 }, 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 = { 1245 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, + ["Conduit"] = { affix = "", "Conduit", statOrder = { 10940 }, 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 = { 2257 }, 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 = { 2257 }, 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 = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-10) Physical Damage taken from Attack Hits" }, } }, + ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-3 Physical Damage taken from Attack Hits" }, } }, + ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(7-5) Physical Damage taken from Attack Hits" }, } }, + ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(50-40) Physical Damage taken from Attack Hits" }, } }, + ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(18-14) Physical Damage taken from Attack Hits" }, } }, + ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(60-30) Physical Damage taken from Attack Hits" }, } }, + ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-6)% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+3% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+10% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, + ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "-10% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-5)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-10)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+6% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-12)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(9-13)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(20-25)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__10"] = { affix = "", "+(3-8)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-8)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__11"] = { affix = "", "+15% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+15% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__12"] = { affix = "", "+(1-10)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-10)% Chance to Block" }, } }, + ["AdditionalBlockChanceUnique__13"] = { affix = "", "+(5-10)% Chance to Block", statOrder = { 2272 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-10)% Chance to Block" }, } }, + ["SpellBlockOnLowLifeUniqueShieldStrDex1"] = { affix = "", "36% Chance to Block Spell Damage while on Low Life", statOrder = { 1180 }, level = 1, group = "BlockPercentAppliedToSpellsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4070519133] = { "36% Chance to Block Spell Damage while on Low Life" }, } }, + ["SpellBlockUniqueShieldInt1"] = { affix = "", "(12-18)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(12-18)% Chance to Block Spell Damage" }, } }, + ["SpellBlockUniqueShieldStrInt1"] = { affix = "", "(21-24)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(21-24)% Chance to Block Spell Damage" }, } }, + ["SpellBlockUniqueBootsInt5"] = { affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(6-7)% Chance to Block Spell Damage" }, } }, + ["SpellBlockUniqueTwoHandAxe6"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "7% Chance to Block Spell Damage" }, } }, + ["SpellBlockUniqueDescentShieldStr1"] = { affix = "", "30% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "30% Chance to Block Spell Damage" }, } }, + ["SpellBlockUniqueShieldInt4"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1179 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2881111359] = { "7% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_"] = { affix = "", "+30% Chance to Block Spell Damage while on Low Life", statOrder = { 1169 }, level = 1, group = "SpellBlockPercentageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2253286128] = { "+30% Chance to Block Spell Damage while on Low Life" }, } }, + ["SpellBlockPercentageUniqueShieldInt1"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-15)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUniqueShieldStrInt1"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUniqueBootsInt5"] = { affix = "", "(15-20)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentageRainbowstride", weightKey = { }, weightVal = { }, modTags = { "block", "blue_herring" }, tradeHashes = { [561307714] = { "(15-20)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUniqueTwoHandAxe6"] = { affix = "", "(7-10)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(7-10)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUniqueShieldInt4"] = { affix = "", "10% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUniqueShieldInt18"] = { affix = "", "(15-20)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(15-20)% Chance to Block Spell Damage" }, } }, + ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1652 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, + ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to maximum Cold Resistance", statOrder = { 1652 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(-3-3)% to maximum Cold Resistance" }, } }, + ["MaximumColdResistUnique__2"] = { affix = "", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumColdResistUnique__3"] = { affix = "", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to maximum Fire Resistance", statOrder = { 1646 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, } }, + ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Fire Resistance", statOrder = { 1646 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(-3-3)% to maximum Fire Resistance" }, } }, + ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to maximum Lightning Resistance", statOrder = { 1657 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, } }, + ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Lightning Resistance", statOrder = { 1657 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(-3-3)% to maximum Lightning Resistance" }, } }, + ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 2226 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects (25-50) Cold Damage to Melee Attackers" }, } }, + ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-150 Physical Damage taken from Projectile Attacks", statOrder = { 2269 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-150 Physical Damage taken from Projectile Attacks" }, } }, + ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical Damage taken from Projectile Attacks", statOrder = { 2269 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-(80-50) Physical Damage taken from Projectile Attacks" }, } }, + ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Strike", statOrder = { 1851 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [398702949] = { "Gain a Frenzy Charge on Critical Strike" }, } }, + ["DisableOffhandSlot"] = { affix = "", "Uses both hand slots", statOrder = { 1098 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2846730569] = { "Uses both hand slots" }, } }, + ["DisableOffHandSlotUnique__1"] = { affix = "", "Uses both hand slots", statOrder = { 1098 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2846730569] = { "Uses both hand slots" }, } }, + ["CannotBlockAttacks"] = { affix = "", "Cannot Block Attack Damage", statOrder = { 2281 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3162258068] = { "Cannot Block Attack Damage" }, } }, + ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1665 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, } }, + ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-5)% to all maximum Resistances", statOrder = { 1665 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+(1-5)% to all maximum Resistances" }, } }, + ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1665 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "-5% to all maximum Resistances" }, } }, + ["IncreasedMaximumResistsUniqueAmulet87"] = { affix = "", "+(1-3)% to all maximum Resistances", statOrder = { 1665 }, level = 36, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+(1-3)% to all maximum Resistances" }, } }, + ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1652 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, } }, + ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 464 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } }, + ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 464 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 10 Concentrated Effect" }, } }, + ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 464 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 15 Concentrated Effect" }, } }, + ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 464 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 5 Concentrated Effect" }, } }, + ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 476 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3265951306] = { "Socketed Gems are Supported by Level 10 Fire Penetration" }, } }, + ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 473 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 10 Added Fire Damage" }, } }, + ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 474 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 10 Cold to Fire" }, } }, + ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 474 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 5 Cold to Fire" }, } }, + ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 474 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [550444281] = { "Socketed Gems are Supported by Level 30 Cold to Fire" }, } }, + ["ShareEnduranceChargesWithParty"] = { affix = "", "Share Endurance Charges with nearby party members", statOrder = { 2283 }, level = 1, group = "ShareEnduranceChargesWithParty", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1881314095] = { "Share Endurance Charges with nearby party members" }, } }, + ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Strike", statOrder = { 1858 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHashes = { [2609824731] = { "Gain an Endurance Charge when you take a Critical Strike" }, } }, + ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 2286 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "10% chance to Blind Enemies on hit" }, } }, + ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 481 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, } }, + ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 481 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 30 Blind" }, } }, + ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 481 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 6 Blind" }, } }, + ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 481 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 10 Blind" }, } }, + ["ReducedFreezeDurationUniqueShieldStrInt3"] = { affix = "", "80% reduced Freeze Duration on you", statOrder = { 1897 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "80% reduced Freeze Duration on you" }, } }, + ["FreezeDurationOnSelfUnique__1"] = { affix = "", "10000% increased Freeze Duration on you", statOrder = { 1897 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "10000% increased Freeze Duration on you" }, } }, + ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-1000)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2461 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1814782245] = { "(600-1000)% more Physical Damage with Unarmed Melee Attacks" }, } }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 368 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [282757414] = { "Socketed Gems are Supported by Level 15 Pulverise" }, } }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 233 }, 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 = { 233 }, 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 = { 422 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, + ["EnemiesCantLifeLeech"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2465 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, + ["UniqueEnemiesCantLifeLeech__1"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2465 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, + ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 11024 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, + ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 83 }, 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 = { 1185 }, 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 = { 1185 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-12)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+8% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+5% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, 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 = { 1185 }, 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 = { 1638, 1639 }, 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 Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2183, 2184, 9673 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+(1-2) to maximum number of Raised Zombies", "+(1-2) to maximum number of Spectres", "+(1-2) to maximum number of Skeletons", statOrder = { 2183, 2184, 2185 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+(1-2) to maximum number of Raised Zombies" }, [2428829184] = { "+(1-2) to maximum number of Skeletons" }, [125218179] = { "+(1-2) to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2184 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9673 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 2185 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2184 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [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 = { 10192, 10193, 10194 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, + ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2184 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2184 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, + ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 10194 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, + ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 10192 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, + ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 10193 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, + ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 538 }, 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 = { 538 }, 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 = { 538 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, + ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, + ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 546 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3418772] = { "Socketed Gems have 10% chance to cause Enemies to Flee on Hit" }, } }, + ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 2223 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, + ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 2223 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 150 Lightning Damage to Melee Attackers" }, } }, + ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 5108 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3555122266] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, [3711497052] = { "" }, } }, + ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2183, 2184, 9673 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "+1 to maximum number of Raised Zombies" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2183, 2184, 2185 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 1100, 2464 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2492660287] = { "Reserves 30% of Life" }, [623651254] = { "Cannot be used with Chaos Inoculation" }, } }, + ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 161 }, 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 bypass Energy Shield", statOrder = { 2536 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1119465199] = { "Chaos Damage taken does not bypass Energy Shield" }, } }, + ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "25% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2467 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2749166636] = { "50% more Damage with Arrow Hits at Close Range" }, } }, + ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2469 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3261557635] = { "Bow Knockback at Close Range" }, } }, + ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(5-10)% of Damage taken Recouped as Mana" }, } }, + ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, + ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "8% of Damage taken Recouped as Mana" }, } }, + ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(6-12)% of Damage taken Recouped as Mana" }, } }, + ["ChanceToIgniteUniqueBodyInt2"] = { affix = "", "10% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, + ["ChanceToIgniteUniqueTwoHandSword6"] = { affix = "", "20% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } }, + ["ChanceToIgniteUniqueDescentOneHandMace1"] = { affix = "", "30% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, + ["ChanceToIgniteUniqueBootsStrInt3"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, + ["ChanceToIgniteUniqueRing38"] = { affix = "", "10% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, + ["ChanceToIgniteUnique__1"] = { affix = "", "(16-22)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(16-22)% chance to Ignite" }, } }, + ["ChanceToIgniteUnique__2"] = { affix = "", "10% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, + ["ChanceToIgniteUnique__3"] = { affix = "", "10% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, + ["ChanceToIgniteUnique__4"] = { affix = "", "(6-10)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-10)% chance to Ignite" }, } }, + ["ChanceToIgniteUnique__5"] = { affix = "", "25% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, + ["ChanceToIgniteUnique__6"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, + ["ChanceToIgniteUnique__8"] = { affix = "", "25% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } }, + ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(40-75)% increased Ignite Duration on Enemies" }, } }, + ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "500% increased Ignite Duration on Enemies" }, } }, + ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "15% increased Ignite Duration on Enemies" }, } }, + ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "25% reduced Ignite Duration on Enemies" }, } }, + ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "33% increased Ignite Duration on Enemies" }, } }, + ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "10000% increased Ignite Duration on Enemies" }, } }, + ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { affix = "", "20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["PhysicalDamageTakenAsFirePercentUnique__1"] = { affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["AttackerTakesFireDamageUniqueBodyInt2"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2227 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, [223497523] = { "" }, } }, + ["AttackerTakesFireDamageUnique__1"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2227 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, [223497523] = { "" }, } }, + ["AttackerTakesColdDamageUnique__1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2226 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects 100 Cold Damage to Melee Attackers" }, } }, + ["AttackerTakesLightningDamageUnique__1"] = { affix = "", "Reflects 100 Lightning Damage to Melee Attackers", statOrder = { 2228 }, level = 1, group = "AttackerTakesLightningDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3868184702] = { "Reflects 100 Lightning Damage to Melee Attackers" }, } }, + ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1862 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1862 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 2021 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "(10-15)% increased Physical Damage with Ranged Weapons" }, } }, + ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 2021 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "(75-150)% increased Physical Damage with Ranged Weapons" }, } }, + ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2482 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "1000% of Melee Physical Damage taken reflected to Attacker" }, } }, + ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% Chance to Block Attack Damage", statOrder = { 2483 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+5% Chance to Block Attack Damage" }, } }, + ["AdditionalBlockUnique__1"] = { affix = "", "+(2-6)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-6)% Chance to Block Attack Damage" }, } }, + ["AdditionalBlockUnique__2"] = { affix = "", "15% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "15% Chance to Block Attack Damage" }, } }, + ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 5042 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, + ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1814 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, + ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1814 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, + ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Leech Energy Shield instead of Life", statOrder = { 7437 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3346092312] = { "Leech Energy Shield instead of Life" }, } }, + ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1186 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, + ["ArmourPercent VsProjectilesUniqueShieldStr2"] = { affix = "", "200% increased Armour against Projectiles", statOrder = { 2489 }, level = 1, group = "ArmourPercentVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [706246936] = { "200% increased Armour against Projectiles" }, } }, + ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2490 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, + ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2491 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, + ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 539 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, + ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 539 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 45% increased Reservation Efficiency" }, } }, + ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 539 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 25% increased Reservation Efficiency" }, } }, + ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 539 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% reduced Reservation Efficiency" }, } }, + ["ChanceToFreezeUniqueStaff2"] = { affix = "", "(25-50)% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-50)% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-10)% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "2% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } }, + ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2487 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 20% increased Damage" }, } }, + ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2487 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 20% increased Damage" }, } }, + ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 1104 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "60% increased Intelligence Requirement" }, } }, + ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 1104 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "500% increased Intelligence Requirement" }, } }, + ["LocalInflictHallowingFlameOnHitUnique__1"] = { affix = "", "Attacks with this weapon inflict Hallowing Flame on Hit", statOrder = { 64 }, level = 1, group = "LocalInflictHallowingFlameOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [254952564] = { "Attacks with this weapon inflict Hallowing Flame on Hit" }, } }, + ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 1103 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+257 Intelligence Requirement" }, } }, + ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 15 Added Chaos Damage" }, } }, + ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 10 Added Chaos Damage" }, } }, + ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 469 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 25 Added Chaos Damage" }, } }, + ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 29 Added Chaos Damage" }, } }, + ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2494 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, + ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2495 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [4075957192] = { "Poisonous Hit" }, } }, + ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1802 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(150-200)% increased Skeleton Duration" }, } }, + ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1802 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1331384105] = { "(10-20)% reduced Skeleton Duration" }, } }, + ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 1110 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "25% increased Strength Requirement" }, } }, + ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 1110 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "20% reduced Strength Requirement" }, } }, + ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 1110 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "30% reduced Strength Requirement" }, } }, + ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 1110 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "40% increased Strength Requirement" }, } }, + ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 1110 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "500% increased Strength Requirement" }, } }, + ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 1109 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, + ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 1109 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, + ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 1109 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+200 Strength Requirement" }, } }, + ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 1109 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+(500-700) Strength Requirement" }, } }, + ["StrengthRequirementsUnique__4"] = { affix = "", "+100 Strength Requirement", statOrder = { 1109 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, + ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 1103 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+300 Intelligence Requirement" }, } }, + ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 1103 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+212 Intelligence Requirement" }, } }, + ["IntelligenceRequirementsUnique_1"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 1103 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, + ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 1101 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+160 Dexterity Requirement" }, } }, + ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 1108 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4272453892] = { "+600 Strength and Intelligence Requirement" }, } }, + ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2497 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3557561376] = { "100% increased Spell Damage taken when on Low Mana" }, } }, + ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1568 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1000 to Evasion Rating while on Full Life" }, } }, + ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1568 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4082111882] = { "+1500 to Evasion Rating while on Full Life" }, } }, + ["ReflectCurses"] = { affix = "", "Hex Reflection", statOrder = { 2502 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1731672673] = { "Hex Reflection" }, } }, + ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 921 }, level = 1, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, + ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2508 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [20157668] = { "50% chance to cause Bleeding on Hit" }, } }, + ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, + ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2507 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, + ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, + ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2507 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, + ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, + ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2507 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, + ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2509 }, 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 = { 2507 }, 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 = { 2509 }, 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 Strike", statOrder = { 7970 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Strike" }, } }, + ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7981 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Strike" }, } }, + ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2505 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, + ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2521 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, + ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 2197 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, + ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2168 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHashes = { [634031003] = { "20% increased effect of Non-Curse Auras from your Skills on your Minions" }, } }, + ["AuraEffectUnique__1"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "20% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectUnique__2____"] = { affix = "", "10% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "10% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2168 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHashes = { [634031003] = { "20% increased effect of Non-Curse Auras from your Skills on your Minions" }, } }, + ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(40-50)% increased Area Damage" }, } }, + ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "10% increased Area Damage" }, } }, + ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-20)% increased Area Damage" }, } }, + ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, + ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "30% increased Area Damage" }, } }, + ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1214 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-30)% increased Damage" }, } }, + ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, + ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, + ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1215 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-50)% increased Global Damage" }, } }, + ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1215 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(40-60)% increased Global Damage" }, } }, + ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, + ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "10% increased Damage" }, } }, + ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-25)% increased Damage" }, } }, + ["AllDamageUnique__3"] = { affix = "", "(300-400)% increased Global Damage", statOrder = { 1215 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [819529588] = { "(300-400)% increased Global Damage" }, } }, + ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-40)% increased Damage" }, } }, + ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, + ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, + ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "31% increased Light Radius" }, } }, + ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% reduced Light Radius" }, } }, + ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, + ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2526 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-15)% increased Light Radius" }, } }, + ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% reduced Light Radius" }, } }, + ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, + ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(20-30)% increased Light Radius" }, } }, + ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, + ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "40% reduced Light Radius" }, } }, + ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUniqueAmulet87"] = { affix = "", "(25-75)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(25-75)% increased Light Radius" }, } }, + ["LightRadiusUnique__1"] = { affix = "", "(15-20)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-20)% increased Light Radius" }, } }, + ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(10-30)% increased Light Radius" }, } }, + ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, + ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, + ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, + ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, + ["LightRadiusUnique__9"] = { affix = "", "25% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["LightRadiusUnique__10"] = { affix = "", "50% reduced Light Radius", statOrder = { 2526 }, level = 100, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% reduced Light Radius" }, } }, + ["LightRadiusUnique__11"] = { affix = "", "50% increased Light Radius", statOrder = { 2526 }, level = 92, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "50% increased Light Radius" }, } }, + ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2547 }, 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 Strike", statOrder = { 2537 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2283772011] = { "" }, [927458676] = { "Spreads Tar when you take a Critical Strike" }, [545338400] = { "" }, } }, + ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 7013 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, [1208949000] = { "" }, [3568390883] = { "" }, [640757053] = { "" }, } }, + ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2558 }, 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 = { 2561 }, 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 = { 2563 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, + ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUnique__1"] = { affix = "", "(-15-15)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(-15-15)% reduced Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUnique__3"] = { affix = "", "(10-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 20, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(10-20)% increased Mana Reservation Efficiency of Skills" }, } }, + ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2256 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "80% reduced Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "80% reduced Reservation Efficiency of Skills" }, } }, + ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2256 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "20% reduced Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "20% reduced Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2256 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4202507508] = { "12% increased Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "12% increased Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__5"] = { affix = "", "(5-10)% increased Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(5-10)% increased Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__6"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__7"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__8"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__9"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, + ["ReservationEfficiencyUnique__10"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2587176568] = { "(20-35)% reduced Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(12-20)% increased Mana Reservation Efficiency of Skills" }, } }, + ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1650 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, + ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1870 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4271082039] = { "100% chance to Avoid being Ignited while on Low Life" }, } }, + ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 477 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 5 Elemental Proliferation" }, } }, + ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 477 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } }, + ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1918 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "15% increased Skill Effect Duration" }, } }, + ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1918 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-20)% reduced Skill Effect Duration" }, } }, + ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1918 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1918 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(-20-20)% reduced Skill Effect Duration" }, } }, + ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1918 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "4% increased Skill Effect Duration" }, } }, + ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1918 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "30% increased Skill Effect Duration" }, } }, + ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3852526385] = { "+5 to Level of Socketed Movement Gems" }, } }, + ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "5% increased Movement Speed per Frenzy Charge" }, } }, + ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, + ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, + ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, + ["ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "+2% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2572 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [482967934] = { "+2% chance to Suppress Spell Damage per Frenzy Charge" }, } }, + ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1578 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "10% increased Evasion Rating per Frenzy Charge" }, } }, + ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1832 }, 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 = { 1832 }, 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 = { 1832 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, + ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2569 }, level = 1, group = "WeaponPhysicalDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, + ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 2570 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, + ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Physical Weapon Damage per 10 Strength", statOrder = { 2571 }, level = 1, group = "IncreasedAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2594215131] = { "16% increased Physical Weapon Damage per 10 Strength" }, } }, + ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 2150 }, 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 = { 2150 }, 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 = { 2277 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, + ["AdditionalTotemsUniqueStaff38"] = { affix = "", "+2 to maximum number of Summoned Totems", statOrder = { 2277 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+2 to maximum number of Summoned Totems" }, } }, + ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1797 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% increased Totem Life" }, } }, + ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1797 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(14-20)% increased Totem Life" }, } }, + ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1797 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% increased Totem Life" }, } }, + ["TotemDurationUniqueStaff38"] = { affix = "", "(50-75)% increased Totem Duration", statOrder = { 1801 }, level = 1, group = "IncreasedTotemDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2357996603] = { "(50-75)% increased Totem Duration" }, } }, + ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 475 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } }, + ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 471 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2091466357] = { "Socketed Gems are Supported by Level 10 Increased Duration" }, } }, + ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Hex on you when your Totems die", statOrder = { 2577 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Hex on you when your Totems die" }, } }, + ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 478 }, 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 = { 478 }, 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 = { 7533 }, 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 = { 7533 }, 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 on Enemies", statOrder = { 1880 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration on Enemies" }, } }, + ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7533 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, + ["ShockDurationUnique__3"] = { affix = "", "25% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "25% increased Shock Duration on Enemies" }, } }, + ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 2264 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, + ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 2264 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, + ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 2264 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, + ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 1099 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "500% increased Attribute Requirements" }, } }, + ["IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1"] = { affix = "", "400% increased Attribute Requirements", statOrder = { 1099 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "400% increased Attribute Requirements" }, } }, + ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 1099 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "800% increased Attribute Requirements" }, } }, + ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2545 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, + ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Strike Multiplier", statOrder = { 1525 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-125)% to Melee Critical Strike Multiplier" }, } }, + ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1628 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, + ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Items and Gems have 25% reduced Attribute Requirements", statOrder = { 2578 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 25% reduced Attribute Requirements" }, } }, + ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Items and Gems have 10% increased Attribute Requirements", statOrder = { 2578 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 10% increased Attribute Requirements" }, } }, + ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Items and Gems have 100% reduced Attribute Requirements", statOrder = { 2578 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 100% reduced Attribute Requirements" }, } }, + ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Items and Gems have 50% increased Attribute Requirements", statOrder = { 2578 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have 50% increased Attribute Requirements" }, } }, + ["GlobalItemAttributeRequirementsUnique__3"] = { affix = "", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2578 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } }, + ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "50% reduced Effect of Curses on you" }, } }, + ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "60% reduced Effect of Curses on you" }, } }, + ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "50% increased Effect of Curses on you" }, } }, + ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } }, + ["ReducedCurseEffectUnique__2"] = { affix = "", "80% reduced Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "80% reduced Effect of Curses on you" }, } }, + ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 30 Mana per Enemy Hit with Attacks" }, } }, + ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1768 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 30 Mana per Enemy Hit" }, } }, + ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1768 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants (2-3) Mana per Enemy Hit" }, } }, + ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1768 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 2 Mana per Enemy Hit" }, } }, + ["ManaGainPerTargetUnique__3"] = { affix = "", "Gain (5-10) Mana per Enemy Killed", statOrder = { 1786 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (5-10) Mana per Enemy Killed" }, } }, + ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 509 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 10 Chance to Flee" }, } }, + ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 509 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [952060721] = { "Socketed Gems are supported by Level 2 Chance to Flee" }, } }, + ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 50% reduced Extra Damage from Critical Strikes" }, } }, + ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2580 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1252481812] = { "Emits a golden glow" }, } }, + ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2581 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2366940416] = { "+(20-25)% to Chaos Resistance when on Low Life" }, } }, + ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2579 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482008875] = { "Enemy hits on you roll low Damage" }, } }, + ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 480 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 30 Faster Attacks" }, } }, + ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 480 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 12 Faster Attacks" }, } }, + ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 480 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 13 Faster Attacks" }, } }, + ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 480 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 15 Faster Attacks" }, } }, + ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 479 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2985291457] = { "Socketed Gems are Supported by Level 30 Melee Physical Damage" }, } }, + ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 2147 }, 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 = { 2147 }, 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 = { 2582 }, 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 = { 6507 }, 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 = { 6507 }, 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 = { 6466 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, + ["EnemyExtraDamagerollsWithPhysicalDamageUnique_1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6465 }, level = 98, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, + ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2584 }, 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 = { 2583 }, 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 = { 2229 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [189451991] = { "Reflects 30 Chaos Damage to Melee Attackers" }, } }, + ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__5"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["IncreasedMaximumPowerChargesUnique__6"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, + ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, + ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 2165 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "15% increased Power Charge Duration" }, } }, + ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 2165 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "30% reduced Power Charge Duration" }, } }, + ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 2165 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(80-100)% increased Power Charge Duration" }, } }, + ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "(10-15)% increased Spell Damage per Power Charge", statOrder = { 2163 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(10-15)% increased Spell Damage per Power Charge" }, } }, + ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 2163 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(4-7)% increased Spell Damage per Power Charge" }, } }, + ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 2163 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(12-16)% increased Spell Damage per Power Charge" }, } }, + ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2599 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [16552558] = { "" }, [2298756203] = { "" }, [573884683] = { "100% chance to create Consecrated Ground when you Block" }, [264301062] = { "" }, } }, + ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2600 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, [3161959833] = { "" }, [2544633803] = { "" }, [800117438] = { "" }, } }, + ["DisableChestSlot"] = { affix = "", "Can't use Chest armour", statOrder = { 2609 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Chest armour" }, } }, + ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 222 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+1 to Level of Socketed Elemental Gems" }, } }, + ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 222 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+2 to Level of Socketed Elemental Gems" }, } }, + ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per Enemy Killed", statOrder = { 2597 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (15-20) Energy Shield per Enemy Killed" }, } }, + ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per Enemy Killed", statOrder = { 2597 }, 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 Hit with Attacks", statOrder = { 1770 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (15-25) Energy Shield per Enemy Hit with Attacks" }, } }, + ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2610 }, 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 = { 5870 }, 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 = { 2611 }, 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 = { 1244 }, 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 = { 1244 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, + ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1244 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "30% increased Attack Speed when on Low Life" }, } }, + ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "40% reduced Projectile Damage" }, } }, + ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2783 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1425651005] = { "20% reduced Damage taken from Projectile Hits" }, } }, + ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2575 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [993866933] = { "You cannot increase the Rarity of Items found" }, } }, + ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2576 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778266957] = { "You cannot increase the Quantity of Items found" }, } }, + ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2703 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2776725787] = { "You cannot be killed by reflected Elemental Damage" }, } }, + ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 3029 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1852317988] = { "Insufficient Mana doesn't prevent your Melee Attacks" }, } }, + ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 3029 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1852317988] = { "Insufficient Mana doesn't prevent your Melee Attacks" }, } }, + ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1203 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(16-24) to Strength and Dexterity" }, } }, + ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1204 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(16-24) to Strength and Intelligence" }, } }, + ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1205 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(16-24) to Dexterity and Intelligence" }, } }, + ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1203 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(30-50) to Strength and Dexterity" }, } }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2560 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2560 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+1 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 metres to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 2148 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% reduced Endurance Charge Duration" }, } }, + ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 2148 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "30% increased Endurance Charge Duration" }, } }, + ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, + ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(20-30)% chance to gain a Frenzy Charge on Kill" }, } }, + ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "33% chance to gain a Frenzy Charge on Kill" }, } }, + ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "15% chance to gain a Frenzy Charge on Kill" }, } }, + ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "25% chance to gain a Frenzy Charge on Kill" }, } }, + ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "30% chance to gain a Frenzy Charge on Kill" }, } }, + ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, + ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "15% chance to gain a Power Charge on Kill" }, } }, + ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, + ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(25-35)% chance to gain a Power Charge on Kill" }, } }, + ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "30% chance to gain a Power Charge on Kill" }, } }, + ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "30% chance to gain an Endurance Charge on Kill" }, } }, + ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2662 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1791875585] = { "Gain an Endurance Charge when you lose a Power Charge" }, } }, + ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2617 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1194648995] = { "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield" }, } }, + ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2664 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3579807004] = { "60% increased Melee Damage when on Full Life" }, } }, + ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Strike", statOrder = { 2665 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3195625581] = { "Creates Consecrated Ground on Critical Strike" }, } }, + ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2666 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3159161267] = { "5% increased Projectile Speed per Frenzy Charge" }, } }, + ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2667 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "5% increased Projectile Damage per Power Charge" }, } }, + ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2674 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [783864527] = { "Right ring slot: You cannot Regenerate Mana" }, } }, + ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of Energy Shield per second", statOrder = { 2675 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3676958605] = { "Right ring slot: Regenerate 6% of Energy Shield per second" }, } }, + ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2686 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [195090426] = { "Left ring slot: 100% increased Mana Regeneration Rate" }, } }, + ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2679 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4263540840] = { "Left ring slot: You cannot Recharge or Regenerate Energy Shield" }, } }, + ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, + ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, + ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 2% of Energy Shield per second" }, } }, + ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2671 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (80-100) Energy Shield per second" }, } }, + ["NoEnergyShieldRegenerationUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10983 }, level = 60, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, + ["LifeLeechAnyDamageUnique__1"] = { affix = "", "1% of Damage Leeched as Life", statOrder = { 1684 }, level = 1, group = "LifeLeechAnyDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4069440714] = { "1% of Damage Leeched as Life" }, } }, + ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Strike", statOrder = { 2668 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical", "drop" }, tradeHashes = { [21824003] = { "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Strike" }, } }, + ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2669 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, + ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2669 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 3 seconds on Kill" }, } }, + ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 2071 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [269590092] = { "4% reduced Attack and Cast Speed per Frenzy Charge" }, } }, + ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of Life per second per Frenzy Charge", statOrder = { 2654 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.8% of Life per second per Frenzy Charge" }, } }, + ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2844 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1696792323] = { "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life" }, } }, + ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1862 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2653 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "30% increased Movement Speed while Cursed" }, } }, + ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1163 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+10% Chance to Block Attack Damage while holding a Shield" }, } }, + ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2612 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 240 to 300 Physical Damage to Attackers on Block" }, } }, + ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2612 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 8 to 14 Physical Damage to Attackers on Block" }, } }, + ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2612 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 4 to 8 Physical Damage to Attackers on Block" }, } }, + ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2612 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 1000 to 10000 Physical Damage to Attackers on Block" }, } }, + ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2612 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects (22-44) Physical Damage to Attackers on Block" }, } }, + ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1780 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(34-48) Life gained when you Block" }, } }, + ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1781 }, 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 = { 1781 }, 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 = { 2615 }, 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 = { 10919 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, + ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2616 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, tradeHashes = { [3150000576] = { "Raised Zombies have +(25-30)% to all Resistances" }, } }, + ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2707 }, 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 = { 2709 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2857427872] = { "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage" }, } }, + ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2614 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4041805509] = { "50% reduced maximum number of Raised Zombies" }, } }, + ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2618 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4207939995] = { "2% increased Intelligence for each Unique Item Equipped" }, } }, + ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2621 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2920230984] = { "3% chance for Slain monsters to drop an additional Scroll of Wisdom" }, } }, + ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1991 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "40% of Cold Damage Converted to Fire Damage" }, } }, + ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2619 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3173052379] = { "Ignited Enemies Killed by your Hits are destroyed" }, } }, + ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Strike", statOrder = { 2706 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1055188639] = { "You gain Onslaught for 4 seconds on Critical Strike" }, } }, + ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2705 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, + ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(30-50)% increased Rarity of Items found during Effect", statOrder = { 1047 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask", "drop" }, tradeHashes = { [1740200922] = { "(30-50)% increased Rarity of Items found during Effect" }, } }, + ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 1046 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask", "drop" }, tradeHashes = { [3736953565] = { "(8-12)% increased Quantity of Items found during Effect" }, } }, + ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 1050 }, level = 1, group = "FlaskLightRadius", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2745936267] = { "25% increased Light Radius during Effect" }, } }, + ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 1035 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [4026156644] = { "+4% to all maximum Elemental Resistances during Effect" }, } }, + ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+10% to Elemental Resistances during Effect", statOrder = { 1055 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [3110554274] = { "+10% to Elemental Resistances during Effect" }, } }, + ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Attacks have 150% Arcane Might", statOrder = { 2714 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [185598681] = { "Attacks have 150% Arcane Might" }, } }, + ["ConvertFireToChaosUniqueBodyInt4"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1994 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [3901645945] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, + ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1993 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, + ["ConvertFireToChaosUniqueDagger10"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1994 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [3901645945] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, + ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1993 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "30% of Fire Damage Converted to Chaos Damage" }, } }, + ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2702 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2591020064] = { "1% increased Movement Speed per 600 Evasion Rating, up to 75%" }, } }, + ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2913 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Your Physical Damage can Chill" }, } }, + ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2913 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2227042420] = { "Your Physical Damage can Chill" }, } }, + ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2721 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3304763863] = { "15% increased Quantity of Items Dropped by Slain Frozen Enemies" }, } }, + ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2723 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3188291252] = { "30% increased Rarity of Items Dropped by Slain Shocked Enemies" }, } }, + ["ManaLeechPerPowerChargeUniqueBelt5"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana per Power Charge", statOrder = { 1742 }, level = 88, group = "ManaLeechPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3394240821] = { "1% of Physical Attack Damage Leeched as Mana per Power Charge" }, } }, + ["ManaLeechPermyriadPerPowerChargeUniqueBelt5_"] = { affix = "", "0.2% of Attack Damage Leeched as Mana per Power Charge", statOrder = { 8296 }, level = 88, group = "ManaLeechPermyriadPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2628721358] = { "0.2% of Attack Damage Leeched as Mana per Power Charge" }, } }, + ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (49-98) to (101-140) Chaos Damage" }, } }, + ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (60-68) to (90-102) Chaos Damage" }, } }, + ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds 1 to 59 Chaos Damage" }, } }, + ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-67) to (71-89) Chaos Damage" }, } }, + ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (600-650) to (750-800) Chaos Damage" }, } }, + ["LocalAddedChaosDamageUnique__4"] = { affix = "", "Adds (163-199) to (241-293) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (163-199) to (241-293) Chaos Damage" }, } }, + ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2725 }, 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 = { 2720 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2524948385] = { "You take 450 Chaos Damage per second for 0 seconds on Kill" }, [3856647970] = { "You take 0 Chaos Damage per second for 3 seconds on Kill" }, } }, + ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 11021 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, + ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2719 }, 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 = { 2719 }, 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 = { 11021 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, + ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 11027 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, + ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 11021 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, + ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, + ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "-10% to maximum Chance to Block Attack Damage" }, } }, + ["MaximumBlockChanceUnique__2"] = { affix = "", "-10% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "-10% to maximum Chance to Block Attack Damage" }, } }, + ["MaximumSpellBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Spell Damage", statOrder = { 2012 }, level = 1, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2388574377] = { "-10% to maximum Chance to Block Spell Damage" }, } }, + ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2590 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 50% faster" }, } }, + ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2594 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, + ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2594 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, + ["EnemiesCannotLeechMana"] = { affix = "", "Enemies Cannot Leech Mana From you", statOrder = { 2466 }, level = 1, group = "EnemiesCannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4293245253] = { "Enemies Cannot Leech Mana From you" }, } }, + ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2596 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3279535558] = { "Cannot Leech when on Low Life" }, } }, + ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1257 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "20% increased Melee Damage" }, } }, + ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1257 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(30-40)% increased Melee Damage" }, } }, + ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1257 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(16-20)% increased Melee Damage" }, } }, + ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1257 }, 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 = { 1257 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, + ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10959 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["ChanceToIgniteUniqueOneHandSword4"] = { affix = "", "30% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } }, + ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2727 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, + ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (150-200) to (330-400) Fire Damage in Main Hand", statOrder = { 1387 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (150-200) to (330-400) Fire Damage in Main Hand" }, } }, + ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1387 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (255-285) to (300-330) Fire Damage in Main Hand" }, } }, + ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (151-199) to (331-401) Chaos Damage in Off Hand", statOrder = { 1415 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3758293500] = { "Adds (151-199) to (331-401) Chaos Damage in Off Hand" }, } }, + ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1396 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2109066258] = { "Adds (255-285) to (300-330) Cold Damage in Off Hand" }, } }, + ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2904 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, + ["ChaosDamageCanShockUnique__1"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2904 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } }, + ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1989 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, + ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1989 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, + ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10667 }, 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 = { 8054 }, 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 = { 8054 }, 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 = { 2733 }, 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 = { 505 }, 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 = { 511 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, + ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 511 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, } }, + ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 897 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [2917449574] = { "Removes 80% of your maximum Energy Shield on use" }, } }, + ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 898 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [2301696196] = { "You take 50% of your maximum Life as Chaos Damage on use" }, } }, + ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 910 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [3230795453] = { "Gain (1-3) Frenzy Charge on use" }, } }, + ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 911 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "power_charge" }, tradeHashes = { [2697049014] = { "Gain (1-3) Power Charge on use" }, } }, + ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 909 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain (1-3) Endurance Charge on use" }, } }, + ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 909 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain 1 Endurance Charge on use" }, } }, + ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2739 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3128318472] = { "You can only deal Damage with this Weapon or Ignite" }, } }, + ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 867 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(250-300)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 867 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(70-100)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUniqueFlask36"] = { affix = "", "(200-300)% increased Charges per use", statOrder = { 867 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(200-300)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 867 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(10-20)% reduced Charges per use" }, } }, + ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: you and your Minions prevent +100% of Reflected Elemental Damage", statOrder = { 8090 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [3991837781] = { "Left ring slot: you and your Minions prevent +100% of Reflected Elemental Damage" }, } }, + ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: you and your Minions prevent +100% of Reflected Physical Damage", statOrder = { 8119 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3829555156] = { "Right ring slot: you and your Minions prevent +100% of Reflected Physical Damage" }, } }, + ["DamageCannotBeReflectedUnique__1"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6107 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, + ["DamageCannotBeReflectedUnique__2"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6107 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, + ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 3015 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 25% Fire Resistance" }, } }, + ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2789 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [1305605911] = { "Removes Burning when you use a Flask" }, } }, + ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "30% of Damage is taken from Mana before Life" }, } }, + ["ChanceToShockUniqueBow10"] = { affix = "", "10% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, + ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(15-20)% chance to Shock" }, } }, + ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "9% chance to Shock" }, } }, + ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } }, + ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } }, + ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } }, + ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } }, + ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "50% chance to Shock" }, } }, + ["ChanceToShockUnique__3"] = { affix = "", "(5-10)% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(5-10)% chance to Shock" }, } }, + ["ChanceToShockUnique__4_"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-15)% chance to Shock" }, } }, + ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2878 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1842038569] = { "100% increased Fishing Line Strength" }, } }, + ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2879 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1550221644] = { "50% increased Fishing Pool Consumption" }, } }, + ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2880 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Siren Worm Bait" }, } }, + ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2880 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Thaumaturgical Lure" }, } }, + ["FishingLureTypeUnique__2__"] = { affix = "", "Kulemak's Corpsebait", statOrder = { 2880 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3360430812] = { "Kulemak's Corpsebait" }, } }, + ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2882 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [170497091] = { "20% increased Fishing Range" }, } }, + ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2883 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(40-50)% reduced Quantity of Fish Caught" }, } }, + ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2883 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "20% increased Quantity of Fish Caught" }, } }, + ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2883 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(10-20)% increased Quantity of Fish Caught" }, } }, + ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2884 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(50-60)% increased Rarity of Fish Caught" }, } }, + ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2884 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "40% increased Rarity of Fish Caught" }, } }, + ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2884 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(20-30)% increased Rarity of Fish Caught" }, } }, + ["FishingCastDistanceUnique__2"] = { affix = "", "(50-80)% increased Fishing Range", statOrder = { 2882 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [170497091] = { "(50-80)% increased Fishing Range" }, } }, + ["FishingAbyssalFish"] = { affix = "", "Can catch Abyssal Fish", statOrder = { 6688 }, level = 1, group = "FishingAbyssalFish", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3431224784] = { "Can catch Abyssal Fish" }, } }, + ["FishingDeadFish"] = { affix = "", "(20-30)% increased Rarity of Fish Caught per held Dead Fish", statOrder = { 6686 }, level = 1, group = "FishingDeadFish", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2459602321] = { "(20-30)% increased Rarity of Fish Caught per held Dead Fish" }, } }, + ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2771 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2449668043] = { "8% increased Spell Damage per 5% Chance to Block Attack Damage" }, } }, + ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1762 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (15-20) Life per Enemy Hit with Spells" }, } }, + ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1762 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain 3 Life per Enemy Hit with Spells" }, } }, + ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1762 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [2018035324] = { "Lose (10-15) Life per Enemy Hit with Spells" }, } }, + ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "(10-14)% increased Global Attack Speed per Green Socket", statOrder = { 2750 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [250876318] = { "(10-14)% increased Global Attack Speed per Green Socket" }, } }, + ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "(25-35)% increased Global Physical Damage per Red Socket", statOrder = { 2746 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2112615899] = { "(25-35)% increased Global Physical Damage per Red Socket" }, } }, + ["ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2758 }, level = 1, group = "ManaLeechFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1390269837] = { "2% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2759 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2759 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [172852114] = { "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket" }, } }, + ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+(0.2-0.3) metres to Melee Strike Range per White Socket", statOrder = { 2766 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2076080860] = { "+(0.2-0.3) metres to Melee Strike Range per White Socket" }, } }, + ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2782 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2626398389] = { "60% increased Damage taken from Melee Attacks" }, } }, + ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2866 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [3002650433] = { "Regenerate 2% of your Armour as Life over 1 second when you Block" }, } }, + ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your Energy Shield when you Block", statOrder = { 2773 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [4059516437] = { "Lose 10% of your Energy Shield when you Block" }, } }, + ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (40-60)% of Physical Damage as Extra Chaos Damage" }, } }, + ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (30-40)% of Physical Damage as Extra Chaos Damage" }, } }, + ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (6-10)% of Fire Damage as Extra Chaos Damage" }, } }, + ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (6-10)% of Cold Damage as Extra Chaos Damage" }, } }, + ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (6-10)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["MainHandChanceToIgniteUniqueOneHandAxe2"] = { affix = "", "25% chance to Ignite when in Main Hand", statOrder = { 2801 }, level = 1, group = "MainHandChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2919089822] = { "25% chance to Ignite when in Main Hand" }, } }, + ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2802 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4199402748] = { "100% increased Chill Duration on Enemies when in Off Hand" }, } }, + ["BurningDamageToChilledEnemiesUniqueOneHandAxe2"] = { affix = "", "100% increased Damage with Ignite inflicted on Chilled Enemies", statOrder = { 7304 }, level = 1, group = "BurningDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1891782369] = { "100% increased Damage with Ignite inflicted on Chilled Enemies" }, } }, + ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(14-18)% increased Trap Throwing Speed" }, } }, + ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1950 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-30)% reduced Trap Throwing Speed" }, } }, + ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2806 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, + ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2806 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1180565017] = { "15% increased Movement Speed for 0 seconds on Throwing a Trap" }, [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, + ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 465 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 15 Trap" }, } }, + ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 465 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 8 Trap" }, } }, + ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 465 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 16 Trap" }, } }, + ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1946 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "(50-75)% reduced Trap Duration" }, } }, + ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1946 }, level = 1, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2001530951] = { "10% reduced Trap Duration" }, } }, + ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 1217 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(30-40)% increased Trap Damage" }, } }, + ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 1217 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(18-28)% increased Trap Damage" }, } }, + ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 1217 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(15-25)% increased Trap Damage" }, } }, + ["ChanceToFreezeShockIgniteUniqueRing21"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "10% chance to Freeze, Shock and Ignite" }, } }, + ["ChanceToFreezeShockIgniteUniqueDescentWand1"] = { affix = "", "4% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "4% chance to Freeze, Shock and Ignite" }, } }, + ["ChanceToFreezeShockIgniteUniqueHelmetDexInt4"] = { affix = "", "5% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "5% chance to Freeze, Shock and Ignite" }, } }, + ["ChanceToFreezeShockIgniteUniqueAmulet19"] = { affix = "", "Always Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "Always Freeze, Shock and Ignite" }, } }, + ["ChanceToFreezeShockIgniteDescentUniqueQuiver1"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "10% chance to Freeze, Shock and Ignite" }, } }, + ["ChanceToFreezeShockIgniteUnique__1"] = { affix = "", "(10-25)% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(10-25)% chance to Freeze, Shock and Ignite" }, } }, + ["ChanceToFreezeShockIgniteUnique__2"] = { affix = "", "(20-25)% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(20-25)% chance to Freeze, Shock and Ignite" }, } }, + ["ChanceToFreezeShockIgniteUnique__3"] = { affix = "", "(5-10)% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(5-10)% chance to Freeze, Shock and Ignite" }, } }, + ["DamageWhileIgnitedUniqueRing18"] = { affix = "", "30% increased Damage while Ignited", statOrder = { 2836 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1686122637] = { "30% increased Damage while Ignited" }, } }, + ["DamageWhileIgnitedUnique__1"] = { affix = "", "(50-70)% increased Damage while Ignited", statOrder = { 2836 }, level = 85, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1686122637] = { "(50-70)% increased Damage while Ignited" }, } }, + ["ArmourWhileFrozenUniqueRing18"] = { affix = "", "+5000 to Armour while Frozen", statOrder = { 2837 }, level = 1, group = "ArmourWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [504366827] = { "+5000 to Armour while Frozen" }, } }, + ["ManaLeechOnShockedEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Shocked Enemies Leeched as Mana", statOrder = { 1740 }, level = 1, group = "ManaLeechOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1831556341] = { "5% of Damage against Shocked Enemies Leeched as Mana" }, } }, + ["ManaLeechPermyriadOnShockedEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Mana against Frozen Enemies", statOrder = { 8298 }, level = 1, group = "ManaLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2908111053] = { "1% of Damage Leeched as Mana against Frozen Enemies" }, } }, + ["EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Energy Shield against Frozen Enemies", statOrder = { 6527 }, level = 1, group = "EnergyShieldLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4091709362] = { "1% of Damage Leeched as Energy Shield against Frozen Enemies" }, } }, + ["LifeLeechOnFrozenEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1712 }, level = 1, group = "LifeLeechOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210079745] = { "5% of Damage against Frozen Enemies Leeched as Life" }, } }, + ["LifeLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1711 }, level = 1, group = "LifeLeechPermyriadOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2614321687] = { "1% of Damage Leeched as Life against Shocked Enemies" }, } }, + ["DamageOnRareMonstersUniqueBelt7"] = { affix = "", "(20-30)% increased Damage with Hits against Rare monsters", statOrder = { 2841 }, level = 1, group = "DamageOnRareMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2137878565] = { "(20-30)% increased Damage with Hits against Rare monsters" }, } }, + ["DamageOnMagicMonstersUnique__1_"] = { affix = "", "(20-30)% increased Damage with Hits against Magic monsters", statOrder = { 6157 }, level = 1, group = "DamageOnMagicMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1278047991] = { "(20-30)% increased Damage with Hits against Magic monsters" }, } }, + ["DamagePerStatusAilmentOnEnemiesUniqueRing21"] = { affix = "", "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy", statOrder = { 6381, 6381.1 }, level = 1, group = "DamagePerStatusAilmentOnEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2605663324] = { "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy" }, } }, + ["ShrineBuffEffectUniqueHelmetDexInt3"] = { affix = "", "(25-50)% increased Effect of Shrine Buffs on you", statOrder = { 2846 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(25-50)% increased Effect of Shrine Buffs on you" }, } }, + ["ShrineBuffEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Shrine Buffs on you", statOrder = { 2846 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1939175721] = { "(50-75)% increased Effect of Shrine Buffs on you" }, } }, + ["ShrineEffectDurationUniqueHelmetDexInt3"] = { affix = "", "(25-50)% increased Duration of Shrine Effects on you", statOrder = { 2847 }, level = 1, group = "ShrineEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1877661946] = { "(25-50)% increased Duration of Shrine Effects on you" }, } }, + ["LocalFlaskLifeOnFlaskDurationEndUniqueFlask3"] = { affix = "", "Recover Full Life at the end of the Effect", statOrder = { 891 }, level = 1, group = "LocalFlaskLifeOnFlaskDurationEnd", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [4078194486] = { "Recover Full Life at the end of the Effect" }, } }, + ["LocalFlaskNoManaCostWhileHealingUniqueFlask4"] = { affix = "", "Skills Cost no Mana during Effect", statOrder = { 1053 }, level = 1, group = "LocalFlaskNoManaCostWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1669220541] = { "Skills Cost no Mana during Effect" }, } }, + ["ShockNearbyEnemyOnShockedKillUniqueRing20"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2848 }, level = 25, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, + ["ShockNearbyEnemyOnShockedKillUniqueDescentTwoHandSword1_"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2848 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, + ["IgniteNearbyEnemyOnIgnitedKillUniqueRing20"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2849 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, + ["IgniteNearbyEnemyOnIgnitedKillUnique__1"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2849 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, + ["GainRareMonsterModsOnKillUniqueBelt7_"] = { affix = "", "When you Kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2851 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you Kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, + ["GainMagicMonsterModsOnKillUnique__1_"] = { affix = "", "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6859 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976991498] = { "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds" }, } }, + ["GainShrineOnRareOrUniqueKillUnique_1"] = { affix = "", "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6913 }, level = 81, group = "GainShrineOnRareOrUniqueKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3493440964] = { "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy" }, } }, + ["GainManaPer2IntelligenceUnique_1"] = { affix = "", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9296 }, level = 1, group = "ManaPer2Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3822999954] = { "+1 to maximum Mana per 2 Intelligence" }, } }, + ["AddedManaRegenerationUniqueBelt8"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-10) Mana per second" }, } }, + ["AddedManaRegenerationUniqueDescentWand1"] = { affix = "", "Regenerate 2 Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 2 Mana per second" }, } }, + ["AddedManaRegenerationUniqueJewel10"] = { affix = "", "Regenerate 3 Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 3 Mana per second" }, } }, + ["AddedManaRegenerationUnique__1"] = { affix = "", "Regenerate (3-6) Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-6) Mana per second" }, } }, + ["AddedManaRegenerationUnique__2"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-10) Mana per second" }, } }, + ["AddedManaRegenerationUnique__3"] = { affix = "", "Regenerate (3-5) Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } }, + ["ArmourWhileNotIgnitedFrozenShockedBelt8"] = { affix = "", "40% increased Armour while not Ignited, Frozen or Shocked", statOrder = { 2852 }, level = 1, group = "ArmourWhileNotIgnitedFrozenShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1164767410] = { "40% increased Armour while not Ignited, Frozen or Shocked" }, } }, + ["ManaShield"] = { affix = "", "Mind Over Matter", statOrder = { 10963 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, + ["ElementalResistancePerEnduranceChargeDescentShield1"] = { affix = "", "+3% to all Elemental Resistances per Endurance Charge", statOrder = { 1643 }, level = 1, group = "ElementalResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1852896268] = { "+3% to all Elemental Resistances per Endurance Charge" }, } }, + ["ReturningProjectilesUniqueDescentBow1"] = { affix = "", "Projectiles Return to you", statOrder = { 2857 }, level = 1, group = "ReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4015038379] = { "Projectiles Return to you" }, } }, + ["CastSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "9% increased Cast Speed when on Full Life", statOrder = { 2023 }, level = 1, group = "CastSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [656291658] = { "9% increased Cast Speed when on Full Life" }, } }, + ["CastSpeedOnLowLifeUniqueDescentHelmet1"] = { affix = "", "20% increased Cast Speed when on Low Life", statOrder = { 2022 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1136768410] = { "20% increased Cast Speed when on Low Life" }, } }, + ["MaximumCriticalStrikeChanceUniqueAmulet17"] = { affix = "", "50% maximum Critical Strike Chance", statOrder = { 2781 }, level = 1, group = "MaximumCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2251704631] = { "50% maximum Critical Strike Chance" }, } }, + ["DamagePerStrengthInMainHandUniqueSceptre6"] = { affix = "", "1% increased Damage per 8 Strength when in Main Hand", statOrder = { 2810 }, level = 1, group = "DamagePerStrengthInMainHand", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [679194784] = { "1% increased Damage per 8 Strength when in Main Hand" }, } }, + ["ArmourPerStrengthInOffHandUniqueSceptre6"] = { affix = "", "1% increased Armour per 16 Strength when in Off Hand", statOrder = { 2811 }, level = 1, group = "ArmourPerStrengthInOffHand", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2192181096] = { "1% increased Armour per 16 Strength when in Off Hand" }, } }, + ["DisplaySocketedGemsSupportedByIronWillUniqueSceptre6"] = { affix = "", "Socketed Gems are Supported by Level 30 Iron Will", statOrder = { 512 }, level = 1, group = "DisplaySocketedGemsSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [906997920] = { "Socketed Gems are Supported by Level 30 Iron Will" }, } }, + ["DisplaySocketedGemsSupportedByIronWillUniqueOneHandMace3"] = { affix = "", "Socketed Gems have Iron Will", statOrder = { 550 }, level = 1, group = "DisplaySocketedGemsHaveIronWill", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [49017695] = { "Socketed Gems have Iron Will" }, } }, + ["LessCriticalStrikeChanceAmulet17"] = { affix = "", "40% less Critical Strike Chance", statOrder = { 2859 }, level = 1, group = "CriticalStrikeChanceFinal", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4181057577] = { "40% less Critical Strike Chance" }, } }, + ["ChanceToDodgeUniqueBootsDex7"] = { affix = "", "+12% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+12% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeUniqueJewel46"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsUniqueJewel46"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsUnique__1"] = { affix = "", "+50% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+50% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+15% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeUniqueRing37"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, + ["ChanceToDodgeUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+3% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+15% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsUniqueBodyDex1"] = { affix = "", "+30% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+30% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsUnique__2"] = { affix = "", "+20% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+20% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsUnique__3_"] = { affix = "", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(10-12)% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+3% chance to Suppress Spell Damage" }, } }, + ["ChanceToDodgeSpellsImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsUnique__1_"] = { affix = "", "+(26-32)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(26-32)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsUnique__2"] = { affix = "", "+(20-25)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-25)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsUnique__3"] = { affix = "", "+(0-30)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 50, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(0-30)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsUnique__4"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-10)% chance to Suppress Spell Damage" }, } }, + ["ChanceToSuppressSpellsUnique__5"] = { affix = "", "+(15-20)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(15-20)% chance to Suppress Spell Damage" }, } }, + ["EnduranceChargeOnKillUniqueBodyStrDex3"] = { affix = "", "You gain an Endurance Charge on Kill", statOrder = { 2862 }, level = 1, group = "EnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2064503808] = { "You gain an Endurance Charge on Kill" }, } }, + ["LoseEnduranceChargesWhenHitUniqueBodyStrDex3"] = { affix = "", "You lose all Endurance Charges when Hit", statOrder = { 2860 }, level = 1, group = "LoseEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2994477068] = { "You lose all Endurance Charges when Hit" }, } }, + ["GainOnslaughtWhenHitUniqueBodyStrDex3"] = { affix = "", "You gain Onslaught for 5 seconds per Endurance Charge when Hit", statOrder = { 2876 }, level = 1, group = "GainOnslaughtWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3714207489] = { "You gain Onslaught for 5 seconds per Endurance Charge when Hit" }, } }, + ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2865 }, level = 1, group = "LeechLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1955882986] = { "Regenerate (6-8) Life over 1 second when you Cast a Spell" }, } }, + ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2855 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [963290143] = { "Phasing" }, } }, + ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3476 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, + ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 2265 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "10% increased Fire Damage taken" }, } }, + ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 2260 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(200-100) Fire Damage taken from Hits" }, } }, + ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2871 }, 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 = { 2870 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, + ["CullingAgainstFrozenEnemiesUnique__1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 6072 }, level = 1, group = "CullingAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2664667514] = { "Culling Strike against Frozen Enemies" }, } }, + ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2873 }, 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 = { 6084 }, 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 = { 6084 }, 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 = { 6084 }, 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 = { 190 }, 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 = { 190 }, 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 = { 190 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, + ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 190 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, + ["PoisonSpreadAndHealOnPoisonedKillUniqueDagger8"] = { affix = "", "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and", "Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres", statOrder = { 2885, 2885.1 }, level = 82, group = "PoisonSpreadAndHealOnPoisonedKill", weightKey = { }, weightVal = { }, modTags = { "poison", "resource", "life", "chaos", "ailment" }, tradeHashes = { [456916387] = { "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and", "Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres" }, [1168603868] = { "" }, } }, + ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 2194 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "100% increased Duration of Curses on you" }, } }, + ["ReducedSelfCurseDurationUniqueShieldDex3"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 2194 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, + ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3337 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, + ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "Elemental Resistances are Zero", statOrder = { 2869 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [85576425] = { "Elemental Resistances are Zero" }, } }, + ["AllDefencesUniqueHelmetStrInt4_"] = { affix = "", "(18-22)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(18-22)% increased Global Defences" }, } }, + ["AllDefencesVictorAmulet"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-10)% increased Global Defences" }, } }, + ["AllDefencesUnique__1"] = { affix = "", "5% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "5% increased Global Defences" }, } }, + ["AllDefencesUnique__2"] = { affix = "", "100% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "100% increased Global Defences" }, } }, + ["AllDefencesUnique__3"] = { affix = "", "100% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "100% increased Global Defences" }, } }, + ["AllDefencesUnique__4"] = { affix = "", "(15-20)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(15-20)% increased Global Defences" }, } }, + ["AllDefencesUnique__5"] = { affix = "", "(10-15)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(10-15)% increased Global Defences" }, } }, + ["DodgeImplicitMarakethSword1"] = { affix = "", "15% chance to Maim on Hit", statOrder = { 8100 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "15% chance to Maim on Hit" }, } }, + ["DodgeImplicitMarakethSword2"] = { affix = "", "20% chance to Maim on Hit", statOrder = { 8100 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "20% chance to Maim on Hit" }, } }, + ["AllDefensesImplicitJetRing"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-10)% increased Global Defences" }, } }, + ["LightningDamageOnBlockUniqueHelmetStrInt4"] = { affix = "", "Reflects 1 to (180-220) Lightning Damage to Attackers on Block", statOrder = { 2613 }, level = 1, group = "LightningDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1810011556] = { "Reflects 1 to (180-220) Lightning Damage to Attackers on Block" }, } }, + ["DuplicatesRingStats"] = { affix = "", "Reflects opposite Ring", statOrder = { 2887 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, + ["DegenerationDamageUniqueDagger8"] = { affix = "", "30% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "30% increased Damage over Time" }, } }, + ["DegenerationDamageEssence_1"] = { affix = "", "(14-20)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(14-20)% increased Damage over Time" }, } }, + ["DegenerationDamageUnique__1"] = { affix = "", "25% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "25% increased Damage over Time" }, } }, + ["DegenerationDamageUnique__2"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(20-30)% increased Damage over Time" }, } }, + ["DegenerationDamageUnique__3"] = { affix = "", "(30-40)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(30-40)% increased Damage over Time" }, } }, + ["DegenerationDamageUnique__4__"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(8-12)% increased Damage over Time" }, } }, + ["DegenerationDamageUnique__5"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(20-30)% increased Damage over Time" }, } }, + ["DegenerationDamageImplicit1"] = { affix = "", "(14-18)% increased Damage over Time", statOrder = { 1233 }, level = 85, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(14-18)% increased Damage over Time" }, } }, + ["FishingExoticFishUniqueFishingRod1"] = { affix = "", "You can catch Exotic Fish", statOrder = { 2888 }, level = 1, group = "FishingExoticFish", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1471580517] = { "You can catch Exotic Fish" }, } }, + ["FireShocksUniqueHelmetDexInt4"] = { affix = "", "Your Fire Damage can Shock but not Ignite", statOrder = { 2890 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Your Fire Damage can Shock but not Ignite" }, } }, + ["ColdIgnitesUniqueHelmetDexInt4_"] = { affix = "", "Your Cold Damage can Ignite but not Freeze or Chill", statOrder = { 2891 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Your Cold Damage can Ignite but not Freeze or Chill" }, } }, + ["LightningFreezesUniqueHelmetDexInt4"] = { affix = "", "Your Lightning Damage can Freeze but not Shock", statOrder = { 2892 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Your Lightning Damage can Freeze but not Shock" }, } }, + ["SocketedCursesAreReflectedUniqueGlovesStrInt1"] = { affix = "", "Hexes applied by Socketed Curse Skills are Reflected back to you", statOrder = { 549 }, level = 1, group = "SocketedCursesAreReflected", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [32859524] = { "Hexes applied by Socketed Curse Skills are Reflected back to you" }, } }, + ["ChillImmunityWhenChilledUniqueGlovesStrInt1"] = { affix = "", "You cannot be Chilled for 3 seconds after being Chilled", statOrder = { 2927 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 3 seconds after being Chilled" }, } }, + ["FreezeImmunityWhenFrozenUniqueGlovesStrInt1"] = { affix = "", "You cannot be Frozen for 3 seconds after being Frozen", statOrder = { 2929 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 3 seconds after being Frozen" }, } }, + ["IgniteImmunityWhenIgnitedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Ignited for 3 seconds after being Ignited", statOrder = { 2930 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 3 seconds after being Ignited" }, } }, + ["ShockImmunityWhenShockedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Shocked for 3 seconds after being Shocked", statOrder = { 2931 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 3 seconds after being Shocked" }, } }, + ["GrantFrenzyChargesToAlliesOnDeathUniqueGlovesStrInt1"] = { affix = "", "You grant (4-6) Frenzy Charges to allies on Death", statOrder = { 2933 }, level = 1, group = "GrantFrenzyChargesToAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2105456174] = { "You grant (4-6) Frenzy Charges to allies on Death" }, } }, + ["PowerChargeOnNonCritUniqueRing17"] = { affix = "", "Gain a Power Charge on Non-Critical Strike", statOrder = { 2934 }, level = 1, group = "PowerChargeOnNonCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1592029809] = { "Gain a Power Charge on Non-Critical Strike" }, } }, + ["ConsumeAllPowerChargesOnCritUniqueRing17"] = { affix = "", "Lose all Power Charges on Critical Strike", statOrder = { 2935 }, level = 75, group = "ConsumeAllPowerChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2735889191] = { "Lose all Power Charges on Critical Strike" }, } }, + ["CastSocketedLightningSpellsOnHit"] = { affix = "", "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered", statOrder = { 847, 847.1 }, level = 1, group = "CastSocketedLightningSpellsOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster" }, tradeHashes = { [654971543] = { "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered" }, } }, + ["UndyingBreathCurseAuraDisplayUniqueStaff5"] = { affix = "", "Nearby Enemies have 18% increased Effect of Curses on them", statOrder = { 2728 }, level = 1, group = "UndyingBreathCurseAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "caster", "aura", "curse" }, tradeHashes = { [443525707] = { "Nearby Enemies have 18% increased Effect of Curses on them" }, } }, + ["UndyingBreathDamageAuraDisplayUniqueStaff5"] = { affix = "", "Nearby allies gain 18% increased Damage", statOrder = { 2940 }, level = 1, group = "UndyingBreathDamageAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3175679225] = { "Nearby allies gain 18% increased Damage" }, } }, + ["CurseAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Hex Skills", statOrder = { 2248 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "18% increased Area of Effect of Hex Skills" }, } }, + ["CurseAreaOfEffectUniqueQuiver5"] = { affix = "", "40% reduced Area of Effect of Hex Skills", statOrder = { 2248 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "40% reduced Area of Effect of Hex Skills" }, } }, + ["CurseAreaOfEffectUnique__1"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2248 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "60% increased Area of Effect of Hex Skills" }, } }, + ["CurseAreaOfEffectUnique__2_"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2248 }, level = 76, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "60% increased Area of Effect of Hex Skills" }, } }, + ["CurseAreaOfEffectUnique__3"] = { affix = "", "50% increased Area of Effect of Hex Skills", statOrder = { 2248 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "50% increased Area of Effect of Hex Skills" }, } }, + ["CurseAreaOfEffectUnique__4"] = { affix = "", "(25-50)% reduced Area of Effect of Hex Skills", statOrder = { 2248 }, level = 40, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(25-50)% reduced Area of Effect of Hex Skills" }, } }, + ["AuraIncreasedIncreasedAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "18% increased Area of Effect of Aura Skills" }, } }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_1"] = { affix = "", "15% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 97, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "15% increased Area of Effect of Aura Skills" }, } }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_2"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_3"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_4"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_5"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_6"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-30)% increased Area of Effect of Aura Skills" }, } }, + ["ColdDamageModsApplyToColdAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4639, 4639.1 }, level = 53, group = "ColdDamageAppliesToColdAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "aura" }, tradeHashes = { [935686778] = { "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, + ["LightningDamageModsApplyToLightningAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4646, 4646.1 }, level = 53, group = "LightningDamageAppliesToLightningAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "aura" }, tradeHashes = { [232010308] = { "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, + ["FireDamageModsApplyToFireAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4642, 4642.1 }, level = 53, group = "FireDamageAppliesToFireAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [1320057994] = { "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, + ["PhysicalDamageModsApplyToPhysicalAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4649, 4649.1 }, level = 53, group = "PhysicalDamageAppliesToPhysicalAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "physical", "aura" }, tradeHashes = { [1092506510] = { "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, + ["ChaosDamageModsApplyToChaosAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4638, 4638.1 }, level = 53, group = "ChaosDamageAppliesToChaosAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "chaos", "aura" }, tradeHashes = { [2628865242] = { "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%" }, } }, + ["DamageTakenUniqueStaff5"] = { affix = "", "18% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "18% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AuraEffectGlobalUnique__1"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "2% increased Attack Speed per Frenzy Charge", statOrder = { 2072 }, level = 1, group = "AttackSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3548561213] = { "2% increased Attack Speed per Frenzy Charge" }, } }, + ["AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "6% increased Accuracy Rating per Frenzy Charge", statOrder = { 2073 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "6% increased Accuracy Rating per Frenzy Charge" }, } }, + ["FrenzyChargeDurationPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "10% reduced Frenzy Charge Duration per Frenzy Charge", statOrder = { 2074 }, level = 1, group = "FrenzyChargeDurationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2543931078] = { "10% reduced Frenzy Charge Duration per Frenzy Charge" }, } }, + ["PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "+5% to Damage over Time Multiplier for Poison per Frenzy Charge", statOrder = { 9826 }, level = 1, group = "PoisonDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [3504652942] = { "+5% to Damage over Time Multiplier for Poison per Frenzy Charge" }, } }, + ["AtMaximumFrenzyChargesPoisonUniqueGlovesDexInt5"] = { affix = "", "While at maximum Frenzy Charges, Attacks Poison Enemies", statOrder = { 2075 }, level = 1, group = "AtMaximumFrenzyChargesPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [413362507] = { "While at maximum Frenzy Charges, Attacks Poison Enemies" }, } }, + ["AtMaximumFrenzyChargesChanceToPoisonUnique_1_"] = { affix = "", "Attacks have 60% chance to Poison while at maximum Frenzy Charges", statOrder = { 2076 }, level = 1, group = "AtMaximumFrenzyChargesChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3654074125] = { "Attacks have 60% chance to Poison while at maximum Frenzy Charges" }, } }, + ["NecromanticAegisUniqueHelmetStrDex5"] = { affix = "", "All bonuses from an Equipped Shield apply to your Minions instead of you", statOrder = { 2215 }, level = 1, group = "NecromanticAegis", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2739284880] = { "All bonuses from an Equipped Shield apply to your Minions instead of you" }, } }, + ["MinionBlockChanceUniqueHelmetStrDex5"] = { affix = "", "Minions have +10% Chance to Block Attack Damage", statOrder = { 2937 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +10% Chance to Block Attack Damage" }, } }, + ["MinionLifeRegenerationUniqueHelmetStrDex5"] = { affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2945 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 2% of Life per second" }, } }, + ["MinionLifeRegenerationUnique__1"] = { affix = "", "Minions Regenerate 1% of Life per second", statOrder = { 2945 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 1% of Life per second" }, } }, + ["MinionArmourUniqueHelmetStrDex5"] = { affix = "", "Minions have +(300-350) to Armour", statOrder = { 2939 }, level = 1, group = "MinionArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [2048970144] = { "Minions have +(300-350) to Armour" }, } }, + ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Global Accuracy Rating" }, } }, + ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-40)% increased Global Accuracy Rating" }, } }, + ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 551 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } }, + ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 194 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+5 to Level of Socketed Vaal Gems" }, } }, + ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 199 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2574694107] = { "-5 to Level of Socketed Non-Vaal Gems" }, } }, + ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 194 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+2 to Level of Socketed Vaal Gems" }, } }, + ["RingHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 70 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["QuiverHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 70 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["AmuletHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 70 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["BeltHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 70 }, level = 70, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["HasSixSocketsUnique__1"] = { affix = "", "Has 6 Sockets", statOrder = { 70 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 6 Sockets" }, } }, + ["HasOneSocketUnique__1"] = { affix = "", "Has 1 Socket", statOrder = { 70 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["HasOneSocketUnique__2"] = { affix = "", "Has 1 Socket", statOrder = { 70 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["HasOneSocketUnique__3"] = { affix = "", "Has 1 Socket", statOrder = { 70 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["HasTwoSocketsUnique__1"] = { affix = "", "Has 2 Sockets", statOrder = { 70 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 2 Sockets" }, } }, + ["HasTwoSocketsUnique__2"] = { affix = "", "Has 2 Sockets", statOrder = { 70 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 2 Sockets" }, } }, + ["HasThreeSocketsUnique__1_"] = { affix = "", "Has 3 Sockets", statOrder = { 70 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, + ["IncreasedProjectileDamageUniqueQuiver4"] = { affix = "", "(15-20)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(15-20)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUniqueStaff10"] = { affix = "", "(60-100)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(60-100)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUniqueBootsDexInt4"] = { affix = "", "(20-40)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(20-40)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique__5"] = { affix = "", "20% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "20% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique__1"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique__2"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique___3"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique___4"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique__6"] = { affix = "", "30% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "30% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique__7"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique___8"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique___9"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(7-10)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique___10_"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, + ["IncreasedProjectileDamageUnique___11"] = { affix = "", "(25-35)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(25-35)% increased Projectile Damage" }, } }, + ["SpellBlockPercentageUniqueQuiver4"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-15)% Chance to Block Spell Damage" }, } }, + ["SpellBlockPercentageUniqueShieldDex6"] = { affix = "", "(8-12)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(8-12)% Chance to Block Spell Damage" }, } }, + ["SupportedByEchoUniqueStaff6"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Echo", statOrder = { 234 }, level = 1, group = "DisplaySupportedByLevel1GreaterEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2530022765] = { "Socketed Gems are Supported by Level 1 Greater Spell Echo" }, } }, + ["SupportedByEchoUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 423 }, level = 1, group = "DisplaySupportedByEchoLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [725896422] = { "Socketed Gems are Supported by Level 10 Spell Echo" }, } }, + ["SupportedByEchoUniqueWand8New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 504 }, level = 1, group = "DisplaySupportedByEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [438778966] = { "Socketed Gems are Supported by Level 10 Spell Echo" }, } }, + ["ControlledDestructionSupportUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 536 }, level = 1, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, + ["SupportedByArcaneSurgeUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 235 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 10 Arcane Surge" }, } }, + ["SpellDodgeUniqueBootsDex7_"] = { affix = "", "+(21-24)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+(21-24)% chance to Suppress Spell Damage" }, } }, + ["SpellDodgeUniqueBootsDex7New"] = { affix = "", "+(20-26)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-26)% chance to Suppress Spell Damage" }, } }, + ["FireDamageLifeLeechPerMyriadUniqueBelt9a_"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1692 }, level = 85, group = "FireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2760596458] = { "100% of Fire Damage Leeched as Life" }, } }, + ["FireDamageLifeLeechPermyriadUniqueBelt9aNew"] = { affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 85, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.6% of Fire Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechPerMyriadUniqueBelt9b"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1697 }, level = 85, group = "ColdDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [280832469] = { "100% of Cold Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechPermyriadUniqueBelt9bNew"] = { affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 85, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.6% of Cold Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechPerMyriadUniqueBelt9c"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1701 }, level = 85, group = "LightningDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [888622567] = { "100% of Lightning Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechPermyriadUniqueBelt9cNew"] = { affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 85, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.6% of Lightning Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechPerMyriadUniqueBelt9d"] = { affix = "", "100% of Physical Damage Leeched as Life", statOrder = { 1688 }, level = 85, group = "PhysicalDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3992463881] = { "100% of Physical Damage Leeched as Life" }, } }, + ["PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew"] = { affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 85, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.6% of Physical Damage Leeched as Life" }, } }, + ["IgniteChanceWhileUsingFlaskUniqueBelt9a"] = { affix = "", "(20-30)% chance to Ignite during any Flask Effect", statOrder = { 2956 }, level = 85, group = "ChanceToIgnightWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [3888064854] = { "(20-30)% chance to Ignite during any Flask Effect" }, } }, + ["FreezeChanceWhileUsingFlaskUniqueBelt9b"] = { affix = "", "(20-30)% chance to Freeze during any Flask Effect", statOrder = { 2957 }, level = 85, group = "ChanceToFreezeWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [2332726055] = { "(20-30)% chance to Freeze during any Flask Effect" }, } }, + ["ShockChanceWhileUsingFlaskUniqueBelt9c"] = { affix = "", "(20-30)% chance to Shock during any Flask Effect", statOrder = { 2958 }, level = 85, group = "ChanceToShockWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [796406325] = { "(20-30)% chance to Shock during any Flask Effect" }, } }, + ["ReducedStunThresholdWhileUsingFlaskUniqueBelt9d"] = { affix = "", "25% reduced Enemy Stun Threshold during any Flask Effect", statOrder = { 2961 }, level = 85, group = "ReducedStunThresholdWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4228951304] = { "25% reduced Enemy Stun Threshold during any Flask Effect" }, } }, + ["AddedChaosDamageAsPercentOfPhysicalWhileUsingFlaskUniqueFlask5"] = { affix = "", "Gain (5-8)% of Physical Damage as Extra Chaos Damage during effect", statOrder = { 1054 }, level = 85, group = "AddedChaosDamageAsPercentOfPhysicalWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [2818167778] = { "Gain (5-8)% of Physical Damage as Extra Chaos Damage during effect" }, } }, + ["AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5"] = { affix = "", "Gain (5-8)% of Elemental Damage as Extra Chaos Damage during effect", statOrder = { 1044 }, level = 85, group = "AddedChaosDamageAsPercentOfElementalWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3562241510] = { "Gain (5-8)% of Elemental Damage as Extra Chaos Damage during effect" }, } }, + ["ElementalDamagePercentAddedAsChaosUnique__1"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["ElementalDamagePercentAddedAsChaosUnique__2"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["ElementalDamagePercentAddedAsChaosUnique__3"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-20)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["ElementalDamagePercentAddedAsChaosUnique__4"] = { affix = "", "Gain (5-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (5-8)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["ChaosDamageLifeLeechPerMyriadWhileUsingFlaskUniqueFlask5"] = { affix = "", "1000% of Chaos Damage Leeched as Life during Effect", statOrder = { 1064 }, level = 85, group = "ChaosDamageLifeLeechWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "chaos" }, tradeHashes = { [425162810] = { "1000% of Chaos Damage Leeched as Life during Effect" }, } }, + ["ChaosDamageLifeLeechPermyriadWhileUsingFlaskUniqueFlask5New"] = { affix = "", "2% of Chaos Damage Leeched as Life during Effect", statOrder = { 1049 }, level = 85, group = "ChaosDamageLifeLeechPermyriadWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "chaos" }, tradeHashes = { [1341148741] = { "2% of Chaos Damage Leeched as Life during Effect" }, } }, + ["FireDamageLifeLeechCorrupted"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1692 }, level = 1, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2760596458] = { "100% of Fire Damage Leeched as Life" }, } }, + ["ColdDamageLifeLeechCorrupted_"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1697 }, level = 1, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [280832469] = { "100% of Cold Damage Leeched as Life" }, } }, + ["LightningDamageLifeLeechCorrupted"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1701 }, level = 1, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [888622567] = { "100% of Lightning Damage Leeched as Life" }, } }, + ["DamageConversionFireUnique__1"] = { affix = "", "60% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, } }, + ["AdditionalTrapsUnique__1"] = { affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2278 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to 1 additional Trap placed at a time" }, } }, + ["AdditionalTrapsUnique__2__"] = { affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2278 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have 5 fewer Traps placed at a time" }, } }, + ["AdditionalTrapsThresholdJewel"] = { affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2278 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to 1 additional Trap placed at a time" }, } }, + ["PierceCurruption"] = { affix = "", "Arrows Pierce 1 additional Target", statOrder = { 4829 }, level = 1, group = "CorruptionBowArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3492025235] = { "Arrows Pierce 1 additional Target" }, } }, + ["AdditionalPierceUnique__1"] = { affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1814 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce 2 additional Targets" }, } }, + ["PierceChanceUniqueJewel41"] = { affix = "", "Projectiles Pierce an additional Target", statOrder = { 9895 }, level = 1, group = "AdditionalPiercePer15Old", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3004680641] = { "Projectiles Pierce an additional Target" }, } }, + ["AdditionalPierceUniqueJewel__1"] = { affix = "", "Projectiles Pierce an additional Target", statOrder = { 1813 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["CurseOnHitTemporalChainsUnique__1"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2548 }, level = 1, group = "CurseOnHitLevelTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, + ["CurseOnHitCriticalWeaknessUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 779 }, level = 1, group = "CurseOnHitCriticalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CurseOnHitCriticalWeaknessUniqueNewUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 819 }, level = 1, group = "TriggerOnRareAssassinsMark", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["SupportedByCastOnStunUnique___1"] = { affix = "", "Socketed Gems are supported by Level 10 Cast when Stunned", statOrder = { 488 }, level = 15, group = "SupportedByCastOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1079148723] = { "Socketed Gems are supported by Level 10 Cast when Stunned" }, } }, + ["SupportedByMeleeSplashUnique__1_"] = { affix = "", "Socketed Gems are supported by Level 30 Melee Splash", statOrder = { 482 }, level = 1, group = "SupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 30 Melee Splash" }, } }, + ["SupportedByAddedFireDamageUnique__1_"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 473 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 10 Added Fire Damage" }, } }, + ["PuritySkillUniqueAmulet22"] = { affix = "", "Grants Level 10 Purity of Elements Skill", statOrder = { 657 }, level = 7, group = "PuritySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 10 Purity of Elements Skill" }, } }, + ["HatredSkillUniqueDescentClaw1"] = { affix = "", "Grants Level 20 Hatred Skill", statOrder = { 661 }, level = 1, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 20 Hatred Skill" }, } }, + ["ChanceToBeCritJewelUnique__1"] = { affix = "", "Hits have (140-200)% increased Critical Strike Chance against you", statOrder = { 3166 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [165218607] = { "Hits have (140-200)% increased Critical Strike Chance against you" }, } }, + ["ChanceToBeCritJewelUpdatedUnique__1"] = { affix = "", "Hits have (140-200)% increased Critical Strike Chance against you", statOrder = { 3164 }, level = 1, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4270096386] = { "Hits have (140-200)% increased Critical Strike Chance against you" }, } }, + ["SilenceImmunityUnique__1"] = { affix = "", "You cannot be Cursed with Silence", statOrder = { 3128 }, level = 36, group = "ImmuneToSilence", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, + ["UniqueSpecialCorruptionAreaOfEffect_"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, + ["UniqueSpecialCorruptionSkillEffectDuration"] = { affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1918 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, + ["UniqueSpecialCorruptionSocketedGemsManaMultiplier_"] = { affix = "", "Socketed Skill Gems get a 80% Cost & Reservation Multiplier", statOrder = { 541 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 80% Cost & Reservation Multiplier" }, } }, + ["UniqueSpecialCorruptionCooldownRecoverySpeed__"] = { affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, + ["UniqueSpecialCorruptionItemQuantity_"] = { affix = "", "(5-7)% increased Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(5-7)% increased Quantity of Items found" }, } }, + ["UniqueSpecialCorruptionAdditionalProjectile"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1815 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, + ["UniqueSpecialCorruptionAuraEffect"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["UniqueSpecialCorruptionCurseEffect___"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2622 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, + ["UniqueSpecialCorruptionSocketedGemLevel"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["UniqueSpecialCorruptionAllMinCharges"] = { affix = "", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9390 }, level = 1, group = "MinimumEndurancePowerFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "power_charge", "frenzy_charge" }, tradeHashes = { [66303477] = { "+1 to Minimum Endurance, Frenzy and Power Charges" }, } }, + ["UniqueSpecialCorruptionNearbyEnemiesBlinded"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3432 }, level = 1, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, + ["UniqueSpecialCorruptionNearbyEnemiesMalediction"] = { affix = "", "Nearby Enemies have Malediction", statOrder = { 3434 }, level = 1, group = "NearbyEnemiesHaveMalediction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2774148053] = { "Nearby Enemies have Malediction" }, } }, + ["UniqueSpecialCorruptionNearbyEnemiesCrushed"] = { affix = "", "Nearby Enemies are Crushed", statOrder = { 3433 }, level = 1, group = "NearbyEnemiesAreCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3608782127] = { "Nearby Enemies are Crushed" }, } }, + ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Life and Mana Leech from Critical Strikes are instant", statOrder = { 2564 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3389184522] = { "Life and Mana Leech from Critical Strikes are instant" }, } }, + ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(270-340)% increased Armour, Evasion and Energy Shield" }, } }, + ["MinionUnholyMightOnKillUniqueBodyInt9"] = { affix = "", "Minions gain Unholy Might for 10 seconds on Kill", statOrder = { 2952 }, level = 1, group = "MinionUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3835570161] = { "Minions gain Unholy Might for 10 seconds on Kill" }, } }, + ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4824 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3647471922] = { "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce" }, } }, + ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4823 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1019891080] = { "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce" }, } }, + ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2954 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, + ["ElementalDamageLeechedAsLifeUniqueSceptre7"] = { affix = "", "100% of Elemental Damage Leeched as Life", statOrder = { 1708 }, level = 1, group = "ElementalDamageLeechedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3780129663] = { "100% of Elemental Damage Leeched as Life" }, } }, + ["ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_"] = { affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1709 }, level = 1, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [720395808] = { "0.2% of Elemental Damage Leeched as Life" }, } }, + ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 195 }, 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 = { 195 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, + ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 195 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, + ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1812 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, + ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1812 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +2 times" }, } }, + ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1812 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, + ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies", statOrder = { 2968 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies" }, } }, + ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1262 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [17354819] = { "100% increased Melee Damage against Ignited Enemies" }, } }, + ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1260 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1138694108] = { "100% increased Melee Damage against Shocked Enemies" }, } }, + ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1258 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [298331790] = { "100% increased Melee Damage against Frozen Enemies" }, } }, + ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2732 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, + ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2731 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3733737728] = { "Projectiles have (15-20)% chance to Freeze" }, } }, + ["ProjectileIgniteChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Ignite", statOrder = { 2730 }, level = 1, group = "ProjectileIgniteChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4260460340] = { "Projectiles have (15-20)% chance to Ignite" }, } }, + ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 494 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } }, + ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 494 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 10 Life Leech" }, } }, + ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 495 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2178803872] = { "Socketed Gems are supported by Level 1 Chance to Bleed" }, } }, + ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2478 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } }, + ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2775 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3836017971] = { "Light Radius is based on Energy Shield instead of Life" }, } }, + ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2962 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3277537093] = { "-(50-40) Physical Damage taken from Hits by Animals" }, } }, + ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(80-100)% increased Lightning Damage" }, } }, + ["WeaponPhysicalDamageAddedAsRandomElementUniqueBow11"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2969 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, + ["WeaponPhysicalDamageAddedAsRandomElementDescentUniqueQuiver1"] = { affix = "", "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2969 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, + ["WeaponPhysicalDamageAddedAsRandomElementUnique__1__"] = { affix = "", "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2969 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, + ["WeaponPhysicalDamageAddedAsColdOrLightningUnique__1"] = { affix = "", "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage", statOrder = { 4404 }, level = 1, group = "WeaponPhysicalDamageAddedAsColdOrLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "lightning", "attack" }, tradeHashes = { [1023968711] = { "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage" }, } }, + ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2964 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1625103793] = { "1% increased Damage taken per Frenzy Charge" }, } }, + ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2965 }, 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 = { 2966 }, 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 = { 3198 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, + ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10988 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["UnwaveringStanceUnique_2"] = { affix = "", "Unwavering Stance", statOrder = { 10988 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1587 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, + ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of Life on use", statOrder = { 899 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2629106530] = { "Recover (75-100)% of Life on use" }, } }, + ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 900 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3232201443] = { "25% of Maximum Life taken as Chaos Damage per second" }, } }, + ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2971 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, tradeHashes = { [2179619644] = { "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage" }, } }, + ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 636 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3541114083] = { "Grants Level 25 Bear Trap Skill" }, } }, + ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2972 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1936544447] = { "25% chance to gain a Power Charge when you Throw a Trap" }, } }, + ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Strike Chance per 8 Strength", statOrder = { 2973 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3068290007] = { "1% increased Critical Strike Chance per 8 Strength" }, } }, + ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2974 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2047819517] = { "(25-40)% increased Attack Speed while Ignited" }, } }, + ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2974 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2047819517] = { "(10-20)% increased Attack Speed while Ignited" }, } }, + ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2975 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(25-40)% increased Cast Speed while Ignited" }, } }, + ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2975 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, + ["IncreasedChanceToIgniteUniqueRing24"] = { affix = "", "(5-10)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(5-10)% chance to Ignite" }, } }, + ["IncreasedChanceToIgniteUniqueRing31"] = { affix = "", "10% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } }, + ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2982 }, 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 = { 2982 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, + ["IncreasedChanceToIgniteUnique__1"] = { affix = "", "2% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "2% chance to Ignite" }, } }, + ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Strike", statOrder = { 8115 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Strike" }, } }, + ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Strikes Poison the Enemy", statOrder = { 2807 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Strikes Poison the Enemy" }, } }, + ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 1036 }, 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 = { 1036 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(35-50)% Chance to Block Attack Damage during Effect" }, } }, + ["SpellBlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(4-6)% Chance to Block Spell Damage during Effect", statOrder = { 1056 }, level = 85, group = "SpellBlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [215754572] = { "+(4-6)% Chance to Block Spell Damage during Effect" }, } }, + ["SpellBlockIncreasedDuringFlaskEffectUnique__1_"] = { affix = "", "+(20-30)% Chance to Block Spell Damage during Effect", statOrder = { 1056 }, level = 85, group = "SpellBlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [215754572] = { "+(20-30)% Chance to Block Spell Damage during Effect" }, } }, + ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2980 }, 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 and Ailments against Ignited Enemies", statOrder = { 2987 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [485151258] = { "(25-40)% increased Damage with Hits and Ailments against Ignited Enemies" }, } }, + ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 3003 }, 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 = { 2994 }, 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 = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-20)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-35)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-120)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(80-120)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-40)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 1409 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(17-23)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "30% increased Chaos Damage" }, } }, + ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "100% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "100% increased total Recovery per second from Life Leech" }, } }, + ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7483 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [2314393054] = { "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech" }, } }, + ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "50% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "50% increased total Recovery per second from Life Leech" }, } }, + ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "(10-20)% reduced total Recovery per second from Life Leech", statOrder = { 2180 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(10-20)% reduced total Recovery per second from Life Leech" }, } }, + ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "(500-1000)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(500-1000)% increased total Recovery per second from Life Leech" }, } }, + ["IncreasedManaLeechRateUnique__1"] = { affix = "", "(500-1000)% increased total Recovery per second from Mana Leech", statOrder = { 2181 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [690135178] = { "(500-1000)% increased total Recovery per second from Mana Leech" }, } }, + ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1431 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (90-130) to (140-190) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1431 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (48-56) to (73-84) Chaos Damage to Spells" }, } }, + ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1431 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (16-21) to (31-36) Chaos Damage to Spells" }, } }, + ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of Life on Rampage", statOrder = { 2988 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of Life on Rampage" }, } }, + ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2989 }, 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 = { 2990 }, 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 = { 6812 }, 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 = { 3001 }, 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 = { 3002 }, 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 = { 2992 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "10% Global chance to Blind Enemies on hit" }, } }, + ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2995 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1384864963] = { "Regenerate 0.2 Life per second per Level" }, } }, + ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Strike Chance per Level", statOrder = { 2996 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3081076859] = { "3% increased Global Critical Strike Chance per Level" }, } }, + ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2997 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [63607615] = { "1% increased Attack Damage per Level" }, } }, + ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2998 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, + ["FlaskChargesOnCritUniqueTwoHandMace__1"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2999 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskChargesOnCritUniqueTwoHandMace__2"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2999 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, + ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2999 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Strike" }, } }, + ["LifeLeechOnCritUniqueTwoHandAxe8"] = { affix = "", "600% of Damage Leeched as Life on Critical Strike", statOrder = { 1717 }, level = 1, group = "LifeLeechOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [180850565] = { "600% of Damage Leeched as Life on Critical Strike" }, } }, + ["LifeLeechOnCritPermyriadUniqueTwoHandAxe8"] = { affix = "", "1.2% of Damage Leeched as Life on Critical Strike", statOrder = { 1718 }, level = 1, group = "LifeLeechOnCritPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [958088871] = { "1.2% of Damage Leeched as Life on Critical Strike" }, } }, + ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 3004 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3226921326] = { "" }, [2736066171] = { "Enemies you Attack have 20% chance to Reflect 0 to 0 Chaos Damage to you" }, } }, + ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10930 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10930 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10930 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10929, 10929.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, + ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10930 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10930 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 3008 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 3008 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 3006 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1064067689] = { "Gain 1 Mana on Kill per Level" }, } }, + ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 3007 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [294153754] = { "Gain 1 Energy Shield on Kill per Level" }, } }, + ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 196 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, + ["LocalIncreaseSocketedActiveSkillGemLevelUnique__1"] = { affix = "", "+12 to Level of Socketed Skill Gems", statOrder = { 196 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [524797741] = { "+12 to Level of Socketed Skill Gems" }, } }, + ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 3010 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2094646950] = { "1% increased Elemental Damage per Level" }, } }, + ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 3011 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4084331136] = { "1% increased Chaos Damage per Level" }, } }, + ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 3005 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, + ["UnholyMightOnRampageUniqueGlovesDexInt6"] = { affix = "", "Gain Unholy Might for 3 seconds on Rampage", statOrder = { 3009 }, level = 1, group = "UnholyMightOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [757315075] = { "Gain Unholy Might for 3 seconds on Rampage" }, } }, + ["ReduceGlobalFlatManaCostUnique__1"] = { affix = "", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1914 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-(8-4) to Total Mana Cost of Skills" }, } }, + ["IncreaseGlobalFlatManaCostUnique__1"] = { affix = "", "+50 to Total Mana Cost of Skills", statOrder = { 1914 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "+50 to Total Mana Cost of Skills" }, } }, + ["IncreaseGlobalFlatManaCostUnique__2"] = { affix = "", "Lose (40-80) Mana when you use a Skill", statOrder = { 8258 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2924302129] = { "Lose (40-80) Mana when you use a Skill" }, } }, + ["IncreaseGlobalFlatManaCostUnique__3_"] = { affix = "", "Lose 40 Mana when you use a Skill", statOrder = { 8258 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2924302129] = { "Lose 40 Mana when you use a Skill" }, } }, + ["ReducedLifeRegenerationPercentUniqueOneHandAxe5"] = { affix = "", "50% reduced Life Regeneration rate", statOrder = { 1600 }, level = 1, group = "IncreaseLifeRegenerationPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% reduced Life Regeneration rate" }, } }, + ["IncreaseSocketedSupportGemQualityUnique__1___"] = { affix = "", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 214 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(5-8)% to Quality of Socketed Support Gems" }, } }, + ["IncreaseSocketedSupportGemQualityUnique__2"] = { affix = "", "+30% to Quality of Socketed Support Gems", statOrder = { 214 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+30% to Quality of Socketed Support Gems" }, } }, + ["IgniteDurationUnique__1"] = { affix = "", "20% reduced Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "20% reduced Ignite Duration on Enemies" }, } }, + ["IgniteDurationUnique__2"] = { affix = "", "90% reduced Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "90% reduced Ignite Duration on Enemies" }, } }, + ["IgniteDurationUnique__3_"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "50% reduced Ignite Duration on Enemies" }, } }, + ["IgniteDurationUnique__4"] = { affix = "", "(10-25)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 30, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(10-25)% increased Ignite Duration on Enemies" }, } }, + ["SocketedGemsGetBloodMagicUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 335 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, + ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 614 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [223497523] = { "" }, [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, + ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 616 }, 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 = { 10631 }, 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 = { 1649 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHashes = { [3051845758] = { "+(75-100)% to Fire Resistance when Socketed with a Red Gem" }, } }, + ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1661 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, tradeHashes = { [289814996] = { "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem" }, } }, + ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1655 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, tradeHashes = { [1064331314] = { "+(75-100)% to Cold Resistance when Socketed with a Green Gem" }, } }, + ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, + ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 3018 }, 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 = { 3015 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, + ["ManaLeechFromLightningDamageUniqueStaff8"] = { affix = "", "200% of Lightning Damage Leeched as Mana", statOrder = { 1734 }, level = 1, group = "LightningManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [636708308] = { "200% of Lightning Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadFromLightningDamageUniqueStaff8"] = { affix = "", "0.4% of Lightning Damage Leeched as Mana", statOrder = { 1735 }, level = 1, group = "LightningManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [1399420168] = { "0.4% of Lightning Damage Leeched as Mana" }, } }, + ["AllSocketsAreWhiteUniqueRing25"] = { affix = "", "All Sockets are White", statOrder = { 80 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [211836731] = { "All Sockets are White" }, } }, + ["AllSocketsAreWhiteUniqueShieldStrDex7_"] = { affix = "", "All Sockets are White", statOrder = { 80 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [211836731] = { "All Sockets are White" }, } }, + ["PunishmentOnMeleeBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", statOrder = { 3021 }, level = 1, group = "PunishmentOnMeleeBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [2922377850] = { "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit" }, } }, + ["TemporalChainsOnProjectileBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", statOrder = { 3022 }, level = 1, group = "TemporalChainsOnProjectileBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [541329769] = { "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit" }, } }, + ["ElementalWeaknessOnSpellBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", statOrder = { 3023 }, level = 1, group = "ElementalWeaknessOnSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [2048643052] = { "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit" }, } }, + ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 547 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem", "drop" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, + ["VulnerabilityOnBlockUniqueStaff9"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 3019 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, + ["VulnerabilityOnBlockUniqueShieldStrDex3"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 3019 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, + ["HealAlliesOnDeathUniqueShieldDexInt2"] = { affix = "", "Nearby allies Recover 1% of your Maximum Life when you Die", statOrder = { 3025 }, level = 1, group = "HealAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3484267929] = { "Nearby allies Recover 1% of your Maximum Life when you Die" }, } }, + ["SelfShockDurationUniqueBelt12_"] = { affix = "", "100% increased Shock Duration on you", statOrder = { 1896 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "100% increased Shock Duration on you" }, } }, + ["SelfShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration on you", statOrder = { 1896 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "10000% increased Shock Duration on you" }, } }, + ["SelfShockDurationUnique__2"] = { affix = "", "50% increased Shock Duration on you", statOrder = { 1896 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "50% increased Shock Duration on you" }, } }, + ["ShocksReflectToSelfUniqueBelt12"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2808 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [807955413] = { "Shocks you cause are reflected back to you" }, } }, + ["ShocksReflectToSelfUnique__1"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2808 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [807955413] = { "Shocks you cause are reflected back to you" }, } }, + ["MovementVelocityWhileShockedUniqueBelt12"] = { affix = "", "15% increased Movement Speed while Shocked", statOrder = { 2840 }, level = 1, group = "MovementVelocityWhileShocked", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [542923416] = { "15% increased Movement Speed while Shocked" }, } }, + ["DamageIncreaseWhileShockedUniqueBelt12"] = { affix = "", "60% increased Damage while Shocked", statOrder = { 2809 }, level = 1, group = "DamageIncreaseWhileShocked", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [529432426] = { "60% increased Damage while Shocked" }, } }, + ["DamageOnLowLifeUniqueHelmetStrInt5"] = { affix = "", "20% increased Damage when on Low Life", statOrder = { 1238 }, level = 1, group = "DamagePercentageWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1513447578] = { "20% increased Damage when on Low Life" }, } }, + ["SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5"] = { affix = "", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 489 }, level = 1, group = "SocketedGemsSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, } }, + ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2845 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3503466234] = { "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, + ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2845 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3503466234] = { "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, + ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2602 }, 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 = { 2791 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [782323220] = { "30% increased Elemental Damage with Attack Skills during any Flask Effect" }, } }, + ["IncreasedDamageToShockedTargetsUniqueRing29"] = { affix = "", "40% increased Damage with Hits against Shocked Enemies", statOrder = { 1261 }, level = 1, group = "IncreasedDamageToShockedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4194900521] = { "40% increased Damage with Hits against Shocked Enemies" }, } }, + ["LifeLeechVsShockedEnemiesUniqueRing29"] = { affix = "", "100% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1710 }, level = 48, group = "LeechLifeVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1825669392] = { "100% of Damage Leeched as Life against Shocked Enemies" }, } }, + ["LifeLeechPermyriadVsShockedEnemiesUniqueRing29"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1711 }, level = 48, group = "LeechLifePermyriadVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2614321687] = { "1% of Damage Leeched as Life against Shocked Enemies" }, } }, + ["AddedPhysicalDamageVsFrozenEnemiesUniqueRing30"] = { affix = "", "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies", statOrder = { 1295 }, level = 1, group = "AddedPhysicalDamageOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3856468419] = { "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies" }, } }, + ["ReducedChillDurationOnSelfUniqueRing30"] = { affix = "", "20% reduced Chill Duration on you", statOrder = { 1895 }, level = 25, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "20% reduced Chill Duration on you" }, } }, + ["ChillDurationOnSelfUnique__1"] = { affix = "", "10000% increased Chill Duration on you", statOrder = { 1895 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "10000% increased Chill Duration on you" }, } }, + ["LifeGainOnHitVsIgnitedEnemiesUniqueRing31"] = { affix = "", "Gain (4-5) Life for each Ignited Enemy hit with Attacks", statOrder = { 1766 }, level = 37, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (4-5) Life for each Ignited Enemy hit with Attacks" }, } }, + ["SocketedRedGemsHaveAddedFireDamageUniqueTwoHandSword8_"] = { affix = "", "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage", statOrder = { 543 }, level = 1, group = "SocketedRedGemsHaveAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "gem" }, tradeHashes = { [2629366488] = { "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage" }, } }, + ["SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8"] = { affix = "", "Socketed Melee Gems have 15% increased Area of Effect", statOrder = { 542 }, level = 1, group = "SocketedMeleeGemsHaveIncreasedAoE", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2462976337] = { "Socketed Melee Gems have 15% increased Area of Effect" }, } }, + ["ReducedCriticalStrikeDamageTakenUniqueBelt13"] = { affix = "", "You take 30% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 30% reduced Extra Damage from Critical Strikes" }, } }, + ["PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9"] = { affix = "", "50% of Physical Damage Converted to Fire Damage against Ignited Enemies", statOrder = { 2200 }, level = 1, group = "PhysicalDamageConvertedToFireVsBurningEnemy", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [4178812762] = { "50% of Physical Damage Converted to Fire Damage against Ignited Enemies" }, } }, + ["PhysicalTakenAsColdUniqueFlask8"] = { affix = "", "(10-15)% of Physical Damage from Hits taken as Cold Damage during Effect", statOrder = { 981 }, level = 1, group = "PhysicalTakenAsColdFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical", "elemental", "cold" }, tradeHashes = { [625682777] = { "(10-15)% of Physical Damage from Hits taken as Cold Damage during Effect" }, } }, + ["PhysicalAddedAsColdUniqueFlask8"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Cold Damage during effect", statOrder = { 982 }, level = 1, group = "PhysicalAddedAsColdFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2661163721] = { "Gain (10-15)% of Physical Damage as Extra Cold Damage during effect" }, } }, + ["PhysicalAddedAsColdUniqueOneHandSword12"] = { affix = "", "Gain (25-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (25-30)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdUnique__1"] = { affix = "", "Gain 50% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 35, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 50% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdUnique__2"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (10-15)% of Physical Damage as Extra Cold Damage" }, } }, + ["PhysicalAddedAsColdUnique__3"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (10-50)% of Physical Damage as Extra Cold Damage" }, } }, + ["AvoidChillUniqueFlask8"] = { affix = "", "30% chance to Avoid being Chilled during Effect", statOrder = { 983 }, level = 1, group = "AvoidChillFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [1053326368] = { "30% chance to Avoid being Chilled during Effect" }, } }, + ["AvoidFreezeUniqueFlask8"] = { affix = "", "30% chance to Avoid being Frozen during Effect", statOrder = { 985 }, level = 1, group = "AvoidFreezeFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [2872815301] = { "30% chance to Avoid being Frozen during Effect" }, } }, + ["IncreasedSelfBurnDurationUniqueRing28"] = { affix = "", "100% increased Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "100% increased Ignite Duration on you" }, } }, + ["SelfBurnDurationUnique__1"] = { affix = "", "10000% increased Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "10000% increased Ignite Duration on you" }, } }, + ["FireDamageTakenCausesExtraPhysicalDamageUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage taken causes extra Physical Damage", statOrder = { 2479 }, level = 1, group = "FireDamageTakenCausesExtraPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1359741607] = { "10% of Fire Damage taken causes extra Physical Damage" }, } }, + ["ReducedChanceToBlockUnique__1"] = { affix = "", "30% reduced Chance to Block Attack and Spell Damage", statOrder = { 1189 }, level = 1, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "30% reduced Chance to Block Attack and Spell Damage" }, } }, + ["ChillEffectivenessOnSelfUniqueRing28"] = { affix = "", "75% reduced Effect of Chill on you", statOrder = { 1668 }, level = 30, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "75% reduced Effect of Chill on you" }, } }, + ["TemporalChainsEffectivenessOnSelfUniqueRing27"] = { affix = "", "Temporal Chains has 50% reduced Effect on you", statOrder = { 1667 }, level = 28, group = "TemporalChainsEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1152934561] = { "Temporal Chains has 50% reduced Effect on you" }, } }, + ["TemporalChainsEffectivenessOnSelfUnique__1"] = { affix = "", "Unaffected by Temporal Chains", statOrder = { 10640 }, level = 32, group = "UnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4212372504] = { "Unaffected by Temporal Chains" }, } }, + ["PhysicalDamageOnSkillUseUniqueHelmetInt8"] = { affix = "", "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage", statOrder = { 2236 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [99487834] = { "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage" }, } }, + ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 2265 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "20% increased Fire Damage taken" }, } }, + ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2471 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1029319062] = { "10% of Fire Damage from Hits taken as Physical Damage" }, } }, + ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2470 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, + ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1296 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [627339348] = { "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies" }, } }, + ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 775, 775.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, tradeHashes = { [2816098341] = { "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses" }, } }, + ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 2% increased Damage per 5 Dexterity", statOrder = { 2001 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [4187741589] = { "Minions deal 2% increased Damage per 5 Dexterity" }, } }, + ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy", statOrder = { 774 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2770461177] = { "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy" }, } }, + ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5510 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, + ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3049 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy" }, } }, + ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [875143443] = { "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, + ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [875143443] = { "Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, + ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 2162 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2481358827] = { "(4-7)% increased Physical Damage per Endurance Charge" }, } }, + ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 2162 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2481358827] = { "10% increased Physical Damage per Endurance Charge" }, } }, + ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Full Life", statOrder = { 3031 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2111067745] = { "2% increased Damage per Power Charge with Hits against Enemies on Full Life" }, } }, + ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 3032 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [82392902] = { "2% increased Damage per Power Charge with Hits against Enemies on Low Life" }, } }, + ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 3030 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2724643145] = { "Penetrate 1% Elemental Resistances per Frenzy Charge" }, } }, + ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(100-200)% increased Endurance, Frenzy and Power Charge Duration" }, } }, + ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1884 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "20% reduced Duration of Elemental Ailments on Enemies" }, } }, + ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1884 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "50% increased Duration of Elemental Ailments on Enemies" }, } }, + ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1884 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2604619892] = { "(10-15)% increased Duration of Elemental Ailments on Enemies" }, } }, + ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 3055 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740359895] = { "Your Hits can only Kill Frozen Enemies" }, } }, + ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1881 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "100% increased Freeze Duration on Enemies" }, } }, + ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1879, 1881 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "10000% increased Chill Duration on Enemies" }, [1073942215] = { "10000% increased Freeze Duration on Enemies" }, } }, + ["FreezeDurationUnique__1"] = { affix = "", "30% increased Freeze Duration on Enemies", statOrder = { 1881 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "30% increased Freeze Duration on Enemies" }, } }, + ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 3014 }, 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 = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, + ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 3058 }, 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 = { 3058 }, 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 = { 3061 }, 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 = { 3057 }, 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 = { 2824 }, 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 = { 2825 }, 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 = { 4959 }, 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 8 Steel Shards", statOrder = { 10212, 10212.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1031404836] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 8 Steel Shards" }, } }, + ["LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "300% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1715 }, level = 65, group = "LifeLeechFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1028143379] = { "300% of Attack Damage Leeched as Life against Chilled Enemies" }, } }, + ["LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "1% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1716 }, level = 65, group = "LifeLeechPermyriadFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [748813744] = { "1% of Attack Damage Leeched as Life against Chilled Enemies" }, } }, + ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2592 }, 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 = { 620 }, 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 = { 621 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3235941702] = { "Socketed Projectile Spells fire Projectiles in a circle" }, } }, + ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 618 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4016885052] = { "Socketed Gems fire 4 additional Projectiles" }, } }, + ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 618 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4016885052] = { "Socketed Gems fire an additional Projectile" }, } }, + ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 619 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [973574623] = { "Socketed Projectile Spells fire 4 additional Projectiles" }, } }, + ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 622 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [678608747] = { "Socketed Gems have 70% reduced Skill Effect Duration" }, } }, + ["MainHandAdditionalProjectilesWhileInOffHandUnique__1"] = { affix = "", "Attacks fire (1-2) additional Projectile when in Off Hand", statOrder = { 10648 }, level = 1, group = "MainHandAdditionalProjectilesWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4209631466] = { "Attacks fire (1-2) additional Projectile when in Off Hand" }, } }, + ["OffHandAreaOfEffectWhileInMainHandUnique__1"] = { affix = "", "Attacks have (40-60)% increased Area of Effect when in Main Hand", statOrder = { 10649 }, level = 1, group = "OffHandAreaOfEffectWhileInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [421841616] = { "Attacks have (40-60)% increased Area of Effect when in Main Hand" }, } }, + ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 505 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, + ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 506 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2593773031] = { "Socketed Gems are Supported by Level 30 Generosity" }, } }, + ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "3% increased effect of Non-Curse Auras from your Skills" }, } }, + ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(20-40)% increased Area of Effect of Aura Skills" }, } }, + ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [895264825] = { "20% increased Area of Effect of Aura Skills" }, } }, + ["ChaosDamagePoisonsUniqueDagger10"] = { affix = "", "Your Chaos Damage Poisons Enemies", statOrder = { 3065 }, level = 1, group = "ChaosDamagePoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3549040753] = { "Your Chaos Damage Poisons Enemies" }, } }, + ["ChaosDamageChanceToPoisonUnique__1"] = { affix = "", "Your Chaos Damage has 60% chance to Poison Enemies", statOrder = { 3066 }, level = 1, group = "ChaosDamageChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2894297982] = { "Your Chaos Damage has 60% chance to Poison Enemies" }, } }, + ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 2161 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1586440250] = { "(4-7)% increased Elemental Damage per Frenzy Charge" }, } }, + ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 3067 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325437053] = { "Mines can be Detonated an additional time" }, } }, + ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 3062 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3818161429] = { "You gain Onslaught for 3 seconds on Culling Strike" }, } }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-5) to (7-10) Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LifeLeechUniqueOneHandAxe6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "3% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, + ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 3064 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2872105818] = { "100% chance to Avoid being Chilled during Onslaught" }, } }, + ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of Life per second", statOrder = { 1967 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of Life per second" }, } }, + ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of Life per second" }, } }, + ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, + ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem", statOrder = { 10803 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem" }, } }, + ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, + ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of Life per second" }, } }, + ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, + ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, + ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of Life per second" }, } }, + ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of Life per second" }, } }, + ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1951 }, 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 = { 1951 }, 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 = { 9352 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, + ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1220 }, 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 = { 508 }, 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 = { 5903 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, + ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2462 }, 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 = { 2463 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3597806437] = { "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed" }, } }, + ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2598 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [347328113] = { "+(200-250) Energy Shield gained on Killing a Shocked Enemy" }, } }, + ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2598 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [347328113] = { "+(90-120) Energy Shield gained on Killing a Shocked Enemy" }, } }, + ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 3045 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2095084973] = { "Cannot Knock Enemies Back" }, } }, + ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 3046 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [2437193018] = { "All Attack Damage Chills when you Stun" }, } }, + ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of Life Regenerated per second", statOrder = { 3034 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3462673103] = { "Nearby Allies gain 4% of Life Regenerated per second" }, } }, + ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 3039 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [778848857] = { "Nearby Allies gain 80% increased Mana Regeneration Rate" }, } }, + ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2724 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2138434718] = { "40% increased Rarity of Items Dropped by Frozen Enemies" }, } }, + ["IncreasedRarityWhenSlayingFrozenUnique__1"] = { affix = "", "30% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2724 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2138434718] = { "30% increased Rarity of Items Dropped by Frozen Enemies" }, } }, + ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage", statOrder = { 3074 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [754005431] = { "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage" }, } }, + ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 3052 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1489905076] = { "Allies' Aura Buffs do not affect you" }, } }, + ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect allies", statOrder = { 3054 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [4196775867] = { "Your Aura Buffs do not affect allies" }, } }, + ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased Effect of Buffs on you", statOrder = { 2167 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "10% increased Effect of Buffs on you" }, } }, + ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased Effect of Buffs on you", statOrder = { 2167 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [306104305] = { "30% increased Effect of Buffs on you" }, } }, + ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 3051 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, + ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 513 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4066711249] = { "Socketed Gems are Supported by Level 10 Knockback" }, } }, + ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 3044 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate 75 Life per second per Endurance Charge" }, } }, + ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 3044 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1898967950] = { "Regenerate (100-140) Life per second per Endurance Charge" }, } }, + ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 918 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1457911472] = { "75% chance to cause Enemies to Flee on use" }, } }, + ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 1063 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3636096208] = { "(7-10)% more Melee Physical Damage during effect" }, } }, + ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 979 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "attack" }, tradeHashes = { [251342217] = { "Adds Knockback to Melee Attacks during Effect" }, } }, + ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2506 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, + ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1765 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 6 Life and Mana per Enemy Hit" }, } }, + ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1765 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 10 Life and Mana per Enemy Hit" }, } }, + ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1765 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [1420170973] = { "Grants 14 Life and Mana per Enemy Hit" }, } }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1761, 1768 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, [640052854] = { "Grants 6 Mana per Enemy Hit" }, } }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 1761, 1768 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 28 Life per Enemy Hit" }, [640052854] = { "Grants 10 Mana per Enemy Hit" }, } }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 1761, 1768 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 38 Life per Enemy Hit" }, [640052854] = { "Grants 14 Mana per Enemy Hit" }, } }, + ["LifeAndManaLeechImplicitMarakethClaw1"] = { affix = "", "0.8% of Physical Attack Damage Leeched as Life and Mana", statOrder = { 1679 }, level = 1, group = "LifeAndManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical", "attack" }, tradeHashes = { [237471491] = { "0.8% of Physical Attack Damage Leeched as Life and Mana" }, } }, + ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 675 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, [231162761] = { "" }, } }, + ["SolartwineUniqueBelt55"] = { affix = "", "Grants Level 20 Blazing Glare", statOrder = { 8007 }, level = 30, group = "SolartwineActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3696252104] = { "Grants Level 20 Blazing Glare" }, } }, + ["BitingBraidUniqueBelt52"] = { affix = "", "Grants Level 20 Caustic Retribution", statOrder = { 8003 }, level = 30, group = "BitingBraidActiveSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [124458098] = { "Grants Level 20 Caustic Retribution" }, } }, + ["EnemiesPoisonedByYouCannotCritUnique_1"] = { affix = "", "Enemies Poisoned by you cannot deal Critical Strikes", statOrder = { 6479 }, level = 30, group = "EnemiesPoisonedByYouCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1330636770] = { "Enemies Poisoned by you cannot deal Critical Strikes" }, } }, + ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2804 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2318615887] = { "30% chance to gain a Power Charge when you Stun with Melee Damage" }, } }, + ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2805 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, + ["UnholyMightOnMeleeCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 2 seconds on Melee Critical Strike", statOrder = { 2949 }, level = 1, group = "UnholyMightOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1483655843] = { "Gain Unholy Might for 2 seconds on Melee Critical Strike" }, } }, + ["UnholyMightOnCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2951 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2959020308] = { "Gain Unholy Might for 4 seconds on Critical Strike" }, } }, + ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1866 }, 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 = { 9890 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, + ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10997 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, + ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 658 }, 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 = { 521 }, 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 = { 7498 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, + ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "10% increased Projectile Damage" }, } }, + ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-15)% increased Global Physical Damage" }, } }, + ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(8-12)% increased Damage over Time" }, } }, + ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "4% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-9)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-7)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-8)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__8"] = { affix = "", "(6-8)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-8)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__9"] = { affix = "", "(0-40)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(0-40)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeedUnique__10"] = { affix = "", "(6-12)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-12)% increased Attack and Cast Speed" }, } }, + ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1203 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+20 to Strength and Dexterity" }, } }, + ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1203 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+50 to Strength and Dexterity" }, } }, + ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1204 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+20 to Strength and Intelligence" }, } }, + ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1204 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(10-30) to Strength and Intelligence" }, } }, + ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1205 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+20 to Dexterity and Intelligence" }, } }, + ["LifeLeechJewel"] = { affix = "Hungering", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "LifeLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } }, + ["ManaLeechJewel"] = { affix = "Thirsting", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1720 }, level = 1, group = "ManaLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, + ["SpellLifeLeechJewel"] = { affix = "Transfusing", "1% of Spell Damage Leeched as Life", statOrder = { 1685 }, level = 1, group = "SpellLifeLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1482980366] = { "1% of Spell Damage Leeched as Life" }, } }, + ["SpellManaLeechJewel"] = { affix = "Siphoning", "1% of Spell Damage Leeched as Mana", statOrder = { 1726 }, level = 1, group = "SpellManaLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [785819929] = { "1% of Spell Damage Leeched as Mana" }, } }, + ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Global Accuracy Rating" }, } }, + ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Strike Chance with Traps", statOrder = { 1497 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(100-120)% increased Critical Strike Chance with Traps" }, } }, + ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1906 }, 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 = { 1906 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, + ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 2018 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "10% chance to Knock Enemies Back on hit" }, } }, + ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2946 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-10)% to all Elemental Resistances" }, } }, + ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1216 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(30-50)% reduced Totem Damage" }, } }, + ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1216 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, + ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3081 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, [3802517517] = { "" }, } }, + ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3081 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, [3802517517] = { "" }, } }, + ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, + ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3084 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, [3802517517] = { "" }, } }, + ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3084 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, [3802517517] = { "" }, } }, + ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, + ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3085 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, + ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3085 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, + ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, + ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3082 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3082 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, + ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 1202 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, + ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3086 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3086 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, + ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, + ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3083 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, [3802517517] = { "" }, } }, + ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3083 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, [3802517517] = { "" }, } }, + ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 1200 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, + ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(20-30)% reduced Attack and Cast Speed" }, } }, + ["NonDamagingAilmentEffectUnique_1"] = { affix = "", "(10-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 100, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(10-20)% increased Effect of Non-Damaging Ailments" }, } }, + ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, + ["LifeLeechLocal1"] = { affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 9, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechLocal2"] = { affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 25, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechLocal3"] = { affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 72, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "(5-6)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechLocalPermyriadUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "2% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechLocalUniqueOneHandMace8"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1673 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [4277433910] = { "5% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1% of Physical Attack Damage Leeched as Life" }, } }, + ["ManaLeechLocal1"] = { affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1723 }, level = 9, group = "ManaLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [2825755397] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadLocalUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "2% of Physical Attack Damage Leeched as Mana" }, } }, + ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 917 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3591397930] = { "Knocks Back Enemies in an Area when you use a Flask" }, } }, + ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1915 }, 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 = { 2595 }, 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 = { 2595 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, + ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10996 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, + ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10876, 10876.1 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [4077035099] = { "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, } }, ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Small Ring", statOrder = { 12 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Small Ring" }, } }, ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Massive Ring", statOrder = { 12 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Massive Ring" }, } }, - ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10717, 10717.1 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, } }, - ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(10-20)% chance to Avoid being Stunned" }, } }, - ["AvoidStunUnique__1"] = { affix = "", "30% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "30% chance to Avoid being Stunned" }, } }, - ["AvoidElementalAilmentsUnique__1_"] = { affix = "", "30% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "30% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, } }, - ["AvoidElementalAilmentsUnique__3"] = { affix = "", "(15-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-25)% chance to Avoid Elemental Ailments" }, } }, - ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, - ["LocalChanceToBleedUnique__2"] = { affix = "", "40% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "40% chance to cause Bleeding on Hit" }, } }, - ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3056 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3807518091] = { "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, - ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 3053 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2216127021] = { "(10-15)% increased Area of Effect while Unarmed" }, } }, - ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(0.3-0.4) metres to Melee Strike Range with Unarmed Attacks", statOrder = { 3079 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(0.3-0.4) metres to Melee Strike Range with Unarmed Attacks" }, } }, - ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 3067 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [854030602] = { "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers" }, } }, - ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 3071 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3802517517] = { "" }, [2582360791] = { "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius" }, } }, - ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 3072 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [727625899] = { "Passives in Radius apply to Minions instead of you" }, [512165118] = { "" }, } }, - ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, - ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of Life when you Consume a corpse", statOrder = { 3054 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2715345125] = { "Recover 2% of Life when you Consume a corpse" }, } }, - ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 3055 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3802517517] = { "" }, [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, - ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 3062 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335735137] = { "Totems cannot be Stunned" }, } }, - ["MinionDodgeChanceUniqueJewel16"] = { affix = "", "Minions have +(2-5)% chance to Suppress Spell Damage", statOrder = { 9334 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(2-5)% chance to Suppress Spell Damage" }, } }, - ["MinionDodgeChanceUnique__1"] = { affix = "", "Minions have +(12-15)% chance to Suppress Spell Damage", statOrder = { 9334 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(12-15)% chance to Suppress Spell Damage" }, } }, - ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1273 }, level = 1, group = "FireDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [761505024] = { "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you" }, } }, - ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1274 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3434279150] = { "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you" }, } }, - ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their Life when they Block", statOrder = { 3061 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 2% of their Life when they Block" }, } }, - ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their Life when they Block", statOrder = { 3061 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 10% of their Life when they Block" }, } }, - ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 3063 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(25-30)% increased Damage while Leeching" }, } }, - ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 3063 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(30-40)% increased Damage while Leeching" }, } }, - ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 3063 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, - ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, - ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "10% increased Movement Speed while Ignited" }, } }, - ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, - ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have 10% chance to Fortify" }, } }, - ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 3080 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [886366428] = { "(20-25)% increased Damage for each Magic Item Equipped" }, } }, - ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 3082 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [736847554] = { "Totems fire 2 additional Projectiles" }, } }, - ["UnholyMightOnMeleeKillUniqueJewel28"] = { affix = "", "5% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3083 }, level = 1, group = "UnholyMightOnMeleeKill", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3166317791] = { "5% chance to Gain Unholy Might for 4 seconds on Melee Kill" }, } }, - ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 3084 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3779823630] = { "(40-60)% increased Spell Damage while no Mana is Reserved" }, } }, - ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 3087 }, 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 = { 3075 }, 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 = { 3076 }, 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 = { 10714 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10714 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10714 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2533 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, - ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1597 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, - ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Strike Multiplier", statOrder = { 7903 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Strike Multiplier" }, } }, - ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7905 }, 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 = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(20-30)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-20)% increased Skill Effect Duration" }, } }, - ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10519 }, 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 Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, - ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Strike Multiplier", statOrder = { 3108 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHashes = { [2070982674] = { "+(22-30)% to Vaal Skill Critical Strike Multiplier" }, } }, - ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "10% increased Attack Damage" }, } }, - ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 8% increased Effect" }, } }, - ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "4% increased Effect of your Curses" }, } }, - ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-20)% increased Effect of your Curses" }, } }, - ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Effect of your Curses" }, } }, - ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, - ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 3110 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2701327257] = { "60% reduced Cost of Aura Skills that summon Totems" }, } }, - ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1633381214] = { "50% chance to gain an additional Vaal Soul per Enemy Shattered" }, } }, - ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 3111 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [47271484] = { "10% increased Experience Gain for Corrupted Gems" }, } }, - ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 3114 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1677654268] = { "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use" }, } }, - ["CorruptThresholdPhysBypassesESUniqueCorruptedJewel12"] = { affix = "", "With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield", statOrder = { 3113 }, level = 1, group = "CorruptThresholdPhysBypassesES", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield", "chaos" }, tradeHashes = { [3225265684] = { "With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield" }, } }, - ["CorruptThresholdLifeLeechUsesChaosDamageUniqueCorruptedJewel10"] = { affix = "", "With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead", statOrder = { 3112 }, level = 1, group = "CorruptThresholdLifeLeechUsesChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [4192058279] = { "With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead" }, } }, - ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of Mana on Kill", statOrder = { 1755 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover 1% of Mana on Kill" }, } }, - ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of Life on Kill", statOrder = { 1754 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [751813227] = { "Lose 1% of Life on Kill" }, } }, - ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of Energy Shield on Kill", statOrder = { 1756 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1699499433] = { "Lose 1% of Energy Shield on Kill" }, } }, - ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 3121 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1556263668] = { "(20-30)% chance to Curse you with Punishment on Kill" }, } }, - ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 2169 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3112863846] = { "An additional Curse can be applied to you" }, } }, - ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1216 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, - ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 2244 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [969865219] = { "10% increased Damage taken while on Full Energy Shield" }, } }, - ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 2244 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [969865219] = { "15% increased Damage taken while on Full Energy Shield" }, } }, - ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1965 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2158060122] = { "40% of Lightning Damage Converted to Cold Damage" }, } }, - ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2926 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [288651645] = { "Your spells have 100% chance to Shock against Frozen Enemies" }, } }, - ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 3123, 3124, 3139 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "defences", "evasion", "damage", "physical", "attack" }, tradeHashes = { [3802517517] = { "" }, [1619923327] = { "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius" }, [915233352] = { "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius" }, [4113852051] = { "1% increased Evasion Rating per 3 Dexterity Allocated in Radius" }, } }, - ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 3126, 3127 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3802517517] = { "" }, } }, - ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 3125 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3802517517] = { "" }, [3446950357] = { "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage" }, } }, - ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 3128 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3802517517] = { "" }, [2605119037] = { "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value" }, } }, - ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 3129 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3802517517] = { "" }, [3194864913] = { "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield" }, } }, - ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 3134 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3802517517] = { "" }, [2865989731] = { "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius" }, } }, - ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning Damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 1380, 3133 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 2 Lightning Damage to Attacks" }, [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [3802517517] = { "" }, } }, - ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 3137 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2479374428] = { "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value" }, [3802517517] = { "" }, } }, - ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 3138 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3802517517] = { "" }, [842363566] = { "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus" }, } }, - ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 3014 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3915702459] = { "Gain 100 Life when you lose an Endurance Charge" }, } }, - ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(14-20)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-50)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(20-30)% increased Totem Placement speed" }, } }, - ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "40% increased Attack Damage against Bleeding Enemies" }, } }, - ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "30% increased Attack Damage against Bleeding Enemies" }, } }, - ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "(25-40)% increased Attack Damage against Bleeding Enemies" }, } }, - ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2517 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [654274615] = { "Curse Enemies with Flammability on Hit" }, } }, - ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 711 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [243713911] = { "Grants Level 1 Lightning Warp Skill" }, } }, - ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "20% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "20% chance to Avoid being Stunned" }, } }, - ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 481 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2501237765] = { "Socketed Gems are supported by Level 1 Multistrike" }, } }, - ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2492 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1282978314] = { "30% increased Melee Damage against Bleeding Enemies" }, } }, - ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2492 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1282978314] = { "50% increased Melee Damage against Bleeding Enemies" }, } }, - ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (4-6) to (8-12) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 100 to 100 Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-30) to 40 Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-24) to (38-46) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (2-3) to (5-6) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-16) to (30-32) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__7"] = { affix = "", "Adds (9-12) to (19-22) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (9-12) to (19-22) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (25-30) to (40-50) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 100 to 100 Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (20-30) to 40 Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (2-3) to (5-6) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (40-60) to (90-110) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-39) to (54-60) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (24-28) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (120-140) to (150-170) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 100 to 100 Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-10) to (150-200) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (10-12) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (60-70) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (26-35) to (95-105) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (13-18) to (50-56) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (60-68) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-15) to (100-140) Lightning Damage to Spells" }, } }, - ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1216 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, - ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (26-38) to (52-70) Chaos Damage", statOrder = { 1390 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (26-38) to (52-70) Chaos Damage" }, } }, - ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (43-55) to (81-104) Chaos Damage", statOrder = { 1390 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-55) to (81-104) Chaos Damage" }, } }, - ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (46-63) to (92-113) Chaos Damage", statOrder = { 1390 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (46-63) to (92-113) Chaos Damage" }, } }, - ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1431 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [856021430] = { "20% increased Damage with Movement Skills" }, } }, - ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1431 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [856021430] = { "(60-100)% increased Damage with Movement Skills" }, } }, - ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3683134121] = { "15% increased Attack Speed with Movement Skills" }, } }, - ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3683134121] = { "(10-20)% increased Attack Speed with Movement Skills" }, } }, - ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [893903361] = { "Gain 10 Life per Ignited Enemy Killed" }, } }, - ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [893903361] = { "Gain (200-300) Life per Ignited Enemy Killed" }, } }, - ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 2247 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [705686721] = { "10% increased Damage taken from Skeletons" }, } }, - ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 2248 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156764291] = { "10% increased Damage taken from Ghosts" }, } }, - ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2898 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798853218] = { "You cannot be Shocked while Frozen" }, } }, - ["LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8"] = { affix = "", "3% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1696 }, level = 1, group = "LifeLeechPhysicalAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1625933063] = { "3% of Attack Damage Leeched as Life against Bleeding Enemies" }, } }, - ["DisplaySocketedGemsSupportedByMinionLifeUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Minion Life", statOrder = { 504 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 15 Minion Life" }, } }, - ["DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 12 Multiple Projectiles", statOrder = { 505 }, level = 1, group = "DisplaySocketedGemsSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 12 Multiple Projectiles" }, } }, - ["DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 17 Minion Damage", statOrder = { 506 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 17 Minion Damage" }, } }, - ["DisplaySocketedGemsSupportedByIncreasedCriticalDamageUniqueRing37_"] = { affix = "", "Socketed Gems are Supported by Level 16 Increased Critical Damage", statOrder = { 507 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1771903158] = { "Socketed Gems are Supported by Level 16 Increased Critical Damage" }, } }, - ["DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 16 Minion Speed", statOrder = { 508 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [995332031] = { "Socketed Gems are Supported by Level 16 Minion Speed" }, } }, - ["ManaGainedOnHitAgainstTauntedEnemyUniqueShieldInt5"] = { affix = "", "Gain 3 Mana per Taunted Enemy Hit", statOrder = { 1784 }, level = 1, group = "ManaOnHitVsTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1834588299] = { "Gain 3 Mana per Taunted Enemy Hit" }, } }, - ["LifeGainedOnTauntingEnemyUniqueShieldStr4"] = { affix = "", "Gain +10 Life when you Taunt an Enemy", statOrder = { 1783 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3726536628] = { "Gain +10 Life when you Taunt an Enemy" }, } }, - ["LifeGainedOnTauntingEnemyUnique__1"] = { affix = "", "Gain +50 Life when you Taunt an Enemy", statOrder = { 1783 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3726536628] = { "Gain +50 Life when you Taunt an Enemy" }, } }, - ["IncreasedTauntDurationUniqueShieldStr4"] = { affix = "", "20% increased Taunt Duration", statOrder = { 1782 }, level = 1, group = "TauntDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3651611160] = { "20% increased Taunt Duration" }, } }, - ["OnslaughtOnKillingTauntedEnemyUniqueShieldDex7"] = { affix = "", "You gain Onslaught for 2 seconds on Killing Taunted Enemies", statOrder = { 2644 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2580101523] = { "You gain Onslaught for 2 seconds on Killing Taunted Enemies" }, } }, - ["OnslaughtOnKillingTauntedEnemyUnique__1"] = { affix = "", "You gain Onslaught for 1 seconds on Killing Taunted Enemies", statOrder = { 2644 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2580101523] = { "You gain Onslaught for 1 seconds on Killing Taunted Enemies" }, } }, - ["TotemAreaOfEffectUniqueShieldStr5"] = { affix = "", "15% increased Area of Effect for Skills used by Totems", statOrder = { 2581 }, level = 1, group = "TotemAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [869436347] = { "15% increased Area of Effect for Skills used by Totems" }, } }, - ["LifeLeechFromTotemSkillsUniqueShieldStr5"] = { affix = "", "1% of Damage Leeched as Life for Skills used by Totems", statOrder = { 2582 }, level = 1, group = "LifeLeechFromTotemSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2449723897] = { "1% of Damage Leeched as Life for Skills used by Totems" }, } }, - ["AnimateWeaponDurationUniqueTwoHandMace8"] = { affix = "", "30% less Animate Weapon Duration", statOrder = { 2795 }, level = 1, group = "AnimateWeaponDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [414991155] = { "30% less Animate Weapon Duration" }, } }, - ["NumberOfAdditionalAnimateWeaponCopiesUniqueTwoHandMace8"] = { affix = "", "Weapons you Animate create an additional copy", statOrder = { 2797 }, level = 1, group = "NumberOfAdditionalAnimateWeaponCopies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1266553505] = { "Weapons you Animate create an additional copy" }, } }, - ["DamageYouReflectGainedAsLifeUniqueHelmetDexInt6"] = { affix = "", "100% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [743992531] = { "100% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, - ["DamageYouReflectGainedAsLifeUnique__1"] = { affix = "", "10% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [743992531] = { "10% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, - ["ImmuneToChilledGroundUniqueBootsStrDex5"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10462 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["ImmuneToBurningGroundUniqueBootsStr3"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10457 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["UniqueUnaffectedByBurningGround__1"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10457 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["ImmuneToShockedGroundUniqueBootsDexInt4"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["UniqueUnaffectedByShockedGround__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["ImmuneToDesecratedGroundUniqueBootsInt6"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10468 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["UniqueUnaffectedByDesecratedGround__1"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10468 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["UniqueUnaffectedByChilledGround__1"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10462 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["ImmuneToShockedGroundUnique__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["ShockedGroundWhenHitUniqueHelmetInt10"] = { affix = "", "20% chance to create Shocked Ground when Hit", statOrder = { 2577 }, level = 1, group = "ShockedGroundWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3355479537] = { "20% chance to create Shocked Ground when Hit" }, } }, - ["ShockedGroundWhenHitUnique__1"] = { affix = "", "Trigger Level 10 Shock Ground when Hit", statOrder = { 676 }, level = 1, group = "ShockedGroundWhenHitSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2668070396] = { "Trigger Level 10 Shock Ground when Hit" }, } }, - ["AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10"] = { affix = "", "Adds 1 to (60-80) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (60-80) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks" }, } }, - ["RandomCurseOnHitChanceUniqueHelmetInt10"] = { affix = "", "20% chance to Curse non-Cursed Enemies with a random Hex on Hit", statOrder = { 9826 }, level = 1, group = "RandomCurseOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1726444796] = { "20% chance to Curse non-Cursed Enemies with a random Hex on Hit" }, } }, - ["RandomCurseWhenHitChanceUnique__1"] = { affix = "", "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit", statOrder = { 9827 }, level = 1, group = "RandomCurseWhenHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2674214144] = { "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit" }, } }, - ["CanInflictMultipleIgnitesUniqueRing38"] = { affix = "", "You can inflict an additional Ignite on each Enemy", statOrder = { 9522 }, level = 20, group = "CanInflictMultipleIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2837603657] = { "You can inflict an additional Ignite on each Enemy" }, } }, - ["EmberwakeLessBurningDamageUniqueRing38"] = { affix = "", "Ignited Enemies Burn (50-65)% slower", statOrder = { 2565 }, level = 1, group = "EmberwakeLessBurningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1619549198] = { "Ignited Enemies Burn (50-65)% slower" }, } }, - ["EmberwakeLessBurningDamageUnique__1"] = { affix = "", "40% less Burning Damage", statOrder = { 8013 }, level = 1, group = "EmberwakeLessBurningDamageNew", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3134513219] = { "40% less Burning Damage" }, } }, - ["GainPhasingOnVaalSkillUseUnique__1"] = { affix = "", "You gain Phasing for 10 seconds on using a Vaal Skill", statOrder = { 2921 }, level = 1, group = "GainPhasingOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [4089413281] = { "You gain Phasing for 10 seconds on using a Vaal Skill" }, } }, - ["MovementSpeedWhilePhasedUnique__1"] = { affix = "", "15% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "15% increased Movement Speed while Phasing" }, } }, - ["MovementSpeedWhilePhasedUnique__2"] = { affix = "", "10% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "10% increased Movement Speed while Phasing" }, } }, - ["LifePerRedSocket"] = { affix = "", "+30 to Maximum Life per Red Socket", statOrder = { 2716 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210076836] = { "+30 to Maximum Life per Red Socket" }, } }, - ["EnergyShieldPerBlueSocket"] = { affix = "", "+30 to Maximum Energy Shield per Blue Socket", statOrder = { 2724 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2906522048] = { "+30 to Maximum Energy Shield per Blue Socket" }, } }, - ["ManaPerGreenSocket"] = { affix = "", "+30 to Maximum Mana per Green Socket", statOrder = { 2720 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [896299992] = { "+30 to Maximum Mana per Green Socket" }, } }, - ["LifePerRedSocketUniqueRing39"] = { affix = "", "+100 to Maximum Life per Red Socket", statOrder = { 2716 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210076836] = { "+100 to Maximum Life per Red Socket" }, } }, - ["EnergyShieldPerBlueSocketUniqueRing39"] = { affix = "", "+100 to Maximum Energy Shield per Blue Socket", statOrder = { 2724 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2906522048] = { "+100 to Maximum Energy Shield per Blue Socket" }, } }, - ["ManaPerGreenSocketUniqueRing39"] = { affix = "", "+100 to Maximum Mana per Green Socket", statOrder = { 2720 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [896299992] = { "+100 to Maximum Mana per Green Socket" }, } }, - ["ItemRarityPerWhiteSocketUniqueRing39"] = { affix = "", "60% increased Item Rarity per White Socket", statOrder = { 2730 }, level = 1, group = "ItemRarityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144675621] = { "60% increased Item Rarity per White Socket" }, } }, - ["IncreasedDamageOnZeroEnergyShieldUniqueShieldStrInt8"] = { affix = "", "(20-30)% increased Damage while you have no Energy Shield", statOrder = { 2734 }, level = 1, group = "IncreasedDamageOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [414379784] = { "(20-30)% increased Damage while you have no Energy Shield" }, } }, - ["IncreasedArmourOnZeroEnergyShieldUnique__1"] = { affix = "", "100% increased Global Armour while you have no Energy Shield", statOrder = { 2735 }, level = 1, group = "IncreasedArmourOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3827349913] = { "100% increased Global Armour while you have no Energy Shield" }, } }, - ["UnholyMightOnBlockChanceUniqueShieldStrInt8"] = { affix = "", "30% chance to gain Unholy Might on Block for 3 seconds", statOrder = { 3046 }, level = 1, group = "UnholyMightOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [414622266] = { "30% chance to gain Unholy Might on Block for 3 seconds" }, } }, - ["UnholyMightOnBlockChanceUnique__1"] = { affix = "", "Gain Unholy Might on Block for 10 seconds", statOrder = { 3046 }, level = 1, group = "UnholyMightOnBlockChanceDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3217895241] = { "" }, [414622266] = { "Gain Unholy Might on Block for 3 seconds" }, } }, - ["IncreasedDamageOnBurningGroundUniqueBootsInt6"] = { affix = "", "50% increased Damage on Burning Ground", statOrder = { 2147 }, level = 1, group = "IncreasedDamageOnBurningGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3098087057] = { "50% increased Damage on Burning Ground" }, } }, - ["LifeRegenerationPercentOnChilledGroundUniqueBootsInt6"] = { affix = "", "Regenerate 2% of Life per second on Chilled Ground", statOrder = { 2148 }, level = 1, group = "LifeRegenerationPercentOnChilledGround", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [710105516] = { "Regenerate 2% of Life per second on Chilled Ground" }, } }, - ["MovementVelocityOnShockedGroundUniqueBootsInt6_"] = { affix = "", "20% increased Movement Speed on Shocked Ground", statOrder = { 2146 }, level = 1, group = "MovementVelocityOnShockedGround", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3678841229] = { "20% increased Movement Speed on Shocked Ground" }, } }, - ["ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8"] = { affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.4% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__1"] = { affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__2"] = { affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } }, - ["ChaosDamageLifeLeechPermyriadUnique__3"] = { affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.4-0.5)% of Chaos Damage Leeched as Life" }, } }, - ["PhysicalDamageAddedAsChaosImplicitQuiver11New"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 69, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (10-15)% of Physical Damage as Extra Chaos Damage" }, } }, - ["PhysicalDamageAddedAsChaosUniqueShiledStrInt8"] = { affix = "", "Gain (5-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (5-10)% of Physical Damage as Extra Chaos Damage" }, } }, - ["ItemQuantityPerWhiteSocketUniqueRing39_"] = { affix = "", "15% increased Item Quantity per White Socket", statOrder = { 2728 }, level = 75, group = "ItemQuantityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2340173293] = { "15% increased Item Quantity per White Socket" }, } }, - ["ChaosDamageDoesNotBypassESDuringFlaskEffectUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield during effect", statOrder = { 960 }, level = 1, group = "ChaosDamageDoesNotBypassESDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2229840047] = { "Chaos Damage taken does not bypass Energy Shield during effect" }, } }, - ["RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUseUnique__1"] = { affix = "", "Removes all but one Life on use", "Removed life is Regenerated as Energy Shield over 2 seconds", statOrder = { 3144, 3144.1 }, level = 1, group = "RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4149482999] = { "" }, [887466725] = { "" }, } }, - ["TalismanHasOneSocket_"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["TalismanIncreasedMana"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["TalismanIncreasedFireDamage"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["TalismanIncreasedColdDamage"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["TalismanIncreasedLightningDamage"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["TalismanIncreasedPhysicalDamage"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, - ["TalismanIncreasedChaosDamage"] = { affix = "", "(19-31)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(19-31)% increased Chaos Damage" }, } }, - ["TalismanAdditionalZombie"] = { affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, - ["TalismanIncreasedCriticalChance"] = { affix = "", "(40-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-50)% increased Global Critical Strike Chance" }, } }, - ["TalismanIncreasedStrength"] = { affix = "", "(8-14)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(8-14)% increased Strength" }, } }, - ["TalismanIncreasedDexterity"] = { affix = "", "(8-14)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-14)% increased Dexterity" }, } }, - ["TalismanIncreasedIntelligence"] = { affix = "", "(8-14)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-14)% increased Intelligence" }, } }, - ["TalismanIncreasedEnergyShield"] = { affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["TalismanIncreasedLife"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-12)% increased maximum Life" }, } }, - ["TalismanIncreasedItemQuantity"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-10)% increased Quantity of Items found" }, } }, - ["TalismanIncreasedAllAttributes"] = { affix = "", "(12-16)% increased Attributes", statOrder = { 1183 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(12-16)% increased Attributes" }, } }, - ["TalismanGlobalDamageOverTimeMultiplier"] = { affix = "", "+(12-18)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-18)% to Damage over Time Multiplier" }, } }, - ["AllAttributesPercentUnique__1"] = { affix = "", "(5-7)% increased Attributes", statOrder = { 1183 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(5-7)% increased Attributes" }, } }, - ["AllAttributesPercentUnique__2"] = { affix = "", "(5-15)% increased Attributes", statOrder = { 1183 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(5-15)% increased Attributes" }, } }, - ["TalismanIncreasedDamage"] = { affix = "", "(25-35)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(25-35)% increased Damage" }, } }, - ["TalismanIncreasedCriticalStrikeMultiplier_"] = { affix = "", "+(24-36)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(24-36)% to Global Critical Strike Multiplier" }, } }, - ["TalismanDamageDealtAddedAsRandomElement"] = { affix = "", "Gain (6-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 1, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (6-12)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["TalismanIncreasedAreaOfEffect"] = { affix = "", "(5-8)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(5-8)% increased Area of Effect" }, } }, - ["TalismanFireTakenAsCold"] = { affix = "", "50% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "50% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageTakenAsColdUnique___1"] = { affix = "", "20% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "20% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageTakenAsColdUnique___2_"] = { affix = "", "30% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 62, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "30% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["TalismanFireTakenAsLightning"] = { affix = "", "50% of Fire Damage from Hits taken as Lightning Damage", statOrder = { 3177 }, level = 1, group = "FireDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [1504091975] = { "50% of Fire Damage from Hits taken as Lightning Damage" }, } }, - ["TalismanColdTakenAsFire"] = { affix = "", "50% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3178 }, level = 1, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "50% of Cold Damage from Hits taken as Fire Damage" }, } }, - ["TalismanColdTakenAsLightning"] = { affix = "", "50% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 3179 }, level = 1, group = "ColdDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [1313503107] = { "50% of Cold Damage from Hits taken as Lightning Damage" }, } }, - ["TalismanLightningTakenAsCold"] = { affix = "", "50% of Lightning Damage from Hits taken as Cold Damage", statOrder = { 3182 }, level = 1, group = "LightningDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [1017730114] = { "50% of Lightning Damage from Hits taken as Cold Damage" }, } }, - ["TalismanLightningTakenAsFire"] = { affix = "", "50% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 3180 }, level = 1, group = "LightningDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [3375859421] = { "50% of Lightning Damage from Hits taken as Fire Damage" }, } }, - ["TalismanReducedPhysicalDamageTaken_"] = { affix = "", "(4-6)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(4-6)% additional Physical Damage Reduction" }, } }, - ["TalismanIncreasedSkillEffectDuration"] = { affix = "", "(20-25)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(20-25)% increased Skill Effect Duration" }, } }, - ["TalismanPercentLifeRegeneration"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, - ["TalismanChanceToFreezeShockIgnite_"] = { affix = "", "(4-6)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(4-6)% chance to Freeze, Shock and Ignite" }, } }, - ["TalismanFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, - ["TalismanPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, - ["TalismanEnduranceChargeOnKill_"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on Kill" }, } }, - ["TalismanGlobalDefensesPercent"] = { affix = "", "(15-25)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(15-25)% increased Global Defences" }, } }, - ["TalismanFishBiteSensitivity"] = { affix = "", "(30-40)% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 1, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [1296614065] = { "(30-40)% increased Fish Bite Sensitivity" }, } }, - ["FishBiteSensitivityUnique__1"] = { affix = "", "(20-40)% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 48, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [1296614065] = { "(20-40)% increased Fish Bite Sensitivity" }, } }, - ["TalismanAttackAndCastSpeed"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, - ["TalismanSpellDamage"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["TalismanAttackDamage"] = { affix = "", "(20-30)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-30)% increased Attack Damage" }, } }, - ["TalismanPierceChance"] = { affix = "", "Projectiles Pierce (25-35) additional Targets", statOrder = { 10355 }, level = 1, group = "OldTalismanPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2902845638] = { "Projectiles Pierce (25-35) additional Targets" }, } }, - ["TalismanAdditionalPierce"] = { affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["DamageTakeFromManaBeforeLifePerPowerChargeUnique__1"] = { affix = "", "1% of Damage is taken from Mana before Life per Power Charge", statOrder = { 3165 }, level = 40, group = "DamageTakeFromManaBeforeLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1325047894] = { "1% of Damage is taken from Mana before Life per Power Charge" }, } }, - ["IncreasedManaRegenerationPerPowerChargeUnique__1"] = { affix = "", "10% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 1, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "10% increased Mana Regeneration Rate per Power Charge" }, } }, - ["CriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "40% reduced Critical Strike Chance per Power Charge", statOrder = { 3166 }, level = 1, group = "CriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2102212273] = { "40% reduced Critical Strike Chance per Power Charge" }, } }, - ["IncreasedFireballRadiusUniqueJewel57"] = { affix = "", "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius", statOrder = { 3147 }, level = 1, group = "IncreasedFireballRadiusAtLongRangeJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3802517517] = { "" }, [1657716311] = { "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius" }, [1321847001] = { "" }, } }, - ["AdditionalGlacialCascadeSequenceUniqueJewel58"] = { affix = "", "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius", statOrder = { 3148, 3149, 3155 }, level = 1, group = "AdditionalGlacialCascadeSequenceJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1966815700] = { "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius" }, [2797049742] = { "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius" }, [3802517517] = { "" }, [741102575] = { "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius" }, } }, - ["AnimateBowsAndWandsUnique____70"] = { affix = "", "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons", statOrder = { 3254 }, level = 1, group = "AnimateBowsAndWandsJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3585572043] = { "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons" }, } }, - ["ExtraArrowForSplitArrowUniqueJewel60"] = { affix = "", "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius", "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius", statOrder = { 3154, 3157 }, level = 1, group = "ExtraArrowForSplitArrowJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3802517517] = { "" }, [1872333105] = { "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius" }, [3944719053] = { "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius" }, } }, - ["FlaskChargeRecoveryDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Flask Charges gained during any Flask Effect", statOrder = { 3183 }, level = 1, group = "FlaskChargeRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [662803072] = { "50% increased Flask Charges gained during any Flask Effect" }, } }, - ["FlaskChargeRecoveryDuringFlaskEffectUnique__2"] = { affix = "", "30% reduced Flask Charges gained during any Flask Effect", statOrder = { 3183 }, level = 1, group = "FlaskChargeRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [662803072] = { "30% reduced Flask Charges gained during any Flask Effect" }, } }, - ["ManaRegenerationDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Mana Regeneration Rate during any Flask Effect", statOrder = { 3184 }, level = 14, group = "ManaRegenerationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2993091567] = { "50% increased Mana Regeneration Rate during any Flask Effect" }, } }, - ["EnemiesLoseLifePlayerLeechesUnique__1"] = { affix = "", "200% of Life Leech applies to Enemies as Chaos Damage", statOrder = { 3185 }, level = 55, group = "EnemiesLoseLifePlayerLeeches", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "life", "damage", "chaos" }, tradeHashes = { [768537671] = { "200% of Life Leech applies to Enemies as Chaos Damage" }, } }, - ["MovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "15% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 1, group = "MovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "15% increased Movement Speed during any Flask Effect" }, } }, - ["NoExtraBleedDamageWhileMovingUniqueAmulet25"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 69, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["NoExtraBleedDamageWhileMovingUnique__1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["AttacksHaveBloodMagic__1"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10832 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3358745905] = { "Attacks Cost Life instead of Mana" }, } }, - ["SocketedTrapSkillsCreateSmokeCloudWhenDetonated__1"] = { affix = "", "Traps from Socketed Skills create a Smoke Cloud when triggered", statOrder = { 613 }, level = 1, group = "SocketedTrapSkillsCreateSmokeCloudWhenDetonated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263384098] = { "Traps from Socketed Skills create a Smoke Cloud when triggered" }, } }, - ["FireDamageToBlindEnemies__1"] = { affix = "", "(30-50)% increased Fire Damage with Hits and Ailments against Blinded Enemies", statOrder = { 3220 }, level = 1, group = "FireDamageToBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1601181226] = { "(30-50)% increased Fire Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["SpellDamageTakenFromBlindEnemies__1"] = { affix = "", "30% reduced Spell Damage taken from Blinded Enemies", statOrder = { 3221 }, level = 1, group = "SpellDamageTakenFromBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1165847826] = { "30% reduced Spell Damage taken from Blinded Enemies" }, } }, - ["GlacialHammerThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer", statOrder = { 3225, 3225.1 }, level = 1, group = "GlacialHammerThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "drop" }, tradeHashes = { [1250317014] = { "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer" }, [3802517517] = { "" }, } }, - ["SpectralThrowThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits", statOrder = { 3226 }, level = 1, group = "SpectralThrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [811386429] = { "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits" }, } }, - ["ViperStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy", statOrder = { 3228 }, level = 1, group = "ViperStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [695031402] = { "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy" }, } }, - ["ViperStrikeThresholdJewel__2"] = { affix = "", "With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit", statOrder = { 8126 }, level = 1, group = "ViperStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [235847153] = { "With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit" }, } }, - ["HeavyStrikeThresholdJewel___1"] = { affix = "", "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage", statOrder = { 3229, 3229.1 }, level = 1, group = "HeavyStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [1025503586] = { "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage" }, } }, - ["ShrapnelShotThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage", statOrder = { 3351, 8116 }, level = 1, group = "ShrapnelShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [1170556324] = { "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage" }, [3945934607] = { "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect" }, } }, - ["BurningArrowThresholdJewel_2"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2593 }, level = 1, group = "BurningArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [223497523] = { "" }, [3173052379] = { "Ignited Enemies Killed by your Hits are destroyed" }, } }, - ["CleaveThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Cleave Fortify", "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre", statOrder = { 3345, 3346, 3346.1 }, level = 1, group = "CleaveThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [1539696482] = { "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre" }, [1248507170] = { "With at least 40 Strength in Radius, Hits with Cleave Fortify" }, } }, - ["FreezingPulseThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently", statOrder = { 3354, 3355, 3355.1 }, level = 1, group = "FreezingPulseThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3802517517] = { "" }, [2098320128] = { "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles" }, [2074744008] = { "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently" }, } }, - ["IceShotThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot Pierces 50 additional Targets", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", statOrder = { 8083, 8084 }, level = 1, group = "IceShotThresholdJewelOld", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3442130499] = { "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect" }, [804496834] = { "With at least 40 Dexterity in Radius, Ice Shot Pierces 50 additional Targets" }, [3802517517] = { "" }, } }, - ["IceShotThresholdJewel__2"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets", statOrder = { 8084, 8085 }, level = 1, group = "IceShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3442130499] = { "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect" }, [3103494675] = { "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets" }, [3802517517] = { "" }, } }, - ["MoltenStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles", "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect", statOrder = { 8097, 8098 }, level = 1, group = "MoltenStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [2845889407] = { "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles" }, [1163758055] = { "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect" }, } }, - ["MoltenStrikeThresholdJewel__2"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time", "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles", statOrder = { 7975, 7976, 7977 }, level = 1, group = "MoltenStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [670814047] = { "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground" }, [786380548] = { "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles" }, [2295439133] = { "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time" }, [3802517517] = { "" }, } }, - ["FrostBladesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance", "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed", statOrder = { 8076, 8076.1, 8077 }, level = 1, group = "FrostBladesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "speed" }, tradeHashes = { [3802517517] = { "" }, [2092708508] = { "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed" }, [2412100590] = { "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance" }, } }, - ["DualStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon", "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets", statOrder = { 8060, 8060.1, 8062, 8062.1 }, level = 1, group = "DualStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [3603019813] = { "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets" }, [3765671129] = { "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon" }, } }, - ["DualStrikeThresholdJewelAxe"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for", "4 seconds while wielding an Axe", statOrder = { 8059, 8059.1 }, level = 1, group = "DualStrikeThresholdJewelAxe", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [100088509] = { "With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for", "4 seconds while wielding an Axe" }, } }, - ["DualStrikeThresholdJewelClaw"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has (10-15)% increased Attack", "Speed while wielding a Claw", statOrder = { 8057, 8057.1 }, level = 1, group = "DualStrikeThresholdJewelClaw", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1795260970] = { "With at least 40 Dexterity in Radius, Dual Strike has (10-15)% increased Attack", "Speed while wielding a Claw" }, } }, - ["DualStrikeThresholdJewelDagger"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has +(20-30)% to Critical Strike", "Multiplier while wielding a Dagger", statOrder = { 8058, 8058.1 }, level = 1, group = "DualStrikeThresholdJewelDagger", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1503812817] = { "With at least 40 Dexterity in Radius, Dual Strike has +(20-30)% to Critical Strike", "Multiplier while wielding a Dagger" }, } }, - ["DualStrikeThresholdJewelMace"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage", "to surrounding targets while wielding a Mace", statOrder = { 8061, 8061.1 }, level = 1, group = "DualStrikeThresholdJewelMace", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2562474285] = { "With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage", "to surrounding targets while wielding a Mace" }, } }, - ["DualStrikeThresholdJewelSword_"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased", "Accuracy Rating while wielding a Sword", statOrder = { 8056, 8056.1 }, level = 1, group = "DualStrikeThresholdJewelSword", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2869420801] = { "With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased", "Accuracy Rating while wielding a Sword" }, } }, - ["DualStrikeThresholdJewel__2_"] = { affix = "", "(10-15)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "DualStrikeThresholdJewelDamageRadius", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [2843214518] = { "(10-15)% increased Attack Damage" }, } }, - ["FrostboltThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second", statOrder = { 8078, 8079 }, level = 1, group = "FrostboltThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2727977666] = { "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second" }, [3790108551] = { "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles" }, } }, - ["EtherealKnivesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle", statOrder = { 3348 }, level = 1, group = "EtherealKnivesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2511280084] = { "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle" }, [2822821681] = { "" }, } }, - ["LightningTendrilsThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit", statOrder = { 8092 }, level = 1, group = "LightningTendrilsThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2958270185] = { "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit" }, } }, - ["MagmaOrbThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 8093, 8094, 8094.1 }, level = 1, group = "MagmaOrbThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [160933750] = { "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain" }, [2542542825] = { "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile" }, } }, - ["MagmaOrbThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage", "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 7973, 7974, 8094, 8094.1 }, level = 1, group = "MagmaOrbThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1141756390] = { "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain" }, [3131110290] = { "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage" }, [160933750] = { "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain" }, [3802517517] = { "" }, } }, - ["GlacialHammerThresholdJewel_2"] = { affix = "", "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets", "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage", statOrder = { 3349, 3349.1, 3350, 3350.1 }, level = 1, group = "GlacialHammerThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [3802517517] = { "" }, [3565558422] = { "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets" }, [3738331820] = { "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage" }, } }, - ["BlightThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling", statOrder = { 8042 }, level = 1, group = "BlightThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [3240043456] = { "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling" }, } }, - ["BlightThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8038, 8040 }, level = 1, group = "BlightThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2181499453] = { "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration" }, [435737693] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, } }, - ["BlightThresholdJewel_3"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8037, 8040 }, level = 1, group = "BlightThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [2181499453] = { "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration" }, [3881647885] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, } }, - ["BlightThresholdJewel_4"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed", statOrder = { 8037, 8039 }, level = 1, group = "BlightThresholdJewel4", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3881647885] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, [222829382] = { "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed" }, } }, - ["RaiseZombieThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate", "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage", statOrder = { 8127, 8127.1, 8128, 8128.1 }, level = 1, group = "RaiseZombieThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [781633505] = { "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage" }, [3802517517] = { "" }, [1097026492] = { "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate" }, } }, - ["SparkThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles", statOrder = { 3353 }, level = 1, group = "SparkThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1645248914] = { "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles" }, [3802517517] = { "" }, [2333775394] = { "" }, } }, - ["SparkThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle", statOrder = { 8119 }, level = 1, group = "SparkThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1650632809] = { "" }, [935386993] = { "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle" }, } }, - ["FireTrapThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap", statOrder = { 8075 }, level = 1, group = "FireTrapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1309764735] = { "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap" }, [3802517517] = { "" }, } }, - ["SplitArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel", statOrder = { 8124 }, level = 1, group = "SplitArrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [1385108739] = { "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel" }, [1304044957] = { "" }, } }, - ["GlacialCascadeThresholdJewel1"] = { affix = "", "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst", "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage", statOrder = { 8080, 8081, 8081.1 }, level = 1, group = "GlacialCascadeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1478305007] = { "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage" }, [1367987042] = { "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst" }, } }, - ["CausticArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits", statOrder = { 8045 }, level = 1, group = "CausticArrowThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1689539796] = { "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits" }, [3802517517] = { "" }, } }, - ["CausticArrowThresholdJewel2"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 40% increased Damage over Time", statOrder = { 8044 }, level = 1, group = "CausticArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [101715298] = { "With at least 40 Dexterity in Radius, Caustic Arrow deals 40% increased Damage over Time" }, } }, - ["CausticArrowThresholdJewel3"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow has a 50% chance on Hit to Poison Enemies on Caustic Ground", statOrder = { 8043 }, level = 1, group = "CausticArrowThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [2428035730] = { "With at least 40 Dexterity in Radius, Caustic Arrow has a 50% chance on Hit to Poison Enemies on Caustic Ground" }, } }, - ["SpectralShieldThrowThresholdJewel1_"] = { affix = "", "+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield", statOrder = { 9549 }, level = 1, group = "ShieldCritChancePerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3285400610] = { "+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield" }, [223497523] = { "" }, } }, - ["SpectralShieldThrowThresholdJewel2"] = { affix = "", "+4% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield", statOrder = { 9550 }, level = 1, group = "ShieldCritMultiplierPerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [240790947] = { "+4% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" }, } }, - ["IncreasedStunThresholdUnique__1_"] = { affix = "", "20% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% increased Stun Threshold" }, } }, - ["StunThresholdBasedOnManaUnique__1"] = { affix = "", "Stun Threshold is based on 500% of your Mana instead of Life", statOrder = { 3271 }, level = 1, group = "StunThresholdBasedOnMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2280488002] = { "Stun Threshold is based on 500% of your Mana instead of Life" }, } }, - ["PowerChargeOnCriticalStrikeChanceUnique__1"] = { affix = "", "25% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Strike" }, } }, - ["NoLifeRegenerationUnique___1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2271 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, - ["NeverBlockUnique__1"] = { affix = "", "Cannot Block", statOrder = { 3265 }, level = 1, group = "NeverBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4127720801] = { "Cannot Block" }, } }, - ["LocalShieldHasNoBlockChanceUnique__1"] = { affix = "", "No Chance to Block", statOrder = { 3266 }, level = 1, group = "LocalShieldHasNoBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1023752508] = { "No Chance to Block" }, } }, - ["LocalFlaskOnslaughtPerFrenzyChargeUnique__1"] = { affix = "", "Gain Onslaught for 3 seconds per Frenzy Charge consumed on use", statOrder = { 889 }, level = 1, group = "LocalFlaskOnslaughtPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [661376813] = { "Gain Onslaught for 3 seconds per Frenzy Charge consumed on use" }, } }, - ["GrantUniqueBuff__1"] = { affix = "", "Gain Her Blessing for 3 seconds when you Ignite an Enemy", statOrder = { 3278 }, level = 66, group = "HerBlessingOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4203400545] = { "Gain Her Blessing for 3 seconds when you Ignite an Enemy" }, } }, - ["UniqueConditionOnBuff__1"] = { affix = "", "100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing", statOrder = { 3280 }, level = 66, group = "AvoidAilmentsDuringHerBlessing", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1093704472] = { "100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing" }, } }, - ["UniqueConditionOnBuff__2"] = { affix = "", "20% increased Attack and Movement Speed with Her Blessing", statOrder = { 3281 }, level = 66, group = "AttackAndMoveSpeedDuringHerBlessing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2968804751] = { "20% increased Attack and Movement Speed with Her Blessing" }, } }, - ["UniqueEffectOnBuff__3"] = { affix = "", "33% chance to Blind nearby Enemies when gaining Her Blessing", statOrder = { 3279 }, level = 66, group = "BlindOnGainingHerBlessing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2327728343] = { "33% chance to Blind nearby Enemies when gaining Her Blessing" }, } }, - ["RallyingCryThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently", statOrder = { 3261 }, level = 1, group = "RallyingCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [303219716] = { "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently" }, [3802517517] = { "" }, } }, - ["VigilantStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds", statOrder = { 3248 }, level = 1, group = "VigilantStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [530280833] = { "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds" }, [3802517517] = { "" }, } }, - ["ColdsnapThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area", "With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges", statOrder = { 8051, 8051.1 }, level = 1, group = "ColdSnapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2560038623] = { "With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area", "With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges" }, [3802517517] = { "" }, } }, - ["FireballThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect", statOrder = { 3250 }, level = 1, group = "FireballThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [24977021] = { "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect" }, } }, - ["FireballThresholdJewel__2_"] = { affix = "", "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius", statOrder = { 3251 }, level = 1, group = "FireballThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1351893427] = { "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius" }, [3802517517] = { "" }, } }, - ["FireballThresholdJewel__3"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball cannot ignite", "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch", statOrder = { 7970, 7971 }, level = 1, group = "FireballThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [480975218] = { "With at least 40 Intelligence in Radius, Fireball cannot ignite" }, [1482194094] = { "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch" }, } }, - ["ShockNearbyEnemiesDuringFlaskEffect___1"] = { affix = "", "Shocks nearby Enemies during Effect, causing 10% increased Damage taken", statOrder = { 1054 }, level = 85, group = "ShockNearbyEnemiesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [3446170049] = { "Shocks nearby Enemies during Effect, causing 10% increased Damage taken" }, } }, - ["ShockSelfDuringFlaskEffect__1"] = { affix = "", "You are Shocked during Effect, causing 50% increased Damage taken", statOrder = { 1055 }, level = 1, group = "ShockSelfDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [1187803783] = { "You are Shocked during Effect, causing 50% increased Damage taken" }, } }, - ["LightningLifeLeechDuringFlaskEffect__1"] = { affix = "", "20% of Lightning Damage Leeched as Life during Effect", statOrder = { 1062 }, level = 1, group = "LightningLifeLeechDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "elemental", "lightning" }, tradeHashes = { [2687254633] = { "20% of Lightning Damage Leeched as Life during Effect" }, } }, - ["LightningManaLeechDuringFlaskEffect__1"] = { affix = "", "20% of Lightning Damage Leeched as Mana during Effect", statOrder = { 1063 }, level = 1, group = "LightningManaLeechDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana", "elemental", "lightning" }, tradeHashes = { [1454377049] = { "20% of Lightning Damage Leeched as Mana during Effect" }, } }, - ["LeechInstantDuringFlaskEffect__1"] = { affix = "", "Life and Mana Leech are instant during effect", statOrder = { 1064 }, level = 1, group = "LeechInstantDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1102362593] = { "Life and Mana Leech are instant during effect" }, } }, - ["AddedLightningDamageDuringFlaskEffect__1"] = { affix = "", "Adds (10-15) to (55-65) Lightning Damage to Attacks during Effect", statOrder = { 1060 }, level = 1, group = "AddedLightningDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4292531291] = { "Adds (10-15) to (55-65) Lightning Damage to Attacks during Effect" }, } }, - ["AddedSpellLightningDamageDuringFlaskEffect__1"] = { affix = "", "Adds (10-15) to (55-65) Lightning Damage to Spells during Effect", statOrder = { 1061 }, level = 1, group = "AddedSpellLightningDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4108305628] = { "Adds (10-15) to (55-65) Lightning Damage to Spells during Effect" }, } }, - ["PhysicalToLightningDuringFlaskEffect__1"] = { affix = "", "50% of Physical Damage Converted to Lightning during Effect", statOrder = { 1056 }, level = 1, group = "PhysicalToLightningDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [660386148] = { "50% of Physical Damage Converted to Lightning during Effect" }, } }, - ["LightningPenetrationDuringFlaskEffect__1"] = { affix = "", "Damage Penetrates 6% Lightning Resistance during Effect", statOrder = { 1057 }, level = 1, group = "LightningPenetrationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4164990693] = { "Damage Penetrates 6% Lightning Resistance during Effect" }, } }, - ["MinionAttackAndCastSpeedPerSkeleton__1"] = { affix = "", "2% increased Minion Attack and Cast Speed per Skeleton you own", statOrder = { 3273 }, level = 1, group = "MinionAttackAndCastSpeedPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [729367217] = { "2% increased Minion Attack and Cast Speed per Skeleton you own" }, } }, - ["MinionDurationPerZombie__1"] = { affix = "", "2% increased Minion Duration per Raised Zombie", statOrder = { 3274 }, level = 1, group = "MinionDurationPerZombie", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [777246604] = { "2% increased Minion Duration per Raised Zombie" }, } }, - ["MinionDamagePerSpectre__1"] = { affix = "", "(8-12)% increased Minion Damage per Raised Spectre", statOrder = { 3275 }, level = 1, group = "MinionDamagePerSpectre", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3191537057] = { "(8-12)% increased Minion Damage per Raised Spectre" }, } }, - ["MinionLifeRegenerationPerRagingSpirit__1"] = { affix = "", "Minions Regenerate (1.5-2.5)% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1.5-2.5)% of Life per second" }, } }, - ["ExplodeOnKillChaosUnique__1"] = { affix = "", "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3305 }, level = 1, group = "ObliterationExplodeOnKillChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1776945532] = { "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, - ["ReduceManaCostPerEnduranceChargeUnique__1"] = { affix = "", "4% reduced Mana Cost per Endurance Charge", statOrder = { 3267 }, level = 1, group = "ReduceManaCostPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1774881905] = { "4% reduced Mana Cost per Endurance Charge" }, } }, - ["RampageWhileAtMaxEnduranceChargesUnique__1"] = { affix = "", "Gain Rampage while at Maximum Endurance Charges", statOrder = { 3268 }, level = 1, group = "RampageWhileAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1643796079] = { "Gain Rampage while at Maximum Endurance Charges" }, } }, - ["LoseEnduranceChargesOnRampageEndUnique___1"] = { affix = "", "Lose all Endurance Charges when Rampage ends", statOrder = { 3269 }, level = 1, group = "LoseEnduranceChargesOnRampageEnd", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2881426199] = { "Lose all Endurance Charges when Rampage ends" }, } }, - ["IncreasedDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "40% increased Damage with Hits against Frozen Enemies", statOrder = { 1236 }, level = 1, group = "IncreasedDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1196902248] = { "40% increased Damage with Hits against Frozen Enemies" }, } }, - ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3344 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, - ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Causes Bleeding when you Stun", statOrder = { 2484 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1562912554] = { "Causes Bleeding when you Stun" }, } }, - ["GrantEnemiesUnholyMightOnKillUnique__1"] = { affix = "", "5% chance to grant Chaotic Might to nearby Enemies on Kill", statOrder = { 3383 }, level = 1, group = "GrantEnemiesUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607444087] = { "5% chance to grant Chaotic Might to nearby Enemies on Kill" }, } }, - ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3382 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, - ["UnholyMightOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5701 }, level = 20, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [562371749] = { "10% chance to gain Chaotic Might for 10 seconds on Kill" }, } }, - ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on Kill", statOrder = { 5695 }, 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 Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of Life on Kill" }, } }, - ["MaximumLifeOnKillPercentUnique__6"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1751 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of Mana on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of Energy Shield on Kill", statOrder = { 1750 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-5)% of Energy Shield on Kill" }, } }, - ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of Energy Shield on Kill", statOrder = { 1750 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 1% of Energy Shield on Kill" }, } }, - ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, [223497523] = { "" }, } }, - ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Manifested Dancing Dervishes disables both weapon slots", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3340, 3341, 3342 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Manifested Dancing Dervishes disables both weapon slots" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, - ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks", statOrder = { 3263 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [630867098] = { "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks" }, } }, - ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 3257, 3257.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [156016608] = { "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle" }, [3802517517] = { "" }, } }, - ["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 = { 3256, 3256.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 = { 3246 }, 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" }, [3802517517] = { "" }, } }, - ["AdditionalSnipeTotemsPerDexterityUnique__1"] = { affix = "", "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity", statOrder = { 3394 }, level = 1, group = "AdditionalSnipeTotemsPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2125178364] = { "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity" }, } }, - ["AdditionalShrapnelBallistaePerStrengthUnique__1"] = { affix = "", "Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength", statOrder = { 3393 }, level = 1, group = "AdditionalShrapnelBallistaePerStrength", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1124661381] = { "Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength" }, } }, - ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 3395 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2066426995] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity" }, } }, - ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4875 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Strength" }, } }, - ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, 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 = { 3403 }, 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 = { 511 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [13669281] = { "Socketed Gems are Supported by Level 15 Hypothermia" }, } }, - ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 512 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 15 Ice Bite" }, } }, - ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 512 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 15 Ice Bite" }, } }, - ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 513 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1991958615] = { "Socketed Gems are Supported by Level 15 Cold Penetration" }, } }, - ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 514 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2608615082] = { "Socketed Gems are Supported by Level 1 Mana Leech" }, } }, - ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 518 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 15 Added Cold Damage" }, } }, - ["DisplaySupportedByAddedColdDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Cold Damage", statOrder = { 518 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 29 Added Cold Damage" }, } }, - ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 519 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 519 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, - ["DisplaySupportedByBonechillUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Bonechill", statOrder = { 235 }, level = 1, group = "DisplaySupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1859244771] = { "Socketed Gems are Supported by Level 15 Bonechill" }, } }, - ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 883 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [570159344] = { "Consumes Frenzy Charges on use" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(120-140)% increased Critical Strike Chance against Blinded Enemies" }, } }, - ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(30-50)% increased Critical Strike Chance against Blinded Enemies" }, } }, - ["AddedFireDamageFromLightRadiusUnique__1"] = { affix = "", "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value", statOrder = { 9239 }, level = 1, group = "AddedFireDamageFromLightRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1911822529] = { "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value" }, } }, - ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits and Ailments against Hindered Enemies", statOrder = { 4107 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [528422616] = { "100% increased Damage with Hits and Ailments against Hindered Enemies" }, } }, - ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3427 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3968454273] = { "Gain Soul Eater during any Flask Effect" }, } }, - ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3428 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3577316952] = { "Lose all Eaten Souls when you use a Flask" }, } }, - ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 763 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4240751513] = { "Trigger Level 1 Fire Burst on Kill" }, } }, - ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 529, 529.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2497009514] = { "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled" }, } }, - ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 624 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3279574030] = { "Grants Level 20 Illusory Warp Skill" }, } }, - ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 7946 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4249200326] = { "Implicit Modifier magnitudes are doubled" }, } }, - ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 7947 }, level = 1, group = "LocalTripleImplicitMagnitudes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3910859570] = { "Implicit Modifier magnitudes are tripled" }, } }, - ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3568 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3919199754] = { "100% increased Damage with Unarmed Attacks against Bleeding Enemies" }, } }, - ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3572 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2865232420] = { "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills" }, } }, - ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+7% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3571 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+7% to Unarmed Melee Attack Critical Strike Chance" }, } }, - ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3570 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3148570142] = { "Gain 30 Life per Bleeding Enemy Hit" }, } }, - ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon", statOrder = { 745 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon" }, [2795142527] = { "" }, } }, - ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1426 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "35% increased Attack Speed with Swords" }, } }, - ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1303 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2008219439] = { "80% increased Physical Damage with Axes" }, } }, - ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "40% increased Physical Attack Damage while Dual Wielding" }, } }, - ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3581 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, - ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3573 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2988055461] = { "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills" }, } }, - ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills", statOrder = { 3574 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [531932482] = { "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills" }, } }, - ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3577 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [1912660783] = { "50% slower start of Energy Shield Recharge during any Flask Effect" }, } }, - ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3579 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [1827657795] = { "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect" }, } }, - ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3584 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4150597533] = { "1% increased Cold Damage per 1% Chance to Block Attack Damage" }, } }, - ["IncreasedManaPerSpellBlockChanceUnique__1"] = { affix = "", "1% increased Maximum Mana per 2% Chance to Block Spell Damage", statOrder = { 3585 }, level = 1, group = "IncreasedManaPerSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3645234093] = { "1% increased Maximum Mana per 2% Chance to Block Spell Damage" }, } }, - ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3586 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1857635068] = { "300% increased Armour while Chilled or Frozen" }, } }, - ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks" }, } }, - ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 896 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [538730182] = { "Creates a Smoke Cloud on Use" }, } }, - ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 878 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2146730404] = { "Creates Consecrated Ground on Use" }, } }, - ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 879 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311869501] = { "Creates Chilled Ground on Use" }, } }, - ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 893 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2005503156] = { "Taunts nearby Enemies on use" }, } }, - ["UtilityFlaskWard"] = { affix = "", "Restores Ward on use", statOrder = { 917 }, level = 1, group = "UtilityFlaskWard", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2451856207] = { "Restores Ward on use" }, } }, - ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 918, 918.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2434293916] = { "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit" }, } }, - ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1834 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, - ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, - ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2752 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3590104875] = { "You lose all Endurance Charges on reaching maximum Endurance Charges" }, } }, - ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach Maximum Power Charges", statOrder = { 3604 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach Maximum Power Charges" }, } }, - ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 781 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [4125471110] = { "20% chance to Trigger Level 16 Molten Burst on Melee Hit" }, } }, - ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 2981 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 20% Fire Resistance" }, } }, - ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 988 }, level = 1, group = "LocalFlaskPetrified", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1935500672] = { "Petrified during Effect" }, } }, - ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 969 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHashes = { [677302513] = { "(40-50)% additional Physical Damage Reduction during Effect" }, } }, - ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 3164 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1415558356] = { "Nearby Enemies take 50 Lightning Damage per second" }, } }, - ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3747 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3003321700] = { "Flasks do not apply to you" }, } }, - ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3748 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [3127641775] = { "Flasks you Use apply to your Raised Zombies and Spectres" }, } }, - ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 762 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3250579936] = { "Triggers Level 7 Abberath's Fury when Equipped" }, } }, - ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of Life per second while Frozen", statOrder = { 3741 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate 10% of Life per second while Frozen" }, } }, - ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "Retaliation Skills have 100% chance to Knockback", statOrder = { 3623 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [399854017] = { "Retaliation Skills have 100% chance to Knockback" }, } }, - ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "(25-35)% chance for Energy Shield Recharge to start when you Block", statOrder = { 3422 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [762154651] = { "(25-35)% chance for Energy Shield Recharge to start when you Block" }, } }, - ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3795 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1963540179] = { "This Weapon's Critical Strike Chance is 100%" }, } }, - ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3760 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [625037258] = { "Attacks with this Weapon deal Double Damage to Chilled Enemies" }, } }, - ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 30% Elemental Resistances" }, } }, - ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 851, 1069 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "defences", "energy_shield" }, tradeHashes = { [851224302] = { "Zealot's Oath during Effect" }, [74462130] = { "Life Recovery from Flasks also applies to Energy Shield during Effect" }, } }, - ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3765 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3905661226] = { "(60-80)% increased Damage while you have no Frenzy Charges" }, } }, - ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3766 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [47954913] = { "100% increased Critical Strike Chance against Enemies that are on Full Life" }, } }, - ["CriticalStrikeAttackLifeLeechUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life on Critical Strike", statOrder = { 3767 }, level = 1, group = "CriticalStrikeAttackLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2100196861] = { "1% of Attack Damage Leeched as Life on Critical Strike" }, } }, - ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3768 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (12-16) additional Attack Physical Damage" }, } }, - ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Lightning Damage", statOrder = { 3776 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1096897481] = { "Gain 15% of Physical Attack Damage as Extra Lightning Damage" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain 15% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3777 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3788706881] = { "+2 maximum Energy Shield per 5 Strength" }, } }, - ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, - ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, - ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3690 }, 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 = { 3690 }, 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 = { 626 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, - ["ZealotsOathUnique__1"] = { affix = "", "Zealot's Oath", statOrder = { 10807 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, - ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3779 }, 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 = { 496 }, 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 = { 3369 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["CannotBePoisonedUnique__2"] = { affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(50-100)% increased Energy Shield Recovery rate" }, } }, - ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 984 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4267616253] = { "Immunity to Damage during Effect" }, } }, - ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3795 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1963540179] = { "This Weapon's Critical Strike Chance is 100%" }, } }, - ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3798 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [555311393] = { "2% increased Physical Damage Over Time per 10 Dexterity" }, } }, - ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3799 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, tradeHashes = { [1030835421] = { "1% increased Bleeding Duration per 12 Intelligence" }, } }, - ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3801 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2072206041] = { "30% Chance to cause Bleeding Enemies to Flee on hit" }, } }, - ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "25% chance to Avoid Fire Damage from Hits" }, } }, - ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1925 }, level = 1, group = "TrapTriggerRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [497716276] = { "(40-60)% increased Trap Trigger Area of Effect" }, } }, - ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3407 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2901262227] = { "15% chance to create Chilled Ground when you Freeze an Enemy" }, } }, - ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 4127 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4148932984] = { "Create Consecrated Ground when you Shatter an Enemy" }, } }, - ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 3175 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "20% chance to Poison on Hit with Attacks" }, } }, - ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3797 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087710344] = { "(8-12)% Chance for Traps to Trigger an additional time" }, } }, - ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3796 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3391324703] = { "Traps and Mines deal (3-5) to (10-15) additional Physical Damage" }, } }, - ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 962 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [3686711832] = { "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost" }, } }, - ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 4090 }, level = 1, group = "TrapPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3192135716] = { "Traps and Mines have a 25% chance to Poison on Hit" }, } }, - ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 520 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 22 Blasphemy" }, } }, - ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 520 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, - ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 614 }, 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 = { 614 }, 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 = { 3384 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2367680009] = { "10% chance to grant a Power Charge to nearby Allies on Kill" }, } }, - ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 3385 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to nearby Allies on Hit" }, } }, - ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 784 }, 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 = { 1962 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, - ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 4128 }, 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 = { 4133 }, 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 = { 7989 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, - ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critically Strike Shocked Enemies", statOrder = { 4136 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critically Strike Shocked Enemies" }, } }, - ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Strikes against non-Shocked Enemies", statOrder = { 4137 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Strikes against non-Shocked Enemies" }, } }, - ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 4154 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2939409392] = { "Minions have 15% chance to Blind Enemies on hit" }, } }, - ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 4153 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2684385509] = { "Minions cannot be Blinded" }, } }, - ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 524 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, tradeHashes = { [4006301249] = { "Socketed Minion Gems are Supported by Level 16 Life Leech" }, } }, - ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 4155 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3020069394] = { "Found Magic Items drop Identified" }, } }, - ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 4156 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, [4230859323] = { "" }, } }, - ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 4157 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4230859323] = { "" }, [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, - ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 4160 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, [4230859323] = { "" }, } }, - ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Strike Chance per Grand Spectrum", statOrder = { 4159 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4230859323] = { "" }, [2948375275] = { "25% increased Critical Strike Chance per Grand Spectrum" }, } }, - ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per Grand Spectrum", statOrder = { 4161 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4230859323] = { "" }, [242161915] = { "+7% to all Elemental Resistances per Grand Spectrum" }, } }, - ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per Grand Spectrum", statOrder = { 4162 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per Grand Spectrum" }, [4230859323] = { "" }, } }, - ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 4158 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4230859323] = { "" }, [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, - ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Strike Multiplier per Grand Spectrum", statOrder = { 4166 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4230859323] = { "" }, [482240997] = { "Minions have +10% to Critical Strike Multiplier per Grand Spectrum" }, } }, - ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 4163 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4230859323] = { "" }, [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, - ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 4164 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4230859323] = { "" }, [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, - ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 4165 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4230859323] = { "" }, [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, - ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 20 Cold Damage to Spells per Power Charge" }, } }, - ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 50 to 70 Cold Damage to Spells per Power Charge" }, } }, - ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9852 }, 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 = { 1824 }, 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 = { 6050 }, 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 12 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 12 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 = { 4872 }, 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 25 Dexterity", statOrder = { 4902 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2241560081] = { "1% increased Attack Speed per 25 Dexterity" }, } }, - ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9431 }, 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 = { 4315 }, 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 = { 4313 }, 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 = { 9244 }, 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 = { 5828 }, 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 = { 9849 }, 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 = { 9849 }, 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 = { 9885 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, - ["ReflectsShockToEnemiesInRadiusUnique__1"] = { affix = "", "Reflect Shocks applied to you to all Nearby Enemies", statOrder = { 9886 }, level = 1, group = "ReflectsShockToEnemiesInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [615884286] = { "Reflect Shocks applied to you to all Nearby Enemies" }, } }, - ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5729 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } }, - ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6759 }, 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 = { 5812 }, 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 = { 5812 }, 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 = { 5216 }, 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 = { 1760 }, 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 Crushing Fist Skill", statOrder = { 656 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Crushing Fist Skill" }, } }, - ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of Life on Killing a Poisoned Enemy", statOrder = { 9366 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of Life on Killing a Poisoned Enemy" }, } }, - ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3605 }, 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 = { 655 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, - ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 655 }, 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 = { 4499 }, 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 = { 9611 }, 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 = { 3174 }, 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 = { 3174 }, 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 = { 765 }, 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 = { 811 }, 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 = { 4913 }, 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 by an Attack", statOrder = { 9834 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2155467472] = { "50% chance to be inflicted with Bleeding when Hit by an Attack" }, } }, - ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4763 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2129352930] = { "Armour is increased by Overcapped Fire Resistance" }, } }, - ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6487 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, - ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5919 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Strike Chance is increased by Overcapped Lightning Resistance" }, } }, - ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4695 }, 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 = { 1377 }, 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 = { 9161 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "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 = { 9161 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["GlobalIgniteProlifUnique__1"] = { affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } }, - ["GlobalIgniteProlifUnique__2"] = { affix = "", "Ignites you inflict spread to other Enemies within 2.8 metres", statOrder = { 2218 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.8 metres" }, } }, - ["LocalIgniteProlifEmberglowUnique__1"] = { affix = "", "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres", statOrder = { 7930 }, level = 1, group = "LocalIgniteProlifEmberglow", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1010930352] = { "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres" }, } }, - ["IgniteDurationEmberglowUnique__1"] = { affix = "", "50% less Duration of Ignites you inflict", statOrder = { 6356 }, level = 1, group = "IgniteDurationEmberglowUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3775619537] = { "50% less Duration of Ignites you inflict" }, } }, - ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, 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%" }, } }, - ["Roll6LinkedRandomColourSocketsUnique__1"] = { affix = "", "Sockets cannot be modified", statOrder = { 70 }, level = 1, group = "Roll6LinkedRandomColourSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3192592092] = { "Sockets cannot be modified" }, } }, - ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7870 }, 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 = { 2524 }, 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 = { 8071, 8071.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" }, } }, - ["ColdResistConvertedToDodgeChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Chance to Suppress Spell Damage at 70% of its value", statOrder = { 8050, 8050.1 }, level = 1, group = "ColdResistConvertedToDodgeChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1409669176] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Chance to Suppress Spell Damage at 70% of its value" }, } }, - ["LightningResistConvertedToSpellBlockChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Spell Damage at 50% of its value", statOrder = { 8088, 8088.1 }, level = 1, group = "LightningResistConvertedToSpellBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1224928411] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Spell 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 = { 8072, 8072.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3802517517] = { "" }, [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 = { 8048, 8048.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3802517517] = { "" }, [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 = { 8091, 8091.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3802517517] = { "" }, [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 Strike", statOrder = { 772 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Strike" }, } }, - ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Strike", statOrder = { 772 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Strike" }, } }, - ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, - ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4716 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, - ["MinionLeechOnPoisonedEnemiesUnique__1"] = { affix = "", "Minions Leech 5% of Damage as Life against Poisoned Enemies", statOrder = { 9313 }, level = 1, group = "MinionLeechOnPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [548721233] = { "Minions Leech 5% of Damage as Life against Poisoned Enemies" }, } }, - ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3481, 3481.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" }, } }, - ["ChilledGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Chilled Ground", statOrder = { 5773 }, level = 1, group = "ChilledGroundEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2134166669] = { "(30-50)% increased Effect of Chilled Ground" }, } }, - ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3715 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "50% increased Herald of Ice Damage" }, } }, - ["KeystoneMinionInstabilityUnique__1"] = { affix = "", "Minion Instability", statOrder = { 10799 }, level = 1, group = "MinionInstability", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, - ["KeystoneConduitUnique__1__"] = { affix = "", "Conduit", statOrder = { 10776 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, - ["KeystoneAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["KeystoneIronReflexesUnique__1"] = { affix = "", "Iron Reflexes", statOrder = { 10794 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["KeystoneResoluteTechniqueUnique__1"] = { affix = "", "Resolute Technique", statOrder = { 10829 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["KeystoneUnwaveringStanceUnique__1"] = { affix = "", "Unwavering Stance", statOrder = { 10821 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["KeystoneBloodMagicUnique__1_"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["KeystonePainAttunementUnique__1"] = { affix = "", "Pain Attunement", statOrder = { 10801 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["KeystoneElementalEquilibriumUnique__1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10782 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, - ["KeystoneElementalEquilibriumSceptreImplicit1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10782 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, - ["KeystoneIronGripUnique__1"] = { affix = "", "Iron Grip", statOrder = { 10817 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, - ["KeystonePointBlankUnique__1"] = { affix = "", "Point Blank", statOrder = { 10802 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["KeystoneArrowDodgingUnique__1"] = { affix = "", "Arrow Dancing", statOrder = { 10805 }, level = 1, group = "ArrowDodging", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2606808909] = { "Arrow Dancing" }, } }, - ["KeystonePhaseAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10768 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["KeystoneGhostReaverUnique__1"] = { affix = "", "Ghost Reaver", statOrder = { 10788 }, level = 1, group = "KeystoneGhostReaver", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, - ["KeystoneVaalPactUnique__1"] = { affix = "", "Vaal Pact", statOrder = { 10822 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["KeystoneZealotsOathUnique__1_"] = { affix = "", "Zealot's Oath", statOrder = { 10807 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, - ["KeystoneMindOverMatterUnique__1"] = { affix = "", "Mind Over Matter", statOrder = { 10797 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, - ["KeystoneElementalOverloadUnique__1"] = { affix = "", "Elemental Overload", statOrder = { 10783 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["KeystoneElementalOverloadSceptreImplicit1_"] = { affix = "", "Elemental Overload", statOrder = { 10783 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["KeystoneAvatarOfFireUnique__1"] = { affix = "", "Avatar of Fire", statOrder = { 10771 }, level = 1, group = "AvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } }, - ["KeystoneEldritchBatteryUnique__1"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["KeystoneEldritchBatteryUnique__2"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["KeystoneAncestralBondUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10770 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["KeystoneAncestralBondUnique__2"] = { affix = "", "Ancestral Bond", statOrder = { 10770 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["KeystoneCrimsonDanceUnique__1"] = { affix = "", "Crimson Dance", statOrder = { 10778 }, level = 1, group = "CrimsonDance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, - ["KeystonePerfectAgonyUnique__1"] = { affix = "", "Perfect Agony", statOrder = { 10769 }, level = 1, group = "PerfectAgony", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, - ["KeystoneRunebinderUnique__1"] = { affix = "", "Runebinder", statOrder = { 10809 }, level = 1, group = "Runebinder", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, - ["KeystoneWickedWardUnique__1"] = { affix = "", "Wicked Ward", statOrder = { 10825 }, level = 1, group = "WickedWard", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1109343199] = { "Wicked Ward" }, } }, - ["KeystoneMortalConvictionUnique__1"] = { affix = "", "Blood Magic", statOrder = { 10773 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["KeystoneGlancingBlowsUnique__1___"] = { affix = "", "Glancing Blows", statOrder = { 10789 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, - ["KeystoneCallToArmsUnique__1"] = { affix = "", "Call to Arms", statOrder = { 10774 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, - ["KeystoneEternalYouthUnique__1"] = { affix = "", "Eternal Youth", statOrder = { 10785 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["KeystoneWindDancerUnique__1_"] = { affix = "", "Wind Dancer", statOrder = { 10826 }, level = 1, group = "WindDancer", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4170338365] = { "Wind Dancer" }, } }, - ["KeystoneTheAgnosticUnique__1_"] = { affix = "", "The Agnostic", statOrder = { 10800 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, - ["KeystoneTheAgnosticUnique__2"] = { affix = "", "The Agnostic", statOrder = { 10800 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, - ["KeystoneSupremeEgoUnique__1_"] = { affix = "", "Supreme Ego", statOrder = { 10818 }, level = 1, group = "SupremeEgo", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, - ["KeystoneSacredBastionUnique__1"] = { affix = "", "Imbalanced Guard", statOrder = { 10810 }, level = 1, group = "SacredBastion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3868073741] = { "Imbalanced Guard" }, } }, - ["KeystoneTheImpalerUnique__1_"] = { affix = "", "The Impaler", statOrder = { 10793 }, level = 1, group = "Impaler", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } }, - ["KeystoneSoulTetherUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["KeystoneCorruptedSoulUnique_1"] = { affix = "", "Corrupted Soul", statOrder = { 10777 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, - ["KeystoneDoomsdayUnique__1"] = { affix = "", "Hex Master", statOrder = { 10791 }, level = 1, group = "HexMaster", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } }, - ["KeystoneSoulTetherUnique__2"] = { affix = "", "Immortal Ambition", statOrder = { 10816 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, - ["KeystoneCorruptedSoulUnique__2_"] = { affix = "", "Corrupted Soul", statOrder = { 10777 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, - ["KeystoneVaalPactUnique__2"] = { affix = "", "Vaal Pact", statOrder = { 10822 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["KeystoneEternalYouthUnique__2_"] = { affix = "", "Eternal Youth", statOrder = { 10785 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["KeystoneDivineFleshUnique__1_"] = { affix = "", "Divine Flesh", statOrder = { 10779 }, level = 1, group = "DivineFlesh", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2321346567] = { "Divine Flesh" }, } }, - ["KeystoneEverlastingSacrificeUnique__1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10786 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["KeystoneShepherdOfSoulsUnique__1"] = { affix = "", "Shepherd of Souls", statOrder = { 10814 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2038577923] = { "Shepherd of Souls" }, } }, - ["KeystoneLetheShadeUnique_1"] = { affix = "", "Lethe Shade", statOrder = { 10795 }, level = 1, group = "LetheShade", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } }, - ["KeystoneGhostDanceUnique__1"] = { affix = "", "Ghost Dance", statOrder = { 10787 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, - ["KeystoneVersatileCombatantUnique___1"] = { affix = "", "Versatile Combatant", statOrder = { 10823 }, level = 1, group = "VersatileCombatant", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, - ["KeystoneMagebaneUnique_1"] = { affix = "", "Magebane", statOrder = { 10796 }, level = 1, group = "Magebane", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } }, - ["KeystoneSolipsismUnique_1"] = { affix = "", "Solipsism", statOrder = { 10815 }, level = 1, group = "Solipsism", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } }, - ["KeystoneDivineShieldUnique_1"] = { affix = "", "Divine Shield", statOrder = { 10780 }, level = 1, group = "DivineShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } }, - ["KeystoneIronWillUnique_1"] = { affix = "", "Iron Will", statOrder = { 10830 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["KeystonePreciseTechniqueUnique__1"] = { affix = "", "Precise Technique", statOrder = { 10803 }, level = 1, group = "PreciseTechnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4096273663] = { "Precise Technique" }, } }, - ["KeystoneSupremeDecadenceUnique__1"] = { affix = "", "Supreme Decadence", statOrder = { 10784 }, level = 1, group = "SupremeDecadence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3215997147] = { "Supreme Decadence" }, } }, - ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3388 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "40% increased Lightning Damage taken" }, } }, - ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 4168 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, tradeHashes = { [2477735984] = { "30% of Lightning Damage is taken from Mana before Life" }, } }, - ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of Mana when you Shock an Enemy", statOrder = { 4170 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2524029637] = { "Recover 3% of Mana when you Shock an Enemy" }, } }, - ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 756, 756.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [776897797] = { "0% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1212497891] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, - ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 4185 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2040585053] = { "+8% Chance to Block Attack Damage when in Off Hand" }, } }, - ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Strike Chance when in Main Hand", statOrder = { 4184 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3404168630] = { "(60-80)% increased Global Critical Strike Chance when in Main Hand" }, } }, - ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Strike Multiplier per Green Socket", statOrder = { 2722 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [35810390] = { "+10% to Global Critical Strike Multiplier per Green Socket" }, } }, - ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2717 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3025389409] = { "0.3% of Physical Attack Damage Leeched as Life per Red Socket" }, } }, - ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 1014 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1085359447] = { "(50-100)% increased Charges gained by Other Flasks during Effect" }, } }, - ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 1066 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741956733] = { "Gains no Charges during Effect of any Overflowing Chalice Flask" }, } }, - ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 4132 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [990219738] = { "1% increased Lightning Damage per 10 Intelligence" }, } }, - ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 4175 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1275066948] = { "4% increased Melee Damage per Endurance Charge" }, } }, - ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 4178 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798111687] = { "You cannot be Shocked while at maximum Endurance Charges" }, } }, - ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 4174 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1067429236] = { "50% increased Stun Duration on you" }, } }, - ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 4187 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "35% less Damage taken if you have not been Hit Recently" }, } }, - ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 4188 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've Warcried Recently", statOrder = { 4179 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "10% increased Movement Speed if you've Warcried Recently" }, } }, - ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've Warcried Recently", statOrder = { 4179 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "15% increased Movement Speed if you've Warcried Recently" }, } }, - ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 4177 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [277484363] = { "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second" }, } }, - ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 4173 }, 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 = { 4193 }, 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 = { 4183 }, 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 = { 4942 }, 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 = { 1551 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, - ["AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1696 }, level = 1, group = "AttackDamageLifeLeechAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1625933063] = { "1% of Attack Damage Leeched as Life against Bleeding Enemies" }, } }, - ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4181 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3067409450] = { "1% of Attack Damage Leeched as Mana against Poisoned Enemies" }, } }, - ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2"] = { affix = "", "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4181 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3067409450] = { "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies" }, } }, - ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 4171 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 4172 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2085001246] = { "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies" }, } }, - ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1826 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [285624304] = { "Skills Chain an additional time while at maximum Frenzy Charges" }, } }, - ["CriticalStrikesDoNotFreezeUnique___1"] = { affix = "", "Critical Strikes do not inherently Freeze", statOrder = { 2031 }, level = 1, group = "CriticalStrikesDoNotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "critical", "ailment" }, tradeHashes = { [3979476531] = { "Critical Strikes do not inherently Freeze" }, } }, - ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy", statOrder = { 1823 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2230931659] = { "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy" }, } }, - ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2504 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2632954025] = { "You have Phasing if Energy Shield Recharge has started Recently" }, } }, - ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2505 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [402176724] = { "30% increased Evasion Rating while Phasing" }, } }, - ["AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1"] = { affix = "", "+5% Chance to Block Attack Damage from Taunted Enemies", statOrder = { 4189 }, level = 1, group = "AdditionalChanceToBlockAgainstTauntedEnemies", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1440638174] = { "+5% Chance to Block Attack Damage from Taunted Enemies" }, } }, - ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 4192 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3669898891] = { "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently" }, } }, - ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 533 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1936441365] = { "Socketed Skills Summon your maximum number of Totems in formation" }, } }, - ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 4176 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2288558421] = { "Totems gain -10% to all Elemental Resistances per Summoned Totem" }, } }, - ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 4182 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3204585690] = { "Totems have 5% increased Cast Speed per Summoned Totem" }, } }, - ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 4194 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [264715122] = { "Totems have 5% increased Attack Speed per Summoned Totem" }, } }, - ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } }, - ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 4195 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2466604008] = { "Attacks Chain an additional time when in Main Hand" }, } }, - ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 4197 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2105048696] = { "Attacks fire an additional Projectile when in Off Hand" }, } }, - ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Retaliation Skills", statOrder = { 4205 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1109700751] = { "Adds 250 to 300 Cold Damage to Retaliation Skills" }, } }, - ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 4199 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2114157293] = { "(16-20)% increased Golem Damage for each Type of Golem you have Summoned" }, } }, - ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 4201 }, 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 = { 4202 }, 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 = { 4203 }, 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 = { 8189 }, 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 = { 1386 }, 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 = { 1386 }, 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 = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (50-55) to (72-80) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (50-55) to (72-80) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (48-53) to (58-60) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-23) to (29-31) Chaos Damage" }, } }, - ["GlobalAddedChaosDamageUnique__7"] = { affix = "", "Adds (7-11) to (17-23) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (7-11) to (17-23) Chaos Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (12-16) to (20-25) Physical Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-10) to (13-15) Physical Damage" }, } }, - ["GlobalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds (8-12) to (14-20) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-12) to (14-20) Physical Damage" }, } }, - ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-24) to (33-36) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (22-27) to (34-38) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (16-19) to (25-29) Fire Damage" }, } }, - ["GlobalAddedFireDamageUnique__6"] = { affix = "", "Adds (10-14) to (26-34) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (10-14) to (26-34) Fire Damage" }, } }, - ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-24) to (33-36) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-23) to (31-35) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (16-19) to (25-29) Cold Damage" }, } }, - ["GlobalAddedColdDamageUnique__5"] = { affix = "", "Adds (8-12) to (18-26) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (8-12) to (18-26) Cold Damage" }, } }, - ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (10-13) to (43-47) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-3) to (47-52) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (6-10) to (33-38) Lightning Damage" }, } }, - ["GlobalAddedLightningDamageUnique__5"] = { affix = "", "Adds (1-2) to (43-56) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-2) to (43-56) Lightning Damage" }, } }, - ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [115109959] = { "Regenerate 2% of Energy Shield per second while on Low Life" }, } }, - ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 2196 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2319377249] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, - ["IgnoreHexproofUnique___1"] = { affix = "", "Your Hexes can affect Hexproof Enemies", statOrder = { 2600 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Your Hexes can affect Hexproof Enemies" }, } }, - ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 4207 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4266201818] = { "Poison Cursed Enemies on hit" }, } }, - ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 4208 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2208857094] = { "Always Poison on Hit against Cursed Enemies" }, } }, - ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2949 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+20% chance to be Shocked" }, } }, - ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2949 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+50% chance to be Shocked" }, } }, - ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2731 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [967108924] = { "8% increased Global Defences per White Socket" }, } }, - ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 4210 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1498954300] = { "(10-15)% increased Quantity of Items found with a Magic Item Equipped" }, } }, - ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 4209 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 4246 }, 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 = { 4190 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, tradeHashes = { [2200407711] = { "Minions have +40% to Cold Resistance" }, } }, - ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9306 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, - ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 4191 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [1236638414] = { "Minions gain 20% of Physical Damage as Extra Cold Damage" }, } }, - ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 973 }, 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 = { 4242 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1894653141] = { "0% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, [543539632] = { "30% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy" }, } }, - ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 4244 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1073384532] = { "Recover 50 Energy Shield when your Trap is triggered by an Enemy" }, } }, - ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 4243 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover 100 Life when your Trap is triggered by an Enemy" }, } }, - ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 4243 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover (20-30) Life when your Trap is triggered by an Enemy" }, } }, - ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3600 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3738335639] = { "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy" }, } }, - ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, - ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, - ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, - ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 4259 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [33065250] = { "Melee Attacks have (20-40)% chance to Poison on Hit" }, } }, - ["LifeLeechVsCursedEnemiesUnique__1"] = { affix = "", "1% of Damage Leeched as Life against Cursed Enemies", statOrder = { 4260 }, level = 1, group = "LifeLeechVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3861913659] = { "1% of Damage Leeched as Life against Cursed Enemies" }, } }, - ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [279227559] = { "15% increased Movement Speed if you've Killed Recently" }, } }, - ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [279227559] = { "15% increased Movement Speed if you've Killed Recently" }, } }, - ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 410 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3425526049] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 525 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, - ["ColdDamageIgnitesUnique__1"] = { affix = "", "Your Cold Damage can Ignite", statOrder = { 2882 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3573591118] = { "Your Cold Damage can Ignite" }, } }, - ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, - ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, 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 = { 3564 }, 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 = { 3564 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "25% chance to double Stun Duration" }, } }, - ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 70% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 20% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsFireUnique__4"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (10-50)% of Physical Damage as Extra Fire Damage" }, } }, - ["PhysicalAddedAsLightningUnique__1"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (10-50)% of Physical Damage as Extra Lightning Damage" }, } }, - ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 3314 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1464115829] = { "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed" }, } }, - ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have 40% increased Skill Effect Duration", statOrder = { 1896 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [289885185] = { "Chaos Skills have 40% increased Skill Effect Duration" }, } }, - ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(15-20)% increased Poison Duration" }, } }, - ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(20-25)% increased Poison Duration" }, } }, - ["PoisonDurationUnique__3"] = { affix = "", "(10-25)% increased Poison Duration", statOrder = { 3170 }, level = 30, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-25)% increased Poison Duration" }, } }, - ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 1024 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [803730540] = { "Immunity to Freeze, Chill, Curses and Stuns during Effect" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["BleedOnMeleeHitChanceUnique__1"] = { affix = "", "Melee Attacks have (30-50)% chance to cause Bleeding", statOrder = { 2487 }, level = 1, group = "BleedOnMeleeHitChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1285056331] = { "Melee Attacks have (30-50)% chance to cause Bleeding" }, } }, - ["ArmourAndEvasionImplicitBelt1"] = { affix = "", "+(260-320) to Armour and Evasion Rating", statOrder = { 4266 }, level = 98, group = "ArmourAndEvasionRatingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2316658489] = { "+(260-320) to Armour and Evasion Rating" }, } }, - ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1948 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, - ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, - ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Strikes", statOrder = { 4277 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Strikes" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Strike", statOrder = { 4278 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Strike" }, } }, - ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Strike", statOrder = { 4278 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Strike" }, } }, - ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7874 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Strike" }, } }, - ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 4276 }, 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 Strikes", statOrder = { 4288 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Strikes" }, } }, - ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 4289 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4107150355] = { "Enemies you Shock have 30% reduced Cast Speed" }, } }, - ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 4290 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3134790305] = { "Enemies you Shock have 20% reduced Movement Speed" }, } }, - ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 4300 }, 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 Life when you Ignite an Enemy", statOrder = { 4301 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of Life when you Ignite an Enemy" }, } }, - ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 4302 }, 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 = { 9514 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 8150 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 5540, 8517 }, 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 = { 8513, 8514 }, 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 = { 6208, 8518 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4004160031] = { "" }, [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 = { 8515, 8516 }, 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" }, } }, - ["HeistBlueprintRewardAlwaysUnique"] = { affix = "", "Heist Targets are always Replica Unique Items", statOrder = { 6970 }, level = 1, group = "HeistBlueprintRewardAlwaysUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2619914138] = { "Heist Targets are always Replica Unique Items" }, } }, - ["HeistBlueprintRewardAlwaysExperimented"] = { affix = "", "Heist Targets are always Experimented Items", statOrder = { 6968 }, level = 1, group = "HeistBlueprintRewardAlwaysExperimented", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4182516619] = { "Heist Targets are always Experimented Items" }, } }, - ["HeistBlueprintRewardAlwaysEnchanted"] = { affix = "", "Heist Targets are always Enchanted Armaments", statOrder = { 6967 }, level = 1, group = "HeistBlueprintRewardAlwaysEnchanted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3709545805] = { "Heist Targets are always Enchanted Armaments" }, } }, - ["HeistBlueprintRewardAlwaysCurrencyScarab"] = { affix = "", "Heist Targets are always Currency or Scarabs", statOrder = { 6966 }, level = 1, group = "HeistBlueprintRewardAlwaysCurrencyScarab", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4168369352] = { "Heist Targets are always Currency or Scarabs" }, } }, - ["HeistBlueprintRewardAlwaysTrinket"] = { affix = "", "Heist Targets are always Thieves' Trinkets", statOrder = { 6969 }, level = 1, group = "HeistBlueprintRewardAlwaysTrinket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123534836] = { "Heist Targets are always Thieves' Trinkets" }, } }, - ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Strike Chance with arrows that Fork", statOrder = { 4303 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Strike Chance with arrows that Fork" }, } }, - ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 4306 }, 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 = { 4305 }, 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 = { 4308 }, 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 = { 4307 }, 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 = { 9296 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, - ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3751 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Strike Chance against Chilled Enemies", statOrder = { 6874 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Strike Chance against Chilled Enemies" }, } }, - ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 827 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown" }, } }, - ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4835 }, 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 = { 4835 }, 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 = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, - ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Your Physical Damage can Shock", statOrder = { 2881 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Your Physical Damage can Shock" }, } }, - ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6142 }, 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 = { 6142 }, 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 = { 6575 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["FireDamageLeechedAsLifeWhileIgnitedUnique__1"] = { affix = "", "2% of Fire Damage Leeched as Life while Ignited", statOrder = { 7370 }, level = 1, group = "FireDamageLeechedAsLifeWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3633399302] = { "2% of Fire Damage Leeched as Life while Ignited" }, } }, - ["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 = { 8123 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [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 = { 9408 }, 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 = { 6797 }, 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 = { 3472 }, 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 = { 1997 }, 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 = { 2022 }, 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 = { 6443 }, 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 = { 2021 }, 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 = { 9196 }, 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 = "", "+2 Accuracy Rating per 2 Intelligence", statOrder = { 2020 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+2 Accuracy Rating per 2 Intelligence" }, } }, - ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6477 }, 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 = { 5691 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, - ["VulnerabilityAuraDuringFlaskEffectUnique__1"] = { affix = "", "Grants Level 21 Despair Curse Aura during Effect", statOrder = { 1027 }, level = 60, group = "VulnerabilityAuraDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [1604995720] = { "Grants Level 21 Despair Curse Aura during Effect" }, } }, - ["VulnerabilityAuraDuringFlaskEffectUnique__1Alt"] = { affix = "", "Grants Level 21 Vulnerability Curse Aura during Effect", statOrder = { 1028 }, level = 60, group = "VulnerabilityAuraDuringFlaskEffectNew", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [1660373569] = { "Grants Level 21 Vulnerability Curse Aura during Effect" }, } }, - ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9755 }, 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 = { 9756 }, 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 = { 4951 }, 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 = { 997 }, 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 = { 971 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [215882879] = { "(10-20)% increased Area of Effect during Effect" }, } }, - ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10855 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, - ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, - ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9535 }, 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 = { 10720 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10720 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10720 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10720 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6898 }, 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 Life per second", statOrder = { 6896 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their Life per second" }, } }, - ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3698 }, 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 = { 3699 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage" }, } }, - ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3699 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage" }, } }, - ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 3330 }, 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 = { 3331 }, 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 = { 6894 }, 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 = { 6892 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, - ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6901 }, 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 = { 4500 }, 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 Strike in the past 8 seconds", statOrder = { 10150 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently", statOrder = { 10146 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently" }, } }, - ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Strikes deal no Damage", statOrder = { 5979 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Strikes deal no Damage" }, } }, - ["LocalNoCriticalStrikeMultiplierUnique_1"] = { affix = "", "Critical Strikes with this Weapon do not deal extra Damage", statOrder = { 1490 }, level = 1, group = "LocalCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1508661598] = { "Critical Strikes with this Weapon do not deal extra Damage" }, } }, - ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 4316 }, level = 1, group = "IncreasedManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, - ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 4314 }, 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 = { 5774 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, - ["LocalFlaskUnholyMightUnique__1"] = { affix = "", "Unholy Might during Effect", statOrder = { 1050 }, level = 1, group = "LocalFlaskUnholyMight", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [207573834] = { "Unholy Might during Effect" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9492 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Strikes deal no Damage" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9492 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Strikes deal no Damage" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 5948 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 5948 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently" }, } }, - ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6376 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies Killed by your Hits are destroyed" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of Life on Kill" }, } }, - ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage", statOrder = { 3189 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Strike Multiplier 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 = { 4855 }, 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 = { 5678 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, - ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6793 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, - ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7953 }, 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 = { 782 }, 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 = { 5429 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, - ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10167 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, - ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10858 }, 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 = { 10760 }, 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 = { 9162 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 9162 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, - ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, - ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, - ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 3173 }, 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 = { 10159 }, 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 = { 4566 }, 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 = { 6789 }, 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 = { 9354 }, 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 = { 9541 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, - ["ZombiesLeechLifeToYouAt1000StrengthUnique__1"] = { affix = "", "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life", statOrder = { 10755 }, level = 1, group = "ZombiesLeechLifeToYouAt1000Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2802263253] = { "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life" }, } }, - ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4994 }, 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 = { 7306 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 7218 }, 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 = { 9156 }, 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 = { 7407 }, 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 = { 10697 }, 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 = { 9158 }, 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 = { 6060 }, 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 = { 7305 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, - ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9425 }, 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 = { 10566 }, 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 = { 3473 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2831922878] = { "15% increased Attack and Cast Speed if you've used a Movement Skill Recently" }, } }, - ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value", statOrder = { 3194 }, 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 = { 3196 }, 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 = { 10816 }, 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 = { 1053 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [2444301311] = { "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest" }, } }, - ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 1052 }, 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 = { 526 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["DisplayGrantsVengeanceUnique__1"] = { affix = "", "Grants Level 15 Battlemage's Cry Skill", statOrder = { 689 }, level = 1, group = "BattlemagesCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2356594418] = { "Grants Level 15 Battlemage's Cry Skill" }, } }, - ["CannotLeechLifeUnique__1"] = { affix = "", "Cannot Leech Life", statOrder = { 2567 }, level = 1, group = "CannotLeechLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3769854701] = { "Cannot Leech Life" }, } }, - ["AllResistanceAt200StrengthUnique__1"] = { affix = "", "+(20-25)% to all Elemental Resistances while you have at least 200 Strength", statOrder = { 4362 }, level = 1, group = "AllResistanceAt200Strength", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2415398184] = { "+(20-25)% to all Elemental Resistances while you have at least 200 Strength" }, } }, - ["LifeRegenerationAt400StrengthUnique__1"] = { affix = "", "Regenerate 2% of Life per second with at least 400 Strength", statOrder = { 7428 }, level = 1, group = "LifeRegenerationAt400Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1173027373] = { "Regenerate 2% of Life per second with at least 400 Strength" }, } }, - ["LifeRegenerationIfHitRecentlyUnique__1"] = { affix = "", "Regenerate 2% of Life per second if you have been Hit Recently", statOrder = { 7416 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2201614328] = { "Regenerate 2% of Life per second if you have been Hit Recently" }, } }, - ["AttackBlockIfBlockedSpellRecentlyUnique__1_"] = { affix = "", "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently", statOrder = { 4837 }, level = 1, group = "AttackBlockIfBlockedSpellRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [647983250] = { "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently" }, } }, - ["SpellBlockIfBlockedAttackRecentlyUnique__1"] = { affix = "", "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently", statOrder = { 10135 }, level = 1, group = "SpellBlockIfBlockedAttackRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1214153650] = { "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently" }, } }, - ["AddedChaosDamageWhileUsingAFlaskUnique__1_"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10128 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, tradeHashes = { [3519268108] = { "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect" }, } }, - ["AddedChaosDamageWhileUsingAFlaskUnique__2"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10128 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, tradeHashes = { [3519268108] = { "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect" }, } }, - ["GainPowerChargesOnUsingWarcryUnique__1"] = { affix = "", "Gain 2 Power Charges when you Warcry", statOrder = { 6705 }, level = 1, group = "GainPowerChargesOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4118945608] = { "Gain 2 Power Charges when you Warcry" }, } }, - ["AttackLeechAgainstTauntedEnemyUnique__1"] = { affix = "", "2% of Attack Damage Leeched as Life against Taunted Enemies", statOrder = { 7368 }, level = 1, group = "AttackLeechAgainstTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3750917270] = { "2% of Attack Damage Leeched as Life against Taunted Enemies" }, } }, - ["WarcryCooldownSpeedUnique__1"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159248054] = { "50% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryCooldownSpeedUnique__2"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159248054] = { "50% increased Warcry Cooldown Recovery Rate" }, } }, - ["WarcryEffectUnique__1"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10567 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3037553757] = { "25% increased Warcry Buff Effect" }, } }, - ["WarcryEffectUnique__2"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10567 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3037553757] = { "25% increased Warcry Buff Effect" }, } }, - ["OnslaughtOnUsingWarcryUnique__1"] = { affix = "", "Gain Onslaught for 4 seconds when you Warcry", statOrder = { 6784 }, level = 1, group = "OnslaughtOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3049436415] = { "Gain Onslaught for 4 seconds when you Warcry" }, } }, - ["AddedColdDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Adds 40 to 60 Cold Damage against Chilled Enemies", statOrder = { 9233 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3734640451] = { "Adds 40 to 60 Cold Damage against Chilled Enemies" }, } }, - ["AddedColdDamageAgainstFrozenEnemiesUnique__2"] = { affix = "", "Adds 60 to 80 Cold Damage against Chilled Enemies", statOrder = { 9233 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3734640451] = { "Adds 60 to 80 Cold Damage against Chilled Enemies" }, } }, - ["CannotBeShockedWhileChilledUnique__1"] = { affix = "", "100% chance to Avoid being Shocked while Chilled", statOrder = { 4952 }, level = 1, group = "AvoidShockWhileChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3981960937] = { "100% chance to Avoid being Shocked while Chilled" }, } }, - ["ChanceToShockChilledEnemiesUnique__1"] = { affix = "", "50% chance to Shock Chilled Enemies", statOrder = { 5721 }, level = 1, group = "ChanceToShockChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4069101408] = { "50% chance to Shock Chilled Enemies" }, } }, - ["AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1"] = { affix = "", "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently", statOrder = { 4945 }, level = 1, group = "AvoidFreezeAndChillIfFireSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3706656107] = { "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently" }, } }, - ["HeraldOfThunderBuffEffectUnique__1"] = { affix = "", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 7126 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has 50% increased Buff Effect" }, } }, - ["LifeRegenerationPerLevelUnique__1"] = { affix = "", "Regenerate 3 Life per second per Level", statOrder = { 2961 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1384864963] = { "Regenerate 3 Life per second per Level" }, } }, - ["TotemLeechLifeToYouUnique__1"] = { affix = "", "0.5% of Damage dealt by your Totems is Leeched to you as Life", statOrder = { 4237 }, level = 1, group = "TotemLeechLifeToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3812562802] = { "0.5% of Damage dealt by your Totems is Leeched to you as Life" }, } }, - ["TriggeredConsecrateUnique__1"] = { affix = "", "Trigger Level 10 Consecrate when you deal a Critical Strike", statOrder = { 675 }, level = 1, group = "TriggeredConsecrate", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [899293871] = { "Trigger Level 10 Consecrate when you deal a Critical Strike" }, } }, - ["HallowOnHitVsConsecratedEnemyUnique__1"] = { affix = "", "Inflict Hallowing Flame on Hit while on Consecrated Ground", statOrder = { 7278 }, level = 1, group = "HallowOnHitVsConsecratedEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3087629547] = { "Inflict Hallowing Flame on Hit while on Consecrated Ground" }, } }, - ["IncreasedDamageOnConsecratedGroundUnique__1"] = { affix = "", "50% increased Damage while on Consecrated Ground", statOrder = { 3552 }, level = 1, group = "IncreasedDamageOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1704905020] = { "50% increased Damage while on Consecrated Ground" }, } }, - ["BlockChanceOnConsecratedGroundUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while on Consecrated Ground", statOrder = { 4545 }, level = 1, group = "BlockChanceOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3865999868] = { "+5% Chance to Block Attack Damage while on Consecrated Ground" }, } }, - ["ChillEnemiesOnHitWithWeaponUnique__1"] = { affix = "", "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand", statOrder = { 7877 }, level = 1, group = "ChillEnemiesOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [1488891279] = { "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand" }, } }, - ["SupportFlatAddedFireDamageUnique__1"] = { affix = "", "Socketed Gems deal 63 to 94 Added Fire Damage", statOrder = { 556 }, level = 1, group = "SupportFlatAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 63 to 94 Added Fire Damage" }, } }, - ["PhysicalDamageToAttacksPerLevelUnique__1_"] = { affix = "", "Adds 1 to 2 Physical Damage to Attacks per Level", statOrder = { 4876 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3821472155] = { "Adds 1 to 2 Physical Damage to Attacks per Level" }, } }, - ["PhysicalDamageToAttacksPerLevelUnique__2"] = { affix = "", "Adds 2 to 3 Physical Damage to Attacks per Level", statOrder = { 4876 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3821472155] = { "Adds 2 to 3 Physical Damage to Attacks per Level" }, } }, - ["RightRingSlotMaximumManaUnique__1"] = { affix = "", "Right ring slot: +250 to maximum Mana", statOrder = { 2650 }, level = 1, group = "RightRingSlotMaximumMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [417509375] = { "Right ring slot: +250 to maximum Mana" }, } }, - ["LeftRingSlotMaximumEnergyShieldUnique__1"] = { affix = "", "Left ring slot: +250 to maximum Energy Shield", statOrder = { 2671 }, level = 1, group = "LeftRingSlotMaximumEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1497601437] = { "Left ring slot: +250 to maximum Energy Shield" }, } }, - ["LeftRingSlotFlatManaRegenerationUnique__1"] = { affix = "", "Left ring slot: Regenerate 40 Mana per Second", statOrder = { 2659 }, level = 1, group = "LeftRingSlotFlatManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3241234878] = { "Left ring slot: Regenerate 40 Mana per Second" }, } }, - ["NearbyEnemiesAreIntimidatedUnique__1"] = { affix = "", "Nearby Enemies are Intimidated", statOrder = { 7909 }, level = 1, group = "NearbyEnemiesAreIntimidated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877479250] = { "" }, [2899095498] = { "Nearby Enemies are Intimidated" }, } }, - ["NearbyAlliesMovementVelocityUnique__1"] = { affix = "", "10% increased Movement Speed for you and nearby Allies", statOrder = { 7901 }, level = 1, group = "NearbyAlliesMovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3410049114] = { "10% increased Movement Speed for you and nearby Allies" }, [2250533757] = { "10% increased Movement Speed" }, } }, - ["WeaponElementalPenetrationUnique__1"] = { affix = "", "Damage with Weapons Penetrates 5% Elemental Resistances", statOrder = { 3599 }, level = 1, group = "WeaponElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [1736172673] = { "Damage with Weapons Penetrates 5% Elemental Resistances" }, } }, - ["ElementalPenetrationUnique__1"] = { affix = "", "Damage Penetrates (0-20)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (0-20)% Elemental Resistances" }, } }, - ["IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1"] = { affix = "", "150% increased Elemental Damage if you've Warcried Recently", statOrder = { 6304 }, level = 1, group = "IncreasedElementalDamageIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2803182108] = { "150% increased Elemental Damage if you've Warcried Recently" }, } }, - ["TriggeredAnimateWeaponUnique__1"] = { affix = "", "25% chance to Trigger Level 20 Animate Weapon on Kill", statOrder = { 766 }, level = 1, group = "TriggeredAnimateWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1973890509] = { "25% chance to Trigger Level 20 Animate Weapon on Kill" }, } }, - ["AddedFireDamagePerStrengthUnique__1"] = { affix = "", "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 1, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["LocalGolemBuffEffectUnique__1"] = { affix = "", "25% increased Effect of Buffs granted by Socketed Golem Skills", statOrder = { 198 }, level = 1, group = "LocalGolemBuffEffect", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [2813516522] = { "25% increased Effect of Buffs granted by Socketed Golem Skills" }, } }, - ["LocalGolemLifeAddedAsESUnique__1"] = { affix = "", "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 202 }, level = 1, group = "LocalGolemLifeAddedAsES", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "defences", "energy_shield", "minion", "gem" }, tradeHashes = { [1199118714] = { "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["LocalGolemIncreasedAttackAndCastSpeedUnique__1"] = { affix = "", "Socketed Golem Skills have 20% increased Attack and Cast Speed", statOrder = { 197 }, level = 1, group = "LocalGolemIncreasedAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "minion", "gem" }, tradeHashes = { [706212417] = { "Socketed Golem Skills have 20% increased Attack and Cast Speed" }, } }, - ["LocalGolemGrantOnslaughtOnSummonUnique__1"] = { affix = "", "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill", statOrder = { 201 }, level = 1, group = "LocalGolemGrantsOnslaughtOnSummon", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1693676706] = { "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill" }, } }, - ["LocalGolemTauntOnHitUnique__1_"] = { affix = "", "Socketed Golem Skills have 25% chance to Taunt on Hit", statOrder = { 199 }, level = 1, group = "LocalGolemTauntOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [178057093] = { "Socketed Golem Skills have 25% chance to Taunt on Hit" }, } }, - ["LocalGolemLifeRegenerationUnique__1"] = { affix = "", "Socketed Golem Skills have Minions Regenerate 5% of Life per second", statOrder = { 200 }, level = 1, group = "LocalGolemLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "minion", "gem" }, tradeHashes = { [693460617] = { "Socketed Golem Skills have Minions Regenerate 5% of Life per second" }, } }, - ["LocalVaalDamageUnique__1_"] = { affix = "", "Socketed Vaal Skills deal 150% more Damage", statOrder = { 572 }, level = 80, group = "LocalVaalDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [3106951888] = { "Socketed Vaal Skills deal 150% more Damage" }, } }, - ["LocalVaalSoulRequirementUnique__1"] = { affix = "", "Socketed Vaal Skills require 30% less Souls per Use", statOrder = { 581 }, level = 80, group = "LocalVaalSoulRequirement", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2198756560] = { "Socketed Vaal Skills require 30% less Souls per Use" }, } }, - ["LocalVaalUsesToStoreUnique__1"] = { affix = "", "Socketed Vaal Skills have 20% chance to regain consumed Souls when used", statOrder = { 582 }, level = 80, group = "LocalVaalUsesToStore", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [207863952] = { "Socketed Vaal Skills have 20% chance to regain consumed Souls when used" }, } }, - ["LocalVaalIgnoreMonsterResistancesUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances", statOrder = { 577 }, level = 80, group = "LocalVaalIgnoreMonsterResistances", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2540508981] = { "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances" }, } }, - ["LocalVaalIgnoreMonsterPhysicalReductionUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction", statOrder = { 576 }, level = 80, group = "LocalVaalIgnoreMonsterPhysicalReduction", weightKey = { }, weightVal = { }, modTags = { "physical", "vaal" }, tradeHashes = { [1388374928] = { "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction" }, } }, - ["LocalVaalElusiveOnUseUnique__1_"] = { affix = "", "Socketed Vaal Skills grant Elusive when Used", statOrder = { 574 }, level = 80, group = "LocalVaalElusiveOnUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1831825995] = { "Socketed Vaal Skills grant Elusive when Used" }, } }, - ["LocalVaalTailwindIfUsedRecentlyUnique__1"] = { affix = "", "You have Tailwind if you've used a Socketed Vaal Skill Recently", statOrder = { 585 }, level = 80, group = "LocalVaalTailwindIfUsedRecently", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1678234826] = { "You have Tailwind if you've used a Socketed Vaal Skill Recently" }, } }, - ["LocalVaalAreaOfEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 60% increased Area of Effect", statOrder = { 570 }, level = 80, group = "LocalVaalAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2505291583] = { "Socketed Vaal Skills have 60% increased Area of Effect" }, } }, - ["LocalVaalProjectileSpeedUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Projectile Speed", statOrder = { 579 }, level = 80, group = "LocalVaalProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "vaal" }, tradeHashes = { [2237174578] = { "Socketed Vaal Skills have 80% increased Projectile Speed" }, } }, - ["LocalVaalSkillEffectDurationUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Skill Effect Duration", statOrder = { 573 }, level = 80, group = "LocalVaalSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [476204410] = { "Socketed Vaal Skills have 80% increased Skill Effect Duration" }, } }, - ["LocalVaalSoulGainPreventionUnique__1"] = { affix = "", "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration", statOrder = { 580 }, level = 80, group = "LocalVaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2599305231] = { "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration" }, } }, - ["LocalVaalLuckyDamageUnique__1"] = { affix = "", "Damage with Hits from Socketed Vaal Skills is Lucky", statOrder = { 575 }, level = 80, group = "LocalVaalLuckyDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [1274200851] = { "Damage with Hits from Socketed Vaal Skills is Lucky" }, } }, - ["LocalVaalAuraEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 50% increased Aura Effect", statOrder = { 571 }, level = 80, group = "LocalVaalAuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura", "vaal" }, tradeHashes = { [2932121832] = { "Socketed Vaal Skills have 50% increased Aura Effect" }, } }, - ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2805714016] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, - ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 1357 }, 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 = { 7230 }, 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 = { 6584 }, 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 = { 679 }, 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 = { 674 }, 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 = { 674 }, 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" }, } }, - ["LifeGainedOnStunUnique__1_"] = { affix = "", "Gain 50 Life when you Stun an Enemy", statOrder = { 6704 }, level = 40, group = "LifeGainedOnStun", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2968301430] = { "Gain 50 Life when you Stun an Enemy" }, } }, - ["RyuslathaMinimumDamageModifierUnique__1"] = { affix = "", "(30-40)% less Minimum Physical Attack Damage", statOrder = { 1200 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1715495976] = { "(30-40)% less Minimum Physical Attack Damage" }, } }, - ["RyuslathaMaximumDamageModifierUnique__1_"] = { affix = "", "(30-40)% more Maximum Physical Attack Damage", statOrder = { 1199 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3029185248] = { "(30-40)% more Maximum Physical Attack Damage" }, } }, - ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4653 }, 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 = { 4544 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, - ["AdditionalSpellBlockWhileCursedUnique__1"] = { affix = "", "+20% Chance to Block Spell Damage while Cursed", statOrder = { 4590 }, level = 1, group = "AdditionalSpellBlockWhileCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3218891195] = { "+20% Chance to Block Spell Damage while Cursed" }, } }, - ["LifePerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Life per Level", statOrder = { 7387 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+(1-2) Maximum Life per Level" }, } }, - ["ManaPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Mana per Level", statOrder = { 8186 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+(1-2) Maximum Mana per Level" }, } }, - ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Energy Shield per Level", statOrder = { 6442 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+(1-2) Maximum Energy Shield per Level" }, } }, - ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 662 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, - ["SandMirageSkillUnique__1"] = { affix = "", "Grants level 20 Suspend in Time", statOrder = { 7895 }, level = 1, group = "SandMirageSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3673812491] = { "Grants level 20 Suspend in Time" }, } }, - ["ResentmentFireDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Cinders when Equipped", statOrder = { 7897 }, level = 1, group = "ResentmentFireDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4015227054] = { "Trigger Level 20 Cinders when Equipped" }, } }, - ["AnimosityPhysDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Tears of Rot when Equipped", statOrder = { 7896 }, level = 1, group = "AnimosityPhysDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1714905437] = { "Trigger Level 20 Tears of Rot when Equipped" }, } }, - ["PhysicalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(28-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(28-35)% to Physical Damage over Time Multiplier" }, } }, - ["FireExposureOnHitVsMaxResentmentStacksUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance", statOrder = { 6581, 6581.1 }, level = 1, group = "FireExposureOnHitVsMaxResentmentStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403551644] = { "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance" }, } }, - ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7106 }, 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 = { 4953 }, 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 = { 6051 }, 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 = { 10021, 10021.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 = { 10478 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10478 }, 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 = { 9276 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, - ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9322 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, - ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9364 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, - ["PoisonDamageUnique__1"] = { affix = "", "(40-60)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(40-60)% increased Damage with Poison" }, } }, - ["PoisonDamageUnique__2"] = { affix = "", "(100-150)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(100-150)% increased Damage with Poison" }, } }, - ["BleedDamageUnique__1_"] = { affix = "", "(40-60)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(40-60)% increased Damage with Bleeding" }, } }, - ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 182 }, 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 = { 182 }, 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 = { 2056 }, 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 Strike Multiplier while you have no Frenzy Charges", statOrder = { 2055 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Strike Multiplier while you have no Frenzy Charges" }, } }, - ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4522 }, 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 = { 9405 }, 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 = { 5808 }, 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 = { 6066 }, 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 = { 6776, 6776.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 = "", "Your Fire Damage can Poison", statOrder = { 2866 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Your Fire Damage can Poison" }, } }, - ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Your Cold Damage can Poison", statOrder = { 2865 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Your Cold Damage can Poison" }, } }, - ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Your Lightning Damage can Poison", statOrder = { 2867 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Your Lightning Damage can Poison" }, } }, - ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6588 }, 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 = { 5837 }, 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 = { 7469 }, 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 = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (10-15)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 660 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, - ["AdditionalPhysicalDamageReductionUnique_1UNUSED"] = { affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["UniqueReducedExtraDamageFromCrits__1"] = { affix = "", "You take (150-200)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (150-200)% reduced Extra Damage from Critical Strikes" }, } }, - ["SpellDamageSuppressedUnique__1"] = { affix = "", "Prevent +(4-6)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 56, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(4-6)% of Suppressed Spell Damage" }, } }, - ["SpellDamageSuppressedUnique__2"] = { affix = "", "-10% to amount of Suppressed Spell Damage Prevented", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "-10% to amount of Suppressed Spell Damage Prevented" }, } }, - ["GrantsFrostbiteUnique__1"] = { affix = "", "Grants Level 5 Frostbite Skill", statOrder = { 637 }, level = 1, group = "FrostbiteSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 5 Frostbite Skill" }, } }, - ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 630 }, 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 = { 630 }, 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 = { 630 }, 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 = { 5740 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, - ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10828 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9332 }, 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 = { 9332 }, 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 = { 825 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [311420892] = { "" }, [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, - ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 748 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1571803312] = { "" }, [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, [311420892] = { "" }, } }, - ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 4001 }, 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 = { 10302 }, 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 = { 6448 }, 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 = { 3461 }, 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 Strikes while you have no Power Charges", statOrder = { 6538 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Strikes 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 = { 3471 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3492297134] = { "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 = { 653 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, - ["BlightSkillUnique__1"] = { affix = "", "Grants Level 25 Blight Skill", statOrder = { 657 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 25 Blight Skill" }, } }, - ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of the Arcane Skill" }, } }, - ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Time Skill" }, } }, - ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Focus Skill" }, } }, - ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Directions Skill" }, } }, - ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Storms Skill" }, } }, - ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Brutality Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of the Arcane Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Time Skill" }, } }, - ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Focus Skill" }, } }, - ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 633 }, 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 = { 633 }, 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 = { 633 }, 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 = { 5727 }, 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 = { 3171 }, 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 Strike Chance", statOrder = { 4317 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Strike Chance" }, } }, - ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 10 Chance to Poison" }, } }, - ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 522 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, } }, - ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 521 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 18 Innervate" }, } }, - ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 521 }, 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 = { 512 }, 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 = { 747 }, 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 = { 9230, 9230.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 = { 9688 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, - ["PoisonDamagePerFrenzyChargeUnique__1"] = { affix = "", "10% increased Damage with Poison per Frenzy Charge", statOrder = { 9680 }, level = 1, group = "PoisonDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1221011086] = { "10% increased Damage with Poison per Frenzy Charge" }, } }, - ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6763 }, 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 = { 6808 }, 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 = { 9689 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, - ["PoisonDamageWithOver300DexterityUnique__1"] = { affix = "", "(75-100)% increased Damage with Poison if you have at least 300 Dexterity", statOrder = { 9683 }, level = 1, group = "PoisonDamageWithOver300Dexterity", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [256730087] = { "(75-100)% increased Damage with Poison if you have at least 300 Dexterity" }, } }, - ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10657 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10657 }, 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 = { 7989 }, 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 = { 5171 }, 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 = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, - ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, - ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6151 }, 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 = { 6151 }, 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 = { 6151 }, 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 = { 1568, 1578 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "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 = { 749 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, - ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion", statOrder = { 4318 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Poison on Hit while you have a Bestial Minion", statOrder = { 4320 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [1114411822] = { "Projectiles from Attacks Poison on Hit while you have a Bestial Minion" }, } }, - ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Maim on Hit while you have a Bestial Minion", statOrder = { 4319 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1753916791] = { "Projectiles from Attacks Maim on Hit while you have a Bestial Minion" }, } }, - ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 4321 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [242822230] = { "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion" }, } }, - ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 4322 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, - ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 4323 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, - ["LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life against Maimed Enemies", statOrder = { 7367 }, level = 1, group = "LifeLeechFromAttackDamageAgainstMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [447636597] = { "0.5% of Attack Damage Leeched as Life against Maimed Enemies" }, } }, - ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 746 }, 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 Effect of Shock", statOrder = { 10009 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Effect of Shock" }, } }, - ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7434 }, 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 = { 7434 }, 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 = { 7434 }, 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 = { 91 }, 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 = { 1082 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1082 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 164 }, 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 = { 165 }, 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 = { 166 }, 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 = { 10369 }, 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 = { 6559 }, 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 = { 623 }, 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 = { 629 }, 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 = { 631 }, 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 = { 724 }, 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 = { 725 }, 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 = { 726 }, 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 = { 10114 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, - ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Raised Spectres have (50-100)% increased maximum Life", statOrder = { 1770 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Raised Spectres have (50-100)% increased maximum Life" }, } }, - ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7893 }, 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 = { 1451 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1604393896] = { "2% increased Cast Speed per Power Charge" }, } }, - ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8199 }, 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 = { 6814 }, 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 = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, - ["ConsumesSupportGemsUnique"] = { affix = "", "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level", "Can Consume 4 Uncorrupted Support Gems", "Has not Consumed any Gems", statOrder = { 104, 104.1, 104.2 }, level = 88, group = "ConsumesSupportGemsUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4206709389] = { "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level", "Can Consume 4 Uncorrupted Support Gems", "Has not Consumed any Gems" }, } }, - ["HungryLoopSupportedByAddedFireDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Fire Damage", statOrder = { 104, 462 }, level = 1, group = "HungryLoopSupportedByAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByColdPenetration_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cold Penetration", statOrder = { 104, 513 }, level = 1, group = "HungryLoopSupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1991958615] = { "Socketed Gems are Supported by Level 20 Cold Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIceBite"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ice Bite", statOrder = { 104, 512 }, level = 1, group = "HungryLoopSupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1384629003] = { "Socketed Gems are Supported by Level 20 Ice Bite" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByManaLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mana Leech", statOrder = { 104, 514 }, level = 1, group = "HungryLoopSupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAddedColdDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 104, 518 }, level = 1, group = "HungryLoopSupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4020144606] = { "Socketed Gems are Supported by Level 20 Added Cold Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByReducedManaCost"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Inspiration", statOrder = { 104, 519 }, level = 1, group = "HungryLoopSupportedByReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [749770518] = { "Socketed Gems are Supported by Level 20 Inspiration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAdditionalAccuracy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Additional Accuracy", statOrder = { 104, 480 }, level = 1, group = "HungryLoopSupportedByAdditionalAccuracy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1567462963] = { "Socketed Gems are supported by Level 20 Additional Accuracy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBloodMagic"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arrogance", statOrder = { 104, 459 }, level = 1, group = "HungryLoopSupportedByBloodMagic", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3922006600] = { "Socketed Gems are Supported by Level 20 Arrogance" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Fork", statOrder = { 104, 486 }, level = 1, group = "HungryLoopSupportedByFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2062753054] = { "Socketed Gems are supported by Level 20 Fork" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByInnervate_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Innervate", statOrder = { 104, 521 }, level = 1, group = "HungryLoopSupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1106668565] = { "Socketed Gems are Supported by Level 20 Innervate" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLesserPoison_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chance to Poison", statOrder = { 104, 523 }, level = 1, group = "HungryLoopSupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHypothermia"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hypothermia", statOrder = { 104, 511 }, level = 1, group = "HungryLoopSupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [13669281] = { "Socketed Gems are Supported by Level 20 Hypothermia" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLifeLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 104, 483 }, level = 1, group = "HungryLoopSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [891277550] = { "Socketed Gems are supported by Level 20 Life Leech" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMeleeSplash_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Melee Splash", statOrder = { 104, 471 }, level = 1, group = "HungryLoopSupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Multistrike", statOrder = { 104, 481 }, level = 1, group = "HungryLoopSupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2501237765] = { "Socketed Gems are supported by Level 20 Multistrike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFasterProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Faster Projectiles", statOrder = { 104, 482 }, level = 1, group = "HungryLoopSupportedByFasterProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRemoteMine"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blastchain Mine", statOrder = { 104, 497 }, level = 1, group = "HungryLoopSupportedByRemoteMine", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRemoteMine2_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 High-Impact Mine", statOrder = { 104, 366 }, level = 1, group = "HungryLoopSupportedByRemoteMine2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2116100988] = { "Socketed Gems are Supported by Level 20 High-Impact Mine" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByStun"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Stun", statOrder = { 104, 479 }, level = 1, group = "HungryLoopSupportedByStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [689720069] = { "Socketed Gems are supported by Level 20 Stun" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnCrit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 104, 472 }, level = 1, group = "HungryLoopSupportedByCastOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2325632050] = { "Socketed Gems are supported by Level 20 Cast On Critical Strike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastWhenStunned"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast when Stunned", statOrder = { 104, 477 }, level = 1, group = "HungryLoopSupportedByCastWhenStunned", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1079148723] = { "Socketed Gems are supported by Level 20 Cast when Stunned" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVileToxins_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 104, 522 }, level = 1, group = "HungryLoopSupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByWeaponElementalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", statOrder = { 104, 487 }, level = 1, group = "HungryLoopSupportedByWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2532625478] = { "Socketed Gems are supported by Level 20 Elemental Damage with Attacks" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedArea"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 104, 224 }, level = 1, group = "HungryLoopSupportedByIncreasedArea", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByKnockback"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Knockback", statOrder = { 104, 502 }, level = 1, group = "HungryLoopSupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4066711249] = { "Socketed Gems are Supported by Level 20 Knockback" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedMinionLife"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Life", statOrder = { 104, 504 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1337327984] = { "Socketed Gems are Supported by Level 20 Minion Life" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedMinionSpeed"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Speed", statOrder = { 104, 508 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [995332031] = { "Socketed Gems are Supported by Level 20 Minion Speed" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLesserMultipleProjectiles_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Projectiles", statOrder = { 104, 505 }, level = 1, group = "HungryLoopSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [584144941] = { "Socketed Gems are Supported by Level 20 Multiple Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedMinionDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Damage", statOrder = { 104, 506 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [808939569] = { "Socketed Gems are Supported by Level 20 Minion Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedCriticalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Increased Critical Damage", statOrder = { 104, 485 }, level = 1, group = "HungryLoopSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1108755349] = { "Socketed Gems are supported by Level 20 Increased Critical Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBlind"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Blind", statOrder = { 104, 470 }, level = 1, group = "HungryLoopSupportedByBlind", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEnduranceChargeOnStun"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 104, 526 }, level = 1, group = "HungryLoopSupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 104, 520 }, level = 1, group = "HungryLoopSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTrap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trap", statOrder = { 104, 454 }, level = 1, group = "HungryLoopSupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIronWill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Iron Will", statOrder = { 104, 501 }, level = 1, group = "HungryLoopSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [906997920] = { "Socketed Gems are Supported by Level 20 Iron Will" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFasterCast"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Faster Casting", statOrder = { 104, 500 }, level = 1, group = "HungryLoopSupportedByFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFlee"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Chance to Flee", statOrder = { 104, 498 }, level = 1, group = "HungryLoopSupportedByFlee", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [952060721] = { "Socketed Gems are supported by Level 20 Chance to Flee" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByColdToFire_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cold to Fire", statOrder = { 104, 463 }, level = 1, group = "HungryLoopSupportedByColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [550444281] = { "Socketed Gems are Supported by Level 20 Cold to Fire" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpellTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 104, 464 }, level = 1, group = "HungryLoopSupportedBySpellTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterMultipleProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Greater Multiple Projectiles", statOrder = { 104, 295 }, level = 1, group = "HungryLoopSupportedByGreaterMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [359450079] = { "Socketed Gems are Supported by Level 20 Greater Multiple Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedCriticalStrikes"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", statOrder = { 104, 313 }, level = 1, group = "HungryLoopSupportedByIncreasedCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByItemQuantity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Item Quantity", statOrder = { 104, 320 }, level = 1, group = "HungryLoopSupportedByItemQuantity", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "drop" }, tradeHashes = { [248646071] = { "Socketed Gems are Supported by Level 20 Item Quantity" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByItemRarity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Item Rarity", statOrder = { 104, 321 }, level = 1, group = "HungryLoopSupportedByItemRarity", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "drop" }, tradeHashes = { [4206709389] = { "" }, [3587013273] = { "Socketed Gems are Supported by Level 20 Item Rarity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedDuration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 More Duration", statOrder = { 104, 314 }, level = 1, group = "HungryLoopSupportedByIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [407317553] = { "Socketed Gems are Supported by Level 20 More Duration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChanceToIgnite"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Combustion", statOrder = { 104, 245 }, level = 1, group = "HungryLoopSupportedByChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1828254451] = { "Socketed Gems are Supported by Level 20 Combustion" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBloodlust"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bloodlust", statOrder = { 104, 232 }, level = 1, group = "HungryLoopSupportedByBloodlust", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [804508379] = { "Socketed Gems are Supported by Level 20 Bloodlust" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLifeGainOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Life Gain On Hit", statOrder = { 104, 324 }, level = 1, group = "HungryLoopSupportedByLifeGainOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2032386732] = { "Socketed Gems are Supported by Level 20 Life Gain On Hit" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCullingStrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Culling Strike", statOrder = { 104, 254 }, level = 1, group = "HungryLoopSupportedByCullingStrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1135493957] = { "Socketed Gems are Supported by Level 20 Culling Strike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPointBlank"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Point Blank", statOrder = { 104, 354 }, level = 1, group = "HungryLoopSupportedByPointBlank", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3754129682] = { "Socketed Gems are Supported by Level 20 Point Blank" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIronGrip"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Iron Grip", statOrder = { 104, 319 }, level = 1, group = "HungryLoopSupportedByIronGrip", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMeleeDamageOnFullLife"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Damage On Full Life", statOrder = { 104, 336 }, level = 1, group = "HungryLoopSupportedByMeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2126431157] = { "Socketed Gems are Supported by Level 20 Damage On Full Life" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRangedAttackTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ballista Totem", statOrder = { 104, 362 }, level = 1, group = "HungryLoopSupportedByRangedAttackTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFirePenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fire Penetration", statOrder = { 104, 277 }, level = 1, group = "HungryLoopSupportedByFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1979658770] = { "Socketed Gems are Supported by Level 20 Fire Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLightningPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Lightning Penetration", statOrder = { 104, 326 }, level = 1, group = "HungryLoopSupportedByLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3354027870] = { "Socketed Gems are Supported by Level 20 Lightning Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chain", statOrder = { 104, 243 }, level = 1, group = "HungryLoopSupportedByChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2643665787] = { "Socketed Gems are Supported by Level 20 Chain" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMulticast"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Echo", statOrder = { 104, 341 }, level = 1, group = "HungryLoopSupportedByMulticast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [913919528] = { "Socketed Gems are Supported by Level 20 Spell Echo" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPowerChargeOnCrit_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", statOrder = { 104, 356 }, level = 1, group = "HungryLoopSupportedByPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIncreasedBurningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Burning Damage", statOrder = { 104, 312 }, level = 1, group = "HungryLoopSupportedByIncreasedBurningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2680613507] = { "Socketed Gems are Supported by Level 20 Burning Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySummonElementalResistance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Army Support", statOrder = { 104, 384 }, level = 1, group = "HungryLoopSupportedBySummonElementalResistance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [514705332] = { "Socketed Gems are Supported by Level 20 Elemental Army Support" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCurseOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hextouch", statOrder = { 104, 255 }, level = 1, group = "HungryLoopSupportedByCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2697741965] = { "Socketed Gems are Supported by Level 20 Hextouch" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnKill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 104, 240 }, level = 1, group = "HungryLoopSupportedByCastOnKill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3312593243] = { "Socketed Gems are Supported by Level 20 Cast On Melee Kill" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMultiTrap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Traps", statOrder = { 104, 456 }, level = 1, group = "HungryLoopSupportedByMultiTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3016436615] = { "Socketed Gems are Supported by Level 20 Multiple Traps" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEmpower"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Empower", statOrder = { 104, 269 }, level = 1, group = "HungryLoopSupportedByEmpower", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3581578643] = { "Socketed Gems are Supported by Level 3 Empower" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySlowerProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Slower Projectiles", statOrder = { 104, 377 }, level = 1, group = "HungryLoopSupportedBySlowerProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1390285657] = { "Socketed Gems are Supported by Level 20 Slower Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByReducedDuration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 104, 365 }, level = 1, group = "HungryLoopSupportedByReducedDuration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2487643588] = { "Socketed Gems are Supported by Level 20 Less Duration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnDamageTaken"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast when Damage Taken", statOrder = { 104, 239 }, level = 1, group = "HungryLoopSupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 20 Cast when Damage Taken" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEnhance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 104, 271 }, level = 1, group = "HungryLoopSupportedByEnhance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2556436882] = { "Socketed Gems are Supported by Level 3 Enhance" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPhysicalProjectileAttackDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Vicious Projectiles", statOrder = { 104, 351 }, level = 1, group = "HungryLoopSupportedByPhysicalProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEnlighten"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 104, 272 }, level = 1, group = "HungryLoopSupportedByEnlighten", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2065361612] = { "Socketed Gems are Supported by Level 3 Enlighten" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPhysicalToLightning_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Physical To Lightning", statOrder = { 104, 352 }, level = 1, group = "HungryLoopSupportedByPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3327487371] = { "Socketed Gems are Supported by Level 20 Physical To Lightning" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTrapAndMineDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", statOrder = { 104, 457 }, level = 1, group = "HungryLoopSupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPoison"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", statOrder = { 104, 355 }, level = 1, group = "HungryLoopSupportedByPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2228279620] = { "Socketed Gems are Supported by Level 20 Critical Strike Affliction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVoidManipulation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Void Manipulation", statOrder = { 104, 400 }, level = 1, group = "HungryLoopSupportedByVoidManipulation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1866583932] = { "Socketed Gems are Supported by Level 20 Void Manipulation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRapidDecay"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swift Affliction", statOrder = { 104, 363 }, level = 1, group = "HungryLoopSupportedByRapidDecay", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1636220212] = { "Socketed Gems are Supported by Level 20 Swift Affliction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByClusterTrap_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cluster Trap", statOrder = { 104, 455 }, level = 1, group = "HungryLoopSupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2854183975] = { "Socketed Gems are Supported by Level 20 Cluster Trap" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByElementalFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Focus", statOrder = { 104, 267 }, level = 1, group = "HungryLoopSupportedByElementalFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 20 Elemental Focus" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMinefield"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minefield", statOrder = { 104, 337 }, level = 1, group = "HungryLoopSupportedByMinefield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2805586447] = { "Socketed Gems are Supported by Level 20 Minefield" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTrapCooldown"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Advanced Traps", statOrder = { 104, 390 }, level = 1, group = "HungryLoopSupportedByTrapCooldown", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastWhileChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 104, 242 }, level = 1, group = "HungryLoopSupportedByCastWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1316646496] = { "Socketed Gems are Supported by Level 20 Cast While Channelling" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByIgniteProliferation__"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 104, 308 }, level = 1, group = "HungryLoopSupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3593797653] = { "Socketed Gems are Supported by Level 20 Ignite Proliferation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChanceToBleed"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chance To Bleed", statOrder = { 104, 244 }, level = 1, group = "HungryLoopSupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDeadlyAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Deadly Ailments", statOrder = { 104, 257 }, level = 1, group = "HungryLoopSupportedByDeadlyAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [103909236] = { "Socketed Gems are Supported by Level 20 Deadly Ailments" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDecay"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Decay", statOrder = { 104, 259 }, level = 1, group = "HungryLoopSupportedByDecay", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [388696990] = { "Socketed Gems are Supported by Level 20 Decay" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEfficacy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Efficacy", statOrder = { 104, 265 }, level = 1, group = "HungryLoopSupportedByEfficacy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3924539382] = { "Socketed Gems are Supported by Level 20 Efficacy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMaim"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Maim", statOrder = { 104, 331 }, level = 1, group = "HungryLoopSupportedByMaim", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3826977109] = { "Socketed Gems are Supported by Level 20 Maim" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByImmolate"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Immolate", statOrder = { 104, 309 }, level = 1, group = "HungryLoopSupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2420410470] = { "Socketed Gems are Supported by Level 20 Immolate" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByUnboundAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Unbound Ailments", statOrder = { 104, 393 }, level = 1, group = "HungryLoopSupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3699494172] = { "Socketed Gems are Supported by Level 20 Unbound Ailments" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBrutality"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Brutality", statOrder = { 104, 237 }, level = 1, group = "HungryLoopSupportedByBrutality", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRuthless_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ruthless", statOrder = { 104, 370 }, level = 1, group = "HungryLoopSupportedByRuthless", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOnslaught_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Momentum", statOrder = { 104, 344 }, level = 1, group = "HungryLoopSupportedByOnslaught", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByArcaneSurge"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arcane Surge", statOrder = { 104, 226 }, level = 1, group = "HungryLoopSupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2287264161] = { "Socketed Gems are Supported by Level 20 Arcane Surge" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBarrage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Barrage", statOrder = { 104, 230 }, level = 1, group = "HungryLoopSupportedByBarrage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3827538724] = { "Socketed Gems are Supported by Level 20 Barrage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByArrowNova"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arrow Nova", statOrder = { 104, 361 }, level = 1, group = "HungryLoopSupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1331336999] = { "Socketed Gems are Supported by Level 20 Arrow Nova" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPierce_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Pierce", statOrder = { 104, 509 }, level = 1, group = "HungryLoopSupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2433615566] = { "Socketed Gems are supported by Level 20 Pierce" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFasterAttacks"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Faster Attacks", statOrder = { 104, 469 }, level = 1, group = "HungryLoopSupportedByFasterAttacks", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMeleePhysicalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Melee Physical Damage", statOrder = { 104, 468 }, level = 1, group = "HungryLoopSupportedByMeleePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGenerosity_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Generosity", statOrder = { 104, 495 }, level = 1, group = "HungryLoopSupportedByGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2593773031] = { "Socketed Gems are Supported by Level 20 Generosity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFortify_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 104, 496 }, level = 1, group = "HungryLoopSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByElementalProliferation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 104, 466 }, level = 1, group = "HungryLoopSupportedByElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByControlledDestruction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Controlled Destruction", statOrder = { 104, 525 }, level = 1, group = "HungryLoopSupportedByControlledDestruction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3718597497] = { "Socketed Gems are Supported by Level 20 Controlled Destruction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByConcentratedEffect"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 104, 453 }, level = 1, group = "HungryLoopSupportedByConcentratedEffect", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnDeath"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 104, 478 }, level = 1, group = "HungryLoopSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAddedLightningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 104, 467 }, level = 1, group = "HungryLoopSupportedByAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1647529598] = { "Socketed Gems are Supported by Level 20 Added Lightning Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAddedChaosDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 104, 458 }, level = 1, group = "HungryLoopSupportedByAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [411460446] = { "Socketed Gems are Supported by Level 20 Added Chaos Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByReducedBlockChance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Block Chance Reduction", statOrder = { 104, 364 }, level = 1, group = "HungryLoopSupportedByReducedBlockChance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1966051190] = { "Socketed Gems are Supported by Level 20 Block Chance Reduction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByStormBarrier"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Infused Channelling", statOrder = { 104, 383 }, level = 1, group = "HungryLoopSupportedByStormBarrier", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4048257027] = { "Socketed Gems are Supported by Level 20 Infused Channelling" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByParallelProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Volley", statOrder = { 104, 350 }, level = 1, group = "HungryLoopSupportedByParallelProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2696557965] = { "Socketed Gems are Supported by Level 20 Volley" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterVolley"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 104, 300 }, level = 1, group = "HungryLoopSupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2223565123] = { "Socketed Gems are Supported by Level 20 Greater Volley" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Cascade", statOrder = { 104, 379 }, level = 1, group = "HungryLoopSupportedBySpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 20 Spell Cascade" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpiritStrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ancestral Call", statOrder = { 104, 382 }, level = 1, group = "HungryLoopSupportedBySpiritStrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [696805682] = { "Socketed Gems are Supported by Level 20 Ancestral Call" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySummonGhostOnKill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 104, 385 }, level = 1, group = "HungryLoopSupportedBySummonGhostOnKill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3155072742] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMirageArcher_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mirage Archer", statOrder = { 104, 339 }, level = 1, group = "HungryLoopSupportedByMirageArcher", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3239503729] = { "Socketed Gems are Supported by Level 20 Mirage Archer" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFrenzyPowerOnTrapTrigger"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Charged Traps", statOrder = { 104, 285 }, level = 1, group = "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [479453859] = { "Socketed Gems are Supported by Level 20 Charged Traps" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChaosAttacks"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Withering Touch", statOrder = { 104, 405 }, level = 1, group = "HungryLoopSupportedByChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3287477747] = { "Socketed Gems are Supported by Level 20 Withering Touch" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBonechill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bonechill", statOrder = { 104, 235 }, level = 1, group = "HungryLoopSupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1859244771] = { "Socketed Gems are Supported by Level 20 Bonechill" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMultiTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Totems", statOrder = { 104, 340 }, level = 1, group = "HungryLoopSupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [807186595] = { "Socketed Gems are Supported by Level 20 Multiple Totems" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEnergyLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Energy Leech", statOrder = { 104, 270 }, level = 1, group = "HungryLoopSupportedByEnergyLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [799443127] = { "Socketed Gems are Supported by Level 20 Energy Leech" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpellFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 104, 380 }, level = 1, group = "HungryLoopSupportedBySpellFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1876637240] = { "Socketed Gems are Supported by Level 20 Intensify" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Unleash", statOrder = { 104, 396 }, level = 1, group = "HungryLoopSupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3356013982] = { "Socketed Gems are Supported by Level 20 Unleash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByImpale"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Impale", statOrder = { 104, 310 }, level = 1, group = "HungryLoopSupportedByImpale", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1900098804] = { "Socketed Gems are Supported by Level 20 Impale" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPulverise"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Pulverise", statOrder = { 104, 358 }, level = 1, group = "HungryLoopSupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [282757414] = { "Socketed Gems are Supported by Level 20 Pulverise" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Rage", statOrder = { 104, 360 }, level = 1, group = "HungryLoopSupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [369650395] = { "Socketed Gems are Supported by Level 20 Rage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCloseCombat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Close Combat", statOrder = { 104, 247 }, level = 1, group = "HungryLoopSupportedByCloseCombat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [694651314] = { "Socketed Gems are Supported by Level 20 Close Combat" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByShockwave_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Shockwave", statOrder = { 104, 376 }, level = 1, group = "HungryLoopSupportedByShockwave", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1344789934] = { "Socketed Gems are Supported by Level 20 Shockwave" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFeedingFrenzy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Feeding Frenzy", statOrder = { 104, 276 }, level = 1, group = "HungryLoopSupportedByFeedingFrenzy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2269282877] = { "Socketed Gems are Supported by Level 20 Feeding Frenzy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMeatShield"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Meat Shield", statOrder = { 104, 334 }, level = 1, group = "HungryLoopSupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [858460086] = { "Socketed Gems are Supported by Level 20 Meat Shield" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDeathmark_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Predator", statOrder = { 104, 258 }, level = 1, group = "HungryLoopSupportedByDeathmark", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4082662318] = { "Socketed Gems are Supported by Level 20 Predator" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByNightblade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Nightblade", statOrder = { 104, 342 }, level = 1, group = "HungryLoopSupportedByNightblade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2861649515] = { "Socketed Gems are Supported by Level 20 Nightblade" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByInfernalLegion_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Infernal Legion", statOrder = { 104, 315 }, level = 1, group = "HungryLoopSupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2201102274] = { "Socketed Gems are Supported by Level 20 Infernal Legion" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySwiftAssembly"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swift Assembly", statOrder = { 104, 386 }, level = 1, group = "HungryLoopSupportedBySwiftAssembly", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4021476585] = { "Socketed Gems are Supported by Level 20 Swift Assembly" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByChargedMines"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Charged Mines", statOrder = { 104, 246 }, level = 1, group = "HungryLoopSupportedByChargedMines", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1365328494] = { "Socketed Gems are Supported by Level 20 Charged Mines" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAddedFireDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Fire Damage", statOrder = { 104, 415 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [339131601] = { "Socketed Gems are Supported by Level 5 Awakened Added Fire Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAncestralCall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Ancestral Call", statOrder = { 104, 417 }, level = 1, group = "HungryLoopSupportedByAwakenedAncestralCall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4055526353] = { "Socketed Gems are Supported by Level 5 Awakened Ancestral Call" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedBrutality"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Brutality", statOrder = { 104, 420 }, level = 1, group = "HungryLoopSupportedByAwakenedBrutality", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3610200044] = { "Socketed Gems are Supported by Level 5 Awakened Brutality" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedBurningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Burning Damage", statOrder = { 104, 421 }, level = 1, group = "HungryLoopSupportedByAwakenedBurningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [493707013] = { "Socketed Gems are Supported by Level 5 Awakened Burning Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedWeaponElementalDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Elemental Damage With Attacks", statOrder = { 104, 450 }, level = 1, group = "HungryLoopSupportedByAwakenedWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1786672841] = { "Socketed Gems are Supported by Level 5 Awakened Elemental Damage With Attacks" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedFirePenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Fire Penetration", statOrder = { 104, 433 }, level = 1, group = "HungryLoopSupportedByAwakenedFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [170274897] = { "Socketed Gems are Supported by Level 5 Awakened Fire Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedGenerosity_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Generosity", statOrder = { 104, 435 }, level = 1, group = "HungryLoopSupportedByAwakenedGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1007586373] = { "Socketed Gems are Supported by Level 5 Awakened Generosity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedMeleePhysicalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Melee Physical Damage", statOrder = { 104, 439 }, level = 1, group = "HungryLoopSupportedByAwakenedMeleePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2173069393] = { "Socketed Gems are Supported by Level 5 Awakened Melee Physical Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedMeleeSplash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Melee Splash", statOrder = { 104, 440 }, level = 1, group = "HungryLoopSupportedByAwakenedMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2253550081] = { "Socketed Gems are Supported by Level 5 Awakened Melee Splash" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Multistrike", statOrder = { 104, 442 }, level = 1, group = "HungryLoopSupportedByAwakenedMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [511417258] = { "Socketed Gems are Supported by Level 5 Awakened Multistrike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAddedColdDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Cold Damage", statOrder = { 104, 414 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2509486489] = { "Socketed Gems are Supported by Level 5 Awakened Added Cold Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedArrowNova"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Arrow Nova", statOrder = { 104, 418 }, level = 1, group = "HungryLoopSupportedByAwakenedArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1411990341] = { "Socketed Gems are Supported by Level 5 Awakened Arrow Nova" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedCastOnCrit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cast On Critical Strike", statOrder = { 104, 422 }, level = 1, group = "HungryLoopSupportedByAwakenedCastOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2750392696] = { "Socketed Gems are Supported by Level 5 Awakened Cast On Critical Strike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Chain", statOrder = { 104, 424 }, level = 1, group = "HungryLoopSupportedByAwakenedChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2249251344] = { "Socketed Gems are Supported by Level 5 Awakened Chain" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedColdPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cold Penetration", statOrder = { 104, 425 }, level = 1, group = "HungryLoopSupportedByAwakenedColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1889095429] = { "Socketed Gems are Supported by Level 5 Awakened Cold Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedDeadlyAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Deadly Ailments", statOrder = { 104, 428 }, level = 1, group = "HungryLoopSupportedByAwakenedDeadlyAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1621366871] = { "Socketed Gems are Supported by Level 5 Awakened Deadly Ailments" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Fork", statOrder = { 104, 434 }, level = 1, group = "HungryLoopSupportedByAwakenedFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1803865171] = { "Socketed Gems are Supported by Level 5 Awakened Fork" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedGreaterMultipleProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Greater Multiple Projectiles", statOrder = { 104, 436 }, level = 1, group = "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1980028507] = { "Socketed Gems are Supported by Level 5 Awakened Greater Multiple Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedSwiftAffliction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Swift Affliction", statOrder = { 104, 445 }, level = 1, group = "HungryLoopSupportedByAwakenedSwiftAffliction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4089933397] = { "Socketed Gems are Supported by Level 5 Awakened Swift Affliction" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedVoidManipulation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Void Manipulation", statOrder = { 104, 449 }, level = 1, group = "HungryLoopSupportedByAwakenedVoidManipulation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1882929618] = { "Socketed Gems are Supported by Level 5 Awakened Void Manipulation" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedViciousProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Vicious Projectiles", statOrder = { 104, 448 }, level = 1, group = "HungryLoopSupportedByAwakenedViciousProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2647355055] = { "Socketed Gems are Supported by Level 5 Awakened Vicious Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAddedChaosDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Chaos Damage", statOrder = { 104, 413 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2722592119] = { "Socketed Gems are Supported by Level 5 Awakened Added Chaos Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedAddedLightningDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Lightning Damage", statOrder = { 104, 416 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3429304534] = { "Socketed Gems are Supported by Level 5 Awakened Added Lightning Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Blasphemy", statOrder = { 104, 419 }, level = 1, group = "HungryLoopSupportedByAwakenedBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1046449631] = { "Socketed Gems are Supported by Level 5 Awakened Blasphemy" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedCastWhileChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cast While Channelling", statOrder = { 104, 423 }, level = 1, group = "HungryLoopSupportedByAwakenedCastWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [760968853] = { "Socketed Gems are Supported by Level 5 Awakened Cast While Channelling" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedControlledDestruction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Controlled Destruction", statOrder = { 104, 426 }, level = 1, group = "HungryLoopSupportedByAwakenedControlledDestruction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [271119551] = { "Socketed Gems are Supported by Level 5 Awakened Controlled Destruction" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedCurseOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Hextouch", statOrder = { 104, 427 }, level = 1, group = "HungryLoopSupportedByAwakenedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2635746638] = { "Socketed Gems are Supported by Level 5 Awakened Hextouch" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedElementalFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Elemental Focus", statOrder = { 104, 429 }, level = 1, group = "HungryLoopSupportedByAwakenedElementalFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2111661233] = { "Socketed Gems are Supported by Level 5 Awakened Elemental Focus" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Increased Area Of Effect", statOrder = { 104, 437 }, level = 1, group = "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2333301609] = { "Socketed Gems are Supported by Level 5 Awakened Increased Area Of Effect" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedLightningPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Lightning Penetration", statOrder = { 104, 438 }, level = 1, group = "HungryLoopSupportedByAwakenedLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1544223714] = { "Socketed Gems are Supported by Level 5 Awakened Lightning Penetration" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedMinionDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Minion Damage", statOrder = { 104, 441 }, level = 1, group = "HungryLoopSupportedByAwakenedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2100048639] = { "Socketed Gems are Supported by Level 5 Awakened Minion Damage" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedSpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Spell Cascade", statOrder = { 104, 443 }, level = 1, group = "HungryLoopSupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2222752567] = { "Socketed Gems are Supported by Level 5 Awakened Spell Cascade" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedSpellEcho__"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Spell Echo", statOrder = { 104, 444 }, level = 1, group = "HungryLoopSupportedByAwakenedSpellEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [48859060] = { "Socketed Gems are Supported by Level 5 Awakened Spell Echo" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedUnboundAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Unbound Ailments", statOrder = { 104, 446 }, level = 1, group = "HungryLoopSupportedByAwakenedUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2116002108] = { "Socketed Gems are Supported by Level 5 Awakened Unbound Ailments" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Unleash", statOrder = { 104, 447 }, level = 1, group = "HungryLoopSupportedByAwakenedUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3428829446] = { "Socketed Gems are Supported by Level 5 Awakened Unleash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedEmpower"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Empower", statOrder = { 104, 430 }, level = 1, group = "HungryLoopSupportedByAwakenedEmpower", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3739157305] = { "Socketed Gems are Supported by Level 4 Awakened Empower" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedEnlighten"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Enlighten", statOrder = { 104, 432 }, level = 1, group = "HungryLoopSupportedByAwakenedEnlighten", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4251567680] = { "Socketed Gems are Supported by Level 4 Awakened Enlighten" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAwakenedEnhance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Enhance", statOrder = { 104, 431 }, level = 1, group = "HungryLoopSupportedByAwakenedEnhance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2133566731] = { "Socketed Gems are Supported by Level 4 Awakened Enhance" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySecondWind_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Second Wind", statOrder = { 104, 375 }, level = 1, group = "HungryLoopSupportedBySecondWind", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [402499111] = { "Socketed Gems are Supported by Level 20 Second Wind" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByArchmage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Archmage", statOrder = { 104, 227 }, level = 1, group = "HungryLoopSupportedByArchmage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3652278215] = { "Socketed Gems are Supported by Level 20 Archmage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByUrgentOrders"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Urgent Orders", statOrder = { 104, 397 }, level = 1, group = "HungryLoopSupportedByUrgentOrders", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1485525812] = { "Socketed Gems are Supported by Level 20 Urgent Orders" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFistOfWar"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fist of War", statOrder = { 104, 279 }, level = 1, group = "HungryLoopSupportedByFistofWar", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2419657101] = { "Socketed Gems are Supported by Level 20 Fist of War" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySwiftBrand"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swiftbrand", statOrder = { 104, 387 }, level = 1, group = "HungryLoopSupportedBySwiftBrand", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2127532091] = { "Socketed Gems are Supported by Level 20 Swiftbrand" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByElementalPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Penetration", statOrder = { 104, 268 }, level = 1, group = "HungryLoopSupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1994143317] = { "Socketed Gems are Supported by Level 20 Elemental Penetration" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByImpendingDoom"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Impending Doom", statOrder = { 104, 311 }, level = 1, group = "HungryLoopSupportedByImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3227145554] = { "Socketed Gems are Supported by Level 20 Impending Doom" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBloodthirst_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bloodthirst", statOrder = { 104, 234 }, level = 1, group = "HungryLoopSupportedByBloodthirst", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1803206643] = { "Socketed Gems are Supported by Level 20 Bloodthirst" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFragility_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cruelty", statOrder = { 104, 284 }, level = 1, group = "HungryLoopSupportedByFragility", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1679136] = { "Socketed Gems are Supported by Level 20 Cruelty" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLifetap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Lifetap", statOrder = { 104, 325 }, level = 1, group = "HungryLoopSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1079239905] = { "Socketed Gems are Supported by Level 20 Lifetap" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFocussedBallista_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Focused Ballista", statOrder = { 104, 282 }, level = 1, group = "HungryLoopSupportedByFocussedBallista", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [921536976] = { "Socketed Gems are Supported by Level 20 Focused Ballista" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEarthbreaker"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Earthbreaker", statOrder = { 104, 262 }, level = 1, group = "HungryLoopSupportedByEarthbreaker", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [940684417] = { "Socketed Gems are Supported by Level 20 Earthbreaker" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBehead"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Behead", statOrder = { 104, 231 }, level = 1, group = "HungryLoopSupportedByBehead", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1019145105] = { "Socketed Gems are Supported by Level 20 Behead" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMarkOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mark On Hit", statOrder = { 104, 333 }, level = 1, group = "HungryLoopSupportedByMarkOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3485498591] = { "Socketed Gems are Supported by Level 20 Mark On Hit" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDivineBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Eternal Blessing", statOrder = { 104, 273 }, level = 1, group = "HungryLoopSupportedByDivineBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3062849155] = { "Socketed Gems are Supported by Level 20 Eternal Blessing" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEternalBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Eternal Blessing", statOrder = { 104, 273 }, level = 1, group = "HungryLoopSupportedByEternalBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3062849155] = { "Socketed Gems are Supported by Level 20 Eternal Blessing" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOvercharge"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Overcharge", statOrder = { 104, 345 }, level = 1, group = "HungryLoopSupportedByPureShock", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3462081007] = { "Socketed Gems are Supported by Level 20 Overcharge" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCursedGround"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cursed Ground", statOrder = { 104, 256 }, level = 1, group = "HungryLoopSupportedByCursedGround", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3998071134] = { "Socketed Gems are Supported by Level 20 Cursed Ground" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHexBloom"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hex Bloom", statOrder = { 104, 304 }, level = 1, group = "HungryLoopSupportedByHexBloom", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3199084318] = { "Socketed Gems are Supported by Level 20 Hex Bloom" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByManaforgedArrows"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Manaforged Arrows", statOrder = { 104, 332 }, level = 1, group = "HungryLoopSupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4022502578] = { "Socketed Gems are Supported by Level 20 Manaforged Arrows" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPrismaticBurst"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Prismatic Burst", statOrder = { 104, 357 }, level = 1, group = "HungryLoopSupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2910545715] = { "Socketed Gems are Supported by Level 20 Prismatic Burst" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByReturningProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 104, 367 }, level = 1, group = "HungryLoopSupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [52197415] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTrauma"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trauma", statOrder = { 104, 391 }, level = 1, group = "HungryLoopSupportedByTrauma", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1715139253] = { "Socketed Gems are Supported by Level 20 Trauma" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySpellblade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spellblade", statOrder = { 104, 381 }, level = 1, group = "HungryLoopSupportedBySpellblade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [633235561] = { "Socketed Gems are Supported by Level 20 Spellblade" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDevour"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Devour", statOrder = { 104, 260 }, level = 1, group = "HungryLoopSupportedByDevour", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2820883532] = { "Socketed Gems are Supported by Level 20 Devour" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFreshMeat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fresh Meat", statOrder = { 104, 286 }, level = 1, group = "HungryLoopSupportedByFreshMeat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3713917371] = { "Socketed Gems are Supported by Level 20 Fresh Meat" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFlamewood"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 104, 280 }, level = 1, group = "HungryLoopSupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCorruptingCry"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Corrupting Cry", statOrder = { 104, 252 }, level = 1, group = "HungryLoopSupportedByCorruptingCry", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3486166615] = { "Socketed Gems are Supported by Level 20 Corrupting Cry" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVolatility"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Volatility", statOrder = { 104, 403 }, level = 1, group = "HungryLoopSupportedByVolatility", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4184135167] = { "Socketed Gems are Supported by Level 20 Volatility" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGuardiansBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Guardian's Blessing", statOrder = { 104, 301 }, level = 1, group = "HungryLoopSupportedByGuardiansBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3434296257] = { "Socketed Gems are Supported by Level 20 Guardian's Blessing" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySacrifice"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sacrifice", statOrder = { 104, 372 }, level = 1, group = "HungryLoopSupportedBySacrifice", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2302807931] = { "Socketed Gems are Supported by Level 20 Sacrifice" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFrigidBond"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Frigid Bond", statOrder = { 104, 287 }, level = 1, group = "HungryLoopSupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 20 Frigid Bond" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLocusMine"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Locus Mine", statOrder = { 104, 328 }, level = 1, group = "HungryLoopSupportedByLocusMine", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [863963929] = { "Socketed Gems are Supported by Level 20 Locus Mine" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySadism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sadism", statOrder = { 104, 373 }, level = 1, group = "HungryLoopSupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [794471597] = { "Socketed Gems are Supported by Level 20 Sadism" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByControlledBlaze"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Controlled Blaze", statOrder = { 104, 250 }, level = 1, group = "HungryLoopSupportedByControlledBlaze", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [124226929] = { "Socketed Gems are Supported by Level 20 Controlled Blaze" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAutomation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Automation", statOrder = { 104, 229 }, level = 1, group = "HungryLoopSupportedByAutomation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [397199955] = { "Socketed Gems are Supported by Level 20 Automation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCallToArms"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Call To Arms", statOrder = { 104, 238 }, level = 1, group = "HungryLoopSupportedByCallToArms", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3950097420] = { "Socketed Gems are Supported by Level 20 Call To Arms" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedBySacredWisps"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sacred Wisps", statOrder = { 104, 371 }, level = 1, group = "HungryLoopSupportedBySacredWisps", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3304737450] = { "Socketed Gems are Supported by Level 20 Sacred Wisps" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOverexertion"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Overexertion", statOrder = { 104, 346 }, level = 1, group = "HungryLoopSupportedByOverexertion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2707167862] = { "Socketed Gems are Supported by Level 20 Overexertion" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByExpertRetaliation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Expert Retaliation", statOrder = { 104, 275 }, level = 1, group = "HungryLoopSupportedByExpertRetaliation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3570337997] = { "Socketed Gems are Supported by Level 20 Expert Retaliation" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByRupture"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Rupture", statOrder = { 104, 369 }, level = 1, group = "HungryLoopSupportedByRupture", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [970734352] = { "Socketed Gems are Supported by Level 20 Rupture" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFocusedChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Focused Channelling", statOrder = { 104, 281 }, level = 1, group = "HungryLoopSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2873637569] = { "Socketed Gems are Supported by Level 20 Focused Channelling" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTornados"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Windburst", statOrder = { 104, 388 }, level = 1, group = "HungryLoopSupportedByTornados", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [143223888] = { "Socketed Gems are Supported by Level 20 Windburst" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByKineticInstability"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Kinetic Instability", statOrder = { 104, 322 }, level = 1, group = "HungryLoopSupportedByKineticInstability", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3844615363] = { "Socketed Gems are Supported by Level 20 Kinetic Instability" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLivingLightning"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 104, 327 }, level = 1, group = "HungryLoopSupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByExcommunication"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Excommunicate", statOrder = { 104, 274 }, level = 1, group = "HungryLoopSupportedByExcommunication", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1385879224] = { "Socketed Gems are Supported by Level 20 Excommunicate" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByExemplar"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Exemplar", statOrder = { 104, 335 }, level = 1, group = "HungryLoopSupportedByExemplar", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3370631451] = { "Socketed Gems are Supported by Level 20 Exemplar" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBlessedCalling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blessed Calling", statOrder = { 104, 249 }, level = 1, group = "HungryLoopSupportedByBlessedCalling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2217896386] = { "Socketed Gems are Supported by Level 20 Blessed Calling" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHallow"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hallow", statOrder = { 104, 302 }, level = 1, group = "HungryLoopSupportedByHallow", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [88019169] = { "Socketed Gems are Supported by Level 20 Hallow" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterSpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Spell Cascade", statOrder = { 104, 297 }, level = 1, group = "HungryLoopSupportedByGreaterSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2292610865] = { "Socketed Gems are Supported by Level 3 Greater Spell Cascade" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEclipse"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Eclipse", statOrder = { 104, 263 }, level = 1, group = "HungryLoopSupportedByEclipse", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3207084920] = { "Socketed Gems are Supported by Level 3 Eclipse" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByInvertTheRules"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Invert the Rules", statOrder = { 104, 318 }, level = 1, group = "HungryLoopSupportedByInvertTheRules", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2475469642] = { "Socketed Gems are Supported by Level 3 Invert the Rules" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCastOnWardBreak"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cast on Ward Break", statOrder = { 104, 241 }, level = 1, group = "HungryLoopSupportedByCastOnWardBreak", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [668102856] = { "Socketed Gems are Supported by Level 3 Cast on Ward Break" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByWard"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Ward", statOrder = { 104, 404 }, level = 1, group = "HungryLoopSupportedByWard", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4215872260] = { "Socketed Gems are Supported by Level 3 Ward" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVaalSacrifice"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Vaal Sacrifice", statOrder = { 104, 398 }, level = 1, group = "HungryLoopSupportedByVaalSacrifice", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1663164024] = { "Socketed Gems are Supported by Level 3 Vaal Sacrifice" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterSpellEcho"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Spell Echo", statOrder = { 104, 298 }, level = 1, group = "HungryLoopSupportedByGreaterSpellEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3388448323] = { "Socketed Gems are Supported by Level 3 Greater Spell Echo" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVaalTemptation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Vaal Temptation", statOrder = { 104, 399 }, level = 1, group = "HungryLoopSupportedByVaalTemptation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3444486593] = { "Socketed Gems are Supported by Level 3 Vaal Temptation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMachinations"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Machinations", statOrder = { 104, 329 }, level = 1, group = "HungryLoopSupportedByMachinations", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [532407974] = { "Socketed Gems are Supported by Level 3 Machinations" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPyre"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Pyre", statOrder = { 104, 359 }, level = 1, group = "HungryLoopSupportedByPyre", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [165595385] = { "Socketed Gems are Supported by Level 3 Pyre" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBonespire"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Bonespire", statOrder = { 104, 236 }, level = 1, group = "HungryLoopSupportedByBonespire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [301018639] = { "Socketed Gems are Supported by Level 3 Bonespire" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFoulgrasp"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Foulgrasp", statOrder = { 104, 283 }, level = 1, group = "HungryLoopSupportedByFoulgrasp", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2433487502] = { "Socketed Gems are Supported by Level 3 Foulgrasp" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHiveborn"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hiveborn", statOrder = { 104, 307 }, level = 1, group = "HungryLoopSupportedByHiveborn", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4120663487] = { "Socketed Gems are Supported by Level 3 Hiveborn" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByScornfulHerald"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Scornful Herald", statOrder = { 104, 374 }, level = 1, group = "HungryLoopSupportedByScornfulHerald", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2705480258] = { "Socketed Gems are Supported by Level 3 Scornful Herald" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCullTheWeak"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cull the Weak", statOrder = { 104, 253 }, level = 1, group = "HungryLoopSupportedByCullTheWeak", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2252088501] = { "Socketed Gems are Supported by Level 3 Cull the Weak" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterAncestralCall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Ancestral Call", statOrder = { 104, 290 }, level = 1, group = "HungryLoopSupportedByGreaterAncestralCall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3607291760] = { "Socketed Gems are Supported by Level 3 Greater Ancestral Call" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFissure"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Fissure", statOrder = { 104, 278 }, level = 1, group = "HungryLoopSupportedByFissure", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1379504110] = { "Socketed Gems are Supported by Level 3 Fissure" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHextoad"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hextoad", statOrder = { 104, 306 }, level = 1, group = "HungryLoopSupportedByHextoad", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2172297405] = { "Socketed Gems are Supported by Level 3 Hextoad" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHexpass"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hexpass", statOrder = { 104, 305 }, level = 1, group = "HungryLoopSupportedByHexpass", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3684412823] = { "Socketed Gems are Supported by Level 3 Hexpass" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Fork", statOrder = { 104, 293 }, level = 1, group = "HungryLoopSupportedByGreaterFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2336972637] = { "Socketed Gems are Supported by Level 3 Greater Fork" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Chain", statOrder = { 104, 291 }, level = 1, group = "HungryLoopSupportedByGreaterChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2877350012] = { "Socketed Gems are Supported by Level 3 Greater Chain" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByLethalDose"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Lethal Dose", statOrder = { 104, 323 }, level = 1, group = "HungryLoopSupportedByLethalDose", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2985239009] = { "Socketed Gems are Supported by Level 3 Lethal Dose" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCompanionship"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Companionship", statOrder = { 104, 248 }, level = 1, group = "HungryLoopSupportedByCompanionship", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2020568221] = { "Socketed Gems are Supported by Level 3 Companionship" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByDivineSentinel"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Divine Sentinel", statOrder = { 104, 261 }, level = 1, group = "HungryLoopSupportedByDivineSentinel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2755724036] = { "Socketed Gems are Supported by Level 3 Divine Sentinel" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByAnnhilation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Annihilation", statOrder = { 104, 343 }, level = 1, group = "HungryLoopSupportedByAnnhilation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [833438017] = { "Socketed Gems are Supported by Level 3 Annihilation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEdify"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Edify", statOrder = { 104, 264 }, level = 1, group = "HungryLoopSupportedByEdify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [503418832] = { "Socketed Gems are Supported by Level 3 Edify" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByInvention"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Invention", statOrder = { 104, 317 }, level = 1, group = "HungryLoopSupportedByInvention", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2817553827] = { "Socketed Gems are Supported by Level 3 Invention" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterKineticInstability"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Kinetic Instability", statOrder = { 104, 294 }, level = 1, group = "HungryLoopSupportedByGreaterKineticInstability", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [879572166] = { "Socketed Gems are Supported by Level 3 Greater Kinetic Instability" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCooldownRecovery"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cooldown Recovery", statOrder = { 104, 251 }, level = 1, group = "HungryLoopSupportedByCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [654335115] = { "Socketed Gems are Supported by Level 3 Cooldown Recovery" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVoidstorm"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Voidstorm", statOrder = { 104, 402 }, level = 1, group = "HungryLoopSupportedByVoidstorm", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1159163588] = { "Socketed Gems are Supported by Level 3 Voidstorm" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByVoidShockwave"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Void Shockwave", statOrder = { 104, 401 }, level = 1, group = "HungryLoopSupportedByVoidShockwave", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3455096360] = { "Socketed Gems are Supported by Level 3 Void Shockwave" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByEldritchBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Eldritch Blasphemy", statOrder = { 104, 266 }, level = 1, group = "HungryLoopSupportedByEldritchBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1628375748] = { "Socketed Gems are Supported by Level 3 Eldritch Blasphemy" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGluttony"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Gluttony", statOrder = { 104, 289 }, level = 1, group = "HungryLoopSupportedByGluttony", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3196117292] = { "Socketed Gems are Supported by Level 3 Gluttony" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOverheat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Overheat", statOrder = { 104, 347 }, level = 1, group = "HungryLoopSupportedByOverheat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [254238561] = { "Socketed Gems are Supported by Level 3 Overheat" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Multistrike", statOrder = { 104, 296 }, level = 1, group = "HungryLoopSupportedByGreaterMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3144811156] = { "Socketed Gems are Supported by Level 3 Greater Multistrike" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByCongregation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Congregation", statOrder = { 104, 394 }, level = 1, group = "HungryLoopSupportedByCongregation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1674086814] = { "Socketed Gems are Supported by Level 3 Congregation" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByFrostmage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Frostmage", statOrder = { 104, 288 }, level = 1, group = "HungryLoopSupportedByFrostmage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [139060684] = { "Socketed Gems are Supported by Level 3 Frostmage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterDevour"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Devour", statOrder = { 104, 292 }, level = 1, group = "HungryLoopSupportedByGreaterDevour", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1452699198] = { "Socketed Gems are Supported by Level 3 Greater Devour" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMagnetism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Magnetism", statOrder = { 104, 330 }, level = 1, group = "HungryLoopSupportedByMagnetism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3401265726] = { "Socketed Gems are Supported by Level 3 Magnetism" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByGreaterUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Unleash", statOrder = { 104, 299 }, level = 1, group = "HungryLoopSupportedByGreaterUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [90008414] = { "Socketed Gems are Supported by Level 3 Greater Unleash" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByPacifism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Pacifism", statOrder = { 104, 349 }, level = 1, group = "HungryLoopSupportedByPacifism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [346232851] = { "Socketed Gems are Supported by Level 3 Pacifism" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByBloodsoakedBanner"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Bloodsoaked Banner", statOrder = { 104, 233 }, level = 1, group = "HungryLoopSupportedByBloodsoakedBanner", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1844853227] = { "Socketed Gems are Supported by Level 3 Bloodsoaked Banner" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByMinionPact"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Minion Pact", statOrder = { 104, 338 }, level = 1, group = "HungryLoopSupportedByMinionPact", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [991044906] = { "Socketed Gems are Supported by Level 3 Minion Pact" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByHarrowingThrong"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Harrowing Throng", statOrder = { 104, 303 }, level = 1, group = "HungryLoopSupportedByHarrowingThrong", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3873656110] = { "Socketed Gems are Supported by Level 3 Harrowing Throng" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByUnholyTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Unholy Trinity", statOrder = { 104, 395 }, level = 1, group = "HungryLoopSupportedByUnholyTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [321252761] = { "Socketed Gems are Supported by Level 3 Unholy Trinity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByOverloadedIntensity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Overloaded Intensity", statOrder = { 104, 348 }, level = 1, group = "HungryLoopSupportedByOverloadedIntensity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2151095784] = { "Socketed Gems are Supported by Level 3 Overloaded Intensity" }, [1782861052] = { "" }, } }, - ["HungryLoopSupportedByTransfusion"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Transfusion", statOrder = { 104, 389 }, level = 1, group = "HungryLoopSupportedByTransfusion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3740740992] = { "Socketed Gems are Supported by Level 3 Transfusion" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, - ["SocketedGemLevelPer25PlayerLevelsUnique__1"] = { affix = "", "+1 to Level of Socketed Skill Gems per 25 Player Levels", statOrder = { 163 }, level = 1, group = "SocketedGemLevelPer25PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1435838855] = { "+1 to Level of Socketed Skill Gems per 25 Player Levels" }, } }, - ["TriggerSocketedSpellOnAttackUnique__1"] = { affix = "", "Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown", statOrder = { 831 }, level = 1, group = "TriggerSocketedSpellOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [209056835] = { "Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown" }, } }, - ["AddsPhysicalDamagePer3PlayerLevelsUnique__1_"] = { affix = "", "Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels", statOrder = { 1269 }, level = 1, group = "AddsPhysicalDamagePer3PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1454603936] = { "Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels" }, } }, - ["FlaskPoisonDurationUnique__1"] = { affix = "", "(50-75)% increased Duration of Poisons you inflict during Effect", statOrder = { 1002 }, level = 1, group = "FlaskPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [510304734] = { "(50-75)% increased Duration of Poisons you inflict during Effect" }, } }, - ["FlaskHitsHaveNoCritMultiUnique__1"] = { affix = "", "Your Critical Strikes do not deal extra Damage during Effect", statOrder = { 1001 }, level = 1, group = "FlaskHitsHaveNoCritMulti", weightKey = { }, weightVal = { }, modTags = { "flask", "damage", "critical" }, tradeHashes = { [2893557981] = { "Your Critical Strikes do not deal extra Damage during Effect" }, } }, - ["FlaskGrantsPerfectAgonyUnique__1_"] = { affix = "", "Grants Perfect Agony during effect", statOrder = { 1071 }, level = 1, group = "FlaskGrantsPerfectAgony", weightKey = { }, weightVal = { }, modTags = { "flask", "damage", "critical", "ailment" }, tradeHashes = { [3741365813] = { "Grants Perfect Agony during effect" }, } }, - ["FlaskChanceToPoisonUnique__1"] = { affix = "", "25% chance to Poison on Hit during Effect", statOrder = { 967 }, level = 1, group = "FlaskChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [2777278657] = { "25% chance to Poison on Hit during Effect" }, } }, - ["FlaskTakeChaosDamagePerSecondUnique__1"] = { affix = "", "Take 30 Chaos Damage per Second during Effect", statOrder = { 1043 }, level = 1, group = "FlaskTakeChaosDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [308618188] = { "Take 30 Chaos Damage per Second during Effect" }, } }, - ["FlaskTakeChaosDamagePerSecondUnique__2"] = { affix = "", "Take 250 Chaos Damage per Second during Effect", statOrder = { 1043 }, level = 1, group = "FlaskTakeChaosDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [308618188] = { "Take 250 Chaos Damage per Second during Effect" }, } }, - ["FlaskCriticalStrikeDoTMultiplierUnique__1"] = { affix = "", "+(20-30)% to Damage over Time Multiplier for Poison from Critical Strikes during Effect", statOrder = { 1015 }, level = 1, group = "FlaskCriticalStrikeDoTMultiplier", weightKey = { }, weightVal = { }, modTags = { "flask", "critical", "ailment" }, tradeHashes = { [1691221049] = { "+(20-30)% to Damage over Time Multiplier for Poison from Critical Strikes during Effect" }, } }, - ["StarterPassiveTreeJewelUnique__1_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel1", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2160234277] = { "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life" }, } }, - ["AbyssJewelSocketImplicit"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__1"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__2"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__3"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__4"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__5"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__6_"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__7"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__8"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__9"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__10"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__11_"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__12"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["AbyssJewelSocketUnique__13"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__14"] = { affix = "", "Has 6 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 6 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__15"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__16"] = { affix = "", "Has 3 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 3 Abyssal Sockets" }, } }, - ["AbyssJewelSocketUnique__17"] = { affix = "", "Has 4 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 4 Abyssal Sockets" }, } }, - ["StarterPassiveTreeJewelUnique__2"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel2", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1401324447] = { "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed" }, } }, - ["StarterPassiveTreeJewelUnique__3"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel3", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4168151521] = { "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance" }, } }, - ["StarterPassiveTreeJewelUnique__4"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel4", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [409328770] = { "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second" }, } }, - ["StarterPassiveTreeJewelUnique__5"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel5", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1830527425] = { "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances" }, } }, - ["StarterPassiveTreeJewelUnique__6"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel6", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3394862739] = { "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes" }, } }, - ["StarterPassiveTreeJewelUnique__7"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel7", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [376356306] = { "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect" }, } }, - ["StarterPassiveJewelUnique__8"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel8", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2014285677] = { "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second" }, } }, - ["StarterPassiveJewelUnique__9_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel9", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2777732970] = { "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range" }, } }, - ["StarterPassiveJewelUnique__10__"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel10", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3521487028] = { "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained" }, } }, - ["StarterPassiveJewelUnique__11__"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel11", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1907816858] = { "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed" }, } }, - ["StarterPassiveJewelUnique__12__"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel12", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1484654650] = { "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration" }, } }, - ["StarterPassiveJewelUnique__13"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel13", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3770896688] = { "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage" }, } }, - ["StarterPassiveJewelUnique__14_"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage", statOrder = { 10497, 10497.1 }, level = 1, group = "StarterPassiveJewel14", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3153352487] = { "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage" }, } }, - ["IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1"] = { affix = "", "2% increased Attack Critical Strike Chance per 200 Accuracy Rating", statOrder = { 4845 }, level = 65, group = "IncreasedCriticalStrikeChancePerAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2196695640] = { "2% increased Attack Critical Strike Chance per 200 Accuracy Rating" }, } }, - ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8100, 8101 }, 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" }, [3802517517] = { "" }, } }, - ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 1048, 1049 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, - ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 769 }, 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 = { 767 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, - ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 771 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [850729424] = { "Triggers Level 20 Lightning Aegis when Equipped" }, } }, - ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 768 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2602585351] = { "Triggers Level 20 Elemental Aegis when Equipped" }, } }, - ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 774 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1892084828] = { "Triggers Level 20 Physical Aegis when Equipped" }, } }, - ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 520 }, 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 = { 680, 680.1, 680.2, 680.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 = { 681, 681.1, 681.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1517357911] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses" }, } }, - ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", statOrder = { 9692 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you" }, } }, - ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 5110 }, 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 = { 5741 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, - ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6065 }, 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 = { 9428 }, 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 = { 10426, 10426.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 = { 4773 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2466912132] = { "(30-40)% increased Armour while Bleeding" }, } }, - ["SpectreCriticalStrikeChanceUnique__1"] = { affix = "", "Raised Spectres have (800-1000)% increased Critical Strike Chance", statOrder = { 10120 }, level = 1, group = "SpectreCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [1862097882] = { "Raised Spectres have (800-1000)% increased Critical Strike Chance" }, } }, - ["SpectreHaveBaseDurationUnique__1"] = { affix = "", "Raised Spectres have a Base Duration of 20 seconds", "Spectres do not travel between Areas", statOrder = { 10123, 10123.1 }, level = 1, group = "SpectreHaveBaseDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1210937073] = { "Raised Spectres have a Base Duration of 20 seconds", "Spectres do not travel between Areas" }, } }, - ["GainCriticalStrikeChanceOnManaSpentUnique__1"] = { affix = "", "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana", statOrder = { 6744 }, level = 69, group = "GainCriticalStrikeChanceOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2864779809] = { "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana" }, } }, - ["GainHerEmbraceOnIgniteUnique__1"] = { affix = "", "Gain Her Embrace for 3 seconds when you Ignite an Enemy", statOrder = { 6767 }, level = 1, group = "GainHerEmbraceOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [608963131] = { "Gain Her Embrace for 3 seconds when you Ignite an Enemy" }, } }, - ["TakeDamagePerLevelWhileHerEmbraceUnique__1_"] = { affix = "", "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level", statOrder = { 9606 }, level = 1, group = "TakeDamagePerLevelWhileHerEmbrace", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2442112158] = { "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level" }, } }, - ["GainArmourEqualToManaReservedUnique__1"] = { affix = "", "1% increased Armour per 50 Reserved Mana", statOrder = { 6699 }, level = 1, group = "GainArmourEqualToManaReserved", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2574337583] = { "1% increased Armour per 50 Reserved Mana" }, } }, - ["VaalPactIfCritRecentlyUnique__1"] = { affix = "", "You have Vaal Pact if you've dealt a Critical Strike Recently", statOrder = { 6828 }, level = 1, group = "VaalPactIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1032751668] = { "You have Vaal Pact if you've dealt a Critical Strike Recently" }, } }, - ["AdditionalArrowWhileAccuracyIs3000Uber1"] = { affix = "", "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000", statOrder = { 9517 }, level = 1, group = "AdditionalArrowWhileAccuracyIs3000", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3399621281] = { "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000" }, } }, - ["AccuracyRatingIsDoubledUber1"] = { affix = "", "50% more Global Accuracy Rating", statOrder = { 4514 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2161347476] = { "50% more Global Accuracy Rating" }, } }, - ["MeleePhysicalDamagePerStrengthWhileFortifiedUber1"] = { affix = "", "1% increased Melee Physical Damage per 10 Strength while Fortified", statOrder = { 9197 }, level = 1, group = "MeleePhysicalDamagePerStrengthWhileFortified", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [523320038] = { "1% increased Melee Physical Damage per 10 Strength while Fortified" }, } }, - ["IncreasedEvasionRatingWhileLeechingUber1"] = { affix = "", "20% increased Evasion while Leeching", statOrder = { 6498 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [3854334101] = { "20% increased Evasion while Leeching" }, } }, - ["IncreasedEvasionRatingIfHitEnemyRecentlyUber1"] = { affix = "", "20% increased Evasion if you have Hit an Enemy Recently", statOrder = { 6495 }, level = 1, group = "IncreasedEvasionRatingIfHitEnemyRecently", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [1511114965] = { "20% increased Evasion if you have Hit an Enemy Recently" }, } }, - ["CriticalStrikeMultiplierIfHaventCritRecentlyUber1"] = { affix = "", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 5960 }, level = 1, group = "CriticalStrikeMultiplierIfHaventCritRecently", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } }, - ["CriticalStrikeChanceAgainstBleedingEnemiesUber1"] = { affix = "", "70% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3190 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [2282705842] = { "70% increased Critical Strike Chance against Bleeding Enemies" }, } }, - ["AreaOfEffectWith500StrengthUber1"] = { affix = "", "30% increased Area of Effect if you have at least 500 Strength", statOrder = { 4740 }, level = 1, group = "AreaOfEffectWith500Strength", weightKey = { "mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1966978922] = { "30% increased Area of Effect if you have at least 500 Strength" }, } }, - ["HitsCantBeEvadedIfBlockedRecentlyUber1_"] = { affix = "", "Hits with this Weapon can't be Evaded if you have Blocked Recently", statOrder = { 7941 }, level = 1, group = "HitsCantBeEvadedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3124854176] = { "Hits with this Weapon can't be Evaded if you have Blocked Recently" }, } }, - ["AttackSpeedIfBlockedRecentlyUber1"] = { affix = "", "20% increased Attack Speed if you have Blocked Recently", statOrder = { 4896 }, level = 1, group = "AttackSpeedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [3203854378] = { "20% increased Attack Speed if you have Blocked Recently" }, } }, - ["AreaOfEffectWhileFortifiedUber1"] = { affix = "", "25% increased Area of Effect while Fortified", statOrder = { 4735 }, level = 1, group = "AreaOfEffectWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4281819294] = { "25% increased Area of Effect while Fortified" }, } }, - ["MeleeWeaponRangeWhileFortifiedUber1"] = { affix = "", "+0.2 metres to Melee Strike Range while Fortified", statOrder = { 9215 }, level = 1, group = "MeleeWeaponRangeWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [873142284] = { "+0.2 metres to Melee Strike Range while Fortified" }, } }, - ["StunDurationPerStrengthUber1"] = { affix = "", "2% increased Stun Duration per 15 Strength", statOrder = { 10263 }, level = 1, group = "StunDurationPerStrength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3524793843] = { "2% increased Stun Duration per 15 Strength" }, } }, - ["ReducedStunThresholdWith500StrengthUber1"] = { affix = "", "30% reduced Enemy Stun Threshold while you have at least 500 Strength", statOrder = { 10269 }, level = 1, group = "ReducedStunThresholdWith500Strength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1350423427] = { "30% reduced Enemy Stun Threshold while you have at least 500 Strength" }, } }, - ["AreaDamagePerStrengthUber1"] = { affix = "", "1% increased Area Damage per 12 Strength", statOrder = { 4719 }, level = 1, group = "AreaDamagePerStrength", weightKey = { "2h_mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [1457012825] = { "1% increased Area Damage per 12 Strength" }, } }, - ["IncreasedDamageAgainstTauntedEnemiesUber1"] = { affix = "", "50% increased Damage with Hits and Ailments against Taunted Enemies", statOrder = { 6072 }, level = 1, group = "IncreasedDamageAgainstTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [416495155] = { "50% increased Damage with Hits and Ailments against Taunted Enemies" }, } }, - ["BleedingDamagePerEnduranceChargeUber1"] = { affix = "", "5% increased Damage with Bleeding per Endurance Charge", statOrder = { 5101 }, level = 1, group = "BleedingDamagePerEnduranceCharge", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3553579843] = { "5% increased Damage with Bleeding per Endurance Charge" }, } }, - ["MovementSpeedWhileFortifiedUber1"] = { affix = "", "15% increased Movement Speed while Fortified", statOrder = { 3320 }, level = 1, group = "MovementSpeedWhileFortified", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [89156964] = { "15% increased Movement Speed while Fortified" }, } }, - ["MeleeWeaponRangeAtMaximumFrenzyChargesUber1_"] = { affix = "", "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges", statOrder = { 9214 }, level = 1, group = "MeleeWeaponRangeAtMaximumFrenzyCharges", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1915592358] = { "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges" }, } }, - ["BlindEnemiesWhenHitUber1__"] = { affix = "", "20% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 1, group = "BlindEnemiesWhenHit", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [26216403] = { "20% chance to Blind Enemies when they Hit you" }, } }, - ["PoisonDamageAgainstBleedingEnemiesUber1"] = { affix = "", "50% increased Damage with Poison inflicted on Bleeding Enemies", statOrder = { 9682 }, level = 1, group = "PoisonDamageAgainstBleedingEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [3443763859] = { "50% increased Damage with Poison inflicted on Bleeding Enemies" }, } }, - ["ChanceToBleedOnTauntedEnemiesUber1"] = { affix = "", "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies", statOrder = { 4914 }, level = 1, group = "ChanceToBleedOnTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [455461462] = { "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies" }, } }, - ["AreaOfEffectPerPowerChargeUber1"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } }, - ["BleedDamageAgainstPoisonedEnemiesUber1"] = { affix = "", "50% increased Damage with Bleeding inflicted on Poisoned Enemies", statOrder = { 5105 }, level = 1, group = "BleedDamageAgainstPoisonedEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [2598533821] = { "50% increased Damage with Bleeding inflicted on Poisoned Enemies" }, } }, - ["GainEnduranceChargeOnStunChanceUber1"] = { affix = "", "25% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1582887649] = { "25% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, - ["FortifyEffectWhileStationaryUber1"] = { affix = "", "+4 to maximum Fortification while stationary", statOrder = { 9120 }, level = 1, group = "FortifyEffectWhileStationary", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3476600731] = { "+4 to maximum Fortification while stationary" }, } }, - ["FortifyDurationPerStrengthUber1"] = { affix = "", "1% increased Fortification Duration per 10 Strength", statOrder = { 6662 }, level = 1, group = "FortifyDurationPerStrength", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3000615037] = { "1% increased Fortification Duration per 10 Strength" }, } }, - ["ReducedElementalDamageTakenPerEnduranceChargeUber1"] = { affix = "", "1% reduced Elemental Damage taken per Endurance Charge", statOrder = { 6320 }, level = 1, group = "ReducedElementalDamageTakenPerEnduranceCharge", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2615920043] = { "1% reduced Elemental Damage taken per Endurance Charge" }, } }, - ["AreaOfEffectIfBlockedRecentlyUber1"] = { affix = "", "20% increased Area of Effect if you have Blocked Recently", statOrder = { 4730 }, level = 1, group = "AreaOfEffectIfBlockedRecently", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1887270958] = { "20% increased Area of Effect if you have Blocked Recently" }, } }, - ["ElementalDamagePer12IntelligenceUber1"] = { affix = "", "1% increased Elemental Damage per 12 Intelligence", statOrder = { 6307 }, level = 1, group = "ElementalDamagePer12Intelligence", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3384209943] = { "1% increased Elemental Damage per 12 Intelligence" }, } }, - ["AdditionalBlockChanceIfCritRecentlyUber1__"] = { affix = "", "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently", statOrder = { 4541 }, level = 1, group = "AdditionalBlockChanceIfCritRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [892558095] = { "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently" }, } }, - ["ElementalDamagePer12StrengthUber1"] = { affix = "", "1% increased Elemental Damage per 12 Strength", statOrder = { 6308 }, level = 1, group = "ElementalDamagePer12Strength", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3770261957] = { "1% increased Elemental Damage per 12 Strength" }, } }, - ["ElementalDamagePerPowerChargeUber1"] = { affix = "", "5% increased Elemental Damage per Power charge", statOrder = { 6309 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [1482070333] = { "5% increased Elemental Damage per Power charge" }, } }, - ["CullingStrikeIfCritRecentlyUber1"] = { affix = "", "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently", statOrder = { 7884 }, level = 1, group = "CullingStrikeIfCritRecently", weightKey = { "axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318464431] = { "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently" }, } }, - ["CritsHaveCullingStrikeUber1"] = { affix = "", "Critical Strikes with this Weapon have Culling Strike", statOrder = { 7883 }, level = 1, group = "CritsHaveCullingStrike", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [1240032295] = { "Critical Strikes with this Weapon have Culling Strike" }, } }, - ["GainEnduranceChargeOnLosingFortifyUber1"] = { affix = "", "Gain an Endurance Charge when you stop being Fortified", statOrder = { 6749 }, level = 1, group = "GainEnduranceChargeOnLosingFortify", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1533103082] = { "Gain an Endurance Charge when you stop being Fortified" }, } }, - ["LifeGainOnHitWhileLeechingUber1"] = { affix = "", "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching", statOrder = { 7986 }, level = 1, group = "LifeGainOnHitWhileLeeching", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [840182473] = { "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching" }, } }, - ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5407 }, 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 = { 5402 }, 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 = { 5415 }, 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 = { 6061 }, 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 = { 1860 }, 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 = { 1860 }, 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 = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, - ["IncreasedAilmentDurationUnique__4"] = { affix = "", "(5-25)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(5-25)% increased Duration of Ailments on Enemies" }, } }, - ["FasterAilmentDamageUnique__1"] = { affix = "", "Damaging Ailments deal damage (5-25)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (5-25)% faster" }, } }, - ["SharedSufferingUnique__1"] = { affix = "", "Shared Suffering", statOrder = { 10813 }, level = 1, group = "SharedSuffering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [956038713] = { "Shared Suffering" }, } }, - ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 815 }, 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 = { 6633 }, 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 = { 5842 }, 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 = { 10553 }, 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 = { 6170 }, 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 = { 10367 }, 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 = { 10367 }, 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 = { 9759 }, 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 = { 6464 }, 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 = { 6344 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, - ["ChanceToDodgeWhileOffhandIsEmpty"] = { affix = "", "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10180 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2076926581] = { "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty" }, } }, - ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5816 }, 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 = { 10843 }, 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 = { 10849 }, 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 = { 10853 }, 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 = { 10852 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, - ["ElementalDamageCanShockUnique__1__"] = { affix = "", "Your Elemental Damage can Shock", statOrder = { 2873 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "Your Elemental Damage can Shock" }, } }, - ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them", statOrder = { 2462 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1217730254] = { "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them" }, } }, - ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 789 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, - ["DamagePerAbyssJewelTypeUnique__1_"] = { affix = "", "10% increased Damage for each type of Abyss Jewel affecting you", statOrder = { 4167 }, level = 1, group = "DamagePerAbyssJewelType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [154272030] = { "10% increased Damage for each type of Abyss Jewel affecting you" }, } }, - ["AdditionalPhysicalDamageReductionWhileMovingUnique__1"] = { affix = "", "5% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "5% additional Physical Damage Reduction while moving" }, } }, - ["ReducedElementalDamageTakenWhileStationaryUnique__1_"] = { affix = "", "5% reduced Elemental Damage taken while stationary", statOrder = { 6321 }, level = 1, group = "ReducedElementalDamageTakenWhileStationary", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [983989924] = { "5% reduced Elemental Damage taken while stationary" }, } }, - ["IncreasedLifePerAbyssalJewelUnique__1"] = { affix = "", "1% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9165 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3185671537] = { "1% increased Maximum Life per Abyss Jewel affecting you" }, } }, - ["IncreasedManaPerAbyssalJewelUnique__1_"] = { affix = "", "1% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9173 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2135370196] = { "1% increased Maximum Mana per Abyss Jewel affecting you" }, } }, - ["IncreasedLifePerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9165 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3185671537] = { "3% increased Maximum Life per Abyss Jewel affecting you" }, } }, - ["IncreasedManaPerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9173 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2135370196] = { "3% increased Maximum Mana per Abyss Jewel affecting you" }, } }, - ["ElementalPenetrationPerAbyssalJewelUnique__1"] = { affix = "", "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you", statOrder = { 9596 }, level = 1, group = "ElementalPenetrationPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4250752669] = { "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you" }, } }, - ["IncreasedLifePerElderItemUnique__1"] = { affix = "", "+6 to Maximum Life per Elder Item Equipped", statOrder = { 4328 }, level = 1, group = "IncreasedLifePerElderItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3849523464] = { "+6 to Maximum Life per Elder Item Equipped" }, } }, - ["AilmentEffectPerElderItemUnique__1"] = { affix = "", "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped", statOrder = { 4332 }, level = 1, group = "AilmentEffectPerElderItem", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [4133552694] = { "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped" }, } }, - ["AilmentDamagePerElderItemUnique__1__"] = { affix = "", "15% increased Damage with Ailments per Elder Item Equipped", statOrder = { 4329 }, level = 1, group = "AilmentDamagePerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2418574586] = { "15% increased Damage with Ailments per Elder Item Equipped" }, } }, - ["AilmentDamageOverTimeMultiplierPerElderItemUnique__1"] = { affix = "", "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped", statOrder = { 4330 }, level = 1, group = "AilmentDamageOverTimeMultiplierPerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2212731469] = { "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped" }, } }, - ["RemoveAilmentOnFlaskUseIfAllItemsAreElderUnique__1_"] = { affix = "", "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items", statOrder = { 9912 }, level = 1, group = "RemoveAilmentOnFlaskUseIfAllItemsAreElder", weightKey = { }, weightVal = { }, modTags = { "flask", "ailment" }, tradeHashes = { [2917587077] = { "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items" }, } }, - ["StrengthDamageBonus3Per10Unique__1"] = { affix = "", "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength", statOrder = { 10257, 10257.1 }, level = 1, group = "StrengthDamageBonus3Per10", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1531241759] = { "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength" }, } }, - ["CannotBlockSpellsUnique__1"] = { affix = "", "Cannot Block Spell Damage", statOrder = { 5428 }, level = 1, group = "CannotBlockSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4076910393] = { "Cannot Block Spell Damage" }, } }, - ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "+(80-100) to Evasion Rating and Energy Shield", statOrder = { 7932 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1549868759] = { "+(80-100) to Evasion Rating and Energy Shield" }, } }, - ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_"] = { affix = "", "+(120-150) to Evasion Rating and Energy Shield", statOrder = { 7932 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1549868759] = { "+(120-150) to Evasion Rating and Energy Shield" }, } }, - ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7862 }, 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 = { 7935 }, 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", statOrder = { 7934 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit" }, } }, - ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7863 }, 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 = { 7866 }, 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 = { 7860 }, 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" }, } }, - ["ArcaneSurgeOnHitWithSpellAbyssJewelUnique__1"] = { affix = "", "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells", statOrder = { 8029 }, level = 1, group = "ArcaneSurgeOnHitWithSpellAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3153744598] = { "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells" }, } }, - ["MinionAccuracyWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating", statOrder = { 7998 }, level = 1, group = "MinionAccuracyWithMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2388362438] = { "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating" }, } }, - ["MinionUnholyMightWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells", statOrder = { 7999, 7999.1 }, level = 1, group = "MinionUnholyMightWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "caster", "minion" }, tradeHashes = { [4122732904] = { "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells" }, } }, - ["AbyssJewelEffectUnique__1"] = { affix = "", "(50-100)% increased Effect of Socketed Abyss Jewels", statOrder = { 221 }, level = 1, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1482572705] = { "(50-100)% increased Effect of Socketed Abyss Jewels" }, } }, - ["MovementVelocityWithMagicAbyssJewelUnique__1"] = { affix = "", "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel", statOrder = { 9443 }, level = 1, group = "MovementVelocityWithMagicAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874817029] = { "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel" }, } }, - ["ElementalAilmentDurationWithRareAbyssJewelUnique__1"] = { affix = "", "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel", statOrder = { 6291 }, level = 1, group = "ElementalAilmentDurationWithRareAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [287112619] = { "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel" }, } }, - ["ReservationEfficiencyWithUniqueAbyssJewelUnique__1"] = { affix = "", "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel", statOrder = { 9921 }, level = 1, group = "ReservationEfficiencyWithUniqueAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2811179011] = { "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel" }, } }, - ["IncreasedArmourWhileStationaryUnique__1"] = { affix = "", "80% increased Armour while stationary", statOrder = { 4774 }, level = 1, group = "IncreasedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3184053924] = { "80% increased Armour while stationary" }, } }, - ["NumberOfProjectilesIfHitRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've been Hit Recently", statOrder = { 9525 }, level = 1, group = "NumberOfProjectilesIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [988207959] = { "Skills fire 2 additional Projectiles if you've been Hit Recently" }, } }, - ["GainIronReflexesWhileStationaryUnique__1"] = { affix = "", "Iron Reflexes while stationary", statOrder = { 10841 }, level = 1, group = "GainIronReflexesWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [187998220] = { "Iron Reflexes while stationary" }, } }, - ["PlayerFarShotUnique__2"] = { affix = "", "Far Shot", statOrder = { 10828 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["PlayerFarShotUnique__3"] = { affix = "", "Far Shot", statOrder = { 10828 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["KeystonePointBlankUnique__2"] = { affix = "", "Point Blank", statOrder = { 10802 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently", statOrder = { 9526 }, level = 1, group = "NumberOfProjectilesIfUsedAMovementSkillRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2809802678] = { "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently" }, } }, - ["EvasionRatingWhileMovingUnique__1"] = { affix = "", "80% increased Evasion Rating while moving", statOrder = { 6499 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [734823525] = { "80% increased Evasion Rating while moving" }, } }, - ["AddedPhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies", statOrder = { 4877 }, level = 1, group = "AddedPhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2202639361] = { "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies" }, } }, - ["AddedFireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies", statOrder = { 4870 }, level = 1, group = "AddedFireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2453554491] = { "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies" }, } }, - ["GainAvatarOfFireEvery8SecondsUnique__1"] = { affix = "", "Every 8 seconds, gain Avatar of Fire for 4 seconds", statOrder = { 10839 }, level = 1, group = "GainAvatarOfFireEvery8Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3345955207] = { "Every 8 seconds, gain Avatar of Fire for 4 seconds" }, } }, - ["ChanceToBleedIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies", statOrder = { 4912 }, level = 1, group = "ChanceToBleedIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3148418088] = { "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies" }, } }, - ["IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1"] = { affix = "", "(160-200)% increased Critical Strike Chance while you have Avatar of Fire", statOrder = { 10847 }, level = 1, group = "IncreasedCriticalStrikeChanceWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2815652613] = { "(160-200)% increased Critical Strike Chance while you have Avatar of Fire" }, } }, - ["ArmourWithoutAvatarOfFireUnique__1"] = { affix = "", "+2000 Armour while you do not have Avatar of Fire", statOrder = { 10851 }, level = 1, group = "ArmourWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4078952782] = { "+2000 Armour while you do not have Avatar of Fire" }, } }, - ["ConvertPhysicalToFireWithAvatarOfFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire while you have Avatar of Fire", statOrder = { 10848 }, level = 1, group = "ConvertPhysicalToFireWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2052379536] = { "50% of Physical Damage Converted to Fire while you have Avatar of Fire" }, } }, - ["GainElementalOverloadEvery16SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Elemental Overload for 8 seconds", statOrder = { 10840 }, level = 1, group = "GainElementalOverloadEvery16Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [708913352] = { "Every 16 seconds you gain Elemental Overload for 8 seconds" }, } }, - ["GainResoluteTechniqueWithoutElementalOverloadUnique__1"] = { affix = "", "You have Resolute Technique while you do not have Elemental Overload", statOrder = { 10842 }, level = 1, group = "GainResoluteTechniqueWithoutElementalOverload", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2905429068] = { "You have Resolute Technique while you do not have Elemental Overload" }, } }, - ["ProjectilesGainPercentOfNonChaosAsChaosUnique__1"] = { affix = "", "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain", statOrder = { 9740 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1924041432] = { "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain" }, } }, - ["ProjectilesGainPercentOfNonChaosAsChaosUnique__2"] = { affix = "", "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9739 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos2", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1698276268] = { "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6145 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, - ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 268 }, 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 15 Elemental Penetration", statOrder = { 268 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 15 Elemental Penetration" }, } }, - ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4383 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, - ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of Life when you lose a Spirit Charge", statOrder = { 4385 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of Life when you lose a Spirit Charge" }, } }, - ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of Energy Shield when you lose a Spirit Charge", statOrder = { 4386 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of 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 = { 9625 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [4288824781] = { "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 = { 816 }, 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 = { 4382 }, 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 = { 4384 }, 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 = { 4380 }, 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 = { 4380 }, 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 = { 10709 }, 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 = { 795 }, 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 = { 796 }, 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 = { 9249 }, 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 = { 5739 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6316 }, 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 = { 9654 }, 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 = { 4273 }, 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 = { 3372 }, 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 = { 1802 }, 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 = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, - ["AttackDamageLeechPerFrenzyChargeUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life per Frenzy Charge", statOrder = { 7366 }, level = 1, group = "AttackDamageLeechPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3243062554] = { "0.5% of Attack Damage Leeched as Life per Frenzy Charge" }, } }, - ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 9246 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, - ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Strike Chance per Power Charge", statOrder = { 4549 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Strike Chance per Power Charge" }, } }, - ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "+(6-10)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "+(6-10)% to Critical Strike Multiplier per Power Charge" }, } }, - ["ChanceToBlockSpellsPerPowerChargeUnique__1"] = { affix = "", "+2% Chance to Block Spell Damage per Power Charge", statOrder = { 4588 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [816458107] = { "+2% Chance to Block Spell Damage per Power Charge" }, } }, - ["ChanceToBlockSpellsPerPowerChargeUnique__2_"] = { affix = "", "+5% Chance to Block Spell Damage per Power Charge", statOrder = { 4588 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [816458107] = { "+5% Chance to Block Spell Damage per Power Charge" }, } }, - ["DamageTakenPerEnduranceChargeWhenHitUnique__1_"] = { affix = "", "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently", statOrder = { 10707 }, level = 1, group = "DamageTakenPerEnduranceChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1920234902] = { "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently" }, } }, - ["DamageTakenPerFrenzyChargeMovingUnique__1"] = { affix = "", "200 Cold Damage taken per second per Frenzy Charge while moving", statOrder = { 10704 }, level = 1, group = "DamageTakenPerFrenzyChargeMoving", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1528823952] = { "200 Cold Damage taken per second per Frenzy Charge while moving" }, } }, - ["DamageTakenPerPowerChargeOnCritUnique__1"] = { affix = "", "200 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently", statOrder = { 10711, 10711.1 }, level = 1, group = "DamageTakenPerPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1964333391] = { "200 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently" }, } }, - ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9812 }, 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 = { 819 }, 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 = { 4356, 6912 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, - ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item", statOrder = { 4327 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item" }, } }, - ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item", statOrder = { 4324 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item" }, } }, - ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item", statOrder = { 4325 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item" }, } }, - ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item", statOrder = { 4326 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2312817839] = { "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item" }, } }, - ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of Life when you use a Mana Flask", statOrder = { 4343 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1926816773] = { "Recover (8-10)% of Life when you use a Mana Flask" }, } }, - ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Mana Recovery from Flasks is also Recovered as Life", statOrder = { 4344 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Mana Recovery from Flasks is also Recovered as Life" }, } }, - ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", statOrder = { 4346 }, level = 1, group = "SpellDamagePer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%" }, } }, - ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4345 }, level = 1, group = "ManaCostPer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["SiphoningChargeOnSkillUseUnique__1"] = { affix = "", "25% chance to gain a Siphoning Charge when you use a Skill", statOrder = { 4336 }, level = 1, group = "SiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2922737717] = { "25% chance to gain a Siphoning Charge when you use a Skill" }, } }, - ["MaximumSiphoningChargePerElderOrShaperItemUnique__1"] = { affix = "", "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped", statOrder = { 4335 }, level = 1, group = "MaximumSiphoningChargePerElderOrShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1872128565] = { "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped" }, } }, - ["PhysicalDamageToAttacksPerSiphoningChargeUnique__1"] = { affix = "", "Adds (12-14) to (15-16) Physical Damage to Attacks and Spells per Siphoning Charge", statOrder = { 4337 }, level = 1, group = "PhysicalDamageToAttacksPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "attack", "caster" }, tradeHashes = { [3368671817] = { "Adds (12-14) to (15-16) Physical Damage to Attacks and Spells per Siphoning Charge" }, } }, - ["LifeLeechPerSiphoningChargeUnique__1"] = { affix = "", "0.2% of Damage Leeched as Life per Siphoning Charge", statOrder = { 4340 }, level = 1, group = "LifeLeechPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1587137379] = { "0.2% of Damage Leeched as Life per Siphoning Charge" }, } }, - ["NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1"] = { affix = "", "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge", statOrder = { 4338 }, level = 1, group = "NonChaosDamageAddedAsChaosPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3296019532] = { "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge" }, } }, - ["AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1"] = { affix = "", "1% additional Physical Damage Reduction from Hits per Siphoning Charge", statOrder = { 4339 }, level = 1, group = "AdditionalPhysicalDamageReductionPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3837366401] = { "1% additional Physical Damage Reduction from Hits per Siphoning Charge" }, } }, - ["DamageTakenPerSiphoningChargeOnSkillUseUnique__1"] = { affix = "", "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently", statOrder = { 4341 }, level = 1, group = "DamageTakenPerSiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2440172920] = { "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently" }, } }, - ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 823 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, tradeHashes = { [1350938937] = { "20% chance to Trigger Level 20 Tentacle Whip on Kill" }, } }, - ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 822 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3141831683] = { "Trigger Level 20 Glimpse of Eternity when Hit" }, } }, - ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 824 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2143990571] = { "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill" }, } }, - ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 677 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1904419785] = { "Grants Level 20 Petrification Statue Skill" }, } }, - ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 690 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 720 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 710 }, 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 = { 697 }, 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 = { 1593 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, - ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, 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 = { 6056 }, 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 = { 7406 }, 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 = { 6299 }, 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 = { 5665 }, 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 = { 8906 }, 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 = { 9804 }, 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 = { 4375 }, 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 = { 4374 }, 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 = { 2478 }, 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 = { 5766 }, 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 = { 5766 }, 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 = { 10006 }, 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 = { 10006 }, 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 = { 457 }, 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 = { 455 }, 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 = { 9235 }, 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 = { 9247 }, 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 = { 4933 }, 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 = { 4789 }, 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 = { 4788 }, 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 = { 7408 }, 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 = { 8207 }, 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 = { 4932 }, 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 = { 797 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, - ["CatsStealthTriggeredIntimidatingCry"] = { affix = "", "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth", statOrder = { 812 }, level = 1, group = "CatsStealthTriggeredIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3892608176] = { "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth" }, } }, - ["MaximumCrabBarriersUnique__1"] = { affix = "", "+5 to Maximum number of Crab Barriers", statOrder = { 4349 }, level = 81, group = "MaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894704558] = { "+5 to Maximum number of Crab Barriers" }, } }, - ["AdditionalBlockChance5CrabBarriersUnique__1"] = { affix = "", "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers", statOrder = { 4352 }, level = 1, group = "AdditionalBlockChance5CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1354504703] = { "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers" }, } }, - ["AdditionalBlockChance10CrabBarriersUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers", statOrder = { 4353 }, level = 1, group = "AdditionalBlockChance10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [653107703] = { "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers" }, } }, - ["CrabBarriersLostWhenHitUnique__1_"] = { affix = "", "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit", statOrder = { 4351 }, level = 1, group = "CrabBarriersLostWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [455217103] = { "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit" }, } }, - ["DamagePerCrabBarrierUnique__1"] = { affix = "", "3% increased Damage per Crab Barrier", statOrder = { 4350 }, level = 1, group = "DamagePerCrabBarrier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019038967] = { "3% increased Damage per Crab Barrier" }, } }, - ["ChanceToGainMaximumCrabBarriersUnique__1_"] = { affix = "", "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers", statOrder = { 4354, 4354.1 }, level = 1, group = "ChanceToGainMaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1829869055] = { "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers" }, } }, - ["CannotBeStunned10CrabBarriersUnique__1"] = { affix = "", "Cannot be Stunned if you have at least 10 Crab Barriers", statOrder = { 4347 }, level = 1, group = "CannotBeStunned10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [877233648] = { "Cannot be Stunned if you have at least 10 Crab Barriers" }, } }, - ["CannotLoseCrabBarriersIfLostRecentlyUnique__1"] = { affix = "", "Cannot lose Crab Barriers if you have lost Crab Barriers Recently", statOrder = { 4348 }, level = 1, group = "CannotLoseCrabBarriersIfLostRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [241251790] = { "Cannot lose Crab Barriers if you have lost Crab Barriers Recently" }, } }, - ["GainPhasingWhileCatsStealthUnique__1"] = { affix = "", "You have Phasing while you have Cat's Stealth", statOrder = { 6800 }, level = 1, group = "GainPhasingWhileCatsStealth", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1834455446] = { "You have Phasing while you have Cat's Stealth" }, } }, - ["GainOnslaughtWhileCatsAgilityUnique__1_"] = { affix = "", "You have Onslaught while you have Cat's Agility", statOrder = { 6792 }, level = 1, group = "GainOnslaughtWhileCatsAgility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4274075490] = { "You have Onslaught while you have Cat's Agility" }, } }, - ["CatsStealthDurationUnique__1_"] = { affix = "", "+2 seconds to Cat's Stealth Duration", statOrder = { 5477 }, level = 1, group = "CatsStealthDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [387596329] = { "+2 seconds to Cat's Stealth Duration" }, } }, - ["CatsAgilityDurationUnique__1"] = { affix = "", "+2 seconds to Cat's Agility Duration", statOrder = { 4790 }, level = 1, group = "CatsAgilityDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686519528] = { "+2 seconds to Cat's Agility Duration" }, } }, - ["CatAspectReservesNoManaUnique__1___"] = { affix = "", "Aspect of the Cat has no Reservation", statOrder = { 5476 }, level = 1, group = "CatAspectReservesNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3850409117] = { "Aspect of the Cat has no Reservation" }, } }, - ["GainMaxFrenzyAndPowerOnCatsStealthUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth", statOrder = { 6773 }, level = 1, group = "GainMaxFrenzyAndPowerOnCatsStealth", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, tradeHashes = { [2446580062] = { "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth" }, } }, - ["GainMaxFrenzyAndEnduranceOnCatsAgilityUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility", statOrder = { 6772 }, level = 1, group = "GainMaxFrenzyAndEnduranceOnCatsAgility", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, tradeHashes = { [523966073] = { "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility" }, } }, - ["AttacksBleedOnHitWithCatsStealthUnique__1_"] = { affix = "", "Attacks always inflict Bleeding while you have Cat's Stealth", statOrder = { 4910 }, level = 1, group = "AttacksBleedOnHitWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2059771038] = { "Attacks always inflict Bleeding while you have Cat's Stealth" }, } }, - ["GainCrimsonDanceWithCatsStealthUnique__1"] = { affix = "", "You have Crimson Dance while you have Cat's Stealth", statOrder = { 10834 }, level = 1, group = "GainCrimsonDanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3492797685] = { "You have Crimson Dance while you have Cat's Stealth" }, } }, - ["MovementSpeedWithCatsStealthUnique__1"] = { affix = "", "20% increased Movement Speed while you have Cat's Stealth", statOrder = { 9438 }, level = 1, group = "MovementSpeedWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [673704994] = { "20% increased Movement Speed while you have Cat's Stealth" }, } }, - ["AdditionalCriticalStrikeChanceWithCatAspectUnique__1"] = { affix = "", "+1% to Critical Strike Chance while affected by Aspect of the Cat", statOrder = { 4360 }, level = 1, group = "AdditionalCriticalStrikeChanceWithCatAspect", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3992636701] = { "+1% to Critical Strike Chance while affected by Aspect of the Cat" }, } }, - ["CritsBlindChanceWithCatsStealthUnique__1"] = { affix = "", "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth", statOrder = { 4361 }, level = 1, group = "CritsBlindChanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [843854434] = { "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth" }, } }, - ["DamageAgainstBlindedEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 7150 }, level = 1, group = "DamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3565956680] = { "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, - ["ChanceToAvoidBleedingUnique__1"] = { affix = "", "(40-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(40-50)% chance to Avoid Bleeding" }, } }, - ["ChanceToAvoidBleedingUnique__2_"] = { affix = "", "100% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "100% chance to Avoid Bleeding" }, } }, - ["DamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 7149 }, level = 1, group = "DamageAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1790172543] = { "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies" }, } }, - ["AccuracyAgainstBleedingEnemiesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "AccuracyAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(400-500) to Accuracy Rating" }, } }, - ["CommandmentOfInfernoOnCritUnique__1"] = { affix = "", "Trigger Commandment of Inferno on Critical Strike", statOrder = { 786 }, level = 1, group = "CommandmentOfInfernoOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3251948367] = { "Trigger Commandment of Inferno on Critical Strike" }, } }, - ["MaximumResistancesOverrideUnique__1"] = { affix = "", "Your Maximum Resistances are (76-78)%", statOrder = { 9563 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (76-78)%" }, } }, - ["MaximumResistancesOverrideUnique__2"] = { affix = "", "Your Maximum Resistances are (70-72)%", statOrder = { 9563 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (70-72)%" }, } }, - ["BurningDamagePerEnemyShockedRecentlyUnique__1_"] = { affix = "", "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%", statOrder = { 5382 }, level = 1, group = "BurningDamagePerEnemyShockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3285748758] = { "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%" }, } }, - ["AddedLightningDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies", statOrder = { 6886 }, level = 1, group = "AddedLightningDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2870108850] = { "Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies" }, } }, - ["LightningDamageCanIgniteUnique__1"] = { affix = "", "Your Lightning Damage can Ignite", statOrder = { 7444 }, level = 100, group = "LightningDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Your Lightning Damage can Ignite" }, } }, - ["ProjectileAttackDamageAt200DexterityUnique__1"] = { affix = "", "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity", statOrder = { 4363 }, level = 60, group = "ProjectileAttackDamageAt200Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1822142649] = { "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity" }, } }, - ["CriticalStrikeChanceAt200IntelligenceUnique__1"] = { affix = "", "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence", statOrder = { 4364 }, level = 60, group = "CriticalStrikeChanceAt200Intelligence", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [578121324] = { "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence" }, } }, - ["AddedFireDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved", statOrder = { 9253 }, level = 1, group = "AddedFireDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [833719670] = { "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved" }, } }, - ["AddedColdDamageWhileNoLifeReservedUnique__1__"] = { affix = "", "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved", statOrder = { 9252 }, level = 1, group = "AddedColdDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [897996059] = { "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved" }, } }, - ["AddedLightningDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved", statOrder = { 9254 }, level = 1, group = "AddedLightningDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [985999215] = { "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved" }, } }, - ["OnslaughtOnLowLifeUnique__1"] = { affix = "", "You have Onslaught while on Low Life", statOrder = { 6791 }, level = 77, group = "OnslaughtOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1871938116] = { "You have Onslaught while on Low Life" }, } }, - ["IgnoreEnemyFireResistWhileIgnitedUnique__1"] = { affix = "", "Hits ignore Enemy Monster Fire Resistance while you are Ignited", statOrder = { 7168 }, level = 75, group = "IgnoreEnemyFireResistWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4040152475] = { "Hits ignore Enemy Monster Fire Resistance while you are Ignited" }, } }, - ["CrimsonDanceIfCritRecentlyUnique__1"] = { affix = "", "You have Crimson Dance if you have dealt a Critical Strike Recently", statOrder = { 10833 }, level = 74, group = "CrimsonDanceIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1756017808] = { "You have Crimson Dance if you have dealt a Critical Strike Recently" }, } }, - ["AnimateGuardianWeaponOnGuardianKillUnique__1_"] = { affix = "", "Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy", statOrder = { 793 }, level = 1, group = "AnimateGuardianWeaponOnGuardianKillUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3682009780] = { "Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy" }, [1361762803] = { "" }, } }, - ["AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1"] = { affix = "", "10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy", statOrder = { 794 }, level = 1, group = "AnimateGuardianWeaponOnAnimatedWeaponKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [919960234] = { "10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy" }, [1361762803] = { "" }, } }, - ["CannnotHaveNonAnimatedMinionsUnique__1"] = { affix = "", "You cannot have Non-Animated, Non-Manifested Minions", statOrder = { 10658 }, level = 1, group = "CannnotHaveNonAnimatedMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1220105149] = { "You cannot have Non-Animated, Non-Manifested Minions" }, } }, - ["AnimatedGuardianDamagePerAnimatedWeaponUnique__1__"] = { affix = "", "Animated Guardian deals 5% increased Damage per Animated Weapon", statOrder = { 4689 }, level = 1, group = "AnimatedGuardianDamagePerAnimatedWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [759294825] = { "Animated Guardian deals 5% increased Damage per Animated Weapon" }, } }, - ["AnimatedMinionsHaveMeleeSplashUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets", statOrder = { 4692, 4692.1 }, level = 1, group = "AnimatedMinionsHaveMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [91242932] = { "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets" }, } }, - ["IncreasedAnimatedMinionSplashDamageUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage", statOrder = { 6907 }, level = 1, group = "IncreasedAnimatedMinionSplashDamage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [478698670] = { "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage" }, } }, - ["FireDamageToAttacksPerStrengthUnique__1"] = { affix = "", "Adds 1 to 2 Fire Damage to Attacks per 10 Strength", statOrder = { 9240 }, level = 1, group = "FireDamageToAttacksPerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [68673913] = { "Adds 1 to 2 Fire Damage to Attacks per 10 Strength" }, } }, - ["ColdDamageToAttacksPerDexterityUnique__1"] = { affix = "", "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9232 }, level = 1, group = "ColdDamageToAttacksPerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [769783486] = { "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity" }, } }, - ["LightningDamageToAttacksPerIntelligenceUnique__1"] = { affix = "", "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9245 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3168149399] = { "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence" }, } }, - ["AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4897 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently" }, } }, - ["CastSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5468 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1174076861] = { "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently" }, } }, - ["EffectOfChillIsReversedUnique__1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5768 }, level = 30, group = "EffectOfChillIsReversed", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, - ["TriggerSocketedSpellOnBowAttackUnique__1_"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 544 }, level = 57, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, - ["TriggerSocketedSpellOnBowAttackUnique__2"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 544 }, level = 1, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, - ["CountAsLowLifeWhenNotOnFullLifeUnique__1"] = { affix = "", "You count as on Low Life while not on Full Life", statOrder = { 10662 }, level = 75, group = "CountAsLowLifeWhenNotOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2475362240] = { "You count as on Low Life while not on Full Life" }, } }, - ["IncreasedSpiderWebCountUnique__1"] = { affix = "", "Aspect of the Spider can inflict Spider's Web on Enemies an additional time", statOrder = { 4791 }, level = 1, group = "IncreasedSpiderWebCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1509532587] = { "Aspect of the Spider can inflict Spider's Web on Enemies an additional time" }, } }, - ["AspectOfSpiderDurationUnique__1"] = { affix = "", "(40-50)% increased Aspect of the Spider Debuff Duration", statOrder = { 10202 }, level = 1, group = "AspectOfSpiderDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332854027] = { "(40-50)% increased Aspect of the Spider Debuff Duration" }, } }, - ["ESOnHitWebbedEnemiesUnique__1"] = { affix = "", "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web", statOrder = { 6434 }, level = 1, group = "ESOnHitWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [549215295] = { "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web" }, } }, - ["AspectOfSpiderWebIntervalUnique__1"] = { affix = "", "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead", statOrder = { 10205 }, level = 1, group = "AspectOfSpiderWebInterval", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3832130495] = { "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead" }, } }, - ["PowerChargeOnHitWebbedEnemyUnique__1"] = { affix = "", "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web", statOrder = { 5696 }, level = 1, group = "PowerChargeOnHitWebbedEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [273206351] = { "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web" }, } }, - ["PoisonChancePerPowerChargeUnique__1"] = { affix = "", "(6-10)% chance to Poison per Power Charge", statOrder = { 5718 }, level = 1, group = "PoisonChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2992087211] = { "(6-10)% chance to Poison per Power Charge" }, } }, - ["PoisonDamagePerPowerChargeUnique__1"] = { affix = "", "(15-20)% increased Damage with Poison per Power Charge", statOrder = { 9681 }, level = 1, group = "PoisonDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [4230767876] = { "(15-20)% increased Damage with Poison per Power Charge" }, } }, - ["ChaosDamagePerWebOnEnemyUnique__1"] = { affix = "", "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy", statOrder = { 9227 }, level = 1, group = "ChaosDamagePerWebOnEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [982177653] = { "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy" }, } }, - ["DamageAgainstEnemiesWith3WebsUnique__1_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs", statOrder = { 7154 }, level = 1, group = "DamageAgainstEnemiesWith3Webs", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [103928310] = { "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs" }, } }, - ["AreaOfEffectAspectOfSpiderUnique__1"] = { affix = "", "(50-70)% increased Aspect of the Spider Area of Effect", statOrder = { 10204 }, level = 1, group = "AreaOfEffectAspectOfSpider", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686780108] = { "(50-70)% increased Aspect of the Spider Area of Effect" }, } }, - ["DamageDealtByWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs deal 10% reduced Damage", statOrder = { 6041 }, level = 1, group = "DamageDealtByWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3231424461] = { "Enemies affected by your Spider's Webs deal 10% reduced Damage" }, } }, - ["ResistancesOfWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs have -10% to All Resistances", statOrder = { 9924 }, level = 1, group = "ResistancesOfWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [785655723] = { "Enemies affected by your Spider's Webs have -10% to All Resistances" }, } }, - ["NoArmourOrEnergyShieldUnique__1_"] = { affix = "", "You have no Armour or Maximum Energy Shield", statOrder = { 10664 }, level = 1, group = "NoArmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3591359751] = { "You have no Armour or Maximum Energy Shield" }, } }, - ["PoachersMarkCurseOnHitHexproofUnique__1"] = { affix = "", "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 760 }, level = 61, group = "PoachersMarkCurseOnHitHexproof", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [364728407] = { "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, - ["CullingStrikePoachersMarkUnique__1"] = { affix = "", "Culling Strike against Enemies Cursed with Poacher's Mark", statOrder = { 5988 }, level = 1, group = "CullingStrikePoachersMark", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2114080270] = { "Culling Strike against Enemies Cursed with Poacher's Mark" }, } }, - ["DamageOnMovementSkillUnique__1"] = { affix = "", "Take (100-200) Physical Damage when you use a Movement Skill", statOrder = { 9977 }, level = 1, group = "DamageOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2590715472] = { "Take (100-200) Physical Damage when you use a Movement Skill" }, } }, - ["RagingSpiritDamageUnique__1_"] = { affix = "", "Summoned Raging Spirits deal (175-250)% increased Damage", statOrder = { 3651 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal (175-250)% increased Damage" }, } }, - ["RagingSpiritDamageUnique__2"] = { affix = "", "Summoned Raging Spirits deal (25-40)% increased Damage", statOrder = { 3651 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal (25-40)% increased Damage" }, } }, - ["RagingSpiritAlwaysIgniteUnique__1"] = { affix = "", "Summoned Raging Spirits' Hits always Ignite", statOrder = { 9802 }, level = 1, group = "RagingSpiritAlwaysIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "minion", "ailment" }, tradeHashes = { [3954637034] = { "Summoned Raging Spirits' Hits always Ignite" }, } }, - ["ReducedRagingSpiritsAllowedUnique__1"] = { affix = "", "75% reduced Maximum number of Summoned Raging Spirits", statOrder = { 9607 }, level = 1, group = "ReducedRagingSpiritsAllowed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1186934478] = { "75% reduced Maximum number of Summoned Raging Spirits" }, } }, - ["BlindingAuraSkillUnique__1"] = { affix = "", "Triggers Level 20 Blinding Aura when Equipped", statOrder = { 678 }, level = 79, group = "BlindingAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [125312907] = { "Triggers Level 20 Blinding Aura when Equipped" }, } }, - ["AddedFireDamageAgainstBlindedEnemiesUnique__1_"] = { affix = "", "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies", statOrder = { 9241 }, level = 1, group = "AddedFireDamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3977907993] = { "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies" }, } }, - ["LightRadiusAppliesToAccuracyUnique__1_"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7430 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, - ["FirePenetrationAgainstBlindedEnemiesUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance against Blinded Enemies", statOrder = { 9878 }, level = 1, group = "FirePenetrationAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1748657990] = { "Damage Penetrates 10% Fire Resistance against Blinded Enemies" }, } }, - ["HitsCannotBeEvadedAgainstBlindedEnemiesUnique__1"] = { affix = "", "Your Hits can't be Evaded by Blinded Enemies", statOrder = { 7160 }, level = 72, group = "HitsCannotBeEvadedAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [90597215] = { "Your Hits can't be Evaded by Blinded Enemies" }, } }, - ["ChillEffectUnique__1"] = { affix = "", "(15-20)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(15-20)% increased Effect of Cold Ailments" }, } }, - ["OnHitWhileCursedTriggeredCurseNovaUnique__1"] = { affix = "", "Trigger Level 20 Elemental Warding on Melee Hit while Cursed", statOrder = { 807 }, level = 77, group = "OnHitWhileCursedTriggeredCurseNova", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [810166817] = { "Trigger Level 20 Elemental Warding on Melee Hit while Cursed" }, } }, - ["ChanceToBePoisonedUnique__1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3370 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, - ["PoisonExpiresSlowerUnique__1"] = { affix = "", "Poisons on you expire 50% slower", statOrder = { 9693 }, level = 1, group = "PoisonExpiresSlower", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2443132097] = { "Poisons on you expire 50% slower" }, } }, - ["MaximumResistancesWhilePoisonedUnique__1"] = { affix = "", "+3% to all maximum Resistances while Poisoned", statOrder = { 4564 }, level = 1, group = "MaximumResistancesWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [1030987123] = { "+3% to all maximum Resistances while Poisoned" }, } }, - ["EnergyShieldRegenPerPoisonUnique__1"] = { affix = "", "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenPerPoison", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [948687156] = { "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second" }, } }, - ["BleedOnSelfDealChaosDamageUnique__1"] = { affix = "", "You take Chaos Damage instead of Physical Damage from Bleeding", statOrder = { 2450 }, level = 1, group = "BleedOnSelfDealChaosDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1623397857] = { "You take Chaos Damage instead of Physical Damage from Bleeding" }, } }, - ["MaximumLifePercentPerCorruptedItemUnique__1_"] = { affix = "", "6% increased Maximum Life for each Corrupted Item Equipped", statOrder = { 3097 }, level = 1, group = "MaximumLifePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4169430079] = { "6% increased Maximum Life for each Corrupted Item Equipped" }, } }, - ["MaximumEnergyShieldPercentPerCorruptedItemUnique__1_"] = { affix = "", "8% increased Maximum Energy Shield for each Corrupted Item Equipped", statOrder = { 3098 }, level = 1, group = "MaximumEnergyShieldPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3916980068] = { "8% increased Maximum Energy Shield for each Corrupted Item Equipped" }, } }, - ["AllResistancesPerCorruptedItemUnique__1"] = { affix = "", "-(6-4)% to all Resistances for each Corrupted Item Equipped", statOrder = { 3103 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3100523498] = { "-(6-4)% to all Resistances for each Corrupted Item Equipped" }, } }, - ["NoManaRecoveryDuringFlaskEffectUnique__1_"] = { affix = "", "Cannot gain Mana during effect", statOrder = { 994 }, level = 1, group = "NoManaRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2198697797] = { "Cannot gain Mana during effect" }, } }, - ["FlaskGainVaalSoulPerSecondUnique__1_"] = { affix = "", "Gain 2 Vaal Souls Per Second during effect", statOrder = { 1000 }, level = 1, group = "FlaskGainVaalSoulPerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [2285141414] = { "Gain 2 Vaal Souls Per Second during effect" }, } }, - ["FlaskGainVaalSoulsOnUseUnique__1"] = { affix = "", "Gain (10-12) Vaal Souls on use", statOrder = { 890 }, level = 1, group = "FlaskGainVaalSoulsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [1733474087] = { "Gain (10-12) Vaal Souls on use" }, } }, - ["FlaskLoseChargesOnNewAreaUnique__1"] = { affix = "", "Loses all Charges when you enter a new area", statOrder = { 847 }, level = 1, group = "FlaskLoseChargesOnNewArea", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [776020689] = { "Loses all Charges when you enter a new area" }, } }, - ["FlaskVaalSkillDamageUnique__1"] = { affix = "", "(60-80)% increased Damage with Vaal Skills during effect", statOrder = { 1034 }, level = 1, group = "FlaskVaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [4067144129] = { "(60-80)% increased Damage with Vaal Skills during effect" }, } }, - ["FlaskVaalSkillDamageUnique__2"] = { affix = "", "Vaal Skills deal (30-40)% more Damage during Effect", statOrder = { 1035 }, level = 1, group = "FlaskVaalSkillMoreDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [4147528862] = { "Vaal Skills deal (30-40)% more Damage during Effect" }, } }, - ["FlaskVaalSkillCriticalStrikeChanceUnique__1"] = { affix = "", "(60-80)% increased Critical Strike Chance with Vaal Skills during effect", statOrder = { 1033 }, level = 1, group = "FlaskVaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [778036553] = { "(60-80)% increased Critical Strike Chance with Vaal Skills during effect" }, } }, - ["FlaskVaalSkillCostUnique__1"] = { affix = "", "Non-Aura Vaal Skills require 25% reduced Souls Per Use during Effect", statOrder = { 1037 }, level = 1, group = "FlaskVaalSkillCost", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [1274125114] = { "Non-Aura Vaal Skills require 25% reduced Souls Per Use during Effect" }, } }, - ["FlaskVaalSoulPreventionDurationUnique__1_"] = { affix = "", "Vaal Skills used during effect have 10% reduced Soul Gain Prevention Duration", statOrder = { 1038 }, level = 1, group = "FlaskVaalSoulPreventionDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [902947445] = { "Vaal Skills used during effect have 10% reduced Soul Gain Prevention Duration" }, } }, - ["FlaskVaalNoSoulPreventionUnique__1"] = { affix = "", "Vaal Skills used during effect do not apply Soul Gain Prevention", statOrder = { 1036 }, level = 1, group = "FlaskVaalNoSoulPrevention", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [2344590267] = { "Vaal Skills used during effect do not apply Soul Gain Prevention" }, } }, - ["CannotGainFlaskChargesDuringEffectUnique__1"] = { affix = "", "Gains no Charges during Effect of any Soul Ripper Flask", statOrder = { 1067 }, level = 1, group = "CannotGainFlaskChargesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2748763342] = { "Gains no Charges during Effect of any Soul Ripper Flask" }, } }, - ["FlaskVaalConsumeMaximumChargesUnique__1"] = { affix = "", "Consumes Maximum Charges to use", statOrder = { 881 }, level = 1, group = "FlaskVaalConsumeMaximumCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3426614534] = { "Consumes Maximum Charges to use" }, } }, - ["FlaskVaalGainSoulsAsChargesUnique__1_"] = { affix = "", "Gain Vaal Souls equal to Charges Consumed when used", statOrder = { 885 }, level = 1, group = "FlaskVaalGainSoulsAsCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [1655460656] = { "Gain Vaal Souls equal to Charges Consumed when used" }, } }, - ["UniqueSelfCurseVulnerabilityLevel10"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3122 }, level = 28, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [694123963] = { "You are Cursed with Vulnerability" }, } }, - ["UniqueSelfCurseVulnerabilityLevel20"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3122 }, level = 66, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [694123963] = { "You are Cursed with Vulnerability" }, } }, - ["EnemiesExtraDamageRollsWhileAffectedByVulnerabilityUnique__1_"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability", statOrder = { 3117 }, level = 1, group = "EnemiesExtraDamageRollsWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2758554648] = { "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability" }, } }, - ["CountAsLowLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Low Life while you are Cursed with Vulnerability", statOrder = { 3120 }, level = 1, group = "CountAsLowLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2304300603] = { "You count as on Low Life while you are Cursed with Vulnerability" }, } }, - ["TrapAreaOfEffectUnique__1"] = { affix = "", "Skills used by Traps have (10-20)% increased Area of Effect", statOrder = { 3479 }, level = 1, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (10-20)% increased Area of Effect" }, } }, - ["CastSpeedAppliesToTrapSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed", statOrder = { 4594 }, level = 1, group = "CastSpeedAppliesToTrapSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3520223758] = { "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed" }, } }, - ["RandomChargeOnTrapTriggerUnique__1"] = { affix = "", "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy", statOrder = { 9605, 9605.1 }, level = 1, group = "RandomChargeOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [710805027] = { "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy" }, } }, - ["TrapSkillsHaveBloodMagicUnique__1"] = { affix = "", "Skills which throw Traps Cost Life instead of Mana", statOrder = { 10844 }, level = 1, group = "TrapSkillsHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2420786978] = { "Skills which throw Traps Cost Life instead of Mana" }, } }, - ["CannotGainEnergyShieldUnique__1"] = { affix = "", "Cannot gain Energy Shield", statOrder = { 3118 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [206243615] = { "Cannot gain Energy Shield" }, } }, - ["LifeRegenerationWith500EnergyShieldUnique__1"] = { affix = "", "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield", statOrder = { 4371 }, level = 1, group = "LifeRegenerationWith500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1103902353] = { "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield" }, } }, - ["LifeRegenerationWith1000EnergyShieldUnique__1"] = { affix = "", "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield", statOrder = { 4372 }, level = 1, group = "LifeRegenerationWith1000EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1704843611] = { "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield" }, } }, - ["LifeRegenerationWith1500EnergyShieldUnique__1"] = { affix = "", "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield", statOrder = { 4373 }, level = 1, group = "LifeRegenerationWith1500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3227159962] = { "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield" }, } }, - ["IncreasedLifePerIntelligenceUnique__1"] = { affix = "", "+1 to Maximum Life per 2 Intelligence", statOrder = { 2023 }, level = 1, group = "IncreasedLifePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4284915962] = { "+1 to Maximum Life per 2 Intelligence" }, } }, - ["NoMaximumLifePerStrengthUnique__1"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2018 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2290031712] = { "Strength provides no bonus to Maximum Life" }, } }, - ["NoMaximumLifePerStrengthUnique__2"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2018 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2290031712] = { "Strength provides no bonus to Maximum Life" }, } }, - ["NoMaximumManaPerIntelligenceUnique__1"] = { affix = "", "Intelligence provides no inherent bonus to Maximum Mana", statOrder = { 2019 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2546599258] = { "Intelligence provides no inherent bonus to Maximum Mana" }, } }, - ["LifeRegenerationPer500EnergyShieldUnique__1"] = { affix = "", "Regenerate 1% of Life per second per 500 Maximum Energy Shield", statOrder = { 7419 }, level = 1, group = "LifeRegenerationPer500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1960833438] = { "Regenerate 1% of Life per second per 500 Maximum Energy Shield" }, } }, - ["SkeletonsTakeFireDamagrPerSecondUnique__1"] = { affix = "", "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 10313 }, level = 1, group = "SkeletonsTakeFireDamagrPerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2912438397] = { "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage" }, } }, - ["SkeletonsCoverEnemiesInAshUnique__1"] = { affix = "", "Summoned Skeletons Cover Enemies in Ash on Hit", statOrder = { 10312 }, level = 1, group = "SkeletonsCoverEnemiesInAsh", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3074608753] = { "Summoned Skeletons Cover Enemies in Ash on Hit" }, } }, - ["SkeletonsHaveAvatarOfFireUnique__1_"] = { affix = "", "Summoned Skeletons have Avatar of Fire", statOrder = { 10831 }, level = 1, group = "SkeletonsHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [1958210928] = { "Summoned Skeletons have Avatar of Fire" }, } }, - ["AreaOfEffectPerEnemyKilledRecentlyUnique__1"] = { affix = "", "1% increased Area of Effect per Enemy killed recently, up to 50%", statOrder = { 4734 }, level = 1, group = "AreaOfEffectPerEnemyKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4070157876] = { "1% increased Area of Effect per Enemy killed recently, up to 50%" }, } }, - ["ZealotsOathIfHaventBeenHitRecentlyUnique__1"] = { affix = "", "You have Zealot's Oath if you haven't been hit recently", statOrder = { 10845 }, level = 1, group = "ZealotsOathIfHaventBeenHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2391255504] = { "You have Zealot's Oath if you haven't been hit recently" }, } }, - ["LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1"] = { affix = "", "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently", statOrder = { 7357 }, level = 1, group = "LifeGainOnHitIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3285021988] = { "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently" }, } }, - ["MovementVelocityIfVaalSkillUsedRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you have used a Vaal Skill Recently", statOrder = { 9423 }, level = 40, group = "MovementVelocityIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1285172810] = { "10% increased Movement Speed if you have used a Vaal Skill Recently" }, } }, - ["GainPowerChargeOnUsingVaalSkillUnique__1"] = { affix = "", "Gain a Power Charge when you use a Vaal Skill", statOrder = { 6810 }, level = 1, group = "GainPowerChargeOnUsingVaalSkill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2383388829] = { "Gain a Power Charge when you use a Vaal Skill" }, } }, - ["ChaosDamageCanIgniteChillAndShockUnique__1"] = { affix = "", "Chaos Damage can Ignite, Chill and Shock", statOrder = { 2887 }, level = 1, group = "ChaosDamageCanIgniteChillAndShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3470457445] = { "Chaos Damage can Ignite, Chill and Shock" }, } }, - ["GainSoulEaterOnVaalSkillUseUnique__1"] = { affix = "", "Gain Soul Eater for 20 seconds when you use a Vaal Skill", statOrder = { 6823 }, level = 88, group = "GainSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [161058250] = { "Gain Soul Eater for 20 seconds when you use a Vaal Skill" }, } }, - ["CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_"] = { affix = "", "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius", statOrder = { 3159 }, level = 1, group = "CriticalStrikeMultiplierPerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1154827254] = { "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius" }, } }, - ["AdditionalPhysicalReductionPerAllocatedStrengthJewelUnique__1"] = { affix = "", "1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius", statOrder = { 3151 }, level = 1, group = "AdditionalPhysicalReductionPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2519848087] = { "1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius" }, } }, - ["AdditionalStrengthPerAllocatedStrengthJewelUnique__1_"] = { affix = "", "-1 Strength per 1 Strength on Allocated Passives in Radius", statOrder = { 3070 }, level = 1, group = "AdditionalStrengthPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [552705983] = { "-1 Strength per 1 Strength on Allocated Passives in Radius" }, [3802517517] = { "" }, } }, - ["FlatManaPerUnallocatedDexterityJewelUnique__1"] = { affix = "", "+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 3160 }, level = 1, group = "FlatManaRegenPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1276712564] = { "+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius" }, } }, - ["MovementSpeedPerAllocatedDexterityJewelUnique__1"] = { affix = "", "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3153 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1795365307] = { "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius" }, } }, - ["AdditionalDexterityPerAllocatedDexterityJewelUnique__1"] = { affix = "", "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius", statOrder = { 3068 }, level = 1, group = "AdditionalDexterityPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [172076472] = { "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius" }, } }, - ["AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1"] = { affix = "", "+125 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 3158 }, level = 1, group = "AccuracyRatingPerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3996149330] = { "+125 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius" }, } }, - ["EnergyShieldRegenPerAllocatedIntelligenceJewelUnique__1_"] = { affix = "", "Regenerate 0.4% of Energy Shield per Second for", "every 10 Intelligence on Allocated Passives in Radius", statOrder = { 3152, 3152.1 }, level = 1, group = "EnergyShieldRegenPerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [615595418] = { "Regenerate 0.4% of Energy Shield per Second for", "every 10 Intelligence on Allocated Passives in Radius" }, } }, - ["AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__"] = { affix = "", "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius", statOrder = { 3069 }, level = 1, group = "AdditionalIntelligencePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1070347065] = { "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius" }, } }, - ["LifeRecoveryRatePerAllocatedStrengthUnique__1_"] = { affix = "", "2% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", statOrder = { 8086 }, level = 1, group = "LifeRecoveryRatePerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [235105674] = { "2% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius" }, } }, - ["LifeRecoveryRatePerAllocatedStrengthUnique__2"] = { affix = "", "3% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", statOrder = { 8086 }, level = 1, group = "LifeRecoveryRatePerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [235105674] = { "3% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius" }, } }, - ["LifeRecoveryRatePerUnallocatedStrengthUnique__1_"] = { affix = "", "2% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius", statOrder = { 8087 }, level = 1, group = "LifeRecoveryRatePerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4144221848] = { "2% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius" }, } }, - ["CriticalStrikeMultiplierPerUnallocatedStrengthUnique__1"] = { affix = "", "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius", statOrder = { 3159 }, level = 1, group = "CriticalStrikeMultiplierPerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1154827254] = { "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius" }, } }, - ["MovementSpeedPerAllocatedDexterityUnique__1"] = { affix = "", "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3153 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1795365307] = { "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius" }, } }, - ["MovementSpeedPerAllocatedDexterityUnique__2"] = { affix = "", "3% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3153 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1795365307] = { "3% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius" }, } }, - ["MovementSpeedPerUnallocatedDexterityUnique__1_"] = { affix = "", "2% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 8099 }, level = 1, group = "MovementSpeedPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [4169318921] = { "2% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius" }, } }, - ["AccuracyRatingPerUnallocatedDexterityUnique__1_"] = { affix = "", "+125 to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 8036 }, level = 1, group = "AccuracyRatingPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [100820057] = { "+125 to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius" }, } }, - ["ManaRecoveryRatePerAllocatedIntelligenceUnique__1"] = { affix = "", "2% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius", statOrder = { 8095 }, level = 1, group = "ManaRecoveryRatePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [514215387] = { "2% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius" }, } }, - ["ManaRecoveryRatePerAllocatedIntelligenceUnique__2"] = { affix = "", "3% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius", statOrder = { 8095 }, level = 1, group = "ManaRecoveryRatePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [514215387] = { "3% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius" }, } }, - ["ManaRecoveryRatePerUnallocatedIntelligenceUnique__1"] = { affix = "", "2% reduced Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 8096 }, level = 1, group = "ManaRecoveryRatePerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1439347620] = { "2% reduced Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius" }, } }, - ["DamageOverTimeMultiplierPerUnallocatedIntelligenceUnique__1___"] = { affix = "", "+3% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 8055 }, level = 1, group = "DamageOverTimeMultiplierPerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1994121713] = { "+3% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius" }, } }, - ["DamageConversionToRandomElementUnique__1"] = { affix = "", "75% of Physical Damage converted to a random Element", statOrder = { 1961 }, level = 1, group = "DamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1776612984] = { "75% of Physical Damage converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementUnique__1"] = { affix = "", "50% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "50% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementUnique__2_"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "100% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalDamageConversionToRandomElementImplicitE1"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "100% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, - ["LocalAlwaysInflictElementalAilmentsUnique__1"] = { affix = "", "Hits with this Weapon always Ignite, Freeze, and Shock", statOrder = { 4367 }, level = 1, group = "LocalAlwaysInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, tradeHashes = { [2451774989] = { "Hits with this Weapon always Ignite, Freeze, and Shock" }, } }, - ["LocalElementalDamageAgainstIgnitedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies", statOrder = { 4368 }, level = 1, group = "LocalElementalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3095345438] = { "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies" }, } }, - ["LocalElementalDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies", statOrder = { 4369 }, level = 1, group = "LocalElementalDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [196313911] = { "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies" }, } }, - ["LocalElementalDamageAgainstShockedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies", statOrder = { 4370 }, level = 1, group = "LocalElementalDamageAgainstShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1470894892] = { "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies" }, } }, - ["OnslaughtWhileNotOnLowManaUnique__1_"] = { affix = "", "You have Onslaught while not on Low Mana", statOrder = { 6790 }, level = 1, group = "OnslaughtWhileNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1959256242] = { "You have Onslaught while not on Low Mana" }, } }, - ["LoseManaPerSecondUnique__1"] = { affix = "", "Lose (30-40) Mana per Second", statOrder = { 8172 }, level = 1, group = "LoseManaPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2589042711] = { "Lose (30-40) Mana per Second" }, } }, - ["LoseManaPercentPerSecondUnique__1"] = { affix = "", "Lose 7% of Mana per Second", statOrder = { 8173 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 7% of Mana per Second" }, } }, - ["DodgeAndSpellDodgePerMaximumManaUnique__1"] = { affix = "", "20% increased Evasion Rating per 500 Maximum Mana", statOrder = { 6480 }, level = 1, group = "DodgeAndSpellDodgePerMaximumMana", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3147253569] = { "20% increased Evasion Rating per 500 Maximum Mana" }, } }, - ["DisplayHasAdditionalModUnique__1"] = { affix = "", "Has an additional Implicit Mod", statOrder = { 640 }, level = 1, group = "DisplayHasAdditionalMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2489070122] = { "Has an additional Implicit Mod" }, } }, - ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, - ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 8064, 8067 }, 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" }, [3802517517] = { "" }, } }, - ["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 = { 8063, 8066 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3802517517] = { "" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, } }, - ["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 = { 8065, 8068 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3802517517] = { "" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, } }, - ["TriggerSummonPhantasmOnCorpseConsumeUnique__1"] = { affix = "", "Trigger Level 25 Summon Phantasm Skill when you Consume a corpse", statOrder = { 818 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3252082366] = { "Trigger Level 25 Summon Phantasm Skill when you Consume a corpse" }, } }, - ["CastSpeedPerCorpseConsumedRecentlyUnique__1"] = { affix = "", "3% increased Cast Speed for each corpse Consumed Recently", statOrder = { 5470 }, level = 1, group = "CastSpeedPerCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2142553855] = { "3% increased Cast Speed for each corpse Consumed Recently" }, } }, - ["LifeRegenerationIfCorpseConsumedRecentlyUnique__1"] = { affix = "", "If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second", statOrder = { 10642 }, level = 1, group = "LifeRegenerationIfCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4089969970] = { "If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second" }, } }, - ["CannotHaveNonGolemMinionsUnique__1_"] = { affix = "", "You cannot have non-Golem Minions", statOrder = { 3691 }, level = 1, group = "CannotHaveNonGolemMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1826605755] = { "You cannot have non-Golem Minions" }, } }, - ["UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse"] = { affix = "", "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown", statOrder = { 156 }, level = 1, group = "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1112135314] = { "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown" }, } }, - ["UniqueCurseWithSocketedCurseOnHit_"] = { affix = "", "Curse Enemies with Socketed Hex Curse Gem on Hit", statOrder = { 7890 }, level = 30, group = "UniqueCurseWithSocketedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [1352418057] = { "Curse Enemies with Socketed Hex Curse Gem on Hit" }, } }, - ["LessGolemDamageUnique__1"] = { affix = "", "Golems Deal (25-35)% less Damage", statOrder = { 3700 }, level = 1, group = "LessGolemDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2861397339] = { "Golems Deal (25-35)% less Damage" }, } }, - ["LessGolemLifeUnique__1"] = { affix = "", "Golems have (25-35)% less Life", statOrder = { 4094 }, level = 1, group = "LessGolemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3730242558] = { "Golems have (25-35)% less Life" }, } }, - ["GolemSizeUnique__1"] = { affix = "", "25% reduced Golem Size", statOrder = { 3692 }, level = 1, group = "GolemSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2576412389] = { "25% reduced Golem Size" }, } }, - ["GolemMovementSpeedUnique__1"] = { affix = "", "Golems have (80-100)% increased Movement Speed", statOrder = { 6900 }, level = 1, group = "GolemMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [186383409] = { "Golems have (80-100)% increased Movement Speed" }, } }, - ["SacrificeLifeToGainESUnique__1"] = { affix = "", "Sacrifice (5-25)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9957 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-25)% of Life to gain that much Energy Shield when you Cast a Spell" }, } }, - ["PhysicalDamageReductionPerKeystoneUnique__1"] = { affix = "", "4% additional Physical Damage Reduction per Keystone", statOrder = { 4575 }, level = 1, group = "PhysicalDamageReductionPerKeystone", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3736262267] = { "4% additional Physical Damage Reduction per Keystone" }, } }, - ["CannotGainEnduranceChargesUnique__1__"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 4998 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3037185464] = { "Cannot gain Endurance Charges" }, } }, - ["GrantsStatsFromNonNotablesInRadiusUnique__1"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7956 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, [3802517517] = { "" }, } }, - ["AllocatedNonNotablesGrantNothingUnique__1_"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7954 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, - ["UniqueNearbyAlliesAreLuckyDisplay"] = { affix = "", "Nearby Allies' Damage with Hits is Lucky", statOrder = { 7904 }, level = 1, group = "UniqueNearbyAlliesAreLuckyDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [655871604] = { "Nearby Allies' Damage with Hits is Lucky" }, } }, - ["PlaceAdditionalMineWith600IntelligenceUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence", statOrder = { 9524 }, level = 1, group = "PlaceAdditionalMineWith600Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [5955083] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence" }, } }, - ["PlaceAdditionalMineWith600DexterityUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity", statOrder = { 9523 }, level = 1, group = "PlaceAdditionalMineWith600Dexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1917661185] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity" }, } }, - ["BlockChancePer50StrengthUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per 50 Strength", statOrder = { 1152 }, level = 1, group = "BlockChancePer50Strength", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1061631617] = { "+1% Chance to Block Attack Damage per 50 Strength" }, } }, - ["ExtraRollsSpellBlockUnique__1"] = { affix = "", "Chance to Block Spell Damage is Unlucky", statOrder = { 1159 }, level = 1, group = "ExtraRollsSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3551025193] = { "Chance to Block Spell Damage is Unlucky" }, } }, - ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 2125 }, 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 = { 2127 }, 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 = { 2142 }, 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 = { 2629 }, 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 = { 2631 }, 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 = { 2633 }, 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 = { 9426 }, 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 = { 1802 }, 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 = { 9429 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, - ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Frenzy Charge", statOrder = { 2628 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of Life per second per Frenzy Charge" }, } }, - ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Power Charge", statOrder = { 7422 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of Life per second per Power Charge" }, } }, - ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, 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 = { 3286 }, 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 = { 6066 }, 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 = { 9238 }, 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 = { 4273 }, 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 = { 9243 }, 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 = { 4536 }, 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 = { 4537 }, 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 = { 4538 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, - ["ChargeBonusDodgeChancePerEnduranceCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Endurance Charge", statOrder = { 10171 }, level = 1, group = "DodgeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [161741084] = { "+1% chance to Suppress Spell Damage per Endurance Charge" }, } }, - ["ChargeBonusDodgeChancePerFrenzyCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2546 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [482967934] = { "+1% chance to Suppress Spell Damage per Frenzy Charge" }, } }, - ["ChargeBonusDodgeChancePerPowerCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Power Charge", statOrder = { 10174 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1309947938] = { "+1% chance to Suppress Spell Damage per Power Charge" }, } }, - ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 6561 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1109745356] = { "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 = { 5807 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [3916799917] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, - ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge", statOrder = { 7446 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [3115319277] = { "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge" }, } }, - ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9656 }, 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 = { 1556 }, 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 = { 6444 }, 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 = { 4239 }, 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 = { 6774 }, 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 = { 6776, 6776.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 = { 6747 }, 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 = { 1833 }, 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 Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Strike" }, } }, - ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4817 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, - ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, 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 = { 4818 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Strike Chance per Endurance Charge", statOrder = { 5934 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Strike Chance per Endurance Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Strike Chance per Frenzy Charge", statOrder = { 5935 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Strike Chance per Frenzy Charge" }, } }, - ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "+3% to Critical Strike Multiplier per Power Charge" }, } }, - ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9648 }, 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 = { 9650 }, 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 = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", 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 = { 7298 }, 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 = { 6786 }, 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 = { 6728 }, 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 = { 4051 }, 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 Strike while at maximum Frenzy Charges", statOrder = { 6752 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges" }, } }, - ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9520 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, - ["ChargeBonusVaalPactEnduranceCharges"] = { affix = "", "You have Vaal Pact while at maximum Endurance Charges", statOrder = { 10837 }, level = 1, group = "VaalPactMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1314418188] = { "You have Vaal Pact while at maximum Endurance Charges" }, } }, - ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10835 }, 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 = { 10836 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, - ["GlobalEnergyShieldPercentUnique__1"] = { affix = "", "(15-20)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, - ["GlobalEvasionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, - ["GlobalEvasionRatingAndArmourPercentUnique__1_"] = { affix = "", "(30-60)% increased Evasion Rating and Armour", statOrder = { 1543 }, level = 1, group = "GlobalEvasionAndArmourPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3366029652] = { "(30-60)% increased Evasion Rating and Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, - ["GlobalPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "(20-30)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(20-30)% increased Armour" }, } }, - ["NearbyEnemiesReducedStunRecoveryUnique__1"] = { affix = "", "Nearby Enemies have 10% reduced Stun and Block Recovery", statOrder = { 3404 }, level = 1, group = "NearbyEnemiesReducedStunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "10% reduced Stun and Block Recovery" }, [3169825297] = { "Nearby Enemies have 10% reduced Stun and Block Recovery" }, } }, - ["NearbyEnemiesGrantIncreasedFlaskChargesUnique__1"] = { affix = "", "Nearby Enemies grant 25% increased Flask Charges", statOrder = { 3402 }, level = 1, group = "NearbyEnemiesGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2604562862] = { "" }, [3547189490] = { "Nearby Enemies grant 25% increased Flask Charges" }, } }, - ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__1"] = { affix = "", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3400 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [992435560] = { "Hits against Nearby Enemies have 50% increased Critical Strike Chance" }, [1553352778] = { "" }, } }, - ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__2"] = { affix = "", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3401 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4270096386] = { "Hits have 50% increased Critical Strike Chance against you" }, [3896241826] = { "Hits against Nearby Enemies have 50% increased Critical Strike Chance" }, } }, - ["NearbyEnemiesHaveReducedAllResistancesUnique__1"] = { affix = "", "Nearby Enemies have -10% to all Resistances", statOrder = { 2999 }, level = 1, group = "NearbyEnemiesHaveReducedAllResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [668145148] = { "Nearby Enemies have -10% to all Resistances" }, [2016723660] = { "-10% to All Resistances" }, } }, - ["AuraAddedFireDamagePerRedSocketUnique__1"] = { affix = "", "You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket", statOrder = { 3006 }, level = 1, group = "AuraAddedFireDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1666896662] = { "You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket" }, } }, - ["AuraAddedColdDamagePerGreenSocketUnique__1"] = { affix = "", "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket", statOrder = { 3007 }, level = 1, group = "AuraAddedColdDamagePerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2665149933] = { "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket" }, } }, - ["AuraAddedLightningDamagePerBlueSocketUnique__1"] = { affix = "", "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket", statOrder = { 3008 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3726585224] = { "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket" }, } }, - ["AuraAddedChaosDamagePerWhiteSocketUnique__1"] = { affix = "", "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket", statOrder = { 3009 }, level = 1, group = "AuraAddedChaosDamagePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3232695173] = { "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket" }, } }, - ["ArmourPerEvasionRatingOnShieldUnique__1"] = { affix = "", "+5 to Armour per 5 Evasion Rating on Equipped Shield", statOrder = { 4378 }, level = 1, group = "ArmourPerEvasionRatingOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3088183606] = { "+5 to Armour per 5 Evasion Rating on Equipped Shield" }, } }, - ["EvasionRatingPerEnergyShieldOnShieldUnique__1"] = { affix = "", "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield", statOrder = { 4379 }, level = 1, group = "EvasionRatingPerEnergyShieldOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1115914670] = { "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield" }, } }, - ["EnergyShieldPerArmourOnShieldUnique__1"] = { affix = "", "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield", statOrder = { 4377 }, level = 1, group = "EnergyShieldPerArmourOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3636098185] = { "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield" }, } }, - ["LifeLeechFromSpellsWith30BlockOnShieldUnique__1_"] = { affix = "", "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block", statOrder = { 4376 }, level = 1, group = "LifeLeechFromSpellsWith30BlockOnShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3893109186] = { "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block" }, } }, - ["AngerNoReservationUnique__1"] = { affix = "", "Anger has no Reservation", statOrder = { 4688 }, level = 69, group = "AngerNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2189891129] = { "Anger has no Reservation" }, } }, - ["ClarityNoReservationUnique__1"] = { affix = "", "Clarity has no Reservation", statOrder = { 5786 }, level = 69, group = "ClarityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2250543633] = { "Clarity has no Reservation" }, } }, - ["DeterminationNoReservationUnique__1"] = { affix = "", "Determination has no Reservation", statOrder = { 6174 }, level = 69, group = "DeterminationNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1358697130] = { "Determination has no Reservation" }, } }, - ["DisciplineNoReservationUnique__1"] = { affix = "", "Discipline has no Reservation", statOrder = { 6190 }, level = 69, group = "DisciplineNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3708588508] = { "Discipline has no Reservation" }, } }, - ["GraceNoReservationUnique__1"] = { affix = "", "Grace has no Reservation", statOrder = { 6905 }, level = 69, group = "GraceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2930404958] = { "Grace has no Reservation" }, } }, - ["HasteNoReservationUnique__1"] = { affix = "", "Haste has no Reservation", statOrder = { 6940 }, level = 69, group = "HasteNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [751322171] = { "Haste has no Reservation" }, } }, - ["HatredNoReservationUnique__1_"] = { affix = "", "Hatred has no Reservation", statOrder = { 6944 }, level = 69, group = "HatredNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1391583476] = { "Hatred has no Reservation" }, } }, - ["PurityOfElementsNoReservationUnique__1_"] = { affix = "", "Purity of Elements has no Reservation", statOrder = { 9768 }, level = 69, group = "PurityOfElementsNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1826480903] = { "Purity of Elements has no Reservation" }, } }, - ["PurityOfFireNoReservationUnique__1"] = { affix = "", "Purity of Fire has no Reservation", statOrder = { 9771 }, level = 69, group = "PurityOfFireNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2278589942] = { "Purity of Fire has no Reservation" }, } }, - ["PurityOfIceNoReservationUnique__1_"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9774 }, level = 69, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } }, - ["PurityOfLightningNoReservationUnique__1"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9777 }, level = 69, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } }, - ["VitalityNoReservationUnique__1"] = { affix = "", "Vitality has no Reservation", statOrder = { 10538 }, level = 69, group = "VitalityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [438083873] = { "Vitality has no Reservation" }, } }, - ["WrathNoReservationUnique__1"] = { affix = "", "Wrath has no Reservation", statOrder = { 10632 }, level = 69, group = "WrathNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1865987277] = { "Wrath has no Reservation" }, } }, - ["EnvyNoReservationUnique__1"] = { affix = "", "Envy has no Reservation", statOrder = { 6467 }, level = 69, group = "EnvyNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2503479316] = { "Envy has no Reservation" }, } }, - ["MalevolenceNoReservationUnique__1"] = { affix = "", "Malevolence has no Reservation", statOrder = { 6163 }, level = 69, group = "MalevolenceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [585622486] = { "Malevolence has no Reservation" }, } }, - ["ZealotryNoReservationUnique__1"] = { affix = "", "Zealotry has no Reservation", statOrder = { 10726 }, level = 69, group = "ZealotryNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1741242318] = { "Zealotry has no Reservation" }, } }, - ["PrideNoReservationUnique__1"] = { affix = "", "Pride has no Reservation", statOrder = { 9719 }, level = 69, group = "PrideNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3554614456] = { "Pride has no Reservation" }, } }, - ["MinionAddedPhysicalDamageUnique__1"] = { affix = "", "Minions deal (90-102) to (132-156) additional Physical Damage", statOrder = { 3773 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (90-102) to (132-156) additional Physical Damage" }, } }, - ["DoubleDamageChanceImplicitMace1"] = { affix = "", "5% chance to deal Double Damage", statOrder = { 5659 }, level = 1, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "5% chance to deal Double Damage" }, } }, - ["AdditionalHolyRelicUnique__1"] = { affix = "", "+1 to maximum number of Summoned Holy Relics", statOrder = { 5035 }, level = 1, group = "AdditionalHolyRelic", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2056575682] = { "+1 to maximum number of Summoned Holy Relics" }, } }, - ["HolyRelicCooldownRecoveryUnique__1"] = { affix = "", "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate", statOrder = { 7179 }, level = 1, group = "HolyRelicCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1583498502] = { "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate" }, } }, - ["ColdDamageTakenUnique__1"] = { affix = "", "5% reduced Cold Damage taken", statOrder = { 3389 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "5% reduced Cold Damage taken" }, } }, - ["ColdDamageTakenUnique__2"] = { affix = "", "10% increased Cold Damage taken", statOrder = { 3389 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "10% increased Cold Damage taken" }, } }, - ["OnslaughtEffectUnique__1"] = { affix = "", "100% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 1, group = "OnslaughtEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3151397056] = { "100% increased Effect of Onslaught on you" }, } }, - ["PhysicalDamageWhileResoluteTechniqueUnique__1__"] = { affix = "", "100% increased Physical Damage while you have Resolute Technique", statOrder = { 10846 }, level = 1, group = "PhysicalDamageWhileResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1258679667] = { "100% increased Physical Damage while you have Resolute Technique" }, } }, - ["IncreasedWeaponElementalDamagePercentPerPowerChargeUnique__1"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills per Power Charge", statOrder = { 6323 }, level = 1, group = "IncreasedWeaponElementalDamagePercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4116409626] = { "(20-25)% increased Elemental Damage with Attack Skills per Power Charge" }, } }, - ["ArrowsAlwaysPierceAfterForkingUnique__1__"] = { affix = "", "Arrows Pierce all Targets after Forking", statOrder = { 4781 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all Targets after Forking" }, } }, - ["ArrowsThatPierceHaveCritMultiUnique__1"] = { affix = "", "Arrows that Pierce have +50% to Critical Strike Multiplier", statOrder = { 5951 }, level = 1, group = "ArrowsThatPierceHaveCritMulti", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1064778484] = { "Arrows that Pierce have +50% to Critical Strike Multiplier" }, } }, - ["SupportedByGreaterVolleyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 300 }, level = 1, group = "SupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2223565123] = { "Socketed Gems are Supported by Level 20 Greater Volley" }, } }, - ["SupportedByIgniteProliferationUnique1"] = { affix = "", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 308 }, level = 1, group = "SupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3593797653] = { "Socketed Gems are Supported by Level 20 Ignite Proliferation" }, } }, - ["ChanceToBleedWithoutAvatarOfFireUnique__1"] = { affix = "", "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire", statOrder = { 10850 }, level = 1, group = "ChanceToBleedWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4070293064] = { "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire" }, } }, - ["FireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 6568 }, level = 1, group = "FireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3703926412] = { "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies" }, } }, - ["PhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies", statOrder = { 9643 }, level = 1, group = "PhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3375415245] = { "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies" }, } }, - ["PhysicalDamageTakenAsRandomElementUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 9630 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [1904530666] = { "20% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, - ["StartEnergyShieldRechargeOnSkillUnique__1"] = { affix = "", "10% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6450 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "10% chance for Energy Shield Recharge to start when you use a Skill" }, } }, - ["SpellCriticalStrikeChancePerSpectreUnique__1_"] = { affix = "", "(50-100)% increased Spell Critical Strike Chance per Raised Spectre", statOrder = { 10140 }, level = 1, group = "SpellCriticalStrikeChancePerSpectre", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [495095219] = { "(50-100)% increased Spell Critical Strike Chance per Raised Spectre" }, } }, - ["GainArcaneSurgeOnCritUnique__1"] = { affix = "", "Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6726 }, level = 1, group = "GainArcaneSurgeOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [446027070] = { "Gain Arcane Surge when you deal a Critical Strike" }, } }, - ["SpectresGainArcaneSurgeWhenYouDoUnique__1_"] = { affix = "", "Your Raised Spectres also gain Arcane Surge when you do", statOrder = { 10121 }, level = 1, group = "SpectresGainArcaneSurgeWhenYouDo", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3462113315] = { "Your Raised Spectres also gain Arcane Surge when you do" }, } }, - ["TriggerFeastOfFleshSkillUnique__1_"] = { affix = "", "Trigger Level 15 Feast of Flesh every 5 seconds", statOrder = { 801 }, level = 1, group = "TriggerFeastOfFleshSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1560737213] = { "" }, [1024189516] = { "Trigger Level 15 Feast of Flesh every 5 seconds" }, } }, - ["TriggerRandomOfferingSkillUnique__1"] = { affix = "", "Trigger Level 20 Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence", "Offering Skills Triggered this way also affect you", statOrder = { 802, 802.1 }, level = 1, group = "TriggerRandomOfferingSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1663239249] = { "Trigger Level 20 Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence", "Offering Skills Triggered this way also affect you" }, [1560737213] = { "" }, } }, - ["LeftRingSpellProjectilesForkUnique__1_"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7982 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, - ["LeftRingSpellProjectilesCannotChainUnique__1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7981 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, - ["RightRingSpellProjectilesChainUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 8008 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, - ["RightRingSpellProjectilesCannotForkUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 8009 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, - ["FireAndChaosDamageResistanceUnique__1__"] = { affix = "", "+(20-25)% to Fire and Chaos Resistances", statOrder = { 6550 }, level = 1, group = "FireAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(20-25)% to Fire and Chaos Resistances" }, } }, - ["TriggerArcaneWakeSkillUnique__1"] = { affix = "", "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana", statOrder = { 764 }, level = 1, group = "TriggerArcaneWakeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3344568504] = { "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana" }, } }, - ["DoubleDamageWithWeaponUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage", statOrder = { 7926 }, level = 1, group = "DoubleDamageWithWeapon", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1506185293] = { "Attacks with this Weapon deal Double Damage" }, } }, - ["FocusCooldownRecoveryUnique__1_"] = { affix = "", "Focus has (30-50)% increased Cooldown Recovery Rate", statOrder = { 6654 }, level = 1, group = "FocusCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3610263531] = { "Focus has (30-50)% increased Cooldown Recovery Rate" }, } }, - ["LifeRegenPerUncorruptedItemUnique__1"] = { affix = "", "Regenerate 15 Life per second for each Uncorrupted Item Equipped", statOrder = { 3101 }, level = 1, group = "LifeRegenPerUncorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [405941409] = { "Regenerate 15 Life per second for each Uncorrupted Item Equipped" }, } }, - ["TotalManaCostPerCorruptedItemUnique__1"] = { affix = "", "-2 to Total Mana Cost of Skills for each Corrupted Item Equipped", statOrder = { 4333 }, level = 1, group = "TotalManaCostPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3750572810] = { "-2 to Total Mana Cost of Skills for each Corrupted Item Equipped" }, } }, - ["ChillNearbyEnemiesOnFocusUnique__1_"] = { affix = "", "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed", statOrder = { 5772 }, level = 67, group = "ChillNearbyEnemiesOnFocus", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2384145996] = { "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed" }, [1533152070] = { "" }, } }, - ["DamageWithHitsAndAilmentsAgainstChilledEnemyUnique__1"] = { affix = "", "(50-70)% increased Damage with Hits and Ailments against Chilled Enemies", statOrder = { 7151 }, level = 1, group = "DamageWithHitsAndAilmentsAgainstChilledEnemy", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3747189159] = { "(50-70)% increased Damage with Hits and Ailments against Chilled Enemies" }, } }, - ["ElementalDamageWhileAffectedBySextantUnique__1"] = { affix = "", "(30-40)% increased Elemental Damage while in an area affected by a Sextant", statOrder = { 6312 }, level = 1, group = "ElementalDamageWhileAffectedBySextant", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [4022841749] = { "(30-40)% increased Elemental Damage while in an area affected by a Sextant" }, } }, - ["BleedOnCritUnique__1_"] = { affix = "", "50% chance to inflict Bleeding on Critical Strike with Attacks", statOrder = { 2485 }, level = 1, group = "BleedOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [2054257693] = { "50% chance to inflict Bleeding on Critical Strike with Attacks" }, } }, - ["MaimOnCritUnique__1"] = { affix = "", "50% chance to Maim Enemies on Critical Strike with Attacks", statOrder = { 8154 }, level = 1, group = "MaimOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [996483959] = { "50% chance to Maim Enemies on Critical Strike with Attacks" }, } }, - ["EnemiesYouBleedGrantIncreasedFlaskChargesUnique__1_"] = { affix = "", "Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges", statOrder = { 2493 }, level = 1, group = "EnemiesYouBleedGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2671550669] = { "Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges" }, } }, - ["AddedPhysicalDamageVsBleedingEnemiesUnique__1"] = { affix = "", "Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies" }, } }, - ["LifeRegenerationIfBlockedRecentlyUnique__1"] = { affix = "", "If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second", statOrder = { 10643 }, level = 1, group = "LifeRegenerationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [176085824] = { "If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second" }, } }, - ["GroundTarOnBlockUnique__1"] = { affix = "", "Spreads Tar when you Block", statOrder = { 6917 }, level = 79, group = "GroundTarOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3587169341] = { "" }, [2894567787] = { "Spreads Tar when you Block" }, } }, - ["GainShapersPresenceUnique__1"] = { affix = "", "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy", statOrder = { 6818 }, level = 81, group = "GainShapersPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1091613629] = { "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy" }, } }, - ["SpellsCannotPierceUnique__1__"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9750 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, - ["EnemiesIgnitedTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Ignited by you during Effect take (7-10)% increased Damage", statOrder = { 1044 }, level = 1, group = "EnemiesIgnitedTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [3477833022] = { "Enemies Ignited by you during Effect take (7-10)% increased Damage" }, } }, - ["GainChargeOnConsumingIgnitedCorpseUnique__1__"] = { affix = "", "Recharges 1 Charge when you Consume an Ignited corpse", statOrder = { 839 }, level = 1, group = "GainChargeOnConsumingIgnitedCorpse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2557247391] = { "Recharges 1 Charge when you Consume an Ignited corpse" }, } }, - ["GainChargeOnConsumingIgnitedCorpseUnique__2"] = { affix = "", "Recharges 5 Charges when you Consume an Ignited corpse", statOrder = { 839 }, level = 1, group = "GainChargeOnConsumingIgnitedCorpse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2557247391] = { "Recharges 5 Charges when you Consume an Ignited corpse" }, } }, - ["RecoverMaximumLifeOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Life when you Kill an Enemy during Effect", statOrder = { 1045 }, level = 1, group = "RecoverMaximumLifeOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1217476473] = { "Recover (1-3)% of Life when you Kill an Enemy during Effect" }, } }, - ["RecoverMaximumManaOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Mana when you Kill an Enemy during Effect", statOrder = { 1046 }, level = 1, group = "RecoverMaximumManaOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [3247931236] = { "Recover (1-3)% of Mana when you Kill an Enemy during Effect" }, } }, - ["RecoverMaximumEnergyShieldOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Energy Shield when you Kill an Enemy during Effect", statOrder = { 1047 }, level = 1, group = "RecoverMaximumEnergyShieldOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [2347201221] = { "Recover (1-3)% of Energy Shield when you Kill an Enemy during Effect" }, } }, - ["AlternateFireAilmentUnique__1"] = { affix = "", "(25-50)% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 1, group = "AlternateFireAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4198497576] = { "Cannot inflict Ignite" }, [606940191] = { "(25-50)% chance to Scorch Enemies" }, } }, - ["AlternateColdAilmentUnique__1"] = { affix = "", "(25-50)% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 1, group = "AlternateColdAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2238174408] = { "(25-50)% chance to inflict Brittle" }, [612223930] = { "Cannot inflict Freeze or Chill" }, } }, - ["AlternateLightningAilmentUnique__1__"] = { affix = "", "(25-50)% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 1, group = "AlternateLightningAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [532324017] = { "(25-50)% chance to Sap Enemies" }, [990377349] = { "Cannot inflict Shock" }, } }, - ["PrismaticSkillsInflictScorchUnique_1"] = { affix = "", "Hits with Prismatic Skills always Scorch", statOrder = { 9725 }, level = 1, group = "PrismaticSkillsAlwaysScorch", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2324756482] = { "Hits with Prismatic Skills always Scorch" }, } }, - ["PrismaticSkillsInflictBrittleUnique_1"] = { affix = "", "Hits with Prismatic Skills always inflict Brittle", statOrder = { 9723 }, level = 1, group = "PrismaticSkillsAlwaysBrittle", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2034210174] = { "Hits with Prismatic Skills always inflict Brittle" }, } }, - ["PrismaticSkillsInflictSapUnique_1"] = { affix = "", "Hits with Prismatic Skills always Sap", statOrder = { 9724 }, level = 1, group = "PrismaticSkillsAlwaysSap", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2355907154] = { "Hits with Prismatic Skills always Sap" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(40-55)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(25-35)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUnique__2"] = { affix = "", "+50% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+50% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-60)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(40-60)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__2_"] = { affix = "", "+(15-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(15-25)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUnique__3"] = { affix = "", "+(8-12)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-12)% to Fire Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-40)% to Damage over Time Multiplier" }, } }, - ["GlobalDamageOverTimeMultiplierUnique__2"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-40)% to Damage over Time Multiplier" }, } }, - ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 2214 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, - ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 2214 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (8-12)% increased Cast Speed" }, } }, - ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 821 }, 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" }, } }, - ["TrapsApplySocketedCurseSkillsWhenTriggeredUnique_1"] = { affix = "", "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps", statOrder = { 543, 543.1 }, level = 70, group = "TriggerCurseOnTrap", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [1736212068] = { "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps" }, } }, - ["EnergyShieldLeechPerCurseUnique__1_"] = { affix = "", "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy", statOrder = { 1723 }, level = 1, group = "EnergyShieldLeechPerCurse", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3734213780] = { "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy" }, } }, - ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 4334 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [33348259] = { "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 = { 7166 }, 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 = { 7165 }, 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 = { 5804 }, 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 = { 7445 }, 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%" }, } }, - ["ElementalDamagePerResistanceAbove75Unique_1"] = { affix = "", "(5-10)% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%", statOrder = { 6295 }, level = 1, group = "ElementalDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1138456002] = { "(5-10)% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%" }, } }, - ["ClassicNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 58 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(60-120)% increased Implicit Modifier magnitudes" }, } }, - ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(15-30)% reduced Duration" }, } }, - ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 880 }, 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 = { 978 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [1866211373] = { "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies" }, } }, - ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 975 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1535051459] = { "+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 1016 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3278399103] = { "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect" }, } }, - ["ShockProliferationUnique__1"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 1, group = "ShockProliferation", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, - ["ShockProliferationDuringFlaskEffectUnique__1"] = { affix = "", "Shocks you inflict during Effect spread to other Enemies within 2 metres", statOrder = { 1059 }, level = 85, group = "ShockProliferationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [911839512] = { "Shocks you inflict during Effect spread to other Enemies within 2 metres" }, } }, - ["ShockEffectDuringFlaskEffectUnique__1__"] = { affix = "", "(25-40)% increased Effect of Shocks you inflict during Effect", statOrder = { 1058 }, level = 1, group = "ShockEffectDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [3338065776] = { "(25-40)% increased Effect of Shocks you inflict during Effect" }, } }, - ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1912 }, 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 = { 4387, 4388 }, 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 = { 4390, 4390.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1174243390] = { "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity" }, } }, - ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Nearby Enemies cannot deal Critical Strikes", statOrder = { 7910 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Strikes" }, [3638599682] = { "Never deal Critical Strikes" }, } }, - ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Nearby Allies' Action Speed cannot be modified to below Base Value", statOrder = { 7902 }, 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 = { 8216 }, 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 = { 8217 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 3002 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3767939384] = { "Nearby Allies have (4-6)% increased Defences per 100 Strength you have" }, } }, - ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 3001 }, 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 Strike Multiplier per 100 Dexterity you have", statOrder = { 3003 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have" }, } }, - ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 3004 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2373999301] = { "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have" }, } }, - ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 686 }, 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 = { 9705 }, 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 = { 9706 }, 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 = { 228 }, 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 = { 757 }, 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 = { 830, 830.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" }, } }, - ["MaximumLifeLeechAmountUnique__1"] = { affix = "", "50% reduced Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3101897388] = { "50% reduced Maximum Recovery per Life Leech" }, } }, - ["MaximumLifeLeechAmountUnique__2"] = { affix = "", "80% reduced Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3101897388] = { "80% reduced Maximum Recovery per Life Leech" }, } }, - ["MaximumLifeLeechAmountPerLifeReservedUnique__1"] = { affix = "", "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved", statOrder = { 9151 }, level = 1, group = "MaximumLifeLeechAmountPerLifeReserved", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3389810339] = { "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved" }, } }, - ["LIfeReservationEfficiencyUnique__1"] = { affix = "", "(15-25)% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [635485889] = { "(15-25)% increased Life Reservation Efficiency of Skills" }, } }, - ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 3211 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2108380422] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, 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 = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AttacksYouUseYourselfRepeatCountUnique__1"] = { affix = "", "Attacks you use yourself Repeat an additional time", statOrder = { 1900 }, level = 1, group = "AttacksYouUseYourselfRepeatCount", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [485236576] = { "Attacks you use yourself Repeat an additional time" }, } }, - ["AttacksYouUseYourselfAttackSpeedFinalUnique__1"] = { affix = "", "Attacks you use yourself have 50% more Attack Speed", statOrder = { 1901 }, level = 1, group = "AttacksYouUseYourselfAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2718073792] = { "Attacks you use yourself have 50% more Attack Speed" }, } }, - ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10712 }, 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 = { 10712 }, 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 = { 10712 }, 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 = { 10712 }, 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 = { 10712 }, 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 = { 7127 }, 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 = { 7128 }, 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 = { 7449 }, 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 = { 7126 }, 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 = { 9166 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7451 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7113 }, 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 = { 7114 }, 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 = { 6570 }, 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 = { 7112 }, 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 = { 9140 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6571 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7117 }, 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 = { 7118 }, 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 = { 5815 }, 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 = { 7116 }, 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 = { 9129 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5817 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7122 }, 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 = { 7123 }, 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 = { 9644 }, 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 = { 7120 }, 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 = { 9988 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, - ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9651 }, 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 = { 7109 }, 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 = { 7110 }, 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 = { 5738 }, 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 = { 7108 }, 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 = { 4613 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, - ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5743 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, - ["ZombiesCountAsCorpsesUnique__1"] = { affix = "", "Your Raised Zombies count as corpses", statOrder = { 9819 }, level = 1, group = "ZombiesCountAsCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3951269079] = { "Your Raised Zombies count as corpses" }, } }, - ["ZombiesNeedNoCorpsesUnique__1"] = { affix = "", "Raise Zombie does not require a corpse", statOrder = { 9813 }, level = 1, group = "ZombiesNeedNoCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [16924183] = { "Raise Zombie does not require a corpse" }, } }, - ["ZombieIncreasedLifeUnique__1"] = { affix = "", "Raised Zombies have (80-100)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "ZombieIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [927817294] = { "Raised Zombies have (80-100)% increased maximum Life" }, } }, - ["AdditionalPhysicalDamageReductionWhileBleedingUnique__1"] = { affix = "", "(10-15)% additional Physical Damage Reduction while Bleeding", statOrder = { 4581 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1089471428] = { "(10-15)% additional Physical Damage Reduction while Bleeding" }, } }, - ["DamageTakenGainedAsLifeUnique__1_"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__2"] = { affix = "", "(80-100)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(80-100)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__3"] = { affix = "", "(6-12)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-12)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLifeUnique__4"] = { affix = "", "(10-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-15)% of Damage taken Recouped as Life" }, } }, - ["MinimumEnduranceChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Endurance Charges while on Low Life", statOrder = { 9256 }, level = 1, group = "MinimumEnduranceChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2847937074] = { "+3 to Minimum Endurance Charges while on Low Life" }, } }, - ["MinimumPowerChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Power Charges while on Low Life", statOrder = { 9261 }, level = 1, group = "MinimumPowerChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3960918998] = { "+3 to Minimum Power Charges while on Low Life" }, } }, - ["SpellCriticalStrikeChanceIfKilledRecentlyUnique__1"] = { affix = "", "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently", statOrder = { 5924 }, level = 1, group = "SpellCriticalStrikeChanceIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1243114410] = { "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently" }, } }, - ["SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently", statOrder = { 5954 }, level = 1, group = "SpellCriticalStrikeMultiplierIfNotKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [729430714] = { "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently" }, } }, - ["RagingSpiritLifeUnique__1"] = { affix = "", "Summoned Raging Spirits have (25-40)% increased maximum Life", statOrder = { 9328 }, level = 1, group = "RagingSpiritLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3999870307] = { "Summoned Raging Spirits have (25-40)% increased maximum Life" }, } }, - ["RagingSpiritDurationUnique__1"] = { affix = "", "Summon Raging Spirit has (20-30)% increased Duration", statOrder = { 3412 }, level = 1, group = "RagingSpiritDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [38715141] = { "Summon Raging Spirit has (20-30)% increased Duration" }, } }, - ["RagingSpiritChaosDamageTakenUnique__1"] = { affix = "", "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage", statOrder = { 9329 }, level = 68, group = "RagingSpiritChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [1063920218] = { "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage" }, } }, - ["LosePowerChargeWhenHitUnique__1"] = { affix = "", "Lose a Power Charge when Hit", statOrder = { 10504 }, level = 1, group = "LosePowerChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4023578899] = { "Lose a Power Charge when Hit" }, } }, - ["SpellDamagePerLifeUnique__1"] = { affix = "", "5% increased Spell Damage per 100 Player Maximum Life", statOrder = { 10152 }, level = 1, group = "SpellDamagePerLife", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3491815140] = { "5% increased Spell Damage per 100 Player Maximum Life" }, } }, - ["SpellCriticalStrikeChancePerLifeUnique__1"] = { affix = "", "5% increased Spell Critical Strike Chance per 100 Player Maximum Life", statOrder = { 10139 }, level = 1, group = "SpellCriticalStrikeChancePerLife", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [3775574601] = { "5% increased Spell Critical Strike Chance per 100 Player Maximum Life" }, } }, - ["SacrificeLifeOnSpellSkillUnique__1"] = { affix = "", "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill", statOrder = { 9956 }, level = 1, group = "SacrificeLifeOnSpellSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [545408899] = { "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill" }, } }, - ["PercentDexterityIfStrengthHigherThanIntelligenceUnique__1"] = { affix = "", "15% increased Dexterity if Strength is higher than Intelligence", statOrder = { 6176 }, level = 1, group = "PercentDexterityIfStrengthHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2022724400] = { "15% increased Dexterity if Strength is higher than Intelligence" }, } }, - ["CriticalStrikeMultiplierIfDexterityHigherThanIntelligenceUnique__1"] = { affix = "", "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence", statOrder = { 5956 }, level = 1, group = "CriticalStrikeMultiplierIfDexterityHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2328588114] = { "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence" }, } }, - ["ElementalDamagePerDexterityUnique__1"] = { affix = "", "1% increased Elemental Damage per 10 Dexterity", statOrder = { 6306 }, level = 1, group = "ElementalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [963261439] = { "1% increased Elemental Damage per 10 Dexterity" }, } }, - ["LifePer10IntelligenceUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Intelligence", statOrder = { 9157 }, level = 1, group = "LifePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1114351662] = { "+2 to Maximum Life per 10 Intelligence" }, } }, - ["GrantsLevel30SmiteUnique__1"] = { affix = "", "Grants Level 30 Smite Skill", statOrder = { 719 }, level = 1, group = "GrantsSmiteLevel", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [979973117] = { "Grants Level 30 Smite Skill" }, } }, - ["ElementalAilmentsOnYouInsteadOfAlliesUnique__1"] = { affix = "", "Enemies inflict Elemental Ailments on you instead of nearby Allies", statOrder = { 7925 }, level = 1, group = "ElementalAilmentsOnYouInsteadOfAllies", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [979288792] = { "Enemies inflict Elemental Ailments on you instead of nearby Allies" }, [3151718243] = { "" }, } }, - ["UnaffectedByPoisonUnique__1_"] = { affix = "", "Unaffected by Poison", statOrder = { 5055 }, level = 1, group = "UnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, - ["KeystoneInnerConvictionUnique__1"] = { affix = "", "Inner Conviction", statOrder = { 10806 }, level = 1, group = "KeystoneInnerConviction", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge", "damage" }, tradeHashes = { [354080151] = { "Inner Conviction" }, } }, - ["FasterPoisonDamageUnique__1"] = { affix = "", "Poisons you inflict deal Damage (30-50)% faster", statOrder = { 6546 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (30-50)% faster" }, } }, - ["TriggerRainOfArrowsOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Rain of Arrows when you Attack with a Bow", statOrder = { 813 }, level = 1, group = "TriggerRainOfArrowsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2935409762] = { "Trigger Level 5 Rain of Arrows when you Attack with a Bow" }, } }, - ["TriggerToxicRainOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Toxic Rain when you Attack with a Bow", statOrder = { 835 }, level = 1, group = "TriggerToxicRainOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [767464019] = { "Trigger Level 5 Toxic Rain when you Attack with a Bow" }, } }, - ["CursesRemainOnDeathUnique__1_"] = { affix = "", "Non-Aura Curses you inflict are not removed from Dying Enemies", statOrder = { 6010 }, level = 1, group = "CursesRemainOnDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [847744351] = { "Non-Aura Curses you inflict are not removed from Dying Enemies" }, } }, - ["EnemiesNearCursesBlindAndExplodeUnique__1"] = { affix = "", "Enemies near corpses affected by your Curses are Blinded", "Enemies Killed near corpses affected by your Curses explode, dealing", "3% of their Life as Physical Damage", statOrder = { 6388, 6388.1, 6388.2 }, level = 1, group = "EnemiesNearCursesBlindAndExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1509756274] = { "Enemies near corpses affected by your Curses are Blinded", "Enemies Killed near corpses affected by your Curses explode, dealing", "3% of their Life as Physical Damage" }, } }, - ["WarcryCooldownIs2SecondsUnique__1"] = { affix = "", "Warcry Skills' Cooldown Time is 4 seconds", statOrder = { 10576 }, level = 1, group = "WarcryCooldownIs2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [684268017] = { "Warcry Skills' Cooldown Time is 4 seconds" }, } }, - ["CriticalStrikeMultiplierIs250Unique__1"] = { affix = "", "Your Critical Strike Multiplier is 300%", statOrder = { 5952 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [824024007] = { "Your Critical Strike Multiplier is 300%" }, } }, - ["RageOnAttackCritUnique__1"] = { affix = "", "Gain 1 Rage on Critical Strike with Attacks", statOrder = { 7308 }, level = 1, group = "RageOnAttackCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1043982313] = { "Gain 1 Rage on Critical Strike with Attacks" }, } }, - ["RageOnMeleeHitUnique__1"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 5 Rage on Melee Hit" }, } }, - ["PhysicalAddedAsFirePerRageUnique__1"] = { affix = "", "Every Rage also grants 1% of Physical Damage as Extra Fire Damage", statOrder = { 9635 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1431402553] = { "Every Rage also grants 1% of Physical Damage as Extra Fire Damage" }, } }, - ["LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_"] = { affix = "", "20% chance for Poisons inflicted with this Weapon to deal 300% more Damage", statOrder = { 7873 }, level = 1, group = "LocalChanceForPoisonDamage300FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [768124628] = { "20% chance for Poisons inflicted with this Weapon to deal 300% more Damage" }, } }, - ["AttackDamageWhileHoldingShieldUnique__1"] = { affix = "", "(10-15)% increased Attack Damage while holding a Shield", statOrder = { 1206 }, level = 1, group = "AttackDamageWhileHoldingShield", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(10-15)% increased Attack Damage while holding a Shield" }, } }, - ["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 = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [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 = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [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 = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10395 }, 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 = { 10038 }, 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 = { 5728 }, 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 = { 4718 }, 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 = { 6305 }, 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 = { 6340 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, - ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion", statOrder = { 9503 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion" }, } }, - ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9976 }, 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 = { 9973 }, 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 = { 9272 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, - ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 9265 }, 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 = { 8198 }, 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 = { 8171 }, 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 = { 9494 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, - ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 10004 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2803981661] = { "3% increased Defences from Equipped Shield per 10 Devotion" }, } }, - ["DealNoChaosDamageUnique_1"] = { affix = "", "Deal no Chaos Damage", statOrder = { 5007 }, level = 1, group = "DealNoChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1896269067] = { "Deal no Chaos Damage" }, } }, - ["LightRadiusToDamageUnique_1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Damage", statOrder = { 2499 }, level = 1, group = "LightRadiusModifiersApplyToDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3519807287] = { "Increases and Reductions to Light Radius also apply to Damage" }, } }, - ["LightRadiusToAreaOfEffectUnique__1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value", statOrder = { 2498 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value" }, } }, + ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10876, 10876.1 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, } }, + ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(10-20)% chance to Avoid being Stunned" }, } }, + ["AvoidStunUnique__1"] = { affix = "", "30% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "30% chance to Avoid being Stunned" }, } }, + ["AvoidElementalAilmentsUnique__1_"] = { affix = "", "30% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "30% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, } }, + ["AvoidElementalAilmentsUnique__3"] = { affix = "", "(15-25)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-25)% chance to Avoid Elemental Ailments" }, } }, + ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, } }, + ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, } }, + ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, + ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, + ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, + ["LocalChanceToBleedUnique__2"] = { affix = "", "40% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "40% chance to cause Bleeding on Hit" }, } }, + ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2515 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2515 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2515 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3090 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3807518091] = { "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, + ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 3087 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2216127021] = { "(10-15)% increased Area of Effect while Unarmed" }, } }, + ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(0.3-0.4) metres to Melee Strike Range with Unarmed Attacks", statOrder = { 3113 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(0.3-0.4) metres to Melee Strike Range with Unarmed Attacks" }, } }, + ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 3101 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [854030602] = { "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers" }, } }, + ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 3105 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3802517517] = { "" }, [2582360791] = { "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius" }, } }, + ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 3106 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [727625899] = { "Passives in Radius apply to Minions instead of you" }, [512165118] = { "" }, } }, + ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2772 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, + ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of Life when you Consume a corpse", statOrder = { 3088 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2715345125] = { "Recover 2% of Life when you Consume a corpse" }, } }, + ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 3089 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3802517517] = { "" }, [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, + ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 3096 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335735137] = { "Totems cannot be Stunned" }, } }, + ["MinionDodgeChanceUniqueJewel16"] = { affix = "", "Minions have +(2-5)% chance to Suppress Spell Damage", statOrder = { 9466 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(2-5)% chance to Suppress Spell Damage" }, } }, + ["MinionDodgeChanceUnique__1"] = { affix = "", "Minions have +(12-15)% chance to Suppress Spell Damage", statOrder = { 9466 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3195300715] = { "Minions have +(12-15)% chance to Suppress Spell Damage" }, } }, + ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1297 }, level = 1, group = "FireDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [761505024] = { "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you" }, } }, + ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1298 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3434279150] = { "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you" }, } }, + ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their Life when they Block", statOrder = { 3095 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 2% of their Life when they Block" }, } }, + ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their Life when they Block", statOrder = { 3095 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHashes = { [676967140] = { "Minions Recover 10% of their Life when they Block" }, } }, + ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 3097 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(25-30)% increased Damage while Leeching" }, } }, + ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 3097 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(30-40)% increased Damage while Leeching" }, } }, + ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 3097 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-25)% increased Damage while Leeching" }, } }, + ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2839 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, + ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2839 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "10% increased Movement Speed while Ignited" }, } }, + ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2839 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [581625445] = { "(10-20)% increased Movement Speed while Ignited" }, } }, + ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 2287 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have 10% chance to Fortify" }, } }, + ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 2261 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, + ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 3114 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [886366428] = { "(20-25)% increased Damage for each Magic Item Equipped" }, } }, + ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 3116 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [736847554] = { "Totems fire 2 additional Projectiles" }, } }, + ["UnholyMightOnMeleeKillUniqueJewel28"] = { affix = "", "5% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3117 }, level = 1, group = "UnholyMightOnMeleeKill", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3166317791] = { "5% chance to Gain Unholy Might for 4 seconds on Melee Kill" }, } }, + ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 3118 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3779823630] = { "(40-60)% increased Spell Damage while no Mana is Reserved" }, } }, + ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 3121 }, 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 = { 3109 }, 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 = { 3110 }, 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 = { 10873 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10873 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10873 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2559 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, + ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1620 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, + ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Strike Multiplier", statOrder = { 8012 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Strike Multiplier" }, } }, + ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 8014 }, 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 = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(20-30)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% increased Skill Effect Duration", statOrder = { 3139 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-20)% increased Skill Effect Duration" }, } }, + ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10675 }, 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 Strike Chance", statOrder = { 3141 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, + ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Strike Multiplier", statOrder = { 3142 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHashes = { [2070982674] = { "+(22-30)% to Vaal Skill Critical Strike Multiplier" }, } }, + ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1221 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "10% increased Attack Damage" }, } }, + ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2776 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 8% increased Effect" }, } }, + ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Effect of your Curses", statOrder = { 2622 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "4% increased Effect of your Curses" }, } }, + ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Effect of your Curses", statOrder = { 2622 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-20)% increased Effect of your Curses" }, } }, + ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Effect of your Curses", statOrder = { 2622 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Effect of your Curses" }, } }, + ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2622 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } }, + ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 3144 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2701327257] = { "60% reduced Cost of Aura Skills that summon Totems" }, } }, + ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 3143 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1633381214] = { "50% chance to gain an additional Vaal Soul per Enemy Shattered" }, } }, + ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 3145 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [47271484] = { "10% increased Experience Gain for Corrupted Gems" }, } }, + ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 3148 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1677654268] = { "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use" }, } }, + ["CorruptThresholdPhysBypassesESUniqueCorruptedJewel12"] = { affix = "", "With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield", statOrder = { 3147 }, level = 1, group = "CorruptThresholdPhysBypassesES", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield", "chaos" }, tradeHashes = { [3225265684] = { "With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield" }, } }, + ["CorruptThresholdLifeLeechUsesChaosDamageUniqueCorruptedJewel10"] = { affix = "", "With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead", statOrder = { 3146 }, level = 1, group = "CorruptThresholdLifeLeechUsesChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [4192058279] = { "With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead" }, } }, + ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of Mana on Kill", statOrder = { 1778 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover 1% of Mana on Kill" }, } }, + ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of Life on Kill", statOrder = { 1777 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [751813227] = { "Lose 1% of Life on Kill" }, } }, + ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of Energy Shield on Kill", statOrder = { 1779 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1699499433] = { "Lose 1% of Energy Shield on Kill" }, } }, + ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 3155 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1556263668] = { "(20-30)% chance to Curse you with Punishment on Kill" }, } }, + ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 2192 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3112863846] = { "An additional Curse can be applied to you" }, } }, + ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1239 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, + ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 2267 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [969865219] = { "10% increased Damage taken while on Full Energy Shield" }, } }, + ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 2267 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [969865219] = { "15% increased Damage taken while on Full Energy Shield" }, } }, + ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1988 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2158060122] = { "40% of Lightning Damage Converted to Cold Damage" }, } }, + ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2960 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [288651645] = { "Your spells have 100% chance to Shock against Frozen Enemies" }, } }, + ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 3157, 3158, 3173 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "defences", "evasion", "damage", "physical", "attack" }, tradeHashes = { [3802517517] = { "" }, [1619923327] = { "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius" }, [915233352] = { "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius" }, [4113852051] = { "1% increased Evasion Rating per 3 Dexterity Allocated in Radius" }, } }, + ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 3160, 3161 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3802517517] = { "" }, } }, + ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 3159 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3802517517] = { "" }, [3446950357] = { "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage" }, } }, + ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 3162 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3802517517] = { "" }, [2605119037] = { "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value" }, } }, + ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 3163 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3802517517] = { "" }, [3194864913] = { "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield" }, } }, + ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 3168 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3802517517] = { "" }, [2865989731] = { "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius" }, } }, + ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning Damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 1404, 3167 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 2 Lightning Damage to Attacks" }, [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [3802517517] = { "" }, } }, + ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 3171 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2479374428] = { "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value" }, [3802517517] = { "" }, } }, + ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 3172 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3802517517] = { "" }, [842363566] = { "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus" }, } }, + ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 3048 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3915702459] = { "Gain 100 Life when you lose an Endurance Charge" }, } }, + ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2604 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(14-20)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2604 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-50)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2604 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(20-30)% increased Totem Placement speed" }, } }, + ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2517 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "40% increased Attack Damage against Bleeding Enemies" }, } }, + ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2517 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "30% increased Attack Damage against Bleeding Enemies" }, } }, + ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2517 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3944782785] = { "(25-40)% increased Attack Damage against Bleeding Enemies" }, } }, + ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2543 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [654274615] = { "Curse Enemies with Flammability on Hit" }, } }, + ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2556 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, + ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 727 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [243713911] = { "Grants Level 1 Lightning Warp Skill" }, } }, + ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "20% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "20% chance to Avoid being Stunned" }, } }, + ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 492 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2501237765] = { "Socketed Gems are supported by Level 1 Multistrike" }, } }, + ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2518 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1282978314] = { "30% increased Melee Damage against Bleeding Enemies" }, } }, + ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2518 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1282978314] = { "50% increased Melee Damage against Bleeding Enemies" }, } }, + ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (4-6) to (8-12) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 100 to 100 Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-30) to 40 Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-24) to (38-46) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (2-3) to (5-6) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-16) to (30-32) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageUnique__7"] = { affix = "", "Adds (9-12) to (19-22) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (9-12) to (19-22) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (25-30) to (40-50) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 100 to 100 Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (20-30) to 40 Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (2-3) to (5-6) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (40-60) to (90-110) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-39) to (54-60) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (24-28) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (120-140) to (150-170) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 100 to 100 Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-10) to (150-200) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (10-12) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (60-70) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (26-35) to (95-105) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (13-18) to (50-56) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (60-68) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-15) to (100-140) Lightning Damage to Spells" }, } }, + ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1239 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019020209] = { "(10-20)% increased Damage per Curse on you" }, } }, + ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (26-38) to (52-70) Chaos Damage", statOrder = { 1414 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (26-38) to (52-70) Chaos Damage" }, } }, + ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (43-55) to (81-104) Chaos Damage", statOrder = { 1414 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-55) to (81-104) Chaos Damage" }, } }, + ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (46-63) to (92-113) Chaos Damage", statOrder = { 1414 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (46-63) to (92-113) Chaos Damage" }, } }, + ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1455 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [856021430] = { "20% increased Damage with Movement Skills" }, } }, + ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1455 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [856021430] = { "(60-100)% increased Damage with Movement Skills" }, } }, + ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1456 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3683134121] = { "15% increased Attack Speed with Movement Skills" }, } }, + ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1456 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3683134121] = { "(10-20)% increased Attack Speed with Movement Skills" }, } }, + ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1776 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [893903361] = { "Gain 10 Life per Ignited Enemy Killed" }, } }, + ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1776 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [893903361] = { "Gain (200-300) Life per Ignited Enemy Killed" }, } }, + ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 2270 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [705686721] = { "10% increased Damage taken from Skeletons" }, } }, + ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 2271 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156764291] = { "10% increased Damage taken from Ghosts" }, } }, + ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2932 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798853218] = { "You cannot be Shocked while Frozen" }, } }, + ["LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8"] = { affix = "", "3% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1719 }, level = 1, group = "LifeLeechPhysicalAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1625933063] = { "3% of Attack Damage Leeched as Life against Bleeding Enemies" }, } }, + ["DisplaySocketedGemsSupportedByMinionLifeUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Minion Life", statOrder = { 515 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 15 Minion Life" }, } }, + ["DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 12 Multiple Projectiles", statOrder = { 516 }, level = 1, group = "DisplaySocketedGemsSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 12 Multiple Projectiles" }, } }, + ["DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 17 Minion Damage", statOrder = { 517 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 17 Minion Damage" }, } }, + ["DisplaySocketedGemsSupportedByIncreasedCriticalDamageUniqueRing37_"] = { affix = "", "Socketed Gems are Supported by Level 16 Increased Critical Damage", statOrder = { 518 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1771903158] = { "Socketed Gems are Supported by Level 16 Increased Critical Damage" }, } }, + ["DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 16 Minion Speed", statOrder = { 519 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [995332031] = { "Socketed Gems are Supported by Level 16 Minion Speed" }, } }, + ["ManaGainedOnHitAgainstTauntedEnemyUniqueShieldInt5"] = { affix = "", "Gain 3 Mana per Taunted Enemy Hit", statOrder = { 1807 }, level = 1, group = "ManaOnHitVsTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1834588299] = { "Gain 3 Mana per Taunted Enemy Hit" }, } }, + ["LifeGainedOnTauntingEnemyUniqueShieldStr4"] = { affix = "", "Gain +10 Life when you Taunt an Enemy", statOrder = { 1806 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3726536628] = { "Gain +10 Life when you Taunt an Enemy" }, } }, + ["LifeGainedOnTauntingEnemyUnique__1"] = { affix = "", "Gain +50 Life when you Taunt an Enemy", statOrder = { 1806 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3726536628] = { "Gain +50 Life when you Taunt an Enemy" }, } }, + ["IncreasedTauntDurationUniqueShieldStr4"] = { affix = "", "20% increased Taunt Duration", statOrder = { 1805 }, level = 1, group = "TauntDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3651611160] = { "20% increased Taunt Duration" }, } }, + ["OnslaughtOnKillingTauntedEnemyUniqueShieldDex7"] = { affix = "", "You gain Onslaught for 2 seconds on Killing Taunted Enemies", statOrder = { 2670 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2580101523] = { "You gain Onslaught for 2 seconds on Killing Taunted Enemies" }, } }, + ["OnslaughtOnKillingTauntedEnemyUnique__1"] = { affix = "", "You gain Onslaught for 1 seconds on Killing Taunted Enemies", statOrder = { 2670 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2580101523] = { "You gain Onslaught for 1 seconds on Killing Taunted Enemies" }, } }, + ["TotemAreaOfEffectUniqueShieldStr5"] = { affix = "", "15% increased Area of Effect for Skills used by Totems", statOrder = { 2607 }, level = 1, group = "TotemAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [869436347] = { "15% increased Area of Effect for Skills used by Totems" }, } }, + ["LifeLeechFromTotemSkillsUniqueShieldStr5"] = { affix = "", "1% of Damage Leeched as Life for Skills used by Totems", statOrder = { 2608 }, level = 1, group = "LifeLeechFromTotemSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2449723897] = { "1% of Damage Leeched as Life for Skills used by Totems" }, } }, + ["AnimateWeaponDurationUniqueTwoHandMace8"] = { affix = "", "30% less Animate Weapon Duration", statOrder = { 2829 }, level = 1, group = "AnimateWeaponDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [414991155] = { "30% less Animate Weapon Duration" }, } }, + ["NumberOfAdditionalAnimateWeaponCopiesUniqueTwoHandMace8"] = { affix = "", "Weapons you Animate create an additional copy", statOrder = { 2831 }, level = 1, group = "NumberOfAdditionalAnimateWeaponCopies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1266553505] = { "Weapons you Animate create an additional copy" }, } }, + ["DamageYouReflectGainedAsLifeUniqueHelmetDexInt6"] = { affix = "", "100% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2738 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [743992531] = { "100% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, + ["DamageYouReflectGainedAsLifeUnique__1"] = { affix = "", "10% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2738 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [743992531] = { "10% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, + ["ImmuneToChilledGroundUniqueBootsStrDex5"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10618 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, + ["ImmuneToBurningGroundUniqueBootsStr3"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10613 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, + ["UniqueUnaffectedByBurningGround__1"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10613 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, + ["ImmuneToShockedGroundUniqueBootsDexInt4"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10638 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, + ["UniqueUnaffectedByShockedGround__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10638 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, + ["ImmuneToDesecratedGroundUniqueBootsInt6"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10624 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, + ["UniqueUnaffectedByDesecratedGround__1"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10624 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, + ["UniqueUnaffectedByChilledGround__1"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10618 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, + ["ImmuneToShockedGroundUnique__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10638 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, + ["ShockedGroundWhenHitUniqueHelmetInt10"] = { affix = "", "20% chance to create Shocked Ground when Hit", statOrder = { 2603 }, level = 1, group = "ShockedGroundWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3355479537] = { "20% chance to create Shocked Ground when Hit" }, } }, + ["ShockedGroundWhenHitUnique__1"] = { affix = "", "Trigger Level 10 Shock Ground when Hit", statOrder = { 688 }, level = 1, group = "ShockedGroundWhenHitSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2668070396] = { "Trigger Level 10 Shock Ground when Hit" }, } }, + ["AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10"] = { affix = "", "Adds 1 to (60-80) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (60-80) Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks" }, } }, + ["RandomCurseOnHitChanceUniqueHelmetInt10"] = { affix = "", "20% chance to Curse non-Cursed Enemies with a random Hex on Hit", statOrder = { 9969 }, level = 1, group = "RandomCurseOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1726444796] = { "20% chance to Curse non-Cursed Enemies with a random Hex on Hit" }, } }, + ["RandomCurseWhenHitChanceUnique__1"] = { affix = "", "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit", statOrder = { 9970 }, level = 1, group = "RandomCurseWhenHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2674214144] = { "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit" }, } }, + ["CanInflictMultipleIgnitesUniqueRing38"] = { affix = "", "You can inflict an additional Ignite on each Enemy", statOrder = { 9657 }, level = 20, group = "CanInflictMultipleIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2837603657] = { "You can inflict an additional Ignite on each Enemy" }, } }, + ["EmberwakeLessBurningDamageUniqueRing38"] = { affix = "", "Ignited Enemies Burn (50-65)% slower", statOrder = { 2591 }, level = 1, group = "EmberwakeLessBurningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1619549198] = { "Ignited Enemies Burn (50-65)% slower" }, } }, + ["EmberwakeLessBurningDamageUnique__1"] = { affix = "", "35% less Burning Damage", statOrder = { 8126 }, level = 1, group = "EmberwakeLessBurningDamageNew", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3134513219] = { "35% less Burning Damage" }, } }, + ["GainPhasingOnVaalSkillUseUnique__1"] = { affix = "", "You gain Phasing for 10 seconds on using a Vaal Skill", statOrder = { 2955 }, level = 1, group = "GainPhasingOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [4089413281] = { "You gain Phasing for 10 seconds on using a Vaal Skill" }, } }, + ["MovementSpeedWhilePhasedUnique__1"] = { affix = "", "15% increased Movement Speed while Phasing", statOrder = { 2636 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "15% increased Movement Speed while Phasing" }, } }, + ["MovementSpeedWhilePhasedUnique__2"] = { affix = "", "10% increased Movement Speed while Phasing", statOrder = { 2636 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "10% increased Movement Speed while Phasing" }, } }, + ["LifePerRedSocket"] = { affix = "", "+30 to Maximum Life per Red Socket", statOrder = { 2743 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210076836] = { "+30 to Maximum Life per Red Socket" }, } }, + ["EnergyShieldPerBlueSocket"] = { affix = "", "+30 to Maximum Energy Shield per Blue Socket", statOrder = { 2754 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2906522048] = { "+30 to Maximum Energy Shield per Blue Socket" }, } }, + ["ManaPerGreenSocket"] = { affix = "", "+30 to Maximum Mana per Green Socket", statOrder = { 2749 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [896299992] = { "+30 to Maximum Mana per Green Socket" }, } }, + ["LifePerRedSocketUniqueRing39"] = { affix = "", "+(100-200) to Maximum Life per Red Socket", statOrder = { 2743 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4210076836] = { "+(100-200) to Maximum Life per Red Socket" }, } }, + ["EnergyShieldPerBlueSocketUniqueRing39"] = { affix = "", "+(100-200) to Maximum Energy Shield per Blue Socket", statOrder = { 2754 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2906522048] = { "+(100-200) to Maximum Energy Shield per Blue Socket" }, } }, + ["ManaPerGreenSocketUniqueRing39"] = { affix = "", "+(100-200) to Maximum Mana per Green Socket", statOrder = { 2749 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [896299992] = { "+(100-200) to Maximum Mana per Green Socket" }, } }, + ["ItemRarityPerWhiteSocketUniqueRing39"] = { affix = "", "60% increased Item Rarity per White Socket", statOrder = { 2763 }, level = 1, group = "ItemRarityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144675621] = { "60% increased Item Rarity per White Socket" }, } }, + ["IncreasedDamageOnZeroEnergyShieldUniqueShieldStrInt8"] = { affix = "", "(20-30)% increased Damage while you have no Energy Shield", statOrder = { 2768 }, level = 1, group = "IncreasedDamageOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [414379784] = { "(20-30)% increased Damage while you have no Energy Shield" }, } }, + ["IncreasedArmourOnZeroEnergyShieldUnique__1"] = { affix = "", "100% increased Global Armour while you have no Energy Shield", statOrder = { 2769 }, level = 1, group = "IncreasedArmourOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3827349913] = { "100% increased Global Armour while you have no Energy Shield" }, } }, + ["UnholyMightOnBlockChanceUniqueShieldStrInt8"] = { affix = "", "30% chance to gain Unholy Might on Block for 3 seconds", statOrder = { 3080 }, level = 1, group = "UnholyMightOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [414622266] = { "30% chance to gain Unholy Might on Block for 3 seconds" }, } }, + ["UnholyMightOnBlockChanceUnique__1"] = { affix = "", "Gain Unholy Might on Block for 10 seconds", statOrder = { 3080 }, level = 1, group = "UnholyMightOnBlockChanceDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3217895241] = { "" }, [414622266] = { "Gain Unholy Might on Block for 3 seconds" }, } }, + ["IncreasedDamageOnBurningGroundUniqueBootsInt6"] = { affix = "", "50% increased Damage on Burning Ground", statOrder = { 2170 }, level = 1, group = "IncreasedDamageOnBurningGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3098087057] = { "50% increased Damage on Burning Ground" }, } }, + ["LifeRegenerationPercentOnChilledGroundUniqueBootsInt6"] = { affix = "", "Regenerate 2% of Life per second on Chilled Ground", statOrder = { 2171 }, level = 1, group = "LifeRegenerationPercentOnChilledGround", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [710105516] = { "Regenerate 2% of Life per second on Chilled Ground" }, } }, + ["MovementVelocityOnShockedGroundUniqueBootsInt6_"] = { affix = "", "20% increased Movement Speed on Shocked Ground", statOrder = { 2169 }, level = 1, group = "MovementVelocityOnShockedGround", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3678841229] = { "20% increased Movement Speed on Shocked Ground" }, } }, + ["ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8"] = { affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.4% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechPermyriadUnique__1"] = { affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechPermyriadUnique__2"] = { affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } }, + ["ChaosDamageLifeLeechPermyriadUnique__3"] = { affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.4-0.5)% of Chaos Damage Leeched as Life" }, } }, + ["PhysicalDamageAddedAsChaosImplicitQuiver11New"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 69, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (10-15)% of Physical Damage as Extra Chaos Damage" }, } }, + ["PhysicalDamageAddedAsChaosUniqueShiledStrInt8"] = { affix = "", "Gain (5-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 1, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (5-10)% of Physical Damage as Extra Chaos Damage" }, } }, + ["ItemQuantityPerWhiteSocketUniqueRing39_"] = { affix = "", "15% increased Item Quantity per White Socket", statOrder = { 2760 }, level = 75, group = "ItemQuantityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2340173293] = { "15% increased Item Quantity per White Socket" }, } }, + ["ChaosDamageDoesNotBypassESDuringFlaskEffectUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield during effect", statOrder = { 984 }, level = 1, group = "ChaosDamageDoesNotBypassESDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2229840047] = { "Chaos Damage taken does not bypass Energy Shield during effect" }, } }, + ["RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUseUnique__1"] = { affix = "", "Removes all but one Life on use", "Removed life is Regenerated as Energy Shield over 2 seconds", statOrder = { 3178, 3178.1 }, level = 1, group = "RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4149482999] = { "" }, [887466725] = { "" }, } }, + ["TalismanHasOneSocket_"] = { affix = "", "Has 1 Socket", statOrder = { 70 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["TalismanIncreasedMana"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, + ["TalismanIncreasedFireDamage"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["TalismanIncreasedColdDamage"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, + ["TalismanIncreasedLightningDamage"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, + ["TalismanIncreasedPhysicalDamage"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, + ["TalismanIncreasedChaosDamage"] = { affix = "", "(19-31)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(19-31)% increased Chaos Damage" }, } }, + ["TalismanAdditionalZombie"] = { affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2183 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } }, + ["TalismanIncreasedCriticalChance"] = { affix = "", "(40-50)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-50)% increased Global Critical Strike Chance" }, } }, + ["TalismanIncreasedStrength"] = { affix = "", "(8-14)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(8-14)% increased Strength" }, } }, + ["TalismanIncreasedDexterity"] = { affix = "", "(8-14)% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-14)% increased Dexterity" }, } }, + ["TalismanIncreasedIntelligence"] = { affix = "", "(8-14)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-14)% increased Intelligence" }, } }, + ["TalismanIncreasedEnergyShield"] = { affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, + ["TalismanIncreasedLife"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-12)% increased maximum Life" }, } }, + ["TalismanIncreasedItemQuantity"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1615 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(6-10)% increased Quantity of Items found" }, } }, + ["TalismanIncreasedAllAttributes"] = { affix = "", "(12-16)% increased Attributes", statOrder = { 1206 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(12-16)% increased Attributes" }, } }, + ["TalismanGlobalDamageOverTimeMultiplier"] = { affix = "", "+(12-18)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-18)% to Damage over Time Multiplier" }, } }, + ["AllAttributesPercentUnique__1"] = { affix = "", "(5-7)% increased Attributes", statOrder = { 1206 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(5-7)% increased Attributes" }, } }, + ["AllAttributesPercentUnique__2"] = { affix = "", "(5-15)% increased Attributes", statOrder = { 1206 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(5-15)% increased Attributes" }, } }, + ["TalismanIncreasedDamage"] = { affix = "", "(25-35)% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(25-35)% increased Damage" }, } }, + ["TalismanIncreasedCriticalStrikeMultiplier_"] = { affix = "", "+(24-36)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(24-36)% to Global Critical Strike Multiplier" }, } }, + ["TalismanDamageDealtAddedAsRandomElement"] = { affix = "", "Gain (6-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 1, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (6-12)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["TalismanIncreasedAreaOfEffect"] = { affix = "", "(5-8)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(5-8)% increased Area of Effect" }, } }, + ["TalismanFireTakenAsCold"] = { affix = "", "50% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3211 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "50% of Fire Damage from Hits taken as Cold Damage" }, } }, + ["FireDamageTakenAsColdUnique___1"] = { affix = "", "20% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3211 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "20% of Fire Damage from Hits taken as Cold Damage" }, } }, + ["FireDamageTakenAsColdUnique___2_"] = { affix = "", "30% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3211 }, level = 62, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [2522672898] = { "30% of Fire Damage from Hits taken as Cold Damage" }, } }, + ["TalismanFireTakenAsLightning"] = { affix = "", "50% of Fire Damage from Hits taken as Lightning Damage", statOrder = { 3212 }, level = 1, group = "FireDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [1504091975] = { "50% of Fire Damage from Hits taken as Lightning Damage" }, } }, + ["TalismanColdTakenAsFire"] = { affix = "", "50% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3213 }, level = 1, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "50% of Cold Damage from Hits taken as Fire Damage" }, } }, + ["TalismanColdTakenAsLightning"] = { affix = "", "50% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 3214 }, level = 1, group = "ColdDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [1313503107] = { "50% of Cold Damage from Hits taken as Lightning Damage" }, } }, + ["TalismanLightningTakenAsCold"] = { affix = "", "50% of Lightning Damage from Hits taken as Cold Damage", statOrder = { 3218 }, level = 1, group = "LightningDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [1017730114] = { "50% of Lightning Damage from Hits taken as Cold Damage" }, } }, + ["TalismanLightningTakenAsFire"] = { affix = "", "50% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 3216 }, level = 1, group = "LightningDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [3375859421] = { "50% of Lightning Damage from Hits taken as Fire Damage" }, } }, + ["TalismanReducedPhysicalDamageTaken_"] = { affix = "", "(4-6)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(4-6)% additional Physical Damage Reduction" }, } }, + ["TalismanIncreasedSkillEffectDuration"] = { affix = "", "(20-25)% increased Skill Effect Duration", statOrder = { 1918 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(20-25)% increased Skill Effect Duration" }, } }, + ["TalismanPercentLifeRegeneration"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of Life per second" }, } }, + ["TalismanChanceToFreezeShockIgnite_"] = { affix = "", "(4-6)% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "(4-6)% chance to Freeze, Shock and Ignite" }, } }, + ["TalismanFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on Kill" }, } }, + ["TalismanPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on Kill" }, } }, + ["TalismanEnduranceChargeOnKill_"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on Kill" }, } }, + ["TalismanGlobalDefensesPercent"] = { affix = "", "(15-25)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(15-25)% increased Global Defences" }, } }, + ["TalismanFishBiteSensitivity"] = { affix = "", "(30-40)% increased Fish Bite Sensitivity", statOrder = { 3619 }, level = 1, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [1296614065] = { "(30-40)% increased Fish Bite Sensitivity" }, } }, + ["FishBiteSensitivityUnique__1"] = { affix = "", "(20-40)% increased Fish Bite Sensitivity", statOrder = { 3619 }, level = 48, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [1296614065] = { "(20-40)% increased Fish Bite Sensitivity" }, } }, + ["TalismanAttackAndCastSpeed"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(6-10)% increased Attack and Cast Speed" }, } }, + ["TalismanSpellDamage"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, + ["TalismanAttackDamage"] = { affix = "", "(20-30)% increased Attack Damage", statOrder = { 1221 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-30)% increased Attack Damage" }, } }, + ["TalismanPierceChance"] = { affix = "", "Projectiles Pierce (2-3) additional Targets", statOrder = { 10505 }, level = 1, group = "OldTalismanPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2902845638] = { "Projectiles Pierce (2-3) additional Targets" }, } }, + ["TalismanAdditionalPierce"] = { affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["TalismanEnchantAreaOfEffect"] = { affix = "", "16% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "16% increased Area of Effect" }, } }, + ["TalismanEnchantMaximumLifeIncreasePercent"] = { affix = "", "15% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "15% increased maximum Life" }, } }, + ["TalismanEnchantAdditionalPierce"] = { affix = "", "Projectiles Pierce 3 additional Targets", statOrder = { 1813 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } }, + ["TalismanEnchantMaximumLifeAddedAsArmour"] = { affix = "", "Gain 15% of Maximum Life as Extra Armour", statOrder = { 9284 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4118694562] = { "Gain 15% of Maximum Life as Extra Armour" }, } }, + ["TalismanEnchantCriticalStrikeMultiplier"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+40% to Global Critical Strike Multiplier" }, } }, + ["TalismanEnchantProjectileSpeed"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, + ["TalismanEnchantMaximumManaIncreasePercent"] = { affix = "", "30% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% increased maximum Mana" }, } }, + ["TalismanEnchantMovementVelocity"] = { affix = "", "12% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "12% increased Movement Speed" }, } }, + ["TalismanEnchantAllDefences"] = { affix = "", "30% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "30% increased Global Defences" }, } }, + ["TalismanEnchantIgnoreEnemyArmour"] = { affix = "", "Hits ignore Enemy Physical Damage Reduction", statOrder = { 7269 }, level = 1, group = "IgnoreEnemyArmour", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [942531362] = { "Hits ignore Enemy Physical Damage Reduction" }, } }, + ["TalismanEnchantFireResistancePenetration"] = { affix = "", "Damage Penetrates 15% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 15% Fire Resistance" }, } }, + ["TalismanEnchantWitheredEffect"] = { affix = "", "35% increased Effect of Withered", statOrder = { 10782 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2545584555] = { "35% increased Effect of Withered" }, } }, + ["TalismanEnchantLightningResistancePenetration"] = { affix = "", "Damage Penetrates 15% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 15% Lightning Resistance" }, } }, + ["TalismanEnchantColdResistancePenetration"] = { affix = "", "Damage Penetrates 15% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 15% Cold Resistance" }, } }, + ["TalismanEnchantMaximumFireResist"] = { affix = "", "+4% to maximum Fire Resistance", statOrder = { 1646 }, level = 35, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, } }, + ["TalismanEnchantMaximumColdResist"] = { affix = "", "+4% to maximum Cold Resistance", statOrder = { 1652 }, level = 35, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, } }, + ["TalismanEnchantMaximumLightningResistance"] = { affix = "", "+4% to maximum Lightning Resistance", statOrder = { 1657 }, level = 35, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, } }, + ["TalismanEnchantMinimumEndurancePowerFrenzyCharges"] = { affix = "", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9390 }, level = 35, group = "MinimumEndurancePowerFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "power_charge", "frenzy_charge" }, tradeHashes = { [66303477] = { "+1 to Minimum Endurance, Frenzy and Power Charges" }, } }, + ["TalismanEnchantGlobalCooldownRecovery"] = { affix = "", "20% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 35, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "20% increased Cooldown Recovery Rate" }, } }, + ["TalismanEnchantUnaffectedByIgnite"] = { affix = "", "Unaffected by Ignite", statOrder = { 10630 }, level = 35, group = "UnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, + ["TalismanEnchantWarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10727 }, level = 35, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, + ["TalismanEnchantMarkEffect"] = { affix = "", "30% increased Effect of your Marks", statOrder = { 2624 }, level = 35, group = "MarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "30% increased Effect of your Marks" }, } }, + ["TalismanEnchantMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 35, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["TalismanEnchantIncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 35, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["TalismanEnchantMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 35, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["TalismanEnchantMaximumSpectreCount"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2184 }, level = 35, group = "MaximumSpectreCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["TalismanEnchantGlobalHeraldGemlevel"] = { affix = "", "+2 to Level of all Herald Skill Gems", statOrder = { 7229 }, level = 35, group = "GlobalHeraldGemlevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [776287420] = { "+2 to Level of all Herald Skill Gems" }, } }, + ["TalismanEnchantUtilityFlaskPassiveChargeGain"] = { affix = "", "Utility Flasks gain 2 Charges every 3 seconds", statOrder = { 10670 }, level = 35, group = "UtilityFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567919918] = { "Utility Flasks gain 2 Charges every 3 seconds" }, } }, + ["TalismanEnchantGlobalDamageOverTimeMultiplier"] = { affix = "", "+20% to Damage over Time Multiplier", statOrder = { 1265 }, level = 35, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+20% to Damage over Time Multiplier" }, } }, + ["TalismanEnchantActionSpeedReduction"] = { affix = "", "8% increased Action Speed", statOrder = { 4571 }, level = 45, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2878959938] = { "8% increased Action Speed" }, } }, + ["TalismanEnchantAdditionalProjectiles"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1815 }, level = 45, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, + ["TalismanEnchantColdAndLightningDamageTakenAsFire"] = { affix = "", "100% of Cold and Lightning Damage from Hits taken as Fire Damage", statOrder = { 3215 }, level = 45, group = "ColdAndLightningDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3554587210] = { "100% of Cold and Lightning Damage from Hits taken as Fire Damage" }, } }, + ["TalismanEnchantMinionDotMultiplier"] = { affix = "", "Minions have +30% to Damage over Time Multiplier", statOrder = { 1266 }, level = 45, group = "MinionDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2759003954] = { "Minions have +30% to Damage over Time Multiplier" }, } }, + ["TalismanEnchantFreezeEnemiesWhenHitChance"] = { affix = "", "20% chance to Freeze Enemies for 1 second when they Hit you", statOrder = { 5757 }, level = 45, group = "FreezeEnemiesWhenHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2168861013] = { "20% chance to Freeze Enemies for 1 second when they Hit you" }, } }, + ["TalismanEnchantGlobalSkillGemQuality"] = { affix = "", "+15% to Quality of all Skill Gems", statOrder = { 4679 }, level = 45, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+15% to Quality of all Skill Gems" }, } }, + ["TalismanEnchantPercentageAllAttributes"] = { affix = "", "15% increased Attributes", statOrder = { 1206 }, level = 45, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "15% increased Attributes" }, } }, + ["TalismanEnchantGlobalSkillGemLevel"] = { affix = "", "+1 to Level of all Skill Gems", statOrder = { 4678 }, level = 45, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } }, + ["TalismanEnchantCrabAspectBuffEffect"] = { affix = "", "100% increased Aspect of the Crab Buff Effect", statOrder = { 4839 }, level = 56, group = "CrabAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1883691564] = { "100% increased Aspect of the Crab Buff Effect" }, } }, + ["TalismanEnchantSpiderAspectDebuffEffect"] = { affix = "", "100% increased Aspect of the Spider Debuff Effect", statOrder = { 4840 }, level = 56, group = "SpiderAspectDebuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2030415947] = { "100% increased Aspect of the Spider Debuff Effect" }, } }, + ["TalismanEnchantAvianAspectBuffEffect"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4835 }, level = 56, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1746347097] = { "100% increased Aspect of the Avian Buff Effect" }, } }, + ["TalismanEnchantCatAspectBuffEffect"] = { affix = "", "100% increased Aspect of the Cat Buff Effect", statOrder = { 4838 }, level = 56, group = "CatAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4065740293] = { "100% increased Aspect of the Cat Buff Effect" }, } }, + ["TalismanEnchantGreatwolf"] = { affix = "", "44% increased Damage per Moon Rite completed", statOrder = { 7009 }, level = 1, group = "GreatwolfDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [622110632] = { "44% increased Damage per Moon Rite completed" }, } }, + ["DamageTakeFromManaBeforeLifePerPowerChargeUnique__1"] = { affix = "", "1% of Damage is taken from Mana before Life per Power Charge", statOrder = { 3200 }, level = 40, group = "DamageTakeFromManaBeforeLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1325047894] = { "1% of Damage is taken from Mana before Life per Power Charge" }, } }, + ["IncreasedManaRegenerationPerPowerChargeUnique__1"] = { affix = "", "10% increased Mana Regeneration Rate per Power Charge", statOrder = { 2002 }, level = 1, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "10% increased Mana Regeneration Rate per Power Charge" }, } }, + ["CriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "40% reduced Critical Strike Chance per Power Charge", statOrder = { 3201 }, level = 1, group = "CriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2102212273] = { "40% reduced Critical Strike Chance per Power Charge" }, } }, + ["IncreasedFireballRadiusUniqueJewel57"] = { affix = "", "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius", statOrder = { 3181 }, level = 1, group = "IncreasedFireballRadiusAtLongRangeJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3802517517] = { "" }, [1657716311] = { "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius" }, [1321847001] = { "" }, } }, + ["AdditionalGlacialCascadeSequenceUniqueJewel58"] = { affix = "", "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius", statOrder = { 3182, 3183, 3189 }, level = 1, group = "AdditionalGlacialCascadeSequenceJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1966815700] = { "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius" }, [2797049742] = { "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius" }, [3802517517] = { "" }, [741102575] = { "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius" }, } }, + ["AnimateBowsAndWandsUnique____70"] = { affix = "", "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons", statOrder = { 3290 }, level = 1, group = "AnimateBowsAndWandsJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3585572043] = { "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons" }, } }, + ["ExtraArrowForSplitArrowUniqueJewel60"] = { affix = "", "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius", "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius", statOrder = { 3188, 3191 }, level = 1, group = "ExtraArrowForSplitArrowJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3802517517] = { "" }, [1872333105] = { "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius" }, [3944719053] = { "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius" }, } }, + ["FlaskChargeRecoveryDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Flask Charges gained during any Flask Effect", statOrder = { 3219 }, level = 1, group = "FlaskChargeRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [662803072] = { "50% increased Flask Charges gained during any Flask Effect" }, } }, + ["FlaskChargeRecoveryDuringFlaskEffectUnique__2"] = { affix = "", "30% reduced Flask Charges gained during any Flask Effect", statOrder = { 3219 }, level = 1, group = "FlaskChargeRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [662803072] = { "30% reduced Flask Charges gained during any Flask Effect" }, } }, + ["ManaRegenerationDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Mana Regeneration Rate during any Flask Effect", statOrder = { 3220 }, level = 14, group = "ManaRegenerationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2993091567] = { "50% increased Mana Regeneration Rate during any Flask Effect" }, } }, + ["EnemiesLoseLifePlayerLeechesUnique__1"] = { affix = "", "200% of Life Leech applies to Enemies as Chaos Damage", statOrder = { 3221 }, level = 55, group = "EnemiesLoseLifePlayerLeeches", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "life", "damage", "chaos" }, tradeHashes = { [768537671] = { "200% of Life Leech applies to Enemies as Chaos Damage" }, } }, + ["MovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "15% increased Movement Speed during any Flask Effect", statOrder = { 3222 }, level = 1, group = "MovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "15% increased Movement Speed during any Flask Effect" }, } }, + ["NoExtraBleedDamageWhileMovingUniqueAmulet25"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3228 }, level = 69, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, + ["NoExtraBleedDamageWhileMovingUnique__1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3228 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, + ["AttacksHaveBloodMagic__1"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10999 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3358745905] = { "Attacks Cost Life instead of Mana" }, } }, + ["SocketedTrapSkillsCreateSmokeCloudWhenDetonated__1"] = { affix = "", "Traps from Socketed Skills create a Smoke Cloud when triggered", statOrder = { 624 }, level = 1, group = "SocketedTrapSkillsCreateSmokeCloudWhenDetonated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263384098] = { "Traps from Socketed Skills create a Smoke Cloud when triggered" }, } }, + ["FireDamageToBlindEnemies__1"] = { affix = "", "(30-50)% increased Fire Damage with Hits and Ailments against Blinded Enemies", statOrder = { 3256 }, level = 1, group = "FireDamageToBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1601181226] = { "(30-50)% increased Fire Damage with Hits and Ailments against Blinded Enemies" }, } }, + ["SpellDamageTakenFromBlindEnemies__1"] = { affix = "", "30% reduced Spell Damage taken from Blinded Enemies", statOrder = { 3257 }, level = 1, group = "SpellDamageTakenFromBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1165847826] = { "30% reduced Spell Damage taken from Blinded Enemies" }, } }, + ["GlacialHammerThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer", statOrder = { 3261, 3261.1 }, level = 1, group = "GlacialHammerThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "drop" }, tradeHashes = { [1250317014] = { "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer" }, [3802517517] = { "" }, } }, + ["SpectralThrowThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits", statOrder = { 3262 }, level = 1, group = "SpectralThrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [811386429] = { "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits" }, } }, + ["ViperStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy", statOrder = { 3264 }, level = 1, group = "ViperStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [695031402] = { "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy" }, } }, + ["ViperStrikeThresholdJewel__2"] = { affix = "", "With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit", statOrder = { 8239 }, level = 1, group = "ViperStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [235847153] = { "With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit" }, } }, + ["HeavyStrikeThresholdJewel___1"] = { affix = "", "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage", statOrder = { 3265, 3265.1 }, level = 1, group = "HeavyStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [1025503586] = { "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage" }, } }, + ["ShrapnelShotThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage", statOrder = { 3387, 8229 }, level = 1, group = "ShrapnelShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [1170556324] = { "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage" }, [3945934607] = { "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect" }, } }, + ["BurningArrowThresholdJewel_2"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2619 }, level = 1, group = "BurningArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [223497523] = { "" }, [3173052379] = { "Ignited Enemies Killed by your Hits are destroyed" }, } }, + ["CleaveThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Cleave Fortify", "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre", statOrder = { 3381, 3382, 3382.1 }, level = 1, group = "CleaveThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [1539696482] = { "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre" }, [1248507170] = { "With at least 40 Strength in Radius, Hits with Cleave Fortify" }, } }, + ["FreezingPulseThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently", statOrder = { 3390, 3391, 3391.1 }, level = 1, group = "FreezingPulseThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3802517517] = { "" }, [2098320128] = { "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles" }, [2074744008] = { "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently" }, } }, + ["IceShotThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", statOrder = { 8196, 8197 }, level = 1, group = "IceShotThresholdJewelOld", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3442130499] = { "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect" }, [804496834] = { "With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets" }, [3802517517] = { "" }, } }, + ["IceShotThresholdJewel__2"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets", statOrder = { 8197, 8198 }, level = 1, group = "IceShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3442130499] = { "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect" }, [3103494675] = { "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets" }, [3802517517] = { "" }, } }, + ["MoltenStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles", "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect", statOrder = { 8210, 8211 }, level = 1, group = "MoltenStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [2845889407] = { "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles" }, [1163758055] = { "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect" }, } }, + ["MoltenStrikeThresholdJewel__2"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time", "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles", statOrder = { 8086, 8087, 8088 }, level = 1, group = "MoltenStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [670814047] = { "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground" }, [786380548] = { "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles" }, [2295439133] = { "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time" }, [3802517517] = { "" }, } }, + ["FrostBladesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance", "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed", statOrder = { 8189, 8189.1, 8190 }, level = 1, group = "FrostBladesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "speed" }, tradeHashes = { [3802517517] = { "" }, [2092708508] = { "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed" }, [2412100590] = { "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance" }, } }, + ["DualStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon", "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets", statOrder = { 8173, 8173.1, 8175, 8175.1 }, level = 1, group = "DualStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [3603019813] = { "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets" }, [3765671129] = { "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon" }, } }, + ["DualStrikeThresholdJewelAxe"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for", "4 seconds while wielding an Axe", statOrder = { 8172, 8172.1 }, level = 1, group = "DualStrikeThresholdJewelAxe", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [100088509] = { "With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for", "4 seconds while wielding an Axe" }, } }, + ["DualStrikeThresholdJewelClaw"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has (10-15)% increased Attack", "Speed while wielding a Claw", statOrder = { 8170, 8170.1 }, level = 1, group = "DualStrikeThresholdJewelClaw", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1795260970] = { "With at least 40 Dexterity in Radius, Dual Strike has (10-15)% increased Attack", "Speed while wielding a Claw" }, } }, + ["DualStrikeThresholdJewelDagger"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has +(20-30)% to Critical Strike", "Multiplier while wielding a Dagger", statOrder = { 8171, 8171.1 }, level = 1, group = "DualStrikeThresholdJewelDagger", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1503812817] = { "With at least 40 Dexterity in Radius, Dual Strike has +(20-30)% to Critical Strike", "Multiplier while wielding a Dagger" }, } }, + ["DualStrikeThresholdJewelMace"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage", "to surrounding targets while wielding a Mace", statOrder = { 8174, 8174.1 }, level = 1, group = "DualStrikeThresholdJewelMace", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2562474285] = { "With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage", "to surrounding targets while wielding a Mace" }, } }, + ["DualStrikeThresholdJewelSword_"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased", "Accuracy Rating while wielding a Sword", statOrder = { 8169, 8169.1 }, level = 1, group = "DualStrikeThresholdJewelSword", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2869420801] = { "With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased", "Accuracy Rating while wielding a Sword" }, } }, + ["DualStrikeThresholdJewel__2_"] = { affix = "", "(10-15)% increased Attack Damage", statOrder = { 1221 }, level = 1, group = "DualStrikeThresholdJewelDamageRadius", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3802517517] = { "" }, [2843214518] = { "(10-15)% increased Attack Damage" }, } }, + ["FrostboltThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second", statOrder = { 8191, 8192 }, level = 1, group = "FrostboltThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2727977666] = { "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second" }, [3790108551] = { "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles" }, } }, + ["EtherealKnivesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle", statOrder = { 3384 }, level = 1, group = "EtherealKnivesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2511280084] = { "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle" }, [2822821681] = { "" }, } }, + ["LightningTendrilsThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit", statOrder = { 8205 }, level = 1, group = "LightningTendrilsThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2958270185] = { "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit" }, } }, + ["MagmaOrbThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 8206, 8207, 8207.1 }, level = 1, group = "MagmaOrbThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [160933750] = { "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain" }, [2542542825] = { "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile" }, } }, + ["MagmaOrbThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage", "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 8084, 8085, 8207, 8207.1 }, level = 1, group = "MagmaOrbThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1141756390] = { "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain" }, [3131110290] = { "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage" }, [160933750] = { "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain" }, [3802517517] = { "" }, } }, + ["GlacialHammerThresholdJewel_2"] = { affix = "", "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets", "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage", statOrder = { 3385, 3385.1, 3386, 3386.1 }, level = 1, group = "GlacialHammerThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [3802517517] = { "" }, [3565558422] = { "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets" }, [3738331820] = { "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage" }, } }, + ["BlightThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling", statOrder = { 8155 }, level = 1, group = "BlightThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [3240043456] = { "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling" }, } }, + ["BlightThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8151, 8153 }, level = 1, group = "BlightThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [2181499453] = { "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration" }, [435737693] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, } }, + ["BlightThresholdJewel_3"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8150, 8153 }, level = 1, group = "BlightThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [2181499453] = { "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration" }, [3881647885] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, } }, + ["BlightThresholdJewel_4"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed", statOrder = { 8150, 8152 }, level = 1, group = "BlightThresholdJewel4", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3881647885] = { "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds" }, [222829382] = { "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed" }, } }, + ["RaiseZombieThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate", "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage", statOrder = { 8240, 8240.1, 8241, 8241.1 }, level = 1, group = "RaiseZombieThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [781633505] = { "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage" }, [3802517517] = { "" }, [1097026492] = { "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate" }, } }, + ["SparkThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles", statOrder = { 3389 }, level = 1, group = "SparkThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1645248914] = { "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles" }, [3802517517] = { "" }, [2333775394] = { "" }, } }, + ["SparkThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle", statOrder = { 8232 }, level = 1, group = "SparkThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1650632809] = { "" }, [935386993] = { "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle" }, } }, + ["FireTrapThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap", statOrder = { 8188 }, level = 1, group = "FireTrapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1309764735] = { "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap" }, [3802517517] = { "" }, } }, + ["SplitArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel", statOrder = { 8237 }, level = 1, group = "SplitArrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [1385108739] = { "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel" }, [1304044957] = { "" }, } }, + ["GlacialCascadeThresholdJewel1"] = { affix = "", "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst", "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage", statOrder = { 8193, 8194, 8194.1 }, level = 1, group = "GlacialCascadeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1478305007] = { "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage" }, [1367987042] = { "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst" }, } }, + ["CausticArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits", statOrder = { 8158 }, level = 1, group = "CausticArrowThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1689539796] = { "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits" }, [3802517517] = { "" }, } }, + ["CausticArrowThresholdJewel2"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 40% increased Damage over Time", statOrder = { 8157 }, level = 1, group = "CausticArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [101715298] = { "With at least 40 Dexterity in Radius, Caustic Arrow deals 40% increased Damage over Time" }, } }, + ["CausticArrowThresholdJewel3"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow has a 50% chance on Hit to Poison Enemies on Caustic Ground", statOrder = { 8156 }, level = 1, group = "CausticArrowThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [2428035730] = { "With at least 40 Dexterity in Radius, Caustic Arrow has a 50% chance on Hit to Poison Enemies on Caustic Ground" }, } }, + ["SpectralShieldThrowThresholdJewel1_"] = { affix = "", "+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield", statOrder = { 9685 }, level = 1, group = "ShieldCritChancePerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3285400610] = { "+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield" }, [223497523] = { "" }, } }, + ["SpectralShieldThrowThresholdJewel2"] = { affix = "", "+4% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield", statOrder = { 9686 }, level = 1, group = "ShieldCritMultiplierPerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [240790947] = { "+4% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" }, } }, + ["IncreasedStunThresholdUnique__1_"] = { affix = "", "20% increased Stun Threshold", statOrder = { 3308 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% increased Stun Threshold" }, } }, + ["StunThresholdBasedOnManaUnique__1"] = { affix = "", "Stun Threshold is based on 500% of your Mana instead of Life", statOrder = { 3307 }, level = 1, group = "StunThresholdBasedOnMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2280488002] = { "Stun Threshold is based on 500% of your Mana instead of Life" }, } }, + ["PowerChargeOnCriticalStrikeChanceUnique__1"] = { affix = "", "25% chance to gain a Power Charge on Critical Strike", statOrder = { 1853 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Strike" }, } }, + ["NoLifeRegenerationUnique___1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2294 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, + ["NeverBlockUnique__1"] = { affix = "", "Cannot Block", statOrder = { 3301 }, level = 1, group = "NeverBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4127720801] = { "Cannot Block" }, } }, + ["LocalShieldHasNoBlockChanceUnique__1"] = { affix = "", "No Chance to Block", statOrder = { 3302 }, level = 1, group = "LocalShieldHasNoBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1023752508] = { "No Chance to Block" }, } }, + ["LocalFlaskOnslaughtPerFrenzyChargeUnique__1"] = { affix = "", "Gain Onslaught for 3 seconds per Frenzy Charge consumed on use", statOrder = { 912 }, level = 1, group = "LocalFlaskOnslaughtPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [661376813] = { "Gain Onslaught for 3 seconds per Frenzy Charge consumed on use" }, } }, + ["GrantUniqueBuff__1"] = { affix = "", "Gain Her Blessing for 3 seconds when you Ignite an Enemy", statOrder = { 3314 }, level = 66, group = "HerBlessingOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4203400545] = { "Gain Her Blessing for 3 seconds when you Ignite an Enemy" }, } }, + ["UniqueConditionOnBuff__1"] = { affix = "", "100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing", statOrder = { 3316 }, level = 66, group = "AvoidAilmentsDuringHerBlessing", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1093704472] = { "100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing" }, } }, + ["UniqueConditionOnBuff__2"] = { affix = "", "20% increased Attack and Movement Speed with Her Blessing", statOrder = { 3317 }, level = 66, group = "AttackAndMoveSpeedDuringHerBlessing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2968804751] = { "20% increased Attack and Movement Speed with Her Blessing" }, } }, + ["UniqueEffectOnBuff__3"] = { affix = "", "33% chance to Blind nearby Enemies when gaining Her Blessing", statOrder = { 3315 }, level = 66, group = "BlindOnGainingHerBlessing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2327728343] = { "33% chance to Blind nearby Enemies when gaining Her Blessing" }, } }, + ["RallyingCryThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently", statOrder = { 3297 }, level = 1, group = "RallyingCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [303219716] = { "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently" }, [3802517517] = { "" }, } }, + ["VigilantStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds", statOrder = { 3284 }, level = 1, group = "VigilantStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [530280833] = { "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds" }, [3802517517] = { "" }, } }, + ["ColdsnapThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area", "With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges", statOrder = { 8164, 8164.1 }, level = 1, group = "ColdSnapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2560038623] = { "With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area", "With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges" }, [3802517517] = { "" }, } }, + ["FireballThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect", statOrder = { 3286 }, level = 1, group = "FireballThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [24977021] = { "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect" }, } }, + ["FireballThresholdJewel__2_"] = { affix = "", "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius", statOrder = { 3287 }, level = 1, group = "FireballThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1351893427] = { "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius" }, [3802517517] = { "" }, } }, + ["FireballThresholdJewel__3"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball cannot ignite", "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch", statOrder = { 8081, 8082 }, level = 1, group = "FireballThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [480975218] = { "With at least 40 Intelligence in Radius, Fireball cannot ignite" }, [1482194094] = { "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch" }, } }, + ["ShockNearbyEnemiesDuringFlaskEffect___1"] = { affix = "", "Shocks nearby Enemies during Effect, causing 10% increased Damage taken", statOrder = { 1078 }, level = 85, group = "ShockNearbyEnemiesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [3446170049] = { "Shocks nearby Enemies during Effect, causing 10% increased Damage taken" }, } }, + ["ShockSelfDuringFlaskEffect__1"] = { affix = "", "You are Shocked during Effect, causing 50% increased Damage taken", statOrder = { 1079 }, level = 1, group = "ShockSelfDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [1187803783] = { "You are Shocked during Effect, causing 50% increased Damage taken" }, } }, + ["LightningLifeLeechDuringFlaskEffect__1"] = { affix = "", "20% of Lightning Damage Leeched as Life during Effect", statOrder = { 1086 }, level = 1, group = "LightningLifeLeechDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "elemental", "lightning" }, tradeHashes = { [2687254633] = { "20% of Lightning Damage Leeched as Life during Effect" }, } }, + ["LightningManaLeechDuringFlaskEffect__1"] = { affix = "", "20% of Lightning Damage Leeched as Mana during Effect", statOrder = { 1087 }, level = 1, group = "LightningManaLeechDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana", "elemental", "lightning" }, tradeHashes = { [1454377049] = { "20% of Lightning Damage Leeched as Mana during Effect" }, } }, + ["LeechInstantDuringFlaskEffect__1"] = { affix = "", "Life and Mana Leech are instant during effect", statOrder = { 1088 }, level = 1, group = "LeechInstantDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1102362593] = { "Life and Mana Leech are instant during effect" }, } }, + ["AddedLightningDamageDuringFlaskEffect__1"] = { affix = "", "Adds (10-15) to (55-65) Lightning Damage to Attacks during Effect", statOrder = { 1084 }, level = 1, group = "AddedLightningDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4292531291] = { "Adds (10-15) to (55-65) Lightning Damage to Attacks during Effect" }, } }, + ["AddedSpellLightningDamageDuringFlaskEffect__1"] = { affix = "", "Adds (10-15) to (55-65) Lightning Damage to Spells during Effect", statOrder = { 1085 }, level = 1, group = "AddedSpellLightningDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4108305628] = { "Adds (10-15) to (55-65) Lightning Damage to Spells during Effect" }, } }, + ["PhysicalToLightningDuringFlaskEffect__1"] = { affix = "", "50% of Physical Damage Converted to Lightning during Effect", statOrder = { 1080 }, level = 1, group = "PhysicalToLightningDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [660386148] = { "50% of Physical Damage Converted to Lightning during Effect" }, } }, + ["LightningPenetrationDuringFlaskEffect__1"] = { affix = "", "Damage Penetrates 6% Lightning Resistance during Effect", statOrder = { 1081 }, level = 1, group = "LightningPenetrationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4164990693] = { "Damage Penetrates 6% Lightning Resistance during Effect" }, } }, + ["MinionAttackAndCastSpeedPerSkeleton__1"] = { affix = "", "2% increased Minion Attack and Cast Speed per Skeleton you own", statOrder = { 3309 }, level = 1, group = "MinionAttackAndCastSpeedPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [729367217] = { "2% increased Minion Attack and Cast Speed per Skeleton you own" }, } }, + ["MinionDurationPerZombie__1"] = { affix = "", "2% increased Minion Duration per Raised Zombie", statOrder = { 3310 }, level = 1, group = "MinionDurationPerZombie", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [777246604] = { "2% increased Minion Duration per Raised Zombie" }, } }, + ["MinionDamagePerSpectre__1"] = { affix = "", "(8-12)% increased Minion Damage per Raised Spectre", statOrder = { 3311 }, level = 1, group = "MinionDamagePerSpectre", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3191537057] = { "(8-12)% increased Minion Damage per Raised Spectre" }, } }, + ["MinionLifeRegenerationPerRagingSpirit__1"] = { affix = "", "Minions Regenerate (1.5-2.5)% of Life per second", statOrder = { 2945 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1.5-2.5)% of Life per second" }, } }, + ["ExplodeOnKillChaosUnique__1"] = { affix = "", "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3341 }, level = 1, group = "ObliterationExplodeOnKillChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1776945532] = { "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, + ["ReduceManaCostPerEnduranceChargeUnique__1"] = { affix = "", "4% reduced Mana Cost per Endurance Charge", statOrder = { 3303 }, level = 1, group = "ReduceManaCostPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1774881905] = { "4% reduced Mana Cost per Endurance Charge" }, } }, + ["ManaCostEfficiencyPerEnduranceChargeUnique__1"] = { affix = "", "10% increased Mana Cost Efficiency per Endurance Charge", statOrder = { 5095 }, level = 1, group = "ManaCostEfficiencyPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2934991482] = { "10% increased Mana Cost Efficiency per Endurance Charge" }, } }, + ["RampageWhileAtMaxEnduranceChargesUnique__1"] = { affix = "", "Gain Rampage while at Maximum Endurance Charges", statOrder = { 3304 }, level = 1, group = "RampageWhileAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1643796079] = { "Gain Rampage while at Maximum Endurance Charges" }, } }, + ["LoseEnduranceChargesOnRampageEndUnique___1"] = { affix = "", "Lose all Endurance Charges when Rampage ends", statOrder = { 3305 }, level = 1, group = "LoseEnduranceChargesOnRampageEnd", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2881426199] = { "Lose all Endurance Charges when Rampage ends" }, } }, + ["IncreasedDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "40% increased Damage with Hits against Frozen Enemies", statOrder = { 1259 }, level = 1, group = "IncreasedDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1196902248] = { "40% increased Damage with Hits against Frozen Enemies" }, } }, + ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3380 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, + ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Causes Bleeding when you Stun", statOrder = { 2510 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1562912554] = { "Causes Bleeding when you Stun" }, } }, + ["GrantEnemiesUnholyMightOnKillUnique__1"] = { affix = "", "5% chance to grant Chaotic Might to nearby Enemies on Kill", statOrder = { 3419 }, level = 1, group = "GrantEnemiesUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607444087] = { "5% chance to grant Chaotic Might to nearby Enemies on Kill" }, } }, + ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3418 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, + ["UnholyMightOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5779 }, level = 20, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [562371749] = { "10% chance to gain Chaotic Might for 10 seconds on Kill" }, } }, + ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on Kill", statOrder = { 5773 }, 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 Life on Kill", statOrder = { 1772 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1772 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1772 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1772 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1772 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of Life on Kill" }, } }, + ["MaximumLifeOnKillPercentUnique__6"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1772 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, + ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1774 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of Mana on Kill" }, } }, + ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of Energy Shield on Kill", statOrder = { 1773 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-5)% of Energy Shield on Kill" }, } }, + ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of Energy Shield on Kill", statOrder = { 1773 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 1% of Energy Shield on Kill" }, } }, + ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, [223497523] = { "" }, } }, + ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Manifested Dancing Dervishes disables both weapon slots", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3376, 3377, 3378 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Manifested Dancing Dervishes disables both weapon slots" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, + ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks", statOrder = { 3299 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [630867098] = { "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks" }, } }, + ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 3293, 3293.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [156016608] = { "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle" }, [3802517517] = { "" }, } }, + ["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 = { 3292, 3292.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 = { 3282 }, 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" }, [3802517517] = { "" }, } }, + ["AdditionalSnipeTotemsPerDexterityUnique__1"] = { affix = "", "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity", statOrder = { 3430 }, level = 1, group = "AdditionalSnipeTotemsPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2125178364] = { "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity" }, } }, + ["AdditionalShrapnelBallistaePerStrengthUnique__1"] = { affix = "", "Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength", statOrder = { 3429 }, level = 1, group = "AdditionalShrapnelBallistaePerStrength", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1124661381] = { "Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength" }, } }, + ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 3431 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2066426995] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity" }, } }, + ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4925 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Strength" }, } }, + ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3432 }, 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 = { 3439 }, 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 = { 522 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [13669281] = { "Socketed Gems are Supported by Level 15 Hypothermia" }, } }, + ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 523 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 15 Ice Bite" }, } }, + ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 523 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 15 Ice Bite" }, } }, + ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 524 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1991958615] = { "Socketed Gems are Supported by Level 15 Cold Penetration" }, } }, + ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 525 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2608615082] = { "Socketed Gems are Supported by Level 1 Mana Leech" }, } }, + ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 529 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 15 Added Cold Damage" }, } }, + ["DisplaySupportedByAddedColdDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Cold Damage", statOrder = { 529 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 29 Added Cold Damage" }, } }, + ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 530 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, + ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 530 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [749770518] = { "Socketed Gems are Supported by Level 15 Inspiration" }, } }, + ["DisplaySupportedByBonechillUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Bonechill", statOrder = { 244 }, level = 1, group = "DisplaySupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1859244771] = { "Socketed Gems are Supported by Level 15 Bonechill" }, } }, + ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 906 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHashes = { [570159344] = { "Consumes Frenzy Charges on use" }, } }, + ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3442 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(120-140)% increased Critical Strike Chance against Blinded Enemies" }, } }, + ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3442 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1939202111] = { "(30-50)% increased Critical Strike Chance against Blinded Enemies" }, } }, + ["AddedFireDamageFromLightRadiusUnique__1"] = { affix = "", "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value", statOrder = { 9370 }, level = 1, group = "AddedFireDamageFromLightRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1911822529] = { "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value" }, } }, + ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits and Ailments against Hindered Enemies", statOrder = { 4143 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [528422616] = { "100% increased Damage with Hits and Ailments against Hindered Enemies" }, } }, + ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3463 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3968454273] = { "Gain Soul Eater during any Flask Effect" }, } }, + ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3464 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3577316952] = { "Lose all Eaten Souls when you use a Flask" }, } }, + ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 784 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4240751513] = { "Trigger Level 1 Fire Burst on Kill" }, } }, + ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 540, 540.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2497009514] = { "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled" }, } }, + ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 635 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3279574030] = { "Grants Level 20 Illusory Warp Skill" }, } }, + ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 8057 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4249200326] = { "Implicit Modifier magnitudes are doubled" }, } }, + ["LocalDoubleImplicitModsUnique__2"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 8057 }, level = 1, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4249200326] = { "Implicit Modifier magnitudes are doubled" }, } }, + ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 8058 }, level = 1, group = "LocalTripleImplicitMagnitudes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3910859570] = { "Implicit Modifier magnitudes are tripled" }, } }, + ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3604 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3919199754] = { "100% increased Damage with Unarmed Attacks against Bleeding Enemies" }, } }, + ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3608 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2865232420] = { "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills" }, } }, + ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+(5-10)% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3607 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(5-10)% to Unarmed Melee Attack Critical Strike Chance" }, } }, + ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3606 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3148570142] = { "Gain 30 Life per Bleeding Enemy Hit" }, } }, + ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 812 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, + ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 812 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, + ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 812 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, + ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon", statOrder = { 766 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon" }, [2795142527] = { "" }, } }, + ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1450 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "35% increased Attack Speed with Swords" }, } }, + ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1327 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2008219439] = { "80% increased Physical Damage with Axes" }, } }, + ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1303 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "40% increased Physical Attack Damage while Dual Wielding" }, } }, + ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3617 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, + ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3609 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2988055461] = { "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills" }, } }, + ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills", statOrder = { 3610 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [531932482] = { "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills" }, } }, + ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3613 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [1912660783] = { "50% slower start of Energy Shield Recharge during any Flask Effect" }, } }, + ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3615 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [1827657795] = { "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect" }, } }, + ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3620 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4150597533] = { "1% increased Cold Damage per 1% Chance to Block Attack Damage" }, } }, + ["IncreasedManaPerSpellBlockChanceUnique__1"] = { affix = "", "1% increased Maximum Mana per 2% Chance to Block Spell Damage", statOrder = { 3621 }, level = 1, group = "IncreasedManaPerSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3645234093] = { "1% increased Maximum Mana per 2% Chance to Block Spell Damage" }, } }, + ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3622 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1857635068] = { "300% increased Armour while Chilled or Frozen" }, } }, + ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks" }, } }, + ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 920 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [538730182] = { "Creates a Smoke Cloud on Use" }, } }, + ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 901 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2146730404] = { "Creates Consecrated Ground on Use" }, } }, + ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 902 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311869501] = { "Creates Chilled Ground on Use" }, } }, + ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 916 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2005503156] = { "Taunts nearby Enemies on use" }, } }, + ["UtilityFlaskWard"] = { affix = "", "Restores Ward on use", statOrder = { 941 }, level = 1, group = "UtilityFlaskWard", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2451856207] = { "Restores Ward on use" }, } }, + ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 942, 942.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2434293916] = { "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit" }, } }, + ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1857 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, + ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3639 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, + ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3639 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } }, + ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2786 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3590104875] = { "You lose all Endurance Charges on reaching maximum Endurance Charges" }, } }, + ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach Maximum Power Charges", statOrder = { 3640 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach Maximum Power Charges" }, } }, + ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 802 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [4125471110] = { "20% chance to Trigger Level 16 Molten Burst on Melee Hit" }, } }, + ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 3015 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 20% Fire Resistance" }, } }, + ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 1012 }, level = 1, group = "LocalFlaskPetrified", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1935500672] = { "Petrified during Effect" }, } }, + ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 993 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHashes = { [677302513] = { "(40-50)% additional Physical Damage Reduction during Effect" }, } }, + ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 3199 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1415558356] = { "Nearby Enemies take 50 Lightning Damage per second" }, } }, + ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3783 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3003321700] = { "Flasks do not apply to you" }, } }, + ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3784 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [3127641775] = { "Flasks you Use apply to your Raised Zombies and Spectres" }, } }, + ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 783 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3250579936] = { "Triggers Level 7 Abberath's Fury when Equipped" }, } }, + ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of Life per second while Frozen", statOrder = { 3777 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate 10% of Life per second while Frozen" }, } }, + ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "Retaliation Skills have 100% chance to Knockback", statOrder = { 3659 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [399854017] = { "Retaliation Skills have 100% chance to Knockback" }, } }, + ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "(25-35)% chance for Energy Shield Recharge to start when you Block", statOrder = { 3458 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [762154651] = { "(25-35)% chance for Energy Shield Recharge to start when you Block" }, } }, + ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3831 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1963540179] = { "This Weapon's Critical Strike Chance is 100%" }, } }, + ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3796 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [625037258] = { "Attacks with this Weapon deal Double Damage to Chilled Enemies" }, } }, + ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3797 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 30% Elemental Resistances" }, } }, + ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 872, 1093 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "defences", "energy_shield" }, tradeHashes = { [851224302] = { "Zealot's Oath during Effect" }, [74462130] = { "Life Recovery from Flasks also applies to Energy Shield during Effect" }, } }, + ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3801 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3905661226] = { "(60-80)% increased Damage while you have no Frenzy Charges" }, } }, + ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3802 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [47954913] = { "100% increased Critical Strike Chance against Enemies that are on Full Life" }, } }, + ["CriticalStrikeAttackLifeLeechUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life on Critical Strike", statOrder = { 3803 }, level = 1, group = "CriticalStrikeAttackLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2100196861] = { "1% of Attack Damage Leeched as Life on Critical Strike" }, } }, + ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3804 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (12-16) additional Attack Physical Damage" }, } }, + ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Lightning Damage", statOrder = { 3812 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1096897481] = { "Gain 15% of Physical Attack Damage as Extra Lightning Damage" }, } }, + ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3810 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain 15% of Physical Attack Damage as Extra Fire Damage" }, } }, + ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3810 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage" }, } }, + ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3813 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3788706881] = { "+2 maximum Energy Shield per 5 Strength" }, } }, + ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3726 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, + ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3726 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, + ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3726 }, 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 = { 3726 }, 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 = { 637 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, + ["ZealotsOathUnique__1"] = { affix = "", "Zealot's Oath", statOrder = { 10974 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, + ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3815 }, 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 = { 507 }, 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 = { 3405 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["CannotBePoisonedUnique__2"] = { affix = "", "Cannot be Poisoned", statOrder = { 3405 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(50-100)% increased Energy Shield Recovery rate" }, } }, + ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 2261 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, + ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 1008 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4267616253] = { "Immunity to Damage during Effect" }, } }, + ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3831 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1963540179] = { "This Weapon's Critical Strike Chance is 100%" }, } }, + ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3834 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [555311393] = { "2% increased Physical Damage Over Time per 10 Dexterity" }, } }, + ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3835 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, tradeHashes = { [1030835421] = { "1% increased Bleeding Duration per 12 Intelligence" }, } }, + ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3837 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2072206041] = { "30% Chance to cause Bleeding Enemies to Flee on hit" }, } }, + ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "25% chance to Avoid Fire Damage from Hits" }, } }, + ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1948 }, level = 1, group = "TrapTriggerRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [497716276] = { "(40-60)% increased Trap Trigger Area of Effect" }, } }, + ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3443 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2901262227] = { "15% chance to create Chilled Ground when you Freeze an Enemy" }, } }, + ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 4163 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4148932984] = { "Create Consecrated Ground when you Shatter an Enemy" }, } }, + ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 3210 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "20% chance to Poison on Hit with Attacks" }, } }, + ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3833 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087710344] = { "(8-12)% Chance for Traps to Trigger an additional time" }, } }, + ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3832 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3391324703] = { "Traps and Mines deal (3-5) to (10-15) additional Physical Damage" }, } }, + ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 986 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [3686711832] = { "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost" }, } }, + ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 4126 }, level = 1, group = "TrapPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3192135716] = { "Traps and Mines have a 25% chance to Poison on Hit" }, } }, + ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 531 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 22 Blasphemy" }, } }, + ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 531 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, + ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 625 }, 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 = { 625 }, 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 = { 3420 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2367680009] = { "10% chance to grant a Power Charge to nearby Allies on Kill" }, } }, + ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 3421 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to nearby Allies on Hit" }, } }, + ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 805 }, 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 = { 1985 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, + ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 4164 }, 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 = { 4169 }, 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 = { 8100 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, + ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critically Strike Shocked Enemies", statOrder = { 4172 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critically Strike Shocked Enemies" }, } }, + ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Strikes against non-Shocked Enemies", statOrder = { 4173 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Strikes against non-Shocked Enemies" }, } }, + ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 4190 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2939409392] = { "Minions have 15% chance to Blind Enemies on hit" }, } }, + ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 4189 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2684385509] = { "Minions cannot be Blinded" }, } }, + ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 535 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, tradeHashes = { [4006301249] = { "Socketed Minion Gems are Supported by Level 16 Life Leech" }, } }, + ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 4191 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3020069394] = { "Found Magic Items drop Identified" }, } }, + ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 4192 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, [4230859323] = { "" }, } }, + ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 4193 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4230859323] = { "" }, [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, + ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 4196 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, [4230859323] = { "" }, } }, + ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Strike Chance per Grand Spectrum", statOrder = { 4195 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4230859323] = { "" }, [2948375275] = { "25% increased Critical Strike Chance per Grand Spectrum" }, } }, + ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per Grand Spectrum", statOrder = { 4197 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4230859323] = { "" }, [242161915] = { "+7% to all Elemental Resistances per Grand Spectrum" }, } }, + ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per Grand Spectrum", statOrder = { 4198 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per Grand Spectrum" }, [4230859323] = { "" }, } }, + ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 4194 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4230859323] = { "" }, [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, + ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Strike Multiplier per Grand Spectrum", statOrder = { 4202 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4230859323] = { "" }, [482240997] = { "Minions have +10% to Critical Strike Multiplier per Grand Spectrum" }, } }, + ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 4199 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4230859323] = { "" }, [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, + ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 4200 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4230859323] = { "" }, [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, + ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 4201 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4230859323] = { "" }, [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, + ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1848 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 20 Cold Damage to Spells per Power Charge" }, } }, + ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1848 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 50 to 70 Cold Damage to Spells per Power Charge" }, } }, + ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9995 }, 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 = { 1847 }, 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 = { 6136 }, 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 12 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 12 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 = { 4922 }, 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 25 Dexterity", statOrder = { 4952 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2241560081] = { "1% increased Attack Speed per 25 Dexterity" }, } }, + ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9564 }, 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 = { 4353 }, 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 = { 4351 }, 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 = { 9375 }, 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 = { 5910 }, 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 = { 9992 }, 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 = { 9992 }, 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 = { 10028 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, + ["ReflectsShockToEnemiesInRadiusUnique__1"] = { affix = "", "Reflect Shocks applied to you to all Nearby Enemies", statOrder = { 10029 }, level = 1, group = "ReflectsShockToEnemiesInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [615884286] = { "Reflect Shocks applied to you to all Nearby Enemies" }, } }, + ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5807 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } }, + ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6850 }, 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 = { 5894 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, + ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(20-30)% increased Cold Damage per Frenzy Charge", statOrder = { 5894 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(20-30)% increased Cold Damage per Frenzy Charge" }, } }, + ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled Enemies on Hit", statOrder = { 5288 }, 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 = { 1783 }, 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 Crushing Fist Skill", statOrder = { 668 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Crushing Fist Skill" }, } }, + ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of Life on Killing a Poisoned Enemy", statOrder = { 9498 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of Life on Killing a Poisoned Enemy" }, } }, + ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3641 }, 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 = { 667 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, + ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 667 }, 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 = { 4537 }, 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 = { 9753 }, 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 = { 3209 }, 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 = { 3209 }, 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 = { 786 }, 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 = { 832 }, 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 = { 4963 }, 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 by an Attack", statOrder = { 9977 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2155467472] = { "50% chance to be inflicted with Bleeding when Hit by an Attack" }, } }, + ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4809 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2129352930] = { "Armour is increased by Overcapped Fire Resistance" }, } }, + ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6574 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, + ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 6002 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Strike Chance is increased by Overcapped Lightning Resistance" }, } }, + ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4739 }, 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 = { 1401 }, 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 = { 9285 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "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 = { 9285 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield" }, } }, + ["GlobalIgniteProlifUnique__1"] = { affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2241 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } }, + ["GlobalIgniteProlifUnique__2"] = { affix = "", "Ignites you inflict spread to other Enemies within 2.8 metres", statOrder = { 2241 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.8 metres" }, } }, + ["LocalIgniteProlifEmberglowUnique__1"] = { affix = "", "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres", statOrder = { 8040 }, level = 1, group = "LocalIgniteProlifEmberglow", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1010930352] = { "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres" }, } }, + ["IgniteDurationEmberglowUnique__1"] = { affix = "", "50% less Duration of Ignites you inflict", statOrder = { 6443 }, level = 1, group = "IgniteDurationEmberglowUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3775619537] = { "50% less Duration of Ignites you inflict" }, } }, + ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3174 }, 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%" }, } }, + ["Roll6LinkedRandomColourSocketsUnique__1"] = { affix = "", "Sockets cannot be modified", statOrder = { 71 }, level = 1, group = "Roll6LinkedRandomColourSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3192592092] = { "Sockets cannot be modified" }, } }, + ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7976 }, 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 = { 2550 }, 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 = { 8184, 8184.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" }, } }, + ["ColdResistConvertedToDodgeChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Chance to Suppress Spell Damage at 70% of its value", statOrder = { 8163, 8163.1 }, level = 1, group = "ColdResistConvertedToDodgeChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1409669176] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Chance to Suppress Spell Damage at 70% of its value" }, } }, + ["LightningResistConvertedToSpellBlockChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Spell Damage at 50% of its value", statOrder = { 8201, 8201.1 }, level = 1, group = "LightningResistConvertedToSpellBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1224928411] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Spell 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 = { 8185, 8185.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3802517517] = { "" }, [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 = { 8161, 8161.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3802517517] = { "" }, [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 = { 8204, 8204.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3802517517] = { "" }, [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 Strike", statOrder = { 793 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Strike" }, } }, + ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Strike", statOrder = { 793 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Strike" }, } }, + ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 4058 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, + ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4760 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, + ["MinionLeechOnPoisonedEnemiesUnique__1"] = { affix = "", "Minions Leech 5% of Damage as Life against Poisoned Enemies", statOrder = { 9445 }, level = 1, group = "MinionLeechOnPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [548721233] = { "Minions Leech 5% of Damage as Life against Poisoned Enemies" }, } }, + ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3517, 3517.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" }, } }, + ["ChilledGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Chilled Ground", statOrder = { 5855 }, level = 1, group = "ChilledGroundEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2134166669] = { "(30-50)% increased Effect of Chilled Ground" }, } }, + ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3751 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3910961021] = { "50% increased Herald of Ice Damage" }, } }, + ["KeystoneMinionInstabilityUnique__1"] = { affix = "", "Minion Instability", statOrder = { 10965 }, level = 1, group = "MinionInstability", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, + ["KeystoneConduitUnique__1__"] = { affix = "", "Conduit", statOrder = { 10940 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, + ["KeystoneAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10931 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, + ["KeystoneIronReflexesUnique__1"] = { affix = "", "Iron Reflexes", statOrder = { 10959 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["KeystoneResoluteTechniqueUnique__1"] = { affix = "", "Resolute Technique", statOrder = { 10996 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, + ["KeystoneUnwaveringStanceUnique__1"] = { affix = "", "Unwavering Stance", statOrder = { 10988 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["KeystoneBloodMagicUnique__1_"] = { affix = "", "Blood Magic", statOrder = { 10936 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["KeystonePainAttunementUnique__1"] = { affix = "", "Pain Attunement", statOrder = { 10967 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["KeystoneElementalEquilibriumUnique__1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10946 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, + ["KeystoneElementalEquilibriumSceptreImplicit1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10946 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, + ["KeystoneIronGripUnique__1"] = { affix = "", "Iron Grip", statOrder = { 10984 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, + ["KeystonePointBlankUnique__1"] = { affix = "", "Point Blank", statOrder = { 10968 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, + ["KeystoneArrowDodgingUnique__1"] = { affix = "", "Arrow Dancing", statOrder = { 10971 }, level = 1, group = "ArrowDodging", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2606808909] = { "Arrow Dancing" }, } }, + ["KeystonePhaseAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10931 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, + ["KeystoneGhostReaverUnique__1"] = { affix = "", "Ghost Reaver", statOrder = { 10953 }, level = 1, group = "KeystoneGhostReaver", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, + ["KeystoneVaalPactUnique__1"] = { affix = "", "Vaal Pact", statOrder = { 10989 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, + ["KeystoneZealotsOathUnique__1_"] = { affix = "", "Zealot's Oath", statOrder = { 10974 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, + ["KeystoneMindOverMatterUnique__1"] = { affix = "", "Mind Over Matter", statOrder = { 10963 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, + ["KeystoneElementalOverloadUnique__1"] = { affix = "", "Elemental Overload", statOrder = { 10947 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, + ["KeystoneElementalOverloadSceptreImplicit1_"] = { affix = "", "Elemental Overload", statOrder = { 10947 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, + ["KeystoneAvatarOfFireUnique__1"] = { affix = "", "Avatar of Fire", statOrder = { 10934 }, level = 1, group = "AvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } }, + ["KeystoneFirePuristUnique__2"] = { affix = "", "Voracious Flame", statOrder = { 10951 }, level = 1, group = "FirePurist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3458351769] = { "Voracious Flame" }, } }, + ["KeystoneColdPuristUnique__2"] = { affix = "", "Bitter Frost", statOrder = { 10939 }, level = 1, group = "ColdPurist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3898949460] = { "Bitter Frost" }, } }, + ["KeystoneEldritchBatteryUnique__1"] = { affix = "", "Eldritch Battery", statOrder = { 10945 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["KeystoneEldritchBatteryUnique__2"] = { affix = "", "Eldritch Battery", statOrder = { 10945 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["KeystoneAncestralBondUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10933 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, + ["KeystoneAncestralBondUnique__2"] = { affix = "", "Ancestral Bond", statOrder = { 10933 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, + ["KeystoneCrimsonDanceUnique__1"] = { affix = "", "Crimson Dance", statOrder = { 10942 }, level = 1, group = "CrimsonDance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, + ["KeystonePerfectAgonyUnique__1"] = { affix = "", "Perfect Agony", statOrder = { 10932 }, level = 1, group = "PerfectAgony", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, + ["KeystoneRunebinderUnique__1"] = { affix = "", "Runebinder", statOrder = { 10976 }, level = 1, group = "Runebinder", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, + ["KeystoneWickedWardUnique__1"] = { affix = "", "Wicked Ward", statOrder = { 10992 }, level = 1, group = "WickedWard", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1109343199] = { "Wicked Ward" }, } }, + ["KeystoneMortalConvictionUnique__1"] = { affix = "", "Blood Magic", statOrder = { 10936 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["KeystoneGlancingBlowsUnique__1___"] = { affix = "", "Glancing Blows", statOrder = { 10954 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, + ["KeystoneCallToArmsUnique__1"] = { affix = "", "Call to Arms", statOrder = { 10937 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, + ["KeystoneEternalYouthUnique__1"] = { affix = "", "Eternal Youth", statOrder = { 10949 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, + ["KeystoneWindDancerUnique__1_"] = { affix = "", "Wind Dancer", statOrder = { 10993 }, level = 1, group = "WindDancer", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [4170338365] = { "Wind Dancer" }, } }, + ["KeystoneTheAgnosticUnique__1_"] = { affix = "", "The Agnostic", statOrder = { 10966 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, + ["KeystoneTheAgnosticUnique__2"] = { affix = "", "The Agnostic", statOrder = { 10966 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, + ["KeystoneSupremeEgoUnique__1_"] = { affix = "", "Supreme Ego", statOrder = { 10985 }, level = 1, group = "SupremeEgo", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, + ["KeystoneSacredBastionUnique__1"] = { affix = "", "Imbalanced Guard", statOrder = { 10977 }, level = 1, group = "SacredBastion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3868073741] = { "Imbalanced Guard" }, } }, + ["KeystoneTheImpalerUnique__1_"] = { affix = "", "The Impaler", statOrder = { 10958 }, level = 1, group = "Impaler", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } }, + ["KeystoneSoulTetherUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10983 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, + ["KeystoneCorruptedSoulUnique_1"] = { affix = "", "Corrupted Soul", statOrder = { 10941 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, + ["KeystoneDoomsdayUnique__1"] = { affix = "", "Hex Master", statOrder = { 10956 }, level = 1, group = "HexMaster", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } }, + ["KeystoneSoulTetherUnique__2"] = { affix = "", "Immortal Ambition", statOrder = { 10983 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, + ["KeystoneCorruptedSoulUnique__2_"] = { affix = "", "Corrupted Soul", statOrder = { 10941 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, + ["KeystoneVaalPactUnique__2"] = { affix = "", "Vaal Pact", statOrder = { 10989 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, + ["KeystoneEternalYouthUnique__2_"] = { affix = "", "Eternal Youth", statOrder = { 10949 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, + ["KeystoneDivineFleshUnique__1_"] = { affix = "", "Divine Flesh", statOrder = { 10943 }, level = 1, group = "DivineFlesh", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2321346567] = { "Divine Flesh" }, } }, + ["KeystoneEverlastingSacrificeUnique__1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10950 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, + ["KeystoneShepherdOfSoulsUnique__1"] = { affix = "", "Shepherd of Souls", statOrder = { 10981 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2038577923] = { "Shepherd of Souls" }, } }, + ["KeystoneLetheShadeUnique_1"] = { affix = "", "Lethe Shade", statOrder = { 10960 }, level = 1, group = "LetheShade", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } }, + ["KeystoneGhostDanceUnique__1"] = { affix = "", "Ghost Dance", statOrder = { 10952 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, + ["KeystoneVersatileCombatantUnique___1"] = { affix = "", "Versatile Combatant", statOrder = { 10990 }, level = 1, group = "VersatileCombatant", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, + ["KeystoneMagebaneUnique_1"] = { affix = "", "Magebane", statOrder = { 10962 }, level = 1, group = "Magebane", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } }, + ["KeystoneSolipsismUnique_1"] = { affix = "", "Solipsism", statOrder = { 10982 }, level = 1, group = "Solipsism", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } }, + ["KeystoneDivineShieldUnique_1"] = { affix = "", "Divine Shield", statOrder = { 10944 }, level = 1, group = "DivineShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } }, + ["KeystoneIronWillUnique_1"] = { affix = "", "Iron Will", statOrder = { 10997 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, + ["KeystonePreciseTechniqueUnique__1"] = { affix = "", "Precise Technique", statOrder = { 10969 }, level = 1, group = "PreciseTechnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4096273663] = { "Precise Technique" }, } }, + ["KeystoneFirePuristUnique__1"] = { affix = "", "Voracious Flame", statOrder = { 10951 }, level = 1, group = "FirePurist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3458351769] = { "Voracious Flame" }, } }, + ["KeystoneColdPuristUnique__1"] = { affix = "", "Bitter Frost", statOrder = { 10939 }, level = 1, group = "ColdPurist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3898949460] = { "Bitter Frost" }, } }, + ["KeystoneLightningPuristUnique__1"] = { affix = "", "Roiling Tempest", statOrder = { 10961 }, level = 1, group = "LightningPurist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2903189090] = { "Roiling Tempest" }, } }, + ["KeystoneSupremeDecadenceUnique__1"] = { affix = "", "Supreme Decadence", statOrder = { 10948 }, level = 1, group = "SupremeDecadence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3215997147] = { "Supreme Decadence" }, } }, + ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3424 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "40% increased Lightning Damage taken" }, } }, + ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 4204 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, tradeHashes = { [2477735984] = { "30% of Lightning Damage is taken from Mana before Life" }, } }, + ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of Mana when you Shock an Enemy", statOrder = { 4206 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2524029637] = { "Recover 3% of Mana when you Shock an Enemy" }, } }, + ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 777, 777.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [776897797] = { "0% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1212497891] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, + ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+(10-15)% Chance to Block Attack Damage when in Off Hand", statOrder = { 4221 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2040585053] = { "+(10-15)% Chance to Block Attack Damage when in Off Hand" }, } }, + ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Strike Chance when in Main Hand", statOrder = { 4220 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3404168630] = { "(60-80)% increased Global Critical Strike Chance when in Main Hand" }, } }, + ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+(10-15)% to Global Critical Strike Multiplier per Green Socket", statOrder = { 2751 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [35810390] = { "+(10-15)% to Global Critical Strike Multiplier per Green Socket" }, } }, + ["AreaOfEffectPerRedSocketUnique__1"] = { affix = "", "(8-12)% increased Area of Effect per Red Socket", statOrder = { 2745 }, level = 1, group = "AreaOfEffectPerRedSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [940978994] = { "(8-12)% increased Area of Effect per Red Socket" }, } }, + ["CriticalStrikeChancePerBlueSocketUnique__1"] = { affix = "", "(20-30)% increased Global Critical Strike Chance per Blue Socket", statOrder = { 2755 }, level = 1, group = "CriticalStrikeChancePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3285215387] = { "(20-30)% increased Global Critical Strike Chance per Blue Socket" }, } }, + ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2744 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3025389409] = { "0.3% of Physical Attack Damage Leeched as Life per Red Socket" }, } }, + ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 1038 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1085359447] = { "(50-100)% increased Charges gained by Other Flasks during Effect" }, } }, + ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 1090 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741956733] = { "Gains no Charges during Effect of any Overflowing Chalice Flask" }, } }, + ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 4168 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [990219738] = { "1% increased Lightning Damage per 10 Intelligence" }, } }, + ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 4211 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1275066948] = { "4% increased Melee Damage per Endurance Charge" }, } }, + ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 4214 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [798111687] = { "You cannot be Shocked while at maximum Endurance Charges" }, } }, + ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 4210 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1067429236] = { "50% increased Stun Duration on you" }, } }, + ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 4223 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "35% less Damage taken if you have not been Hit Recently" }, } }, + ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 4224 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, + ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've Warcried Recently", statOrder = { 4215 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "10% increased Movement Speed if you've Warcried Recently" }, } }, + ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've Warcried Recently", statOrder = { 4215 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2546417825] = { "15% increased Movement Speed if you've Warcried Recently" }, } }, + ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 4213 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [277484363] = { "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second" }, } }, + ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 4209 }, 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 = { 4229 }, 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 = { 4219 }, 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 = { 4992 }, 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 = { 1573 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, + ["AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1719 }, level = 1, group = "AttackDamageLifeLeechAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1625933063] = { "1% of Attack Damage Leeched as Life against Bleeding Enemies" }, } }, + ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4217 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3067409450] = { "1% of Attack Damage Leeched as Mana against Poisoned Enemies" }, } }, + ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2"] = { affix = "", "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4217 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3067409450] = { "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies" }, } }, + ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 4207 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 4208 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2085001246] = { "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies" }, } }, + ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1849 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [285624304] = { "Skills Chain an additional time while at maximum Frenzy Charges" }, } }, + ["CriticalStrikesDoNotFreezeUnique___1"] = { affix = "", "Critical Strikes do not inherently Freeze", statOrder = { 2054 }, level = 1, group = "CriticalStrikesDoNotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "critical", "ailment" }, tradeHashes = { [3979476531] = { "Critical Strikes do not inherently Freeze" }, } }, + ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy", statOrder = { 1846 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2230931659] = { "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy" }, } }, + ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2530 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2632954025] = { "You have Phasing if Energy Shield Recharge has started Recently" }, } }, + ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2531 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [402176724] = { "30% increased Evasion Rating while Phasing" }, } }, + ["AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1"] = { affix = "", "+5% Chance to Block Attack Damage from Taunted Enemies", statOrder = { 4225 }, level = 1, group = "AdditionalChanceToBlockAgainstTauntedEnemies", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1440638174] = { "+5% Chance to Block Attack Damage from Taunted Enemies" }, } }, + ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 4228 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3669898891] = { "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently" }, } }, + ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 544 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1936441365] = { "Socketed Skills Summon your maximum number of Totems in formation" }, } }, + ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 4212 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2288558421] = { "Totems gain -10% to all Elemental Resistances per Summoned Totem" }, } }, + ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 4218 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [3204585690] = { "Totems have 5% increased Cast Speed per Summoned Totem" }, } }, + ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 4230 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [264715122] = { "Totems have 5% increased Attack Speed per Summoned Totem" }, } }, + ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1609 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } }, + ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 4231 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2466604008] = { "Attacks Chain an additional time when in Main Hand" }, } }, + ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 4233 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2105048696] = { "Attacks fire an additional Projectile when in Off Hand" }, } }, + ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Retaliation Skills", statOrder = { 4241 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1109700751] = { "Adds 250 to 300 Cold Damage to Retaliation Skills" }, } }, + ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 4235 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2114157293] = { "(16-20)% increased Golem Damage for each Type of Golem you have Summoned" }, } }, + ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 4237 }, 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 = { 4238 }, 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 = { 4239 }, 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 = { 8302 }, 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 = { 1410 }, 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 = { 1410 }, 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 = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, + ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (50-55) to (72-80) Chaos Damage" }, } }, + ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (50-55) to (72-80) Chaos Damage" }, } }, + ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (48-53) to (58-60) Chaos Damage" }, } }, + ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, + ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-23) to (29-31) Chaos Damage" }, } }, + ["GlobalAddedChaosDamageUnique__7"] = { affix = "", "Adds (7-11) to (17-23) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (7-11) to (17-23) Chaos Damage" }, } }, + ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1289 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (12-16) to (20-25) Physical Damage" }, } }, + ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1289 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-10) to (13-15) Physical Damage" }, } }, + ["GlobalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds (8-12) to (14-20) Physical Damage", statOrder = { 1289 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (8-12) to (14-20) Physical Damage" }, } }, + ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-24) to (33-36) Fire Damage" }, } }, + ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (22-27) to (34-38) Fire Damage" }, } }, + ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, + ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (16-19) to (25-29) Fire Damage" }, } }, + ["GlobalAddedFireDamageUnique__6"] = { affix = "", "Adds (10-14) to (26-34) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (10-14) to (26-34) Fire Damage" }, } }, + ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1392 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-24) to (33-36) Cold Damage" }, } }, + ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1392 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-23) to (31-35) Cold Damage" }, } }, + ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1392 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, + ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1392 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (16-19) to (25-29) Cold Damage" }, } }, + ["GlobalAddedColdDamageUnique__5"] = { affix = "", "Adds (8-12) to (18-26) Cold Damage", statOrder = { 1392 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (8-12) to (18-26) Cold Damage" }, } }, + ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (10-13) to (43-47) Lightning Damage" }, } }, + ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-3) to (47-52) Lightning Damage" }, } }, + ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, + ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (6-10) to (33-38) Lightning Damage" }, } }, + ["GlobalAddedLightningDamageUnique__5"] = { affix = "", "Adds (1-2) to (43-56) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-2) to (43-56) Lightning Damage" }, } }, + ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1824 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [115109959] = { "Regenerate 2% of Energy Shield per second while on Low Life" }, } }, + ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 2219 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2319377249] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, + ["IgnoreHexproofUnique___1"] = { affix = "", "Your Hexes can affect Hexproof Enemies", statOrder = { 2626 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Your Hexes can affect Hexproof Enemies" }, } }, + ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 4243 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4266201818] = { "Poison Cursed Enemies on hit" }, } }, + ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 4244 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2208857094] = { "Always Poison on Hit against Cursed Enemies" }, } }, + ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2983 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+20% chance to be Shocked" }, } }, + ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2983 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3206652215] = { "+50% chance to be Shocked" }, } }, + ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2765 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [967108924] = { "8% increased Global Defences per White Socket" }, } }, + ["GlobalDefensesPerEmptySocketUnique__1"] = { affix = "", "(6-8)% increased Global Defences per Empty Socket", statOrder = { 2764 }, level = 1, group = "GlobalDefensesPerEmptySocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1422003590] = { "(6-8)% increased Global Defences per Empty Socket" }, } }, + ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 4246 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1498954300] = { "(10-15)% increased Quantity of Items found with a Magic Item Equipped" }, } }, + ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 4245 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 4282 }, 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 = { 4226 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, tradeHashes = { [2200407711] = { "Minions have +40% to Cold Resistance" }, } }, + ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9438 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, + ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 4227 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [1236638414] = { "Minions gain 20% of Physical Damage as Extra Cold Damage" }, } }, + ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 997 }, 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 = { 4278 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1894653141] = { "0% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, [543539632] = { "30% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy" }, } }, + ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 4280 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1073384532] = { "Recover 50 Energy Shield when your Trap is triggered by an Enemy" }, } }, + ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 4279 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover 100 Life when your Trap is triggered by an Enemy" }, } }, + ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 4279 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover (20-30) Life when your Trap is triggered by an Enemy" }, } }, + ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3636 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3738335639] = { "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy" }, } }, + ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4251 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, + ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4251 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, + ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1890 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, + ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 4295 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [33065250] = { "Melee Attacks have (20-40)% chance to Poison on Hit" }, } }, + ["LifeLeechVsCursedEnemiesUnique__1"] = { affix = "", "1% of Damage Leeched as Life against Cursed Enemies", statOrder = { 4296 }, level = 1, group = "LifeLeechVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3861913659] = { "1% of Damage Leeched as Life against Cursed Enemies" }, } }, + ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4297 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [279227559] = { "15% increased Movement Speed if you've Killed Recently" }, } }, + ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4297 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [279227559] = { "15% increased Movement Speed if you've Killed Recently" }, } }, + ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 421 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3425526049] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, + ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 536 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3718597497] = { "Socketed Gems are Supported by Level 10 Controlled Destruction" }, } }, + ["ColdDamageIgnitesUnique__1"] = { affix = "", "Your Cold Damage can Ignite", statOrder = { 2916 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3573591118] = { "Your Cold Damage can Ignite" }, } }, + ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } }, + ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4778 }, 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 = { 3600 }, 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 = { 3600 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2622251413] = { "25% chance to double Stun Duration" }, } }, + ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3810 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [273476097] = { "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 70% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 20% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsFireUnique__4"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (10-50)% of Physical Damage as Extra Fire Damage" }, } }, + ["PhysicalAddedAsLightningUnique__1"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (10-50)% of Physical Damage as Extra Lightning Damage" }, } }, + ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 3350 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1464115829] = { "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed" }, } }, + ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have (40-80)% increased Skill Effect Duration", statOrder = { 1919 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [289885185] = { "Chaos Skills have (40-80)% increased Skill Effect Duration" }, } }, + ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 3205 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(15-20)% increased Poison Duration" }, } }, + ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 3205 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(20-25)% increased Poison Duration" }, } }, + ["PoisonDurationUnique__3"] = { affix = "", "(10-25)% increased Poison Duration", statOrder = { 3205 }, level = 30, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-25)% increased Poison Duration" }, } }, + ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 1048 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [803730540] = { "Immunity to Freeze, Chill, Curses and Stuns during Effect" }, } }, + ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4298 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, + ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4298 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, + ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4298 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain 100% of Weapon Physical Damage as Extra Damage of each Element" }, } }, + ["BleedOnMeleeHitChanceUnique__1"] = { affix = "", "Melee Attacks have (30-50)% chance to cause Bleeding", statOrder = { 2513 }, level = 1, group = "BleedOnMeleeHitChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1285056331] = { "Melee Attacks have (30-50)% chance to cause Bleeding" }, } }, + ["ArmourAndEvasionImplicitBelt1"] = { affix = "", "+(260-320) to Armour and Evasion Rating", statOrder = { 4302 }, level = 98, group = "ArmourAndEvasionRatingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2316658489] = { "+(260-320) to Armour and Evasion Rating" }, } }, + ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1971 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, + ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3648 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, + ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Strikes", statOrder = { 4313 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Strikes" }, } }, + ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Strike", statOrder = { 4314 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Strike" }, } }, + ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Strike", statOrder = { 4314 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Strike" }, } }, + ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7981 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Strike" }, } }, + ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 4312 }, 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 Strikes", statOrder = { 4324 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Strikes" }, } }, + ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 4325 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4107150355] = { "Enemies you Shock have 30% reduced Cast Speed" }, } }, + ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 4326 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3134790305] = { "Enemies you Shock have 20% reduced Movement Speed" }, } }, + ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 4337 }, 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 Life when you Ignite an Enemy", statOrder = { 4338 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of Life when you Ignite an Enemy" }, } }, + ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 4339 }, 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 = { 9649 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 8263 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 5617, 8633 }, 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 = { 8629, 8630 }, 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 = { 6295, 8634 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4004160031] = { "" }, [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 = { 8631, 8632 }, 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" }, } }, + ["HeistBlueprintRewardAlwaysUnique"] = { affix = "", "Heist Targets are always Replica Unique Items", statOrder = { 7067 }, level = 1, group = "HeistBlueprintRewardAlwaysUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2619914138] = { "Heist Targets are always Replica Unique Items" }, } }, + ["HeistBlueprintRewardAlwaysExperimented"] = { affix = "", "Heist Targets are always Experimented Items", statOrder = { 7065 }, level = 1, group = "HeistBlueprintRewardAlwaysExperimented", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4182516619] = { "Heist Targets are always Experimented Items" }, } }, + ["HeistBlueprintRewardAlwaysEnchanted"] = { affix = "", "Heist Targets are always Enchanted Armaments", statOrder = { 7064 }, level = 1, group = "HeistBlueprintRewardAlwaysEnchanted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3709545805] = { "Heist Targets are always Enchanted Armaments" }, } }, + ["HeistBlueprintRewardAlwaysCurrencyScarab"] = { affix = "", "Heist Targets are always Currency or Scarabs", statOrder = { 7063 }, level = 1, group = "HeistBlueprintRewardAlwaysCurrencyScarab", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4168369352] = { "Heist Targets are always Currency or Scarabs" }, } }, + ["HeistBlueprintRewardAlwaysTrinket"] = { affix = "", "Heist Targets are always Thieves' Trinkets", statOrder = { 7066 }, level = 1, group = "HeistBlueprintRewardAlwaysTrinket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123534836] = { "Heist Targets are always Thieves' Trinkets" }, } }, + ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Strike Chance with arrows that Fork", statOrder = { 4340 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Strike Chance with arrows that Fork" }, } }, + ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 4343 }, 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 = { 4342 }, 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 = { 4346 }, 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 = { 4344 }, 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 = { 9428 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, + ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3787 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, + ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Strike Chance against Chilled Enemies", statOrder = { 6968 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Strike Chance against Chilled Enemies" }, } }, + ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 848 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown" }, } }, + ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4885 }, 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 = { 4885 }, 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 = { 4885 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, + ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Your Physical Damage can Shock", statOrder = { 2915 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Your Physical Damage can Shock" }, } }, + ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6229 }, 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 = { 6229 }, 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 = { 6662 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, + ["FireDamageLeechedAsLifeWhileIgnitedUnique__1"] = { affix = "", "2% of Fire Damage Leeched as Life while Ignited", statOrder = { 7470 }, level = 1, group = "FireDamageLeechedAsLifeWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3633399302] = { "2% of Fire Damage Leeched as Life while Ignited" }, } }, + ["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 = { 8236 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [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 = { 9541 }, 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 = { 6889 }, 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 = { 3508 }, 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 = { 2020 }, 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 = { 2045 }, 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 = { 6530 }, 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 = { 2044 }, 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 = { 9320 }, 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 = "", "+2 Accuracy Rating per 2 Intelligence", statOrder = { 2043 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+2 Accuracy Rating per 2 Intelligence" }, } }, + ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6564 }, 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 = { 5769 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, + ["VulnerabilityAuraDuringFlaskEffectUnique__1"] = { affix = "", "Grants Level 21 Despair Curse Aura during Effect", statOrder = { 1051 }, level = 60, group = "VulnerabilityAuraDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [1604995720] = { "Grants Level 21 Despair Curse Aura during Effect" }, } }, + ["VulnerabilityAuraDuringFlaskEffectUnique__1Alt"] = { affix = "", "Grants Level 21 Vulnerability Curse Aura during Effect", statOrder = { 1052 }, level = 60, group = "VulnerabilityAuraDuringFlaskEffectNew", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [1660373569] = { "Grants Level 21 Vulnerability Curse Aura during Effect" }, } }, + ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9897 }, 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 = { 9898 }, 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 = { 5001 }, 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 = { 1021 }, 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 = { 995 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [215882879] = { "(10-20)% increased Area of Effect during Effect" }, } }, + ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 11022 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, + ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2941 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, + ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9670 }, 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 = { 10879 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10879 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10879 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10879 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6992 }, 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 Life per second", statOrder = { 6990 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their Life per second" }, } }, + ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3734 }, 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 = { 3735 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage" }, } }, + ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3735 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage" }, } }, + ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 3366 }, 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 = { 3367 }, 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 = { 6988 }, 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 = { 6986 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, + ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6995 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [1020786773] = { "Golems have +(800-1000) to Armour" }, } }, + ["ArmourPerTotemUnique__1"] = { affix = "", "+500 Armour per Summoned Totem", statOrder = { 4538 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1429385513] = { "+500 Armour per Summoned Totem" }, } }, + ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 10296 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds" }, } }, + ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently", statOrder = { 10292 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently" }, } }, + ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Strikes deal no Damage", statOrder = { 6062 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Strikes deal no Damage" }, } }, + ["LocalNoCriticalStrikeMultiplierUnique_1"] = { affix = "", "Critical Strikes with this Weapon do not deal extra Damage", statOrder = { 1513 }, level = 1, group = "LocalCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1508661598] = { "Critical Strikes with this Weapon do not deal extra Damage" }, } }, + ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 4354 }, level = 1, group = "IncreasedManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, + ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 4352 }, 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 = { 5856 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, + ["LocalFlaskUnholyMightUnique__1"] = { affix = "", "Unholy Might during Effect", statOrder = { 1074 }, level = 1, group = "LocalFlaskUnholyMight", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [207573834] = { "Unholy Might during Effect" }, } }, + ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9626 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Strikes deal no Damage" }, } }, + ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9626 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Strikes deal no Damage" }, } }, + ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 6031 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently" }, } }, + ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 6031 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently" }, } }, + ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6463 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies Killed by your Hits are destroyed" }, } }, + ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1772 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of Life on Kill" }, } }, + ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1772 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of Life on Kill" }, } }, + ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1772 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of Life on Kill" }, } }, + ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage", statOrder = { 3225 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Strike Multiplier 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 = { 4905 }, 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 = { 5756 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, + ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6885 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, + ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 8064 }, 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 = { 803 }, 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 = { 5504 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, + ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10314 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, + ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 11025 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, + ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6651 }, 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 = { 10923 }, 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 = { 9286 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, + ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 9286 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, + ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit", statOrder = { 8116 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit" }, } }, + ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit", statOrder = { 8116 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit" }, } }, + ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8116 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, + ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8116 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } }, + ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 3208 }, 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 = { 10305 }, 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 = { 4609 }, 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 = { 6881 }, 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 = { 9486 }, 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 = { 9676 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, + ["ZombiesLeechLifeToYouAt1000StrengthUnique__1"] = { affix = "", "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life", statOrder = { 10918 }, level = 1, group = "ZombiesLeechLifeToYouAt1000Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2802263253] = { "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life" }, } }, + ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 5047 }, 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 = { 7406 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { "drop" }, 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 = { 7318 }, 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 = { 9280 }, 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 = { 7507 }, 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 = { 10853 }, 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 = { 9282 }, 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 = { 6146 }, 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 = { 7405 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, + ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9558 }, 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 = { 10722 }, 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 = { 3509 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2831922878] = { "15% increased Attack and Cast Speed if you've used a Movement Skill Recently" }, } }, + ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value", statOrder = { 3230 }, 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 = { 3232 }, 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 = { 10983 }, 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 = { 1077 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [2444301311] = { "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest" }, } }, + ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 1076 }, 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 = { 537 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, + ["GainBrineChargesUnique__1"] = { affix = "", "50% chance to gain a Brine Charge instead of an Endurance Charge", statOrder = { 5616 }, level = 1, group = "GainBrineCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3682839745] = { "50% chance to gain a Brine Charge instead of an Endurance Charge" }, } }, + ["DisplayGrantsVengeanceUnique__1"] = { affix = "", "Grants Level 15 Battlemage's Cry Skill", statOrder = { 702 }, level = 1, group = "BattlemagesCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2356594418] = { "Grants Level 15 Battlemage's Cry Skill" }, } }, + ["CannotLeechLifeUnique__1"] = { affix = "", "Cannot Leech Life", statOrder = { 2593 }, level = 1, group = "CannotLeechLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3769854701] = { "Cannot Leech Life" }, } }, + ["AllResistanceAt200StrengthUnique__1"] = { affix = "", "+(20-25)% to all Elemental Resistances while you have at least 200 Strength", statOrder = { 4400 }, level = 1, group = "AllResistanceAt200Strength", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2415398184] = { "+(20-25)% to all Elemental Resistances while you have at least 200 Strength" }, } }, + ["LifeRegenerationAt400StrengthUnique__1"] = { affix = "", "Regenerate 2% of Life per second with at least 400 Strength", statOrder = { 7528 }, level = 1, group = "LifeRegenerationAt400Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1173027373] = { "Regenerate 2% of Life per second with at least 400 Strength" }, } }, + ["LifeRegenerationIfHitRecentlyUnique__1"] = { affix = "", "Regenerate 2% of Life per second if you have been Hit Recently", statOrder = { 7516 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2201614328] = { "Regenerate 2% of Life per second if you have been Hit Recently" }, } }, + ["AttackBlockIfBlockedSpellRecentlyUnique__1_"] = { affix = "", "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently", statOrder = { 4887 }, level = 1, group = "AttackBlockIfBlockedSpellRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [647983250] = { "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently" }, } }, + ["SpellBlockIfBlockedAttackRecentlyUnique__1"] = { affix = "", "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently", statOrder = { 10280 }, level = 1, group = "SpellBlockIfBlockedAttackRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1214153650] = { "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently" }, } }, + ["AddedChaosDamageWhileUsingAFlaskUnique__1_"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10273 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, tradeHashes = { [3519268108] = { "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect" }, } }, + ["AddedChaosDamageWhileUsingAFlaskUnique__2"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10273 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, tradeHashes = { [3519268108] = { "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect" }, } }, + ["GainPowerChargesOnUsingWarcryUnique__1"] = { affix = "", "Gain 2 Power Charges when you Warcry", statOrder = { 6795 }, level = 1, group = "GainPowerChargesOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4118945608] = { "Gain 2 Power Charges when you Warcry" }, } }, + ["AttackLeechAgainstTauntedEnemyUnique__1"] = { affix = "", "2% of Attack Damage Leeched as Life against Taunted Enemies", statOrder = { 7468 }, level = 1, group = "AttackLeechAgainstTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3750917270] = { "2% of Attack Damage Leeched as Life against Taunted Enemies" }, } }, + ["WarcryCooldownSpeedUnique__1"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159248054] = { "50% increased Warcry Cooldown Recovery Rate" }, } }, + ["WarcryCooldownSpeedUnique__2"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159248054] = { "50% increased Warcry Cooldown Recovery Rate" }, } }, + ["WarcryEffectUnique__1"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10723 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3037553757] = { "25% increased Warcry Buff Effect" }, } }, + ["WarcryEffectUnique__2"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10723 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3037553757] = { "25% increased Warcry Buff Effect" }, } }, + ["OnslaughtOnUsingWarcryUnique__1"] = { affix = "", "Gain Onslaught for 4 seconds when you Warcry", statOrder = { 6876 }, level = 1, group = "OnslaughtOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3049436415] = { "Gain Onslaught for 4 seconds when you Warcry" }, } }, + ["AddedColdDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Adds 40 to 60 Cold Damage against Chilled Enemies", statOrder = { 9364 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3734640451] = { "Adds 40 to 60 Cold Damage against Chilled Enemies" }, } }, + ["AddedColdDamageAgainstFrozenEnemiesUnique__2"] = { affix = "", "Adds 60 to 80 Cold Damage against Chilled Enemies", statOrder = { 9364 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3734640451] = { "Adds 60 to 80 Cold Damage against Chilled Enemies" }, } }, + ["CannotBeShockedWhileChilledUnique__1"] = { affix = "", "100% chance to Avoid being Shocked while Chilled", statOrder = { 5002 }, level = 1, group = "AvoidShockWhileChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3981960937] = { "100% chance to Avoid being Shocked while Chilled" }, } }, + ["ChanceToShockChilledEnemiesUnique__1"] = { affix = "", "50% chance to Shock Chilled Enemies", statOrder = { 5799 }, level = 1, group = "ChanceToShockChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4069101408] = { "50% chance to Shock Chilled Enemies" }, } }, + ["AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1"] = { affix = "", "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently", statOrder = { 4995 }, level = 1, group = "AvoidFreezeAndChillIfFireSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3706656107] = { "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently" }, } }, + ["HeraldOfThunderBuffEffectUnique__1"] = { affix = "", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 7225 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has 50% increased Buff Effect" }, } }, + ["LifeRegenerationPerLevelUnique__1"] = { affix = "", "Regenerate 3 Life per second per Level", statOrder = { 2995 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1384864963] = { "Regenerate 3 Life per second per Level" }, } }, + ["TotemLeechLifeToYouUnique__1"] = { affix = "", "0.5% of Damage dealt by your Totems is Leeched to you as Life", statOrder = { 4273 }, level = 1, group = "TotemLeechLifeToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3812562802] = { "0.5% of Damage dealt by your Totems is Leeched to you as Life" }, } }, + ["TriggeredConsecrateUnique__1"] = { affix = "", "Trigger Level 10 Consecrate when you deal a Critical Strike", statOrder = { 687 }, level = 1, group = "TriggeredConsecrate", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [899293871] = { "Trigger Level 10 Consecrate when you deal a Critical Strike" }, } }, + ["HallowOnHitVsConsecratedEnemyUnique__1"] = { affix = "", "Inflict Hallowing Flame on Hit while on Consecrated Ground", statOrder = { 7378 }, level = 1, group = "HallowOnHitVsConsecratedEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3087629547] = { "Inflict Hallowing Flame on Hit while on Consecrated Ground" }, } }, + ["IncreasedDamageOnConsecratedGroundUnique__1"] = { affix = "", "50% increased Damage while on Consecrated Ground", statOrder = { 3588 }, level = 1, group = "IncreasedDamageOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1704905020] = { "50% increased Damage while on Consecrated Ground" }, } }, + ["BlockChanceOnConsecratedGroundUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while on Consecrated Ground", statOrder = { 4589 }, level = 1, group = "BlockChanceOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3865999868] = { "+5% Chance to Block Attack Damage while on Consecrated Ground" }, } }, + ["ChillEnemiesOnHitWithWeaponUnique__1"] = { affix = "", "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand", statOrder = { 7985 }, level = 1, group = "ChillEnemiesOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [1488891279] = { "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand" }, } }, + ["SupportFlatAddedFireDamageUnique__1"] = { affix = "", "Socketed Gems deal 63 to 94 Added Fire Damage", statOrder = { 567 }, level = 1, group = "SupportFlatAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 63 to 94 Added Fire Damage" }, } }, + ["PhysicalDamageToAttacksPerLevelUnique__1_"] = { affix = "", "Adds 1 to 2 Physical Damage to Attacks per Level", statOrder = { 4926 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3821472155] = { "Adds 1 to 2 Physical Damage to Attacks per Level" }, } }, + ["PhysicalDamageToAttacksPerLevelUnique__2"] = { affix = "", "Adds 2 to 3 Physical Damage to Attacks per Level", statOrder = { 4926 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3821472155] = { "Adds 2 to 3 Physical Damage to Attacks per Level" }, } }, + ["RightRingSlotMaximumManaUnique__1"] = { affix = "", "Right ring slot: +250 to maximum Mana", statOrder = { 2676 }, level = 1, group = "RightRingSlotMaximumMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [417509375] = { "Right ring slot: +250 to maximum Mana" }, } }, + ["LeftRingSlotMaximumEnergyShieldUnique__1"] = { affix = "", "Left ring slot: +250 to maximum Energy Shield", statOrder = { 2697 }, level = 1, group = "LeftRingSlotMaximumEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1497601437] = { "Left ring slot: +250 to maximum Energy Shield" }, } }, + ["LeftRingSlotFlatManaRegenerationUnique__1"] = { affix = "", "Left ring slot: Regenerate 40 Mana per Second", statOrder = { 2685 }, level = 1, group = "LeftRingSlotFlatManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3241234878] = { "Left ring slot: Regenerate 40 Mana per Second" }, } }, + ["NearbyEnemiesAreIntimidatedUnique__1"] = { affix = "", "Nearby Enemies are Intimidated", statOrder = { 8018 }, level = 1, group = "NearbyEnemiesAreIntimidated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877479250] = { "" }, [2899095498] = { "Nearby Enemies are Intimidated" }, } }, + ["NearbyAlliesMovementVelocityUnique__1"] = { affix = "", "10% increased Movement Speed for you and nearby Allies", statOrder = { 8010 }, level = 1, group = "NearbyAlliesMovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3410049114] = { "10% increased Movement Speed for you and nearby Allies" }, [2250533757] = { "10% increased Movement Speed" }, } }, + ["WeaponElementalPenetrationUnique__1"] = { affix = "", "Damage with Weapons Penetrates 5% Elemental Resistances", statOrder = { 3635 }, level = 1, group = "WeaponElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [1736172673] = { "Damage with Weapons Penetrates 5% Elemental Resistances" }, } }, + ["ElementalPenetrationUnique__1"] = { affix = "", "Damage Penetrates (0-20)% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (0-20)% Elemental Resistances" }, } }, + ["IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1"] = { affix = "", "150% increased Elemental Damage if you've Warcried Recently", statOrder = { 6391 }, level = 1, group = "IncreasedElementalDamageIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2803182108] = { "150% increased Elemental Damage if you've Warcried Recently" }, } }, + ["TriggeredAnimateWeaponUnique__1"] = { affix = "", "25% chance to Trigger Level 20 Animate Weapon on Kill", statOrder = { 787 }, level = 1, group = "TriggeredAnimateWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1973890509] = { "25% chance to Trigger Level 20 Animate Weapon on Kill" }, } }, + ["AddedFireDamagePerStrengthUnique__1"] = { affix = "", "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 1, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, + ["LocalGolemBuffEffectUnique__1"] = { affix = "", "25% increased Effect of Buffs granted by Socketed Golem Skills", statOrder = { 205 }, level = 1, group = "LocalGolemBuffEffect", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [2813516522] = { "25% increased Effect of Buffs granted by Socketed Golem Skills" }, } }, + ["LocalGolemLifeAddedAsESUnique__1"] = { affix = "", "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 209 }, level = 1, group = "LocalGolemLifeAddedAsES", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "defences", "energy_shield", "minion", "gem" }, tradeHashes = { [1199118714] = { "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield" }, } }, + ["LocalGolemIncreasedAttackAndCastSpeedUnique__1"] = { affix = "", "Socketed Golem Skills have 20% increased Attack and Cast Speed", statOrder = { 204 }, level = 1, group = "LocalGolemIncreasedAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "minion", "gem" }, tradeHashes = { [706212417] = { "Socketed Golem Skills have 20% increased Attack and Cast Speed" }, } }, + ["LocalGolemGrantOnslaughtOnSummonUnique__1"] = { affix = "", "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill", statOrder = { 208 }, level = 1, group = "LocalGolemGrantsOnslaughtOnSummon", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1693676706] = { "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill" }, } }, + ["LocalGolemTauntOnHitUnique__1_"] = { affix = "", "Socketed Golem Skills have 25% chance to Taunt on Hit", statOrder = { 206 }, level = 1, group = "LocalGolemTauntOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [178057093] = { "Socketed Golem Skills have 25% chance to Taunt on Hit" }, } }, + ["LocalGolemLifeRegenerationUnique__1"] = { affix = "", "Socketed Golem Skills have Minions Regenerate 5% of Life per second", statOrder = { 207 }, level = 1, group = "LocalGolemLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "minion", "gem" }, tradeHashes = { [693460617] = { "Socketed Golem Skills have Minions Regenerate 5% of Life per second" }, } }, + ["LocalVaalDamageUnique__1_"] = { affix = "", "Socketed Vaal Skills deal 150% more Damage", statOrder = { 583 }, level = 80, group = "LocalVaalDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [3106951888] = { "Socketed Vaal Skills deal 150% more Damage" }, } }, + ["LocalVaalSoulRequirementUnique__1"] = { affix = "", "Socketed Vaal Skills require 30% less Souls per Use", statOrder = { 592 }, level = 80, group = "LocalVaalSoulRequirement", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2198756560] = { "Socketed Vaal Skills require 30% less Souls per Use" }, } }, + ["LocalVaalUsesToStoreUnique__1"] = { affix = "", "Socketed Vaal Skills have 20% chance to regain consumed Souls when used", statOrder = { 593 }, level = 80, group = "LocalVaalUsesToStore", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [207863952] = { "Socketed Vaal Skills have 20% chance to regain consumed Souls when used" }, } }, + ["LocalVaalIgnoreMonsterResistancesUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances", statOrder = { 588 }, level = 80, group = "LocalVaalIgnoreMonsterResistances", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2540508981] = { "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances" }, } }, + ["LocalVaalIgnoreMonsterPhysicalReductionUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction", statOrder = { 587 }, level = 80, group = "LocalVaalIgnoreMonsterPhysicalReduction", weightKey = { }, weightVal = { }, modTags = { "physical", "vaal" }, tradeHashes = { [1388374928] = { "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction" }, } }, + ["LocalVaalElusiveOnUseUnique__1_"] = { affix = "", "Socketed Vaal Skills grant Elusive when Used", statOrder = { 585 }, level = 80, group = "LocalVaalElusiveOnUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1831825995] = { "Socketed Vaal Skills grant Elusive when Used" }, } }, + ["LocalVaalTailwindIfUsedRecentlyUnique__1"] = { affix = "", "You have Tailwind if you've used a Socketed Vaal Skill Recently", statOrder = { 596 }, level = 80, group = "LocalVaalTailwindIfUsedRecently", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1678234826] = { "You have Tailwind if you've used a Socketed Vaal Skill Recently" }, } }, + ["LocalVaalAreaOfEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 60% increased Area of Effect", statOrder = { 581 }, level = 80, group = "LocalVaalAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2505291583] = { "Socketed Vaal Skills have 60% increased Area of Effect" }, } }, + ["LocalVaalProjectileSpeedUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Projectile Speed", statOrder = { 590 }, level = 80, group = "LocalVaalProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "vaal" }, tradeHashes = { [2237174578] = { "Socketed Vaal Skills have 80% increased Projectile Speed" }, } }, + ["LocalVaalSkillEffectDurationUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Skill Effect Duration", statOrder = { 584 }, level = 80, group = "LocalVaalSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [476204410] = { "Socketed Vaal Skills have 80% increased Skill Effect Duration" }, } }, + ["LocalVaalSoulGainPreventionUnique__1"] = { affix = "", "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration", statOrder = { 591 }, level = 80, group = "LocalVaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2599305231] = { "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration" }, } }, + ["LocalVaalLuckyDamageUnique__1"] = { affix = "", "Damage with Hits from Socketed Vaal Skills is Lucky", statOrder = { 586 }, level = 80, group = "LocalVaalLuckyDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [1274200851] = { "Damage with Hits from Socketed Vaal Skills is Lucky" }, } }, + ["LocalVaalAuraEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 50% increased Aura Effect", statOrder = { 582 }, level = 80, group = "LocalVaalAuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura", "vaal" }, tradeHashes = { [2932121832] = { "Socketed Vaal Skills have 50% increased Aura Effect" }, } }, + ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 6156 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2805714016] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, + ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "(100-200)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(100-200)% increased Fire Damage" }, } }, + ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7330 }, 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 = { 6671 }, 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 = { 691 }, 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 = { 686 }, 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 = { 686 }, 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" }, } }, + ["LifeGainedOnStunUnique__1_"] = { affix = "", "Gain 50 Life when you Stun an Enemy", statOrder = { 6794 }, level = 40, group = "LifeGainedOnStun", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2968301430] = { "Gain 50 Life when you Stun an Enemy" }, } }, + ["RyuslathaMinimumDamageModifierUnique__1"] = { affix = "", "(30-40)% less Minimum Physical Attack Damage", statOrder = { 1223 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1715495976] = { "(30-40)% less Minimum Physical Attack Damage" }, } }, + ["RyuslathaMaximumDamageModifierUnique__1_"] = { affix = "", "(30-40)% more Maximum Physical Attack Damage", statOrder = { 1222 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3029185248] = { "(30-40)% more Maximum Physical Attack Damage" }, } }, + ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4697 }, 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 = { 4588 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, + ["AdditionalSpellBlockWhileCursedUnique__1"] = { affix = "", "+20% Chance to Block Spell Damage while Cursed", statOrder = { 4633 }, level = 1, group = "AdditionalSpellBlockWhileCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3218891195] = { "+20% Chance to Block Spell Damage while Cursed" }, } }, + ["LifePerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Life per Level", statOrder = { 7487 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+(1-2) Maximum Life per Level" }, } }, + ["ManaPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Mana per Level", statOrder = { 8299 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+(1-2) Maximum Mana per Level" }, } }, + ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Energy Shield per Level", statOrder = { 6529 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+(1-2) Maximum Energy Shield per Level" }, } }, + ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 674 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, + ["SandMirageSkillUnique__1"] = { affix = "", "Grants level 20 Suspend in Time", statOrder = { 8004 }, level = 1, group = "SandMirageSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3673812491] = { "Grants level 20 Suspend in Time" }, } }, + ["ResentmentFireDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Cinders when Equipped", statOrder = { 8006 }, level = 1, group = "ResentmentFireDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4015227054] = { "Trigger Level 20 Cinders when Equipped" }, } }, + ["AnimosityPhysDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Tears of Rot when Equipped", statOrder = { 8005 }, level = 1, group = "AnimosityPhysDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1714905437] = { "Trigger Level 20 Tears of Rot when Equipped" }, } }, + ["PhysicalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(28-35)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(28-35)% to Physical Damage over Time Multiplier" }, } }, + ["FireExposureOnHitVsMaxResentmentStacksUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance", statOrder = { 6668, 6668.1 }, level = 1, group = "FireExposureOnHitVsMaxResentmentStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403551644] = { "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance" }, } }, + ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7205 }, 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 = { 5003 }, 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 = { 6137 }, 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 = { 10165, 10165.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 = { 10634 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, + ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10634 }, 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 = { 9407 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, + ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9454 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, + ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9496 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, + ["PoisonDamageUnique__1"] = { affix = "", "(40-60)% increased Damage with Poison", statOrder = { 3217 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(40-60)% increased Damage with Poison" }, } }, + ["PoisonDamageUnique__2"] = { affix = "", "(100-150)% increased Damage with Poison", statOrder = { 3217 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(100-150)% increased Damage with Poison" }, } }, + ["BleedDamageUnique__1_"] = { affix = "", "(40-60)% increased Damage with Bleeding", statOrder = { 3204 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(40-60)% increased Damage with Bleeding" }, } }, + ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 188 }, 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 = { 188 }, 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 = { 2079 }, 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 Strike Multiplier while you have no Frenzy Charges", statOrder = { 2078 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Strike Multiplier while you have no Frenzy Charges" }, } }, + ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4566 }, 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 = { 9538 }, 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 = { 5890 }, 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 = { 6650 }, 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 = { 6152 }, 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 = { 6868, 6868.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 = "", "Your Fire Damage can Poison", statOrder = { 2900 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Your Fire Damage can Poison" }, } }, + ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Your Cold Damage can Poison", statOrder = { 2899 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Your Cold Damage can Poison" }, } }, + ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Your Lightning Damage can Poison", statOrder = { 2901 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Your Lightning Damage can Poison" }, } }, + ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6675 }, 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 = { 5919 }, 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 = { 7570 }, 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 = { 2198 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (10-15)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, + ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 672 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, + ["AdditionalPhysicalDamageReductionUnique_1UNUSED"] = { affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["UniqueReducedExtraDamageFromCrits__1"] = { affix = "", "You take 100% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 100% reduced Extra Damage from Critical Strikes" }, } }, + ["SpellDamageSuppressedUnique__1"] = { affix = "", "Prevent +(4-6)% of Suppressed Spell Damage", statOrder = { 1165 }, level = 56, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(4-6)% of Suppressed Spell Damage" }, } }, + ["SpellDamageSuppressedUnique__2"] = { affix = "", "-10% to amount of Suppressed Spell Damage Prevented", statOrder = { 1165 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "-10% to amount of Suppressed Spell Damage Prevented" }, } }, + ["GrantsFrostbiteUnique__1"] = { affix = "", "Grants Level 5 Frostbite Skill", statOrder = { 648 }, level = 1, group = "FrostbiteSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 5 Frostbite Skill" }, } }, + ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 641 }, 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 = { 641 }, 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 = { 641 }, 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 = { 5821 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, + ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10995 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, + ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9464 }, 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 = { 9464 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(20-30)% reduced Mana Cost of Minion Skills" }, } }, + ["MinionSkillManaCostEfficiencyUnique__1"] = { affix = "", "(40-60)% increased Mana Cost Efficiency of Minion Skills", statOrder = { 5091 }, level = 1, group = "MinionSkillManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2407942498] = { "(40-60)% increased Mana Cost Efficiency of Minion Skills" }, } }, + ["ManaCostEfficiencyUnique__1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-30)% increased Mana Cost Efficiency" }, } }, + ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 846 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [311420892] = { "" }, [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, + ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 769 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1571803312] = { "" }, [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, [311420892] = { "" }, } }, + ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 4037 }, 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 = { 10452 }, 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 = { 6535 }, 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 = { 3497 }, 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 Strikes while you have no Power Charges", statOrder = { 6625 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Strikes 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 = { 3507 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3492297134] = { "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 = { 665 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, + ["BlightSkillUnique__1"] = { affix = "", "Grants Level 25 Blight Skill", statOrder = { 669 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 25 Blight Skill" }, } }, + ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of the Arcane Skill" }, } }, + ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Time Skill" }, } }, + ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Focus Skill" }, } }, + ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Directions Skill" }, } }, + ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Storms Skill" }, } }, + ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Brutality Skill" }, } }, + ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of the Arcane Skill" }, } }, + ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Time Skill" }, } }, + ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 644 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Focus Skill" }, } }, + ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 644 }, 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 = { 644 }, 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 = { 644 }, 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 = { 5805 }, 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 = { 3206 }, 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 Strike Chance", statOrder = { 4355 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Strike Chance" }, } }, + ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 534 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 10 Chance to Poison" }, } }, + ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 533 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, } }, + ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 532 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 18 Innervate" }, } }, + ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 532 }, 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 = { 523 }, 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 = { 768 }, 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 = { 9361, 9361.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 = { 9830 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, + ["PoisonDamagePerFrenzyChargeUnique__1"] = { affix = "", "10% increased Damage with Poison per Frenzy Charge", statOrder = { 9822 }, level = 1, group = "PoisonDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1221011086] = { "10% increased Damage with Poison per Frenzy Charge" }, } }, + ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6854 }, 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 = { 6900 }, 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 = { 9831 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, + ["PoisonDamageWithOver300DexterityUnique__1"] = { affix = "", "(75-100)% increased Damage with Poison if you have at least 300 Dexterity", statOrder = { 9825 }, level = 1, group = "PoisonDamageWithOver300Dexterity", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [256730087] = { "(75-100)% increased Damage with Poison if you have at least 300 Dexterity" }, } }, + ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10813 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10813 }, 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 = { 8100 }, 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 = { 5243 }, 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 = { 5058 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, + ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, + ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6238 }, 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 = { 6238 }, 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 = { 6238 }, 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 = { 1590, 1601 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "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 = { 770 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, + ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion", statOrder = { 4356 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion" }, } }, + ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Poison on Hit while you have a Bestial Minion", statOrder = { 4358 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [1114411822] = { "Projectiles from Attacks Poison on Hit while you have a Bestial Minion" }, } }, + ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Maim on Hit while you have a Bestial Minion", statOrder = { 4357 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1753916791] = { "Projectiles from Attacks Maim on Hit while you have a Bestial Minion" }, } }, + ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 4359 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [242822230] = { "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion" }, } }, + ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 4360 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, + ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 4361 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, + ["LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life against Maimed Enemies", statOrder = { 7467 }, level = 1, group = "LifeLeechFromAttackDamageAgainstMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [447636597] = { "0.5% of Attack Damage Leeched as Life against Maimed Enemies" }, } }, + ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 767 }, 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 Effect of Shock", statOrder = { 10153 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Effect of Shock" }, } }, + ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7535 }, 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 = { 7535 }, 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 = { 7535 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "100% increased Effect of Lightning Ailments" }, } }, + ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems Socketed always have the Quality bonus from Socket Colour", statOrder = { 170 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [899329924] = { "Gems Socketed always have the Quality bonus from Socket Colour" }, } }, + ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1106 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, + ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1106 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, + ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 167 }, 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 +20% to Quality", statOrder = { 168 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3799930101] = { "Gems Socketed in Green Sockets have +20% to Quality" }, } }, + ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 169 }, 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 = { 10519 }, 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 = { 6646 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, + ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 30 Purity of Fire Skill", statOrder = { 634 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 30 Purity of Fire Skill" }, } }, + ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 30 Purity of Ice Skill", statOrder = { 640 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 30 Purity of Ice Skill" }, } }, + ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 30 Purity of Lightning Skill", statOrder = { 642 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 30 Purity of Lightning Skill" }, } }, + ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 742 }, 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 = { 743 }, 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 = { 744 }, 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 = { 10259 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, + ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Raised Spectres have (50-100)% increased maximum Life", statOrder = { 1793 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Raised Spectres have (50-100)% increased maximum Life" }, } }, + ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 10890 }, 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 = "", "5% increased Cast Speed per Power Charge", statOrder = { 5546 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1604393896] = { "5% increased Cast Speed per Power Charge" }, } }, + ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 5 Mana per Second per Power Charge", statOrder = { 8312 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4084763463] = { "Regenerate 5 Mana per Second per Power Charge" }, } }, + ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6906 }, 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 = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5969, 5969.1, 5969.2 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, + ["ConsumesSupportGemsUnique"] = { affix = "", "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level", "Can Consume 4 Uncorrupted Support Gems", "Has not Consumed any Gems", statOrder = { 107, 107.1, 107.2 }, level = 88, group = "ConsumesSupportGemsUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4206709389] = { "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level", "Can Consume 4 Uncorrupted Support Gems", "Has not Consumed any Gems" }, } }, + ["HungryLoopSupportedByAddedFireDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Fire Damage", statOrder = { 107, 473 }, level = 1, group = "HungryLoopSupportedByAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByColdPenetration_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cold Penetration", statOrder = { 107, 524 }, level = 1, group = "HungryLoopSupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1991958615] = { "Socketed Gems are Supported by Level 20 Cold Penetration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIceBite"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ice Bite", statOrder = { 107, 523 }, level = 1, group = "HungryLoopSupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1384629003] = { "Socketed Gems are Supported by Level 20 Ice Bite" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByManaLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mana Leech", statOrder = { 107, 525 }, level = 1, group = "HungryLoopSupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAddedColdDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 107, 529 }, level = 1, group = "HungryLoopSupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4020144606] = { "Socketed Gems are Supported by Level 20 Added Cold Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByReducedManaCost"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Inspiration", statOrder = { 107, 530 }, level = 1, group = "HungryLoopSupportedByReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [749770518] = { "Socketed Gems are Supported by Level 20 Inspiration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAdditionalAccuracy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Additional Accuracy", statOrder = { 107, 491 }, level = 1, group = "HungryLoopSupportedByAdditionalAccuracy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1567462963] = { "Socketed Gems are supported by Level 20 Additional Accuracy" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBloodMagic"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arrogance", statOrder = { 107, 470 }, level = 1, group = "HungryLoopSupportedByBloodMagic", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3922006600] = { "Socketed Gems are Supported by Level 20 Arrogance" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Fork", statOrder = { 107, 497 }, level = 1, group = "HungryLoopSupportedByFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2062753054] = { "Socketed Gems are supported by Level 20 Fork" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByInnervate_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Innervate", statOrder = { 107, 532 }, level = 1, group = "HungryLoopSupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1106668565] = { "Socketed Gems are Supported by Level 20 Innervate" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLesserPoison_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chance to Poison", statOrder = { 107, 534 }, level = 1, group = "HungryLoopSupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByHypothermia"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hypothermia", statOrder = { 107, 522 }, level = 1, group = "HungryLoopSupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [13669281] = { "Socketed Gems are Supported by Level 20 Hypothermia" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLifeLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 107, 494 }, level = 1, group = "HungryLoopSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [891277550] = { "Socketed Gems are supported by Level 20 Life Leech" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMeleeSplash_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Melee Splash", statOrder = { 107, 482 }, level = 1, group = "HungryLoopSupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Multistrike", statOrder = { 107, 492 }, level = 1, group = "HungryLoopSupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2501237765] = { "Socketed Gems are supported by Level 20 Multistrike" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFasterProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Faster Projectiles", statOrder = { 107, 493 }, level = 1, group = "HungryLoopSupportedByFasterProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByRemoteMine"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blastchain Mine", statOrder = { 107, 508 }, level = 1, group = "HungryLoopSupportedByRemoteMine", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByRemoteMine2_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 High-Impact Mine", statOrder = { 107, 376 }, level = 1, group = "HungryLoopSupportedByRemoteMine2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2116100988] = { "Socketed Gems are Supported by Level 20 High-Impact Mine" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByStun"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Stun", statOrder = { 107, 490 }, level = 1, group = "HungryLoopSupportedByStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [689720069] = { "Socketed Gems are supported by Level 20 Stun" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCastOnCrit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 107, 483 }, level = 1, group = "HungryLoopSupportedByCastOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2325632050] = { "Socketed Gems are supported by Level 20 Cast On Critical Strike" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCastWhenStunned"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast when Stunned", statOrder = { 107, 488 }, level = 1, group = "HungryLoopSupportedByCastWhenStunned", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1079148723] = { "Socketed Gems are supported by Level 20 Cast when Stunned" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByVileToxins_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 107, 533 }, level = 1, group = "HungryLoopSupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByWeaponElementalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", statOrder = { 107, 498 }, level = 1, group = "HungryLoopSupportedByWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2532625478] = { "Socketed Gems are supported by Level 20 Elemental Damage with Attacks" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIncreasedArea"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 107, 233 }, level = 1, group = "HungryLoopSupportedByIncreasedArea", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByKnockback"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Knockback", statOrder = { 107, 513 }, level = 1, group = "HungryLoopSupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4066711249] = { "Socketed Gems are Supported by Level 20 Knockback" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIncreasedMinionLife"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Life", statOrder = { 107, 515 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1337327984] = { "Socketed Gems are Supported by Level 20 Minion Life" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIncreasedMinionSpeed"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Speed", statOrder = { 107, 519 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [995332031] = { "Socketed Gems are Supported by Level 20 Minion Speed" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLesserMultipleProjectiles_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Projectiles", statOrder = { 107, 516 }, level = 1, group = "HungryLoopSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [584144941] = { "Socketed Gems are Supported by Level 20 Multiple Projectiles" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIncreasedMinionDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Damage", statOrder = { 107, 517 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [808939569] = { "Socketed Gems are Supported by Level 20 Minion Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIncreasedCriticalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Increased Critical Damage", statOrder = { 107, 496 }, level = 1, group = "HungryLoopSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1108755349] = { "Socketed Gems are supported by Level 20 Increased Critical Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBlind"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Blind", statOrder = { 107, 481 }, level = 1, group = "HungryLoopSupportedByBlind", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEnduranceChargeOnStun"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 107, 537 }, level = 1, group = "HungryLoopSupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 107, 531 }, level = 1, group = "HungryLoopSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByTrap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trap", statOrder = { 107, 465 }, level = 1, group = "HungryLoopSupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIronWill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Iron Will", statOrder = { 107, 512 }, level = 1, group = "HungryLoopSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [906997920] = { "Socketed Gems are Supported by Level 20 Iron Will" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFasterCast"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Faster Casting", statOrder = { 107, 511 }, level = 1, group = "HungryLoopSupportedByFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFlee"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Chance to Flee", statOrder = { 107, 509 }, level = 1, group = "HungryLoopSupportedByFlee", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [952060721] = { "Socketed Gems are supported by Level 20 Chance to Flee" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByColdToFire_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cold to Fire", statOrder = { 107, 474 }, level = 1, group = "HungryLoopSupportedByColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [550444281] = { "Socketed Gems are Supported by Level 20 Cold to Fire" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySpellTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 107, 475 }, level = 1, group = "HungryLoopSupportedBySpellTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterMultipleProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Greater Multiple Projectiles", statOrder = { 107, 305 }, level = 1, group = "HungryLoopSupportedByGreaterMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [359450079] = { "Socketed Gems are Supported by Level 20 Greater Multiple Projectiles" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIncreasedCriticalStrikes"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", statOrder = { 107, 323 }, level = 1, group = "HungryLoopSupportedByIncreasedCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByItemQuantity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Item Quantity", statOrder = { 107, 330 }, level = 1, group = "HungryLoopSupportedByItemQuantity", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "drop" }, tradeHashes = { [248646071] = { "Socketed Gems are Supported by Level 20 Item Quantity" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByItemRarity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Item Rarity", statOrder = { 107, 331 }, level = 1, group = "HungryLoopSupportedByItemRarity", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "drop" }, tradeHashes = { [4206709389] = { "" }, [3587013273] = { "Socketed Gems are Supported by Level 20 Item Rarity" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIncreasedDuration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 More Duration", statOrder = { 107, 324 }, level = 1, group = "HungryLoopSupportedByIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [407317553] = { "Socketed Gems are Supported by Level 20 More Duration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByChanceToIgnite"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Combustion", statOrder = { 107, 254 }, level = 1, group = "HungryLoopSupportedByChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1828254451] = { "Socketed Gems are Supported by Level 20 Combustion" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBloodlust"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bloodlust", statOrder = { 107, 241 }, level = 1, group = "HungryLoopSupportedByBloodlust", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [804508379] = { "Socketed Gems are Supported by Level 20 Bloodlust" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLifeGainOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Life Gain On Hit", statOrder = { 107, 334 }, level = 1, group = "HungryLoopSupportedByLifeGainOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2032386732] = { "Socketed Gems are Supported by Level 20 Life Gain On Hit" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCullingStrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Culling Strike", statOrder = { 107, 264 }, level = 1, group = "HungryLoopSupportedByCullingStrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1135493957] = { "Socketed Gems are Supported by Level 20 Culling Strike" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPointBlank"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Point Blank", statOrder = { 107, 364 }, level = 1, group = "HungryLoopSupportedByPointBlank", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3754129682] = { "Socketed Gems are Supported by Level 20 Point Blank" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIronGrip"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Iron Grip", statOrder = { 107, 329 }, level = 1, group = "HungryLoopSupportedByIronGrip", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMeleeDamageOnFullLife"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Damage On Full Life", statOrder = { 107, 346 }, level = 1, group = "HungryLoopSupportedByMeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2126431157] = { "Socketed Gems are Supported by Level 20 Damage On Full Life" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByRangedAttackTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ballista Totem", statOrder = { 107, 372 }, level = 1, group = "HungryLoopSupportedByRangedAttackTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFirePenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fire Penetration", statOrder = { 107, 287 }, level = 1, group = "HungryLoopSupportedByFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1979658770] = { "Socketed Gems are Supported by Level 20 Fire Penetration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLightningPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Lightning Penetration", statOrder = { 107, 336 }, level = 1, group = "HungryLoopSupportedByLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3354027870] = { "Socketed Gems are Supported by Level 20 Lightning Penetration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chain", statOrder = { 107, 252 }, level = 1, group = "HungryLoopSupportedByChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2643665787] = { "Socketed Gems are Supported by Level 20 Chain" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMulticast"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Echo", statOrder = { 107, 351 }, level = 1, group = "HungryLoopSupportedByMulticast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [913919528] = { "Socketed Gems are Supported by Level 20 Spell Echo" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPowerChargeOnCrit_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", statOrder = { 107, 366 }, level = 1, group = "HungryLoopSupportedByPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIncreasedBurningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Burning Damage", statOrder = { 107, 322 }, level = 1, group = "HungryLoopSupportedByIncreasedBurningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2680613507] = { "Socketed Gems are Supported by Level 20 Burning Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySummonElementalResistance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Army Support", statOrder = { 107, 394 }, level = 1, group = "HungryLoopSupportedBySummonElementalResistance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [514705332] = { "Socketed Gems are Supported by Level 20 Elemental Army Support" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCurseOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hextouch", statOrder = { 107, 265 }, level = 1, group = "HungryLoopSupportedByCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2697741965] = { "Socketed Gems are Supported by Level 20 Hextouch" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCastOnKill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 107, 249 }, level = 1, group = "HungryLoopSupportedByCastOnKill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3312593243] = { "Socketed Gems are Supported by Level 20 Cast On Melee Kill" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMultiTrap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Traps", statOrder = { 107, 467 }, level = 1, group = "HungryLoopSupportedByMultiTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3016436615] = { "Socketed Gems are Supported by Level 20 Multiple Traps" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEmpower"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Empower", statOrder = { 107, 279 }, level = 1, group = "HungryLoopSupportedByEmpower", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3581578643] = { "Socketed Gems are Supported by Level 3 Empower" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySlowerProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Slower Projectiles", statOrder = { 107, 387 }, level = 1, group = "HungryLoopSupportedBySlowerProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1390285657] = { "Socketed Gems are Supported by Level 20 Slower Projectiles" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByReducedDuration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 107, 375 }, level = 1, group = "HungryLoopSupportedByReducedDuration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2487643588] = { "Socketed Gems are Supported by Level 20 Less Duration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCastOnDamageTaken"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast when Damage Taken", statOrder = { 107, 248 }, level = 1, group = "HungryLoopSupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 20 Cast when Damage Taken" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEnhance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 107, 281 }, level = 1, group = "HungryLoopSupportedByEnhance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2556436882] = { "Socketed Gems are Supported by Level 3 Enhance" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPhysicalProjectileAttackDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Vicious Projectiles", statOrder = { 107, 361 }, level = 1, group = "HungryLoopSupportedByPhysicalProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEnlighten"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 107, 282 }, level = 1, group = "HungryLoopSupportedByEnlighten", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2065361612] = { "Socketed Gems are Supported by Level 3 Enlighten" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPhysicalToLightning_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Physical To Lightning", statOrder = { 107, 362 }, level = 1, group = "HungryLoopSupportedByPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3327487371] = { "Socketed Gems are Supported by Level 20 Physical To Lightning" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByTrapAndMineDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", statOrder = { 107, 468 }, level = 1, group = "HungryLoopSupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPoison"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", statOrder = { 107, 365 }, level = 1, group = "HungryLoopSupportedByPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2228279620] = { "Socketed Gems are Supported by Level 20 Critical Strike Affliction" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByVoidManipulation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Void Manipulation", statOrder = { 107, 410 }, level = 1, group = "HungryLoopSupportedByVoidManipulation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1866583932] = { "Socketed Gems are Supported by Level 20 Void Manipulation" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByRapidDecay"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swift Affliction", statOrder = { 107, 373 }, level = 1, group = "HungryLoopSupportedByRapidDecay", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1636220212] = { "Socketed Gems are Supported by Level 20 Swift Affliction" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByClusterTrap_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cluster Trap", statOrder = { 107, 466 }, level = 1, group = "HungryLoopSupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2854183975] = { "Socketed Gems are Supported by Level 20 Cluster Trap" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByElementalFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Focus", statOrder = { 107, 277 }, level = 1, group = "HungryLoopSupportedByElementalFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 20 Elemental Focus" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMinefield"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minefield", statOrder = { 107, 347 }, level = 1, group = "HungryLoopSupportedByMinefield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2805586447] = { "Socketed Gems are Supported by Level 20 Minefield" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByTrapCooldown"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Advanced Traps", statOrder = { 107, 400 }, level = 1, group = "HungryLoopSupportedByTrapCooldown", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCastWhileChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 107, 251 }, level = 1, group = "HungryLoopSupportedByCastWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1316646496] = { "Socketed Gems are Supported by Level 20 Cast While Channelling" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByIgniteProliferation__"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 107, 318 }, level = 1, group = "HungryLoopSupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3593797653] = { "Socketed Gems are Supported by Level 20 Ignite Proliferation" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByChanceToBleed"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chance To Bleed", statOrder = { 107, 253 }, level = 1, group = "HungryLoopSupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByDeadlyAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Deadly Ailments", statOrder = { 107, 267 }, level = 1, group = "HungryLoopSupportedByDeadlyAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [103909236] = { "Socketed Gems are Supported by Level 20 Deadly Ailments" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByDecay"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Decay", statOrder = { 107, 269 }, level = 1, group = "HungryLoopSupportedByDecay", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [388696990] = { "Socketed Gems are Supported by Level 20 Decay" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEfficacy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Efficacy", statOrder = { 107, 275 }, level = 1, group = "HungryLoopSupportedByEfficacy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3924539382] = { "Socketed Gems are Supported by Level 20 Efficacy" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMaim"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Maim", statOrder = { 107, 341 }, level = 1, group = "HungryLoopSupportedByMaim", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3826977109] = { "Socketed Gems are Supported by Level 20 Maim" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByImmolate"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Immolate", statOrder = { 107, 319 }, level = 1, group = "HungryLoopSupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2420410470] = { "Socketed Gems are Supported by Level 20 Immolate" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByUnboundAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Unbound Ailments", statOrder = { 107, 403 }, level = 1, group = "HungryLoopSupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3699494172] = { "Socketed Gems are Supported by Level 20 Unbound Ailments" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBrutality"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Brutality", statOrder = { 107, 246 }, level = 1, group = "HungryLoopSupportedByBrutality", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByRuthless_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ruthless", statOrder = { 107, 380 }, level = 1, group = "HungryLoopSupportedByRuthless", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByOnslaught_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Momentum", statOrder = { 107, 354 }, level = 1, group = "HungryLoopSupportedByOnslaught", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByArcaneSurge"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arcane Surge", statOrder = { 107, 235 }, level = 1, group = "HungryLoopSupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2287264161] = { "Socketed Gems are Supported by Level 20 Arcane Surge" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBarrage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Barrage", statOrder = { 107, 239 }, level = 1, group = "HungryLoopSupportedByBarrage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3827538724] = { "Socketed Gems are Supported by Level 20 Barrage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByArrowNova"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arrow Nova", statOrder = { 107, 371 }, level = 1, group = "HungryLoopSupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1331336999] = { "Socketed Gems are Supported by Level 20 Arrow Nova" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPierce_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Pierce", statOrder = { 107, 520 }, level = 1, group = "HungryLoopSupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2433615566] = { "Socketed Gems are supported by Level 20 Pierce" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFasterAttacks"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Faster Attacks", statOrder = { 107, 480 }, level = 1, group = "HungryLoopSupportedByFasterAttacks", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMeleePhysicalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Melee Physical Damage", statOrder = { 107, 479 }, level = 1, group = "HungryLoopSupportedByMeleePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGenerosity_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Generosity", statOrder = { 107, 506 }, level = 1, group = "HungryLoopSupportedByGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2593773031] = { "Socketed Gems are Supported by Level 20 Generosity" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFortify_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 107, 507 }, level = 1, group = "HungryLoopSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByElementalProliferation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 107, 477 }, level = 1, group = "HungryLoopSupportedByElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByControlledDestruction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Controlled Destruction", statOrder = { 107, 536 }, level = 1, group = "HungryLoopSupportedByControlledDestruction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3718597497] = { "Socketed Gems are Supported by Level 20 Controlled Destruction" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByConcentratedEffect"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 107, 464 }, level = 1, group = "HungryLoopSupportedByConcentratedEffect", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCastOnDeath"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 107, 489 }, level = 1, group = "HungryLoopSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAddedLightningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 107, 478 }, level = 1, group = "HungryLoopSupportedByAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1647529598] = { "Socketed Gems are Supported by Level 20 Added Lightning Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAddedChaosDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 107, 469 }, level = 1, group = "HungryLoopSupportedByAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [411460446] = { "Socketed Gems are Supported by Level 20 Added Chaos Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByReducedBlockChance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Block Chance Reduction", statOrder = { 107, 374 }, level = 1, group = "HungryLoopSupportedByReducedBlockChance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1966051190] = { "Socketed Gems are Supported by Level 20 Block Chance Reduction" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByStormBarrier"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Infused Channelling", statOrder = { 107, 393 }, level = 1, group = "HungryLoopSupportedByStormBarrier", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4048257027] = { "Socketed Gems are Supported by Level 20 Infused Channelling" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByParallelProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Volley", statOrder = { 107, 360 }, level = 1, group = "HungryLoopSupportedByParallelProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2696557965] = { "Socketed Gems are Supported by Level 20 Volley" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterVolley"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 107, 310 }, level = 1, group = "HungryLoopSupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2223565123] = { "Socketed Gems are Supported by Level 20 Greater Volley" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Cascade", statOrder = { 107, 389 }, level = 1, group = "HungryLoopSupportedBySpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 20 Spell Cascade" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySpiritStrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ancestral Call", statOrder = { 107, 392 }, level = 1, group = "HungryLoopSupportedBySpiritStrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [696805682] = { "Socketed Gems are Supported by Level 20 Ancestral Call" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySummonGhostOnKill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 107, 395 }, level = 1, group = "HungryLoopSupportedBySummonGhostOnKill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3155072742] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMirageArcher_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mirage Archer", statOrder = { 107, 349 }, level = 1, group = "HungryLoopSupportedByMirageArcher", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3239503729] = { "Socketed Gems are Supported by Level 20 Mirage Archer" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFrenzyPowerOnTrapTrigger"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Charged Traps", statOrder = { 107, 295 }, level = 1, group = "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [479453859] = { "Socketed Gems are Supported by Level 20 Charged Traps" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByChaosAttacks"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Withering Touch", statOrder = { 107, 415 }, level = 1, group = "HungryLoopSupportedByChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3287477747] = { "Socketed Gems are Supported by Level 20 Withering Touch" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBonechill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bonechill", statOrder = { 107, 244 }, level = 1, group = "HungryLoopSupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1859244771] = { "Socketed Gems are Supported by Level 20 Bonechill" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMultiTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Totems", statOrder = { 107, 350 }, level = 1, group = "HungryLoopSupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [807186595] = { "Socketed Gems are Supported by Level 20 Multiple Totems" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEnergyLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Energy Leech", statOrder = { 107, 280 }, level = 1, group = "HungryLoopSupportedByEnergyLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [799443127] = { "Socketed Gems are Supported by Level 20 Energy Leech" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySpellFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 107, 390 }, level = 1, group = "HungryLoopSupportedBySpellFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1876637240] = { "Socketed Gems are Supported by Level 20 Intensify" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Unleash", statOrder = { 107, 406 }, level = 1, group = "HungryLoopSupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3356013982] = { "Socketed Gems are Supported by Level 20 Unleash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByImpale"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Impale", statOrder = { 107, 320 }, level = 1, group = "HungryLoopSupportedByImpale", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1900098804] = { "Socketed Gems are Supported by Level 20 Impale" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPulverise"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Pulverise", statOrder = { 107, 368 }, level = 1, group = "HungryLoopSupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [282757414] = { "Socketed Gems are Supported by Level 20 Pulverise" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByRage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Rage", statOrder = { 107, 370 }, level = 1, group = "HungryLoopSupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [369650395] = { "Socketed Gems are Supported by Level 20 Rage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCloseCombat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Close Combat", statOrder = { 107, 256 }, level = 1, group = "HungryLoopSupportedByCloseCombat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [694651314] = { "Socketed Gems are Supported by Level 20 Close Combat" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByShockwave_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Shockwave", statOrder = { 107, 386 }, level = 1, group = "HungryLoopSupportedByShockwave", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1344789934] = { "Socketed Gems are Supported by Level 20 Shockwave" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFeedingFrenzy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Feeding Frenzy", statOrder = { 107, 286 }, level = 1, group = "HungryLoopSupportedByFeedingFrenzy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2269282877] = { "Socketed Gems are Supported by Level 20 Feeding Frenzy" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMeatShield"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Meat Shield", statOrder = { 107, 344 }, level = 1, group = "HungryLoopSupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [858460086] = { "Socketed Gems are Supported by Level 20 Meat Shield" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByDeathmark_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Predator", statOrder = { 107, 268 }, level = 1, group = "HungryLoopSupportedByDeathmark", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4082662318] = { "Socketed Gems are Supported by Level 20 Predator" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByNightblade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Nightblade", statOrder = { 107, 352 }, level = 1, group = "HungryLoopSupportedByNightblade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2861649515] = { "Socketed Gems are Supported by Level 20 Nightblade" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByInfernalLegion_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Infernal Legion", statOrder = { 107, 325 }, level = 1, group = "HungryLoopSupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2201102274] = { "Socketed Gems are Supported by Level 20 Infernal Legion" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySwiftAssembly"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swift Assembly", statOrder = { 107, 396 }, level = 1, group = "HungryLoopSupportedBySwiftAssembly", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4021476585] = { "Socketed Gems are Supported by Level 20 Swift Assembly" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByChargedMines"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Charged Mines", statOrder = { 107, 255 }, level = 1, group = "HungryLoopSupportedByChargedMines", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1365328494] = { "Socketed Gems are Supported by Level 20 Charged Mines" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedAddedFireDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Fire Damage", statOrder = { 107, 426 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [339131601] = { "Socketed Gems are Supported by Level 5 Awakened Added Fire Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedAncestralCall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Ancestral Call", statOrder = { 107, 428 }, level = 1, group = "HungryLoopSupportedByAwakenedAncestralCall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4055526353] = { "Socketed Gems are Supported by Level 5 Awakened Ancestral Call" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedBrutality"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Brutality", statOrder = { 107, 431 }, level = 1, group = "HungryLoopSupportedByAwakenedBrutality", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3610200044] = { "Socketed Gems are Supported by Level 5 Awakened Brutality" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedBurningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Burning Damage", statOrder = { 107, 432 }, level = 1, group = "HungryLoopSupportedByAwakenedBurningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [493707013] = { "Socketed Gems are Supported by Level 5 Awakened Burning Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedWeaponElementalDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Elemental Damage With Attacks", statOrder = { 107, 461 }, level = 1, group = "HungryLoopSupportedByAwakenedWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1786672841] = { "Socketed Gems are Supported by Level 5 Awakened Elemental Damage With Attacks" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedFirePenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Fire Penetration", statOrder = { 107, 444 }, level = 1, group = "HungryLoopSupportedByAwakenedFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [170274897] = { "Socketed Gems are Supported by Level 5 Awakened Fire Penetration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedGenerosity_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Generosity", statOrder = { 107, 446 }, level = 1, group = "HungryLoopSupportedByAwakenedGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1007586373] = { "Socketed Gems are Supported by Level 5 Awakened Generosity" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedMeleePhysicalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Melee Physical Damage", statOrder = { 107, 450 }, level = 1, group = "HungryLoopSupportedByAwakenedMeleePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2173069393] = { "Socketed Gems are Supported by Level 5 Awakened Melee Physical Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedMeleeSplash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Melee Splash", statOrder = { 107, 451 }, level = 1, group = "HungryLoopSupportedByAwakenedMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2253550081] = { "Socketed Gems are Supported by Level 5 Awakened Melee Splash" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Multistrike", statOrder = { 107, 453 }, level = 1, group = "HungryLoopSupportedByAwakenedMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [511417258] = { "Socketed Gems are Supported by Level 5 Awakened Multistrike" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedAddedColdDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Cold Damage", statOrder = { 107, 425 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2509486489] = { "Socketed Gems are Supported by Level 5 Awakened Added Cold Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedArrowNova"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Arrow Nova", statOrder = { 107, 429 }, level = 1, group = "HungryLoopSupportedByAwakenedArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1411990341] = { "Socketed Gems are Supported by Level 5 Awakened Arrow Nova" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedCastOnCrit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cast On Critical Strike", statOrder = { 107, 433 }, level = 1, group = "HungryLoopSupportedByAwakenedCastOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2750392696] = { "Socketed Gems are Supported by Level 5 Awakened Cast On Critical Strike" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Chain", statOrder = { 107, 435 }, level = 1, group = "HungryLoopSupportedByAwakenedChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2249251344] = { "Socketed Gems are Supported by Level 5 Awakened Chain" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedColdPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cold Penetration", statOrder = { 107, 436 }, level = 1, group = "HungryLoopSupportedByAwakenedColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1889095429] = { "Socketed Gems are Supported by Level 5 Awakened Cold Penetration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedDeadlyAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Deadly Ailments", statOrder = { 107, 439 }, level = 1, group = "HungryLoopSupportedByAwakenedDeadlyAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1621366871] = { "Socketed Gems are Supported by Level 5 Awakened Deadly Ailments" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Fork", statOrder = { 107, 445 }, level = 1, group = "HungryLoopSupportedByAwakenedFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1803865171] = { "Socketed Gems are Supported by Level 5 Awakened Fork" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedGreaterMultipleProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Greater Multiple Projectiles", statOrder = { 107, 447 }, level = 1, group = "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1980028507] = { "Socketed Gems are Supported by Level 5 Awakened Greater Multiple Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedSwiftAffliction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Swift Affliction", statOrder = { 107, 456 }, level = 1, group = "HungryLoopSupportedByAwakenedSwiftAffliction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4089933397] = { "Socketed Gems are Supported by Level 5 Awakened Swift Affliction" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedVoidManipulation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Void Manipulation", statOrder = { 107, 460 }, level = 1, group = "HungryLoopSupportedByAwakenedVoidManipulation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1882929618] = { "Socketed Gems are Supported by Level 5 Awakened Void Manipulation" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedViciousProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Vicious Projectiles", statOrder = { 107, 459 }, level = 1, group = "HungryLoopSupportedByAwakenedViciousProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2647355055] = { "Socketed Gems are Supported by Level 5 Awakened Vicious Projectiles" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedAddedChaosDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Chaos Damage", statOrder = { 107, 424 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2722592119] = { "Socketed Gems are Supported by Level 5 Awakened Added Chaos Damage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedAddedLightningDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Lightning Damage", statOrder = { 107, 427 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3429304534] = { "Socketed Gems are Supported by Level 5 Awakened Added Lightning Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Blasphemy", statOrder = { 107, 430 }, level = 1, group = "HungryLoopSupportedByAwakenedBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1046449631] = { "Socketed Gems are Supported by Level 5 Awakened Blasphemy" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedCastWhileChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cast While Channelling", statOrder = { 107, 434 }, level = 1, group = "HungryLoopSupportedByAwakenedCastWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [760968853] = { "Socketed Gems are Supported by Level 5 Awakened Cast While Channelling" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedControlledDestruction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Controlled Destruction", statOrder = { 107, 437 }, level = 1, group = "HungryLoopSupportedByAwakenedControlledDestruction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [271119551] = { "Socketed Gems are Supported by Level 5 Awakened Controlled Destruction" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedCurseOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Hextouch", statOrder = { 107, 438 }, level = 1, group = "HungryLoopSupportedByAwakenedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2635746638] = { "Socketed Gems are Supported by Level 5 Awakened Hextouch" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedElementalFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Elemental Focus", statOrder = { 107, 440 }, level = 1, group = "HungryLoopSupportedByAwakenedElementalFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2111661233] = { "Socketed Gems are Supported by Level 5 Awakened Elemental Focus" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Increased Area Of Effect", statOrder = { 107, 448 }, level = 1, group = "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2333301609] = { "Socketed Gems are Supported by Level 5 Awakened Increased Area Of Effect" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedLightningPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Lightning Penetration", statOrder = { 107, 449 }, level = 1, group = "HungryLoopSupportedByAwakenedLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1544223714] = { "Socketed Gems are Supported by Level 5 Awakened Lightning Penetration" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedMinionDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Minion Damage", statOrder = { 107, 452 }, level = 1, group = "HungryLoopSupportedByAwakenedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2100048639] = { "Socketed Gems are Supported by Level 5 Awakened Minion Damage" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedSpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Spell Cascade", statOrder = { 107, 454 }, level = 1, group = "HungryLoopSupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2222752567] = { "Socketed Gems are Supported by Level 5 Awakened Spell Cascade" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedSpellEcho__"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Spell Echo", statOrder = { 107, 455 }, level = 1, group = "HungryLoopSupportedByAwakenedSpellEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [48859060] = { "Socketed Gems are Supported by Level 5 Awakened Spell Echo" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedUnboundAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Unbound Ailments", statOrder = { 107, 457 }, level = 1, group = "HungryLoopSupportedByAwakenedUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2116002108] = { "Socketed Gems are Supported by Level 5 Awakened Unbound Ailments" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Unleash", statOrder = { 107, 458 }, level = 1, group = "HungryLoopSupportedByAwakenedUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3428829446] = { "Socketed Gems are Supported by Level 5 Awakened Unleash" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedEmpower"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Empower", statOrder = { 107, 441 }, level = 1, group = "HungryLoopSupportedByAwakenedEmpower", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3739157305] = { "Socketed Gems are Supported by Level 4 Awakened Empower" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedEnlighten"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Enlighten", statOrder = { 107, 443 }, level = 1, group = "HungryLoopSupportedByAwakenedEnlighten", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4251567680] = { "Socketed Gems are Supported by Level 4 Awakened Enlighten" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAwakenedEnhance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Enhance", statOrder = { 107, 442 }, level = 1, group = "HungryLoopSupportedByAwakenedEnhance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2133566731] = { "Socketed Gems are Supported by Level 4 Awakened Enhance" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySecondWind_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Second Wind", statOrder = { 107, 385 }, level = 1, group = "HungryLoopSupportedBySecondWind", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [402499111] = { "Socketed Gems are Supported by Level 20 Second Wind" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByArchmage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Archmage", statOrder = { 107, 236 }, level = 1, group = "HungryLoopSupportedByArchmage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3652278215] = { "Socketed Gems are Supported by Level 20 Archmage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByUrgentOrders"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Urgent Orders", statOrder = { 107, 407 }, level = 1, group = "HungryLoopSupportedByUrgentOrders", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1485525812] = { "Socketed Gems are Supported by Level 20 Urgent Orders" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFistOfWar"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fist of War", statOrder = { 107, 289 }, level = 1, group = "HungryLoopSupportedByFistofWar", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2419657101] = { "Socketed Gems are Supported by Level 20 Fist of War" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySwiftBrand"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swiftbrand", statOrder = { 107, 397 }, level = 1, group = "HungryLoopSupportedBySwiftBrand", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2127532091] = { "Socketed Gems are Supported by Level 20 Swiftbrand" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByElementalPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Penetration", statOrder = { 107, 278 }, level = 1, group = "HungryLoopSupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1994143317] = { "Socketed Gems are Supported by Level 20 Elemental Penetration" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByImpendingDoom"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Impending Doom", statOrder = { 107, 321 }, level = 1, group = "HungryLoopSupportedByImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3227145554] = { "Socketed Gems are Supported by Level 20 Impending Doom" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBloodthirst_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bloodthirst", statOrder = { 107, 243 }, level = 1, group = "HungryLoopSupportedByBloodthirst", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1803206643] = { "Socketed Gems are Supported by Level 20 Bloodthirst" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFragility_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cruelty", statOrder = { 107, 294 }, level = 1, group = "HungryLoopSupportedByFragility", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1679136] = { "Socketed Gems are Supported by Level 20 Cruelty" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLifetap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Lifetap", statOrder = { 107, 335 }, level = 1, group = "HungryLoopSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1079239905] = { "Socketed Gems are Supported by Level 20 Lifetap" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFocussedBallista_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Focused Ballista", statOrder = { 107, 292 }, level = 1, group = "HungryLoopSupportedByFocussedBallista", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [921536976] = { "Socketed Gems are Supported by Level 20 Focused Ballista" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEarthbreaker"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Earthbreaker", statOrder = { 107, 272 }, level = 1, group = "HungryLoopSupportedByEarthbreaker", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [940684417] = { "Socketed Gems are Supported by Level 20 Earthbreaker" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBehead"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Behead", statOrder = { 107, 240 }, level = 1, group = "HungryLoopSupportedByBehead", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1019145105] = { "Socketed Gems are Supported by Level 20 Behead" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMarkOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mark On Hit", statOrder = { 107, 343 }, level = 1, group = "HungryLoopSupportedByMarkOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3485498591] = { "Socketed Gems are Supported by Level 20 Mark On Hit" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByDivineBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Eternal Blessing", statOrder = { 107, 283 }, level = 1, group = "HungryLoopSupportedByDivineBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3062849155] = { "Socketed Gems are Supported by Level 20 Eternal Blessing" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEternalBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Eternal Blessing", statOrder = { 107, 283 }, level = 1, group = "HungryLoopSupportedByEternalBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3062849155] = { "Socketed Gems are Supported by Level 20 Eternal Blessing" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByOvercharge"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Overcharge", statOrder = { 107, 355 }, level = 1, group = "HungryLoopSupportedByPureShock", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3462081007] = { "Socketed Gems are Supported by Level 20 Overcharge" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCursedGround"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cursed Ground", statOrder = { 107, 266 }, level = 1, group = "HungryLoopSupportedByCursedGround", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3998071134] = { "Socketed Gems are Supported by Level 20 Cursed Ground" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByHexBloom"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hex Bloom", statOrder = { 107, 314 }, level = 1, group = "HungryLoopSupportedByHexBloom", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3199084318] = { "Socketed Gems are Supported by Level 20 Hex Bloom" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByManaforgedArrows"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Manaforged Arrows", statOrder = { 107, 342 }, level = 1, group = "HungryLoopSupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4022502578] = { "Socketed Gems are Supported by Level 20 Manaforged Arrows" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPrismaticBurst"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Prismatic Burst", statOrder = { 107, 367 }, level = 1, group = "HungryLoopSupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2910545715] = { "Socketed Gems are Supported by Level 20 Prismatic Burst" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByReturningProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 107, 377 }, level = 1, group = "HungryLoopSupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [52197415] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByTrauma"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trauma", statOrder = { 107, 401 }, level = 1, group = "HungryLoopSupportedByTrauma", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1715139253] = { "Socketed Gems are Supported by Level 20 Trauma" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySpellblade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spellblade", statOrder = { 107, 391 }, level = 1, group = "HungryLoopSupportedBySpellblade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [633235561] = { "Socketed Gems are Supported by Level 20 Spellblade" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByDevour"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Devour", statOrder = { 107, 270 }, level = 1, group = "HungryLoopSupportedByDevour", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2820883532] = { "Socketed Gems are Supported by Level 20 Devour" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFreshMeat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fresh Meat", statOrder = { 107, 296 }, level = 1, group = "HungryLoopSupportedByFreshMeat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3713917371] = { "Socketed Gems are Supported by Level 20 Fresh Meat" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFlamewood"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 107, 290 }, level = 1, group = "HungryLoopSupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCorruptingCry"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Corrupting Cry", statOrder = { 107, 261 }, level = 1, group = "HungryLoopSupportedByCorruptingCry", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3486166615] = { "Socketed Gems are Supported by Level 20 Corrupting Cry" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByVolatility"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Volatility", statOrder = { 107, 413 }, level = 1, group = "HungryLoopSupportedByVolatility", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4184135167] = { "Socketed Gems are Supported by Level 20 Volatility" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGuardiansBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Guardian's Blessing", statOrder = { 107, 311 }, level = 1, group = "HungryLoopSupportedByGuardiansBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3434296257] = { "Socketed Gems are Supported by Level 20 Guardian's Blessing" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySacrifice"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sacrifice", statOrder = { 107, 382 }, level = 1, group = "HungryLoopSupportedBySacrifice", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2302807931] = { "Socketed Gems are Supported by Level 20 Sacrifice" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFrigidBond"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Frigid Bond", statOrder = { 107, 297 }, level = 1, group = "HungryLoopSupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 20 Frigid Bond" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLocusMine"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Locus Mine", statOrder = { 107, 338 }, level = 1, group = "HungryLoopSupportedByLocusMine", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [863963929] = { "Socketed Gems are Supported by Level 20 Locus Mine" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySadism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sadism", statOrder = { 107, 383 }, level = 1, group = "HungryLoopSupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [794471597] = { "Socketed Gems are Supported by Level 20 Sadism" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByControlledBlaze"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Controlled Blaze", statOrder = { 107, 259 }, level = 1, group = "HungryLoopSupportedByControlledBlaze", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [124226929] = { "Socketed Gems are Supported by Level 20 Controlled Blaze" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAutomation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Automation", statOrder = { 107, 238 }, level = 1, group = "HungryLoopSupportedByAutomation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [397199955] = { "Socketed Gems are Supported by Level 20 Automation" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCallToArms"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Call To Arms", statOrder = { 107, 247 }, level = 1, group = "HungryLoopSupportedByCallToArms", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3950097420] = { "Socketed Gems are Supported by Level 20 Call To Arms" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedBySacredWisps"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sacred Wisps", statOrder = { 107, 381 }, level = 1, group = "HungryLoopSupportedBySacredWisps", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3304737450] = { "Socketed Gems are Supported by Level 20 Sacred Wisps" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByOverexertion"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Overexertion", statOrder = { 107, 356 }, level = 1, group = "HungryLoopSupportedByOverexertion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2707167862] = { "Socketed Gems are Supported by Level 20 Overexertion" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByExpertRetaliation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Expert Retaliation", statOrder = { 107, 285 }, level = 1, group = "HungryLoopSupportedByExpertRetaliation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3570337997] = { "Socketed Gems are Supported by Level 20 Expert Retaliation" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByRupture"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Rupture", statOrder = { 107, 379 }, level = 1, group = "HungryLoopSupportedByRupture", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [970734352] = { "Socketed Gems are Supported by Level 20 Rupture" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFocusedChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Focused Channelling", statOrder = { 107, 291 }, level = 1, group = "HungryLoopSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2873637569] = { "Socketed Gems are Supported by Level 20 Focused Channelling" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByTornados"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Windburst", statOrder = { 107, 398 }, level = 1, group = "HungryLoopSupportedByTornados", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [143223888] = { "Socketed Gems are Supported by Level 20 Windburst" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByKineticInstability"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Kinetic Instability", statOrder = { 107, 332 }, level = 1, group = "HungryLoopSupportedByKineticInstability", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3844615363] = { "Socketed Gems are Supported by Level 20 Kinetic Instability" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLivingLightning"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 107, 337 }, level = 1, group = "HungryLoopSupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByExcommunication"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Excommunicate", statOrder = { 107, 284 }, level = 1, group = "HungryLoopSupportedByExcommunication", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1385879224] = { "Socketed Gems are Supported by Level 20 Excommunicate" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByExemplar"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Exemplar", statOrder = { 107, 345 }, level = 1, group = "HungryLoopSupportedByExemplar", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3370631451] = { "Socketed Gems are Supported by Level 20 Exemplar" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBlessedCalling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blessed Calling", statOrder = { 107, 258 }, level = 1, group = "HungryLoopSupportedByBlessedCalling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2217896386] = { "Socketed Gems are Supported by Level 20 Blessed Calling" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByHallow"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hallow", statOrder = { 107, 312 }, level = 1, group = "HungryLoopSupportedByHallow", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [88019169] = { "Socketed Gems are Supported by Level 20 Hallow" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterSpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Spell Cascade", statOrder = { 107, 307 }, level = 1, group = "HungryLoopSupportedByGreaterSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2292610865] = { "Socketed Gems are Supported by Level 3 Greater Spell Cascade" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEclipse"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Eclipse", statOrder = { 107, 273 }, level = 1, group = "HungryLoopSupportedByEclipse", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3207084920] = { "Socketed Gems are Supported by Level 3 Eclipse" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByInvertTheRules"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Invert the Rules", statOrder = { 107, 328 }, level = 1, group = "HungryLoopSupportedByInvertTheRules", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2475469642] = { "Socketed Gems are Supported by Level 3 Invert the Rules" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCastOnWardBreak"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cast on Ward Break", statOrder = { 107, 250 }, level = 1, group = "HungryLoopSupportedByCastOnWardBreak", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [668102856] = { "Socketed Gems are Supported by Level 3 Cast on Ward Break" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByWard"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Ward", statOrder = { 107, 414 }, level = 1, group = "HungryLoopSupportedByWard", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4215872260] = { "Socketed Gems are Supported by Level 3 Ward" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByVaalSacrifice"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Vaal Sacrifice", statOrder = { 107, 408 }, level = 1, group = "HungryLoopSupportedByVaalSacrifice", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1663164024] = { "Socketed Gems are Supported by Level 3 Vaal Sacrifice" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterSpellEcho"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Spell Echo", statOrder = { 107, 308 }, level = 1, group = "HungryLoopSupportedByGreaterSpellEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3388448323] = { "Socketed Gems are Supported by Level 3 Greater Spell Echo" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByVaalTemptation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Vaal Temptation", statOrder = { 107, 409 }, level = 1, group = "HungryLoopSupportedByVaalTemptation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3444486593] = { "Socketed Gems are Supported by Level 3 Vaal Temptation" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMachinations"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Machinations", statOrder = { 107, 339 }, level = 1, group = "HungryLoopSupportedByMachinations", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [532407974] = { "Socketed Gems are Supported by Level 3 Machinations" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPyre"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Pyre", statOrder = { 107, 369 }, level = 1, group = "HungryLoopSupportedByPyre", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [165595385] = { "Socketed Gems are Supported by Level 3 Pyre" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBonespire"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Bonespire", statOrder = { 107, 245 }, level = 1, group = "HungryLoopSupportedByBonespire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [301018639] = { "Socketed Gems are Supported by Level 3 Bonespire" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFoulgrasp"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Foulgrasp", statOrder = { 107, 293 }, level = 1, group = "HungryLoopSupportedByFoulgrasp", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2433487502] = { "Socketed Gems are Supported by Level 3 Foulgrasp" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByHiveborn"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hiveborn", statOrder = { 107, 317 }, level = 1, group = "HungryLoopSupportedByHiveborn", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [4120663487] = { "Socketed Gems are Supported by Level 3 Hiveborn" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByScornfulHerald"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Scornful Herald", statOrder = { 107, 384 }, level = 1, group = "HungryLoopSupportedByScornfulHerald", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2705480258] = { "Socketed Gems are Supported by Level 3 Scornful Herald" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCullTheWeak"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cull the Weak", statOrder = { 107, 263 }, level = 1, group = "HungryLoopSupportedByCullTheWeak", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2252088501] = { "Socketed Gems are Supported by Level 3 Cull the Weak" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterAncestralCall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Ancestral Call", statOrder = { 107, 300 }, level = 1, group = "HungryLoopSupportedByGreaterAncestralCall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3607291760] = { "Socketed Gems are Supported by Level 3 Greater Ancestral Call" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFissure"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Fissure", statOrder = { 107, 288 }, level = 1, group = "HungryLoopSupportedByFissure", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1379504110] = { "Socketed Gems are Supported by Level 3 Fissure" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByHextoad"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hextoad", statOrder = { 107, 316 }, level = 1, group = "HungryLoopSupportedByHextoad", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2172297405] = { "Socketed Gems are Supported by Level 3 Hextoad" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByHexpass"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hexpass", statOrder = { 107, 315 }, level = 1, group = "HungryLoopSupportedByHexpass", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3684412823] = { "Socketed Gems are Supported by Level 3 Hexpass" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Fork", statOrder = { 107, 303 }, level = 1, group = "HungryLoopSupportedByGreaterFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2336972637] = { "Socketed Gems are Supported by Level 3 Greater Fork" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Chain", statOrder = { 107, 301 }, level = 1, group = "HungryLoopSupportedByGreaterChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2877350012] = { "Socketed Gems are Supported by Level 3 Greater Chain" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByLethalDose"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Lethal Dose", statOrder = { 107, 333 }, level = 1, group = "HungryLoopSupportedByLethalDose", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2985239009] = { "Socketed Gems are Supported by Level 3 Lethal Dose" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCompanionship"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Companionship", statOrder = { 107, 257 }, level = 1, group = "HungryLoopSupportedByCompanionship", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2020568221] = { "Socketed Gems are Supported by Level 3 Companionship" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByDivineSentinel"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Divine Sentinel", statOrder = { 107, 271 }, level = 1, group = "HungryLoopSupportedByDivineSentinel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2755724036] = { "Socketed Gems are Supported by Level 3 Divine Sentinel" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByAnnhilation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Annihilation", statOrder = { 107, 353 }, level = 1, group = "HungryLoopSupportedByAnnhilation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [833438017] = { "Socketed Gems are Supported by Level 3 Annihilation" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEdify"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Edify", statOrder = { 107, 274 }, level = 1, group = "HungryLoopSupportedByEdify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [503418832] = { "Socketed Gems are Supported by Level 3 Edify" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByInvention"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Invention", statOrder = { 107, 327 }, level = 1, group = "HungryLoopSupportedByInvention", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2817553827] = { "Socketed Gems are Supported by Level 3 Invention" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterKineticInstability"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Kinetic Instability", statOrder = { 107, 304 }, level = 1, group = "HungryLoopSupportedByGreaterKineticInstability", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [879572166] = { "Socketed Gems are Supported by Level 3 Greater Kinetic Instability" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCooldownRecovery"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cooldown Recovery", statOrder = { 107, 260 }, level = 1, group = "HungryLoopSupportedByCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [654335115] = { "Socketed Gems are Supported by Level 3 Cooldown Recovery" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByVoidstorm"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Voidstorm", statOrder = { 107, 412 }, level = 1, group = "HungryLoopSupportedByVoidstorm", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1159163588] = { "Socketed Gems are Supported by Level 3 Voidstorm" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByVoidShockwave"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Void Shockwave", statOrder = { 107, 411 }, level = 1, group = "HungryLoopSupportedByVoidShockwave", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3455096360] = { "Socketed Gems are Supported by Level 3 Void Shockwave" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCrystalfall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Crystalfall", statOrder = { 107, 262 }, level = 1, group = "HungryLoopSupportedByCrystalfall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2611999912] = { "Socketed Gems are Supported by Level 3 Crystalfall" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByEldritchBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Eldritch Blasphemy", statOrder = { 107, 276 }, level = 1, group = "HungryLoopSupportedByEldritchBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1628375748] = { "Socketed Gems are Supported by Level 3 Eldritch Blasphemy" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGluttony"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Gluttony", statOrder = { 107, 299 }, level = 1, group = "HungryLoopSupportedByGluttony", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3196117292] = { "Socketed Gems are Supported by Level 3 Gluttony" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByOverheat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Overheat", statOrder = { 107, 357 }, level = 1, group = "HungryLoopSupportedByOverheat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [254238561] = { "Socketed Gems are Supported by Level 3 Overheat" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Multistrike", statOrder = { 107, 306 }, level = 1, group = "HungryLoopSupportedByGreaterMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3144811156] = { "Socketed Gems are Supported by Level 3 Greater Multistrike" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCongregation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Congregation", statOrder = { 107, 404 }, level = 1, group = "HungryLoopSupportedByCongregation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1674086814] = { "Socketed Gems are Supported by Level 3 Congregation" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByFrostmage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Frostmage", statOrder = { 107, 298 }, level = 1, group = "HungryLoopSupportedByFrostmage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [139060684] = { "Socketed Gems are Supported by Level 3 Frostmage" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterDevour"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Devour", statOrder = { 107, 302 }, level = 1, group = "HungryLoopSupportedByGreaterDevour", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1452699198] = { "Socketed Gems are Supported by Level 3 Greater Devour" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMagnetism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Magnetism", statOrder = { 107, 340 }, level = 1, group = "HungryLoopSupportedByMagnetism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3401265726] = { "Socketed Gems are Supported by Level 3 Magnetism" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByGreaterUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Unleash", statOrder = { 107, 309 }, level = 1, group = "HungryLoopSupportedByGreaterUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [90008414] = { "Socketed Gems are Supported by Level 3 Greater Unleash" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByPacifism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Pacifism", statOrder = { 107, 359 }, level = 1, group = "HungryLoopSupportedByPacifism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [346232851] = { "Socketed Gems are Supported by Level 3 Pacifism" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByBloodsoakedBanner"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Bloodsoaked Banner", statOrder = { 107, 242 }, level = 1, group = "HungryLoopSupportedByBloodsoakedBanner", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1844853227] = { "Socketed Gems are Supported by Level 3 Bloodsoaked Banner" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByMinionPact"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Communion", statOrder = { 107, 348 }, level = 1, group = "HungryLoopSupportedByMinionPact", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [991044906] = { "Socketed Gems are Supported by Level 3 Communion" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByHarrowingThrong"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Harrowing Throng", statOrder = { 107, 313 }, level = 1, group = "HungryLoopSupportedByHarrowingThrong", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3873656110] = { "Socketed Gems are Supported by Level 3 Harrowing Throng" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByUnholyTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Unholy Trinity", statOrder = { 107, 405 }, level = 1, group = "HungryLoopSupportedByUnholyTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [321252761] = { "Socketed Gems are Supported by Level 3 Unholy Trinity" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByOverloadedIntensity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Overloaded Intensity", statOrder = { 107, 358 }, level = 1, group = "HungryLoopSupportedByOverloadedIntensity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [2151095784] = { "Socketed Gems are Supported by Level 3 Overloaded Intensity" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByTransfusion"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Transfusion", statOrder = { 107, 399 }, level = 1, group = "HungryLoopSupportedByTransfusion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3740740992] = { "Socketed Gems are Supported by Level 3 Transfusion" }, [4206709389] = { "" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByCrustaceousGrasp"] = { affix = "", "Has Consumed 1 Gem", "DNT Socketed Gems are Supported by Level 3 Crustaceous Grasp", statOrder = { 107, 8030 }, level = 1, group = "HungryLoopSupportedByCrustaceousGrasp", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [470215832] = { "DNT Socketed Gems are Supported by Level 3 Crustaceous Grasp" }, [1782861052] = { "" }, } }, + ["SocketedGemLevelPer25PlayerLevelsUnique__1"] = { affix = "", "+1 to Level of Socketed Skill Gems per 25 Player Levels", statOrder = { 166 }, level = 1, group = "SocketedGemLevelPer25PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1435838855] = { "+1 to Level of Socketed Skill Gems per 25 Player Levels" }, } }, + ["TriggerSocketedSpellOnAttackUnique__1"] = { affix = "", "Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown", statOrder = { 852 }, level = 1, group = "TriggerSocketedSpellOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [209056835] = { "Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown" }, } }, + ["AddsPhysicalDamagePer3PlayerLevelsUnique__1_"] = { affix = "", "Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels", statOrder = { 1293 }, level = 1, group = "AddsPhysicalDamagePer3PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1454603936] = { "Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels" }, } }, + ["FlaskPoisonDurationUnique__1"] = { affix = "", "(50-75)% increased Duration of Poisons you inflict during Effect", statOrder = { 1026 }, level = 1, group = "FlaskPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [510304734] = { "(50-75)% increased Duration of Poisons you inflict during Effect" }, } }, + ["FlaskHitsHaveNoCritMultiUnique__1"] = { affix = "", "Your Critical Strikes do not deal extra Damage during Effect", statOrder = { 1025 }, level = 1, group = "FlaskHitsHaveNoCritMulti", weightKey = { }, weightVal = { }, modTags = { "flask", "damage", "critical" }, tradeHashes = { [2893557981] = { "Your Critical Strikes do not deal extra Damage during Effect" }, } }, + ["FlaskGrantsPerfectAgonyUnique__1_"] = { affix = "", "Grants Perfect Agony during effect", statOrder = { 1095 }, level = 1, group = "FlaskGrantsPerfectAgony", weightKey = { }, weightVal = { }, modTags = { "flask", "damage", "critical", "ailment" }, tradeHashes = { [3741365813] = { "Grants Perfect Agony during effect" }, } }, + ["FlaskChanceToPoisonUnique__1"] = { affix = "", "25% chance to Poison on Hit during Effect", statOrder = { 991 }, level = 1, group = "FlaskChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [2777278657] = { "25% chance to Poison on Hit during Effect" }, } }, + ["FlaskTakeChaosDamagePerSecondUnique__1"] = { affix = "", "Take 30 Chaos Damage per Second during Effect", statOrder = { 1067 }, level = 1, group = "FlaskTakeChaosDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [308618188] = { "Take 30 Chaos Damage per Second during Effect" }, } }, + ["FlaskTakeChaosDamagePerSecondUnique__2"] = { affix = "", "Take 250 Chaos Damage per Second during Effect", statOrder = { 1067 }, level = 1, group = "FlaskTakeChaosDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHashes = { [308618188] = { "Take 250 Chaos Damage per Second during Effect" }, } }, + ["FlaskCriticalStrikeDoTMultiplierUnique__1"] = { affix = "", "+(20-30)% to Damage over Time Multiplier for Poison from Critical Strikes during Effect", statOrder = { 1039 }, level = 1, group = "FlaskCriticalStrikeDoTMultiplier", weightKey = { }, weightVal = { }, modTags = { "flask", "critical", "ailment" }, tradeHashes = { [1691221049] = { "+(20-30)% to Damage over Time Multiplier for Poison from Critical Strikes during Effect" }, } }, + ["StarterPassiveTreeJewelUnique__1_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life", statOrder = { 10652, 10652.1 }, level = 1, group = "StarterPassiveJewel1", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2160234277] = { "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life" }, } }, + ["AbyssJewelSocketImplicit"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["AbyssJewelSocketUnique__1"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__2"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__3"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["AbyssJewelSocketUnique__4"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__5"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["AbyssJewelSocketUnique__6_"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["AbyssJewelSocketUnique__7"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["AbyssJewelSocketUnique__8"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["AbyssJewelSocketUnique__9"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__10"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["AbyssJewelSocketUnique__11_"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__12"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["AbyssJewelSocketUnique__13"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__14"] = { affix = "", "Has 6 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 6 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__15"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__16"] = { affix = "", "Has 3 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 3 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__17"] = { affix = "", "Has 4 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 4 Abyssal Sockets" }, } }, + ["AbyssJewelSocketUnique__19"] = { affix = "", "Has 6 Abyssal Sockets", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3527617737] = { "Has 6 Abyssal Sockets" }, } }, + ["StarterPassiveTreeJewelUnique__2"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed", statOrder = { 10652, 10652.1 }, level = 1, group = "StarterPassiveJewel2", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1401324447] = { "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed" }, } }, + ["StarterPassiveTreeJewelUnique__3"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance", statOrder = { 10652, 10652.1 }, level = 1, group = "StarterPassiveJewel3", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4168151521] = { "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance" }, } }, + ["StarterPassiveTreeJewelUnique__4"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second", statOrder = { 10652, 10652.1 }, level = 1, group = "StarterPassiveJewel4", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [409328770] = { "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second" }, } }, + ["StarterPassiveTreeJewelUnique__5"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances", statOrder = { 10652, 10652.1 }, level = 1, group = "StarterPassiveJewel5", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1830527425] = { "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances" }, } }, + ["StarterPassiveTreeJewelUnique__6"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes", statOrder = { 10652, 10652.1 }, level = 1, group = "StarterPassiveJewel6", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3394862739] = { "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes" }, } }, + ["StarterPassiveTreeJewelUnique__7"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect", statOrder = { 10652, 10652.1 }, level = 1, group = "StarterPassiveJewel7", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [376356306] = { "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect" }, } }, + ["StarterPassiveJewelUnique__8"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second", statOrder = { 10653, 10653.1 }, level = 1, group = "StarterPassiveJewel8", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2014285677] = { "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second" }, } }, + ["StarterPassiveJewelUnique__9_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range", statOrder = { 10653, 10653.1 }, level = 1, group = "StarterPassiveJewel9", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2777732970] = { "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range" }, } }, + ["StarterPassiveJewelUnique__10__"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained", statOrder = { 10653, 10653.1 }, level = 1, group = "StarterPassiveJewel10", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3521487028] = { "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained" }, } }, + ["StarterPassiveJewelUnique__11__"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed", statOrder = { 10653, 10653.1 }, level = 1, group = "StarterPassiveJewel11", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1907816858] = { "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed" }, } }, + ["StarterPassiveJewelUnique__12__"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration", statOrder = { 10653, 10653.1 }, level = 1, group = "StarterPassiveJewel12", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1484654650] = { "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration" }, } }, + ["StarterPassiveJewelUnique__13"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage", statOrder = { 10653, 10653.1 }, level = 1, group = "StarterPassiveJewel13", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3770896688] = { "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage" }, } }, + ["StarterPassiveJewelUnique__14_"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage", statOrder = { 10653, 10653.1 }, level = 1, group = "StarterPassiveJewel14", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3153352487] = { "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage" }, } }, + ["IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1"] = { affix = "", "2% increased Attack Critical Strike Chance per 200 Accuracy Rating", statOrder = { 4895 }, level = 65, group = "IncreasedCriticalStrikeChancePerAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2196695640] = { "2% increased Attack Critical Strike Chance per 200 Accuracy Rating" }, } }, + ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8213, 8214 }, 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" }, [3802517517] = { "" }, } }, + ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 1072, 1073 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, + ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 790 }, 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 = { 788 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, + ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 792 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [850729424] = { "Triggers Level 20 Lightning Aegis when Equipped" }, } }, + ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 789 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2602585351] = { "Triggers Level 20 Elemental Aegis when Equipped" }, } }, + ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 795 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1892084828] = { "Triggers Level 20 Physical Aegis when Equipped" }, } }, + ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 531 }, 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 = { 692, 692.1, 692.2, 692.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 = { 693, 693.1, 693.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1517357911] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses" }, } }, + ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", statOrder = { 9834 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you" }, } }, + ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 5182 }, 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 = { 5822 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, + ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6151 }, 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 = { 9561 }, 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 = { 10577, 10577.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 = { 4820 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2466912132] = { "(30-40)% increased Armour while Bleeding" }, } }, + ["SpectreCriticalStrikeChanceUnique__1"] = { affix = "", "Raised Spectres have (800-1000)% increased Critical Strike Chance", statOrder = { 10265 }, level = 1, group = "SpectreCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [1862097882] = { "Raised Spectres have (800-1000)% increased Critical Strike Chance" }, } }, + ["SpectreHaveBaseDurationUnique__1"] = { affix = "", "Raised Spectres have a Base Duration of 20 seconds", "Spectres do not travel between Areas", statOrder = { 10268, 10268.1 }, level = 1, group = "SpectreHaveBaseDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1210937073] = { "Raised Spectres have a Base Duration of 20 seconds", "Spectres do not travel between Areas" }, } }, + ["GainCriticalStrikeChanceOnManaSpentUnique__1"] = { affix = "", "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana", statOrder = { 6835 }, level = 69, group = "GainCriticalStrikeChanceOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2864779809] = { "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana" }, } }, + ["GainHerEmbraceOnIgniteUnique__1"] = { affix = "", "Gain Her Embrace for 3 seconds when you Ignite an Enemy", statOrder = { 6858 }, level = 1, group = "GainHerEmbraceOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [608963131] = { "Gain Her Embrace for 3 seconds when you Ignite an Enemy" }, } }, + ["TakeDamagePerLevelWhileHerEmbraceUnique__1_"] = { affix = "", "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level", statOrder = { 9742 }, level = 1, group = "TakeDamagePerLevelWhileHerEmbrace", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2442112158] = { "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level" }, } }, + ["GainArmourEqualToManaReservedUnique__1"] = { affix = "", "1% increased Armour per 50 Reserved Mana", statOrder = { 6789 }, level = 1, group = "GainArmourEqualToManaReserved", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2574337583] = { "1% increased Armour per 50 Reserved Mana" }, } }, + ["VaalPactIfCritRecentlyUnique__1"] = { affix = "", "You have Vaal Pact if you've dealt a Critical Strike Recently", statOrder = { 6921 }, level = 1, group = "VaalPactIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1032751668] = { "You have Vaal Pact if you've dealt a Critical Strike Recently" }, } }, + ["AdditionalArrowWhileAccuracyIs3000Uber1"] = { affix = "", "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000", statOrder = { 9652 }, level = 1, group = "AdditionalArrowWhileAccuracyIs3000", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3399621281] = { "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000" }, } }, + ["AccuracyRatingIsDoubledUber1"] = { affix = "", "50% more Global Accuracy Rating", statOrder = { 4558 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2161347476] = { "50% more Global Accuracy Rating" }, } }, + ["MeleePhysicalDamagePerStrengthWhileFortifiedUber1"] = { affix = "", "1% increased Melee Physical Damage per 10 Strength while Fortified", statOrder = { 9321 }, level = 1, group = "MeleePhysicalDamagePerStrengthWhileFortified", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [523320038] = { "1% increased Melee Physical Damage per 10 Strength while Fortified" }, } }, + ["IncreasedEvasionRatingWhileLeechingUber1"] = { affix = "", "20% increased Evasion while Leeching", statOrder = { 6585 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [3854334101] = { "20% increased Evasion while Leeching" }, } }, + ["IncreasedEvasionRatingIfHitEnemyRecentlyUber1"] = { affix = "", "20% increased Evasion if you have Hit an Enemy Recently", statOrder = { 6582 }, level = 1, group = "IncreasedEvasionRatingIfHitEnemyRecently", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [1511114965] = { "20% increased Evasion if you have Hit an Enemy Recently" }, } }, + ["CriticalStrikeMultiplierIfHaventCritRecentlyUber1"] = { affix = "", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 6043 }, level = 1, group = "CriticalStrikeMultiplierIfHaventCritRecently", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } }, + ["CriticalStrikeChanceAgainstBleedingEnemiesUber1"] = { affix = "", "70% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3226 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [2282705842] = { "70% increased Critical Strike Chance against Bleeding Enemies" }, } }, + ["AreaOfEffectWith500StrengthUber1"] = { affix = "", "30% increased Area of Effect if you have at least 500 Strength", statOrder = { 4785 }, level = 1, group = "AreaOfEffectWith500Strength", weightKey = { "mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1966978922] = { "30% increased Area of Effect if you have at least 500 Strength" }, } }, + ["HitsCantBeEvadedIfBlockedRecentlyUber1_"] = { affix = "", "Hits with this Weapon can't be Evaded if you have Blocked Recently", statOrder = { 8052 }, level = 1, group = "HitsCantBeEvadedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3124854176] = { "Hits with this Weapon can't be Evaded if you have Blocked Recently" }, } }, + ["AttackSpeedIfBlockedRecentlyUber1"] = { affix = "", "20% increased Attack Speed if you have Blocked Recently", statOrder = { 4946 }, level = 1, group = "AttackSpeedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [3203854378] = { "20% increased Attack Speed if you have Blocked Recently" }, } }, + ["AreaOfEffectWhileFortifiedUber1"] = { affix = "", "25% increased Area of Effect while Fortified", statOrder = { 4780 }, level = 1, group = "AreaOfEffectWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4281819294] = { "25% increased Area of Effect while Fortified" }, } }, + ["MeleeWeaponRangeWhileFortifiedUber1"] = { affix = "", "+0.2 metres to Melee Strike Range while Fortified", statOrder = { 9339 }, level = 1, group = "MeleeWeaponRangeWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [873142284] = { "+0.2 metres to Melee Strike Range while Fortified" }, } }, + ["StunDurationPerStrengthUber1"] = { affix = "", "2% increased Stun Duration per 15 Strength", statOrder = { 10410 }, level = 1, group = "StunDurationPerStrength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3524793843] = { "2% increased Stun Duration per 15 Strength" }, } }, + ["ReducedStunThresholdWith500StrengthUber1"] = { affix = "", "30% reduced Enemy Stun Threshold while you have at least 500 Strength", statOrder = { 10416 }, level = 1, group = "ReducedStunThresholdWith500Strength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1350423427] = { "30% reduced Enemy Stun Threshold while you have at least 500 Strength" }, } }, + ["AreaDamagePerStrengthUber1"] = { affix = "", "1% increased Area Damage per 12 Strength", statOrder = { 4763 }, level = 1, group = "AreaDamagePerStrength", weightKey = { "2h_mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [1457012825] = { "1% increased Area Damage per 12 Strength" }, } }, + ["IncreasedDamageAgainstTauntedEnemiesUber1"] = { affix = "", "50% increased Damage with Hits and Ailments against Taunted Enemies", statOrder = { 6158 }, level = 1, group = "IncreasedDamageAgainstTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [416495155] = { "50% increased Damage with Hits and Ailments against Taunted Enemies" }, } }, + ["BleedingDamagePerEnduranceChargeUber1"] = { affix = "", "5% increased Damage with Bleeding per Endurance Charge", statOrder = { 5173 }, level = 1, group = "BleedingDamagePerEnduranceCharge", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3553579843] = { "5% increased Damage with Bleeding per Endurance Charge" }, } }, + ["MovementSpeedWhileFortifiedUber1"] = { affix = "", "15% increased Movement Speed while Fortified", statOrder = { 3356 }, level = 1, group = "MovementSpeedWhileFortified", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [89156964] = { "15% increased Movement Speed while Fortified" }, } }, + ["MeleeWeaponRangeAtMaximumFrenzyChargesUber1_"] = { affix = "", "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges", statOrder = { 9338 }, level = 1, group = "MeleeWeaponRangeAtMaximumFrenzyCharges", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1915592358] = { "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges" }, } }, + ["BlindEnemiesWhenHitUber1__"] = { affix = "", "20% chance to Blind Enemies when they Hit you", statOrder = { 5292 }, level = 1, group = "BlindEnemiesWhenHit", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [26216403] = { "20% chance to Blind Enemies when they Hit you" }, } }, + ["PoisonDamageAgainstBleedingEnemiesUber1"] = { affix = "", "50% increased Damage with Poison inflicted on Bleeding Enemies", statOrder = { 9824 }, level = 1, group = "PoisonDamageAgainstBleedingEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [3443763859] = { "50% increased Damage with Poison inflicted on Bleeding Enemies" }, } }, + ["ChanceToBleedOnTauntedEnemiesUber1"] = { affix = "", "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies", statOrder = { 4964 }, level = 1, group = "ChanceToBleedOnTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [455461462] = { "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies" }, } }, + ["AreaOfEffectPerPowerChargeUber1"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2152 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } }, + ["BleedDamageAgainstPoisonedEnemiesUber1"] = { affix = "", "50% increased Damage with Bleeding inflicted on Poisoned Enemies", statOrder = { 5177 }, level = 1, group = "BleedDamageAgainstPoisonedEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [2598533821] = { "50% increased Damage with Bleeding inflicted on Poisoned Enemies" }, } }, + ["GainEnduranceChargeOnStunChanceUber1"] = { affix = "", "25% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5765 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1582887649] = { "25% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, + ["FortifyEffectWhileStationaryUber1"] = { affix = "", "+4 to maximum Fortification while stationary", statOrder = { 9242 }, level = 1, group = "FortifyEffectWhileStationary", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3476600731] = { "+4 to maximum Fortification while stationary" }, } }, + ["FortifyDurationPerStrengthUber1"] = { affix = "", "1% increased Fortification Duration per 10 Strength", statOrder = { 6751 }, level = 1, group = "FortifyDurationPerStrength", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3000615037] = { "1% increased Fortification Duration per 10 Strength" }, } }, + ["ReducedElementalDamageTakenPerEnduranceChargeUber1"] = { affix = "", "1% reduced Elemental Damage taken per Endurance Charge", statOrder = { 6407 }, level = 1, group = "ReducedElementalDamageTakenPerEnduranceCharge", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2615920043] = { "1% reduced Elemental Damage taken per Endurance Charge" }, } }, + ["AreaOfEffectIfBlockedRecentlyUber1"] = { affix = "", "20% increased Area of Effect if you have Blocked Recently", statOrder = { 4775 }, level = 1, group = "AreaOfEffectIfBlockedRecently", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1887270958] = { "20% increased Area of Effect if you have Blocked Recently" }, } }, + ["ElementalDamagePer12IntelligenceUber1"] = { affix = "", "1% increased Elemental Damage per 12 Intelligence", statOrder = { 6394 }, level = 1, group = "ElementalDamagePer12Intelligence", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3384209943] = { "1% increased Elemental Damage per 12 Intelligence" }, } }, + ["AdditionalBlockChanceIfCritRecentlyUber1__"] = { affix = "", "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently", statOrder = { 4585 }, level = 1, group = "AdditionalBlockChanceIfCritRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [892558095] = { "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently" }, } }, + ["ElementalDamagePer12StrengthUber1"] = { affix = "", "1% increased Elemental Damage per 12 Strength", statOrder = { 6395 }, level = 1, group = "ElementalDamagePer12Strength", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3770261957] = { "1% increased Elemental Damage per 12 Strength" }, } }, + ["ElementalDamagePerPowerChargeUber1"] = { affix = "", "5% increased Elemental Damage per Power charge", statOrder = { 6396 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [1482070333] = { "5% increased Elemental Damage per Power charge" }, } }, + ["CullingStrikeIfCritRecentlyUber1"] = { affix = "", "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently", statOrder = { 7993 }, level = 1, group = "CullingStrikeIfCritRecently", weightKey = { "axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318464431] = { "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently" }, } }, + ["CritsHaveCullingStrikeUber1"] = { affix = "", "Critical Strikes with this Weapon have Culling Strike", statOrder = { 7992 }, level = 1, group = "CritsHaveCullingStrike", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [1240032295] = { "Critical Strikes with this Weapon have Culling Strike" }, } }, + ["GainEnduranceChargeOnLosingFortifyUber1"] = { affix = "", "Gain an Endurance Charge when you stop being Fortified", statOrder = { 6840 }, level = 1, group = "GainEnduranceChargeOnLosingFortify", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1533103082] = { "Gain an Endurance Charge when you stop being Fortified" }, } }, + ["LifeGainOnHitWhileLeechingUber1"] = { affix = "", "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching", statOrder = { 8097 }, level = 1, group = "LifeGainOnHitWhileLeeching", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [840182473] = { "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching" }, } }, + ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5482 }, 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 = { 5477 }, 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 = { 5490 }, 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 = { 6147 }, 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 = { 1883 }, 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 = { 1883 }, 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 = { 1883 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, + ["IncreasedAilmentDurationUnique__4"] = { affix = "", "(5-25)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(5-25)% increased Duration of Ailments on Enemies" }, } }, + ["FasterAilmentDamageUnique__1"] = { affix = "", "Damaging Ailments deal damage (5-25)% faster", statOrder = { 6214 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (5-25)% faster" }, } }, + ["SharedSufferingUnique__1"] = { affix = "", "Shared Suffering", statOrder = { 10980 }, level = 1, group = "SharedSuffering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [956038713] = { "Shared Suffering" }, } }, + ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 836 }, 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 = { 6722 }, 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 = { 6773 }, 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 = { 5924 }, 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 = { 10709 }, 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 = { 6257 }, 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 = { 10517 }, 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 = { 10517 }, 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 = { 9901 }, 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 = { 6551 }, 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 = { 6431 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, + ["ChanceToDodgeWhileOffhandIsEmpty"] = { affix = "", "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10327 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2076926581] = { "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty" }, } }, + ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5898 }, 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 = { 11010 }, 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 = { 11016 }, 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 = { 11020 }, 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 = { 11019 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, + ["ElementalDamageCanShockUnique__1__"] = { affix = "", "Your Elemental Damage can Shock", statOrder = { 2907 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "Your Elemental Damage can Shock" }, } }, + ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them", statOrder = { 2488 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1217730254] = { "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them" }, } }, + ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 810 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, + ["DamagePerAbyssJewelTypeUnique__1_"] = { affix = "", "10% increased Damage for each type of Abyss Jewel affecting you", statOrder = { 4203 }, level = 1, group = "DamagePerAbyssJewelType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [154272030] = { "10% increased Damage for each type of Abyss Jewel affecting you" }, } }, + ["AdditionalPhysicalDamageReductionWhileMovingUnique__1"] = { affix = "", "5% additional Physical Damage Reduction while moving", statOrder = { 4627 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "5% additional Physical Damage Reduction while moving" }, } }, + ["ReducedElementalDamageTakenWhileStationaryUnique__1_"] = { affix = "", "5% reduced Elemental Damage taken while stationary", statOrder = { 6408 }, level = 1, group = "ReducedElementalDamageTakenWhileStationary", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [983989924] = { "5% reduced Elemental Damage taken while stationary" }, } }, + ["IncreasedLifePerAbyssalJewelUnique__1"] = { affix = "", "1% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9289 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3185671537] = { "1% increased Maximum Life per Abyss Jewel affecting you" }, } }, + ["IncreasedManaPerAbyssalJewelUnique__1_"] = { affix = "", "1% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9297 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2135370196] = { "1% increased Maximum Mana per Abyss Jewel affecting you" }, } }, + ["IncreasedLifePerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9289 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3185671537] = { "3% increased Maximum Life per Abyss Jewel affecting you" }, } }, + ["IncreasedManaPerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9297 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2135370196] = { "3% increased Maximum Mana per Abyss Jewel affecting you" }, } }, + ["ElementalPenetrationPerAbyssalJewelUnique__1"] = { affix = "", "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you", statOrder = { 9732 }, level = 1, group = "ElementalPenetrationPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4250752669] = { "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you" }, } }, + ["IncreasedLifePerElderItemUnique__1"] = { affix = "", "+6 to Maximum Life per Elder Item Equipped", statOrder = { 4366 }, level = 1, group = "IncreasedLifePerElderItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3849523464] = { "+6 to Maximum Life per Elder Item Equipped" }, } }, + ["AilmentEffectPerElderItemUnique__1"] = { affix = "", "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped", statOrder = { 4370 }, level = 1, group = "AilmentEffectPerElderItem", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [4133552694] = { "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped" }, } }, + ["AilmentDamagePerElderItemUnique__1__"] = { affix = "", "15% increased Damage with Ailments per Elder Item Equipped", statOrder = { 4367 }, level = 1, group = "AilmentDamagePerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2418574586] = { "15% increased Damage with Ailments per Elder Item Equipped" }, } }, + ["AilmentDamageOverTimeMultiplierPerElderItemUnique__1"] = { affix = "", "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped", statOrder = { 4368 }, level = 1, group = "AilmentDamageOverTimeMultiplierPerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2212731469] = { "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped" }, } }, + ["RemoveAilmentOnFlaskUseIfAllItemsAreElderUnique__1_"] = { affix = "", "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items", statOrder = { 10056 }, level = 1, group = "RemoveAilmentOnFlaskUseIfAllItemsAreElder", weightKey = { }, weightVal = { }, modTags = { "flask", "ailment" }, tradeHashes = { [2917587077] = { "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items" }, } }, + ["StrengthDamageBonus3Per10Unique__1"] = { affix = "", "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength", statOrder = { 10404, 10404.1 }, level = 1, group = "StrengthDamageBonus3Per10", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1531241759] = { "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength" }, } }, + ["CannotBlockSpellsUnique__1"] = { affix = "", "Cannot Block Spell Damage", statOrder = { 5503 }, level = 1, group = "CannotBlockSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4076910393] = { "Cannot Block Spell Damage" }, } }, + ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "+(80-100) to Evasion Rating and Energy Shield", statOrder = { 8042 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1549868759] = { "+(80-100) to Evasion Rating and Energy Shield" }, } }, + ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_"] = { affix = "", "+(120-150) to Evasion Rating and Energy Shield", statOrder = { 8042 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1549868759] = { "+(120-150) to Evasion Rating and Energy Shield" }, } }, + ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7968 }, 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 = { 8046 }, 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", statOrder = { 8045 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit" }, } }, + ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7969 }, 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 = { 7972 }, 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 = { 7966 }, 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" }, } }, + ["ArcaneSurgeOnHitWithSpellAbyssJewelUnique__1"] = { affix = "", "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells", statOrder = { 8142 }, level = 1, group = "ArcaneSurgeOnHitWithSpellAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3153744598] = { "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells" }, } }, + ["MinionAccuracyWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating", statOrder = { 8109 }, level = 1, group = "MinionAccuracyWithMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2388362438] = { "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating" }, } }, + ["MinionUnholyMightWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells", statOrder = { 8110, 8110.1 }, level = 1, group = "MinionUnholyMightWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "caster", "minion" }, tradeHashes = { [4122732904] = { "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells" }, } }, + ["AbyssJewelEffectUnique__1"] = { affix = "", "(50-100)% increased Effect of Socketed Abyss Jewels", statOrder = { 230 }, level = 1, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1482572705] = { "(50-100)% increased Effect of Socketed Abyss Jewels" }, } }, + ["MovementVelocityWithMagicAbyssJewelUnique__1"] = { affix = "", "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel", statOrder = { 9576 }, level = 1, group = "MovementVelocityWithMagicAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874817029] = { "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel" }, } }, + ["ElementalAilmentDurationWithRareAbyssJewelUnique__1"] = { affix = "", "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel", statOrder = { 6378 }, level = 1, group = "ElementalAilmentDurationWithRareAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [287112619] = { "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel" }, } }, + ["ReservationEfficiencyWithUniqueAbyssJewelUnique__1"] = { affix = "", "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel", statOrder = { 10065 }, level = 1, group = "ReservationEfficiencyWithUniqueAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2811179011] = { "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel" }, } }, + ["IncreasedArmourWhileStationaryUnique__1"] = { affix = "", "80% increased Armour while stationary", statOrder = { 4821 }, level = 1, group = "IncreasedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3184053924] = { "80% increased Armour while stationary" }, } }, + ["NumberOfProjectilesIfHitRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've been Hit Recently", statOrder = { 9660 }, level = 1, group = "NumberOfProjectilesIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [988207959] = { "Skills fire 2 additional Projectiles if you've been Hit Recently" }, } }, + ["GainIronReflexesWhileStationaryUnique__1"] = { affix = "", "Iron Reflexes while stationary", statOrder = { 11008 }, level = 1, group = "GainIronReflexesWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [187998220] = { "Iron Reflexes while stationary" }, } }, + ["PlayerFarShotUnique__2"] = { affix = "", "Far Shot", statOrder = { 10995 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, + ["PlayerFarShotUnique__3"] = { affix = "", "Far Shot", statOrder = { 10995 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, + ["KeystonePointBlankUnique__2"] = { affix = "", "Point Blank", statOrder = { 10968 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, + ["NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently", statOrder = { 9661 }, level = 1, group = "NumberOfProjectilesIfUsedAMovementSkillRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2809802678] = { "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently" }, } }, + ["EvasionRatingWhileMovingUnique__1"] = { affix = "", "80% increased Evasion Rating while moving", statOrder = { 6586 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [734823525] = { "80% increased Evasion Rating while moving" }, } }, + ["AddedPhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies", statOrder = { 4927 }, level = 1, group = "AddedPhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2202639361] = { "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies" }, } }, + ["AddedFireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies", statOrder = { 4920 }, level = 1, group = "AddedFireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2453554491] = { "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies" }, } }, + ["GainAvatarOfFireEvery8SecondsUnique__1"] = { affix = "", "Every 8 seconds, gain Avatar of Fire for 4 seconds", statOrder = { 11006 }, level = 1, group = "GainAvatarOfFireEvery8Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3345955207] = { "Every 8 seconds, gain Avatar of Fire for 4 seconds" }, } }, + ["ChanceToBleedIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies", statOrder = { 4962 }, level = 1, group = "ChanceToBleedIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3148418088] = { "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies" }, } }, + ["IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1"] = { affix = "", "(160-200)% increased Critical Strike Chance while you have Avatar of Fire", statOrder = { 11014 }, level = 1, group = "IncreasedCriticalStrikeChanceWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2815652613] = { "(160-200)% increased Critical Strike Chance while you have Avatar of Fire" }, } }, + ["ArmourWithoutAvatarOfFireUnique__1"] = { affix = "", "+2000 Armour while you do not have Avatar of Fire", statOrder = { 11018 }, level = 1, group = "ArmourWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4078952782] = { "+2000 Armour while you do not have Avatar of Fire" }, } }, + ["ConvertPhysicalToFireWithAvatarOfFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire while you have Avatar of Fire", statOrder = { 11015 }, level = 1, group = "ConvertPhysicalToFireWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2052379536] = { "50% of Physical Damage Converted to Fire while you have Avatar of Fire" }, } }, + ["GainElementalOverloadEvery16SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Elemental Overload for 8 seconds", statOrder = { 11007 }, level = 1, group = "GainElementalOverloadEvery16Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [708913352] = { "Every 16 seconds you gain Elemental Overload for 8 seconds" }, } }, + ["GainResoluteTechniqueWithoutElementalOverloadUnique__1"] = { affix = "", "You have Resolute Technique while you do not have Elemental Overload", statOrder = { 11009 }, level = 1, group = "GainResoluteTechniqueWithoutElementalOverload", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2905429068] = { "You have Resolute Technique while you do not have Elemental Overload" }, } }, + ["ProjectilesGainPercentOfNonChaosAsChaosUnique__1"] = { affix = "", "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain", statOrder = { 9882 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1924041432] = { "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain" }, } }, + ["ProjectilesGainPercentOfNonChaosAsChaosUnique__2"] = { affix = "", "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9881 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos2", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1698276268] = { "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage" }, } }, + ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6232 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, + ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 278 }, 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 15 Elemental Penetration", statOrder = { 278 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 15 Elemental Penetration" }, } }, + ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4421 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, + ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of Life when you lose a Spirit Charge", statOrder = { 4423 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of Life when you lose a Spirit Charge" }, } }, + ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of Energy Shield when you lose a Spirit Charge", statOrder = { 4424 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of 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 = { 9767 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [4288824781] = { "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 = { 837 }, 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 = { 4420 }, 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 = { 4422 }, 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 = { 4418 }, 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 = { 4418 }, 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 = { 10867 }, 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 = { 816 }, 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 = { 817 }, 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 = { 9380 }, 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 = { 5820 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6403 }, 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 = { 9796 }, 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 = { 4309 }, 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 Damage of each Element from Hits per Frenzy Charge", statOrder = { 3408 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1649883131] = { "2% chance to Avoid Damage of each Element from Hits per Frenzy Charge" }, } }, + ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, 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 = { 1825 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, + ["AttackDamageLeechPerFrenzyChargeUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life per Frenzy Charge", statOrder = { 7466 }, level = 1, group = "AttackDamageLeechPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3243062554] = { "0.5% of Attack Damage Leeched as Life per Frenzy Charge" }, } }, + ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to (15-25) Lightning Damage to Spells per Power Charge", statOrder = { 9377 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to (15-25) Lightning Damage to Spells per Power Charge" }, } }, + ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% to Critical Strike Chance per Power Charge", statOrder = { 3505 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% to Critical Strike Chance per Power Charge" }, } }, + ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "+(6-10)% to Critical Strike Multiplier per Power Charge", statOrder = { 3318 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "+(6-10)% to Critical Strike Multiplier per Power Charge" }, } }, + ["ChanceToBlockSpellsPerPowerChargeUnique__1"] = { affix = "", "+2% Chance to Block Spell Damage per Power Charge", statOrder = { 4631 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [816458107] = { "+2% Chance to Block Spell Damage per Power Charge" }, } }, + ["ChanceToBlockSpellsPerPowerChargeUnique__2_"] = { affix = "", "+5% Chance to Block Spell Damage per Power Charge", statOrder = { 4631 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [816458107] = { "+5% Chance to Block Spell Damage per Power Charge" }, } }, + ["DamageTakenPerEnduranceChargeWhenHitUnique__1_"] = { affix = "", "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently", statOrder = { 10865 }, level = 1, group = "DamageTakenPerEnduranceChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1920234902] = { "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently" }, } }, + ["DamageTakenPerFrenzyChargeMovingUnique__1"] = { affix = "", "200 Cold Damage taken per second per Frenzy Charge while moving", statOrder = { 10861 }, level = 1, group = "DamageTakenPerFrenzyChargeMoving", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1528823952] = { "200 Cold Damage taken per second per Frenzy Charge while moving" }, } }, + ["DamageTakenPerPowerChargeOnCritUnique__1"] = { affix = "", "300 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently", statOrder = { 10870, 10870.1 }, level = 1, group = "DamageTakenPerPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1964333391] = { "300 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently" }, } }, + ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9955 }, 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 = { 840 }, 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 second", statOrder = { 4394, 7006 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every second" }, [1209237645] = { "5 Maximum Void Charges" }, } }, + ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item", statOrder = { 4365 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item" }, } }, + ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item", statOrder = { 4362 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item" }, } }, + ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item", statOrder = { 4363 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item" }, } }, + ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item", statOrder = { 4364 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2312817839] = { "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item" }, } }, + ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of Life when you use a Mana Flask", statOrder = { 4381 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1926816773] = { "Recover (8-10)% of Life when you use a Mana Flask" }, } }, + ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Mana Recovery from Flasks is also Recovered as Life", statOrder = { 4382 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Mana Recovery from Flasks is also Recovered as Life" }, } }, + ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", statOrder = { 4384 }, level = 1, group = "SpellDamagePer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%" }, } }, + ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4383 }, level = 1, group = "ManaCostPer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, + ["SiphoningChargeOnSkillUseUnique__1"] = { affix = "", "25% chance to gain a Siphoning Charge when you use a Skill", statOrder = { 4374 }, level = 1, group = "SiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2922737717] = { "25% chance to gain a Siphoning Charge when you use a Skill" }, } }, + ["MaximumSiphoningChargePerElderOrShaperItemUnique__1"] = { affix = "", "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped", statOrder = { 4373 }, level = 1, group = "MaximumSiphoningChargePerElderOrShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1872128565] = { "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped" }, } }, + ["PhysicalDamageToAttacksPerSiphoningChargeUnique__1"] = { affix = "", "Adds (20-23) to (26-30) Physical Damage to Attacks and Spells per Siphoning Charge", statOrder = { 4375 }, level = 1, group = "PhysicalDamageToAttacksPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "attack", "caster" }, tradeHashes = { [3368671817] = { "Adds (20-23) to (26-30) Physical Damage to Attacks and Spells per Siphoning Charge" }, } }, + ["LifeLeechPerSiphoningChargeUnique__1"] = { affix = "", "0.2% of Damage Leeched as Life per Siphoning Charge", statOrder = { 4378 }, level = 1, group = "LifeLeechPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1587137379] = { "0.2% of Damage Leeched as Life per Siphoning Charge" }, } }, + ["NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1"] = { affix = "", "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge", statOrder = { 4376 }, level = 1, group = "NonChaosDamageAddedAsChaosPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3296019532] = { "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge" }, } }, + ["AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1"] = { affix = "", "2% additional Physical Damage Reduction from Hits per Siphoning Charge", statOrder = { 4377 }, level = 1, group = "AdditionalPhysicalDamageReductionPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3837366401] = { "2% additional Physical Damage Reduction from Hits per Siphoning Charge" }, } }, + ["DamageTakenPerSiphoningChargeOnSkillUseUnique__1"] = { affix = "", "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently", statOrder = { 4379 }, level = 1, group = "DamageTakenPerSiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2440172920] = { "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently" }, } }, + ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 844 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, tradeHashes = { [1350938937] = { "20% chance to Trigger Level 20 Tentacle Whip on Kill" }, } }, + ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 843 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3141831683] = { "Trigger Level 20 Glimpse of Eternity when Hit" }, } }, + ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 845 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2143990571] = { "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill" }, } }, + ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 689 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1904419785] = { "Grants Level 20 Petrification Statue Skill" }, } }, + ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 709 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, + ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 703 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, + ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 738 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, + ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 726 }, 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 = { 711 }, 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 = { 1616 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, + ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6142 }, 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 = { 6142 }, 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 = { 7506 }, 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 = { 6386 }, 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 = { 5743 }, 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 = { 9026 }, 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 = { 9947 }, 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 = { 4413 }, 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 = { 4412 }, 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 = { 2504 }, 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 = { 5847 }, 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 = { 5847 }, 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 = { 10150 }, 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 = { 10150 }, 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 = { 468 }, 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 = { 466 }, 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 = { 9366 }, 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 = { 9378 }, 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 = { 4983 }, 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 = { 4836 }, 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 = { 4835 }, 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 = { 7508 }, 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 = { 8320 }, 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 = { 4982 }, 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 = { 818 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, + ["CatsStealthTriggeredIntimidatingCry"] = { affix = "", "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth", statOrder = { 833 }, level = 1, group = "CatsStealthTriggeredIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3892608176] = { "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth" }, } }, + ["MaximumCrabBarriersUnique__1"] = { affix = "", "+5 to Maximum number of Crab Barriers", statOrder = { 4387 }, level = 81, group = "MaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894704558] = { "+5 to Maximum number of Crab Barriers" }, } }, + ["AdditionalBlockChance5CrabBarriersUnique__1"] = { affix = "", "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers", statOrder = { 4390 }, level = 1, group = "AdditionalBlockChance5CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1354504703] = { "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers" }, } }, + ["AdditionalBlockChance10CrabBarriersUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers", statOrder = { 4391 }, level = 1, group = "AdditionalBlockChance10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [653107703] = { "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers" }, } }, + ["CrabBarriersLostWhenHitUnique__1_"] = { affix = "", "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit", statOrder = { 4389 }, level = 1, group = "CrabBarriersLostWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [455217103] = { "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit" }, } }, + ["DamagePerCrabBarrierUnique__1"] = { affix = "", "3% increased Damage per Crab Barrier", statOrder = { 4388 }, level = 1, group = "DamagePerCrabBarrier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1019038967] = { "3% increased Damage per Crab Barrier" }, } }, + ["ChanceToGainMaximumCrabBarriersUnique__1_"] = { affix = "", "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers", statOrder = { 4392, 4392.1 }, level = 1, group = "ChanceToGainMaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1829869055] = { "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers" }, } }, + ["CannotBeStunned10CrabBarriersUnique__1"] = { affix = "", "Cannot be Stunned if you have at least 10 Crab Barriers", statOrder = { 4385 }, level = 1, group = "CannotBeStunned10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [877233648] = { "Cannot be Stunned if you have at least 10 Crab Barriers" }, } }, + ["CannotLoseCrabBarriersIfLostRecentlyUnique__1"] = { affix = "", "Cannot lose Crab Barriers if you have lost Crab Barriers Recently", statOrder = { 4386 }, level = 1, group = "CannotLoseCrabBarriersIfLostRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [241251790] = { "Cannot lose Crab Barriers if you have lost Crab Barriers Recently" }, } }, + ["GainPhasingWhileCatsStealthUnique__1"] = { affix = "", "You have Phasing while you have Cat's Stealth", statOrder = { 6892 }, level = 1, group = "GainPhasingWhileCatsStealth", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1834455446] = { "You have Phasing while you have Cat's Stealth" }, } }, + ["GainOnslaughtWhileCatsAgilityUnique__1_"] = { affix = "", "You have Onslaught while you have Cat's Agility", statOrder = { 6884 }, level = 1, group = "GainOnslaughtWhileCatsAgility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4274075490] = { "You have Onslaught while you have Cat's Agility" }, } }, + ["CatsStealthDurationUnique__1_"] = { affix = "", "+2 seconds to Cat's Stealth Duration", statOrder = { 5553 }, level = 1, group = "CatsStealthDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [387596329] = { "+2 seconds to Cat's Stealth Duration" }, } }, + ["CatsAgilityDurationUnique__1"] = { affix = "", "+2 seconds to Cat's Agility Duration", statOrder = { 4837 }, level = 1, group = "CatsAgilityDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686519528] = { "+2 seconds to Cat's Agility Duration" }, } }, + ["CatAspectReservesNoManaUnique__1___"] = { affix = "", "Aspect of the Cat has no Reservation", statOrder = { 5552 }, level = 1, group = "CatAspectReservesNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3850409117] = { "Aspect of the Cat has no Reservation" }, } }, + ["GainMaxFrenzyAndPowerOnCatsStealthUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth", statOrder = { 6864 }, level = 1, group = "GainMaxFrenzyAndPowerOnCatsStealth", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, tradeHashes = { [2446580062] = { "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth" }, } }, + ["GainMaxFrenzyAndEnduranceOnCatsAgilityUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility", statOrder = { 6863 }, level = 1, group = "GainMaxFrenzyAndEnduranceOnCatsAgility", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, tradeHashes = { [523966073] = { "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility" }, } }, + ["AttacksBleedOnHitWithCatsStealthUnique__1_"] = { affix = "", "Attacks always inflict Bleeding while you have Cat's Stealth", statOrder = { 4960 }, level = 1, group = "AttacksBleedOnHitWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2059771038] = { "Attacks always inflict Bleeding while you have Cat's Stealth" }, } }, + ["GainCrimsonDanceWithCatsStealthUnique__1"] = { affix = "", "You have Crimson Dance while you have Cat's Stealth", statOrder = { 11001 }, level = 1, group = "GainCrimsonDanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3492797685] = { "You have Crimson Dance while you have Cat's Stealth" }, } }, + ["MovementSpeedWithCatsStealthUnique__1"] = { affix = "", "20% increased Movement Speed while you have Cat's Stealth", statOrder = { 9571 }, level = 1, group = "MovementSpeedWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [673704994] = { "20% increased Movement Speed while you have Cat's Stealth" }, } }, + ["AdditionalCriticalStrikeChanceWithCatAspectUnique__1"] = { affix = "", "+1% to Critical Strike Chance while affected by Aspect of the Cat", statOrder = { 4398 }, level = 1, group = "AdditionalCriticalStrikeChanceWithCatAspect", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3992636701] = { "+1% to Critical Strike Chance while affected by Aspect of the Cat" }, } }, + ["CritsBlindChanceWithCatsStealthUnique__1"] = { affix = "", "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth", statOrder = { 4399 }, level = 1, group = "CritsBlindChanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [843854434] = { "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth" }, } }, + ["DamageAgainstBlindedEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 7249 }, level = 1, group = "DamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3565956680] = { "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies" }, } }, + ["ChanceToAvoidBleedingUnique__1"] = { affix = "", "(40-50)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(40-50)% chance to Avoid Bleeding" }, } }, + ["ChanceToAvoidBleedingUnique__2_"] = { affix = "", "100% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "100% chance to Avoid Bleeding" }, } }, + ["DamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 7248 }, level = 1, group = "DamageAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1790172543] = { "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies" }, } }, + ["AccuracyAgainstBleedingEnemiesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "AccuracyAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(400-500) to Accuracy Rating" }, } }, + ["CommandmentOfInfernoOnCritUnique__1"] = { affix = "", "Trigger Commandment of Inferno on Critical Strike", statOrder = { 807 }, level = 1, group = "CommandmentOfInfernoOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3251948367] = { "Trigger Commandment of Inferno on Critical Strike" }, } }, + ["MaximumResistancesOverrideUnique__1"] = { affix = "", "Your Maximum Resistances are (76-78)%", statOrder = { 9699 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (76-78)%" }, } }, + ["MaximumResistancesOverrideUnique__2"] = { affix = "", "Your Maximum Resistances are (70-72)%", statOrder = { 9699 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (70-72)%" }, } }, + ["BurningDamagePerEnemyShockedRecentlyUnique__1_"] = { affix = "", "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%", statOrder = { 5455 }, level = 1, group = "BurningDamagePerEnemyShockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3285748758] = { "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%" }, } }, + ["AddedLightningDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "Adds (1-3) to (125-145) Lightning Damage to Hits against Ignited Enemies", statOrder = { 6980 }, level = 1, group = "AddedLightningDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2870108850] = { "Adds (1-3) to (125-145) Lightning Damage to Hits against Ignited Enemies" }, } }, + ["LightningDamageCanIgniteUnique__1"] = { affix = "", "Your Lightning Damage can Ignite", statOrder = { 7545 }, level = 100, group = "LightningDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Your Lightning Damage can Ignite" }, } }, + ["ProjectileAttackDamageAt200DexterityUnique__1"] = { affix = "", "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity", statOrder = { 4401 }, level = 60, group = "ProjectileAttackDamageAt200Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1822142649] = { "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity" }, } }, + ["CriticalStrikeChanceAt200IntelligenceUnique__1"] = { affix = "", "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence", statOrder = { 4402 }, level = 60, group = "CriticalStrikeChanceAt200Intelligence", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [578121324] = { "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence" }, } }, + ["AddedFireDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved", statOrder = { 9384 }, level = 1, group = "AddedFireDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [833719670] = { "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved" }, } }, + ["AddedColdDamageWhileNoLifeReservedUnique__1__"] = { affix = "", "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved", statOrder = { 9383 }, level = 1, group = "AddedColdDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [897996059] = { "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved" }, } }, + ["AddedLightningDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved", statOrder = { 9385 }, level = 1, group = "AddedLightningDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [985999215] = { "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved" }, } }, + ["OnslaughtOnLowLifeUnique__1"] = { affix = "", "You have Onslaught while on Low Life", statOrder = { 6883 }, level = 77, group = "OnslaughtOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1871938116] = { "You have Onslaught while on Low Life" }, } }, + ["IgnoreEnemyFireResistWhileIgnitedUnique__1"] = { affix = "", "Hits ignore Enemy Monster Fire Resistance while you are Ignited", statOrder = { 7267 }, level = 75, group = "IgnoreEnemyFireResistWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4040152475] = { "Hits ignore Enemy Monster Fire Resistance while you are Ignited" }, } }, + ["CrimsonDanceIfCritRecentlyUnique__1"] = { affix = "", "You have Crimson Dance if you have dealt a Critical Strike Recently", statOrder = { 11000 }, level = 74, group = "CrimsonDanceIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1756017808] = { "You have Crimson Dance if you have dealt a Critical Strike Recently" }, } }, + ["AnimateGuardianWeaponOnGuardianKillUnique__1_"] = { affix = "", "Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy", statOrder = { 814 }, level = 1, group = "AnimateGuardianWeaponOnGuardianKillUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3682009780] = { "Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy" }, [1361762803] = { "" }, } }, + ["AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1"] = { affix = "", "10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy", statOrder = { 815 }, level = 1, group = "AnimateGuardianWeaponOnAnimatedWeaponKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [919960234] = { "10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy" }, [1361762803] = { "" }, } }, + ["CannnotHaveNonAnimatedMinionsUnique__1"] = { affix = "", "You cannot have Non-Animated, Non-Manifested Minions", statOrder = { 10814 }, level = 1, group = "CannnotHaveNonAnimatedMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1220105149] = { "You cannot have Non-Animated, Non-Manifested Minions" }, } }, + ["AnimatedGuardianDamagePerAnimatedWeaponUnique__1__"] = { affix = "", "Animated Guardian deals 5% increased Damage per Animated Weapon", statOrder = { 4733 }, level = 1, group = "AnimatedGuardianDamagePerAnimatedWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [759294825] = { "Animated Guardian deals 5% increased Damage per Animated Weapon" }, } }, + ["AnimatedMinionsHaveMeleeSplashUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets", statOrder = { 4736, 4736.1 }, level = 1, group = "AnimatedMinionsHaveMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [91242932] = { "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets" }, } }, + ["IncreasedAnimatedMinionSplashDamageUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage", statOrder = { 7001 }, level = 1, group = "IncreasedAnimatedMinionSplashDamage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [478698670] = { "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage" }, } }, + ["FireDamageToAttacksPerStrengthUnique__1"] = { affix = "", "Adds 1 to 2 Fire Damage to Attacks per 10 Strength", statOrder = { 9371 }, level = 1, group = "FireDamageToAttacksPerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [68673913] = { "Adds 1 to 2 Fire Damage to Attacks per 10 Strength" }, } }, + ["ColdDamageToAttacksPerDexterityUnique__1"] = { affix = "", "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9363 }, level = 1, group = "ColdDamageToAttacksPerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [769783486] = { "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity" }, } }, + ["LightningDamageToAttacksPerIntelligenceUnique__1"] = { affix = "", "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9376 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3168149399] = { "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence" }, } }, + ["AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4947 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently" }, } }, + ["CastSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5543 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1174076861] = { "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently" }, } }, + ["EffectOfChillIsReversedUnique__1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5849 }, level = 30, group = "EffectOfChillIsReversed", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, + ["TriggerSocketedSpellOnBowAttackUnique__1_"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 555 }, level = 57, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, + ["TriggerSocketedSpellOnBowAttackUnique__2"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 555 }, level = 1, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, + ["CountAsLowLifeWhenNotOnFullLifeUnique__1"] = { affix = "", "You count as on Low Life while not on Full Life", statOrder = { 10818 }, level = 75, group = "CountAsLowLifeWhenNotOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2475362240] = { "You count as on Low Life while not on Full Life" }, } }, + ["IncreasedSpiderWebCountUnique__1"] = { affix = "", "Aspect of the Spider can inflict Spider's Web on Enemies an additional time", statOrder = { 4841 }, level = 1, group = "IncreasedSpiderWebCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1509532587] = { "Aspect of the Spider can inflict Spider's Web on Enemies an additional time" }, } }, + ["AspectOfSpiderDurationUnique__1"] = { affix = "", "(40-50)% increased Aspect of the Spider Debuff Duration", statOrder = { 10349 }, level = 1, group = "AspectOfSpiderDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332854027] = { "(40-50)% increased Aspect of the Spider Debuff Duration" }, } }, + ["ESOnHitWebbedEnemiesUnique__1"] = { affix = "", "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web", statOrder = { 6521 }, level = 1, group = "ESOnHitWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [549215295] = { "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web" }, } }, + ["AspectOfSpiderWebIntervalUnique__1"] = { affix = "", "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead", statOrder = { 10352 }, level = 1, group = "AspectOfSpiderWebInterval", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3832130495] = { "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead" }, } }, + ["PowerChargeOnHitWebbedEnemyUnique__1"] = { affix = "", "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web", statOrder = { 5774 }, level = 1, group = "PowerChargeOnHitWebbedEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [273206351] = { "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web" }, } }, + ["PoisonChancePerPowerChargeUnique__1"] = { affix = "", "(6-10)% chance to Poison per Power Charge", statOrder = { 5796 }, level = 1, group = "PoisonChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2992087211] = { "(6-10)% chance to Poison per Power Charge" }, } }, + ["PoisonDamagePerPowerChargeUnique__1"] = { affix = "", "(15-20)% increased Damage with Poison per Power Charge", statOrder = { 9823 }, level = 1, group = "PoisonDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [4230767876] = { "(15-20)% increased Damage with Poison per Power Charge" }, } }, + ["ChaosDamagePerWebOnEnemyUnique__1"] = { affix = "", "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy", statOrder = { 9358 }, level = 1, group = "ChaosDamagePerWebOnEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [982177653] = { "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy" }, } }, + ["DamageAgainstEnemiesWith3WebsUnique__1_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs", statOrder = { 7253 }, level = 1, group = "DamageAgainstEnemiesWith3Webs", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [103928310] = { "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs" }, } }, + ["AreaOfEffectAspectOfSpiderUnique__1"] = { affix = "", "(50-70)% increased Aspect of the Spider Area of Effect", statOrder = { 10351 }, level = 1, group = "AreaOfEffectAspectOfSpider", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686780108] = { "(50-70)% increased Aspect of the Spider Area of Effect" }, } }, + ["DamageDealtByWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs deal 10% reduced Damage", statOrder = { 6127 }, level = 1, group = "DamageDealtByWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3231424461] = { "Enemies affected by your Spider's Webs deal 10% reduced Damage" }, } }, + ["ResistancesOfWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs have -10% to All Resistances", statOrder = { 10068 }, level = 1, group = "ResistancesOfWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [785655723] = { "Enemies affected by your Spider's Webs have -10% to All Resistances" }, } }, + ["NoArmourOrEnergyShieldUnique__1_"] = { affix = "", "You have no Armour or Maximum Energy Shield", statOrder = { 10820 }, level = 1, group = "NoArmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3591359751] = { "You have no Armour or Maximum Energy Shield" }, } }, + ["PoachersMarkCurseOnHitHexproofUnique__1"] = { affix = "", "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 781 }, level = 61, group = "PoachersMarkCurseOnHitHexproof", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [364728407] = { "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["CullingStrikePoachersMarkUnique__1"] = { affix = "", "Culling Strike against Enemies Cursed with Poacher's Mark", statOrder = { 6071 }, level = 1, group = "CullingStrikePoachersMark", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2114080270] = { "Culling Strike against Enemies Cursed with Poacher's Mark" }, } }, + ["DamageOnMovementSkillUnique__1"] = { affix = "", "Take (100-200) Physical Damage when you use a Movement Skill", statOrder = { 10121 }, level = 1, group = "DamageOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2590715472] = { "Take (100-200) Physical Damage when you use a Movement Skill" }, } }, + ["RagingSpiritDamageUnique__1_"] = { affix = "", "Summoned Raging Spirits deal (175-250)% increased Damage", statOrder = { 3687 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal (175-250)% increased Damage" }, } }, + ["RagingSpiritDamageUnique__2"] = { affix = "", "Summoned Raging Spirits deal (25-40)% increased Damage", statOrder = { 3687 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2085855914] = { "Summoned Raging Spirits deal (25-40)% increased Damage" }, } }, + ["RagingSpiritAlwaysIgniteUnique__1"] = { affix = "", "Summoned Raging Spirits' Hits always Ignite", statOrder = { 9945 }, level = 1, group = "RagingSpiritAlwaysIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "minion", "ailment" }, tradeHashes = { [3954637034] = { "Summoned Raging Spirits' Hits always Ignite" }, } }, + ["ReducedRagingSpiritsAllowedUnique__1"] = { affix = "", "75% reduced Maximum number of Summoned Raging Spirits", statOrder = { 9743 }, level = 1, group = "ReducedRagingSpiritsAllowed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1186934478] = { "75% reduced Maximum number of Summoned Raging Spirits" }, } }, + ["BlindingAuraSkillUnique__1"] = { affix = "", "Triggers Level 20 Blinding Aura when Equipped", statOrder = { 690 }, level = 79, group = "BlindingAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [125312907] = { "Triggers Level 20 Blinding Aura when Equipped" }, } }, + ["AddedFireDamageAgainstBlindedEnemiesUnique__1_"] = { affix = "", "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies", statOrder = { 9372 }, level = 1, group = "AddedFireDamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3977907993] = { "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies" }, } }, + ["LightRadiusAppliesToAccuracyUnique__1_"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7531 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } }, + ["FirePenetrationAgainstBlindedEnemiesUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance against Blinded Enemies", statOrder = { 10021 }, level = 1, group = "FirePenetrationAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1748657990] = { "Damage Penetrates 10% Fire Resistance against Blinded Enemies" }, } }, + ["HitsCannotBeEvadedAgainstBlindedEnemiesUnique__1"] = { affix = "", "Your Hits can't be Evaded by Blinded Enemies", statOrder = { 7259 }, level = 72, group = "HitsCannotBeEvadedAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [90597215] = { "Your Hits can't be Evaded by Blinded Enemies" }, } }, + ["ChillEffectUnique__1"] = { affix = "", "(15-20)% increased Effect of Cold Ailments", statOrder = { 5880 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(15-20)% increased Effect of Cold Ailments" }, } }, + ["OnHitWhileCursedTriggeredCurseNovaUnique__1"] = { affix = "", "Trigger Level 20 Elemental Warding on Melee Hit while Cursed", statOrder = { 828 }, level = 77, group = "OnHitWhileCursedTriggeredCurseNova", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [810166817] = { "Trigger Level 20 Elemental Warding on Melee Hit while Cursed" }, } }, + ["ChanceToBePoisonedUnique__1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3406 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, + ["PoisonExpiresSlowerUnique__1"] = { affix = "", "Poisons on you expire 50% slower", statOrder = { 9835 }, level = 1, group = "PoisonExpiresSlower", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2443132097] = { "Poisons on you expire 50% slower" }, } }, + ["MaximumResistancesWhilePoisonedUnique__1"] = { affix = "", "+3% to all maximum Resistances while Poisoned", statOrder = { 4607 }, level = 1, group = "MaximumResistancesWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [1030987123] = { "+3% to all maximum Resistances while Poisoned" }, } }, + ["EnergyShieldRegenPerPoisonUnique__1"] = { affix = "", "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second", statOrder = { 6545 }, level = 1, group = "EnergyShieldRegenPerPoison", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [948687156] = { "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second" }, } }, + ["BleedOnSelfDealChaosDamageUnique__1"] = { affix = "", "You take Chaos Damage instead of Physical Damage from Bleeding", statOrder = { 2475 }, level = 1, group = "BleedOnSelfDealChaosDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1623397857] = { "You take Chaos Damage instead of Physical Damage from Bleeding" }, } }, + ["MaximumLifePercentPerCorruptedItemUnique__1_"] = { affix = "", "6% increased Maximum Life for each Corrupted Item Equipped", statOrder = { 3131 }, level = 1, group = "MaximumLifePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4169430079] = { "6% increased Maximum Life for each Corrupted Item Equipped" }, } }, + ["MaximumEnergyShieldPercentPerCorruptedItemUnique__1_"] = { affix = "", "8% increased Maximum Energy Shield for each Corrupted Item Equipped", statOrder = { 3132 }, level = 1, group = "MaximumEnergyShieldPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3916980068] = { "8% increased Maximum Energy Shield for each Corrupted Item Equipped" }, } }, + ["AllResistancesPerCorruptedItemUnique__1"] = { affix = "", "-(6-4)% to all Resistances for each Corrupted Item Equipped", statOrder = { 3137 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3100523498] = { "-(6-4)% to all Resistances for each Corrupted Item Equipped" }, } }, + ["NoManaRecoveryDuringFlaskEffectUnique__1_"] = { affix = "", "Cannot gain Mana during effect", statOrder = { 1018 }, level = 1, group = "NoManaRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2198697797] = { "Cannot gain Mana during effect" }, } }, + ["FlaskGainVaalSoulPerSecondUnique__1_"] = { affix = "", "Gain 2 Vaal Souls Per Second during effect", statOrder = { 1024 }, level = 1, group = "FlaskGainVaalSoulPerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [2285141414] = { "Gain 2 Vaal Souls Per Second during effect" }, } }, + ["FlaskGainVaalSoulsOnUseUnique__1"] = { affix = "", "Gain (10-12) Vaal Souls on use", statOrder = { 913 }, level = 1, group = "FlaskGainVaalSoulsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [1733474087] = { "Gain (10-12) Vaal Souls on use" }, } }, + ["FlaskLoseChargesOnNewAreaUnique__1"] = { affix = "", "Loses all Charges when you enter a new area", statOrder = { 868 }, level = 1, group = "FlaskLoseChargesOnNewArea", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [776020689] = { "Loses all Charges when you enter a new area" }, } }, + ["FlaskVaalSkillDamageUnique__1"] = { affix = "", "(60-80)% increased Damage with Vaal Skills during effect", statOrder = { 1058 }, level = 1, group = "FlaskVaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [4067144129] = { "(60-80)% increased Damage with Vaal Skills during effect" }, } }, + ["FlaskVaalSkillDamageUnique__2"] = { affix = "", "Vaal Skills deal (30-40)% more Damage during Effect", statOrder = { 1059 }, level = 1, group = "FlaskVaalSkillMoreDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [4147528862] = { "Vaal Skills deal (30-40)% more Damage during Effect" }, } }, + ["FlaskVaalSkillCriticalStrikeChanceUnique__1"] = { affix = "", "(60-80)% increased Critical Strike Chance with Vaal Skills during effect", statOrder = { 1057 }, level = 1, group = "FlaskVaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [778036553] = { "(60-80)% increased Critical Strike Chance with Vaal Skills during effect" }, } }, + ["FlaskVaalSkillCostUnique__1"] = { affix = "", "Non-Aura Vaal Skills require 25% reduced Souls Per Use during Effect", statOrder = { 1061 }, level = 1, group = "FlaskVaalSkillCost", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [1274125114] = { "Non-Aura Vaal Skills require 25% reduced Souls Per Use during Effect" }, } }, + ["FlaskVaalSoulPreventionDurationUnique__1_"] = { affix = "", "Vaal Skills used during effect have 10% reduced Soul Gain Prevention Duration", statOrder = { 1062 }, level = 1, group = "FlaskVaalSoulPreventionDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [902947445] = { "Vaal Skills used during effect have 10% reduced Soul Gain Prevention Duration" }, } }, + ["FlaskVaalNoSoulPreventionUnique__1"] = { affix = "", "Vaal Skills used during effect do not apply Soul Gain Prevention", statOrder = { 1060 }, level = 1, group = "FlaskVaalNoSoulPrevention", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [2344590267] = { "Vaal Skills used during effect do not apply Soul Gain Prevention" }, } }, + ["CannotGainFlaskChargesDuringEffectUnique__1"] = { affix = "", "Gains no Charges during Effect of any Soul Ripper Flask", statOrder = { 1091 }, level = 1, group = "CannotGainFlaskChargesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2748763342] = { "Gains no Charges during Effect of any Soul Ripper Flask" }, } }, + ["FlaskVaalConsumeMaximumChargesUnique__1"] = { affix = "", "Consumes Maximum Charges to use", statOrder = { 904 }, level = 1, group = "FlaskVaalConsumeMaximumCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3426614534] = { "Consumes Maximum Charges to use" }, } }, + ["FlaskVaalGainSoulsAsChargesUnique__1_"] = { affix = "", "Gain Vaal Souls equal to Charges Consumed when used", statOrder = { 908 }, level = 1, group = "FlaskVaalGainSoulsAsCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, tradeHashes = { [1655460656] = { "Gain Vaal Souls equal to Charges Consumed when used" }, } }, + ["UniqueSelfCurseVulnerabilityLevel10"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3156 }, level = 28, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [694123963] = { "You are Cursed with Vulnerability" }, } }, + ["UniqueSelfCurseVulnerabilityLevel20"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3156 }, level = 66, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [694123963] = { "You are Cursed with Vulnerability" }, } }, + ["EnemiesExtraDamageRollsWhileAffectedByVulnerabilityUnique__1_"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability", statOrder = { 3151 }, level = 1, group = "EnemiesExtraDamageRollsWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2758554648] = { "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability" }, } }, + ["CountAsLowLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Low Life while you are Cursed with Vulnerability", statOrder = { 3154 }, level = 1, group = "CountAsLowLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2304300603] = { "You count as on Low Life while you are Cursed with Vulnerability" }, } }, + ["TrapAreaOfEffectUnique__1"] = { affix = "", "Skills used by Traps have (10-20)% increased Area of Effect", statOrder = { 3515 }, level = 1, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (10-20)% increased Area of Effect" }, } }, + ["CastSpeedAppliesToTrapSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed", statOrder = { 4637 }, level = 1, group = "CastSpeedAppliesToTrapSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3520223758] = { "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed" }, } }, + ["RandomChargeOnTrapTriggerUnique__1"] = { affix = "", "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy", statOrder = { 9741, 9741.1 }, level = 1, group = "RandomChargeOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [710805027] = { "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy" }, } }, + ["TrapSkillsHaveBloodMagicUnique__1"] = { affix = "", "Skills which throw Traps Cost Life instead of Mana", statOrder = { 11011 }, level = 1, group = "TrapSkillsHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2420786978] = { "Skills which throw Traps Cost Life instead of Mana" }, } }, + ["CannotGainEnergyShieldUnique__1"] = { affix = "", "Cannot gain Energy Shield", statOrder = { 3152 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [206243615] = { "Cannot gain Energy Shield" }, } }, + ["LifeRegenerationWith500EnergyShieldUnique__1"] = { affix = "", "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield", statOrder = { 4409 }, level = 1, group = "LifeRegenerationWith500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1103902353] = { "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield" }, } }, + ["LifeRegenerationWith1000EnergyShieldUnique__1"] = { affix = "", "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield", statOrder = { 4410 }, level = 1, group = "LifeRegenerationWith1000EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1704843611] = { "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield" }, } }, + ["LifeRegenerationWith1500EnergyShieldUnique__1"] = { affix = "", "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield", statOrder = { 4411 }, level = 1, group = "LifeRegenerationWith1500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3227159962] = { "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield" }, } }, + ["IncreasedLifePerIntelligenceUnique__1"] = { affix = "", "+1 to Maximum Life per 2 Intelligence", statOrder = { 2046 }, level = 1, group = "IncreasedLifePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4284915962] = { "+1 to Maximum Life per 2 Intelligence" }, } }, + ["NoMaximumLifePerStrengthUnique__1"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2041 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2290031712] = { "Strength provides no bonus to Maximum Life" }, } }, + ["NoMaximumLifePerStrengthUnique__2"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2041 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2290031712] = { "Strength provides no bonus to Maximum Life" }, } }, + ["NoMaximumManaPerIntelligenceUnique__1"] = { affix = "", "Intelligence provides no inherent bonus to Maximum Mana", statOrder = { 2042 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2546599258] = { "Intelligence provides no inherent bonus to Maximum Mana" }, } }, + ["LifeRegenerationPer500EnergyShieldUnique__1"] = { affix = "", "Regenerate 1% of Life per second per 500 Player Maximum Energy Shield", statOrder = { 7519 }, level = 1, group = "LifeRegenerationPer500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1960833438] = { "Regenerate 1% of Life per second per 500 Player Maximum Energy Shield" }, } }, + ["SkeletonsTakeFireDamagrPerSecondUnique__1"] = { affix = "", "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 10463 }, level = 1, group = "SkeletonsTakeFireDamagrPerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2912438397] = { "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage" }, } }, + ["SkeletonsCoverEnemiesInAshUnique__1"] = { affix = "", "Summoned Skeletons Cover Enemies in Ash on Hit", statOrder = { 10462 }, level = 1, group = "SkeletonsCoverEnemiesInAsh", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3074608753] = { "Summoned Skeletons Cover Enemies in Ash on Hit" }, } }, + ["SkeletonsHaveAvatarOfFireUnique__1_"] = { affix = "", "Summoned Skeletons have Avatar of Fire", statOrder = { 10998 }, level = 1, group = "SkeletonsHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [1958210928] = { "Summoned Skeletons have Avatar of Fire" }, } }, + ["AreaOfEffectPerEnemyKilledRecentlyUnique__1"] = { affix = "", "1% increased Area of Effect per Enemy killed recently, up to 50%", statOrder = { 4779 }, level = 1, group = "AreaOfEffectPerEnemyKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4070157876] = { "1% increased Area of Effect per Enemy killed recently, up to 50%" }, } }, + ["ZealotsOathIfHaventBeenHitRecentlyUnique__1"] = { affix = "", "You have Zealot's Oath if you haven't been hit recently", statOrder = { 11012 }, level = 1, group = "ZealotsOathIfHaventBeenHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2391255504] = { "You have Zealot's Oath if you haven't been hit recently" }, } }, + ["LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1"] = { affix = "", "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently", statOrder = { 7457 }, level = 1, group = "LifeGainOnHitIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3285021988] = { "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently" }, } }, + ["MovementVelocityIfVaalSkillUsedRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you have used a Vaal Skill Recently", statOrder = { 9556 }, level = 40, group = "MovementVelocityIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1285172810] = { "10% increased Movement Speed if you have used a Vaal Skill Recently" }, } }, + ["GainPowerChargeOnUsingVaalSkillUnique__1"] = { affix = "", "Gain a Power Charge when you use a Vaal Skill", statOrder = { 6902 }, level = 1, group = "GainPowerChargeOnUsingVaalSkill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2383388829] = { "Gain a Power Charge when you use a Vaal Skill" }, } }, + ["ChaosDamageCanIgniteChillAndShockUnique__1"] = { affix = "", "Chaos Damage can Ignite, Chill and Shock", statOrder = { 2921 }, level = 1, group = "ChaosDamageCanIgniteChillAndShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3470457445] = { "Chaos Damage can Ignite, Chill and Shock" }, } }, + ["GainSoulEaterOnVaalSkillUseUnique__1"] = { affix = "", "Gain Soul Eater for 20 seconds when you use a Vaal Skill", statOrder = { 6915 }, level = 88, group = "GainSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [161058250] = { "Gain Soul Eater for 20 seconds when you use a Vaal Skill" }, } }, + ["CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_"] = { affix = "", "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius", statOrder = { 3193 }, level = 1, group = "CriticalStrikeMultiplierPerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1154827254] = { "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius" }, } }, + ["AdditionalPhysicalReductionPerAllocatedStrengthJewelUnique__1"] = { affix = "", "1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius", statOrder = { 3185 }, level = 1, group = "AdditionalPhysicalReductionPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2519848087] = { "1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius" }, } }, + ["AdditionalStrengthPerAllocatedStrengthJewelUnique__1_"] = { affix = "", "-1 Strength per 1 Strength on Allocated Passives in Radius", statOrder = { 3104 }, level = 1, group = "AdditionalStrengthPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [552705983] = { "-1 Strength per 1 Strength on Allocated Passives in Radius" }, [3802517517] = { "" }, } }, + ["FlatManaPerUnallocatedDexterityJewelUnique__1"] = { affix = "", "+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 3194 }, level = 1, group = "FlatManaRegenPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1276712564] = { "+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius" }, } }, + ["MovementSpeedPerAllocatedDexterityJewelUnique__1"] = { affix = "", "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3187 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1795365307] = { "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius" }, } }, + ["AdditionalDexterityPerAllocatedDexterityJewelUnique__1"] = { affix = "", "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius", statOrder = { 3102 }, level = 1, group = "AdditionalDexterityPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [172076472] = { "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius" }, } }, + ["AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1"] = { affix = "", "+125 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 3192 }, level = 1, group = "AccuracyRatingPerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3996149330] = { "+125 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius" }, } }, + ["EnergyShieldRegenPerAllocatedIntelligenceJewelUnique__1_"] = { affix = "", "Regenerate 0.4% of Energy Shield per Second for", "every 10 Intelligence on Allocated Passives in Radius", statOrder = { 3186, 3186.1 }, level = 1, group = "EnergyShieldRegenPerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [615595418] = { "Regenerate 0.4% of Energy Shield per Second for", "every 10 Intelligence on Allocated Passives in Radius" }, } }, + ["AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__"] = { affix = "", "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius", statOrder = { 3103 }, level = 1, group = "AdditionalIntelligencePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1070347065] = { "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius" }, } }, + ["LifeRecoveryRatePerAllocatedStrengthUnique__1_"] = { affix = "", "2% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", statOrder = { 8199 }, level = 1, group = "LifeRecoveryRatePerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [235105674] = { "2% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius" }, } }, + ["LifeRecoveryRatePerAllocatedStrengthUnique__2"] = { affix = "", "3% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", statOrder = { 8199 }, level = 1, group = "LifeRecoveryRatePerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [235105674] = { "3% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius" }, } }, + ["LifeRecoveryRatePerUnallocatedStrengthUnique__1_"] = { affix = "", "2% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius", statOrder = { 8200 }, level = 1, group = "LifeRecoveryRatePerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4144221848] = { "2% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius" }, } }, + ["CriticalStrikeMultiplierPerUnallocatedStrengthUnique__1"] = { affix = "", "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius", statOrder = { 3193 }, level = 1, group = "CriticalStrikeMultiplierPerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1154827254] = { "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius" }, } }, + ["MovementSpeedPerAllocatedDexterityUnique__1"] = { affix = "", "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3187 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1795365307] = { "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius" }, } }, + ["MovementSpeedPerAllocatedDexterityUnique__2"] = { affix = "", "3% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3187 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1795365307] = { "3% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius" }, } }, + ["MovementSpeedPerUnallocatedDexterityUnique__1_"] = { affix = "", "2% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 8212 }, level = 1, group = "MovementSpeedPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [4169318921] = { "2% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius" }, } }, + ["AccuracyRatingPerUnallocatedDexterityUnique__1_"] = { affix = "", "+125 to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 8149 }, level = 1, group = "AccuracyRatingPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [100820057] = { "+125 to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius" }, } }, + ["ManaRecoveryRatePerAllocatedIntelligenceUnique__1"] = { affix = "", "2% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius", statOrder = { 8208 }, level = 1, group = "ManaRecoveryRatePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [514215387] = { "2% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius" }, } }, + ["ManaRecoveryRatePerAllocatedIntelligenceUnique__2"] = { affix = "", "3% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius", statOrder = { 8208 }, level = 1, group = "ManaRecoveryRatePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [514215387] = { "3% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius" }, } }, + ["ManaRecoveryRatePerUnallocatedIntelligenceUnique__1"] = { affix = "", "2% reduced Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 8209 }, level = 1, group = "ManaRecoveryRatePerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1439347620] = { "2% reduced Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius" }, } }, + ["DamageOverTimeMultiplierPerUnallocatedIntelligenceUnique__1___"] = { affix = "", "+3% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 8168 }, level = 1, group = "DamageOverTimeMultiplierPerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1994121713] = { "+3% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius" }, } }, + ["DamageConversionToRandomElementUnique__1"] = { affix = "", "75% of Physical Damage converted to a random Element", statOrder = { 1984 }, level = 1, group = "DamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1776612984] = { "75% of Physical Damage converted to a random Element" }, } }, + ["LocalDamageConversionToRandomElementUnique__1"] = { affix = "", "50% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4403 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "50% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, + ["LocalDamageConversionToRandomElementUnique__2_"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4403 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "100% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, + ["LocalDamageConversionToRandomElementImplicitE1"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4403 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1431238626] = { "100% of Physical Damage from Hits with this Weapon is Converted to a random Element" }, } }, + ["CanBeGhostflameCraftedAsThoughRare"] = { affix = "", "Can be Allflame Crafted as if Rare", "Cannot gain Intangibility", statOrder = { 5458, 5458.1 }, level = 1, group = "CanBeGhostflameCraftedAsThoughRare", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3512432760] = { "Can be Allflame Crafted as if Rare", "Cannot gain Intangibility" }, } }, + ["LocalAlwaysInflictElementalAilmentsUnique__1"] = { affix = "", "Hits with this Weapon always Ignite, Freeze, and Shock", statOrder = { 4405 }, level = 1, group = "LocalAlwaysInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, tradeHashes = { [2451774989] = { "Hits with this Weapon always Ignite, Freeze, and Shock" }, } }, + ["LocalElementalDamageAgainstIgnitedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies", statOrder = { 4406 }, level = 1, group = "LocalElementalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3095345438] = { "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies" }, } }, + ["LocalElementalDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies", statOrder = { 4407 }, level = 1, group = "LocalElementalDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [196313911] = { "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies" }, } }, + ["LocalElementalDamageAgainstShockedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies", statOrder = { 4408 }, level = 1, group = "LocalElementalDamageAgainstShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1470894892] = { "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies" }, } }, + ["OnslaughtWhileNotOnLowManaUnique__1_"] = { affix = "", "You have Onslaught while not on Low Mana", statOrder = { 6882 }, level = 1, group = "OnslaughtWhileNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1959256242] = { "You have Onslaught while not on Low Mana" }, } }, + ["LoseManaPerSecondUnique__1"] = { affix = "", "Lose (30-40) Mana per Second", statOrder = { 8285 }, level = 1, group = "LoseManaPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2589042711] = { "Lose (30-40) Mana per Second" }, } }, + ["LoseManaPercentPerSecondUnique__1"] = { affix = "", "Lose 7% of Mana per Second", statOrder = { 8286 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 7% of Mana per Second" }, } }, + ["DodgeAndSpellDodgePerMaximumManaUnique__1"] = { affix = "", "20% increased Evasion Rating per 500 Maximum Mana", statOrder = { 6567 }, level = 1, group = "DodgeAndSpellDodgePerMaximumMana", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3147253569] = { "20% increased Evasion Rating per 500 Maximum Mana" }, } }, + ["DisplayHasAdditionalModUnique__1"] = { affix = "", "Has an additional Implicit Mod", statOrder = { 651 }, level = 1, group = "DisplayHasAdditionalMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2489070122] = { "Has an additional Implicit Mod" }, } }, + ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, + ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 8177, 8180 }, 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" }, [3802517517] = { "" }, } }, + ["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 = { 8176, 8179 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3802517517] = { "" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, } }, + ["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 = { 8178, 8181 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3802517517] = { "" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, } }, + ["TriggerSummonPhantasmOnCorpseConsumeUnique__1"] = { affix = "", "Trigger Level 25 Summon Phantasm Skill when you Consume a corpse", statOrder = { 839 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3252082366] = { "Trigger Level 25 Summon Phantasm Skill when you Consume a corpse" }, } }, + ["CastSpeedPerCorpseConsumedRecentlyUnique__1"] = { affix = "", "3% increased Cast Speed for each corpse Consumed Recently", statOrder = { 5545 }, level = 1, group = "CastSpeedPerCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2142553855] = { "3% increased Cast Speed for each corpse Consumed Recently" }, } }, + ["LifeRegenerationIfCorpseConsumedRecentlyUnique__1"] = { affix = "", "If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second", statOrder = { 10798 }, level = 1, group = "LifeRegenerationIfCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4089969970] = { "If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second" }, } }, + ["CannotHaveNonGolemMinionsUnique__1_"] = { affix = "", "You cannot have non-Golem Minions", statOrder = { 3727 }, level = 1, group = "CannotHaveNonGolemMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1826605755] = { "You cannot have non-Golem Minions" }, } }, + ["UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse"] = { affix = "", "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown", statOrder = { 159 }, level = 1, group = "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1112135314] = { "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown" }, } }, + ["UniqueCurseWithSocketedCurseOnHit_"] = { affix = "", "Curse Enemies with Socketed Hex Curse Gem on Hit", statOrder = { 7999 }, level = 30, group = "UniqueCurseWithSocketedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [1352418057] = { "Curse Enemies with Socketed Hex Curse Gem on Hit" }, } }, + ["LessGolemDamageUnique__1"] = { affix = "", "Golems Deal (25-35)% less Damage", statOrder = { 3736 }, level = 1, group = "LessGolemDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2861397339] = { "Golems Deal (25-35)% less Damage" }, } }, + ["LessGolemLifeUnique__1"] = { affix = "", "Golems have (25-35)% less Life", statOrder = { 4130 }, level = 1, group = "LessGolemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3730242558] = { "Golems have (25-35)% less Life" }, } }, + ["GolemSizeUnique__1"] = { affix = "", "25% reduced Golem Size", statOrder = { 3728 }, level = 1, group = "GolemSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2576412389] = { "25% reduced Golem Size" }, } }, + ["GolemMovementSpeedUnique__1"] = { affix = "", "Golems have (80-100)% increased Movement Speed", statOrder = { 6994 }, level = 1, group = "GolemMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [186383409] = { "Golems have (80-100)% increased Movement Speed" }, } }, + ["SacrificeLifeToGainESUnique__1"] = { affix = "", "Sacrifice (5-25)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 10101 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-25)% of Life to gain that much Energy Shield when you Cast a Spell" }, } }, + ["PhysicalDamageReductionPerKeystoneUnique__1"] = { affix = "", "4% additional Physical Damage Reduction per Keystone", statOrder = { 4618 }, level = 1, group = "PhysicalDamageReductionPerKeystone", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3736262267] = { "4% additional Physical Damage Reduction per Keystone" }, } }, + ["CannotGainEnduranceChargesUnique__1__"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 5051 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3037185464] = { "Cannot gain Endurance Charges" }, } }, + ["GrantsStatsFromNonNotablesInRadiusUnique__1"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 8067 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, [3802517517] = { "" }, } }, + ["AllocatedNonNotablesGrantNothingUnique__1_"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 8065 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, + ["UniqueNearbyAlliesAreLuckyDisplay"] = { affix = "", "Nearby Allies' Damage with Hits is Lucky", statOrder = { 8013 }, level = 1, group = "UniqueNearbyAlliesAreLuckyDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [655871604] = { "Nearby Allies' Damage with Hits is Lucky" }, } }, + ["PlaceAdditionalMineWith600IntelligenceUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence", statOrder = { 9659 }, level = 1, group = "PlaceAdditionalMineWith600Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [5955083] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence" }, } }, + ["PlaceAdditionalMineWith600DexterityUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity", statOrder = { 9658 }, level = 1, group = "PlaceAdditionalMineWith600Dexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1917661185] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity" }, } }, + ["BlockChancePer50StrengthUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per 50 Strength", statOrder = { 1176 }, level = 1, group = "BlockChancePer50Strength", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1061631617] = { "+1% Chance to Block Attack Damage per 50 Strength" }, } }, + ["ExtraRollsSpellBlockUnique__1"] = { affix = "", "Chance to Block Spell Damage is Unlucky", statOrder = { 1182 }, level = 1, group = "ExtraRollsSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3551025193] = { "Chance to Block Spell Damage is Unlucky" }, } }, + ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 2148 }, 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 = { 2150 }, 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 = { 2165 }, 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 = { 2655 }, 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 = { 2657 }, 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 = { 2659 }, 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 = { 9559 }, 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 = { 1825 }, 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 = { 9562 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, + ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Frenzy Charge", statOrder = { 2654 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of Life per second per Frenzy Charge" }, } }, + ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Power Charge", statOrder = { 7522 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of Life per second per Power Charge" }, } }, + ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3235 }, 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 = { 3322 }, 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 = { 6152 }, 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 = { 9369 }, 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 = { 4309 }, 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 = { 9374 }, 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 = { 4580 }, 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 = { 4581 }, 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 = { 4582 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, + ["ChargeBonusDodgeChancePerEnduranceCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Endurance Charge", statOrder = { 10318 }, level = 1, group = "DodgeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [161741084] = { "+1% chance to Suppress Spell Damage per Endurance Charge" }, } }, + ["ChargeBonusDodgeChancePerFrenzyCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2572 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [482967934] = { "+1% chance to Suppress Spell Damage per Frenzy Charge" }, } }, + ["ChargeBonusDodgeChancePerPowerCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Power Charge", statOrder = { 10321 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1309947938] = { "+1% chance to Suppress Spell Damage per Power Charge" }, } }, + ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 6648 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1109745356] = { "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 = { 5889 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [3916799917] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, + ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge", statOrder = { 7547 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [3115319277] = { "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge" }, } }, + ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9798 }, 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 = { 1578 }, 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 = { 6531 }, 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 = { 4275 }, 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 = { 6865 }, 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 = { 6868, 6868.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 = { 6838 }, 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 = { 1856 }, 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 Strike", statOrder = { 1853 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Strike" }, } }, + ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4867 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, + ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 2073 }, 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 = { 4868 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, + ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Strike Chance per Endurance Charge", statOrder = { 6017 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Strike Chance per Endurance Charge" }, } }, + ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Strike Chance per Frenzy Charge", statOrder = { 6018 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Strike Chance per Frenzy Charge" }, } }, + ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3318 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "+3% to Critical Strike Multiplier per Power Charge" }, } }, + ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5820 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9790 }, 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 = { 9792 }, 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 = { 1827 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 1, group = "IncreasedMaximumPowerCharges", 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 = { 7398 }, 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 = { 6878 }, 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 = { 6818 }, 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 = { 4087 }, 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 Strike while at maximum Frenzy Charges", statOrder = { 6843 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges" }, } }, + ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9655 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, + ["ChargeBonusVaalPactEnduranceCharges"] = { affix = "", "You have Vaal Pact while at maximum Endurance Charges", statOrder = { 11004 }, level = 1, group = "VaalPactMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1314418188] = { "You have Vaal Pact while at maximum Endurance Charges" }, } }, + ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 11002 }, 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 = { 11003 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, + ["GlobalEnergyShieldPercentUnique__1"] = { affix = "", "(15-20)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, + ["GlobalEvasionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Evasion Rating", statOrder = { 1571 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, + ["GlobalEvasionRatingAndArmourPercentUnique__1_"] = { affix = "", "(30-60)% increased Evasion Rating and Armour", statOrder = { 1565 }, level = 1, group = "GlobalEvasionAndArmourPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3366029652] = { "(30-60)% increased Evasion Rating and Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Armour", statOrder = { 1563 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, + ["GlobalPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "(20-30)% increased Armour", statOrder = { 1563 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(20-30)% increased Armour" }, } }, + ["NearbyEnemiesReducedStunRecoveryUnique__1"] = { affix = "", "Nearby Enemies have 10% reduced Stun and Block Recovery", statOrder = { 3440 }, level = 1, group = "NearbyEnemiesReducedStunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "10% reduced Stun and Block Recovery" }, [3169825297] = { "Nearby Enemies have 10% reduced Stun and Block Recovery" }, } }, + ["NearbyEnemiesGrantIncreasedFlaskChargesUnique__1"] = { affix = "", "Nearby Enemies grant 25% increased Flask Charges", statOrder = { 3438 }, level = 1, group = "NearbyEnemiesGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2604562862] = { "" }, [3547189490] = { "Nearby Enemies grant 25% increased Flask Charges" }, } }, + ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__1"] = { affix = "", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3436 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [992435560] = { "Hits against Nearby Enemies have 50% increased Critical Strike Chance" }, [1553352778] = { "" }, } }, + ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__2"] = { affix = "", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3437 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4270096386] = { "Hits have 50% increased Critical Strike Chance against you" }, [3896241826] = { "Hits against Nearby Enemies have 50% increased Critical Strike Chance" }, } }, + ["NearbyEnemiesHaveReducedAllResistancesUnique__1"] = { affix = "", "Nearby Enemies have -10% to all Resistances", statOrder = { 3033 }, level = 1, group = "NearbyEnemiesHaveReducedAllResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [668145148] = { "Nearby Enemies have -10% to all Resistances" }, [2016723660] = { "-10% to All Resistances" }, } }, + ["AuraAddedFireDamagePerRedSocketUnique__1"] = { affix = "", "You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket", statOrder = { 3040 }, level = 1, group = "AuraAddedFireDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1666896662] = { "You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket" }, } }, + ["AuraAddedColdDamagePerGreenSocketUnique__1"] = { affix = "", "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket", statOrder = { 3041 }, level = 1, group = "AuraAddedColdDamagePerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2665149933] = { "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket" }, } }, + ["AuraAddedLightningDamagePerBlueSocketUnique__1"] = { affix = "", "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket", statOrder = { 3042 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3726585224] = { "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket" }, } }, + ["AuraAddedChaosDamagePerWhiteSocketUnique__1"] = { affix = "", "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket", statOrder = { 3043 }, level = 1, group = "AuraAddedChaosDamagePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3232695173] = { "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket" }, } }, + ["ArmourPerEvasionRatingOnShieldUnique__1"] = { affix = "", "+5 to Armour per 5 Evasion Rating on Equipped Shield", statOrder = { 4416 }, level = 1, group = "ArmourPerEvasionRatingOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3088183606] = { "+5 to Armour per 5 Evasion Rating on Equipped Shield" }, } }, + ["EvasionRatingPerEnergyShieldOnShieldUnique__1"] = { affix = "", "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield", statOrder = { 4417 }, level = 1, group = "EvasionRatingPerEnergyShieldOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1115914670] = { "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield" }, } }, + ["EnergyShieldPerArmourOnShieldUnique__1"] = { affix = "", "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield", statOrder = { 4415 }, level = 1, group = "EnergyShieldPerArmourOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3636098185] = { "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield" }, } }, + ["LifeLeechFromSpellsWith30BlockOnShieldUnique__1_"] = { affix = "", "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block", statOrder = { 4414 }, level = 1, group = "LifeLeechFromSpellsWith30BlockOnShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3893109186] = { "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block" }, } }, + ["AngerNoReservationUnique__1"] = { affix = "", "Anger has no Reservation", statOrder = { 4732 }, level = 69, group = "AngerNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2189891129] = { "Anger has no Reservation" }, } }, + ["ClarityNoReservationUnique__1"] = { affix = "", "Clarity has no Reservation", statOrder = { 5868 }, level = 69, group = "ClarityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2250543633] = { "Clarity has no Reservation" }, } }, + ["DeterminationNoReservationUnique__1"] = { affix = "", "Determination has no Reservation", statOrder = { 6261 }, level = 69, group = "DeterminationNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1358697130] = { "Determination has no Reservation" }, } }, + ["DisciplineNoReservationUnique__1"] = { affix = "", "Discipline has no Reservation", statOrder = { 6277 }, level = 69, group = "DisciplineNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3708588508] = { "Discipline has no Reservation" }, } }, + ["GraceNoReservationUnique__1"] = { affix = "", "Grace has no Reservation", statOrder = { 6999 }, level = 69, group = "GraceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2930404958] = { "Grace has no Reservation" }, } }, + ["HasteNoReservationUnique__1"] = { affix = "", "Haste has no Reservation", statOrder = { 7035 }, level = 69, group = "HasteNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [751322171] = { "Haste has no Reservation" }, } }, + ["HatredNoReservationUnique__1_"] = { affix = "", "Hatred has no Reservation", statOrder = { 7039 }, level = 69, group = "HatredNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1391583476] = { "Hatred has no Reservation" }, } }, + ["PurityOfElementsNoReservationUnique__1_"] = { affix = "", "Purity of Elements has no Reservation", statOrder = { 9910 }, level = 69, group = "PurityOfElementsNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1826480903] = { "Purity of Elements has no Reservation" }, } }, + ["PurityOfFireNoReservationUnique__1"] = { affix = "", "Purity of Fire has no Reservation", statOrder = { 9913 }, level = 69, group = "PurityOfFireNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2278589942] = { "Purity of Fire has no Reservation" }, } }, + ["PurityOfIceNoReservationUnique__1_"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9916 }, level = 69, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } }, + ["PurityOfLightningNoReservationUnique__1"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9919 }, level = 69, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } }, + ["VitalityNoReservationUnique__1"] = { affix = "", "Vitality has no Reservation", statOrder = { 10694 }, level = 69, group = "VitalityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [438083873] = { "Vitality has no Reservation" }, } }, + ["WrathNoReservationUnique__1"] = { affix = "", "Wrath has no Reservation", statOrder = { 10788 }, level = 69, group = "WrathNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1865987277] = { "Wrath has no Reservation" }, } }, + ["EnvyNoReservationUnique__1"] = { affix = "", "Envy has no Reservation", statOrder = { 6554 }, level = 69, group = "EnvyNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2503479316] = { "Envy has no Reservation" }, } }, + ["MalevolenceNoReservationUnique__1"] = { affix = "", "Malevolence has no Reservation", statOrder = { 6250 }, level = 69, group = "MalevolenceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [585622486] = { "Malevolence has no Reservation" }, } }, + ["ZealotryNoReservationUnique__1"] = { affix = "", "Zealotry has no Reservation", statOrder = { 10888 }, level = 69, group = "ZealotryNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1741242318] = { "Zealotry has no Reservation" }, } }, + ["PrideNoReservationUnique__1"] = { affix = "", "Pride has no Reservation", statOrder = { 9861 }, level = 69, group = "PrideNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3554614456] = { "Pride has no Reservation" }, } }, + ["MinionAddedPhysicalDamageUnique__1"] = { affix = "", "Minions deal (90-102) to (132-156) additional Physical Damage", statOrder = { 3809 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (90-102) to (132-156) additional Physical Damage" }, } }, + ["DoubleDamageChanceImplicitMace1"] = { affix = "", "5% chance to deal Double Damage", statOrder = { 5737 }, level = 1, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "5% chance to deal Double Damage" }, } }, + ["AdditionalHolyRelicUnique__1"] = { affix = "", "+1 to maximum number of Summoned Holy Relics", statOrder = { 5101 }, level = 1, group = "AdditionalHolyRelic", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2056575682] = { "+1 to maximum number of Summoned Holy Relics" }, } }, + ["HolyRelicCooldownRecoveryUnique__1"] = { affix = "", "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate", statOrder = { 7279 }, level = 1, group = "HolyRelicCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1583498502] = { "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate" }, } }, + ["ColdDamageTakenUnique__1"] = { affix = "", "5% reduced Cold Damage taken", statOrder = { 3425 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "5% reduced Cold Damage taken" }, } }, + ["ColdDamageTakenUnique__2"] = { affix = "", "10% increased Cold Damage taken", statOrder = { 3425 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "10% increased Cold Damage taken" }, } }, + ["OnslaughtEffectUnique__1"] = { affix = "", "100% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 1, group = "OnslaughtEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3151397056] = { "100% increased Effect of Onslaught on you" }, } }, + ["PhysicalDamageWhileResoluteTechniqueUnique__1__"] = { affix = "", "100% increased Physical Damage while you have Resolute Technique", statOrder = { 11013 }, level = 1, group = "PhysicalDamageWhileResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1258679667] = { "100% increased Physical Damage while you have Resolute Technique" }, } }, + ["IncreasedWeaponElementalDamagePercentPerPowerChargeUnique__1"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills per Power Charge", statOrder = { 6410 }, level = 1, group = "IncreasedWeaponElementalDamagePercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4116409626] = { "(20-25)% increased Elemental Damage with Attack Skills per Power Charge" }, } }, + ["ArrowsAlwaysPierceAfterForkingUnique__1__"] = { affix = "", "Arrows Pierce all Targets after Forking", statOrder = { 4828 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all Targets after Forking" }, } }, + ["ArrowsThatPierceHaveCritMultiUnique__1"] = { affix = "", "Arrows that Pierce have +50% to Critical Strike Multiplier", statOrder = { 6034 }, level = 1, group = "ArrowsThatPierceHaveCritMulti", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1064778484] = { "Arrows that Pierce have +50% to Critical Strike Multiplier" }, } }, + ["SupportedByGreaterVolleyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 310 }, level = 1, group = "SupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2223565123] = { "Socketed Gems are Supported by Level 20 Greater Volley" }, } }, + ["SupportedByIgniteProliferationUnique1"] = { affix = "", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 318 }, level = 1, group = "SupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3593797653] = { "Socketed Gems are Supported by Level 20 Ignite Proliferation" }, } }, + ["ChanceToBleedWithoutAvatarOfFireUnique__1"] = { affix = "", "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire", statOrder = { 11017 }, level = 1, group = "ChanceToBleedWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4070293064] = { "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire" }, } }, + ["FireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 6655 }, level = 1, group = "FireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3703926412] = { "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies" }, } }, + ["PhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies", statOrder = { 9785 }, level = 1, group = "PhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3375415245] = { "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies" }, } }, + ["PhysicalDamageTakenAsRandomElementUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 9772 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [1904530666] = { "20% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, + ["StartEnergyShieldRechargeOnSkillUnique__1"] = { affix = "", "10% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6537 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "10% chance for Energy Shield Recharge to start when you use a Skill" }, } }, + ["SpellCriticalStrikeChancePerSpectreUnique__1_"] = { affix = "", "(50-100)% increased Spell Critical Strike Chance per Raised Spectre", statOrder = { 10285 }, level = 1, group = "SpellCriticalStrikeChancePerSpectre", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [495095219] = { "(50-100)% increased Spell Critical Strike Chance per Raised Spectre" }, } }, + ["GainArcaneSurgeOnCritUnique__1"] = { affix = "", "Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6816 }, level = 1, group = "GainArcaneSurgeOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [446027070] = { "Gain Arcane Surge when you deal a Critical Strike" }, } }, + ["SpectresGainArcaneSurgeWhenYouDoUnique__1_"] = { affix = "", "Your Raised Spectres also gain Arcane Surge when you do", statOrder = { 10266 }, level = 1, group = "SpectresGainArcaneSurgeWhenYouDo", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3462113315] = { "Your Raised Spectres also gain Arcane Surge when you do" }, } }, + ["TriggerFeastOfFleshSkillUnique__1_"] = { affix = "", "Trigger Level 15 Feast of Flesh every 5 seconds", statOrder = { 822 }, level = 1, group = "TriggerFeastOfFleshSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1560737213] = { "" }, [1024189516] = { "Trigger Level 15 Feast of Flesh every 5 seconds" }, } }, + ["TriggerRandomOfferingSkillUnique__1"] = { affix = "", "Trigger Level 20 Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence", "Offering Skills Triggered this way also affect you", statOrder = { 823, 823.1 }, level = 1, group = "TriggerRandomOfferingSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1663239249] = { "Trigger Level 20 Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence", "Offering Skills Triggered this way also affect you" }, [1560737213] = { "" }, } }, + ["LeftRingSpellProjectilesForkUnique__1_"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 8093 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, + ["LeftRingSpellProjectilesCannotChainUnique__1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 8092 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, + ["RightRingSpellProjectilesChainUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 8121 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, + ["RightRingSpellProjectilesCannotForkUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 8122 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, + ["FireAndChaosDamageResistanceUnique__1__"] = { affix = "", "+(20-25)% to Fire and Chaos Resistances", statOrder = { 6637 }, level = 1, group = "FireAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(20-25)% to Fire and Chaos Resistances" }, } }, + ["TriggerArcaneWakeSkillUnique__1"] = { affix = "", "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana", statOrder = { 785 }, level = 1, group = "TriggerArcaneWakeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3344568504] = { "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana" }, } }, + ["DoubleDamageWithWeaponUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage", statOrder = { 8036 }, level = 1, group = "DoubleDamageWithWeapon", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1506185293] = { "Attacks with this Weapon deal Double Damage" }, } }, + ["FocusCooldownRecoveryUnique__1_"] = { affix = "", "Focus has (30-50)% increased Cooldown Recovery Rate", statOrder = { 6743 }, level = 1, group = "FocusCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3610263531] = { "Focus has (30-50)% increased Cooldown Recovery Rate" }, } }, + ["LifeRegenPerUncorruptedItemUnique__1"] = { affix = "", "Regenerate 15 Life per second for each Uncorrupted Item Equipped", statOrder = { 3135 }, level = 1, group = "LifeRegenPerUncorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [405941409] = { "Regenerate 15 Life per second for each Uncorrupted Item Equipped" }, } }, + ["TotalManaCostPerCorruptedItemUnique__1"] = { affix = "", "-2 to Total Mana Cost of Skills for each Corrupted Item Equipped", statOrder = { 4371 }, level = 1, group = "TotalManaCostPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3750572810] = { "-2 to Total Mana Cost of Skills for each Corrupted Item Equipped" }, } }, + ["ChillNearbyEnemiesOnFocusUnique__1_"] = { affix = "", "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed", statOrder = { 5854 }, level = 67, group = "ChillNearbyEnemiesOnFocus", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2384145996] = { "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed" }, [1533152070] = { "" }, } }, + ["DamageWithHitsAndAilmentsAgainstChilledEnemyUnique__1"] = { affix = "", "(50-70)% increased Damage with Hits and Ailments against Chilled Enemies", statOrder = { 7250 }, level = 1, group = "DamageWithHitsAndAilmentsAgainstChilledEnemy", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3747189159] = { "(50-70)% increased Damage with Hits and Ailments against Chilled Enemies" }, } }, + ["ElementalDamageWhileAffectedBySextantUnique__1"] = { affix = "", "(30-40)% increased Elemental Damage while in an area affected by a Sextant", statOrder = { 6399 }, level = 1, group = "ElementalDamageWhileAffectedBySextant", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [4022841749] = { "(30-40)% increased Elemental Damage while in an area affected by a Sextant" }, } }, + ["BleedOnCritUnique__1_"] = { affix = "", "50% chance to inflict Bleeding on Critical Strike with Attacks", statOrder = { 2511 }, level = 1, group = "BleedOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [2054257693] = { "50% chance to inflict Bleeding on Critical Strike with Attacks" }, } }, + ["MaimOnCritUnique__1"] = { affix = "", "50% chance to Maim Enemies on Critical Strike with Attacks", statOrder = { 8267 }, level = 1, group = "MaimOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [996483959] = { "50% chance to Maim Enemies on Critical Strike with Attacks" }, } }, + ["EnemiesYouBleedGrantIncreasedFlaskChargesUnique__1_"] = { affix = "", "Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges", statOrder = { 2519 }, level = 1, group = "EnemiesYouBleedGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2671550669] = { "Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges" }, } }, + ["AddedPhysicalDamageVsBleedingEnemiesUnique__1"] = { affix = "", "Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies", statOrder = { 2520 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies" }, } }, + ["LifeRegenerationIfBlockedRecentlyUnique__1"] = { affix = "", "If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second", statOrder = { 10799 }, level = 1, group = "LifeRegenerationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [176085824] = { "If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second" }, } }, + ["GroundTarOnBlockUnique__1"] = { affix = "", "Spreads Tar when you Block", statOrder = { 7012 }, level = 79, group = "GroundTarOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3587169341] = { "" }, [2894567787] = { "Spreads Tar when you Block" }, } }, + ["GainShapersPresenceUnique__1"] = { affix = "", "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy", statOrder = { 6910 }, level = 81, group = "GainShapersPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1091613629] = { "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy" }, } }, + ["SpellsCannotPierceUnique__1__"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9892 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, + ["EnemiesIgnitedTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Ignited by you during Effect take (7-10)% increased Damage", statOrder = { 1068 }, level = 1, group = "EnemiesIgnitedTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [3477833022] = { "Enemies Ignited by you during Effect take (7-10)% increased Damage" }, } }, + ["GainChargeOnConsumingIgnitedCorpseUnique__1__"] = { affix = "", "Recharges 1 Charge when you Consume an Ignited corpse", statOrder = { 860 }, level = 1, group = "GainChargeOnConsumingIgnitedCorpse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2557247391] = { "Recharges 1 Charge when you Consume an Ignited corpse" }, } }, + ["GainChargeOnConsumingIgnitedCorpseUnique__2"] = { affix = "", "Recharges 5 Charges when you Consume an Ignited corpse", statOrder = { 860 }, level = 1, group = "GainChargeOnConsumingIgnitedCorpse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2557247391] = { "Recharges 5 Charges when you Consume an Ignited corpse" }, } }, + ["RecoverMaximumLifeOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Life when you Kill an Enemy during Effect", statOrder = { 1069 }, level = 1, group = "RecoverMaximumLifeOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1217476473] = { "Recover (1-3)% of Life when you Kill an Enemy during Effect" }, } }, + ["RecoverMaximumManaOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Mana when you Kill an Enemy during Effect", statOrder = { 1070 }, level = 1, group = "RecoverMaximumManaOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [3247931236] = { "Recover (1-3)% of Mana when you Kill an Enemy during Effect" }, } }, + ["RecoverMaximumEnergyShieldOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Energy Shield when you Kill an Enemy during Effect", statOrder = { 1071 }, level = 1, group = "RecoverMaximumEnergyShieldOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, tradeHashes = { [2347201221] = { "Recover (1-3)% of Energy Shield when you Kill an Enemy during Effect" }, } }, + ["AlternateFireAilmentUnique__1"] = { affix = "", "(25-50)% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2050, 2586 }, level = 1, group = "AlternateFireAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4198497576] = { "Cannot inflict Ignite" }, [606940191] = { "(25-50)% chance to Scorch Enemies" }, } }, + ["AlternateColdAilmentUnique__1"] = { affix = "", "(25-50)% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2053, 2588 }, level = 1, group = "AlternateColdAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2238174408] = { "(25-50)% chance to inflict Brittle" }, [612223930] = { "Cannot inflict Freeze or Chill" }, } }, + ["AlternateLightningAilmentUnique__1__"] = { affix = "", "(25-50)% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2057, 2589 }, level = 1, group = "AlternateLightningAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [532324017] = { "(25-50)% chance to Sap Enemies" }, [990377349] = { "Cannot inflict Shock" }, } }, + ["PrismaticSkillsInflictScorchUnique_1"] = { affix = "", "Hits with Prismatic Skills always Scorch", statOrder = { 9867 }, level = 1, group = "PrismaticSkillsAlwaysScorch", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2324756482] = { "Hits with Prismatic Skills always Scorch" }, } }, + ["PrismaticSkillsInflictBrittleUnique_1"] = { affix = "", "Hits with Prismatic Skills always inflict Brittle", statOrder = { 9865 }, level = 1, group = "PrismaticSkillsAlwaysBrittle", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2034210174] = { "Hits with Prismatic Skills always inflict Brittle" }, } }, + ["PrismaticSkillsInflictSapUnique_1"] = { affix = "", "Hits with Prismatic Skills always Sap", statOrder = { 9866 }, level = 1, group = "PrismaticSkillsAlwaysSap", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2355907154] = { "Hits with Prismatic Skills always Sap" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-55)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(40-55)% to Chaos Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(25-35)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUnique__2"] = { affix = "", "+50% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+50% to Cold Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-60)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(40-60)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUnique__2_"] = { affix = "", "+(15-25)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(15-25)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUnique__3"] = { affix = "", "+(8-12)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-12)% to Fire Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-40)% to Damage over Time Multiplier" }, } }, + ["GlobalDamageOverTimeMultiplierUnique__2"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-40)% to Damage over Time Multiplier" }, } }, + ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 2237 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, + ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 2237 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (8-12)% increased Cast Speed" }, } }, + ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 842 }, 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" }, } }, + ["TrapsApplySocketedCurseSkillsWhenTriggeredUnique_1"] = { affix = "", "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps", statOrder = { 554, 554.1 }, level = 70, group = "TriggerCurseOnTrap", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [1736212068] = { "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps" }, } }, + ["EnergyShieldLeechPerCurseUnique__1_"] = { affix = "", "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy", statOrder = { 1746 }, level = 1, group = "EnergyShieldLeechPerCurse", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3734213780] = { "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy" }, } }, + ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 4372 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [33348259] = { "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 = { 7265 }, 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 = { 7264 }, 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 = { 5886 }, 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 = { 7546 }, 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%" }, } }, + ["ElementalDamagePerResistanceAbove75Unique_1"] = { affix = "", "(6-8)% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%", statOrder = { 6382 }, level = 1, group = "ElementalDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1138456002] = { "(6-8)% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%" }, } }, + ["ClassicNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 59 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(60-120)% increased Implicit Modifier magnitudes" }, } }, + ["ImplicitModifierMagnitudeUnique_2"] = { affix = "", "(80-100)% increased Implicit Modifier magnitudes", statOrder = { 59 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(80-100)% increased Implicit Modifier magnitudes" }, } }, + ["LocalEnchantStatMagnitudeUnique__1"] = { affix = "", "(50-100)% increased Enchantment Modifier magnitudes", statOrder = { 57 }, level = 65, group = "LocalEnchantStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2636298851] = { "(50-100)% increased Enchantment Modifier magnitudes" }, } }, + ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 880 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(15-30)% reduced Duration" }, } }, + ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 903 }, 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 = { 1002 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [1866211373] = { "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies" }, } }, + ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 999 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1535051459] = { "+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect" }, } }, + ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 1040 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3278399103] = { "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect" }, } }, + ["ShockProliferationUnique__1"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2245 }, level = 1, group = "ShockProliferation", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, + ["ShockProliferationDuringFlaskEffectUnique__1"] = { affix = "", "Shocks you inflict during Effect spread to other Enemies within 2 metres", statOrder = { 1083 }, level = 85, group = "ShockProliferationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [911839512] = { "Shocks you inflict during Effect spread to other Enemies within 2 metres" }, } }, + ["ShockEffectDuringFlaskEffectUnique__1__"] = { affix = "", "(25-40)% increased Effect of Shocks you inflict during Effect", statOrder = { 1082 }, level = 1, group = "ShockEffectDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [3338065776] = { "(25-40)% increased Effect of Shocks you inflict during Effect" }, } }, + ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1935 }, 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 = { 4425, 4426 }, 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 = { 4428, 4428.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1174243390] = { "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity" }, } }, + ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Nearby Enemies cannot deal Critical Strikes", statOrder = { 8019 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Strikes" }, [3638599682] = { "Never deal Critical Strikes" }, } }, + ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Nearby Allies' Action Speed cannot be modified to below Base Value", statOrder = { 8011 }, 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 = { 8329 }, 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 = "", "3% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8330 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "3% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, + ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 3036 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3767939384] = { "Nearby Allies have (4-6)% increased Defences per 100 Strength you have" }, } }, + ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 3035 }, 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 Strike Multiplier per 100 Dexterity you have", statOrder = { 3037 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have" }, } }, + ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 3038 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2373999301] = { "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have" }, } }, + ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 698 }, 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 = { 9847 }, 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 = { 9848 }, 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 = { 237 }, 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 = { 778 }, 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 = { 851, 851.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" }, } }, + ["MaximumLifeLeechAmountUnique__1"] = { affix = "", "50% reduced Maximum Recovery per Life Leech", statOrder = { 1747 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3101897388] = { "50% reduced Maximum Recovery per Life Leech" }, } }, + ["MaximumLifeLeechAmountUnique__2"] = { affix = "", "80% reduced Maximum Recovery per Life Leech", statOrder = { 1747 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3101897388] = { "80% reduced Maximum Recovery per Life Leech" }, } }, + ["MaximumLifeLeechAmountPerLifeReservedUnique__1"] = { affix = "", "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved", statOrder = { 9275 }, level = 1, group = "MaximumLifeLeechAmountPerLifeReserved", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3389810339] = { "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved" }, } }, + ["LIfeReservationEfficiencyUnique__1"] = { affix = "", "(15-25)% increased Life Reservation Efficiency of Skills", statOrder = { 2249 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [635485889] = { "(15-25)% increased Life Reservation Efficiency of Skills" }, } }, + ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 3247 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2108380422] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, + ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, 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 = { 4965 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["AttacksYouUseYourselfRepeatCountUnique__1"] = { affix = "", "Attacks you use yourself Repeat an additional time", statOrder = { 1923 }, level = 1, group = "AttacksYouUseYourselfRepeatCount", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [485236576] = { "Attacks you use yourself Repeat an additional time" }, } }, + ["AttacksYouUseYourselfAttackSpeedFinalUnique__1"] = { affix = "", "Attacks you use yourself have 50% more Attack Speed", statOrder = { 1924 }, level = 1, group = "AttacksYouUseYourselfAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2718073792] = { "Attacks you use yourself have 50% more Attack Speed" }, } }, + ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10871 }, 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 = { 10871 }, 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 = { 10871 }, 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 = { 10871 }, 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 = { 10871 }, 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 = { 7226 }, 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 = { 7227 }, 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 = { 7550 }, 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 = { 7225 }, 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 = { 9290 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, + ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7552 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, + ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7212 }, 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 = { 7213 }, 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 = { 6657 }, 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 = { 7211 }, 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 = { 9263 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, + ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6658 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, + ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7216 }, 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 = { 7217 }, 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 = { 5897 }, 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 = { 7215 }, 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 = { 9252 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, + ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5899 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, + ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7221 }, 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 = { 7222 }, 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 = { 9786 }, 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 = { 7219 }, 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 = { 10132 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, + ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9793 }, 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 = { 7208 }, 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 = { 7209 }, 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 = { 5816 }, 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 = { 7207 }, 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 = { 4657 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, + ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5824 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, + ["ZombiesCountAsCorpsesUnique__1"] = { affix = "", "Your Raised Zombies count as corpses", statOrder = { 9962 }, level = 1, group = "ZombiesCountAsCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3951269079] = { "Your Raised Zombies count as corpses" }, } }, + ["ZombiesNeedNoCorpsesUnique__1"] = { affix = "", "Raise Zombie does not require a corpse", statOrder = { 9956 }, level = 1, group = "ZombiesNeedNoCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [16924183] = { "Raise Zombie does not require a corpse" }, } }, + ["ZombieIncreasedLifeUnique__1"] = { affix = "", "Raised Zombies have (80-100)% increased maximum Life", statOrder = { 1794 }, level = 1, group = "ZombieIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [927817294] = { "Raised Zombies have (80-100)% increased maximum Life" }, } }, + ["AdditionalPhysicalDamageReductionWhileBleedingUnique__1"] = { affix = "", "(10-15)% additional Physical Damage Reduction while Bleeding", statOrder = { 4624 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1089471428] = { "(10-15)% additional Physical Damage Reduction while Bleeding" }, } }, + ["DamageTakenGainedAsLifeUnique__1_"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeUnique__2"] = { affix = "", "(80-100)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(80-100)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeUnique__3"] = { affix = "", "(6-12)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-12)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLifeUnique__4"] = { affix = "", "(10-15)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-15)% of Damage taken Recouped as Life" }, } }, + ["MinimumEnduranceChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Endurance Charges while on Low Life", statOrder = { 9387 }, level = 1, group = "MinimumEnduranceChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2847937074] = { "+3 to Minimum Endurance Charges while on Low Life" }, } }, + ["MinimumPowerChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Power Charges while on Low Life", statOrder = { 9392 }, level = 1, group = "MinimumPowerChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3960918998] = { "+3 to Minimum Power Charges while on Low Life" }, } }, + ["SpellCriticalStrikeChanceIfKilledRecentlyUnique__1"] = { affix = "", "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently", statOrder = { 6007 }, level = 1, group = "SpellCriticalStrikeChanceIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1243114410] = { "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently" }, } }, + ["SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently", statOrder = { 6037 }, level = 1, group = "SpellCriticalStrikeMultiplierIfNotKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [729430714] = { "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently" }, } }, + ["RagingSpiritLifeUnique__1"] = { affix = "", "Summoned Raging Spirits have (25-40)% increased maximum Life", statOrder = { 9460 }, level = 1, group = "RagingSpiritLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3999870307] = { "Summoned Raging Spirits have (25-40)% increased maximum Life" }, } }, + ["RagingSpiritDurationUnique__1"] = { affix = "", "Summon Raging Spirit has (20-30)% increased Duration", statOrder = { 3448 }, level = 1, group = "RagingSpiritDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [38715141] = { "Summon Raging Spirit has (20-30)% increased Duration" }, } }, + ["RagingSpiritChaosDamageTakenUnique__1"] = { affix = "", "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage", statOrder = { 9461 }, level = 68, group = "RagingSpiritChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [1063920218] = { "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage" }, } }, + ["LosePowerChargeWhenHitUnique__1"] = { affix = "", "Lose a Power Charge when Hit", statOrder = { 10660 }, level = 1, group = "LosePowerChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4023578899] = { "Lose a Power Charge when Hit" }, } }, + ["SpellDamagePerLifeUnique__1"] = { affix = "", "3% increased Spell Damage per 100 Player Maximum Life", statOrder = { 10298 }, level = 1, group = "SpellDamagePerLife", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3491815140] = { "3% increased Spell Damage per 100 Player Maximum Life" }, } }, + ["SpellCriticalStrikeChancePerLifeUnique__1"] = { affix = "", "3% increased Spell Critical Strike Chance per 100 Player Maximum Life", statOrder = { 10284 }, level = 1, group = "SpellCriticalStrikeChancePerLife", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [3775574601] = { "3% increased Spell Critical Strike Chance per 100 Player Maximum Life" }, } }, + ["SacrificeLifeOnSpellSkillUnique__1"] = { affix = "", "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill", statOrder = { 10100 }, level = 1, group = "SacrificeLifeOnSpellSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [545408899] = { "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill" }, } }, + ["PercentDexterityIfStrengthHigherThanIntelligenceUnique__1"] = { affix = "", "15% increased Dexterity if Strength is higher than Intelligence", statOrder = { 6263 }, level = 1, group = "PercentDexterityIfStrengthHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2022724400] = { "15% increased Dexterity if Strength is higher than Intelligence" }, } }, + ["CriticalStrikeMultiplierIfDexterityHigherThanIntelligenceUnique__1"] = { affix = "", "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence", statOrder = { 6039 }, level = 1, group = "CriticalStrikeMultiplierIfDexterityHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2328588114] = { "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence" }, } }, + ["ElementalDamagePerDexterityUnique__1"] = { affix = "", "1% increased Elemental Damage per 10 Dexterity", statOrder = { 6393 }, level = 1, group = "ElementalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [963261439] = { "1% increased Elemental Damage per 10 Dexterity" }, } }, + ["LifePer10IntelligenceUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Intelligence", statOrder = { 9281 }, level = 1, group = "LifePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1114351662] = { "+2 to Maximum Life per 10 Intelligence" }, } }, + ["GrantsLevel30SmiteUnique__1"] = { affix = "", "Grants Level 30 Smite Skill", statOrder = { 736 }, level = 1, group = "GrantsSmiteLevel", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [979973117] = { "Grants Level 30 Smite Skill" }, } }, + ["ElementalAilmentsOnYouInsteadOfAlliesUnique__1"] = { affix = "", "Enemies inflict Elemental Ailments on you instead of nearby Allies", statOrder = { 8035 }, level = 1, group = "ElementalAilmentsOnYouInsteadOfAllies", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [979288792] = { "Enemies inflict Elemental Ailments on you instead of nearby Allies" }, [3151718243] = { "" }, } }, + ["UnaffectedByPoisonUnique__1_"] = { affix = "", "Unaffected by Poison", statOrder = { 5127 }, level = 1, group = "UnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, + ["KeystoneInnerConvictionUnique__1"] = { affix = "", "Inner Conviction", statOrder = { 10973 }, level = 1, group = "KeystoneInnerConviction", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge", "damage" }, tradeHashes = { [354080151] = { "Inner Conviction" }, } }, + ["FasterPoisonDamageUnique__1"] = { affix = "", "Poisons you inflict deal Damage (30-50)% faster", statOrder = { 6633 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (30-50)% faster" }, } }, + ["TriggerRainOfArrowsOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Rain of Arrows when you Attack with a Bow", statOrder = { 834 }, level = 1, group = "TriggerRainOfArrowsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2935409762] = { "Trigger Level 5 Rain of Arrows when you Attack with a Bow" }, } }, + ["TriggerToxicRainOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Toxic Rain when you Attack with a Bow", statOrder = { 856 }, level = 1, group = "TriggerToxicRainOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [767464019] = { "Trigger Level 5 Toxic Rain when you Attack with a Bow" }, } }, + ["CursesRemainOnDeathUnique__1_"] = { affix = "", "Non-Aura Curses you inflict are not removed from Dying Enemies", statOrder = { 6096 }, level = 1, group = "CursesRemainOnDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [847744351] = { "Non-Aura Curses you inflict are not removed from Dying Enemies" }, } }, + ["EnemiesNearCursesBlindAndExplodeUnique__1"] = { affix = "", "Enemies near corpses affected by your Curses are Blinded", "Enemies Killed near corpses affected by your Curses explode, dealing", "3% of their Life as Physical Damage", statOrder = { 6475, 6475.1, 6475.2 }, level = 1, group = "EnemiesNearCursesBlindAndExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1509756274] = { "Enemies near corpses affected by your Curses are Blinded", "Enemies Killed near corpses affected by your Curses explode, dealing", "3% of their Life as Physical Damage" }, } }, + ["WarcryCooldownIs2SecondsUnique__1"] = { affix = "", "Warcry Skills' Cooldown Time is 4 seconds", statOrder = { 10732 }, level = 1, group = "WarcryCooldownIs2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [684268017] = { "Warcry Skills' Cooldown Time is 4 seconds" }, } }, + ["CriticalStrikeMultiplierIs250Unique__1"] = { affix = "", "Your Critical Strike Multiplier is 300%", statOrder = { 6035 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [824024007] = { "Your Critical Strike Multiplier is 300%" }, } }, + ["RageOnAttackCritUnique__1"] = { affix = "", "Gain 1 Rage on Critical Strike with Attacks", statOrder = { 7408 }, level = 1, group = "RageOnAttackCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1043982313] = { "Gain 1 Rage on Critical Strike with Attacks" }, } }, + ["RageOnMeleeHitUnique__1"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6938 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 5 Rage on Melee Hit" }, } }, + ["PhysicalAddedAsFirePerRageUnique__1"] = { affix = "", "Every Rage also grants 1% of Physical Damage as Extra Fire Damage", statOrder = { 9777 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1431402553] = { "Every Rage also grants 1% of Physical Damage as Extra Fire Damage" }, } }, + ["LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_"] = { affix = "", "20% chance for Poisons inflicted with this Weapon to deal 300% more Damage", statOrder = { 7980 }, level = 1, group = "LocalChanceForPoisonDamage300FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [768124628] = { "20% chance for Poisons inflicted with this Weapon to deal 300% more Damage" }, } }, + ["AttackDamageWhileHoldingShieldUnique__1"] = { affix = "", "(10-15)% increased Attack Damage while holding a Shield", statOrder = { 1229 }, level = 1, group = "AttackDamageWhileHoldingShield", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(10-15)% increased Attack Damage while holding a Shield" }, } }, + ["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 = { 10, 10.1, 10872 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 10, 10.1, 10872 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [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 = { 10, 10.1, 10872 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [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 = { 10, 10.1, 10872 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 10, 10.1, 10872 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, + ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10545 }, 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 = { 10183 }, 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 = { 5806 }, 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 = { 4762 }, 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 = { 6392 }, 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 = { 6427 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, + ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion", statOrder = { 9637 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion" }, } }, + ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 10120 }, 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 = { 10117 }, 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 = { 9403 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, + ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 9396 }, 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 = { 8311 }, 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 = { 8284 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3293275880] = { "1% reduced Mana Cost of Skills per 10 Devotion" }, } }, + ["ManaCostEfficiencyPerDevotion"] = { affix = "", "3% increased Mana Cost Efficiency per 10 Devotion", statOrder = { 5094 }, level = 1, group = "ManaCostEfficiencyPer10Devotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1355915086] = { "3% increased Mana Cost Efficiency per 10 Devotion" }, } }, + ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9628 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, + ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 10148 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2803981661] = { "3% increased Defences from Equipped Shield per 10 Devotion" }, } }, + ["DealNoChaosDamageUnique_1"] = { affix = "", "Deal no Chaos Damage", statOrder = { 5061 }, level = 1, group = "DealNoChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1896269067] = { "Deal no Chaos Damage" }, } }, + ["LightRadiusToDamageUnique_1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Damage", statOrder = { 2525 }, level = 1, group = "LightRadiusModifiersApplyToDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3519807287] = { "Increases and Reductions to Light Radius also apply to Damage" }, } }, + ["LightRadiusToAreaOfEffectUnique__1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value", statOrder = { 2524 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value" }, } }, ["CanRollMinionModifiersImplicitWandAtlas1"] = { affix = "", "Can roll Minion Modifiers", statOrder = { 17 }, level = 1, group = "CanRollMinionModifiers", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2994708956] = { "Can roll Minion Modifiers" }, } }, - ["MinionDamageImplicitWand1"] = { affix = "", "Minions deal (26-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-30)% increased Damage" }, } }, - ["MinionDamageImplicitWand2"] = { affix = "", "Minions deal (20-24)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-24)% increased Damage" }, } }, - ["MinionDamageImplicitWand3"] = { affix = "", "Minions deal (12-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (12-16)% increased Damage" }, } }, - ["MinionDamageImplicitShield1"] = { affix = "", "Minions deal (5-10)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-10)% increased Damage" }, } }, - ["MinionElementalResistanceImplicitRing1"] = { affix = "", "Minions have +(10-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 32, group = "MinionElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-15)% to all Elemental Resistances" }, } }, - ["TulBreachRingImplicit"] = { affix = "", "+2% to maximum Cold Resistance", "Cannot roll Modifiers of Non-Cold Damage Types", statOrder = { 1629, 5271 }, level = 40, group = "TulBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4215265273] = { "Cannot roll Modifiers of Non-Cold Damage Types" }, } }, - ["XophBreachRingImplicit"] = { affix = "", "+2% to maximum Fire Resistance", "Cannot roll Modifiers of Non-Fire Damage Types", statOrder = { 1623, 5273 }, level = 40, group = "XophBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4040327616] = { "Cannot roll Modifiers of Non-Fire Damage Types" }, [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["EshBreachRingImplicit"] = { affix = "", "+2% to maximum Lightning Resistance", "Cannot roll Modifiers of Non-Lightning Damage Types", statOrder = { 1634, 5270 }, level = 40, group = "EshBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [1765111378] = { "Cannot roll Modifiers of Non-Lightning Damage Types" }, } }, - ["UulNetolBreachRingImplicit"] = { affix = "", "3% additional Physical Damage Reduction", "Cannot roll Modifiers of Non-Physical Damage Types", statOrder = { 2273, 5272 }, level = 40, group = "UulNetolBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [361491825] = { "Cannot roll Modifiers of Non-Physical Damage Types" }, [3771516363] = { "3% additional Physical Damage Reduction" }, } }, - ["ChayulaBreachRingImplicit"] = { affix = "", "+2% to maximum Chaos Resistance", "Cannot roll Modifiers of Non-Chaos Damage Types", statOrder = { 1640, 5269 }, level = 40, group = "ChayulaBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3363758458] = { "Cannot roll Modifiers of Non-Chaos Damage Types" }, [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, - ["FormlessBreachRingImplicit"] = { affix = "", "(5-7)% increased Global Defences", statOrder = { 2833 }, level = 53, group = "FormlessBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-7)% increased Global Defences" }, } }, - ["KineticWandImplicit"] = { affix = "", "Cannot roll Caster Modifiers", statOrder = { 7322 }, level = 1, group = "KineticWandImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4082780964] = { "Cannot roll Caster Modifiers" }, } }, - ["MinionPhysicalToFirePerRedSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Fire Damage per Red Socket", statOrder = { 2719 }, level = 1, group = "MinionPhysicalToFirePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "minion" }, tradeHashes = { [2139569643] = { "Minions convert 25% of Physical Damage to Fire Damage per Red Socket" }, } }, - ["MinionPhysicalToColdPerGreenSocket_"] = { affix = "", "Minions convert 25% of Physical Damage to Cold Damage per Green Socket", statOrder = { 2723 }, level = 1, group = "MinionPhysicalToColdPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [306443498] = { "Minions convert 25% of Physical Damage to Cold Damage per Green Socket" }, } }, - ["MinionPhysicalToLightningPerBlueSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket", statOrder = { 2725 }, level = 1, group = "MinionPhysicalToLightningPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "minion" }, tradeHashes = { [3366426512] = { "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket" }, } }, - ["MinionPhysicalToChaosPerWhiteSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Chaos Damage per White Socket", statOrder = { 2729 }, level = 1, group = "MinionPhysicalToChaosPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, tradeHashes = { [199362230] = { "Minions convert 25% of Physical Damage to Chaos Damage per White Socket" }, } }, - ["MinionChanceToFreezeShockIgnite"] = { affix = "", "Minions have (5-10)% chance to Freeze, Shock and Ignite", statOrder = { 9283 }, level = 1, group = "MinionChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "minion", "ailment" }, tradeHashes = { [1994549323] = { "Minions have (5-10)% chance to Freeze, Shock and Ignite" }, } }, - ["NonChilledEnemiesBleedAndChillUnique__1_"] = { affix = "", "Non-Chilled Enemies you inflict Bleeding on are Chilled", statOrder = { 9490 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [398940995] = { "Non-Chilled Enemies you inflict Bleeding on are Chilled" }, } }, - ["ChilledWhileBleedingUnique__1_"] = { affix = "", "You are Chilled while you are Bleeding", statOrder = { 5775 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [67132951] = { "You are Chilled while you are Bleeding" }, } }, - ["BleedingEnemiesShatterOnKillUnique__1"] = { affix = "", "Bleeding Enemies you Kill with Hits Shatter", statOrder = { 9991 }, level = 1, group = "BleedingEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [881917501] = { "Bleeding Enemies you Kill with Hits Shatter" }, } }, - ["NonChilledEnemiesPoisonAndChillUnique__1"] = { affix = "", "Non-Chilled Enemies you Poison are Chilled", statOrder = { 9491 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3998191356] = { "Non-Chilled Enemies you Poison are Chilled" }, } }, - ["ChilledWhilePoisonedUnique__1"] = { affix = "", "You are Chilled when you are Poisoned", statOrder = { 5776 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1802660259] = { "You are Chilled when you are Poisoned" }, } }, - ["PoisonedEnemiesShatterOnKillUnique__1"] = { affix = "", "Poisoned Enemies you Kill with Hits Shatter", statOrder = { 9992 }, level = 1, group = "PoisonedEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350228283] = { "Poisoned Enemies you Kill with Hits Shatter" }, } }, - ["DamagePerZombieUnique__1"] = { affix = "", "(5-8)% increased Damage per Raised Zombie", statOrder = { 6018 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3868443508] = { "(5-8)% increased Damage per Raised Zombie" }, } }, - ["ElementalDamageTakenPerZombieUnique__1"] = { affix = "", "1% less Elemental Damage taken per Raised Zombie", statOrder = { 6315 }, level = 1, group = "ElementalDamageTakenPerZombie", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [512740886] = { "1% less Elemental Damage taken per Raised Zombie" }, } }, - ["LoseEnduranceChargeOnFortifyGainUnique__1"] = { affix = "", "(20-25)% chance to lose an Endurance Charge when you gain Fortification", statOrder = { 4395 }, level = 1, group = "LoseEnduranceChargeOnFortifyGain", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1087146228] = { "(20-25)% chance to lose an Endurance Charge when you gain Fortification" }, } }, - ["LoseFrenzyChargeOnTravelSkillUnique__1"] = { affix = "", "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill", statOrder = { 4394 }, level = 1, group = "LoseFrenzyChargeOnTravelSkill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [445906009] = { "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill" }, } }, - ["LosePowerChargeOnElusiveGainUnique__1_"] = { affix = "", "(20-25)% chance to lose a Power Charge when you gain Elusive", statOrder = { 4396 }, level = 1, group = "LosePowerChargeOnElusiveGain", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1819086604] = { "(20-25)% chance to lose a Power Charge when you gain Elusive" }, } }, - ["ElusiveBuffEffectPerPowerChargeUnique__1"] = { affix = "", "(7-10)% increased Effect of Elusive on you per Power Charge", statOrder = { 4393 }, level = 1, group = "ElusiveBuffEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3545269928] = { "(7-10)% increased Effect of Elusive on you per Power Charge" }, } }, - ["TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1"] = { affix = "", "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge", statOrder = { 4392 }, level = 1, group = "TravelSkillCooldownRecoveryPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3083201633] = { "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge" }, } }, - ["MaximumFortificationPerEnduranceChargeUnique__1"] = { affix = "", "+1 to maximum Fortification per Endurance Charge", statOrder = { 4391 }, level = 1, group = "MaximumFortificationPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2032578228] = { "+1 to maximum Fortification per Endurance Charge" }, } }, - ["MaximumFrenzyChargesEqualToMaximumPowerChargesUnique__1"] = { affix = "", "Your Maximum Frenzy Charges is equal to your Maximum Power Charges", statOrder = { 1810 }, level = 75, group = "MaximumFrenzyChargesEqualToMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2238831336] = { "Your Maximum Frenzy Charges is equal to your Maximum Power Charges" }, } }, - ["MaximumEnduranceChargesEqualToMaximumFrenzyChargesUnique__1"] = { affix = "", "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges", statOrder = { 1805 }, level = 75, group = "MaximumEnduranceChargesEqualToMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3443585706] = { "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges" }, } }, - ["MinionAttacksTauntOnHitChanceUnique__1"] = { affix = "", "Minions have 5% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 55, group = "MinionAttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have 5% chance to Taunt on Hit with Attacks" }, } }, - ["MinionCausticCloudOnDeathUnique__1_"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3442 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [688802590] = { "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second" }, } }, - ["MinionBurningCloudOnDeathUnique__1"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second", statOrder = { 9305 }, level = 55, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [4099989681] = { "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second" }, } }, - ["TotemReflectFireDamageUnique__1_"] = { affix = "", "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3788 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, - ["MinionAddedColdDamageUnique__1"] = { affix = "", "Minions deal (25-35) to (50-65) additional Cold Damage", statOrder = { 3770 }, level = 1, group = "MinionAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (25-35) to (50-65) additional Cold Damage" }, } }, - ["MineDamageLeechedToYouUnique__1"] = { affix = "", "1% of Damage dealt by your Mines is Leeched to you as Life", statOrder = { 4236 }, level = 1, group = "MineDamageLeechedToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [807450540] = { "1% of Damage dealt by your Mines is Leeched to you as Life" }, } }, - ["LifeEnergyShieldRecoveryRateUnique__1"] = { affix = "", "(20-30)% reduced Recovery rate of Life and Energy Shield", statOrder = { 7341 }, level = 1, group = "LifeEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1092546321] = { "(20-30)% reduced Recovery rate of Life and Energy Shield" }, } }, - ["LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1"] = { affix = "", "5% increased Recovery rate of Life and Energy Shield per Power Charge", statOrder = { 7344 }, level = 1, group = "LifeAndEnergyShieldRecoveryRatePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [604671218] = { "5% increased Recovery rate of Life and Energy Shield per Power Charge" }, } }, - ["LosePowerChargeIfNotDetonatedRecentlyUnique__1"] = { affix = "", "Lose a Power Charge each second if you have not Detonated Mines Recently", statOrder = { 8144 }, level = 1, group = "LosePowerChargeIfNotDetonatedRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3530865840] = { "Lose a Power Charge each second if you have not Detonated Mines Recently" }, } }, - ["NotablesGrantMinionDamageTakenUnique__1_"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions take 20% increased Damage", statOrder = { 10763, 10763.1 }, level = 1, group = "NotablesGrantMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [3659983276] = { "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions take 20% increased Damage" }, } }, - ["NotablesGrantMinionMovementSpeedUnique__1_"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions have 25% reduced Movement Speed", statOrder = { 10764, 10764.1 }, level = 1, group = "NotablesGrantMinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3802517517] = { "" }, [3362879252] = { "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions have 25% reduced Movement Speed" }, } }, - ["PassivesGrantTrapMineAddedPhysicalUnique__1_"] = { affix = "", "Passive Skills in Radius also grant: Traps and Mines deal (2-3) to (4-6) added Physical Damage", statOrder = { 10765 }, level = 1, group = "PassivesGrantTrapMineAddedPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3802517517] = { "" }, [576760472] = { "Passive Skills in Radius also grant: Traps and Mines deal (2-3) to (4-6) added Physical Damage" }, } }, - ["PassivesGrantUnarmedAttackSpeedUnique__1_"] = { affix = "", "Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills", statOrder = { 8117 }, level = 1, group = "PassivesGrantUnarmedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3802517517] = { "" }, [3087912144] = { "Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills" }, } }, - ["MovementVelocityOverrideUnique__1"] = { affix = "", "Your Movement Speed is 150% of its base value", statOrder = { 9416 }, level = 1, group = "MovementVelocityOverride", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3945685369] = { "Your Movement Speed is 150% of its base value" }, } }, - ["TravelSkillCooldownRecoveryUnique__1_"] = { affix = "", "(50-80)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 1, group = "TravelSkillCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "(50-80)% increased Cooldown Recovery Rate of Travel Skills" }, } }, - ["DamageRemovedFromSpectresUnique__1"] = { affix = "", "10% of Damage from Hits is taken from your Raised Spectres' Life before you", statOrder = { 6092 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [54812069] = { "10% of Damage from Hits is taken from your Raised Spectres' Life before you" }, } }, - ["MinionElementalDamageAddedAsChaosUnique__1"] = { affix = "", "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 9301 }, level = 1, group = "MinionElementalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos", "minion" }, tradeHashes = { [247168950] = { "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["LifeRegenerationPerZombieUnique__1"] = { affix = "", "Regenerate 0.6% of Life per second for each Raised Zombie", statOrder = { 7423 }, level = 1, group = "LifeRegenerationPerZombie", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841618445] = { "Regenerate 0.6% of Life per second for each Raised Zombie" }, } }, - ["ManaRegenerationPerSpectreUnique__1"] = { affix = "", "30% increased Mana Regeneration Rate per Raised Spectre", statOrder = { 8211 }, level = 1, group = "ManaRegenerationPerSpectre", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2666795121] = { "30% increased Mana Regeneration Rate per Raised Spectre" }, } }, - ["AttackBlockPerSkeletonUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per Summoned Skeleton", statOrder = { 4539 }, level = 1, group = "AttackBlockPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2445675562] = { "+1% Chance to Block Attack Damage per Summoned Skeleton" }, } }, - ["AttackAndCastSpeedPerRagingSpiritUnique__1"] = { affix = "", "2% increased Attack and Cast Speed per Summoned Raging Spirit", statOrder = { 4819 }, level = 1, group = "AttackAndCastSpeedPerRagingSpirit", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3133579934] = { "2% increased Attack and Cast Speed per Summoned Raging Spirit" }, } }, - ["SupportedByMeatShieldUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Meat Shield", statOrder = { 334 }, level = 1, group = "SupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [858460086] = { "Socketed Gems are Supported by Level 1 Meat Shield" }, } }, - ["ReviveEnemiesOnKillUnique__1"] = { affix = "", "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster", statOrder = { 5902 }, level = 1, group = "ReviveEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2485187927] = { "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster" }, } }, - ["FireResistanceOverrideUnique__1__"] = { affix = "", "Fire Resistance is 75%", statOrder = { 1624 }, level = 1, group = "FireResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [763311546] = { "Fire Resistance is 75%" }, } }, - ["ColdResistanceOverrideUnique__1"] = { affix = "", "Cold Resistance is 75%", statOrder = { 1630 }, level = 1, group = "ColdResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [496075050] = { "Cold Resistance is 75%" }, } }, - ["LightningResistanceOverrideUnique__1_"] = { affix = "", "Lightning Resistance is 75%", statOrder = { 1635 }, level = 1, group = "LightningResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1942151132] = { "Lightning Resistance is 75%" }, } }, - ["ReducedFireResistanceUnique__1"] = { affix = "", "(50-55)% reduced Fire Resistance", statOrder = { 1628 }, level = 1, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1680060098] = { "(50-55)% reduced Fire Resistance" }, } }, - ["ReducedColdResistanceUnique__1"] = { affix = "", "(50-55)% reduced Cold Resistance", statOrder = { 1633 }, level = 1, group = "IncreasedColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4252311791] = { "(50-55)% reduced Cold Resistance" }, } }, - ["ReducedLightningResistanceUnique__1"] = { affix = "", "(50-55)% reduced Lightning Resistance", statOrder = { 1639 }, level = 1, group = "IncreasedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2249211872] = { "(50-55)% reduced Lightning Resistance" }, } }, - ["ManaRegenerationRateWhileMovingUnique__1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate while moving", statOrder = { 8212 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(30-40)% increased Mana Regeneration Rate while moving" }, } }, - ["FungalAroundWhenStationaryUnique__1_"] = { affix = "", "You have Fungal Ground around you while stationary", statOrder = { 6695 }, level = 1, group = "FungalAroundWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [799872465] = { "You have Fungal Ground around you while stationary" }, } }, - ["TriggerFungalGroundOnKillUnique__1_"] = { affix = "", "Trigger Level 10 Contaminate when you Kill an Enemy", statOrder = { 788 }, level = 1, group = "TriggerFungalGroundOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3159312340] = { "Trigger Level 10 Contaminate when you Kill an Enemy" }, } }, - ["EnemiesOnFungalGroundExplodeUnique__1"] = { affix = "", "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage", statOrder = { 6386 }, level = 1, group = "EnemiesOnFungalGroundExplode", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2224428651] = { "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage" }, } }, - ["FrostblinkDurationUnique__1_"] = { affix = "", "Frostblink has 50% increased Duration", statOrder = { 7188 }, level = 1, group = "FrostblinkDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3941271999] = { "Frostblink has 50% increased Duration" }, } }, - ["GrantsFrostblinkSkillUnique__1"] = { affix = "", "Grants Level 10 Frostblink Skill", statOrder = { 622 }, level = 1, group = "GrantsFrostblinkSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2911866787] = { "Grants Level 10 Frostblink Skill" }, } }, - ["AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8"] = { affix = "", "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem", statOrder = { 2715 }, level = 1, group = "AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1302700515] = { "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem" }, } }, - ["VaalPactIfAllSocketedGemsAreRedUniqueTwoHandSword8"] = { affix = "", "You have Vaal Pact while all Socketed Gems are Red", statOrder = { 10838 }, level = 1, group = "VaalPactIfAllSocketedGemsAreRed", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "gem" }, tradeHashes = { [3242537102] = { "You have Vaal Pact while all Socketed Gems are Red" }, } }, + ["MinionDamageImplicitWand1"] = { affix = "", "Minions deal (26-30)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-30)% increased Damage" }, } }, + ["MinionDamageImplicitWand2"] = { affix = "", "Minions deal (20-24)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-24)% increased Damage" }, } }, + ["MinionDamageImplicitWand3"] = { affix = "", "Minions deal (12-16)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (12-16)% increased Damage" }, } }, + ["MinionDamageImplicitShield1"] = { affix = "", "Minions deal (5-10)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-10)% increased Damage" }, } }, + ["MinionElementalResistanceImplicitRing1"] = { affix = "", "Minions have +(10-15)% to all Elemental Resistances", statOrder = { 2946 }, level = 32, group = "MinionElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-15)% to all Elemental Resistances" }, } }, + ["TulBreachRingImplicit"] = { affix = "", "+2% to maximum Cold Resistance", "Cannot roll Modifiers of Non-Cold Damage Types", statOrder = { 1652, 5344 }, level = 40, group = "TulBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4215265273] = { "Cannot roll Modifiers of Non-Cold Damage Types" }, } }, + ["XophBreachRingImplicit"] = { affix = "", "+2% to maximum Fire Resistance", "Cannot roll Modifiers of Non-Fire Damage Types", statOrder = { 1646, 5346 }, level = 40, group = "XophBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4040327616] = { "Cannot roll Modifiers of Non-Fire Damage Types" }, [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["EshBreachRingImplicit"] = { affix = "", "+2% to maximum Lightning Resistance", "Cannot roll Modifiers of Non-Lightning Damage Types", statOrder = { 1657, 5343 }, level = 40, group = "EshBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [1765111378] = { "Cannot roll Modifiers of Non-Lightning Damage Types" }, } }, + ["UulNetolBreachRingImplicit"] = { affix = "", "3% additional Physical Damage Reduction", "Cannot roll Modifiers of Non-Physical Damage Types", statOrder = { 2296, 5345 }, level = 40, group = "UulNetolBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [361491825] = { "Cannot roll Modifiers of Non-Physical Damage Types" }, [3771516363] = { "3% additional Physical Damage Reduction" }, } }, + ["ChayulaBreachRingImplicit"] = { affix = "", "+2% to maximum Chaos Resistance", "Cannot roll Modifiers of Non-Chaos Damage Types", statOrder = { 1663, 5342 }, level = 40, group = "ChayulaBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3363758458] = { "Cannot roll Modifiers of Non-Chaos Damage Types" }, [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, + ["FormlessBreachRingImplicit"] = { affix = "", "(5-7)% increased Global Defences", statOrder = { 2867 }, level = 53, group = "FormlessBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(5-7)% increased Global Defences" }, } }, + ["KineticWandImplicit"] = { affix = "", "Cannot roll Caster Modifiers", statOrder = { 7422 }, level = 1, group = "KineticWandImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4082780964] = { "Cannot roll Caster Modifiers" }, } }, + ["MinionPhysicalToFirePerRedSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Fire Damage per Red Socket", statOrder = { 2748 }, level = 1, group = "MinionPhysicalToFirePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "minion" }, tradeHashes = { [2139569643] = { "Minions convert 25% of Physical Damage to Fire Damage per Red Socket" }, } }, + ["MinionPhysicalToColdPerGreenSocket_"] = { affix = "", "Minions convert 25% of Physical Damage to Cold Damage per Green Socket", statOrder = { 2753 }, level = 1, group = "MinionPhysicalToColdPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [306443498] = { "Minions convert 25% of Physical Damage to Cold Damage per Green Socket" }, } }, + ["MinionPhysicalToLightningPerBlueSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket", statOrder = { 2757 }, level = 1, group = "MinionPhysicalToLightningPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "minion" }, tradeHashes = { [3366426512] = { "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket" }, } }, + ["MinionPhysicalToChaosPerWhiteSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Chaos Damage per White Socket", statOrder = { 2762 }, level = 1, group = "MinionPhysicalToChaosPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, tradeHashes = { [199362230] = { "Minions convert 25% of Physical Damage to Chaos Damage per White Socket" }, } }, + ["MinionPhysicalToFirePerSocketedRedGemUnique__1"] = { affix = "", "Minions convert 25% of Physical Damage to Fire Damage per Socketed Red Gem", statOrder = { 2747 }, level = 1, group = "MinionPhysicalToFirePerSocketedRedGem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "minion" }, tradeHashes = { [3011514440] = { "Minions convert 25% of Physical Damage to Fire Damage per Socketed Red Gem" }, } }, + ["MinionPhysicalToColdPerSocketedGreenGemUnique__1"] = { affix = "", "Minions convert 25% of Physical Damage to Cold Damage per Socketed Green Gem", statOrder = { 2752 }, level = 1, group = "MinionPhysicalToColdPerSocketedGreenGem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [421707701] = { "Minions convert 25% of Physical Damage to Cold Damage per Socketed Green Gem" }, } }, + ["MinionPhysicalToLightningPerSocketedBlueGemUnique__1"] = { affix = "", "Minions convert 25% of Physical Damage to Lightning Damage per Socketed Blue Gem", statOrder = { 2756 }, level = 1, group = "MinionPhysicalToLightningPerSocketedBlueGem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "minion" }, tradeHashes = { [3681649269] = { "Minions convert 25% of Physical Damage to Lightning Damage per Socketed Blue Gem" }, } }, + ["MinionPhysicalToChaosPerEmptySocketUnique__1"] = { affix = "", "Minions convert 25% of Physical Damage to Chaos Damage per Empty Socket", statOrder = { 2761 }, level = 1, group = "MinionPhysicalToChaosPerEmptySocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, tradeHashes = { [3913835403] = { "Minions convert 25% of Physical Damage to Chaos Damage per Empty Socket" }, } }, + ["MinionChanceToFreezeShockIgnite"] = { affix = "", "Minions have (5-10)% chance to Freeze, Shock and Ignite", statOrder = { 9414 }, level = 1, group = "MinionChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "minion", "ailment" }, tradeHashes = { [1994549323] = { "Minions have (5-10)% chance to Freeze, Shock and Ignite" }, } }, + ["NonChilledEnemiesBleedAndChillUnique__1_"] = { affix = "", "Non-Chilled Enemies you inflict Bleeding on are Chilled", statOrder = { 9624 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [398940995] = { "Non-Chilled Enemies you inflict Bleeding on are Chilled" }, } }, + ["ChilledWhileBleedingUnique__1_"] = { affix = "", "You are Chilled while you are Bleeding", statOrder = { 5857 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [67132951] = { "You are Chilled while you are Bleeding" }, } }, + ["BleedingEnemiesShatterOnKillUnique__1"] = { affix = "", "Bleeding Enemies you Kill with Hits Shatter", statOrder = { 10135 }, level = 1, group = "BleedingEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [881917501] = { "Bleeding Enemies you Kill with Hits Shatter" }, } }, + ["NonChilledEnemiesPoisonAndChillUnique__1"] = { affix = "", "Non-Chilled Enemies you Poison are Chilled", statOrder = { 9625 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3998191356] = { "Non-Chilled Enemies you Poison are Chilled" }, } }, + ["ChilledWhilePoisonedUnique__1"] = { affix = "", "You are Chilled when you are Poisoned", statOrder = { 5858 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1802660259] = { "You are Chilled when you are Poisoned" }, } }, + ["PoisonedEnemiesShatterOnKillUnique__1"] = { affix = "", "Poisoned Enemies you Kill with Hits Shatter", statOrder = { 10136 }, level = 1, group = "PoisonedEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350228283] = { "Poisoned Enemies you Kill with Hits Shatter" }, } }, + ["DamagePerZombieUnique__1"] = { affix = "", "(5-8)% increased Damage per Raised Zombie", statOrder = { 6104 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3868443508] = { "(5-8)% increased Damage per Raised Zombie" }, } }, + ["ElementalDamageTakenPerZombieUnique__1"] = { affix = "", "1% less Elemental Damage taken per Raised Zombie", statOrder = { 6402 }, level = 1, group = "ElementalDamageTakenPerZombie", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [512740886] = { "1% less Elemental Damage taken per Raised Zombie" }, } }, + ["LoseEnduranceChargeOnFortifyGainUnique__1"] = { affix = "", "(20-25)% chance to lose an Endurance Charge when you gain Fortification", statOrder = { 4433 }, level = 1, group = "LoseEnduranceChargeOnFortifyGain", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1087146228] = { "(20-25)% chance to lose an Endurance Charge when you gain Fortification" }, } }, + ["LoseFrenzyChargeOnTravelSkillUnique__1"] = { affix = "", "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill", statOrder = { 4432 }, level = 1, group = "LoseFrenzyChargeOnTravelSkill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [445906009] = { "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill" }, } }, + ["LosePowerChargeOnElusiveGainUnique__1_"] = { affix = "", "(20-25)% chance to lose a Power Charge when you gain Elusive", statOrder = { 4434 }, level = 1, group = "LosePowerChargeOnElusiveGain", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1819086604] = { "(20-25)% chance to lose a Power Charge when you gain Elusive" }, } }, + ["ElusiveBuffEffectPerPowerChargeUnique__1"] = { affix = "", "(7-10)% increased Effect of Elusive on you per Power Charge", statOrder = { 4431 }, level = 1, group = "ElusiveBuffEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3545269928] = { "(7-10)% increased Effect of Elusive on you per Power Charge" }, } }, + ["TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1"] = { affix = "", "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge", statOrder = { 4430 }, level = 1, group = "TravelSkillCooldownRecoveryPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3083201633] = { "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge" }, } }, + ["MaximumFortificationPerEnduranceChargeUnique__1"] = { affix = "", "+1 to maximum Fortification per Endurance Charge", statOrder = { 4429 }, level = 1, group = "MaximumFortificationPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2032578228] = { "+1 to maximum Fortification per Endurance Charge" }, } }, + ["MaximumFrenzyChargesEqualToMaximumPowerChargesUnique__1"] = { affix = "", "Your Maximum Frenzy Charges is equal to your Maximum Power Charges", statOrder = { 1833 }, level = 75, group = "MaximumFrenzyChargesEqualToMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2238831336] = { "Your Maximum Frenzy Charges is equal to your Maximum Power Charges" }, } }, + ["MaximumEnduranceChargesEqualToMaximumFrenzyChargesUnique__1"] = { affix = "", "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges", statOrder = { 1828 }, level = 75, group = "MaximumEnduranceChargesEqualToMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3443585706] = { "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges" }, } }, + ["MinionAttacksTauntOnHitChanceUnique__1"] = { affix = "", "Minions have 5% chance to Taunt on Hit with Attacks", statOrder = { 3467 }, level = 55, group = "MinionAttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have 5% chance to Taunt on Hit with Attacks" }, } }, + ["MinionCausticCloudOnDeathUnique__1_"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3478 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [688802590] = { "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second" }, } }, + ["MinionBurningCloudOnDeathUnique__1"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second", statOrder = { 9437 }, level = 55, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [4099989681] = { "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second" }, } }, + ["TotemReflectFireDamageUnique__1_"] = { affix = "", "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3824 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, + ["MinionAddedColdDamageUnique__1"] = { affix = "", "Minions deal (25-35) to (50-65) additional Cold Damage", statOrder = { 3806 }, level = 1, group = "MinionAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (25-35) to (50-65) additional Cold Damage" }, } }, + ["MineDamageLeechedToYouUnique__1"] = { affix = "", "1% of Damage dealt by your Mines is Leeched to you as Life", statOrder = { 4272 }, level = 1, group = "MineDamageLeechedToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [807450540] = { "1% of Damage dealt by your Mines is Leeched to you as Life" }, } }, + ["LifeEnergyShieldRecoveryRateUnique__1"] = { affix = "", "(20-30)% reduced Recovery rate of Life and Energy Shield", statOrder = { 7441 }, level = 1, group = "LifeEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1092546321] = { "(20-30)% reduced Recovery rate of Life and Energy Shield" }, } }, + ["LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1"] = { affix = "", "5% increased Recovery rate of Life and Energy Shield per Power Charge", statOrder = { 7444 }, level = 1, group = "LifeAndEnergyShieldRecoveryRatePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [604671218] = { "5% increased Recovery rate of Life and Energy Shield per Power Charge" }, } }, + ["LosePowerChargeIfNotDetonatedRecentlyUnique__1"] = { affix = "", "Lose a Power Charge each second if you have not Detonated Mines Recently", statOrder = { 8257 }, level = 1, group = "LosePowerChargeIfNotDetonatedRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3530865840] = { "Lose a Power Charge each second if you have not Detonated Mines Recently" }, } }, + ["NotablesGrantMinionDamageTakenUnique__1_"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions take 20% increased Damage", statOrder = { 10926, 10926.1 }, level = 1, group = "NotablesGrantMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [3659983276] = { "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions take 20% increased Damage" }, } }, + ["NotablesGrantMinionMovementSpeedUnique__1_"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions have 25% reduced Movement Speed", statOrder = { 10927, 10927.1 }, level = 1, group = "NotablesGrantMinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3802517517] = { "" }, [3362879252] = { "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions have 25% reduced Movement Speed" }, } }, + ["PassivesGrantTrapMineAddedPhysicalUnique__1_"] = { affix = "", "Passive Skills in Radius also grant: Traps and Mines deal (2-3) to (4-6) added Physical Damage", statOrder = { 10928 }, level = 1, group = "PassivesGrantTrapMineAddedPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3802517517] = { "" }, [576760472] = { "Passive Skills in Radius also grant: Traps and Mines deal (2-3) to (4-6) added Physical Damage" }, } }, + ["PassivesGrantUnarmedAttackSpeedUnique__1_"] = { affix = "", "Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills", statOrder = { 8230 }, level = 1, group = "PassivesGrantUnarmedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3802517517] = { "" }, [3087912144] = { "Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills" }, } }, + ["MovementVelocityOverrideUnique__1"] = { affix = "", "Your Movement Speed is 150% of its base value", statOrder = { 9549 }, level = 1, group = "MovementVelocityOverride", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3945685369] = { "Your Movement Speed is 150% of its base value" }, } }, + ["TravelSkillCooldownRecoveryUnique__1_"] = { affix = "", "(50-80)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4419 }, level = 1, group = "TravelSkillCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "(50-80)% increased Cooldown Recovery Rate of Travel Skills" }, } }, + ["DamageRemovedFromSpectresUnique__1"] = { affix = "", "10% of Damage from Hits is taken from your Raised Spectres' Life before you", statOrder = { 6178 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [54812069] = { "10% of Damage from Hits is taken from your Raised Spectres' Life before you" }, } }, + ["MinionElementalDamageAddedAsChaosUnique__1"] = { affix = "", "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 9433 }, level = 1, group = "MinionElementalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos", "minion" }, tradeHashes = { [247168950] = { "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["LifeRegenerationPerZombieUnique__1"] = { affix = "", "Regenerate 0.6% of Life per second for each Raised Zombie", statOrder = { 7523 }, level = 1, group = "LifeRegenerationPerZombie", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841618445] = { "Regenerate 0.6% of Life per second for each Raised Zombie" }, } }, + ["ManaRegenerationPerSpectreUnique__1"] = { affix = "", "30% increased Mana Regeneration Rate per Raised Spectre", statOrder = { 8324 }, level = 1, group = "ManaRegenerationPerSpectre", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2666795121] = { "30% increased Mana Regeneration Rate per Raised Spectre" }, } }, + ["AttackBlockPerSkeletonUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per Summoned Skeleton", statOrder = { 4583 }, level = 1, group = "AttackBlockPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2445675562] = { "+1% Chance to Block Attack Damage per Summoned Skeleton" }, } }, + ["AttackAndCastSpeedPerRagingSpiritUnique__1"] = { affix = "", "2% increased Attack and Cast Speed per Summoned Raging Spirit", statOrder = { 4869 }, level = 1, group = "AttackAndCastSpeedPerRagingSpirit", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3133579934] = { "2% increased Attack and Cast Speed per Summoned Raging Spirit" }, } }, + ["SupportedByMeatShieldUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Meat Shield", statOrder = { 344 }, level = 1, group = "SupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [858460086] = { "Socketed Gems are Supported by Level 1 Meat Shield" }, } }, + ["ReviveEnemiesOnKillUnique__1"] = { affix = "", "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster", statOrder = { 5985 }, level = 1, group = "ReviveEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2485187927] = { "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster" }, } }, + ["FireResistanceOverrideUnique__1__"] = { affix = "", "Fire Resistance is 75%", statOrder = { 1647 }, level = 1, group = "FireResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [763311546] = { "Fire Resistance is 75%" }, } }, + ["ColdResistanceOverrideUnique__1"] = { affix = "", "Cold Resistance is 75%", statOrder = { 1653 }, level = 1, group = "ColdResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [496075050] = { "Cold Resistance is 75%" }, } }, + ["LightningResistanceOverrideUnique__1_"] = { affix = "", "Lightning Resistance is 75%", statOrder = { 1658 }, level = 1, group = "LightningResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1942151132] = { "Lightning Resistance is 75%" }, } }, + ["ReducedFireResistanceUnique__1"] = { affix = "", "(50-55)% reduced Fire Resistance", statOrder = { 1651 }, level = 1, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1680060098] = { "(50-55)% reduced Fire Resistance" }, } }, + ["ReducedColdResistanceUnique__1"] = { affix = "", "(50-55)% reduced Cold Resistance", statOrder = { 1656 }, level = 1, group = "IncreasedColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4252311791] = { "(50-55)% reduced Cold Resistance" }, } }, + ["ReducedLightningResistanceUnique__1"] = { affix = "", "(50-55)% reduced Lightning Resistance", statOrder = { 1662 }, level = 1, group = "IncreasedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2249211872] = { "(50-55)% reduced Lightning Resistance" }, } }, + ["ManaRegenerationRateWhileMovingUnique__1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate while moving", statOrder = { 8325 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(30-40)% increased Mana Regeneration Rate while moving" }, } }, + ["FungalAroundWhenStationaryUnique__1_"] = { affix = "", "You have Fungal Ground around you while stationary", statOrder = { 6784 }, level = 1, group = "FungalAroundWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [799872465] = { "You have Fungal Ground around you while stationary" }, } }, + ["TriggerFungalGroundOnKillUnique__1_"] = { affix = "", "Trigger Level 10 Contaminate when you Kill an Enemy", statOrder = { 809 }, level = 1, group = "TriggerFungalGroundOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3159312340] = { "Trigger Level 10 Contaminate when you Kill an Enemy" }, } }, + ["EnemiesOnFungalGroundExplodeUnique__1"] = { affix = "", "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage", statOrder = { 6473 }, level = 1, group = "EnemiesOnFungalGroundExplode", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2224428651] = { "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage" }, } }, + ["FrostblinkDurationUnique__1_"] = { affix = "", "Frostblink has 50% increased Duration", statOrder = { 7288 }, level = 1, group = "FrostblinkDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3941271999] = { "Frostblink has 50% increased Duration" }, } }, + ["GrantsFrostblinkSkillUnique__1"] = { affix = "", "Grants Level 10 Frostblink Skill", statOrder = { 633 }, level = 1, group = "GrantsFrostblinkSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2911866787] = { "Grants Level 10 Frostblink Skill" }, } }, + ["AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8"] = { affix = "", "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem", statOrder = { 2742 }, level = 1, group = "AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1302700515] = { "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem" }, } }, + ["VaalPactIfAllSocketedGemsAreRedUniqueTwoHandSword8"] = { affix = "", "You have Vaal Pact while all Socketed Gems are Red", statOrder = { 11005 }, level = 1, group = "VaalPactIfAllSocketedGemsAreRed", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "gem" }, tradeHashes = { [3242537102] = { "You have Vaal Pact while all Socketed Gems are Red" }, } }, ["MultipleEnchantmentsAllowedUnique__1"] = { affix = "", "Can have a second Enchantment Modifier", statOrder = { 13 }, level = 1, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have a second Enchantment Modifier" }, } }, ["MultipleEnchantmentsAllowedUnique__2"] = { affix = "", "Can have 3 additional Enchantment Modifiers", statOrder = { 13 }, level = 65, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have 3 additional Enchantment Modifiers" }, } }, - ["AdditionalProjectilesUnique__1__"] = { affix = "", "Skills fire 2 additional Projectiles", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire 2 additional Projectiles" }, } }, - ["ProjectileModifiersApplyToSplitsUnique__1"] = { affix = "", "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards", statOrder = { 9387, 9387.1 }, level = 50, group = "ProjectileModifiersApplyToSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2057712935] = { "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards" }, } }, - ["MaximumLifeManaEnergyShieldUnique__1"] = { affix = "", "(9-21)% increased maximum Life, Mana and Global Energy Shield", statOrder = { 1570 }, level = 1, group = "MaximumLifeManaEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [3899352861] = { "(9-21)% increased maximum Life, Mana and Global Energy Shield" }, } }, - ["TransfigurationOfBodyUnique__1"] = { affix = "", "Transfiguration of Body", statOrder = { 4601 }, level = 1, group = "TransfigurationOfBody", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [881645355] = { "Transfiguration of Body" }, } }, - ["TransfigurationOfMindUnique__1"] = { affix = "", "Transfiguration of Mind", statOrder = { 4603 }, level = 1, group = "TransfigurationOfMind", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, } }, - ["TransfigurationOfSoulUnique__1_"] = { affix = "", "Transfiguration of Soul", statOrder = { 4597 }, level = 1, group = "TransfigurationOfSoul", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3268519799] = { "Transfiguration of Soul" }, } }, - ["MaximumEnergyShieldPerReservedLifeUnique__1"] = { affix = "", "+30 to maximum Energy Shield per 100 Reserved Life", statOrder = { 1566 }, level = 1, group = "MaximumEnergyShieldPerReservedLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4270089231] = { "+30 to maximum Energy Shield per 100 Reserved Life" }, } }, - ["ChaosDamageRemovedFromManaBeforeLifeUnique__1___"] = { affix = "", "Chaos Damage is taken from Mana before Life", statOrder = { 5736 }, level = 1, group = "ChaosDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHashes = { [3967028570] = { "Chaos Damage is taken from Mana before Life" }, } }, - ["DrainAllManaLightningDamageUnique__1"] = { affix = "", "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds", statOrder = { 9556, 9556.1 }, level = 1, group = "DrainAllManaLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, tradeHashes = { [820827484] = { "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds" }, } }, - ["MultipleOfferingsAllowedUnique__1_"] = { affix = "", "You can have an Offering of each type", statOrder = { 4638 }, level = 62, group = "MultipleOfferingsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [230941555] = { "You can have an Offering of each type" }, } }, - ["OfferingDurationUnique__1"] = { affix = "", "Offering Skills have 50% reduced Duration", statOrder = { 9553 }, level = 1, group = "OfferingDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957407601] = { "Offering Skills have 50% reduced Duration" }, } }, - ["MaximumBlockChanceIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 9117 }, 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" }, } }, - ["PhasingIfBlockedRecentlyUnique__1"] = { affix = "", "You have Phasing if you have Blocked Recently", statOrder = { 9617 }, level = 1, group = "PhasingIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492654051] = { "You have Phasing if you have Blocked Recently" }, } }, - ["AvoidElementalDamagePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Elemental Damage from Hits while Phasing", statOrder = { 4944 }, level = 1, group = "AvoidElementalDamagePhasing", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [143510471] = { "+(8-15)% chance to Avoid Elemental Damage from Hits while Phasing" }, } }, - ["ApplyAilmentsMoreDamageUnique__1"] = { affix = "", "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage", statOrder = { 9505 }, level = 1, group = "ApplyAilmentsMoreDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1345113611] = { "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage" }, } }, - ["CriticalStrikesNotAlwaysApplyAilmentsUnique__1"] = { affix = "", "Critical Strikes do not inherently inflict non-Damaging Ailments", statOrder = { 5980 }, level = 1, group = "CriticalStrikesNotAlwaysApplyAilments", weightKey = { }, weightVal = { }, modTags = { "critical", "ailment" }, tradeHashes = { [249545292] = { "Critical Strikes do not inherently inflict non-Damaging Ailments" }, } }, - ["PermanentPhantasmUnique__1"] = { affix = "", "Summoned Phantasms have no Duration", statOrder = { 10306 }, level = 1, group = "PermanentPhantasm", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1994138363] = { "Summoned Phantasms have no Duration" }, } }, - ["PhantasmGrantsBuffUnique__1"] = { affix = "", "Each Summoned Phantasm grants you Phantasmal Might", statOrder = { 10305 }, level = 1, group = "PhantasmGrantsBuff", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [943553365] = { "Each Summoned Phantasm grants you Phantasmal Might" }, } }, + ["AdditionalProjectilesUnique__1__"] = { affix = "", "Skills fire 2 additional Projectiles", statOrder = { 1815 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire 2 additional Projectiles" }, } }, + ["ProjectileModifiersApplyToSplitsUnique__1"] = { affix = "", "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards", statOrder = { 9520, 9520.1 }, level = 50, group = "ProjectileModifiersApplyToSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2057712935] = { "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards" }, } }, + ["MaximumLifeManaEnergyShieldUnique__1"] = { affix = "", "(9-21)% increased maximum Life, Mana and Global Energy Shield", statOrder = { 1592 }, level = 1, group = "MaximumLifeManaEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [3899352861] = { "(9-21)% increased maximum Life, Mana and Global Energy Shield" }, } }, + ["TransfigurationOfBodyUnique__1"] = { affix = "", "Transfiguration of Body", statOrder = { 4645 }, level = 1, group = "TransfigurationOfBody", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [881645355] = { "Transfiguration of Body" }, } }, + ["TransfigurationOfMindUnique__1"] = { affix = "", "Transfiguration of Mind", statOrder = { 4647 }, level = 1, group = "TransfigurationOfMind", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, } }, + ["TransfigurationOfSoulUnique__1_"] = { affix = "", "Transfiguration of Soul", statOrder = { 4640 }, level = 1, group = "TransfigurationOfSoul", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3268519799] = { "Transfiguration of Soul" }, } }, + ["MaximumEnergyShieldPerReservedLifeUnique__1"] = { affix = "", "+30 to maximum Energy Shield per 100 Reserved Life", statOrder = { 1588 }, level = 1, group = "MaximumEnergyShieldPerReservedLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4270089231] = { "+30 to maximum Energy Shield per 100 Reserved Life" }, } }, + ["ChaosDamageRemovedFromManaBeforeLifeUnique__1___"] = { affix = "", "Chaos Damage is taken from Mana before Life", statOrder = { 5814 }, level = 1, group = "ChaosDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHashes = { [3967028570] = { "Chaos Damage is taken from Mana before Life" }, } }, + ["DrainAllManaLightningDamageUnique__1"] = { affix = "", "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds", statOrder = { 9692, 9692.1 }, level = 1, group = "DrainAllManaLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, tradeHashes = { [820827484] = { "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds" }, } }, + ["MultipleOfferingsAllowedUnique__1_"] = { affix = "", "You can have an Offering of each type", statOrder = { 4682 }, level = 62, group = "MultipleOfferingsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [230941555] = { "You can have an Offering of each type" }, } }, + ["OfferingDurationUnique__1"] = { affix = "", "Offering Skills have 50% reduced Duration", statOrder = { 9689 }, level = 1, group = "OfferingDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957407601] = { "Offering Skills have 50% reduced Duration" }, } }, + ["MaximumBlockChanceIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 9239 }, 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" }, } }, + ["PhasingIfBlockedRecentlyUnique__1"] = { affix = "", "You have Phasing if you have Blocked Recently", statOrder = { 9759 }, level = 1, group = "PhasingIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492654051] = { "You have Phasing if you have Blocked Recently" }, } }, + ["AvoidElementalDamagePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Damage of each Element from Hits while Phasing", statOrder = { 4994 }, level = 1, group = "AvoidElementalDamagePhasing", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [143510471] = { "+(8-15)% chance to Avoid Damage of each Element from Hits while Phasing" }, } }, + ["ApplyAilmentsMoreDamageUnique__1"] = { affix = "", "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage", statOrder = { 9639 }, level = 1, group = "ApplyAilmentsMoreDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1345113611] = { "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage" }, } }, + ["CriticalStrikesNotAlwaysApplyAilmentsUnique__1"] = { affix = "", "Critical Strikes do not inherently inflict non-Damaging Ailments", statOrder = { 6063 }, level = 1, group = "CriticalStrikesNotAlwaysApplyAilments", weightKey = { }, weightVal = { }, modTags = { "critical", "ailment" }, tradeHashes = { [249545292] = { "Critical Strikes do not inherently inflict non-Damaging Ailments" }, } }, + ["PermanentPhantasmUnique__1"] = { affix = "", "Summoned Phantasms have no Duration", statOrder = { 10456 }, level = 1, group = "PermanentPhantasm", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1994138363] = { "Summoned Phantasms have no Duration" }, } }, + ["PhantasmGrantsBuffUnique__1"] = { affix = "", "Each Summoned Phantasm grants you Phantasmal Might", statOrder = { 10455 }, level = 1, group = "PhantasmGrantsBuff", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [943553365] = { "Each Summoned Phantasm grants you Phantasmal Might" }, } }, ["CorruptUntilFiveImplicits"] = { affix = "", "Can be modified while Corrupted", "Can have up to 5 Implicit Modifiers while Item has this Modifier", statOrder = { 11, 14 }, level = 1, group = "ModifyableWhileCorrupted", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161341806] = { "Can have up to 5 Implicit Modifiers while Item has this Modifier" }, [1161337167] = { "Can be modified while Corrupted" }, } }, ["ModifyableWhileCorruptedUnique__1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 11 }, level = 1, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161337167] = { "Can be modified while Corrupted" }, } }, - ["MinionsUseFlaskOnSummonUnique__1__"] = { affix = "", "Your Minions use your Flasks when summoned", statOrder = { 2182 }, level = 50, group = "MinionsUseFlaskOnSummon", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [1827636152] = { "Your Minions use your Flasks when summoned" }, } }, - ["MinionFlaskChargesUsedUnique__1"] = { affix = "", "Minions have (25-40)% reduced Flask Charges used", statOrder = { 2186 }, level = 1, group = "MinionFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [180240697] = { "Minions have (25-40)% reduced Flask Charges used" }, } }, - ["MinionFlaskDurationUnique__1"] = { affix = "", "Minions have (50-80)% increased Flask Effect Duration", statOrder = { 2188 }, level = 1, group = "MinionFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [1932583315] = { "Minions have (50-80)% increased Flask Effect Duration" }, } }, - ["StrikeSkillMemoryUseUnique__1_______"] = { affix = "", "Strike Skills also target the previous location they were used", statOrder = { 9212 }, level = 50, group = "StrikeSkillMemory", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [719626796] = { "Strike Skills also target the previous location they were used" }, } }, - ["NovaSkillsTargetLocationUnique__1__"] = { affix = "", "Nova Spells Cast at the targeted location instead of around you", statOrder = { 9516 }, level = 50, group = "NovaSkillsTargetLocation", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [728246008] = { "Nova Spells Cast at the targeted location instead of around you" }, } }, - ["AttackAndCastSpeedFortifyUnique__1"] = { affix = "", "(15-25)% increased Attack and Cast Speed while at maximum Fortification", statOrder = { 2268 }, level = 1, group = "AttackAndCastSpeedFortify", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1473444150] = { "(15-25)% increased Attack and Cast Speed while at maximum Fortification" }, } }, - ["AlternateFortifyUnique__1_"] = { affix = "", "You do not inherently take less Damage for having Fortification", "+4% chance to Suppress Spell Damage per Fortification", statOrder = { 2266, 2267 }, level = 65, group = "AlternateFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3560157887] = { "You do not inherently take less Damage for having Fortification" }, [2731261141] = { "+4% chance to Suppress Spell Damage per Fortification" }, } }, - ["SummonDoubleOnCritUnique__1"] = { affix = "", "Triggers Level 20 Reflection when Equipped", statOrder = { 814 }, level = 1, group = "SummonDoubleOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [768430540] = { "" }, [3451043685] = { "Triggers Level 20 Reflection when Equipped" }, } }, - ["FireExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3602667353] = { "25% chance to inflict Fire Exposure on Hit" }, } }, - ["ColdExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2630708439] = { "25% chance to inflict Cold Exposure on Hit" }, } }, - ["NearbyEnemiesIncreasedFireColdResistUnique__1_"] = { affix = "", "Nearby Enemies have 50% increased Fire and Cold Resistances", statOrder = { 7892 }, level = 1, group = "NearbyEnemiesIncreasedFireColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [4273356746] = { "Nearby Enemies have 50% increased Fire and Cold Resistances" }, [4252311791] = { "50% increased Cold Resistance" }, [1680060098] = { "50% increased Fire Resistance" }, } }, - ["MetamorphosisItemisedBossDifficult"] = { affix = "", "50% more Life", "50% more Damage", statOrder = { 5262, 6257 }, level = 1, group = "MetamorphosisItemisedBossDifficult", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2692483763] = { "50% more Life" }, [1724092423] = { "50% more Damage" }, } }, - ["ChanceToImpaleUnique__1"] = { affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } }, - ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 8015 }, 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 = { 8012 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, - ["IncreasedAilmentEffectOnEnemiesUnique__1"] = { affix = "", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(15-20)% increased Effect of Non-Damaging Ailments" }, } }, - ["IncreasedAilmentEffectOnEnemiesUnique_2"] = { affix = "", "(20-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-40)% increased Effect of Non-Damaging Ailments" }, } }, - ["ChillingAreasAlsoGrantLightningDamageTakenUnique__1"] = { affix = "", "Enemies in your Chilling Areas take (25-35)% increased Lightning Damage", statOrder = { 5778 }, level = 1, group = "ChillingAreasAlsoGrantLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3923274300] = { "Enemies in your Chilling Areas take (25-35)% increased Lightning Damage" }, } }, - ["ChanceToSapVsEnemiesInChillingAreasUnique__1"] = { affix = "", "(20-30)% chance to Sap Enemies in Chilling Areas", statOrder = { 5720 }, level = 1, group = "ChanceToSapVsEnemiesInChillingAreas", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3057853352] = { "(20-30)% chance to Sap Enemies in Chilling Areas" }, } }, - ["Allow2ActiveBannersUnique__1"] = { affix = "", "Having a placed Banner does not prevent you gaining Valour", statOrder = { 1137 }, level = 1, group = "Allow2ActiveBanners", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2175510000] = { "Having a placed Banner does not prevent you gaining Valour" }, } }, - ["AdditionalMaxStackSnipeUnique"] = { affix = "", "+2 to maximum Snipe Stages", statOrder = { 10089 }, level = 1, group = "AdditionanalMaxStackSnipeUnique", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3821882617] = { "+2 to maximum Snipe Stages" }, } }, - ["GrantsHighLevelSnipeUnique__1"] = { affix = "", "Grants Level 30 Snipe Skill", statOrder = { 59 }, level = 1, group = "GrantsSnipeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2343098806] = { "Grants Level 30 Snipe Skill" }, } }, - ["GrantsHighLevelSnipeSupportUnique__1"] = { affix = "", "Socketed Non-Channelling Bow Skills are Triggered by Snipe", "Socketed Triggered Bow Skills gain a 0.05 second Cooldown", statOrder = { 378, 378.1 }, level = 1, group = "GrantsSnipeSkillSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3282302743] = { "Socketed Non-Channelling Bow Skills are Triggered by Snipe", "Socketed Triggered Bow Skills gain a 0.05 second Cooldown" }, } }, - ["ChanceToDodgeAttacksWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(7-10)% chance to Suppress Spell Damage while Channelling" }, } }, - ["ChanceToDodgeSpellsWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(7-10)% chance to Suppress Spell Damage while Channelling" }, } }, - ["ChanceToSuppressSpellsWhileChannellingUnique__1____"] = { affix = "", "+(14-20)% chance to Suppress Spell Damage while Channelling", statOrder = { 10177 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(14-20)% chance to Suppress Spell Damage while Channelling" }, } }, - ["JewelExpansionPassiveNodes"] = { affix = "", "Adds (2-12) Passive Skills", statOrder = { 4503 }, level = 1, group = "JewelExpansionPassiveNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086156145] = { "Adds (2-12) Passive Skills" }, [3948993189] = { "" }, } }, - ["JewelExpansionPassiveNodesUnique__1"] = { affix = "", "Adds 4 Passive Skills", statOrder = { 4503 }, level = 1, group = "JewelExpansionPassiveNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086156145] = { "Adds 4 Passive Skills" }, [3948993189] = { "" }, } }, - ["JewelExpansionJewelNodesLarge1"] = { affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrder = { 7959 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "1 Added Passive Skill is a Jewel Socket" }, } }, - ["JewelExpansionJewelNodesLarge2___"] = { affix = "of Possibility", "2 Added Passive Skills are Jewel Sockets", statOrder = { 7959 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "2 Added Passive Skills are Jewel Sockets" }, } }, - ["JewelExpansionJewelNodesMedium"] = { affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrder = { 7959 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "1 Added Passive Skill is a Jewel Socket" }, } }, - ["JewelExpansionKeystoneDiscipleOfKitava_"] = { affix = "", "Adds Disciple of Kitava", statOrder = { 7961 }, level = 1, group = "JewelExpansionKeystoneDiscipleOfKitava", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "damage" }, tradeHashes = { [3860869243] = { "Adds Disciple of Kitava" }, } }, - ["JewelExpansionLoneMessenger_"] = { affix = "", "Adds Lone Messenger", statOrder = { 7964 }, level = 1, group = "JewelExpansionLoneMessenger", weightKey = { }, weightVal = { }, modTags = { "damage", "minion", "aura" }, tradeHashes = { [1505850286] = { "Adds Lone Messenger" }, } }, - ["JewelExpansionNaturesPatience"] = { affix = "", "Adds Nature's Patience", statOrder = { 7965 }, level = 1, group = "JewelExpansionNaturesPatience", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1360925132] = { "Adds Nature's Patience" }, } }, - ["JewelExpansionSecretsOfSuffering"] = { affix = "", "Adds Secrets of Suffering", statOrder = { 7967 }, level = 1, group = "JewelExpansionSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "critical", "ailment" }, tradeHashes = { [56720831] = { "Adds Secrets of Suffering" }, } }, - ["JewelExpansionKineticism"] = { affix = "", "Adds Kineticism", statOrder = { 7963 }, level = 1, group = "JewelExpansionKineticism", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1798719926] = { "Adds Kineticism" }, } }, - ["JewelExpansionVeteransAwareness_"] = { affix = "", "Adds Veteran's Awareness", statOrder = { 7968 }, level = 1, group = "JewelExpansionVeteransAwareness", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [1379205566] = { "Adds Veteran's Awareness" }, } }, - ["JewelExpansionHollowPalmTechnique"] = { affix = "", "Adds Hollow Palm Technique", statOrder = { 7962 }, level = 1, group = "JewelExpansionHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1376530950] = { "Adds Hollow Palm Technique" }, } }, - ["ExpansionJewel3JewelSockets"] = { affix = "", "Adds 3 Jewel Socket Passive Skills", statOrder = { 7960 }, level = 1, group = "UniqueExpansionJewel3JewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [247746531] = { "Adds 3 Jewel Socket Passive Skills" }, } }, - ["ExpansionJewelEmptyPassiveUnique__1"] = { affix = "", "Adds 1 Small Passive Skill which grants nothing", statOrder = { 8082 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1085446536] = { "Adds 1 Small Passive Skill which grants nothing" }, } }, - ["ExpansionJewelEmptyPassiveUnique__2"] = { affix = "", "Adds 3 Small Passive Skills which grant nothing", statOrder = { 8082 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1085446536] = { "Adds 3 Small Passive Skills which grant nothing" }, } }, - ["ExpansionJewelEmptyPassiveUnique_3_"] = { affix = "", "Adds 5 Small Passive Skills which grant nothing", statOrder = { 8082 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1085446536] = { "Adds 5 Small Passive Skills which grant nothing" }, } }, - ["ExpansionJewelEmptyPassiveUnique__4"] = { affix = "", "Adds 7 Small Passive Skills which grant nothing", statOrder = { 8082 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1085446536] = { "Adds 7 Small Passive Skills which grant nothing" }, } }, + ["MinionsUseFlaskOnSummonUnique__1__"] = { affix = "", "Your Minions use your Flasks when summoned", statOrder = { 2205 }, level = 50, group = "MinionsUseFlaskOnSummon", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [1827636152] = { "Your Minions use your Flasks when summoned" }, } }, + ["MinionFlaskChargesUsedUnique__1"] = { affix = "", "Minions have (25-40)% reduced Flask Charges used", statOrder = { 2209 }, level = 1, group = "MinionFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [180240697] = { "Minions have (25-40)% reduced Flask Charges used" }, } }, + ["MinionFlaskDurationUnique__1"] = { affix = "", "Minions have (50-80)% increased Flask Effect Duration", statOrder = { 2211 }, level = 1, group = "MinionFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [1932583315] = { "Minions have (50-80)% increased Flask Effect Duration" }, } }, + ["StrikeSkillMemoryUseUnique__1_______"] = { affix = "", "Strike Skills also target the previous location they were used", statOrder = { 9336 }, level = 50, group = "StrikeSkillMemory", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [719626796] = { "Strike Skills also target the previous location they were used" }, } }, + ["NovaSkillsTargetLocationUnique__1__"] = { affix = "", "Nova Spells Cast at the targeted location instead of around you", statOrder = { 9651 }, level = 50, group = "NovaSkillsTargetLocation", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [728246008] = { "Nova Spells Cast at the targeted location instead of around you" }, } }, + ["AttackAndCastSpeedFortifyUnique__1"] = { affix = "", "(15-25)% increased Attack and Cast Speed while at maximum Fortification", statOrder = { 2291 }, level = 1, group = "AttackAndCastSpeedFortify", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1473444150] = { "(15-25)% increased Attack and Cast Speed while at maximum Fortification" }, } }, + ["AlternateFortifyUnique__1_"] = { affix = "", "You do not inherently take less Damage for having Fortification", "+4% chance to Suppress Spell Damage per Fortification", statOrder = { 2289, 2290 }, level = 65, group = "AlternateFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3560157887] = { "You do not inherently take less Damage for having Fortification" }, [2731261141] = { "+4% chance to Suppress Spell Damage per Fortification" }, } }, + ["SummonDoubleOnCritUnique__1"] = { affix = "", "Triggers Level 20 Reflection when Equipped", statOrder = { 835 }, level = 1, group = "SummonDoubleOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [768430540] = { "" }, [3451043685] = { "Triggers Level 20 Reflection when Equipped" }, } }, + ["FireExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3602667353] = { "25% chance to inflict Fire Exposure on Hit" }, } }, + ["ColdExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2630708439] = { "25% chance to inflict Cold Exposure on Hit" }, } }, + ["NearbyEnemiesIncreasedFireColdResistUnique__1_"] = { affix = "", "Nearby Enemies have 50% increased Fire and Cold Resistances", statOrder = { 8002 }, level = 1, group = "NearbyEnemiesIncreasedFireColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [4273356746] = { "Nearby Enemies have 50% increased Fire and Cold Resistances" }, [4252311791] = { "50% increased Cold Resistance" }, [1680060098] = { "50% increased Fire Resistance" }, } }, + ["MetamorphosisItemisedBossDifficult"] = { affix = "", "50% more Life", "50% more Damage", statOrder = { 5335, 6344 }, level = 1, group = "MetamorphosisItemisedBossDifficult", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2692483763] = { "50% more Life" }, [1724092423] = { "50% more Damage" }, } }, + ["ChanceToImpaleUnique__1"] = { affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } }, + ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 8128 }, 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 = { 8125 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, + ["IncreasedAilmentEffectOnEnemiesUnique__1"] = { affix = "", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(15-20)% increased Effect of Non-Damaging Ailments" }, } }, + ["IncreasedAilmentEffectOnEnemiesUnique_2"] = { affix = "", "(20-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-40)% increased Effect of Non-Damaging Ailments" }, } }, + ["ChillingAreasAlsoGrantLightningDamageTakenUnique__1"] = { affix = "", "Enemies in your Chilling Areas take (25-35)% increased Lightning Damage", statOrder = { 5860 }, level = 1, group = "ChillingAreasAlsoGrantLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3923274300] = { "Enemies in your Chilling Areas take (25-35)% increased Lightning Damage" }, } }, + ["ChanceToSapVsEnemiesInChillingAreasUnique__1"] = { affix = "", "(20-30)% chance to Sap Enemies in Chilling Areas", statOrder = { 5798 }, level = 1, group = "ChanceToSapVsEnemiesInChillingAreas", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3057853352] = { "(20-30)% chance to Sap Enemies in Chilling Areas" }, } }, + ["Allow2ActiveBannersUnique__1"] = { affix = "", "Having a placed Banner does not prevent you gaining Valour", statOrder = { 1161 }, level = 1, group = "Allow2ActiveBanners", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2175510000] = { "Having a placed Banner does not prevent you gaining Valour" }, } }, + ["AdditionalMaxStackSnipeUnique"] = { affix = "", "+2 to maximum Snipe Stages", statOrder = { 10234 }, level = 1, group = "AdditionanalMaxStackSnipeUnique", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3821882617] = { "+2 to maximum Snipe Stages" }, } }, + ["GrantsHighLevelSnipeUnique__1"] = { affix = "", "Grants Level 30 Snipe Skill", statOrder = { 60 }, level = 1, group = "GrantsSnipeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2343098806] = { "Grants Level 30 Snipe Skill" }, } }, + ["GrantsHighLevelSnipeSupportUnique__1"] = { affix = "", "Socketed Non-Channelling Bow Skills are Triggered by Snipe", "Socketed Triggered Bow Skills gain a 0.05 second Cooldown", statOrder = { 388, 388.1 }, level = 1, group = "GrantsSnipeSkillSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3282302743] = { "Socketed Non-Channelling Bow Skills are Triggered by Snipe", "Socketed Triggered Bow Skills gain a 0.05 second Cooldown" }, } }, + ["ChanceToDodgeAttacksWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10324 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(7-10)% chance to Suppress Spell Damage while Channelling" }, } }, + ["ChanceToDodgeSpellsWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10324 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(7-10)% chance to Suppress Spell Damage while Channelling" }, } }, + ["ChanceToSuppressSpellsWhileChannellingUnique__1____"] = { affix = "", "+(14-20)% chance to Suppress Spell Damage while Channelling", statOrder = { 10324 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108186648] = { "+(14-20)% chance to Suppress Spell Damage while Channelling" }, } }, + ["JewelExpansionPassiveNodes"] = { affix = "", "Adds (2-12) Passive Skills", statOrder = { 4541 }, level = 1, group = "JewelExpansionPassiveNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086156145] = { "Adds (2-12) Passive Skills" }, [3948993189] = { "" }, } }, + ["JewelExpansionPassiveNodesUnique__1"] = { affix = "", "Adds 4 Passive Skills", statOrder = { 4541 }, level = 1, group = "JewelExpansionPassiveNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086156145] = { "Adds 4 Passive Skills" }, [3948993189] = { "" }, } }, + ["JewelExpansionJewelNodesLarge1"] = { affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrder = { 8070 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "1 Added Passive Skill is a Jewel Socket" }, } }, + ["JewelExpansionJewelNodesLarge2___"] = { affix = "of Possibility", "2 Added Passive Skills are Jewel Sockets", statOrder = { 8070 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "2 Added Passive Skills are Jewel Sockets" }, } }, + ["JewelExpansionJewelNodesMedium"] = { affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrder = { 8070 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4079888060] = { "1 Added Passive Skill is a Jewel Socket" }, } }, + ["JewelExpansionKeystoneDiscipleOfKitava_"] = { affix = "", "Adds Disciple of Kitava", statOrder = { 8072 }, level = 1, group = "JewelExpansionKeystoneDiscipleOfKitava", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "damage" }, tradeHashes = { [3860869243] = { "Adds Disciple of Kitava" }, } }, + ["JewelExpansionLoneMessenger_"] = { affix = "", "Adds Lone Messenger", statOrder = { 8075 }, level = 1, group = "JewelExpansionLoneMessenger", weightKey = { }, weightVal = { }, modTags = { "damage", "minion", "aura" }, tradeHashes = { [1505850286] = { "Adds Lone Messenger" }, } }, + ["JewelExpansionNaturesPatience"] = { affix = "", "Adds Nature's Patience", statOrder = { 8076 }, level = 1, group = "JewelExpansionNaturesPatience", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1360925132] = { "Adds Nature's Patience" }, } }, + ["JewelExpansionSecretsOfSuffering"] = { affix = "", "Adds Secrets of Suffering", statOrder = { 8078 }, level = 1, group = "JewelExpansionSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "critical", "ailment" }, tradeHashes = { [56720831] = { "Adds Secrets of Suffering" }, } }, + ["JewelExpansionKineticism"] = { affix = "", "Adds Kineticism", statOrder = { 8074 }, level = 1, group = "JewelExpansionKineticism", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1798719926] = { "Adds Kineticism" }, } }, + ["JewelExpansionVeteransAwareness_"] = { affix = "", "Adds Veteran's Awareness", statOrder = { 8079 }, level = 1, group = "JewelExpansionVeteransAwareness", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [1379205566] = { "Adds Veteran's Awareness" }, } }, + ["JewelExpansionHollowPalmTechnique"] = { affix = "", "Adds Hollow Palm Technique", statOrder = { 8073 }, level = 1, group = "JewelExpansionHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [1376530950] = { "Adds Hollow Palm Technique" }, } }, + ["ExpansionJewel3JewelSockets"] = { affix = "", "Adds 3 Jewel Socket Passive Skills", statOrder = { 8071 }, level = 1, group = "UniqueExpansionJewel3JewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [247746531] = { "Adds 3 Jewel Socket Passive Skills" }, } }, + ["ExpansionJewelEmptyPassiveUnique__1"] = { affix = "", "Adds 1 Small Passive Skill which grants nothing", statOrder = { 8195 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1085446536] = { "Adds 1 Small Passive Skill which grants nothing" }, } }, + ["ExpansionJewelEmptyPassiveUnique__2"] = { affix = "", "Adds 3 Small Passive Skills which grant nothing", statOrder = { 8195 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1085446536] = { "Adds 3 Small Passive Skills which grant nothing" }, } }, + ["ExpansionJewelEmptyPassiveUnique_3_"] = { affix = "", "Adds 5 Small Passive Skills which grant nothing", statOrder = { 8195 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1085446536] = { "Adds 5 Small Passive Skills which grant nothing" }, } }, + ["ExpansionJewelEmptyPassiveUnique__4"] = { affix = "", "Adds 7 Small Passive Skills which grant nothing", statOrder = { 8195 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1085446536] = { "Adds 7 Small Passive Skills which grant nothing" }, } }, ["LocalIncreasedEffectPathToClassStartUnique__1"] = { affix = "", "This Jewel's Socket has 25% increased effect per Allocated Passive Skill between", "it and your Class' starting location", statOrder = { 9, 9.1 }, level = 1, group = "LocalIncreasedEffectPathToClassStart", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [372478711] = { "This Jewel's Socket has 25% increased effect per Allocated Passive Skill between", "it and your Class' starting location" }, } }, - ["SupportSkitterBotAilmentAuraReplaceWithCurse____1"] = { affix = "", "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead", "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead", statOrder = { 7984, 8011 }, level = 65, group = "UniqueReplaceSkitterbotAilmentAura", weightKey = { }, weightVal = { }, modTags = { "caster", "minion", "curse" }, tradeHashes = { [1809329372] = { "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead" }, [625885138] = { "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead" }, } }, - ["AttackLightningDamageMaximumManaUnique__1__"] = { affix = "", "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana", statOrder = { 4885 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana" }, } }, - ["LoseManaOnAttackSkillUnique__1"] = { affix = "", "Lose 3% of Mana when you use an Attack Skill", statOrder = { 8143 }, level = 1, group = "LoseManaOnAttackSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [113147867] = { "Lose 3% of Mana when you use an Attack Skill" }, } }, - ["StrengthPerPointToClassStartUnique__1"] = { affix = "", "+5 to Strength", statOrder = { 1177 }, level = 1, group = "StrengthPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+5 to Strength" }, } }, - ["DexterityPerPointToClassStartUnique__1"] = { affix = "", "+5 to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, - ["IntelligencePerPointToClassStartUnique__1"] = { affix = "", "+5 to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligencePerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+5 to Intelligence" }, } }, - ["LifePerPointToClassStartUnique__1_"] = { affix = "", "+5 to maximum Life", statOrder = { 1569 }, level = 1, group = "LifePerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+5 to maximum Life" }, } }, - ["ManaPerPointToClassStartUnique__1"] = { affix = "", "+5 to maximum Mana", statOrder = { 1579 }, level = 1, group = "ManaPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+5 to maximum Mana" }, } }, - ["EnergyShieldPerPointToClassStartUnique__1"] = { affix = "", "+5 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShieldPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+5 to maximum Energy Shield" }, } }, - ["ArmourPerPointToClassStartUnique__1"] = { affix = "", "+40 to Armour", statOrder = { 1539 }, level = 1, group = "ArmourPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+40 to Armour" }, } }, - ["EvasionPerPointToClassStartUnique__1"] = { affix = "", "+40 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+40 to Evasion Rating" }, } }, - ["AccuracyPerPointToClassStartUnique__1"] = { affix = "", "+40 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "AccuracyPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+40 to Accuracy Rating" }, } }, - ["EnemiesExplodeOnDeathChaosGloriousMadnessUnique1"] = { affix = "", "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage", statOrder = { 10706 }, level = 1, group = "EnemiesExplodeOnDeathChaosGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2780297117] = { "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage" }, } }, - ["AllDamageCanPoisonGloriousMadnessUnique___1"] = { affix = "", "All Damage inflicts Poison while affected by Glorious Madness", statOrder = { 10702 }, level = 1, group = "AllDamageCanPoisonGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3359218839] = { "All Damage inflicts Poison while affected by Glorious Madness" }, } }, - ["SpellBlockWhileInOffHandUnique_1"] = { affix = "", "+(30-45)% Chance to Block Spell Damage while in Off Hand", statOrder = { 1161 }, level = 1, group = "SpellBlockWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2040964235] = { "+(30-45)% Chance to Block Spell Damage while in Off Hand" }, } }, - ["AllDamageFromTriggeredSpellsCanPoisonUnique_1"] = { affix = "", "All Damage with Triggered Spells can Poison", statOrder = { 10434 }, level = 85, group = "AllDamageFromTriggeredSpellsCanPoison", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, tradeHashes = { [373509484] = { "All Damage with Triggered Spells can Poison" }, } }, - ["TriggeredSpellsPoisonOnHitUnique_1"] = { affix = "", "Triggered Spells Poison on Hit", statOrder = { 10433 }, level = 1, group = "TriggeredSpellsPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, tradeHashes = { [3484434547] = { "Triggered Spells Poison on Hit" }, } }, - ["SupportVirulenceSpellsCastOnBlockUnique_1"] = { affix = "", "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown", statOrder = { 828 }, level = 1, group = "CastSocketedSpellsOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [1565744562] = { "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown" }, } }, - ["FortifyEffectSelfGloriousMadnessUnique1"] = { affix = "", "+60 to maximum Fortification while affected by Glorious Madness", statOrder = { 10719 }, level = 1, group = "FortifyEffectSelfGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2611224062] = { "+60 to maximum Fortification while affected by Glorious Madness" }, } }, - ["DoubleDamageChanceGloriousMadnessUnique_1"] = { affix = "", "20% chance to deal Double Damage while affected by Glorious Madness", statOrder = { 10703 }, level = 1, group = "DoubleDamageChanceGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1299868012] = { "20% chance to deal Double Damage while affected by Glorious Madness" }, } }, - ["ElementalConfluxesGloriousMadnessUnique1"] = { affix = "", "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", statOrder = { 10708 }, level = 1, group = "ElementalConfluxesGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3909952544] = { "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness" }, } }, - ["ElementalAilmentImmunityGloriousMadnessUnique1"] = { affix = "", "Immune to Elemental Ailments while affected by Glorious Madness", statOrder = { 10710 }, level = 1, group = "ElementalAilmentImmunityGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1065479853] = { "Immune to Elemental Ailments while affected by Glorious Madness" }, } }, - ["MovementSpeedUnique_42"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["GrantEmbraceMadnessSkillUnique1"] = { affix = "", "Grants Level 1 Embrace Madness Skill", statOrder = { 701 }, level = 1, group = "GrantEmbraceMadnessSkillDisplay", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1749783861] = { "Grants Level 1 Embrace Madness Skill" }, } }, - ["LocalAfflictionJewelDisplaySmallNodesGrantNothingUnique_1"] = { affix = "", "Added Small Passive Skills grant Nothing", statOrder = { 7511 }, level = 1, group = "LocalAfflictionJewelDisplaySmallNodesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2557943734] = { "Added Small Passive Skills grant Nothing" }, } }, - ["AttackSpeedAfterSavageHitTakenUnique__1"] = { affix = "", "40% increased Attack Speed if you've taken a Savage Hit Recently", statOrder = { 3447 }, level = 1, group = "AttackSpeedAfterSavageHitTaken", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3842406602] = { "40% increased Attack Speed if you've taken a Savage Hit Recently" }, } }, - ["FrenzyChargeOnCritCloseRangeUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range", statOrder = { 6755 }, level = 1, group = "FrenzyChargeOnCritCloseRange", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [911695185] = { "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range" }, } }, - ["BleedDotMultiplierPerFrenzyChargeUnique__1_"] = { affix = "", "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge", statOrder = { 5106 }, level = 1, group = "BleedDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [2583415204] = { "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge" }, } }, - ["FasterBleedPerFrenzyChargeUnique__1"] = { affix = "", "Bleeding you inflict deals Damage 4% faster per Frenzy Charge", statOrder = { 6544 }, level = 1, group = "FasterBleedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1670470989] = { "Bleeding you inflict deals Damage 4% faster per Frenzy Charge" }, } }, - ["CriticalBleedDotMultiplierUnique__1_"] = { affix = "", "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes", statOrder = { 1249 }, level = 1, group = "CriticalBleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1454648374] = { "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes" }, } }, - ["BleedDotMultiplier2HImplicit1"] = { affix = "", "+20% to Damage over Time Multiplier for Bleeding", statOrder = { 1248 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+20% to Damage over Time Multiplier for Bleeding" }, } }, - ["LocalWitherOnHitChanceUnique__2"] = { affix = "", "Inflict Withered for 2 seconds on Hit with this Weapon", statOrder = { 4411 }, level = 1, group = "LocalWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1226121733] = { "Inflict Withered for 2 seconds on Hit with this Weapon" }, } }, - ["WitherOnHitChanceUnique__1"] = { affix = "", "(20-25)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4397 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1957711555] = { "(20-25)% chance to inflict Withered for 2 seconds on Hit" }, } }, - ["CannotPenetrateResistancesUnique__1"] = { affix = "", "Your Hits cannot Penetrate or ignore Elemental Resistances", statOrder = { 5440 }, level = 1, group = "CannotPenetrateResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3091072796] = { "Your Hits cannot Penetrate or ignore Elemental Resistances" }, } }, - ["WitherGrantsElementalDamageTakenUnique__1__"] = { affix = "", "Enemies take 4% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4398, 4398.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3507915723] = { "Enemies take 4% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them" }, } }, - ["ActivateHeraldOfThunderOnShockUnique__1"] = { affix = "", "Herald of Thunder also creates a storm when you Shock an Enemy", statOrder = { 5907 }, level = 1, group = "ActivateHeraldOfThunderOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [278339309] = { "Herald of Thunder also creates a storm when you Shock an Enemy" }, } }, - ["TakeDamageWhenHeraldOfThunderHitsUnique__1__"] = { affix = "", "Take 250 Lightning Damage when Herald of Thunder Hits an Enemy", statOrder = { 10351 }, level = 1, group = "TakeDamageWhenHeraldOfThunderHits", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2007062029] = { "Take 250 Lightning Damage when Herald of Thunder Hits an Enemy" }, } }, - ["HeraldOfThunderBoltFrequencyUnique__1"] = { affix = "", "Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency", statOrder = { 7125 }, level = 1, group = "HeraldOfThunderBoltFrequency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [28299254] = { "Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency" }, } }, - ["RagingSpiritFireSplashDamageUnique__1"] = { affix = "", "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets", statOrder = { 10298, 10298.1 }, level = 1, group = "RagingSpiritSplashDamage", weightKey = { }, weightVal = { }, modTags = { "red_herring", "elemental", "fire", "minion" }, tradeHashes = { [221328679] = { "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets" }, } }, - ["FragileRegrowthLifeRegenerationUnique__1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.7% of Life Regenerated per second per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4400, 4401, 4402, 6835 }, level = 1, group = "FragileRegrowthLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [223497523] = { "" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, } }, - ["FragileRegrowthLifeRegenerationUnique__2_"] = { affix = "", "Maximum 5 Fragile Regrowth", "0.7% of Life Regenerated per second per Fragile Regrowth", "Gain up to maximum Fragile Regrowth when Hit", "Lose 1 Fragile Regrowth each second", statOrder = { 4400, 4401, 6827, 6835 }, level = 1, group = "FragileRegrowthLifeRegenerationReverse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2796308895] = { "Gain up to maximum Fragile Regrowth when Hit" }, [1173537953] = { "Maximum 5 Fragile Regrowth" }, [223497523] = { "" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, [3841984913] = { "Lose 1 Fragile Regrowth each second" }, } }, - ["MaximumESLeechAmountUnique__1_"] = { affix = "", "50% reduced Maximum Recovery per Energy Shield Leech", statOrder = { 1726 }, level = 1, group = "MaximumESLeechAmount", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3589396689] = { "50% reduced Maximum Recovery per Energy Shield Leech" }, } }, - ["ESLeechFromAttacksNotRemovedOnFullESUnique__1"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6437 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1004885987] = { "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield" }, } }, - ["MaximumESLeechAmountDoubledUnique__1"] = { affix = "", "Maximum Recovery per Energy Shield Leech is Doubled", statOrder = { 9137 }, level = 1, group = "MaximumESLeechAmountDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4113811490] = { "Maximum Recovery per Energy Shield Leech is Doubled" }, } }, - ["EnemiesKilledApplyImpaleDamageUnique__1"] = { affix = "", "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies", statOrder = { 7312 }, level = 1, group = "EnemiesKilledApplyImpaleDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3927388937] = { "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies" }, } }, - ["ArmourAppliesToLightningDamageUnique__1_"] = { affix = "", "Armour also applies to Lightning Damage taken from Hits", statOrder = { 4989 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "Armour also applies to Lightning Damage taken from Hits" }, } }, - ["LightningResistNoReductionUnique__1_"] = { affix = "", "Lightning Resistance does not affect Lightning Damage taken", statOrder = { 7463 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning Damage taken" }, } }, - ["DealNoNonLightningDamageUnique__1_"] = { affix = "", "Deal no Non-Lightning Damage", statOrder = { 2794 }, level = 1, group = "DealNoNonLightningDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2075742842] = { "Deal no Non-Lightning Damage" }, } }, - ["NearbyEnemyLightningResistanceEqualUnique__1"] = { affix = "", "Nearby Enemies have Lightning Resistance equal to yours", statOrder = { 9462 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3549734978] = { "Nearby Enemies have Lightning Resistance equal to yours" }, } }, - ["SupportedByIntensifyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 316 }, level = 1, group = "SupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [28821524] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["ShockedGroundWhileMovingUnique__1_"] = { affix = "", "Drops Shocked Ground while moving, lasting 2 seconds", statOrder = { 4311 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3002060175] = { "Drops Shocked Ground while moving, lasting 2 seconds" }, } }, - ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_"] = { affix = "", "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 810 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [252427115] = { "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength" }, } }, - ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2"] = { affix = "", "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 810 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [252427115] = { "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength" }, } }, - ["ProjectileDamageBloodStanceUnique__1"] = { affix = "", "(40-60)% increased Projectile Damage while in Blood Stance", statOrder = { 10216 }, level = 1, group = "ProjectileDamageBloodStance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2982500944] = { "(40-60)% increased Projectile Damage while in Blood Stance" }, } }, - ["LifeRegenerationBloodStanceUnique__1"] = { affix = "", "Regenerate (150-200) Life per Second while in Blood Stance", statOrder = { 10215 }, level = 1, group = "LifeRegenerationBloodStance", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [550848224] = { "Regenerate (150-200) Life per Second while in Blood Stance" }, } }, - ["AreaOfEffectSandStanceUnique__1"] = { affix = "", "(20-30)% increased Area of Effect while in Sand Stance", statOrder = { 10221 }, level = 1, group = "AreaOfEffectSandStance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1647746883] = { "(20-30)% increased Area of Effect while in Sand Stance" }, } }, - ["EvasionRatingSandStanceUnique__1"] = { affix = "", "+(700-1000) to Evasion Rating while in Sand Stance", statOrder = { 10217 }, level = 1, group = "EvasionRatingSandStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1922061483] = { "+(700-1000) to Evasion Rating while in Sand Stance" }, } }, - ["MaxRagePerEquippedSwordUnique__1____"] = { affix = "", "+10 to Maximum Rage while wielding a Sword", statOrder = { 9181 }, level = 1, group = "MaxRagePerEquippedSword", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [406887685] = { "+10 to Maximum Rage while wielding a Sword" }, } }, - ["BleedDotMultiplierPerRagePerEquippedAxeUnique__1"] = { affix = "", "Each Rage also grants +2% to Damage over Time Multiplier for Bleeding while wielding an Axe", statOrder = { 5103 }, level = 1, group = "BleedDotMultiplierPerRagePerEquippedAxe", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [769468514] = { "Each Rage also grants +2% to Damage over Time Multiplier for Bleeding while wielding an Axe" }, } }, - ["LifeManaESLeechRateUnique__1"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7383 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [2314393054] = { "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech" }, } }, - ["RandomSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level (1-10) (1-172)", statOrder = { 451 }, level = 1, group = "RandomSupport1", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4036547045] = { "Socketed Gems are Supported by Level (1-10) 0" }, [2218073584] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, - ["RandomSupportUnique__2"] = { affix = "", "Socketed Gems are Supported by Level (25-35) (1-172)", statOrder = { 452 }, level = 1, group = "RandomSupport2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1700437154] = { "Socketed Gems are Supported by Level (25-35) 0" }, [4135300657] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, - ["RandomSupportUnique__3"] = { affix = "", "Socketed Gems are Supported by Level (1-10) (1-172)", statOrder = { 451 }, level = 1, group = "RandomSupport1", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4036547045] = { "Socketed Gems are Supported by Level (1-10) 0" }, [2218073584] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, - ["RandomSupportUnique__4_"] = { affix = "", "Socketed Gems are Supported by Level (25-35) (1-172)", statOrder = { 452 }, level = 1, group = "RandomSupport2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1700437154] = { "Socketed Gems are Supported by Level (25-35) 0" }, [4135300657] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, - ["RandomSkillUnique__1"] = { affix = "", "+3 to Level of all (1-286) Gems", statOrder = { 1618 }, level = 71, group = "RandomSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3854777240] = { "" }, [2362975498] = { "+3 to Level of all 0 Gems" }, } }, - ["GrantsDashUnique__1_"] = { affix = "", "Grants Level 30 Dash Skill", statOrder = { 698 }, level = 1, group = "GrantsDash", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3883691934] = { "Grants Level 30 Dash Skill" }, } }, - ["DisableTravelSkillsExceptDashUnique__1"] = { affix = "", "Travel Skills other than Dash are Disabled", statOrder = { 10700 }, level = 1, group = "DisableTravelSkillsExceptDash", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3066073024] = { "Travel Skills other than Dash are Disabled" }, } }, - ["ArrowsIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently", statOrder = { 1795 }, level = 1, group = "ArrowsIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2482927318] = { "Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently" }, } }, - ["AttackSpeedIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Attack Speed if you haven't Cast Dash recently", statOrder = { 4898 }, level = 1, group = "AttackSpeedIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1003608257] = { "(20-30)% increased Attack Speed if you haven't Cast Dash recently" }, } }, - ["MovementSpeedIfUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Movement Speed if you've Cast Dash recently", statOrder = { 9421 }, level = 1, group = "MovementSpeedIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2659793306] = { "(20-30)% increased Movement Speed if you've Cast Dash recently" }, } }, - ["EvasionRatingIfUsedDashRecentlyUnique__1"] = { affix = "", "(100-160)% increased Evasion Rating if you've Cast Dash recently", statOrder = { 6493 }, level = 1, group = "EvasionRatingIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [237513297] = { "(100-160)% increased Evasion Rating if you've Cast Dash recently" }, } }, - ["MinionLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have", statOrder = { 4403, 4403.1 }, level = 1, group = "MinionLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [433536969] = { "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have" }, } }, - ["MinionChaosDamageDoesNotBypassESUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Minions' Energy Shield", statOrder = { 4404 }, level = 1, group = "MinionChaosDamageDoesNotBypassES", weightKey = { }, weightVal = { }, modTags = { "chaos", "minion" }, tradeHashes = { [3008104268] = { "Chaos Damage taken does not bypass Minions' Energy Shield" }, } }, - ["MinionHitsIgnoreResistanceWithESUnique__1_"] = { affix = "", "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances", statOrder = { 4406 }, level = 1, group = "MinionHitsIgnoreResistanceWithES", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "minion" }, tradeHashes = { [1360359242] = { "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances" }, } }, - ["MinionEnergyShieldRechargeDelayUnique__1"] = { affix = "", "Minions have (50-100)% faster start of Energy Shield Recharge", statOrder = { 4405 }, level = 1, group = "MinionEnergyShieldRechargeDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, tradeHashes = { [2834476618] = { "Minions have (50-100)% faster start of Energy Shield Recharge" }, } }, - ["DamageBypassEnergyShieldBlockUnique__1"] = { affix = "", "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield", statOrder = { 6022, 6022.1 }, level = 1, group = "DamageBypassEnergyShieldBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2331104018] = { "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield" }, } }, - ["NoEnergyShieldUnique__1"] = { affix = "", "Has no Energy Shield", statOrder = { 1083 }, level = 1, group = "LocalNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3109875952] = { "Has no Energy Shield" }, } }, - ["CannotBlockWithNoEnergyShieldUnique__1"] = { affix = "", "Cannot Block while you have no Energy Shield", statOrder = { 2733 }, level = 1, group = "CannotBlockWithNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3890287045] = { "Cannot Block while you have no Energy Shield" }, } }, - ["BlindReflectedToSelfUnique__1"] = { affix = "", "Blind you inflict is Reflected to you", statOrder = { 5222 }, level = 1, group = "BlindReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2458598175] = { "Blind you inflict is Reflected to you" }, } }, - ["BlindDoesNotAffectLightRadiusUnique__1"] = { affix = "", "Blind does not affect your Light Radius", statOrder = { 5218 }, level = 1, group = "BlindDoesNotAffectLightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3013171896] = { "Blind does not affect your Light Radius" }, } }, - ["NotablesGrantManaCostAndSpellDamageUnique1"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: 10% increased Mana Cost of Skills and 20% increased Spell Damage", statOrder = { 10762, 10762.1 }, level = 1, group = "NotablesGrantManaCostAndSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [3802517517] = { "" }, [3511232600] = { "" }, [2636000900] = { "" }, } }, - ["UnleashSealGainFrequencyUnique__1"] = { affix = "", "Skills Supported by Unleash have (30-50)% increased Seal gain frequency", statOrder = { 10320 }, level = 1, group = "UnleashSealGainFrequency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1504513372] = { "Skills Supported by Unleash have (30-50)% increased Seal gain frequency" }, } }, - ["UnholyMightOnZeroEnergyShieldUnique__1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2736 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2353201291] = { "You have Unholy Might while you have no Energy Shield" }, } }, - ["ProfaneGroundInsteadOfConsecratedGround__1_"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5908 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, - ["StalkingPustuleOnKillUnique__1"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 817 }, level = 50, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1662669872] = { "Trigger Level 1 Stalking Pustule on Kill" }, } }, - ["BlindDoesNotAffectHitChanceUnique__1"] = { affix = "", "Unaffected by Blind", statOrder = { 10456 }, level = 1, group = "BlindDoesNotAffectHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4193902224] = { "Unaffected by Blind" }, } }, - ["MaledictionOnBlindWhileBlindedUnique__1"] = { affix = "", "Enemies Blinded by you have Malediction", statOrder = { 6366 }, level = 1, group = "MaledictionOnBlindWhileBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2621660713] = { "Enemies Blinded by you have Malediction" }, } }, - ["AttackImpaleChanceUnique__1"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(10-20)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceUnique__2"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(10-20)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["AttackImpaleChanceUnique__3"] = { affix = "", "(15-30)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(15-30)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["GrantsBrandDetonateUnique__1"] = { affix = "", "Grants Level 20 Brandsurge Skill", statOrder = { 692 }, level = 85, group = "GrantsBrandDetonate", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2859437049] = { "Grants Level 20 Brandsurge Skill" }, } }, - ["BrandDurationUnique__1"] = { affix = "", "Brand Skills have (50-100)% increased Duration", statOrder = { 10039 }, level = 1, group = "BrandDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (50-100)% increased Duration" }, } }, - ["SummonAdditionalBrandUnique__1"] = { affix = "", "Skills which create Brands create an additional Brand", statOrder = { 4567 }, level = 1, group = "SummonAdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3741633972] = { "Skills which create Brands create an additional Brand" }, } }, - ["AttackSpeedChangedStanceUnique__1"] = { affix = "", "(25-30)% increased Attack Speed if you've changed Stance Recently", statOrder = { 10223 }, level = 72, group = "AttackSpeedChangedStance", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2188905761] = { "(25-30)% increased Attack Speed if you've changed Stance Recently" }, } }, - ["WarcryInfiniteEnemyPowerUnique__1__"] = { affix = "", "Warcries have infinite Power", statOrder = { 10570 }, level = 1, group = "WarcryInfiniteEnemyPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1139939070] = { "Warcries have infinite Power" }, } }, - ["KeystoneCallToArmsUnique__2_"] = { affix = "", "Call to Arms", statOrder = { 10774 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, - ["WarcryGrantsArcaneSurgeUnique__1"] = { affix = "", "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%", statOrder = { 4709 }, level = 1, group = "WarcryGrantsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3399924348] = { "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%" }, } }, - ["WarcryTauntChaosExplosionUnique__1_"] = { affix = "", "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage", statOrder = { 6399 }, level = 1, group = "WarcryTauntChaosExplosion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2937093415] = { "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage" }, } }, - ["Curse25PercentHinderEnemyUnique__1"] = { affix = "", "Enemies Cursed by you are Hindered if 25% of Curse Duration expired", statOrder = { 10613 }, level = 77, group = "Curse25PercentHinderEnemy", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [313419608] = { "Enemies Cursed by you are Hindered if 25% of Curse Duration expired" }, } }, - ["Curse50PercentCurseEffectUnique__1"] = { affix = "", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 10615 }, level = 1, group = "Curse50PercentCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2339022735] = { "Your Curses have 25% increased Effect if 50% of Curse Duration expired" }, } }, - ["Curse75PercentEnemyDamageTakenUnique__1__"] = { affix = "", "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired", statOrder = { 10616 }, level = 1, group = "Curse75PercentEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [2057136736] = { "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired" }, } }, - ["SpellsAlwaysCritFinalRepeatUnique__1_"] = { affix = "", "Spell Skills always deal Critical Strikes on final Repeat", statOrder = { 10165 }, level = 80, group = "SpellsAlwaysCritFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3738009328] = { "Spell Skills always deal Critical Strikes on final Repeat" }, } }, - ["SpellsNeverCritExceptFinalRepeatUnique__1"] = { affix = "", "Spell Skills cannot deal Critical Strikes except on final Repeat", statOrder = { 10168 }, level = 1, group = "SpellsNeverCritExceptFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2516869940] = { "Spell Skills cannot deal Critical Strikes except on final Repeat" }, } }, - ["SpellsCriticalMultiplierFinalRepeatUnique__1"] = { affix = "", "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat", statOrder = { 10166 }, level = 1, group = "SpellsCriticalMultiplierFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4128319542] = { "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat" }, } }, - ["NonCriticalStrikesLessDamageUnique__1"] = { affix = "", "Non-critical strikes deal 80% less Damage", statOrder = { 2713 }, level = 1, group = "NonCriticalDamageMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1711683262] = { "Non-critical strikes deal 80% less Damage" }, } }, - ["MaximumRageUnique__1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9786 }, level = 85, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+10 to Maximum Rage" }, } }, - ["MaximumRageUnique__2"] = { affix = "", "+5 to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+5 to Maximum Rage" }, } }, - ["MaximumRageUnique__3"] = { affix = "", "+(-5-5) to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-5-5) to Maximum Rage" }, } }, - ["MaximumRageImplicitE1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+10 to Maximum Rage" }, } }, - ["MaximumRageImplicitE2"] = { affix = "", "+15 to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+15 to Maximum Rage" }, } }, - ["MaximumRageImplicitE3"] = { affix = "", "+20 to Maximum Rage", statOrder = { 9786 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+20 to Maximum Rage" }, } }, - ["RageOnMeleeHitE1"] = { affix = "", "Gain 3 Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 3 Rage on Melee Hit" }, } }, - ["RageOnMeleeHitE2"] = { affix = "", "Gain 4 Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 4 Rage on Melee Hit" }, } }, - ["RageOnMeleeHitE3"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 5 Rage on Melee Hit" }, } }, - ["EnemiesCrushedWithRageUnique__1_"] = { affix = "", "Nearby Enemies are Crushed while you have at least 25 Rage", statOrder = { 9453 }, level = 1, group = "EnemiesCrushedWithRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3069588220] = { "Nearby Enemies are Crushed while you have at least 25 Rage" }, } }, - ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 857 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [798785332] = { "" }, [156096868] = { "50% increased Duration" }, } }, - ["JewelImplicitLifeRegeneration"] = { affix = "", "Regenerate 0.1% of Life per second", statOrder = { 1944 }, level = 1, group = "JewelImplicitLifeRegeneration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.1% of Life per second" }, } }, - ["JewelImplicitEnergyShieldRechargeRate"] = { affix = "", "(3-6)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "JewelImplicitEnergyShieldRechargeRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(3-6)% increased Energy Shield Recharge Rate" }, } }, - ["JewelImplicitTotemPlacementSpeed"] = { affix = "", "(4-6)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "JewelImplicitTotemPlacementSpeed", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(4-6)% increased Totem Placement speed" }, } }, - ["JewelImplicitDamageTakenGainedAsMana"] = { affix = "", "1% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "JewelImplicitDamageTakenGainedAsMana", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "1% of Damage taken Recouped as Mana" }, } }, - ["JewelImplicitLifeLeechRate"] = { affix = "", "20% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "JewelImplicitLifeLeechRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "20% increased total Recovery per second from Life Leech" }, } }, - ["JewelImplicitManaLeechRate"] = { affix = "", "20% increased total Recovery per second from Mana Leech", statOrder = { 2158 }, level = 1, group = "JewelImplicitManaLeechRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [690135178] = { "20% increased total Recovery per second from Mana Leech" }, } }, - ["JewelImplicitAuraAreaOfEffect"] = { affix = "", "(3-6)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "JewelImplicitAuraAreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(3-6)% increased Area of Effect of Aura Skills" }, } }, - ["JewelImplicitMinionLife___"] = { affix = "", "Minions have (3-5)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "JewelImplicitMinionLife", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (3-5)% increased maximum Life" }, } }, - ["JewelImplicitMovementSpeed"] = { affix = "", "1% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "JewelImplicitMovementSpeed", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "1% increased Movement Speed" }, } }, - ["JewelImplicitLightRadius"] = { affix = "", "(3-6)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "JewelImplicitLightRadius", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(3-6)% increased Light Radius" }, } }, - ["JewelImplicitFlaskDuration"] = { affix = "", "1% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "JewelImplicitFlaskDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "1% increased Flask Effect Duration" }, } }, - ["JewelImplicitReducedChillEffect"] = { affix = "", "15% reduced Effect of Chill on you", statOrder = { 1645 }, level = 1, group = "JewelImplicitReducedChillEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "15% reduced Effect of Chill on you" }, } }, - ["JewelImplicitReducedFreezeDuration_"] = { affix = "", "15% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "JewelImplicitReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "15% reduced Freeze Duration on you" }, } }, - ["JewelImplicitReducedShockEffect"] = { affix = "", "15% reduced Effect of Shock on you", statOrder = { 10020 }, level = 1, group = "JewelImplicitReducedShockEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "15% reduced Effect of Shock on you" }, } }, - ["JewelImplicitReducedIgniteDuration_"] = { affix = "", "15% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "JewelImplicitReducedIgniteDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "15% reduced Ignite Duration on you" }, } }, - ["JewelImplicitChanceToAvoidStun"] = { affix = "", "15% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "JewelImplicitChanceToAvoidStun", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "15% chance to Avoid being Stunned" }, } }, - ["JewelImplicitChanceToAvoidChill"] = { affix = "", "15% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "JewelImplicitChanceToAvoidChill", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "15% chance to Avoid being Chilled" }, } }, - ["JewelImplicitChanceToAvoidFreeze"] = { affix = "", "15% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "JewelImplicitChanceToAvoidFreeze", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "15% chance to Avoid being Frozen" }, } }, - ["JewelImplicitChanceToAvoidShock"] = { affix = "", "15% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "JewelImplicitChanceToAvoidShock", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "15% chance to Avoid being Shocked" }, } }, - ["JewelImplicitChanceToAvoidIgnite"] = { affix = "", "15% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "JewelImplicitChanceToAvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "15% chance to Avoid being Ignited" }, } }, - ["JewelImplicitChanceToAvoidPoison"] = { affix = "", "15% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "JewelImplicitChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "15% chance to Avoid being Poisoned" }, } }, - ["JewelImplicitReducedElementalReflect"] = { affix = "", "10% reduced Reflected Elemental Damage taken", statOrder = { 2709 }, level = 1, group = "JewelImplicitReducedElementalReflect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental" }, tradeHashes = { [248838155] = { "10% reduced Reflected Elemental Damage taken" }, } }, - ["JewelImplicitReducedPhysicalReflect"] = { affix = "", "10% reduced Reflected Physical Damage taken", statOrder = { 2710 }, level = 1, group = "JewelImplicitReducedPhysicalReflect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3158958938] = { "10% reduced Reflected Physical Damage taken" }, } }, - ["JewelImplicitFrenzyChargeDuration__"] = { affix = "", "10% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "JewelImplicitFrenzyChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "10% increased Frenzy Charge Duration" }, } }, - ["JewelImplicitPowerChargeDuration"] = { affix = "", "10% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "JewelImplicitPowerChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "10% increased Power Charge Duration" }, } }, - ["JewelImplicitEnduranceChargeDuration"] = { affix = "", "10% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "JewelImplicitEnduranceChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "10% increased Endurance Charge Duration" }, } }, - ["VolleyFirstPointPierceUnique__1_"] = { affix = "", "Arrows fired from the first firing points always Pierce", statOrder = { 4407 }, level = 1, group = "VolleyFirstPointPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2168987271] = { "Arrows fired from the first firing points always Pierce" }, } }, - ["VolleySecondPointForkUnique__1"] = { affix = "", "Arrows fired from the second firing points Fork", statOrder = { 4408 }, level = 1, group = "VolleySecondPointFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3290081052] = { "Arrows fired from the second firing points Fork" }, } }, - ["VolleyThirdPointReturnUnique__1__"] = { affix = "", "Arrows fired from the third firing points Return to you", statOrder = { 4409 }, level = 1, group = "VolleyThirdPointReturn", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [301746072] = { "Arrows fired from the third firing points Return to you" }, } }, - ["VolleyFourthPointChainUnique__1"] = { affix = "", "Arrows fired from the fourth firing points Chain +2 times", statOrder = { 4410 }, level = 1, group = "VolleyFourthPointChain", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [226515115] = { "Arrows fired from the fourth firing points Chain +2 times" }, } }, - ["HarvestFlaskEnchantmentDurationLoweredOnUse1_"] = { affix = "Enchantment Decaying Duration", "100% increased Duration. -1% to this value when used", statOrder = { 857 }, level = 1, group = "HarvestFlaskEnchantmentDurationLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [798785332] = { "" }, [156096868] = { "100% increased Duration" }, } }, - ["HarvestFlaskEnchantmentEffectLoweredOnUse2"] = { affix = "Enchantment Decaying Effect", "50% increased effect. -1% to this value when used", statOrder = { 935 }, level = 1, group = "HarvestFlaskEnchantmentEffectLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2672061919] = { "" }, [553298121] = { "50% increased effect" }, } }, - ["HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_"] = { affix = "Enchantment Decaying Efficiency", "+100 to Maximum Charges. -1 to this value when used", statOrder = { 837 }, level = 1, group = "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [219051355] = { "+0 to Maximum Charges. -1 to this value when used" }, [3608809816] = { "+100 to Maximum Charges" }, } }, - ["HarvestFlaskEnchantmentChargesUsedLoweredOnUse4"] = { affix = "Enchantment Decaying Capacity", "50% reduced Charges per use. -1% to this value when used", statOrder = { 846 }, level = 1, group = "HarvestFlaskEnchantmentChargesUsedLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3406017438] = { "" }, [3139816101] = { "50% reduced Charges per use" }, } }, - ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 1916, 7882 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1916, 7510 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1916, 7859 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Physical Damage", "+0.1 metres to Weapon Range per 10% Quality", statOrder = { 1916, 8131 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+0.1 metres to Weapon Range per 10% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1916, 7929 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1916, 7856 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, - ["HarvestAlternateArmourQualityIncreasedLife"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Life per 2% Quality", statOrder = { 1915, 7993 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHashes = { [2711867632] = { "Grants +1 to Maximum Life per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityIncreasedMana"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Mana per 2% Quality", statOrder = { 1915, 7995 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHashes = { [3764009282] = { "Grants +1 to Maximum Mana per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityStrength"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Strength per 2% Quality", statOrder = { 1915, 8030 }, level = 1, group = "HarvestAlternateArmourQualityStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [1519019245] = { "Grants +1 to Strength per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityDexterity"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Dexterity per 2% Quality", statOrder = { 1915, 7888 }, level = 1, group = "HarvestAlternateArmourQualityDexterity", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [452753731] = { "Grants +1 to Dexterity per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityIntelligence_"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Intelligence per 2% Quality", statOrder = { 1915, 7949 }, level = 1, group = "HarvestAlternateArmourQualityIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [2748574832] = { "Grants +1 to Intelligence per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityFireResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Fire Resistance per 2% Quality", statOrder = { 1915, 7933 }, level = 1, group = "HarvestAlternateArmourQualityFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "fire", "resistance" }, tradeHashes = { [2787227226] = { "Grants +1% to Fire Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityColdResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Cold Resistance per 2% Quality", statOrder = { 1915, 7878 }, level = 1, group = "HarvestAlternateArmourQualityColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, tradeHashes = { [1665106429] = { "Grants +1% to Cold Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["HarvestAlternateArmourQualityLightningResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Lightning Resistance per 2% Quality", statOrder = { 1915, 7988 }, level = 1, group = "HarvestAlternateArmourQualityLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "lightning", "resistance" }, tradeHashes = { [2702369635] = { "Grants +1% to Lightning Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, - ["SummonedSkeletonWarriorsGetWeaponStatsInMainHandUnique__1"] = { affix = "", "Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand", statOrder = { 4412 }, level = 1, group = "SummonSkeletonsWarriorsGetWeaponStatsInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646007123] = { "Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand" }, } }, - ["SkeletonWarriorsTripleDamageUnique__1_"] = { affix = "", "Summoned Skeleton Warriors and Soldiers deal Triple Damage with this", "Weapon if you've Hit with this Weapon Recently", statOrder = { 4413, 4413.1 }, level = 1, group = "SkeletonWarriorsTripleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [697059777] = { "Summoned Skeleton Warriors and Soldiers deal Triple Damage with this", "Weapon if you've Hit with this Weapon Recently" }, } }, - ["GrantsUnholyMightUnique__1"] = { affix = "", "Unholy Might", statOrder = { 2914 }, level = 1, group = "GrantsUnholyMight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [279871631] = { "" }, [1646760085] = { "Unholy Might" }, } }, - ["NearbyEnemiesAreChilledUnique__1"] = { affix = "", "Nearby Enemies are Chilled", statOrder = { 7906 }, level = 1, group = "NearbyEnemiesAreChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2159555743] = { "Nearby Enemies are Chilled" }, } }, - ["FreezeChilledEnemiesMoreDamageUnique__1_"] = { affix = "", "Freeze Chilled Enemies as though dealing (50-100)% more Damage", statOrder = { 6665 }, level = 1, group = "FreezeChilledEnemiesMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4272678430] = { "Freeze Chilled Enemies as though dealing (50-100)% more Damage" }, } }, - ["AllDamageCanFreezeUnique__1"] = { affix = "", "All Damage can Freeze", statOrder = { 4624 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage can Freeze" }, } }, - ["CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently", statOrder = { 5959 }, level = 85, group = "CriticalStrikeMultiplierIfGainedPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2865731079] = { "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently" }, } }, - ["PowerChargeDurationFinalUnique__1__"] = { affix = "", "90% less Power Charge Duration", statOrder = { 9699 }, level = 1, group = "PowerChargeDurationFinal", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2625134410] = { "90% less Power Charge Duration" }, } }, - ["ElementalDamageTakenUnique__1"] = { affix = "", "(40-50)% increased Elemental Damage taken", statOrder = { 3293 }, level = 1, group = "ElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2734809852] = { "(40-50)% increased Elemental Damage taken" }, } }, - ["DisplaySupportedByImmolateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Immolate", statOrder = { 309 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 15 Immolate" }, } }, - ["DisplaySupportedByUnboundAilmentsUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 15 Unbound Ailments", statOrder = { 393 }, level = 1, group = "DisplaySupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3699494172] = { "Socketed Gems are Supported by Level 15 Unbound Ailments" }, } }, - ["FireHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Fire Damage taken as Lightning Damage", statOrder = { 6583 }, level = 1, group = "FireHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142376596] = { "40% of Fire Damage taken as Lightning Damage" }, } }, - ["ColdHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Cold Damage taken as Lightning Damage", statOrder = { 5826 }, level = 1, group = "ColdHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2881210047] = { "40% of Cold Damage taken as Lightning Damage" }, } }, - ["EnemyShockedConvertedToLightningUnique__1"] = { affix = "", "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning", statOrder = { 6396 }, level = 1, group = "EnemyShockedConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1070888079] = { "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning" }, } }, - ["EnemyIgnitedConvertedToFireUnique__1"] = { affix = "", "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire", statOrder = { 6384 }, level = 1, group = "EnemyIgnitedConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272032962] = { "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire" }, } }, - ["LifeGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (20-28) Life per Cursed Enemy Hit with Attacks", statOrder = { 7358 }, level = 61, group = "LifeGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (20-28) Life per Cursed Enemy Hit with Attacks" }, } }, - ["ManaGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (10-14) Mana per Cursed Enemy Hit with Attacks", statOrder = { 8178 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (10-14) Mana per Cursed Enemy Hit with Attacks" }, } }, - ["CullingStrikeCursedEnemyUnique__1_"] = { affix = "", "You have Culling Strike against Cursed Enemies", statOrder = { 5990 }, level = 1, group = "CullingStrikeCursedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2150694455] = { "You have Culling Strike against Cursed Enemies" }, } }, - ["NearbyEnemiesAvoidProjectilesUnique__1"] = { affix = "", "Projectiles cannot collide with Enemies in Close Range", statOrder = { 9456 }, level = 1, group = "NearbyEnemiesAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826633504] = { "Projectiles cannot collide with Enemies in Close Range" }, } }, - ["ScorchingBrittleSappingConfluxUnique__1"] = { affix = "", "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal", statOrder = { 6817 }, level = 85, group = "ScorchingBrittleSappingConflux", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1518701332] = { "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal" }, } }, - ["CannotIgniteChillFreezeShockUnique__1"] = { affix = "", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 9479 }, level = 1, group = "CannotIgniteChillFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3281123655] = { "Cannot Ignite, Chill, Freeze or Shock" }, } }, - ["CorpseWalk"] = { affix = "", "Triggers Level 20 Corpse Walk when Equipped", statOrder = { 787 }, level = 1, group = "CorpseWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [779168081] = { "Triggers Level 20 Corpse Walk when Equipped" }, } }, - ["GainAreaOfEffectPluspercentOnManaSpentUnique__1"] = { affix = "", "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana", statOrder = { 6736 }, level = 69, group = "GainAreaOfEffectPluspercentOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3591816140] = { "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana" }, } }, - ["LifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%", statOrder = { 7421 }, level = 1, group = "LifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3845048660] = { "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%" }, } }, - ["GainEnduranceChargesWhenHitUnique__1_"] = { affix = "", "Gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 1, group = "GainEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1514657588] = { "Gain an Endurance Charge when you are Hit" }, } }, - ["LoseLifeIfHitRecentlyUnique__1"] = { affix = "", "Lose 2% of Life per second if you have been Hit Recently", statOrder = { 7381 }, level = 1, group = "LoseLifeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2325592140] = { "Lose 2% of Life per second if you have been Hit Recently" }, } }, - ["PerfectAgonyIfCritRecentlyUnique__1"] = { affix = "", "You have Perfect Agony if you've dealt a Critical Strike recently", statOrder = { 6796 }, level = 1, group = "PerfectAgonyIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3058395672] = { "You have Perfect Agony if you've dealt a Critical Strike recently" }, } }, - ["BrandDamageUnique__1"] = { affix = "", "40% increased Brand Damage", statOrder = { 10037 }, level = 1, group = "BrandDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1323465399] = { "40% increased Brand Damage" }, } }, - ["AdditionalBrandUnique__1"] = { affix = "", "You can Cast an additional Brand", statOrder = { 5053 }, level = 1, group = "AdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [708630863] = { "You can Cast an additional Brand" }, } }, - ["CriticalStrikeChancePerBrandUnique__1___"] = { affix = "", "20% increased Critical Strike Chance per Brand", statOrder = { 5933 }, level = 1, group = "CriticalStrikeChancePerBrand", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [2409504914] = { "20% increased Critical Strike Chance per Brand" }, } }, - ["DamageAgainstMarkedEnemiesUnique__1"] = { affix = "", "(30-50)% increased Damage with Hits and Ailments against Marked Enemy", statOrder = { 6037 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(30-50)% increased Damage with Hits and Ailments against Marked Enemy" }, } }, - ["MarkCastSpeedUnique__1"] = { affix = "", "Mark Skills have (10-15)% increased Cast Speed", statOrder = { 2216 }, level = 1, group = "MarkCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "curse" }, tradeHashes = { [4189061307] = { "Mark Skills have (10-15)% increased Cast Speed" }, } }, - ["TransferMarkOnDeathUnique__1"] = { affix = "", "Your Mark Transfers to another Enemy when Marked Enemy dies", statOrder = { 10691 }, level = 1, group = "TransferMarkOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1104120660] = { "Your Mark Transfers to another Enemy when Marked Enemy dies" }, } }, - ["DamageTakenFromMarkedTargetUnique__1"] = { affix = "", "8% of Damage from Hits is taken from Marked Target's Life before you", statOrder = { 6090 }, level = 1, group = "DamageTakenFromMarkedTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691190311] = { "8% of Damage from Hits is taken from Marked Target's Life before you" }, } }, - ["FlaskEldritchBatteryUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Eldritch Battery during Effect", statOrder = { 851, 1070 }, level = 1, group = "FlaskEldritchBattery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "defences", "energy_shield" }, tradeHashes = { [74462130] = { "Life Recovery from Flasks also applies to Energy Shield during Effect" }, [1544417021] = { "Eldritch Battery during Effect" }, } }, - ["GrantsDeathWishUnique__1__"] = { affix = "", "Grants Level 20 Death Wish Skill", statOrder = { 699 }, level = 1, group = "GrantsDeathWish", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1965393792] = { "Grants Level 20 Death Wish Skill" }, } }, - ["EnemyTemporalChainsOnHitUnique__1"] = { affix = "", "Enemy Hits inflict Temporal Chains on you", statOrder = { 6403 }, level = 1, group = "EnemyTemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1955994922] = { "Enemy Hits inflict Temporal Chains on you" }, } }, - ["GainRageOnLosingTemporalChainsUnique__1__"] = { affix = "", "When you lose Temporal Chains you gain maximum Rage", statOrder = { 6769 }, level = 1, group = "GainRageOnLosingTemporalChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174796794] = { "When you lose Temporal Chains you gain maximum Rage" }, } }, - ["ImmuneToCursesWithRageUnique__1"] = { affix = "", "Immune to Curses while you have at least 25 Rage", statOrder = { 7222 }, level = 1, group = "ImmuneToCursesWithRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [534844170] = { "Immune to Curses while you have at least 25 Rage" }, } }, - ["WeaponCritChanceOverrideUnique__1__"] = { affix = "", "Critical Strike Chance is (30-40)% for Hits with this Weapon", statOrder = { 8129 }, level = 1, group = "WeaponCritChanceIs", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1672183492] = { "Critical Strike Chance is (30-40)% for Hits with this Weapon" }, } }, - ["NoIntelligenceUnique__1_"] = { affix = "", "You have no Intelligence", statOrder = { 7292 }, level = 1, group = "NoIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2706175703] = { "You have no Intelligence" }, } }, - ["FlaskLifeRecoveryAlliesUnique__1_"] = { affix = "", "100% of Life Recovery from Flasks is applied to nearby Allies instead of You", statOrder = { 7390 }, level = 1, group = "FlaskLifeRecoveryAllies", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2264655303] = { "100% of Life Recovery from Flasks is applied to nearby Allies instead of You" }, } }, - ["DamageIfConsumedCorpseUnique__1__"] = { affix = "", "(20-40)% increased Damage if you have Consumed a corpse Recently", statOrder = { 4253 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(20-40)% increased Damage if you have Consumed a corpse Recently" }, } }, - ["HexExpiresMaxDoomUnique__1"] = { affix = "", "Non-Aura Hexes expire upon reaching 200% of base Effect", statOrder = { 7139 }, level = 48, group = "HexExpiresMaxDoom", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3363199577] = { "Non-Aura Hexes expire upon reaching 200% of base Effect" }, } }, - ["DoubleDoomEffectUnique__1"] = { affix = "", "Non-Aura Hexes gain 20% increased Effect per second", statOrder = { 9486 }, level = 1, group = "DoubleDoomEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3266609002] = { "Non-Aura Hexes gain 20% increased Effect per second" }, } }, - ["GlobalAddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "(1-2) to (36-40) Lightning Damage per Power Charge", statOrder = { 9243 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (36-40) Lightning Damage per Power Charge" }, } }, - ["HasMassiveShrineBuffUnique__1"] = { affix = "", "You have Lesser Massive Shrine Buff", statOrder = { 6937 }, level = 1, group = "HasMassiveShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3779398176] = { "You have Lesser Massive Shrine Buff" }, } }, - ["HasBrutalShrineBuffUnique__1"] = { affix = "", "You have Lesser Brutal Shrine Buff", statOrder = { 6936 }, level = 1, group = "HasBrutalShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2761538350] = { "You have Lesser Brutal Shrine Buff" }, } }, - ["SocketedSkillsDoubleDamageUnique__1_"] = { affix = "", "Socketed Skills deal Double Damage", statOrder = { 563 }, level = 1, group = "SocketedSkillsDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132884933] = { "Socketed Skills deal Double Damage" }, } }, - ["TotalRecoveryLifeLeechDoubledUnique__1"] = { affix = "", "Total Recovery per second from Life Leech is Doubled", statOrder = { 10389 }, level = 55, group = "TotalRecoveryLifeLeechDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1277035917] = { "Total Recovery per second from Life Leech is Doubled" }, } }, - ["DamageLeechWith5ChargesUnique__1"] = { affix = "", "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges", statOrder = { 7365 }, level = 1, group = "DamageLeechWith5Charges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1526625193] = { "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges" }, } }, - ["ReflectElementalAilmentsToSelfUnique__1"] = { affix = "", "Elemental Ailments you inflict are Reflected to you", statOrder = { 6293 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1370804479] = { "Elemental Ailments you inflict are Reflected to you" }, } }, - ["ProlifElementalAilmentsFromSelfUnique__1__"] = { affix = "", "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres", statOrder = { 6292 }, level = 1, group = "ProlifElementalAilmentsFromSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3435227689] = { "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres" }, } }, - ["ElementalDamagePerPowerChargeUnique__1"] = { affix = "", "(3-5)% increased Elemental Damage per Power charge", statOrder = { 6309 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1482070333] = { "(3-5)% increased Elemental Damage per Power charge" }, } }, - ["LosePowerChargesOnBlockUnique__1"] = { affix = "", "Lose all Power Charges when you Block", statOrder = { 8139 }, level = 1, group = "LosePowerChargesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3898799092] = { "Lose all Power Charges when you Block" }, } }, - ["GainPowerChargesNotLostRecentlyUnique__1_"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6811 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["SocketedGemQualityUnique__1"] = { affix = "", "+(30-50)% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(30-50)% to Quality of Socketed Gems" }, } }, - ["SocketedGemQualityUnique__2_"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 204 }, level = 57, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } }, - ["NearbyEnemiesAreBlindedPhysicalAegisUnique__1"] = { affix = "", "Nearby Enemies are Blinded while Physical Aegis is not depleted", statOrder = { 9450 }, level = 1, group = "NearbyEnemiesAreBlindedPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2504709365] = { "Nearby Enemies are Blinded while Physical Aegis is not depleted" }, } }, - ["CriticalStrikeChanceWithoutPhysicalAegisUnique__1"] = { affix = "", "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted", statOrder = { 5946 }, level = 1, group = "CriticalStrikeChanceWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2620656067] = { "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted" }, } }, - ["AttackAndCastSpeedWithoutPhysicalAegisUnique__1"] = { affix = "", "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted", statOrder = { 4824 }, level = 1, group = "AttackAndCastSpeedWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [232331266] = { "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted" }, } }, - ["SpellsGainIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds", statOrder = { 10068 }, level = 1, group = "SpellsGainIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2540626225] = { "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds" }, } }, - ["SpellsLoseIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds", statOrder = { 10069 }, level = 1, group = "SpellsLoseIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2122561670] = { "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds" }, } }, - ["CriticalStrikeChancePerIntensityUnique__1"] = { affix = "", "Spells have 10% reduced Critical Strike Chance per Intensity", statOrder = { 5936 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2923377613] = { "Spells have 10% reduced Critical Strike Chance per Intensity" }, } }, - ["CriticalStrikeChancePerIntensityUnique__2"] = { affix = "", "Spells have (30-50)% increased Critical Strike Chance per Intensity", statOrder = { 5936 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2923377613] = { "Spells have (30-50)% increased Critical Strike Chance per Intensity" }, } }, - ["LifeFlaskPassiveChargeGainUnique__1_"] = { affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7348 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } }, - ["LifeFlaskPassiveChargeGainUnique__2"] = { affix = "", "Life Flasks gain (0-3) Charges every 3 seconds", statOrder = { 7348 }, level = 98, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["LifeFlaskPassiveChargeGainOnLowLifeUnique__1"] = { affix = "", "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds", statOrder = { 7349 }, level = 70, group = "LifeFlaskPassiveChargeGainOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4197693974] = { "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds" }, } }, - ["ManaFlaskPassiveChargeGainUnique__1"] = { affix = "", "Mana Flasks gain (0-3) Charges every 3 seconds", statOrder = { 8176 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1193925814] = { "Mana Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["UtilityFlaskPassiveChargeGainUnique__1"] = { affix = "", "Utility Flasks gain (0-3) Charges every 3 seconds", statOrder = { 10514 }, level = 1, group = "UtilityFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567919918] = { "Utility Flasks gain (0-3) Charges every 3 seconds" }, } }, - ["ElementalDamageLowestResistUnique__1"] = { affix = "", "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead", statOrder = { 6314 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead" }, } }, - ["ReducedAttackSpeedWhilePhasingUnique__1"] = { affix = "", "30% reduced Attack Speed while Phasing", statOrder = { 4907 }, level = 1, group = "AttackSpeedWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2752264922] = { "30% reduced Attack Speed while Phasing" }, } }, - ["PhysicalDamageAddedAsRandomWhileIgnitedUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited", statOrder = { 9637 }, level = 1, group = "PhysicalDamageAddedAsRandomWhileIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3595519743] = { "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited" }, } }, - ["ElementalPenetrationWhileChilledUnique__1___"] = { affix = "", "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled", statOrder = { 6334 }, level = 1, group = "ElementalPenetrationWhileChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1089858120] = { "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled" }, } }, - ["ElementalDamageLuckyWhileShockedUnique__1__"] = { affix = "", "Elemental Damage with Hits is Lucky while you are Shocked", statOrder = { 6297 }, level = 1, group = "ElementalDamageLuckyWhileShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [888026555] = { "Elemental Damage with Hits is Lucky while you are Shocked" }, } }, + ["SupportSkitterBotAilmentAuraReplaceWithCurse____1"] = { affix = "", "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead", "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead", statOrder = { 8095, 8124 }, level = 65, group = "UniqueReplaceSkitterbotAilmentAura", weightKey = { }, weightVal = { }, modTags = { "caster", "minion", "curse" }, tradeHashes = { [1809329372] = { "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead" }, [625885138] = { "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead" }, } }, + ["AttackLightningDamageMaximumManaUnique__1__"] = { affix = "", "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana", statOrder = { 4935 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana" }, } }, + ["LoseManaOnAttackSkillUnique__1"] = { affix = "", "Lose 3% of Mana when you use an Attack Skill", statOrder = { 8256 }, level = 1, group = "LoseManaOnAttackSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [113147867] = { "Lose 3% of Mana when you use an Attack Skill" }, } }, + ["StrengthPerPointToClassStartUnique__1"] = { affix = "", "+5 to Strength", statOrder = { 1200 }, level = 1, group = "StrengthPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+5 to Strength" }, } }, + ["DexterityPerPointToClassStartUnique__1"] = { affix = "", "+5 to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } }, + ["IntelligencePerPointToClassStartUnique__1"] = { affix = "", "+5 to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligencePerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+5 to Intelligence" }, } }, + ["LifePerPointToClassStartUnique__1_"] = { affix = "", "+5 to maximum Life", statOrder = { 1591 }, level = 1, group = "LifePerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+5 to maximum Life" }, } }, + ["ManaPerPointToClassStartUnique__1"] = { affix = "", "+5 to maximum Mana", statOrder = { 1602 }, level = 1, group = "ManaPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+5 to maximum Mana" }, } }, + ["EnergyShieldPerPointToClassStartUnique__1"] = { affix = "", "+5 to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShieldPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+5 to maximum Energy Shield" }, } }, + ["ArmourPerPointToClassStartUnique__1"] = { affix = "", "+40 to Armour", statOrder = { 1561 }, level = 1, group = "ArmourPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+40 to Armour" }, } }, + ["EvasionPerPointToClassStartUnique__1"] = { affix = "", "+40 to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+40 to Evasion Rating" }, } }, + ["AccuracyPerPointToClassStartUnique__1"] = { affix = "", "+40 to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "AccuracyPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+40 to Accuracy Rating" }, } }, + ["EnemiesExplodeOnDeathChaosGloriousMadnessUnique1"] = { affix = "", "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage", statOrder = { 10863 }, level = 1, group = "EnemiesExplodeOnDeathChaosGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2780297117] = { "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage" }, } }, + ["AllDamageCanPoisonGloriousMadnessUnique___1"] = { affix = "", "All Damage inflicts Poison while affected by Glorious Madness", statOrder = { 10858 }, level = 1, group = "AllDamageCanPoisonGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3359218839] = { "All Damage inflicts Poison while affected by Glorious Madness" }, } }, + ["SpellBlockWhileInOffHandUnique_1"] = { affix = "", "+(30-45)% Chance to Block Spell Damage while in Off Hand", statOrder = { 1184 }, level = 1, group = "SpellBlockWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2040964235] = { "+(30-45)% Chance to Block Spell Damage while in Off Hand" }, } }, + ["AllDamageFromTriggeredSpellsCanPoisonUnique_1"] = { affix = "", "All Damage with Triggered Spells can Poison", statOrder = { 10585 }, level = 85, group = "AllDamageFromTriggeredSpellsCanPoison", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, tradeHashes = { [373509484] = { "All Damage with Triggered Spells can Poison" }, } }, + ["TriggeredSpellsPoisonOnHitUnique_1"] = { affix = "", "Triggered Spells Poison on Hit", statOrder = { 10584 }, level = 1, group = "TriggeredSpellsPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, tradeHashes = { [3484434547] = { "Triggered Spells Poison on Hit" }, } }, + ["SupportVirulenceSpellsCastOnBlockUnique_1"] = { affix = "", "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown", statOrder = { 849 }, level = 1, group = "CastSocketedSpellsOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [1565744562] = { "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown" }, } }, + ["FortifyEffectSelfGloriousMadnessUnique1"] = { affix = "", "+15 to maximum Fortification while affected by Glorious Madness", statOrder = { 10878 }, level = 1, group = "FortifyEffectSelfGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2611224062] = { "+15 to maximum Fortification while affected by Glorious Madness" }, } }, + ["DoubleDamageChanceGloriousMadnessUnique_1"] = { affix = "", "20% chance to deal Double Damage while affected by Glorious Madness", statOrder = { 10860 }, level = 1, group = "DoubleDamageChanceGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1299868012] = { "20% chance to deal Double Damage while affected by Glorious Madness" }, } }, + ["ElementalConfluxesGloriousMadnessUnique1"] = { affix = "", "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", statOrder = { 10866 }, level = 1, group = "ElementalConfluxesGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3909952544] = { "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness" }, } }, + ["ElementalAilmentImmunityGloriousMadnessUnique1"] = { affix = "", "Immune to Elemental Ailments while affected by Glorious Madness", statOrder = { 10868 }, level = 1, group = "ElementalAilmentImmunityGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1065479853] = { "Immune to Elemental Ailments while affected by Glorious Madness" }, } }, + ["MovementSpeedUnique_42"] = { affix = "", "30% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["GrantEmbraceMadnessSkillUnique1"] = { affix = "", "Grants Level 1 Embrace Madness Skill", statOrder = { 716 }, level = 1, group = "GrantEmbraceMadnessSkillDisplay", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1749783861] = { "Grants Level 1 Embrace Madness Skill" }, } }, + ["LocalAfflictionJewelDisplaySmallNodesGrantNothingUnique_1"] = { affix = "", "Added Small Passive Skills grant Nothing", statOrder = { 7615 }, level = 1, group = "LocalAfflictionJewelDisplaySmallNodesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2557943734] = { "Added Small Passive Skills grant Nothing" }, } }, + ["AttackSpeedAfterSavageHitTakenUnique__1"] = { affix = "", "40% increased Attack Speed if you've taken a Savage Hit Recently", statOrder = { 3483 }, level = 1, group = "AttackSpeedAfterSavageHitTaken", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3842406602] = { "40% increased Attack Speed if you've taken a Savage Hit Recently" }, } }, + ["FrenzyChargeOnCritCloseRangeUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range", statOrder = { 6846 }, level = 1, group = "FrenzyChargeOnCritCloseRange", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHashes = { [911695185] = { "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range" }, } }, + ["BleedDotMultiplierPerFrenzyChargeUnique__1_"] = { affix = "", "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge", statOrder = { 5178 }, level = 1, group = "BleedDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [2583415204] = { "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge" }, } }, + ["FasterBleedPerFrenzyChargeUnique__1"] = { affix = "", "Bleeding you inflict deals Damage 4% faster per Frenzy Charge", statOrder = { 6631 }, level = 1, group = "FasterBleedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1670470989] = { "Bleeding you inflict deals Damage 4% faster per Frenzy Charge" }, } }, + ["CriticalBleedDotMultiplierUnique__1_"] = { affix = "", "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes", statOrder = { 1273 }, level = 1, group = "CriticalBleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1454648374] = { "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes" }, } }, + ["CriticalIgniteDotMultiplierUnique__1"] = { affix = "", "+(30-50)% to Damage over Time Multiplier for Ignite from Critical Strikes", statOrder = { 1276 }, level = 1, group = "CriticalIgniteDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3867887711] = { "+(30-50)% to Damage over Time Multiplier for Ignite from Critical Strikes" }, } }, + ["BleedDotMultiplier2HImplicit1"] = { affix = "", "+20% to Damage over Time Multiplier for Bleeding", statOrder = { 1272 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+20% to Damage over Time Multiplier for Bleeding" }, } }, + ["LocalWitherOnHitChanceUnique__2"] = { affix = "", "Inflict Withered for 2 seconds on Hit with this Weapon", statOrder = { 4449 }, level = 1, group = "LocalWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1226121733] = { "Inflict Withered for 2 seconds on Hit with this Weapon" }, } }, + ["WitherOnHitChanceUnique__1"] = { affix = "", "(20-25)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4435 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1957711555] = { "(20-25)% chance to inflict Withered for 2 seconds on Hit" }, } }, + ["CannotPenetrateResistancesUnique__1"] = { affix = "", "Your Hits cannot Penetrate or ignore Elemental Resistances", statOrder = { 5515 }, level = 1, group = "CannotPenetrateResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3091072796] = { "Your Hits cannot Penetrate or ignore Elemental Resistances" }, } }, + ["WitherGrantsElementalDamageTakenUnique__1__"] = { affix = "", "Enemies take 4% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4436, 4436.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3507915723] = { "Enemies take 4% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them" }, } }, + ["ActivateHeraldOfThunderOnShockUnique__1"] = { affix = "", "Herald of Thunder also creates a storm when you Shock an Enemy", statOrder = { 5990 }, level = 1, group = "ActivateHeraldOfThunderOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [278339309] = { "Herald of Thunder also creates a storm when you Shock an Enemy" }, } }, + ["TakeDamageWhenHeraldOfThunderHitsUnique__1__"] = { affix = "", "Take 250 Lightning Damage when Herald of Thunder Hits an Enemy", statOrder = { 10501 }, level = 1, group = "TakeDamageWhenHeraldOfThunderHits", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2007062029] = { "Take 250 Lightning Damage when Herald of Thunder Hits an Enemy" }, } }, + ["HeraldOfThunderBoltFrequencyUnique__1"] = { affix = "", "Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency", statOrder = { 7224 }, level = 1, group = "HeraldOfThunderBoltFrequency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [28299254] = { "Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency" }, } }, + ["RagingSpiritFireSplashDamageUnique__1"] = { affix = "", "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets", statOrder = { 10448, 10448.1 }, level = 1, group = "RagingSpiritSplashDamage", weightKey = { }, weightVal = { }, modTags = { "red_herring", "elemental", "fire", "minion" }, tradeHashes = { [221328679] = { "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets" }, } }, + ["FragileRegrowthLifeRegenerationUnique__1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.7% of Life Regenerated per second per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4438, 4439, 4440, 6928 }, level = 1, group = "FragileRegrowthLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [223497523] = { "" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, } }, + ["FragileRegrowthLifeRegenerationUnique__2_"] = { affix = "", "Maximum 5 Fragile Regrowth", "0.7% of Life Regenerated per second per Fragile Regrowth", "Gain up to maximum Fragile Regrowth when Hit", "Lose 1 Fragile Regrowth each second", statOrder = { 4438, 4439, 6920, 6928 }, level = 1, group = "FragileRegrowthLifeRegenerationReverse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2796308895] = { "Gain up to maximum Fragile Regrowth when Hit" }, [1173537953] = { "Maximum 5 Fragile Regrowth" }, [223497523] = { "" }, [3175722882] = { "0.7% of Life Regenerated per second per Fragile Regrowth" }, [3841984913] = { "Lose 1 Fragile Regrowth each second" }, } }, + ["MaximumESLeechAmountUnique__1_"] = { affix = "", "50% reduced Maximum Recovery per Energy Shield Leech", statOrder = { 1749 }, level = 1, group = "MaximumESLeechAmount", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3589396689] = { "50% reduced Maximum Recovery per Energy Shield Leech" }, } }, + ["ESLeechFromAttacksNotRemovedOnFullESUnique__1"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6524 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1004885987] = { "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield" }, } }, + ["MaximumESLeechAmountDoubledUnique__1"] = { affix = "", "Maximum Recovery per Energy Shield Leech is Doubled", statOrder = { 9260 }, level = 1, group = "MaximumESLeechAmountDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4113811490] = { "Maximum Recovery per Energy Shield Leech is Doubled" }, } }, + ["EnemiesKilledApplyImpaleDamageUnique__1"] = { affix = "", "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies", statOrder = { 7412 }, level = 1, group = "EnemiesKilledApplyImpaleDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3927388937] = { "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies" }, } }, + ["ArmourAppliesToLightningDamageUnique__1_"] = { affix = "", "Armour also applies to Lightning Damage taken from Hits", statOrder = { 5041 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "Armour also applies to Lightning Damage taken from Hits" }, } }, + ["LightningResistNoReductionUnique__1_"] = { affix = "", "Lightning Resistance does not affect Lightning Damage taken", statOrder = { 7564 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning Damage taken" }, } }, + ["DealNoNonLightningDamageUnique__1_"] = { affix = "", "Deal no Non-Lightning Damage", statOrder = { 2828 }, level = 1, group = "DealNoNonLightningDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2075742842] = { "Deal no Non-Lightning Damage" }, } }, + ["NearbyEnemyLightningResistanceEqualUnique__1"] = { affix = "", "Nearby Enemies have Lightning Resistance equal to yours", statOrder = { 9595 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3549734978] = { "Nearby Enemies have Lightning Resistance equal to yours" }, } }, + ["SupportedByIntensifyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 326 }, level = 1, group = "SupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [28821524] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, + ["ShockedGroundWhileMovingUnique__1_"] = { affix = "", "Drops Shocked Ground while moving, lasting 2 seconds", statOrder = { 4349 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3002060175] = { "Drops Shocked Ground while moving, lasting 2 seconds" }, } }, + ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_"] = { affix = "", "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 831 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [252427115] = { "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength" }, } }, + ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2"] = { affix = "", "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 831 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [252427115] = { "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength" }, } }, + ["ProjectileDamageBloodStanceUnique__1"] = { affix = "", "(40-60)% increased Projectile Damage while in Blood Stance", statOrder = { 10363 }, level = 1, group = "ProjectileDamageBloodStance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2982500944] = { "(40-60)% increased Projectile Damage while in Blood Stance" }, } }, + ["LifeRegenerationBloodStanceUnique__1"] = { affix = "", "Regenerate (150-200) Life per Second while in Blood Stance", statOrder = { 10362 }, level = 1, group = "LifeRegenerationBloodStance", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [550848224] = { "Regenerate (150-200) Life per Second while in Blood Stance" }, } }, + ["AreaOfEffectSandStanceUnique__1"] = { affix = "", "(20-30)% increased Area of Effect while in Sand Stance", statOrder = { 10368 }, level = 1, group = "AreaOfEffectSandStance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1647746883] = { "(20-30)% increased Area of Effect while in Sand Stance" }, } }, + ["EvasionRatingSandStanceUnique__1"] = { affix = "", "+(700-1000) to Evasion Rating while in Sand Stance", statOrder = { 10364 }, level = 1, group = "EvasionRatingSandStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1922061483] = { "+(700-1000) to Evasion Rating while in Sand Stance" }, } }, + ["MaxRagePerEquippedSwordUnique__1____"] = { affix = "", "+10 to Maximum Rage while wielding a Sword", statOrder = { 9305 }, level = 1, group = "MaxRagePerEquippedSword", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [406887685] = { "+10 to Maximum Rage while wielding a Sword" }, } }, + ["BleedDotMultiplierPerRagePerEquippedAxeUnique__1"] = { affix = "", "Each Rage also grants +2% to Damage over Time Multiplier for Bleeding while wielding an Axe", statOrder = { 5175 }, level = 1, group = "BleedDotMultiplierPerRagePerEquippedAxe", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [769468514] = { "Each Rage also grants +2% to Damage over Time Multiplier for Bleeding while wielding an Axe" }, } }, + ["LifeManaESLeechRateUnique__1"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7483 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [2314393054] = { "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech" }, } }, + ["RandomSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level (1-10) (1-172)", statOrder = { 462 }, level = 1, group = "RandomSupport1", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4036547045] = { "Socketed Gems are Supported by Level (1-10) 0" }, [2218073584] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, + ["RandomSupportUnique__2"] = { affix = "", "Socketed Gems are Supported by Level (25-35) (1-172)", statOrder = { 463 }, level = 1, group = "RandomSupport2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1700437154] = { "Socketed Gems are Supported by Level (25-35) 0" }, [4135300657] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, + ["RandomSupportUnique__3"] = { affix = "", "Socketed Gems are Supported by Level (1-10) (1-172)", statOrder = { 462 }, level = 1, group = "RandomSupport1", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4036547045] = { "Socketed Gems are Supported by Level (1-10) 0" }, [2218073584] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, + ["RandomSupportUnique__4_"] = { affix = "", "Socketed Gems are Supported by Level (25-35) (1-172)", statOrder = { 463 }, level = 1, group = "RandomSupport2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1700437154] = { "Socketed Gems are Supported by Level (25-35) 0" }, [4135300657] = { "Socketed Gems are Supported by Level 0 (1-172)" }, } }, + ["RandomSkillUnique__1"] = { affix = "", "+3 to Level of all (1-287) Gems", statOrder = { 1641 }, level = 71, group = "RandomSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3854777240] = { "" }, [2362975498] = { "+3 to Level of all 0 Gems" }, } }, + ["GrantsDashUnique__1_"] = { affix = "", "Grants Level 30 Dash Skill", statOrder = { 713 }, level = 1, group = "GrantsDash", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3883691934] = { "Grants Level 30 Dash Skill" }, } }, + ["DisableTravelSkillsExceptDashUnique__1"] = { affix = "", "Travel Skills other than Dash are Disabled", statOrder = { 10856 }, level = 1, group = "DisableTravelSkillsExceptDash", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3066073024] = { "Travel Skills other than Dash are Disabled" }, } }, + ["ArrowsIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently", statOrder = { 1818 }, level = 1, group = "ArrowsIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2482927318] = { "Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently" }, } }, + ["AttackSpeedIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Attack Speed if you haven't Cast Dash recently", statOrder = { 4948 }, level = 1, group = "AttackSpeedIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1003608257] = { "(20-30)% increased Attack Speed if you haven't Cast Dash recently" }, } }, + ["MovementSpeedIfUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Movement Speed if you've Cast Dash recently", statOrder = { 9554 }, level = 1, group = "MovementSpeedIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2659793306] = { "(20-30)% increased Movement Speed if you've Cast Dash recently" }, } }, + ["EvasionRatingIfUsedDashRecentlyUnique__1"] = { affix = "", "(100-160)% increased Evasion Rating if you've Cast Dash recently", statOrder = { 6580 }, level = 1, group = "EvasionRatingIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [237513297] = { "(100-160)% increased Evasion Rating if you've Cast Dash recently" }, } }, + ["MinionLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have", statOrder = { 4441, 4441.1 }, level = 1, group = "MinionLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [433536969] = { "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have" }, } }, + ["MinionChaosDamageDoesNotBypassESUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Minions' Energy Shield", statOrder = { 4442 }, level = 1, group = "MinionChaosDamageDoesNotBypassES", weightKey = { }, weightVal = { }, modTags = { "chaos", "minion" }, tradeHashes = { [3008104268] = { "Chaos Damage taken does not bypass Minions' Energy Shield" }, } }, + ["MinionHitsIgnoreResistanceWithESUnique__1_"] = { affix = "", "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances", statOrder = { 4444 }, level = 1, group = "MinionHitsIgnoreResistanceWithES", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "minion" }, tradeHashes = { [1360359242] = { "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances" }, } }, + ["MinionEnergyShieldRechargeDelayUnique__1"] = { affix = "", "Minions have (50-100)% faster start of Energy Shield Recharge", statOrder = { 4443 }, level = 1, group = "MinionEnergyShieldRechargeDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, tradeHashes = { [2834476618] = { "Minions have (50-100)% faster start of Energy Shield Recharge" }, } }, + ["DamageBypassEnergyShieldBlockUnique__1"] = { affix = "", "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield", statOrder = { 6108, 6108.1 }, level = 1, group = "DamageBypassEnergyShieldBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2331104018] = { "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield" }, } }, + ["NoEnergyShieldUnique__1"] = { affix = "", "Has no Energy Shield", statOrder = { 1107 }, level = 1, group = "LocalNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3109875952] = { "Has no Energy Shield" }, } }, + ["CannotBlockWithNoEnergyShieldUnique__1"] = { affix = "", "Cannot Block while you have no Energy Shield", statOrder = { 2767 }, level = 1, group = "CannotBlockWithNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3890287045] = { "Cannot Block while you have no Energy Shield" }, } }, + ["BlindReflectedToSelfUnique__1"] = { affix = "", "Blind you inflict is Reflected to you", statOrder = { 5294 }, level = 1, group = "BlindReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2458598175] = { "Blind you inflict is Reflected to you" }, } }, + ["BlindDoesNotAffectLightRadiusUnique__1"] = { affix = "", "Blind does not affect your Light Radius", statOrder = { 5290 }, level = 1, group = "BlindDoesNotAffectLightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3013171896] = { "Blind does not affect your Light Radius" }, } }, + ["NotablesGrantManaCostAndSpellDamageUnique1"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: 10% increased Mana Cost of Skills and 20% increased Spell Damage", statOrder = { 10925, 10925.1 }, level = 1, group = "NotablesGrantManaCostAndSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [3802517517] = { "" }, [3511232600] = { "" }, [2636000900] = { "" }, } }, + ["UnleashSealGainFrequencyUnique__1"] = { affix = "", "Skills Supported by Unleash have (30-50)% increased Seal gain frequency", statOrder = { 10470 }, level = 1, group = "UnleashSealGainFrequency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1504513372] = { "Skills Supported by Unleash have (30-50)% increased Seal gain frequency" }, } }, + ["UnholyMightOnZeroEnergyShieldUnique__1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2770 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2353201291] = { "You have Unholy Might while you have no Energy Shield" }, } }, + ["ProfaneGroundInsteadOfConsecratedGround__1_"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5991 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, + ["StalkingPustuleOnKillUnique__1"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 838 }, level = 50, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1662669872] = { "Trigger Level 1 Stalking Pustule on Kill" }, } }, + ["BlindDoesNotAffectHitChanceUnique__1"] = { affix = "", "Unaffected by Blind", statOrder = { 10612 }, level = 1, group = "BlindDoesNotAffectHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4193902224] = { "Unaffected by Blind" }, } }, + ["MaledictionOnBlindWhileBlindedUnique__1"] = { affix = "", "Enemies Blinded by you have Malediction", statOrder = { 6453 }, level = 1, group = "MaledictionOnBlindWhileBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2621660713] = { "Enemies Blinded by you have Malediction" }, } }, + ["AttackImpaleChanceUnique__1"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(10-20)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceUnique__2"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(10-20)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["AttackImpaleChanceUnique__3"] = { affix = "", "(15-30)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(15-30)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["GrantsBrandDetonateUnique__1"] = { affix = "", "Grants Level 20 Brandsurge Skill", statOrder = { 705 }, level = 85, group = "GrantsBrandDetonate", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2859437049] = { "Grants Level 20 Brandsurge Skill" }, } }, + ["BrandDurationUnique__1"] = { affix = "", "Brand Skills have (50-100)% increased Duration", statOrder = { 10184 }, level = 1, group = "BrandDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (50-100)% increased Duration" }, } }, + ["SummonAdditionalBrandUnique__1"] = { affix = "", "Skills which create Brands create an additional Brand", statOrder = { 4610 }, level = 1, group = "SummonAdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3741633972] = { "Skills which create Brands create an additional Brand" }, } }, + ["AttackSpeedChangedStanceUnique__1"] = { affix = "", "(25-30)% increased Attack Speed if you've changed Stance Recently", statOrder = { 10370 }, level = 72, group = "AttackSpeedChangedStance", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2188905761] = { "(25-30)% increased Attack Speed if you've changed Stance Recently" }, } }, + ["WarcryInfiniteEnemyPowerUnique__1__"] = { affix = "", "Warcries have infinite Power", statOrder = { 10726 }, level = 1, group = "WarcryInfiniteEnemyPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1139939070] = { "Warcries have infinite Power" }, } }, + ["KeystoneCallToArmsUnique__2_"] = { affix = "", "Call to Arms", statOrder = { 10937 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, + ["WarcryGrantsArcaneSurgeUnique__1"] = { affix = "", "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%", statOrder = { 4753 }, level = 1, group = "WarcryGrantsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3399924348] = { "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%" }, } }, + ["WarcryTauntChaosExplosionUnique__1_"] = { affix = "", "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage", statOrder = { 6486 }, level = 1, group = "WarcryTauntChaosExplosion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2937093415] = { "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage" }, } }, + ["Curse25PercentHinderEnemyUnique__1"] = { affix = "", "Enemies Cursed by you are Hindered if 25% of Curse Duration expired", statOrder = { 10769 }, level = 77, group = "Curse25PercentHinderEnemy", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [313419608] = { "Enemies Cursed by you are Hindered if 25% of Curse Duration expired" }, } }, + ["Curse50PercentCurseEffectUnique__1"] = { affix = "", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 10771 }, level = 1, group = "Curse50PercentCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2339022735] = { "Your Curses have 25% increased Effect if 50% of Curse Duration expired" }, } }, + ["Curse75PercentEnemyDamageTakenUnique__1__"] = { affix = "", "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired", statOrder = { 10772 }, level = 1, group = "Curse75PercentEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [2057136736] = { "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired" }, } }, + ["SpellsAlwaysCritFinalRepeatUnique__1_"] = { affix = "", "Spell Skills always deal Critical Strikes on final Repeat", statOrder = { 10311 }, level = 80, group = "SpellsAlwaysCritFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3738009328] = { "Spell Skills always deal Critical Strikes on final Repeat" }, } }, + ["SpellsNeverCritExceptFinalRepeatUnique__1"] = { affix = "", "Spell Skills cannot deal Critical Strikes except on final Repeat", statOrder = { 10315 }, level = 1, group = "SpellsNeverCritExceptFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2516869940] = { "Spell Skills cannot deal Critical Strikes except on final Repeat" }, } }, + ["SpellsCriticalMultiplierFinalRepeatUnique__1"] = { affix = "", "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat", statOrder = { 10313 }, level = 1, group = "SpellsCriticalMultiplierFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4128319542] = { "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat" }, } }, + ["NonCriticalStrikesLessDamageUnique__1"] = { affix = "", "Non-critical strikes deal 80% less Damage", statOrder = { 2740 }, level = 1, group = "NonCriticalDamageMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1711683262] = { "Non-critical strikes deal 80% less Damage" }, } }, + ["MaximumRageUnique__1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9928 }, level = 85, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+10 to Maximum Rage" }, } }, + ["MaximumRageUnique__2"] = { affix = "", "+5 to Maximum Rage", statOrder = { 9928 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+5 to Maximum Rage" }, } }, + ["MaximumRageUnique__3"] = { affix = "", "+(-5-5) to Maximum Rage", statOrder = { 9928 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-5-5) to Maximum Rage" }, } }, + ["MaximumRageImplicitE1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9928 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+10 to Maximum Rage" }, } }, + ["MaximumRageImplicitE2"] = { affix = "", "+15 to Maximum Rage", statOrder = { 9928 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+15 to Maximum Rage" }, } }, + ["MaximumRageImplicitE3"] = { affix = "", "+20 to Maximum Rage", statOrder = { 9928 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+20 to Maximum Rage" }, } }, + ["RageOnMeleeHitE1"] = { affix = "", "Gain 3 Rage on Melee Hit", statOrder = { 6938 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 3 Rage on Melee Hit" }, } }, + ["RageOnMeleeHitE2"] = { affix = "", "Gain 4 Rage on Melee Hit", statOrder = { 6938 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 4 Rage on Melee Hit" }, } }, + ["RageOnMeleeHitE3"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6938 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 5 Rage on Melee Hit" }, } }, + ["EnemiesCrushedWithRageUnique__1_"] = { affix = "", "Nearby Enemies are Crushed while you have at least 25 Rage", statOrder = { 9586 }, level = 1, group = "EnemiesCrushedWithRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3069588220] = { "Nearby Enemies are Crushed while you have at least 25 Rage" }, } }, + ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 880 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [798785332] = { "" }, [156096868] = { "50% increased Duration" }, } }, + ["JewelImplicitLifeRegeneration"] = { affix = "", "Regenerate 0.1% of Life per second", statOrder = { 1967 }, level = 1, group = "JewelImplicitLifeRegeneration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.1% of Life per second" }, } }, + ["JewelImplicitEnergyShieldRechargeRate"] = { affix = "", "(3-6)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 1, group = "JewelImplicitEnergyShieldRechargeRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(3-6)% increased Energy Shield Recharge Rate" }, } }, + ["JewelImplicitTotemPlacementSpeed"] = { affix = "", "(4-6)% increased Totem Placement speed", statOrder = { 2604 }, level = 1, group = "JewelImplicitTotemPlacementSpeed", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(4-6)% increased Totem Placement speed" }, } }, + ["JewelImplicitDamageTakenGainedAsMana"] = { affix = "", "1% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "JewelImplicitDamageTakenGainedAsMana", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "1% of Damage taken Recouped as Mana" }, } }, + ["JewelImplicitLifeLeechRate"] = { affix = "", "20% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 1, group = "JewelImplicitLifeLeechRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "20% increased total Recovery per second from Life Leech" }, } }, + ["JewelImplicitManaLeechRate"] = { affix = "", "20% increased total Recovery per second from Mana Leech", statOrder = { 2181 }, level = 1, group = "JewelImplicitManaLeechRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [690135178] = { "20% increased total Recovery per second from Mana Leech" }, } }, + ["JewelImplicitAuraAreaOfEffect"] = { affix = "", "(3-6)% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "JewelImplicitAuraAreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(3-6)% increased Area of Effect of Aura Skills" }, } }, + ["JewelImplicitMinionLife___"] = { affix = "", "Minions have (3-5)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "JewelImplicitMinionLife", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (3-5)% increased maximum Life" }, } }, + ["JewelImplicitMovementSpeed"] = { affix = "", "1% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "JewelImplicitMovementSpeed", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "1% increased Movement Speed" }, } }, + ["JewelImplicitLightRadius"] = { affix = "", "(3-6)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "JewelImplicitLightRadius", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(3-6)% increased Light Radius" }, } }, + ["JewelImplicitFlaskDuration"] = { affix = "", "1% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "JewelImplicitFlaskDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "1% increased Flask Effect Duration" }, } }, + ["JewelImplicitReducedChillEffect"] = { affix = "", "15% reduced Effect of Chill on you", statOrder = { 1668 }, level = 1, group = "JewelImplicitReducedChillEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "15% reduced Effect of Chill on you" }, } }, + ["JewelImplicitReducedFreezeDuration_"] = { affix = "", "15% reduced Freeze Duration on you", statOrder = { 1897 }, level = 1, group = "JewelImplicitReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "15% reduced Freeze Duration on you" }, } }, + ["JewelImplicitReducedShockEffect"] = { affix = "", "15% reduced Effect of Shock on you", statOrder = { 10164 }, level = 1, group = "JewelImplicitReducedShockEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "15% reduced Effect of Shock on you" }, } }, + ["JewelImplicitReducedIgniteDuration_"] = { affix = "", "15% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "JewelImplicitReducedIgniteDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "15% reduced Ignite Duration on you" }, } }, + ["JewelImplicitChanceToAvoidStun"] = { affix = "", "15% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "JewelImplicitChanceToAvoidStun", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "15% chance to Avoid being Stunned" }, } }, + ["JewelImplicitChanceToAvoidChill"] = { affix = "", "15% chance to Avoid being Chilled", statOrder = { 1867 }, level = 1, group = "JewelImplicitChanceToAvoidChill", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "15% chance to Avoid being Chilled" }, } }, + ["JewelImplicitChanceToAvoidFreeze"] = { affix = "", "15% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "JewelImplicitChanceToAvoidFreeze", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "15% chance to Avoid being Frozen" }, } }, + ["JewelImplicitChanceToAvoidShock"] = { affix = "", "15% chance to Avoid being Shocked", statOrder = { 1871 }, level = 1, group = "JewelImplicitChanceToAvoidShock", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "15% chance to Avoid being Shocked" }, } }, + ["JewelImplicitChanceToAvoidIgnite"] = { affix = "", "15% chance to Avoid being Ignited", statOrder = { 1869 }, level = 1, group = "JewelImplicitChanceToAvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "15% chance to Avoid being Ignited" }, } }, + ["JewelImplicitChanceToAvoidPoison"] = { affix = "", "15% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "JewelImplicitChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "15% chance to Avoid being Poisoned" }, } }, + ["JewelImplicitReducedElementalReflect"] = { affix = "", "10% reduced Reflected Elemental Damage taken", statOrder = { 2736 }, level = 1, group = "JewelImplicitReducedElementalReflect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental" }, tradeHashes = { [248838155] = { "10% reduced Reflected Elemental Damage taken" }, } }, + ["JewelImplicitReducedPhysicalReflect"] = { affix = "", "10% reduced Reflected Physical Damage taken", statOrder = { 2737 }, level = 1, group = "JewelImplicitReducedPhysicalReflect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3158958938] = { "10% reduced Reflected Physical Damage taken" }, } }, + ["JewelImplicitFrenzyChargeDuration__"] = { affix = "", "10% increased Frenzy Charge Duration", statOrder = { 2150 }, level = 1, group = "JewelImplicitFrenzyChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "10% increased Frenzy Charge Duration" }, } }, + ["JewelImplicitPowerChargeDuration"] = { affix = "", "10% increased Power Charge Duration", statOrder = { 2165 }, level = 1, group = "JewelImplicitPowerChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "10% increased Power Charge Duration" }, } }, + ["JewelImplicitEnduranceChargeDuration"] = { affix = "", "10% increased Endurance Charge Duration", statOrder = { 2148 }, level = 1, group = "JewelImplicitEnduranceChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "10% increased Endurance Charge Duration" }, } }, + ["VolleyFirstPointPierceUnique__1_"] = { affix = "", "Arrows fired from the first firing points always Pierce", statOrder = { 4445 }, level = 1, group = "VolleyFirstPointPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2168987271] = { "Arrows fired from the first firing points always Pierce" }, } }, + ["VolleySecondPointForkUnique__1"] = { affix = "", "Arrows fired from the second firing points Fork", statOrder = { 4446 }, level = 1, group = "VolleySecondPointFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3290081052] = { "Arrows fired from the second firing points Fork" }, } }, + ["VolleyThirdPointReturnUnique__1__"] = { affix = "", "Arrows fired from the third firing points Return to you", statOrder = { 4447 }, level = 1, group = "VolleyThirdPointReturn", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [301746072] = { "Arrows fired from the third firing points Return to you" }, } }, + ["VolleyFourthPointChainUnique__1"] = { affix = "", "Arrows fired from the fourth firing points Chain +2 times", statOrder = { 4448 }, level = 1, group = "VolleyFourthPointChain", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [226515115] = { "Arrows fired from the fourth firing points Chain +2 times" }, } }, + ["HarvestFlaskEnchantmentDurationLoweredOnUse1_"] = { affix = "Enchantment Decaying Duration", "100% increased Duration. -1% to this value when used", statOrder = { 880 }, level = 1, group = "HarvestFlaskEnchantmentDurationLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [798785332] = { "" }, [156096868] = { "100% increased Duration" }, } }, + ["HarvestFlaskEnchantmentEffectLoweredOnUse2"] = { affix = "Enchantment Decaying Effect", "50% increased effect. -1% to this value when used", statOrder = { 959 }, level = 1, group = "HarvestFlaskEnchantmentEffectLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2672061919] = { "" }, [553298121] = { "50% increased effect" }, } }, + ["HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_"] = { affix = "Enchantment Decaying Efficiency", "+100 to Maximum Charges. -1 to this value when used", statOrder = { 858 }, level = 1, group = "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [219051355] = { "+0 to Maximum Charges. -1 to this value when used" }, [3608809816] = { "+100 to Maximum Charges" }, } }, + ["HarvestFlaskEnchantmentChargesUsedLoweredOnUse4"] = { affix = "Enchantment Decaying Capacity", "50% reduced Charges per use. -1% to this value when used", statOrder = { 867 }, level = 1, group = "HarvestFlaskEnchantmentChargesUsedLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3406017438] = { "" }, [3139816101] = { "50% reduced Charges per use" }, } }, + ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 1939, 7991 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, + ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1939, 7614 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1939, 7965 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Physical Damage", "+0.1 metres to Weapon Range per 10% Quality", statOrder = { 1939, 8244 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+0.1 metres to Weapon Range per 10% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, + ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1939, 8039 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, + ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1939, 7961 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [2052525717] = { "Quality does not increase Physical Damage" }, } }, + ["HarvestAlternateArmourQualityIncreasedLife"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Life per 2% Quality", statOrder = { 1938, 8104 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHashes = { [2711867632] = { "Grants +1 to Maximum Life per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, + ["HarvestAlternateArmourQualityIncreasedMana"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Mana per 2% Quality", statOrder = { 1938, 8106 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHashes = { [3764009282] = { "Grants +1 to Maximum Mana per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, + ["HarvestAlternateArmourQualityStrength"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Strength per 2% Quality", statOrder = { 1938, 8143 }, level = 1, group = "HarvestAlternateArmourQualityStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [1519019245] = { "Grants +1 to Strength per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, + ["HarvestAlternateArmourQualityDexterity"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Dexterity per 2% Quality", statOrder = { 1938, 7997 }, level = 1, group = "HarvestAlternateArmourQualityDexterity", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [452753731] = { "Grants +1 to Dexterity per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, + ["HarvestAlternateArmourQualityIntelligence_"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Intelligence per 2% Quality", statOrder = { 1938, 8060 }, level = 1, group = "HarvestAlternateArmourQualityIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, tradeHashes = { [2748574832] = { "Grants +1 to Intelligence per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, + ["HarvestAlternateArmourQualityFireResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Fire Resistance per 2% Quality", statOrder = { 1938, 8044 }, level = 1, group = "HarvestAlternateArmourQualityFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "fire", "resistance" }, tradeHashes = { [2787227226] = { "Grants +1% to Fire Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, + ["HarvestAlternateArmourQualityColdResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Cold Resistance per 2% Quality", statOrder = { 1938, 7986 }, level = 1, group = "HarvestAlternateArmourQualityColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, tradeHashes = { [1665106429] = { "Grants +1% to Cold Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, + ["HarvestAlternateArmourQualityLightningResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Lightning Resistance per 2% Quality", statOrder = { 1938, 8099 }, level = 1, group = "HarvestAlternateArmourQualityLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "lightning", "resistance" }, tradeHashes = { [2702369635] = { "Grants +1% to Lightning Resistance per 2% Quality" }, [2677401098] = { "Quality does not increase Defences" }, } }, + ["SummonedSkeletonWarriorsGetWeaponStatsInMainHandUnique__1"] = { affix = "", "Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand", statOrder = { 4450 }, level = 1, group = "SummonSkeletonsWarriorsGetWeaponStatsInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646007123] = { "Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand" }, } }, + ["SkeletonWarriorsTripleDamageUnique__1_"] = { affix = "", "Summoned Skeleton Warriors and Soldiers deal Triple Damage with this", "Weapon if you've Hit with this Weapon Recently", statOrder = { 4451, 4451.1 }, level = 1, group = "SkeletonWarriorsTripleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [697059777] = { "Summoned Skeleton Warriors and Soldiers deal Triple Damage with this", "Weapon if you've Hit with this Weapon Recently" }, } }, + ["GrantsUnholyMightUnique__1"] = { affix = "", "Unholy Might", statOrder = { 2948 }, level = 1, group = "GrantsUnholyMight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1898242171] = { "" }, [1646760085] = { "Unholy Might" }, } }, + ["NearbyEnemiesAreChilledUnique__1"] = { affix = "", "Nearby Enemies are Chilled", statOrder = { 8015 }, level = 1, group = "NearbyEnemiesAreChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2159555743] = { "Nearby Enemies are Chilled" }, } }, + ["FreezeChilledEnemiesMoreDamageUnique__1_"] = { affix = "", "Freeze Chilled Enemies as though dealing (50-100)% more Damage", statOrder = { 6754 }, level = 1, group = "FreezeChilledEnemiesMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4272678430] = { "Freeze Chilled Enemies as though dealing (50-100)% more Damage" }, } }, + ["AllDamageCanFreezeUnique__1"] = { affix = "", "All Damage can Freeze", statOrder = { 4668 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage can Freeze" }, } }, + ["CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently", statOrder = { 6042 }, level = 85, group = "CriticalStrikeMultiplierIfGainedPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2865731079] = { "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently" }, } }, + ["PowerChargeDurationFinalUnique__1__"] = { affix = "", "90% less Power Charge Duration", statOrder = { 9841 }, level = 1, group = "PowerChargeDurationFinal", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2625134410] = { "90% less Power Charge Duration" }, } }, + ["ElementalDamageTakenUnique__1"] = { affix = "", "(40-50)% increased Elemental Damage taken", statOrder = { 3329 }, level = 1, group = "ElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2734809852] = { "(40-50)% increased Elemental Damage taken" }, } }, + ["DisplaySupportedByImmolateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Immolate", statOrder = { 319 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 15 Immolate" }, } }, + ["DisplaySupportedByUnboundAilmentsUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 15 Unbound Ailments", statOrder = { 403 }, level = 1, group = "DisplaySupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3699494172] = { "Socketed Gems are Supported by Level 15 Unbound Ailments" }, } }, + ["FireHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Fire Damage taken as Lightning Damage", statOrder = { 6670 }, level = 1, group = "FireHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142376596] = { "40% of Fire Damage taken as Lightning Damage" }, } }, + ["ColdHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Cold Damage taken as Lightning Damage", statOrder = { 5908 }, level = 1, group = "ColdHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2881210047] = { "40% of Cold Damage taken as Lightning Damage" }, } }, + ["EnemyShockedConvertedToLightningUnique__1"] = { affix = "", "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning", statOrder = { 6483 }, level = 1, group = "EnemyShockedConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1070888079] = { "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning" }, } }, + ["EnemyIgnitedConvertedToFireUnique__1"] = { affix = "", "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire", statOrder = { 6471 }, level = 1, group = "EnemyIgnitedConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272032962] = { "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire" }, } }, + ["LifeGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (20-28) Life per Cursed Enemy Hit with Attacks", statOrder = { 7458 }, level = 61, group = "LifeGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (20-28) Life per Cursed Enemy Hit with Attacks" }, } }, + ["ManaGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (10-14) Mana per Cursed Enemy Hit with Attacks", statOrder = { 8291 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (10-14) Mana per Cursed Enemy Hit with Attacks" }, } }, + ["CullingStrikeCursedEnemyUnique__1_"] = { affix = "", "You have Culling Strike against Cursed Enemies", statOrder = { 6073 }, level = 1, group = "CullingStrikeCursedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2150694455] = { "You have Culling Strike against Cursed Enemies" }, } }, + ["NearbyEnemiesAvoidProjectilesUnique__1"] = { affix = "", "Projectiles cannot collide with Enemies in Close Range", statOrder = { 9589 }, level = 1, group = "NearbyEnemiesAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826633504] = { "Projectiles cannot collide with Enemies in Close Range" }, } }, + ["ScorchingBrittleSappingConfluxUnique__1"] = { affix = "", "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal", statOrder = { 6909 }, level = 85, group = "ScorchingBrittleSappingConflux", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1518701332] = { "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal" }, } }, + ["CannotIgniteChillFreezeShockUnique__1"] = { affix = "", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 9612 }, level = 1, group = "CannotIgniteChillFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3281123655] = { "Cannot Ignite, Chill, Freeze or Shock" }, } }, + ["CorpseWalk"] = { affix = "", "Triggers Level 20 Corpse Walk when Equipped", statOrder = { 808 }, level = 1, group = "CorpseWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [779168081] = { "Triggers Level 20 Corpse Walk when Equipped" }, } }, + ["GainAreaOfEffectPluspercentOnManaSpentUnique__1"] = { affix = "", "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana", statOrder = { 6826 }, level = 69, group = "GainAreaOfEffectPluspercentOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3591816140] = { "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana" }, } }, + ["LifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%", statOrder = { 7521 }, level = 1, group = "LifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3845048660] = { "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%" }, } }, + ["GainEnduranceChargesWhenHitUnique__1_"] = { affix = "", "Gain an Endurance Charge when you are Hit", statOrder = { 2785 }, level = 1, group = "GainEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1514657588] = { "Gain an Endurance Charge when you are Hit" }, } }, + ["LoseLifeIfHitRecentlyUnique__1"] = { affix = "", "Lose 2% of Life per second if you have been Hit Recently", statOrder = { 7481 }, level = 1, group = "LoseLifeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2325592140] = { "Lose 2% of Life per second if you have been Hit Recently" }, } }, + ["PerfectAgonyIfCritRecentlyUnique__1"] = { affix = "", "You have Perfect Agony if you've dealt a Critical Strike recently", statOrder = { 6888 }, level = 1, group = "PerfectAgonyIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3058395672] = { "You have Perfect Agony if you've dealt a Critical Strike recently" }, } }, + ["BrandDamageUnique__1"] = { affix = "", "40% increased Brand Damage", statOrder = { 10182 }, level = 1, group = "BrandDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1323465399] = { "40% increased Brand Damage" }, } }, + ["AdditionalBrandUnique__1"] = { affix = "", "You can Cast an additional Brand", statOrder = { 5125 }, level = 1, group = "AdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [708630863] = { "You can Cast an additional Brand" }, } }, + ["CriticalStrikeChancePerBrandUnique__1___"] = { affix = "", "30% increased Critical Strike Chance per Brand", statOrder = { 6016 }, level = 1, group = "CriticalStrikeChancePerBrand", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [2409504914] = { "30% increased Critical Strike Chance per Brand" }, } }, + ["DamageAgainstMarkedEnemiesUnique__1"] = { affix = "", "(30-50)% increased Damage with Hits and Ailments against Marked Enemy", statOrder = { 6123 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(30-50)% increased Damage with Hits and Ailments against Marked Enemy" }, } }, + ["MarkCastSpeedUnique__1"] = { affix = "", "Mark Skills have (10-15)% increased Cast Speed", statOrder = { 2239 }, level = 1, group = "MarkCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "curse" }, tradeHashes = { [4189061307] = { "Mark Skills have (10-15)% increased Cast Speed" }, } }, + ["TransferMarkOnDeathUnique__1"] = { affix = "", "Your Mark Transfers to another Enemy when Marked Enemy dies", statOrder = { 10847 }, level = 1, group = "TransferMarkOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1104120660] = { "Your Mark Transfers to another Enemy when Marked Enemy dies" }, } }, + ["DamageTakenFromMarkedTargetUnique__1"] = { affix = "", "8% of Damage from Hits is taken from Marked Target's Life before you", statOrder = { 6176 }, level = 1, group = "DamageTakenFromMarkedTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691190311] = { "8% of Damage from Hits is taken from Marked Target's Life before you" }, } }, + ["FlaskEldritchBatteryUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Eldritch Battery during Effect", statOrder = { 872, 1094 }, level = 1, group = "FlaskEldritchBattery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "defences", "energy_shield" }, tradeHashes = { [74462130] = { "Life Recovery from Flasks also applies to Energy Shield during Effect" }, [1544417021] = { "Eldritch Battery during Effect" }, } }, + ["GrantsDeathWishUnique__1__"] = { affix = "", "Grants Level 20 Death Wish Skill", statOrder = { 714 }, level = 1, group = "GrantsDeathWish", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1965393792] = { "Grants Level 20 Death Wish Skill" }, } }, + ["EnemyTemporalChainsOnHitUnique__1"] = { affix = "", "Enemy Hits inflict Temporal Chains on you", statOrder = { 6490 }, level = 1, group = "EnemyTemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1955994922] = { "Enemy Hits inflict Temporal Chains on you" }, } }, + ["GainRageOnLosingTemporalChainsUnique__1__"] = { affix = "", "When you lose Temporal Chains you gain maximum Rage", statOrder = { 6860 }, level = 1, group = "GainRageOnLosingTemporalChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174796794] = { "When you lose Temporal Chains you gain maximum Rage" }, } }, + ["ImmuneToCursesWithRageUnique__1"] = { affix = "", "Immune to Curses while you have at least 25 Rage", statOrder = { 7322 }, level = 1, group = "ImmuneToCursesWithRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [534844170] = { "Immune to Curses while you have at least 25 Rage" }, } }, + ["WeaponCritChanceOverrideUnique__1__"] = { affix = "", "Critical Strike Chance is (30-40)% for Hits with this Weapon", statOrder = { 8242 }, level = 1, group = "WeaponCritChanceIs", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1672183492] = { "Critical Strike Chance is (30-40)% for Hits with this Weapon" }, } }, + ["NoIntelligenceUnique__1_"] = { affix = "", "You have no Intelligence", statOrder = { 7392 }, level = 1, group = "NoIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2706175703] = { "You have no Intelligence" }, } }, + ["FlaskLifeRecoveryAlliesUnique__1_"] = { affix = "", "100% of Life Recovery from Flasks is applied to nearby Allies instead of You", statOrder = { 7490 }, level = 1, group = "FlaskLifeRecoveryAllies", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2264655303] = { "100% of Life Recovery from Flasks is applied to nearby Allies instead of You" }, } }, + ["DamageIfConsumedCorpseUnique__1__"] = { affix = "", "(20-40)% increased Damage if you have Consumed a corpse Recently", statOrder = { 4289 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(20-40)% increased Damage if you have Consumed a corpse Recently" }, } }, + ["HexExpiresMaxDoomUnique__1"] = { affix = "", "Non-Aura Hexes expire upon reaching 200% of base Effect", statOrder = { 7238 }, level = 48, group = "HexExpiresMaxDoom", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3363199577] = { "Non-Aura Hexes expire upon reaching 200% of base Effect" }, } }, + ["DoubleDoomEffectUnique__1"] = { affix = "", "Non-Aura Hexes gain 20% increased Effect per second", statOrder = { 9620 }, level = 1, group = "DoubleDoomEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3266609002] = { "Non-Aura Hexes gain 20% increased Effect per second" }, } }, + ["GlobalAddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "(1-2) to (36-40) Lightning Damage per Power Charge", statOrder = { 9374 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (36-40) Lightning Damage per Power Charge" }, } }, + ["HasMassiveShrineBuffUnique__1"] = { affix = "", "You have Lesser Massive Shrine Buff", statOrder = { 7032 }, level = 1, group = "HasMassiveShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3779398176] = { "You have Lesser Massive Shrine Buff" }, } }, + ["HasBrutalShrineBuffUnique__1"] = { affix = "", "You have Lesser Brutal Shrine Buff", statOrder = { 7031 }, level = 1, group = "HasBrutalShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2761538350] = { "You have Lesser Brutal Shrine Buff" }, } }, + ["SocketedSkillsDoubleDamageUnique__1_"] = { affix = "", "Socketed Skills deal Double Damage", statOrder = { 574 }, level = 1, group = "SocketedSkillsDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2132884933] = { "Socketed Skills deal Double Damage" }, } }, + ["TotalRecoveryLifeLeechDoubledUnique__1"] = { affix = "", "Total Recovery per second from Life Leech is Doubled", statOrder = { 10539 }, level = 55, group = "TotalRecoveryLifeLeechDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1277035917] = { "Total Recovery per second from Life Leech is Doubled" }, } }, + ["DamageLeechWith5ChargesUnique__1"] = { affix = "", "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges", statOrder = { 7465 }, level = 1, group = "DamageLeechWith5Charges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1526625193] = { "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges" }, } }, + ["ReflectElementalAilmentsToSelfUnique__1"] = { affix = "", "Elemental Ailments you inflict are Reflected to you", statOrder = { 6380 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1370804479] = { "Elemental Ailments you inflict are Reflected to you" }, } }, + ["ProlifElementalAilmentsFromSelfUnique__1__"] = { affix = "", "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres", statOrder = { 6379 }, level = 1, group = "ProlifElementalAilmentsFromSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3435227689] = { "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres" }, } }, + ["ElementalDamagePerPowerChargeUnique__1"] = { affix = "", "(3-5)% increased Elemental Damage per Power charge", statOrder = { 6396 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1482070333] = { "(3-5)% increased Elemental Damage per Power charge" }, } }, + ["LosePowerChargesOnBlockUnique__1"] = { affix = "", "Lose all Power Charges when you Block", statOrder = { 8252 }, level = 1, group = "LosePowerChargesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3898799092] = { "Lose all Power Charges when you Block" }, } }, + ["GainPowerChargesNotLostRecentlyUnique__1_"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6903 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, + ["SocketedGemQualityUnique__1"] = { affix = "", "+(30-50)% to Quality of Socketed Gems", statOrder = { 213 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(30-50)% to Quality of Socketed Gems" }, } }, + ["SocketedGemQualityUnique__2_"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 213 }, level = 57, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } }, + ["NearbyEnemiesAreBlindedPhysicalAegisUnique__1"] = { affix = "", "Nearby Enemies are Blinded while Physical Aegis is not depleted", statOrder = { 9583 }, level = 1, group = "NearbyEnemiesAreBlindedPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2504709365] = { "Nearby Enemies are Blinded while Physical Aegis is not depleted" }, } }, + ["CriticalStrikeChanceWithoutPhysicalAegisUnique__1"] = { affix = "", "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted", statOrder = { 6029 }, level = 1, group = "CriticalStrikeChanceWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2620656067] = { "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted" }, } }, + ["AttackAndCastSpeedWithoutPhysicalAegisUnique__1"] = { affix = "", "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted", statOrder = { 4874 }, level = 1, group = "AttackAndCastSpeedWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [232331266] = { "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted" }, } }, + ["SpellsGainIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds", statOrder = { 10213 }, level = 1, group = "SpellsGainIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2540626225] = { "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds" }, } }, + ["SpellsLoseIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds", statOrder = { 10214 }, level = 1, group = "SpellsLoseIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2122561670] = { "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds" }, } }, + ["CriticalStrikeChancePerIntensityUnique__1"] = { affix = "", "Spells have 10% reduced Critical Strike Chance per Intensity", statOrder = { 6019 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2923377613] = { "Spells have 10% reduced Critical Strike Chance per Intensity" }, } }, + ["CriticalStrikeChancePerIntensityUnique__2"] = { affix = "", "Spells have (30-50)% increased Critical Strike Chance per Intensity", statOrder = { 6019 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2923377613] = { "Spells have (30-50)% increased Critical Strike Chance per Intensity" }, } }, + ["LifeFlaskPassiveChargeGainUnique__1_"] = { affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7448 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } }, + ["LifeFlaskPassiveChargeGainUnique__2"] = { affix = "", "Life Flasks gain (0-3) Charges every 3 seconds", statOrder = { 7448 }, level = 98, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain (0-3) Charges every 3 seconds" }, } }, + ["LifeFlaskPassiveChargeGainOnLowLifeUnique__1"] = { affix = "", "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds", statOrder = { 7449 }, level = 70, group = "LifeFlaskPassiveChargeGainOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4197693974] = { "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds" }, } }, + ["ManaFlaskPassiveChargeGainUnique__1"] = { affix = "", "Mana Flasks gain (0-3) Charges every 3 seconds", statOrder = { 8289 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1193925814] = { "Mana Flasks gain (0-3) Charges every 3 seconds" }, } }, + ["UtilityFlaskPassiveChargeGainUnique__1"] = { affix = "", "Utility Flasks gain (0-3) Charges every 3 seconds", statOrder = { 10670 }, level = 1, group = "UtilityFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567919918] = { "Utility Flasks gain (0-3) Charges every 3 seconds" }, } }, + ["ElementalDamageLowestResistUnique__1"] = { affix = "", "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead", statOrder = { 6401 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead" }, } }, + ["ReducedAttackSpeedWhilePhasingUnique__1"] = { affix = "", "30% reduced Attack Speed while Phasing", statOrder = { 4957 }, level = 1, group = "AttackSpeedWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2752264922] = { "30% reduced Attack Speed while Phasing" }, } }, + ["PhysicalDamageAddedAsRandomWhileIgnitedUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited", statOrder = { 9779 }, level = 1, group = "PhysicalDamageAddedAsRandomWhileIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3595519743] = { "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited" }, } }, + ["ElementalPenetrationWhileChilledUnique__1___"] = { affix = "", "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled", statOrder = { 6421 }, level = 1, group = "ElementalPenetrationWhileChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1089858120] = { "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled" }, } }, + ["ElementalDamageLuckyWhileShockedUnique__1__"] = { affix = "", "Elemental Damage with Hits is Lucky while you are Shocked", statOrder = { 6384 }, level = 1, group = "ElementalDamageLuckyWhileShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [888026555] = { "Elemental Damage with Hits is Lucky while you are Shocked" }, } }, ["WeaponEnchantmentHeistPhysicalEffect1"] = { affix = "Enchantment Physical Modifier Effect", "8% increased Explicit Physical Modifier magnitudes", statOrder = { 50 }, level = 1, group = "WeaponEnchantmentHeistPhysicalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistFireEffect1"] = { affix = "Enchantment Fire Modifier Effect", "8% increased Explicit Fire Modifier magnitudes", statOrder = { 46 }, level = 1, group = "WeaponEnchantmentHeistFireModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistLightningEffect1"] = { affix = "Enchantment Lightning Modifier Effect", "8% increased Explicit Lightning Modifier magnitudes", statOrder = { 48 }, level = 1, group = "WeaponEnchantmentHeistLightningModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, @@ -7018,1353 +7128,1869 @@ return { ["WeaponEnchantmentHeistCriticalEffect1_"] = { affix = "Enchantment Critical Modifier Effect", "8% increased Explicit Critical Modifier magnitudes", statOrder = { 43 }, level = 70, group = "WeaponEnchantmentHeistCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistAttributeEffect1"] = { affix = "Enchantment Attribute Modifier Effect", "8% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistAilmentEffect1"] = { affix = "Enchantment Ailment Modifier Effect", "8% increased Explicit Ailment Modifier magnitudes", statOrder = { 38 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeRequirement1"] = { affix = "Enchantment Attribute Requirement", "40% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponEnchantmentHeistAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "40% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistSocketsAreLinked1_"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 71 }, level = 40, group = "WeaponEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistWhiteSockets1_"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 77 }, level = 70, group = "WeaponEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 2 White Sockets" }, } }, + ["WeaponEnchantmentHeistAttributeRequirement1"] = { affix = "Enchantment Attribute Requirement", "40% reduced Attribute Requirements", statOrder = { 1099 }, level = 1, group = "WeaponEnchantmentHeistAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "40% reduced Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistSocketsAreLinked1_"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 72 }, level = 40, group = "WeaponEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, + ["WeaponEnchantmentHeistWhiteSockets1_"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 81 }, level = 70, group = "WeaponEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 2 White Sockets" }, } }, ["WeaponEnchantmentHeistPhysicalEffectSpeedEffect1"] = { affix = "Enchantment Physical Modifier Effect and Speed Modifier Effect", "6% increased Explicit Physical Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 50, 52 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistPhysicalEffectCriticalEffect1"] = { affix = "Enchantment Physical Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 43, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistPhysicalEffectAttributeEffect1____"] = { affix = "Enchantment Physical Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 39, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistPhysicalEffectAilmentEffect1"] = { affix = "Enchantment Physical Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 38, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirement1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement", "6% increased Explicit Physical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 50, 1075 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSocketsAreLinked1"] = { affix = "Enchantment Physical Modifier Effect and Sockets Are Linked", "6% increased Explicit Physical Modifier magnitudes", "All Sockets Linked", statOrder = { 50, 71 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Red Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Red Sockets", statOrder = { 50, 66 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoBlueSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Blue Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Green Sockets", statOrder = { 50, 65 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectNoGreenSockets1_"] = { affix = "Enchantment Physical Modifier Effect and No Green Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 50, 64 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectWhiteSockets1_"] = { affix = "Enchantment Physical Modifier Effect and White Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has 1 White Socket", statOrder = { 50, 77 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirement1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement", "6% increased Explicit Physical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 50, 1099 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectSocketsAreLinked1"] = { affix = "Enchantment Physical Modifier Effect and Sockets Are Linked", "6% increased Explicit Physical Modifier magnitudes", "All Sockets Linked", statOrder = { 50, 72 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [1335369947] = { "6% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectNoRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Red Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Red Sockets", statOrder = { 50, 67 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectNoBlueSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Blue Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Green Sockets", statOrder = { 50, 66 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectNoGreenSockets1_"] = { affix = "Enchantment Physical Modifier Effect and No Green Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 50, 65 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectWhiteSockets1_"] = { affix = "Enchantment Physical Modifier Effect and White Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has 1 White Socket", statOrder = { 50, 81 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [1335369947] = { "8% increased Explicit Physical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistFireEffectSpeedEffect1"] = { affix = "Enchantment Fire Modifier Effect and Speed Modifier Effect", "6% increased Explicit Fire Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 46, 52 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistFireEffectCriticalEffect1"] = { affix = "Enchantment Fire Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 43, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistFireEffectAttributeEffect1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 39, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistFireEffectAilmentEffect1_"] = { affix = "Enchantment Fire Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 38, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectAttributeRequirement1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement", "6% increased Explicit Fire Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 46, 1075 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistFireEffectSocketsAreLinked1"] = { affix = "Enchantment Fire Modifier Effect and Sockets Are Linked", "6% increased Explicit Fire Modifier magnitudes", "All Sockets Linked", statOrder = { 46, 71 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistFireEffectNoRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Red Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Red Sockets", statOrder = { 46, 66 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectNoBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Blue Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Green Sockets", statOrder = { 46, 65 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectNoGreenSockets1_"] = { affix = "Enchantment Fire Modifier Effect and No Green Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Blue Sockets", statOrder = { 46, 64 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectWhiteSockets1"] = { affix = "Enchantment Fire Modifier Effect and White Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has 1 White Socket", statOrder = { 46, 77 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, + ["WeaponEnchantmentHeistFireEffectAttributeRequirement1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement", "6% increased Explicit Fire Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 46, 1099 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistFireEffectSocketsAreLinked1"] = { affix = "Enchantment Fire Modifier Effect and Sockets Are Linked", "6% increased Explicit Fire Modifier magnitudes", "All Sockets Linked", statOrder = { 46, 72 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "6% increased Explicit Fire Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, + ["WeaponEnchantmentHeistFireEffectNoRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Red Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Red Sockets", statOrder = { 46, 67 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, + ["WeaponEnchantmentHeistFireEffectNoBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Blue Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Green Sockets", statOrder = { 46, 66 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, + ["WeaponEnchantmentHeistFireEffectNoGreenSockets1_"] = { affix = "Enchantment Fire Modifier Effect and No Green Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Blue Sockets", statOrder = { 46, 65 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, + ["WeaponEnchantmentHeistFireEffectWhiteSockets1"] = { affix = "Enchantment Fire Modifier Effect and White Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has 1 White Socket", statOrder = { 46, 81 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "8% increased Explicit Fire Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, ["WeaponEnchantmentHeistLightningEffectSpeedEffect1_"] = { affix = "Enchantment Lightning Modifier Effect and Speed Modifier Effect", "6% increased Explicit Lightning Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 48, 52 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistLightningEffectCriticalEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 43, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistLightningEffectAttributeEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 39, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistLightningEffectAilmentEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 38, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAttributeRequirement1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement", "6% increased Explicit Lightning Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 48, 1075 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectSocketsAreLinked1"] = { affix = "Enchantment Lightning Modifier Effect and Sockets Are Linked", "6% increased Explicit Lightning Modifier magnitudes", "All Sockets Linked", statOrder = { 48, 71 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Red Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Red Sockets", statOrder = { 48, 66 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoBlueSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and No Blue Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Green Sockets", statOrder = { 48, 65 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectNoGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Green Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Blue Sockets", statOrder = { 48, 64 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectWhiteSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and White Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has 1 White Socket", statOrder = { 48, 77 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectAttributeRequirement1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement", "6% increased Explicit Lightning Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 48, 1099 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectSocketsAreLinked1"] = { affix = "Enchantment Lightning Modifier Effect and Sockets Are Linked", "6% increased Explicit Lightning Modifier magnitudes", "All Sockets Linked", statOrder = { 48, 72 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3624940721] = { "6% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectNoRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Red Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Red Sockets", statOrder = { 48, 67 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectNoBlueSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and No Blue Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Green Sockets", statOrder = { 48, 66 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectNoGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Green Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Blue Sockets", statOrder = { 48, 65 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectWhiteSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and White Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has 1 White Socket", statOrder = { 48, 81 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3624940721] = { "8% increased Explicit Lightning Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistColdEffectSpeedEffect1"] = { affix = "Enchantment Cold Modifier Effect and Speed Modifier Effect", "6% increased Explicit Cold Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 42, 52 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistColdEffectCriticalEffect1_"] = { affix = "Enchantment Cold Modifier Effect and Critical Modifier Effect", "6% increased Explicit Cold Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 42, 43 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistColdEffectAttributeEffect1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Cold Modifier magnitudes", statOrder = { 39, 42 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistColdEffectAilmentEffect1"] = { affix = "Enchantment Cold Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Cold Modifier magnitudes", statOrder = { 38, 42 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectAttributeRequirement1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement", "6% increased Explicit Cold Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 42, 1075 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistColdEffectSocketsAreLinked1"] = { affix = "Enchantment Cold Modifier Effect and Sockets Are Linked", "6% increased Explicit Cold Modifier magnitudes", "All Sockets Linked", statOrder = { 42, 71 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistColdEffectNoRedSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Red Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Red Sockets", statOrder = { 42, 66 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectNoBlueSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Blue Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Green Sockets", statOrder = { 42, 65 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectNoGreenSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Green Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Blue Sockets", statOrder = { 42, 64 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectWhiteSockets1___"] = { affix = "Enchantment Cold Modifier Effect and White Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has 1 White Socket", statOrder = { 42, 77 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, + ["WeaponEnchantmentHeistColdEffectAttributeRequirement1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement", "6% increased Explicit Cold Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 42, 1099 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistColdEffectSocketsAreLinked1"] = { affix = "Enchantment Cold Modifier Effect and Sockets Are Linked", "6% increased Explicit Cold Modifier magnitudes", "All Sockets Linked", statOrder = { 42, 72 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "6% increased Explicit Cold Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, + ["WeaponEnchantmentHeistColdEffectNoRedSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Red Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Red Sockets", statOrder = { 42, 67 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, + ["WeaponEnchantmentHeistColdEffectNoBlueSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Blue Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Green Sockets", statOrder = { 42, 66 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, + ["WeaponEnchantmentHeistColdEffectNoGreenSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Green Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Blue Sockets", statOrder = { 42, 65 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, + ["WeaponEnchantmentHeistColdEffectWhiteSockets1___"] = { affix = "Enchantment Cold Modifier Effect and White Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has 1 White Socket", statOrder = { 42, 81 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "8% increased Explicit Cold Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, ["WeaponEnchantmentHeistChaosEffectSpeedEffect1_"] = { affix = "Enchantment Chaos Modifier Effect and Speed Modifier Effect", "6% increased Explicit Chaos Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 41, 52 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistChaosEffectCriticalEffect1"] = { affix = "Enchantment Chaos Modifier Effect and Critical Modifier Effect", "6% increased Explicit Chaos Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 41, 43 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistChaosEffectAttributeEffect1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Chaos Modifier magnitudes", statOrder = { 39, 41 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistChaosEffectAilmentEffect1_"] = { affix = "Enchantment Chaos Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Chaos Modifier magnitudes", statOrder = { 38, 41 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectAttributeRequirement1_"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement", "6% increased Explicit Chaos Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 41, 1075 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistChaosEffectSocketsAreLinked1_"] = { affix = "Enchantment Chaos Modifier Effect and Sockets Are Linked", "6% increased Explicit Chaos Modifier magnitudes", "All Sockets Linked", statOrder = { 41, 71 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoRedSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and No Red Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Red Sockets", statOrder = { 41, 66 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Blue Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Green Sockets", statOrder = { 41, 65 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectNoGreenSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Green Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Blue Sockets", statOrder = { 41, 64 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectWhiteSockets1"] = { affix = "Enchantment Chaos Modifier Effect and White Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has 1 White Socket", statOrder = { 41, 77 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, + ["WeaponEnchantmentHeistChaosEffectAttributeRequirement1_"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement", "6% increased Explicit Chaos Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 41, 1099 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistChaosEffectSocketsAreLinked1_"] = { affix = "Enchantment Chaos Modifier Effect and Sockets Are Linked", "6% increased Explicit Chaos Modifier magnitudes", "All Sockets Linked", statOrder = { 41, 72 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "6% increased Explicit Chaos Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, + ["WeaponEnchantmentHeistChaosEffectNoRedSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and No Red Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Red Sockets", statOrder = { 41, 67 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, + ["WeaponEnchantmentHeistChaosEffectNoBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Blue Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Green Sockets", statOrder = { 41, 66 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, + ["WeaponEnchantmentHeistChaosEffectNoGreenSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Green Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Blue Sockets", statOrder = { 41, 65 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, + ["WeaponEnchantmentHeistChaosEffectWhiteSockets1"] = { affix = "Enchantment Chaos Modifier Effect and White Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has 1 White Socket", statOrder = { 41, 81 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "8% increased Explicit Chaos Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, ["WeaponEnchantmentHeistCasterDamageEffectSpeedEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Speed Modifier Effect", "6% increased Explicit Caster Damage Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 40, 52 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistCasterDamageEffectCriticalEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Critical Modifier Effect", "6% increased Explicit Caster Damage Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 40, 43 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistCasterDamageEffectAttributeEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 39, 40 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistCasterDamageEffectAilmentEffect1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 38, 40 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirement1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement", "6% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 40, 1075 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSocketsAreLinked1"] = { affix = "Enchantment Caster Damage Modifier Effect and Sockets Are Linked", "6% increased Explicit Caster Damage Modifier magnitudes", "All Sockets Linked", statOrder = { 40, 71 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoRedSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Red Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Red Sockets", statOrder = { 40, 66 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Blue Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Green Sockets", statOrder = { 40, 65 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectNoGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and No Green Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Blue Sockets", statOrder = { 40, 64 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectWhiteSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and White Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has 1 White Socket", statOrder = { 40, 77 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirement1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement", "6% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 40, 1099 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectSocketsAreLinked1"] = { affix = "Enchantment Caster Damage Modifier Effect and Sockets Are Linked", "6% increased Explicit Caster Damage Modifier magnitudes", "All Sockets Linked", statOrder = { 40, 72 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [1498186316] = { "6% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectNoRedSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Red Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Red Sockets", statOrder = { 40, 67 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectNoBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Blue Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Green Sockets", statOrder = { 40, 66 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectNoGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and No Green Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Blue Sockets", statOrder = { 40, 65 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectWhiteSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and White Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has 1 White Socket", statOrder = { 40, 81 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [1498186316] = { "8% increased Explicit Caster Damage Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistManaEffectSpeedEffect1"] = { affix = "Enchantment Mana Modifier Effect and Speed Modifier Effect", "6% increased Explicit Mana Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 49, 52 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistManaEffectCriticalEffect1"] = { affix = "Enchantment Mana Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 43, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistManaEffectAttributeEffect1_"] = { affix = "Enchantment Mana Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 39, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistManaEffectAilmentEffect1"] = { affix = "Enchantment Mana Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 38, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAttributeRequirement1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 49, 1075 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 49, 71 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 49, 66 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoBlueSockets1__"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 49, 65 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 49, 64 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectWhiteSockets1"] = { affix = "Enchantment Mana Modifier Effect and White Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 49, 77 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectAttributeRequirement1__"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement", "6% increased Explicit Speed Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 52, 1075 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectSocketsAreLinked1__"] = { affix = "Enchantment Speed Modifier Effect and Sockets Are Linked", "6% increased Explicit Speed Modifier magnitudes", "All Sockets Linked", statOrder = { 52, 71 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Red Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Red Sockets", statOrder = { 52, 66 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Blue Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Green Sockets", statOrder = { 52, 65 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectNoGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Green Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Blue Sockets", statOrder = { 52, 64 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectWhiteSockets1_"] = { affix = "Enchantment Speed Modifier Effect and White Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has 1 White Socket", statOrder = { 52, 77 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectAttributeRequirement1_"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement", "6% increased Explicit Critical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 43, 1075 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectSocketsAreLinked1"] = { affix = "Enchantment Critical Modifier Effect and Sockets Are Linked", "6% increased Explicit Critical Modifier magnitudes", "All Sockets Linked", statOrder = { 43, 71 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Red Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Red Sockets", statOrder = { 43, 66 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Blue Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Green Sockets", statOrder = { 43, 65 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectNoGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Green Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 43, 64 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectWhiteSockets1_"] = { affix = "Enchantment Critical Modifier Effect and White Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has 1 White Socket", statOrder = { 43, 77 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectAttributeRequirement1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement", "6% increased Explicit Attribute Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 39, 1075 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectSocketsAreLinked1_"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 39, 71 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 39, 66 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 39, 65 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 39, 64 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectWhiteSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and White Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 39, 77 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAilmentEffectAttributeRequirement1_"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement", "6% increased Explicit Ailment Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 38, 1075 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistAilmentEffectSocketsAreLinked1"] = { affix = "Enchantment Ailment Modifier Effect and Sockets Are Linked", "6% increased Explicit Ailment Modifier magnitudes", "All Sockets Linked", statOrder = { 38, 71 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoRedSockets1_"] = { affix = "Enchantment Ailment Modifier Effect and No Red Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Red Sockets", statOrder = { 38, 66 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and No Blue Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Green Sockets", statOrder = { 38, 65 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectNoGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and No Green Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Blue Sockets", statOrder = { 38, 64 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectWhiteSockets1"] = { affix = "Enchantment Ailment Modifier Effect and White Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has 1 White Socket", statOrder = { 38, 77 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, + ["WeaponEnchantmentHeistManaEffectAttributeRequirement1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 49, 1099 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 49, 72 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectNoRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 49, 67 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectNoBlueSockets1__"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 49, 66 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 49, 65 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectWhiteSockets1"] = { affix = "Enchantment Mana Modifier Effect and White Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 49, 81 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectAttributeRequirement1__"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement", "6% increased Explicit Speed Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 52, 1099 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectSocketsAreLinked1__"] = { affix = "Enchantment Speed Modifier Effect and Sockets Are Linked", "6% increased Explicit Speed Modifier magnitudes", "All Sockets Linked", statOrder = { 52, 72 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [363924732] = { "6% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectNoRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Red Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Red Sockets", statOrder = { 52, 67 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectNoBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Blue Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Green Sockets", statOrder = { 52, 66 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectNoGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Green Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Blue Sockets", statOrder = { 52, 65 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectWhiteSockets1_"] = { affix = "Enchantment Speed Modifier Effect and White Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has 1 White Socket", statOrder = { 52, 81 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [363924732] = { "8% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectAttributeRequirement1_"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement", "6% increased Explicit Critical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 43, 1099 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectSocketsAreLinked1"] = { affix = "Enchantment Critical Modifier Effect and Sockets Are Linked", "6% increased Explicit Critical Modifier magnitudes", "All Sockets Linked", statOrder = { 43, 72 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [2393315299] = { "6% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectNoRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Red Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Red Sockets", statOrder = { 43, 67 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectNoBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Blue Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Green Sockets", statOrder = { 43, 66 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectNoGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Green Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 43, 65 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectWhiteSockets1_"] = { affix = "Enchantment Critical Modifier Effect and White Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has 1 White Socket", statOrder = { 43, 81 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [2393315299] = { "8% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectAttributeRequirement1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement", "6% increased Explicit Attribute Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 39, 1099 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectSocketsAreLinked1_"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 39, 72 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 39, 67 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectNoBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 39, 66 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 39, 65 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectWhiteSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and White Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 39, 81 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAilmentEffectAttributeRequirement1_"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement", "6% increased Explicit Ailment Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 38, 1099 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistAilmentEffectSocketsAreLinked1"] = { affix = "Enchantment Ailment Modifier Effect and Sockets Are Linked", "6% increased Explicit Ailment Modifier magnitudes", "All Sockets Linked", statOrder = { 38, 72 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "6% increased Explicit Ailment Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, + ["WeaponEnchantmentHeistAilmentEffectNoRedSockets1_"] = { affix = "Enchantment Ailment Modifier Effect and No Red Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Red Sockets", statOrder = { 38, 67 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, + ["WeaponEnchantmentHeistAilmentEffectNoBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and No Blue Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Green Sockets", statOrder = { 38, 66 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, + ["WeaponEnchantmentHeistAilmentEffectNoGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and No Green Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Blue Sockets", statOrder = { 38, 65 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, + ["WeaponEnchantmentHeistAilmentEffectWhiteSockets1"] = { affix = "Enchantment Ailment Modifier Effect and White Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has 1 White Socket", statOrder = { 38, 81 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "8% increased Explicit Ailment Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, ["WeaponEnchantmentHeistPhysicalEffectSpeedEffectPenalty1___"] = { affix = "Enchantment Physical Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Physical Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 50, 52 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistPhysicalEffectCriticalEffectPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Physical Modifier magnitudes", statOrder = { 43, 50 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectSocketPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Socket Penalty", "15% increased Explicit Physical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 50, 78 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [1335369947] = { "15% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Physical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 50, 1075 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [1335369947] = { "15% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Red Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Red", statOrder = { 50, 75 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyBlueSockets1_"] = { affix = "Enchantment Physical Modifier Effect and Only Blue Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Blue", statOrder = { 50, 73 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistPhysicalEffectOnlyGreenSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Green Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Green", statOrder = { 50, 74 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectSocketPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Socket Penalty", "15% increased Explicit Physical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 50, 82 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [1335369947] = { "15% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Physical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 50, 1099 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [1335369947] = { "15% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectOnlyRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Red Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Red", statOrder = { 50, 79 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectOnlyBlueSockets1_"] = { affix = "Enchantment Physical Modifier Effect and Only Blue Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Blue", statOrder = { 50, 77 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistPhysicalEffectOnlyGreenSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Green Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Green", statOrder = { 50, 78 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [1335369947] = { "10% increased Explicit Physical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistFireEffectSpeedEffectPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Fire Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 46, 52 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistFireEffectCriticalEffectPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Fire Modifier magnitudes", statOrder = { 43, 46 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistFireEffectSocketPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Socket Penalty", "15% increased Explicit Fire Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 46, 78 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "15% increased Explicit Fire Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistFireEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Fire Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 46, 1075 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "15% increased Explicit Fire Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Red Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Red", statOrder = { 46, 75 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Blue Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Blue", statOrder = { 46, 73 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistFireEffectOnlyGreenSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Green Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Green", statOrder = { 46, 74 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, + ["WeaponEnchantmentHeistFireEffectSocketPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Socket Penalty", "15% increased Explicit Fire Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 46, 82 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "15% increased Explicit Fire Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, + ["WeaponEnchantmentHeistFireEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Fire Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 46, 1099 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "15% increased Explicit Fire Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistFireEffectOnlyRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Red Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Red", statOrder = { 46, 79 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, + ["WeaponEnchantmentHeistFireEffectOnlyBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Blue Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Blue", statOrder = { 46, 77 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, + ["WeaponEnchantmentHeistFireEffectOnlyGreenSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Green Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Green", statOrder = { 46, 78 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3574578302] = { "10% increased Explicit Fire Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, ["WeaponEnchantmentHeistLightningEffectSpeedEffectPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Lightning Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 48, 52 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistLightningEffectCriticalEffectPenalty1_"] = { affix = "Enchantment Lightning Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Lightning Modifier magnitudes", statOrder = { 43, 48 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectSocketPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Socket Penalty", "15% increased Explicit Lightning Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 48, 78 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3624940721] = { "15% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Lightning Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 48, 1075 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3624940721] = { "15% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Red Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Red", statOrder = { 48, 75 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyBlueSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Blue Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Blue", statOrder = { 48, 73 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistLightningEffectOnlyGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Green Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Green", statOrder = { 48, 74 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectSocketPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Socket Penalty", "15% increased Explicit Lightning Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 48, 82 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3624940721] = { "15% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Lightning Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 48, 1099 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3624940721] = { "15% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectOnlyRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Red Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Red", statOrder = { 48, 79 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectOnlyBlueSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Blue Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Blue", statOrder = { 48, 77 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistLightningEffectOnlyGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Green Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Green", statOrder = { 48, 78 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3624940721] = { "10% increased Explicit Lightning Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistColdEffectSpeedEffectPenalty1"] = { affix = "Enchantment Cold Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Cold Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 42, 52 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistColdEffectCriticalEffectPenalty1"] = { affix = "Enchantment Cold Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Cold Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 42, 43 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistColdEffectSocketPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Socket Penalty", "15% increased Explicit Cold Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 42, 78 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "15% increased Explicit Cold Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistColdEffectAttributeRequirementPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Cold Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 42, 1075 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "15% increased Explicit Cold Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyRedSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Red Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Red", statOrder = { 42, 75 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyBlueSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Blue Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Blue", statOrder = { 42, 73 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistColdEffectOnlyGreenSockets1__"] = { affix = "Enchantment Cold Modifier Effect and Only Green Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Green", statOrder = { 42, 74 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, + ["WeaponEnchantmentHeistColdEffectSocketPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Socket Penalty", "15% increased Explicit Cold Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 42, 82 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "15% increased Explicit Cold Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, + ["WeaponEnchantmentHeistColdEffectAttributeRequirementPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Cold Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 42, 1099 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "15% increased Explicit Cold Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistColdEffectOnlyRedSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Red Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Red", statOrder = { 42, 79 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, + ["WeaponEnchantmentHeistColdEffectOnlyBlueSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Blue Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Blue", statOrder = { 42, 77 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, + ["WeaponEnchantmentHeistColdEffectOnlyGreenSockets1__"] = { affix = "Enchantment Cold Modifier Effect and Only Green Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Green", statOrder = { 42, 78 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206904707] = { "10% increased Explicit Cold Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, ["WeaponEnchantmentHeistChaosEffectSpeedEffectPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Chaos Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 41, 52 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistChaosEffectCriticalEffectPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Chaos Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 41, 43 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistChaosEffectSocketPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Socket Penalty", "15% increased Explicit Chaos Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 41, 78 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "15% increased Explicit Chaos Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistChaosEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Chaos Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 41, 1075 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "15% increased Explicit Chaos Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyRedSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Red Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Red", statOrder = { 41, 75 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Blue Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Blue", statOrder = { 41, 73 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistChaosEffectOnlyGreenSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and Only Green Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Green", statOrder = { 41, 74 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, + ["WeaponEnchantmentHeistChaosEffectSocketPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Socket Penalty", "15% increased Explicit Chaos Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 41, 82 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "15% increased Explicit Chaos Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, + ["WeaponEnchantmentHeistChaosEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Chaos Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 41, 1099 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "15% increased Explicit Chaos Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistChaosEffectOnlyRedSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Red Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Red", statOrder = { 41, 79 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, + ["WeaponEnchantmentHeistChaosEffectOnlyBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Blue Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Blue", statOrder = { 41, 77 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, + ["WeaponEnchantmentHeistChaosEffectOnlyGreenSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and Only Green Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Green", statOrder = { 41, 78 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3196512240] = { "10% increased Explicit Chaos Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, ["WeaponEnchantmentHeistCasterDamageEffectSpeedEffectPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 40, 52 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistCasterDamageEffectCriticalEffectPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 40, 43 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectSocketPenalty1__"] = { affix = "Enchantment Caster Damage Modifier Effect and Socket Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 40, 78 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [1498186316] = { "15% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 40, 1075 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [1498186316] = { "15% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyRedSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Red Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Red", statOrder = { 40, 75 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Blue Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Blue", statOrder = { 40, 73 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCasterDamageEffectOnlyGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Green Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Green", statOrder = { 40, 74 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectSocketPenalty1__"] = { affix = "Enchantment Caster Damage Modifier Effect and Socket Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 40, 82 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [1498186316] = { "15% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 40, 1099 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [1498186316] = { "15% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectOnlyRedSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Red Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Red", statOrder = { 40, 79 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectOnlyBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Blue Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Blue", statOrder = { 40, 77 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCasterDamageEffectOnlyGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Green Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Green", statOrder = { 40, 78 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [1498186316] = { "10% increased Explicit Caster Damage Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistManaEffectSpeedEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Mana Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 49, 52 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [363924732] = { "25% reduced Explicit Speed Modifier magnitudes" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistManaEffectCriticalEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Mana Modifier magnitudes", statOrder = { 43, 49 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393315299] = { "25% reduced Explicit Critical Modifier magnitudes" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectSocketPenalty1_"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 49, 78 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectAttributeRequirementPenalty1__"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 49, 1075 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 49, 75 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 49, 73 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 49, 74 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectSocketPenalty1_"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 49, 82 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectAttributeRequirementPenalty1__"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 49, 1099 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 49, 79 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 49, 77 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 49, 78 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistSpeedEffectDamageEffectPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Damage Modifier Effect Penalty", "25% reduced Explicit Damage Modifier magnitudes", "12% increased Explicit Speed Modifier magnitudes", statOrder = { 44, 52 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [363924732] = { "12% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectSocketPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Socket Penalty", "15% increased Explicit Speed Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 52, 78 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [363924732] = { "15% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Speed Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 52, 1075 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [363924732] = { "15% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Red Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Red", statOrder = { 52, 75 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Blue Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Blue", statOrder = { 52, 73 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistSpeedEffectOnlyGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Green Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Green", statOrder = { 52, 74 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectSocketPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Socket Penalty", "15% increased Explicit Speed Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 52, 82 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [363924732] = { "15% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Speed Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 52, 1099 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [363924732] = { "15% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectOnlyRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Red Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Red", statOrder = { 52, 79 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectOnlyBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Blue Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Blue", statOrder = { 52, 77 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistSpeedEffectOnlyGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Green Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Green", statOrder = { 52, 78 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [363924732] = { "10% increased Explicit Speed Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistCriticalEffectDamageEffectPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Damage Modifier Effect Penalty", "12% increased Explicit Critical Modifier magnitudes", "25% reduced Explicit Damage Modifier magnitudes", statOrder = { 43, 44 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [2393315299] = { "12% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectSocketPenalty1___"] = { affix = "Enchantment Critical Modifier Effect and Socket Penalty", "15% increased Explicit Critical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 43, 78 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [2393315299] = { "15% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Critical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 43, 1075 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [2393315299] = { "15% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Red Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Red", statOrder = { 43, 75 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Blue Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Blue", statOrder = { 43, 73 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistCriticalEffectOnlyGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Green Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Green", statOrder = { 43, 74 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectSocketPenalty1___"] = { affix = "Enchantment Critical Modifier Effect and Socket Penalty", "15% increased Explicit Critical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 43, 82 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [2393315299] = { "15% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Critical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 43, 1099 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [2393315299] = { "15% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectOnlyRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Red Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Red", statOrder = { 43, 79 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectOnlyBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Blue Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Blue", statOrder = { 43, 77 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistCriticalEffectOnlyGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Green Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Green", statOrder = { 43, 78 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [2393315299] = { "10% increased Explicit Critical Modifier magnitudes" }, } }, ["WeaponEnchantmentHeistAttributeEffectDamageEffectPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Damage Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "25% reduced Explicit Damage Modifier magnitudes", statOrder = { 39, 44 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2979443822] = { "25% reduced Explicit Damage Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 39, 78 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 39, 1075 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyRedSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 39, 75 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 39, 73 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 39, 74 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["WeaponEnchantmentHeistAilmentEffectSocketPenalty1__"] = { affix = "Enchantment Ailment Modifier Effect and Socket Penalty", "15% increased Explicit Ailment Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 38, 78 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "15% increased Explicit Ailment Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Ailment Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 38, 1075 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "15% increased Explicit Ailment Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["WeaponEnchantmentHeistAilmentEffectOnlyRedSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Red Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Red", statOrder = { 38, 75 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["WeaponEnchantmentHeistAilmentEffectOnlyBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and Only Blue Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Blue", statOrder = { 38, 73 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["WeaponEnchantmentHeistAilmentEffectOnlyGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Green Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Green", statOrder = { 38, 74 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, + ["WeaponEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 39, 82 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 39, 1099 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectOnlyRedSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 39, 79 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectOnlyBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 39, 77 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 39, 78 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, + ["WeaponEnchantmentHeistAilmentEffectSocketPenalty1__"] = { affix = "Enchantment Ailment Modifier Effect and Socket Penalty", "15% increased Explicit Ailment Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 38, 82 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "15% increased Explicit Ailment Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, + ["WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Ailment Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 38, 1099 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "15% increased Explicit Ailment Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, + ["WeaponEnchantmentHeistAilmentEffectOnlyRedSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Red Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Red", statOrder = { 38, 79 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, + ["WeaponEnchantmentHeistAilmentEffectOnlyBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and Only Blue Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Blue", statOrder = { 38, 77 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, + ["WeaponEnchantmentHeistAilmentEffectOnlyGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Green Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Green", statOrder = { 38, 78 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086446674] = { "10% increased Explicit Ailment Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, ["WeaponEnchantmentHeistAdditionalCraftingModifier1_"] = { affix = "Enchantment Additional Crafted Modifier", "Can have 1 additional Crafted Modifier", statOrder = { 27 }, level = 80, group = "WeaponEnchantmentHeistAdditionalCraftingModifier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1963398329] = { "Can have 1 additional Crafted Modifier" }, } }, - ["DischargeThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect", "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms", "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage", statOrder = { 8052, 8053, 8054 }, level = 1, group = "DischargeThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1213084913] = { "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms" }, [2818653316] = { "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage" }, [2045330446] = { "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect" }, } }, - ["DisplaySupportedByUnleashUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Unleash", statOrder = { 396 }, level = 1, group = "DisplaySupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3356013982] = { "Socketed Gems are Supported by Level 18 Unleash" }, } }, - ["CanHaveEveryInfluenceTypeImplicitE1"] = { affix = "", "Implicit Modifiers Cannot Be Changed", "Has Elder, Shaper and all Conqueror Influences", statOrder = { 21, 7950 }, level = 87, group = "HasEveryInfluenceType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1795443614] = { "Has Elder, Shaper and all Conqueror Influences" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, } }, + ["DischargeThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect", "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms", "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage", statOrder = { 8165, 8166, 8167 }, level = 1, group = "DischargeThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3802517517] = { "" }, [1213084913] = { "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms" }, [2818653316] = { "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage" }, [2045330446] = { "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect" }, } }, + ["DisplaySupportedByUnleashUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Unleash", statOrder = { 406 }, level = 1, group = "DisplaySupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3356013982] = { "Socketed Gems are Supported by Level 18 Unleash" }, } }, + ["CanHaveEveryInfluenceTypeImplicitE1"] = { affix = "", "Implicit Modifiers Cannot Be Changed", "Has Elder, Shaper and all Conqueror Influences", statOrder = { 21, 8061 }, level = 87, group = "HasEveryInfluenceType", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1795443614] = { "Has Elder, Shaper and all Conqueror Influences" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, } }, ["ArmourEnchantmentHeistLifeEffect1"] = { affix = "Enchantment Life Modifier Effect", "8% increased Explicit Life Modifier magnitudes", statOrder = { 47 }, level = 1, group = "ArmourEnchantmentHeistLifeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistDefenceEffect1"] = { affix = "Enchantment Defence Modifier Effect", "8% increased Explicit Defence Modifier magnitudes", statOrder = { 45 }, level = 1, group = "ArmourEnchantmentHeistDefenceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistManaEffect1"] = { affix = "Enchantment Mana Modifier Effect", "8% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 1, group = "ArmourEnchantmentHeistManaModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistResistanceEffect1__"] = { affix = "Enchantment Resistance Modifier Effect", "8% increased Explicit Resistance Modifier magnitudes", statOrder = { 51 }, level = 1, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistAttributeEffect1"] = { affix = "Enchantment Attribute Modifier Effect", "8% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 1, group = "ArmourEnchantmentHeistAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeRequirements1"] = { affix = "Enchantment Attribute Requirements", "40% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "ArmourEnchantmentHeistAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "40% reduced Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistSocketsAreLinked1"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 71 }, level = 1, group = "ArmourEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistWhiteSockets1__"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 77 }, level = 1, group = "ArmourEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 2 White Sockets" }, } }, + ["ArmourEnchantmentHeistAttributeRequirements1"] = { affix = "Enchantment Attribute Requirements", "40% reduced Attribute Requirements", statOrder = { 1099 }, level = 1, group = "ArmourEnchantmentHeistAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "40% reduced Attribute Requirements" }, } }, + ["ArmourEnchantmentHeistSocketsAreLinked1"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 72 }, level = 1, group = "ArmourEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, + ["ArmourEnchantmentHeistWhiteSockets1__"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 81 }, level = 1, group = "ArmourEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 2 White Sockets" }, } }, ["ArmourEnchantmentHeistLifeEffectResistanceEffect1__"] = { affix = "Enchantment Life Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Life Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistLifeEffectAttributeEffect1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Life Modifier magnitudes", statOrder = { 39, 47 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectAttributeRequirements1"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements", "6% increased Explicit Life Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 47, 1075 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistLifeEffectSocketsAreLinked1_"] = { affix = "Enchantment Life Modifier Effect and Sockets Are Linked", "6% increased Explicit Life Modifier magnitudes", "All Sockets Linked", statOrder = { 47, 71 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoRedSockets1"] = { affix = "Enchantment Life Modifier Effect and No Red Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Red Sockets", statOrder = { 47, 66 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and No Blue Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Green Sockets", statOrder = { 47, 65 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectNoGreenSockets1__"] = { affix = "Enchantment Life Modifier Effect and No Green Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Blue Sockets", statOrder = { 47, 64 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectWhiteSocket1_"] = { affix = "Enchantment Life Modifier Effect and White Socket", "8% increased Explicit Life Modifier magnitudes", "Has 1 White Socket", statOrder = { 47, 77 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, + ["ArmourEnchantmentHeistLifeEffectAttributeRequirements1"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements", "6% increased Explicit Life Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 47, 1099 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["ArmourEnchantmentHeistLifeEffectSocketsAreLinked1_"] = { affix = "Enchantment Life Modifier Effect and Sockets Are Linked", "6% increased Explicit Life Modifier magnitudes", "All Sockets Linked", statOrder = { 47, 72 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "6% increased Explicit Life Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, + ["ArmourEnchantmentHeistLifeEffectNoRedSockets1"] = { affix = "Enchantment Life Modifier Effect and No Red Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Red Sockets", statOrder = { 47, 67 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, + ["ArmourEnchantmentHeistLifeEffectNoBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and No Blue Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Green Sockets", statOrder = { 47, 66 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, + ["ArmourEnchantmentHeistLifeEffectNoGreenSockets1__"] = { affix = "Enchantment Life Modifier Effect and No Green Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Blue Sockets", statOrder = { 47, 65 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, + ["ArmourEnchantmentHeistLifeEffectWhiteSocket1_"] = { affix = "Enchantment Life Modifier Effect and White Socket", "8% increased Explicit Life Modifier magnitudes", "Has 1 White Socket", statOrder = { 47, 81 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "8% increased Explicit Life Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, ["ArmourEnchantmentHeistDefenceEffectResistanceEffect1"] = { affix = "Enchantment Defence Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Defence Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistDefenceEffectAttributeEffect1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Defence Modifier magnitudes", statOrder = { 39, 45 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectAttributeRequirements1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements", "6% increased Explicit Defence Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 45, 1075 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectSocketsAreLinked1"] = { affix = "Enchantment Defence Modifier Effect and Sockets Are Linked", "6% increased Explicit Defence Modifier magnitudes", "All Sockets Linked", statOrder = { 45, 71 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoRedSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Red Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Red Sockets", statOrder = { 45, 66 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Blue Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Green Sockets", statOrder = { 45, 65 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectNoGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Green Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Blue Sockets", statOrder = { 45, 64 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectWhiteSocket1"] = { affix = "Enchantment Defence Modifier Effect and White Socket", "8% increased Explicit Defence Modifier magnitudes", "Has 1 White Socket", statOrder = { 45, 77 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectAttributeRequirements1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements", "6% increased Explicit Defence Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 45, 1099 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectSocketsAreLinked1"] = { affix = "Enchantment Defence Modifier Effect and Sockets Are Linked", "6% increased Explicit Defence Modifier magnitudes", "All Sockets Linked", statOrder = { 45, 72 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3300369861] = { "6% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectNoRedSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Red Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Red Sockets", statOrder = { 45, 67 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectNoBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Blue Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Green Sockets", statOrder = { 45, 66 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectNoGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Green Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Blue Sockets", statOrder = { 45, 65 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectWhiteSocket1"] = { affix = "Enchantment Defence Modifier Effect and White Socket", "8% increased Explicit Defence Modifier magnitudes", "Has 1 White Socket", statOrder = { 45, 81 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3300369861] = { "8% increased Explicit Defence Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistManaEffectResistanceEffect1"] = { affix = "Enchantment Mana Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Mana Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 49, 51 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistManaEffectAttributeEffect1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 39, 49 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectAttributeRequirements1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 49, 1075 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 49, 71 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoRedSockets1_"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 49, 66 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 49, 65 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 49, 64 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectWhiteSocket1_"] = { affix = "Enchantment Mana Modifier Effect and White Socket", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 49, 77 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectSocketsAreLinked1_"] = { affix = "Enchantment Resistance Modifier Effect and Sockets Are Linked", "6% increased Explicit Resistance Modifier magnitudes", "All Sockets Linked", statOrder = { 51, 71 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Red Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Red Sockets", statOrder = { 51, 66 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Blue Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Green Sockets", statOrder = { 51, 65 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectNoGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Green Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Blue Sockets", statOrder = { 51, 64 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectWhiteSocket1"] = { affix = "Enchantment Resistance Modifier Effect and White Socket", "8% increased Explicit Resistance Modifier magnitudes", "Has 1 White Socket", statOrder = { 51, 77 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, - ["ArmourEnchantmentHeistAttributeEffectSocketsAreLinked1"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 39, 71 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 39, 66 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 39, 65 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 39, 64 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectWhiteSocket1_"] = { affix = "Enchantment Attribute Modifier Effect and White Socket", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 39, 77 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectAttributeRequirements1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 49, 1099 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 49, 72 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3514984677] = { "6% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectNoRedSockets1_"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 49, 67 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectNoBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 49, 66 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 49, 65 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectWhiteSocket1_"] = { affix = "Enchantment Mana Modifier Effect and White Socket", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 49, 81 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3514984677] = { "8% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistResistanceEffectSocketsAreLinked1_"] = { affix = "Enchantment Resistance Modifier Effect and Sockets Are Linked", "6% increased Explicit Resistance Modifier magnitudes", "All Sockets Linked", statOrder = { 51, 72 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "6% increased Explicit Resistance Modifier magnitudes" }, [2740018301] = { "All Sockets Linked" }, } }, + ["ArmourEnchantmentHeistResistanceEffectNoRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Red Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Red Sockets", statOrder = { 51, 67 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [320043039] = { "Has no Red Sockets" }, } }, + ["ArmourEnchantmentHeistResistanceEffectNoBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Blue Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Green Sockets", statOrder = { 51, 66 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [1615727675] = { "Has no Green Sockets" }, } }, + ["ArmourEnchantmentHeistResistanceEffectNoGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Green Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Blue Sockets", statOrder = { 51, 65 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [3837805260] = { "Has no Blue Sockets" }, } }, + ["ArmourEnchantmentHeistResistanceEffectWhiteSocket1"] = { affix = "Enchantment Resistance Modifier Effect and White Socket", "8% increased Explicit Resistance Modifier magnitudes", "Has 1 White Socket", statOrder = { 51, 81 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "8% increased Explicit Resistance Modifier magnitudes" }, [931294424] = { "Has 1 White Socket" }, } }, + ["ArmourEnchantmentHeistAttributeEffectSocketsAreLinked1"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 39, 72 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, [3243861579] = { "6% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 39, 67 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [320043039] = { "Has no Red Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectNoBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 39, 66 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615727675] = { "Has no Green Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 39, 65 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3837805260] = { "Has no Blue Sockets" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectWhiteSocket1_"] = { affix = "Enchantment Attribute Modifier Effect and White Socket", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 39, 81 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931294424] = { "Has 1 White Socket" }, [3243861579] = { "8% increased Explicit Attribute Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistLifeEffectResistanceEffectPenalty1"] = { affix = "Enchantment Life Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Life Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "12% increased Explicit Life Modifier magnitudes" }, [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistLifeEffectSocketPenalty1"] = { affix = "Enchantment Life Modifier Effect and Socket Penalty", "15% increased Explicit Life Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 47, 78 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "15% increased Explicit Life Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["ArmourEnchantmentHeistLifeEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Life Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 47, 1075 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "15% increased Explicit Life Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyRedSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Red Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Red", statOrder = { 47, 75 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Blue Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Blue", statOrder = { 47, 73 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["ArmourEnchantmentHeistLifeEffectOnlyGreenSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Green Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Green", statOrder = { 47, 74 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, + ["ArmourEnchantmentHeistLifeEffectSocketPenalty1"] = { affix = "Enchantment Life Modifier Effect and Socket Penalty", "15% increased Explicit Life Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 47, 82 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "15% increased Explicit Life Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, + ["ArmourEnchantmentHeistLifeEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Life Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 47, 1099 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "15% increased Explicit Life Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, + ["ArmourEnchantmentHeistLifeEffectOnlyRedSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Red Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Red", statOrder = { 47, 79 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, + ["ArmourEnchantmentHeistLifeEffectOnlyBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Blue Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Blue", statOrder = { 47, 77 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, + ["ArmourEnchantmentHeistLifeEffectOnlyGreenSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Green Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Green", statOrder = { 47, 78 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "10% increased Explicit Life Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, ["ArmourEnchantmentHeistDefenceEffectResistanceEffectPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Defence Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, [3300369861] = { "12% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectSocketPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Socket Penalty", "15% increased Explicit Defence Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 45, 78 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3300369861] = { "15% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Defence Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 45, 1075 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3300369861] = { "15% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyRedSockets1___"] = { affix = "Enchantment Defence Modifier Effect and Only Red Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Red", statOrder = { 45, 75 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Blue Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Blue", statOrder = { 45, 73 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistDefenceEffectOnlyGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Green Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Green", statOrder = { 45, 74 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectSocketPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Socket Penalty", "15% increased Explicit Defence Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 45, 82 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3300369861] = { "15% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Defence Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 45, 1099 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3300369861] = { "15% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectOnlyRedSockets1___"] = { affix = "Enchantment Defence Modifier Effect and Only Red Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Red", statOrder = { 45, 79 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectOnlyBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Blue Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Blue", statOrder = { 45, 77 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistDefenceEffectOnlyGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Green Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Green", statOrder = { 45, 78 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3300369861] = { "10% increased Explicit Defence Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistManaEffectResistanceEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Mana Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 49, 51 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "50% reduced Explicit Resistance Modifier magnitudes" }, [3514984677] = { "12% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectSocketPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 49, 78 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 49, 1075 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 49, 75 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 49, 73 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 49, 74 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectSocketPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 49, 82 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 49, 1099 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3514984677] = { "15% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 49, 79 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 49, 77 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 49, 78 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3514984677] = { "10% increased Explicit Mana Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistResistanceEffectLifeEffectPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Life Modifier Effect Penalty", "50% reduced Explicit Life Modifier magnitudes", "12% increased Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectLifeModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "12% increased Explicit Resistance Modifier magnitudes" }, [1308141466] = { "50% reduced Explicit Life Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistResistanceEffectDefenceEffectPenalty1__"] = { affix = "Enchantment Resistance Modifier Effect and Defence Modifier Effect Penalty", "50% reduced Explicit Defence Modifier magnitudes", "12% increased Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectDefenceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "12% increased Explicit Resistance Modifier magnitudes" }, [3300369861] = { "50% reduced Explicit Defence Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistResistanceEffectSocketPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Socket Penalty", "15% increased Explicit Resistance Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 51, 78 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "15% increased Explicit Resistance Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, - ["ArmourEnchantmentHeistResistanceEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Resistance Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 51, 1075 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "15% increased Explicit Resistance Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Red Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Red", statOrder = { 51, 75 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Blue Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Blue", statOrder = { 51, 73 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, - ["ArmourEnchantmentHeistResistanceEffectOnlyGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Green Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Green", statOrder = { 51, 74 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, + ["ArmourEnchantmentHeistResistanceEffectSocketPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Socket Penalty", "15% increased Explicit Resistance Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 51, 82 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "15% increased Explicit Resistance Modifier magnitudes" }, [4099204231] = { "-3 to maximum Sockets" }, } }, + ["ArmourEnchantmentHeistResistanceEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Resistance Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 51, 1099 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "15% increased Explicit Resistance Modifier magnitudes" }, [3639275092] = { "200% increased Attribute Requirements" }, } }, + ["ArmourEnchantmentHeistResistanceEffectOnlyRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Red Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Red", statOrder = { 51, 79 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [1918718830] = { "All Sockets are Red" }, } }, + ["ArmourEnchantmentHeistResistanceEffectOnlyBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Blue Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Blue", statOrder = { 51, 77 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [2803653753] = { "All Sockets are Blue" }, } }, + ["ArmourEnchantmentHeistResistanceEffectOnlyGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Green Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Green", statOrder = { 51, 78 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972391381] = { "10% increased Explicit Resistance Modifier magnitudes" }, [2849380136] = { "All Sockets are Green" }, } }, ["ArmourEnchantmentHeistAttributeEffectLifeEffectPenalty1_"] = { affix = "Enchantment Attribute Modifier Effect and Life Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "50% reduced Explicit Life Modifier magnitudes", statOrder = { 39, 47 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectLifeModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1308141466] = { "50% reduced Explicit Life Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistAttributeEffectDefenceEffectPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Defence Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "50% reduced Explicit Defence Modifier magnitudes", statOrder = { 39, 45 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectDefenceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3300369861] = { "50% reduced Explicit Defence Modifier magnitudes" }, [3243861579] = { "12% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 39, 78 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 39, 1075 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 39, 75 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 39, 73 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, - ["ArmourEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 39, 74 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 39, 82 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4099204231] = { "-3 to maximum Sockets" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 39, 1099 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "200% increased Attribute Requirements" }, [3243861579] = { "15% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectOnlyRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 39, 79 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1918718830] = { "All Sockets are Red" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectOnlyBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 39, 77 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2803653753] = { "All Sockets are Blue" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, + ["ArmourEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 39, 78 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2849380136] = { "All Sockets are Green" }, [3243861579] = { "10% increased Explicit Attribute Modifier magnitudes" }, } }, ["ArmourEnchantmentHeistAdditionalCraftingModifier1"] = { affix = "Enchantment Additional Crafting Modifier", "Can have 1 additional Crafted Modifier", statOrder = { 27 }, level = 80, group = "ArmourEnchantmentHeistAdditionalCraftingModifier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1963398329] = { "Can have 1 additional Crafted Modifier" }, } }, - ["WarcriesExertAnAdditionalAttackImplicitE1_"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10571 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, - ["WarcriesExertAnAdditionalAttackImplicitE2"] = { affix = "", "Warcries Exert 2 additional Attacks", statOrder = { 10571 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 2 additional Attacks" }, } }, - ["UniqueSecretBladeGrantHiddenBlade"] = { affix = "", "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing", statOrder = { 780 }, level = 1, group = "GrantHiddenBladeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3165215973] = { "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing" }, } }, - ["LifeRecoveryRateUnique__1"] = { affix = "", "(20-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(20-25)% increased Life Regeneration rate" }, } }, - ["EnergyShieldRegenerationWhileShockedUnique__1"] = { affix = "", "Regenerate 5% of Energy Shield per second while Shocked", statOrder = { 3025 }, level = 1, group = "EnergyShieldRegenerationWhileShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1700808530] = { "Regenerate 5% of Energy Shield per second while Shocked" }, } }, - ["StrUniqueShieldTriggerShieldShatterOnBlock"] = { affix = "", "Trigger Level 20 Shield Shatter when you Block", statOrder = { 804 }, level = 1, group = "UniqueTriggerShieldShatter", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [401685616] = { "Trigger Level 20 Shield Shatter when you Block" }, } }, - ["UniqueStaffTriggerAtziriStormCall__1____"] = { affix = "", "Queen's Demand can Trigger Level 20 Storm of Judgement", statOrder = { 800 }, level = 1, group = "UniqueTriggerAtziriStormCall", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [758006884] = { "Queen's Demand can Trigger Level 20 Storm of Judgement" }, } }, - ["UniqueStaffTriggerAtziriStormFlameblast__1"] = { affix = "", "Queen's Demand can Trigger Level 20 Flames of Judgement", statOrder = { 799 }, level = 1, group = "UniqueTriggerAtziriFlameBlast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2766423342] = { "Queen's Demand can Trigger Level 20 Flames of Judgement" }, } }, - ["UniqueStaffGrantQueensDemand___"] = { affix = "", "Grants Level 20 Queen's Demand Skill", statOrder = { 750 }, level = 1, group = "UniqueStaffGrantQueensDemand", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [509572644] = { "Grants Level 20 Queen's Demand Skill" }, } }, - ["UniqueWandGrantsBloodSacrament__1"] = { affix = "", "Grants Level 1 Blood Sacrament Skill", statOrder = { 642 }, level = 1, group = "UniqueGrantBloodSacrament", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [738386056] = { "Grants Level 1 Blood Sacrament Skill" }, } }, - ["ImmuneToChillUnique__1"] = { affix = "", "Immune to Chill", statOrder = { 2894 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3510243006] = { "Immune to Chill" }, } }, - ["ImmuneToChillUnique__2__"] = { affix = "", "Immune to Chill", statOrder = { 2894 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3510243006] = { "Immune to Chill" }, } }, - ["ColdDamageCannotFreeze"] = { affix = "", "Your Cold Damage cannot Freeze", statOrder = { 2885 }, level = 1, group = "ColdDamageCannotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [220932154] = { "Your Cold Damage cannot Freeze" }, } }, - ["FasterIgniteDamageUnique__1"] = { affix = "", "Ignites you inflict deal Damage (35-45)% faster", statOrder = { 2564 }, level = 20, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (35-45)% faster" }, } }, - ["MaximumLifeLeechRateUnique__1"] = { affix = "", "40% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 80, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4118987751] = { "40% increased Maximum total Life Recovery per second from Leech" }, } }, - ["FleshAndStoneManaReservationUnique__1_"] = { affix = "", "Flesh and Stone has no Reservation", statOrder = { 6652 }, level = 1, group = "FleshAndStoneNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2060601355] = { "Flesh and Stone has no Reservation" }, } }, - ["KeystoneHollowPalmTechniqueUnique__1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10792 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, - ["ElusiveEffectUnique__1"] = { affix = "", "(10-30)% increased Elusive Effect", statOrder = { 6350 }, level = 1, group = "ElusiveEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [240857668] = { "(10-30)% increased Elusive Effect" }, } }, - ["MovementSpeedIfHitRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "10% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["GrantsWintertideBrandUnique__1"] = { affix = "", "Grants Level 25 Wintertide Brand Skill", statOrder = { 683 }, level = 1, group = "GrantsWintertideBrand", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1826753218] = { "Grants Level 25 Wintertide Brand Skill" }, } }, - ["WintertideBrandChillEffectUnique__1_"] = { affix = "", "Wintertide Brand has (20-30)% increased Chill Effect", statOrder = { 10619 }, level = 1, group = "WintertideBrandChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1831757355] = { "Wintertide Brand has (20-30)% increased Chill Effect" }, } }, - ["ChanceToAvoidPoisonUnique__1"] = { affix = "", "25% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "25% chance to Avoid being Poisoned" }, } }, - ["PhysicalDamageCanFreezeUnique__1_"] = { affix = "", "Your Physical Damage can Freeze", statOrder = { 2880 }, level = 1, group = "PhysicalDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "elemental", "cold", "ailment" }, tradeHashes = { [1526975429] = { "Your Physical Damage can Freeze" }, } }, - ["ElusiveOnCriticalStrikeUnique__1"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4281 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2896192589] = { "Gain Elusive on Critical Strike" }, } }, - ["SupportedByArrowNovaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 1 Arrow Nova" }, } }, - ["CriticalStrikeChanceAgainstBleedingEnemiesUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3190 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2282705842] = { "(100-150)% increased Critical Strike Chance against Bleeding Enemies" }, } }, - ["DealNoColdDamageUnique__1"] = { affix = "", "Deal no Cold Damage", statOrder = { 2792 }, level = 1, group = "DealNoColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [743677006] = { "Deal no Cold Damage" }, } }, - ["OneHandedMeleeCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1501 }, level = 1, group = "OneHandedMeleeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons" }, } }, - ["PhysicalDamageTakenAsChaosUnique__1"] = { affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamageTakenAsChaosUber", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["ChanceToBeFrozenShockedIgnitedUnique__1"] = { affix = "", "+10% chance to be Frozen, Shocked and Ignited", statOrder = { 2950 }, level = 1, group = "ChanceToBeFrozenShockedIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [4245896836] = { "+10% chance to be Frozen, Shocked and Ignited" }, } }, - ["CallOfSteelAreaOfEffectUnique__1"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10230 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067717830] = { "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect" }, } }, - ["CallOfSteelAreaOfEffectUnique__2___"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10230 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067717830] = { "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect" }, } }, - ["CallOfSteelReflectDamageUnique__1"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10232 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879593163] = { "Call of Steel causes (20-25)% increased Reflected Damage" }, } }, - ["CallOfSteelReflectDamageUnique__2"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10232 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879593163] = { "Call of Steel causes (20-25)% increased Reflected Damage" }, } }, - ["CallOfSteelUseSpeedUnique__1"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10231 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [109671187] = { "Call of Steel has (80-100)% increased Use Speed" }, } }, - ["CallOfSteelUseSpeedUnique__2"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10231 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [109671187] = { "Call of Steel has (80-100)% increased Use Speed" }, } }, - ["SecretsOfSufferingKeystoneSceptreImplicit1"] = { affix = "", "Secrets of Suffering", statOrder = { 10812 }, level = 1, group = "SecretsOfSufferingKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [261342933] = { "Secrets of Suffering" }, } }, - ["ManaCostTotalNonChannelledUnique__1__"] = { affix = "", "Non-Channelling Skills have -9 to Total Mana Cost", statOrder = { 10063 }, level = 1, group = "ManaCostTotalNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [677564538] = { "Non-Channelling Skills have -9 to Total Mana Cost" }, } }, - ["TriggerFlameDashOnSocketedSkillUseImplicitE1"] = { affix = "", "Trigger Level 10 Flame Dash when you use a Socketed Skill", statOrder = { 809 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 10 Flame Dash when you use a Socketed Skill" }, } }, - ["TriggerFlameDashOnSocketedSkillUseImplicitE2"] = { affix = "", "Trigger Level 20 Flame Dash when you use a Socketed Skill", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 809, 4381 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "20% increased Cooldown Recovery Rate of Travel Skills" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 20 Flame Dash when you use a Socketed Skill" }, } }, - ["TriggerFlameDashOnSocketedSkillUseImplicitE3_"] = { affix = "", "Trigger Level 30 Flame Dash when you use a Socketed Skill", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 809, 4381 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "40% increased Cooldown Recovery Rate of Travel Skills" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 30 Flame Dash when you use a Socketed Skill" }, } }, - ["GainRandomChargeEvery6SecondsImplicitE1"] = { affix = "", "Gain an Endurance, Frenzy or Power Charge every 6 seconds", statOrder = { 6707 }, level = 1, group = "GainRandomChargesEvery6Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4282426229] = { "Gain an Endurance, Frenzy or Power Charge every 6 seconds" }, } }, - ["GainRandomChargeEvery6SecondsImplicitE2"] = { affix = "", "Gain 2 Endurance, Frenzy or Power Charges every 6 seconds", statOrder = { 6707 }, level = 1, group = "GainRandomChargesEvery6Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4282426229] = { "Gain 2 Endurance, Frenzy or Power Charges every 6 seconds" }, } }, - ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE1"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(66-80) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(66-80) to maximum Energy Shield" }, } }, - ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE2"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(100-120) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(100-120) to maximum Energy Shield" }, } }, - ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE3"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(140-165) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(140-165) to maximum Energy Shield" }, } }, - ["AttackCriticalStrikesIgnoreElementalResistancesImplicitE1"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4846 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2170876738] = { "Attack Critical Strikes ignore Enemy Monster Elemental Resistances" }, } }, - ["LocalMaximumQualityImplicitE1"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7997 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalMaximumQualityImplicitE2"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7997 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalMaximumQualityImplicitE3"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7997 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, - ["LocalIgnorePhysReductionImplicitE1"] = { affix = "", "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["LocalIgnorePhysReductionImplicitE2"] = { affix = "", "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["LocalIgnorePhysReductionImplicitE3"] = { affix = "", "Hits with this Weapon ignore Enemy Physical Damage Reduction", statOrder = { 7940 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon ignore Enemy Physical Damage Reduction" }, } }, - ["LocalAugmentedQualityE1"] = { affix = "", "1% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7859, 7882 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "1% increased Attack Speed per 8% Quality" }, } }, - ["LocalAugmentedQualityE2"] = { affix = "", "2% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7859, 7882 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "2% increased Attack Speed per 8% Quality" }, } }, - ["LocalAugmentedQualityE3"] = { affix = "", "2% increased Attack Speed per 8% Quality", "2% increased Critical Strike Chance per 4% Quality", statOrder = { 7859, 7882 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "2% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "2% increased Attack Speed per 8% Quality" }, } }, - ["CannotUseFlaskInFifthSlotImplicitE1_"] = { affix = "", "Flasks applied to you have 30% increased Effect", "Can't use Flask in Fifth Slot", statOrder = { 2742, 5449 }, level = 30, group = "CannotUseFlaskInFifthSlotFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [589489789] = { "Can't use Flask in Fifth Slot" }, [114734841] = { "Flasks applied to you have 30% increased Effect" }, } }, - ["MaximumPowerandEnduranceChargesImplicitE1"] = { affix = "", "+1 to Maximum Power Charges and Maximum Endurance Charges", statOrder = { 9178 }, level = 1, group = "MaximumPowerandEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4138979329] = { "+1 to Maximum Power Charges and Maximum Endurance Charges" }, } }, - ["SummonTauntingContraptionOnFlaskUseImplicitE1"] = { affix = "", "Trigger Level 20 Summon Taunting Contraption when you use a Flask", statOrder = { 820 }, level = 70, group = "SummonTauntingContraptionOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1774370437] = { "Trigger Level 20 Summon Taunting Contraption when you use a Flask" }, } }, - ["MinionChanceToMaimOnHitUnique__1_"] = { affix = "", "Minions have 5% chance to Maim Enemies on Hit with Attacks", statOrder = { 9316 }, level = 1, group = "MinionChanceToMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2138548436] = { "Minions have 5% chance to Maim Enemies on Hit with Attacks" }, } }, - ["PhysicalDamagePercentAddedAsChaosPerElderItemUnique__1"] = { affix = "", "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped", statOrder = { 6794 }, level = 1, group = "PhysicalDamagePercentAddedAsChaosPerElderItem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [1423002070] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped" }, } }, - ["AddedChaosDamageToAttacksPer50StrengthUnique__1"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength", statOrder = { 9229 }, level = 1, group = "AddedChaosDamageToAttacksPer50Strength", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [117885424] = { "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength" }, } }, - ["CannotDealNonChaosDamageUnique__1_"] = { affix = "", "Cannot deal non-Chaos Damage", statOrder = { 6144 }, level = 1, group = "CannotDealNonChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3180152291] = { "Cannot deal non-Chaos Damage" }, } }, - ["TravelSkillMoreDamageUnique__1"] = { affix = "", "Socketed Travel Skills deal 80% more Damage", statOrder = { 569 }, level = 1, group = "TravelSkillMoreDamage", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1020412108] = { "Socketed Travel Skills deal 80% more Damage" }, } }, - ["DamageTakenWhilePhasingUnique__1"] = { affix = "", "10% increased Damage taken while Phasing", statOrder = { 6122 }, level = 1, group = "DamageTakenWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [146268648] = { "10% increased Damage taken while Phasing" }, } }, - ["ProjectilesChainWhilePhasingUnique__1_"] = { affix = "", "Projectiles Chain +1 times while you have Phasing", statOrder = { 9518 }, level = 1, group = "ProjectilesChainWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383509486] = { "Projectiles Chain +1 times while you have Phasing" }, } }, - ["MinionPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 9326 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain 20% of Physical Damage as Extra Fire Damage" }, } }, - ["ChaosDamageCanIgniteUnique__1"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, - ["ChanceToIgniteWithChaosSkillsUnique__1"] = { affix = "", "Chaos Skills have 20% chance to Ignite", statOrder = { 5755 }, level = 1, group = "ChanceToIgniteWithChaosSkills", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [3573128085] = { "Chaos Skills have 20% chance to Ignite" }, } }, - ["UniqueVolkuursGuidanceIgniteDurationFinal"] = { affix = "", "50% less Ignite Duration", statOrder = { 10508 }, level = 1, group = "UniqueVolkuursGuidanceIgniteDurationFinal", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2614885550] = { "50% less Ignite Duration" }, } }, - ["ManaRegenerationAuraUnique__1"] = { affix = "", "You and nearby Allies have 30% increased Mana Regeneration Rate", statOrder = { 7900 }, level = 1, group = "ManaRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, [2936084533] = { "You and nearby Allies have 30% increased Mana Regeneration Rate" }, } }, - ["AvoidPhysicalDamageWhilePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing", statOrder = { 4949 }, level = 1, group = "AvoidPhysicalDamageWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2490633856] = { "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing" }, } }, - ["GrantsAlliesFrenzyChargeOnKillUnique__1_"] = { affix = "", "10% chance to grant a Frenzy Charge to nearby Allies on Kill", statOrder = { 5703 }, level = 1, group = "GrantsAlliesFrenzyChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1243641369] = { "10% chance to grant a Frenzy Charge to nearby Allies on Kill" }, } }, - ["GrantsAlliesEnduranceChargeOnHitUnique__1"] = { affix = "", "5% chance to grant an Endurance Charge to nearby Allies on Hit", statOrder = { 5702 }, level = 1, group = "GrantsAlliesEnduranceChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3174788165] = { "5% chance to grant an Endurance Charge to nearby Allies on Hit" }, } }, - ["ChanceToImpaleWithSpellsUnique__1"] = { affix = "", "20% chance to Impale on Spell Hit", statOrder = { 10193 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [3094222195] = { "20% chance to Impale on Spell Hit" }, } }, - ["ImpaleEffectUnique__1"] = { affix = "", "20% increased Impale Effect", statOrder = { 7243 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [298173317] = { "20% increased Impale Effect" }, } }, - ["ImpaleEffectUnique__2"] = { affix = "", "5% increased Impale Effect", statOrder = { 7243 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [298173317] = { "5% increased Impale Effect" }, } }, - ["AttackDamagePer450ArmourUnique__1__"] = { affix = "", "1% increased Attack Damage per 450 Armour", statOrder = { 4857 }, level = 1, group = "AttackDamagePer450Armour", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [192842973] = { "1% increased Attack Damage per 450 Armour" }, } }, - ["ZombiesTakeFireDamagePerSecondUnique__1_"] = { affix = "", "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 9821 }, level = 1, group = "ZombiesTakeFireDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3733496041] = { "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage" }, } }, - ["ZombiesHaveAvatarOfFireUnique__1"] = { affix = "", "Raised Zombies have Avatar of Fire", statOrder = { 9822 }, level = 1, group = "ZombiesHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [1474437010] = { "Raised Zombies have Avatar of Fire" }, } }, - ["ZombiesCoverInAshOnHitUnique__1"] = { affix = "", "Raised Zombies Cover Enemies in Ash on Hit", statOrder = { 9820 }, level = 1, group = "ZombiesCoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [613525808] = { "Raised Zombies Cover Enemies in Ash on Hit" }, } }, - ["LifeLeechPermyriadOnFrozenEnemiesUnique__1"] = { affix = "", "1% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1691 }, level = 1, group = "LifeLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [593279674] = { "1% of Damage against Frozen Enemies Leeched as Life" }, } }, - ["EnduranceChargeIfAttackFreezesUnique__1"] = { affix = "", "Gain an Endurance Charge if an Attack Freezes an Enemy", statOrder = { 6746 }, level = 1, group = "EnduranceChargeIfAttackFreezes", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "elemental", "cold", "attack", "ailment" }, tradeHashes = { [407576170] = { "Gain an Endurance Charge if an Attack Freezes an Enemy" }, } }, - ["PowerChargeOnHittingFrozenEnemyUnique__1"] = { affix = "", "50% chance to gain a Power Charge when you Hit a Frozen Enemy", statOrder = { 6806 }, level = 1, group = "PowerChargeOnHittingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3973790753] = { "50% chance to gain a Power Charge when you Hit a Frozen Enemy" }, } }, - ["TakeColdDamageOnMaximumPowerChargesUnique__1____"] = { affix = "", "Take 500 Cold Damage on reaching Maximum Power Charges", statOrder = { 9971 }, level = 1, group = "TakeColdDamageOnMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3664778308] = { "Take 500 Cold Damage on reaching Maximum Power Charges" }, } }, - ["MovementVelocityWhileChilledUnique__1_"] = { affix = "", "(10-20)% increased Movement Speed while Chilled", statOrder = { 9446 }, level = 1, group = "MovementVelocityWhileChilled", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2203777380] = { "(10-20)% increased Movement Speed while Chilled" }, } }, - ["AttackSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Attack Speed while Chilled", statOrder = { 4905 }, level = 1, group = "AttackSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3935294261] = { "(10-20)% increased Attack Speed while Chilled" }, } }, - ["CastSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Cast Speed while Chilled", statOrder = { 5472 }, level = 1, group = "CastSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [778552242] = { "(10-20)% increased Cast Speed while Chilled" }, } }, - ["ReflectFireDamageOnBlockUnique__1___"] = { affix = "", "Reflects (22-44) Fire Damage to Attackers on Block", statOrder = { 6576 }, level = 1, group = "ReflectFireDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3815724042] = { "Reflects (22-44) Fire Damage to Attackers on Block" }, } }, - ["DealNoDamageWhenNotOnLowLifeUnique__1"] = { affix = "", "Deal no Damage when not on Low Life", statOrder = { 6141 }, level = 1, group = "DealNoDamageWhenNotOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3716472556] = { "Deal no Damage when not on Low Life" }, } }, - ["TriggeredFieryImpactOnHitWithWeaponImplicitE1"] = { affix = "", "Trigger Level 10 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 10 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, - ["TriggeredFieryImpactOnHitWithWeaponImplicitE2_"] = { affix = "", "Trigger Level 15 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 15 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, - ["TriggeredFieryImpactOnHitWithWeaponImplicitE3"] = { affix = "", "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, - ["MaxPrefixMaxSuffixImplicitE1__"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Suffix Modifier magnitudes", statOrder = { 15, 16, 21, 8031 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [1033086302] = { "25% increased Suffix Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE2_"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Prefix Modifier magnitudes", statOrder = { 15, 16, 21, 8004 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "25% increased Prefix Modifier magnitudes" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, + ["WarcriesExertAnAdditionalAttackImplicitE1_"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10727 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } }, + ["WarcriesExertAnAdditionalAttackImplicitE2"] = { affix = "", "Warcries Exert 2 additional Attacks", statOrder = { 10727 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1434716233] = { "Warcries Exert 2 additional Attacks" }, } }, + ["UniqueSecretBladeGrantHiddenBlade"] = { affix = "", "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing", statOrder = { 801 }, level = 1, group = "GrantHiddenBladeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3165215973] = { "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing" }, } }, + ["LifeRecoveryRateUnique__1"] = { affix = "", "(20-25)% increased Life Regeneration rate", statOrder = { 1600 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(20-25)% increased Life Regeneration rate" }, } }, + ["EnergyShieldRegenerationWhileShockedUnique__1"] = { affix = "", "Regenerate 5% of Energy Shield per second while Shocked", statOrder = { 3059 }, level = 1, group = "EnergyShieldRegenerationWhileShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1700808530] = { "Regenerate 5% of Energy Shield per second while Shocked" }, } }, + ["StrUniqueShieldTriggerShieldShatterOnBlock"] = { affix = "", "Trigger Level 20 Shield Shatter when you Block", statOrder = { 825 }, level = 1, group = "UniqueTriggerShieldShatter", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [401685616] = { "Trigger Level 20 Shield Shatter when you Block" }, } }, + ["UniqueStaffTriggerAtziriStormCall__1____"] = { affix = "", "Queen's Demand can Trigger Level 20 Storm of Judgement", statOrder = { 821 }, level = 1, group = "UniqueTriggerAtziriStormCall", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [758006884] = { "Queen's Demand can Trigger Level 20 Storm of Judgement" }, } }, + ["UniqueStaffTriggerAtziriStormFlameblast__1"] = { affix = "", "Queen's Demand can Trigger Level 20 Flames of Judgement", statOrder = { 820 }, level = 1, group = "UniqueTriggerAtziriFlameBlast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2766423342] = { "Queen's Demand can Trigger Level 20 Flames of Judgement" }, } }, + ["UniqueStaffGrantQueensDemand___"] = { affix = "", "Grants Level 20 Queen's Demand Skill", statOrder = { 771 }, level = 1, group = "UniqueStaffGrantQueensDemand", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [509572644] = { "Grants Level 20 Queen's Demand Skill" }, } }, + ["UniqueWandGrantsBloodSacrament__1"] = { affix = "", "Grants Level 1 Blood Sacrament Skill", statOrder = { 654 }, level = 1, group = "UniqueGrantBloodSacrament", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [738386056] = { "Grants Level 1 Blood Sacrament Skill" }, } }, + ["ImmuneToChillUnique__1"] = { affix = "", "Immune to Chill", statOrder = { 2928 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3510243006] = { "Immune to Chill" }, } }, + ["ImmuneToChillUnique__2__"] = { affix = "", "Immune to Chill", statOrder = { 2928 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3510243006] = { "Immune to Chill" }, } }, + ["ColdDamageCannotFreeze"] = { affix = "", "Your Cold Damage cannot Freeze", statOrder = { 2919 }, level = 1, group = "ColdDamageCannotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [220932154] = { "Your Cold Damage cannot Freeze" }, } }, + ["FasterIgniteDamageUnique__1"] = { affix = "", "Ignites you inflict deal Damage (40-60)% faster", statOrder = { 2590 }, level = 20, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (40-60)% faster" }, } }, + ["FasterIgniteDamageUnique__2"] = { affix = "", "Ignites you inflict deal Damage (20-30)% faster", statOrder = { 2590 }, level = 20, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (20-30)% faster" }, } }, + ["MaximumLifeLeechRateUnique__1"] = { affix = "", "40% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 80, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4118987751] = { "40% increased Maximum total Life Recovery per second from Leech" }, } }, + ["FleshAndStoneManaReservationUnique__1_"] = { affix = "", "Flesh and Stone has no Reservation", statOrder = { 6741 }, level = 1, group = "FleshAndStoneNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2060601355] = { "Flesh and Stone has no Reservation" }, } }, + ["KeystoneHollowPalmTechniqueUnique__1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10957 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, + ["ElusiveEffectUnique__1"] = { affix = "", "(10-30)% increased Elusive Effect", statOrder = { 6437 }, level = 1, group = "ElusiveEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [240857668] = { "(10-30)% increased Elusive Effect" }, } }, + ["MovementSpeedIfHitRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9552 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "10% increased Movement Speed if you've Hit an Enemy Recently" }, } }, + ["GrantsWintertideBrandUnique__1"] = { affix = "", "Grants Level 25 Wintertide Brand Skill", statOrder = { 695 }, level = 1, group = "GrantsWintertideBrand", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1826753218] = { "Grants Level 25 Wintertide Brand Skill" }, } }, + ["WintertideBrandChillEffectUnique__1_"] = { affix = "", "Wintertide Brand has (20-30)% increased Chill Effect", statOrder = { 10775 }, level = 1, group = "WintertideBrandChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1831757355] = { "Wintertide Brand has (20-30)% increased Chill Effect" }, } }, + ["ChanceToAvoidPoisonUnique__1"] = { affix = "", "25% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "25% chance to Avoid being Poisoned" }, } }, + ["PhysicalDamageCanFreezeUnique__1_"] = { affix = "", "Your Physical Damage can Freeze", statOrder = { 2914 }, level = 1, group = "PhysicalDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "elemental", "cold", "ailment" }, tradeHashes = { [1526975429] = { "Your Physical Damage can Freeze" }, } }, + ["ElusiveOnCriticalStrikeUnique__1"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4317 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2896192589] = { "Gain Elusive on Critical Strike" }, } }, + ["SupportedByArrowNovaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Arrow Nova", statOrder = { 371 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 1 Arrow Nova" }, } }, + ["CriticalStrikeChanceAgainstBleedingEnemiesUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3226 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2282705842] = { "(100-150)% increased Critical Strike Chance against Bleeding Enemies" }, } }, + ["DealNoColdDamageUnique__1"] = { affix = "", "Deal no Cold Damage", statOrder = { 2826 }, level = 1, group = "DealNoColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [743677006] = { "Deal no Cold Damage" }, } }, + ["OneHandedMeleeCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1524 }, level = 1, group = "OneHandedMeleeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons" }, } }, + ["PhysicalDamageTakenAsChaosUnique__1"] = { affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 1, group = "PhysicalDamageTakenAsChaosUber", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["ChanceToBeFrozenShockedIgnitedUnique__1"] = { affix = "", "+10% chance to be Frozen, Shocked and Ignited", statOrder = { 2984 }, level = 1, group = "ChanceToBeFrozenShockedIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [4245896836] = { "+10% chance to be Frozen, Shocked and Ignited" }, } }, + ["CallOfSteelAreaOfEffectUnique__1"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10377 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067717830] = { "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect" }, } }, + ["CallOfSteelAreaOfEffectUnique__2___"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10377 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067717830] = { "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect" }, } }, + ["CallOfSteelReflectDamageUnique__1"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10379 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879593163] = { "Call of Steel causes (20-25)% increased Reflected Damage" }, } }, + ["CallOfSteelReflectDamageUnique__2"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10379 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879593163] = { "Call of Steel causes (20-25)% increased Reflected Damage" }, } }, + ["CallOfSteelUseSpeedUnique__1"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10378 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [109671187] = { "Call of Steel has (80-100)% increased Use Speed" }, } }, + ["CallOfSteelUseSpeedUnique__2"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10378 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [109671187] = { "Call of Steel has (80-100)% increased Use Speed" }, } }, + ["SecretsOfSufferingKeystoneSceptreImplicit1"] = { affix = "", "Secrets of Suffering", statOrder = { 10979 }, level = 1, group = "SecretsOfSufferingKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [261342933] = { "Secrets of Suffering" }, } }, + ["ManaCostTotalNonChannelledUnique__1__"] = { affix = "", "Non-Channelling Skills have -9 to Total Mana Cost", statOrder = { 10208 }, level = 1, group = "ManaCostTotalNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [677564538] = { "Non-Channelling Skills have -9 to Total Mana Cost" }, } }, + ["TriggerFlameDashOnSocketedSkillUseImplicitE1"] = { affix = "", "Trigger Level 10 Flame Dash when you use a Socketed Skill", statOrder = { 830 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 10 Flame Dash when you use a Socketed Skill" }, } }, + ["TriggerFlameDashOnSocketedSkillUseImplicitE2"] = { affix = "", "Trigger Level 20 Flame Dash when you use a Socketed Skill", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 830, 4419 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "20% increased Cooldown Recovery Rate of Travel Skills" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 20 Flame Dash when you use a Socketed Skill" }, } }, + ["TriggerFlameDashOnSocketedSkillUseImplicitE3_"] = { affix = "", "Trigger Level 30 Flame Dash when you use a Socketed Skill", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 830, 4419 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308278768] = { "40% increased Cooldown Recovery Rate of Travel Skills" }, [1571803312] = { "" }, [1633778432] = { "Trigger Level 30 Flame Dash when you use a Socketed Skill" }, } }, + ["GainRandomChargeEvery6SecondsImplicitE1"] = { affix = "", "Gain an Endurance, Frenzy or Power Charge every 6 seconds", statOrder = { 6797 }, level = 1, group = "GainRandomChargesEvery6Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4282426229] = { "Gain an Endurance, Frenzy or Power Charge every 6 seconds" }, } }, + ["GainRandomChargeEvery6SecondsImplicitE2"] = { affix = "", "Gain 2 Endurance, Frenzy or Power Charges every 6 seconds", statOrder = { 6797 }, level = 1, group = "GainRandomChargesEvery6Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4282426229] = { "Gain 2 Endurance, Frenzy or Power Charges every 6 seconds" }, } }, + ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE1"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(66-80) to maximum Energy Shield", statOrder = { 595, 1580 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(66-80) to maximum Energy Shield" }, } }, + ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE2"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(100-120) to maximum Energy Shield", statOrder = { 595, 1580 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(100-120) to maximum Energy Shield" }, } }, + ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE3"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(140-165) to maximum Energy Shield", statOrder = { 595, 1580 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [563547620] = { "Spend Energy Shield before Mana for Costs of Socketed Skills" }, [3489782002] = { "+(140-165) to maximum Energy Shield" }, } }, + ["AttackCriticalStrikesIgnoreElementalResistancesImplicitE1"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4896 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2170876738] = { "Attack Critical Strikes ignore Enemy Monster Elemental Resistances" }, } }, + ["LocalMaximumQualityImplicitE1"] = { affix = "", "+25% to Maximum Quality", statOrder = { 8108 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, + ["LocalMaximumQualityImplicitE2"] = { affix = "", "+25% to Maximum Quality", statOrder = { 8108 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, + ["LocalMaximumQualityImplicitE3"] = { affix = "", "+25% to Maximum Quality", statOrder = { 8108 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2039822488] = { "+25% to Maximum Quality" }, } }, + ["LocalIgnorePhysReductionImplicitE1"] = { affix = "", "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction", statOrder = { 8051 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["LocalIgnorePhysReductionImplicitE2"] = { affix = "", "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction", statOrder = { 8051 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["LocalIgnorePhysReductionImplicitE3"] = { affix = "", "Hits with this Weapon ignore Enemy Physical Damage Reduction", statOrder = { 8051 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon ignore Enemy Physical Damage Reduction" }, } }, + ["LocalAugmentedQualityE1"] = { affix = "", "1% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7965, 7991 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "1% increased Attack Speed per 8% Quality" }, } }, + ["LocalAugmentedQualityE2"] = { affix = "", "2% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7965, 7991 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "1% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "2% increased Attack Speed per 8% Quality" }, } }, + ["LocalAugmentedQualityE3"] = { affix = "", "2% increased Attack Speed per 8% Quality", "2% increased Critical Strike Chance per 4% Quality", statOrder = { 7965, 7991 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3103053611] = { "2% increased Critical Strike Chance per 4% Quality" }, [3331111689] = { "2% increased Attack Speed per 8% Quality" }, } }, + ["CannotUseFlaskInFifthSlotImplicitE1_"] = { affix = "", "Flasks applied to you have 30% increased Effect", "Can't use Flask in Fifth Slot", statOrder = { 2776, 5524 }, level = 30, group = "CannotUseFlaskInFifthSlotFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [589489789] = { "Can't use Flask in Fifth Slot" }, [114734841] = { "Flasks applied to you have 30% increased Effect" }, } }, + ["MaximumPowerandEnduranceChargesImplicitE1"] = { affix = "", "+1 to Maximum Power Charges and Maximum Endurance Charges", statOrder = { 9302 }, level = 1, group = "MaximumPowerandEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4138979329] = { "+1 to Maximum Power Charges and Maximum Endurance Charges" }, } }, + ["SummonTauntingContraptionOnFlaskUseImplicitE1"] = { affix = "", "Trigger Level 20 Summon Taunting Contraption when you use a Flask", statOrder = { 841 }, level = 70, group = "SummonTauntingContraptionOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1774370437] = { "Trigger Level 20 Summon Taunting Contraption when you use a Flask" }, } }, + ["MinionChanceToMaimOnHitUnique__1_"] = { affix = "", "Minions have 5% chance to Maim Enemies on Hit with Attacks", statOrder = { 9448 }, level = 1, group = "MinionChanceToMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2138548436] = { "Minions have 5% chance to Maim Enemies on Hit with Attacks" }, } }, + ["PhysicalDamagePercentAddedAsChaosPerElderItemUnique__1"] = { affix = "", "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped", statOrder = { 6886 }, level = 1, group = "PhysicalDamagePercentAddedAsChaosPerElderItem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [1423002070] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped" }, } }, + ["AddedChaosDamageToAttacksPer50StrengthUnique__1"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength", statOrder = { 9360 }, level = 1, group = "AddedChaosDamageToAttacksPer50Strength", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [117885424] = { "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength" }, } }, + ["CannotDealNonChaosDamageUnique__1_"] = { affix = "", "Cannot deal non-Chaos Damage", statOrder = { 6231 }, level = 1, group = "CannotDealNonChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3180152291] = { "Cannot deal non-Chaos Damage" }, } }, + ["TravelSkillMoreDamageUnique__1"] = { affix = "", "Socketed Travel Skills deal 80% more Damage", statOrder = { 580 }, level = 1, group = "TravelSkillMoreDamage", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1020412108] = { "Socketed Travel Skills deal 80% more Damage" }, } }, + ["DamageTakenWhilePhasingUnique__1"] = { affix = "", "10% increased Damage taken while Phasing", statOrder = { 6209 }, level = 1, group = "DamageTakenWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [146268648] = { "10% increased Damage taken while Phasing" }, } }, + ["ProjectilesChainWhilePhasingUnique__1_"] = { affix = "", "Projectiles Chain +1 times while you have Phasing", statOrder = { 9653 }, level = 1, group = "ProjectilesChainWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383509486] = { "Projectiles Chain +1 times while you have Phasing" }, } }, + ["MinionPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 9458 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain 20% of Physical Damage as Extra Fire Damage" }, } }, + ["ChaosDamageCanIgniteUnique__1"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5054 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, + ["ChanceToIgniteWithChaosSkillsUnique__1"] = { affix = "", "Chaos Skills have 20% chance to Ignite", statOrder = { 5836 }, level = 1, group = "ChanceToIgniteWithChaosSkills", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [3573128085] = { "Chaos Skills have 20% chance to Ignite" }, } }, + ["UniqueVolkuursGuidanceIgniteDurationFinal"] = { affix = "", "50% less Ignite Duration", statOrder = { 10664 }, level = 1, group = "UniqueVolkuursGuidanceIgniteDurationFinal", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2614885550] = { "50% less Ignite Duration" }, } }, + ["ManaRegenerationAuraUnique__1"] = { affix = "", "You and nearby Allies have 30% increased Mana Regeneration Rate", statOrder = { 8009 }, level = 1, group = "ManaRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, [2936084533] = { "You and nearby Allies have 30% increased Mana Regeneration Rate" }, } }, + ["AvoidPhysicalDamageWhilePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing", statOrder = { 4999 }, level = 1, group = "AvoidPhysicalDamageWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2490633856] = { "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing" }, } }, + ["GrantsAlliesFrenzyChargeOnKillUnique__1_"] = { affix = "", "10% chance to grant a Frenzy Charge to nearby Allies on Kill", statOrder = { 5781 }, level = 1, group = "GrantsAlliesFrenzyChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1243641369] = { "10% chance to grant a Frenzy Charge to nearby Allies on Kill" }, } }, + ["GrantsAlliesEnduranceChargeOnHitUnique__1"] = { affix = "", "5% chance to grant an Endurance Charge to nearby Allies on Hit", statOrder = { 5780 }, level = 1, group = "GrantsAlliesEnduranceChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3174788165] = { "5% chance to grant an Endurance Charge to nearby Allies on Hit" }, } }, + ["ChanceToImpaleWithSpellsUnique__1"] = { affix = "", "20% chance to Impale on Spell Hit", statOrder = { 10340 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [3094222195] = { "20% chance to Impale on Spell Hit" }, } }, + ["ImpaleEffectUnique__1"] = { affix = "", "20% increased Impale Effect", statOrder = { 7343 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [298173317] = { "20% increased Impale Effect" }, } }, + ["ImpaleEffectUnique__2"] = { affix = "", "5% increased Impale Effect", statOrder = { 7343 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [298173317] = { "5% increased Impale Effect" }, } }, + ["AttackDamagePer450ArmourUnique__1__"] = { affix = "", "1% increased Attack Damage per 450 Armour", statOrder = { 4907 }, level = 1, group = "AttackDamagePer450Armour", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [192842973] = { "1% increased Attack Damage per 450 Armour" }, } }, + ["ZombiesTakeFireDamagePerSecondUnique__1_"] = { affix = "", "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 9964 }, level = 1, group = "ZombiesTakeFireDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3733496041] = { "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage" }, } }, + ["ZombiesHaveAvatarOfFireUnique__1"] = { affix = "", "Raised Zombies have Avatar of Fire", statOrder = { 9965 }, level = 1, group = "ZombiesHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [1474437010] = { "Raised Zombies have Avatar of Fire" }, } }, + ["ZombiesCoverInAshOnHitUnique__1"] = { affix = "", "Raised Zombies Cover Enemies in Ash on Hit", statOrder = { 9963 }, level = 1, group = "ZombiesCoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [613525808] = { "Raised Zombies Cover Enemies in Ash on Hit" }, } }, + ["LifeLeechPermyriadOnFrozenEnemiesUnique__1"] = { affix = "", "1% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1714 }, level = 1, group = "LifeLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [593279674] = { "1% of Damage against Frozen Enemies Leeched as Life" }, } }, + ["EnduranceChargeIfAttackFreezesUnique__1"] = { affix = "", "Gain an Endurance Charge if an Attack Freezes an Enemy", statOrder = { 6837 }, level = 1, group = "EnduranceChargeIfAttackFreezes", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "elemental", "cold", "attack", "ailment" }, tradeHashes = { [407576170] = { "Gain an Endurance Charge if an Attack Freezes an Enemy" }, } }, + ["PowerChargeOnHittingFrozenEnemyUnique__1"] = { affix = "", "50% chance to gain a Power Charge when you Hit a Frozen Enemy", statOrder = { 6898 }, level = 1, group = "PowerChargeOnHittingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3973790753] = { "50% chance to gain a Power Charge when you Hit a Frozen Enemy" }, } }, + ["TakeColdDamageOnMaximumPowerChargesUnique__1____"] = { affix = "", "Take 500 Cold Damage on reaching Maximum Power Charges", statOrder = { 10115 }, level = 1, group = "TakeColdDamageOnMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3664778308] = { "Take 500 Cold Damage on reaching Maximum Power Charges" }, } }, + ["MovementVelocityWhileChilledUnique__1_"] = { affix = "", "(10-20)% increased Movement Speed while Chilled", statOrder = { 9579 }, level = 1, group = "MovementVelocityWhileChilled", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2203777380] = { "(10-20)% increased Movement Speed while Chilled" }, } }, + ["AttackSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Attack Speed while Chilled", statOrder = { 4955 }, level = 1, group = "AttackSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3935294261] = { "(10-20)% increased Attack Speed while Chilled" }, } }, + ["CastSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Cast Speed while Chilled", statOrder = { 5548 }, level = 1, group = "CastSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [778552242] = { "(10-20)% increased Cast Speed while Chilled" }, } }, + ["ReflectFireDamageOnBlockUnique__1___"] = { affix = "", "Reflects (22-44) Fire Damage to Attackers on Block", statOrder = { 6663 }, level = 1, group = "ReflectFireDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3815724042] = { "Reflects (22-44) Fire Damage to Attackers on Block" }, } }, + ["DealNoDamageWhenNotOnLowLifeUnique__1"] = { affix = "", "Deal no Damage when not on Low Life", statOrder = { 6228 }, level = 1, group = "DealNoDamageWhenNotOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3716472556] = { "Deal no Damage when not on Low Life" }, } }, + ["TriggeredFieryImpactOnHitWithWeaponImplicitE1"] = { affix = "", "Trigger Level 10 Fiery Impact on Melee Hit with this Weapon", statOrder = { 829 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 10 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, + ["TriggeredFieryImpactOnHitWithWeaponImplicitE2_"] = { affix = "", "Trigger Level 15 Fiery Impact on Melee Hit with this Weapon", statOrder = { 829 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 15 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, + ["TriggeredFieryImpactOnHitWithWeaponImplicitE3"] = { affix = "", "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon", statOrder = { 829 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1523888729] = { "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon" }, [4037081939] = { "" }, } }, + ["MaxPrefixMaxSuffixImplicitE1__"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Suffix Modifier magnitudes", statOrder = { 15, 16, 21, 8144 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [1033086302] = { "25% increased Suffix Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, + ["MaxPrefixMaxSuffixImplicitE2_"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Prefix Modifier magnitudes", statOrder = { 15, 16, 21, 8117 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "25% increased Prefix Modifier magnitudes" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, ["MaxPrefixMaxSuffixImplicitE3"] = { affix = "", "+3 Prefix Modifiers allowed", "-3 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", statOrder = { 15, 16, 21 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-3 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "+3 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE4"] = { affix = "", "+1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Prefix Modifier magnitudes", statOrder = { 15, 16, 21, 8004 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "50% increased Prefix Modifier magnitudes" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, + ["MaxPrefixMaxSuffixImplicitE4"] = { affix = "", "+1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Prefix Modifier magnitudes", statOrder = { 15, 16, 21, 8117 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "50% increased Prefix Modifier magnitudes" }, [3182714256] = { "+1 Prefix Modifier allowed" }, } }, ["MaxPrefixMaxSuffixImplicitE5"] = { affix = "", "-3 Prefix Modifiers allowed", "+3 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", statOrder = { 15, 16, 21 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+3 Suffix Modifiers allowed" }, [1033086302] = { "" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-3 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixImplicitE6"] = { affix = "", "-2 Prefix Modifiers allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Suffix Modifier magnitudes", statOrder = { 15, 16, 21, 8031 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [1033086302] = { "50% increased Suffix Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["ReflectedDurationRingImplicitK1"] = { affix = "", "Left ring slot: 15% reduced Skill Effect Duration", "Right ring slot: 15% increased Skill Effect Duration", statOrder = { 2662, 2669 }, level = 30, group = "ReflectedDurationRingImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3320868777] = { "Left ring slot: 15% reduced Skill Effect Duration" }, [2239667237] = { "Right ring slot: 15% increased Skill Effect Duration" }, } }, - ["ReflectedFireColdDamageTakenConversionImplicitK5a"] = { affix = "", "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage", "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage", statOrder = { 2655, 2666 }, level = 30, group = "ReflectedFireColdDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [1323927995] = { "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage" }, [2478238773] = { "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage" }, } }, - ["ReflectedFireLightningDamageTakenConversionImplicitK5b"] = { affix = "", "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage", "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 2657, 2667 }, level = 30, group = "ReflectedFireLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [17730902] = { "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage" }, [1905512385] = { "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage" }, } }, - ["ReflectedColdLightningDamageTakenConversionImplicitK5c"] = { affix = "", "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage", "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 2658, 2664 }, level = 30, group = "ReflectedColdLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [744858137] = { "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage" }, [450178102] = { "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage" }, } }, - ["ReflectedCurseEffectOnSelfImplicitK2"] = { affix = "", "Left ring slot: 30% reduced Effect of Curses on you", "Right ring slot: 30% increased Effect of Curses on you", statOrder = { 2656, 2665 }, level = 30, group = "ReflectedCurseEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [4279053153] = { "Right ring slot: 30% increased Effect of Curses on you" }, [496053892] = { "Left ring slot: 30% reduced Effect of Curses on you" }, } }, - ["ReflectedMinionDamageTakenImplicitK3"] = { affix = "", "Left ring slot: Minions take 15% reduced Damage", "Right ring slot: Minions take 15% increased Damage", statOrder = { 2661, 2668 }, level = 30, group = "ReflectedMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1069618951] = { "Right ring slot: Minions take 15% increased Damage" }, [1916904011] = { "Left ring slot: Minions take 15% reduced Damage" }, } }, - ["ReflectedAilmentDurationOnSelfImplicitK4"] = { affix = "", "Left ring slot: 30% reduced Duration of Ailments on You", "Right ring slot: 30% increased Duration of Ailments on You", statOrder = { 2654, 2663 }, level = 30, group = "ReflectedAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [221309863] = { "Left ring slot: 30% reduced Duration of Ailments on You" }, [2457848738] = { "Right ring slot: 30% increased Duration of Ailments on You" }, } }, - ["CurseEffectElementalAilmentDurationOnSelfR1"] = { affix = "", "50% increased Elemental Ailment Duration on you", "50% reduced Effect of Curses on you", statOrder = { 1867, 2170 }, level = 30, group = "CurseEffectElementalAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, [3407849389] = { "50% reduced Effect of Curses on you" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE1"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1581907402] = { "25% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE2"] = { affix = "", "-2 Prefix Modifiers allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1581907402] = { "100% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, - ["MaxPrefixMaxSuffixModEffectImplicitE3"] = { affix = "", "-1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [1581907402] = { "100% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["LocalAllDamageCanPoisonImplicitE1_"] = { affix = "", "All Damage from Hits with This Weapon can Poison", statOrder = { 2470 }, level = 1, group = "LocalAllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264042990] = { "All Damage from Hits with This Weapon can Poison" }, } }, - ["ChanceToInflictScorchOnEnemyOnBlockImplicitE1"] = { affix = "", "Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 1, group = "ChanceToInflictScorchOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [779391868] = { "Scorch Enemies when you Block their Damage" }, } }, - ["ChanceToInflictBrittleOnEnemyOnBlockImplicitE1"] = { affix = "", "Inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 1, group = "ChanceToInflictBrittleOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1749278976] = { "Inflict Brittle on Enemies when you Block their Damage" }, } }, - ["ChanceToInflictSapOnEnemyOnBlockImplicitE1"] = { affix = "", "Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 1, group = "ChanceToInflictSapOnEnemyOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2113677718] = { "Sap Enemies when you Block their Damage" }, } }, - ["ItemNecroticFootprintsUnique__1s"] = { affix = "", "Necrotic Footprints", statOrder = { 9478 }, level = 1, group = "ItemNecroticFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [214242256] = { "Necrotic Footprints" }, } }, - ["ChaosResistanceWhileStationaryUnique__1"] = { affix = "", "+30% to Chaos Resistance while stationary", statOrder = { 5742 }, level = 1, group = "ChaosResistanceWhileStationary", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [779829642] = { "+30% to Chaos Resistance while stationary" }, } }, - ["PowerChargeOnHitWhilePoisonedUnique__1"] = { affix = "", "Gain a Power Charge on Hit while Poisoned", statOrder = { 4531 }, level = 1, group = "PowerChargeOnHitWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [800598487] = { "Gain a Power Charge on Hit while Poisoned" }, } }, - ["ChanceToBePoisonedBySpellsUnique__1_"] = { affix = "", "50% chance for Spell Hits against you to inflict Poison", statOrder = { 10161 }, level = 1, group = "ChanceToBePoisonedBySpells", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2043747322] = { "50% chance for Spell Hits against you to inflict Poison" }, } }, - ["SpiritMinionRefreshOnUniqueHitUnique__1"] = { affix = "", "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9615, 9803 }, level = 1, group = "SpiritMinionRefreshOnUniqueHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } }, - ["MovementVelocityPerPowerChargeUnique__1__"] = { affix = "", "5% increased Movement Speed per Power Charge", statOrder = { 9429 }, level = 1, group = "MovementVelocityPerPowerChargeCopy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3774108776] = { "5% increased Movement Speed per Power Charge" }, } }, - ["LifeRegenerationPerPowerChargeUnique__1__"] = { affix = "", "Regenerate 0.5% of Life per second per Power Charge", statOrder = { 7422 }, level = 1, group = "LifeRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.5% of Life per second per Power Charge" }, } }, - ["LocalFlaskAttackAndCastSpeedWhileHealingUnique__1"] = { affix = "", "(5-15)% increased Attack Speed during Effect", "(5-15)% increased Cast Speed during Effect", statOrder = { 944, 945 }, level = 1, group = "LocalFlaskAttackAndCastSpeedWhileHealing", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3256116097] = { "(5-15)% increased Cast Speed during Effect" }, [968369591] = { "(5-15)% increased Attack Speed during Effect" }, } }, - ["IncreasedElementalResistancesUnique__1"] = { affix = "", "(18-22)% increased Elemental Resistances", statOrder = { 6313 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [76848920] = { "(18-22)% increased Elemental Resistances" }, } }, - ["IncreasedElementalResistancesUnique__2_"] = { affix = "", "(60-70)% reduced Elemental Resistances", statOrder = { 6313 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [76848920] = { "(60-70)% reduced Elemental Resistances" }, } }, - ["DefencesAreZeroUnique__1_"] = { affix = "", "Defences are Zero", statOrder = { 6154 }, level = 1, group = "DefencesAreZero", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4271994824] = { "Defences are Zero" }, } }, - ["ChaosResistanceIsZeroUnique__1"] = { affix = "", "Chaos Resistance is Zero", statOrder = { 10727 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } }, - ["ElementalDamageDuringFlaskEffectUnique__1"] = { affix = "", "30% increased Elemental Damage during any Flask Effect", statOrder = { 4225 }, level = 1, group = "ElementalDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3150967823] = { "30% increased Elemental Damage during any Flask Effect" }, } }, - ["SupportedByCastOnDamageTakenUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 12 Cast when Damage Taken", statOrder = { 239 }, level = 1, group = "SupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 12 Cast when Damage Taken" }, } }, - ["ShieldArmourIncreaseUnique__1"] = { affix = "", "50% increased Defences from Equipped Shield", statOrder = { 1994 }, level = 1, group = "ShieldArmourIncrease", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1215155013] = { "50% increased Defences from Equipped Shield" }, } }, - ["AddedFireDamageIfBlockedRecentlyUnique__1"] = { affix = "", "Adds 45 to 75 Fire Damage if you've Blocked Recently", statOrder = { 4275 }, level = 1, group = "AddedFireDamageIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 45 to 75 Fire Damage if you've Blocked Recently" }, } }, - ["AddedFireDamagePer100LowestOfLifeOrManaUnique__1"] = { affix = "", "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower", statOrder = { 9237 }, level = 1, group = "AddedFireDamagePer100LowestOfLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [753801406] = { "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower" }, } }, - ["TauntedEnemiesTakeIncreasedDamage_"] = { affix = "", "Enemies Taunted by you take 10% increased Damage", statOrder = { 4280 }, level = 1, group = "TauntedEnemiesTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1282219780] = { "Enemies Taunted by you take 10% increased Damage" }, } }, - ["ChaosDamageCanChill"] = { affix = "", "Your Chaos Damage can Chill", statOrder = { 2868 }, level = 1, group = "ChaosDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [3686066640] = { "Your Chaos Damage can Chill" }, } }, - ["ChaosDamageCanFreezeUnique_1"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2869 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } }, - ["MainHandTriggerSocketedSpellOnFreezingHitUnique_1"] = { affix = "", "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown", statOrder = { 829, 829.1 }, level = 83, group = "MainHandTriggerSocketedSpellOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [537034483] = { "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown" }, } }, - ["ElementalDamageIfCritRecently"] = { affix = "", "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 6303 }, level = 1, group = "ElementalDamageIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2379781920] = { "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently" }, } }, - ["SupportedByMultiTotemUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Multiple Totems", statOrder = { 340 }, level = 1, group = "SupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [807186595] = { "Socketed Gems are Supported by Level 1 Multiple Totems" }, } }, - ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 4196 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, - ["ExtraMaximumPhantasmsUnique__1"] = { affix = "", "+3 to maximum number of Summoned Phantasms", statOrder = { 5038 }, level = 1, group = "ExtraMaximumPhantasms", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [517587669] = { "+3 to maximum number of Summoned Phantasms" }, } }, - ["ExtraRagingSpiritsUnique__1"] = { affix = "", "+6 to maximum number of Raging Spirits", statOrder = { 2163 }, level = 1, group = "ExtraRagingSpirits", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3143579606] = { "+6 to maximum number of Raging Spirits" }, } }, - ["HungryLoopSupportedByPinpoint"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Pinpoint", statOrder = { 104, 353 }, level = 1, group = "HungryLoopSupportedByPinpoint", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1609369521] = { "Socketed Gems are Supported by Level 20 Pinpoint" }, [1782861052] = { "" }, } }, - ["SpellBlockIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently", statOrder = { 10133 }, level = 1, group = "MaximumSpellBlockIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1817677817] = { "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently" }, } }, - ["LocalEnergyShieldRegenerationIfCritRecentlyUnique__1"] = { affix = "", "Regenerate 20% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently", statOrder = { 7931 }, level = 1, group = "LocalEnergyShieldRegenerationIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [298613712] = { "Regenerate 20% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently" }, } }, - ["ColdDamagePerMissingColdResistanceUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%", statOrder = { 5813 }, level = 1, group = "ColdDamagePerMissingColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2859664487] = { "(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%" }, } }, - ["FireDamagePerMissingFireResistanceUnique__1"] = { affix = "", "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%", statOrder = { 6567 }, level = 1, group = "FireDamagePerMissingFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1060236362] = { "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%" }, } }, - ["ElementalDamagePerMissingResistanceUnique_1"] = { affix = "", "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%", statOrder = { 6296, 6296.1 }, level = 1, group = "ElementalDamagePerMissingResistance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [64913248] = { "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%" }, } }, - ["ReplicaNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 58 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(60-120)% increased Implicit Modifier magnitudes" }, } }, - ["HyrrisTruthHatredManaReservationFinalUnique__1"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 6942 }, level = 1, group = "HyrrisTruthHatredManaReservationFinal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has 100% increased Mana Reservation Efficiency" }, } }, - ["HatredManaReservationEfficiencyUnique__1__"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 6943 }, level = 1, group = "HatredReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has 100% increased Mana Reservation Efficiency" }, } }, - ["GrantsHatredUnique__1__"] = { affix = "", "Grants Level 22 Hatred Skill", statOrder = { 649 }, level = 81, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 22 Hatred Skill" }, } }, - ["WingsOfEntropyMainHandAttackSpeedFinalUnique__1_"] = { affix = "", "(50-100)% more Main Hand attack speed", statOrder = { 8157 }, level = 1, group = "WingsOfEntropyMainHandAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [56401364] = { "(50-100)% more Main Hand attack speed" }, } }, - ["OffHandBaseCriticalStrikeChanceUnique__1"] = { affix = "", "+(10-20)% to Off Hand Critical Strike Chance", statOrder = { 4568 }, level = 1, group = "OffHandBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1757389331] = { "+(10-20)% to Off Hand Critical Strike Chance" }, } }, - ["FlammabilityOnBlockChanceUnique__1"] = { affix = "", "Curse Enemies with Flammability on Block", statOrder = { 2986 }, level = 1, group = "FlammabilityOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2776399916] = { "Curse Enemies with Flammability on Block" }, } }, - ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4881 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, - ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks can Fork 1 additional time", statOrder = { 4882 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks can Fork 1 additional time" }, } }, - ["ImpalePhysicalReductionPenaltyUnique__1"] = { affix = "", "Impale Damage dealt to Enemies Impaled by you Overwhelms 10% Physical Damage Reduction", statOrder = { 2979 }, level = 1, group = "ImpalePhysicalReductionPenalty", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3609854472] = { "Impale Damage dealt to Enemies Impaled by you Overwhelms 10% Physical Damage Reduction" }, } }, - ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10761 }, 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 = { 104, 392 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, [1782861052] = { "" }, } }, - ["LoseLifePercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Life when you deal a Critical Strike", statOrder = { 8142 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose (10-15)% of Life when you deal a Critical Strike" }, } }, - ["LoseEnergyShieldPercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Energy Shield when you deal a Critical Strike", statOrder = { 8140 }, level = 1, group = "LoseEnergyShieldPercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "critical" }, tradeHashes = { [1229725509] = { "Lose (10-15)% of Energy Shield when you deal a Critical Strike" }, } }, - ["DamageOverTimeMultiplierIfCrit8SecondsUnique__1_"] = { affix = "", "+(40-60)% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 6259 }, level = 1, group = "DamageOverTimeMultiplierIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3203086927] = { "+(40-60)% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["LifeRegenerationIfCrit8SecondsUnique__1"] = { affix = "", "(2-2.5)% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 7415 }, level = 1, group = "LifeRegenerationIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [221532021] = { "(2-2.5)% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["ArmourPerStrengthUnique__1_"] = { affix = "", "10% reduced Armour per 50 Strength", statOrder = { 4769 }, level = 65, group = "ArmourPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3621706946] = { "10% reduced Armour per 50 Strength" }, } }, - ["EnemiesIgniteChaosDamageUnique__1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 6412 }, level = 62, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2714810050] = { "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite" }, [42490373] = { "" }, } }, - ["EnemiesIgniteWitherNeverExpiresUnique__1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6413 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, - ["GrantsVampiricIconSkillUnique__1"] = { affix = "", "Grants Level 20 Thirst for Blood Skill", statOrder = { 727 }, level = 1, group = "GrantsVampiricIconSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1209807941] = { "Grants Level 20 Thirst for Blood Skill" }, } }, - ["LocalBleedDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7865 }, level = 1, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, - ["SacrificialZealOnSkillUseUnique__1_"] = { affix = "", "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second", statOrder = { 6816 }, level = 1, group = "SacrificialZealOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2287328323] = { "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second" }, } }, - ["ArmourPenetrationSacrificialZealUnique__1"] = { affix = "", "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal", statOrder = { 7172 }, level = 1, group = "ArmourPenetrationSacrificialZeal", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4243208518] = { "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal" }, } }, - ["RightRingMagicHexproofUnique__1"] = { affix = "", "You are Hexproof if you have a Magic Ring in right slot", statOrder = { 7140 }, level = 1, group = "RightRingMagicHexproof", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [165884462] = { "You are Hexproof if you have a Magic Ring in right slot" }, } }, - ["LeftRingMagicNoCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot", statOrder = { 9982 }, level = 1, group = "LeftRingMagicNoCritDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [611839381] = { "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot" }, } }, - ["AnyRingMagicDamageExtraRollUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped", statOrder = { 6419 }, level = 1, group = "AnyRingMagicDamageExtraRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2510276385] = { "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR1"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 15, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR2"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 45, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedGemsApplyExposureReducedResistsImplicitR3___"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 75, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, - ["SocketedActiveGemLevelSupportGemPenaltyImplicitR1"] = { affix = "", "-1 to Level of Socketed Support Gems", "+1 to Level of Socketed Skill Gems", statOrder = { 189, 190 }, level = 15, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [4154259475] = { "-1 to Level of Socketed Support Gems" }, } }, - ["SocketedActiveGemLevelSupportGemPenaltyImplicitR2"] = { affix = "", "-2 to Level of Socketed Support Gems", "+2 to Level of Socketed Skill Gems", statOrder = { 189, 190 }, level = 45, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [524797741] = { "+2 to Level of Socketed Skill Gems" }, [4154259475] = { "-2 to Level of Socketed Support Gems" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR1"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR2__"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR3"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR4"] = { affix = "", "+(3-4)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(3-4)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR5"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR6"] = { affix = "", "+(5-6)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(5-6)% Chance to Block Attack Damage" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR1"] = { affix = "", "30% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 20, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "30% increased Stun and Block Recovery" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR2"] = { affix = "", "40% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 50, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "40% increased Stun and Block Recovery" }, } }, - ["IncreasedStunRecoveryReducedStunThresholdImplicitR3"] = { affix = "", "50% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 80, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "50% increased Stun and Block Recovery" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR1"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9406 }, level = 20, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR2_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9406 }, level = 50, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["MovementSkillCooldownReducedMoveSpeedImplicitR3_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9406 }, level = 80, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 20, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 50, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 80, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, - ["MainHandOffHandDamage1_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 10, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["MainHandOffHandDamage2"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 40, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["MainHandOffHandDamage3_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 70, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR1"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (10-15)% increased Skill Effect Duration", statOrder = { 3461, 10419 }, level = 10, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (10-15)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR2"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (15-20)% increased Skill Effect Duration", statOrder = { 3461, 10419 }, level = 40, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (15-20)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR3"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (20-25)% increased Skill Effect Duration", statOrder = { 3461, 10419 }, level = 70, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (20-25)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, - ["GainManaOnManaPaidManaCost1"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 10, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["GainManaOnManaPaidManaCost2"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 40, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["GainManaOnManaPaidManaCost3____"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 70, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, - ["ExertedDamageWarcryCooldown1"] = { affix = "", "Exerted Attacks deal (25-30)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6357, 10569 }, level = 10, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (25-30)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["ExertedDamageWarcryCooldown2"] = { affix = "", "Exerted Attacks deal (30-40)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6357, 10569 }, level = 40, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (30-40)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["ExertedDamageWarcryCooldown3"] = { affix = "", "Exerted Attacks deal (40-50)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6357, 10569 }, level = 70, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-50)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, - ["FortifyEffectCrushed1"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7920, 9118 }, level = 15, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["FortifyEffectCrushed2_"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7920, 9118 }, level = 45, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["FortifyEffectCrushed3_"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 7920, 9118 }, level = 75, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, - ["MaxChaosResistanceCrushedImplicitR1"] = { affix = "", "+2% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1640, 7920 }, level = 15, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["MaxChaosResistanceCrushedImplicitR2"] = { affix = "", "+3% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1640, 7920 }, level = 45, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["MaxChaosResistanceCrushedImplicitR3"] = { affix = "", "+4% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1640, 7920 }, level = 75, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, - ["AddedColdDamageColdPenetration1"] = { affix = "", "Adds (3-4) to (5-6) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 15, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (3-4) to (5-6) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["AddedColdDamageColdPenetration2"] = { affix = "", "Adds (15-20) to (28-35) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 45, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (15-20) to (28-35) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["AddedColdDamageColdPenetration3"] = { affix = "", "Adds (75-85) to (115-128) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 75, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (75-85) to (115-128) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["GrantsUnhingeUnique__1"] = { affix = "", "Grants Level 20 Unhinge Skill", statOrder = { 723 }, level = 1, group = "GrantsUnhingeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3239991868] = { "Grants Level 20 Unhinge Skill" }, } }, - ["PhysicalChaosDamageTakenNotUnhingedUnique__1_"] = { affix = "", "(30-40)% less Physical and Chaos Damage Taken while Sane", statOrder = { 9622 }, level = 1, group = "PhysicalChaosDamageTakenNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [388639924] = { "(30-40)% less Physical and Chaos Damage Taken while Sane" }, } }, - ["RegenerateLifeNotUnhingedUnique__1"] = { affix = "", "Regenerate 10% Life over one second when Hit while Sane", statOrder = { 9895 }, level = 1, group = "RegenerateLifeNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2504632495] = { "Regenerate 10% Life over one second when Hit while Sane" }, } }, - ["CriticalStrikeChanceFinalUnhingedUnique__1"] = { affix = "", "(40-60)% more Critical Strike Chance while Insane", statOrder = { 5923 }, level = 1, group = "CriticalStrikeChanceFinalUnhinged", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2692289207] = { "(40-60)% more Critical Strike Chance while Insane" }, } }, - ["EnemiesExplodeOnKillUnhingedUnique__1_"] = { affix = "", "Enemies Killed by your Hits are destroyed while Insane", statOrder = { 6377 }, level = 1, group = "EnemiesExplodeOnKillUnhinged", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797538318] = { "Enemies Killed by your Hits are destroyed while Insane" }, } }, - ["CurseAurasAffectYouUnique__1"] = { affix = "", "Curse Auras from Socketed Skills also affect you", statOrder = { 551 }, level = 70, group = "CurseAurasAffectYou", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "curse" }, tradeHashes = { [2965611853] = { "Curse Auras from Socketed Skills also affect you" }, } }, - ["HitAndAilmentDamageCursedEnemiesUnique__1"] = { affix = "", "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7152 }, level = 1, group = "HitAndAilmentDamageCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "curse" }, tradeHashes = { [539970476] = { "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies" }, } }, - ["ScorchedGroundWhileMovingUnique__1"] = { affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 4310 }, level = 1, group = "ScorchedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1558131185] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } }, - ["NearbyEnemiesAreScorchedUnique__1"] = { affix = "", "Nearby Enemies are Scorched", statOrder = { 3399 }, level = 1, group = "NearbyEnemiesAreScorched", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3733114005] = { "Nearby Enemies are Scorched" }, } }, - ["ScorchEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Scorch", statOrder = { 9963 }, level = 1, group = "ScorchEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [344570534] = { "(30-50)% increased Effect of Scorch" }, } }, - ["ScorchedEnemiesDegenExplodeUnique__1_"] = { affix = "", "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second", statOrder = { 9965, 9965.1 }, level = 87, group = "ScorchedEnemiesDegenExplode", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3717165313] = { "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second" }, } }, - ["AttackSpeedFrenzyChargeNotGainedUnique__1"] = { affix = "", "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently", statOrder = { 4899 }, level = 1, group = "AttackSpeedFrenzyChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [749465463] = { "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently" }, } }, - ["CriticalStrikeChancePowerChargeNotGainedUnique__1"] = { affix = "", "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently", statOrder = { 5929 }, level = 1, group = "CriticalStrikeChancePowerChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [151106430] = { "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently" }, } }, - ["ExtendFrenzyPowerChargeDurationCullUnique__1"] = { affix = "", "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike", statOrder = { 6672 }, level = 1, group = "ExtendFrenzyPowerChargeDurationCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4244234128] = { "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike" }, } }, - ["LifeGainOnCullUnique__1"] = { affix = "", "Gain (120-150) Life on Culling Strike", statOrder = { 7359 }, level = 1, group = "LifeGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2381677442] = { "Gain (120-150) Life on Culling Strike" }, } }, - ["ManaGainOnCullUnique__1_"] = { affix = "", "Gain (10-20) Mana on Culling Strike", statOrder = { 8179 }, level = 1, group = "ManaGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2845511711] = { "Gain (10-20) Mana on Culling Strike" }, } }, - ["GainBrutalChargesInsteadOfEnduranceUnique__1"] = { affix = "", "Gain Brutal Charges instead of Endurance Charges", statOrder = { 6739 }, level = 85, group = "GainBrutalChargesInsteadOfEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306836071] = { "Gain Brutal Charges instead of Endurance Charges" }, } }, - ["GainAfflictionChargesInsteadOfFrenzyUnique__1"] = { affix = "", "Gain Affliction Charges instead of Frenzy Charges", statOrder = { 6720 }, level = 85, group = "GainAfflictionChargesInsteadOfFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602173343] = { "Gain Affliction Charges instead of Frenzy Charges" }, } }, - ["GainAbsorptionChargesInsteadOfPowerUnique__1"] = { affix = "", "Gain Absorption Charges instead of Power Charges", statOrder = { 6710 }, level = 85, group = "GainAbsorptionChargesInsteadOfPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1379726309] = { "Gain Absorption Charges instead of Power Charges" }, } }, - ["MaximumBrutalChargesEqualsEnduranceUnique__1__"] = { affix = "", "Maximum Brutal Charges is equal to Maximum Endurance Charges", statOrder = { 1807 }, level = 1, group = "MaximumBrutalChargesEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3710150470] = { "Maximum Brutal Charges is equal to Maximum Endurance Charges" }, } }, - ["MaximumAfflictionChargesEqualsFrenzyUnique__1"] = { affix = "", "Maximum Affliction Charges is equal to Maximum Frenzy Charges", statOrder = { 1812 }, level = 1, group = "MaximumAfflictionChargesEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2817027713] = { "Maximum Affliction Charges is equal to Maximum Frenzy Charges" }, } }, - ["MaximumAbsorptionChargesEqualsPowerUnique__1_"] = { affix = "", "Maximum Absorption Charges is equal to Maximum Power Charges", statOrder = { 1817 }, level = 1, group = "MaximumAbsorptionChargesEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2494027711] = { "Maximum Absorption Charges is equal to Maximum Power Charges" }, } }, - ["MinimumBrutalChargeModifiersEqualsEnduranceUnique__1"] = { affix = "", "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges", statOrder = { 1806 }, level = 1, group = "MinimumBrutalChargeModifiersEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2966482502] = { "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges" }, } }, - ["MinimumAfflictionChargeModifiersEqualsFrenzyUnique__1"] = { affix = "", "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges", statOrder = { 1811 }, level = 1, group = "MinimumAfflictionChargeModifiersEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1424305790] = { "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges" }, } }, - ["MinimumAbsorptionChargeModifiersEqualsPowerUnique__1"] = { affix = "", "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges", statOrder = { 1816 }, level = 1, group = "MinimumAbsorptionChargeModifiersEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1752582590] = { "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges" }, } }, - ["MinionsCrazyOnCritUnique__1__"] = { affix = "", "Minions can hear the whispers for 5 seconds after they deal a Critical Strike", statOrder = { 9355 }, level = 1, group = "MinionsCrazyOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [2735021664] = { "Minions can hear the whispers for 5 seconds after they deal a Critical Strike" }, } }, - ["MinionCriticalStrikeChanceMaximumPowerChargeUnique__1"] = { affix = "", "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have", statOrder = { 9290 }, level = 1, group = "MinionCriticalStrikeChanceMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [446070669] = { "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have" }, } }, - ["PhysicalDamageTakenAsLightningDescentTwoHandSword1"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 1598 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, - ["BattlemageKeystoneUnique__1"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__2_"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__3"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__4"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["BattlemageKeystoneUnique__6"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["ChainOffTerrainChancePerRangedAbyssJewelUnique__1__"] = { affix = "", "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%", statOrder = { 9728, 9728.1 }, level = 1, group = "ChainOffTerrainChancePerRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1485085047] = { "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%" }, } }, - ["MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1"] = { affix = "", "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%", statOrder = { 8159, 8159.1 }, level = 1, group = "MainHandCriticalStrikeChancePerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3454830051] = { "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%" }, } }, - ["OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__"] = { affix = "", "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%", statOrder = { 9551, 9551.1 }, level = 1, group = "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3699529133] = { "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%" }, } }, - ["MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1"] = { affix = "", "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%", statOrder = { 9295, 9295.1 }, level = 1, group = "MinionDamageOverTimeMultiplierPerMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [613055432] = { "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%" }, } }, - ["ArcaneSurgeEffectPerCasterAbyssJewelUnique__1"] = { affix = "", "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%", statOrder = { 3287, 3287.1 }, level = 1, group = "ArcaneSurgeEffectPerCasterAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1012072406] = { "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%" }, } }, - ["GrantsCallOfSteelSkillUnique__1_"] = { affix = "", "Grants Call of Steel", statOrder = { 694 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3637628300] = { "Grants Call of Steel" }, } }, - ["GrantsCallOfSteelSkillUnique__2"] = { affix = "", "Grants Call of Steel", statOrder = { 694 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3637628300] = { "Grants Call of Steel" }, } }, + ["MaxPrefixMaxSuffixImplicitE6"] = { affix = "", "-2 Prefix Modifiers allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Suffix Modifier magnitudes", statOrder = { 15, 16, 21, 8144 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "+1 Suffix Modifier allowed" }, [1033086302] = { "50% increased Suffix Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [1794120699] = { "" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, + ["ReflectedDurationRingImplicitK1"] = { affix = "", "Left ring slot: 15% reduced Skill Effect Duration", "Right ring slot: 15% increased Skill Effect Duration", statOrder = { 2688, 2695 }, level = 30, group = "ReflectedDurationRingImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3320868777] = { "Left ring slot: 15% reduced Skill Effect Duration" }, [2239667237] = { "Right ring slot: 15% increased Skill Effect Duration" }, } }, + ["ReflectedFireColdDamageTakenConversionImplicitK5a"] = { affix = "", "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage", "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage", statOrder = { 2681, 2692 }, level = 30, group = "ReflectedFireColdDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [1323927995] = { "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage" }, [2478238773] = { "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage" }, } }, + ["ReflectedFireLightningDamageTakenConversionImplicitK5b"] = { affix = "", "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage", "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 2683, 2693 }, level = 30, group = "ReflectedFireLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, tradeHashes = { [17730902] = { "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage" }, [1905512385] = { "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage" }, } }, + ["ReflectedColdLightningDamageTakenConversionImplicitK5c"] = { affix = "", "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage", "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 2684, 2690 }, level = 30, group = "ReflectedColdLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, tradeHashes = { [744858137] = { "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage" }, [450178102] = { "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage" }, } }, + ["ReflectedCurseEffectOnSelfImplicitK2"] = { affix = "", "Left ring slot: 30% reduced Effect of Curses on you", "Right ring slot: 30% increased Effect of Curses on you", statOrder = { 2682, 2691 }, level = 30, group = "ReflectedCurseEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [4279053153] = { "Right ring slot: 30% increased Effect of Curses on you" }, [496053892] = { "Left ring slot: 30% reduced Effect of Curses on you" }, } }, + ["ReflectedMinionDamageTakenImplicitK3"] = { affix = "", "Left ring slot: Minions take 15% reduced Damage", "Right ring slot: Minions take 15% increased Damage", statOrder = { 2687, 2694 }, level = 30, group = "ReflectedMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1069618951] = { "Right ring slot: Minions take 15% increased Damage" }, [1916904011] = { "Left ring slot: Minions take 15% reduced Damage" }, } }, + ["ReflectedAilmentDurationOnSelfImplicitK4"] = { affix = "", "Left ring slot: 30% reduced Duration of Ailments on You", "Right ring slot: 30% increased Duration of Ailments on You", statOrder = { 2680, 2689 }, level = 30, group = "ReflectedAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [221309863] = { "Left ring slot: 30% reduced Duration of Ailments on You" }, [2457848738] = { "Right ring slot: 30% increased Duration of Ailments on You" }, } }, + ["CurseEffectElementalAilmentDurationOnSelfR1"] = { affix = "", "50% increased Elemental Ailment Duration on you", "50% reduced Effect of Curses on you", statOrder = { 1890, 2193 }, level = 30, group = "CurseEffectElementalAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, [3407849389] = { "50% reduced Effect of Curses on you" }, } }, + ["MaxPrefixMaxSuffixModEffectImplicitE1"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 58 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1581907402] = { "25% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, + ["MaxPrefixMaxSuffixModEffectImplicitE2"] = { affix = "", "-2 Prefix Modifiers allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 58 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [1581907402] = { "100% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-2 Prefix Modifiers allowed" }, } }, + ["MaxPrefixMaxSuffixModEffectImplicitE3"] = { affix = "", "-1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 58 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-2 Suffix Modifiers allowed" }, [1581907402] = { "100% increased Explicit Modifier magnitudes" }, [532463031] = { "Implicit Modifiers Cannot Be Changed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, + ["LocalAllDamageCanPoisonImplicitE1_"] = { affix = "", "All Damage from Hits with This Weapon can Poison", statOrder = { 2496 }, level = 1, group = "LocalAllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264042990] = { "All Damage from Hits with This Weapon can Poison" }, } }, + ["ChanceToInflictScorchOnEnemyOnBlockImplicitE1"] = { affix = "", "Scorch Enemies when you Block their Damage", statOrder = { 5791 }, level = 1, group = "ChanceToInflictScorchOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [779391868] = { "Scorch Enemies when you Block their Damage" }, } }, + ["ChanceToInflictBrittleOnEnemyOnBlockImplicitE1"] = { affix = "", "Inflict Brittle on Enemies when you Block their Damage", statOrder = { 5786 }, level = 1, group = "ChanceToInflictBrittleOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1749278976] = { "Inflict Brittle on Enemies when you Block their Damage" }, } }, + ["ChanceToInflictSapOnEnemyOnBlockImplicitE1"] = { affix = "", "Sap Enemies when you Block their Damage", statOrder = { 5790 }, level = 1, group = "ChanceToInflictSapOnEnemyOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2113677718] = { "Sap Enemies when you Block their Damage" }, } }, + ["ItemNecroticFootprintsUnique__1s"] = { affix = "", "Necrotic Footprints", statOrder = { 9611 }, level = 1, group = "ItemNecroticFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [214242256] = { "Necrotic Footprints" }, } }, + ["ChaosResistanceWhileStationaryUnique__1"] = { affix = "", "+30% to Chaos Resistance while stationary", statOrder = { 5823 }, level = 1, group = "ChaosResistanceWhileStationary", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [779829642] = { "+30% to Chaos Resistance while stationary" }, } }, + ["PowerChargeOnHitWhilePoisonedUnique__1"] = { affix = "", "Gain a Power Charge on Hit while Poisoned", statOrder = { 4575 }, level = 1, group = "PowerChargeOnHitWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [800598487] = { "Gain a Power Charge on Hit while Poisoned" }, } }, + ["ChanceToBePoisonedBySpellsUnique__1_"] = { affix = "", "50% chance for Spell Hits against you to inflict Poison", statOrder = { 10307 }, level = 1, group = "ChanceToBePoisonedBySpells", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2043747322] = { "50% chance for Spell Hits against you to inflict Poison" }, } }, + ["SpiritMinionRefreshOnUniqueHitUnique__1"] = { affix = "", "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9757, 9946 }, level = 1, group = "SpiritMinionRefreshOnUniqueHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } }, + ["MovementVelocityPerPowerChargeUnique__1__"] = { affix = "", "5% increased Movement Speed per Power Charge", statOrder = { 9562 }, level = 1, group = "MovementVelocityPerPowerChargeCopy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3774108776] = { "5% increased Movement Speed per Power Charge" }, } }, + ["LifeRegenerationPerPowerChargeUnique__1__"] = { affix = "", "Regenerate 0.5% of Life per second per Power Charge", statOrder = { 7522 }, level = 1, group = "LifeRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.5% of Life per second per Power Charge" }, } }, + ["LocalFlaskAttackAndCastSpeedWhileHealingUnique__1"] = { affix = "", "(5-15)% increased Attack Speed during Effect", "(5-15)% increased Cast Speed during Effect", statOrder = { 968, 969 }, level = 1, group = "LocalFlaskAttackAndCastSpeedWhileHealing", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3256116097] = { "(5-15)% increased Cast Speed during Effect" }, [968369591] = { "(5-15)% increased Attack Speed during Effect" }, } }, + ["IncreasedElementalResistancesUnique__1"] = { affix = "", "(18-22)% increased Elemental Resistances", statOrder = { 6400 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [76848920] = { "(18-22)% increased Elemental Resistances" }, } }, + ["IncreasedElementalResistancesUnique__2_"] = { affix = "", "(60-70)% reduced Elemental Resistances", statOrder = { 6400 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [76848920] = { "(60-70)% reduced Elemental Resistances" }, } }, + ["DefencesAreZeroUnique__1_"] = { affix = "", "Defences are Zero", statOrder = { 6241 }, level = 1, group = "DefencesAreZero", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4271994824] = { "Defences are Zero" }, } }, + ["ChaosResistanceIsZeroUnique__1"] = { affix = "", "Chaos Resistance is Zero", statOrder = { 10889 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } }, + ["ElementalDamageDuringFlaskEffectUnique__1"] = { affix = "", "30% increased Elemental Damage during any Flask Effect", statOrder = { 4261 }, level = 1, group = "ElementalDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3150967823] = { "30% increased Elemental Damage during any Flask Effect" }, } }, + ["SupportedByCastOnDamageTakenUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 12 Cast when Damage Taken", statOrder = { 248 }, level = 1, group = "SupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 12 Cast when Damage Taken" }, } }, + ["ShieldArmourIncreaseUnique__1"] = { affix = "", "50% increased Defences from Equipped Shield", statOrder = { 2017 }, level = 1, group = "ShieldArmourIncrease", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1215155013] = { "50% increased Defences from Equipped Shield" }, } }, + ["AddedFireDamageIfBlockedRecentlyUnique__1"] = { affix = "", "Adds 45 to 75 Fire Damage if you've Blocked Recently", statOrder = { 4311 }, level = 1, group = "AddedFireDamageIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 45 to 75 Fire Damage if you've Blocked Recently" }, } }, + ["AddedFireDamagePer100LowestOfLifeOrManaUnique__1"] = { affix = "", "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower", statOrder = { 9368 }, level = 1, group = "AddedFireDamagePer100LowestOfLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [753801406] = { "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower" }, } }, + ["TauntedEnemiesTakeIncreasedDamage_"] = { affix = "", "Enemies Taunted by you take 10% increased Damage", statOrder = { 4316 }, level = 1, group = "TauntedEnemiesTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1282219780] = { "Enemies Taunted by you take 10% increased Damage" }, } }, + ["ChaosDamageCanChill"] = { affix = "", "Your Chaos Damage can Chill", statOrder = { 2902 }, level = 1, group = "ChaosDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [3686066640] = { "Your Chaos Damage can Chill" }, } }, + ["ChaosDamageCanFreezeUnique_1"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2903 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } }, + ["MainHandTriggerSocketedSpellOnFreezingHitUnique_1"] = { affix = "", "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown", statOrder = { 850, 850.1 }, level = 83, group = "MainHandTriggerSocketedSpellOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [537034483] = { "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown" }, } }, + ["ElementalDamageIfCritRecently"] = { affix = "", "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 6390 }, level = 1, group = "ElementalDamageIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2379781920] = { "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently" }, } }, + ["SupportedByMultiTotemUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Multiple Totems", statOrder = { 350 }, level = 1, group = "SupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [807186595] = { "Socketed Gems are Supported by Level 1 Multiple Totems" }, } }, + ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 4232 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, + ["ExtraMaximumPhantasmsUnique__1"] = { affix = "", "+3 to maximum number of Summoned Phantasms", statOrder = { 5104 }, level = 1, group = "ExtraMaximumPhantasms", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [517587669] = { "+3 to maximum number of Summoned Phantasms" }, } }, + ["ExtraRagingSpiritsUnique__1"] = { affix = "", "+6 to maximum number of Raging Spirits", statOrder = { 2186 }, level = 1, group = "ExtraRagingSpirits", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3143579606] = { "+6 to maximum number of Raging Spirits" }, } }, + ["HungryLoopSupportedByPinpoint"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Pinpoint", statOrder = { 107, 363 }, level = 1, group = "HungryLoopSupportedByPinpoint", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [1609369521] = { "Socketed Gems are Supported by Level 20 Pinpoint" }, [1782861052] = { "" }, } }, + ["SpellBlockIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently", statOrder = { 10278 }, level = 1, group = "MaximumSpellBlockIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1817677817] = { "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently" }, } }, + ["LocalEnergyShieldRegenerationIfCritRecentlyUnique__1"] = { affix = "", "Regenerate 20% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently", statOrder = { 8041 }, level = 1, group = "LocalEnergyShieldRegenerationIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [298613712] = { "Regenerate 20% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently" }, } }, + ["ColdDamagePerMissingColdResistanceUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%", statOrder = { 5895 }, level = 1, group = "ColdDamagePerMissingColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2859664487] = { "(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%" }, } }, + ["FireDamagePerMissingFireResistanceUnique__1"] = { affix = "", "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%", statOrder = { 6654 }, level = 1, group = "FireDamagePerMissingFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1060236362] = { "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%" }, } }, + ["ElementalDamagePerMissingResistanceUnique_1"] = { affix = "", "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%", statOrder = { 6383, 6383.1 }, level = 1, group = "ElementalDamagePerMissingResistance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [64913248] = { "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%" }, } }, + ["ReplicaNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 59 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304729532] = { "(60-120)% increased Implicit Modifier magnitudes" }, } }, + ["HyrrisTruthHatredManaReservationFinalUnique__1"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 7037 }, level = 1, group = "HyrrisTruthHatredManaReservationFinal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has 100% increased Mana Reservation Efficiency" }, } }, + ["HatredManaReservationEfficiencyUnique__1__"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 7038 }, level = 1, group = "HatredReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has 100% increased Mana Reservation Efficiency" }, } }, + ["GrantsHatredUnique__1__"] = { affix = "", "Grants Level 22 Hatred Skill", statOrder = { 661 }, level = 81, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 22 Hatred Skill" }, } }, + ["WingsOfEntropyMainHandAttackSpeedFinalUnique__1_"] = { affix = "", "(50-100)% more Main Hand attack speed", statOrder = { 8270 }, level = 1, group = "WingsOfEntropyMainHandAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [56401364] = { "(50-100)% more Main Hand attack speed" }, } }, + ["OffHandBaseCriticalStrikeChanceUnique__1"] = { affix = "", "+(10-20)% to Off Hand Critical Strike Chance", statOrder = { 4611 }, level = 1, group = "OffHandBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1757389331] = { "+(10-20)% to Off Hand Critical Strike Chance" }, } }, + ["FlammabilityOnBlockChanceUnique__1"] = { affix = "", "Curse Enemies with Flammability on Block", statOrder = { 3020 }, level = 1, group = "FlammabilityOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2776399916] = { "Curse Enemies with Flammability on Block" }, } }, + ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4931 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, + ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks can Fork 1 additional time", statOrder = { 4932 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks can Fork 1 additional time" }, } }, + ["ImpalePhysicalReductionPenaltyUnique__1"] = { affix = "", "Impale Damage dealt to Enemies Impaled by you Overwhelms 10% Physical Damage Reduction", statOrder = { 3013 }, level = 1, group = "ImpalePhysicalReductionPenalty", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3609854472] = { "Impale Damage dealt to Enemies Impaled by you Overwhelms 10% Physical Damage Reduction" }, } }, + ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10924 }, 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 = { 107, 402 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, [1782861052] = { "" }, } }, + ["LoseLifePercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Life when you deal a Critical Strike", statOrder = { 8255 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose (10-15)% of Life when you deal a Critical Strike" }, } }, + ["LoseEnergyShieldPercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Energy Shield when you deal a Critical Strike", statOrder = { 8253 }, level = 1, group = "LoseEnergyShieldPercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "critical" }, tradeHashes = { [1229725509] = { "Lose (10-15)% of Energy Shield when you deal a Critical Strike" }, } }, + ["DamageOverTimeMultiplierIfCrit8SecondsUnique__1_"] = { affix = "", "+(40-60)% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 6346 }, level = 1, group = "DamageOverTimeMultiplierIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3203086927] = { "+(40-60)% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds" }, } }, + ["LifeRegenerationIfCrit8SecondsUnique__1"] = { affix = "", "(2-2.5)% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 7515 }, level = 1, group = "LifeRegenerationIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [221532021] = { "(2-2.5)% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds" }, } }, + ["ArmourPerStrengthUnique__1_"] = { affix = "", "10% reduced Armour per 50 Strength", statOrder = { 4816 }, level = 65, group = "ArmourPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3621706946] = { "10% reduced Armour per 50 Strength" }, } }, + ["EnemiesIgniteChaosDamageUnique__1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 6499 }, level = 62, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2714810050] = { "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite" }, [42490373] = { "" }, } }, + ["EnemiesIgniteWitherNeverExpiresUnique__1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6500 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, + ["GrantsVampiricIconSkillUnique__1"] = { affix = "", "Grants Level 20 Thirst for Blood Skill", statOrder = { 745 }, level = 1, group = "GrantsVampiricIconSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1209807941] = { "Grants Level 20 Thirst for Blood Skill" }, } }, + ["LocalBleedDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7971 }, level = 1, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } }, + ["SacrificialZealOnSkillUseUnique__1_"] = { affix = "", "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second", statOrder = { 6908 }, level = 1, group = "SacrificialZealOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2287328323] = { "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second" }, } }, + ["ArmourPenetrationSacrificialZealUnique__1"] = { affix = "", "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal", statOrder = { 7272 }, level = 1, group = "ArmourPenetrationSacrificialZeal", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4243208518] = { "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal" }, } }, + ["RightRingMagicHexproofUnique__1"] = { affix = "", "You are Hexproof if you have a Magic Ring in right slot", statOrder = { 7239 }, level = 1, group = "RightRingMagicHexproof", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [165884462] = { "You are Hexproof if you have a Magic Ring in right slot" }, } }, + ["LeftRingMagicNoCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot", statOrder = { 10126 }, level = 1, group = "LeftRingMagicNoCritDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [611839381] = { "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot" }, } }, + ["AnyRingMagicDamageExtraRollUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped", statOrder = { 6506 }, level = 1, group = "AnyRingMagicDamageExtraRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2510276385] = { "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped" }, } }, + ["SocketedGemsApplyExposureReducedResistsImplicitR1"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 565, 1642 }, level = 15, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, + ["SocketedGemsApplyExposureReducedResistsImplicitR2"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 565, 1642 }, level = 45, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, + ["SocketedGemsApplyExposureReducedResistsImplicitR3___"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 565, 1642 }, level = 75, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-10% to all Elemental Resistances" }, [2192875806] = { "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit" }, } }, + ["SocketedActiveGemLevelSupportGemPenaltyImplicitR1"] = { affix = "", "-1 to Level of Socketed Support Gems", "+1 to Level of Socketed Skill Gems", statOrder = { 195, 196 }, level = 15, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [4154259475] = { "-1 to Level of Socketed Support Gems" }, } }, + ["SocketedActiveGemLevelSupportGemPenaltyImplicitR2"] = { affix = "", "-2 to Level of Socketed Support Gems", "+2 to Level of Socketed Skill Gems", statOrder = { 195, 196 }, level = 45, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [524797741] = { "+2 to Level of Socketed Skill Gems" }, [4154259475] = { "-2 to Level of Socketed Support Gems" }, } }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR1"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2483, 5049 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR2__"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2483, 5049 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR3"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2483, 5049 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR4"] = { affix = "", "+(3-4)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2483, 5049 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(3-4)% Chance to Block Attack Damage" }, } }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR5"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2483, 5049 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR6"] = { affix = "", "+(5-6)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2483, 5049 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2905515354] = { "You take 10% of Damage from Blocked Hits" }, [1702195217] = { "+(5-6)% Chance to Block Attack Damage" }, } }, + ["IncreasedStunRecoveryReducedStunThresholdImplicitR1"] = { affix = "", "30% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1925, 3308 }, level = 20, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "30% increased Stun and Block Recovery" }, } }, + ["IncreasedStunRecoveryReducedStunThresholdImplicitR2"] = { affix = "", "40% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1925, 3308 }, level = 50, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "40% increased Stun and Block Recovery" }, } }, + ["IncreasedStunRecoveryReducedStunThresholdImplicitR3"] = { affix = "", "50% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1925, 3308 }, level = 80, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, [2511217560] = { "50% increased Stun and Block Recovery" }, } }, + ["MovementSkillCooldownReducedMoveSpeedImplicitR1"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1821, 9539 }, level = 20, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, + ["MovementSkillCooldownReducedMoveSpeedImplicitR2_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1821, 9539 }, level = 50, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, + ["MovementSkillCooldownReducedMoveSpeedImplicitR3_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1821, 9539 }, level = 80, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1124980805] = { "(45-50)% increased Cooldown Recovery Rate of Movement Skills" }, [2250533757] = { "10% reduced Movement Speed" }, } }, + ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4923, 5330 }, level = 20, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, + ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4923, 5330 }, level = 50, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, + ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4923, 5330 }, level = 80, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4139229725] = { "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating" }, [170394517] = { "25% less Accuracy Rating" }, } }, + ["MainHandOffHandDamage1_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1306, 1307 }, level = 10, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, + ["MainHandOffHandDamage2"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1306, 1307 }, level = 40, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, + ["MainHandOffHandDamage3_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1306, 1307 }, level = 70, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2924279089] = { "(40-50)% increased Attack Damage with Off Hand" }, [2696701853] = { "25% reduced Attack Damage with Main Hand" }, } }, + ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR1"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (10-15)% increased Skill Effect Duration", statOrder = { 3497, 10570 }, level = 10, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (10-15)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, + ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR2"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (15-20)% increased Skill Effect Duration", statOrder = { 3497, 10570 }, level = 40, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (15-20)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, + ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR3"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (20-25)% increased Skill Effect Duration", statOrder = { 3497, 10570 }, level = 70, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2546859843] = { "Trap Skills have (20-25)% increased Skill Effect Duration" }, [3417757416] = { "30% reduced Cooldown Recovery Rate for throwing Traps" }, } }, + ["GainManaOnManaPaidManaCost1"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1603, 5777 }, level = 10, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, + ["GainManaOnManaPaidManaCost2"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1603, 5777 }, level = 40, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, + ["GainManaOnManaPaidManaCost3____"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1603, 5777 }, level = 70, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1915414884] = { "(25-30)% chance when you pay a Skill's Cost to gain that much Mana" }, } }, + ["ExertedDamageWarcryCooldown1"] = { affix = "", "Exerted Attacks deal (25-30)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6444, 10725 }, level = 10, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (25-30)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, + ["ExertedDamageWarcryCooldown2"] = { affix = "", "Exerted Attacks deal (30-40)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6444, 10725 }, level = 40, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (30-40)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, + ["ExertedDamageWarcryCooldown3"] = { affix = "", "Exerted Attacks deal (40-50)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6444, 10725 }, level = 70, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-50)% increased Damage" }, [1504905117] = { "Warcry Skills have +2 seconds to Cooldown" }, } }, + ["FortifyEffectCrushed1"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 8029, 9240 }, level = 15, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, + ["FortifyEffectCrushed2_"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 8029, 9240 }, level = 45, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, + ["FortifyEffectCrushed3_"] = { affix = "", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 8029, 9240 }, level = 75, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, [335507772] = { "+(2-3) to maximum Fortification" }, } }, + ["MaxChaosResistanceCrushedImplicitR1"] = { affix = "", "+2% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1663, 8029 }, level = 15, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, + ["MaxChaosResistanceCrushedImplicitR2"] = { affix = "", "+3% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1663, 8029 }, level = 45, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, + ["MaxChaosResistanceCrushedImplicitR3"] = { affix = "", "+4% to maximum Chaos Resistance", "You are Crushed", statOrder = { 1663, 8029 }, level = 75, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [846313030] = { "You are Crushed" }, [3771516363] = { "-15% additional Physical Damage Reduction" }, } }, + ["AddedColdDamageColdPenetration1"] = { affix = "", "Adds (3-4) to (5-6) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1392, 3017 }, level = 15, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (3-4) to (5-6) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, + ["AddedColdDamageColdPenetration2"] = { affix = "", "Adds (15-20) to (28-35) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1392, 3017 }, level = 45, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (15-20) to (28-35) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, + ["AddedColdDamageColdPenetration3"] = { affix = "", "Adds (75-85) to (115-128) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1392, 3017 }, level = 75, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (75-85) to (115-128) Cold Damage" }, [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, + ["GrantsUnhingeUnique__1"] = { affix = "", "Grants Level 20 Unhinge Skill", statOrder = { 741 }, level = 1, group = "GrantsUnhingeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3239991868] = { "Grants Level 20 Unhinge Skill" }, } }, + ["PhysicalChaosDamageTakenNotUnhingedUnique__1_"] = { affix = "", "(30-40)% less Physical and Chaos Damage Taken while Sane", statOrder = { 9764 }, level = 1, group = "PhysicalChaosDamageTakenNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [388639924] = { "(30-40)% less Physical and Chaos Damage Taken while Sane" }, } }, + ["RegenerateLifeNotUnhingedUnique__1"] = { affix = "", "Regenerate 10% Life over one second when Hit while Sane", statOrder = { 10038 }, level = 1, group = "RegenerateLifeNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2504632495] = { "Regenerate 10% Life over one second when Hit while Sane" }, } }, + ["CriticalStrikeChanceFinalUnhingedUnique__1"] = { affix = "", "(40-60)% more Critical Strike Chance while Insane", statOrder = { 6006 }, level = 1, group = "CriticalStrikeChanceFinalUnhinged", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2692289207] = { "(40-60)% more Critical Strike Chance while Insane" }, } }, + ["EnemiesExplodeOnKillUnhingedUnique__1_"] = { affix = "", "Enemies Killed by your Hits are destroyed while Insane", statOrder = { 6464 }, level = 1, group = "EnemiesExplodeOnKillUnhinged", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797538318] = { "Enemies Killed by your Hits are destroyed while Insane" }, } }, + ["CurseAurasAffectYouUnique__1"] = { affix = "", "Curse Auras from Socketed Skills also affect you", statOrder = { 562 }, level = 70, group = "CurseAurasAffectYou", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "curse" }, tradeHashes = { [2965611853] = { "Curse Auras from Socketed Skills also affect you" }, } }, + ["HitAndAilmentDamageCursedEnemiesUnique__1"] = { affix = "", "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7251 }, level = 1, group = "HitAndAilmentDamageCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "curse" }, tradeHashes = { [539970476] = { "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies" }, } }, + ["ScorchedGroundWhileMovingUnique__1"] = { affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 4348 }, level = 1, group = "ScorchedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1558131185] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } }, + ["NearbyEnemiesAreScorchedUnique__1"] = { affix = "", "Nearby Enemies are Scorched", statOrder = { 3435 }, level = 1, group = "NearbyEnemiesAreScorched", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3733114005] = { "Nearby Enemies are Scorched" }, } }, + ["ScorchEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Scorch", statOrder = { 10107 }, level = 1, group = "ScorchEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [344570534] = { "(30-50)% increased Effect of Scorch" }, } }, + ["ScorchedEnemiesDegenExplodeUnique__1_"] = { affix = "", "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second", statOrder = { 10109, 10109.1 }, level = 87, group = "ScorchedEnemiesDegenExplode", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3717165313] = { "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second" }, } }, + ["AttackSpeedFrenzyChargeNotGainedUnique__1"] = { affix = "", "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently", statOrder = { 4949 }, level = 1, group = "AttackSpeedFrenzyChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [749465463] = { "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently" }, } }, + ["CriticalStrikeChancePowerChargeNotGainedUnique__1"] = { affix = "", "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently", statOrder = { 6012 }, level = 1, group = "CriticalStrikeChancePowerChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [151106430] = { "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently" }, } }, + ["ExtendFrenzyPowerChargeDurationCullUnique__1"] = { affix = "", "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike", statOrder = { 6761 }, level = 1, group = "ExtendFrenzyPowerChargeDurationCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4244234128] = { "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike" }, } }, + ["LifeGainOnCullUnique__1"] = { affix = "", "Gain (120-150) Life on Culling Strike", statOrder = { 7459 }, level = 1, group = "LifeGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2381677442] = { "Gain (120-150) Life on Culling Strike" }, } }, + ["ManaGainOnCullUnique__1_"] = { affix = "", "Gain (10-20) Mana on Culling Strike", statOrder = { 8292 }, level = 1, group = "ManaGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2845511711] = { "Gain (10-20) Mana on Culling Strike" }, } }, + ["GainBrutalChargesInsteadOfEnduranceUnique__1"] = { affix = "", "Gain Brutal Charges instead of Endurance Charges", statOrder = { 6830 }, level = 85, group = "GainBrutalChargesInsteadOfEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306836071] = { "Gain Brutal Charges instead of Endurance Charges" }, } }, + ["GainAfflictionChargesInsteadOfFrenzyUnique__1"] = { affix = "", "Gain Affliction Charges instead of Frenzy Charges", statOrder = { 6810 }, level = 85, group = "GainAfflictionChargesInsteadOfFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602173343] = { "Gain Affliction Charges instead of Frenzy Charges" }, } }, + ["GainAbsorptionChargesInsteadOfPowerUnique__1"] = { affix = "", "Gain Absorption Charges instead of Power Charges", statOrder = { 6800 }, level = 85, group = "GainAbsorptionChargesInsteadOfPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1379726309] = { "Gain Absorption Charges instead of Power Charges" }, } }, + ["MaximumBrutalChargesEqualsEnduranceUnique__1__"] = { affix = "", "Maximum Brutal Charges is equal to Maximum Endurance Charges", statOrder = { 1830 }, level = 1, group = "MaximumBrutalChargesEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3710150470] = { "Maximum Brutal Charges is equal to Maximum Endurance Charges" }, } }, + ["MaximumAfflictionChargesEqualsFrenzyUnique__1"] = { affix = "", "Maximum Affliction Charges is equal to Maximum Frenzy Charges", statOrder = { 1835 }, level = 1, group = "MaximumAfflictionChargesEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2817027713] = { "Maximum Affliction Charges is equal to Maximum Frenzy Charges" }, } }, + ["MaximumAbsorptionChargesEqualsPowerUnique__1_"] = { affix = "", "Maximum Absorption Charges is equal to Maximum Power Charges", statOrder = { 1840 }, level = 1, group = "MaximumAbsorptionChargesEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2494027711] = { "Maximum Absorption Charges is equal to Maximum Power Charges" }, } }, + ["MinimumBrutalChargeModifiersEqualsEnduranceUnique__1"] = { affix = "", "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges", statOrder = { 1829 }, level = 1, group = "MinimumBrutalChargeModifiersEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2966482502] = { "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges" }, } }, + ["MinimumAfflictionChargeModifiersEqualsFrenzyUnique__1"] = { affix = "", "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges", statOrder = { 1834 }, level = 1, group = "MinimumAfflictionChargeModifiersEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1424305790] = { "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges" }, } }, + ["MinimumAbsorptionChargeModifiersEqualsPowerUnique__1"] = { affix = "", "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges", statOrder = { 1839 }, level = 1, group = "MinimumAbsorptionChargeModifiersEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1752582590] = { "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges" }, } }, + ["MinionsCrazyOnCritUnique__1__"] = { affix = "", "Minions can hear the whispers for 5 seconds after they deal a Critical Strike", statOrder = { 9487 }, level = 1, group = "MinionsCrazyOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [2735021664] = { "Minions can hear the whispers for 5 seconds after they deal a Critical Strike" }, } }, + ["MinionCriticalStrikeChanceMaximumPowerChargeUnique__1"] = { affix = "", "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have", statOrder = { 9422 }, level = 1, group = "MinionCriticalStrikeChanceMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [446070669] = { "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have" }, } }, + ["PhysicalDamageTakenAsLightningDescentTwoHandSword1"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "50% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 1621 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, + ["BattlemageKeystoneUnique__1"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["BattlemageKeystoneUnique__2_"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["BattlemageKeystoneUnique__3"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["BattlemageKeystoneUnique__4"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["BattlemageKeystoneUnique__6"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["ChainOffTerrainChancePerRangedAbyssJewelUnique__1__"] = { affix = "", "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%", statOrder = { 9870, 9870.1 }, level = 1, group = "ChainOffTerrainChancePerRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1485085047] = { "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%" }, } }, + ["MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1"] = { affix = "", "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%", statOrder = { 8272, 8272.1 }, level = 1, group = "MainHandCriticalStrikeChancePerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3454830051] = { "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%" }, } }, + ["OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__"] = { affix = "", "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%", statOrder = { 9687, 9687.1 }, level = 1, group = "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3699529133] = { "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%" }, } }, + ["MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1"] = { affix = "", "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%", statOrder = { 9427, 9427.1 }, level = 1, group = "MinionDamageOverTimeMultiplierPerMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [613055432] = { "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%" }, } }, + ["ArcaneSurgeEffectPerCasterAbyssJewelUnique__1"] = { affix = "", "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%", statOrder = { 3323, 3323.1 }, level = 1, group = "ArcaneSurgeEffectPerCasterAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1012072406] = { "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%" }, } }, + ["GrantsCallOfSteelSkillUnique__1_"] = { affix = "", "Grants Call of Steel", statOrder = { 708 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3637628300] = { "Grants Call of Steel" }, } }, + ["GrantsCallOfSteelSkillUnique__2"] = { affix = "", "Grants Call of Steel", statOrder = { 708 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3637628300] = { "Grants Call of Steel" }, } }, ["LocalVeiledModEffectUnique__1"] = { affix = "", "(60-90)% increased Unveiled Modifier magnitudes", statOrder = { 56 }, level = 85, group = "LocalVeiledModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-90)% increased Unveiled Modifier magnitudes" }, } }, - ["LocalFreezeAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage", statOrder = { 7942 }, level = 1, group = "LocalFreezeAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [2071306253] = { "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage" }, } }, - ["LocalShockAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage", statOrder = { 7943 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage" }, } }, - ["LocalWeaponMoreIgniteDamageUnique__1"] = { affix = "", "Ignites inflicted with this Weapon deal (50-75)% more Damage", statOrder = { 7944 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal (50-75)% more Damage" }, } }, - ["ChanceToThrowFourAdditionalTrapsUnique__1"] = { affix = "", "(4-6)% chance to throw up to 4 additional Traps", statOrder = { 5724 }, level = 1, group = "ChanceToThrowFourAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3132227798] = { "(4-6)% chance to throw up to 4 additional Traps" }, } }, - ["GainMaximumPowerChargesOnVaalSkillUseUnique__1"] = { affix = "", "Gain up to maximum Power Charges when you use a Vaal Skill", statOrder = { 6777 }, level = 1, group = "GainMaximumPowerChargesOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "vaal" }, tradeHashes = { [3558528738] = { "Gain up to maximum Power Charges when you use a Vaal Skill" }, } }, - ["GainRandomChargeOnVaalSkillUseUnique__1_"] = { affix = "", "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill", statOrder = { 6766 }, level = 1, group = "GainRandomChargeOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge", "vaal" }, tradeHashes = { [1258100102] = { "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill" }, } }, - ["CountOnFullLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Full Life while you are Cursed with Vulnerability", statOrder = { 3119 }, level = 1, group = "CountOnFullLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3257374551] = { "You count as on Full Life while you are Cursed with Vulnerability" }, } }, - ["VaalAttacksUseRageInsteadOfSoulsUnique__1_"] = { affix = "", "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls", statOrder = { 2691 }, level = 90, group = "VaalAttacksUseRageInsteadOfSouls", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1103075489] = { "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls" }, } }, - ["CannotGainRageDuringSoulGainPreventionUnique__1__"] = { affix = "", "You cannot gain Rage during Soul Gain Prevention", statOrder = { 5436 }, level = 1, group = "CannotGainRageDuringSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [683365179] = { "You cannot gain Rage during Soul Gain Prevention" }, } }, - ["SupportedByRageUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 30 Rage", statOrder = { 360 }, level = 1, group = "SupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [369650395] = { "Socketed Gems are Supported by Level 30 Rage" }, } }, - ["ReducedRageCostUnique__1"] = { affix = "", "(10-25)% reduced Rage Cost of Skills", statOrder = { 1884 }, level = 1, group = "RageCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3415234440] = { "(10-25)% reduced Rage Cost of Skills" }, } }, - ["LifeAndReducedFireResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Life and reduced Fire Resistance", statOrder = { 1587 }, level = 1, group = "LifeAndReducedFireResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3018691556] = { "(30-40)% increased maximum Life and reduced Fire Resistance" }, } }, - ["ManaAndReducedColdResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Mana and reduced Cold Resistance", statOrder = { 1588 }, level = 1, group = "ManaAndReducedColdResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, tradeHashes = { [1156957589] = { "(30-40)% increased maximum Mana and reduced Cold Resistance" }, } }, - ["EnergyShieldAndReducedLightningResistanceUnique__1"] = { affix = "", "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance", statOrder = { 1589 }, level = 1, group = "EnergyShieldAndReducedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, tradeHashes = { [1381972535] = { "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance" }, } }, - ["VaalSkillDamageUnique__1"] = { affix = "", "(80-120)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(80-120)% increased Damage with Vaal Skills" }, } }, - ["VaalSoulGainPreventionUnique__1__"] = { affix = "", "(6-8)% reduced Soul Gain Prevention Duration", statOrder = { 3106 }, level = 1, group = "VaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1980613100] = { "(6-8)% reduced Soul Gain Prevention Duration" }, } }, - ["LuckyCriticalsOnLowLifeUnique__1___"] = { affix = "", "Your Critical Strike Chance is Lucky while on Low Life", statOrder = { 6532 }, level = 1, group = "LuckyCriticalsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2706122133] = { "Your Critical Strike Chance is Lucky while on Low Life" }, } }, - ["EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__"] = { affix = "", "Increases and Reductions to Maximum Energy Shield instead apply to Ward", statOrder = { 6429 }, level = 1, group = "EnergyShieldAdditiveModifiersInsteadApplyToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4100175081] = { "Increases and Reductions to Maximum Energy Shield instead apply to Ward" }, } }, - ["GlobalAddedChaosDamageWardUnique__"] = { affix = "", "Gain Added Chaos Damage equal to 10% of Ward", statOrder = { 2068 }, level = 1, group = "GlobalAddedChaosDamageWard", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3535421504] = { "Gain Added Chaos Damage equal to 10% of Ward" }, } }, - ["LocalIncreasedWardPercentUnique__1_"] = { affix = "", "(33-48)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(33-48)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__2"] = { affix = "", "(25-35)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(25-35)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__3"] = { affix = "", "(30-50)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(30-50)% increased Ward" }, } }, - ["LocalIncreasedWardPercentUnique__4_"] = { affix = "", "(50-80)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(50-80)% increased Ward" }, } }, - ["DamageBypassesWardPercentUnique__1"] = { affix = "", "75% of Damage taken bypasses Ward", statOrder = { 5006 }, level = 1, group = "DamageBypassesWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3000966016] = { "75% of Damage taken bypasses Ward" }, } }, - ["LocalIncreasedWardUnique__1"] = { affix = "", "+(100-150) to Ward", statOrder = { 1528 }, level = 1, group = "LocalWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(100-150) to Ward" }, } }, - ["WardDelayRecoveryUnique__1"] = { affix = "", "(40-60)% faster Restoration of Ward", statOrder = { 1531 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(40-60)% faster Restoration of Ward" }, } }, - ["WardDelayRecoveryUnique__2"] = { affix = "", "(30-50)% slower Restoration of Ward", statOrder = { 1531 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(30-50)% slower Restoration of Ward" }, } }, - ["GrantsSummonArbalistsSkillUnique__1_"] = { affix = "", "Triggers Level 20 Summon Arbalists when Equipped", statOrder = { 776 }, level = 1, group = "GrantsSummonArbalistsSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3664803307] = { "Triggers Level 20 Summon Arbalists when Equipped" }, } }, - ["AdrenalineOnWardBreakUnique__1"] = { affix = "", "Gain Adrenaline for 3 seconds when Ward Breaks", statOrder = { 6719 }, level = 1, group = "AdrenalineOnWardBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4231915769] = { "Gain Adrenaline for 3 seconds when Ward Breaks" }, } }, - ["FlaskChargesFromKillsFinalUnique__1_"] = { affix = "", "80% less Flask Charges gained from Kills", statOrder = { 6635 }, level = 1, group = "FlaskChargesFromKillsFinal", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [624257168] = { "80% less Flask Charges gained from Kills" }, } }, - ["FlaskChargePerSecondUniqueEnemyUnique__1___"] = { affix = "", "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently", statOrder = { 6753 }, level = 1, group = "FlaskChargePerSecondUniqueEnemy", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3599443205] = { "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently" }, } }, - ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9532 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1886245216] = { "+1 to number of Summoned Arbalists" }, } }, - ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10281 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2087104263] = { "Summoned Arbalists fire (2-4) additional Projectiles" }, } }, - ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10271 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4054463312] = { "Summoned Arbalists have (30-40)% increased Attack Speed" }, } }, - ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10290 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3741465646] = { "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets" }, } }, - ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10289 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2461270975] = { "Summoned Arbalists' Projectiles Fork" }, } }, - ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10272 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3010688059] = { "Summoned Arbalists' Projectiles Chain +2 times" }, } }, - ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10282 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1857935842] = { "Summoned Arbalists' Projectiles Split into 3" }, } }, - ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10275 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3057722139] = { "Summoned Arbalists have (25-35)% chance to deal Double Damage" }, } }, - ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10278 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3652224635] = { "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10277 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3964074505] = { "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10280 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976916585] = { "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10295 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3327243369] = { "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit" }, } }, - ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10294 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit" }, } }, - ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10296 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit" }, } }, - ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10274 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1658936540] = { "Summoned Arbalists have (10-20)% chance to Crush on Hit" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10287, 10292 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [831284309] = { "Summoned Arbalists have (10-20)% chance to Ignite" }, [2954406821] = { "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10286, 10291 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2052458107] = { "Summoned Arbalists have (10-20)% chance to Freeze" }, [1094808741] = { "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10288, 10293 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2144847042] = { "Summoned Arbalists have (10-20)% chance to Shock" }, [2934219859] = { "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10284, 10295 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1477474340] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage" }, [3327243369] = { "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10283, 10294 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit" }, [655918588] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10285, 10296 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit" }, [2631827343] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage" }, } }, - ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10273 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1841503755] = { "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding" }, } }, - ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10279 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894626576] = { "Summoned Arbalists have (40-60)% chance to Poison" }, } }, - ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10276 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [357325557] = { "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite" }, } }, - ["FlaskMoreWardUnique1"] = { affix = "", "85% less Ward during Effect", statOrder = { 1010 }, level = 1, group = "FlaskMoreWardUnique1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3615541554] = { "85% less Ward during Effect" }, } }, - ["FlaskFireColdLightningExposureOnNearbyEnemiesUnique1"] = { affix = "", "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used", statOrder = { 891 }, level = 1, group = "FlaskFireColdLightningExposureOnNearbyEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3933226405] = { "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used" }, } }, - ["FlaskNonDamagingAilmentIncreasedEffectUnique__1"] = { affix = "", "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect", statOrder = { 995 }, level = 1, group = "FlaskNonDamagingAilmentIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1122693835] = { "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect" }, } }, - ["FlaskEnduranceChargePerSecondUnique1"] = { affix = "", "Gain 1 Endurance Charge per Second during Effect", statOrder = { 980 }, level = 1, group = "FlaskEnduranceChargePerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3916499001] = { "Gain 1 Endurance Charge per Second during Effect" }, } }, - ["FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1"] = { affix = "", "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use", statOrder = { 892, 892.1 }, level = 1, group = "FlaskLoseAllEnduranceChargesGainLifePerLostCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [521653232] = { "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use" }, } }, - ["FlaskCullingStrikeUnique1"] = { affix = "", "Culling Strike during Effect", statOrder = { 977 }, level = 1, group = "FlaskCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2175889777] = { "Culling Strike during Effect" }, } }, - ["FlaskRemoveEffectWhenWardBreaksUnique1"] = { affix = "", "Effect is removed when Ward Breaks", statOrder = { 867 }, level = 1, group = "FlaskRemoveEffectWhenWardBreaks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3617672145] = { "Effect is removed when Ward Breaks" }, } }, - ["FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1"] = { affix = "", "Debilitate nearby Enemies for 2 Seconds when Effect ends", statOrder = { 862 }, level = 1, group = "FlaskDebilitateNearbyEnemiesWhenEffectEnds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [545593248] = { "Debilitate nearby Enemies for 2 Seconds when Effect ends" }, } }, - ["EnemiesKilledCountAsYoursUnique__1"] = { affix = "", "Nearby Enemies Killed by anyone count as being Killed by you instead", statOrder = { 7891 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2307982579] = { "Nearby Enemies Killed by anyone count as being Killed by you instead" }, } }, - ["MagicUtilityFlasksAlwaysApplyUnique__1"] = { affix = "", "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4421 }, level = 56, group = "MagicUtilityFlasksAlwaysApply", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388347909] = { "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } }, - ["MagicUtilityFlasksCannotUseUnique__1____"] = { affix = "", "Magic Utility Flasks cannot be Used", statOrder = { 4420 }, level = 1, group = "MagicUtilityFlasksCannotUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3986704288] = { "Magic Utility Flasks cannot be Used" }, } }, - ["MagicUtilityFlasksCannotRemoveUnique__1"] = { affix = "", "Magic Utility Flask Effects cannot be removed", statOrder = { 4423 }, level = 1, group = "MagicUtilityFlasksCannotRemove", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [344389721] = { "Magic Utility Flask Effects cannot be removed" }, } }, - ["MaximumElementalResistanceUnique__1__"] = { affix = "", "+(1-5)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+(1-5)% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__2"] = { affix = "", "-(6-4)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "-(6-4)% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__3"] = { affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all maximum Elemental Resistances" }, } }, - ["MaximumElementalResistanceUnique__4"] = { affix = "", "+(0-5)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+(0-5)% to all maximum Elemental Resistances" }, } }, - ["BaseBlockDamageTakenUnique__1___"] = { affix = "", "You take 20% of Damage from Blocked Hits", statOrder = { 4996 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, } }, - ["DoedresSkinLessCurseEffectUnique__1"] = { affix = "", "20% less Effect of your Curses", statOrder = { 2597 }, level = 1, group = "DoedresSkinLessCurseEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4106109768] = { "20% less Effect of your Curses" }, } }, - ["ChronomanceReservesNoMana"] = { affix = "", "Temporal Rift has no Reservation", statOrder = { 5780 }, level = 1, group = "ChronomanceReservesNoMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2139238642] = { "Temporal Rift has no Reservation" }, } }, - ["SupportGemsSocketedInOffHandAlsoSupportMainHandSkills"] = { affix = "", "Socketed Support Gems can also Support Skills from your Main Hand", statOrder = { 223 }, level = 1, group = "SupportGemsSocketedInOffHandAlsoSupportMainHandSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806627038] = { "Socketed Support Gems can also Support Skills from your Main Hand" }, } }, - ["SupportGemsSocketedInAmuletAlsoSupportBodySkills"] = { affix = "", "Socketed Support Gems can also Support Skills from Equipped Body Armour", statOrder = { 222 }, level = 90, group = "SupportGemsSocketedInAmuletAlsoSupportBodySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [591645420] = { "Socketed Support Gems can also Support Skills from Equipped Body Armour" }, } }, - ["FlaskLifeLeechIsInstantDuringEffect"] = { affix = "Pactbreaker's", "(80-90)% reduced Amount Recovered", "(200-250)% increased Recovery rate", "Life Leech is instant during Effect", statOrder = { 854, 855, 991 }, level = 78, group = "FlaskLifeLeechIsInstantDuringEffect", weightKey = { "life_flask", "default", "hybrid_flask", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(80-90)% reduced Amount Recovered" }, [173226756] = { "(200-250)% increased Recovery rate" }, [3038036647] = { "Life Leech is instant during Effect" }, } }, - ["FlaskLessDurationUnique1"] = { affix = "", "(40-60)% less Duration", statOrder = { 858 }, level = 1, group = "FlaskMoreDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-60)% less Duration" }, } }, - ["FlaskLessDurationUnique2"] = { affix = "", "(40-60)% less Duration", statOrder = { 858 }, level = 1, group = "FlaskMoreDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-60)% less Duration" }, } }, - ["FlaskEffectUniqueJewel_10"] = { affix = "", "Flasks applied to you have 20% reduced Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 20% reduced Effect" }, } }, - ["FlaskDurationUniqueJewel_____8"] = { affix = "", "50% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "FlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "50% increased Flask Effect Duration" }, } }, - ["FlaskChargesUniqueJewel___8"] = { affix = "", "20% reduced Flask Charges gained", statOrder = { 2183 }, level = 1, group = "FlaskChargesUnique", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "20% reduced Flask Charges gained" }, } }, - ["FlaskChargesFromKillUniqueJewel_9"] = { affix = "", "80% less Flask Charges gained from Kills", statOrder = { 10498 }, level = 1, group = "FlaskChargesFromKillUniqueJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3790386828] = { "80% less Flask Charges gained from Kills" }, } }, - ["FlaskChargeOnHitNonUniqueUniqueJewel____9"] = { affix = "", "Flasks gain 2 Charges when you hit a Non-Unique Enemy, no more than once per second", statOrder = { 6647 }, level = 1, group = "FlaskChargeOnHitNonUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [196260576] = { "Flasks gain 2 Charges when you hit a Non-Unique Enemy, no more than once per second" }, } }, - ["FlaskChargePerSecondInactiveUniqueJewel_10"] = { affix = "", "Flasks gain 3 Charges every 3 seconds while they are inactive", statOrder = { 6648 }, level = 1, group = "FlaskChargePerSecondInactive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3168399315] = { "Flasks gain 3 Charges every 3 seconds while they are inactive" }, } }, - ["ElementalResistanceHighestMaxResistanceUnique__1_"] = { affix = "", "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead", statOrder = { 6341 }, level = 1, group = "ElementalResistanceHighestMaxResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3082079953] = { "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead" }, } }, - ["EnergyShieldRechargeOnKillUnique__1__"] = { affix = "", "(10-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] = { "(10-20)% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, - ["LessRechargeRateSoullessEleganceUnique__1"] = { affix = "", "(30-40)% less Energy Shield Recharge Rate", statOrder = { 10509 }, level = 1, group = "LessRechargeRateSoullessElegance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3432301333] = { "(30-40)% less Energy Shield Recharge Rate" }, } }, - ["GlobalSkillGemLevelUnique__1"] = { affix = "", "+1 to Level of all Skill Gems", statOrder = { 4634 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } }, - ["GlobalSkillGemQualityUnique__1"] = { affix = "", "+(20-30)% to Quality of all Skill Gems", statOrder = { 4635 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(20-30)% to Quality of all Skill Gems" }, } }, - ["GlobalGemExperienceGainUnique__1"] = { affix = "", "(5-10)% increased Experience Gain of Gems", statOrder = { 1879 }, level = 1, group = "GlobalGemExperienceGain", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3808869043] = { "(5-10)% increased Experience Gain of Gems" }, } }, - ["ElementalSkillsTripleDamageUnique__1"] = { affix = "", "Deal Triple Damage with Elemental Skills", statOrder = { 6343 }, level = 85, group = "ElementalSkillsTripleDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [115695112] = { "Deal Triple Damage with Elemental Skills" }, } }, - ["SocketedGemsMoreDamageForSpellsCastUnique__1"] = { affix = "", "Socketed Projectile Spells deal 150% more Damage with Hits", statOrder = { 558 }, level = 1, group = "SocketedGemsMoreDamageForSpellsCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443457281] = { "Socketed Projectile Spells deal 150% more Damage with Hits" }, } }, - ["SocketedGemsAddedCooldownUnique__1__"] = { affix = "", "Socketed Projectile Spells have +4 seconds to Cooldown", statOrder = { 559 }, level = 1, group = "SocketedGemsAddedCooldown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [470459031] = { "Socketed Projectile Spells have +4 seconds to Cooldown" }, } }, - ["SocketedGemsLessDurationUnique__1"] = { affix = "", "Socketed Projectile Spells have 80% less Skill Effect Duration", statOrder = { 612 }, level = 1, group = "SocketedGemsLessDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3104895675] = { "Socketed Projectile Spells have 80% less Skill Effect Duration" }, } }, - ["AttributeModifiersAscendanceUnique__1_"] = { affix = "", "Modifiers to Attributes instead apply to Omniscience", statOrder = { 1187 }, level = 77, group = "AttributeModifiersAscendance", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1411347992] = { "Modifiers to Attributes instead apply to Omniscience" }, } }, - ["ElementalResistPerAscendanceUnique__1__"] = { affix = "", "+1% to all Elemental Resistances per 15 Omniscience", statOrder = { 1188 }, level = 1, group = "ElementalResistPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2569472704] = { "+1% to all Elemental Resistances per 15 Omniscience" }, } }, - ["ElementalPenPerAscendanceUnique__1"] = { affix = "", "Penetrate 1% Elemental Resistances per 15 Omniscience", statOrder = { 1189 }, level = 1, group = "ElementalPenPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2757041809] = { "Penetrate 1% Elemental Resistances per 15 Omniscience" }, } }, - ["AttributeRequirementsAscendanceUnique__1"] = { affix = "", "Attribute Requirements can be satisfied by (15-25)% of Omniscience", statOrder = { 1190 }, level = 1, group = "AttributeRequirementsAscendance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3024338155] = { "Attribute Requirements can be satisfied by (15-25)% of Omniscience" }, } }, - ["LeftRingCoveredInAshUnique__1_"] = { affix = "", "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them", statOrder = { 7980 }, level = 100, group = "LeftRingCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2533512212] = { "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them" }, } }, - ["RightRingCoveredInFrostUnique__1"] = { affix = "", "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them", statOrder = { 8007 }, level = 1, group = "RightRingCoveredInFrost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3536082205] = { "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them" }, } }, - ["LifeLossReservesLifeUnique__1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 2 seconds", statOrder = { 9922, 9922.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 2 seconds" }, } }, - ["AttackCorrosionOnHitChanceUnique__1"] = { affix = "", "(20-30)% chance to inflict Corrosion on Hit with Attacks", statOrder = { 4917 }, level = 1, group = "AttackCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2523122963] = { "(20-30)% chance to inflict Corrosion on Hit with Attacks" }, } }, - ["EnduranceChargeNoArmourUnique__1_"] = { affix = "", "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour", statOrder = { 6361 }, level = 1, group = "EnduranceChargeNoArmour", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3488208924] = { "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour" }, } }, - ["FrenzyChargeNoEvasionRatingUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating", statOrder = { 6673 }, level = 1, group = "FrenzyChargeNoEvasionRating", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [471924383] = { "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating" }, } }, - ["BowAttacksFrenzyChargesArrowsUnique__1"] = { affix = "", "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows", statOrder = { 1793 }, level = 1, group = "BowAttacksFrenzyChargesArrows", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2522975315] = { "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows" }, } }, - ["CriticalStrikeMultiplierFrenzyChargesUnique__1"] = { affix = "", "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge", statOrder = { 2054 }, level = 1, group = "CriticalStrikeMultiplierFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3375516056] = { "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge" }, } }, - ["FrenzyChargePerEnemyCritUnique__1"] = { affix = "", "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike", statOrder = { 6764 }, level = 1, group = "FrenzyChargePerEnemyCrit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1302845655] = { "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike" }, } }, - ["MoreMaximumReservedLifeUnique__1"] = { affix = "", "(20-30)% more Maximum Life", statOrder = { 10502 }, level = 1, group = "MoreMaximumReservedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2783958145] = { "(20-30)% more Maximum Life" }, } }, - ["PuzzlePieceCleansingFireUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flesh", statOrder = { 10500 }, level = 1, group = "PuzzlePieceCleansingFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1190333629] = { "Allocates 1 if you have the matching modifier on Forbidden Flesh" }, } }, - ["PuzzlePieceGreatTangleUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flame", statOrder = { 10501 }, level = 1, group = "PuzzlePieceGreatTangle", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2460506030] = { "Allocates 1 if you have the matching modifier on Forbidden Flame" }, } }, - ["GlobalNoEnergyShieldUnique__1"] = { affix = "", "Removes all Energy Shield", statOrder = { 2166 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1482608021] = { "Removes all Energy Shield" }, } }, - ["NearbyStationaryEnemiesGainVinesUnique__1"] = { affix = "", "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds", statOrder = { 4425 }, level = 1, group = "NearbyStationaryEnemiesGainVines", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3469279727] = { "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds" }, } }, - ["GainVinesOnCriticalStrikeUnique__1"] = { affix = "", "You gain 3 Grasping Vines when you take a Critical Strike", statOrder = { 4424 }, level = 1, group = "GainVinesOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [375932027] = { "You gain 3 Grasping Vines when you take a Critical Strike" }, } }, - ["AllDamagePoisonsGraspingVinesUnique__1"] = { affix = "", "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines", statOrder = { 4426 }, level = 1, group = "AllDamagePoisonsGraspingVines", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3190526553] = { "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines" }, } }, - ["ReducedCriticalDamageTakenPoisonUnique__1"] = { affix = "", "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies", statOrder = { 4428 }, level = 1, group = "ReducedCriticalDamageTakenPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2070361501] = { "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies" }, } }, - ["PhysicalHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Physical Damage taken as Fire Damage", statOrder = { 9670 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "(10-20)% of Physical Damage taken as Fire Damage" }, } }, - ["PhysicalHitAndDoTDamageTakenAsFireUnique__2"] = { affix = "", "40% of Physical Damage taken as Fire Damage", statOrder = { 9670 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "40% of Physical Damage taken as Fire Damage" }, } }, - ["ColdHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Cold Damage taken as Fire Damage", statOrder = { 5825 }, level = 1, group = "ColdHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1642347505] = { "(10-20)% of Cold Damage taken as Fire Damage" }, } }, - ["LightningHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Lightning Damage taken as Fire Damage", statOrder = { 7460 }, level = 1, group = "LightningHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1244494473] = { "(10-20)% of Lightning Damage taken as Fire Damage" }, } }, - ["ScorchOnEnemiesOnBlockUnique__1"] = { affix = "", "Scorch Enemies in Close Range when you Block", statOrder = { 9964 }, level = 1, group = "ScorchOnEnemiesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [41178696] = { "Scorch Enemies in Close Range when you Block" }, } }, - ["AttackBlockPerFireDamageTakenUnique__1"] = { affix = "", "-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently", statOrder = { 4836 }, level = 1, group = "AttackBlockPerFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [8517868] = { "-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently" }, } }, - ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite", statOrder = { 7958, 7972 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2298311736] = { "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite" }, [3802517517] = { "" }, [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, - ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken does not bypass Energy Shield", statOrder = { 5002 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1865744989] = { "33% of Chaos Damage taken does not bypass Energy Shield" }, } }, - ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 644 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3379724776] = { "33% of Non-Chaos 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 = { 7978 }, 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 Strikes inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7948 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Strikes inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, - ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 583 }, 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 Exerting the Attack", statOrder = { 9978, 9978.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Exerting the Attack" }, } }, - ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Exerting them", statOrder = { 10495 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Exerting them" }, } }, - ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage with Hits can Chill", statOrder = { 2860 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage with Hits can Chill" }, } }, - ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage Taken from Hits can Chill you", statOrder = { 2863 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244239777] = { "All Damage Taken from Hits can Chill you" }, } }, - ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4630 }, 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 = { 5779 }, 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 have Damage taken increased by Chill Effect", statOrder = { 6370 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits have Damage taken increased by Chill Effect" }, } }, - ["EnemiesChilledLessDamageDealtUnique__1"] = { affix = "", "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect", statOrder = { 6369 }, level = 1, group = "EnemiesChilledLessDamageDealt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3594661200] = { "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect" }, } }, - ["GainSoulEaterStackOnHitUnique__1"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6824 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds" }, } }, - ["GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1"] = { affix = "", "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon", statOrder = { 7937 }, level = 1, group = "GainSoulEaterStackOnRareOrUniqueKillWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2859483755] = { "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon" }, } }, - ["SoulEaterStackCountUnique__1"] = { affix = "", "+(-10-10) to maximum number of Eaten Souls", statOrder = { 7265 }, level = 1, group = "SoulEaterStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1915836277] = { "+(-10-10) to maximum number of Eaten Souls" }, } }, - ["LifeRegenerationNotAppliedUnique__1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7391 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, - ["RageRegenerationPerLifeRegenerationUnique__1"] = { affix = "", "Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration", "Does not delay Inherent Loss of Rage", statOrder = { 9892, 9892.1 }, level = 1, group = "RageRegenerationPerLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4103111421] = { "Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration", "Does not delay Inherent Loss of Rage" }, } }, - ["EnduringCrySkillUnique__1"] = { affix = "", "Grants Level 10 Enduring Cry Skill", statOrder = { 702 }, level = 1, group = "EnduringCrySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1031644844] = { "Grants Level 10 Enduring Cry Skill" }, } }, - ["NearbyEnemiesAreBlindedUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 10, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, - ["SpellsDoubleDamageChanceUnique__1"] = { affix = "", "Spells have a 20% chance to deal Double Damage", statOrder = { 10137 }, level = 1, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a 20% chance to deal Double Damage" }, } }, - ["CoverInAshOnHitUnique__1"] = { affix = "", "10% chance to Cover Enemies in Ash on Hit", statOrder = { 5893 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324460247] = { "10% chance to Cover Enemies in Ash on Hit" }, } }, - ["GrantsTouchOfFireUnique__1"] = { affix = "", "Grants Level 20 Approaching Flames Skill", statOrder = { 722 }, level = 1, group = "GrantsTouchOfFireSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1943415243] = { "Grants Level 20 Approaching Flames Skill" }, } }, - ["GainAdrenalineFireTouchedGainUnique__1"] = { affix = "", "Gain Adrenaline when you become Flame-Touched", statOrder = { 6718 }, level = 1, group = "GainAdrenalineFireTouchedGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [349619704] = { "Gain Adrenaline when you become Flame-Touched" }, } }, - ["LoseAdrenalineFireTouchedLossUnique__1"] = { affix = "", "Lose Adrenaline when you cease to be Flame-Touched", statOrder = { 8134 }, level = 1, group = "LoseAdrenalineFireTouchedLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [138579627] = { "Lose Adrenaline when you cease to be Flame-Touched" }, } }, - ["FireDamageTakenFireTouchedUnique__1"] = { affix = "", "Take 6000 Fire Damage per Second while Flame-Touched", statOrder = { 6573 }, level = 1, group = "FireDamageTakenFireTouched", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3511992942] = { "Take 6000 Fire Damage per Second while Flame-Touched" }, } }, - ["HasOnslaughtUnique__1"] = { affix = "", "Onslaught", statOrder = { 3597 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, - ["MinionPhysicalConvertToColdUnique__1"] = { affix = "", "Minions convert 50% of Physical Damage to Cold Damage", statOrder = { 1958 }, level = 1, group = "MinionPhysicalConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264042266] = { "Minions convert 50% of Physical Damage to Cold Damage" }, } }, - ["MinionOnlyDealColdDamageUnique__1"] = { affix = "", "Minions deal no Non-Cold Damage", statOrder = { 9300 }, level = 1, group = "MinionOnlyDealColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [935592011] = { "Minions deal no Non-Cold Damage" }, } }, - ["LifeRegenerationFlatOnLowLifeUnique__1"] = { affix = "", "Regenerate 100 Life per Second while on Low Life", statOrder = { 7429 }, level = 1, group = "LifeRegenerationFlatOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2161482953] = { "Regenerate 100 Life per Second while on Low Life" }, } }, - ["TouchedByTormentedSpiritsUnique__1"] = { affix = "", "You can be Touched by Tormented Spirits", statOrder = { 9678 }, level = 1, group = "TouchedByTormentedSpirits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4197792189] = { "You can be Touched by Tormented Spirits" }, } }, - ["QuicksilverFlaskAppliesToAlliesUnique__1"] = { affix = "", "Quicksilver Flasks you Use also apply to nearby Allies", statOrder = { 9781 }, level = 1, group = "QuicksilverFlaskAppliesToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [699756626] = { "Quicksilver Flasks you Use also apply to nearby Allies" }, } }, - ["ColdAddedAsFireChilledEnemyUnique__1"] = { affix = "", "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy", statOrder = { 5802 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086896309] = { "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy" }, } }, - ["ColdAddedAsFireFrozenEnemyUnique__1"] = { affix = "", "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5803 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1383929411] = { "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies" }, } }, - ["LightningAddedAsColdShockedEnemyUnique__1"] = { affix = "", "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy", statOrder = { 7447 }, level = 1, group = "LightningAddedAsColdShockedEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13172430] = { "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy" }, } }, - ["DoubleDamageWith200StrengthUnique__1"] = { affix = "", "10% chance to deal Double Damage while you have at least 200 Strength", statOrder = { 5657 }, level = 1, group = "DoubleDamageWith200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1535606605] = { "10% chance to deal Double Damage while you have at least 200 Strength" }, } }, - ["TripleDamageWith400StrengthUnique__1"] = { affix = "", "5% chance to deal Triple Damage while you have at least 400 Strength", statOrder = { 5669 }, level = 1, group = "TripleDamageWith400Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147155654] = { "5% chance to deal Triple Damage while you have at least 400 Strength" }, } }, - ["BlockChanceVersusCursedEnemiesUnique__1"] = { affix = "", "+20% Chance to Block Attack Damage from Cursed Enemies", statOrder = { 5226 }, level = 1, group = "BlockChanceVersusCursedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3304203764] = { "+20% Chance to Block Attack Damage from Cursed Enemies" }, } }, - ["ApplyDecayOnCurseUnique__1"] = { affix = "", "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds", statOrder = { 6139 }, level = 1, group = "ApplyDecayOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [773846741] = { "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds" }, } }, - ["FrenzyChargeOnHitBlindedUnique__1"] = { affix = "", "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded", statOrder = { 6758 }, level = 1, group = "FrenzyChargeOnHitBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2478268100] = { "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded" }, } }, - ["RecoverLifeOnSuppressUnique__1"] = { affix = "", "Recover (100-200) Life when you Suppress Spell Damage", statOrder = { 9850 }, level = 1, group = "RecoverLifeOnSuppress", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1807705940] = { "Recover (100-200) Life when you Suppress Spell Damage" }, } }, - ["PhasingOnLowLifeUnique__1"] = { affix = "", "You have Phasing while on Low Life", statOrder = { 6801 }, level = 1, group = "PhasingOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [23466649] = { "You have Phasing while on Low Life" }, } }, - ["ElusiveOnLowLifeUnique__1"] = { affix = "", "Gain Elusive on reaching Low Life", statOrder = { 6745 }, level = 1, group = "ElusiveOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2868692131] = { "Gain Elusive on reaching Low Life" }, } }, - ["KnockbackDistanceUnique__1"] = { affix = "", "100% increased Knockback Distance", statOrder = { 2002 }, level = 1, group = "KnockbackDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [565784293] = { "100% increased Knockback Distance" }, } }, - ["StrikeSkillKnockbackUnique__1"] = { affix = "", "Melee Hits with Strike Skills always Knockback", statOrder = { 10260 }, level = 1, group = "StrikeSkillKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1737583880] = { "Melee Hits with Strike Skills always Knockback" }, } }, - ["MeleeSplashUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1168 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, - ["AdrenalineOnKillUnique__1"] = { affix = "", "Gain Adrenaline for (1-3) second on Kill", statOrder = { 6715 }, level = 38, group = "AdrenalineOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4145689649] = { "Gain Adrenaline for (1-3) second on Kill" }, } }, - ["LifeCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Life Cost equal to 100% of Base Mana Cost", statOrder = { 5048 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills gain a Base Life Cost equal to 100% of Base Mana Cost" }, } }, - ["EnergyShieldCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost", statOrder = { 5047 }, level = 1, group = "EnergyShieldCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4013794060] = { "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost" }, } }, - ["BowAttacksCullingStrikeUnique__1"] = { affix = "", "Bow Attacks have Culling Strike", statOrder = { 5263 }, level = 1, group = "BowAttacksCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4217693429] = { "Bow Attacks have Culling Strike" }, } }, - ["MovementVelocityPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, 1% increased Movement Speed", statOrder = { 9411 }, level = 1, group = "MovementVelocityPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [504462346] = { "For each nearby corpse, 1% increased Movement Speed" }, } }, - ["FlatLifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 8 Life per second", statOrder = { 7399 }, level = 1, group = "FlatLifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2500585555] = { "For each nearby corpse, Regenerate 8 Life per second" }, } }, - ["WeaponAddedLightningDamagePerEnergyShieldUnique__1"] = { affix = "", "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield", statOrder = { 6468 }, level = 1, group = "WeaponAddedLightningDamagePerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [973269941] = { "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield" }, } }, - ["SkillsExertAttacksDoNotCountChanceUnique__1"] = { affix = "", "Skills which Exert an Attack have (20-40)% chance to not count that Attack", statOrder = { 5541 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Exert an Attack have (20-40)% chance to not count that Attack" }, } }, - ["CannotHaveNonSpectreMinionsUnique__1"] = { affix = "", "You cannot have Non-Spectre Minions", statOrder = { 10659 }, level = 1, group = "CannotHaveNonSpectreMinions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2836980154] = { "You cannot have Non-Spectre Minions" }, } }, - ["MinimumChargesEqualToMaximumWhileStationaryUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "MinimumChargesEqualToMaximumWhileStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, - ["ThrowTrapsInCircleUnique__1"] = { affix = "", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10510 }, level = 1, group = "ThrowTrapsInCircleSunblast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2727188901] = { "Traps from Skills are thrown randomly around targeted location" }, } }, - ["TrapsCannotBeTriggeredByEnemiesUnique__1"] = { affix = "", "Traps cannot be triggered by Enemies", statOrder = { 10422 }, level = 1, group = "TrapsCannotBeTriggeredByEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1861759600] = { "Traps cannot be triggered by Enemies" }, } }, - ["AdditionalTrapsThrownUnique__1"] = { affix = "", "Skills which Throw Traps throw up to 2 additional Traps", statOrder = { 9529 }, level = 1, group = "AdditionalTrapsThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 2 additional Traps" }, } }, - ["FreezeEnemiesWhenHitChanceUnique__1"] = { affix = "", "20% chance to Freeze Enemies for 1 second when they Hit you", statOrder = { 5679 }, level = 1, group = "FreezeEnemiesWhenHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2168861013] = { "20% chance to Freeze Enemies for 1 second when they Hit you" }, } }, - ["AddedChaosDamagePerCurseUnique__1"] = { affix = "", "Adds 37 to 71 Chaos Damage for each Curse on the Enemy", statOrder = { 9226 }, level = 1, group = "AddedChaosDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4294344579] = { "Adds 37 to 71 Chaos Damage for each Curse on the Enemy" }, } }, - ["GolemsAddedPhysicalDamageUnique__1"] = { affix = "", "Golems have (96-120) to (132-160) Added Attack Physical Damage", statOrder = { 6893 }, level = 1, group = "GolemsAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1417394145] = { "Golems have (96-120) to (132-160) Added Attack Physical Damage" }, } }, - ["GainMaximumEnduranceChargesWhenCritUnique__1"] = { affix = "", "Gain up to maximum Endurance Charges when you take a Critical Strike", statOrder = { 6771 }, level = 1, group = "GainMaximumEnduranceChargesWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4080206249] = { "Gain up to maximum Endurance Charges when you take a Critical Strike" }, } }, - ["ShareMaximumEnduranceChargesPartyUnique__1"] = { affix = "", "Your nearby party members maximum Endurance Charges is equal to yours", statOrder = { 9466 }, level = 1, group = "ShareMaximumEnduranceChargesParty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [598215770] = { "Your nearby party members maximum Endurance Charges is equal to yours" }, } }, - ["SkeletonWarriorsPermanentMinionUnique__1"] = { affix = "", "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior", statOrder = { 10052, 10052.1 }, level = 1, group = "SkeletonWarriorsPermanentMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1021552211] = { "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior" }, } }, - ["ConsecratedGroundStationarySTRHighestUnique__1"] = { affix = "", "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute", statOrder = { 5857, 5857.1 }, level = 1, group = "ConsecratedGroundStationarySTRHighest", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1196333117] = { "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute" }, } }, - ["ProfaneGroundCriticalStrikeINTHighestUnique__1"] = { affix = "", "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute", statOrder = { 9726, 9726.1 }, level = 1, group = "ProfaneGroundCriticalStrikeINTHighest", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2047846165] = { "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute" }, } }, - ["ConsecratedGroundLingersUnique__1"] = { affix = "", "Effects of Consecrated Ground you create Linger for 4 seconds", statOrder = { 10690 }, level = 1, group = "ConsecratedGroundLingers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 4 seconds" }, } }, - ["ProfaneGroundLingersUnique__1"] = { affix = "", "Effects of Profane Ground you create Linger for 4 seconds", statOrder = { 10695 }, level = 1, group = "ProfaneGroundLingers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636871122] = { "Effects of Profane Ground you create Linger for 4 seconds" }, } }, - ["RandomProjectileDirectionUnique__1"] = { affix = "", "Projectiles are fired in random directions", statOrder = { 9828 }, level = 60, group = "RandomProjectileDirection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159765624] = { "Projectiles are fired in random directions" }, } }, - ["ReturningProjectilesUnique__1"] = { affix = "", "Projectiles Return to you", statOrder = { 2823 }, level = 1, group = "ReturningProjectilesNoHitObject", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4015038379] = { "Projectiles Return to you" }, } }, - ["LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1"] = { affix = "", "When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead", statOrder = { 10503 }, level = 75, group = "LifeLossToPreventDuringFlaskEffectToLoseOverTime", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [41860024] = { "When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead" }, } }, - ["EnemyExplosionRandomElementFlaskEffectUnique__1"] = { affix = "", "Enemies you Kill during Effect have a (20-30)% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element", statOrder = { 1021 }, level = 71, group = "EnemyExplosionRandomElementFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2165415361] = { "Enemies you Kill during Effect have a (20-30)% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element" }, } }, - ["CastSpeedAppliesToAttackSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed apply to Attack Speed", statOrder = { 10494 }, level = 1, group = "CastSpeedAppliesToAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4126447694] = { "Increases and Reductions to Cast Speed apply to Attack Speed" }, } }, - ["SpellImpaleOnCritChanceUnique__1"] = { affix = "", "Critical Strikes with Spells inflict Impale", statOrder = { 10162 }, level = 1, group = "SpellImpaleOnCritChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4084476257] = { "Critical Strikes with Spells inflict Impale" }, } }, - ["SpellImpaleEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Impales inflicted with Spells", statOrder = { 7246 }, level = 1, group = "SpellImpaleEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1480595847] = { "(30-50)% increased Effect of Impales inflicted with Spells" }, } }, - ["YouCannotImpaleTheImpaledUnique_1UNUSED"] = { affix = "", "[DNT] Impaled Enemies Cannot be Impaled", statOrder = { 10660 }, level = 1, group = "ImpaledEnemiesCannotBeImpaled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4294017425] = { "[DNT] Impaled Enemies Cannot be Impaled" }, } }, - ["HitsCannotInflictMoreThanOneImpale_1UNUSED"] = { affix = "", "Your Hits cannot inflict more than 1 Impale", statOrder = { 7161 }, level = 100, group = "CannotInflictMoreThanOneImpale", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [452960025] = { "Your Hits cannot inflict more than 1 Impale" }, } }, - ["ImpalesInflictedLastAdditionalHitsUnique_1UNUSED"] = { affix = "", "Impales you inflict last (3-6) additional Hits", statOrder = { 7256 }, level = 1, group = "ImpaleLastsForExtraHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3425951133] = { "Impales you inflict last (3-6) additional Hits" }, } }, - ["ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1"] = { affix = "", "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit", statOrder = { 7259 }, level = 100, group = "ChanceMeleeHitsDontConsumeStrongestImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2136537914] = { "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit" }, } }, - ["ImpaleDurationUnique_1"] = { affix = "", "(40-50)% less Impale Duration", statOrder = { 8014 }, level = 1, group = "ImpaledDebuffDurationFromWoeSpike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961864874] = { "(40-50)% less Impale Duration" }, } }, - ["ChanceMeleeHitsDontConsumeImpalesUnique_1UNUSED"] = { affix = "", "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit", statOrder = { 7258 }, level = 1, group = "ChanceMeleeHitsDontConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2314992402] = { "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit" }, } }, - ["AncestorTotemBuffLingersUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10770 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["OneAncestorTotemBuffUnique__1"] = { affix = "", "Socketed Slam Gems are Supported by Level 25 Earthbreaker", statOrder = { 262 }, level = 1, group = "OneAncestorTotemBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [940684417] = { "Socketed Slam Gems are Supported by Level 25 Earthbreaker" }, } }, - ["DamageTakenFromTotemLifeBeforePlayerUnique__1"] = { affix = "", "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6094 }, level = 1, group = "DamageTakenFromTotemLifeBeforePlayer", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2762445213] = { "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, - ["ElementalDamageReductionChaosResistUnique__1"] = { affix = "", "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance", statOrder = { 4065 }, level = 65, group = "ElementalDamageReductionChaosResist", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3990082744] = { "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance" }, } }, - ["SelfIgniteDurationAllElementalAilmentsUnique__1"] = { affix = "", "Modifiers to Ignite Duration on you apply to all Elemental Ailments", statOrder = { 6933 }, level = 1, group = "SelfIgniteDurationAllElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2845551354] = { "Modifiers to Ignite Duration on you apply to all Elemental Ailments" }, } }, - ["ShockAvoidanceAllElementalAilmentsUnique__1"] = { affix = "", "Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments", statOrder = { 6931 }, level = 1, group = "ShockAvoidanceAllElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2543019543] = { "Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments" }, } }, - ["CurseLimitMaximumPowerChargesUnique__1"] = { affix = "", "Your Curse Limit is equal to your maximum Power Charges", statOrder = { 6932 }, level = 1, group = "CurseLimitMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [973000407] = { "Your Curse Limit is equal to your maximum Power Charges" }, } }, - ["PowerChargeOnCurseUnique__1"] = { affix = "", "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell", statOrder = { 6805 }, level = 1, group = "PowerChargeOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [322835727] = { "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell" }, } }, - ["ImmuneToCursesRemainingDurationUnique__1"] = { affix = "", "When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to", "Curses for remaining Hex Duration", statOrder = { 7221, 7221.1 }, level = 1, group = "ImmuneToCursesRemainingDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1406092431] = { "When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to", "Curses for remaining Hex Duration" }, } }, - ["SpellCritChanceEqualsWeaponCritChanceUnique__1"] = { affix = "", "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon", statOrder = { 5050 }, level = 1, group = "SpellCritChanceEqualsWeaponCritChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2560911401] = { "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon" }, } }, - ["AttacksCannotCritUnique__1"] = { affix = "", "Cannot deal Critical Strikes with Attacks", statOrder = { 5430 }, level = 1, group = "AttacksCannotCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3223376951] = { "Cannot deal Critical Strikes with Attacks" }, } }, - ["CursedEnemiesCannotInflictElementalAilmentsUnique__1"] = { affix = "", "Cursed Enemies cannot inflict Elemental Ailments on You", statOrder = { 5442 }, level = 30, group = "CursedEnemiesCannotInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2643613764] = { "Cursed Enemies cannot inflict Elemental Ailments on You" }, } }, - ["AvoidInterruptionWhileCastingUnique__1"] = { affix = "", "Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1916706958] = { "Ignore Stuns while Casting" }, } }, - ["MaximumCritChanceIs50Unique__1"] = { affix = "", "Maximum Critical Strike Chance is 50%", statOrder = { 9130 }, level = 1, group = "MaximumCritChanceIs50", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1463929958] = { "Maximum Critical Strike Chance is 50%" }, } }, - ["DealNoElementalPhysicalDamageUnique__1"] = { affix = "", "Deal no Physical or Elemental Damage", statOrder = { 6143 }, level = 1, group = "DealNoElementalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4157542794] = { "Deal no Physical or Elemental Damage" }, } }, - ["TemporalChainsCooldownRecoveryUnique__1"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds", statOrder = { 5869 }, level = 1, group = "TemporalChainsCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2954796309] = { "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds" }, } }, - ["TemporalChainsCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds", statOrder = { 4526 }, level = 1, group = "TemporalChainsCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3616500790] = { "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds" }, } }, - ["DespairWitherOnHitUnique__1"] = { affix = "", "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds", statOrder = { 7283 }, level = 1, group = "DespairWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1904031052] = { "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds" }, } }, - ["DespairImmuneToCursesUnique__1"] = { affix = "", "Immune to Curses if you've cast Despair in the past 10 seconds", statOrder = { 7220 }, level = 1, group = "DespairImmuneToCurses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2773026887] = { "Immune to Curses if you've cast Despair in the past 10 seconds" }, } }, - ["ElementalWeaknessPhysicalAsRandomElementUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 6802 }, level = 1, group = "ElementalWeaknessPhysicalAsRandomElement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4281949537] = { "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds" }, } }, - ["ElementalWeaknessImmuneToExposureUnique__1"] = { affix = "", "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 7229 }, level = 1, group = "ElementalWeaknessImmuneToExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2921954092] = { "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds" }, } }, - ["EnfeebleCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds", statOrder = { 5975 }, level = 1, group = "EnfeebleCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2379274646] = { "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds" }, } }, - ["EnfeebleNoExtraCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds", statOrder = { 10353 }, level = 1, group = "EnfeebleNoExtraCritDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077357269] = { "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds" }, } }, - ["ConductivityUnaffectedByShockUnique__1"] = { affix = "", "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds", statOrder = { 10479 }, level = 1, group = "ConductivityUnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517037025] = { "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds" }, } }, - ["ConductivityLightningExposureOnHitUnique__1"] = { affix = "", "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds", statOrder = { 7280 }, level = 1, group = "ConductivityLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3339663313] = { "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds" }, } }, - ["FlammabilityUnaffectedByIgniteUnique__1"] = { affix = "", "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds", statOrder = { 10476 }, level = 1, group = "FlammabilityUnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40907696] = { "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds" }, } }, - ["FlammabilityFireExposureOnHitUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds", statOrder = { 7275 }, level = 1, group = "FlammabilityFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3259812992] = { "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds" }, } }, - ["FrostbiteUnaffectedByFreezeUnique__1"] = { affix = "", "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds", statOrder = { 10472 }, level = 1, group = "FrostbiteUnaffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4194606073] = { "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds" }, } }, - ["FrostbiteColdExposureOnHitUnique__1"] = { affix = "", "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds", statOrder = { 7273 }, level = 1, group = "FrostbiteColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1168138239] = { "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds" }, } }, - ["PunishmentImmuneToReflectedDamageUnique__1"] = { affix = "", "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds", statOrder = { 7237 }, level = 1, group = "PunishmentImmuneToReflectedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2713909980] = { "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds" }, } }, - ["PunishmentIntimidateOnHitUnique__1"] = { affix = "", "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds", statOrder = { 7296 }, level = 1, group = "PunishmentIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [91505809] = { "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds" }, } }, - ["VulnerabilityUnaffectedByBleedUnique__1"] = { affix = "", "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds", statOrder = { 10453 }, level = 1, group = "VulnerabilityUnaffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [971937289] = { "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds" }, } }, - ["VulnerabilityDoubleDamageUnique__1"] = { affix = "", "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds", statOrder = { 5667 }, level = 1, group = "VulnerabilityDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304988974] = { "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds" }, } }, - ["NearbyEnemyZeroChaosDamageResistanceUnique__1"] = { affix = "", "Nearby Enemies' Chaos Resistance is 0", statOrder = { 7918 }, level = 65, group = "NearbyEnemyZeroChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, [663080464] = { "Nearby Enemies' Chaos Resistance is 0" }, } }, - ["AllElementalDamageConvertedToChaosUnique__1"] = { affix = "", "All Elemental Damage Converted to Chaos Damage", statOrder = { 5868 }, level = 65, group = "ConvertAllElementalToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [2423544033] = { "All Elemental Damage Converted to Chaos Damage" }, } }, - ["NearbyEnemyReservesLifeUnique__1"] = { affix = "", "Nearby Enemy Monsters have at least 8% of Life Reserved", statOrder = { 7916 }, level = 1, group = "NearbyEnemyReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2492660287] = { "Reserves 8% of Life" }, [1063263585] = { "Nearby Enemy Monsters have at least 8% of Life Reserved" }, } }, - ["ChaosDamageOverTimeHealsLeechLifeUnique__1"] = { affix = "", "Taking Chaos Damage over Time heals you instead while Leeching Life", statOrder = { 5732 }, level = 53, group = "ChaosDamageOverTimeHealsLeechLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1971757986] = { "Taking Chaos Damage over Time heals you instead while Leeching Life" }, } }, - ["ModifiersToSuppressionApplyToAilmentAvoidUnique__1"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value", statOrder = { 10183 }, level = 1, group = "ModifiersToSuppressionApplyToAilmentAvoid", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2401345409] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value" }, } }, - ["ShockEffectLeechingESUnique__1"] = { affix = "", "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield", statOrder = { 10007 }, level = 1, group = "ShockEffectLeechingES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3578946428] = { "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield" }, } }, - ["ChillEffectLeechingManaUnique__1"] = { affix = "", "(60-100)% increased Effect of Chills you inflict while Leeching Mana", statOrder = { 5767 }, level = 1, group = "ChillEffectLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [898270877] = { "(60-100)% increased Effect of Chills you inflict while Leeching Mana" }, } }, - ["UnaffectedByShockLeechingESUnique__1"] = { affix = "", "Unaffected by Shock while Leeching Energy Shield", statOrder = { 10481 }, level = 1, group = "UnaffectedByShockLeechingES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4102393882] = { "Unaffected by Shock while Leeching Energy Shield" }, } }, - ["UnaffectedByChillLeechingManaUnique__1"] = { affix = "", "Unaffected by Chill while Leeching Mana", statOrder = { 10461 }, level = 1, group = "UnaffectedByChillLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4014328139] = { "Unaffected by Chill while Leeching Mana" }, } }, - ["QuiverModifierEffectUnique__1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9782 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, - ["LifeRegenerationPercentPerAilmentUnique__1"] = { affix = "", "Regenerate 2% of Life per second for each different Ailment affecting you", statOrder = { 7400 }, level = 18, group = "LifeRegenerationPercentPerAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3491639130] = { "Regenerate 2% of Life per second for each different Ailment affecting you" }, } }, - ["AdrenalineOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5683, 5683.1 }, level = 1, group = "AdrenalineOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [414749123] = { "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, - ["OnslaughtOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5692, 5692.1 }, level = 1, group = "OnslaughtOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3106724907] = { "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, - ["CannotBeStunnedSuppressedDamageUnique__1"] = { affix = "", "Cannot be Stunned by Suppressed Spell Damage", statOrder = { 5418 }, level = 1, group = "CannotBeStunnedSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2916280114] = { "Cannot be Stunned by Suppressed Spell Damage" }, } }, - ["DebilitateEnemiesSuppressedDamageUnique__1"] = { affix = "", "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage", statOrder = { 6148 }, level = 1, group = "DebilitateEnemiesSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3019649166] = { "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage" }, } }, - ["StunningHitsRecoverLifeUnique__1"] = { affix = "", "(20-30)% of Damage taken from Stunning Hits is Recovered as Life", statOrder = { 6113 }, level = 1, group = "StunningHitsRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3913936991] = { "(20-30)% of Damage taken from Stunning Hits is Recovered as Life" }, } }, - ["StunningHitsRecoverEnergyShieldUnique__1"] = { affix = "", "50% of Damage taken from Stunning Hits is Recovered as Energy Shield", statOrder = { 6112 }, level = 1, group = "StunningHitsRecoverEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [763940918] = { "50% of Damage taken from Stunning Hits is Recovered as Energy Shield" }, } }, - ["ArmourAppliesToChaosDamageUnique__1"] = { affix = "", "Armour also applies to Chaos Damage taken from Hits", statOrder = { 4988 }, level = 1, group = "ArmourAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4186532642] = { "Armour also applies to Chaos Damage taken from Hits" }, } }, - ["PhysicalDamageBypassesEnergyShieldUnique__1"] = { affix = "", "Physical Damage taken bypasses Energy Shield", statOrder = { 9608 }, level = 1, group = "PhysicalDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2649513539] = { "Physical Damage taken bypasses Energy Shield" }, } }, - ["SuppressedDamageBypassEnergyShieldUnique_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield", statOrder = { 1147 }, level = 80, group = "SuppressedDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [247456045] = { "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield" }, } }, - ["SuppressedDamageRecoupedAsEnergyShield_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield", statOrder = { 1148 }, level = 1, group = "SuppressedSpellDamageRecoupedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1993646143] = { "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield" }, } }, - ["RecoverLifeAlteratingUnique__1"] = { affix = "", "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds", statOrder = { 10507, 10507.1, 10507.2 }, level = 62, group = "RecoverLifeAlterating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3938394827] = { "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds" }, } }, - ["LinkLoseNoExperienceUnique__1"] = { affix = "", "Lose no Experience when you die because a Linked target died", statOrder = { 7493 }, level = 55, group = "LinkLoseNoExperience", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738821856] = { "Lose no Experience when you die because a Linked target died" }, } }, - ["LinkTargetCannotDieUnique__1"] = { affix = "", "Linked Targets Cannot Die for 2 seconds after you Die", statOrder = { 7492 }, level = 1, group = "LinkTargetCannotDie", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3251211004] = { "Linked Targets Cannot Die for 2 seconds after you Die" }, } }, - ["LinkSkillCastSpeedUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Cast Speed", statOrder = { 7488 }, level = 1, group = "LinkSkillCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2597985144] = { "Link Skills have (10-15)% increased Cast Speed" }, } }, - ["LinkSkillEffectDurationUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Skill Effect Duration", statOrder = { 7490 }, level = 1, group = "LinkSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1214762172] = { "Link Skills have (10-15)% increased Skill Effect Duration" }, } }, - ["LinkSkillFlaskEffectsUnique__1"] = { affix = "", "Non-Unique Utility Flasks you Use apply to Linked Targets", statOrder = { 6646 }, level = 50, group = "LinkSkillFlaskEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [865273657] = { "Non-Unique Utility Flasks you Use apply to Linked Targets" }, } }, - ["MinionWitherOnHitUnique__1"] = { affix = "", "Minions have 60% chance to inflict Withered on Hit", statOrder = { 9360 }, level = 1, group = "MinionWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1387367793] = { "Minions have 60% chance to inflict Withered on Hit" }, } }, - ["MinionCriticalStrikeMultiplierAgainstWitheredUnique__1"] = { affix = "", "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy", statOrder = { 9361 }, level = 1, group = "MinionCriticalStrikeMultiplierAgainstWithered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1494965559] = { "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy" }, } }, - ["BleedingExpiresSlowerWhileMovingUnique__1"] = { affix = "", "Bleeding on you expires 75% slower while Moving", statOrder = { 5109 }, level = 1, group = "BleedingExpiresSlowerWhileMoving", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [391460978] = { "Bleeding on you expires 75% slower while Moving" }, } }, - ["CannotBeStunnedWhileBleedingUnique__1"] = { affix = "", "Cannot be Stunned while Bleeding", statOrder = { 5424 }, level = 1, group = "CannotBeStunnedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2638865425] = { "Cannot be Stunned while Bleeding" }, } }, - ["CannotBePoisonedWhileBleedingUnique__1"] = { affix = "", "Cannot be Poisoned while Bleeding", statOrder = { 5410 }, level = 1, group = "CannotBePoisonedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2784102684] = { "Cannot be Poisoned while Bleeding" }, } }, - ["ExertedAttackDamageUnique__1"] = { affix = "", "Exerted Attacks deal 200% increased Damage", statOrder = { 6357 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal 200% increased Damage" }, } }, - ["ExertedAttackKnockbackChanceUnique__1"] = { affix = "", "Exerted Attacks Knock Enemies Back on Hit", statOrder = { 6507 }, level = 1, group = "ExertedAttackKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1634061592] = { "Exerted Attacks Knock Enemies Back on Hit" }, } }, - ["LocalChanceToBleedUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["AlwaysPierceBurningEnemiesUnique__1"] = { affix = "", "Projectiles Pierce all Burning Enemies", statOrder = { 4655 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Burning Enemies" }, } }, - ["ArrowAddedFireDamagePerEnemyPiercedUnique__1"] = { affix = "", "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced", statOrder = { 4779 }, level = 1, group = "ArrowAddedFireDamagePerEnemyPierced", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3726936056] = { "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced" }, } }, - ["MinionLifeIncreasedByOvercappedFireResistanceUnique__1"] = { affix = "", "Minion Life is increased by their Overcapped Fire Resistance", statOrder = { 9312 }, level = 1, group = "MinionLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1586164348] = { "Minion Life is increased by their Overcapped Fire Resistance" }, } }, - ["SupportedByInfernalLegionUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Infernal Legion", statOrder = { 315 }, level = 1, group = "SupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2201102274] = { "Socketed Gems are Supported by Level 30 Infernal Legion" }, } }, - ["NearbyEnemiesCoveredInAshUnique__1"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7907 }, level = 1, group = "NearbyEnemiesCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, - ["ColdExposureAdditionalResistanceUnique__1"] = { affix = "", "Cold Exposure you inflict applies an extra -12% to Cold Resistance", statOrder = { 5824 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [600221736] = { "Cold Exposure you inflict applies an extra -12% to Cold Resistance" }, } }, - ["FreezeProliferationUnique__1"] = { affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2220 }, level = 1, group = "FreezeProliferationAmulet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3865389316] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, - ["ShockProliferationUnique__2"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2223 }, level = 1, group = "ShockProliferationShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1640259660] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, - ["AddedLightningDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4871 }, level = 1, group = "AddedLightningDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [817611267] = { "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["CriticalStrikeChancePerIntelligenceUnique__1"] = { affix = "", "5% increased Critical Strike Chance per 25 Intelligence", statOrder = { 5931 }, level = 1, group = "CriticalStrikeChancePerIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1861913998] = { "5% increased Critical Strike Chance per 25 Intelligence" }, } }, - ["LifeLeechFromAttacksPermyriadUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "1% of Attack Damage Leeched as Life" }, } }, - ["LightningNonCriticalStrikesLuckyUnique__1"] = { affix = "", "Lightning Damage with Non-Critical Strikes is Lucky", statOrder = { 6536 }, level = 1, group = "LightningNonCriticalStrikesLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430928642] = { "Lightning Damage with Non-Critical Strikes is Lucky" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks" }, } }, - ["AddedFireDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks" }, } }, - ["AddedColdDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks" }, } }, - ["AddedLightningDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks" }, } }, - ["ItemCanHaveShieldWeaponTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8034, 8034.1 }, level = 1, group = "ItemCanHaveShieldWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827605890] = { "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["ItemCanHaveTwoHandedSwordWeaponTreeUnique1"] = { affix = "", "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8035, 8035.1 }, level = 1, group = "ItemCanHaveTwoHandedSwordWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2141582975] = { "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["ItemCanHaveSupportGemsOnlyTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8033, 8033.1 }, level = 1, group = "ItemCanHaveSupportGemsOnlyTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3031897787] = { "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, - ["LowLifeInstantLifeRecoveryUnique__1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7351 }, level = 38, group = "LowLifeInstantLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, - ["LowManaInstantManaRecoveryUnique__1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 8175 }, level = 1, group = "LowManaInstantManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, - ["IncreasedLifeNoLifeModifiersUnique__1"] = { affix = "", "+(700-1000) to maximum Life if there are no Life Modifiers on other Equipped Items", statOrder = { 9150 }, level = 1, group = "IncreasedLifeNoLifeModifiers", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2927667525] = { "+(700-1000) to maximum Life if there are no Life Modifiers on other Equipped Items" }, } }, - ["HinekoraButterflyEffectUnique__1"] = { affix = "", "Every 5 seconds, gain one of the following for 5 seconds:", "Your Hits are always Critical Strikes", "Hits against you are always Critical Strikes", "Attacks cannot Hit you", "Attacks against you always Hit", "Your Damage with Hits is Lucky", "Damage of Hits against you is Lucky", statOrder = { 7148, 7148.1, 7148.2, 7148.3, 7148.4, 7148.5, 7148.6 }, level = 62, group = "HinekoraButterflyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2501671832] = { "Every 5 seconds, gain one of the following for 5 seconds:", "Your Hits are always Critical Strikes", "Hits against you are always Critical Strikes", "Attacks cannot Hit you", "Attacks against you always Hit", "Your Damage with Hits is Lucky", "Damage of Hits against you is Lucky" }, } }, - ["SoulTattooEffectUnique__1"] = { affix = "", "100% increased effect of Tattoos in Radius", statOrder = { 8125 }, level = 1, group = "SoulTattooEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [4149388787] = { "100% increased effect of Tattoos in Radius" }, } }, - ["GainSpellCostAsESUnique__1"] = { affix = "", "Spells cause you to gain Energy Shield equal to their Upfront", "Cost every fifth time you Pay it", statOrder = { 6825, 6825.1 }, level = 55, group = "GainSpellCostAsES", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "caster" }, tradeHashes = { [1357409216] = { "Spells cause you to gain Energy Shield equal to their Upfront", "Cost every fifth time you Pay it" }, } }, - ["WarcrySpeedUnique__1"] = { affix = "", "(20-25)% increased Warcry Speed", statOrder = { 3277 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-25)% increased Warcry Speed" }, } }, - ["WarcrySpeedUnique__2"] = { affix = "", "(25-35)% increased Warcry Speed", statOrder = { 3277 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-35)% increased Warcry Speed" }, } }, - ["LocalTreatElementalResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Elemental Resistance values as inverted", statOrder = { 8032 }, level = 1, group = "LocalTreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2750800428] = { "Treats Enemy Monster Elemental Resistance values as inverted" }, } }, - ["LocalTreatChaosResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Chaos Resistance values as inverted", statOrder = { 2816 }, level = 1, group = "LocalTreatChaoslResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3897054103] = { "Treats Enemy Monster Chaos Resistance values as inverted" }, } }, - ["MinionsUseMainHandBaseCritUnique__1"] = { affix = "", "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon", statOrder = { 9370, 9370.1 }, level = 1, group = "MinionsUseMainHandBaseCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [3700085184] = { "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon" }, } }, - ["TreatResistancesAsMaxChanceUnique__1"] = { affix = "", "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits", statOrder = { 6421 }, level = 1, group = "TreatResistancesAsMaxChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [204458505] = { "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits" }, } }, - ["TakeNoBurningDamageIfStopBurningUnique__1"] = { affix = "", "Take no Burning Damage if you've stopped taking Burning Damage Recently", statOrder = { 10354 }, level = 1, group = "TakeNoBurningDamageIfStopBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2738190959] = { "Take no Burning Damage if you've stopped taking Burning Damage Recently" }, } }, - ["GainMissingLifeOnHitUnique__1"] = { affix = "", "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy", statOrder = { 9378 }, level = 62, group = "GainMissingLifeOnHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1383676476] = { "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy" }, } }, - ["UnaffectedByDamagingAilmentsUnique__1"] = { affix = "", "Unaffected by Damaging Ailments", statOrder = { 10467 }, level = 1, group = "UnaffectedByDamagingAilments", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1575046591] = { "Unaffected by Damaging Ailments" }, } }, - ["NonExertedAttacksNoDamageUnique__1"] = { affix = "", "Non-Exerted Attacks deal no Damage", statOrder = { 9509 }, level = 1, group = "NonExertedAttacksNoDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3303984198] = { "Non-Exerted Attacks deal no Damage" }, } }, - ["LifeLeechInstantExertedAttacksUnique__1"] = { affix = "", "Life Leech from Exerted Attacks is instant", statOrder = { 7373 }, level = 1, group = "LifeLeechInstantExertedAttacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [272906215] = { "Life Leech from Exerted Attacks is instant" }, } }, - ["QuiverChillAsThoughtDealingMoreDamageUnique__1"] = { affix = "", "Chill Enemies as though dealing (60-100)% more Damage", statOrder = { 10506 }, level = 1, group = "QuiverChillAsThoughtDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223307291] = { "Chill Enemies as though dealing (60-100)% more Damage" }, } }, - ["NgamahusEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kaom on Kill", statOrder = { 667 }, level = 62, group = "NgamahusEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [817287945] = { "10% chance to Trigger Summon Spirit of Kaom on Kill" }, } }, - ["KitavasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Utula on Kill", statOrder = { 666 }, level = 62, group = "KitavasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [272515409] = { "10% chance to Trigger Summon Spirit of Utula on Kill" }, } }, - ["TukohamasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Akoya on Kill", statOrder = { 672 }, level = 62, group = "TukohamasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3888707953] = { "10% chance to Trigger Summon Spirit of Akoya on Kill" }, } }, - ["RongokuraisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kahuturoa on Kill", statOrder = { 669 }, level = 62, group = "RongokuraisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264841388] = { "10% chance to Trigger Summon Spirit of Kahuturoa on Kill" }, } }, - ["TasaliosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Rakiata on Kill", statOrder = { 670 }, level = 62, group = "TasaliosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1630969195] = { "10% chance to Trigger Summon Spirit of Rakiata on Kill" }, } }, - ["ArohonguisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ikiaho on Kill", statOrder = { 664 }, level = 62, group = "ArohonguisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1163205473] = { "10% chance to Trigger Summon Spirit of Ikiaho on Kill" }, } }, - ["RamakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ahuana on Kill", statOrder = { 668 }, level = 62, group = "RamakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [31336590] = { "10% chance to Trigger Summon Spirit of Ahuana on Kill" }, } }, - ["HinekorasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Tawhanuku on Kill", statOrder = { 665 }, level = 62, group = "HinekorasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4217417523] = { "10% chance to Trigger Summon Spirit of Tawhanuku on Kill" }, } }, - ["TawhoasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Maata on Kill", statOrder = { 671 }, level = 62, group = "TawhoasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3572665414] = { "10% chance to Trigger Summon Spirit of Maata on Kill" }, } }, - ["ValakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kiloava on Kill", statOrder = { 673 }, level = 62, group = "ValakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999837849] = { "10% chance to Trigger Summon Spirit of Kiloava on Kill" }, } }, - ["NearbyEnemyPhysicalDamageConvertedToFire__1"] = { affix = "", "Nearby Enemies Convert 25% of their Physical Damage to Fire", statOrder = { 10728 }, level = 1, group = "NearbyEnemyPhysicalDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729324251] = { "Nearby Enemies Convert 25% of their Physical Damage to Fire" }, } }, - ["IncreasedLifeEmptyRedSocketUnique__1"] = { affix = "", "+40 to maximum Life for each Empty Red Socket on any Equipped Item", statOrder = { 4433 }, level = 60, group = "IncreasedLifeEmptyRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [726359715] = { "+40 to maximum Life for each Empty Red Socket on any Equipped Item" }, } }, - ["IncreasedAccuracyEmptyGreenSocketUnique__1"] = { affix = "", "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item", statOrder = { 4434 }, level = 1, group = "IncreasedAccuracyEmptyGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4280703528] = { "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item" }, } }, - ["IncreasedManaEmptyBlueSocketUnique__1"] = { affix = "", "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item", statOrder = { 4435 }, level = 1, group = "IncreasedManaEmptyBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2962020005] = { "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item" }, } }, - ["AllResistEmptyWhiteSocketUnique__1"] = { affix = "", "+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item", statOrder = { 4436 }, level = 1, group = "AllResistEmptyWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [597739519] = { "+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item" }, } }, - ["LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1"] = { affix = "", "-2 to level of Socketed Skill Gems per Socketed Gem", statOrder = { 8019 }, level = 1, group = "LocalIncreaseSocketedGemLevelPerFilledSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2503682584] = { "-2 to level of Socketed Skill Gems per Socketed Gem" }, } }, - ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels", statOrder = { 8102 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels" }, } }, - ["MaximumQualityOverrideUnique__1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 7996 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, - ["RandomMovementVelocityWhenHitUnique__1"] = { affix = "", "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again", statOrder = { 9263 }, level = 1, group = "RandomMovementVelocityWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3281809492] = { "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again" }, } }, - ["EnemyElementalResistanceZeroWhenHitUnique__1"] = { affix = "", "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds", statOrder = { 6423 }, level = 1, group = "EnemyElementalResistanceZeroWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3714446071] = { "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds" }, } }, - ["AvoidMaimChanceUnique__1"] = { affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 56, group = "AvoidMaimChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, - ["SkeletonAddedChaosDamageShieldUnique__1"] = { affix = "", "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield", statOrder = { 10696 }, level = 1, group = "SkeletonAddedChaosDamageShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1475598909] = { "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield" }, } }, - ["ElementalDamageTakenAsPhysicalUnique__1"] = { affix = "", "40% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6329 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2340750293] = { "40% of Elemental Damage from Hits taken as Physical Damage" }, } }, - ["ElementalDamageTakenAsPhysicalUnique__2"] = { affix = "", "(15-30)% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6329 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2340750293] = { "(15-30)% of Elemental Damage from Hits taken as Physical Damage" }, } }, - ["ElementalDamageFromBlockedHitsUnique__1"] = { affix = "", "You take 100% of Elemental Damage from Blocked Hits", statOrder = { 5229 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393355605] = { "You take 100% of Elemental Damage from Blocked Hits" }, } }, - ["SpellAddedChaosDamageMaximumLifeUnique__1"] = { affix = "", "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life", statOrder = { 4547 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3175648755] = { "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life" }, } }, - ["LifeDegenerationGracePeriodUnique__1"] = { affix = "", "Lose 500 Life per second", statOrder = { 1575 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose 500 Life per second" }, } }, - ["SocketedGemsSupportedByLifetapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, - ["CriticalStrikeMultiplierMonsterPowerUnique__1"] = { affix = "", "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power", statOrder = { 7163 }, level = 1, group = "CriticalStrikeMultiplierMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1872107885] = { "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power" }, } }, - ["LeechInstantMonsterPowerUnique__1"] = { affix = "", "5% of Leech from Hits with this Weapon is Instant per Enemy Power", statOrder = { 7164 }, level = 1, group = "LeechInstantMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583648686] = { "5% of Leech from Hits with this Weapon is Instant per Enemy Power" }, } }, - ["GainEnduranceChargeEverySecondUnique__1"] = { affix = "", "Lose an Endurance Charge each second", statOrder = { 6700 }, level = 1, group = "GainEnduranceChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778599971] = { "Lose an Endurance Charge each second" }, } }, - ["GainFrenzyChargeEverySecondUnique__1"] = { affix = "", "Lose a Frenzy Charge each second", statOrder = { 6703 }, level = 1, group = "GainFrenzyChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [651232125] = { "Lose a Frenzy Charge each second" }, } }, - ["GainPowerChargeEverySecondUnique__1"] = { affix = "", "Lose a Power Charge each second", statOrder = { 6706 }, level = 1, group = "GainPowerChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [521054609] = { "Lose a Power Charge each second" }, } }, - ["TinctureCriticalStrikeChanceImplicit1"] = { affix = "", "(100-150)% increased Critical Strike Chance with Melee Weapons", statOrder = { 10884 }, level = 1, group = "TinctureCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3678828098] = { "(100-150)% increased Critical Strike Chance with Melee Weapons" }, } }, - ["TinctureElementalDamageImplicit1"] = { affix = "", "(70-100)% increased Elemental Damage with Melee Weapons", statOrder = { 10886 }, level = 1, group = "TinctureElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [503138266] = { "(70-100)% increased Elemental Damage with Melee Weapons" }, } }, - ["TinctureStunThresholdImplicit1"] = { affix = "", "40% reduced Enemy Stun Threshold with Melee Weapons", "(15-25)% increased Stun Duration with Melee Weapons", statOrder = { 10861, 10920 }, level = 1, group = "TinctureStunThresholdDuration", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2791825817] = { "40% reduced Enemy Stun Threshold with Melee Weapons" }, [2912587137] = { "(15-25)% increased Stun Duration with Melee Weapons" }, } }, - ["TinctureChanceToIgniteImplicit1"] = { affix = "", "25% chance to Ignite with Melee Weapons", "(60-90)% increased Damage with Ignite from Melee Weapons", statOrder = { 10879, 10893 }, level = 1, group = "TinctureChanceToIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3935936274] = { "(60-90)% increased Damage with Ignite from Melee Weapons" }, [4206255461] = { "25% chance to Ignite with Melee Weapons" }, } }, - ["TinctureChanceToFreezeImplicit1"] = { affix = "", "25% chance to Freeze with Melee Weapons", "(25-35)% increased Effect of Chill from Melee Weapons", statOrder = { 10878, 10882 }, level = 1, group = "TinctureChanceToFreezeEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "ailment" }, tradeHashes = { [3296814491] = { "(25-35)% increased Effect of Chill from Melee Weapons" }, [1858426568] = { "25% chance to Freeze with Melee Weapons" }, } }, - ["TinctureChanceToShockImplicit1"] = { affix = "", "25% chance to Shock with Melee Weapons", "(25-35)% increased Effect of Shock from Melee Weapons", statOrder = { 10881, 10916 }, level = 1, group = "TinctureChanceToShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [2313961828] = { "25% chance to Shock with Melee Weapons" }, [2245266924] = { "(25-35)% increased Effect of Shock from Melee Weapons" }, } }, - ["TinctureChanceToPoisonImplicit1"] = { affix = "", "20% chance to Poison with Melee Weapons", "(60-90)% increased Damage with Poison from Melee Weapons", statOrder = { 10880, 10903 }, level = 1, group = "TinctureChanceToPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [776174407] = { "(60-90)% increased Damage with Poison from Melee Weapons" }, [1168985596] = { "20% chance to Poison with Melee Weapons" }, } }, - ["TinctureChanceToBleedImplicit1"] = { affix = "", "20% chance to cause Bleeding with Melee Weapons", "(60-90)% increased Damage with Bleeding from Melee Weapons", statOrder = { 10862, 10874 }, level = 1, group = "TinctureChanceToBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1630041051] = { "20% chance to cause Bleeding with Melee Weapons" }, [3660450649] = { "(60-90)% increased Damage with Bleeding from Melee Weapons" }, } }, - ["TinctureRageOnHitImplicit1"] = { affix = "", "Gain 3 Rage on Melee Weapon Hit", statOrder = { 10891 }, level = 1, group = "TinctureRageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2012294704] = { "Gain 3 Rage on Melee Weapon Hit" }, } }, - ["TinctureChanceToBlindImplicit1"] = { affix = "", "25% chance to Blind Enemies on Hit with Melee Weapons", "(25-35)% increased Effect of Blind from Melee Weapons", statOrder = { 10863, 10875 }, level = 1, group = "TinctureChanceToBlindEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1808507379] = { "(25-35)% increased Effect of Blind from Melee Weapons" }, [2795267150] = { "25% chance to Blind Enemies on Hit with Melee Weapons" }, } }, - ["TinctureToxicityRateUnique__1"] = { affix = "", "(15-25)% reduced Mana Burn rate", statOrder = { 10906 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [116232170] = { "(15-25)% reduced Mana Burn rate" }, } }, - ["TinctureToxicityRateUnique__2"] = { affix = "", "(-35-35)% reduced Mana Burn rate", statOrder = { 10906 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [116232170] = { "(-35-35)% reduced Mana Burn rate" }, } }, - ["TinctureCooldownRecoveryUnique__1"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate", statOrder = { 10904 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239144] = { "(20-40)% increased Cooldown Recovery Rate" }, } }, - ["TinctureMeleeSplashOnWeaponHitUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 10897 }, level = 1, group = "MeleeSplashOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2929267123] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, [2100498273] = { "" }, } }, - ["TinctureGraspingVineOnWeaponHitUnique__1"] = { affix = "", "(20-30)% chance to inflict a Grasping Vine on Melee Weapon Hit", statOrder = { 10876 }, level = 1, group = "GraspingVineOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [19313391] = { "(20-30)% chance to inflict a Grasping Vine on Melee Weapon Hit" }, } }, - ["TinctureApplyWitherStacksOnHitUnique__1"] = { affix = "", "Melee Weapon Hits Inflict (2-3) Withered Debuffs for 2 seconds", statOrder = { 10872 }, level = 1, group = "WeaponApplyWitherStacksOnHit", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1103333624] = { "Melee Weapon Hits Inflict (2-3) Withered Debuffs for 2 seconds" }, } }, - ["TinctureToxicityOnHitUnique__1"] = { affix = "", "Does not inflict Mana Burn over time", "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon", statOrder = { 10864, 10865 }, level = 1, group = "TinctureToxicityOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1330482101] = { "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon" }, [1686969928] = { "Does not inflict Mana Burn over time" }, } }, - ["TinctureRarityPerToxicityUnique__1"] = { affix = "", "(1-5)% increased Rarity of Items found per Mana Burn, up to a maximum of 100%", statOrder = { 10866 }, level = 1, group = "TinctureRarityPerToxicity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3226452989] = { "(1-5)% increased Rarity of Items found per Mana Burn, up to a maximum of 100%" }, } }, - ["TincturePenetrationPerToxicityUnique__1"] = { affix = "", "Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%", statOrder = { 10901 }, level = 1, group = "TincturePenetrationPerToxicity", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3685214225] = { "Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%" }, } }, - ["TinctureCullingStrikeUnique__1"] = { affix = "", "Melee Weapon Attacks have Culling Strike", statOrder = { 10885 }, level = 1, group = "WeaponCullingStrike", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [802532569] = { "Melee Weapon Attacks have Culling Strike" }, } }, - ["TinctureCoverInAshOnFullLifeUnique__1"] = { affix = "", "Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit", statOrder = { 10937 }, level = 1, group = "WeaponCoverInAshVsFullLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [2428064388] = { "Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit" }, } }, - ["TinctureRefreshIgniteDurationUnique__1"] = { affix = "", "(15-25)% chance to refresh Ignite Duration on Melee Weapon Hit", statOrder = { 10914 }, level = 1, group = "RefreshIgniteDurationOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [93054948] = { "(15-25)% chance to refresh Ignite Duration on Melee Weapon Hit" }, } }, - ["TinctureFireDamageTakenPerToxicityUnique__1"] = { affix = "", "-1 Fire Damage taken from Hits per Mana Burn", statOrder = { 10888 }, level = 1, group = "TinctureFireDamageTakenPerToxicity", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1483305963] = { "-1 Fire Damage taken from Hits per Mana Burn" }, } }, - ["CountAsHavingMaxEnduranceFrenzyPowerCharges1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "CountAsHavingMaxEnduranceFrenzyPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, - ["MaximumFortificationUnique__1"] = { affix = "", "+(1-10) to maximum Fortification", statOrder = { 5031 }, level = 1, group = "MaximumFortification", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2094299742] = { "+(1-10) to maximum Fortification" }, } }, - ["StrikeSkillsFortifyOnHitUnique__1"] = { affix = "", "Melee Hits from Strike Skills Fortify", statOrder = { 10259 }, level = 1, group = "StrikeSkillsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3049891689] = { "Melee Hits from Strike Skills Fortify" }, } }, - ["AttackSpeedPerFortificationUnique__1"] = { affix = "", "1% increased Attack Speed per Fortification", statOrder = { 4888 }, level = 1, group = "AttackSpeedPerFortification", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1039149869] = { "1% increased Attack Speed per Fortification" }, } }, - ["RageCasterStatsUnique__1"] = { affix = "", "Rage grants Spell Damage instead of Attack Damage", statOrder = { 9797 }, level = 1, group = "RageCasterStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell Damage instead of Attack Damage" }, [223497523] = { "" }, } }, - ["GainRageOnManaSpentUnique__1"] = { affix = "", "Gain (7-10) Rage after Spending a total of 200 Mana", statOrder = { 6846 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (7-10) Rage after Spending a total of 200 Mana" }, } }, - ["LifeFromEnergyShieldArmourUnique__1"] = { affix = "", "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", statOrder = { 6775 }, level = 1, group = "LifeFromEnergyShieldArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3734229311] = { "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items" }, } }, - ["FlaskDurationPerLevelUnique__1"] = { affix = "", "2% reduced Flask Effect Duration per Level", statOrder = { 6638 }, level = 1, group = "FlaskDurationPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [981878473] = { "2% reduced Flask Effect Duration per Level" }, } }, - ["FlaskEffectPerLevelUnique__1"] = { affix = "", "Flasks applied to you have 1% increased Effect per Level", statOrder = { 6639 }, level = 1, group = "FlaskEffectPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3867344930] = { "Flasks applied to you have 1% increased Effect per Level" }, } }, - ["GrantsRavenousSkillUnique__1"] = { affix = "", "Grants Level 20 Ravenous Skill", "Enemies display their Monster Category", statOrder = { 696, 744 }, level = 1, group = "GrantsRavenousSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636370122] = { "Grants Level 20 Ravenous Skill" }, [4164361381] = { "Enemies display their Monster Category" }, } }, - ["AdditionalSacredWispUnique__1"] = { affix = "", "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned", statOrder = { 5036, 5036.1 }, level = 1, group = "AdditionalSacredWisp", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13590525] = { "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned" }, } }, - ["AttackCriticalStrikesUnnerveUnique__1"] = { affix = "", "Attacks inflict Unnerve on Critical Strike for 4 seconds", statOrder = { 4919 }, level = 1, group = "AttackCriticalStrikesUnnerve", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3362271649] = { "Attacks inflict Unnerve on Critical Strike for 4 seconds" }, } }, - ["SpellCriticalStrikesIntimidateUnique__1"] = { affix = "", "Spells inflict Intimidate on Critical Strike for 4 seconds", statOrder = { 10194 }, level = 1, group = "SpellCriticalStrikesIntimidate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [181229988] = { "Spells inflict Intimidate on Critical Strike for 4 seconds" }, } }, - ["EnemiesCountAsMovingElementalAilmentsUnique__1"] = { affix = "", "You and Enemies in your Presence count as moving while affected by Elemental Ailments", statOrder = { 6385 }, level = 1, group = "EnemiesCountAsMovingElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [113536037] = { "You and Enemies in your Presence count as moving while affected by Elemental Ailments" }, } }, - ["MinionsHaveChargesYouHaveUnique__1"] = { affix = "", "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you", "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you", statOrder = { 9362, 9363, 9363.1 }, level = 1, group = "MinionsHaveChargesYouHave", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3879726065] = { "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you" }, [2797097751] = { "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you" }, } }, - ["AurasOnlyApplyToLinkedTargetUnique__1"] = { affix = "", "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets", statOrder = { 9496, 9496.1 }, level = 1, group = "AurasOnlyApplyToLinkedTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3678739763] = { "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets" }, } }, - ["AuraEffectWhileLinkedUnique__1"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target", statOrder = { 9495 }, level = 1, group = "AuraEffectWhileLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995650818] = { "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target" }, } }, - ["MaximumSpectrePerGhastlyEyeUnique__1"] = { affix = "", "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel", statOrder = { 4587 }, level = 1, group = "MaximumSpectrePerGhastlyEye", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1664904679] = { "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel" }, } }, - ["HeraldReservationEfficiencyUnique__1"] = { affix = "", "10% increased Mana Reservation Efficiency of Herald Skills", statOrder = { 7132 }, level = 80, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3078295401] = { "10% increased Mana Reservation Efficiency of Herald Skills" }, } }, - ["UniqueJewelNodeIncreasedLifeUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Life", statOrder = { 8105 }, level = 1, group = "UniqueJewelNodeIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1223932609] = { "Passive Skills in Radius also grant +5 to maximum Life" }, } }, - ["UniqueJewelNodeIncreasedManaUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Mana", statOrder = { 8106 }, level = 1, group = "UniqueJewelNodeIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3382199855] = { "Passive Skills in Radius also grant +5 to maximum Mana" }, } }, - ["UniqueJewelNodeCriticalStrikeChanceUnique__1"] = { affix = "", "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance", statOrder = { 8109 }, level = 1, group = "UniqueJewelNodeCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3901726941] = { "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance" }, } }, - ["UniqueJewelNodeAllAttributesUnique__1"] = { affix = "", "Passive Skills in Radius also grant +2 to all Attributes", statOrder = { 8103 }, level = 1, group = "UniqueJewelNodeAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3587101704] = { "Passive Skills in Radius also grant +2 to all Attributes" }, } }, - ["UniqueJewelNodeChaosResistUnique__1"] = { affix = "", "Passive Skills in Radius also grant +4% to Chaos Resistance", statOrder = { 8104 }, level = 1, group = "UniqueJewelNodeChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1812306107] = { "Passive Skills in Radius also grant +4% to Chaos Resistance" }, } }, - ["UniqueJewelNodePhysicalDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Physical Damage", statOrder = { 8114 }, level = 1, group = "UniqueJewelNodePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3252387974] = { "Passive Skills in Radius also grant 6% increased Physical Damage" }, } }, - ["UniqueJewelNodeFireDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Fire Damage", statOrder = { 8111 }, level = 1, group = "UniqueJewelNodeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [719810173] = { "Passive Skills in Radius also grant 6% increased Fire Damage" }, } }, - ["UniqueJewelNodeColdDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Cold Damage", statOrder = { 8108 }, level = 1, group = "UniqueJewelNodeColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2999571636] = { "Passive Skills in Radius also grant 6% increased Cold Damage" }, } }, - ["UniqueJewelNodeLightningDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Lightning Damage", statOrder = { 8112 }, level = 1, group = "UniqueJewelNodeLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3556460433] = { "Passive Skills in Radius also grant 6% increased Lightning Damage" }, } }, - ["UniqueJewelNodeChaosDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Chaos Damage", statOrder = { 8107 }, level = 1, group = "UniqueJewelNodeChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1313763128] = { "Passive Skills in Radius also grant 6% increased Chaos Damage" }, } }, - ["UniqueJewelNodeArmourUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Armour", statOrder = { 8115 }, level = 1, group = "UniqueJewelNodeArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1647724040] = { "Passive Skills in Radius also grant 7% increased Armour" }, } }, - ["UniqueJewelNodeEvasionUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Evasion Rating", statOrder = { 8110 }, level = 1, group = "UniqueJewelNodeEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3761482453] = { "Passive Skills in Radius also grant 7% increased Evasion Rating" }, } }, - ["UniqueJewelNodeEnergyShieldUnique__1"] = { affix = "", "Passive Skills in Radius also grant 3% increased Energy Shield", statOrder = { 8113 }, level = 1, group = "UniqueJewelNodeEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4215928287] = { "Passive Skills in Radius also grant 3% increased Energy Shield" }, } }, - ["RunecraftingFireDamage"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-20)% increased Fire Damage" }, } }, - ["RunecraftingColdDamage"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% increased Cold Damage" }, } }, - ["RunecraftingLightningDamage"] = { affix = "", "(10-20)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-20)% increased Lightning Damage" }, } }, - ["RitualRingPenanceMark"] = { affix = "", "Grants level 20 Penance Mark", statOrder = { 62 }, level = 63, group = "RitualRingPenanceMark", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [88120117] = { "Grants level 20 Penance Mark" }, } }, - ["RitualRingAffliction"] = { affix = "", "Grants level 20 Affliction", statOrder = { 60 }, level = 63, group = "RitualRingAffliction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3486646279] = { "Grants level 20 Affliction" }, } }, - ["RitualRingPacify"] = { affix = "", "Grants level 20 Pacify", statOrder = { 61 }, level = 63, group = "RitualRingPacify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [913306901] = { "Grants level 20 Pacify" }, } }, - ["RitualRingCastSpeed"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-12)% increased Cast Speed" }, } }, - ["RitualRingLife"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, - ["RitualRingMana"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, - ["RitualRingEnergyShield"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-60) to maximum Energy Shield" }, } }, - ["KeyStoneRetaliationHitsUnique_1"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10808 }, level = 1, group = "RetaliationHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [971749694] = { "Arsenal of Vengeance" }, } }, - ["ConvertBodyArmourEvasionToWardUnique__1"] = { affix = "", "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour", statOrder = { 10582 }, level = 66, group = "ConvertBodyArmourEvasionToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [767698281] = { "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour" }, } }, - ["BlockIsLuckyUnique__1"] = { affix = "", "Chance to Block is Lucky", statOrder = { 4995 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [984774803] = { "Chance to Block is Lucky" }, } }, - ["BlockIsUnluckyUnique__1"] = { affix = "", "Chance to Block is Unlucky", statOrder = { 4995 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [984774803] = { "Chance to Block is Unlucky" }, } }, - ["GrantsTawhoasChosenUnique__1"] = { affix = "", "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy", statOrder = { 714, 714.1 }, level = 1, group = "GrantsTawhoasChosen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3131535174] = { "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy" }, } }, - ["WarcryAreaOfEffectUnique__1"] = { affix = "", "Warcry Skills have (25-35)% increased Area of Effect", statOrder = { 10575 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (25-35)% increased Area of Effect" }, } }, - ["WarcryAreaOfEffectUnique__2"] = { affix = "", "Warcry Skills have (15-25)% increased Area of Effect", statOrder = { 10575 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-25)% increased Area of Effect" }, } }, - ["WarcryCorpseExplosionUnique__1"] = { affix = "", "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage", statOrder = { 9448 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage" }, } }, - ["TinctureRemoveToxicityOnKillUnique__1"] = { affix = "", "10% chance to remove 1 Mana Burn on Kill", statOrder = { 5719 }, level = 1, group = "TinctureRemoveToxicityOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [545355339] = { "10% chance to remove 1 Mana Burn on Kill" }, } }, - ["AdditionalTinctureUnique__1"] = { affix = "", "You can have an additional Tincture active", statOrder = { 5384 }, level = 1, group = "AdditionalTincture", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3806798486] = { "You can have an additional Tincture active" }, } }, - ["ChanceToGainMaximumRageUnique__1"] = { affix = "", "(10-20)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6770 }, level = 1, group = "ChanceToGainMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2710292678] = { "(10-20)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, - ["VillageLocalPhysicalDamagePercent1"] = { affix = "", "(11-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(11-15)% increased Physical Damage" }, } }, - ["VillageLocalPhysicalDamagePercent2"] = { affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, - ["VillageLocalPhysicalDamagePercent3"] = { affix = "", "(21-25)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(21-25)% increased Physical Damage" }, } }, - ["VillageLocalFireDamage1"] = { affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, - ["VillageLocalFireDamage2"] = { affix = "", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (25-29) Fire Damage" }, } }, - ["VillageLocalFireDamage3"] = { affix = "", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-24) to (35-41) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand1"] = { affix = "", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand2"] = { affix = "", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } }, - ["VillageLocalFireDamageTwoHand3"] = { affix = "", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } }, - ["VillageLocalColdDamage1"] = { affix = "", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, } }, - ["VillageLocalColdDamage2"] = { affix = "", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (23-26) Cold Damage" }, } }, - ["VillageLocalColdDamage3"] = { affix = "", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-21) to (31-37) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } }, - ["VillageLocalColdDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } }, - ["VillageLocalLightningDamage1"] = { affix = "", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } }, - ["VillageLocalLightningDamage2"] = { affix = "", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (41-48) Lightning Damage" }, } }, - ["VillageLocalLightningDamage3"] = { affix = "", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (57-67) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand1"] = { affix = "", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand2"] = { affix = "", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } }, - ["VillageLocalLightningDamageTwoHand3"] = { affix = "", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } }, - ["VillageLocalChaosDamage1"] = { affix = "", "Adds (7-9) to (14-16) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-9) to (14-16) Chaos Damage" }, } }, - ["VillageLocalChaosDamage2"] = { affix = "", "Adds (11-15) to (23-26) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-15) to (23-26) Chaos Damage" }, } }, - ["VillageLocalChaosDamage3"] = { affix = "", "Adds (16-21) to (31-37) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (16-21) to (31-37) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (12-17) to (26-30) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (21-28) to (42-48) Chaos Damage" }, } }, - ["VillageLocalChaosDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (29-40) to (58-68) Chaos Damage" }, } }, - ["VillageChanceToIgnite"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, - ["VillageChanceToIgniteTwoHand"] = { affix = "", "(20-25)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(20-25)% chance to Ignite" }, } }, - ["VillageChanceToFreeze"] = { affix = "", "(10-15)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(10-15)% chance to Freeze" }, } }, - ["VillageChanceToFreezeTwoHand"] = { affix = "", "(20-25)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(20-25)% chance to Freeze" }, } }, - ["VillageChanceToShock"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-15)% chance to Shock" }, } }, - ["VillageChanceToShockTwoHand"] = { affix = "", "(20-25)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(20-25)% chance to Shock" }, } }, - ["VillageLifeLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Life" }, } }, - ["VillageManaLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Mana" }, } }, - ["VillageLocalIncreasedAttackSpeed"] = { affix = "", "(3-6)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-6)% increased Attack Speed" }, } }, - ["VillageLocalCriticalStrikeChance"] = { affix = "", "(5-7)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "critical" }, tradeHashes = { [2375316951] = { "(5-7)% increased Critical Strike Chance" }, } }, - ["VillageIncreasedCastSpeed"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["VillageIncreasedCastSpeedTwoHand"] = { affix = "", "(13-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-18)% increased Cast Speed" }, } }, - ["VillageSpellCriticalStrikeChance"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-25)% increased Spell Critical Strike Chance" }, } }, - ["VillageSpellCriticalStrikeChanceTwoHand"] = { affix = "", "(30-35)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, tradeHashes = { [737908626] = { "(30-35)% increased Spell Critical Strike Chance" }, } }, - ["VillageWeaponSpellDamage1"] = { affix = "", "(10-19)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-19)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamage2"] = { affix = "", "(20-29)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-29)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamage3"] = { affix = "", "(30-39)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-39)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand1"] = { affix = "", "(15-29)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-29)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand2"] = { affix = "", "(30-44)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-44)% increased Spell Damage" }, } }, - ["VillageWeaponSpellDamageTwoHand3"] = { affix = "", "(45-59)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-59)% increased Spell Damage" }, } }, - ["VillageMinionDamageOnWeapon1"] = { affix = "", "Minions deal (10-19)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-19)% increased Damage" }, } }, - ["VillageMinionDamageOnWeapon2"] = { affix = "", "Minions deal (20-29)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-29)% increased Damage" }, } }, - ["VillageMinionDamageOnWeapon3"] = { affix = "", "Minions deal (30-39)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-39)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon1"] = { affix = "", "Minions deal (15-29)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-29)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon2"] = { affix = "", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, - ["VillageMinionDamageOnTwoHandWeapon3"] = { affix = "", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, - ["VillageGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseChaosSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, - ["VillageGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, - ["VillageGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, - ["VillageLocalStunThresholdReduction"] = { affix = "", "(21-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [832404842] = { "(21-25)% reduced Enemy Stun Threshold with this Weapon" }, } }, - ["VillageAdditionalProjectiles"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["VillageLocalIncreaseSocketedMeleeGemLevel"] = { affix = "", "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "gem" }, tradeHashes = { [829382474] = { "+2 to Level of Socketed Melee Gems" }, } }, - ["VillageAdditionalVaalSoulOnKill"] = { affix = "", "100% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, tradeHashes = { [1962922582] = { "100% chance to gain an additional Vaal Soul on Kill" }, } }, - ["VillageLocalChanceToPoisonOnHit"] = { affix = "", "10% chance to Poison on Hit", statOrder = { 8003 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "10% chance to Poison on Hit" }, } }, - ["VillageLocalChanceToBleed"] = { affix = "", "10% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "village_runesmithing_enchant", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, } }, - ["VillageMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, - ["VillageMaximumManaOnKillPercent"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1751 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of Mana on Kill" }, } }, - ["VillageCoverInAshOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Ash on Hit", statOrder = { 5893 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [324460247] = { "(10-15)% chance to Cover Enemies in Ash on Hit" }, } }, - ["VillageCoverInFrostOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Frost on Hit", statOrder = { 5897 }, level = 1, group = "CoverInFrostOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3235270673] = { "(10-15)% chance to Cover Enemies in Frost on Hit" }, } }, - ["VillageElusiveOnCriticalStrike"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4281 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, tradeHashes = { [2896192589] = { "Gain Elusive on Critical Strike" }, } }, - ["VillageFortifyOnMeleeHit"] = { affix = "", "Melee Hits Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [1166417447] = { "Melee Hits Fortify" }, } }, - ["VillageLocalNoVaalSoulGainPrevention"] = { affix = "", "Socketed Vaal Skills do not apply Soul Gain Prevention", statOrder = { 578 }, level = 1, group = "LocalVaalSoulGainPreventionVillage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, tradeHashes = { [1292359483] = { "Socketed Vaal Skills do not apply Soul Gain Prevention" }, } }, - ["VillageTriggerSocketedFireSpellOnHit"] = { affix = "", "Trigger a Socketed Fire Spell on Hit, with a 0.25 second Cooldown", statOrder = { 8132 }, level = 1, group = "TriggerSocketedSpellOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "caster", "gem" }, tradeHashes = { [3676763995] = { "Trigger a Socketed Fire Spell on Hit, with a 0.25 second Cooldown" }, } }, - ["VillageLocalElementalDamageNoPhysical"] = { affix = "", "No Physical Damage", "Has (50-100)% increased Elemental Damage", statOrder = { 1232, 7928 }, level = 1, group = "LocalElementalDamageNoPhysical", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental" }, tradeHashes = { [385756972] = { "No Physical Damage" }, [692420067] = { "Has (50-100)% increased Elemental Damage" }, } }, - ["VillageLocalPhysicalDamageAddedAsEachElement"] = { affix = "", "Gain (30-50)% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "village_runesmithing_enchant", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain (30-50)% of Weapon Physical Damage as Extra Damage of each Element" }, } }, - ["VillageTormentHauntedItem"] = { affix = "", "Haunted by Tormented Spirits", statOrder = { 7307 }, level = 1, group = "TormentHauntedItem", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1076392774] = { "Haunted by Tormented Spirits" }, } }, - ["VillageSpellCorrosionOnHitChance"] = { affix = "", "(10-20)% chance to inflict Corrosion on Hit with Spells", statOrder = { 10192 }, level = 1, group = "SpellCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, tradeHashes = { [1960314688] = { "(10-20)% chance to inflict Corrosion on Hit with Spells" }, } }, - ["VillageAttackFireDamageMaximumMana"] = { affix = "", "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon", statOrder = { 4922 }, level = 1, group = "AttackFireDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [4107994326] = { "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon" }, } }, - ["VillageAttackColdDamageEnergyShield"] = { affix = "", "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon", statOrder = { 4921 }, level = 1, group = "AttackColdDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2566313732] = { "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon" }, } }, - ["VillageTemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["VillagePunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6002 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, - ["VillageEnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, - ["VillageAttackConvertToFire"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Fire Damage", statOrder = { 4879 }, level = 1, group = "AttackConvertToFire", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [796222013] = { "(20-30)% of Attack Physical Damage Converted to Fire Damage" }, } }, - ["VillageAttackConvertToCold"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Cold Damage", statOrder = { 4878 }, level = 1, group = "AttackConvertToCold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2186742030] = { "(20-30)% of Attack Physical Damage Converted to Cold Damage" }, } }, - ["VillageAttackConvertToLightning"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Lightning Damage", statOrder = { 4880 }, level = 1, group = "AttackConvertToLightning", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1188616832] = { "(20-30)% of Attack Physical Damage Converted to Lightning Damage" }, } }, - ["VillageMaximumShock"] = { affix = "", "+10% to Maximum Effect of Shock", statOrder = { 10012 }, level = 1, group = "MaximumShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4264358613] = { "+10% to Maximum Effect of Shock" }, } }, - ["VillageSpellAddedChaosDamageMaximumLife"] = { affix = "", "Spells deal added Chaos Damage equal to 4% of your maximum Life", statOrder = { 4547 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3175648755] = { "Spells deal added Chaos Damage equal to 4% of your maximum Life" }, } }, - ["VillageRageOnMeleeHit"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6845 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, - ["VillageRageEffect"] = { affix = "", "(7-10)% increased Rage Effect", statOrder = { 9795 }, level = 1, group = "RageEffect", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2194261591] = { "(7-10)% increased Rage Effect" }, } }, - ["VillageAttacksCostLife"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10832 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [3358745905] = { "Attacks Cost Life instead of Mana" }, } }, - ["VillageAdditionalProjectilesRandomDirection"] = { affix = "", "Skills fire 2 additional Projectiles", "Projectiles are fired in random directions", statOrder = { 1792, 9828 }, level = 1, group = "AdditionalProjectilesRandomDirection", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4159765624] = { "Projectiles are fired in random directions" }, [74338099] = { "Skills fire 2 additional Projectiles" }, } }, - ["VillageAdditionalCurseOnEnemies"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["VillagePointBlank"] = { affix = "", "Point Blank", statOrder = { 10802 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["VillagePlayerFarShot"] = { affix = "", "Far Shot", statOrder = { 10828 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["VillageIronGrip"] = { affix = "", "Iron Grip", statOrder = { 10817 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, - ["VillageIronWill"] = { affix = "", "Iron Will", statOrder = { 10830 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["VillageGainMagicMonsterModsOnKill"] = { affix = "", "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6768 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3976991498] = { "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds" }, } }, - ["VillageLocalLifeLeechIsInstant"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2537 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, - ["VillageLocalManaLeechIsInstant"] = { affix = "", "Mana Leech from Hits with this Weapon is Instant", statOrder = { 7991 }, level = 1, group = "LocalManaLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, tradeHashes = { [3287200156] = { "Mana Leech from Hits with this Weapon is Instant" }, } }, - ["VillageESLeechFromAttacksNotRemovedOnFullES"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6437 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "defences", "energy_shield" }, tradeHashes = { [1004885987] = { "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield" }, } }, - ["VillageReturningProjectiles"] = { affix = "", "Attack Projectiles Return to you", statOrder = { 2824 }, level = 1, group = "ReturningAttackProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [1658124062] = { "Attack Projectiles Return to you" }, } }, - ["VillageLocalChanceForPoisonDamage"] = { affix = "", "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7872 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "village_runesmithing_enchant", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, - ["VillageLocalChanceForBleedingDamage"] = { affix = "", "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "village_runesmithing_enchant", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, - ["VillageFireExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3602667353] = { "(15-25)% chance to inflict Fire Exposure on Hit" }, } }, - ["VillageColdExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2630708439] = { "(15-25)% chance to inflict Cold Exposure on Hit" }, } }, - ["VillageLightningExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 1, group = "LightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4265906483] = { "(15-25)% chance to inflict Lightning Exposure on Hit" }, } }, - ["VillageExertedAttackDamage"] = { affix = "", "Exerted Attacks deal (80-100)% increased Damage", statOrder = { 6357 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (80-100)% increased Damage" }, } }, - ["VillageEnemiesDestroyedOnKill"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6376 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2970902024] = { "Enemies Killed by your Hits are destroyed" }, } }, - ["VillageChanceToImpaleWithSpells"] = { affix = "", "(10-15)% chance to Impale on Spell Hit", statOrder = { 10193 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster" }, tradeHashes = { [3094222195] = { "(10-15)% chance to Impale on Spell Hit" }, } }, - ["VillageBlockWhileDualWielding"] = { affix = "", "+(6-8)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block", "village_runesmithing_enchant" }, tradeHashes = { [2166444903] = { "+(6-8)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["VillageAggravateBleedOnAttack"] = { affix = "", "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 1, group = "AggravateBleedOnAttack", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2705185939] = { "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["VillagePoisonDuration"] = { affix = "", "(15-25)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(15-25)% increased Poison Duration" }, } }, - ["VillageSpellChanceToBlind"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Spells", statOrder = { 10188 }, level = 1, group = "SpellChanceToBlind", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1012291104] = { "(10-20)% chance to Blind Enemies on Hit with Spells" }, } }, - ["VillageWardRestoreChance"] = { affix = "", "(5-10)% chance to Restore your Ward on Hit", statOrder = { 9927 }, level = 1, group = "WardRestoreChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1925110785] = { "(5-10)% chance to Restore your Ward on Hit" }, } }, - ["VillageMarkedEnemyNoBlockSuppress"] = { affix = "", "Your Hits against Marked Enemy cannot be Blocked or Suppressed", statOrder = { 7158 }, level = 1, group = "MarkedEnemyNoBlockSuppress", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3548778396] = { "Your Hits against Marked Enemy cannot be Blocked or Suppressed" }, } }, - ["VillageArcaneSurgeOnLifeSpent"] = { affix = "", "Gain Arcane Surge after Spending a total of 200 Life", statOrder = { 6725 }, level = 1, group = "ArcaneSurgeOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3204560615] = { "Gain Arcane Surge after Spending a total of 200 Life" }, } }, - ["VillageOnslaughtOnManaSpent"] = { affix = "", "Gain Onslaught after Spending a total of 200 Mana", statOrder = { 6785 }, level = 1, group = "OnslaughtOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [351890141] = { "Gain Onslaught after Spending a total of 200 Mana" }, } }, - ["VillageCriticalAilmentDamageOverTimeMultiplier"] = { affix = "", "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes", statOrder = { 1244 }, level = 1, group = "CriticalAilmentDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1781630546] = { "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes" }, } }, - ["VillageWeaponIgnoreElementalResistance"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4846 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2170876738] = { "Attack Critical Strikes ignore Enemy Monster Elemental Resistances" }, } }, - ["VillageLocalMeleeWeaponRange"] = { affix = "", "+2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [350598685] = { "+2 metres to Weapon Range" }, } }, - ["VillageChaosDamageLuck"] = { affix = "", "Chaos Damage with Hits is Lucky", statOrder = { 5731 }, level = 1, group = "ChaosDamageLuck", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2678511347] = { "Chaos Damage with Hits is Lucky" }, } }, - ["VillageGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, - ["VillageExplosionConflux"] = { affix = "", "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds", statOrder = { 6743 }, level = 1, group = "ExplosionConflux", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3581844317] = { "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds" }, } }, - ["VillageKeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["VillageElementalDamagePercentAddedAsChaos"] = { affix = "", "Gain (7-10)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (7-10)% of Elemental Damage as Extra Chaos Damage" }, } }, - ["VillageMeleeAttacksUsableWithoutLife"] = { affix = "", "Insufficient Life doesn't prevent your Melee Attacks", statOrder = { 9186 }, level = 1, group = "MeleeAttacksUsableWithoutLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2461005744] = { "Insufficient Life doesn't prevent your Melee Attacks" }, } }, - ["VillageEnduranceChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "village_runesmithing_enchant" }, tradeHashes = { [1054322244] = { "(5-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["VillageFrenzyChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "village_runesmithing_enchant" }, tradeHashes = { [1826802197] = { "(5-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["VillagePowerChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "village_runesmithing_enchant" }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } }, - ["VillageUnholyMightOnCrit"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2917 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, tradeHashes = { [2959020308] = { "Gain Unholy Might for 4 seconds on Critical Strike" }, } }, - ["VillageMaximumGolems"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, - ["VillageIncreasedGold"] = { affix = "", "5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7304 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [253956903] = { "5% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["VillageMeleeSplash"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1168 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, - ["VillageDamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, - ["VillageConvertColdToChaos"] = { affix = "", "(20-25)% of Cold Damage Converted to Chaos Damage", statOrder = { 1969 }, level = 1, group = "ConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2379258771] = { "(20-25)% of Cold Damage Converted to Chaos Damage" }, } }, - ["VillageAlternatingShrineBuff"] = { affix = "", "Gain a random shrine buff every 10 seconds", statOrder = { 6819 }, level = 1, group = "AlternatingShrineBuff", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2284520710] = { "Gain a random shrine buff every 10 seconds" }, } }, - ["VillageSummonPhantasmOnCorpseConsume"] = { affix = "", "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse", statOrder = { 818 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3252082366] = { "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse" }, } }, - ["VillageMinionDamageAlsoAffectsYou"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3751 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["VillageFireDamagePerResistanceAbove75"] = { affix = "", "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%", statOrder = { 6566 }, level = 1, group = "FireDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire" }, tradeHashes = { [3013187834] = { "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%" }, } }, - ["VillageSuppressChanceEmptyOffhand"] = { affix = "", "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10180 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2076926581] = { "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty" }, } }, - ["VillageShepherdOfSouls"] = { affix = "", "Shepherd of Souls", statOrder = { 10814 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "vaal" }, tradeHashes = { [2038577923] = { "Shepherd of Souls" }, } }, - ["VillageFireBurstOnHit"] = { affix = "", "Cast Level 10 Fire Burst on Hit", statOrder = { 7889 }, level = 1, group = "FireBurstOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1606553462] = { "Cast Level 10 Fire Burst on Hit" }, } }, - ["VillageBurningEnemiesExplode"] = { affix = "", "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage", statOrder = { 6513 }, level = 1, group = "BurningEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" }, } }, - ["VillageLightningStrikesOnCrit"] = { affix = "", "Trigger Level 5 Lightning Bolt when you deal a Critical Strike", statOrder = { 772 }, level = 1, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 5 Lightning Bolt when you deal a Critical Strike" }, } }, - ["VillageShockedGroundOnHit"] = { affix = "", "Trigger Level 10 Shock Ground on Hit", statOrder = { 770 }, level = 1, group = "ShockedGroundOnHitSkill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2845525306] = { "Trigger Level 10 Shock Ground on Hit" }, } }, - ["VillageShockNearbyEnemyOnShockedKill"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, - ["VillageIgniteNearbyEnemyOnIgnitedKill"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, - ["VillageSummonWolfOnKillOld"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["VillageCullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["VillageConsumeCorpseLifeRecovery"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life", statOrder = { 5863 }, level = 1, group = "ConsumeCorpseLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life" }, } }, - ["VillageSummonRagingSpiritOnKill"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 784 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, - ["VillageMinionBurningCloudOnDeath"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second", statOrder = { 9305 }, level = 1, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "minion" }, tradeHashes = { [4099989681] = { "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second" }, } }, - ["VillageAuraAddedLightningDamagePerBlueSocket"] = { affix = "", "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket", statOrder = { 3008 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning" }, tradeHashes = { [3726585224] = { "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket" }, } }, - ["VillageStalkingPustuleOnKill"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 817 }, level = 1, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, tradeHashes = { [1662669872] = { "Trigger Level 1 Stalking Pustule on Kill" }, } }, - ["VillageGrantsEnvy"] = { affix = "", "Grants Level 1 Envy Skill", statOrder = { 655 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, tradeHashes = { [52953650] = { "Grants Level 1 Envy Skill" }, } }, - ["VillageGrantsIcicleNovaTrigger"] = { affix = "", "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 811 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy" }, } }, - ["VillageSpreadChilledGroundOnFreeze"] = { affix = "", "(10-15)% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3407 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [2901262227] = { "(10-15)% chance to create Chilled Ground when you Freeze an Enemy" }, } }, - ["VillageSpreadConsecratedGroundOnShatter"] = { affix = "", "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy", statOrder = { 4127 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4148932984] = { "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy" }, } }, - ["VillageColdAddedAsFireFrozenEnemy"] = { affix = "", "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5803 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1383929411] = { "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies" }, } }, - ["VillageCurseOnHitElementalWeakness"] = { affix = "", "(20-30)% chance to Curse Enemies with Elemental Weakness on Hit", statOrder = { 2516 }, level = 1, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [636057969] = { "(20-30)% chance to Curse Enemies with Elemental Weakness on Hit" }, } }, - ["VillageChaoticMightOnKill"] = { affix = "", "(7-13)% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5701 }, level = 1, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [562371749] = { "(7-13)% chance to gain Chaotic Might for 10 seconds on Kill" }, } }, - ["VillageIncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (20-30)% increased Damage if you've Hit Recently", statOrder = { 9296 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (20-30)% increased Damage if you've Hit Recently" }, } }, - ["TriggerSocketedElementalSpellOnBlockUnique__1"] = { affix = "", "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown", statOrder = { 8017 }, level = 60, group = "TriggerSocketedElementalSpellOnBlock", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [2036151955] = { "" }, [3591112611] = { "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown" }, } }, - ["BannerResourceGainedUnique__1"] = { affix = "", "(25-50)% increased Valour gained", statOrder = { 4976 }, level = 1, group = "BannerResourceGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050359418] = { "(25-50)% increased Valour gained" }, } }, - ["CannotGainPowerChargesUnique__1"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5435 }, level = 1, group = "CannotGainPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, - ["CannotGainEnduranceChargesUnique__2"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 4998 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3037185464] = { "Cannot gain Endurance Charges" }, } }, - ["FireLightningTakenSsColdUniquFlask8"] = { affix = "", "(20-30)% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect", statOrder = { 956 }, level = 1, group = "FireLightningTakenSsColdUniquFlask8", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1349002319] = { "(20-30)% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect" }, } }, - ["KeystoneBloodsoakedBladeUnique__1"] = { affix = "", "Bloodsoaked Blade", statOrder = { 10819 }, level = 1, group = "BloodsoakedBlade", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2363616962] = { "Bloodsoaked Blade" }, } }, - ["MaximumEnduranceFrenzyPowerChargesIs0Unique__1"] = { affix = "", "Maximum Endurance, Frenzy and Power Charges is 0", statOrder = { 9132 }, level = 1, group = "MaximumEnduranceFrenzyPowerChargesIs0", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge" }, tradeHashes = { [2957871460] = { "Maximum Endurance, Frenzy and Power Charges is 0" }, } }, - ["VillageTripleEnchant1H"] = { affix = "", "Can be Enchanted by a Kalguuran Runesmith", "Can have 2 additional Runesmithing Enchantments", "Can be Runesmithed as though it were all One Handed Melee Weapon Types", statOrder = { 4438, 7868, 7869 }, level = 1, group = "VillageTripleEnchant1H", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1045438865] = { "Can have 2 additional Runesmithing Enchantments" }, [4005027470] = { "Can be Enchanted by a Kalguuran Runesmith" }, [3221277412] = { "Can be Runesmithed as though it were all One Handed Melee Weapon Types" }, } }, - ["ExcommunicateOnMeleeHitUnique"] = { affix = "", "Excommunicate Enemies on Melee Hit for 3 seconds", statOrder = { 6506 }, level = 97, group = "ExcommunicateOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2765129230] = { "Excommunicate Enemies on Melee Hit for 3 seconds" }, } }, - ["MeleeCritChanceAgainstExcommunicatedUnique__1"] = { affix = "", "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies", statOrder = { 9184 }, level = 1, group = "MeleeCritChanceAgainstExcommunicated", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4154636328] = { "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies" }, } }, - ["AttackDamageIfHitRecentlyUnique"] = { affix = "", "(20-40)% increased Attack Damage if you've been Hit Recently", statOrder = { 3533 }, level = 98, group = "AttackDamageIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [871414818] = { "(20-40)% increased Attack Damage if you've been Hit Recently" }, } }, - ["AttackCritAfterBeingCritUnique"] = { affix = "", "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes", statOrder = { 4650 }, level = 98, group = "AttackCritAfterBeingCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [276813598] = { "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes" }, } }, - ["WarcryLifeCostUnique"] = { affix = "", "Warcries Cost +15% of Life", statOrder = { 10561 }, level = 75, group = "WarcryLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1427553227] = { "Warcries Cost +15% of Life" }, } }, - ["NoCooldownWarcriesUnique"] = { affix = "", "Non-Instant Warcries ignore their Cooldown when Used", statOrder = { 9510 }, level = 75, group = "NoCooldownWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1863128284] = { "Non-Instant Warcries ignore their Cooldown when Used" }, } }, - ["ExtremelyLuckyUnique"] = { affix = "", "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two", statOrder = { 6540, 6540.1 }, level = 1, group = "ExtremeLuck", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [675784826] = { "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two" }, } }, - ["ProjectileAvoidUnique"] = { affix = "", "(1-10)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3452269808] = { "(1-10)% chance to avoid Projectiles" }, } }, - ["MistyFootprintsUnique"] = { affix = "", "Misty Footprints", statOrder = { 10859 }, level = 1, group = "MistyFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2519043677] = { "Misty Footprints" }, } }, - ["ArcaneSurgeMovementSpeedUnique"] = { affix = "", "Increases to Cast Speed from Arcane Surge also applies to Movement Speed", statOrder = { 4441 }, level = 68, group = "ArcaneSurgeMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [103999915] = { "Increases to Cast Speed from Arcane Surge also applies to Movement Speed" }, } }, - ["ArcaneSurgeOnMovementSkillUnique"] = { affix = "", "Gain Arcane Surge when you use a Movement Skill", statOrder = { 4439 }, level = 68, group = "ArcaneSurgeOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3221795893] = { "Gain Arcane Surge when you use a Movement Skill" }, } }, - ["ArcaneSurgeEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3015437071] = { "(30-50)% increased Effect of Arcane Surge on you" }, } }, - ["StarfellOnMeleeCriticalHitUnique__1"] = { affix = "", "Trigger Level 20 Starfall on Melee Critical Strike", statOrder = { 783 }, level = 85, group = "StarfellOnMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1505174316] = { "Trigger Level 20 Starfall on Melee Critical Strike" }, } }, - ["InfluenceElementalConfluxUnique__1"] = { affix = "", "You have Elemental Conflux if the stars are aligned", statOrder = { 4059 }, level = 86, group = "InfluenceElementalConflux", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2741732114] = { "You have Elemental Conflux if the stars are aligned" }, } }, - ["InfluenceElementalSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Elemental Skill Gems if the stars are aligned", statOrder = { 5010 }, level = 86, group = "InfluenceElementalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [547920428] = { "+(1-3) to Level of all Elemental Skill Gems if the stars are aligned" }, } }, - ["InfluenceElementalSupportGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Elemental Support Gems if the stars are aligned", statOrder = { 5011 }, level = 86, group = "InfluenceElementalSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1640163302] = { "+(1-3) to Level of all Elemental Support Gems if the stars are aligned" }, } }, - ["GrantsSummonVoidSpawnUnique__1"] = { affix = "", "Trigger Level 20 Summon Void Spawn every 4 seconds", statOrder = { 731 }, level = 97, group = "GrantSummonVoidSpawnEvery4Seconds", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1560737213] = { "" }, [658873122] = { "Trigger Level 20 Summon Void Spawn every 4 seconds" }, } }, - ["ExtraChaosDamagePerVoidSpawnUnique__1"] = { affix = "", "Gain (4-6)% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn", statOrder = { 9488 }, level = 97, group = "ExtraChaosDamagePerVoidSpawn", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1621629493] = { "Gain (4-6)% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn" }, } }, - ["DamageRemovedFromVoidSpawnsUnique__1"] = { affix = "", "(4-6)% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn", statOrder = { 6093 }, level = 97, group = "DamageRemovedFromVoidSpawns", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3269077876] = { "(4-6)% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn" }, } }, - ["UnarmedStrikeSkillsAdditionalTargetUnique__1"] = { affix = "", "[DNT] Unarmed Non-Vaal Strike Skills target (1-7) additional nearby Enemy", statOrder = { 10488 }, level = 1, group = "UnarmedStrikeSkillsAdditionalTarget", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3383195220] = { "[DNT] Unarmed Non-Vaal Strike Skills target (1-7) additional nearby Enemy" }, } }, - ["UnarmedMeleeAttackCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks", statOrder = { 10489 }, level = 97, group = "UnarmedMeleeAttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [468580269] = { "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks" }, } }, - ["MovementVelocityUnique__55"] = { affix = "", "(1-7)% increased Movement Speed", statOrder = { 1798 }, level = 97, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-7)% increased Movement Speed" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldUnique__38"] = { affix = "", "(100-777)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 97, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-777)% increased Evasion and Energy Shield" }, } }, - ["UnarmedStrikeRangeUnique__1"] = { affix = "", "+(0.1-0.7) metres to Melee Strike Range with Unarmed Attacks", statOrder = { 3079 }, level = 97, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(0.1-0.7) metres to Melee Strike Range with Unarmed Attacks" }, } }, - ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(1-7)% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3571 }, level = 97, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(1-7)% to Unarmed Melee Attack Critical Strike Chance" }, } }, - ["UnarmedMoreMeleeAttackSpeedUnique__1"] = { affix = "", "(1-7)% more Attack Speed with Unarmed Melee Attacks", statOrder = { 1430 }, level = 97, group = "UnarmedMoreMeleeAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [906039557] = { "(1-7)% more Attack Speed with Unarmed Melee Attacks" }, } }, - ["DoubleMinionLimitsUnique_1"] = { affix = "", "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons", statOrder = { 9174, 9174.1 }, level = 100, group = "DoubleMinionLimitsUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [56473917] = { "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons" }, } }, - ["GainDivinationBuffOnFlaskUsedUniqueFlask__1"] = { affix = "", "Grants a random Divination Buff for 20 seconds when Used", statOrder = { 898 }, level = 42, group = "GainDivinationBuffOnFlaskUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3081454623] = { "Grants a random Divination Buff for 20 seconds when Used" }, } }, - ["TargetsUnaffectedByYourHexesUnique__1"] = { affix = "", "Targets are Unaffected by your Hexes", statOrder = { 2599 }, level = 40, group = "TargetsUnaffectedByYourHexes", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2325471503] = { "Targets are Unaffected by your Hexes" }, } }, - ["EatSoulAfterHexPercentCurseExpireUnique__1"] = { affix = "", "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power", statOrder = { 6289 }, level = 40, group = "EatSoulAfterHexPercentCurseExpire", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [224931623] = { "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power" }, } }, - ["LocalFlaskRemovePercentOfLifeOnUseUnique_7"] = { affix = "", "Removes (10-15)% of Life when Used", statOrder = { 872 }, level = 1, group = "LocalFlaskRemovePercentLifeOnUse", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [3860231079] = { "Removes (10-15)% of Life when Used" }, } }, - ["LocalFlaskStartEnergyShieldRechargeUnique_1"] = { affix = "", "Starts Energy Shield Recharge when Used", statOrder = { 873 }, level = 1, group = "LocalFlaskStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3130697435] = { "Starts Energy Shield Recharge when Used" }, } }, - ["LocalFlaskEnergyShieldRechargeNotDelayedByDamageDuringEffectUnique_1"] = { affix = "", "Energy Shield Recharge is not delayed by Damage during Effect", statOrder = { 979 }, level = 80, group = "LocalFlaskEnergyShieldRechargeNotInterruptedDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [23814088] = { "Energy Shield Recharge is not delayed by Damage during Effect" }, } }, - ["RecoverLifePercentOnBlockUnique__1"] = { affix = "", "Lose (3-5)% of Life when you Block", statOrder = { 3060 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Lose (3-5)% of Life when you Block" }, } }, - ["BlockChancePerLifeSpentRecentlyUnique__1"] = { affix = "", "[DNT] (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently", statOrder = { 5227 }, level = 1, group = "BlockChancePerLifeSpentRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2171886867] = { "[DNT] (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently" }, } }, - ["CanOnlyInflictWitherAgainstFullLifeEnemies__1"] = { affix = "", "Cannot Inflict Wither on targets that are not on Full Life", statOrder = { 5388 }, level = 1, group = "CanOnlyInflictWitherAgainstFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [340591537] = { "Cannot Inflict Wither on targets that are not on Full Life" }, } }, - ["ApplyMaximumWitherOnChaosSkillHitUnique__1"] = { affix = "", "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds", statOrder = { 4696 }, level = 38, group = "ApplyMaximumWitherOnChaosSkillHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2676773112] = { "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds" }, } }, - ["UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1"] = { affix = "", "[DNT] Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100", statOrder = { 10487 }, level = 1, group = "UnarmedAddedChaosDamageForEachPoisonOnTarget", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3382196041] = { "[DNT] Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100" }, } }, - ["LessPoisonDurationUnique_1"] = { affix = "", "(50-60)% less Poison Duration", statOrder = { 3171 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "(50-60)% less Poison Duration" }, } }, - ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(40-50)% chance to Poison on Hit with Attacks", statOrder = { 3175 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(40-50)% chance to Poison on Hit with Attacks" }, } }, - ["IncreasedAttackSpeedUniqueGlovesDexInt_1"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, - ["GainOnslaughtDuringLifeFlaskUnique__1"] = { affix = "", "[DNT] You have Onslaught during Effect of any Life Flask", statOrder = { 6780 }, level = 1, group = "GainOnslaughtDuringLifeFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [629617314] = { "[DNT] You have Onslaught during Effect of any Life Flask" }, } }, - ["OvercappedFireResistanceAsFirePrenetrationUnique__1"] = { affix = "", "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%", statOrder = { 2982 }, level = 100, group = "OvercappedFireResistanceAsFirePrenetration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [133804429] = { "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%" }, } }, - ["FireDamageOnSkillUseUnique__1"] = { affix = "", "Take (300-500) Fire Damage when you Use a Skill", statOrder = { 2212 }, level = 100, group = "FireDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4076381228] = { "Take (300-500) Fire Damage when you Use a Skill" }, } }, - ["MinionHaveNoAmourOrEnergyShieldUnique__1"] = { affix = "", "[DNT] Your minions have no Armour or Maximum Energy Shield", statOrder = { 9359 }, level = 1, group = "MinionHaveNoAmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4060457653] = { "[DNT] Your minions have no Armour or Maximum Energy Shield" }, } }, - ["MinionGainYourSpellSuppressUnique__1"] = { affix = "", "[DNT] Your minions gain your chance to Suppress Spell Damage", statOrder = { 9353 }, level = 1, group = "MinionGainYourSpellSuppress", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3888619765] = { "[DNT] Your minions gain your chance to Suppress Spell Damage" }, } }, - ["AllResistancesReducedPerActiveMinionUnique_1UNUSED"] = { affix = "", "[DNT] -2% to All Resistances per Minion", statOrder = { 4633 }, level = 1, group = "MinionCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [1456627145] = { "[DNT] -2% to All Resistances per Minion" }, } }, - ["GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED"] = { affix = "", "[DNT] +(3-5)% to Global Defenses per Minion", statOrder = { 6876 }, level = 1, group = "MinionCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, tradeHashes = { [2408967970] = { "[DNT] +(3-5)% to Global Defenses per Minion" }, } }, - ["AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "-2% to all Resistances per Minion from your Non-Vaal Skills", statOrder = { 1637 }, level = 1, group = "NonVaalMinionSkillCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [2894273152] = { "-2% to all Resistances per Minion from your Non-Vaal Skills" }, } }, - ["GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "(3-4)% increased Defences per Minion from your Non-Vaal Skills", statOrder = { 2834 }, level = 1, group = "NonVaalMinionSkillCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, tradeHashes = { [3169460653] = { "(3-4)% increased Defences per Minion from your Non-Vaal Skills" }, } }, - ["MinionsGainPercentOfYourResistancesUnique_1"] = { affix = "", "Minions gain added Resistances equal to 50% of your Resistances", statOrder = { 9352 }, level = 93, group = "MinionsGainYourResistancesPercent", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [2370748292] = { "Minions gain added Resistances equal to 50% of your Resistances" }, } }, - ["SacrificeLifeToGainArrowUnique__1"] = { affix = "", "[DNT] Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed", statOrder = { 9954 }, level = 1, group = "SacrificeLifeToGainArrow", weightKey = { }, weightVal = { }, modTags = { "bow", "attack" }, tradeHashes = { [2868019709] = { "[DNT] Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed" }, } }, - ["ArmourFromShieldDoubledUnique__1"] = { affix = "", "Armour from Equipped Shield is doubled", statOrder = { 1993 }, level = 40, group = "ArmourFromShieldDoubled", weightKey = { }, weightVal = { }, modTags = { "shield", "defences", "armour" }, tradeHashes = { [651387761] = { "Armour from Equipped Shield is doubled" }, } }, - ["GainNoArmourFromBodyArmourUnique__1"] = { affix = "", "Gain no Armour from Equipped Body Armour", statOrder = { 3338 }, level = 40, group = "GainNoArmourFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "body_armour", "defences", "armour" }, tradeHashes = { [2150125858] = { "Gain no Armour from Equipped Body Armour" }, } }, - ["EnergyShieldRechargeApplyToManaUnique__1"] = { affix = "", "[DNT] Energy Shield Recharge instead applies to Mana", statOrder = { 6446 }, level = 1, group = "EnergyShieldRechargeApplyToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1572347373] = { "[DNT] Energy Shield Recharge instead applies to Mana" }, } }, - ["GrantShaperSkill_1"] = { affix = "", "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory", statOrder = { 743, 743.1 }, level = 85, group = "GrantShaperSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367775264] = { "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory" }, } }, - ["MaximumRemembranceUnique_1"] = { affix = "", "Maximum 10 Remembrance", statOrder = { 9127 }, level = 85, group = "MaximumRemembrance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3469876297] = { "Maximum 10 Remembrance" }, } }, - ["RemembranceGainedPerEnergyShieldUnique_1"] = { affix = "", "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned", statOrder = { 6740, 6740.1 }, level = 85, group = "RemembrancePerEnergyShieldSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [410922651] = { "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned" }, } }, - ["Maximum2OfSameTotemUnique__1"] = { affix = "", "You cannot have more than 2 Summoned Totems of the same type", statOrder = { 2257 }, level = 78, group = "Maximum2OfSameTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1121911611] = { "You cannot have more than 2 Summoned Totems of the same type" }, } }, - ["ManaFlaskEffectsAreNotRemovedAtFullManaUnique__1"] = { affix = "", "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue", statOrder = { 8174, 8174.1 }, level = 70, group = "ManaFlaskEffectsAreNotRemovedAtFullMana", weightKey = { }, weightVal = { }, modTags = { "mana_flask", "flask", "resource", "mana" }, tradeHashes = { [1548467016] = { "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue" }, } }, - ["CannotUseLifeFlaskUnique__1"] = { affix = "", "Can't use Life Flasks", statOrder = { 72 }, level = 70, group = "CannotUseLifeFlask", weightKey = { }, weightVal = { }, modTags = { "life_flask", "flask" }, tradeHashes = { [3283268320] = { "Can't use Life Flasks" }, } }, - ["FlaskEffectAlsoAffectsArcaneSurgeUnique__1"] = { affix = "", "Increases and Reductions to Effect of Flasks applied to you", "also applies to Effect of Arcane Surge on you at (200-250)% of their value", statOrder = { 4600, 4600.1 }, level = 70, group = "FlaskEffectAlsoAffectsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1213832501] = { "Increases and Reductions to Effect of Flasks applied to you", "also applies to Effect of Arcane Surge on you at (200-250)% of their value" }, } }, - ["ArcaneSurgeDuringManaFlaskEffectUnique__1"] = { affix = "", "You have Arcane Surge during Effect of any Mana Flask", statOrder = { 4704 }, level = 70, group = "ArcaneSurgeDuringManaFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "mana_flask" }, tradeHashes = { [1243471794] = { "You have Arcane Surge during Effect of any Mana Flask" }, } }, - ["NearbyAlliesShockedGrantYouChargesOnDeathUnique__1"] = { affix = "", "[DNT] Nearby Non-Player Allies are Shocked, taking 30% increased damage", "Gain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies", statOrder = { 9465, 9465.1 }, level = 1, group = "NearbyAlliesShockedGrantYouChargesOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3144427110] = { "[DNT] Nearby Non-Player Allies are Shocked, taking 30% increased damage", "Gain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10"] = { affix = "", "(120-180)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-180)% increased Physical Damage" }, } }, - ["WeaponPhysicalDamageAddedAsRandomElementUnique__2"] = { affix = "", "Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 85, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, - ["LocalCriticalStrikeChanceUniqueTwoHandAxe_1"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 85, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, - ["SupportedByArrowNovaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 20 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 20 Arrow Nova" }, } }, - ["PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently", statOrder = { 9626, 9626.1 }, level = 1, group = "PhysicalAddedAsFireIfUsedRubyFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [128992179] = { "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently" }, } }, - ["PhysicalAddedAsColdIfUsedSapphireFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently", statOrder = { 9624, 9624.1 }, level = 1, group = "PhysicalAddedAsColdIfUsedSapphireFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4015395070] = { "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently" }, } }, - ["PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently", statOrder = { 9628, 9628.1 }, level = 1, group = "PhysicalAddedAsLightningIfUsedTopazFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [270706555] = { "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently" }, } }, - ["PhysicalAddedAsChaosIfUsedAmethystFlaskRecentlyUnique__1"] = { affix = "", "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently", statOrder = { 9623, 9623.1 }, level = 1, group = "PhysicalAddedAsChaosIfUsedAmethystFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [2417314413] = { "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently" }, } }, - ["TripleDamageIfSpentTimeOnAttackRecentlyUnique__1"] = { affix = "", "[DNT] Hits with this Weapon deal Triple Damage if you have spent at least 2 seconds on a single attack recently", statOrder = { 6146 }, level = 1, group = "TripleDamageIfSpentTimeOnAttackRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3652223421] = { "[DNT] Hits with this Weapon deal Triple Damage if you have spent at least 2 seconds on a single attack recently" }, } }, - ["AreaOfEffectUnique_9"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1880 }, level = 85, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, - ["SkillsCostEnergyShieldInsteadOfManaLifeUnique__1"] = { affix = "", "Skills Cost Energy Shield instead of Mana or Life", statOrder = { 5049 }, level = 93, group = "SkillsCostEnergyShieldInsteadOfManaLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [89922905] = { "Skills Cost Energy Shield instead of Mana or Life" }, } }, - ["AttacksGainMinMaxAddedChaosDamageBasedOnManaUnique__1"] = { affix = "", "(5-10) to (20-25) Added Attack Chaos Damage per 100 Maximum Mana", statOrder = { 1389 }, level = 93, group = "AttacksGainMinMaxAddedChaosDamageBasedOnMana", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos", "attack" }, tradeHashes = { [3795467298] = { "0 to (20-25) Added Attack Chaos Damage per 100 Maximum Mana" }, [3795240942] = { "(5-10) to 0 Added Attack Chaos Damage per 100 Maximum Mana" }, } }, - ["AddedEnergyShieldFlatUnique_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1558 }, level = 93, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-100) to maximum Energy Shield" }, } }, - ["PercentReducedMaximumManaUnique_1"] = { affix = "", "(40-60)% reduced maximum Mana", statOrder = { 1580 }, level = 93, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(40-60)% reduced maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldUniqueHelmetInt_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1559 }, level = 100, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-100) to maximum Energy Shield" }, } }, - ["ChaosResistUniqueHelmetInt__1"] = { affix = "", "+(27-37)% to Chaos Resistance", statOrder = { 1641 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(27-37)% to Chaos Resistance" }, } }, - ["LifeDegenPerActiveMinionUniqueHelmetInt_1UNUSED"] = { affix = "", "Lose 0.3% Life per Second per Minion", statOrder = { 7347 }, level = 1, group = "LifeDegenPermyriadPerMinutePerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3458251673] = { "Lose 0.3% Life per Second per Minion" }, } }, - ["FlaskChargesUsedUnique___12"] = { affix = "", "(20-100)% increased Charges per use", statOrder = { 846 }, level = 42, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(20-100)% increased Charges per use" }, } }, - ["FlaskExtraChargesUnique__4"] = { affix = "", "+60 to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+60 to Maximum Charges" }, } }, - ["IgniteDealNoDamageUnique__1"] = { affix = "", "Ignites you inflict deal no Damage", statOrder = { 7206 }, level = 1, group = "IgniteDealNoDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2046217536] = { "Ignites you inflict deal no Damage" }, } }, - ["TriggerIgnitionBlastOnIgnitedEnemyDeathUnique__1"] = { affix = "", "Trigger Level 5 Ignition Blast when an enemy dies while Ignited by you", statOrder = { 790 }, level = 1, group = "TriggerIgnitionBlastOnIgnitedEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [748455470] = { "" }, [2637583625] = { "Trigger Level 5 Ignition Blast when an enemy dies while Ignited by you" }, } }, - ["KeystoneEldritchBatteryUnique__3"] = { affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 85, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["GlobalSpellGemsLevelUniqueStaff_1"] = { affix = "", "+(3-5) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 85, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(3-5) to Level of all Spell Skill Gems" }, } }, - ["GlobalSpellGemsLevelUniqueStaff_2"] = { affix = "", "+(-1-1) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(-1-1) to Level of all Spell Skill Gems" }, } }, - ["IncreasedCastSpeedUniqueStaff_1"] = { affix = "", "(25-40)% increased Cast Speed", statOrder = { 1446 }, level = 85, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-40)% increased Cast Speed" }, } }, - ["LocalIncreasedEnergyShieldPercentUniqueBody_1"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1560 }, level = 97, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, - ["ChaosResistUniqueBody_1"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 97, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, - ["SpellBlockChancePerMinionUnique__1"] = { affix = "", "[DNT] +2% Chance to Block Spell Damage per Minion", statOrder = { 10131 }, level = 1, group = "SpellBlockChancePerMinion", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2787823479] = { "[DNT] +2% Chance to Block Spell Damage per Minion" }, } }, - ["AggressiveMinionIfBlockedRecentlyUnique__1"] = { affix = "", "[DNT] Minions are Aggressive if you've Blocked Recently", statOrder = { 9268 }, level = 1, group = "AggressiveMinionIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1521135197] = { "[DNT] Minions are Aggressive if you've Blocked Recently" }, } }, - ["FeedingFrenzyIfBlockedRecentlyUnique__1"] = { affix = "", "[DNT] You have Feeding Frenzy if you've Blocked Recently", statOrder = { 10663 }, level = 1, group = "FeedingFrenzyIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2925106620] = { "[DNT] You have Feeding Frenzy if you've Blocked Recently" }, } }, - ["AdditionalTotemsUniqueScepter_1"] = { affix = "", "+(3-5) to maximum number of Summoned Totems", statOrder = { 2254 }, level = 78, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+(3-5) to maximum number of Summoned Totems" }, } }, - ["BattlemageKeystoneUnique__5"] = { affix = "", "Battlemage", statOrder = { 10772 }, level = 78, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, - ["SummonTotemCastSpeedUnique__3"] = { affix = "", "(40-70)% increased Totem Placement speed", statOrder = { 2578 }, level = 78, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(40-70)% increased Totem Placement speed" }, } }, - ["LocalAddedPhysicalDamageUnique__38"] = { affix = "", "Adds (60-85) to (100-133) Physical Damage", statOrder = { 1276 }, level = 78, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-85) to (100-133) Physical Damage" }, } }, - ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourUniqueHelmetStrInt_2"] = { affix = "", "(350-650)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-650)% increased Armour" }, } }, - ["IncreasedManaUniqueHelmetStrInt_1"] = { affix = "", "+(30-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-70) to maximum Mana" }, } }, - ["ManaRegenerationUniqueHelmetStrInt_1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, - ["AdditionalProjectilesUniqueWand_1"] = { affix = "", "Skills fire (2-3) additional Projectiles", statOrder = { 1792 }, level = 42, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire (2-3) additional Projectiles" }, } }, - ["ProjectilesExpireOnHitUniqueWand_1"] = { affix = "", "Projectiles cannot continue after colliding with targets", statOrder = { 9742 }, level = 42, group = "ProjectilesExpireOnHitv2", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1732165753] = { "Projectiles cannot continue after colliding with targets" }, } }, - ["IncreasedProjectileDamageUnique___12"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 42, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, - ["ProjectileSpeedUnique__9"] = { affix = "", "(10-20)% increased Projectile Speed", statOrder = { 1796 }, level = 42, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-20)% increased Projectile Speed" }, } }, - ["GlobalChaosSpellGemsLevelUniqueWand_1"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, - ["IncreasedChaosDamageUniqueWand_1"] = { affix = "", "(31-43)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-43)% increased Chaos Damage" }, } }, - ["NoManaRegenerationUniqueHelmetInt_1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2272 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, - ["GlobalNoEnergyShieldUnique__2"] = { affix = "", "Removes all Energy Shield", statOrder = { 2166 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1482608021] = { "Removes all Energy Shield" }, } }, - ["MaximumManaUnique__9"] = { affix = "", "(20-40)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-40)% increased maximum Mana" }, } }, - ["DamageTakenFromManaUniqueHelmet_1"] = { affix = "", "(20-30)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(20-30)% of Damage is taken from Mana before Life" }, } }, - ["ChanceToIgniteUnique__7"] = { affix = "", "(10-20)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-20)% chance to Ignite" }, } }, - ["GlobalAddedFireDamageUnique__5"] = { affix = "", "Adds (1-5) to (10-15) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (1-5) to (10-15) Fire Damage" }, } }, - ["FireResistanceUniqueGlovesInt_1"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, - ["FlaskDurationUniqueGlovesDex_1"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, - ["FlaskLifeRecoveryUniqueGlovesDex_1"] = { affix = "", "(-100-50)% reduced Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(-100-50)% reduced Life Recovery from Flasks" }, } }, - ["LocalIncreasedEvasionRatingUniqueGlovesDex_1"] = { affix = "", "+(20-45) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-45) to Evasion Rating" }, } }, - ["DexterityUniqueGlovesDex_1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["IgnitesReflectedToSelfUnique__1"] = { affix = "", "Ignites you cause are reflected back to you", statOrder = { 3039 }, level = 1, group = "IgnitesReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1049974046] = { "Ignites you cause are reflected back to you" }, } }, - ["UnaffectedByIgniteUnique__1"] = { affix = "", "Unaffected by Ignite", statOrder = { 10474 }, level = 1, group = "UnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, - ["CannotPoisonEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Cannot Poison Enemies with at least 12 Poisons on them", statOrder = { 5441 }, level = 1, group = "CannotPoisonEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos" }, tradeHashes = { [1833990055] = { "Cannot Poison Enemies with at least 12 Poisons on them" }, } }, - ["WitherOnHitEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them", statOrder = { 8133 }, level = 1, group = "WitherOnHitEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4202723071] = { "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them" }, } }, - ["ApplyAdditionalPoisonUnique__1"] = { affix = "", "100% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4585 }, level = 1, group = "ApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [514698677] = { "100% chance to inflict an additional Poison on the same Target when you inflict Poison" }, } }, - ["LocalApplyAdditionalPoisonUnique__1"] = { affix = "", "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon", statOrder = { 8001, 8001.1 }, level = 1, group = "LocalApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, tradeHashes = { [2087599022] = { "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon" }, } }, - ["SacrificeMinionToFireAdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow", statOrder = { 9955 }, level = 69, group = "SacrificeMinionToFireAdditionalArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [151300265] = { "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow" }, } }, - ["AdditionalPoisonChanceUnique__1"] = { affix = "", "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4585 }, level = 100, group = "AdditionalPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, tradeHashes = { [514698677] = { "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison" }, } }, - ["ImpaleEffectPerImpaleOnYouUnique__1"] = { affix = "", "[DNT] Impales you inflict have (10-15)% increased Effect per Impale on you", statOrder = { 7245 }, level = 1, group = "ImpaleEffectPerImpaleOnYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3824925104] = { "[DNT] Impales you inflict have (10-15)% increased Effect per Impale on you" }, } }, - ["SpellLightningDamagePerIntelligenceUnique__1"] = { affix = "", "1 to (31-53) Spell Lightning Damage per 10 Intelligence", statOrder = { 10125 }, level = 83, group = "SpellLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [254155233] = { "1 to (31-53) Spell Lightning Damage per 10 Intelligence" }, } }, - ["IncreasedSkillCostUnique_1"] = { affix = "", "31% increased Cost of Skills", statOrder = { 1881 }, level = 1, group = "SkillCostReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2904711338] = { "31% increased Cost of Skills" }, } }, - ["ViolentPaceUnique__1"] = { affix = "", "[DNT] Triggers Level 20 Violent Path when Equipped", statOrder = { 6253 }, level = 1, group = "ViolentPace", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3000633332] = { "[DNT] Triggers Level 20 Violent Path when Equipped" }, } }, - ["AreaOfEffectPerRageUnique__1"] = { affix = "", "[DNT] (5-10)% increased Area of Effect per 10 Rage", statOrder = { 4722 }, level = 1, group = "AreaOfEffectPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878076855] = { "[DNT] (5-10)% increased Area of Effect per 10 Rage" }, } }, - ["MinionMovementSpeedUnique_1"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (20-30)% increased Movement Speed" }, } }, - ["MinionAttackSpeedUnique_1"] = { affix = "", "Minions have (6-12)% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (6-12)% increased Attack Speed" }, [4000101551] = { "" }, } }, - ["MinionDoubleDamageChancePerFortificationUnique__1"] = { affix = "", "Minions have 1% chance to deal Double Damage per Fortification on you", statOrder = { 1976 }, level = 1, group = "MinionDoubleDamageChancePerFortification", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1793564431] = { "Minions have 1% chance to deal Double Damage per Fortification on you" }, } }, - ["MinionLifeAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value", statOrder = { 3754 }, level = 83, group = "MinionMaximumAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3942379359] = { "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value" }, } }, - ["FortifyDurationUnique_1"] = { affix = "", "(30-40)% increased Fortification Duration", statOrder = { 2265 }, level = 1, group = "FortifyDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2966206079] = { "(30-40)% increased Fortification Duration" }, } }, - ["TriggerSocketedSpellOnUnarmedMeleeCriticalHitUnique__1"] = { affix = "", "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 752 }, level = 97, group = "TriggerSocketedSpellOnUnarmedMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181232657] = { "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown" }, } }, - ["LinkSkillsCostLifeUnique__1"] = { affix = "", "[DNT] Link Skills Cost Life instead of Mana", statOrder = { 7489 }, level = 1, group = "LinkSkillsCostLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2332188930] = { "[DNT] Link Skills Cost Life instead of Mana" }, } }, - ["GuardSkillForLinkTargetUnique__1"] = { affix = "", "[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you", statOrder = { 6919 }, level = 1, group = "GuardSkillForLinkTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3674946347] = { "[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you" }, } }, - ["LinksTargetDamageableMinionsUnique_1"] = { affix = "", "Link Skills can target Damageable Minions", statOrder = { 7499 }, level = 1, group = "LinksTargetDamageableMinions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1323344255] = { "Link Skills can target Damageable Minions" }, } }, - ["LinksGrantMinionsLessDamageTakenUnique_1"] = { affix = "", "Your Linked Minions take (65-75)% less Damage", statOrder = { 7504 }, level = 1, group = "LinksGrantMinionsLessDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3132594008] = { "Your Linked Minions take (65-75)% less Damage" }, } }, - ["LinkedMinionsStealRareModsUnique_1"] = { affix = "", "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds", statOrder = { 7505 }, level = 1, group = "LinkedMinionsStealRareMods", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [517280174] = { "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds" }, } }, - ["LocalIncreasedPhysicalDamagePercentUnique__51"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-300)% increased Physical Damage" }, } }, - ["AddedPhysicalDamageUniqueQuiver10"] = { affix = "", "(5-10) to (12-24) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 69, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-10) to (12-24) Added Physical Damage with Bow Attacks" }, } }, - ["MinionDamageUniqueQuiver_1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1973 }, level = 69, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, - ["DexterityAndIntelligenceUniqueQuiver_1"] = { affix = "", "+(10-20) to Dexterity and Intelligence", statOrder = { 1182 }, level = 69, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(10-20) to Dexterity and Intelligence" }, } }, - ["DexterityAndIntelligenceUnique_2"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1182 }, level = 20, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(20-30) to Dexterity and Intelligence" }, } }, - ["DexterityAndIntelligenceUnique_3"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(20-30) to Dexterity and Intelligence" }, } }, - ["IncreasedAttackSpeedUniqueQuiver10"] = { affix = "", "(7-14)% increased Attack Speed", statOrder = { 1410 }, level = 69, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-14)% increased Attack Speed" }, } }, - ["IncreasedLifeUniqueQuiver21"] = { affix = "", "+(75-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-200) to maximum Life" }, } }, - ["ProjectileSpeedUnique__10"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, - ["LifeGainPerTargetUniqueQuiver21"] = { affix = "", "Gain (5-10) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (5-10) Life per Enemy Hit with Attacks" }, } }, - ["LocalIncreasedEnergyShieldUnique__13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercentUnique__34"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, - ["DexterityUnique__33"] = { affix = "", "+(20-35) to Dexterity", statOrder = { 1178 }, level = 100, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-35) to Dexterity" }, } }, - ["ChaosResistUnique__32"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, - ["AllResistancesUnique_1"] = { affix = "", "-(30-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 100, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(30-20)% to all Elemental Resistances" }, } }, - ["ReducedFireResistanceUnique__2"] = { affix = "", "(65-75)% reduced Fire Resistance", statOrder = { 1628 }, level = 100, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1680060098] = { "(65-75)% reduced Fire Resistance" }, } }, - ["FireDamagePercentUnique__13"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1357 }, level = 100, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-20)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__14"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1357 }, level = 41, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } }, - ["FireDamagePercentUnique__15"] = { affix = "", "(90-110)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-110)% increased Fire Damage" }, } }, - ["InflictFireExposureNearbyOnMaxRageUnique_1"] = { affix = "", "[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage", statOrder = { 7276 }, level = 1, group = "InflictFireExposureNearbyOnMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [4244612288] = { "[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage" }, } }, - ["NearbyEnemiesHaveFireExposureWhileAtMaxRageUnique_1"] = { affix = "", "Nearby Enemies have Fire Exposure while at maximum Rage", statOrder = { 9460 }, level = 1, group = "NearbyEnemiesFireExposureWhileMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3952509108] = { "Nearby Enemies have Fire Exposure while at maximum Rage" }, } }, - ["FireDoTMultiPerRageUnique_1"] = { affix = "", "Each Rage also grants +2% to Fire Damage Over Time Multiplier", statOrder = { 6579 }, level = 1, group = "FireDoTMultiPerRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3947934765] = { "Each Rage also grants +2% to Fire Damage Over Time Multiplier" }, } }, - ["LocalFireDamageFromLifePercentUnique_1"] = { affix = "", "Attacks with this Weapon have Added Fire Damage equal to (8-12)% of Player's Maximum Life", statOrder = { 2945 }, level = 1, group = "WeaponAddedFireDamagePerMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3228133944] = { "Attacks with this Weapon have Added Fire Damage equal to (8-12)% of Player's Maximum Life" }, } }, - ["GrantUnleashPowerUnique__1"] = { affix = "", "[DNT] Grants Level 10 Unleash Power", statOrder = { 732 }, level = 1, group = "GrantUnleashPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3174866731] = { "[DNT] Grants Level 10 Unleash Power" }, } }, - ["TriggerSocketedSpellOnKillUnique__1"] = { affix = "", "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown", statOrder = { 778 }, level = 40, group = "TriggerSocketedSpellOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [3414107447] = { "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown" }, } }, - ["SummonWrithingWormEveryXMsUnique__1"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 620 }, level = 40, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } }, - ["AddedDamagePerStrengthUnique__2"] = { affix = "", "Adds 8 to 24 Physical Damage to Attacks per 25 Strength", statOrder = { 4875 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 8 to 24 Physical Damage to Attacks per 25 Strength" }, } }, - ["LocalIncreasedAttackSpeedUnique__41"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% reduced Attack Speed" }, } }, - ["IncreasedAttackAreaOfEffectUnique__4"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, - ["MaximumLifeOnKillPercentUnique__7"] = { affix = "", "Recover (4-6)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (4-6)% of Life on Kill" }, } }, - ["SummonFireSkitterbotUnique__1"] = { affix = "", "Summon Skitterbots also summons a Scorching Skitterbot", statOrder = { 10297 }, level = 20, group = "SummonFireSkitterbot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3402861859] = { "Summon Skitterbots also summons a Scorching Skitterbot" }, } }, - ["SkitterbotAurasAlsoAffectYouUnique__1"] = { affix = "", "Summoned Skitterbots' Auras affect you as well as Enemies", statOrder = { 10315 }, level = 20, group = "SkitterbotAurasAlsoAffectYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483115633] = { "Summoned Skitterbots' Auras affect you as well as Enemies" }, } }, - ["SkitterbotIncreasedAilmentEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots", statOrder = { 10317 }, level = 20, group = "SkitterbotIncreasedAilmentEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1268010771] = { "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots" }, } }, - ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4453 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [370215510] = { "(10-15)% increased maximum Life if 2 Elder Items are Equipped" }, } }, - ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4457 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [282325999] = { "Nearby Enemies are Unnerved if 2 Elder Items are Equipped" }, } }, - ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4447 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2589667827] = { "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped" }, } }, - ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4454 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2440345251] = { "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped" }, } }, - ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4445 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [430973012] = { "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped" }, } }, - ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4446 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1250221293] = { "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped" }, } }, - ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4448 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3525542360] = { "Unaffected by Poison if 2 Hunter Items are Equipped" }, } }, - ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4451 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3417925939] = { "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped" }, } }, - ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4458 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2813428845] = { "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped" }, } }, - ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4461 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [621302497] = { "Unaffected by Ignite if 2 Warlord Items are Equipped" }, } }, - ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4456 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1142276332] = { "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped" }, } }, - ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4459 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2003094183] = { "(10-15)% increased Strength if 2 Warlord Items are Equipped" }, } }, - ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4460 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3910756536] = { "Unaffected by Chill if 2 Redeemer Items are Equipped" }, } }, - ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4455 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3844045281] = { "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped" }, } }, - ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4450 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2543696990] = { "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped" }, } }, - ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4462 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1060931694] = { "Unaffected by Shock if 2 Crusader Items are Equipped" }, } }, - ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4449 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4172727064] = { "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped" }, } }, - ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4452 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2531873276] = { "(10-15)% increased Intelligence if 2 Crusader Items are Equipped" }, } }, - ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4476 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2662252183] = { "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped" }, } }, - ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4473 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [609019022] = { "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped" }, } }, - ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4465 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1481800004] = { "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped" }, } }, - ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4470 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1737470038] = { "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped" }, } }, - ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4472 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797685329] = { "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped" }, } }, - ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4480 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [4216579611] = { "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped" }, } }, - ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4474 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [2251969898] = { "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped" }, } }, - ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4471 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [502694677] = { "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped" }, } }, - ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4466 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1065101352] = { "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped" }, } }, - ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4478 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3003230483] = { "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped" }, } }, - ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4475, 4475.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4160015669] = { "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped" }, } }, - ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4468 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1417125941] = { "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped" }, } }, - ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4477 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [2351364973] = { "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped" }, } }, - ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4463 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1571123250] = { "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped" }, } }, - ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4467 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4123011890] = { "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped" }, } }, - ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4479 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [2006105838] = { "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped" }, } }, - ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4464 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4060882278] = { "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped" }, } }, - ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4469 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [901386819] = { "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped" }, } }, - ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4485 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3183988184] = { "Cannot be Stunned if 6 Elder Items are Equipped" }, } }, - ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4497 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [3564190077] = { "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped" }, } }, - ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4483 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3237046450] = { "(10-15)% increased Attributes if 6 Elder Items are Equipped" }, } }, - ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4496, 4496.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [725571864] = { "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped" }, } }, - ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4481 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [15754647] = { "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped" }, } }, - ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4498 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [1592303791] = { "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped" }, } }, - ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4495 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1397871191] = { "You can apply an additional Curse if 6 Hunter Items are Equipped" }, } }, - ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4487 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, tradeHashes = { [436225640] = { "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped" }, } }, - ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4482 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778002979] = { "Skills fire an additional Projectile if 6 Hunter Items are Equipped" }, } }, - ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4486 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2239810203] = { "Melee Hits Fortify if 6 Warlord Items are Equipped" }, } }, - ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4489 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [355220397] = { "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped" }, } }, - ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4492 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2657325376] = { "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped" }, } }, - ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4484 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3423343084] = { "Cannot be Frozen if 6 Redeemer Items are Equipped" }, } }, - ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4488 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [3496906750] = { "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped" }, } }, - ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1138578442] = { "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped" }, } }, - ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4490 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2588231083] = { "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped" }, } }, - ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4491 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1038851119] = { "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped" }, } }, - ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4494 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1460122571] = { "+1 to Maximum Power Charges if 6 Crusader Items are Equipped" }, } }, - ["MovementSpeedPer5RageUnique_1"] = { affix = "", "(2-3)% increased Movement Speed per 5 Rage", statOrder = { 9424 }, level = 1, group = "MovementSpeedPer5Rage", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2876770866] = { "(2-3)% increased Movement Speed per 5 Rage" }, } }, - ["MaximumRageHalvedUnique_1"] = { affix = "", "Maximum Rage is Halved", statOrder = { 9180 }, level = 80, group = "MaximumRageHalved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [73569783] = { "Maximum Rage is Halved" }, } }, - ["DamageTakenPer5RageCappedAt50PercentUnique_1"] = { affix = "", "5% less Damage taken per 5 Rage, up to a maximum of 30%", statOrder = { 6096 }, level = 1, group = "DamageTakenLessPercentPer5RageCapped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733459550] = { "5% less Damage taken per 5 Rage, up to a maximum of 30%" }, } }, - ["AdditionalRageLossPerMinute"] = { affix = "", "Lose (1-3) Rage per second", statOrder = { 4586 }, level = 1, group = "AdditionalRageLossPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1124360291] = { "Lose (1-3) Rage per second" }, } }, - ["TrapAndMineThrowSpeedUnique_1"] = { affix = "", "(15-25)% increased Trap and Mine Throwing Speed", statOrder = { 10415 }, level = 20, group = "TrapAndMineThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(15-25)% increased Trap and Mine Throwing Speed" }, } }, - ["CountAsHavingMaxEnduranceChargesUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", statOrder = { 5885 }, level = 1, group = "CountAsHavingMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1090017486] = { "Count as having maximum number of Endurance Charges" }, } }, - ["CountAsHavingMaxFrenzyChargesUnique__1"] = { affix = "", "Count as having maximum number of Frenzy Charges", statOrder = { 5887 }, level = 1, group = "CountAsHavingMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2046300872] = { "Count as having maximum number of Frenzy Charges" }, } }, - ["CountAsHavingMaxPowerChargesUnique__1"] = { affix = "", "Count as having maximum number of Power Charges", statOrder = { 5888 }, level = 1, group = "CountAsHavingMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [800091665] = { "Count as having maximum number of Power Charges" }, } }, - ["CountAsBlockingAttackFromShieldAttackFirstTargetUnique__1"] = { affix = "", "Count as Blocking Attack Damage from the first target Hit with each Shield Attack", statOrder = { 5884 }, level = 40, group = "CountAsBlockingAttackFromShieldAttackFirstTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2196928545] = { "Count as Blocking Attack Damage from the first target Hit with each Shield Attack" }, } }, - ["CorruptedBloodImmunityUnique_1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["GhostTotemLimitUnique__1"] = { affix = "", "Maximum (3-5) Spectral Totems", statOrder = { 9534 }, level = 1, group = "GhostTotemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4154520427] = { "Maximum (3-5) Spectral Totems" }, } }, - ["GhostTotemDurationUnique__1"] = { affix = "", "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead", statOrder = { 5021 }, level = 1, group = "GhostTotemDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4016251064] = { "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead" }, } }, - ["GhostTotemDamageUnique__1"] = { affix = "", "Skills used by Spectral Totems deal (40-50)% less Damage", statOrder = { 6862 }, level = 80, group = "GhostTotemDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3959546773] = { "Skills used by Spectral Totems deal (40-50)% less Damage" }, } }, - ["FoolishlyDrawnAttentionUnique_1"] = { affix = "", "The stars are aligned if you have 6 Influence types among other Equipped Items", statOrder = { 499 }, level = 86, group = "FoolishlyDrawnAttention", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1389615049] = { "The stars are aligned if you have 6 Influence types among other Equipped Items" }, } }, - ["ConsecratedGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Consecrated Ground you create", statOrder = { 5847 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4058190193] = { "(30-50)% increased Effect of Consecrated Ground you create" }, } }, - ["BeltEnchantImplicit"] = { affix = "", "Can be Anointed", statOrder = { 7867 }, level = 1, group = "BeltEnchantImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [52068049] = { "Can be Anointed" }, } }, - ["UniqueYourAttacksCannotBeBlocked__1"] = { affix = "", "Monsters cannot Block your Attacks", statOrder = { 10668 }, level = 1, group = "YourAttacksCannotBeBlocked", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4136294199] = { "Monsters cannot Block your Attacks" }, } }, - ["UniqueYourSpellsCannotBeSuppressed__1"] = { affix = "", "Monsters cannot Suppress your Spells", statOrder = { 10698 }, level = 1, group = "YourSpellsCannotBeSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [870219767] = { "Monsters cannot Suppress your Spells" }, } }, - ["UniqueElementalResistancesCannotBePenetrated__1"] = { affix = "", "Elemental Resistances cannot be Penetrated", statOrder = { 6339 }, level = 1, group = "ElementalResistancesCannotBePenetrated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1025863792] = { "Elemental Resistances cannot be Penetrated" }, } }, - ["UniqueYourChargesCannotBeStolen__1"] = { affix = "", "Monsters cannot steal your Power, Frenzy or Endurance charges on Hit", statOrder = { 10686 }, level = 1, group = "YourChargesCannotBeStolen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1455353008] = { "Monsters cannot steal your Power, Frenzy or Endurance charges on Hit" }, } }, - ["UniqueAvoidChainingProjectiles__1"] = { affix = "", "Avoid Projectiles that have Chained", statOrder = { 4937 }, level = 1, group = "AvoidChainingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729118116] = { "Avoid Projectiles that have Chained" }, } }, - ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 10, 10.1, 10713 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, + ["LocalFreezeAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage", statOrder = { 8053 }, level = 1, group = "LocalFreezeAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHashes = { [2071306253] = { "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage" }, } }, + ["LocalShockAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage", statOrder = { 8054 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage" }, } }, + ["LocalWeaponMoreIgniteDamageUnique__1"] = { affix = "", "Ignites inflicted with this Weapon deal (50-75)% more Damage", statOrder = { 8055 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal (50-75)% more Damage" }, } }, + ["ChanceToThrowFourAdditionalTrapsUnique__1"] = { affix = "", "(4-6)% chance to throw up to 4 additional Traps", statOrder = { 5802 }, level = 1, group = "ChanceToThrowFourAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3132227798] = { "(4-6)% chance to throw up to 4 additional Traps" }, } }, + ["GainMaximumPowerChargesOnVaalSkillUseUnique__1"] = { affix = "", "Gain up to maximum Power Charges when you use a Vaal Skill", statOrder = { 6869 }, level = 1, group = "GainMaximumPowerChargesOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "vaal" }, tradeHashes = { [3558528738] = { "Gain up to maximum Power Charges when you use a Vaal Skill" }, } }, + ["GainRandomChargeOnVaalSkillUseUnique__1_"] = { affix = "", "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill", statOrder = { 6857 }, level = 1, group = "GainRandomChargeOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge", "vaal" }, tradeHashes = { [1258100102] = { "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill" }, } }, + ["CountOnFullLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Full Life while you are Cursed with Vulnerability", statOrder = { 3153 }, level = 1, group = "CountOnFullLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3257374551] = { "You count as on Full Life while you are Cursed with Vulnerability" }, } }, + ["VaalAttacksUseRageInsteadOfSoulsUnique__1_"] = { affix = "", "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls", statOrder = { 2718 }, level = 90, group = "VaalAttacksUseRageInsteadOfSouls", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1103075489] = { "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls" }, } }, + ["CannotGainRageDuringSoulGainPreventionUnique__1__"] = { affix = "", "You cannot gain Rage during Soul Gain Prevention", statOrder = { 5511 }, level = 1, group = "CannotGainRageDuringSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [683365179] = { "You cannot gain Rage during Soul Gain Prevention" }, } }, + ["SupportedByRageUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 30 Rage", statOrder = { 370 }, level = 1, group = "SupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [369650395] = { "Socketed Gems are Supported by Level 30 Rage" }, } }, + ["ReducedRageCostUnique__1"] = { affix = "", "(10-25)% reduced Rage Cost of Skills", statOrder = { 1907 }, level = 1, group = "RageCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3415234440] = { "(10-25)% reduced Rage Cost of Skills" }, } }, + ["RageCostEfficiencyUnique__1"] = { affix = "", "(20-40)% increased Rage Cost Efficiency", statOrder = { 5112 }, level = 1, group = "RageCostEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2416650879] = { "(20-40)% increased Rage Cost Efficiency" }, } }, + ["LifeAndReducedFireResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Life and reduced Fire Resistance", statOrder = { 1610 }, level = 1, group = "LifeAndReducedFireResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3018691556] = { "(30-40)% increased maximum Life and reduced Fire Resistance" }, } }, + ["ManaAndReducedColdResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Mana and reduced Cold Resistance", statOrder = { 1611 }, level = 1, group = "ManaAndReducedColdResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, tradeHashes = { [1156957589] = { "(30-40)% increased maximum Mana and reduced Cold Resistance" }, } }, + ["EnergyShieldAndReducedLightningResistanceUnique__1"] = { affix = "", "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance", statOrder = { 1612 }, level = 1, group = "EnergyShieldAndReducedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, tradeHashes = { [1381972535] = { "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance" }, } }, + ["VaalSkillDamageUnique__1"] = { affix = "", "(80-120)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 1, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(80-120)% increased Damage with Vaal Skills" }, } }, + ["VaalSoulGainPreventionUnique__1__"] = { affix = "", "(6-8)% reduced Soul Gain Prevention Duration", statOrder = { 3140 }, level = 1, group = "VaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1980613100] = { "(6-8)% reduced Soul Gain Prevention Duration" }, } }, + ["LuckyCriticalsOnLowLifeUnique__1___"] = { affix = "", "Your Critical Strike Chance is Lucky while on Low Life", statOrder = { 6619 }, level = 1, group = "LuckyCriticalsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2706122133] = { "Your Critical Strike Chance is Lucky while on Low Life" }, } }, + ["EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__"] = { affix = "", "Increases and Reductions to Maximum Energy Shield instead apply to Ward", statOrder = { 6516 }, level = 1, group = "EnergyShieldAdditiveModifiersInsteadApplyToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [4100175081] = { "Increases and Reductions to Maximum Energy Shield instead apply to Ward" }, } }, + ["GlobalAddedChaosDamageWardUnique__"] = { affix = "", "Gain Added Chaos Damage equal to 10% of Ward", statOrder = { 2091 }, level = 1, group = "GlobalAddedChaosDamageWard", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3535421504] = { "Gain Added Chaos Damage equal to 10% of Ward" }, } }, + ["LocalIncreasedWardPercentUnique__1_"] = { affix = "", "(33-48)% increased Ward", statOrder = { 1552 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(33-48)% increased Ward" }, } }, + ["LocalIncreasedWardPercentUnique__2"] = { affix = "", "(25-35)% increased Ward", statOrder = { 1552 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(25-35)% increased Ward" }, } }, + ["LocalIncreasedWardPercentUnique__3"] = { affix = "", "(30-50)% increased Ward", statOrder = { 1552 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(30-50)% increased Ward" }, } }, + ["LocalIncreasedWardPercentUnique__4_"] = { affix = "", "(50-80)% increased Ward", statOrder = { 1552 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(50-80)% increased Ward" }, } }, + ["DamageBypassesWardPercentUnique__1"] = { affix = "", "75% of Damage taken bypasses Ward", statOrder = { 5060 }, level = 1, group = "DamageBypassesWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3000966016] = { "75% of Damage taken bypasses Ward" }, } }, + ["LocalIncreasedWardUnique__1"] = { affix = "", "+(100-150) to Ward", statOrder = { 1550 }, level = 1, group = "LocalWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(100-150) to Ward" }, } }, + ["WardDelayRecoveryUnique__1"] = { affix = "", "(40-60)% faster Restoration of Ward", statOrder = { 1553 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(40-60)% faster Restoration of Ward" }, } }, + ["WardDelayRecoveryUnique__2"] = { affix = "", "(30-50)% slower Restoration of Ward", statOrder = { 1553 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(30-50)% slower Restoration of Ward" }, } }, + ["GrantsSummonArbalistsSkillUnique__1_"] = { affix = "", "Triggers Level 20 Summon Arbalists when Equipped", statOrder = { 797 }, level = 1, group = "GrantsSummonArbalistsSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3664803307] = { "Triggers Level 20 Summon Arbalists when Equipped" }, } }, + ["AdrenalineOnWardBreakUnique__1"] = { affix = "", "Gain Adrenaline for 3 seconds when Ward Breaks", statOrder = { 6809 }, level = 1, group = "AdrenalineOnWardBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4231915769] = { "Gain Adrenaline for 3 seconds when Ward Breaks" }, } }, + ["FlaskChargesFromKillsFinalUnique__1_"] = { affix = "", "80% less Flask Charges gained from Kills", statOrder = { 6724 }, level = 1, group = "FlaskChargesFromKillsFinal", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [624257168] = { "80% less Flask Charges gained from Kills" }, } }, + ["FlaskChargePerSecondUniqueEnemyUnique__1___"] = { affix = "", "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently", statOrder = { 6844 }, level = 1, group = "FlaskChargePerSecondUniqueEnemy", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3599443205] = { "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently" }, } }, + ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9667 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1886245216] = { "+1 to number of Summoned Arbalists" }, } }, + ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10431 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2087104263] = { "Summoned Arbalists fire (2-4) additional Projectiles" }, } }, + ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10421 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4054463312] = { "Summoned Arbalists have (30-40)% increased Attack Speed" }, } }, + ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10440 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3741465646] = { "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets" }, } }, + ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10439 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2461270975] = { "Summoned Arbalists' Projectiles Fork" }, } }, + ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10422 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3010688059] = { "Summoned Arbalists' Projectiles Chain +2 times" }, } }, + ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10432 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1857935842] = { "Summoned Arbalists' Projectiles Split into 3" }, } }, + ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10425 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3057722139] = { "Summoned Arbalists have (25-35)% chance to deal Double Damage" }, } }, + ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10428 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3652224635] = { "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit" }, } }, + ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10427 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3964074505] = { "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit" }, } }, + ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10430 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976916585] = { "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit" }, } }, + ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10445 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3327243369] = { "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit" }, } }, + ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10444 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit" }, } }, + ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10446 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit" }, } }, + ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10424 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1658936540] = { "Summoned Arbalists have (10-20)% chance to Crush on Hit" }, } }, + ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10437, 10442 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [831284309] = { "Summoned Arbalists have (10-20)% chance to Ignite" }, [2954406821] = { "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage" }, } }, + ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10436, 10441 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2052458107] = { "Summoned Arbalists have (10-20)% chance to Freeze" }, [1094808741] = { "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage" }, } }, + ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10438, 10443 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2144847042] = { "Summoned Arbalists have (10-20)% chance to Shock" }, [2934219859] = { "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage" }, } }, + ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10434, 10445 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1477474340] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage" }, [3327243369] = { "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit" }, } }, + ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10433, 10444 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit" }, [655918588] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage" }, } }, + ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10435, 10446 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit" }, [2631827343] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage" }, } }, + ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10423 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1841503755] = { "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding" }, } }, + ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10429 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894626576] = { "Summoned Arbalists have (40-60)% chance to Poison" }, } }, + ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10426 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [357325557] = { "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite" }, } }, + ["FlaskMoreWardUnique1"] = { affix = "", "85% less Ward during Effect", statOrder = { 1034 }, level = 1, group = "FlaskMoreWardUnique1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3615541554] = { "85% less Ward during Effect" }, } }, + ["FlaskFireColdLightningExposureOnNearbyEnemiesUnique1"] = { affix = "", "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used", statOrder = { 914 }, level = 1, group = "FlaskFireColdLightningExposureOnNearbyEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3933226405] = { "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used" }, } }, + ["FlaskNonDamagingAilmentIncreasedEffectUnique__1"] = { affix = "", "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect", statOrder = { 1019 }, level = 1, group = "FlaskNonDamagingAilmentIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1122693835] = { "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect" }, } }, + ["FlaskEnduranceChargePerSecondUnique1"] = { affix = "", "Gain 1 Endurance Charge per Second during Effect", statOrder = { 1004 }, level = 1, group = "FlaskEnduranceChargePerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3916499001] = { "Gain 1 Endurance Charge per Second during Effect" }, } }, + ["FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1"] = { affix = "", "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use", statOrder = { 915, 915.1 }, level = 1, group = "FlaskLoseAllEnduranceChargesGainLifePerLostCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [521653232] = { "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use" }, } }, + ["FlaskCullingStrikeUnique1"] = { affix = "", "Culling Strike during Effect", statOrder = { 1001 }, level = 1, group = "FlaskCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2175889777] = { "Culling Strike during Effect" }, } }, + ["FlaskRemoveEffectWhenWardBreaksUnique1"] = { affix = "", "Effect is removed when Ward Breaks", statOrder = { 890 }, level = 1, group = "FlaskRemoveEffectWhenWardBreaks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3617672145] = { "Effect is removed when Ward Breaks" }, } }, + ["FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1"] = { affix = "", "Debilitate nearby Enemies for 2 Seconds when Effect ends", statOrder = { 885 }, level = 1, group = "FlaskDebilitateNearbyEnemiesWhenEffectEnds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [545593248] = { "Debilitate nearby Enemies for 2 Seconds when Effect ends" }, } }, + ["EnemiesKilledCountAsYoursUnique__1"] = { affix = "", "Nearby Enemies Killed by anyone count as being Killed by you instead", statOrder = { 8001 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2307982579] = { "Nearby Enemies Killed by anyone count as being Killed by you instead" }, } }, + ["MagicUtilityFlasksAlwaysApplyUnique__1"] = { affix = "", "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4459 }, level = 56, group = "MagicUtilityFlasksAlwaysApply", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2388347909] = { "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } }, + ["MagicUtilityFlasksCannotUseUnique__1____"] = { affix = "", "Magic Utility Flasks cannot be Used", statOrder = { 4458 }, level = 1, group = "MagicUtilityFlasksCannotUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3986704288] = { "Magic Utility Flasks cannot be Used" }, } }, + ["MagicUtilityFlasksCannotRemoveUnique__1"] = { affix = "", "Magic Utility Flask Effects cannot be removed", statOrder = { 4461 }, level = 1, group = "MagicUtilityFlasksCannotRemove", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [344389721] = { "Magic Utility Flask Effects cannot be removed" }, } }, + ["MaximumElementalResistanceUnique__1__"] = { affix = "", "+(1-5)% to all maximum Elemental Resistances", statOrder = { 1666 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+(1-5)% to all maximum Elemental Resistances" }, } }, + ["MaximumElementalResistanceUnique__2"] = { affix = "", "-(6-4)% to all maximum Elemental Resistances", statOrder = { 1666 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "-(6-4)% to all maximum Elemental Resistances" }, } }, + ["MaximumElementalResistanceUnique__3"] = { affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1666 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all maximum Elemental Resistances" }, } }, + ["MaximumElementalResistanceUnique__4"] = { affix = "", "+(0-5)% to all maximum Elemental Resistances", statOrder = { 1666 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+(0-5)% to all maximum Elemental Resistances" }, } }, + ["BaseBlockDamageTakenUnique__1___"] = { affix = "", "You take 20% of Damage from Blocked Hits", statOrder = { 5049 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 20% of Damage from Blocked Hits" }, } }, + ["DoedresSkinLessCurseEffectUnique__1"] = { affix = "", "20% less Effect of your Curses", statOrder = { 2623 }, level = 1, group = "DoedresSkinLessCurseEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4106109768] = { "20% less Effect of your Curses" }, } }, + ["ChronomanceReservesNoMana"] = { affix = "", "Temporal Rift has no Reservation", statOrder = { 5862 }, level = 1, group = "ChronomanceReservesNoMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2139238642] = { "Temporal Rift has no Reservation" }, } }, + ["SupportGemsSocketedInOffHandAlsoSupportMainHandSkills"] = { affix = "", "Socketed Support Gems can also Support Skills from your Main Hand", statOrder = { 232 }, level = 1, group = "SupportGemsSocketedInOffHandAlsoSupportMainHandSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806627038] = { "Socketed Support Gems can also Support Skills from your Main Hand" }, } }, + ["SupportGemsSocketedInAmuletAlsoSupportBodySkills"] = { affix = "", "Socketed Support Gems can also Support Skills from Equipped Body Armour", statOrder = { 231 }, level = 90, group = "SupportGemsSocketedInAmuletAlsoSupportBodySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [591645420] = { "Socketed Support Gems can also Support Skills from Equipped Body Armour" }, } }, + ["FlaskLifeLeechIsInstantDuringEffect"] = { affix = "Pactbreaker's", "(80-90)% reduced Amount Recovered", "(200-250)% increased Recovery rate", "Life Leech is instant during Effect", statOrder = { 875, 876, 1015 }, level = 78, group = "FlaskLifeLeechIsInstantDuringEffect", weightKey = { "life_flask", "default", "hybrid_flask", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(80-90)% reduced Amount Recovered" }, [173226756] = { "(200-250)% increased Recovery rate" }, [3038036647] = { "Life Leech is instant during Effect" }, } }, + ["FlaskLessDurationUnique1"] = { affix = "", "(40-60)% less Duration", statOrder = { 881 }, level = 1, group = "FlaskMoreDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-60)% less Duration" }, } }, + ["FlaskLessDurationUnique2"] = { affix = "", "(40-60)% less Duration", statOrder = { 881 }, level = 1, group = "FlaskMoreDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-60)% less Duration" }, } }, + ["FlaskEffectUniqueJewel_10"] = { affix = "", "Flasks applied to you have 20% reduced Effect", statOrder = { 2776 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have 20% reduced Effect" }, } }, + ["FlaskDurationUniqueJewel_____8"] = { affix = "", "50% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "FlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "50% increased Flask Effect Duration" }, } }, + ["FlaskChargesUniqueJewel___8"] = { affix = "", "20% reduced Flask Charges gained", statOrder = { 2206 }, level = 1, group = "FlaskChargesUnique", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "20% reduced Flask Charges gained" }, } }, + ["FlaskChargesFromKillUniqueJewel_9"] = { affix = "", "80% less Flask Charges gained from Kills", statOrder = { 10654 }, level = 1, group = "FlaskChargesFromKillUniqueJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3790386828] = { "80% less Flask Charges gained from Kills" }, } }, + ["FlaskChargeOnHitNonUniqueUniqueJewel____9"] = { affix = "", "Flasks gain 2 Charges when you hit a Non-Unique Enemy, no more than once per second", statOrder = { 6736 }, level = 1, group = "FlaskChargeOnHitNonUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [196260576] = { "Flasks gain 2 Charges when you hit a Non-Unique Enemy, no more than once per second" }, } }, + ["FlaskChargePerSecondInactiveUniqueJewel_10"] = { affix = "", "Flasks gain 3 Charges every 3 seconds while they are inactive", statOrder = { 6737 }, level = 1, group = "FlaskChargePerSecondInactive", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3168399315] = { "Flasks gain 3 Charges every 3 seconds while they are inactive" }, } }, + ["ElementalResistanceHighestMaxResistanceUnique__1_"] = { affix = "", "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead", statOrder = { 6428 }, level = 1, group = "ElementalResistanceHighestMaxResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3082079953] = { "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead" }, } }, + ["EnergyShieldRechargeOnKillUnique__1__"] = { affix = "", "(10-20)% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6536 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "(10-20)% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, + ["LessRechargeRateSoullessEleganceUnique__1"] = { affix = "", "(30-40)% less Energy Shield Recharge Rate", statOrder = { 10665 }, level = 1, group = "LessRechargeRateSoullessElegance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3432301333] = { "(30-40)% less Energy Shield Recharge Rate" }, } }, + ["GlobalSkillGemLevelUnique__1"] = { affix = "", "+1 to Level of all Skill Gems", statOrder = { 4678 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } }, + ["GlobalSkillGemQualityUnique__1"] = { affix = "", "+(20-30)% to Quality of all Skill Gems", statOrder = { 4679 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(20-30)% to Quality of all Skill Gems" }, } }, + ["GlobalGemExperienceGainUnique__1"] = { affix = "", "(5-10)% increased Experience Gain of Gems", statOrder = { 1902 }, level = 1, group = "GlobalGemExperienceGain", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3808869043] = { "(5-10)% increased Experience Gain of Gems" }, } }, + ["ElementalSkillsTripleDamageUnique__1"] = { affix = "", "Deal Triple Damage with Elemental Skills", statOrder = { 6430 }, level = 85, group = "ElementalSkillsTripleDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [115695112] = { "Deal Triple Damage with Elemental Skills" }, } }, + ["SocketedGemsMoreDamageForSpellsCastUnique__1"] = { affix = "", "Socketed Projectile Spells deal 150% more Damage with Hits", statOrder = { 569 }, level = 1, group = "SocketedGemsMoreDamageForSpellsCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443457281] = { "Socketed Projectile Spells deal 150% more Damage with Hits" }, } }, + ["SocketedGemsAddedCooldownUnique__1__"] = { affix = "", "Socketed Projectile Spells have +4 seconds to Cooldown", statOrder = { 570 }, level = 1, group = "SocketedGemsAddedCooldown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [470459031] = { "Socketed Projectile Spells have +4 seconds to Cooldown" }, } }, + ["SocketedGemsLessDurationUnique__1"] = { affix = "", "Socketed Projectile Spells have 80% less Skill Effect Duration", statOrder = { 623 }, level = 1, group = "SocketedGemsLessDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3104895675] = { "Socketed Projectile Spells have 80% less Skill Effect Duration" }, } }, + ["AttributeModifiersAscendanceUnique__1_"] = { affix = "", "Modifiers to Attributes instead apply to Omniscience", statOrder = { 1210 }, level = 77, group = "AttributeModifiersAscendance", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1411347992] = { "Modifiers to Attributes instead apply to Omniscience" }, } }, + ["ElementalResistPerAscendanceUnique__1__"] = { affix = "", "+1% to all Elemental Resistances per 15 Omniscience", statOrder = { 1211 }, level = 1, group = "ElementalResistPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2569472704] = { "+1% to all Elemental Resistances per 15 Omniscience" }, } }, + ["ElementalPenPerAscendanceUnique__1"] = { affix = "", "Penetrate 1% Elemental Resistances per 15 Omniscience", statOrder = { 1212 }, level = 1, group = "ElementalPenPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2757041809] = { "Penetrate 1% Elemental Resistances per 15 Omniscience" }, } }, + ["AttributeRequirementsAscendanceUnique__1"] = { affix = "", "Attribute Requirements can be satisfied by (15-25)% of Omniscience", statOrder = { 1213 }, level = 1, group = "AttributeRequirementsAscendance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3024338155] = { "Attribute Requirements can be satisfied by (15-25)% of Omniscience" }, } }, + ["LeftRingCoveredInAshUnique__1_"] = { affix = "", "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them", statOrder = { 8091 }, level = 100, group = "LeftRingCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2533512212] = { "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them" }, } }, + ["RightRingCoveredInFrostUnique__1"] = { affix = "", "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them", statOrder = { 8120 }, level = 1, group = "RightRingCoveredInFrost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3536082205] = { "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them" }, } }, + ["LifeLossReservesLifeUnique__1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 2 seconds", statOrder = { 10066, 10066.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 2 seconds" }, } }, + ["AttackCorrosionOnHitChanceUnique__1"] = { affix = "", "(20-30)% chance to inflict Corrosion on Hit with Attacks", statOrder = { 4967 }, level = 1, group = "AttackCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2523122963] = { "(20-30)% chance to inflict Corrosion on Hit with Attacks" }, } }, + ["EnduranceChargeNoArmourUnique__1_"] = { affix = "", "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour", statOrder = { 6448 }, level = 1, group = "EnduranceChargeNoArmour", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3488208924] = { "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour" }, } }, + ["FrenzyChargeNoEvasionRatingUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating", statOrder = { 6762 }, level = 1, group = "FrenzyChargeNoEvasionRating", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [471924383] = { "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating" }, } }, + ["BowAttacksFrenzyChargesArrowsUnique__1"] = { affix = "", "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows", statOrder = { 1816 }, level = 1, group = "BowAttacksFrenzyChargesArrows", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2522975315] = { "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows" }, } }, + ["CriticalStrikeMultiplierFrenzyChargesUnique__1"] = { affix = "", "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge", statOrder = { 2077 }, level = 1, group = "CriticalStrikeMultiplierFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3375516056] = { "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge" }, } }, + ["FrenzyChargePerEnemyCritUnique__1"] = { affix = "", "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike", statOrder = { 6855 }, level = 1, group = "FrenzyChargePerEnemyCrit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1302845655] = { "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike" }, } }, + ["MoreMaximumReservedLifeUnique__1"] = { affix = "", "(20-30)% more Maximum Life", statOrder = { 10658 }, level = 1, group = "MoreMaximumReservedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2783958145] = { "(20-30)% more Maximum Life" }, } }, + ["PuzzlePieceCleansingFireUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flesh", statOrder = { 10656 }, level = 1, group = "PuzzlePieceCleansingFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1190333629] = { "Allocates 1 if you have the matching modifier on Forbidden Flesh" }, } }, + ["PuzzlePieceGreatTangleUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flame", statOrder = { 10657 }, level = 1, group = "PuzzlePieceGreatTangle", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2460506030] = { "Allocates 1 if you have the matching modifier on Forbidden Flame" }, } }, + ["GlobalNoEnergyShieldUnique__1"] = { affix = "", "Removes all Energy Shield", statOrder = { 2189 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1482608021] = { "Removes all Energy Shield" }, } }, + ["NearbyStationaryEnemiesGainVinesUnique__1"] = { affix = "", "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds", statOrder = { 4463 }, level = 1, group = "NearbyStationaryEnemiesGainVines", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3469279727] = { "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds" }, } }, + ["GainVinesOnCriticalStrikeUnique__1"] = { affix = "", "You gain 3 Grasping Vines when you take a Critical Strike", statOrder = { 4462 }, level = 1, group = "GainVinesOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [375932027] = { "You gain 3 Grasping Vines when you take a Critical Strike" }, } }, + ["AllDamagePoisonsGraspingVinesUnique__1"] = { affix = "", "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines", statOrder = { 4464 }, level = 1, group = "AllDamagePoisonsGraspingVines", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3190526553] = { "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines" }, } }, + ["ReducedCriticalDamageTakenPoisonUnique__1"] = { affix = "", "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies", statOrder = { 4466 }, level = 1, group = "ReducedCriticalDamageTakenPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2070361501] = { "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies" }, } }, + ["PhysicalHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Physical Damage taken as Fire Damage", statOrder = { 9812 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "(10-20)% of Physical Damage taken as Fire Damage" }, } }, + ["PhysicalHitAndDoTDamageTakenAsFireUnique__2"] = { affix = "", "40% of Physical Damage taken as Fire Damage", statOrder = { 9812 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "40% of Physical Damage taken as Fire Damage" }, } }, + ["ColdHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Cold Damage taken as Fire Damage", statOrder = { 5907 }, level = 1, group = "ColdHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1642347505] = { "(10-20)% of Cold Damage taken as Fire Damage" }, } }, + ["LightningHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Lightning Damage taken as Fire Damage", statOrder = { 7561 }, level = 1, group = "LightningHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1244494473] = { "(10-20)% of Lightning Damage taken as Fire Damage" }, } }, + ["ScorchOnEnemiesOnBlockUnique__1"] = { affix = "", "Scorch Enemies in Close Range when you Block", statOrder = { 10108 }, level = 1, group = "ScorchOnEnemiesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [41178696] = { "Scorch Enemies in Close Range when you Block" }, } }, + ["AttackBlockPerFireDamageTakenUnique__1"] = { affix = "", "-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently", statOrder = { 4886 }, level = 1, group = "AttackBlockPerFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [8517868] = { "-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently" }, } }, + ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite", statOrder = { 8069, 8083 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2298311736] = { "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite" }, [3802517517] = { "" }, [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, + ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken does not bypass Energy Shield", statOrder = { 5055 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1865744989] = { "33% of Chaos Damage taken does not bypass Energy Shield" }, } }, + ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 656 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3379724776] = { "33% of Non-Chaos 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 = { 8089 }, 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 Strikes inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 8059 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Strikes inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, + ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 594 }, 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 Exerting the Attack", statOrder = { 10122, 10122.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Exerting the Attack" }, } }, + ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Exerting them", statOrder = { 10651 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Exerting them" }, } }, + ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage with Hits can Chill", statOrder = { 2894 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage with Hits can Chill" }, } }, + ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage Taken from Hits can Chill you", statOrder = { 2897 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244239777] = { "All Damage Taken from Hits can Chill you" }, } }, + ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4674 }, 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 = { 5861 }, 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 have Damage taken increased by Chill Effect", statOrder = { 6457 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits have Damage taken increased by Chill Effect" }, } }, + ["EnemiesChilledLessDamageDealtUnique__1"] = { affix = "", "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect", statOrder = { 6456 }, level = 1, group = "EnemiesChilledLessDamageDealt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3594661200] = { "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect" }, } }, + ["GainSoulEaterStackOnHitUnique__1"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6916 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds" }, } }, + ["GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1"] = { affix = "", "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon", statOrder = { 8048 }, level = 1, group = "GainSoulEaterStackOnRareOrUniqueKillWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2859483755] = { "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon" }, } }, + ["SoulEaterStackCountUnique__1"] = { affix = "", "+(-10-10) to maximum number of Eaten Souls", statOrder = { 7365 }, level = 1, group = "SoulEaterStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1915836277] = { "+(-10-10) to maximum number of Eaten Souls" }, } }, + ["LifeRegenerationNotAppliedUnique__1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7491 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, + ["RageRegenerationPerLifeRegenerationUnique__1"] = { affix = "", "Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration", "Does not delay Inherent Loss of Rage", statOrder = { 10035, 10035.1 }, level = 1, group = "RageRegenerationPerLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4103111421] = { "Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration", "Does not delay Inherent Loss of Rage" }, } }, + ["EnduringCrySkillUnique__1"] = { affix = "", "Grants Level 10 Enduring Cry Skill", statOrder = { 717 }, level = 1, group = "EnduringCrySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1031644844] = { "Grants Level 10 Enduring Cry Skill" }, } }, + ["NearbyEnemiesAreBlindedUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3432 }, level = 10, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } }, + ["SpellsDoubleDamageChanceUnique__1"] = { affix = "", "Spells have a 20% chance to deal Double Damage", statOrder = { 10282 }, level = 1, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a 20% chance to deal Double Damage" }, } }, + ["CoverInAshOnHitUnique__1"] = { affix = "", "10% chance to Cover Enemies in Ash on Hit", statOrder = { 5976 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324460247] = { "10% chance to Cover Enemies in Ash on Hit" }, } }, + ["GrantsTouchOfFireUnique__1"] = { affix = "", "Grants Level 20 Approaching Flames Skill", statOrder = { 740 }, level = 1, group = "GrantsTouchOfFireSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1943415243] = { "Grants Level 20 Approaching Flames Skill" }, } }, + ["GainAdrenalineFireTouchedGainUnique__1"] = { affix = "", "Gain Adrenaline when you become Flame-Touched", statOrder = { 6808 }, level = 1, group = "GainAdrenalineFireTouchedGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [349619704] = { "Gain Adrenaline when you become Flame-Touched" }, } }, + ["LoseAdrenalineFireTouchedLossUnique__1"] = { affix = "", "Lose Adrenaline when you cease to be Flame-Touched", statOrder = { 8247 }, level = 1, group = "LoseAdrenalineFireTouchedLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [138579627] = { "Lose Adrenaline when you cease to be Flame-Touched" }, } }, + ["FireDamageTakenFireTouchedUnique__1"] = { affix = "", "Take 6000 Fire Damage per Second while Flame-Touched", statOrder = { 6660 }, level = 1, group = "FireDamageTakenFireTouched", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3511992942] = { "Take 6000 Fire Damage per Second while Flame-Touched" }, } }, + ["HasOnslaughtUnique__1"] = { affix = "", "Onslaught", statOrder = { 3633 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, + ["MinionPhysicalConvertToColdUnique__1"] = { affix = "", "Minions convert 50% of Physical Damage to Cold Damage", statOrder = { 1981 }, level = 1, group = "MinionPhysicalConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264042266] = { "Minions convert 50% of Physical Damage to Cold Damage" }, } }, + ["MinionOnlyDealColdDamageUnique__1"] = { affix = "", "Minions deal no Non-Cold Damage", statOrder = { 9432 }, level = 1, group = "MinionOnlyDealColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [935592011] = { "Minions deal no Non-Cold Damage" }, } }, + ["LifeRegenerationFlatOnLowLifeUnique__1"] = { affix = "", "Regenerate 100 Life per Second while on Low Life", statOrder = { 7529 }, level = 1, group = "LifeRegenerationFlatOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2161482953] = { "Regenerate 100 Life per Second while on Low Life" }, } }, + ["TouchedByTormentedSpiritsUnique__1"] = { affix = "", "You can be Touched by Tormented Spirits", statOrder = { 9820 }, level = 1, group = "TouchedByTormentedSpirits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4197792189] = { "You can be Touched by Tormented Spirits" }, } }, + ["QuicksilverFlaskAppliesToAlliesUnique__1"] = { affix = "", "Quicksilver Flasks you Use also apply to nearby Allies", statOrder = { 9923 }, level = 1, group = "QuicksilverFlaskAppliesToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [699756626] = { "Quicksilver Flasks you Use also apply to nearby Allies" }, } }, + ["ColdAddedAsFireChilledEnemyUnique__1"] = { affix = "", "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy", statOrder = { 5884 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3086896309] = { "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy" }, } }, + ["ColdAddedAsFireFrozenEnemyUnique__1"] = { affix = "", "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5885 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1383929411] = { "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies" }, } }, + ["LightningAddedAsColdShockedEnemyUnique__1"] = { affix = "", "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy", statOrder = { 7548 }, level = 1, group = "LightningAddedAsColdShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [13172430] = { "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy" }, } }, + ["LightningDamageAsPortionOfDamageUniqueTalisman3"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 55, group = "LightningDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (10-15)% of Physical Damage as Extra Lightning Damage" }, } }, + ["LightningAddedAsColdUniqueTalisman3"] = { affix = "", "Gain (15-20)% of Lightning Damage as Extra Cold Damage", statOrder = { 1960 }, level = 1, group = "LightningAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3291347617] = { "Gain (15-20)% of Lightning Damage as Extra Cold Damage" }, } }, + ["ColdAddedAsFireUniqueTalisman3"] = { affix = "", "Gain (20-25)% of Cold Damage as Extra Fire Damage", statOrder = { 1962 }, level = 1, group = "ColdAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [3955762759] = { "Gain (20-25)% of Cold Damage as Extra Fire Damage" }, } }, + ["ChaosDamageAsPortionOfFireDamageUniqueTalisman3"] = { affix = "", "Gain (25-30)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (25-30)% of Fire Damage as Extra Chaos Damage" }, } }, + ["DoubleDamageWith200StrengthUnique__1"] = { affix = "", "10% chance to deal Double Damage while you have at least 200 Strength", statOrder = { 5735 }, level = 1, group = "DoubleDamageWith200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1535606605] = { "10% chance to deal Double Damage while you have at least 200 Strength" }, } }, + ["TripleDamageWith400StrengthUnique__1"] = { affix = "", "5% chance to deal Triple Damage while you have at least 400 Strength", statOrder = { 5747 }, level = 1, group = "TripleDamageWith400Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147155654] = { "5% chance to deal Triple Damage while you have at least 400 Strength" }, } }, + ["BlockChanceVersusCursedEnemiesUnique__1"] = { affix = "", "+20% Chance to Block Attack Damage from Cursed Enemies", statOrder = { 5298 }, level = 1, group = "BlockChanceVersusCursedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3304203764] = { "+20% Chance to Block Attack Damage from Cursed Enemies" }, } }, + ["ApplyDecayOnCurseUnique__1"] = { affix = "", "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds", statOrder = { 6226 }, level = 1, group = "ApplyDecayOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [773846741] = { "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds" }, } }, + ["FrenzyChargeOnHitBlindedUnique__1"] = { affix = "", "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded", statOrder = { 6849 }, level = 1, group = "FrenzyChargeOnHitBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2478268100] = { "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded" }, } }, + ["RecoverLifeOnSuppressUnique__1"] = { affix = "", "Recover (100-200) Life when you Suppress Spell Damage", statOrder = { 9993 }, level = 1, group = "RecoverLifeOnSuppress", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1807705940] = { "Recover (100-200) Life when you Suppress Spell Damage" }, } }, + ["PhasingOnLowLifeUnique__1"] = { affix = "", "You have Phasing while on Low Life", statOrder = { 6893 }, level = 1, group = "PhasingOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [23466649] = { "You have Phasing while on Low Life" }, } }, + ["ElusiveOnLowLifeUnique__1"] = { affix = "", "Gain Elusive on reaching Low Life", statOrder = { 6836 }, level = 1, group = "ElusiveOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2868692131] = { "Gain Elusive on reaching Low Life" }, } }, + ["KnockbackDistanceUnique__1"] = { affix = "", "100% increased Knockback Distance", statOrder = { 2025 }, level = 1, group = "KnockbackDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [565784293] = { "100% increased Knockback Distance" }, } }, + ["StrikeSkillKnockbackUnique__1"] = { affix = "", "Melee Hits with Strike Skills always Knockback", statOrder = { 10407 }, level = 1, group = "StrikeSkillKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1737583880] = { "Melee Hits with Strike Skills always Knockback" }, } }, + ["MeleeSplashUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1191 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, + ["AdrenalineOnKillUnique__1"] = { affix = "", "Gain Adrenaline for (1-3) second on Kill", statOrder = { 6805 }, level = 38, group = "AdrenalineOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4145689649] = { "Gain Adrenaline for (1-3) second on Kill" }, } }, + ["LifeCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Life Cost equal to 100% of Base Mana Cost", statOrder = { 5116 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills gain a Base Life Cost equal to 100% of Base Mana Cost" }, } }, + ["EnergyShieldCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost", statOrder = { 5115 }, level = 1, group = "EnergyShieldCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4013794060] = { "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost" }, } }, + ["BowAttacksCullingStrikeUnique__1"] = { affix = "", "Bow Attacks have Culling Strike", statOrder = { 5336 }, level = 1, group = "BowAttacksCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4217693429] = { "Bow Attacks have Culling Strike" }, } }, + ["MovementVelocityPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, 1% increased Movement Speed", statOrder = { 9544 }, level = 1, group = "MovementVelocityPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [504462346] = { "For each nearby corpse, 1% increased Movement Speed" }, } }, + ["FlatLifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 8 Life per second", statOrder = { 7499 }, level = 1, group = "FlatLifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2500585555] = { "For each nearby corpse, Regenerate 8 Life per second" }, } }, + ["WeaponAddedLightningDamagePerEnergyShieldUnique__1"] = { affix = "", "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield", statOrder = { 6555 }, level = 1, group = "WeaponAddedLightningDamagePerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [973269941] = { "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield" }, } }, + ["SkillsExertAttacksDoNotCountChanceUnique__1"] = { affix = "", "Skills which Exert an Attack have (20-40)% chance to not count that Attack", statOrder = { 5618 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Exert an Attack have (20-40)% chance to not count that Attack" }, } }, + ["CannotHaveNonSpectreMinionsUnique__1"] = { affix = "", "You cannot have Non-Spectre Minions", statOrder = { 10815 }, level = 1, group = "CannotHaveNonSpectreMinions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2836980154] = { "You cannot have Non-Spectre Minions" }, } }, + ["MinimumChargesEqualToMaximumWhileStationaryUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5969, 5969.1, 5969.2 }, level = 1, group = "MinimumChargesEqualToMaximumWhileStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, + ["ThrowTrapsInCircleUnique__1"] = { affix = "", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10666 }, level = 1, group = "ThrowTrapsInCircleSunblast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2727188901] = { "Traps from Skills are thrown randomly around targeted location" }, } }, + ["TrapsCannotBeTriggeredByEnemiesUnique__1"] = { affix = "", "Traps cannot be triggered by Enemies", statOrder = { 10573 }, level = 1, group = "TrapsCannotBeTriggeredByEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1861759600] = { "Traps cannot be triggered by Enemies" }, } }, + ["AdditionalTrapsThrownUnique__1"] = { affix = "", "Skills which Throw Traps throw up to 2 additional Traps", statOrder = { 9664 }, level = 1, group = "AdditionalTrapsThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 2 additional Traps" }, } }, + ["FreezeEnemiesWhenHitChanceUnique__1"] = { affix = "", "20% chance to Freeze Enemies for 1 second when they Hit you", statOrder = { 5757 }, level = 1, group = "FreezeEnemiesWhenHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2168861013] = { "20% chance to Freeze Enemies for 1 second when they Hit you" }, } }, + ["AddedChaosDamagePerCurseUnique__1"] = { affix = "", "Adds 37 to 71 Chaos Damage for each Curse on the Enemy", statOrder = { 9357 }, level = 1, group = "AddedChaosDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4294344579] = { "Adds 37 to 71 Chaos Damage for each Curse on the Enemy" }, } }, + ["GolemsAddedPhysicalDamageUnique__1"] = { affix = "", "Golems have (96-120) to (132-160) Added Attack Physical Damage", statOrder = { 6987 }, level = 1, group = "GolemsAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1417394145] = { "Golems have (96-120) to (132-160) Added Attack Physical Damage" }, } }, + ["GainMaximumEnduranceChargesWhenCritUnique__1"] = { affix = "", "Gain up to maximum Endurance Charges when you take a Critical Strike", statOrder = { 6862 }, level = 1, group = "GainMaximumEnduranceChargesWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4080206249] = { "Gain up to maximum Endurance Charges when you take a Critical Strike" }, } }, + ["ShareMaximumEnduranceChargesPartyUnique__1"] = { affix = "", "Your nearby party members maximum Endurance Charges is equal to yours", statOrder = { 9599 }, level = 1, group = "ShareMaximumEnduranceChargesParty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [598215770] = { "Your nearby party members maximum Endurance Charges is equal to yours" }, } }, + ["SkeletonWarriorsPermanentMinionUnique__1"] = { affix = "", "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior", statOrder = { 10197, 10197.1 }, level = 1, group = "SkeletonWarriorsPermanentMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1021552211] = { "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior" }, } }, + ["ConsecratedGroundStationarySTRHighestUnique__1"] = { affix = "", "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute", statOrder = { 5939, 5939.1 }, level = 1, group = "ConsecratedGroundStationarySTRHighest", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1196333117] = { "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute" }, } }, + ["ProfaneGroundCriticalStrikeINTHighestUnique__1"] = { affix = "", "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute", statOrder = { 9868, 9868.1 }, level = 1, group = "ProfaneGroundCriticalStrikeINTHighest", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2047846165] = { "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute" }, } }, + ["ConsecratedGroundLingersUnique__1"] = { affix = "", "Effects of Consecrated Ground you create Linger for 4 seconds", statOrder = { 10846 }, level = 1, group = "ConsecratedGroundLingers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 4 seconds" }, } }, + ["ProfaneGroundLingersUnique__1"] = { affix = "", "Effects of Profane Ground you create Linger for 4 seconds", statOrder = { 10851 }, level = 1, group = "ProfaneGroundLingers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636871122] = { "Effects of Profane Ground you create Linger for 4 seconds" }, } }, + ["RandomProjectileDirectionUnique__1"] = { affix = "", "Projectiles are fired in random directions", statOrder = { 9971 }, level = 60, group = "RandomProjectileDirection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4159765624] = { "Projectiles are fired in random directions" }, } }, + ["ReturningProjectilesUnique__1"] = { affix = "", "Projectiles Return to you", statOrder = { 2857 }, level = 1, group = "ReturningProjectilesNoHitObject", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4015038379] = { "Projectiles Return to you" }, } }, + ["LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1"] = { affix = "", "When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead", statOrder = { 10659 }, level = 75, group = "LifeLossToPreventDuringFlaskEffectToLoseOverTime", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [41860024] = { "When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead" }, } }, + ["EnemyExplosionRandomElementFlaskEffectUnique__1"] = { affix = "", "Enemies you Kill during Effect have a (20-30)% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element", statOrder = { 1045 }, level = 71, group = "EnemyExplosionRandomElementFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2165415361] = { "Enemies you Kill during Effect have a (20-30)% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element" }, } }, + ["CastSpeedAppliesToAttackSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed apply to Attack Speed", statOrder = { 10650 }, level = 1, group = "CastSpeedAppliesToAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4126447694] = { "Increases and Reductions to Cast Speed apply to Attack Speed" }, } }, + ["SpellImpaleOnCritChanceUnique__1"] = { affix = "", "Critical Strikes with Spells inflict Impale", statOrder = { 10308 }, level = 1, group = "SpellImpaleOnCritChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4084476257] = { "Critical Strikes with Spells inflict Impale" }, } }, + ["SpellImpaleEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Impales inflicted with Spells", statOrder = { 7346 }, level = 1, group = "SpellImpaleEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1480595847] = { "(30-50)% increased Effect of Impales inflicted with Spells" }, } }, + ["YouCannotImpaleTheImpaledUnique_1UNUSED"] = { affix = "", "DNT Impaled Enemies Cannot be Impaled", statOrder = { 10816 }, level = 1, group = "ImpaledEnemiesCannotBeImpaled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4294017425] = { "DNT Impaled Enemies Cannot be Impaled" }, } }, + ["HitsCannotInflictMoreThanOneImpale_1UNUSED"] = { affix = "", "Your Hits cannot inflict more than 1 Impale", statOrder = { 7260 }, level = 100, group = "CannotInflictMoreThanOneImpale", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [452960025] = { "Your Hits cannot inflict more than 1 Impale" }, } }, + ["ImpalesInflictedLastAdditionalHitsUnique_1UNUSED"] = { affix = "", "Impales you inflict last (3-6) additional Hits", statOrder = { 7356 }, level = 1, group = "ImpaleLastsForExtraHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3425951133] = { "Impales you inflict last (3-6) additional Hits" }, } }, + ["ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1"] = { affix = "", "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit", statOrder = { 7359 }, level = 100, group = "ChanceMeleeHitsDontConsumeStrongestImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2136537914] = { "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit" }, } }, + ["ImpaleDurationUnique_1"] = { affix = "", "(40-50)% less Impale Duration", statOrder = { 8127 }, level = 1, group = "ImpaledDebuffDurationFromWoeSpike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961864874] = { "(40-50)% less Impale Duration" }, } }, + ["ChanceMeleeHitsDontConsumeImpalesUnique_1UNUSED"] = { affix = "", "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit", statOrder = { 7358 }, level = 1, group = "ChanceMeleeHitsDontConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2314992402] = { "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit" }, } }, + ["AncestorTotemBuffLingersUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10933 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, + ["OneAncestorTotemBuffUnique__1"] = { affix = "", "Socketed Slam Gems are Supported by Level 25 Earthbreaker", statOrder = { 272 }, level = 1, group = "OneAncestorTotemBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [940684417] = { "Socketed Slam Gems are Supported by Level 25 Earthbreaker" }, } }, + ["DamageTakenFromTotemLifeBeforePlayerUnique__1"] = { affix = "", "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6181 }, level = 1, group = "DamageTakenFromTotemLifeBeforePlayer", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2762445213] = { "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, + ["ElementalDamageReductionChaosResistUnique__1"] = { affix = "", "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance", statOrder = { 4101 }, level = 65, group = "ElementalDamageReductionChaosResist", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3990082744] = { "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance" }, } }, + ["SelfIgniteDurationAllElementalAilmentsUnique__1"] = { affix = "", "Modifiers to Ignite Duration on you apply to all Elemental Ailments", statOrder = { 7028 }, level = 1, group = "SelfIgniteDurationAllElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2845551354] = { "Modifiers to Ignite Duration on you apply to all Elemental Ailments" }, } }, + ["ShockAvoidanceAllElementalAilmentsUnique__1"] = { affix = "", "Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments", statOrder = { 7026 }, level = 1, group = "ShockAvoidanceAllElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2543019543] = { "Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments" }, } }, + ["CurseLimitMaximumPowerChargesUnique__1"] = { affix = "", "Your Curse Limit is equal to your maximum Power Charges", statOrder = { 7027 }, level = 1, group = "CurseLimitMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [973000407] = { "Your Curse Limit is equal to your maximum Power Charges" }, } }, + ["PowerChargeOnCurseUnique__1"] = { affix = "", "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell", statOrder = { 6897 }, level = 1, group = "PowerChargeOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [322835727] = { "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell" }, } }, + ["ImmuneToCursesRemainingDurationUnique__1"] = { affix = "", "When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to", "Curses for remaining Hex Duration", statOrder = { 7321, 7321.1 }, level = 1, group = "ImmuneToCursesRemainingDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1406092431] = { "When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to", "Curses for remaining Hex Duration" }, } }, + ["SpellCritChanceEqualsWeaponCritChanceUnique__1"] = { affix = "", "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon", statOrder = { 5118 }, level = 1, group = "SpellCritChanceEqualsWeaponCritChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2560911401] = { "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon" }, } }, + ["AttacksCannotCritUnique__1"] = { affix = "", "Cannot deal Critical Strikes with Attacks", statOrder = { 5505 }, level = 1, group = "AttacksCannotCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3223376951] = { "Cannot deal Critical Strikes with Attacks" }, } }, + ["CursedEnemiesCannotInflictElementalAilmentsUnique__1"] = { affix = "", "Cursed Enemies cannot inflict Elemental Ailments on You", statOrder = { 5517 }, level = 30, group = "CursedEnemiesCannotInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2643613764] = { "Cursed Enemies cannot inflict Elemental Ailments on You" }, } }, + ["AvoidInterruptionWhileCastingUnique__1"] = { affix = "", "Ignore Stuns while Casting", statOrder = { 1921 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1916706958] = { "Ignore Stuns while Casting" }, } }, + ["MaximumCritChanceIs50Unique__1"] = { affix = "", "Maximum Critical Strike Chance is 50%", statOrder = { 9253 }, level = 1, group = "MaximumCritChanceIs50", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1463929958] = { "Maximum Critical Strike Chance is 50%" }, } }, + ["DealNoElementalPhysicalDamageUnique__1"] = { affix = "", "Deal no Physical or Elemental Damage", statOrder = { 6230 }, level = 1, group = "DealNoElementalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4157542794] = { "Deal no Physical or Elemental Damage" }, } }, + ["TemporalChainsCooldownRecoveryUnique__1"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds", statOrder = { 5952 }, level = 1, group = "TemporalChainsCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2954796309] = { "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds" }, } }, + ["TemporalChainsCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds", statOrder = { 4570 }, level = 1, group = "TemporalChainsCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3616500790] = { "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds" }, } }, + ["DespairWitherOnHitUnique__1"] = { affix = "", "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds", statOrder = { 7383 }, level = 1, group = "DespairWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1904031052] = { "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds" }, } }, + ["DespairImmuneToCursesUnique__1"] = { affix = "", "Immune to Curses if you've cast Despair in the past 10 seconds", statOrder = { 7320 }, level = 1, group = "DespairImmuneToCurses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2773026887] = { "Immune to Curses if you've cast Despair in the past 10 seconds" }, } }, + ["ElementalWeaknessPhysicalAsRandomElementUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 6894 }, level = 1, group = "ElementalWeaknessPhysicalAsRandomElement", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4281949537] = { "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds" }, } }, + ["ElementalWeaknessImmuneToExposureUnique__1"] = { affix = "", "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 7329 }, level = 1, group = "ElementalWeaknessImmuneToExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2921954092] = { "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds" }, } }, + ["EnfeebleCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds", statOrder = { 6058 }, level = 1, group = "EnfeebleCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2379274646] = { "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds" }, } }, + ["EnfeebleNoExtraCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds", statOrder = { 10503 }, level = 1, group = "EnfeebleNoExtraCritDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077357269] = { "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds" }, } }, + ["ConductivityUnaffectedByShockUnique__1"] = { affix = "", "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds", statOrder = { 10635 }, level = 1, group = "ConductivityUnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517037025] = { "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds" }, } }, + ["ConductivityLightningExposureOnHitUnique__1"] = { affix = "", "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds", statOrder = { 7380 }, level = 1, group = "ConductivityLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3339663313] = { "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds" }, } }, + ["FlammabilityUnaffectedByIgniteUnique__1"] = { affix = "", "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds", statOrder = { 10632 }, level = 1, group = "FlammabilityUnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40907696] = { "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds" }, } }, + ["FlammabilityFireExposureOnHitUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds", statOrder = { 7375 }, level = 1, group = "FlammabilityFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3259812992] = { "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds" }, } }, + ["FrostbiteUnaffectedByFreezeUnique__1"] = { affix = "", "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds", statOrder = { 10628 }, level = 1, group = "FrostbiteUnaffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4194606073] = { "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds" }, } }, + ["FrostbiteColdExposureOnHitUnique__1"] = { affix = "", "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds", statOrder = { 7373 }, level = 1, group = "FrostbiteColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1168138239] = { "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds" }, } }, + ["PunishmentImmuneToReflectedDamageUnique__1"] = { affix = "", "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds", statOrder = { 7337 }, level = 1, group = "PunishmentImmuneToReflectedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2713909980] = { "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds" }, } }, + ["PunishmentIntimidateOnHitUnique__1"] = { affix = "", "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds", statOrder = { 7396 }, level = 1, group = "PunishmentIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [91505809] = { "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds" }, } }, + ["VulnerabilityUnaffectedByBleedUnique__1"] = { affix = "", "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds", statOrder = { 10609 }, level = 1, group = "VulnerabilityUnaffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [971937289] = { "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds" }, } }, + ["VulnerabilityDoubleDamageUnique__1"] = { affix = "", "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds", statOrder = { 5745 }, level = 1, group = "VulnerabilityDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2304988974] = { "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds" }, } }, + ["NearbyEnemyZeroChaosDamageResistanceUnique__1"] = { affix = "", "Nearby Enemies' Chaos Resistance is 0", statOrder = { 8027 }, level = 65, group = "NearbyEnemyZeroChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, [663080464] = { "Nearby Enemies' Chaos Resistance is 0" }, } }, + ["AllElementalDamageConvertedToChaosUnique__1"] = { affix = "", "All Elemental Damage Converted to Chaos Damage", statOrder = { 5951 }, level = 65, group = "ConvertAllElementalToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHashes = { [2423544033] = { "All Elemental Damage Converted to Chaos Damage" }, } }, + ["NearbyEnemyReservesLifeUnique__1"] = { affix = "", "Nearby Enemy Monsters have at least 8% of Life Reserved", statOrder = { 8025 }, level = 1, group = "NearbyEnemyReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2492660287] = { "Reserves 8% of Life" }, [1063263585] = { "Nearby Enemy Monsters have at least 8% of Life Reserved" }, } }, + ["ChaosDamageOverTimeHealsLeechLifeUnique__1"] = { affix = "", "Taking Chaos Damage over Time heals you instead while Leeching Life", statOrder = { 5810 }, level = 53, group = "ChaosDamageOverTimeHealsLeechLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1971757986] = { "Taking Chaos Damage over Time heals you instead while Leeching Life" }, } }, + ["ModifiersToSuppressionApplyToAilmentAvoidUnique__1"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value", statOrder = { 10330 }, level = 1, group = "ModifiersToSuppressionApplyToAilmentAvoid", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2401345409] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value" }, } }, + ["ShockEffectLeechingESUnique__1"] = { affix = "", "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield", statOrder = { 10151 }, level = 1, group = "ShockEffectLeechingES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3578946428] = { "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield" }, } }, + ["ChillEffectLeechingManaUnique__1"] = { affix = "", "(60-100)% increased Effect of Chills you inflict while Leeching Mana", statOrder = { 5848 }, level = 1, group = "ChillEffectLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [898270877] = { "(60-100)% increased Effect of Chills you inflict while Leeching Mana" }, } }, + ["UnaffectedByShockLeechingESUnique__1"] = { affix = "", "Unaffected by Shock while Leeching Energy Shield", statOrder = { 10637 }, level = 1, group = "UnaffectedByShockLeechingES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4102393882] = { "Unaffected by Shock while Leeching Energy Shield" }, } }, + ["UnaffectedByChillLeechingManaUnique__1"] = { affix = "", "Unaffected by Chill while Leeching Mana", statOrder = { 10617 }, level = 1, group = "UnaffectedByChillLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4014328139] = { "Unaffected by Chill while Leeching Mana" }, } }, + ["QuiverModifierEffectUnique__1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9924 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, + ["LifeRegenerationPercentPerAilmentUnique__1"] = { affix = "", "Regenerate 2% of Life per second for each different Ailment affecting you", statOrder = { 7500 }, level = 18, group = "LifeRegenerationPercentPerAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3491639130] = { "Regenerate 2% of Life per second for each different Ailment affecting you" }, } }, + ["AdrenalineOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5761, 5761.1 }, level = 1, group = "AdrenalineOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [414749123] = { "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, + ["OnslaughtOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5770, 5770.1 }, level = 1, group = "OnslaughtOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3106724907] = { "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, + ["CannotBeStunnedSuppressedDamageUnique__1"] = { affix = "", "Cannot be Stunned by Suppressed Spell Damage", statOrder = { 5493 }, level = 1, group = "CannotBeStunnedSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2916280114] = { "Cannot be Stunned by Suppressed Spell Damage" }, } }, + ["DebilitateEnemiesSuppressedDamageUnique__1"] = { affix = "", "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage", statOrder = { 6235 }, level = 1, group = "DebilitateEnemiesSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3019649166] = { "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage" }, } }, + ["StunningHitsRecoverLifeUnique__1"] = { affix = "", "(20-30)% of Damage taken from Stunning Hits is Recovered as Life", statOrder = { 6200 }, level = 1, group = "StunningHitsRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3913936991] = { "(20-30)% of Damage taken from Stunning Hits is Recovered as Life" }, } }, + ["StunningHitsRecoverEnergyShieldUnique__1"] = { affix = "", "50% of Damage taken from Stunning Hits is Recovered as Energy Shield", statOrder = { 6199 }, level = 1, group = "StunningHitsRecoverEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [763940918] = { "50% of Damage taken from Stunning Hits is Recovered as Energy Shield" }, } }, + ["ArmourAppliesToChaosDamageUnique__1"] = { affix = "", "Armour also applies to Chaos Damage taken from Hits", statOrder = { 5040 }, level = 1, group = "ArmourAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "chaos" }, tradeHashes = { [4186532642] = { "Armour also applies to Chaos Damage taken from Hits" }, } }, + ["PhysicalDamageBypassesEnergyShieldUnique__1"] = { affix = "", "Physical Damage taken bypasses Energy Shield", statOrder = { 9744 }, level = 1, group = "PhysicalDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2649513539] = { "Physical Damage taken bypasses Energy Shield" }, } }, + ["SuppressedDamageBypassEnergyShieldUnique_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield", statOrder = { 1171 }, level = 80, group = "SuppressedDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [247456045] = { "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield" }, } }, + ["SuppressedDamageRecoupedAsEnergyShield_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield", statOrder = { 1172 }, level = 1, group = "SuppressedSpellDamageRecoupedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1993646143] = { "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield" }, } }, + ["RecoverLifeAlteratingUnique__1"] = { affix = "", "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds", statOrder = { 10663, 10663.1, 10663.2 }, level = 62, group = "RecoverLifeAlterating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3938394827] = { "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds" }, } }, + ["LinkLoseNoExperienceUnique__1"] = { affix = "", "Lose no Experience when you die because a Linked target died", statOrder = { 7596 }, level = 55, group = "LinkLoseNoExperience", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738821856] = { "Lose no Experience when you die because a Linked target died" }, } }, + ["LinkTargetCannotDieUnique__1"] = { affix = "", "Linked Targets Cannot Die for 2 seconds after you Die", statOrder = { 7595 }, level = 1, group = "LinkTargetCannotDie", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3251211004] = { "Linked Targets Cannot Die for 2 seconds after you Die" }, } }, + ["LinkSkillCastSpeedUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Cast Speed", statOrder = { 7589 }, level = 1, group = "LinkSkillCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2597985144] = { "Link Skills have (10-15)% increased Cast Speed" }, } }, + ["LinkSkillEffectDurationUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Skill Effect Duration", statOrder = { 7592 }, level = 1, group = "LinkSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1214762172] = { "Link Skills have (10-15)% increased Skill Effect Duration" }, } }, + ["LinkSkillFlaskEffectsUnique__1"] = { affix = "", "Non-Unique Utility Flasks you Use apply to Linked Targets", statOrder = { 6735 }, level = 50, group = "LinkSkillFlaskEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [865273657] = { "Non-Unique Utility Flasks you Use apply to Linked Targets" }, } }, + ["MinionWitherOnHitUnique__1"] = { affix = "", "Minions have 60% chance to inflict Withered on Hit", statOrder = { 9492 }, level = 1, group = "MinionWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1387367793] = { "Minions have 60% chance to inflict Withered on Hit" }, } }, + ["MinionCriticalStrikeMultiplierAgainstWitheredUnique__1"] = { affix = "", "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy", statOrder = { 9493 }, level = 1, group = "MinionCriticalStrikeMultiplierAgainstWithered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1494965559] = { "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy" }, } }, + ["BleedingExpiresSlowerWhileMovingUnique__1"] = { affix = "", "Bleeding on you expires 75% slower while Moving", statOrder = { 5181 }, level = 1, group = "BleedingExpiresSlowerWhileMoving", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [391460978] = { "Bleeding on you expires 75% slower while Moving" }, } }, + ["CannotBeStunnedWhileBleedingUnique__1"] = { affix = "", "Cannot be Stunned while Bleeding", statOrder = { 5499 }, level = 1, group = "CannotBeStunnedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2638865425] = { "Cannot be Stunned while Bleeding" }, } }, + ["CannotBePoisonedWhileBleedingUnique__1"] = { affix = "", "Cannot be Poisoned while Bleeding", statOrder = { 5485 }, level = 1, group = "CannotBePoisonedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2784102684] = { "Cannot be Poisoned while Bleeding" }, } }, + ["ExertedAttackDamageUnique__1"] = { affix = "", "Exerted Attacks deal 200% increased Damage", statOrder = { 6444 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal 200% increased Damage" }, } }, + ["ExertedAttackKnockbackChanceUnique__1"] = { affix = "", "Exerted Attacks Knock Enemies Back on Hit", statOrder = { 6594 }, level = 1, group = "ExertedAttackKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1634061592] = { "Exerted Attacks Knock Enemies Back on Hit" }, } }, + ["LocalChanceToBleedUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, + ["AlwaysPierceBurningEnemiesUnique__1"] = { affix = "", "Projectiles Pierce all Burning Enemies", statOrder = { 4699 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Burning Enemies" }, } }, + ["ArrowAddedFireDamagePerEnemyPiercedUnique__1"] = { affix = "", "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced", statOrder = { 4826 }, level = 1, group = "ArrowAddedFireDamagePerEnemyPierced", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3726936056] = { "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced" }, } }, + ["MinionLifeIncreasedByOvercappedFireResistanceUnique__1"] = { affix = "", "Minion Life is increased by their Overcapped Fire Resistance", statOrder = { 9444 }, level = 1, group = "MinionLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1586164348] = { "Minion Life is increased by their Overcapped Fire Resistance" }, } }, + ["SupportedByInfernalLegionUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Infernal Legion", statOrder = { 325 }, level = 1, group = "SupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2201102274] = { "Socketed Gems are Supported by Level 30 Infernal Legion" }, } }, + ["NearbyEnemiesCoveredInAshUnique__1"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 8016 }, level = 1, group = "NearbyEnemiesCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, + ["ColdExposureAdditionalResistanceUnique__1"] = { affix = "", "Cold Exposure you inflict applies an extra -12% to Cold Resistance", statOrder = { 5906 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [600221736] = { "Cold Exposure you inflict applies an extra -12% to Cold Resistance" }, } }, + ["FreezeProliferationUnique__1"] = { affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2243 }, level = 1, group = "FreezeProliferationAmulet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3865389316] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } }, + ["ShockProliferationUnique__2"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2246 }, level = 1, group = "ShockProliferationShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1640259660] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, + ["AddedLightningDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4921 }, level = 1, group = "AddedLightningDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [817611267] = { "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity" }, } }, + ["CriticalStrikeChancePerIntelligenceUnique__1"] = { affix = "", "5% increased Critical Strike Chance per 25 Intelligence", statOrder = { 6014 }, level = 1, group = "CriticalStrikeChancePerIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1861913998] = { "5% increased Critical Strike Chance per 25 Intelligence" }, } }, + ["LifeLeechFromAttacksPermyriadUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "1% of Attack Damage Leeched as Life" }, } }, + ["LightningNonCriticalStrikesLuckyUnique__1"] = { affix = "", "Lightning Damage with Non-Critical Strikes is Lucky", statOrder = { 6623 }, level = 1, group = "LightningNonCriticalStrikesLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430928642] = { "Lightning Damage with Non-Critical Strikes is Lucky" }, } }, + ["AddedFireDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks" }, } }, + ["AddedFireDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks", statOrder = { 1397 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks" }, } }, + ["AddedColdDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks" }, } }, + ["AddedColdDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks", statOrder = { 1398 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks" }, } }, + ["AddedLightningDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks", statOrder = { 1433 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks" }, } }, + ["ItemCanHaveShieldWeaponTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8147, 8147.1 }, level = 1, group = "ItemCanHaveShieldWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827605890] = { "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, + ["ItemCanHaveTwoHandedSwordWeaponTreeUnique1"] = { affix = "", "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8148, 8148.1 }, level = 1, group = "ItemCanHaveTwoHandedSwordWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2141582975] = { "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, + ["ItemCanHaveSupportGemsOnlyTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8146, 8146.1 }, level = 1, group = "ItemCanHaveSupportGemsOnlyTree", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3031897787] = { "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed" }, } }, + ["LowLifeInstantLifeRecoveryUnique__1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7451 }, level = 38, group = "LowLifeInstantLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, + ["LowManaInstantManaRecoveryUnique__1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 8288 }, level = 1, group = "LowManaInstantManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, + ["IncreasedLifeNoLifeModifiersUnique__1"] = { affix = "", "+(700-1000) to maximum Life if there are no Life Modifiers on other Equipped Items", statOrder = { 9273 }, level = 1, group = "IncreasedLifeNoLifeModifiers", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2927667525] = { "+(700-1000) to maximum Life if there are no Life Modifiers on other Equipped Items" }, } }, + ["HinekoraButterflyEffectUnique__1"] = { affix = "", "Every 5 seconds, gain one of the following for 5 seconds:", "Your Hits are always Critical Strikes", "Hits against you are always Critical Strikes", "Attacks cannot Hit you", "Attacks against you always Hit", "Your Damage with Hits is Lucky", "Damage of Hits against you is Lucky", statOrder = { 7247, 7247.1, 7247.2, 7247.3, 7247.4, 7247.5, 7247.6 }, level = 62, group = "HinekoraButterflyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2501671832] = { "Every 5 seconds, gain one of the following for 5 seconds:", "Your Hits are always Critical Strikes", "Hits against you are always Critical Strikes", "Attacks cannot Hit you", "Attacks against you always Hit", "Your Damage with Hits is Lucky", "Damage of Hits against you is Lucky" }, } }, + ["SoulTattooEffectUnique__1"] = { affix = "", "100% increased effect of Tattoos in Radius", statOrder = { 8238 }, level = 1, group = "SoulTattooEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [4149388787] = { "100% increased effect of Tattoos in Radius" }, } }, + ["GainSpellCostAsESUnique__1"] = { affix = "", "Spells cause you to gain Energy Shield equal to their Upfront", "Cost every third time you Pay it", statOrder = { 6917, 6917.1 }, level = 55, group = "GainSpellCostAsES", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "caster" }, tradeHashes = { [1357409216] = { "Spells cause you to gain Energy Shield equal to their Upfront", "Cost every third time you Pay it" }, } }, + ["WarcrySpeedUnique__1"] = { affix = "", "(20-25)% increased Warcry Speed", statOrder = { 3313 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-25)% increased Warcry Speed" }, } }, + ["WarcrySpeedUnique__2"] = { affix = "", "(25-35)% increased Warcry Speed", statOrder = { 3313 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-35)% increased Warcry Speed" }, } }, + ["LocalTreatElementalResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Elemental Resistance values as inverted", statOrder = { 8145 }, level = 1, group = "LocalTreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2750800428] = { "Treats Enemy Monster Elemental Resistance values as inverted" }, } }, + ["LocalTreatChaosResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Chaos Resistance values as inverted", statOrder = { 2850 }, level = 1, group = "LocalTreatChaoslResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3897054103] = { "Treats Enemy Monster Chaos Resistance values as inverted" }, } }, + ["MinionsUseMainHandBaseCritUnique__1"] = { affix = "", "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon", statOrder = { 9503, 9503.1 }, level = 1, group = "MinionsUseMainHandBaseCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [3700085184] = { "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon" }, } }, + ["MinionsUseMainHandBaseAttackDurationUnique__1"] = { affix = "", "Non-Spectre Minions' Base Attack time is equal to", "the Attack time of your Main Hand Weapon", statOrder = { 9647, 9647.1 }, level = 1, group = "NonSpectreMinionsUseMainHandBaseAttackDuration", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3305441882] = { "Non-Spectre Minions' Base Attack time is equal to", "the Attack time of your Main Hand Weapon" }, } }, + ["TreatResistancesAsMaxChanceUnique__1"] = { affix = "", "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits", statOrder = { 6508 }, level = 1, group = "TreatResistancesAsMaxChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [204458505] = { "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits" }, } }, + ["TakeNoBurningDamageIfStopBurningUnique__1"] = { affix = "", "Take no Burning Damage if you've stopped taking Burning Damage Recently", statOrder = { 10504 }, level = 1, group = "TakeNoBurningDamageIfStopBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2738190959] = { "Take no Burning Damage if you've stopped taking Burning Damage Recently" }, } }, + ["GainMissingLifeOnHitUnique__1"] = { affix = "", "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy", statOrder = { 9511 }, level = 62, group = "GainMissingLifeOnHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1383676476] = { "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy" }, } }, + ["UnaffectedByDamagingAilmentsUnique__1"] = { affix = "", "Unaffected by Damaging Ailments", statOrder = { 10623 }, level = 1, group = "UnaffectedByDamagingAilments", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1575046591] = { "Unaffected by Damaging Ailments" }, } }, + ["NonExertedAttacksNoDamageUnique__1"] = { affix = "", "Non-Exerted Attacks deal no Damage", statOrder = { 9643 }, level = 1, group = "NonExertedAttacksNoDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3303984198] = { "Non-Exerted Attacks deal no Damage" }, } }, + ["LifeLeechInstantExertedAttacksUnique__1"] = { affix = "", "Life Leech from Exerted Attacks is instant", statOrder = { 7473 }, level = 1, group = "LifeLeechInstantExertedAttacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [272906215] = { "Life Leech from Exerted Attacks is instant" }, } }, + ["QuiverChillAsThoughtDealingMoreDamageUnique__1"] = { affix = "", "Chill Enemies as though dealing (60-100)% more Damage", statOrder = { 10662 }, level = 1, group = "QuiverChillAsThoughtDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2223307291] = { "Chill Enemies as though dealing (60-100)% more Damage" }, } }, + ["NgamahusEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kaom on Kill", statOrder = { 679 }, level = 62, group = "NgamahusEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [817287945] = { "10% chance to Trigger Summon Spirit of Kaom on Kill" }, } }, + ["KitavasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Utula on Kill", statOrder = { 678 }, level = 62, group = "KitavasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [272515409] = { "10% chance to Trigger Summon Spirit of Utula on Kill" }, } }, + ["TukohamasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Akoya on Kill", statOrder = { 684 }, level = 62, group = "TukohamasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3888707953] = { "10% chance to Trigger Summon Spirit of Akoya on Kill" }, } }, + ["RongokuraisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kahuturoa on Kill", statOrder = { 681 }, level = 62, group = "RongokuraisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264841388] = { "10% chance to Trigger Summon Spirit of Kahuturoa on Kill" }, } }, + ["TasaliosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Rakiata on Kill", statOrder = { 682 }, level = 62, group = "TasaliosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1630969195] = { "10% chance to Trigger Summon Spirit of Rakiata on Kill" }, } }, + ["ArohonguisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ikiaho on Kill", statOrder = { 676 }, level = 62, group = "ArohonguisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1163205473] = { "10% chance to Trigger Summon Spirit of Ikiaho on Kill" }, } }, + ["RamakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ahuana on Kill", statOrder = { 680 }, level = 62, group = "RamakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [31336590] = { "10% chance to Trigger Summon Spirit of Ahuana on Kill" }, } }, + ["HinekorasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Tawhanuku on Kill", statOrder = { 677 }, level = 62, group = "HinekorasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4217417523] = { "10% chance to Trigger Summon Spirit of Tawhanuku on Kill" }, } }, + ["TawhoasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Maata on Kill", statOrder = { 683 }, level = 62, group = "TawhoasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3572665414] = { "10% chance to Trigger Summon Spirit of Maata on Kill" }, } }, + ["ValakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kiloava on Kill", statOrder = { 685 }, level = 62, group = "ValakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999837849] = { "10% chance to Trigger Summon Spirit of Kiloava on Kill" }, } }, + ["NearbyEnemyPhysicalDamageConvertedToFire__1"] = { affix = "", "Nearby Enemies Convert 25% of their Physical Damage to Fire", statOrder = { 10891 }, level = 1, group = "NearbyEnemyPhysicalDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729324251] = { "Nearby Enemies Convert 25% of their Physical Damage to Fire" }, } }, + ["IncreasedLifeEmptyRedSocketUnique__1"] = { affix = "", "+40 to maximum Life for each Empty Red Socket on any Equipped Item", statOrder = { 4471 }, level = 60, group = "IncreasedLifeEmptyRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [726359715] = { "+40 to maximum Life for each Empty Red Socket on any Equipped Item" }, } }, + ["IncreasedAccuracyEmptyGreenSocketUnique__1"] = { affix = "", "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item", statOrder = { 4472 }, level = 1, group = "IncreasedAccuracyEmptyGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4280703528] = { "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item" }, } }, + ["IncreasedManaEmptyBlueSocketUnique__1"] = { affix = "", "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item", statOrder = { 4473 }, level = 1, group = "IncreasedManaEmptyBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2962020005] = { "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item" }, } }, + ["AllResistEmptyWhiteSocketUnique__1"] = { affix = "", "+12% to all Elemental Resistances for each Empty White Socket on any Equipped Item", statOrder = { 4474 }, level = 1, group = "AllResistEmptyWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [597739519] = { "+12% to all Elemental Resistances for each Empty White Socket on any Equipped Item" }, } }, + ["LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1"] = { affix = "", "-2 to level of Socketed Skill Gems per Socketed Gem", statOrder = { 8132 }, level = 1, group = "LocalIncreaseSocketedGemLevelPerFilledSocket", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2503682584] = { "-2 to level of Socketed Skill Gems per Socketed Gem" }, } }, + ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels", statOrder = { 8215 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels" }, } }, + ["MaximumQualityOverrideUnique__1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 8107 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, + ["RandomMovementVelocityWhenHitUnique__1"] = { affix = "", "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again", statOrder = { 9394 }, level = 1, group = "RandomMovementVelocityWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3281809492] = { "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again" }, } }, + ["EnemyElementalResistanceZeroWhenHitUnique__1"] = { affix = "", "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds", statOrder = { 6510 }, level = 1, group = "EnemyElementalResistanceZeroWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3714446071] = { "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds" }, } }, + ["AvoidMaimChanceUnique__1"] = { affix = "", "You cannot be Maimed", statOrder = { 4997 }, level = 56, group = "AvoidMaimChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, + ["SkeletonAddedChaosDamageShieldUnique__1"] = { affix = "", "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield", statOrder = { 10852 }, level = 1, group = "SkeletonAddedChaosDamageShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1475598909] = { "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield" }, } }, + ["ElementalDamageTakenAsPhysicalUnique__1"] = { affix = "", "40% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6416 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2340750293] = { "40% of Elemental Damage from Hits taken as Physical Damage" }, } }, + ["ElementalDamageTakenAsPhysicalUnique__2"] = { affix = "", "(15-30)% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6416 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2340750293] = { "(15-30)% of Elemental Damage from Hits taken as Physical Damage" }, } }, + ["ElementalDamageFromBlockedHitsUnique__1"] = { affix = "", "You take 100% of Elemental Damage from Blocked Hits", statOrder = { 5301 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2393355605] = { "You take 100% of Elemental Damage from Blocked Hits" }, } }, + ["SpellAddedChaosDamageMaximumLifeUnique__1"] = { affix = "", "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life", statOrder = { 4591 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3175648755] = { "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life" }, } }, + ["LifeDegenerationGracePeriodUnique__1"] = { affix = "", "Lose 500 Life per second", statOrder = { 1598 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose 500 Life per second" }, } }, + ["LifeDegenerationGracePeriodPer10SecondsUnique__1"] = { affix = "", "Lose 500.00 Life per second", statOrder = { 1597 }, level = 1, group = "LifeDegenerationPer10SecondsGracePeriod", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [1559341337] = { "Lose 500.00 Life per second" }, } }, + ["SocketedGemsSupportedByLifetapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 335 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } }, + ["CriticalStrikeMultiplierMonsterPowerUnique__1"] = { affix = "", "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power", statOrder = { 7262 }, level = 1, group = "CriticalStrikeMultiplierMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1872107885] = { "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power" }, } }, + ["LeechInstantMonsterPowerUnique__1"] = { affix = "", "5% of Leech from Hits with this Weapon is Instant per Enemy Power", statOrder = { 7263 }, level = 1, group = "LeechInstantMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583648686] = { "5% of Leech from Hits with this Weapon is Instant per Enemy Power" }, } }, + ["GainEnduranceChargeEverySecondUnique__1"] = { affix = "", "Lose an Endurance Charge each second", statOrder = { 6790 }, level = 1, group = "GainEnduranceChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778599971] = { "Lose an Endurance Charge each second" }, } }, + ["GainFrenzyChargeEverySecondUnique__1"] = { affix = "", "Lose a Frenzy Charge each second", statOrder = { 6793 }, level = 1, group = "GainFrenzyChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [651232125] = { "Lose a Frenzy Charge each second" }, } }, + ["GainPowerChargeEverySecondUnique__1"] = { affix = "", "Lose a Power Charge each second", statOrder = { 6796 }, level = 1, group = "GainPowerChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [521054609] = { "Lose a Power Charge each second" }, } }, + ["TinctureCriticalStrikeChanceImplicit1"] = { affix = "", "(100-150)% increased Critical Strike Chance with Melee Weapons", statOrder = { 11051 }, level = 1, group = "TinctureCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3678828098] = { "(100-150)% increased Critical Strike Chance with Melee Weapons" }, } }, + ["TinctureElementalDamageImplicit1"] = { affix = "", "(70-100)% increased Elemental Damage with Melee Weapons", statOrder = { 11053 }, level = 1, group = "TinctureElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [503138266] = { "(70-100)% increased Elemental Damage with Melee Weapons" }, } }, + ["TinctureStunThresholdImplicit1"] = { affix = "", "40% reduced Enemy Stun Threshold with Melee Weapons", "(15-25)% increased Stun Duration with Melee Weapons", statOrder = { 11028, 11087 }, level = 1, group = "TinctureStunThresholdDuration", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2791825817] = { "40% reduced Enemy Stun Threshold with Melee Weapons" }, [2912587137] = { "(15-25)% increased Stun Duration with Melee Weapons" }, } }, + ["TinctureChanceToIgniteImplicit1"] = { affix = "", "25% chance to Ignite with Melee Weapons", "(60-90)% increased Damage with Ignite from Melee Weapons", statOrder = { 11046, 11060 }, level = 1, group = "TinctureChanceToIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3935936274] = { "(60-90)% increased Damage with Ignite from Melee Weapons" }, [4206255461] = { "25% chance to Ignite with Melee Weapons" }, } }, + ["TinctureChanceToFreezeImplicit1"] = { affix = "", "25% chance to Freeze with Melee Weapons", "(25-35)% increased Effect of Chill from Melee Weapons", statOrder = { 11045, 11049 }, level = 1, group = "TinctureChanceToFreezeEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "ailment" }, tradeHashes = { [3296814491] = { "(25-35)% increased Effect of Chill from Melee Weapons" }, [1858426568] = { "25% chance to Freeze with Melee Weapons" }, } }, + ["TinctureChanceToShockImplicit1"] = { affix = "", "25% chance to Shock with Melee Weapons", "(25-35)% increased Effect of Shock from Melee Weapons", statOrder = { 11048, 11083 }, level = 1, group = "TinctureChanceToShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [2313961828] = { "25% chance to Shock with Melee Weapons" }, [2245266924] = { "(25-35)% increased Effect of Shock from Melee Weapons" }, } }, + ["TinctureChanceToPoisonImplicit1"] = { affix = "", "20% chance to Poison with Melee Weapons", "(60-90)% increased Damage with Poison from Melee Weapons", statOrder = { 11047, 11070 }, level = 1, group = "TinctureChanceToPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [776174407] = { "(60-90)% increased Damage with Poison from Melee Weapons" }, [1168985596] = { "20% chance to Poison with Melee Weapons" }, } }, + ["TinctureChanceToBleedImplicit1"] = { affix = "", "20% chance to cause Bleeding with Melee Weapons", "(60-90)% increased Damage with Bleeding from Melee Weapons", statOrder = { 11029, 11041 }, level = 1, group = "TinctureChanceToBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1630041051] = { "20% chance to cause Bleeding with Melee Weapons" }, [3660450649] = { "(60-90)% increased Damage with Bleeding from Melee Weapons" }, } }, + ["TinctureRageOnHitImplicit1"] = { affix = "", "Gain 3 Rage on Melee Weapon Hit", statOrder = { 11058 }, level = 1, group = "TinctureRageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2012294704] = { "Gain 3 Rage on Melee Weapon Hit" }, } }, + ["TinctureChanceToBlindImplicit1"] = { affix = "", "25% chance to Blind Enemies on Hit with Melee Weapons", "(25-35)% increased Effect of Blind from Melee Weapons", statOrder = { 11030, 11042 }, level = 1, group = "TinctureChanceToBlindEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1808507379] = { "(25-35)% increased Effect of Blind from Melee Weapons" }, [2795267150] = { "25% chance to Blind Enemies on Hit with Melee Weapons" }, } }, + ["TinctureToxicityRateUnique__1"] = { affix = "", "(15-25)% reduced Mana Burn rate", statOrder = { 11073 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [116232170] = { "(15-25)% reduced Mana Burn rate" }, } }, + ["TinctureToxicityRateUnique__2"] = { affix = "", "(-35-35)% reduced Mana Burn rate", statOrder = { 11073 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [116232170] = { "(-35-35)% reduced Mana Burn rate" }, } }, + ["TinctureCooldownRecoveryUnique__1"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate", statOrder = { 11071 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239144] = { "(20-40)% increased Cooldown Recovery Rate" }, } }, + ["TinctureMeleeSplashOnWeaponHitUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 11064 }, level = 1, group = "MeleeSplashOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2929267123] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, [2100498273] = { "" }, } }, + ["TinctureGraspingVineOnWeaponHitUnique__1"] = { affix = "", "(20-30)% chance to inflict a Grasping Vine on Melee Weapon Hit", statOrder = { 11043 }, level = 1, group = "GraspingVineOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [19313391] = { "(20-30)% chance to inflict a Grasping Vine on Melee Weapon Hit" }, } }, + ["TinctureApplyWitherStacksOnHitUnique__1"] = { affix = "", "Melee Weapon Hits Inflict (2-3) Withered Debuffs for 2 seconds", statOrder = { 11039 }, level = 1, group = "WeaponApplyWitherStacksOnHit", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1103333624] = { "Melee Weapon Hits Inflict (2-3) Withered Debuffs for 2 seconds" }, } }, + ["TinctureToxicityOnHitUnique__1"] = { affix = "", "Does not inflict Mana Burn over time", "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon", statOrder = { 11031, 11032 }, level = 1, group = "TinctureToxicityOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1330482101] = { "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon" }, [1686969928] = { "Does not inflict Mana Burn over time" }, } }, + ["TinctureRarityPerToxicityUnique__1"] = { affix = "", "(1-5)% increased Rarity of Items found per Mana Burn, up to a maximum of 100%", statOrder = { 11033 }, level = 1, group = "TinctureRarityPerToxicity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3226452989] = { "(1-5)% increased Rarity of Items found per Mana Burn, up to a maximum of 100%" }, } }, + ["TincturePenetrationPerToxicityUnique__1"] = { affix = "", "Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%", statOrder = { 11068 }, level = 1, group = "TincturePenetrationPerToxicity", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3685214225] = { "Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%" }, } }, + ["TinctureCullingStrikeUnique__1"] = { affix = "", "Melee Weapon Attacks have Culling Strike", statOrder = { 11052 }, level = 1, group = "WeaponCullingStrike", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [802532569] = { "Melee Weapon Attacks have Culling Strike" }, } }, + ["TinctureCoverInAshOnFullLifeUnique__1"] = { affix = "", "Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit", statOrder = { 11104 }, level = 1, group = "WeaponCoverInAshVsFullLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [2428064388] = { "Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit" }, } }, + ["TinctureRefreshIgniteDurationUnique__1"] = { affix = "", "(15-25)% chance to refresh Ignite Duration on Melee Weapon Hit", statOrder = { 11081 }, level = 1, group = "RefreshIgniteDurationOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [93054948] = { "(15-25)% chance to refresh Ignite Duration on Melee Weapon Hit" }, } }, + ["TinctureFireDamageTakenPerToxicityUnique__1"] = { affix = "", "-1 Fire Damage taken from Hits per Mana Burn", statOrder = { 11055 }, level = 1, group = "TinctureFireDamageTakenPerToxicity", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1483305963] = { "-1 Fire Damage taken from Hits per Mana Burn" }, } }, + ["CountAsHavingMaxEnduranceFrenzyPowerCharges1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5969, 5969.1, 5969.2 }, level = 1, group = "CountAsHavingMaxEnduranceFrenzyPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3584443917] = { "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges" }, } }, + ["MaximumFortificationUnique__1"] = { affix = "", "+(1-10) to maximum Fortification", statOrder = { 5097 }, level = 1, group = "MaximumFortification", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2094299742] = { "+(1-10) to maximum Fortification" }, } }, + ["StrikeSkillsFortifyOnHitUnique__1"] = { affix = "", "Melee Hits from Strike Skills Fortify", statOrder = { 10406 }, level = 1, group = "StrikeSkillsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3049891689] = { "Melee Hits from Strike Skills Fortify" }, } }, + ["AttackSpeedPerFortificationUnique__1"] = { affix = "", "1% increased Attack Speed per Fortification", statOrder = { 4938 }, level = 1, group = "AttackSpeedPerFortification", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1039149869] = { "1% increased Attack Speed per Fortification" }, } }, + ["RageCasterStatsUnique__1"] = { affix = "", "Rage grants Spell Damage instead of Attack Damage", statOrder = { 9939 }, level = 1, group = "RageCasterStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell Damage instead of Attack Damage" }, [223497523] = { "" }, } }, + ["GainRageOnManaSpentUnique__1"] = { affix = "", "Gain (7-10) Rage after Spending a total of 200 Mana", statOrder = { 6939 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (7-10) Rage after Spending a total of 200 Mana" }, } }, + ["LifeFromEnergyShieldArmourUnique__1"] = { affix = "", "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", statOrder = { 6866 }, level = 1, group = "LifeFromEnergyShieldArmour", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3734229311] = { "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items" }, } }, + ["FlaskDurationPerLevelUnique__1"] = { affix = "", "2% reduced Flask Effect Duration per Level", statOrder = { 6727 }, level = 1, group = "FlaskDurationPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [981878473] = { "2% reduced Flask Effect Duration per Level" }, } }, + ["FlaskEffectPerLevelUnique__1"] = { affix = "", "Flasks applied to you have 1% increased Effect per Level", statOrder = { 6728 }, level = 1, group = "FlaskEffectPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3867344930] = { "Flasks applied to you have 1% increased Effect per Level" }, } }, + ["GrantsRavenousSkillUnique__1"] = { affix = "", "Grants Level 20 Ravenous Skill", "Enemies display their Monster Category", statOrder = { 710, 765 }, level = 1, group = "GrantsRavenousSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636370122] = { "Grants Level 20 Ravenous Skill" }, [4164361381] = { "Enemies display their Monster Category" }, } }, + ["AdditionalSacredWispUnique__1"] = { affix = "", "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned", statOrder = { 5102, 5102.1 }, level = 1, group = "AdditionalSacredWisp", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13590525] = { "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned" }, } }, + ["AttackCriticalStrikesUnnerveUnique__1"] = { affix = "", "Attacks inflict Unnerve on Critical Strike for 4 seconds", statOrder = { 4969 }, level = 1, group = "AttackCriticalStrikesUnnerve", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3362271649] = { "Attacks inflict Unnerve on Critical Strike for 4 seconds" }, } }, + ["SpellCriticalStrikesIntimidateUnique__1"] = { affix = "", "Spells inflict Intimidate on Critical Strike for 4 seconds", statOrder = { 10341 }, level = 1, group = "SpellCriticalStrikesIntimidate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [181229988] = { "Spells inflict Intimidate on Critical Strike for 4 seconds" }, } }, + ["EnemiesCountAsMovingElementalAilmentsUnique__1"] = { affix = "", "You and Enemies in your Presence count as moving while affected by Elemental Ailments", statOrder = { 6472 }, level = 1, group = "EnemiesCountAsMovingElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [113536037] = { "You and Enemies in your Presence count as moving while affected by Elemental Ailments" }, } }, + ["MinionsHaveChargesYouHaveUnique__1"] = { affix = "", "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you", "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you", statOrder = { 9494, 9495, 9495.1 }, level = 1, group = "MinionsHaveChargesYouHave", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3879726065] = { "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you" }, [2797097751] = { "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you" }, } }, + ["AurasOnlyApplyToLinkedTargetUnique__1"] = { affix = "", "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets", statOrder = { 9630, 9630.1 }, level = 1, group = "AurasOnlyApplyToLinkedTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3678739763] = { "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets" }, } }, + ["AuraEffectWhileLinkedUnique__1"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target", statOrder = { 9629 }, level = 1, group = "AuraEffectWhileLinked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995650818] = { "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target" }, } }, + ["MaximumSpectrePerGhastlyEyeUnique__1"] = { affix = "", "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel", statOrder = { 4630 }, level = 1, group = "MaximumSpectrePerGhastlyEye", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1664904679] = { "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel" }, } }, + ["HeraldReservationEfficiencyUnique__1"] = { affix = "", "10% increased Mana Reservation Efficiency of Herald Skills", statOrder = { 7231 }, level = 80, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3078295401] = { "10% increased Mana Reservation Efficiency of Herald Skills" }, } }, + ["UniqueJewelNodeIncreasedLifeUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Life", statOrder = { 8218 }, level = 1, group = "UniqueJewelNodeIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1223932609] = { "Passive Skills in Radius also grant +5 to maximum Life" }, } }, + ["UniqueJewelNodeIncreasedManaUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Mana", statOrder = { 8219 }, level = 1, group = "UniqueJewelNodeIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3382199855] = { "Passive Skills in Radius also grant +5 to maximum Mana" }, } }, + ["UniqueJewelNodeCriticalStrikeChanceUnique__1"] = { affix = "", "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance", statOrder = { 8222 }, level = 1, group = "UniqueJewelNodeCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3901726941] = { "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance" }, } }, + ["UniqueJewelNodeAllAttributesUnique__1"] = { affix = "", "Passive Skills in Radius also grant +2 to all Attributes", statOrder = { 8216 }, level = 1, group = "UniqueJewelNodeAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3587101704] = { "Passive Skills in Radius also grant +2 to all Attributes" }, } }, + ["UniqueJewelNodeChaosResistUnique__1"] = { affix = "", "Passive Skills in Radius also grant +4% to Chaos Resistance", statOrder = { 8217 }, level = 1, group = "UniqueJewelNodeChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1812306107] = { "Passive Skills in Radius also grant +4% to Chaos Resistance" }, } }, + ["UniqueJewelNodePhysicalDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Physical Damage", statOrder = { 8227 }, level = 1, group = "UniqueJewelNodePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3252387974] = { "Passive Skills in Radius also grant 6% increased Physical Damage" }, } }, + ["UniqueJewelNodeFireDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Fire Damage", statOrder = { 8224 }, level = 1, group = "UniqueJewelNodeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [719810173] = { "Passive Skills in Radius also grant 6% increased Fire Damage" }, } }, + ["UniqueJewelNodeColdDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Cold Damage", statOrder = { 8221 }, level = 1, group = "UniqueJewelNodeColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2999571636] = { "Passive Skills in Radius also grant 6% increased Cold Damage" }, } }, + ["UniqueJewelNodeLightningDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Lightning Damage", statOrder = { 8225 }, level = 1, group = "UniqueJewelNodeLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3556460433] = { "Passive Skills in Radius also grant 6% increased Lightning Damage" }, } }, + ["UniqueJewelNodeChaosDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Chaos Damage", statOrder = { 8220 }, level = 1, group = "UniqueJewelNodeChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1313763128] = { "Passive Skills in Radius also grant 6% increased Chaos Damage" }, } }, + ["UniqueJewelNodeArmourUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Armour", statOrder = { 8228 }, level = 1, group = "UniqueJewelNodeArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1647724040] = { "Passive Skills in Radius also grant 7% increased Armour" }, } }, + ["UniqueJewelNodeEvasionUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Evasion Rating", statOrder = { 8223 }, level = 1, group = "UniqueJewelNodeEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3761482453] = { "Passive Skills in Radius also grant 7% increased Evasion Rating" }, } }, + ["UniqueJewelNodeEnergyShieldUnique__1"] = { affix = "", "Passive Skills in Radius also grant 3% increased Energy Shield", statOrder = { 8226 }, level = 1, group = "UniqueJewelNodeEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4215928287] = { "Passive Skills in Radius also grant 3% increased Energy Shield" }, } }, + ["RunecraftingFireDamage"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-20)% increased Fire Damage" }, } }, + ["RunecraftingColdDamage"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-20)% increased Cold Damage" }, } }, + ["RunecraftingLightningDamage"] = { affix = "", "(10-20)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-20)% increased Lightning Damage" }, } }, + ["RitualRingPenanceMark"] = { affix = "", "Grants level 20 Penance Mark", statOrder = { 63 }, level = 63, group = "RitualRingPenanceMark", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [88120117] = { "Grants level 20 Penance Mark" }, } }, + ["RitualRingAffliction"] = { affix = "", "Grants level 20 Affliction", statOrder = { 61 }, level = 63, group = "RitualRingAffliction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3486646279] = { "Grants level 20 Affliction" }, } }, + ["RitualRingPacify"] = { affix = "", "Grants level 20 Pacify", statOrder = { 62 }, level = 63, group = "RitualRingPacify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [913306901] = { "Grants level 20 Pacify" }, } }, + ["RitualRingCastSpeed"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-12)% increased Cast Speed" }, } }, + ["RitualRingLife"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } }, + ["RitualRingMana"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } }, + ["RitualRingEnergyShield"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-60) to maximum Energy Shield" }, } }, + ["KeyStoneRetaliationHitsUnique_1"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10975 }, level = 1, group = "RetaliationHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [971749694] = { "Arsenal of Vengeance" }, } }, + ["ConvertBodyArmourEvasionToWardUnique__1"] = { affix = "", "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour", statOrder = { 10738 }, level = 66, group = "ConvertBodyArmourEvasionToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [767698281] = { "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour" }, } }, + ["BlockIsLuckyUnique__1"] = { affix = "", "Chance to Block is Lucky", statOrder = { 5048 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [984774803] = { "Chance to Block is Lucky" }, } }, + ["BlockIsUnluckyUnique__1"] = { affix = "", "Chance to Block is Unlucky", statOrder = { 5048 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [984774803] = { "Chance to Block is Unlucky" }, } }, + ["GrantsTawhoasChosenUnique__1"] = { affix = "", "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy", statOrder = { 731, 731.1 }, level = 1, group = "GrantsTawhoasChosen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3131535174] = { "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy" }, } }, + ["WarcryAreaOfEffectUnique__1"] = { affix = "", "Warcry Skills have (25-35)% increased Area of Effect", statOrder = { 10731 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (25-35)% increased Area of Effect" }, } }, + ["WarcryAreaOfEffectUnique__2"] = { affix = "", "Warcry Skills have (15-25)% increased Area of Effect", statOrder = { 10731 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-25)% increased Area of Effect" }, } }, + ["WarcryCorpseExplosionUnique__1"] = { affix = "", "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage", statOrder = { 9581 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage" }, } }, + ["TinctureRemoveToxicityOnKillUnique__1"] = { affix = "", "10% chance to remove 1 Mana Burn on Kill", statOrder = { 5797 }, level = 1, group = "TinctureRemoveToxicityOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [545355339] = { "10% chance to remove 1 Mana Burn on Kill" }, } }, + ["AdditionalTinctureUnique__1"] = { affix = "", "You can have an additional Tincture active", statOrder = { 5457 }, level = 1, group = "AdditionalTincture", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3806798486] = { "You can have an additional Tincture active" }, } }, + ["ChanceToGainMaximumRageUnique__1"] = { affix = "", "(10-20)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6861 }, level = 1, group = "ChanceToGainMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2710292678] = { "(10-20)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, + ["VillageLocalPhysicalDamagePercent1"] = { affix = "", "(11-15)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(11-15)% increased Physical Damage" }, } }, + ["VillageLocalPhysicalDamagePercent2"] = { affix = "", "(16-20)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } }, + ["VillageLocalPhysicalDamagePercent3"] = { affix = "", "(21-25)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(21-25)% increased Physical Damage" }, } }, + ["VillageLocalFireDamage1"] = { affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } }, + ["VillageLocalFireDamage2"] = { affix = "", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (25-29) Fire Damage" }, } }, + ["VillageLocalFireDamage3"] = { affix = "", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-24) to (35-41) Fire Damage" }, } }, + ["VillageLocalFireDamageTwoHand1"] = { affix = "", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } }, + ["VillageLocalFireDamageTwoHand2"] = { affix = "", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } }, + ["VillageLocalFireDamageTwoHand3"] = { affix = "", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } }, + ["VillageLocalColdDamage1"] = { affix = "", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, } }, + ["VillageLocalColdDamage2"] = { affix = "", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (23-26) Cold Damage" }, } }, + ["VillageLocalColdDamage3"] = { affix = "", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-21) to (31-37) Cold Damage" }, } }, + ["VillageLocalColdDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } }, + ["VillageLocalColdDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } }, + ["VillageLocalColdDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } }, + ["VillageLocalLightningDamage1"] = { affix = "", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } }, + ["VillageLocalLightningDamage2"] = { affix = "", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (41-48) Lightning Damage" }, } }, + ["VillageLocalLightningDamage3"] = { affix = "", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (57-67) Lightning Damage" }, } }, + ["VillageLocalLightningDamageTwoHand1"] = { affix = "", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } }, + ["VillageLocalLightningDamageTwoHand2"] = { affix = "", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } }, + ["VillageLocalLightningDamageTwoHand3"] = { affix = "", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } }, + ["VillageLocalChaosDamage1"] = { affix = "", "Adds (7-9) to (14-16) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-9) to (14-16) Chaos Damage" }, } }, + ["VillageLocalChaosDamage2"] = { affix = "", "Adds (11-15) to (23-26) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-15) to (23-26) Chaos Damage" }, } }, + ["VillageLocalChaosDamage3"] = { affix = "", "Adds (16-21) to (31-37) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (16-21) to (31-37) Chaos Damage" }, } }, + ["VillageLocalChaosDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (12-17) to (26-30) Chaos Damage" }, } }, + ["VillageLocalChaosDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (21-28) to (42-48) Chaos Damage" }, } }, + ["VillageLocalChaosDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (29-40) to (58-68) Chaos Damage" }, } }, + ["VillageChanceToIgnite"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, } }, + ["VillageChanceToIgniteTwoHand"] = { affix = "", "(20-25)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(20-25)% chance to Ignite" }, } }, + ["VillageChanceToFreeze"] = { affix = "", "(10-15)% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(10-15)% chance to Freeze" }, } }, + ["VillageChanceToFreezeTwoHand"] = { affix = "", "(20-25)% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(20-25)% chance to Freeze" }, } }, + ["VillageChanceToShock"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-15)% chance to Shock" }, } }, + ["VillageChanceToShockTwoHand"] = { affix = "", "(20-25)% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(20-25)% chance to Shock" }, } }, + ["VillageLifeLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Life" }, } }, + ["VillageManaLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Mana" }, } }, + ["VillageLocalIncreasedAttackSpeed"] = { affix = "", "(3-6)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "speed" }, tradeHashes = { [210067635] = { "(3-6)% increased Attack Speed" }, } }, + ["VillageLocalCriticalStrikeChance"] = { affix = "", "(5-7)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "critical" }, tradeHashes = { [2375316951] = { "(5-7)% increased Critical Strike Chance" }, } }, + ["VillageIncreasedCastSpeed"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, + ["VillageIncreasedCastSpeedTwoHand"] = { affix = "", "(13-18)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-18)% increased Cast Speed" }, } }, + ["VillageSpellCriticalStrikeChance"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-25)% increased Spell Critical Strike Chance" }, } }, + ["VillageSpellCriticalStrikeChanceTwoHand"] = { affix = "", "(30-35)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, tradeHashes = { [737908626] = { "(30-35)% increased Spell Critical Strike Chance" }, } }, + ["VillageWeaponSpellDamage1"] = { affix = "", "(10-19)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-19)% increased Spell Damage" }, } }, + ["VillageWeaponSpellDamage2"] = { affix = "", "(20-29)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-29)% increased Spell Damage" }, } }, + ["VillageWeaponSpellDamage3"] = { affix = "", "(30-39)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-39)% increased Spell Damage" }, } }, + ["VillageWeaponSpellDamageTwoHand1"] = { affix = "", "(15-29)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-29)% increased Spell Damage" }, } }, + ["VillageWeaponSpellDamageTwoHand2"] = { affix = "", "(30-44)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-44)% increased Spell Damage" }, } }, + ["VillageWeaponSpellDamageTwoHand3"] = { affix = "", "(45-59)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-59)% increased Spell Damage" }, } }, + ["VillageMinionDamageOnWeapon1"] = { affix = "", "Minions deal (10-19)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-19)% increased Damage" }, } }, + ["VillageMinionDamageOnWeapon2"] = { affix = "", "Minions deal (20-29)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-29)% increased Damage" }, } }, + ["VillageMinionDamageOnWeapon3"] = { affix = "", "Minions deal (30-39)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-39)% increased Damage" }, } }, + ["VillageMinionDamageOnTwoHandWeapon1"] = { affix = "", "Minions deal (15-29)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-29)% increased Damage" }, } }, + ["VillageMinionDamageOnTwoHandWeapon2"] = { affix = "", "Minions deal (30-44)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, + ["VillageMinionDamageOnTwoHandWeapon3"] = { affix = "", "Minions deal (45-59)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, + ["VillageGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, + ["VillageGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, + ["VillageGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, + ["VillageGlobalIncreaseChaosSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, + ["VillageGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, + ["VillageGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, + ["VillageLocalStunThresholdReduction"] = { affix = "", "(21-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2523 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [832404842] = { "(21-25)% reduced Enemy Stun Threshold with this Weapon" }, } }, + ["VillageAdditionalProjectiles"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1815 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, + ["VillageLocalIncreaseSocketedMeleeGemLevel"] = { affix = "", "+2 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "gem" }, tradeHashes = { [829382474] = { "+2 to Level of Socketed Melee Gems" }, } }, + ["VillageAdditionalVaalSoulOnKill"] = { affix = "", "100% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, tradeHashes = { [1962922582] = { "100% chance to gain an additional Vaal Soul on Kill" }, } }, + ["VillageLocalChanceToPoisonOnHit"] = { affix = "", "10% chance to Poison on Hit", statOrder = { 8116 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "10% chance to Poison on Hit" }, } }, + ["VillageLocalChanceToBleed"] = { affix = "", "10% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "village_runesmithing_enchant", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, } }, + ["VillageMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1772 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of Life on Kill" }, } }, + ["VillageMaximumManaOnKillPercent"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1774 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of Mana on Kill" }, } }, + ["VillageCoverInAshOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Ash on Hit", statOrder = { 5976 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [324460247] = { "(10-15)% chance to Cover Enemies in Ash on Hit" }, } }, + ["VillageCoverInFrostOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Frost on Hit", statOrder = { 5980 }, level = 1, group = "CoverInFrostOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3235270673] = { "(10-15)% chance to Cover Enemies in Frost on Hit" }, } }, + ["VillageElusiveOnCriticalStrike"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4317 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, tradeHashes = { [2896192589] = { "Gain Elusive on Critical Strike" }, } }, + ["VillageFortifyOnMeleeHit"] = { affix = "", "Melee Hits Fortify", statOrder = { 2287 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [1166417447] = { "Melee Hits Fortify" }, } }, + ["VillageLocalNoVaalSoulGainPrevention"] = { affix = "", "Socketed Vaal Skills do not apply Soul Gain Prevention", statOrder = { 589 }, level = 1, group = "LocalVaalSoulGainPreventionVillage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, tradeHashes = { [1292359483] = { "Socketed Vaal Skills do not apply Soul Gain Prevention" }, } }, + ["VillageTriggerSocketedFireSpellOnHit"] = { affix = "", "Trigger a Socketed Fire Spell on Hit, with a 0.25 second Cooldown", statOrder = { 8245 }, level = 1, group = "TriggerSocketedSpellOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "caster", "gem" }, tradeHashes = { [3676763995] = { "Trigger a Socketed Fire Spell on Hit, with a 0.25 second Cooldown" }, } }, + ["VillageLocalElementalDamageNoPhysical"] = { affix = "", "No Physical Damage", "Has (50-100)% increased Elemental Damage", statOrder = { 1255, 8038 }, level = 1, group = "LocalElementalDamageNoPhysical", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental" }, tradeHashes = { [385756972] = { "No Physical Damage" }, [692420067] = { "Has (50-100)% increased Elemental Damage" }, } }, + ["VillageLocalPhysicalDamageAddedAsEachElement"] = { affix = "", "Gain (30-50)% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4298 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "village_runesmithing_enchant", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "" }, [3913265126] = { "Gain (30-50)% of Weapon Physical Damage as Extra Damage of each Element" }, } }, + ["VillageTormentHauntedItem"] = { affix = "", "Haunted by Tormented Spirits", statOrder = { 7407 }, level = 1, group = "TormentHauntedItem", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1076392774] = { "Haunted by Tormented Spirits" }, } }, + ["VillageSpellCorrosionOnHitChance"] = { affix = "", "(10-20)% chance to inflict Corrosion on Hit with Spells", statOrder = { 10339 }, level = 1, group = "SpellCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, tradeHashes = { [1960314688] = { "(10-20)% chance to inflict Corrosion on Hit with Spells" }, } }, + ["VillageAttackFireDamageMaximumMana"] = { affix = "", "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon", statOrder = { 4972 }, level = 1, group = "AttackFireDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, tradeHashes = { [4107994326] = { "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon" }, } }, + ["VillageAttackColdDamageEnergyShield"] = { affix = "", "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon", statOrder = { 4971 }, level = 1, group = "AttackColdDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2566313732] = { "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon" }, } }, + ["VillageTemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2545 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, + ["VillagePunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6088 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } }, + ["VillageEnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2539 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, + ["VillageAttackConvertToFire"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Fire Damage", statOrder = { 4929 }, level = 1, group = "AttackConvertToFire", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [796222013] = { "(20-30)% of Attack Physical Damage Converted to Fire Damage" }, } }, + ["VillageAttackConvertToCold"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Cold Damage", statOrder = { 4928 }, level = 1, group = "AttackConvertToCold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2186742030] = { "(20-30)% of Attack Physical Damage Converted to Cold Damage" }, } }, + ["VillageAttackConvertToLightning"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Lightning Damage", statOrder = { 4930 }, level = 1, group = "AttackConvertToLightning", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1188616832] = { "(20-30)% of Attack Physical Damage Converted to Lightning Damage" }, } }, + ["VillageMaximumShock"] = { affix = "", "+10% to Maximum Effect of Shock", statOrder = { 10156 }, level = 1, group = "MaximumShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4264358613] = { "+10% to Maximum Effect of Shock" }, } }, + ["VillageSpellAddedChaosDamageMaximumLife"] = { affix = "", "Spells deal added Chaos Damage equal to 4% of your maximum Life", statOrder = { 4591 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3175648755] = { "Spells deal added Chaos Damage equal to 4% of your maximum Life" }, } }, + ["VillageRageOnMeleeHit"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6938 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, + ["VillageRageEffect"] = { affix = "", "(7-10)% increased Rage Effect", statOrder = { 9937 }, level = 1, group = "RageEffect", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2194261591] = { "(7-10)% increased Rage Effect" }, } }, + ["VillageAttacksCostLife"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10999 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [3358745905] = { "Attacks Cost Life instead of Mana" }, } }, + ["VillageAdditionalProjectilesRandomDirection"] = { affix = "", "Skills fire 2 additional Projectiles", "Projectiles are fired in random directions", statOrder = { 1815, 9971 }, level = 1, group = "AdditionalProjectilesRandomDirection", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4159765624] = { "Projectiles are fired in random directions" }, [74338099] = { "Skills fire 2 additional Projectiles" }, } }, + ["VillageAdditionalCurseOnEnemies"] = { affix = "", "You can apply an additional Curse", statOrder = { 2191 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["VillagePointBlank"] = { affix = "", "Point Blank", statOrder = { 10968 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, + ["VillagePlayerFarShot"] = { affix = "", "Far Shot", statOrder = { 10995 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, + ["VillageIronGrip"] = { affix = "", "Iron Grip", statOrder = { 10984 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, + ["VillageIronWill"] = { affix = "", "Iron Will", statOrder = { 10997 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, + ["VillageGainMagicMonsterModsOnKill"] = { affix = "", "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6859 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3976991498] = { "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds" }, } }, + ["VillageLocalLifeLeechIsInstant"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2563 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, + ["VillageLocalManaLeechIsInstant"] = { affix = "", "Mana Leech from Hits with this Weapon is Instant", statOrder = { 8102 }, level = 1, group = "LocalManaLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, tradeHashes = { [3287200156] = { "Mana Leech from Hits with this Weapon is Instant" }, } }, + ["VillageESLeechFromAttacksNotRemovedOnFullES"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6524 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "defences", "energy_shield" }, tradeHashes = { [1004885987] = { "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield" }, } }, + ["VillageReturningProjectiles"] = { affix = "", "Attack Projectiles Return to you", statOrder = { 2858 }, level = 1, group = "ReturningAttackProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [1658124062] = { "Attack Projectiles Return to you" }, } }, + ["VillageLocalChanceForPoisonDamage"] = { affix = "", "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7979 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "village_runesmithing_enchant", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, + ["VillageLocalChanceForBleedingDamage"] = { affix = "", "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7978 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "village_runesmithing_enchant", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, + ["VillageFireExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3602667353] = { "(15-25)% chance to inflict Fire Exposure on Hit" }, } }, + ["VillageColdExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2630708439] = { "(15-25)% chance to inflict Cold Exposure on Hit" }, } }, + ["VillageLightningExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 1, group = "LightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4265906483] = { "(15-25)% chance to inflict Lightning Exposure on Hit" }, } }, + ["VillageExertedAttackDamage"] = { affix = "", "Exerted Attacks deal (80-100)% increased Damage", statOrder = { 6444 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (80-100)% increased Damage" }, } }, + ["VillageEnemiesDestroyedOnKill"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6463 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2970902024] = { "Enemies Killed by your Hits are destroyed" }, } }, + ["VillageChanceToImpaleWithSpells"] = { affix = "", "(10-15)% chance to Impale on Spell Hit", statOrder = { 10340 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster" }, tradeHashes = { [3094222195] = { "(10-15)% chance to Impale on Spell Hit" }, } }, + ["VillageBlockWhileDualWielding"] = { affix = "", "+(6-8)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block", "village_runesmithing_enchant" }, tradeHashes = { [2166444903] = { "+(6-8)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["VillageAggravateBleedOnAttack"] = { affix = "", "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4652 }, level = 1, group = "AggravateBleedOnAttack", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2705185939] = { "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["VillagePoisonDuration"] = { affix = "", "(15-25)% increased Poison Duration", statOrder = { 3205 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(15-25)% increased Poison Duration" }, } }, + ["VillageSpellChanceToBlind"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Spells", statOrder = { 10335 }, level = 1, group = "SpellChanceToBlind", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1012291104] = { "(10-20)% chance to Blind Enemies on Hit with Spells" }, } }, + ["VillageWardRestoreChance"] = { affix = "", "(5-10)% chance to Restore your Ward on Hit", statOrder = { 10071 }, level = 1, group = "WardRestoreChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1925110785] = { "(5-10)% chance to Restore your Ward on Hit" }, } }, + ["VillageMarkedEnemyNoBlockSuppress"] = { affix = "", "Your Hits against Marked Enemy cannot be Blocked or Suppressed", statOrder = { 7257 }, level = 1, group = "MarkedEnemyNoBlockSuppress", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3548778396] = { "Your Hits against Marked Enemy cannot be Blocked or Suppressed" }, } }, + ["VillageArcaneSurgeOnLifeSpent"] = { affix = "", "Gain Arcane Surge after Spending a total of 200 Life", statOrder = { 6815 }, level = 1, group = "ArcaneSurgeOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3204560615] = { "Gain Arcane Surge after Spending a total of 200 Life" }, } }, + ["VillageOnslaughtOnManaSpent"] = { affix = "", "Gain Onslaught after Spending a total of 200 Mana", statOrder = { 6877 }, level = 1, group = "OnslaughtOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [351890141] = { "Gain Onslaught after Spending a total of 200 Mana" }, } }, + ["VillageCriticalAilmentDamageOverTimeMultiplier"] = { affix = "", "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes", statOrder = { 1268 }, level = 1, group = "CriticalAilmentDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1781630546] = { "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes" }, } }, + ["VillageWeaponIgnoreElementalResistance"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4896 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2170876738] = { "Attack Critical Strikes ignore Enemy Monster Elemental Resistances" }, } }, + ["VillageLocalMeleeWeaponRange"] = { affix = "", "+2 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [350598685] = { "+2 metres to Weapon Range" }, } }, + ["VillageChaosDamageLuck"] = { affix = "", "Chaos Damage with Hits is Lucky", statOrder = { 5809 }, level = 1, group = "ChaosDamageLuck", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2678511347] = { "Chaos Damage with Hits is Lucky" }, } }, + ["VillageGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skill Gems" }, } }, + ["VillageExplosionConflux"] = { affix = "", "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds", statOrder = { 6834 }, level = 1, group = "ExplosionConflux", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3581844317] = { "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds" }, } }, + ["VillageKeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["VillageElementalDamagePercentAddedAsChaos"] = { affix = "", "Gain (7-10)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1965 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (7-10)% of Elemental Damage as Extra Chaos Damage" }, } }, + ["VillageMeleeAttacksUsableWithoutLife"] = { affix = "", "Insufficient Life doesn't prevent your Melee Attacks", statOrder = { 9310 }, level = 1, group = "MeleeAttacksUsableWithoutLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2461005744] = { "Insufficient Life doesn't prevent your Melee Attacks" }, } }, + ["VillageEnduranceChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "village_runesmithing_enchant" }, tradeHashes = { [1054322244] = { "(5-10)% chance to gain an Endurance Charge on Kill" }, } }, + ["VillageFrenzyChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "village_runesmithing_enchant" }, tradeHashes = { [1826802197] = { "(5-10)% chance to gain a Frenzy Charge on Kill" }, } }, + ["VillagePowerChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "village_runesmithing_enchant" }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } }, + ["VillageUnholyMightOnCrit"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2951 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, tradeHashes = { [2959020308] = { "Gain Unholy Might for 4 seconds on Critical Strike" }, } }, + ["VillageMaximumGolems"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3726 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [2821079699] = { "+1 to maximum number of Summoned Golems" }, } }, + ["VillageIncreasedGold"] = { affix = "", "5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7404 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [253956903] = { "5% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["VillageMeleeSplash"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1191 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, + ["VillageDamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6107 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } }, + ["VillageConvertColdToChaos"] = { affix = "", "(20-25)% of Cold Damage Converted to Chaos Damage", statOrder = { 1992 }, level = 1, group = "ConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2379258771] = { "(20-25)% of Cold Damage Converted to Chaos Damage" }, } }, + ["VillageAlternatingShrineBuff"] = { affix = "", "Gain a random shrine buff every 10 seconds", statOrder = { 6911 }, level = 1, group = "AlternatingShrineBuff", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2284520710] = { "Gain a random shrine buff every 10 seconds" }, } }, + ["VillageSummonPhantasmOnCorpseConsume"] = { affix = "", "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse", statOrder = { 839 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3252082366] = { "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse" }, } }, + ["VillageMinionDamageAlsoAffectsYou"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3787 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, + ["VillageFireDamagePerResistanceAbove75"] = { affix = "", "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%", statOrder = { 6653 }, level = 1, group = "FireDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire" }, tradeHashes = { [3013187834] = { "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%" }, } }, + ["VillageSuppressChanceEmptyOffhand"] = { affix = "", "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10327 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2076926581] = { "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty" }, } }, + ["VillageShepherdOfSouls"] = { affix = "", "Shepherd of Souls", statOrder = { 10981 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "vaal" }, tradeHashes = { [2038577923] = { "Shepherd of Souls" }, } }, + ["VillageFireBurstOnHit"] = { affix = "", "Cast Level 10 Fire Burst on Hit", statOrder = { 7998 }, level = 1, group = "FireBurstOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1606553462] = { "Cast Level 10 Fire Burst on Hit" }, } }, + ["VillageBurningEnemiesExplode"] = { affix = "", "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage", statOrder = { 6600 }, level = 1, group = "BurningEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" }, } }, + ["VillageLightningStrikesOnCrit"] = { affix = "", "Trigger Level 5 Lightning Bolt when you deal a Critical Strike", statOrder = { 793 }, level = 1, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 5 Lightning Bolt when you deal a Critical Strike" }, } }, + ["VillageShockedGroundOnHit"] = { affix = "", "Trigger Level 10 Shock Ground on Hit", statOrder = { 791 }, level = 1, group = "ShockedGroundOnHitSkill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2845525306] = { "Trigger Level 10 Shock Ground on Hit" }, } }, + ["VillageShockNearbyEnemyOnShockedKill"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2848 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, tradeHashes = { [3462132936] = { "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy" }, } }, + ["VillageIgniteNearbyEnemyOnIgnitedKill"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2849 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, tradeHashes = { [2638352064] = { "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy" }, } }, + ["VillageSummonWolfOnKillOld"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 812 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, + ["VillageCullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2062 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["VillageConsumeCorpseLifeRecovery"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life", statOrder = { 5946 }, level = 1, group = "ConsumeCorpseLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life" }, } }, + ["VillageSummonRagingSpiritOnKill"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 805 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, + ["VillageMinionBurningCloudOnDeath"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second", statOrder = { 9437 }, level = 1, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "minion" }, tradeHashes = { [4099989681] = { "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second" }, } }, + ["VillageAuraAddedLightningDamagePerBlueSocket"] = { affix = "", "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket", statOrder = { 3042 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning" }, tradeHashes = { [3726585224] = { "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket" }, } }, + ["VillageStalkingPustuleOnKill"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 838 }, level = 1, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, tradeHashes = { [1662669872] = { "Trigger Level 1 Stalking Pustule on Kill" }, } }, + ["VillageGrantsEnvy"] = { affix = "", "Grants Level 1 Envy Skill", statOrder = { 667 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, tradeHashes = { [52953650] = { "Grants Level 1 Envy Skill" }, } }, + ["VillageGrantsIcicleNovaTrigger"] = { affix = "", "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 832 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy" }, } }, + ["VillageSpreadChilledGroundOnFreeze"] = { affix = "", "(10-15)% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3443 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, tradeHashes = { [2901262227] = { "(10-15)% chance to create Chilled Ground when you Freeze an Enemy" }, } }, + ["VillageSpreadConsecratedGroundOnShatter"] = { affix = "", "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy", statOrder = { 4163 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [4148932984] = { "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy" }, } }, + ["VillageColdAddedAsFireFrozenEnemy"] = { affix = "", "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5885 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [1383929411] = { "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies" }, } }, + ["VillageCurseOnHitElementalWeakness"] = { affix = "", "(20-30)% chance to Curse Enemies with Elemental Weakness on Hit", statOrder = { 2542 }, level = 1, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, tradeHashes = { [636057969] = { "(20-30)% chance to Curse Enemies with Elemental Weakness on Hit" }, } }, + ["VillageChaoticMightOnKill"] = { affix = "", "(7-13)% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5779 }, level = 1, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, tradeHashes = { [562371749] = { "(7-13)% chance to gain Chaotic Might for 10 seconds on Kill" }, } }, + ["VillageIncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (20-30)% increased Damage if you've Hit Recently", statOrder = { 9428 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (20-30)% increased Damage if you've Hit Recently" }, } }, + ["TriggerSocketedElementalSpellOnBlockUnique__1"] = { affix = "", "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown", statOrder = { 8130 }, level = 60, group = "TriggerSocketedElementalSpellOnBlock", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [2036151955] = { "" }, [3591112611] = { "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown" }, } }, + ["BannerResourceGainedUnique__1"] = { affix = "", "(25-50)% increased Valour gained", statOrder = { 5027 }, level = 1, group = "BannerResourceGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050359418] = { "(25-50)% increased Valour gained" }, } }, + ["CannotGainPowerChargesUnique__1"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5510 }, level = 1, group = "CannotGainPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2503253050] = { "Cannot gain Power Charges" }, } }, + ["CannotGainEnduranceChargesUnique__2"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 5051 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3037185464] = { "Cannot gain Endurance Charges" }, } }, + ["FireLightningTakenSsColdUniquFlask8"] = { affix = "", "(20-30)% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect", statOrder = { 980 }, level = 1, group = "FireLightningTakenSsColdUniquFlask8", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1349002319] = { "(20-30)% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect" }, } }, + ["KeystoneBloodsoakedBladeUnique__1"] = { affix = "", "Bloodsoaked Blade", statOrder = { 10986 }, level = 1, group = "BloodsoakedBlade", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2363616962] = { "Bloodsoaked Blade" }, } }, + ["MaximumEnduranceFrenzyPowerChargesIs0Unique__1"] = { affix = "", "Maximum Endurance, Frenzy and Power Charges is 0", statOrder = { 9255 }, level = 1, group = "MaximumEnduranceFrenzyPowerChargesIs0", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge" }, tradeHashes = { [2957871460] = { "Maximum Endurance, Frenzy and Power Charges is 0" }, } }, + ["VillageTripleEnchant1H"] = { affix = "", "Can be Enchanted by a Kalguuran Runesmith", "Can have 2 additional Runesmithing Enchantments", "Can be Runesmithed as though it were all One Handed Melee Weapon Types", statOrder = { 4476, 7974, 7975 }, level = 1, group = "VillageTripleEnchant1H", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1045438865] = { "Can have 2 additional Runesmithing Enchantments" }, [4005027470] = { "Can be Enchanted by a Kalguuran Runesmith" }, [3221277412] = { "Can be Runesmithed as though it were all One Handed Melee Weapon Types" }, } }, + ["ExcommunicateOnMeleeHitUnique"] = { affix = "", "Excommunicate Enemies on Melee Hit for 3 seconds", statOrder = { 6593 }, level = 97, group = "ExcommunicateOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2765129230] = { "Excommunicate Enemies on Melee Hit for 3 seconds" }, } }, + ["MeleeCritChanceAgainstExcommunicatedUnique__1"] = { affix = "", "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies", statOrder = { 9308 }, level = 1, group = "MeleeCritChanceAgainstExcommunicated", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4154636328] = { "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies" }, } }, + ["AttackDamageIfHitRecentlyUnique"] = { affix = "", "(20-40)% increased Attack Damage if you've been Hit Recently", statOrder = { 3569 }, level = 98, group = "AttackDamageIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [871414818] = { "(20-40)% increased Attack Damage if you've been Hit Recently" }, } }, + ["AttackCritAfterBeingCritUnique"] = { affix = "", "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes", statOrder = { 4694 }, level = 98, group = "AttackCritAfterBeingCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [276813598] = { "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes" }, } }, + ["WarcryLifeCostUnique"] = { affix = "", "Warcries Cost +15% of Life", statOrder = { 10717 }, level = 75, group = "WarcryLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1427553227] = { "Warcries Cost +15% of Life" }, } }, + ["NoCooldownWarcriesUnique"] = { affix = "", "Non-Instant Warcries ignore their Cooldown when Used", statOrder = { 9644 }, level = 75, group = "NoCooldownWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1863128284] = { "Non-Instant Warcries ignore their Cooldown when Used" }, } }, + ["ExtremelyLuckyUnique"] = { affix = "", "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two", statOrder = { 6627, 6627.1 }, level = 1, group = "ExtremeLuck", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [675784826] = { "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two" }, } }, + ["ProjectileAvoidUnique"] = { affix = "", "(1-10)% chance to avoid Projectiles", statOrder = { 5046 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3452269808] = { "(1-10)% chance to avoid Projectiles" }, } }, + ["MistyFootprintsUnique"] = { affix = "", "Misty Footprints", statOrder = { 11026 }, level = 1, group = "MistyFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2519043677] = { "Misty Footprints" }, } }, + ["ArcaneSurgeMovementSpeedUnique"] = { affix = "", "Increases to Cast Speed from Arcane Surge also applies to Movement Speed", statOrder = { 4479 }, level = 68, group = "ArcaneSurgeMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [103999915] = { "Increases to Cast Speed from Arcane Surge also applies to Movement Speed" }, } }, + ["ArcaneSurgeOnMovementSkillUnique"] = { affix = "", "Gain Arcane Surge when you use a Movement Skill", statOrder = { 4477 }, level = 68, group = "ArcaneSurgeOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3221795893] = { "Gain Arcane Surge when you use a Movement Skill" }, } }, + ["ArcaneSurgeEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Arcane Surge on you", statOrder = { 3324 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3015437071] = { "(30-50)% increased Effect of Arcane Surge on you" }, } }, + ["StarfellOnMeleeCriticalHitUnique__1"] = { affix = "", "Trigger Level 20 Starfall on Melee Critical Strike", statOrder = { 804 }, level = 85, group = "StarfellOnMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1505174316] = { "Trigger Level 20 Starfall on Melee Critical Strike" }, } }, + ["InfluenceElementalConfluxUnique__1"] = { affix = "", "You have Elemental Conflux if the stars are aligned", statOrder = { 4095 }, level = 86, group = "InfluenceElementalConflux", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2741732114] = { "You have Elemental Conflux if the stars are aligned" }, } }, + ["InfluenceElementalSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Elemental Skill Gems if the stars are aligned", statOrder = { 5064 }, level = 86, group = "InfluenceElementalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [547920428] = { "+(1-3) to Level of all Elemental Skill Gems if the stars are aligned" }, } }, + ["InfluenceElementalSupportGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Elemental Support Gems if the stars are aligned", statOrder = { 5065 }, level = 86, group = "InfluenceElementalSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1640163302] = { "+(1-3) to Level of all Elemental Support Gems if the stars are aligned" }, } }, + ["GrantsSummonVoidSpawnUnique__1"] = { affix = "", "Trigger Level 20 Summon Void Spawn every 4 seconds", statOrder = { 749 }, level = 97, group = "GrantSummonVoidSpawnEvery4Seconds", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1560737213] = { "" }, [658873122] = { "Trigger Level 20 Summon Void Spawn every 4 seconds" }, } }, + ["ExtraChaosDamagePerVoidSpawnUnique__1"] = { affix = "", "Gain (4-6)% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn", statOrder = { 9622 }, level = 97, group = "ExtraChaosDamagePerVoidSpawn", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1621629493] = { "Gain (4-6)% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn" }, } }, + ["DamageRemovedFromVoidSpawnsUnique__1"] = { affix = "", "(4-6)% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn", statOrder = { 6179 }, level = 97, group = "DamageRemovedFromVoidSpawns", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3269077876] = { "(4-6)% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn" }, } }, + ["UnarmedStrikeSkillsAdditionalTargetUnique__1"] = { affix = "", "DNT Unarmed Non-Vaal Strike Skills target (1-7) additional nearby Enemy", statOrder = { 10644 }, level = 1, group = "UnarmedStrikeSkillsAdditionalTarget", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3383195220] = { "DNT Unarmed Non-Vaal Strike Skills target (1-7) additional nearby Enemy" }, } }, + ["UnarmedMeleeAttackCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks", statOrder = { 10645 }, level = 97, group = "UnarmedMeleeAttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [468580269] = { "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks" }, } }, + ["MovementVelocityUnique__55"] = { affix = "", "(1-7)% increased Movement Speed", statOrder = { 1821 }, level = 97, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-7)% increased Movement Speed" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__38"] = { affix = "", "(100-777)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 97, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(100-777)% increased Evasion and Energy Shield" }, } }, + ["UnarmedStrikeRangeUnique__1"] = { affix = "", "+(0.1-0.7) metres to Melee Strike Range with Unarmed Attacks", statOrder = { 3113 }, level = 97, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(0.1-0.7) metres to Melee Strike Range with Unarmed Attacks" }, } }, + ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(1-7)% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3607 }, level = 97, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(1-7)% to Unarmed Melee Attack Critical Strike Chance" }, } }, + ["UnarmedMoreMeleeAttackSpeedUnique__1"] = { affix = "", "(1-7)% more Attack Speed with Unarmed Melee Attacks", statOrder = { 1454 }, level = 97, group = "UnarmedMoreMeleeAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [906039557] = { "(1-7)% more Attack Speed with Unarmed Melee Attacks" }, } }, + ["DoubleMinionLimitsUnique_1"] = { affix = "", "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons", statOrder = { 9298, 9298.1 }, level = 100, group = "DoubleMinionLimitsUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [56473917] = { "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons" }, } }, + ["GainDivinationBuffOnFlaskUsedUniqueFlask__1"] = { affix = "", "Grants a random Divination Buff for 20 seconds when Used", statOrder = { 922 }, level = 42, group = "GainDivinationBuffOnFlaskUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3081454623] = { "Grants a random Divination Buff for 20 seconds when Used" }, } }, + ["TargetsUnaffectedByYourHexesUnique__1"] = { affix = "", "Targets are Unaffected by your Hexes", statOrder = { 2625 }, level = 40, group = "TargetsUnaffectedByYourHexes", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2325471503] = { "Targets are Unaffected by your Hexes" }, } }, + ["EatSoulAfterHexPercentCurseExpireUnique__1"] = { affix = "", "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power", statOrder = { 6376 }, level = 40, group = "EatSoulAfterHexPercentCurseExpire", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [224931623] = { "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power" }, } }, + ["LocalFlaskRemovePercentOfLifeOnUseUnique_7"] = { affix = "", "Removes (10-15)% of Life when Used", statOrder = { 895 }, level = 1, group = "LocalFlaskRemovePercentLifeOnUse", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [3860231079] = { "Removes (10-15)% of Life when Used" }, } }, + ["LocalFlaskStartEnergyShieldRechargeUnique_1"] = { affix = "", "Starts Energy Shield Recharge when Used", statOrder = { 896 }, level = 1, group = "LocalFlaskStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3130697435] = { "Starts Energy Shield Recharge when Used" }, } }, + ["LocalFlaskEnergyShieldRechargeNotDelayedByDamageDuringEffectUnique_1"] = { affix = "", "Energy Shield Recharge is not delayed by Damage during Effect", statOrder = { 1003 }, level = 80, group = "LocalFlaskEnergyShieldRechargeNotInterruptedDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [23814088] = { "Energy Shield Recharge is not delayed by Damage during Effect" }, } }, + ["RecoverLifePercentOnBlockUnique__1"] = { affix = "", "Lose (3-5)% of Life when you Block", statOrder = { 3094 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Lose (3-5)% of Life when you Block" }, } }, + ["BlockChancePerLifeSpentRecentlyUnique__1"] = { affix = "", "DNT (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently", statOrder = { 5299 }, level = 1, group = "BlockChancePerLifeSpentRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2171886867] = { "DNT (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently" }, } }, + ["CanOnlyInflictWitherAgainstFullLifeEnemies__1"] = { affix = "", "Cannot Inflict Wither on targets that are not on Full Life", statOrder = { 5463 }, level = 1, group = "CanOnlyInflictWitherAgainstFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [340591537] = { "Cannot Inflict Wither on targets that are not on Full Life" }, } }, + ["ApplyMaximumWitherOnChaosSkillHitUnique__1"] = { affix = "", "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds", statOrder = { 4740 }, level = 38, group = "ApplyMaximumWitherOnChaosSkillHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2676773112] = { "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds" }, } }, + ["UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1"] = { affix = "", "DNT Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100", statOrder = { 10643 }, level = 1, group = "UnarmedAddedChaosDamageForEachPoisonOnTarget", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3382196041] = { "DNT Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100" }, } }, + ["LessPoisonDurationUnique_1"] = { affix = "", "(50-60)% less Poison Duration", statOrder = { 3206 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "(50-60)% less Poison Duration" }, } }, + ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(40-50)% chance to Poison on Hit with Attacks", statOrder = { 3210 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(40-50)% chance to Poison on Hit with Attacks" }, } }, + ["IncreasedAttackSpeedUniqueGlovesDexInt_1"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-12)% increased Attack Speed" }, } }, + ["GainOnslaughtDuringLifeFlaskUnique__1"] = { affix = "", "DNT You have Onslaught during Effect of any Life Flask", statOrder = { 6872 }, level = 1, group = "GainOnslaughtDuringLifeFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [629617314] = { "DNT You have Onslaught during Effect of any Life Flask" }, } }, + ["OvercappedFireResistanceAsFirePrenetrationUnique__1"] = { affix = "", "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%", statOrder = { 3016 }, level = 100, group = "OvercappedFireResistanceAsFirePrenetration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [133804429] = { "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%" }, } }, + ["FireDamageOnSkillUseUnique__1"] = { affix = "", "Take (300-500) Fire Damage when you Use a Skill", statOrder = { 2235 }, level = 100, group = "FireDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4076381228] = { "Take (300-500) Fire Damage when you Use a Skill" }, } }, + ["MinionHaveNoAmourOrEnergyShieldUnique__1"] = { affix = "", "DNT Your minions have no Armour or Maximum Energy Shield", statOrder = { 9491 }, level = 1, group = "MinionHaveNoAmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4060457653] = { "DNT Your minions have no Armour or Maximum Energy Shield" }, } }, + ["MinionGainYourSpellSuppressUnique__1"] = { affix = "", "DNT Your minions gain your chance to Suppress Spell Damage", statOrder = { 9485 }, level = 1, group = "MinionGainYourSpellSuppress", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3888619765] = { "DNT Your minions gain your chance to Suppress Spell Damage" }, } }, + ["AllResistancesReducedPerActiveMinionUnique_1UNUSED"] = { affix = "", "DNT -2% to All Resistances per Minion", statOrder = { 4677 }, level = 1, group = "MinionCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [1456627145] = { "DNT -2% to All Resistances per Minion" }, } }, + ["GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED"] = { affix = "", "DNT +(3-5)% to Global Defenses per Minion", statOrder = { 6970 }, level = 1, group = "MinionCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, tradeHashes = { [2408967970] = { "DNT +(3-5)% to Global Defenses per Minion" }, } }, + ["AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "-2% to all Resistances per Minion from your Non-Vaal Skills", statOrder = { 1660 }, level = 1, group = "NonVaalMinionSkillCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [2894273152] = { "-2% to all Resistances per Minion from your Non-Vaal Skills" }, } }, + ["GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "(3-4)% increased Defences per Minion from your Non-Vaal Skills", statOrder = { 2868 }, level = 1, group = "NonVaalMinionSkillCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, tradeHashes = { [3169460653] = { "(3-4)% increased Defences per Minion from your Non-Vaal Skills" }, } }, + ["MinionsGainPercentOfYourResistancesUnique_1"] = { affix = "", "Minions gain added Resistances equal to 50% of your Resistances", statOrder = { 9484 }, level = 93, group = "MinionsGainYourResistancesPercent", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHashes = { [2370748292] = { "Minions gain added Resistances equal to 50% of your Resistances" }, } }, + ["SacrificeLifeToGainArrowUnique__1"] = { affix = "", "DNT Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed", statOrder = { 10098 }, level = 1, group = "SacrificeLifeToGainArrow", weightKey = { }, weightVal = { }, modTags = { "bow", "attack" }, tradeHashes = { [2868019709] = { "DNT Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed" }, } }, + ["ArmourFromShieldDoubledUnique__1"] = { affix = "", "Armour from Equipped Shield is doubled", statOrder = { 2016 }, level = 40, group = "ArmourFromShieldDoubled", weightKey = { }, weightVal = { }, modTags = { "shield", "defences", "armour" }, tradeHashes = { [651387761] = { "Armour from Equipped Shield is doubled" }, } }, + ["GainNoArmourFromBodyArmourUnique__1"] = { affix = "", "Gain no Armour from Equipped Body Armour", statOrder = { 3374 }, level = 40, group = "GainNoArmourFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "body_armour", "defences", "armour" }, tradeHashes = { [2150125858] = { "Gain no Armour from Equipped Body Armour" }, } }, + ["EnergyShieldRechargeApplyToManaUnique__1"] = { affix = "", "DNT Energy Shield Recharge instead applies to Mana", statOrder = { 6533 }, level = 1, group = "EnergyShieldRechargeApplyToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1572347373] = { "DNT Energy Shield Recharge instead applies to Mana" }, } }, + ["GrantShaperSkill_1"] = { affix = "", "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory", statOrder = { 764, 764.1 }, level = 85, group = "GrantShaperSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367775264] = { "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory" }, } }, + ["MaximumRemembranceUnique_1"] = { affix = "", "Maximum 10 Remembrance", statOrder = { 9250 }, level = 85, group = "MaximumRemembrance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3469876297] = { "Maximum 10 Remembrance" }, } }, + ["RemembranceGainedPerEnergyShieldUnique_1"] = { affix = "", "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned", statOrder = { 6831, 6831.1 }, level = 85, group = "RemembrancePerEnergyShieldSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [410922651] = { "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned" }, } }, + ["Maximum2OfSameTotemUnique__1"] = { affix = "", "You cannot have more than 2 Summoned Totems of the same type", statOrder = { 2280 }, level = 78, group = "Maximum2OfSameTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1121911611] = { "You cannot have more than 2 Summoned Totems of the same type" }, } }, + ["ManaFlaskEffectsAreNotRemovedAtFullManaUnique__1"] = { affix = "", "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue", statOrder = { 8287, 8287.1 }, level = 70, group = "ManaFlaskEffectsAreNotRemovedAtFullMana", weightKey = { }, weightVal = { }, modTags = { "mana_flask", "flask", "resource", "mana" }, tradeHashes = { [1548467016] = { "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue" }, } }, + ["CannotUseLifeFlaskUnique__1"] = { affix = "", "Can't use Life Flasks", statOrder = { 76 }, level = 70, group = "CannotUseLifeFlask", weightKey = { }, weightVal = { }, modTags = { "life_flask", "flask" }, tradeHashes = { [3283268320] = { "Can't use Life Flasks" }, } }, + ["FlaskEffectAlsoAffectsArcaneSurgeUnique__1"] = { affix = "", "Increases and Reductions to Effect of Flasks applied to you", "also applies to Effect of Arcane Surge on you at (200-250)% of their value", statOrder = { 4644, 4644.1 }, level = 70, group = "FlaskEffectAlsoAffectsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1213832501] = { "Increases and Reductions to Effect of Flasks applied to you", "also applies to Effect of Arcane Surge on you at (200-250)% of their value" }, } }, + ["ArcaneSurgeDuringManaFlaskEffectUnique__1"] = { affix = "", "You have Arcane Surge during Effect of any Mana Flask", statOrder = { 4748 }, level = 70, group = "ArcaneSurgeDuringManaFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "mana_flask" }, tradeHashes = { [1243471794] = { "You have Arcane Surge during Effect of any Mana Flask" }, } }, + ["NearbyAlliesShockedGrantYouChargesOnDeathUnique__1"] = { affix = "", "DNT Nearby Non-Player Allies are Shocked, taking 30% increased damage", "Gain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies", statOrder = { 9598, 9598.1 }, level = 1, group = "NearbyAlliesShockedGrantYouChargesOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3144427110] = { "DNT Nearby Non-Player Allies are Shocked, taking 30% increased damage", "Gain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10"] = { affix = "", "(120-180)% increased Physical Damage", statOrder = { 1255 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-180)% increased Physical Damage" }, } }, + ["WeaponPhysicalDamageAddedAsRandomElementUnique__2"] = { affix = "", "Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2969 }, level = 85, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1038949719] = { "Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element" }, } }, + ["LocalCriticalStrikeChanceUniqueTwoHandAxe_1"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1487 }, level = 85, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-30)% increased Critical Strike Chance" }, } }, + ["SupportedByArrowNovaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 20 Arrow Nova", statOrder = { 371 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 20 Arrow Nova" }, } }, + ["PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently", statOrder = { 9768, 9768.1 }, level = 1, group = "PhysicalAddedAsFireIfUsedRubyFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [128992179] = { "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently" }, } }, + ["PhysicalAddedAsColdIfUsedSapphireFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently", statOrder = { 9766, 9766.1 }, level = 1, group = "PhysicalAddedAsColdIfUsedSapphireFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4015395070] = { "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently" }, } }, + ["PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently", statOrder = { 9770, 9770.1 }, level = 1, group = "PhysicalAddedAsLightningIfUsedTopazFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [270706555] = { "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently" }, } }, + ["PhysicalAddedAsChaosIfUsedAmethystFlaskRecentlyUnique__1"] = { affix = "", "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently", statOrder = { 9765, 9765.1 }, level = 1, group = "PhysicalAddedAsChaosIfUsedAmethystFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [2417314413] = { "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently" }, } }, + ["TripleDamageIfSpentTimeOnAttackRecentlyUnique__1"] = { affix = "", "DNT Hits with this Weapon deal Triple Damage if you have spent at least 2 seconds on a single attack recently", statOrder = { 6233 }, level = 1, group = "TripleDamageIfSpentTimeOnAttackRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3652223421] = { "DNT Hits with this Weapon deal Triple Damage if you have spent at least 2 seconds on a single attack recently" }, } }, + ["AreaOfEffectUnique_9"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1903 }, level = 85, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, + ["SkillsCostEnergyShieldInsteadOfManaLifeUnique__1"] = { affix = "", "Skills Cost Energy Shield instead of Mana or Life", statOrder = { 5117 }, level = 93, group = "SkillsCostEnergyShieldInsteadOfManaLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [89922905] = { "Skills Cost Energy Shield instead of Mana or Life" }, } }, + ["AttacksGainMinMaxAddedChaosDamageBasedOnManaUnique__1"] = { affix = "", "(5-10) to (20-25) Added Attack Chaos Damage per 100 Maximum Mana", statOrder = { 1413 }, level = 93, group = "AttacksGainMinMaxAddedChaosDamageBasedOnMana", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos", "attack" }, tradeHashes = { [3795467298] = { "0 to (20-25) Added Attack Chaos Damage per 100 Maximum Mana" }, [3795240942] = { "(5-10) to 0 Added Attack Chaos Damage per 100 Maximum Mana" }, } }, + ["AddedEnergyShieldFlatUnique_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1580 }, level = 93, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-100) to maximum Energy Shield" }, } }, + ["PercentReducedMaximumManaUnique_1"] = { affix = "", "(40-60)% reduced maximum Mana", statOrder = { 1603 }, level = 93, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(40-60)% reduced maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1581 }, level = 100, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-100) to maximum Energy Shield" }, } }, + ["ChaosResistUniqueHelmetInt__1"] = { affix = "", "+(27-37)% to Chaos Resistance", statOrder = { 1664 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(27-37)% to Chaos Resistance" }, } }, + ["LifeDegenPerActiveMinionUniqueHelmetInt_1UNUSED"] = { affix = "", "Lose 0.3% Life per Second per Minion", statOrder = { 7447 }, level = 1, group = "LifeDegenPermyriadPerMinutePerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3458251673] = { "Lose 0.3% Life per Second per Minion" }, } }, + ["FlaskChargesUsedUnique___12"] = { affix = "", "(20-100)% increased Charges per use", statOrder = { 867 }, level = 42, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(20-100)% increased Charges per use" }, } }, + ["FlaskExtraChargesUnique__4"] = { affix = "", "+60 to Maximum Charges", statOrder = { 858 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+60 to Maximum Charges" }, } }, + ["IgniteDealNoDamageUnique__1"] = { affix = "", "Ignites you inflict deal no Damage", statOrder = { 7306 }, level = 1, group = "IgniteDealNoDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2046217536] = { "Ignites you inflict deal no Damage" }, } }, + ["TriggerIgnitionBlastOnIgnitedEnemyDeathUnique__1"] = { affix = "", "Trigger Level 5 Ignition Blast when an enemy dies while Ignited by you", statOrder = { 811 }, level = 1, group = "TriggerIgnitionBlastOnIgnitedEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [748455470] = { "" }, [2637583625] = { "Trigger Level 5 Ignition Blast when an enemy dies while Ignited by you" }, } }, + ["KeystoneEldritchBatteryUnique__3"] = { affix = "", "Eldritch Battery", statOrder = { 10945 }, level = 85, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["GlobalSpellGemsLevelUniqueStaff_1"] = { affix = "", "+(3-5) to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 85, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(3-5) to Level of all Spell Skill Gems" }, } }, + ["GlobalSpellGemsLevelUniqueStaff_2"] = { affix = "", "+(-1-1) to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(-1-1) to Level of all Spell Skill Gems" }, } }, + ["IncreasedCastSpeedUniqueStaff_1"] = { affix = "", "(25-40)% increased Cast Speed", statOrder = { 1470 }, level = 85, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-40)% increased Cast Speed" }, } }, + ["LocalIncreasedEnergyShieldPercentUniqueBody_1"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1582 }, level = 97, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(150-200)% increased Energy Shield" }, } }, + ["ChaosResistUniqueBody_1"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1664 }, level = 97, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(23-37)% to Chaos Resistance" }, } }, + ["SpellBlockChancePerMinionUnique__1"] = { affix = "", "DNT +2% Chance to Block Spell Damage per Minion", statOrder = { 10276 }, level = 1, group = "SpellBlockChancePerMinion", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2787823479] = { "DNT +2% Chance to Block Spell Damage per Minion" }, } }, + ["AggressiveMinionIfBlockedRecentlyUnique__1"] = { affix = "", "DNT Minions are Aggressive if you've Blocked Recently", statOrder = { 9399 }, level = 1, group = "AggressiveMinionIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1521135197] = { "DNT Minions are Aggressive if you've Blocked Recently" }, } }, + ["FeedingFrenzyIfBlockedRecentlyUnique__1"] = { affix = "", "DNT You have Feeding Frenzy if you've Blocked Recently", statOrder = { 10819 }, level = 1, group = "FeedingFrenzyIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2925106620] = { "DNT You have Feeding Frenzy if you've Blocked Recently" }, } }, + ["AdditionalTotemsUniqueScepter_1"] = { affix = "", "+(3-5) to maximum number of Summoned Totems", statOrder = { 2277 }, level = 78, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+(3-5) to maximum number of Summoned Totems" }, } }, + ["BattlemageKeystoneUnique__5"] = { affix = "", "Battlemage", statOrder = { 10935 }, level = 78, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["SummonTotemCastSpeedUnique__3"] = { affix = "", "(40-70)% increased Totem Placement speed", statOrder = { 2604 }, level = 78, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(40-70)% increased Totem Placement speed" }, } }, + ["LocalAddedPhysicalDamageUnique__38"] = { affix = "", "Adds (60-85) to (100-133) Physical Damage", statOrder = { 1300 }, level = 78, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (60-85) to (100-133) Physical Damage" }, } }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(150-200)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourUniqueHelmetStrInt_2"] = { affix = "", "(350-650)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(350-650)% increased Armour" }, } }, + ["IncreasedManaUniqueHelmetStrInt_1"] = { affix = "", "+(30-70) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-70) to maximum Mana" }, } }, + ["ManaRegenerationUniqueHelmetStrInt_1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, + ["AdditionalProjectilesUniqueWand_1"] = { affix = "", "Skills fire (2-3) additional Projectiles", statOrder = { 1815 }, level = 42, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire (2-3) additional Projectiles" }, } }, + ["ProjectilesExpireOnHitUniqueWand_1"] = { affix = "", "Projectiles cannot continue after colliding with targets", statOrder = { 9884 }, level = 42, group = "ProjectilesExpireOnHitv2", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1732165753] = { "Projectiles cannot continue after colliding with targets" }, } }, + ["IncreasedProjectileDamageUnique___12"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 2019 }, level = 42, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-50)% increased Projectile Damage" }, } }, + ["ProjectileSpeedUnique__9"] = { affix = "", "(10-50)% increased Projectile Speed", statOrder = { 1819 }, level = 42, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-50)% increased Projectile Speed" }, } }, + ["GlobalChaosSpellGemsLevelUniqueWand_1"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, + ["IncreasedChaosDamageUniqueWand_1"] = { affix = "", "(31-43)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-43)% increased Chaos Damage" }, } }, + ["NoManaRegenerationUniqueHelmetInt_1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2295 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, + ["GlobalNoEnergyShieldUnique__2"] = { affix = "", "Removes all Energy Shield", statOrder = { 2189 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1482608021] = { "Removes all Energy Shield" }, } }, + ["MaximumManaUnique__9"] = { affix = "", "(20-40)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-40)% increased maximum Mana" }, } }, + ["DamageTakenFromManaUniqueHelmet_1"] = { affix = "", "(20-30)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(20-30)% of Damage is taken from Mana before Life" }, } }, + ["ChanceToIgniteUnique__7"] = { affix = "", "(10-20)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-20)% chance to Ignite" }, } }, + ["GlobalAddedFireDamageUnique__5"] = { affix = "", "Adds (1-5) to (10-15) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (1-5) to (10-15) Fire Damage" }, } }, + ["FireResistanceUniqueGlovesInt_1"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(10-15)% to Fire Resistance" }, } }, + ["FlaskDurationUniqueGlovesDex_1"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-20)% increased Flask Effect Duration" }, } }, + ["FlaskLifeRecoveryUniqueGlovesDex_1"] = { affix = "", "(-100-50)% reduced Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(-100-50)% reduced Life Recovery from Flasks" }, } }, + ["LocalIncreasedEvasionRatingUniqueGlovesDex_1"] = { affix = "", "+(20-45) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(20-45) to Evasion Rating" }, } }, + ["DexterityUniqueGlovesDex_1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1201 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, + ["IgnitesReflectedToSelfUnique__1"] = { affix = "", "Ignites you cause are reflected back to you", statOrder = { 3073 }, level = 1, group = "IgnitesReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1049974046] = { "Ignites you cause are reflected back to you" }, } }, + ["UnaffectedByIgniteUnique__1"] = { affix = "", "Unaffected by Ignite", statOrder = { 10630 }, level = 1, group = "UnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } }, + ["CannotPoisonEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Cannot Poison Enemies with at least 12 Poisons on them", statOrder = { 5516 }, level = 1, group = "CannotPoisonEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos" }, tradeHashes = { [1833990055] = { "Cannot Poison Enemies with at least 12 Poisons on them" }, } }, + ["WitherOnHitEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them", statOrder = { 8246 }, level = 1, group = "WitherOnHitEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [4202723071] = { "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them" }, } }, + ["ApplyAdditionalPoisonUnique__1"] = { affix = "", "100% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4628 }, level = 1, group = "ApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [514698677] = { "100% chance to inflict an additional Poison on the same Target when you inflict Poison" }, } }, + ["LocalApplyAdditionalPoisonUnique__1"] = { affix = "", "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon", statOrder = { 8112, 8112.1 }, level = 1, group = "LocalApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, tradeHashes = { [2087599022] = { "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon" }, } }, + ["SacrificeMinionToFireAdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow", statOrder = { 10099 }, level = 69, group = "SacrificeMinionToFireAdditionalArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [151300265] = { "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow" }, } }, + ["AdditionalPoisonChanceUnique__1"] = { affix = "", "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4628 }, level = 100, group = "AdditionalPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, tradeHashes = { [514698677] = { "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison" }, } }, + ["ImpaleEffectPerImpaleOnYouUnique__1"] = { affix = "", "DNT Impales you inflict have (10-15)% increased Effect per Impale on you", statOrder = { 7345 }, level = 1, group = "ImpaleEffectPerImpaleOnYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3824925104] = { "DNT Impales you inflict have (10-15)% increased Effect per Impale on you" }, } }, + ["SpellLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to (24-35) Lightning Damage to Spells per 10 Intelligence", statOrder = { 10270 }, level = 83, group = "SpellLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [254155233] = { "Adds 1 to (24-35) Lightning Damage to Spells per 10 Intelligence" }, } }, + ["IncreasedSkillCostUnique_1"] = { affix = "", "31% increased Cost of Skills", statOrder = { 1904 }, level = 1, group = "SkillCostReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2904711338] = { "31% increased Cost of Skills" }, } }, + ["ViolentPaceUnique__1"] = { affix = "", "DNT Triggers Level 20 Violent Path when Equipped", statOrder = { 6340 }, level = 1, group = "ViolentPace", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3000633332] = { "DNT Triggers Level 20 Violent Path when Equipped" }, } }, + ["AreaOfEffectPerRageUnique__1"] = { affix = "", "DNT (5-10)% increased Area of Effect per 10 Rage", statOrder = { 4766 }, level = 1, group = "AreaOfEffectPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878076855] = { "DNT (5-10)% increased Area of Effect per 10 Rage" }, } }, + ["MinionMovementSpeedUnique_1"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (20-30)% increased Movement Speed" }, } }, + ["MinionMovementSpeedUnique_2"] = { affix = "", "Minions have (15-30)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } }, + ["MinionAttackSpeedUnique_1"] = { affix = "", "Minions have (6-12)% increased Attack Speed", statOrder = { 2941 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (6-12)% increased Attack Speed" }, [4000101551] = { "" }, } }, + ["MinionDoubleDamageChancePerFortificationUnique__1"] = { affix = "", "Minions have 1% chance to deal Double Damage per Fortification on you", statOrder = { 1999 }, level = 1, group = "MinionDoubleDamageChancePerFortification", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1793564431] = { "Minions have 1% chance to deal Double Damage per Fortification on you" }, } }, + ["MinionLifeAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value", statOrder = { 3790 }, level = 83, group = "MinionMaximumAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3942379359] = { "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value" }, } }, + ["FortifyDurationUnique_1"] = { affix = "", "(30-40)% increased Fortification Duration", statOrder = { 2288 }, level = 1, group = "FortifyDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2966206079] = { "(30-40)% increased Fortification Duration" }, } }, + ["TriggerSocketedSpellOnUnarmedMeleeCriticalHitUnique__1"] = { affix = "", "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 773 }, level = 97, group = "TriggerSocketedSpellOnUnarmedMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181232657] = { "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown" }, } }, + ["LinkSkillsCostLifeUnique__1"] = { affix = "", "DNT Link Skills Cost Life instead of Mana", statOrder = { 7591 }, level = 1, group = "LinkSkillsCostLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2332188930] = { "DNT Link Skills Cost Life instead of Mana" }, } }, + ["GuardSkillForLinkTargetUnique__1"] = { affix = "", "DNT Your Guard Skill Buffs take Damage for Linked Targets as well as you", statOrder = { 7014 }, level = 1, group = "GuardSkillForLinkTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3674946347] = { "DNT Your Guard Skill Buffs take Damage for Linked Targets as well as you" }, } }, + ["LinksTargetDamageableMinionsUnique_1"] = { affix = "", "Link Skills can target Damageable Minions", statOrder = { 7602 }, level = 1, group = "LinksTargetDamageableMinions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1323344255] = { "Link Skills can target Damageable Minions" }, } }, + ["LinksGrantMinionsLessDamageTakenUnique_1"] = { affix = "", "Your Linked Minions take (65-75)% less Damage", statOrder = { 7607 }, level = 1, group = "LinksGrantMinionsLessDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3132594008] = { "Your Linked Minions take (65-75)% less Damage" }, } }, + ["LinkedMinionsStealRareModsUnique_1"] = { affix = "", "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds", statOrder = { 7608 }, level = 1, group = "LinkedMinionsStealRareMods", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [517280174] = { "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds" }, } }, + ["LocalIncreasedPhysicalDamagePercentUnique__51"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1255 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-300)% increased Physical Damage" }, } }, + ["AddedPhysicalDamageUniqueQuiver10"] = { affix = "", "(5-10) to (12-24) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 69, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-10) to (12-24) Added Physical Damage with Bow Attacks" }, } }, + ["MinionDamageUniqueQuiver_1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1996 }, level = 69, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, + ["DexterityAndIntelligenceUniqueQuiver_1"] = { affix = "", "+(10-20) to Dexterity and Intelligence", statOrder = { 1205 }, level = 69, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(10-20) to Dexterity and Intelligence" }, } }, + ["DexterityAndIntelligenceUnique_2"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1205 }, level = 20, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(20-30) to Dexterity and Intelligence" }, } }, + ["DexterityAndIntelligenceUnique_3"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1205 }, level = 1, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(20-30) to Dexterity and Intelligence" }, } }, + ["IncreasedAttackSpeedUniqueQuiver10"] = { affix = "", "(7-14)% increased Attack Speed", statOrder = { 1434 }, level = 69, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-14)% increased Attack Speed" }, } }, + ["IncreasedLifeUniqueQuiver21"] = { affix = "", "+(75-200) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-200) to maximum Life" }, } }, + ["ProjectileSpeedUnique__10"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-30)% increased Projectile Speed" }, } }, + ["LifeGainPerTargetUniqueQuiver21"] = { affix = "", "Gain (5-10) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (5-10) Life per Enemy Hit with Attacks" }, } }, + ["LocalIncreasedEnergyShieldUnique__13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercentUnique__34"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(60-100)% increased Energy Shield" }, } }, + ["DexterityUnique__33"] = { affix = "", "+(20-35) to Dexterity", statOrder = { 1201 }, level = 100, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-35) to Dexterity" }, } }, + ["ChaosResistUnique__32"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1664 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-30)% to Chaos Resistance" }, } }, + ["AllResistancesUnique_1"] = { affix = "", "-(30-20)% to all Elemental Resistances", statOrder = { 1642 }, level = 100, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(30-20)% to all Elemental Resistances" }, } }, + ["ReducedFireResistanceUnique__2"] = { affix = "", "(65-75)% reduced Fire Resistance", statOrder = { 1651 }, level = 100, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1680060098] = { "(65-75)% reduced Fire Resistance" }, } }, + ["FireDamagePercentUnique__13"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1381 }, level = 100, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-20)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__14"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1381 }, level = 41, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } }, + ["FireDamagePercentUnique__15"] = { affix = "", "(90-110)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-110)% increased Fire Damage" }, } }, + ["InflictFireExposureNearbyOnMaxRageUnique_1"] = { affix = "", "DNT Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage", statOrder = { 7376 }, level = 1, group = "InflictFireExposureNearbyOnMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [4244612288] = { "DNT Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage" }, } }, + ["NearbyEnemiesHaveFireExposureWhileAtMaxRageUnique_1"] = { affix = "", "Nearby Enemies have Fire Exposure while at maximum Rage", statOrder = { 9593 }, level = 1, group = "NearbyEnemiesFireExposureWhileMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3952509108] = { "Nearby Enemies have Fire Exposure while at maximum Rage" }, } }, + ["FireDoTMultiPerRageUnique_1"] = { affix = "", "Each Rage also grants +2% to Fire Damage Over Time Multiplier", statOrder = { 6666 }, level = 1, group = "FireDoTMultiPerRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3947934765] = { "Each Rage also grants +2% to Fire Damage Over Time Multiplier" }, } }, + ["LocalFireDamageFromLifePercentUnique_1"] = { affix = "", "Attacks with this Weapon have Added Fire Damage equal to (6-10)% of Player's Maximum Life", statOrder = { 2979 }, level = 1, group = "WeaponAddedFireDamagePerMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3228133944] = { "Attacks with this Weapon have Added Fire Damage equal to (6-10)% of Player's Maximum Life" }, } }, + ["GrantUnleashPowerUnique__1"] = { affix = "", "DNT Grants Level 10 Unleash Power", statOrder = { 750 }, level = 1, group = "GrantUnleashPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3174866731] = { "DNT Grants Level 10 Unleash Power" }, } }, + ["TriggerSocketedSpellOnKillUnique__1"] = { affix = "", "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown", statOrder = { 799 }, level = 40, group = "TriggerSocketedSpellOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [3414107447] = { "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown" }, } }, + ["SummonWrithingWormEveryXMsUnique__1"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 631 }, level = 40, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } }, + ["AddedDamagePerStrengthUnique__2"] = { affix = "", "Adds 8 to 24 Physical Damage to Attacks per 25 Strength", statOrder = { 4925 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 8 to 24 Physical Damage to Attacks per 25 Strength" }, } }, + ["LocalIncreasedAttackSpeedUnique__41"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-30)% reduced Attack Speed" }, } }, + ["IncreasedAttackAreaOfEffectUnique__4"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4885 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, + ["MaximumLifeOnKillPercentUnique__7"] = { affix = "", "Recover (4-6)% of Life on Kill", statOrder = { 1772 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (4-6)% of Life on Kill" }, } }, + ["SummonFireSkitterbotUnique__1"] = { affix = "", "Summon Skitterbots also summons a Scorching Skitterbot", statOrder = { 10447 }, level = 20, group = "SummonFireSkitterbot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3402861859] = { "Summon Skitterbots also summons a Scorching Skitterbot" }, } }, + ["SkitterbotAurasAlsoAffectYouUnique__1"] = { affix = "", "Summoned Skitterbots' Auras affect you as well as Enemies", statOrder = { 10465 }, level = 20, group = "SkitterbotAurasAlsoAffectYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483115633] = { "Summoned Skitterbots' Auras affect you as well as Enemies" }, } }, + ["SkitterbotIncreasedAilmentEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots", statOrder = { 10467 }, level = 20, group = "SkitterbotIncreasedAilmentEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1268010771] = { "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots" }, } }, + ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4491 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [370215510] = { "(10-15)% increased maximum Life if 2 Elder Items are Equipped" }, } }, + ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4495 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [282325999] = { "Nearby Enemies are Unnerved if 2 Elder Items are Equipped" }, } }, + ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4485 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2589667827] = { "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped" }, } }, + ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4492 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2440345251] = { "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped" }, } }, + ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4483 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [430973012] = { "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped" }, } }, + ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4484 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1250221293] = { "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped" }, } }, + ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4486 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3525542360] = { "Unaffected by Poison if 2 Hunter Items are Equipped" }, } }, + ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4489 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3417925939] = { "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped" }, } }, + ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4496 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2813428845] = { "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped" }, } }, + ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4499 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [621302497] = { "Unaffected by Ignite if 2 Warlord Items are Equipped" }, } }, + ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4494 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1142276332] = { "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped" }, } }, + ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4497 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2003094183] = { "(10-15)% increased Strength if 2 Warlord Items are Equipped" }, } }, + ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4498 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3910756536] = { "Unaffected by Chill if 2 Redeemer Items are Equipped" }, } }, + ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3844045281] = { "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped" }, } }, + ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4488 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2543696990] = { "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped" }, } }, + ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4500 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1060931694] = { "Unaffected by Shock if 2 Crusader Items are Equipped" }, } }, + ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4487 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4172727064] = { "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped" }, } }, + ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4490 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2531873276] = { "(10-15)% increased Intelligence if 2 Crusader Items are Equipped" }, } }, + ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4514 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2662252183] = { "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped" }, } }, + ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4511 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [609019022] = { "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped" }, } }, + ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4503 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1481800004] = { "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped" }, } }, + ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4508 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1737470038] = { "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped" }, } }, + ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4510 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797685329] = { "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped" }, } }, + ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4518 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [4216579611] = { "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped" }, } }, + ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4512 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [2251969898] = { "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped" }, } }, + ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4509 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [502694677] = { "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped" }, } }, + ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4504 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1065101352] = { "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped" }, } }, + ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4516 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3003230483] = { "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped" }, } }, + ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4513, 4513.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4160015669] = { "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped" }, } }, + ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4506 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1417125941] = { "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped" }, } }, + ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4515 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [2351364973] = { "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped" }, } }, + ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4501 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1571123250] = { "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped" }, } }, + ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4505 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4123011890] = { "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped" }, } }, + ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4517 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [2006105838] = { "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped" }, } }, + ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4502 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4060882278] = { "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped" }, } }, + ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4507 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [901386819] = { "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped" }, } }, + ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4523 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3183988184] = { "Cannot be Stunned if 6 Elder Items are Equipped" }, } }, + ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4535 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [3564190077] = { "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped" }, } }, + ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4521 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3237046450] = { "(10-15)% increased Attributes if 6 Elder Items are Equipped" }, } }, + ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4534, 4534.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [725571864] = { "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped" }, } }, + ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4519 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [15754647] = { "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped" }, } }, + ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4536 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [1592303791] = { "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped" }, } }, + ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4533 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1397871191] = { "You can apply an additional Curse if 6 Hunter Items are Equipped" }, } }, + ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4525 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, tradeHashes = { [436225640] = { "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped" }, } }, + ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4520 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778002979] = { "Skills fire an additional Projectile if 6 Hunter Items are Equipped" }, } }, + ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4524 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2239810203] = { "Melee Hits Fortify if 6 Warlord Items are Equipped" }, } }, + ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4527 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [355220397] = { "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped" }, } }, + ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4530 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2657325376] = { "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped" }, } }, + ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4522 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3423343084] = { "Cannot be Frozen if 6 Redeemer Items are Equipped" }, } }, + ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4526 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [3496906750] = { "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped" }, } }, + ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4531 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1138578442] = { "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped" }, } }, + ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4528 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2588231083] = { "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped" }, } }, + ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4529 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1038851119] = { "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped" }, } }, + ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4532 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1460122571] = { "+1 to Maximum Power Charges if 6 Crusader Items are Equipped" }, } }, + ["MovementSpeedPer5RageUnique_1"] = { affix = "", "(2-3)% increased Movement Speed per 5 Rage", statOrder = { 9557 }, level = 1, group = "MovementSpeedPer5Rage", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2876770866] = { "(2-3)% increased Movement Speed per 5 Rage" }, } }, + ["MaximumRageHalvedUnique_1"] = { affix = "", "Maximum Rage is Halved", statOrder = { 9304 }, level = 80, group = "MaximumRageHalved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [73569783] = { "Maximum Rage is Halved" }, } }, + ["DamageTakenPer5RageCappedAt50PercentUnique_1"] = { affix = "", "5% less Damage taken per 5 Rage, up to a maximum of 30%", statOrder = { 6183 }, level = 1, group = "DamageTakenLessPercentPer5RageCapped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733459550] = { "5% less Damage taken per 5 Rage, up to a maximum of 30%" }, } }, + ["AdditionalRageLossPerMinute"] = { affix = "", "Lose (1-3) Rage per second", statOrder = { 4629 }, level = 1, group = "AdditionalRageLossPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1124360291] = { "Lose (1-3) Rage per second" }, } }, + ["TrapAndMineThrowSpeedUnique_1"] = { affix = "", "(15-25)% increased Trap and Mine Throwing Speed", statOrder = { 10566 }, level = 20, group = "TrapAndMineThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(15-25)% increased Trap and Mine Throwing Speed" }, } }, + ["CountAsHavingMaxEnduranceChargesUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", statOrder = { 5968 }, level = 1, group = "CountAsHavingMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1090017486] = { "Count as having maximum number of Endurance Charges" }, } }, + ["CountAsHavingMaxFrenzyChargesUnique__1"] = { affix = "", "Count as having maximum number of Frenzy Charges", statOrder = { 5970 }, level = 1, group = "CountAsHavingMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2046300872] = { "Count as having maximum number of Frenzy Charges" }, } }, + ["CountAsHavingMaxPowerChargesUnique__1"] = { affix = "", "Count as having maximum number of Power Charges", statOrder = { 5971 }, level = 1, group = "CountAsHavingMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [800091665] = { "Count as having maximum number of Power Charges" }, } }, + ["CountAsBlockingAttackFromShieldAttackFirstTargetUnique__1"] = { affix = "", "Count as Blocking Attack Damage from the first target Hit with each Shield Attack", statOrder = { 5967 }, level = 40, group = "CountAsBlockingAttackFromShieldAttackFirstTarget", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2196928545] = { "Count as Blocking Attack Damage from the first target Hit with each Shield Attack" }, } }, + ["CorruptedBloodImmunityUnique_1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5483 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["GhostTotemLimitUnique__1"] = { affix = "", "Maximum (3-5) Spectral Totems", statOrder = { 9669 }, level = 1, group = "GhostTotemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4154520427] = { "Maximum (3-5) Spectral Totems" }, } }, + ["GhostTotemDurationUnique__1"] = { affix = "", "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead", statOrder = { 5075 }, level = 1, group = "GhostTotemDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4016251064] = { "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead" }, } }, + ["GhostTotemDamageUnique__1"] = { affix = "", "Skills used by Spectral Totems deal (40-50)% less Damage", statOrder = { 6956 }, level = 80, group = "GhostTotemDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3959546773] = { "Skills used by Spectral Totems deal (40-50)% less Damage" }, } }, + ["FoolishlyDrawnAttentionUnique_1"] = { affix = "", "The stars are aligned if you have 6 Influence types among other Equipped Items", statOrder = { 510 }, level = 86, group = "FoolishlyDrawnAttention", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1389615049] = { "The stars are aligned if you have 6 Influence types among other Equipped Items" }, } }, + ["ConsecratedGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Consecrated Ground you create", statOrder = { 5929 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4058190193] = { "(30-50)% increased Effect of Consecrated Ground you create" }, } }, + ["BeltEnchantImplicit"] = { affix = "", "Can be Anointed", statOrder = { 7973 }, level = 1, group = "BeltEnchantImplicit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [52068049] = { "Can be Anointed" }, } }, + ["UniqueYourAttacksCannotBeBlocked__1"] = { affix = "", "Monsters cannot Block your Attacks", statOrder = { 10824 }, level = 1, group = "YourAttacksCannotBeBlocked", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4136294199] = { "Monsters cannot Block your Attacks" }, } }, + ["UniqueYourSpellsCannotBeSuppressed__1"] = { affix = "", "Monsters cannot Suppress your Spells", statOrder = { 10854 }, level = 1, group = "YourSpellsCannotBeSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [870219767] = { "Monsters cannot Suppress your Spells" }, } }, + ["UniqueElementalResistancesCannotBePenetrated__1"] = { affix = "", "Elemental Resistances cannot be Penetrated", statOrder = { 6426 }, level = 1, group = "ElementalResistancesCannotBePenetrated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1025863792] = { "Elemental Resistances cannot be Penetrated" }, } }, + ["UniqueYourChargesCannotBeStolen__1"] = { affix = "", "Monsters cannot steal your Power, Frenzy or Endurance charges on Hit", statOrder = { 10842 }, level = 1, group = "YourChargesCannotBeStolen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1455353008] = { "Monsters cannot steal your Power, Frenzy or Endurance charges on Hit" }, } }, + ["UniqueAvoidChainingProjectiles__1"] = { affix = "", "Avoid Projectiles that have Chained", statOrder = { 4987 }, level = 1, group = "AvoidChainingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729118116] = { "Avoid Projectiles that have Chained" }, } }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 10, 10.1, 10872 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, + ["GrantsCreateBarnacleSkillUnique"] = { affix = "", "Grants Level 20 Savage Barnacle", statOrder = { 712 }, level = 1, group = "GrantsCreateBarnacleSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4009462747] = { "Grants Level 20 Savage Barnacle" }, } }, + ["SupportedByCrabTotemSupportUnique__1"] = { affix = "", "Socketed Spells are Supported by level 20 Crab Totem", statOrder = { 210 }, level = 1, group = "SupportedByCrabTotemSupport", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3361806635] = { "Socketed Spells are Supported by level 20 Crab Totem" }, } }, + ["FlaskCannotGainChargesDuringEffectUnique__1"] = { affix = "", "Gains no Charges during Effect", statOrder = { 1089 }, level = 1, group = "FlaskCannotGainChargesDuringEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4123533923] = { "Gains no Charges during Effect" }, } }, + ["FlaskCriticalStrikesContributeToLightningAilmentsDuringEffectUnique__1"] = { affix = "", "All Damage from Critical Strikes can apply Lightning Ailments during effect", statOrder = { 879 }, level = 46, group = "FlaskCriticalStrikesContributeToLightningAilmentsDuringEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical", "ailment" }, tradeHashes = { [1629741818] = { "All Damage from Critical Strikes can apply Lightning Ailments during effect" }, [1269836947] = { "All Damage from Critical Strikes can apply Lightning Ailments during effect" }, } }, + ["FlaskCriticalStrikesContributeToColdAilmentsDuringEffectUnique__1"] = { affix = "", "All Damage from Critical Strikes can apply Cold Ailments during effect", statOrder = { 878 }, level = 46, group = "FlaskCriticalStrikesContributeToColdAilmentsDuringEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "critical", "ailment" }, tradeHashes = { [3178019227] = { "All Damage from Critical Strikes can apply Cold Ailments during effect" }, [750775578] = { "All Damage from Critical Strikes can apply Cold Ailments during effect" }, [1019689217] = { "All Damage from Critical Strikes can apply Cold Ailments during effect" }, } }, + ["TotemMovementVelocityUnique__1"] = { affix = "", "Totems have 100% increased Movement Speed", statOrder = { 212 }, level = 1, group = "TotemMovementVelocityUnique", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1778855371] = { "Totems have 100% increased Movement Speed" }, } }, + ["CurseSkillsCostAndReserveLifeUnique__1"] = { affix = "", "Curse Skills cost Life instead of Mana", "Curse Aura Skills reserve Life instead of Mana", statOrder = { 6086, 6087 }, level = 1, group = "CurseSkillsCostAndReserveLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "curse" }, tradeHashes = { [2280341859] = { "Curse Skills cost Life instead of Mana" }, [3840847348] = { "Curse Aura Skills reserve Life instead of Mana" }, } }, + ["ShrineBuffEffectPerLifeReservationUnique__1"] = { affix = "", "2% increased Effect of Shrine Buffs on you for each 5% of Life Reserved", statOrder = { 10176 }, level = 1, group = "ShrineBuffEffectPerLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1674759049] = { "2% increased Effect of Shrine Buffs on you for each 5% of Life Reserved" }, } }, + ["GainBloodShrineBuffUnique__1"] = { affix = "", "Gain a random Blood Shrine buff every 10 seconds", statOrder = { 6829 }, level = 1, group = "GainBloodShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1758488586] = { "Gain a random Blood Shrine buff every 10 seconds" }, } }, + ["TriggerExplodingToadsOnKillUnique__1"] = { affix = "", "10% chance to Trigger Explosive Toad when you kill an Enemy", statOrder = { 10864 }, level = 1, group = "TriggerExplodingToadOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [764329137] = { "10% chance to Trigger Explosive Toad when you kill an Enemy" }, } }, + ["EvasionModifersApplyToSpellDamageUnique__1"] = { affix = "", "Increases and Reductions to your Evasion Rating also apply to your Spell Damage", statOrder = { 4641 }, level = 58, group = "EvasionModifersApplyToSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4091694419] = { "Increases and Reductions to your Evasion Rating also apply to your Spell Damage" }, } }, + ["NoPhysicalDamageReductionUnique__1"] = { affix = "", "Physical Damage Reduction is zero", statOrder = { 9619 }, level = 58, group = "NoPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [489372526] = { "Physical Damage Reduction is zero" }, } }, + ["GrantedSkillGhostFurnaceUnique__1"] = { affix = "", "DNT Trigger Ghost Furnace when you Ignite an Enemy", statOrder = { 719 }, level = 1, group = "GrantedSkillGhostFurnace", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2084152132] = { "" }, [3569871402] = { "" }, [2557195362] = { "" }, [1663218901] = { "DNT Trigger Ghost Furnace when you Ignite an Enemy" }, } }, + ["GhostLanternSoulOnKillChance__1"] = { affix = "", "DNT Killing a Burning Enemy has a (25-30)% chance to create a Ghostflame Soul", statOrder = { 6955 }, level = 1, group = "GhostLanternSoulOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1298740657] = { "DNT Killing a Burning Enemy has a (25-30)% chance to create a Ghostflame Soul" }, [1970730266] = { "" }, } }, + ["LocalIncreasedModEffectPerAbyssJewelUnique__1"] = { affix = "", "DNT 50% increased Explicit Modifier Magnitudes per socketed Abyss Jewel", statOrder = { 8043 }, level = 1, group = "LocalIncreasedModEffectPerAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1155051013] = { "DNT 50% increased Explicit Modifier Magnitudes per socketed Abyss Jewel" }, } }, + ["LocalCannotHaveNonAbyssSocketsUnique__1"] = { affix = "", "Cannot have non-Abyssal sockets", statOrder = { 7977 }, level = 1, group = "LocalCannotHaveNonAbyssSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [847997388] = { "Cannot have non-Abyssal sockets" }, } }, + ["LocalExplicitModEffectUnique__1"] = { affix = "", "(120-240)% increased Explicit Modifier magnitudes", statOrder = { 58 }, level = 1, group = "LocalExplicitModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1581907402] = { "(120-240)% increased Explicit Modifier magnitudes" }, } }, + ["ConsumeAbyssJewelUnique__1"] = { affix = "", "Has 4 Abyssal Sockets", "Socketed Rare Abyssal Jewels will be Consumed", "One modifier from Consumed Jewels will be retained", statOrder = { 69, 5944, 5944.1 }, level = 1, group = "ConsumeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1515509665] = { "Socketed Rare Abyssal Jewels will be Consumed", "One modifier from Consumed Jewels will be retained" }, [3527617737] = { "Has 4 Abyssal Sockets" }, } }, + ["LocalPhysicalDamagePercentPerSocketedMurderousUnique__1"] = { affix = "", "(25-50)% increased Physical Damage per socketed Murderous Eye Jewel", statOrder = { 4336 }, level = 1, group = "LocalPhysicalDamagePercentPerSocketedMurderous", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3081449522] = { "(25-50)% increased Physical Damage per socketed Murderous Eye Jewel" }, } }, + ["LocalAttackSpeedPercentPerSocketedSearchingUnique__1"] = { affix = "", "(8-16)% increased Attack Speed per socketed Searching Eye Jewel", statOrder = { 7964 }, level = 1, group = "LocalAttackSpeedPercentPerSocketedSearching", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1635906349] = { "(8-16)% increased Attack Speed per socketed Searching Eye Jewel" }, } }, + ["LocalCriticalChancePercentPerSocketedHypnoticUnique__1"] = { affix = "", "(20-40)% increased Critical Strike Chance per socketed Hypnotic Eye Jewel", statOrder = { 7989 }, level = 1, group = "LocalCriticalChancePercentPerSocketedHypnotic", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1714168814] = { "(20-40)% increased Critical Strike Chance per socketed Hypnotic Eye Jewel" }, } }, + ["MinionImpaleChancePerSocketedGhastlyUnique__1"] = { affix = "", "Minions have (20-40)% chance to Impale on Attack Hit per socketed Ghastly Eye Jewel", statOrder = { 9417 }, level = 1, group = "MinionImpaleChancePerSocketedGhastly", weightKey = { }, weightVal = { }, modTags = { "physical", "minion" }, tradeHashes = { [2415223729] = { "Minions have (20-40)% chance to Impale on Attack Hit per socketed Ghastly Eye Jewel" }, } }, + ["GainBoonsInsteadOfAfflictionsFromPactsUnique__1"] = { affix = "", "Pact Skills grant Boons instead of Afflictions", statOrder = { 10883 }, level = 63, group = "GainBoonsInsteadOfAfflictionsFromPacts", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3129228821] = { "Pact Skills grant Boons instead of Afflictions" }, } }, + ["PactCastSpeedUnique__1"] = { affix = "", "Pact Skills have (30-50)% increased Cast Speed", statOrder = { 10881 }, level = 1, group = "PactCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3120620173] = { "Pact Skills have (30-50)% increased Cast Speed" }, } }, + ["PactCooldownSpeedUnique__1"] = { affix = "", "Pact Skills have (30-50)% increased Cooldown Recovery Rate", statOrder = { 10882 }, level = 1, group = "PactCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1144742318] = { "Pact Skills have (30-50)% increased Cooldown Recovery Rate" }, } }, + ["DivergentItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1622 }, level = 9, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "drop" }, tradeHashes = { [2929867083] = { "50% increased Rarity of Items found when on Low Life" }, } }, + ["DivergentTriggerRainOfArrowsOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Rain of Arrows when you Attack with a Bow", statOrder = { 834 }, level = 30, group = "TriggerRainOfArrowsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "attack" }, tradeHashes = { [2935409762] = { "Trigger Level 5 Rain of Arrows when you Attack with a Bow" }, } }, + ["DivergentShockedGroundWhileMovingUnique__1"] = { affix = "", "Drops Shocked Ground while moving, lasting 2 seconds", statOrder = { 4349 }, level = 28, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "lightning", "ailment" }, tradeHashes = { [3002060175] = { "Drops Shocked Ground while moving, lasting 2 seconds" }, } }, + ["DivergentCannotBeFrozenUnique__1"] = { affix = "", "Cannot be Frozen", statOrder = { 1861 }, level = 3, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, + ["DivergentMovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1823 }, level = 32, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [3393547195] = { "20% increased Movement Speed when on Full Life" }, } }, + ["DivergentIncreasedAttackSpeedUniqueBootsDexInt1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1434 }, level = 27, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } }, + ["DivergentAdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 2191 }, level = 33, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["DivergentEnemiesCantLifeLeechUnique__1"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2465 }, level = 62, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } }, + ["DivergentItemFoundRarityIncreaseUnique__10"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1619 }, level = 34, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "drop" }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, + ["DivergentMaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1638, 1639 }, level = 22, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "minion", "gem" }, tradeHashes = { [2739830820] = { "+1 to Level of all Raise Zombie Gems" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, + ["DivergentQuicksilverFlaskAppliesToAlliesUnique__1"] = { affix = "", "Quicksilver Flasks you Use also apply to nearby Allies", statOrder = { 9923 }, level = 12, group = "QuicksilverFlaskAppliesToAllies", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [699756626] = { "Quicksilver Flasks you Use also apply to nearby Allies" }, } }, + ["DivergentSpellBlockPercentageUniqueBootsInt5"] = { affix = "", "10% Chance to Block Spell Damage", statOrder = { 1183 }, level = 53, group = "SpellBlockPercentageRainbowstride", weightKey = { }, weightVal = { }, modTags = { "block", "blue_herring", "divergentunique" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } }, + ["DivergentMaximumFrenzyChargesUniqueBootsStrDex2"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 65, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "divergentunique" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["DivergentMovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 44, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, + ["DivergentMovementVelocityUnique___6"] = { affix = "", "25% increased Movement Speed", statOrder = { 1821 }, level = 3, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["DivergentChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+30% to Chaos Resistance during any Flask Effect", statOrder = { 3337 }, level = 18, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "divergentunique", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+30% to Chaos Resistance during any Flask Effect" }, } }, + ["DivergentTrapThrowSpeedUniqueBootsDex6"] = { affix = "", "15% increased Trap Throwing Speed", statOrder = { 1950 }, level = 22, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [118398748] = { "15% increased Trap Throwing Speed" }, } }, + ["DivergentSkeletonWarriorsPermanentMinionUnique__1"] = { affix = "", "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior", statOrder = { 10197, 10197.1 }, level = 49, group = "SkeletonWarriorsPermanentMinion", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1021552211] = { "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior" }, } }, + ["DivergentSpellDodgeUniqueBootsDex7New"] = { affix = "", "+20% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 69, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3680664274] = { "+20% chance to Suppress Spell Damage" }, } }, + ["DivergentCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value", statOrder = { 3230 }, level = 68, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [628716294] = { "Action Speed cannot be modified to below Base Value" }, } }, + ["DivergentIncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "40% increased Damage with Hits and Ailments against Ignited Enemies", statOrder = { 2987 }, level = 58, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [485151258] = { "40% increased Damage with Hits and Ailments against Ignited Enemies" }, } }, + ["DivergentMovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 3003 }, level = 16, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [2825197711] = { "20% increased Movement Speed while on Full Energy Shield" }, } }, + ["DivergentIncreasedProjectileDamageUniqueBootsDexInt4"] = { affix = "", "40% increased Projectile Damage", statOrder = { 2019 }, level = 41, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [1839076647] = { "40% increased Projectile Damage" }, } }, + ["DivergentSpellCriticalStrikeChanceUniqueBootsStrDex5"] = { affix = "", "70% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 42, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "critical" }, tradeHashes = { [737908626] = { "70% increased Spell Critical Strike Chance" }, } }, + ["DivergentImmuneToBurningGroundUniqueBootsStr3"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10613 }, level = 46, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, + ["DivergentImmuneToDesecratedGroundUniqueBootsInt6"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10624 }, level = 67, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, + ["DivergentPowerChargeOnCriticalStrikeChanceUnique__1"] = { affix = "", "25% chance to gain a Power Charge on Critical Strike", statOrder = { 1853 }, level = 67, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "divergentunique", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Strike" }, } }, + ["DivergentRepeatingShockwaveUnique__1"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 783 }, level = 12, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3250579936] = { "Triggers Level 7 Abberath's Fury when Equipped" }, } }, + ["DivergentIncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1573 }, level = 55, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [156734303] = { "100% increased Evasion Rating during Onslaught" }, } }, + ["DivergentBleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4251 }, level = 64, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "divergentunique", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, + ["DivergentAdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9898 }, level = 69, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [97250660] = { "Projectiles Pierce 5 additional Targets while you have Phasing" }, } }, + ["DivergentNoExtraBleedDamageWhileMovingUnique__1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3228 }, level = 68, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "divergentunique", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, + ["DivergentPhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 4351 }, level = 68, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "physical" }, tradeHashes = { [2181129193] = { "10% additional Physical Damage Reduction while stationary" }, } }, + ["DivergentMaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 9280 }, level = 62, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [3806100539] = { "+2 to Maximum Life per 10 Dexterity" }, } }, + ["DivergentChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6868, 6868.1 }, level = 61, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "divergentunique" }, tradeHashes = { [1232004574] = { "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, + ["DivergentPurityOfFireUnique__6"] = { affix = "", "Grants Level 30 Purity of Fire Skill", statOrder = { 634 }, level = 68, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3970432307] = { "Grants Level 30 Purity of Fire Skill" }, } }, + ["DivergentPurityOfIceUnique__6"] = { affix = "", "Grants Level 30 Purity of Ice Skill", statOrder = { 640 }, level = 68, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [4193390599] = { "Grants Level 30 Purity of Ice Skill" }, } }, + ["DivergentPurityOfLightningUnique__6"] = { affix = "", "Grants Level 30 Purity of Lightning Skill", statOrder = { 642 }, level = 68, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3822878124] = { "Grants Level 30 Purity of Lightning Skill" }, } }, + ["DivergentShockEffectUnique__2"] = { affix = "", "50% increased Effect of Lightning Ailments", statOrder = { 7535 }, level = 23, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "50% increased Effect of Lightning Ailments" }, } }, + ["DivergentMinimumPowerChargesUnique__1"] = { affix = "", "+3 to Minimum Power Charges", statOrder = { 1836 }, level = 36, group = "MinimumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "divergentunique" }, tradeHashes = { [1999711879] = { "+3 to Minimum Power Charges" }, } }, + ["DivergentMinimumFrenzyChargesUnique__1"] = { affix = "", "+3 to Minimum Frenzy Charges", statOrder = { 1831 }, level = 36, group = "MinimumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "divergentunique" }, tradeHashes = { [658456881] = { "+3 to Minimum Frenzy Charges" }, } }, + ["DivergentMinimumEnduranceChargesUnique__1"] = { affix = "", "+3 to Minimum Endurance Charges", statOrder = { 1826 }, level = 36, group = "MinimumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "divergentunique" }, tradeHashes = { [3706959521] = { "+3 to Minimum Endurance Charges" }, } }, + ["DivergentAbyssJewelSocketUnique__3"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 69, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DivergentGrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 703 }, level = 59, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, + ["DivergentCrabBarriersLostWhenHitUnique__1_"] = { affix = "", "You only lose 5 Crab Barriers when you take Physical Damage from a Hit", statOrder = { 4389 }, level = 54, group = "CrabBarriersLostWhenHit", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [455217103] = { "You only lose 5 Crab Barriers when you take Physical Damage from a Hit" }, } }, + ["DivergentCatsStealthTriggeredIntimidatingCry"] = { affix = "", "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth", statOrder = { 833 }, level = 69, group = "CatsStealthTriggeredIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3892608176] = { "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth" }, } }, + ["DivergentIncreasedSpiderWebCountUnique__1"] = { affix = "", "Aspect of the Spider can inflict Spider's Web on Enemies an additional time", statOrder = { 4841 }, level = 63, group = "IncreasedSpiderWebCount", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1509532587] = { "Aspect of the Spider can inflict Spider's Web on Enemies an additional time" }, } }, + ["DivergentOnslaughtWhileNotOnLowManaUnique__1_"] = { affix = "", "You have Onslaught while not on Low Mana", statOrder = { 6882 }, level = 55, group = "OnslaughtWhileNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1959256242] = { "You have Onslaught while not on Low Mana" }, } }, + ["DivergentDodgeAndSpellDodgePerMaximumManaUnique__1"] = { affix = "", "20% increased Evasion Rating per 500 Maximum Mana", statOrder = { 6567 }, level = 55, group = "DodgeAndSpellDodgePerMaximumMana", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [3147253569] = { "20% increased Evasion Rating per 500 Maximum Mana" }, } }, + ["DivergentLocalIncreaseSocketedAuraGemLevelUnique___3"] = { affix = "", "+3 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 58, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "aura", "gem" }, tradeHashes = { [2452998583] = { "+3 to Level of Socketed Aura Gems" }, } }, + ["DivergentTotemReflectFireDamageUnique__1_"] = { affix = "", "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3824 }, level = 37, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, + ["DivergentMovementVelocityOverrideUnique__1"] = { affix = "", "Your Movement Speed is 150% of its base value", statOrder = { 9549 }, level = 63, group = "MovementVelocityOverride", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [3945685369] = { "Your Movement Speed is 150% of its base value" }, } }, + ["DivergentEnemiesExplodeOnDeathChaosGloriousMadnessUnique1"] = { affix = "", "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage", statOrder = { 10863 }, level = 70, group = "EnemiesExplodeOnDeathChaosGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "divergentunique", "damage", "chaos" }, tradeHashes = { [2780297117] = { "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage" }, } }, + ["DivergentAllDamageCanPoisonGloriousMadnessUnique___1"] = { affix = "", "All Damage inflicts Poison while affected by Glorious Madness", statOrder = { 10858 }, level = 70, group = "AllDamageCanPoisonGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "poison", "divergentunique", "chaos", "ailment" }, tradeHashes = { [3359218839] = { "All Damage inflicts Poison while affected by Glorious Madness" }, } }, + ["DivergentFortifyEffectSelfGloriousMadnessUnique1"] = { affix = "", "+15 to maximum Fortification while affected by Glorious Madness", statOrder = { 10878 }, level = 70, group = "FortifyEffectSelfGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2611224062] = { "+15 to maximum Fortification while affected by Glorious Madness" }, } }, + ["DivergentDoubleDamageChanceGloriousMadnessUnique_1"] = { affix = "", "20% chance to deal Double Damage while affected by Glorious Madness", statOrder = { 10860 }, level = 70, group = "DoubleDamageChanceGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [1299868012] = { "20% chance to deal Double Damage while affected by Glorious Madness" }, } }, + ["DivergentElementalConfluxesGloriousMadnessUnique1"] = { affix = "", "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", statOrder = { 10866 }, level = 70, group = "ElementalConfluxesGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3909952544] = { "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness" }, } }, + ["DivergentElementalAilmentImmunityGloriousMadnessUnique1"] = { affix = "", "Immune to Elemental Ailments while affected by Glorious Madness", statOrder = { 10868 }, level = 70, group = "ElementalAilmentImmunityGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1065479853] = { "Immune to Elemental Ailments while affected by Glorious Madness" }, } }, + ["DivergentTriggerToxicRainOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Toxic Rain when you Attack with a Bow", statOrder = { 856 }, level = 30, group = "TriggerToxicRainOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "attack" }, tradeHashes = { [767464019] = { "Trigger Level 5 Toxic Rain when you Attack with a Bow" }, } }, + ["DivergentCorpseWalkUnique__1"] = { affix = "", "Triggers Level 20 Corpse Walk when Equipped", statOrder = { 808 }, level = 55, group = "CorpseWalk", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [779168081] = { "Triggers Level 20 Corpse Walk when Equipped" }, } }, + ["DivergentElusiveEffectUnique__1"] = { affix = "", "30% increased Elusive Effect", statOrder = { 6437 }, level = 55, group = "ElusiveEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [240857668] = { "30% increased Elusive Effect" }, } }, + ["DivergentAddedChaosDamageToAttacksPer50StrengthUnique__1"] = { affix = "", "Adds 1 to 30 Chaos Damage to Attacks per 80 Strength", statOrder = { 9360 }, level = 49, group = "AddedChaosDamageToAttacksPer50Strength", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "divergentunique", "damage", "chaos", "attack" }, tradeHashes = { [117885424] = { "Adds 1 to 30 Chaos Damage to Attacks per 80 Strength" }, } }, + ["DivergentMovementVelocityOverrideUnique__2"] = { affix = "", "Your Movement Speed is 150% of its base value", statOrder = { 9549 }, level = 63, group = "MovementVelocityOverride", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [3945685369] = { "Your Movement Speed is 150% of its base value" }, } }, + ["DivergentProjectilesChainWhilePhasingUnique__1"] = { affix = "", "Projectiles Chain +1 times while you have Phasing", statOrder = { 9653 }, level = 69, group = "ProjectilesChainWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [383509486] = { "Projectiles Chain +1 times while you have Phasing" }, } }, + ["DivergentChaosResistanceWhileStationaryUnique__1"] = { affix = "", "+30% to Chaos Resistance while stationary", statOrder = { 5823 }, level = 68, group = "ChaosResistanceWhileStationary", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "chaos", "resistance" }, tradeHashes = { [779829642] = { "+30% to Chaos Resistance while stationary" }, } }, + ["DivergentSpiritMinionRefreshOnUniqueHitUnique__1"] = { affix = "", "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9757, 9946 }, level = 22, group = "SpiritMinionRefreshOnUniqueHit", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } }, + ["DivergentIncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6152 }, level = 61, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["DivergentNearbyEnemiesAreScorchedUnique__1"] = { affix = "", "Nearby Enemies are Scorched", statOrder = { 3435 }, level = 51, group = "NearbyEnemiesAreScorched", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "ailment" }, tradeHashes = { [3733114005] = { "Nearby Enemies are Scorched" }, } }, + ["DivergentMovementSpeedPerPoisonOnSelfUnique__1"] = { affix = "", "5% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9561 }, level = 55, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [1360723495] = { "5% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, + ["DivergentGrantsSummonArbalistsSkillUnique__1_"] = { affix = "", "Triggers Level 20 Summon Arbalists when Equipped", statOrder = { 797 }, level = 69, group = "GrantsSummonArbalistsSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3664803307] = { "Triggers Level 20 Summon Arbalists when Equipped" }, } }, + ["DivergentAdrenalineOnWardBreakUnique__1"] = { affix = "", "Gain Adrenaline for 2 seconds when Ward Breaks", statOrder = { 6809 }, level = 48, group = "AdrenalineOnWardBreak", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4231915769] = { "Gain Adrenaline for 2 seconds when Ward Breaks" }, } }, + ["DivergentNearbyStationaryEnemiesGainVinesUnique__1"] = { affix = "", "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds", statOrder = { 4463 }, level = 70, group = "NearbyStationaryEnemiesGainVines", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3469279727] = { "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds" }, } }, + ["DivergentDamageTakenFromTotemLifeBeforePlayerUnique__1"] = { affix = "", "5% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6181 }, level = 62, group = "DamageTakenFromTotemLifeBeforePlayer", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2762445213] = { "5% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, + ["DivergentCannotBeFrozenOrChilledUnique__2"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1860, 1861 }, level = 65, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, [283649372] = { "Cannot be Chilled" }, } }, + ["DivergentCannotBeStunnedSuppressedDamageUnique__1"] = { affix = "", "Cannot be Stunned by Suppressed Spell Damage", statOrder = { 5493 }, level = 39, group = "CannotBeStunnedSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2916280114] = { "Cannot be Stunned by Suppressed Spell Damage" }, } }, + ["DivergentUnaffectedByDamagingAilmentsUnique__1"] = { affix = "", "Unaffected by Damaging Ailments", statOrder = { 10623 }, level = 46, group = "UnaffectedByDamagingAilments", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "ailment" }, tradeHashes = { [1575046591] = { "Unaffected by Damaging Ailments" }, } }, + ["DivergentRandomMovementVelocityWhenHitUnique__1"] = { affix = "", "When Hit, gain a random Movement Speed modifier from 20% reduced to 50% increased, until Hit again", statOrder = { 9394 }, level = 59, group = "RandomMovementVelocityWhenHit", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3281809492] = { "When Hit, gain a random Movement Speed modifier from 20% reduced to 50% increased, until Hit again" }, } }, + ["DivergentEnemiesCountAsMovingElementalAilmentsUnique__1"] = { affix = "", "You and Enemies in your Presence count as moving while affected by Elemental Ailments", statOrder = { 6472 }, level = 54, group = "EnemiesCountAsMovingElementalAilments", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [113536037] = { "You and Enemies in your Presence count as moving while affected by Elemental Ailments" }, } }, + ["DivergentGrantsRavenousSkillUnique__1"] = { affix = "", "Grants Level 20 Ravenous Skill", "Enemies display their Monster Category", statOrder = { 710, 765 }, level = 34, group = "GrantsRavenousSkill", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [636370122] = { "Grants Level 20 Ravenous Skill" }, [4164361381] = { "Enemies display their Monster Category" }, } }, + ["DivergentArcaneSurgeOnMovementSkillUnique"] = { affix = "", "Gain Arcane Surge when you use a Movement Skill", statOrder = { 4477 }, level = 38, group = "ArcaneSurgeOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3221795893] = { "Gain Arcane Surge when you use a Movement Skill" }, } }, + ["DivergentConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 9, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "divergentunique", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, } }, + ["DivergentCriticalStrikeChanceUniqueGlovesDex2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 21, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "critical" }, tradeHashes = { [587431675] = { "50% increased Global Critical Strike Chance" }, } }, + ["DivergentManaLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 27, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.4% of Physical Attack Damage Leeched as Mana" }, } }, + ["DivergentItemFoundRarityIncreaseUniqueGlovesStrDex2"] = { affix = "", "40% increased Rarity of Items found", statOrder = { 1619 }, level = 36, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "drop" }, tradeHashes = { [3917489142] = { "40% increased Rarity of Items found" }, } }, + ["DivergentItemFoundRarityIncreaseUnique__7"] = { affix = "", "15% increased Rarity of Items found", statOrder = { 1619 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "drop" }, tradeHashes = { [3917489142] = { "15% increased Rarity of Items found" }, } }, + ["DivergentSpellDamageUniqueGlovesInt2"] = { affix = "", "50% increased Spell Damage", statOrder = { 1246 }, level = 12, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "divergentunique", "damage", "caster" }, tradeHashes = { [2974417149] = { "50% increased Spell Damage" }, } }, + ["DivergentAttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "20% increased Attack Speed when on Full Life", statOrder = { 1245 }, level = 5, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attack", "speed" }, tradeHashes = { [4268321763] = { "20% increased Attack Speed when on Full Life" }, } }, + ["DivergentPowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "15% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3648 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "divergentunique" }, tradeHashes = { [498214257] = { "15% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } }, + ["DivergentMeleeSplashUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1191 }, level = 35, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attack" }, tradeHashes = { [3675300253] = { "Melee Strike Skills deal Splash Damage to surrounding targets" }, } }, + ["DivergentFacebreakerUnarmedMoreDamage"] = { affix = "", "500% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2461 }, level = 16, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical", "attack" }, tradeHashes = { [1814782245] = { "500% more Physical Damage with Unarmed Melee Attacks" }, } }, + ["DivergentCurseOnHitTemporalChainsUnique__1"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2548 }, level = 25, group = "CurseOnHitLevelTemporalChains", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } }, + ["DivergentSupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 511 }, level = 47, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, } }, + ["DivergentLocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 222 }, level = 55, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "gem" }, tradeHashes = { [3571342795] = { "+1 to Level of Socketed Elemental Gems" }, } }, + ["DivergentDisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 478 }, level = 67, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 30 Added Lightning Damage" }, } }, + ["DivergentSocketedCursesAreReflectedUniqueGlovesStrInt1"] = { affix = "", "Hexes applied by Socketed Curse Skills are Reflected back to you", statOrder = { 549 }, level = 7, group = "SocketedCursesAreReflected", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "gem", "curse" }, tradeHashes = { [32859524] = { "Hexes applied by Socketed Curse Skills are Reflected back to you" }, } }, + ["DivergentPoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "+5% to Damage over Time Multiplier for Poison per Frenzy Charge", statOrder = { 9826 }, level = 58, group = "PoisonDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "divergentunique", "damage", "chaos", "ailment" }, tradeHashes = { [3504652942] = { "+5% to Damage over Time Multiplier for Poison per Frenzy Charge" }, } }, + ["DivergentOnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2954 }, level = 27, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "vaal" }, tradeHashes = { [2654043939] = { "You gain Onslaught for 20 seconds on using a Vaal Skill" }, } }, + ["DivergentVaalPactIfCritRecentlyUnique__1"] = { affix = "", "You have Vaal Pact if you've dealt a Critical Strike Recently", statOrder = { 6921 }, level = 63, group = "VaalPactIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [1032751668] = { "You have Vaal Pact if you've dealt a Critical Strike Recently" }, } }, + ["DivergentSimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10930 }, level = 57, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["DivergentSimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10930 }, level = 15, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["DivergentSimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10930 }, level = 31, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["DivergentStealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 3026 }, level = 67, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "divergentunique" }, tradeHashes = { [875143443] = { "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit" }, } }, + ["DivergentFreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1881 }, level = 51, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "100% increased Freeze Duration on Enemies" }, } }, + ["DivergentGrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 672 }, level = 63, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, + ["DivergentEnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 3051 }, level = 53, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, + ["DivergentIronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10997 }, level = 66, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, + ["DivergentProjectileSpeedUnique___1"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1819 }, level = 47, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, + ["DivergentItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 464 }, level = 49, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2388360415] = { "Socketed Gems are Supported by Level 5 Concentrated Effect" }, } }, + ["DivergentCannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 4214 }, level = 69, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "lightning", "ailment" }, tradeHashes = { [798111687] = { "You cannot be Shocked while at maximum Endurance Charges" }, } }, + ["DivergentMinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 4227 }, level = 60, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "divergentunique", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [1236638414] = { "Minions gain 20% of Physical Damage as Extra Cold Damage" }, } }, + ["DivergentEnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6530 }, level = 66, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "energy_shield" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, + ["DivergentMeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 9320 }, level = 66, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical", "attack" }, tradeHashes = { [2355151849] = { "2% increased Melee Physical Damage per 10 Dexterity" }, } }, + ["DivergentEvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6564 }, level = 66, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [810772344] = { "2% increased Evasion Rating per 10 Intelligence" }, } }, + ["DivergentBleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3517, 3517.1 }, level = 43, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical" }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage" }, } }, + ["DivergentFireDamageCanPoisonAndLessDurationUnique__1"] = { affix = "", "Your Fire Damage can Poison", "50% less Poison Duration", statOrder = { 2900, 3206 }, level = 43, group = "FireDamageCanPoisonAndLessDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "divergentunique", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Your Fire Damage can Poison" }, [1237693206] = { "50% less Poison Duration" }, } }, + ["DivergentColdDamageCanPoisonAndLessDurationUnique__1"] = { affix = "", "Your Cold Damage can Poison", "50% less Poison Duration", statOrder = { 2899, 3206 }, level = 43, group = "ColdDamageCanPoisonAndLessDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "divergentunique", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Your Cold Damage can Poison" }, [1237693206] = { "50% less Poison Duration" }, } }, + ["DivergentLightningDamageCanPoisonAndLessDurationUnique__1"] = { affix = "", "Your Lightning Damage can Poison", "50% less Poison Duration", statOrder = { 2901, 3206 }, level = 43, group = "LightningDamageCanPoisonAndLessDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "divergentunique", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Your Lightning Damage can Poison" }, [1237693206] = { "50% less Poison Duration" }, } }, + ["DivergentSupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 533 }, level = 50, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [1002855537] = { "Socketed Gems are Supported by Level 20 Vile Toxins" }, } }, + ["DivergentBlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has 30% increased Hinder Duration", statOrder = { 5243 }, level = 41, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster" }, tradeHashes = { [4170725899] = { "Blight has 30% increased Hinder Duration" }, } }, + ["DivergentGainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10519 }, level = 67, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2918150296] = { "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence" }, } }, + ["DivergentKeystoneIronGripUnique__1"] = { affix = "", "Iron Grip", statOrder = { 10984 }, level = 23, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, + ["DivergentCurseOnHitCriticalWeaknessUniqueNewUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 819 }, level = 33, group = "TriggerOnRareAssassinsMark", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } }, + ["DivergentAbyssJewelSocketUnique__5"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 36, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DivergentAilmentDamageOverTimeMultiplierPerElderItemUnique__1"] = { affix = "", "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped", statOrder = { 4368 }, level = 58, group = "AilmentDamageOverTimeMultiplierPerElderItem", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "ailment" }, tradeHashes = { [2212731469] = { "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped" }, } }, + ["DivergentAviansMightColdDamageUnique__1"] = { affix = "", "Adds 25 to 40 Cold Damage while you have Avian's Might", statOrder = { 9366 }, level = 51, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "cold" }, tradeHashes = { [3485231932] = { "Adds 25 to 40 Cold Damage while you have Avian's Might" }, } }, + ["DivergentAviansMightLightningDamageUnique__1_"] = { affix = "", "Adds 1 to 62 Lightning Damage while you have Avian's Might", statOrder = { 9378 }, level = 51, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "lightning" }, tradeHashes = { [855634301] = { "Adds 1 to 62 Lightning Damage while you have Avian's Might" }, } }, + ["DivergentChanceToGainMaximumCrabBarriersUnique__1_"] = { affix = "", "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers", statOrder = { 4392, 4392.1 }, level = 69, group = "ChanceToGainMaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1829869055] = { "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers" }, } }, + ["DivergentAttacksBleedOnHitWithCatsStealthUnique__1_"] = { affix = "", "Attacks always inflict Bleeding while you have Cat's Stealth", statOrder = { 4960 }, level = 59, group = "AttacksBleedOnHitWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "bleed", "divergentunique", "physical", "attack", "ailment" }, tradeHashes = { [2059771038] = { "Attacks always inflict Bleeding while you have Cat's Stealth" }, } }, + ["DivergentGrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 738 }, level = 50, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, + ["DivergentChanceToThrowFourAdditionalTrapsUnique__1"] = { affix = "", "5% chance to throw up to 4 additional Traps", statOrder = { 5802 }, level = 45, group = "ChanceToThrowFourAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3132227798] = { "5% chance to throw up to 4 additional Traps" }, } }, + ["DivergentCastSpeedAppliesToTrapSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed", statOrder = { 4637 }, level = 45, group = "CastSpeedAppliesToTrapSpeed", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [3520223758] = { "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed" }, } }, + ["DivergentTriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 842 }, level = 36, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "caster", "gem", "curse" }, tradeHashes = { [3657377047] = { "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown" }, } }, + ["DivergentSacrificeLifeToGainESUnique__1"] = { affix = "", "Sacrifice 20% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 10101 }, level = 41, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life", "defences", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice 20% of Life to gain that much Energy Shield when you Cast a Spell" }, } }, + ["DivergentAbyssJewelSocketUnique__10"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 37, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DivergentIncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "40% increased Damage while Leeching", statOrder = { 3097 }, level = 57, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [310246444] = { "40% increased Damage while Leeching" }, } }, + ["DivergentShockProliferationUnique__1"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2245 }, level = 58, group = "ShockProliferation", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, + ["DivergentZombiesNeedNoCorpsesUnique__1"] = { affix = "", "Raise Zombie does not require a corpse", statOrder = { 9956 }, level = 31, group = "ZombiesNeedNoCorpses", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion" }, tradeHashes = { [16924183] = { "Raise Zombie does not require a corpse" }, } }, + ["DivergentMinionChanceToFreezeShockIgnite"] = { affix = "", "Minions have 10% chance to Freeze, Shock and Ignite", statOrder = { 9414 }, level = 32, group = "MinionChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "cold", "lightning", "minion", "ailment" }, tradeHashes = { [1994549323] = { "Minions have 10% chance to Freeze, Shock and Ignite" }, } }, + ["DivergentMineDamageLeechedToYouUnique__1"] = { affix = "", "1% of Damage dealt by your Mines is Leeched to you as Life", statOrder = { 4272 }, level = 67, group = "MineDamageLeechedToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [807450540] = { "1% of Damage dealt by your Mines is Leeched to you as Life" }, } }, + ["DivergentReviveEnemiesOnKillUnique__1"] = { affix = "", "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster", statOrder = { 5985 }, level = 59, group = "ReviveEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2485187927] = { "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster" }, } }, + ["DivergentApplyAilmentsMoreDamageUnique__1"] = { affix = "", "Inflict non-Damaging Ailments as though dealing 100% more Damage", statOrder = { 9639 }, level = 54, group = "ApplyAilmentsMoreDamage", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "ailment" }, tradeHashes = { [1345113611] = { "Inflict non-Damaging Ailments as though dealing 100% more Damage" }, } }, + ["DivergentModifyableWhileCorruptedUnique__2"] = { affix = "", "Can be modified while Corrupted", statOrder = { 11 }, level = 66, group = "ModifyableWhileCorrupted", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1161341806] = { "" }, [1161337167] = { "Can be modified while Corrupted" }, } }, + ["DivergentChanceToSapVsEnemiesInChillingAreasUnique__1"] = { affix = "", "25% chance to Sap Enemies in Chilling Areas", statOrder = { 5798 }, level = 50, group = "ChanceToSapVsEnemiesInChillingAreas", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "lightning", "ailment" }, tradeHashes = { [3057853352] = { "25% chance to Sap Enemies in Chilling Areas" }, } }, + ["DivergentWitherOnHitChanceUnique__1"] = { affix = "", "20% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4435 }, level = 45, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1957711555] = { "20% chance to inflict Withered for 2 seconds on Hit" }, } }, + ["DivergentEnemiesKilledApplyImpaleDamageUnique__1"] = { affix = "", "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies", statOrder = { 7412 }, level = 38, group = "EnemiesKilledApplyImpaleDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical" }, tradeHashes = { [3927388937] = { "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies" }, } }, + ["DivergentDamageTakenFromMarkedTargetUnique__1"] = { affix = "", "8% of Damage from Hits is taken from Marked Target's Life before you", statOrder = { 6176 }, level = 70, group = "DamageTakenFromMarkedTarget", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3691190311] = { "8% of Damage from Hits is taken from Marked Target's Life before you" }, } }, + ["DivergentPerfectAgonyIfCritRecentlyUnique__1"] = { affix = "", "You have Perfect Agony if you've dealt a Critical Strike recently", statOrder = { 6888 }, level = 63, group = "PerfectAgonyIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "critical", "ailment" }, tradeHashes = { [3058395672] = { "You have Perfect Agony if you've dealt a Critical Strike recently" }, } }, + ["DivergentDisplaySupportedByUnleashUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Unleash", statOrder = { 406 }, level = 47, group = "DisplaySupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [3356013982] = { "Socketed Gems are Supported by Level 18 Unleash" }, } }, + ["DivergentWintertideBrandChillEffectUnique__1_"] = { affix = "", "Wintertide Brand has 30% increased Chill Effect", statOrder = { 10775 }, level = 41, group = "WintertideBrandChillEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "ailment" }, tradeHashes = { [1831757355] = { "Wintertide Brand has 30% increased Chill Effect" }, } }, + ["DivergentMinionPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 9458 }, level = 60, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain 20% of Physical Damage as Extra Fire Damage" }, } }, + ["DivergentChaosDamageCanIgniteUnique__1"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5054 }, level = 43, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "divergentunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } }, + ["DivergentSacrificialZealOnSkillUseUnique__1_"] = { affix = "", "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second", statOrder = { 6908 }, level = 43, group = "SacrificialZealOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2287328323] = { "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second" }, } }, + ["DivergentSupportedByRageUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 30 Rage", statOrder = { 370 }, level = 47, group = "SupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [369650395] = { "Socketed Gems are Supported by Level 30 Rage" }, } }, + ["DivergentGlobalAddedChaosDamageWardUnique__"] = { affix = "", "Gain Added Chaos Damage equal to 5% of Ward", statOrder = { 2091 }, level = 48, group = "GlobalAddedChaosDamageWard", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "chaos" }, tradeHashes = { [3535421504] = { "Gain Added Chaos Damage equal to 5% of Ward" }, } }, + ["DivergentAllResistancesUnique__23__"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1642 }, level = 69, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, + ["DivergentEnemiesKilledCountAsYoursUnique__1"] = { affix = "", "Nearby Enemies Killed by anyone count as being Killed by you instead", statOrder = { 8001 }, level = 59, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2307982579] = { "Nearby Enemies Killed by anyone count as being Killed by you instead" }, } }, + ["DivergentLocalIncreaseSocketedProjectileGemLevelUnique__1"] = { affix = "", "+4 to Level of Socketed Projectile Gems", statOrder = { 183 }, level = 70, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [2176571093] = { "+4 to Level of Socketed Projectile Gems" }, } }, + ["DivergentAttackCorrosionOnHitChanceUnique__1"] = { affix = "", "25% chance to inflict Corrosion on Hit with Attacks", statOrder = { 4967 }, level = 70, group = "AttackCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attack" }, tradeHashes = { [2523122963] = { "25% chance to inflict Corrosion on Hit with Attacks" }, } }, + ["DivergentIncreasedLifeUnique__114"] = { affix = "", "+70 to maximum Life", statOrder = { 1591 }, level = 69, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [3299347043] = { "+70 to maximum Life" }, } }, + ["DivergentGainSoulEaterStackOnHitUnique__1"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 2 seconds", statOrder = { 6916 }, level = 50, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 2 seconds" }, } }, + ["DivergentSpellImpaleOnCritChanceUnique__1"] = { affix = "", "Critical Strikes with Spells have 50% chance to inflict Impale", statOrder = { 10308 }, level = 58, group = "SpellImpaleOnCritChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4084476257] = { "Critical Strikes with Spells have 50% chance to inflict Impale" }, } }, + ["DivergentUnaffectedByShockLeechingESUnique__1"] = { affix = "", "Unaffected by Shock while Leeching Energy Shield", statOrder = { 10637 }, level = 45, group = "UnaffectedByShockLeechingES", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4102393882] = { "Unaffected by Shock while Leeching Energy Shield" }, } }, + ["DivergentUnaffectedByChillLeechingManaUnique__1"] = { affix = "", "Unaffected by Chill while Leeching Mana", statOrder = { 10617 }, level = 45, group = "UnaffectedByChillLeechingMana", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4014328139] = { "Unaffected by Chill while Leeching Mana" }, } }, + ["DivergentAdrenalineOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5761, 5761.1 }, level = 49, group = "AdrenalineOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [414749123] = { "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life" }, } }, + ["DivergentMaximumFortificationUnique__1"] = { affix = "", "+10 to maximum Fortification", statOrder = { 5097 }, level = 53, group = "MaximumFortification", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2094299742] = { "+10 to maximum Fortification" }, } }, + ["DivergentAuraEffectWhileLinkedUnique__1"] = { affix = "", "20% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target", statOrder = { 9629 }, level = 32, group = "AuraEffectWhileLinked", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3995650818] = { "20% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target" }, } }, + ["DivergentChanceToGainMaximumRageUnique__1"] = { affix = "", "15% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6861 }, level = 39, group = "ChanceToGainMaximumRage", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2710292678] = { "15% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, + ["DivergentExcommunicateOnMeleeHitUnique"] = { affix = "", "Excommunicate Enemies on Melee Hit for 3 seconds", statOrder = { 6593 }, level = 78, group = "ExcommunicateOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2765129230] = { "Excommunicate Enemies on Melee Hit for 3 seconds" }, } }, + ["DivergentDamageTakenPer5RageCappedAt50PercentUnique_1"] = { affix = "", "1% less Damage taken per 5 Rage, up to a maximum of 30%", statOrder = { 6183 }, level = 64, group = "DamageTakenLessPercentPer5RageCapped", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2733459550] = { "1% less Damage taken per 5 Rage, up to a maximum of 30%" }, } }, + ["DivergentGraspFromBeyondTrapUnique_1"] = { affix = "", "Grants Level 20 Will of the Lords Skill", statOrder = { 706 }, level = 68, group = "GrantsBreachHandTrap", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [608058997] = { "Grants Level 20 Will of the Lords Skill" }, } }, + ["DivergentSpellsDoubleDamageChanceUnique__1"] = { affix = "", "Spells have a 10% chance to deal Double Damage", statOrder = { 10282 }, level = 17, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "divergentunique", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a 10% chance to deal Double Damage" }, } }, + ["DivergentKeystoneUnwaveringStanceUnique__1"] = { affix = "", "Unwavering Stance", statOrder = { 10988 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["DivergentTouchedByTormentedSpiritsUnique__1"] = { affix = "", "You can be Touched by Tormented Spirits", statOrder = { 9820 }, level = 10, group = "TouchedByTormentedSpirits", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4197792189] = { "You can be Touched by Tormented Spirits" }, } }, + ["DivergentColdAddedAsFireChilledEnemyUnique__1"] = { affix = "", "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy", statOrder = { 5884 }, level = 20, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3086896309] = { "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy" }, } }, + ["DivergentPainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10967 }, level = 3, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "divergentunique", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["DivergentTriggerSocketedSpellOnBowAttackUnique__2"] = { affix = "", "10% chance to Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 555 }, level = 8, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "attack", "caster", "gem" }, tradeHashes = { [3302736916] = { "10% chance to Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown" }, } }, + ["DivergentIncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1626 }, level = 54, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, + ["DivergentAvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1"] = { affix = "", "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently", statOrder = { 4995 }, level = 55, group = "AvoidFreezeAndChillIfFireSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "ailment" }, tradeHashes = { [3706656107] = { "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently" }, } }, + ["DivergentLocalIncreaseSocketedGemLevelUnique__8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 12, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["DivergentAdditionalHolyRelicUnique__1"] = { affix = "", "+1 to maximum number of Summoned Holy Relics", statOrder = { 5101 }, level = 53, group = "AdditionalHolyRelic", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion" }, tradeHashes = { [2056575682] = { "+1 to maximum number of Summoned Holy Relics" }, } }, + ["DivergentColdDamageOverTimeMultiplierUnique__2"] = { affix = "", "+25% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 65, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "divergentunique", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+25% to Cold Damage over Time Multiplier" }, } }, + ["DivergentMovementVelocityUniqueHelmetStrDex2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1821 }, level = 67, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["DivergentAllResistancesUniqueHelmetDex3"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1642 }, level = 3, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+20% to all Elemental Resistances" }, } }, + ["DivergentEvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2561 }, level = 60, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, + ["DivergentManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 64, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "mana" }, tradeHashes = { [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } }, + ["DivergentCriticalStrikeChanceUniqueHelmetDex6"] = { affix = "", "60% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 55, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "critical" }, tradeHashes = { [587431675] = { "60% increased Global Critical Strike Chance" }, } }, + ["DivergentMeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+50% to Melee Critical Strike Multiplier", statOrder = { 1525 }, level = 60, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+50% to Melee Critical Strike Multiplier" }, } }, + ["DivergentSkillsExertAttacksDoNotCountChanceUnique__1"] = { affix = "", "Skills which Exert an Attack have 30% chance to not count that Attack", statOrder = { 5618 }, level = 33, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2538411280] = { "Skills which Exert an Attack have 30% chance to not count that Attack" }, } }, + ["DivergentDisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 480 }, level = 67, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [928701213] = { "Socketed Gems are Supported by Level 30 Faster Attacks" }, } }, + ["DivergentSpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Attacks have 100% Arcane Might", statOrder = { 2713 }, level = 69, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "attack" }, tradeHashes = { [3811649872] = { "Attacks have 100% Arcane Might" }, } }, + ["DivergentDisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 25% increased Damage", statOrder = { 2727 }, level = 28, group = "DisplayDamageAuraSingleMod", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [2154246560] = { "25% increased Damage" }, [637766438] = { "You and nearby allies gain 25% increased Damage" }, } }, + ["DivergentGainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain 10% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2198 }, level = 37, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain 10% of Maximum Mana as Extra Maximum Energy Shield" }, } }, + ["DivergentShrineBuffEffectUniqueHelmetDexInt3"] = { affix = "", "50% increased Effect of Shrine Buffs on you", statOrder = { 2846 }, level = 38, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1939175721] = { "50% increased Effect of Shrine Buffs on you" }, } }, + ["DivergentSetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "Elemental Resistances are Zero", statOrder = { 2869 }, level = 22, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "resistance" }, tradeHashes = { [85576425] = { "Elemental Resistances are Zero" }, } }, + ["DivergentFireShocksUniqueHelmetDexInt4"] = { affix = "", "Your Fire Damage can Shock but not Ignite", statOrder = { 2890 }, level = 35, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Your Fire Damage can Shock but not Ignite" }, } }, + ["DivergentColdIgnitesUniqueHelmetDexInt4_"] = { affix = "", "Your Cold Damage can Ignite but not Freeze or Chill", statOrder = { 2891 }, level = 35, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Your Cold Damage can Ignite but not Freeze or Chill" }, } }, + ["DivergentLightningFreezesUniqueHelmetDexInt4"] = { affix = "", "Your Lightning Damage can Freeze but not Shock", statOrder = { 2892 }, level = 35, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Your Lightning Damage can Freeze but not Shock" }, } }, + ["DivergentMinionAttackBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Attack Damage", statOrder = { 2937 }, level = 36, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique", "minion" }, tradeHashes = { [3374054207] = { "Minions have +25% Chance to Block Attack Damage" }, } }, + ["DivergentMinionSpellBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2938 }, level = 36, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique", "minion" }, tradeHashes = { [2762046953] = { "Minions have +25% Chance to Block Spell Damage" }, } }, + ["DivergentSocketedGemsHaveReducedManaCostUniqueHelmetDexInt5"] = { affix = "", "Socketed Gems have 50% less Mana Cost", statOrder = { 566 }, level = 62, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "mana", "gem" }, tradeHashes = { [2816901897] = { "Socketed Gems have 50% less Mana Cost" }, } }, + ["DivergentSocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5"] = { affix = "", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 489 }, level = 63, group = "SocketedGemsSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [3878987051] = { "Socketed Gems are supported by Level 20 Cast on Death" }, } }, + ["DivergentPhysicalDamageOnSkillUseUniqueHelmetInt8"] = { affix = "", "Your Skills deal you 200% of Mana Spent on Upfront Skill Mana Costs as Physical Damage", statOrder = { 2236 }, level = 65, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical" }, tradeHashes = { [99487834] = { "Your Skills deal you 200% of Mana Spent on Upfront Skill Mana Costs as Physical Damage" }, } }, + ["DivergentAddedChaosDamagePerCurseUnique__1"] = { affix = "", "Adds 37 to 71 Chaos Damage for each Curse on the Enemy", statOrder = { 9357 }, level = 39, group = "AddedChaosDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4294344579] = { "Adds 37 to 71 Chaos Damage for each Curse on the Enemy" }, } }, + ["DivergentPercentageStrengthUniqueHelmetStrDex6"] = { affix = "", "10% increased Strength", statOrder = { 1207 }, level = 51, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } }, + ["DivergentPercentageDexterityUniqueHelmetStrDex6"] = { affix = "", "10% increased Dexterity", statOrder = { 1208 }, level = 51, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attribute" }, tradeHashes = { [4139681126] = { "10% increased Dexterity" }, } }, + ["DivergentPercentageIntelligenceUniqueHelmetStrDex6"] = { affix = "", "10% increased Intelligence", statOrder = { 1209 }, level = 51, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attribute" }, tradeHashes = { [656461285] = { "10% increased Intelligence" }, } }, + ["DivergentDamageYouReflectGainedAsLifeUniqueHelmetDexInt6"] = { affix = "", "100% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2738 }, level = 52, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [743992531] = { "100% of Damage you Reflect to Enemies when Hit is leeched as Life" }, } }, + ["DivergentRandomCurseWhenHitChanceUnique__1"] = { affix = "", "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit", statOrder = { 9970 }, level = 69, group = "RandomCurseWhenHitChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "curse" }, tradeHashes = { [2674214144] = { "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit" }, } }, + ["DivergentReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 625 }, level = 67, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 30% increased Reservation Efficiency" }, } }, + ["DivergentAttackLightningDamageMaximumManaUnique__1__"] = { affix = "", "Attack Skills have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 4935 }, level = 57, group = "AttackLightningDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to 3% of maximum Mana" }, } }, + ["DivergentChanceToCastOnManaSpentUnique__1"] = { affix = "", "25% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 777, 777.1 }, level = 44, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "caster", "gem" }, tradeHashes = { [776897797] = { "0% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1212497891] = { "25% chance to Trigger Socketed Spells when you Spend at least 0 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, + ["DivergentIncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "12% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 4237 }, level = 68, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [2217962305] = { "12% increased Maximum Life if no Equipped Items are Corrupted" }, } }, + ["DivergentIncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 400 Accuracy Rating", statOrder = { 4345 }, level = 70, group = "IncreaseProjectileAttackDamagePer400Accuracy", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "attack" }, tradeHashes = { [1426001733] = { "1% increased Projectile Attack Damage per 400 Accuracy Rating" }, } }, + ["DivergentArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by 50% of Overcapped Fire Resistance", statOrder = { 4810 }, level = 65, group = "ArmourIncreasedByUncappedFireResistancePercent", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "armour" }, tradeHashes = { [1671639542] = { "Armour is increased by 50% of Overcapped Fire Resistance" }, } }, + ["DivergentMinionLifeIncreasedByOvercappedFireResistanceUnique__1"] = { affix = "", "Minion Life is increased by their Overcapped Fire Resistance", statOrder = { 9444 }, level = 65, group = "MinionLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1586164348] = { "Minion Life is increased by their Overcapped Fire Resistance" }, } }, + ["DivergentMinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9486 }, level = 26, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion", "attribute" }, tradeHashes = { [2195137717] = { "Half of your Strength is added to your Minions" }, } }, + ["DivergentCannotBeFrozenUnique__6"] = { affix = "", "Cannot be Frozen", statOrder = { 1861 }, level = 63, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, + ["DivergentMinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9407 }, level = 63, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, + ["DivergentPhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain 12% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3507 }, level = 68, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "divergentunique", "damage", "physical", "chaos" }, tradeHashes = { [3492297134] = { "Gain 12% of Physical Damage as Extra Chaos Damage while at maximum Power Charges" }, } }, + ["DivergentGrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 768 }, level = 69, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [1869144397] = { "Trigger Level 10 Void Gaze when you use a Skill" }, } }, + ["DivergentHarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 644 }, level = 45, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Storms Skill" }, } }, + ["DivergentAbyssJewelSocketUnique__17"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 34, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DivergentGainArmourEqualToManaReservedUnique__1"] = { affix = "", "1% increased Armour per 100 Reserved Mana", statOrder = { 6788 }, level = 68, group = "GainArmourEqualTo100ManaReserved", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "armour" }, tradeHashes = { [749219868] = { "1% increased Armour per 100 Reserved Mana" }, } }, + ["DivergentPetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 689 }, level = 52, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [1904419785] = { "Grants Level 20 Petrification Statue Skill" }, } }, + ["DivergentAbyssJewelSocketUnique__7"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 53, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DivergentNonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Mana Recovery from Flasks is also Recovered as Life", statOrder = { 4382 }, level = 69, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "divergentunique", "life" }, tradeHashes = { [2262007777] = { "Non-instant Mana Recovery from Flasks is also Recovered as Life" }, } }, + ["DivergentRagingSpiritFireSplashDamageUnique__1"] = { affix = "", "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets", statOrder = { 10448, 10448.1 }, level = 26, group = "RagingSpiritSplashDamage", weightKey = { }, weightVal = { }, modTags = { "red_herring", "divergentunique", "elemental", "fire", "minion" }, tradeHashes = { [221328679] = { "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets" }, } }, + ["DivergentGrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 818 }, level = 60, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, + ["DivergentCannotLoseCrabBarriersIfLostRecentlyUnique__1"] = { affix = "", "Cannot lose Crab Barriers if you have lost Crab Barriers Recently", statOrder = { 4386 }, level = 58, group = "CannotLoseCrabBarriersIfLostRecently", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [241251790] = { "Cannot lose Crab Barriers if you have lost Crab Barriers Recently" }, } }, + ["DivergentGrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 709 }, level = 57, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, + ["DivergentPowerChargeOnHitWebbedEnemyUnique__1"] = { affix = "", "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web", statOrder = { 5774 }, level = 54, group = "PowerChargeOnHitWebbedEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "divergentunique" }, tradeHashes = { [273206351] = { "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web" }, } }, + ["DivergentLifeRegenerationWith1000EnergyShieldUnique__1"] = { affix = "", "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield", statOrder = { 4410 }, level = 58, group = "LifeRegenerationWith1000EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [1704843611] = { "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield" }, } }, + ["DivergentLifeRegenerationPer500EnergyShieldUnique__1"] = { affix = "", "Regenerate 0.2% of Life per second per 500 Player Maximum Energy Shield", statOrder = { 7519 }, level = 58, group = "LifeRegenerationPer500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [1960833438] = { "Regenerate 0.2% of Life per second per 500 Player Maximum Energy Shield" }, } }, + ["DivergentPlaceAdditionalMineWith600IntelligenceUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence", statOrder = { 9659 }, level = 10, group = "PlaceAdditionalMineWith600Intelligence", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [5955083] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence" }, } }, + ["DivergentPlaceAdditionalMineWith600DexterityUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity", statOrder = { 9658 }, level = 10, group = "PlaceAdditionalMineWith600Dexterity", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1917661185] = { "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity" }, } }, + ["DivergentAbyssJewelSocketUnique__12"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 65, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DivergentNearbyEnemiesHaveReducedAllResistancesUnique__1"] = { affix = "", "Nearby Enemies have -10% to all Resistances", statOrder = { 3033 }, level = 58, group = "NearbyEnemiesHaveReducedAllResistances", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "resistance" }, tradeHashes = { [668145148] = { "Nearby Enemies have -10% to all Resistances" }, [2016723660] = { "-10% to All Resistances" }, } }, + ["DivergentAlternateFireAilmentUnique__1"] = { affix = "", "25% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2050, 2586 }, level = 59, group = "AlternateFireAilment", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "ailment" }, tradeHashes = { [4198497576] = { "Cannot inflict Ignite" }, [606940191] = { "25% chance to Scorch Enemies" }, } }, + ["DivergentAlternateColdAilmentUnique__1"] = { affix = "", "25% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2053, 2588 }, level = 59, group = "AlternateColdAilment", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "ailment" }, tradeHashes = { [2238174408] = { "25% chance to inflict Brittle" }, [612223930] = { "Cannot inflict Freeze or Chill" }, } }, + ["DivergentAlternateLightningAilmentUnique__1__"] = { affix = "", "25% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2057, 2589 }, level = 59, group = "AlternateLightningAilment", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "lightning", "ailment" }, tradeHashes = { [532324017] = { "25% chance to Sap Enemies" }, [990377349] = { "Cannot inflict Shock" }, } }, + ["DivergentTriggerFeastOfFleshSkillUnique__1_"] = { affix = "", "Trigger Level 15 Feast of Flesh every 5 seconds", statOrder = { 822 }, level = 54, group = "TriggerFeastOfFleshSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [1560737213] = { "" }, [1024189516] = { "Trigger Level 15 Feast of Flesh every 5 seconds" }, } }, + ["DivergentManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "3% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8330 }, level = 58, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "mana" }, tradeHashes = { [1212083058] = { "3% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, + ["DivergentUnaffectedByPoisonUnique__1_"] = { affix = "", "Unaffected by Poison", statOrder = { 5127 }, level = 48, group = "UnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "divergentunique", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } }, + ["DivergentPercentDexterityIfStrengthHigherThanIntelligenceUnique__1"] = { affix = "", "15% increased Dexterity if Strength is higher than Intelligence", statOrder = { 6263 }, level = 62, group = "PercentDexterityIfStrengthHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attribute" }, tradeHashes = { [2022724400] = { "15% increased Dexterity if Strength is higher than Intelligence" }, } }, + ["DivergentLightRadiusToDamageUnique_1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Damage", statOrder = { 2525 }, level = 8, group = "LightRadiusModifiersApplyToDamage", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [3519807287] = { "Increases and Reductions to Light Radius also apply to Damage" }, } }, + ["DivergentFireResistanceOverrideUnique__1__"] = { affix = "", "Fire Resistance is 70%", statOrder = { 1647 }, level = 60, group = "FireResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "resistance" }, tradeHashes = { [763311546] = { "Fire Resistance is 70%" }, } }, + ["DivergentColdResistanceOverrideUnique__1"] = { affix = "", "Cold Resistance is 70%", statOrder = { 1653 }, level = 60, group = "ColdResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "resistance" }, tradeHashes = { [496075050] = { "Cold Resistance is 70%" }, } }, + ["DivergentLightningResistanceOverrideUnique__1_"] = { affix = "", "Lightning Resistance is 70%", statOrder = { 1658 }, level = 59, group = "LightningResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "lightning", "resistance" }, tradeHashes = { [1942151132] = { "Lightning Resistance is 70%" }, } }, + ["DivergentTransfigurationOfBodyUnique__1"] = { affix = "", "Transfiguration of Body", statOrder = { 4645 }, level = 63, group = "TransfigurationOfBody", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "attack" }, tradeHashes = { [881645355] = { "Transfiguration of Body" }, } }, + ["DivergentTransfigurationOfMindUnique__1"] = { affix = "", "Transfiguration of Mind", statOrder = { 4647 }, level = 63, group = "TransfigurationOfMind", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, } }, + ["DivergentTransfigurationOfSoulUnique__1_"] = { affix = "", "Transfiguration of Soul", statOrder = { 4640 }, level = 63, group = "TransfigurationOfSoul", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "divergentunique", "damage", "caster" }, tradeHashes = { [3268519799] = { "Transfiguration of Soul" }, } }, + ["DivergentFireExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 45, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3602667353] = { "25% chance to inflict Fire Exposure on Hit" }, } }, + ["DivergentColdExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 45, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2630708439] = { "25% chance to inflict Cold Exposure on Hit" }, } }, + ["DivergentChanceToSuppressSpellsWhileChannellingUnique__1____"] = { affix = "", "+20% chance to Suppress Spell Damage while Channelling", statOrder = { 10324 }, level = 64, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4108186648] = { "+20% chance to Suppress Spell Damage while Channelling" }, } }, + ["DivergentFrenzyChargeOnCritCloseRangeUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on Critical Strike at Close Range", statOrder = { 6846 }, level = 69, group = "FrenzyChargeOnCritCloseRange", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "divergentunique", "critical" }, tradeHashes = { [911695185] = { "20% chance to gain a Frenzy Charge on Critical Strike at Close Range" }, } }, + ["DivergentAllAttributesUnique__21"] = { affix = "", "+20 to all Attributes", statOrder = { 1199 }, level = 53, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attribute" }, tradeHashes = { [1379411836] = { "+20 to all Attributes" }, } }, + ["DivergentHarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 644 }, level = 45, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Storms Skill" }, } }, + ["DivergentSpellsCriticalChanceFinalRepeatUnique__1"] = { affix = "", "Spell Skills have 100% increased Critical Strike Chance on Final Repeat", statOrder = { 10312 }, level = 34, group = "SpellsCriticalChanceFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "critical" }, tradeHashes = { [1090897989] = { "Spell Skills have 100% increased Critical Strike Chance on Final Repeat" }, } }, + ["DivergentMeleeWeaponCriticalStrikeMultiplierReplicaUniqueHelmetStr3"] = { affix = "", "+50% to Melee Critical Strike Multiplier", statOrder = { 1525 }, level = 34, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+50% to Melee Critical Strike Multiplier" }, } }, + ["DivergentMinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10924 }, level = 73, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, + ["DivergentSocketedGemQualityUnique__1"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 213 }, level = 58, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [3828613551] = { "+20% to Quality of Socketed Gems" }, } }, + ["DivergentChanceToBlockSpellsPerPowerChargeUnique__2_"] = { affix = "", "+3% Chance to Block Spell Damage per Power Charge", statOrder = { 4631 }, level = 35, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique" }, tradeHashes = { [816458107] = { "+3% Chance to Block Spell Damage per Power Charge" }, } }, + ["DivergentLocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 188 }, level = 64, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "gem" }, tradeHashes = { [1344805487] = { "+4 to Level of Socketed Herald Gems" }, } }, + ["DivergentProjectileSpeedUnique__8"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1819 }, level = 51, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [3759663284] = { "30% increased Projectile Speed" }, } }, + ["DivergentManaRegenerationAuraUnique__1"] = { affix = "", "You and nearby Allies have 30% increased Mana Regeneration Rate", statOrder = { 8009 }, level = 28, group = "ManaRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "mana" }, tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, [2936084533] = { "You and nearby Allies have 30% increased Mana Regeneration Rate" }, } }, + ["DivergentIncreasedElementalResistancesUnique__1"] = { affix = "", "10% increased Elemental Resistances", statOrder = { 6400 }, level = 22, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "resistance" }, tradeHashes = { [76848920] = { "10% increased Elemental Resistances" }, } }, + ["DivergentAnyRingMagicDamageExtraRollUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped", statOrder = { 6506 }, level = 68, group = "AnyRingMagicDamageExtraRoll", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2510276385] = { "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped" }, } }, + ["DivergentMinionCriticalStrikeChanceMaximumPowerChargeUnique__1"] = { affix = "", "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have", statOrder = { 9422 }, level = 73, group = "MinionCriticalStrikeChanceMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion", "critical" }, tradeHashes = { [446070669] = { "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have" }, } }, + ["DivergentChaosResistanceIsZeroUnique__1"] = { affix = "", "Chaos Resistance is Zero", statOrder = { 10889 }, level = 62, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } }, + ["DivergentEnergyShieldAdditiveModifiersInsteadApplyToWardUnique__"] = { affix = "", "Increases and Reductions to Maximum Energy Shield instead apply to Ward", statOrder = { 6516 }, level = 25, group = "EnergyShieldAdditiveModifiersInsteadApplyToWard", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences" }, tradeHashes = { [4100175081] = { "Increases and Reductions to Maximum Energy Shield instead apply to Ward" }, } }, + ["DivergentSpellDamageFromMainHandWeaponDamageUnique__1"] = { affix = "", "Spells you Cast have Added Spell Damage equal to 15% of the Damage of your Main Hand Weapon", statOrder = { 10344 }, level = 68, group = "SpellDamageFromMainHandWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "divergentunique", "damage", "caster" }, tradeHashes = { [3362832740] = { "Spells you Cast have Added Spell Damage equal to 15% of the Damage of your Main Hand Weapon" }, } }, + ["DivergentEnergyShieldRechargeOnKillUnique__1__"] = { affix = "", "10% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6536 }, level = 48, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "10% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, + ["DivergentSocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 594 }, level = 65, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3784504781] = { "Socketed Warcry Skills have +1 Cooldown Use" }, } }, + ["DivergentOnslaughtBuffOnKillUniqueHelmet1"] = { affix = "", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 18, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DivergentRecoverLifeOnSuppressUnique__1"] = { affix = "", "Recover 100 Life when you Suppress Spell Damage", statOrder = { 9993 }, level = 30, group = "RecoverLifeOnSuppress", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1807705940] = { "Recover 100 Life when you Suppress Spell Damage" }, } }, + ["DivergentKeystoneAncestralBondUnique__2"] = { affix = "", "Ancestral Bond", statOrder = { 10933 }, level = 59, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, + ["DivergentAvoidInterruptionWhileCastingUnique__1"] = { affix = "", "Ignore Stuns while Casting", statOrder = { 1921 }, level = 54, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1916706958] = { "Ignore Stuns while Casting" }, } }, + ["DivergentNearbyEnemyReservesLifeUnique__1"] = { affix = "", "Nearby Enemy Monsters have at least 8% of Life Reserved", statOrder = { 8025 }, level = 40, group = "NearbyEnemyReservesLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2492660287] = { "Reserves 8% of Life" }, [1063263585] = { "Nearby Enemy Monsters have at least 8% of Life Reserved" }, } }, + ["DivergentWarcrySpeedUnique__1"] = { affix = "", "25% increased Warcry Speed", statOrder = { 3313 }, level = 52, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [1316278494] = { "25% increased Warcry Speed" }, } }, + ["DivergentAttackerTakesFireDamageUnique__1"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2227 }, level = 23, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "fire" }, tradeHashes = { [1757945818] = { "Reflects 100 Fire Damage to Melee Attackers" }, [223497523] = { "" }, } }, + ["DivergentAttackerTakesColdDamageUnique__1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2226 }, level = 23, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "cold" }, tradeHashes = { [4235886357] = { "Reflects 100 Cold Damage to Melee Attackers" }, } }, + ["DivergentAttackerTakesLightningDamageUnique__1"] = { affix = "", "Reflects 100 Lightning Damage to Melee Attackers", statOrder = { 2228 }, level = 23, group = "AttackerTakesLightningDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "lightning" }, tradeHashes = { [3868184702] = { "Reflects 100 Lightning Damage to Melee Attackers" }, } }, + ["DivergentLightningAddedAsColdShockedEnemyUnique__1"] = { affix = "", "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy", statOrder = { 7548 }, level = 20, group = "LightningAddedAsColdShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [13172430] = { "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy" }, } }, + ["DivergentGlobalIncreaseMinionSpellSkillGemLevelUnique__3"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 63, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, + ["DivergentRageCasterStats50PercentValueUnique__1"] = { affix = "", "Rage grants Spell Damage instead of Attack Damage at 50% of the value", statOrder = { 9940 }, level = 44, group = "RageCasterStats50PercentValue", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3007107372] = { "Rage grants Spell Damage instead of Attack Damage at 50% of the value" }, } }, + ["DivergentWarcryCorpseExplosionUnique__1"] = { affix = "", "Nearby corpses Explode when you Warcry, dealing 5% of their Life as Physical Damage", statOrder = { 9581 }, level = 48, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing 5% of their Life as Physical Damage" }, } }, + ["DivergentGlobalIncreaseMinionSpellSkillGemLevelUnique__4"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1637 }, level = 84, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } }, + ["DivergentWarcryAreaOfEffectUnique__2"] = { affix = "", "Warcry Skills have 25% increased Area of Effect", statOrder = { 10731 }, level = 60, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2567751411] = { "Warcry Skills have 25% increased Area of Effect" }, } }, + ["DivergentLinkedMinionsStealRareModsUnique_1"] = { affix = "", "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 20 seconds", statOrder = { 7608 }, level = 73, group = "LinkedMinionsStealRareMods", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion" }, tradeHashes = { [517280174] = { "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 20 seconds" }, } }, + ["DivergentEnemyExtraDamagerollsWithPhysicalDamageUnique_1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6465 }, level = 78, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, + ["DivergentKeystoneInnerConvictionUnique__1"] = { affix = "", "Inner Conviction", statOrder = { 10973 }, level = 35, group = "KeystoneInnerConviction", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge", "divergentunique", "damage" }, tradeHashes = { [354080151] = { "Inner Conviction" }, } }, + ["DivergentAddedColdDamageUniqueBodyDex1"] = { affix = "", "70 to 105 Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 65, group = "AddedColdDamageWithBowsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "70 to 105 Added Cold Damage with Bow Attacks" }, } }, + ["DivergentIncreasedLifeUniqueBodyStr1"] = { affix = "", "+200 to maximum Life", statOrder = { 1591 }, level = 68, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [3299347043] = { "+200 to maximum Life" }, } }, + ["DivergentGainMaximumEnduranceChargesWhenCritUnique__1"] = { affix = "", "Gain up to maximum Endurance Charges when you take a Critical Strike", statOrder = { 6862 }, level = 43, group = "GainMaximumEnduranceChargesWhenCrit", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4080206249] = { "Gain up to maximum Endurance Charges when you take a Critical Strike" }, } }, + ["DivergentChaosDamageDoesNotBypassEnergyShieldPercentUnique__2"] = { affix = "", "50% of Chaos Damage taken does not bypass Energy Shield", statOrder = { 5055 }, level = 62, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1865744989] = { "50% of Chaos Damage taken does not bypass Energy Shield" }, } }, + ["DivergentPhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "500% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2482 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical" }, tradeHashes = { [1092987622] = { "500% of Melee Physical Damage taken reflected to Attacker" }, } }, + ["DivergentRangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "75% increased Physical Damage with Ranged Weapons", statOrder = { 2021 }, level = 17, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical", "attack" }, tradeHashes = { [766615564] = { "75% increased Physical Damage with Ranged Weapons" }, } }, + ["DivergentPhysicalHitAndDoTDamageTakenAsFireUnique__2"] = { affix = "", "20% of Physical Damage taken as Fire Damage", statOrder = { 9812 }, level = 18, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1004468512] = { "20% of Physical Damage taken as Fire Damage" }, } }, + ["DivergentEnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6507 }, level = 25, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, + ["DivergentSocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 17 Added Chaos Damage", statOrder = { 469 }, level = 49, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 17 Added Chaos Damage" }, } }, + ["DivergentConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1993 }, level = 65, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "divergentunique", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [2731249891] = { "15% of Fire Damage Converted to Chaos Damage" }, } }, + ["DivergentAreaOfEffectUniqueBodyDexInt1"] = { affix = "", "25% increased Area of Effect", statOrder = { 1903 }, level = 62, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } }, + ["DivergentSocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 477 }, level = 3, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 5 Elemental Proliferation" }, } }, + ["DivergentLocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+3 to Level of Socketed Movement Gems", statOrder = { 189 }, level = 53, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [3852526385] = { "+3 to Level of Socketed Movement Gems" }, } }, + ["DivergentItemHasSixLinkedWhiteSocketsUniqueBodyInt6"] = { affix = "", "All Sockets Linked", statOrder = { 72 }, level = 3, group = "ItemHasSixLinkedSockets", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2740018301] = { "All Sockets Linked" }, } }, + ["DivergentFreezeEnemiesWhenHitChanceUnique__1"] = { affix = "", "20% chance to Freeze Enemies for 1 second when they Hit you", statOrder = { 5757 }, level = 39, group = "FreezeEnemiesWhenHitChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2168861013] = { "20% chance to Freeze Enemies for 1 second when they Hit you" }, } }, + ["DivergentDisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 1 Spell Totem", statOrder = { 475 }, level = 49, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 1 Spell Totem" }, } }, + ["DivergentLightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 2526 }, level = 37, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1263695895] = { "25% increased Light Radius" }, } }, + ["DivergentPhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 47, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "divergentunique", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, + ["DivergentMovementVelocityPerEvasionLesserUnique__1"] = { affix = "", "1% increased Movement Speed per 1800 Evasion Rating, up to 25%", statOrder = { 2701 }, level = 59, group = "MovementVelocityPerEvasionLesser", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [2223256941] = { "1% increased Movement Speed per 1800 Evasion Rating, up to 25%" }, } }, + ["DivergentChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 674 }, level = 62, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, + ["DivergentMaximumLifeUniqueBodyStrDex1"] = { affix = "", "20% increased maximum Life", statOrder = { 1593 }, level = 46, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [983749596] = { "20% increased maximum Life" }, } }, + ["DivergentDamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6142 }, level = 32, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, + ["DivergentOnslaughtEffectUnique__1"] = { affix = "", "50% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 63, group = "OnslaughtEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3151397056] = { "50% increased Effect of Onslaught on you" }, } }, + ["DivergentPhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "25% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "25% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["DivergentBaseManaRegenerationUniqueBodyDexInt2"] = { affix = "", "Regenerate 1% of Mana per second", statOrder = { 1604 }, level = 52, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 1% of Mana per second" }, } }, + ["DivergentChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1971 }, level = 17, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, + ["DivergentLocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt"] = { affix = "", "75% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "75% increased Armour, Evasion and Energy Shield" }, } }, + ["DivergentMinionElementalDamageAddedAsChaosUnique__1"] = { affix = "", "Minions gain 20% of Elemental Damage as Extra Chaos Damage", statOrder = { 9433 }, level = 59, group = "MinionElementalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "divergentunique", "damage", "elemental", "chaos", "minion" }, tradeHashes = { [247168950] = { "Minions gain 20% of Elemental Damage as Extra Chaos Damage" }, } }, + ["DivergentElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "15% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2478 }, level = 70, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "chaos" }, tradeHashes = { [1175213674] = { "15% of Elemental Damage from Hits taken as Chaos Damage" }, } }, + ["DivergentIncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "100% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 69, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [2633745731] = { "100% increased total Recovery per second from Life Leech" }, } }, + ["DivergentFireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2470 }, level = 56, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, + ["DivergentItemFoundRarityIncreaseUniqueBodyStr5"] = { affix = "", "50% increased Rarity of Items found", statOrder = { 1619 }, level = 56, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "drop" }, tradeHashes = { [3917489142] = { "50% increased Rarity of Items found" }, } }, + ["DivergentSocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 539 }, level = 52, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 25% increased Reservation Efficiency" }, } }, + ["DivergentChargeDurationUniqueBodyDexInt3"] = { affix = "", "100% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 71, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "divergentunique" }, tradeHashes = { [2839036860] = { "100% increased Endurance, Frenzy and Power Charge Duration" }, } }, + ["DivergentSocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 521 }, level = 59, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [254728692] = { "Socketed Gems are Supported by Level 15 Pierce" }, } }, + ["DivergentLifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 3048 }, level = 61, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [3915702459] = { "Gain 100 Life when you lose an Endurance Charge" }, } }, + ["DivergentZealotsOathUnique__1"] = { affix = "", "Zealot's Oath", statOrder = { 10974 }, level = 64, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, + ["DivergentEnergyShieldRecoveryRateUnique__1"] = { affix = "", "30% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "30% increased Energy Shield Recovery rate" }, } }, + ["DivergentDisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 535 }, level = 56, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "minion", "gem" }, tradeHashes = { [4006301249] = { "Socketed Minion Gems are Supported by Level 16 Life Leech" }, } }, + ["DivergentIncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 4224 }, level = 62, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, + ["DivergentIgnoreHexproofUnique___1"] = { affix = "", "Your Hexes can affect Hexproof Enemies", statOrder = { 2626 }, level = 68, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1367119630] = { "Your Hexes can affect Hexproof Enemies" }, } }, + ["DivergentGainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3636 }, level = 68, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "divergentunique" }, tradeHashes = { [3738335639] = { "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy" }, } }, + ["DivergentTakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes", statOrder = { 4324 }, level = 65, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Strikes" }, } }, + ["DivergentStunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 5003 }, level = 53, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1493090598] = { "35% chance to avoid being Stunned for each Herald Buff affecting you" }, } }, + ["DivergentShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 3% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10165, 10165.1 }, level = 68, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 3% of", "their Life as Lightning Damage which cannot Shock" }, } }, + ["DivergentArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4760 }, level = 65, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1483066460] = { "Arctic Armour has no Reservation" }, } }, + ["DivergentEvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6574 }, level = 65, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, + ["DivergentAllDefencesUnique__2"] = { affix = "", "50% increased Global Defences", statOrder = { 2867 }, level = 3, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences" }, tradeHashes = { [1389153006] = { "50% increased Global Defences" }, } }, + ["DivergentAllDefencesUnique__3"] = { affix = "", "50% increased Global Defences", statOrder = { 2867 }, level = 3, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences" }, tradeHashes = { [1389153006] = { "50% increased Global Defences" }, } }, + ["DivergentIncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "50% increased Global Physical Damage", statOrder = { 1254 }, level = 38, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical" }, tradeHashes = { [1310194496] = { "50% increased Global Physical Damage" }, } }, + ["DivergentDisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 691 }, level = 35, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3985468650] = { "Grants Level 15 Blood Offering Skill" }, } }, + ["DivergentGrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 641 }, level = 62, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Rhoa Skill" }, } }, + ["DivergentGrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 641 }, level = 62, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Ursa Skill" }, } }, + ["DivergentGrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 641 }, level = 62, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Snake Skill" }, } }, + ["DivergentSupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 534 }, level = 59, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 10 Chance to Poison" }, } }, + ["DivergentSocketedGemsSupportedByBlasphemyUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 30 Blasphemy", statOrder = { 531 }, level = 65, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 30 Blasphemy" }, } }, + ["DivergentSocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 167 }, level = 37, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [2886998024] = { "Gems Socketed in Red Sockets have +2 to Level" }, } }, + ["DivergentSocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +20% to Quality", statOrder = { 168 }, level = 37, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [3799930101] = { "Gems Socketed in Green Sockets have +20% to Quality" }, } }, + ["DivergentSocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 169 }, level = 37, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [2236460050] = { "Gems Socketed in Blue Sockets gain 100% increased Experience" }, } }, + ["DivergentBlockChancePer50StrengthUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per 50 Strength", statOrder = { 1176 }, level = 59, group = "BlockChancePer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique" }, tradeHashes = { [1061631617] = { "+1% Chance to Block Attack Damage per 50 Strength" }, } }, + ["DivergentAbyssJewelSocketUnique__15"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 71, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["DivergentAvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4835 }, level = 65, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1746347097] = { "100% increased Aspect of the Avian Buff Effect" }, } }, + ["DivergentMaximumCrabBarriersUnique__1"] = { affix = "", "+5 to Maximum number of Crab Barriers", statOrder = { 4387 }, level = 56, group = "MaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2894704558] = { "+5 to Maximum number of Crab Barriers" }, } }, + ["DivergentCatAspectReservesNoManaUnique__1___"] = { affix = "", "Aspect of the Cat has no Reservation", statOrder = { 5552 }, level = 69, group = "CatAspectReservesNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "mana" }, tradeHashes = { [3850409117] = { "Aspect of the Cat has no Reservation" }, } }, + ["DivergentResistancesOfWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs have -10% to All Resistances", statOrder = { 10068 }, level = 65, group = "ResistancesOfWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "resistance" }, tradeHashes = { [785655723] = { "Enemies affected by your Spider's Webs have -10% to All Resistances" }, } }, + ["DivergentMaximumResistancesOverrideUnique__1"] = { affix = "", "Your Maximum Resistances are 78%", statOrder = { 9699 }, level = 64, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are 78%" }, } }, + ["DivergentAnimatedMinionsHaveMeleeSplashUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets", statOrder = { 4736, 4736.1 }, level = 70, group = "AnimatedMinionsHaveMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "minion" }, tradeHashes = { [91242932] = { "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets" }, } }, + ["DivergentGlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 843 }, level = 65, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3141831683] = { "Trigger Level 20 Glimpse of Eternity when Hit" }, } }, + ["DivergentSelfOfferingEffectUnique__2"] = { affix = "", "30% increased effect of Offerings", statOrder = { 4099 }, level = 68, group = "OfferingEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3191479793] = { "30% increased effect of Offerings" }, } }, + ["DivergentNearbyEnemiesCannotCritUnique__1"] = { affix = "", "Nearby Enemies cannot deal Critical Strikes", statOrder = { 8019 }, level = 56, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Strikes" }, [3638599682] = { "Never deal Critical Strikes" }, } }, + ["DivergentFungalAroundWhenStationaryUnique__1_"] = { affix = "", "You have Fungal Ground around you while stationary", statOrder = { 6784 }, level = 67, group = "FungalAroundWhenStationary", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [799872465] = { "You have Fungal Ground around you while stationary" }, } }, + ["DivergentChaosDamageRemovedFromManaBeforeLifeUnique__1___"] = { affix = "", "50% of Chaos Damage is taken from Mana before Life", statOrder = { 5814 }, level = 67, group = "ChaosDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life", "mana", "chaos" }, tradeHashes = { [3967028570] = { "50% of Chaos Damage is taken from Mana before Life" }, } }, + ["DivergentBannerResourceGainedUnique__1"] = { affix = "", "50% increased Valour gained", statOrder = { 5027 }, level = 68, group = "BannerResourceGained", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1050359418] = { "50% increased Valour gained" }, } }, + ["DivergentArmourAppliesToLightningDamagePercentUnique__1"] = { affix = "", "10% of Armour also applies to Lightning Damage taken from Hits", statOrder = { 5039 }, level = 67, group = "ArmourAppliesToLightningDamagePercent", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2200571612] = { "10% of Armour also applies to Lightning Damage taken from Hits" }, } }, + ["DivergentMinionEnergyShieldRechargeDelayUnique__1"] = { affix = "", "Minions have 100% faster start of Energy Shield Recharge", statOrder = { 4443 }, level = 59, group = "MinionEnergyShieldRechargeDelay", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "energy_shield", "minion" }, tradeHashes = { [2834476618] = { "Minions have 100% faster start of Energy Shield Recharge" }, } }, + ["DivergentAllDamageCanFreezeUnique__1"] = { affix = "", "All Damage can Freeze", statOrder = { 4668 }, level = 59, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "cold", "ailment" }, tradeHashes = { [4052117756] = { "All Damage can Freeze" }, } }, + ["DivergentShareEnduranceChargesWithParty"] = { affix = "", "Share Endurance Charges with nearby party members", statOrder = { 2283 }, level = 43, group = "ShareEnduranceChargesWithParty", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "divergentunique" }, tradeHashes = { [1881314095] = { "Share Endurance Charges with nearby party members" }, } }, + ["DivergentChanceToFreezeShockIgniteUnique__1"] = { affix = "", "25% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 62, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [800141891] = { "25% chance to Freeze, Shock and Ignite" }, } }, + ["DivergentHasMassiveShrineBuffUnique__1"] = { affix = "", "You have Lesser Massive Shrine Buff", statOrder = { 7032 }, level = 62, group = "HasMassiveShrineBuff", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3779398176] = { "You have Lesser Massive Shrine Buff" }, } }, + ["DivergentHasBrutalShrineBuffUnique__1"] = { affix = "", "You have Lesser Brutal Shrine Buff", statOrder = { 7031 }, level = 62, group = "HasBrutalShrineBuff", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2761538350] = { "You have Lesser Brutal Shrine Buff" }, } }, + ["DivergentIncreasedManaUnique__19"] = { affix = "", "+150 to maximum Mana", statOrder = { 1602 }, level = 68, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "mana" }, tradeHashes = { [1050105434] = { "+150 to maximum Mana" }, } }, + ["DivergentEvasionIncreasedByUncappedColdResistanceUnique__2"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6574 }, level = 65, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, + ["DivergentAllAttributesUnique__6"] = { affix = "", "+40 to all Attributes", statOrder = { 1199 }, level = 64, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "attribute" }, tradeHashes = { [1379411836] = { "+40 to all Attributes" }, } }, + ["DivergentAbyssJewelSocketUnique__14"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 69 }, level = 71, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 2 Abyssal Sockets" }, } }, + ["DivergentLifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 40 Life per second per Endurance Charge", statOrder = { 3044 }, level = 71, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [1898967950] = { "Regenerate 40 Life per second per Endurance Charge" }, } }, + ["DivergentMovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 71, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, + ["DivergentGainOnslaughtWhileCatsAgilityUnique__1_"] = { affix = "", "You have Onslaught while you have Cat's Agility", statOrder = { 6884 }, level = 69, group = "GainOnslaughtWhileCatsAgility", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4274075490] = { "You have Onslaught while you have Cat's Agility" }, } }, + ["DivergentTriggerShadeFormWhenHitUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when Hit", statOrder = { 817 }, level = 65, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [2603798371] = { "20% chance to Trigger Level 20 Shade Form when Hit" }, } }, + ["DivergentRegenerateLifeNotUnhingedUnique__1"] = { affix = "", "Regenerate 5% Life over one second when Hit while Sane", statOrder = { 10038 }, level = 68, group = "RegenerateLifeNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [2504632495] = { "Regenerate 5% Life over one second when Hit while Sane" }, } }, + ["DivergentDebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire 50% faster", statOrder = { 6238 }, level = 71, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1238227257] = { "Debuffs on you expire 50% faster" }, } }, + ["DivergentMaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 9286 }, level = 11, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, + ["DivergentArmourAppliesToChaosDamagePercentUnique__1"] = { affix = "", "20% of Armour also applies to Chaos Damage taken from Hits", statOrder = { 5038 }, level = 55, group = "ArmourAppliesToChaosDamagePercent", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "armour", "chaos" }, tradeHashes = { [3972229254] = { "20% of Armour also applies to Chaos Damage taken from Hits" }, } }, + ["DivergentIncreasedLifeNoLifeModifiersUnique__1"] = { affix = "", "+250 to maximum Life if there are no Life Modifiers on other Equipped Items", statOrder = { 9273 }, level = 53, group = "IncreasedLifeNoLifeModifiers", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [2927667525] = { "+250 to maximum Life if there are no Life Modifiers on other Equipped Items" }, } }, + ["DivergentLocalIncreaseSocketedActiveSkillGemLevelUnique__1"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 196 }, level = 49, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } }, + ["DivergentDisplaySupportedByAddedColdDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 17 Added Cold Damage", statOrder = { 529 }, level = 49, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "divergentunique", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 17 Added Cold Damage" }, } }, + ["DivergentAddedLightningDamageUnique__4"] = { affix = "", "8 to 150 Added Lightning Damage with Wand Attacks", statOrder = { 2125 }, level = 65, group = "AddedLightningDamageWithWandsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "8 to 150 Added Lightning Damage with Wand Attacks" }, } }, + ["DivergentLifeFromEnergyShieldArmourPercentUnique__1"] = { affix = "", "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", "at 50% of the value", statOrder = { 6867, 6867.1 }, level = 35, group = "LifeFromEnergyShieldArmourPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [581055101] = { "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", "at 50% of the value" }, } }, + ["DivergentBaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+4% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3607 }, level = 32, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "critical" }, tradeHashes = { [3613173483] = { "+4% to Unarmed Melee Attack Critical Strike Chance" }, } }, + ["DivergentGrantsSummonVoidSpawnUnique__1"] = { affix = "", "Trigger Level 20 Summon Void Spawn every 4 seconds", statOrder = { 749 }, level = 78, group = "GrantSummonVoidSpawnEvery4Seconds", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [1560737213] = { "" }, [658873122] = { "Trigger Level 20 Summon Void Spawn every 4 seconds" }, } }, + ["DivergentMinionLifeAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Maximum Life also apply to you at 10% of their value", statOrder = { 3790 }, level = 66, group = "MinionMaximumAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life", "minion" }, tradeHashes = { [3942379359] = { "Increases and Reductions to Minion Maximum Life also apply to you at 10% of their value" }, } }, + ["DivergentSpellBlockPercentageOnLowLifeUniqueShieldStrDex1_"] = { affix = "", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1169 }, level = 54, group = "SpellBlockPercentageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique" }, tradeHashes = { [2253286128] = { "+15% Chance to Block Spell Damage while on Low Life" }, } }, + ["DivergentSpellCriticalStrikeChancePerLifeUnique__1"] = { affix = "", "3% increased Spell Critical Strike Chance per 100 Player Maximum Life", statOrder = { 10284 }, level = 68, group = "SpellCriticalStrikeChancePerLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "critical" }, tradeHashes = { [3775574601] = { "3% increased Spell Critical Strike Chance per 100 Player Maximum Life" }, } }, + ["DivergentPhysicalAddedAsColdUnique__2"] = { affix = "", "Gain 15% of Physical Damage as Extra Cold Damage", statOrder = { 1956 }, level = 16, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "divergentunique", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 15% of Physical Damage as Extra Cold Damage" }, } }, + ["DivergentAdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2272 }, level = 8, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique" }, tradeHashes = { [4253454700] = { "+5% Chance to Block" }, } }, + ["DivergentRangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-150 Physical Damage taken from Projectile Attacks", statOrder = { 2269 }, level = 70, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "physical", "attack" }, tradeHashes = { [3612407781] = { "-150 Physical Damage taken from Projectile Attacks" }, } }, + ["DivergentIncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+2% to all maximum Resistances", statOrder = { 1665 }, level = 59, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["DivergentSocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 539 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } }, + ["DivergentLifeRegenerationFlatOnLowLifeUnique__1"] = { affix = "", "Regenerate 100 Life per Second while on Low Life", statOrder = { 7529 }, level = 7, group = "LifeRegenerationFlatOnLowLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2161482953] = { "Regenerate 100 Life per Second while on Low Life" }, } }, + ["DivergentBlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2490 }, level = 30, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, + ["DivergentEnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 1% of Armour when you Block", statOrder = { 2494 }, level = 62, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 1% of Armour when you Block" }, } }, + ["DivergentAuraEffectUniqueShieldInt2"] = { affix = "", "10% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 23, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "aura" }, tradeHashes = { [1880071428] = { "10% increased effect of Non-Curse Auras from your Skills" }, } }, + ["DivergentConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 61, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "divergentunique", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, + ["DivergentAvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1870 }, level = 65, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "fire", "ailment" }, tradeHashes = { [4271082039] = { "100% chance to Avoid being Ignited while on Low Life" }, } }, + ["DivergentBlockChanceVersusCursedEnemiesUnique__1"] = { affix = "", "+15% Chance to Block Attack Damage from Cursed Enemies", statOrder = { 5298 }, level = 29, group = "BlockChanceVersusCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3304203764] = { "+15% Chance to Block Attack Damage from Cursed Enemies" }, } }, + ["DivergentIncreasedItemRarityUniqueShieldStrDex2"] = { affix = "", "35% increased Rarity of Items found", statOrder = { 1619 }, level = 5, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "drop" }, tradeHashes = { [3917489142] = { "35% increased Rarity of Items found" }, } }, + ["DivergentPowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2972 }, level = 70, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge", "divergentunique" }, tradeHashes = { [1936544447] = { "25% chance to gain a Power Charge when you Throw a Trap" }, } }, + ["DivergentReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2612 }, level = 63, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "divergentunique", "damage", "physical" }, tradeHashes = { [1445684883] = { "Reflects 1000 to 10000 Physical Damage to Attackers on Block" }, } }, + ["DivergentPunishmentOnMeleeBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", statOrder = { 3021 }, level = 33, group = "PunishmentOnMeleeBlock", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique", "caster", "curse" }, tradeHashes = { [2922377850] = { "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit" }, } }, + ["DivergentTemporalChainsOnProjectileBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", statOrder = { 3022 }, level = 33, group = "TemporalChainsOnProjectileBlock", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique", "caster", "curse" }, tradeHashes = { [541329769] = { "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit" }, } }, + ["DivergentElementalWeaknessOnSpellBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", statOrder = { 3023 }, level = 33, group = "ElementalWeaknessOnSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique", "caster", "curse" }, tradeHashes = { [2048643052] = { "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit" }, } }, + ["DivergentAddedPhysicalDamageUniqueShieldDex6"] = { affix = "", "Adds 10 to 18 Physical Damage to Attacks", statOrder = { 1290 }, level = 46, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "divergentunique", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 10 to 18 Physical Damage to Attacks" }, } }, + ["DivergentHealAlliesOnDeathUniqueShieldDexInt2"] = { affix = "", "Nearby allies Recover 1% of your Maximum Life when you Die", statOrder = { 3025 }, level = 45, group = "HealAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [3484267929] = { "Nearby allies Recover 1% of your Maximum Life when you Die" }, } }, + ["DivergentVulnerabilityOnBlockUniqueShieldStrDex3"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 3019 }, level = 20, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique", "caster", "curse" }, tradeHashes = { [3477714116] = { "Curse Enemies with Vulnerability on Block" }, } }, + ["DivergentWarcryGrantsArcaneSurgeUnique__1"] = { affix = "", "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%", statOrder = { 4753 }, level = 23, group = "WarcryGrantsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3399924348] = { "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%" }, } }, + ["DivergentWarcryCooldownSpeedUnique__1"] = { affix = "", "30% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 35, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4159248054] = { "30% increased Warcry Cooldown Recovery Rate" }, } }, + ["DivergentKeystoneCallToArmsUnique__2_"] = { affix = "", "Call to Arms", statOrder = { 10937 }, level = 42, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, + ["DivergentTotemLeechLifeToYouUnique__1"] = { affix = "", "0.5% of Damage dealt by your Totems is Leeched to you as Life", statOrder = { 4273 }, level = 17, group = "TotemLeechLifeToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [3812562802] = { "0.5% of Damage dealt by your Totems is Leeched to you as Life" }, } }, + ["DivergentProfaneGroundInsteadOfConsecratedGround__1_"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5991 }, level = 68, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } }, + ["DivergentCreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 836 }, level = 45, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [208447205] = { "Trigger Level 20 Fog of War when your Trap is triggered" }, } }, + ["DivergentIncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "8% increased Spell Damage per Power Charge", statOrder = { 2163 }, level = 65, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "divergentunique", "damage", "caster" }, tradeHashes = { [827329571] = { "8% increased Spell Damage per Power Charge" }, } }, + ["DivergentGrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 3420 }, level = 50, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge", "divergentunique" }, tradeHashes = { [2367680009] = { "10% chance to grant a Power Charge to nearby Allies on Kill" }, } }, + ["DivergentGrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 3421 }, level = 50, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "divergentunique" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to nearby Allies on Hit" }, } }, + ["DivergentCounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Retaliation Skills", statOrder = { 4241 }, level = 11, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "divergentunique", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1109700751] = { "Adds 250 to 300 Cold Damage to Retaliation Skills" }, } }, + ["DivergentShockProliferationUnique__2"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2246 }, level = 62, group = "ShockProliferationShield", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [1640259660] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } }, + ["DivergentChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5807 }, level = 62, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } }, + ["DivergentEnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate Enemies on Block", statOrder = { 9753 }, level = 64, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique" }, tradeHashes = { [2930706364] = { "Permanently Intimidate Enemies on Block" }, } }, + ["DivergentGainLifeOnBlockUnique__1"] = { affix = "", "Recover 150 Life when you Block", statOrder = { 1783 }, level = 64, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "divergentunique", "life" }, tradeHashes = { [1678831767] = { "Recover 150 Life when you Block" }, } }, + ["DivergentArmourPerTotemUnique__1"] = { affix = "", "+500 Armour per Summoned Totem", statOrder = { 4538 }, level = 61, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "armour" }, tradeHashes = { [1429385513] = { "+500 Armour per Summoned Totem" }, } }, + ["DivergentMaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4609 }, level = 67, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "resistance" }, tradeHashes = { [3635566977] = { "+2% to all maximum Resistances while you have no Endurance Charges" }, } }, + ["DivergentCriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage", statOrder = { 3225 }, level = 28, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage" }, } }, + ["DivergentHarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 644 }, level = 68, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3872739249] = { "Grants Summon Harbinger of Focus Skill" }, } }, + ["DivergentTriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 788 }, level = 66, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, + ["DivergentTriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 790 }, level = 68, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [1128763150] = { "Triggers Level 20 Fire Aegis when Equipped" }, } }, + ["DivergentTriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 789 }, level = 70, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [2602585351] = { "Triggers Level 20 Elemental Aegis when Equipped" }, } }, + ["DivergentSharedSufferingUnique__1"] = { affix = "", "Shared Suffering", statOrder = { 10980 }, level = 66, group = "SharedSuffering", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [956038713] = { "Shared Suffering" }, } }, + ["DivergentCommandmentOfInfernoOnCritUnique__1"] = { affix = "", "Trigger Commandment of Inferno on Critical Strike", statOrder = { 807 }, level = 68, group = "CommandmentOfInfernoOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "critical" }, tradeHashes = { [3251948367] = { "Trigger Commandment of Inferno on Critical Strike" }, } }, + ["DivergentMaximumResistancesWhilePoisonedUnique__1"] = { affix = "", "+3% to all maximum Resistances while Poisoned", statOrder = { 4607 }, level = 62, group = "MaximumResistancesWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "resistance" }, tradeHashes = { [1030987123] = { "+3% to all maximum Resistances while Poisoned" }, } }, + ["DivergentBleedOnSelfDealChaosDamageUnique__1"] = { affix = "", "You take Chaos Damage instead of Physical Damage from Bleeding", statOrder = { 2475 }, level = 62, group = "BleedOnSelfDealChaosDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "poison", "divergentunique", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1623397857] = { "You take Chaos Damage instead of Physical Damage from Bleeding" }, } }, + ["DivergentAreaOfEffectPerEnemyKilledRecentlyCapped25Unique__1"] = { affix = "", "1% increased Area of Effect per Enemy killed recently, up to 25%", statOrder = { 4767 }, level = 49, group = "AreaOfEffectPerEnemyKilledRecentlyCapped25", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [250553316] = { "1% increased Area of Effect per Enemy killed recently, up to 25%" }, } }, + ["DivergentWarcryCooldownSpeedUnique__2"] = { affix = "", "30% increased Warcry Cooldown Recovery Rate", statOrder = { 3365 }, level = 49, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4159248054] = { "30% increased Warcry Cooldown Recovery Rate" }, } }, + ["DivergentSpellCriticalStrikeChancePerSpectreUnique__1_"] = { affix = "", "40% increased Spell Critical Strike Chance per Raised Spectre", statOrder = { 10285 }, level = 68, group = "SpellCriticalStrikeChancePerSpectre", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "critical" }, tradeHashes = { [495095219] = { "40% increased Spell Critical Strike Chance per Raised Spectre" }, } }, + ["DivergentTriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 792 }, level = 62, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [850729424] = { "Triggers Level 20 Lightning Aegis when Equipped" }, } }, + ["DivergentDrainAllManaLightningDamageUnique__1"] = { affix = "", "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 25% of Sacrificed Mana for 4 seconds", statOrder = { 9692, 9692.1 }, level = 56, group = "DrainAllManaLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "resource", "divergentunique", "mana", "damage", "elemental", "lightning" }, tradeHashes = { [820827484] = { "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 25% of Sacrificed Mana for 4 seconds" }, } }, + ["DivergentPhasingIfBlockedRecentlyUnique__1"] = { affix = "", "You have Phasing if you have Blocked Recently", statOrder = { 9759 }, level = 60, group = "PhasingIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3492654051] = { "You have Phasing if you have Blocked Recently" }, } }, + ["DivergentKeystoneGlancingBlowsUnique__1___"] = { affix = "", "Glancing Blows", statOrder = { 10954 }, level = 46, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "divergentunique" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, + ["DivergentHarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 644 }, level = 68, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Focus Skill" }, } }, + ["DivergentCriticalStrikeChancePerBrandUnique__1___"] = { affix = "", "20% increased Critical Strike Chance per Brand", statOrder = { 6016 }, level = 61, group = "CriticalStrikeChancePerBrand", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "critical" }, tradeHashes = { [2409504914] = { "20% increased Critical Strike Chance per Brand" }, } }, + ["DivergentFireHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Fire Damage taken as Lightning Damage", statOrder = { 6670 }, level = 66, group = "FireHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [4142376596] = { "40% of Fire Damage taken as Lightning Damage" }, } }, + ["DivergentColdHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Cold Damage taken as Lightning Damage", statOrder = { 5908 }, level = 66, group = "ColdHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2881210047] = { "40% of Cold Damage taken as Lightning Damage" }, } }, + ["DivergentStrUniqueShieldTriggerShieldShatterOnBlock"] = { affix = "", "Trigger Level 15 Shield Shatter when you Block", statOrder = { 825 }, level = 49, group = "UniqueTriggerShieldShatter", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [401685616] = { "Trigger Level 15 Shield Shatter when you Block" }, } }, + ["DivergentTriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 795 }, level = 58, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [1892084828] = { "Triggers Level 20 Physical Aegis when Equipped" }, } }, + ["DivergentPhasingIfBlockedRecentlyReplicaUnique__1"] = { affix = "", "You have Phasing if you have Blocked Recently", statOrder = { 9759 }, level = 58, group = "PhasingIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3492654051] = { "You have Phasing if you have Blocked Recently" }, } }, + ["DivergentGrantsAlliesFrenzyChargeOnKillUnique__1_"] = { affix = "", "10% chance to grant a Frenzy Charge to nearby Allies on Kill", statOrder = { 5781 }, level = 50, group = "GrantsAlliesFrenzyChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "divergentunique" }, tradeHashes = { [1243641369] = { "10% chance to grant a Frenzy Charge to nearby Allies on Kill" }, } }, + ["DivergentGrantsAlliesEnduranceChargeOnHitUnique__1"] = { affix = "", "5% chance to grant an Endurance Charge to nearby Allies on Hit", statOrder = { 5780 }, level = 50, group = "GrantsAlliesEnduranceChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "divergentunique" }, tradeHashes = { [3174788165] = { "5% chance to grant an Endurance Charge to nearby Allies on Hit" }, } }, + ["DivergentDamageOverTimeMultiplierIfCrit8SecondsUnique__1_"] = { affix = "", "+20% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 6346 }, level = 54, group = "DamageOverTimeMultiplierIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "damage", "critical" }, tradeHashes = { [3203086927] = { "+20% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds" }, } }, + ["DivergentUnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2504 }, level = 54, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, + ["DivergentKeystoneSoulTetherUnique__2"] = { affix = "", "Immortal Ambition", statOrder = { 10983 }, level = 46, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life", "defences", "energy_shield" }, tradeHashes = { [687223267] = { "Immortal Ambition" }, } }, + ["DivergentKeystoneCorruptedSoulUnique__2_"] = { affix = "", "Corrupted Soul", statOrder = { 10941 }, level = 46, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "energy_shield", "chaos" }, tradeHashes = { [1911037487] = { "Corrupted Soul" }, } }, + ["DivergentKeystoneVaalPactUnique__2"] = { affix = "", "Vaal Pact", statOrder = { 10989 }, level = 46, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, + ["DivergentKeystoneEternalYouthUnique__2_"] = { affix = "", "Eternal Youth", statOrder = { 10949 }, level = 46, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, + ["DivergentKeystoneDivineFleshUnique__1_"] = { affix = "", "Divine Flesh", statOrder = { 10943 }, level = 46, group = "DivineFlesh", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "chaos", "resistance" }, tradeHashes = { [2321346567] = { "Divine Flesh" }, } }, + ["DivergentKeystoneEverlastingSacrificeUnique__1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10950 }, level = 46, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, + ["DivergentImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 10631 }, level = 49, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "ailment" }, tradeHashes = { [2716882575] = { "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500" }, } }, + ["DivergentIncreaseSocketedSupportGemQualityUnique__1___"] = { affix = "", "+30% to Quality of Socketed Support Gems", statOrder = { 214 }, level = 70, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "gem" }, tradeHashes = { [1328548975] = { "+30% to Quality of Socketed Support Gems" }, } }, + ["DivergentChanceToSuppressSpellsUnique__1_"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 70, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3680664274] = { "+15% chance to Suppress Spell Damage" }, } }, + ["DivergentScorchOnEnemiesOnBlockUnique__1"] = { affix = "", "Scorch Enemies in Close Range when you Block", statOrder = { 10108 }, level = 67, group = "ScorchOnEnemiesOnBlock", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [41178696] = { "Scorch Enemies in Close Range when you Block" }, } }, + ["DivergentTreatResistancesAsMaxChanceUnique__1"] = { affix = "", "20% chance for Elemental Resistances to count as being 90% against Enemy Hits", statOrder = { 6508 }, level = 57, group = "TreatResistancesAsMaxChance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "elemental", "resistance" }, tradeHashes = { [204458505] = { "20% chance for Elemental Resistances to count as being 90% against Enemy Hits" }, } }, + ["DivergentElementalDamageTakenAsPhysicalUnique__1"] = { affix = "", "25% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6416 }, level = 39, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2340750293] = { "25% of Elemental Damage from Hits taken as Physical Damage" }, } }, + ["DivergentTriggerSocketedElementalSpellOnBlockUnique__1"] = { affix = "", "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown", statOrder = { 8130 }, level = 51, group = "TriggerSocketedElementalSpellOnBlock", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique", "caster", "gem" }, tradeHashes = { [2036151955] = { "" }, [3591112611] = { "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown" }, } }, + ["DivergentUnwaveringStanceUnique_2"] = { affix = "", "Unwavering Stance", statOrder = { 10988 }, level = 64, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["DivergentProjectileAvoidUnique"] = { affix = "", "10% chance to avoid Projectiles", statOrder = { 5046 }, level = 60, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3452269808] = { "10% chance to avoid Projectiles" }, } }, + ["DivergentRetaliateSkillUseWindowDuration_1"] = { affix = "", "Retaliation Skills become Usable for 100% longer", statOrder = { 10085 }, level = 62, group = "RetaliationSkillUseWindowDuration", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [2547149004] = { "Retaliation Skills become Usable for 100% longer" }, } }, + ["DivergentAbyssJewelSocketUnique__18"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 71, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { "divergentunique" }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DivergentEvasionModifersApplyToSpellDamageUnique__1"] = { affix = "", "Increases and Reductions to your Evasion Rating also apply to your Spell Damage at 50% of their value", statOrder = { 4641 }, level = 58, group = "EvasionModifersApplyToSpellDamage", weightKey = { }, weightVal = { }, modTags = { "divergentunique", "caster" }, tradeHashes = { [4091694419] = { "Increases and Reductions to your Evasion Rating also apply to your Spell Damage at 50% of their value" }, } }, + ["DivergentSavageBarnacleMod_1"] = { affix = "", "Grants Level 20 Savage Barnacle", statOrder = { 712 }, level = 68, group = "GrantsCreateBarnacleSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "divergentunique" }, tradeHashes = { [4009462747] = { "Grants Level 20 Savage Barnacle" }, } }, + ["DivergentCurseSkillsCostAndReserveLifeUnique__1"] = { affix = "", "Curse Skills cost Life instead of Mana", "Curse Aura Skills reserve Life instead of Mana", statOrder = { 6086, 6087 }, level = 68, group = "CurseSkillsCostAndReserveLife", weightKey = { }, weightVal = { }, modTags = { "resource", "divergentunique", "life", "curse" }, tradeHashes = { [2280341859] = { "Curse Skills cost Life instead of Mana" }, [3840847348] = { "Curse Aura Skills reserve Life instead of Mana" }, } }, + ["UniqueAmuletChaosResistancePerColdResistance"] = { affix = "", "+1% to Chaos Resistance per 1% Cold Resistance", statOrder = { 5817 }, level = 1, group = "UniqueAmuletChaosResistancePerColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "chaos" }, tradeHashes = { [2142084156] = { "+1% to Chaos Resistance per 1% Cold Resistance" }, } }, + ["UniqueAmuletChaosResistancePerFireResistance"] = { affix = "", "+1% to Chaos Resistance per 1% Fire Resistance", statOrder = { 5818 }, level = 1, group = "UniqueAmuletChaosResistancePerFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [3795935347] = { "+1% to Chaos Resistance per 1% Fire Resistance" }, } }, + ["UniqueAmuletChaosResistancePerLightningResistance"] = { affix = "", "+1% to Chaos Resistance per 1% Lightning Resistance", statOrder = { 5819 }, level = 1, group = "UniqueAmuletChaosResistancePerLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "chaos" }, tradeHashes = { [3789103652] = { "+1% to Chaos Resistance per 1% Lightning Resistance" }, } }, + ["UniquePearlSupportOne"] = { affix = "", "Skills Socketed in your Helmet are Supported by level 20 (1-164)", statOrder = { 8113 }, level = 36, group = "UniquePearlSupportOne", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3028821143] = { "Skills Socketed in your Helmet are Supported by level 0 0" }, [74492293] = { "" }, [1888453198] = { "" }, } }, + ["UniquePearlSupportTwo"] = { affix = "", "Skills Socketed in your Helmet are Supported by level 20 (1-164)", statOrder = { 8114 }, level = 36, group = "UniquePearlSupportTwo", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2404956521] = { "Skills Socketed in your Helmet are Supported by level 0 0" }, [4035029655] = { "" }, [2951628896] = { "" }, } }, } \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index 4adbd3ae2c..c038006bc7 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -2,428 +2,429 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-3)% to Chaos Resistance" }, } }, - ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1408638732] = { "1% reduced Character Size" }, } }, - ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(3-5)% reduced Chill Duration on you" }, } }, - ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(3-5)% reduced Freeze Duration on you" }, } }, - ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(3-5)% reduced Ignite Duration on you" }, } }, - ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1873 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(3-5)% reduced Shock Duration on you" }, } }, - ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(3-7)% increased Endurance, Frenzy and Power Charge Duration" }, } }, - ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } }, - ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3132 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, tradeHashes = { [165218607] = { "Hits have (60-100)% increased Critical Strike Chance against you" }, } }, - ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3096 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [3582580206] = { "(20-30)% increased Damage while Dead" }, } }, - ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(5-10)% increased Damage with Vaal Skills" }, } }, - ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "1% increased Chaos Damage for each Corrupted Item Equipped" }, } }, - ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3100 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3815042054] = { "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped" }, } }, - ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3102 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2679819855] = { "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped" }, } }, - ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10657 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(5-7)% increased Effect of Non-Damaging Ailments" }, } }, - ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-5)% increased Area of Effect" }, } }, - ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-10)% increased Global Critical Strike Chance" }, } }, - ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(4-5)% increased Damage" }, } }, - ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, - ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-5)% increased Damage" }, } }, - ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4202507508] = { "2% increased Reservation Efficiency of Skills" }, } }, - ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2587176568] = { "2% increased Reservation Efficiency of Skills" }, } }, - ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, - ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, - ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, - ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, - ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-25)% chance to Avoid being Ignited" }, } }, - ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-25)% chance to Avoid being Chilled" }, [1514829491] = { "(20-25)% chance to Avoid being Frozen" }, } }, - ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-25)% chance to Avoid being Shocked" }, } }, - ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(20-25)% chance to Avoid being Poisoned" }, } }, - ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(20-25)% chance to Avoid Bleeding" }, } }, - ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, - ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-25)% reduced Ignite Duration on you" }, } }, - ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(20-25)% reduced Effect of Chill on you" }, } }, - ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-25)% reduced Effect of Shock on you" }, } }, - ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9979 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-25)% reduced Poison Duration on you" }, } }, - ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9970 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-25)% reduced Bleed Duration on you" }, } }, - ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(20-25)% reduced Effect of Curses on you" }, } }, - ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Damage with Maces or Sceptres", statOrder = { 1325 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(14-16)% increased Damage with Maces or Sceptres" }, } }, - ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1301 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(14-16)% increased Damage with Axes" }, } }, - ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1339 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(14-16)% increased Damage with Swords" }, } }, - ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1331 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(14-16)% increased Damage with Bows" }, } }, - ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1313 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [1069260037] = { "(14-16)% increased Damage with Claws" }, } }, - ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1319 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(14-16)% increased Damage with Daggers" }, } }, - ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2943 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [379328644] = { "(14-16)% increased Damage with Wands" }, } }, - ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Damage with Staves", statOrder = { 1308 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [4087089130] = { "(14-16)% increased Damage with Staves" }, } }, - ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 3335 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1010549321] = { "(12-14)% increased Damage with One Handed Weapons" }, } }, - ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 3336 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1836374041] = { "(12-14)% increased Damage with Two Handed Weapons" }, } }, - ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1278 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [444174528] = { "(12-14)% increased Attack Damage while Dual Wielding" }, } }, - ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1300 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [515842015] = { "(14-16)% increased Melee Physical Damage with Unarmed Attacks" }, } }, - ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(10-12)% increased Melee Damage" }, } }, - ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-12)% increased Projectile Damage" }, } }, - ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-12)% increased Spell Damage" }, } }, - ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1227 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(14-16)% increased Spell Damage while wielding a Staff" }, } }, - ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1230 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(14-16)% increased Spell Damage while Dual Wielding" }, } }, - ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1229 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(14-16)% increased Spell Damage while holding a Shield" }, } }, - ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(14-16)% increased Trap Damage" }, } }, - ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1196 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(14-16)% increased Mine Damage" }, } }, - ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1191 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(8-10)% increased Damage" }, } }, - ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, - ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(14-16)% increased Fire Damage" }, } }, - ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(14-16)% increased Cold Damage" }, } }, - ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(14-16)% increased Lightning Damage" }, } }, - ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(14-16)% increased Global Physical Damage" }, } }, - ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(10-12)% increased Damage over Time" }, } }, - ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(9-13)% increased Chaos Damage" }, } }, - ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-12)% increased Area Damage" }, } }, - ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1424 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "(6-8)% increased Attack Speed with Maces or Sceptres" }, } }, - ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1420 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(6-8)% increased Attack Speed with Axes" }, } }, - ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1426 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(6-8)% increased Attack Speed with Swords" }, } }, - ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1425 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(6-8)% increased Attack Speed with Bows" }, } }, - ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1422 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "(6-8)% increased Attack Speed with Claws" }, } }, - ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1423 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(6-8)% increased Attack Speed with Daggers" }, } }, - ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1427 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "(6-8)% increased Attack Speed with Wands" }, } }, - ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrder = { 1421 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [1394963553] = { "(6-8)% increased Attack Speed with Staves" }, } }, - ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1419 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1813451228] = { "(4-6)% increased Attack Speed with One Handed Melee Weapons" }, } }, - ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1418 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1917910910] = { "(4-6)% increased Attack Speed with Two Handed Melee Weapons" }, } }, - ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1415 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [4249220643] = { "(4-6)% increased Attack Speed while Dual Wielding" }, } }, - ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1447 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, tradeHashes = { [2382196858] = { "(3-5)% increased Cast Speed while Dual Wielding" }, } }, - ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1417 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400 }, modTags = { "attack", "speed" }, tradeHashes = { [3805075944] = { "(4-6)% increased Attack Speed while holding a Shield" }, } }, - ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1448 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, tradeHashes = { [1612163368] = { "(3-5)% increased Cast Speed while holding a Shield" }, } }, - ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1449 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "caster", "speed" }, tradeHashes = { [2066542501] = { "(3-5)% increased Cast Speed while wielding a Staff" }, } }, - ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1429 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1584440377] = { "(6-8)% increased Unarmed Attack Speed with Melee Skills" }, } }, - ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(3-5)% increased Attack Speed" }, } }, - ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(6-8)% increased Projectile Speed" }, } }, - ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-8)% increased Trap Throwing Speed" }, } }, - ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(6-8)% increased Mine Throwing Speed" }, } }, - ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(2-4)% increased Attack and Cast Speed" }, } }, - ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1206 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(12-14)% increased Attack Damage while holding a Shield" }, } }, - ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1365 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "fire", "caster", "speed" }, tradeHashes = { [1476643878] = { "(3-5)% increased Cast Speed with Fire Skills" }, } }, - ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1376 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "caster", "speed" }, tradeHashes = { [928238845] = { "(3-5)% increased Cast Speed with Cold Skills" }, } }, - ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1384 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "caster", "speed" }, tradeHashes = { [1788635023] = { "(3-5)% increased Cast Speed with Lightning Skills" }, } }, - ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1392 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, tradeHashes = { [2054902222] = { "(3-5)% increased Cast Speed with Chaos Skills" }, } }, - ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 2214 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (5-10)% increased Cast Speed" }, } }, - ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-16) to Strength" }, } }, - ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-16) to Dexterity" }, } }, - ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-16) to Intelligence" }, } }, - ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(8-10) to Strength and Dexterity" }, } }, - ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(8-10) to Strength and Intelligence" }, } }, - ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(8-10) to Dexterity and Intelligence" }, } }, - ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-8) to all Attributes" }, } }, - ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(8-12) to maximum Life" }, } }, - ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 350, 500 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, - ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(8-12) to maximum Mana" }, } }, - ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 250 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, - ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(12-15)% increased Mana Regeneration Rate" }, } }, - ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(8-12) to maximum Energy Shield" }, } }, - ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } }, - ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 1569, 1579 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(4-6) to maximum Mana" }, [3299347043] = { "+(4-6) to maximum Life" }, } }, - ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 1571, 1580 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, - ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 1561, 1580 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, - ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 1561, 1571 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, - ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["LifeLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, - ["ManaLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, - ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrder = { 1663 }, level = 1, group = "SpellLifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, tradeHashes = { [213733864] = { "0.2% of Spell Damage Leeched as Life" }, } }, - ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "SpellManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [998295788] = { "0.2% of Spell Damage Leeched as Mana" }, } }, - ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, - ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } }, - ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1747 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (2-3) Energy Shield per Enemy Hit with Attacks" }, } }, - ["LifeRecoupJewel"] = { type = "Suffix", affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } }, - ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrder = { 1541 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } }, - ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } }, - ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 1541, 1549 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2866361420] = { "(6-12)% increased Armour" }, } }, - ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 1541, 1561 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [2866361420] = { "(6-12)% increased Armour" }, } }, - ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 1549, 1561 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, - ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, - ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(4-6)% increased Rarity of Items found" }, } }, - ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(20-40) to Accuracy Rating" }, } }, - ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-14)% increased Global Accuracy Rating" }, } }, - ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrder = { 1434, 1459 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 150 }, modTags = { "attack", "critical" }, tradeHashes = { [587431675] = { "(6-10)% increased Global Critical Strike Chance" }, [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } }, - ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-12)% increased Global Critical Strike Chance" }, } }, - ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(9-12)% to Global Critical Strike Multiplier" }, } }, - ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces or Sceptres", statOrder = { 1469 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [107161577] = { "(12-16)% increased Critical Strike Chance with Maces or Sceptres" }, } }, - ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrder = { 1472 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2560468845] = { "(12-16)% increased Critical Strike Chance with Axes" }, } }, - ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrder = { 1468 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2630620421] = { "(12-16)% increased Critical Strike Chance with Swords" }, } }, - ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(12-16)% increased Critical Strike Chance with Bows" }, } }, - ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrder = { 1466 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3428039188] = { "(12-16)% increased Critical Strike Chance with Claws" }, } }, - ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrder = { 1467 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(12-16)% increased Critical Strike Chance with Daggers" }, } }, - ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrder = { 1471 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1729982003] = { "(12-16)% increased Critical Strike Chance with Wands" }, } }, - ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrder = { 1470 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1207586028] = { "(12-16)% increased Critical Strike Chance with Staves" }, } }, - ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1494 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres" }, } }, - ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrder = { 1495 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(8-10)% to Critical Strike Multiplier with Axes" }, } }, - ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrder = { 1497 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(8-10)% to Critical Strike Multiplier with Swords" }, } }, - ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(8-10)% to Critical Strike Multiplier with Bows" }, } }, - ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrder = { 1499 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(8-10)% to Critical Strike Multiplier with Claws" }, } }, - ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrder = { 1493 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "+(8-10)% to Critical Strike Multiplier with Daggers" }, } }, - ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrder = { 1498 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(8-10)% to Critical Strike Multiplier with Wands" }, } }, - ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrder = { 1500 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1474913037] = { "+(8-10)% to Critical Strike Multiplier with Staves" }, } }, - ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrder = { 1478 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2381842786] = { "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons" }, } }, - ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrder = { 1476 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [764295120] = { "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons" }, } }, - ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Attack Critical Strike Chance while Dual Wielding", statOrder = { 1480 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3702513529] = { "(14-18)% increased Attack Critical Strike Chance while Dual Wielding" }, } }, - ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrder = { 1473 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1215447494] = { "(10-14)% increased Critical Strike Chance while holding a Shield" }, } }, - ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrder = { 1479 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1199429645] = { "(10-14)% increased Melee Critical Strike Chance" }, } }, - ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(10-14)% increased Spell Critical Strike Chance" }, } }, - ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrder = { 1474 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(12-16)% increased Critical Strike Chance with Traps" }, } }, - ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrder = { 1475 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [214031493] = { "(12-16)% increased Critical Strike Chance with Mines" }, } }, - ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrder = { 1481 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "fire", "critical" }, tradeHashes = { [1104796138] = { "(14-18)% increased Critical Strike Chance with Fire Skills" }, } }, - ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrder = { 1483 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "cold", "critical" }, tradeHashes = { [3337344042] = { "(14-18)% increased Critical Strike Chance with Cold Skills" }, } }, - ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrder = { 1482 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1186596295] = { "(14-18)% increased Critical Strike Chance with Lightning Skills" }, } }, - ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrder = { 1484 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental", "critical" }, tradeHashes = { [439950087] = { "(10-14)% increased Critical Strike Chance with Elemental Skills" }, } }, - ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrder = { 1485 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [1424360933] = { "(12-16)% increased Critical Strike Chance with Chaos Skills" }, } }, - ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1501 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons" }, } }, - ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrder = { 1477 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [252507949] = { "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons" }, } }, - ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrder = { 4264 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2546185479] = { "+(15-18)% to Critical Strike Multiplier while Dual Wielding" }, } }, - ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrder = { 1504 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3668589927] = { "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield" }, } }, - ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrder = { 1502 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(12-15)% to Melee Critical Strike Multiplier" }, } }, - ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "+(12-15)% to Critical Strike Multiplier for Spell Damage" }, } }, - ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrder = { 1505 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1780168381] = { "+(8-10)% to Critical Strike Multiplier with Traps" }, } }, - ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrder = { 1506 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [2529112796] = { "+(8-10)% to Critical Strike Multiplier with Mines" }, } }, - ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrder = { 1507 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHashes = { [2307547323] = { "+(15-18)% to Critical Strike Multiplier with Fire Skills" }, } }, - ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrder = { 1509 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHashes = { [915908446] = { "+(15-18)% to Critical Strike Multiplier with Cold Skills" }, } }, - ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrder = { 1508 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHashes = { [2441475928] = { "+(15-18)% to Critical Strike Multiplier with Lightning Skills" }, } }, - ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrder = { 1510 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [1569407745] = { "+(12-15)% to Critical Strike Multiplier with Elemental Skills" }, } }, - ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrder = { 1511 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [2710238363] = { "+(8-10)% to Critical Strike Multiplier with Chaos Skills" }, } }, - ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-15)% to Fire Resistance" }, } }, - ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-15)% to Cold Resistance" }, } }, - ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-15)% to Lightning Resistance" }, } }, - ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-12)% to Fire and Cold Resistances" }, } }, - ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-12)% to Fire and Lightning Resistances" }, } }, - ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-12)% to Cold and Lightning Resistances" }, } }, - ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["MaximumFireResistanceJewel"] = { type = "Suffix", affix = "of the Phoenix", "+(1-2)% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-2)% to maximum Fire Resistance" }, } }, - ["MaximumColdResistanceJewel"] = { type = "Suffix", affix = "of the Kraken", "+(1-2)% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-2)% to maximum Cold Resistance" }, } }, - ["MaximumLightningResistanceJewel"] = { type = "Suffix", affix = "of the Leviathan", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-2)% to maximum Lightning Resistance" }, } }, - ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, tradeHashes = { [2517001139] = { "(10-14)% increased Stun Duration on Enemies" }, } }, - ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(25-35)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, tradeHashes = { [2511217560] = { "(25-35)% increased Stun and Block Recovery" }, } }, - ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(3-5)% reduced Mana Cost of Skills" }, } }, - ["FasterAilmentDamageJewel"] = { type = "Prefix", affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, - ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(10-15)% increased Area of Effect of Aura Skills" }, } }, - ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-10)% increased Area of Effect of Hex Skills" }, } }, - ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(6-8)% chance to Avoid being Ignited" }, } }, - ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(6-8)% chance to Avoid being Shocked" }, } }, - ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(6-8)% chance to Avoid being Frozen" }, } }, - ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(6-8)% chance to Avoid being Chilled" }, } }, - ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(6-8)% chance to Avoid being Stunned" }, } }, - ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(2-3)% chance to Freeze" }, } }, - ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(2-3)% chance to Ignite" }, } }, - ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(2-3)% chance to Shock" }, } }, - ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(10-14)% increased Endurance Charge Duration" }, } }, - ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(10-14)% increased Frenzy Charge Duration" }, } }, - ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(10-14)% increased Power Charge Duration" }, } }, - ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { }, tradeHashes = { [977908611] = { "(4-6)% chance to Knock Enemies Back on hit" }, } }, - ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+(2-3)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(2-3)% Chance to Block Attack Damage while Dual Wielding" }, } }, - ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+(2-3)% Chance to Block Attack Damage while holding a Shield", statOrder = { 1139 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+(2-3)% Chance to Block Attack Damage while holding a Shield" }, } }, - ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+(2-3)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1154 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, tradeHashes = { [1778298516] = { "+(2-3)% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+(2-3)% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1144 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, tradeHashes = { [138741818] = { "+(2-3)% Chance to Block Spell Damage while Dual Wielding" }, } }, - ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+(2-3)% Chance to Block Spell Damage while holding a Shield", statOrder = { 1140 }, level = 1, group = "ShieldSpellBlockForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, tradeHashes = { [938645499] = { "+(2-3)% Chance to Block Spell Damage while holding a Shield" }, } }, - ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+(2-3)% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+(2-3)% Chance to Block Spell Damage while wielding a Staff" }, } }, - ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5765 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, - ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration on Enemies" }, } }, - ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(3-5)% increased Ignite Duration on Enemies" }, } }, - ["ChillAndShockEffectOnYouJewel"] = { type = "Suffix", affix = "of Insulation", "15% reduced Effect of Chill and Shock on you", statOrder = { 10019 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced Effect of Chill and Shock on you" }, } }, - ["CurseEffectOnYouJewel"] = { type = "Suffix", affix = "of Hexwarding", "(25-30)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(25-30)% reduced Effect of Curses on you" }, } }, - ["IgniteDurationOnYouJewel"] = { type = "Suffix", affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-35)% reduced Ignite Duration on you" }, } }, - ["ChillEffectOnYouJewel"] = { type = "Suffix", affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(30-35)% reduced Effect of Chill on you" }, } }, - ["ShockEffectOnYouJewel"] = { type = "Suffix", affix = "of the Stormdweller", "(30-35)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced Effect of Shock on you" }, } }, - ["PoisonDurationOnYouJewel"] = { type = "Suffix", affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 9979 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(30-35)% reduced Poison Duration on you" }, } }, - ["BleedDurationOnYouJewel"] = { type = "Suffix", affix = "of Stemming", "(30-35)% reduced Bleed Duration on you", statOrder = { 9970 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Bleed Duration on you" }, } }, - ["ManaReservationEfficiencyJewel"] = { type = "Prefix", affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 250 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, - ["FlaskDurationJewel"] = { type = "Prefix", affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, - ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrder = { 1858, 2029 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [44571480] = { "(3-5)% chance to Freeze" }, } }, - ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrder = { 1857, 2033 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration on Enemies" }, [1538773178] = { "(3-5)% chance to Shock" }, } }, - ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrder = { 1859, 2026 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(3-5)% chance to Ignite" }, [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, - ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 3170, 3173 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(6-8)% increased Poison Duration" }, [795138349] = { "(3-5)% chance to Poison on Hit" }, } }, - ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2489, 4994 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(12-16)% increased Bleeding Duration" }, [3204820200] = { "Attacks have (3-5)% chance to cause Bleeding" }, } }, - ["ImpaleChanceForJewel_"] = { type = "Suffix", affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 500 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(16-20)% increased Damage with Poison" }, } }, - ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 500 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(16-20)% increased Damage with Bleeding" }, } }, - ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(16-20)% increased Burning Damage" }, } }, - ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, - ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(6-8)% increased Energy Shield Recharge Rate" }, } }, - ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(4-6)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(4-6)% Chance to Block Attack Damage" }, } }, - ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, - ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, - ["MinionAccuracyRatingJewel"] = { type = "Suffix", affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, - ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(12-16)% increased Totem Damage" }, } }, - ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(8-12)% increased Totem Life" }, } }, - ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2787 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(6-10)% to all Elemental Resistances" }, } }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-15)% Fire Resistance" }, } }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7915 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, } }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-15)% Cold Resistance" }, } }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-10)% chance to Avoid Cold Damage from Hits" }, } }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7913 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-15)% Lightning Resistance" }, } }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-10)% chance to Avoid Lightning Damage from Hits" }, } }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7917 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(34-20) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2235 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(49-35) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "(3-5)% additional Physical Damage Reduction while moving" }, } }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (6-8) to (9-11) Physical Damage" }, } }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7919 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5041 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [511024200] = { "(1-2)% reduced Physical Damage taken over time" }, } }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-35)% to Chaos Resistance" }, } }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2266636761] = { "+(30-40)% Chaos Resistance against Damage Over Time" }, } }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7912 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-19)% increased Chaos Damage" }, } }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(50-60)% increased Damage when on Full Life" }, } }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(100-120)% increased Damage when on Full Life" }, } }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(25-40) to maximum Life" }, } }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(2-3)% increased maximum Life" }, [3299347043] = { "+(15-25) to maximum Life" }, } }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+500 to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.3% of Life per second" }, } }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+1000 to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+(250-300) to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+500 to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+1000 to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+(250-300) to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-50)% increased Armour" }, } }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(25-50)% increased Evasion Rating" }, } }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(25-50)% increased Energy Shield" }, } }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(25-50)% increased Armour and Evasion" }, } }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(25-50)% increased Armour and Energy Shield" }, } }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(25-50)% increased Evasion and Energy Shield" }, } }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(25-50)% increased Armour, Evasion and Energy Shield" }, } }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7951 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2016708976] = { "+(10-20)% to Quality" }, } }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6497 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(3-4)% Chance to Block Attack Damage" }, } }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9118 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [335507772] = { "+(3-5) to maximum Fortification" }, } }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9134 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(20-30)% increased Energy Shield from Equipped Body Armour" }, } }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "20% chance to Defend with 200% of Armour" }, } }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(1-2)% chance to Evade Attack Hits" }, } }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7872 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "50% chance to Avoid being Poisoned" }, } }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "50% chance to Avoid Bleeding" }, } }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(30-40)% increased Damage with Ailments" }, } }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-20)% increased Damage with Ailments" }, } }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9251 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [424026624] = { "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies" }, } }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies" }, } }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances" }, } }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-60)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-120)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-25)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(26-32)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-39)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-49)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(37-50)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(51-65)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(66-79)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-94)% increased Elemental Damage" }, } }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-30)% reduced Elemental Ailment Duration on you" }, } }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-30)% increased Elemental Damage" }, } }, - ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 562 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, tradeHashes = { [3425934849] = { "Socketed Skills have 18% increased Cast Speed" }, } }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 568 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, tradeHashes = { [1688834903] = { "Socketed Spells have 20% reduced Mana Cost" }, } }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 331 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 1 Maim" }, } }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 561 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, tradeHashes = { [2881124988] = { "Socketed Skills have 18% increased Attack Speed" }, } }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.3% of Attack Damage Leeched as Life" }, } }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8200 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8200 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently" }, } }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8212 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(50-70)% increased Mana Regeneration Rate while moving" }, } }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-4) Mana per Enemy Hit with Attacks" }, } }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(8-12)% increased Mana Recovery rate" }, } }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2181 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [1311723478] = { "Ignore all Movement Penalties from Armour" }, } }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5396 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [628032624] = { "Cannot be Chilled or Frozen while moving" }, } }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(15-20)% chance to gain Onslaught when you use a Flask" }, } }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5412 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3592330380] = { "Cannot be Shocked or Ignited while moving" }, } }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6761 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(5-10)% chance to gain Onslaught when you use a Flask" }, } }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-74)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (75-80)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-70)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (71-90)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (91-110)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (111-130)% increased Damage" }, } }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(20-25)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } }, - ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, - ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9487 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 20% reduced Souls Per Use" }, } }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9487 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 40% reduced Souls Per Use" }, } }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(5-8)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(3-5)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } }, - ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(6-8)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(6-8)% to Chaos Damage over Time Multiplier" }, } }, - ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(6-8)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(6-8)% to Cold Damage over Time Multiplier" }, } }, - ["JewelFireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Zealousness", "+(6-8)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(6-8)% to Fire Damage over Time Multiplier" }, } }, - ["JewelPhysicalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Exsanguinating", "+(6-8)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(6-8)% to Physical Damage over Time Multiplier" }, } }, - ["JewelGlobalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(4-6)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(4-6)% to Damage over Time Multiplier" }, } }, + ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-3)% to Chaos Resistance" }, } }, + ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1408638732] = { "1% reduced Character Size" }, } }, + ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1895 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(3-5)% reduced Chill Duration on you" }, } }, + ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(3-5)% reduced Freeze Duration on you" }, } }, + ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(3-5)% reduced Ignite Duration on you" }, } }, + ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1896 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(3-5)% reduced Shock Duration on you" }, } }, + ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(3-7)% increased Endurance, Frenzy and Power Charge Duration" }, } }, + ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } }, + ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3166 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, tradeHashes = { [165218607] = { "Hits have (60-100)% increased Critical Strike Chance against you" }, } }, + ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3130 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [3582580206] = { "(20-30)% increased Damage while Dead" }, } }, + ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(5-10)% increased Damage with Vaal Skills" }, } }, + ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3133 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "1% increased Chaos Damage for each Corrupted Item Equipped" }, } }, + ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3134 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3815042054] = { "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped" }, } }, + ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3136 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2679819855] = { "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped" }, } }, + ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3128 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, + ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5483 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10813 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(5-7)% increased Effect of Non-Damaging Ailments" }, } }, + ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-5)% increased Area of Effect" }, } }, + ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-10)% increased Global Critical Strike Chance" }, } }, + ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1214 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(4-5)% increased Damage" }, } }, + ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4997 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, + ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-5)% increased Damage" }, } }, + ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2256 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4202507508] = { "2% increased Reservation Efficiency of Skills" }, } }, + ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2587176568] = { "2% increased Reservation Efficiency of Skills" }, } }, + ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3128 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, + ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, + ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, + ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, + ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, + ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-25)% chance to Avoid being Ignited" }, } }, + ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1867, 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-25)% chance to Avoid being Chilled" }, [1514829491] = { "(20-25)% chance to Avoid being Frozen" }, } }, + ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-25)% chance to Avoid being Shocked" }, } }, + ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(20-25)% chance to Avoid being Poisoned" }, } }, + ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(20-25)% chance to Avoid Bleeding" }, } }, + ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, + ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-25)% reduced Ignite Duration on you" }, } }, + ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1668 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(20-25)% reduced Effect of Chill on you" }, } }, + ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-25)% reduced Effect of Shock on you" }, } }, + ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 10123 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-25)% reduced Poison Duration on you" }, } }, + ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 10114 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-25)% reduced Bleed Duration on you" }, } }, + ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(20-25)% reduced Effect of Curses on you" }, } }, + ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Damage with Maces or Sceptres", statOrder = { 1349 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(14-16)% increased Damage with Maces or Sceptres" }, } }, + ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1325 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(14-16)% increased Damage with Axes" }, } }, + ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1363 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(14-16)% increased Damage with Swords" }, } }, + ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1355 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(14-16)% increased Damage with Bows" }, } }, + ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1337 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [1069260037] = { "(14-16)% increased Damage with Claws" }, } }, + ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1343 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(14-16)% increased Damage with Daggers" }, } }, + ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2977 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [379328644] = { "(14-16)% increased Damage with Wands" }, } }, + ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Damage with Staves", statOrder = { 1332 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, tradeHashes = { [4087089130] = { "(14-16)% increased Damage with Staves" }, } }, + ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 3371 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1010549321] = { "(12-14)% increased Damage with One Handed Weapons" }, } }, + ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 3372 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1836374041] = { "(12-14)% increased Damage with Two Handed Weapons" }, } }, + ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1302 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [444174528] = { "(12-14)% increased Attack Damage while Dual Wielding" }, } }, + ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1324 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [515842015] = { "(14-16)% increased Melee Physical Damage with Unarmed Attacks" }, } }, + ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1257 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(10-12)% increased Melee Damage" }, } }, + ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-12)% increased Projectile Damage" }, } }, + ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-12)% increased Spell Damage" }, } }, + ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1250 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(14-16)% increased Spell Damage while wielding a Staff" }, } }, + ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1253 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(14-16)% increased Spell Damage while Dual Wielding" }, } }, + ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1252 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(14-16)% increased Spell Damage while holding a Shield" }, } }, + ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 1217 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(14-16)% increased Trap Damage" }, } }, + ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1219 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(14-16)% increased Mine Damage" }, } }, + ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1214 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(8-10)% increased Damage" }, } }, + ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, + ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(14-16)% increased Fire Damage" }, } }, + ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(14-16)% increased Cold Damage" }, } }, + ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(14-16)% increased Lightning Damage" }, } }, + ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(14-16)% increased Global Physical Damage" }, } }, + ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(10-12)% increased Damage over Time" }, } }, + ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(9-13)% increased Chaos Damage" }, } }, + ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-12)% increased Area Damage" }, } }, + ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1448 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "(6-8)% increased Attack Speed with Maces or Sceptres" }, } }, + ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1444 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(6-8)% increased Attack Speed with Axes" }, } }, + ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1450 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(6-8)% increased Attack Speed with Swords" }, } }, + ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1449 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(6-8)% increased Attack Speed with Bows" }, } }, + ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1446 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "(6-8)% increased Attack Speed with Claws" }, } }, + ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1447 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(6-8)% increased Attack Speed with Daggers" }, } }, + ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1451 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "(6-8)% increased Attack Speed with Wands" }, } }, + ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrder = { 1445 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [1394963553] = { "(6-8)% increased Attack Speed with Staves" }, } }, + ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1443 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1813451228] = { "(4-6)% increased Attack Speed with One Handed Melee Weapons" }, } }, + ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1442 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1917910910] = { "(4-6)% increased Attack Speed with Two Handed Melee Weapons" }, } }, + ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1439 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500 }, modTags = { "attack", "speed" }, tradeHashes = { [4249220643] = { "(4-6)% increased Attack Speed while Dual Wielding" }, } }, + ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1471 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, tradeHashes = { [2382196858] = { "(3-5)% increased Cast Speed while Dual Wielding" }, } }, + ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1441 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400 }, modTags = { "attack", "speed" }, tradeHashes = { [3805075944] = { "(4-6)% increased Attack Speed while holding a Shield" }, } }, + ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1472 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, tradeHashes = { [1612163368] = { "(3-5)% increased Cast Speed while holding a Shield" }, } }, + ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1473 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "caster", "speed" }, tradeHashes = { [2066542501] = { "(3-5)% increased Cast Speed while wielding a Staff" }, } }, + ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1453 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1584440377] = { "(6-8)% increased Unarmed Attack Speed with Melee Skills" }, } }, + ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(3-5)% increased Attack Speed" }, } }, + ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(6-8)% increased Projectile Speed" }, } }, + ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, + ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(6-8)% increased Trap Throwing Speed" }, } }, + ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(6-8)% increased Mine Throwing Speed" }, } }, + ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(2-4)% increased Attack and Cast Speed" }, } }, + ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1229 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1393393937] = { "(12-14)% increased Attack Damage while holding a Shield" }, } }, + ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1389 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "fire", "caster", "speed" }, tradeHashes = { [1476643878] = { "(3-5)% increased Cast Speed with Fire Skills" }, } }, + ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1400 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "caster", "speed" }, tradeHashes = { [928238845] = { "(3-5)% increased Cast Speed with Cold Skills" }, } }, + ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1408 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "caster", "speed" }, tradeHashes = { [1788635023] = { "(3-5)% increased Cast Speed with Lightning Skills" }, } }, + ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1416 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, tradeHashes = { [2054902222] = { "(3-5)% increased Cast Speed with Chaos Skills" }, } }, + ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 2237 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (5-10)% increased Cast Speed" }, } }, + ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1200 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-16) to Strength" }, } }, + ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-16) to Dexterity" }, } }, + ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-16) to Intelligence" }, } }, + ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1203 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(8-10) to Strength and Dexterity" }, } }, + ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1204 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(8-10) to Strength and Intelligence" }, } }, + ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1205 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(8-10) to Dexterity and Intelligence" }, } }, + ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-8) to all Attributes" }, } }, + ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(8-12) to maximum Life" }, } }, + ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 1593 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 350, 500 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-7)% increased maximum Life" }, } }, + ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(8-12) to maximum Mana" }, } }, + ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 250 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(8-10)% increased maximum Mana" }, } }, + ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(12-15)% increased Mana Regeneration Rate" }, } }, + ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(8-12) to maximum Energy Shield" }, } }, + ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } }, + ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 1591, 1602 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(4-6) to maximum Mana" }, [3299347043] = { "+(4-6) to maximum Life" }, } }, + ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 1593, 1603 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, + ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 1583, 1603 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, + ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 1583, 1593 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [983749596] = { "(2-4)% increased maximum Life" }, } }, + ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["LifeLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, + ["ManaLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, + ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrder = { 1686 }, level = 1, group = "SpellLifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, tradeHashes = { [213733864] = { "0.2% of Spell Damage Leeched as Life" }, } }, + ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrder = { 1727 }, level = 1, group = "SpellManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [998295788] = { "0.2% of Spell Damage Leeched as Mana" }, } }, + ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (2-3) Life per Enemy Hit with Attacks" }, } }, + ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } }, + ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1770 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (2-3) Energy Shield per Enemy Hit with Attacks" }, } }, + ["LifeRecoupJewel"] = { type = "Suffix", affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } }, + ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrder = { 1563 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } }, + ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 1571 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } }, + ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 1563, 1571 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2866361420] = { "(6-12)% increased Armour" }, } }, + ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 1563, 1583 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, [2866361420] = { "(6-12)% increased Armour" }, } }, + ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 1571, 1583 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2106365538] = { "(6-12)% increased Evasion Rating" }, [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } }, + ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, + ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(4-6)% increased Rarity of Items found" }, } }, + ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(20-40) to Accuracy Rating" }, } }, + ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-14)% increased Global Accuracy Rating" }, } }, + ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrder = { 1458, 1482 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 150 }, modTags = { "attack", "critical" }, tradeHashes = { [587431675] = { "(6-10)% increased Global Critical Strike Chance" }, [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } }, + ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-12)% increased Global Critical Strike Chance" }, } }, + ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(9-12)% to Global Critical Strike Multiplier" }, } }, + ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces or Sceptres", statOrder = { 1492 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [107161577] = { "(12-16)% increased Critical Strike Chance with Maces or Sceptres" }, } }, + ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrder = { 1495 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2560468845] = { "(12-16)% increased Critical Strike Chance with Axes" }, } }, + ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrder = { 1491 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2630620421] = { "(12-16)% increased Critical Strike Chance with Swords" }, } }, + ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(12-16)% increased Critical Strike Chance with Bows" }, } }, + ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrder = { 1489 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3428039188] = { "(12-16)% increased Critical Strike Chance with Claws" }, } }, + ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrder = { 1490 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(12-16)% increased Critical Strike Chance with Daggers" }, } }, + ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrder = { 1494 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1729982003] = { "(12-16)% increased Critical Strike Chance with Wands" }, } }, + ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrder = { 1493 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1207586028] = { "(12-16)% increased Critical Strike Chance with Staves" }, } }, + ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1517 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres" }, } }, + ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrder = { 1518 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(8-10)% to Critical Strike Multiplier with Axes" }, } }, + ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrder = { 1520 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(8-10)% to Critical Strike Multiplier with Swords" }, } }, + ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(8-10)% to Critical Strike Multiplier with Bows" }, } }, + ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrder = { 1522 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(8-10)% to Critical Strike Multiplier with Claws" }, } }, + ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrder = { 1516 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "+(8-10)% to Critical Strike Multiplier with Daggers" }, } }, + ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrder = { 1521 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(8-10)% to Critical Strike Multiplier with Wands" }, } }, + ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrder = { 1523 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1474913037] = { "+(8-10)% to Critical Strike Multiplier with Staves" }, } }, + ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrder = { 1501 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2381842786] = { "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons" }, } }, + ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrder = { 1499 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [764295120] = { "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons" }, } }, + ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Attack Critical Strike Chance while Dual Wielding", statOrder = { 1503 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3702513529] = { "(14-18)% increased Attack Critical Strike Chance while Dual Wielding" }, } }, + ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrder = { 1496 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1215447494] = { "(10-14)% increased Critical Strike Chance while holding a Shield" }, } }, + ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrder = { 1502 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1199429645] = { "(10-14)% increased Melee Critical Strike Chance" }, } }, + ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(10-14)% increased Spell Critical Strike Chance" }, } }, + ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrder = { 1497 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1192661666] = { "(12-16)% increased Critical Strike Chance with Traps" }, } }, + ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrder = { 1498 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [214031493] = { "(12-16)% increased Critical Strike Chance with Mines" }, } }, + ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrder = { 1504 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "fire", "critical" }, tradeHashes = { [1104796138] = { "(14-18)% increased Critical Strike Chance with Fire Skills" }, } }, + ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrder = { 1506 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "cold", "critical" }, tradeHashes = { [3337344042] = { "(14-18)% increased Critical Strike Chance with Cold Skills" }, } }, + ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrder = { 1505 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1186596295] = { "(14-18)% increased Critical Strike Chance with Lightning Skills" }, } }, + ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrder = { 1507 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental", "critical" }, tradeHashes = { [439950087] = { "(10-14)% increased Critical Strike Chance with Elemental Skills" }, } }, + ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrder = { 1508 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [1424360933] = { "(12-16)% increased Critical Strike Chance with Chaos Skills" }, } }, + ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1524 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [670153687] = { "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons" }, } }, + ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrder = { 1500 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [252507949] = { "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons" }, } }, + ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrder = { 4300 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2546185479] = { "+(15-18)% to Critical Strike Multiplier while Dual Wielding" }, } }, + ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrder = { 1527 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3668589927] = { "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield" }, } }, + ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrder = { 1525 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(12-15)% to Melee Critical Strike Multiplier" }, } }, + ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1515 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "+(12-15)% to Critical Strike Multiplier for Spell Damage" }, } }, + ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrder = { 1528 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1780168381] = { "+(8-10)% to Critical Strike Multiplier with Traps" }, } }, + ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrder = { 1529 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [2529112796] = { "+(8-10)% to Critical Strike Multiplier with Mines" }, } }, + ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrder = { 1530 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHashes = { [2307547323] = { "+(15-18)% to Critical Strike Multiplier with Fire Skills" }, } }, + ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrder = { 1532 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHashes = { [915908446] = { "+(15-18)% to Critical Strike Multiplier with Cold Skills" }, } }, + ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrder = { 1531 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHashes = { [2441475928] = { "+(15-18)% to Critical Strike Multiplier with Lightning Skills" }, } }, + ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrder = { 1533 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [1569407745] = { "+(12-15)% to Critical Strike Multiplier with Elemental Skills" }, } }, + ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrder = { 1534 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHashes = { [2710238363] = { "+(8-10)% to Critical Strike Multiplier with Chaos Skills" }, } }, + ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-15)% to Fire Resistance" }, } }, + ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-15)% to Cold Resistance" }, } }, + ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-15)% to Lightning Resistance" }, } }, + ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-12)% to Fire and Cold Resistances" }, } }, + ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-12)% to Fire and Lightning Resistances" }, } }, + ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-12)% to Cold and Lightning Resistances" }, } }, + ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, + ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, + ["MaximumFireResistanceJewel"] = { type = "Suffix", affix = "of the Phoenix", "+(1-2)% to maximum Fire Resistance", statOrder = { 1646 }, level = 1, group = "MaximumFireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-2)% to maximum Fire Resistance" }, } }, + ["MaximumColdResistanceJewel"] = { type = "Suffix", affix = "of the Kraken", "+(1-2)% to maximum Cold Resistance", statOrder = { 1652 }, level = 1, group = "MaximumColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-2)% to maximum Cold Resistance" }, } }, + ["MaximumLightningResistanceJewel"] = { type = "Suffix", affix = "of the Leviathan", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1657 }, level = 1, group = "MaximumLightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-2)% to maximum Lightning Resistance" }, } }, + ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, tradeHashes = { [2517001139] = { "(10-14)% increased Stun Duration on Enemies" }, } }, + ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(25-35)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, tradeHashes = { [2511217560] = { "(25-35)% increased Stun and Block Recovery" }, } }, + ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(3-5)% reduced Mana Cost of Skills" }, } }, + ["ManaCostEfficiencyJewel"] = { type = "Suffix", affix = "of Efficiency", "(10-15)% increased Mana Cost Efficiency", statOrder = { 5086 }, level = 1, group = "ManaCostEfficiencyForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(10-15)% increased Mana Cost Efficiency" }, } }, + ["FasterAilmentDamageJewel"] = { type = "Prefix", affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6214 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, + ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 2247 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(10-15)% increased Area of Effect of Aura Skills" }, } }, + ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Hex Skills", statOrder = { 2248 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-10)% increased Area of Effect of Hex Skills" }, } }, + ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(6-8)% chance to Avoid being Ignited" }, } }, + ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(6-8)% chance to Avoid being Shocked" }, } }, + ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(6-8)% chance to Avoid being Frozen" }, } }, + ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1867 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(6-8)% chance to Avoid being Chilled" }, } }, + ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(6-8)% chance to Avoid being Stunned" }, } }, + ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(2-3)% chance to Freeze" }, } }, + ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(2-3)% chance to Ignite" }, } }, + ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(2-3)% chance to Shock" }, } }, + ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 2148 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(10-14)% increased Endurance Charge Duration" }, } }, + ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 2150 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(10-14)% increased Frenzy Charge Duration" }, } }, + ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 2165 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(10-14)% increased Power Charge Duration" }, } }, + ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 2018 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { }, tradeHashes = { [977908611] = { "(4-6)% chance to Knock Enemies Back on hit" }, } }, + ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+(2-3)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1185 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(2-3)% Chance to Block Attack Damage while Dual Wielding" }, } }, + ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+(2-3)% Chance to Block Attack Damage while holding a Shield", statOrder = { 1163 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+(2-3)% Chance to Block Attack Damage while holding a Shield" }, } }, + ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+(2-3)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1178 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, tradeHashes = { [1778298516] = { "+(2-3)% Chance to Block Attack Damage while wielding a Staff" }, } }, + ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+(2-3)% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1168 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, tradeHashes = { [138741818] = { "+(2-3)% Chance to Block Spell Damage while Dual Wielding" }, } }, + ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+(2-3)% Chance to Block Spell Damage while holding a Shield", statOrder = { 1164 }, level = 1, group = "ShieldSpellBlockForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, tradeHashes = { [938645499] = { "+(2-3)% Chance to Block Spell Damage while holding a Shield" }, } }, + ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+(2-3)% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1174 }, level = 1, group = "StaffSpellBlockForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, tradeHashes = { [2120297997] = { "+(2-3)% Chance to Block Spell Damage while wielding a Staff" }, } }, + ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5846 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, + ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration on Enemies" }, } }, + ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(3-5)% increased Ignite Duration on Enemies" }, } }, + ["ChillAndShockEffectOnYouJewel"] = { type = "Suffix", affix = "of Insulation", "15% reduced Effect of Chill and Shock on you", statOrder = { 10163 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced Effect of Chill and Shock on you" }, } }, + ["CurseEffectOnYouJewel"] = { type = "Suffix", affix = "of Hexwarding", "(25-30)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(25-30)% reduced Effect of Curses on you" }, } }, + ["IgniteDurationOnYouJewel"] = { type = "Suffix", affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-35)% reduced Ignite Duration on you" }, } }, + ["ChillEffectOnYouJewel"] = { type = "Suffix", affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1668 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(30-35)% reduced Effect of Chill on you" }, } }, + ["ShockEffectOnYouJewel"] = { type = "Suffix", affix = "of the Stormdweller", "(30-35)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced Effect of Shock on you" }, } }, + ["PoisonDurationOnYouJewel"] = { type = "Suffix", affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 10123 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(30-35)% reduced Poison Duration on you" }, } }, + ["BleedDurationOnYouJewel"] = { type = "Suffix", affix = "of Stemming", "(30-35)% reduced Bleed Duration on you", statOrder = { 10114 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Bleed Duration on you" }, } }, + ["ManaReservationEfficiencyJewel"] = { type = "Prefix", affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 250 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, + ["FlaskDurationJewel"] = { type = "Prefix", affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, + ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrder = { 1881, 2052 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [44571480] = { "(3-5)% chance to Freeze" }, } }, + ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrder = { 1880, 2056 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration on Enemies" }, [1538773178] = { "(3-5)% chance to Shock" }, } }, + ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrder = { 1882, 2049 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(3-5)% chance to Ignite" }, [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, + ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 3205, 3208 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(6-8)% increased Poison Duration" }, [795138349] = { "(3-5)% chance to Poison on Hit" }, } }, + ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2515, 5047 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(12-16)% increased Bleeding Duration" }, [3204820200] = { "Attacks have (3-5)% chance to cause Bleeding" }, } }, + ["ImpaleChanceForJewel_"] = { type = "Suffix", affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrder = { 3217 }, level = 1, group = "PoisonDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 500 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(16-20)% increased Damage with Poison" }, } }, + ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrder = { 3204 }, level = 1, group = "BleedDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 500 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(16-20)% increased Damage with Bleeding" }, } }, + ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(16-20)% increased Burning Damage" }, } }, + ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, + ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(6-8)% increased Energy Shield Recharge Rate" }, } }, + ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(4-6)% Chance to Block Attack Damage", statOrder = { 2937 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(4-6)% Chance to Block Attack Damage" }, } }, + ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, + ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2946 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, + ["MinionAccuracyRatingJewel"] = { type = "Suffix", affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, + ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1216 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(12-16)% increased Totem Damage" }, } }, + ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1797 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(8-12)% increased Totem Life" }, } }, + ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2821 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(6-10)% to all Elemental Resistances" }, } }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-15)% Fire Resistance" }, } }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 8024 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, } }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-15)% Cold Resistance" }, } }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-10)% chance to Avoid Cold Damage from Hits" }, } }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1392 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 8022 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-15)% Lightning Resistance" }, } }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-10)% chance to Avoid Lightning Damage from Hits" }, } }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 8026 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7983 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2258 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2258 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(34-20) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2258 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(49-35) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2258 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4627 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "(3-5)% additional Physical Damage Reduction while moving" }, } }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1289 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (6-8) to (9-11) Physical Damage" }, } }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 8028 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5107 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [511024200] = { "(1-2)% reduced Physical Damage taken over time" }, } }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-35)% to Chaos Resistance" }, } }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5812 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2266636761] = { "+(30-40)% Chaos Resistance against Damage Over Time" }, } }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 8021 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-19)% increased Chaos Damage" }, } }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6160 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(50-60)% increased Damage when on Full Life" }, } }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6160 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(100-120)% increased Damage when on Full Life" }, } }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1591, 1593 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(25-40) to maximum Life" }, } }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1591, 1593 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(2-3)% increased maximum Life" }, [3299347043] = { "+(15-25) to maximum Life" }, } }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+500 to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.3% of Life per second" }, } }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+1000 to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+(250-300) to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+500 to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+1000 to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+(250-300) to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-50)% increased Armour" }, } }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(25-50)% increased Evasion Rating" }, } }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(25-50)% increased Energy Shield" }, } }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(25-50)% increased Armour and Evasion" }, } }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(25-50)% increased Armour and Energy Shield" }, } }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(25-50)% increased Evasion and Energy Shield" }, } }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(25-50)% increased Armour, Evasion and Energy Shield" }, } }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 8062 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2016708976] = { "+(10-20)% to Quality" }, } }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1745 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6584 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(3-4)% Chance to Block Attack Damage" }, } }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9240 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [335507772] = { "+(3-5) to maximum Fortification" }, } }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9257 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(20-30)% increased Energy Shield from Equipped Body Armour" }, } }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "20% chance to Defend with 200% of Armour" }, } }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5751 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(1-2)% chance to Evade Attack Hits" }, } }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7979 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7978 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "50% chance to Avoid being Poisoned" }, } }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "50% chance to Avoid Bleeding" }, } }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(30-40)% increased Damage with Ailments" }, } }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-20)% increased Damage with Ailments" }, } }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9382 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [424026624] = { "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies" }, } }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2520 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies" }, } }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3797 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances" }, } }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-60)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-120)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-25)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(26-32)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 2003 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-39)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 2003 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-49)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(37-50)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(51-65)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 2003 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(66-79)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 2003 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-94)% increased Elemental Damage" }, } }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-30)% reduced Elemental Ailment Duration on you" }, } }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-30)% increased Elemental Damage" }, } }, + ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 576 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 576 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 235 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 573 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, tradeHashes = { [3425934849] = { "Socketed Skills have 18% increased Cast Speed" }, } }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 579 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, tradeHashes = { [1688834903] = { "Socketed Spells have 20% reduced Mana Cost" }, } }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 557 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 557 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 341 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 1 Maim" }, } }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 572 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, tradeHashes = { [2881124988] = { "Socketed Skills have 18% increased Attack Speed" }, } }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 560 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.3% of Attack Damage Leeched as Life" }, } }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8313 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8313 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently" }, } }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8325 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(50-70)% increased Mana Regeneration Rate while moving" }, } }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-4) Mana per Enemy Hit with Attacks" }, } }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1604 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1609 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(8-12)% increased Mana Recovery rate" }, } }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4574 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9552 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4865 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2204 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [1311723478] = { "Ignore all Movement Penalties from Armour" }, } }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5471 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [628032624] = { "Cannot be Chilled or Frozen while moving" }, } }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5771 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(15-20)% chance to gain Onslaught when you use a Flask" }, } }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5487 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3592330380] = { "Cannot be Shocked or Ignited while moving" }, } }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6852 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5771 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(5-10)% chance to gain Onslaught when you use a Flask" }, } }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3494 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3494 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1996 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1996 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-74)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (75-80)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-70)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1996 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (71-90)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1996 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (91-110)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (111-130)% increased Damage" }, } }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1792 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1789 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1639 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(20-25)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } }, + ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 161 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 163 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 164 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, + ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9621 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 20% reduced Souls Per Use" }, } }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9621 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 40% reduced Souls Per Use" }, } }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(5-8)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(3-5)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3141 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3139 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } }, + ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(6-8)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(6-8)% to Chaos Damage over Time Multiplier" }, } }, + ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(6-8)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(6-8)% to Cold Damage over Time Multiplier" }, } }, + ["JewelFireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Zealousness", "+(6-8)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(6-8)% to Fire Damage over Time Multiplier" }, } }, + ["JewelPhysicalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Exsanguinating", "+(6-8)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(6-8)% to Physical Damage over Time Multiplier" }, } }, + ["JewelGlobalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(4-6)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(4-6)% to Damage over Time Multiplier" }, } }, } \ No newline at end of file diff --git a/src/Data/ModJewelAbyss.lua b/src/Data/ModJewelAbyss.lua index 31a1b2e7bf..624d8e3a9e 100644 --- a/src/Data/ModJewelAbyss.lua +++ b/src/Data/ModJewelAbyss.lua @@ -2,725 +2,725 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-3)% to Chaos Resistance" }, } }, - ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1408638732] = { "1% reduced Character Size" }, } }, - ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(3-5)% reduced Chill Duration on you" }, } }, - ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(3-5)% reduced Freeze Duration on you" }, } }, - ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(3-5)% reduced Ignite Duration on you" }, } }, - ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1873 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(3-5)% reduced Shock Duration on you" }, } }, - ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(3-7)% increased Endurance, Frenzy and Power Charge Duration" }, } }, - ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } }, - ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3132 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [165218607] = { "Hits have (60-100)% increased Critical Strike Chance against you" }, } }, - ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3096 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3582580206] = { "(20-30)% increased Damage while Dead" }, } }, - ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(5-10)% increased Damage with Vaal Skills" }, } }, - ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "1% increased Chaos Damage for each Corrupted Item Equipped" }, } }, - ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3100 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3815042054] = { "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped" }, } }, - ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3102 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2679819855] = { "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped" }, } }, - ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 1, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["V2AvoidIgniteAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-25)% chance to Avoid being Ignited" }, } }, - ["V2AvoidChillAndFreezeAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(20-25)% chance to Avoid being Frozen" }, } }, - ["V2AvoidShockAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-25)% chance to Avoid being Shocked" }, } }, - ["V2AvoidPoisonAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(20-25)% chance to Avoid being Poisoned" }, } }, - ["V2AvoidBleedAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(20-25)% chance to Avoid Bleeding" }, } }, - ["V2AvoidStunAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, - ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10657 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(5-7)% increased Effect of Non-Damaging Ailments" }, } }, - ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [280731498] = { "(4-5)% increased Area of Effect" }, } }, - ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-10)% increased Global Critical Strike Chance" }, } }, - ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(4-5)% increased Damage" }, } }, - ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, - ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-5)% increased Damage" }, } }, - ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4202507508] = { "2% increased Reservation Efficiency of Skills" }, } }, - ["V2ReducedManaReservationCorruptedEfficiency_____"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [2587176568] = { "2% increased Reservation Efficiency of Skills" }, } }, - ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 60, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["V2FirePenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, - ["V2ColdPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, - ["V2LightningPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, - ["V2ElementalPenetrationAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, - ["V2ArmourPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(21-25) to maximum Life", statOrder = { 1569 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(21-25) to maximum Life" }, } }, - ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(26-30) to maximum Life", statOrder = { 1569 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(26-30) to maximum Life" }, } }, - ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(31-35) to maximum Life", statOrder = { 1569 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(31-35) to maximum Life" }, } }, - ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(36-40) to maximum Life", statOrder = { 1569 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(36-40) to maximum Life" }, } }, - ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(21-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(21-25) to maximum Mana" }, } }, - ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(26-30) to maximum Mana", statOrder = { 1579 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(26-30) to maximum Mana" }, } }, - ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(31-35) to maximum Mana", statOrder = { 1579 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(31-35) to maximum Mana" }, } }, - ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(36-40) to maximum Mana", statOrder = { 1579 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(36-40) to maximum Mana" }, } }, - ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(10-15)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(10-15)% increased Effect of Cold Ailments" }, } }, - ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(10-15)% increased Effect of Lightning Ailments", statOrder = { 7434 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(10-15)% increased Effect of Lightning Ailments" }, } }, - ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-16) to Strength" }, } }, - ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-16) to Dexterity" }, } }, - ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-16) to Intelligence" }, } }, - ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(8-10) to Strength and Dexterity" }, } }, - ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(8-10) to Strength and Intelligence" }, } }, - ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(8-10) to Dexterity and Intelligence" }, } }, - ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-8) to all Attributes" }, } }, - ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-15)% to Fire Resistance" }, } }, - ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-15)% to Cold Resistance" }, } }, - ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-15)% to Lightning Resistance" }, } }, - ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-12)% to Fire and Cold Resistances" }, } }, - ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-12)% to Fire and Lightning Resistances" }, } }, - ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-12)% to Cold and Lightning Resistances" }, } }, - ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, - ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, - ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1410 }, level = 50, group = "IncreasedAttackSpeedForJewel", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(3-5)% increased Attack Speed" }, } }, - ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1446 }, level = 50, group = "IncreasedCastSpeedForJewel", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 50, group = "CritChanceForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-12)% increased Global Critical Strike Chance" }, } }, - ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 50, group = "CritMultiplierForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(9-12)% to Global Critical Strike Multiplier" }, } }, - ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrder = { 2135 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, tradeHashes = { [214001793] = { "(10-14)% increased Damage over Time while Dual Wielding" }, } }, - ["AbyssDamageOverTimeWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while Dual Wielding", statOrder = { 2135 }, level = 60, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, tradeHashes = { [214001793] = { "(15-18)% increased Damage over Time while Dual Wielding" }, } }, - ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 900, 450 }, modTags = { "damage" }, tradeHashes = { [4193088553] = { "(10-14)% increased Damage over Time while wielding a Two Handed Weapon" }, } }, - ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 60, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 300, 150 }, modTags = { "damage" }, tradeHashes = { [4193088553] = { "(15-18)% increased Damage over Time while wielding a Two Handed Weapon" }, } }, - ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrder = { 2136 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, tradeHashes = { [1244360317] = { "(10-14)% increased Damage over Time while holding a Shield" }, } }, - ["AbyssDamageOverTimeWhileHoldingAShieldJewel2_"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while holding a Shield", statOrder = { 2136 }, level = 60, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, tradeHashes = { [1244360317] = { "(15-18)% increased Damage over Time while holding a Shield" }, } }, - ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (3-6) to (8-11) additional Fire Damage", statOrder = { 3771 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (3-6) to (8-11) additional Fire Damage" }, } }, - ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (11-14) to (17-20) additional Fire Damage", statOrder = { 3771 }, level = 39, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (11-14) to (17-20) additional Fire Damage" }, } }, - ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (15-18) to (21-24) additional Fire Damage", statOrder = { 3771 }, level = 48, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (15-18) to (21-24) additional Fire Damage" }, } }, - ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (20-23) to (26-32) additional Fire Damage", statOrder = { 3771 }, level = 58, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (20-23) to (26-32) additional Fire Damage" }, } }, - ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (24-27) to (33-36) additional Fire Damage", statOrder = { 3771 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (24-27) to (33-36) additional Fire Damage" }, } }, - ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (29-35) to (42-51) additional Fire Damage", statOrder = { 3771 }, level = 82, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (29-35) to (42-51) additional Fire Damage" }, } }, - ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (3-6) to (8-11) additional Cold Damage", statOrder = { 3770 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (3-6) to (8-11) additional Cold Damage" }, } }, - ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (11-14) to (17-20) additional Cold Damage", statOrder = { 3770 }, level = 39, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (11-14) to (17-20) additional Cold Damage" }, } }, - ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (15-18) to (21-24) additional Cold Damage", statOrder = { 3770 }, level = 48, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (15-18) to (21-24) additional Cold Damage" }, } }, - ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (20-23) to (26-32) additional Cold Damage", statOrder = { 3770 }, level = 58, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (20-23) to (26-32) additional Cold Damage" }, } }, - ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (24-27) to (33-36) additional Cold Damage", statOrder = { 3770 }, level = 70, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (24-27) to (33-36) additional Cold Damage" }, } }, - ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (29-35) to (42-51) additional Cold Damage", statOrder = { 3770 }, level = 82, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (29-35) to (42-51) additional Cold Damage" }, } }, - ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (9-15) additional Lightning Damage", statOrder = { 3772 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal 1 to (9-15) additional Lightning Damage" }, } }, - ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (26-32) additional Lightning Damage", statOrder = { 3772 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-2) to (26-32) additional Lightning Damage" }, } }, - ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (33-39) additional Lightning Damage", statOrder = { 3772 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-3) to (33-39) additional Lightning Damage" }, } }, - ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (1-4) to (44-50) additional Lightning Damage", statOrder = { 3772 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-4) to (44-50) additional Lightning Damage" }, } }, - ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (1-5) to (51-54) additional Lightning Damage", statOrder = { 3772 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-5) to (51-54) additional Lightning Damage" }, } }, - ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (1-6) to (65-77) additional Lightning Damage", statOrder = { 3772 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-6) to (65-77) additional Lightning Damage" }, } }, - ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (2-3) to (5-8) additional Physical Damage", statOrder = { 3773 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (2-3) to (5-8) additional Physical Damage" }, } }, - ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (5-8) to (11-14) additional Physical Damage", statOrder = { 3773 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (5-8) to (11-14) additional Physical Damage" }, } }, - ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (9-12) to (15-18) additional Physical Damage", statOrder = { 3773 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (9-12) to (15-18) additional Physical Damage" }, } }, - ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (14-17) to (20-23) additional Physical Damage", statOrder = { 3773 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (14-17) to (20-23) additional Physical Damage" }, } }, - ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (18-21) to (24-27) additional Physical Damage", statOrder = { 3773 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (18-21) to (24-27) additional Physical Damage" }, } }, - ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (23-26) to (33-39) additional Physical Damage", statOrder = { 3773 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (23-26) to (33-39) additional Physical Damage" }, } }, - ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (2-3) to (5-8) additional Chaos Damage", statOrder = { 3769 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (2-3) to (5-8) additional Chaos Damage" }, } }, - ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (5-8) to (11-14) additional Chaos Damage", statOrder = { 3769 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (5-8) to (11-14) additional Chaos Damage" }, } }, - ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (9-12) to (15-18) additional Chaos Damage", statOrder = { 3769 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (9-12) to (15-18) additional Chaos Damage" }, } }, - ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (14-17) to (20-23) additional Chaos Damage", statOrder = { 3769 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (14-17) to (20-23) additional Chaos Damage" }, } }, - ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (18-21) to (24-27) additional Chaos Damage", statOrder = { 3769 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (18-21) to (24-27) additional Chaos Damage" }, } }, - ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (23-26) to (33-39) additional Chaos Damage", statOrder = { 3769 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (23-26) to (33-39) additional Chaos Damage" }, } }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 1, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(2-4) to (5-7) Added Spell Fire Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 39, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(7-9) to (11-13) Added Spell Fire Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 48, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(10-12) to (14-16) Added Spell Fire Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 58, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(13-15) to (17-21) Added Spell Fire Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 70, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(16-18) to (22-24) Added Spell Fire Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 82, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(19-25) to (26-34) Added Spell Fire Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 1, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(2-4) to (5-7) Added Spell Cold Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 39, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(7-9) to (11-13) Added Spell Cold Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 48, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(10-12) to (14-16) Added Spell Cold Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 58, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(13-15) to (17-21) Added Spell Cold Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 70, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(16-18) to (22-24) Added Spell Cold Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 82, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(19-25) to (26-34) Added Spell Cold Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 1, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "1 to (6-10) Added Spell Lightning Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 39, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-2) to (17-21) Added Spell Lightning Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 48, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-3) to (22-26) Added Spell Lightning Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 58, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-4) to (29-33) Added Spell Lightning Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 70, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-5) to (34-36) Added Spell Lightning Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 82, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-6) to (43-51) Added Spell Lightning Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 1, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(1-2) to (3-5) Added Spell Physical Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 42, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(3-5) to (7-9) Added Spell Physical Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 54, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(6-8) to (10-12) Added Spell Physical Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 63, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(9-11) to (13-15) Added Spell Physical Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 72, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(12-14) to (15-17) Added Spell Physical Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 83, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(15-17) to (20-24) Added Spell Physical Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 1, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(1-2) to (3-5) Added Spell Chaos Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 42, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(3-5) to (7-9) Added Spell Chaos Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 54, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(6-8) to (10-12) Added Spell Chaos Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 65, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(9-11) to (13-15) Added Spell Chaos Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 75, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(12-14) to (15-17) Added Spell Chaos Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 84, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(15-17) to (20-24) Added Spell Chaos Damage while Dual Wielding" }, } }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 1, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(2-4) to (5-7) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 39, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(7-9) to (11-13) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 48, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(10-12) to (14-16) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 58, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(13-15) to (17-21) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 70, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(16-18) to (22-24) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 82, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(19-25) to (26-34) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 1, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(2-4) to (5-7) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 39, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(7-9) to (11-13) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 48, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(10-12) to (14-16) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 58, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(13-15) to (17-21) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 70, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(16-18) to (22-24) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 82, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(19-25) to (26-34) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 1, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "1 to (6-10) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 39, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-2) to (17-21) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 48, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-3) to (22-26) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 58, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-4) to (29-33) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 70, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-5) to (34-36) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 82, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-6) to (43-51) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 1, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(1-2) to (3-5) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 42, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(3-5) to (7-9) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 54, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(6-8) to (10-12) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 63, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(9-11) to (13-15) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 72, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(12-14) to (15-17) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 83, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(15-17) to (20-24) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 1, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(1-2) to (3-5) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 42, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(3-5) to (7-9) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 54, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(6-8) to (10-12) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 65, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(9-11) to (13-15) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 75, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(12-14) to (15-17) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 84, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(15-17) to (20-24) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 1, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(2-4) to (5-7) Added Spell Fire Damage while holding a Shield" }, } }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 39, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(7-9) to (11-13) Added Spell Fire Damage while holding a Shield" }, } }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 48, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(10-12) to (14-16) Added Spell Fire Damage while holding a Shield" }, } }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 58, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(13-15) to (17-21) Added Spell Fire Damage while holding a Shield" }, } }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 70, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(16-18) to (22-24) Added Spell Fire Damage while holding a Shield" }, } }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 82, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(19-25) to (26-34) Added Spell Fire Damage while holding a Shield" }, } }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 1, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(2-4) to (5-7) Added Spell Cold Damage while holding a Shield" }, } }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 39, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(7-9) to (11-13) Added Spell Cold Damage while holding a Shield" }, } }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 48, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(10-12) to (14-16) Added Spell Cold Damage while holding a Shield" }, } }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 58, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(13-15) to (17-21) Added Spell Cold Damage while holding a Shield" }, } }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 70, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(16-18) to (22-24) Added Spell Cold Damage while holding a Shield" }, } }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 82, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(19-25) to (26-34) Added Spell Cold Damage while holding a Shield" }, } }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 1, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "1 to (6-10) Added Spell Lightning Damage while holding a Shield" }, } }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 39, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-2) to (17-21) Added Spell Lightning Damage while holding a Shield" }, } }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 48, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-3) to (22-26) Added Spell Lightning Damage while holding a Shield" }, } }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 58, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-4) to (29-33) Added Spell Lightning Damage while holding a Shield" }, } }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 70, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-5) to (34-36) Added Spell Lightning Damage while holding a Shield" }, } }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 82, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-6) to (43-51) Added Spell Lightning Damage while holding a Shield" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 1, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(1-2) to (3-5) Added Spell Physical Damage while holding a Shield" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 42, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(3-5) to (7-9) Added Spell Physical Damage while holding a Shield" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 54, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(6-8) to (10-12) Added Spell Physical Damage while holding a Shield" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 63, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(9-11) to (13-15) Added Spell Physical Damage while holding a Shield" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 72, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(12-14) to (15-17) Added Spell Physical Damage while holding a Shield" }, } }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 83, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(15-17) to (20-24) Added Spell Physical Damage while holding a Shield" }, } }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 1, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(1-2) to (3-5) Added Spell Chaos Damage while holding a Shield" }, } }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 42, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(3-5) to (7-9) Added Spell Chaos Damage while holding a Shield" }, } }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 54, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(6-8) to (10-12) Added Spell Chaos Damage while holding a Shield" }, } }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 65, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(9-11) to (13-15) Added Spell Chaos Damage while holding a Shield" }, } }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 75, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(12-14) to (15-17) Added Spell Chaos Damage while holding a Shield" }, } }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 84, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(15-17) to (20-24) Added Spell Chaos Damage while holding a Shield" }, } }, - ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrder = { 1404 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (9-11) Fire Damage to Spells" }, } }, - ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrder = { 1404 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (9-11) to (12-14) Fire Damage to Spells" }, } }, - ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrder = { 1404 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (12-14) to (15-19) Fire Damage to Spells" }, } }, - ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrder = { 1404 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-17) to (20-23) Fire Damage to Spells" }, } }, - ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrder = { 1404 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-23) to (24-32) Fire Damage to Spells" }, } }, - ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrder = { 1405 }, level = 30, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (6-8) to (9-11) Cold Damage to Spells" }, } }, - ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrder = { 1405 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-11) to (12-14) Cold Damage to Spells" }, } }, - ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrder = { 1405 }, level = 55, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-14) to (15-19) Cold Damage to Spells" }, } }, - ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrder = { 1405 }, level = 66, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (15-17) to (20-23) Cold Damage to Spells" }, } }, - ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrder = { 1405 }, level = 77, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (19-23) to (24-32) Cold Damage to Spells" }, } }, - ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrder = { 1406 }, level = 30, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (15-19) Lightning Damage to Spells" }, } }, - ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrder = { 1406 }, level = 43, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (20-24) Lightning Damage to Spells" }, } }, - ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrder = { 1406 }, level = 55, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (25-29) Lightning Damage to Spells" }, } }, - ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrder = { 1406 }, level = 66, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-5) to (30-32) Lightning Damage to Spells" }, } }, - ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrder = { 1406 }, level = 77, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-6) to (37-45) Lightning Damage to Spells" }, } }, - ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrder = { 1403 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (3-4) to (6-7) Physical Damage to Spells" }, } }, - ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrder = { 1403 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (5-7) to (8-10) Physical Damage to Spells" }, } }, - ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrder = { 1403 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-10) to (11-13) Physical Damage to Spells" }, } }, - ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrder = { 1403 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-13) to (14-16) Physical Damage to Spells" }, } }, - ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrder = { 1403 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (14-16) to (18-22) Physical Damage to Spells" }, } }, - ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrder = { 1407 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (3-4) to (6-7) Chaos Damage to Spells" }, } }, - ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrder = { 1407 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (5-7) to (8-10) Chaos Damage to Spells" }, } }, - ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrder = { 1407 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (8-10) to (11-13) Chaos Damage to Spells" }, } }, - ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (11-13) to (14-16) Chaos Damage to Spells" }, } }, - ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrder = { 1407 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-16) to (18-22) Chaos Damage to Spells" }, } }, - ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 1, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "2 to 3 Added Physical Damage with Wand Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 42, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "3 to 4 Added Physical Damage with Wand Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 64, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "4 to (5-6) Added Physical Damage with Wand Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 77, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 150, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "(5-6) to (7-8) Added Physical Damage with Wand Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithWandsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 85, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 75, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "(7-8) to (9-10) Added Physical Damage with Wand Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 1, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "2 to 3 Added Physical Damage with Dagger Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 42, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "3 to 4 Added Physical Damage with Dagger Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 64, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "4 to (5-6) Added Physical Damage with Dagger Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 77, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "(5-6) to (7-8) Added Physical Damage with Dagger Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithDaggersJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 85, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "(7-8) to (9-10) Added Physical Damage with Dagger Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 1, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "2 to 3 Added Physical Damage with Claw Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 42, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "3 to 4 Added Physical Damage with Claw Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 64, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "4 to (5-6) Added Physical Damage with Claw Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 77, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "(5-6) to (7-8) Added Physical Damage with Claw Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithClawsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 85, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "(7-8) to (9-10) Added Physical Damage with Claw Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 1, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "2 to 3 Added Physical Damage with Sword Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 42, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "3 to 4 Added Physical Damage with Sword Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 64, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "4 to (5-6) Added Physical Damage with Sword Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 77, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "(5-6) to (7-8) Added Physical Damage with Sword Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 85, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "(7-8) to (9-10) Added Physical Damage with Sword Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 1, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "2 to 3 Added Physical Damage with Axe Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 42, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "3 to 4 Added Physical Damage with Axe Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 64, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "4 to (5-6) Added Physical Damage with Axe Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 77, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "(5-6) to (7-8) Added Physical Damage with Axe Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithAxesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 85, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "(7-8) to (9-10) Added Physical Damage with Axe Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 1, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "2 to 3 Added Physical Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 42, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "3 to 4 Added Physical Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 64, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "4 to (5-6) Added Physical Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 77, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "(5-6) to (7-8) Added Physical Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithMacesJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 85, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "(7-8) to (9-10) Added Physical Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 1, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "2 to 3 Added Physical Damage with Staff Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 42, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "3 to 4 Added Physical Damage with Staff Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 64, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "4 to (5-6) Added Physical Damage with Staff Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 77, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "(5-6) to (7-8) Added Physical Damage with Staff Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithStavesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 85, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "(7-8) to (9-10) Added Physical Damage with Staff Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "2 to 3 Added Physical Damage with Bow Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 42, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "3 to 4 Added Physical Damage with Bow Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 64, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "4 to (5-6) Added Physical Damage with Bow Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 77, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-6) to (7-8) Added Physical Damage with Bow Attacks" }, } }, - ["AbyssAddedPhysicalDamageWithBowsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 85, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(7-8) to (9-10) Added Physical Damage with Bow Attacks" }, } }, - ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 1, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "1 to (19-20) Added Lightning Damage with Wand Attacks" }, } }, - ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 37, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(1-2) to (23-24) Added Lightning Damage with Wand Attacks" }, } }, - ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 48, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(1-3) to (28-30) Added Lightning Damage with Wand Attacks" }, } }, - ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 60, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(1-4) to (33-35) Added Lightning Damage with Wand Attacks" }, } }, - ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 70, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(2-4) to (40-43) Added Lightning Damage with Wand Attacks" }, } }, - ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 82, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(2-5) to (48-50) Added Lightning Damage with Wand Attacks" }, } }, - ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 1, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "1 to (19-20) Added Lightning Damage with Dagger Attacks" }, } }, - ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 37, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(1-2) to (23-24) Added Lightning Damage with Dagger Attacks" }, } }, - ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 48, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(1-3) to (28-30) Added Lightning Damage with Dagger Attacks" }, } }, - ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 60, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(1-4) to (33-35) Added Lightning Damage with Dagger Attacks" }, } }, - ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 70, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(2-4) to (40-43) Added Lightning Damage with Dagger Attacks" }, } }, - ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 82, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(2-5) to (48-50) Added Lightning Damage with Dagger Attacks" }, } }, - ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 1, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "1 to (19-20) Added Lightning Damage with Claw Attacks" }, } }, - ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 37, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(1-2) to (23-24) Added Lightning Damage with Claw Attacks" }, } }, - ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 48, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(1-3) to (28-30) Added Lightning Damage with Claw Attacks" }, } }, - ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 60, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(1-4) to (33-35) Added Lightning Damage with Claw Attacks" }, } }, - ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 70, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(2-4) to (40-43) Added Lightning Damage with Claw Attacks" }, } }, - ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 82, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(2-5) to (48-50) Added Lightning Damage with Claw Attacks" }, } }, - ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 1, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "1 to (19-20) Added Lightning Damage with Bow Attacks" }, } }, - ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 37, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-2) to (23-24) Added Lightning Damage with Bow Attacks" }, } }, - ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 48, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-3) to (28-30) Added Lightning Damage with Bow Attacks" }, } }, - ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 60, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-4) to (33-35) Added Lightning Damage with Bow Attacks" }, } }, - ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 70, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(2-4) to (40-43) Added Lightning Damage with Bow Attacks" }, } }, - ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 82, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 625, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(2-5) to (48-50) Added Lightning Damage with Bow Attacks" }, } }, - ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 1, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "1 to (19-20) Added Lightning Damage with Sword Attacks" }, } }, - ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 37, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(1-2) to (23-24) Added Lightning Damage with Sword Attacks" }, } }, - ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 48, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(1-3) to (28-30) Added Lightning Damage with Sword Attacks" }, } }, - ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 60, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(1-4) to (33-35) Added Lightning Damage with Sword Attacks" }, } }, - ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 70, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(2-4) to (40-43) Added Lightning Damage with Sword Attacks" }, } }, - ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 82, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(2-5) to (48-50) Added Lightning Damage with Sword Attacks" }, } }, - ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 1, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "1 to (19-20) Added Lightning Damage with Axe Attacks" }, } }, - ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 37, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(1-2) to (23-24) Added Lightning Damage with Axe Attacks" }, } }, - ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 48, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(1-3) to (28-30) Added Lightning Damage with Axe Attacks" }, } }, - ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 60, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(1-4) to (33-35) Added Lightning Damage with Axe Attacks" }, } }, - ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 70, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(2-4) to (40-43) Added Lightning Damage with Axe Attacks" }, } }, - ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 82, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(2-5) to (48-50) Added Lightning Damage with Axe Attacks" }, } }, - ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 1, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "1 to (19-20) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 37, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(1-2) to (23-24) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 48, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(1-3) to (28-30) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 60, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(1-4) to (33-35) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 70, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(2-4) to (40-43) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 82, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(2-5) to (48-50) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 1, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "1 to (19-20) Added Lightning Damage with Staff Attacks" }, } }, - ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 37, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(1-2) to (23-24) Added Lightning Damage with Staff Attacks" }, } }, - ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 48, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(1-3) to (28-30) Added Lightning Damage with Staff Attacks" }, } }, - ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 60, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(1-4) to (33-35) Added Lightning Damage with Staff Attacks" }, } }, - ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 70, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(2-4) to (40-43) Added Lightning Damage with Staff Attacks" }, } }, - ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 82, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(2-5) to (48-50) Added Lightning Damage with Staff Attacks" }, } }, - ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 1, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(5-6) to (11-12) Added Fire Damage with Wand Attacks" }, } }, - ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 40, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(7-8) to (13-15) Added Fire Damage with Wand Attacks" }, } }, - ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 51, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(9-11) to (16-19) Added Fire Damage with Wand Attacks" }, } }, - ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 62, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(12-13) to (20-22) Added Fire Damage with Wand Attacks" }, } }, - ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 72, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(14-15) to (23-26) Added Fire Damage with Wand Attacks" }, } }, - ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 84, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(16-18) to (27-32) Added Fire Damage with Wand Attacks" }, } }, - ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 1, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(5-6) to (11-12) Added Fire Damage with Dagger Attacks" }, } }, - ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 40, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(7-8) to (13-15) Added Fire Damage with Dagger Attacks" }, } }, - ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 51, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(9-11) to (16-19) Added Fire Damage with Dagger Attacks" }, } }, - ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 62, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(12-13) to (20-22) Added Fire Damage with Dagger Attacks" }, } }, - ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 72, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(14-15) to (23-26) Added Fire Damage with Dagger Attacks" }, } }, - ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 84, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(16-18) to (27-32) Added Fire Damage with Dagger Attacks" }, } }, - ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 1, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(5-6) to (11-12) Added Fire Damage with Claw Attacks" }, } }, - ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 40, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(7-8) to (13-15) Added Fire Damage with Claw Attacks" }, } }, - ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 51, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(9-11) to (16-19) Added Fire Damage with Claw Attacks" }, } }, - ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 62, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(12-13) to (20-22) Added Fire Damage with Claw Attacks" }, } }, - ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 72, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(14-15) to (23-26) Added Fire Damage with Claw Attacks" }, } }, - ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 84, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(16-18) to (27-32) Added Fire Damage with Claw Attacks" }, } }, - ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 1, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(5-6) to (11-12) Added Fire Damage with Bow Attacks" }, } }, - ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 40, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(7-8) to (13-15) Added Fire Damage with Bow Attacks" }, } }, - ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 51, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(9-11) to (16-19) Added Fire Damage with Bow Attacks" }, } }, - ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 62, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(12-13) to (20-22) Added Fire Damage with Bow Attacks" }, } }, - ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 72, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(14-15) to (23-26) Added Fire Damage with Bow Attacks" }, } }, - ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 84, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(16-18) to (27-32) Added Fire Damage with Bow Attacks" }, } }, - ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 1, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(5-6) to (11-12) Added Fire Damage with Sword Attacks" }, } }, - ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 40, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(7-8) to (13-15) Added Fire Damage with Sword Attacks" }, } }, - ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 51, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(9-11) to (16-19) Added Fire Damage with Sword Attacks" }, } }, - ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 62, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(12-13) to (20-22) Added Fire Damage with Sword Attacks" }, } }, - ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 72, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(14-15) to (23-26) Added Fire Damage with Sword Attacks" }, } }, - ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 84, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(16-18) to (27-32) Added Fire Damage with Sword Attacks" }, } }, - ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 1, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(5-6) to (11-12) Added Fire Damage with Axe Attacks" }, } }, - ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 40, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(7-8) to (13-15) Added Fire Damage with Axe Attacks" }, } }, - ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 51, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(9-11) to (16-19) Added Fire Damage with Axe Attacks" }, } }, - ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 62, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(12-13) to (20-22) Added Fire Damage with Axe Attacks" }, } }, - ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 72, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(14-15) to (23-26) Added Fire Damage with Axe Attacks" }, } }, - ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 84, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(16-18) to (27-32) Added Fire Damage with Axe Attacks" }, } }, - ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 1, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(5-6) to (11-12) Added Fire Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 40, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(7-8) to (13-15) Added Fire Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 51, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(9-11) to (16-19) Added Fire Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 62, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(12-13) to (20-22) Added Fire Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 72, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(14-15) to (23-26) Added Fire Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 84, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(16-18) to (27-32) Added Fire Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 1, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(5-6) to (11-12) Added Fire Damage with Staff Attacks" }, } }, - ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 40, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(7-8) to (13-15) Added Fire Damage with Staff Attacks" }, } }, - ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 51, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(9-11) to (16-19) Added Fire Damage with Staff Attacks" }, } }, - ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 62, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(12-13) to (20-22) Added Fire Damage with Staff Attacks" }, } }, - ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 72, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(14-15) to (23-26) Added Fire Damage with Staff Attacks" }, } }, - ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 84, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(16-18) to (27-32) Added Fire Damage with Staff Attacks" }, } }, - ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 1, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(4-5) to (9-10) Added Cold Damage with Wand Attacks" }, } }, - ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 38, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(6-7) to (11-13) Added Cold Damage with Wand Attacks" }, } }, - ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 47, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(8-9) to (14-16) Added Cold Damage with Wand Attacks" }, } }, - ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 59, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(10-11) to (17-20) Added Cold Damage with Wand Attacks" }, } }, - ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 68, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(12-13) to (21-24) Added Cold Damage with Wand Attacks" }, } }, - ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 83, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(14-15) to (25-28) Added Cold Damage with Wand Attacks" }, } }, - ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 1, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(4-5) to (9-10) Added Cold Damage with Dagger Attacks" }, } }, - ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 38, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(6-7) to (11-13) Added Cold Damage with Dagger Attacks" }, } }, - ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 47, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(8-9) to (14-16) Added Cold Damage with Dagger Attacks" }, } }, - ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 59, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(10-11) to (17-20) Added Cold Damage with Dagger Attacks" }, } }, - ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 68, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(12-13) to (21-24) Added Cold Damage with Dagger Attacks" }, } }, - ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 83, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(14-15) to (25-28) Added Cold Damage with Dagger Attacks" }, } }, - ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 1, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(4-5) to (9-10) Added Cold Damage with Claw Attacks" }, } }, - ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 38, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(6-7) to (11-13) Added Cold Damage with Claw Attacks" }, } }, - ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 47, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(8-9) to (14-16) Added Cold Damage with Claw Attacks" }, } }, - ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 59, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(10-11) to (17-20) Added Cold Damage with Claw Attacks" }, } }, - ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 68, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(12-13) to (21-24) Added Cold Damage with Claw Attacks" }, } }, - ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 83, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(14-15) to (25-28) Added Cold Damage with Claw Attacks" }, } }, - ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 1, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(4-5) to (9-10) Added Cold Damage with Bow Attacks" }, } }, - ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 38, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(6-7) to (11-13) Added Cold Damage with Bow Attacks" }, } }, - ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 47, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(8-9) to (14-16) Added Cold Damage with Bow Attacks" }, } }, - ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 59, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(10-11) to (17-20) Added Cold Damage with Bow Attacks" }, } }, - ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 68, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(12-13) to (21-24) Added Cold Damage with Bow Attacks" }, } }, - ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 83, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(14-15) to (25-28) Added Cold Damage with Bow Attacks" }, } }, - ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 1, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(4-5) to (9-10) Added Cold Damage with Sword Attacks" }, } }, - ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 38, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(6-7) to (11-13) Added Cold Damage with Sword Attacks" }, } }, - ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 47, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(8-9) to (14-16) Added Cold Damage with Sword Attacks" }, } }, - ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 59, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(10-11) to (17-20) Added Cold Damage with Sword Attacks" }, } }, - ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 68, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(12-13) to (21-24) Added Cold Damage with Sword Attacks" }, } }, - ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 83, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(14-15) to (25-28) Added Cold Damage with Sword Attacks" }, } }, - ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 1, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(4-5) to (9-10) Added Cold Damage with Axe Attacks" }, } }, - ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 38, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(6-7) to (11-13) Added Cold Damage with Axe Attacks" }, } }, - ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 47, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(8-9) to (14-16) Added Cold Damage with Axe Attacks" }, } }, - ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 59, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(10-11) to (17-20) Added Cold Damage with Axe Attacks" }, } }, - ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 68, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(12-13) to (21-24) Added Cold Damage with Axe Attacks" }, } }, - ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 83, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(14-15) to (25-28) Added Cold Damage with Axe Attacks" }, } }, - ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 1, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(4-5) to (9-10) Added Cold Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 38, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(6-7) to (11-13) Added Cold Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 47, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(8-9) to (14-16) Added Cold Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 59, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(10-11) to (17-20) Added Cold Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 68, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(12-13) to (21-24) Added Cold Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 83, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(14-15) to (25-28) Added Cold Damage with Mace or Sceptre Attacks" }, } }, - ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 1, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(4-5) to (9-10) Added Cold Damage with Staff Attacks" }, } }, - ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 38, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(6-7) to (11-13) Added Cold Damage with Staff Attacks" }, } }, - ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 47, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(8-9) to (14-16) Added Cold Damage with Staff Attacks" }, } }, - ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 59, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(10-11) to (17-20) Added Cold Damage with Staff Attacks" }, } }, - ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 68, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(12-13) to (21-24) Added Cold Damage with Staff Attacks" }, } }, - ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 83, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(14-15) to (25-28) Added Cold Damage with Staff Attacks" }, } }, - ["AbyssAddedChaosDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 1, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(4-5) to (9-10) Added Chaos Damage with Dagger Attacks" }, } }, - ["AbyssAddedChaosDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 42, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(6-7) to (11-13) Added Chaos Damage with Dagger Attacks" }, } }, - ["AbyssAddedChaosDamageWithDaggersJewel3__"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 64, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(8-9) to (14-16) Added Chaos Damage with Dagger Attacks" }, } }, - ["AbyssAddedChaosDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 77, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(10-11) to (17-20) Added Chaos Damage with Dagger Attacks" }, } }, - ["AbyssAddedChaosDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 85, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(12-13) to (21-24) Added Chaos Damage with Dagger Attacks" }, } }, - ["AbyssAddedChaosDamageWithBowsJewel1_"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 1, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(4-5) to (9-10) Added Chaos Damage with Bow Attacks" }, } }, - ["AbyssAddedChaosDamageWithBowsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 42, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(6-7) to (11-13) Added Chaos Damage with Bow Attacks" }, } }, - ["AbyssAddedChaosDamageWithBowsJewel3"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 64, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(8-9) to (14-16) Added Chaos Damage with Bow Attacks" }, } }, - ["AbyssAddedChaosDamageWithBowsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 77, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(10-11) to (17-20) Added Chaos Damage with Bow Attacks" }, } }, - ["AbyssAddedChaosDamageWithBowsJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 85, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(12-13) to (21-24) Added Chaos Damage with Bow Attacks" }, } }, - ["AbyssAddedChaosDamageWithClawsJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 1, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(4-5) to (9-10) Added Chaos Damage with Claw Attacks" }, } }, - ["AbyssAddedChaosDamageWithClawsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 42, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(6-7) to (11-13) Added Chaos Damage with Claw Attacks" }, } }, - ["AbyssAddedChaosDamageWithClawsJewel3_"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 64, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(8-9) to (14-16) Added Chaos Damage with Claw Attacks" }, } }, - ["AbyssAddedChaosDamageWithClawsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 77, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(10-11) to (17-20) Added Chaos Damage with Claw Attacks" }, } }, - ["AbyssAddedChaosDamageWithClawsJewel5_"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 85, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(12-13) to (21-24) Added Chaos Damage with Claw Attacks" }, } }, - ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (4-5) to (10-12) Fire Damage to Attacks", statOrder = { 1360 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (4-5) to (10-12) Fire Damage to Attacks" }, } }, - ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (6-7) to (13-16) Fire Damage to Attacks", statOrder = { 1360 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-7) to (13-16) Fire Damage to Attacks" }, } }, - ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (8-9) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-9) to (17-20) Fire Damage to Attacks" }, } }, - ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (10-12) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (10-12) to (21-24) Fire Damage to Attacks" }, } }, - ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (13-15) to (25-28) Fire Damage to Attacks", statOrder = { 1360 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-15) to (25-28) Fire Damage to Attacks" }, } }, - ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (4-5) to (8-10) Cold Damage to Attacks", statOrder = { 1369 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (4-5) to (8-10) Cold Damage to Attacks" }, } }, - ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1369 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-13) Cold Damage to Attacks" }, } }, - ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (8-9) to (14-17) Cold Damage to Attacks", statOrder = { 1369 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-9) to (14-17) Cold Damage to Attacks" }, } }, - ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (10-11) to (18-21) Cold Damage to Attacks", statOrder = { 1369 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-11) to (18-21) Cold Damage to Attacks" }, } }, - ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (12-13) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-13) to (22-26) Cold Damage to Attacks" }, } }, - ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds 1 to (19-20) Lightning Damage to Attacks", statOrder = { 1380 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (19-20) Lightning Damage to Attacks" }, } }, - ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-2) to (25-27) Lightning Damage to Attacks", statOrder = { 1380 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (25-27) Lightning Damage to Attacks" }, } }, - ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, } }, - ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-4) to (36-39) Lightning Damage to Attacks", statOrder = { 1380 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (36-39) Lightning Damage to Attacks" }, } }, - ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (1-4) to (43-48) Lightning Damage to Attacks", statOrder = { 1380 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (43-48) Lightning Damage to Attacks" }, } }, - ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 1266 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 3 Physical Damage to Attacks" }, } }, - ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1266 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-5) Physical Damage to Attacks" }, } }, - ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (6-7) Physical Damage to Attacks", statOrder = { 1266 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (6-7) Physical Damage to Attacks" }, } }, - ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds (6-7) to (11-13) Chaos Damage to Attacks", statOrder = { 1387 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-7) to (11-13) Chaos Damage to Attacks" }, } }, - ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (8-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (8-9) to (14-17) Chaos Damage to Attacks" }, } }, - ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (10-11) to (18-21) Chaos Damage to Attacks", statOrder = { 1387 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (10-11) to (18-21) Chaos Damage to Attacks" }, } }, - ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (22-30) Life per second", statOrder = { 9315 }, level = 1, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3062329212] = { "Minions Regenerate (22-30) Life per second" }, } }, - ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (32-40) Life per second", statOrder = { 9315 }, level = 30, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3062329212] = { "Minions Regenerate (32-40) Life per second" }, } }, - ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (42-60) Life per second", statOrder = { 9315 }, level = 60, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3062329212] = { "Minions Regenerate (42-60) Life per second" }, } }, - ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "Regenerate (9-12) Energy Shield per second", statOrder = { 6462 }, level = 1, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2561836520] = { "Regenerate (9-12) Energy Shield per second" }, } }, - ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "Regenerate (13-16) Energy Shield per second", statOrder = { 6462 }, level = 30, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2561836520] = { "Regenerate (13-16) Energy Shield per second" }, } }, - ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "Regenerate (17-20) Energy Shield per second", statOrder = { 6462 }, level = 60, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2561836520] = { "Regenerate (17-20) Energy Shield per second" }, } }, - ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "Regenerate (9-12) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (9-12) Life per second" }, } }, - ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "Regenerate (13-16) Life per second", statOrder = { 1574 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (13-16) Life per second" }, } }, - ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "Regenerate (17-20) Life per second", statOrder = { 1574 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (17-20) Life per second" }, } }, - ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "Regenerate (1.1-2) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (1.1-2) Mana per second" }, } }, - ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "Regenerate (2.1-3) Mana per second", statOrder = { 1582 }, level = 40, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (2.1-3) Mana per second" }, } }, - ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "Regenerate (3.3-4) Mana per second", statOrder = { 1582 }, level = 75, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3.3-4) Mana per second" }, } }, - ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 32, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-4)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 65, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 32, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(3-5)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 65, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(6-8)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 32, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(3-5)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 65, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(6-8)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 32, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2431643207] = { "Minions have (3-4)% chance to Blind on Hit with Attacks" }, } }, - ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrder = { 9277 }, level = 65, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2431643207] = { "Minions have (5-6)% chance to Blind on Hit with Attacks" }, } }, - ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 32, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (3-5)% chance to Taunt on Hit with Attacks" }, } }, - ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 65, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (6-8)% chance to Taunt on Hit with Attacks" }, } }, - ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 32, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [2323739383] = { "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9335 }, level = 65, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [2323739383] = { "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["AbyssMinionPoisonOnHitChanceJewel1"] = { type = "Suffix", affix = "of Venom", "Minions have (10-15)% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 60, group = "AbyssMinionPoisonOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have (10-15)% chance to Poison Enemies on Hit" }, } }, - ["AbyssMinionIgniteOnHitChanceJewel1"] = { type = "Suffix", affix = "of Combustion", "Minions have (10-15)% chance to Ignite", statOrder = { 9285 }, level = 60, group = "AbyssMinionIgniteOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "minion", "ailment" }, tradeHashes = { [3945908658] = { "Minions have (10-15)% chance to Ignite" }, } }, - ["AbyssMinionAttacksBleedOnHitChanceJewel1"] = { type = "Suffix", affix = "of Bloodletting", "Minions have (10-15)% chance to cause Bleeding with Attacks", statOrder = { 2490 }, level = 60, group = "AbyssMinionAttacksBleedOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "bleed", "physical", "minion", "ailment" }, tradeHashes = { [3998967779] = { "Minions have (10-15)% chance to cause Bleeding with Attacks" }, } }, - ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6069 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "damage" }, tradeHashes = { [3257279374] = { "(30-40)% increased Damage with Hits and Ailments against Abyssal Monsters" }, } }, - ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 9297 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1086057912] = { "Minions deal (30-40)% increased Damage with Hits and Ailments against Abyssal Monsters" }, } }, - ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4578 }, level = 1, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical" }, tradeHashes = { [287491423] = { "(4-6)% additional Physical Damage Reduction against Abyssal Monsters" }, } }, - ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Nonflammability", "(31-40)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 50, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(31-40)% chance to Avoid being Ignited" }, } }, - ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Fireproofing", "(41-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 70, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(41-50)% chance to Avoid being Ignited" }, } }, - ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(31-40)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 50, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(31-40)% chance to Avoid being Frozen" }, } }, - ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Heating", "(41-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 70, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(41-50)% chance to Avoid being Frozen" }, } }, - ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(31-40)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 50, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(31-40)% chance to Avoid being Shocked" }, } }, - ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of the Lightning Rod", "(41-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 70, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(41-50)% chance to Avoid being Shocked" }, } }, - ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(31-40)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(31-40)% chance to Avoid being Poisoned" }, } }, - ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Immunity", "(41-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 70, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(41-50)% chance to Avoid being Poisoned" }, } }, - ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Stemming", "(31-40)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(31-40)% chance to Avoid Bleeding" }, } }, - ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of the Tourniquet", "(41-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 70, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(41-50)% chance to Avoid Bleeding" }, } }, - ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Balance", "(21-24)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 50, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, tradeHashes = { [4262448838] = { "(21-24)% chance to Avoid being Stunned" }, } }, - ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Poise", "(25-30)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 70, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150 }, modTags = { }, tradeHashes = { [4262448838] = { "(25-30)% chance to Avoid being Stunned" }, } }, - ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(10-30) to Accuracy Rating" }, } }, - ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(31-60) to Accuracy Rating" }, } }, - ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrder = { 1433 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-120) to Accuracy Rating" }, } }, - ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrder = { 1433 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(121-240) to Accuracy Rating" }, } }, - ["AbyssAccuracyRatingJewel5"] = { type = "Suffix", affix = "of the Deadeye", "+(241-300) to Accuracy Rating", statOrder = { 1433 }, level = 85, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 250, 500, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(241-300) to Accuracy Rating" }, } }, - ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } }, - ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (0.4-0.8)% of Life per second" }, } }, - ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrder = { 2910 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech (0.3-0.5)% of Damage as Life" }, } }, - ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (6-10)% increased Movement Speed" }, } }, - ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLifeForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, - ["AbyssFlatMinionAccuracy1"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(95-125) to Accuracy Rating", statOrder = { 9264 }, level = 1, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(95-125) to Accuracy Rating" }, } }, - ["AbyssFlatMinionAccuracy2_"] = { type = "Suffix", affix = "of Instruction", "Minions have +(126-180) to Accuracy Rating", statOrder = { 9264 }, level = 52, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(126-180) to Accuracy Rating" }, } }, - ["AbyssFlatMinionAccuracy3"] = { type = "Suffix", affix = "of Command", "Minions have +(181-250) to Accuracy Rating", statOrder = { 9264 }, level = 78, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(181-250) to Accuracy Rating" }, } }, - ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(6-10)% to all Elemental Resistances" }, } }, - ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-11)% to Chaos Resistance" }, } }, - ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(36-60) to Armour" }, } }, - ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrder = { 1539 }, level = 40, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(61-100) to Armour" }, } }, - ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrder = { 1539 }, level = 75, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(101-180) to Armour" }, } }, - ["AbyssFlatArmourJewel4__"] = { type = "Prefix", affix = "Encased", "+(181-250) to Armour", statOrder = { 1539 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(181-250) to Armour" }, } }, - ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(36-60) to Evasion Rating" }, } }, - ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrder = { 1544 }, level = 40, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(61-100) to Evasion Rating" }, } }, - ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrder = { 1544 }, level = 75, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(101-180) to Evasion Rating" }, } }, - ["AbyssFlatEvasionJewel4_"] = { type = "Prefix", affix = "Beclouded", "+(181-250) to Evasion Rating", statOrder = { 1544 }, level = 83, group = "EvasionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(181-250) to Evasion Rating" }, } }, - ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(21-25) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(21-25) to maximum Energy Shield" }, } }, - ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(26-30) to maximum Energy Shield", statOrder = { 1558 }, level = 40, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(26-30) to maximum Energy Shield" }, } }, - ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(31-35) to maximum Energy Shield", statOrder = { 1558 }, level = 75, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(31-35) to maximum Energy Shield" }, } }, - ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(36-40) to maximum Energy Shield", statOrder = { 1558 }, level = 83, group = "EnergyShield", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(36-40) to maximum Energy Shield" }, } }, - ["AbyssCurseEffectJewel1"] = { type = "Prefix", affix = "Murmuring", "2% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "2% increased Effect of your Curses" }, } }, - ["AbyssCurseEffectJewel2"] = { type = "Prefix", affix = "Foul-tongued", "3% increased Effect of your Curses", statOrder = { 2596 }, level = 86, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "3% increased Effect of your Curses" }, } }, - ["AbyssCooldownRecoverySpeed1_"] = { type = "Prefix", affix = "Facilitating", "2% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "2% increased Cooldown Recovery Rate" }, } }, - ["AbyssCooldownRecoverySpeed2__"] = { type = "Prefix", affix = "Expediting", "3% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 86, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "3% increased Cooldown Recovery Rate" }, } }, - ["AbyssImpaleEffect1_"] = { type = "Prefix", affix = "Skewering", "(3-4)% increased Impale Effect", statOrder = { 7243 }, level = 75, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(3-4)% increased Impale Effect" }, } }, - ["AbyssImpaleEffect2_"] = { type = "Prefix", affix = "Lancing", "(5-6)% increased Impale Effect", statOrder = { 7243 }, level = 86, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(5-6)% increased Impale Effect" }, } }, - ["AbyssDamageRecoupedAsMana1"] = { type = "Prefix", affix = "Spurring", "2% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 75, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "2% of Damage taken Recouped as Mana" }, } }, - ["AbyssDamageRecoupedAsMana2"] = { type = "Prefix", affix = "Motivating", "3% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 86, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "3% of Damage taken Recouped as Mana" }, } }, - ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "block" }, tradeHashes = { [1101206134] = { "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, - ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrder = { 4574 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "physical" }, tradeHashes = { [3603666270] = { "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently" }, } }, - ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrder = { 9422 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "speed" }, tradeHashes = { [3854949926] = { "(3-4)% increased Movement Speed if you haven't taken Damage Recently" }, } }, - ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrder = { 6042 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "damage" }, tradeHashes = { [1072119541] = { "(15-20)% increased Damage if you've Killed Recently" }, } }, - ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5957 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [2937483991] = { "+(8-14)% to Critical Strike Multiplier if you've Killed Recently" }, } }, - ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrder = { 4768 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2424133568] = { "(20-30)% increased Armour if you haven't Killed Recently" }, } }, - ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrder = { 4520 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [2806435316] = { "(20-30)% increased Accuracy Rating if you haven't Killed Recently" }, } }, - ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently", statOrder = { 6032 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [455556407] = { "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently" }, } }, - ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrder = { 5469 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3110907148] = { "(7-10)% increased Cast Speed if a Minion has been Killed Recently" }, } }, - ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently", statOrder = { 1974 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [412745376] = { "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently" }, } }, - ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrder = { 6499 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [734823525] = { "(25-35)% increased Evasion Rating while moving" }, } }, - ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrder = { 8212 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-25)% increased Mana Regeneration Rate while moving" }, } }, - ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "Regenerate (0.5-1)% of Life per second while moving", statOrder = { 7425 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [908516597] = { "Regenerate (0.5-1)% of Life per second while moving" }, } }, - ["AbyssPhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of the Inferno", "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9634 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 150, 150, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2810434465] = { "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently" }, } }, - ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4897 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently" }, } }, - ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5468 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1174076861] = { "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently" }, } }, - ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5927 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "critical" }, tradeHashes = { [2856328513] = { "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } }, - ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrder = { 9271 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [4227567885] = { "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently" }, } }, - ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "block" }, tradeHashes = { [1101206134] = { "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, - ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 0, 0 }, modTags = { "speed" }, tradeHashes = { [279227559] = { "(2-4)% increased Movement Speed if you've Killed Recently" }, } }, - ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "block" }, tradeHashes = { [852195286] = { "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } }, - ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(3-5)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(6-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(3-5)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(6-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3083 }, level = 60, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3166317791] = { "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill" }, } }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3083 }, level = 84, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3166317791] = { "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill" }, } }, - ["AbyssSelfCurseEffectOnConsecratedGroundJewel1__"] = { type = "Suffix", affix = "of the Sanctum", "(10-15)% reduced Effect of Curses on you while on Consecrated Ground", statOrder = { 5996 }, level = 84, group = "EnchantmentConsecratedGround", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3444629796] = { "(10-15)% reduced Effect of Curses on you while on Consecrated Ground" }, } }, - ["AbyssAvoidElementalAilmentsWhileElusiveJewel1"] = { type = "Suffix", affix = "of Escape", "(8-10)% chance to Avoid Elemental Ailments while you have Elusive", statOrder = { 4941 }, level = 84, group = "EnchantmentElusive", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 500, 100, 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2662268382] = { "(8-10)% chance to Avoid Elemental Ailments while you have Elusive" }, } }, - ["AbyssHinderedEnemiesLifeRegenerationRateJewel1"] = { type = "Suffix", affix = "of Enervation", "Enemies Hindered by you have (15-20)% reduced Life Regeneration rate", statOrder = { 6411 }, level = 84, group = "EnchantmentHinder", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3709502856] = { "Enemies Hindered by you have (15-20)% reduced Life Regeneration rate" }, } }, - ["AbyssBlindedEnemiesCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Clouding", "Enemies Blinded by you have (15-20)% reduced Critical Strike Chance", statOrder = { 6405 }, level = 84, group = "EnchantmentBlind", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have (15-20)% reduced Critical Strike Chance" }, } }, - ["AbyssWitheredEnemiesAllResistanceJewel1___"] = { type = "Suffix", affix = "of Languishing", "Enemies Withered by you have -2% to all Resistances", statOrder = { 6417 }, level = 84, group = "EnchantmentWither", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "damage" }, tradeHashes = { [1032614900] = { "Enemies Withered by you have -2% to all Resistances" }, } }, - ["AbyssMaimedEnemiesDamageOverTimeJewel1"] = { type = "Suffix", affix = "of Mangling", "Enemies Maimed by you take (4-5)% increased Damage Over Time", statOrder = { 6415 }, level = 84, group = "EnchantmentMaim", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "damage" }, tradeHashes = { [2745149002] = { "Enemies Maimed by you take (4-5)% increased Damage Over Time" }, } }, - ["AbyssIntimidatedEnemiesStunDurationJewel1"] = { type = "Suffix", affix = "of Daunting", "Enemies Intimidated by you have (10-15)% increased duration of stuns against them", statOrder = { 6414 }, level = 84, group = "EnchantmentIntimidate", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 100, 100, 0 }, modTags = { }, tradeHashes = { [1919892065] = { "Enemies Intimidated by you have (10-15)% increased duration of stuns against them" }, } }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-15)% Fire Resistance" }, } }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7915 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, } }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-15)% Cold Resistance" }, } }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-10)% chance to Avoid Cold Damage from Hits" }, } }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7913 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-15)% Lightning Resistance" }, } }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-10)% chance to Avoid Lightning Damage from Hits" }, } }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7917 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(34-20) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2235 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(49-35) Physical Damage taken from Hits" }, } }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "(3-5)% additional Physical Damage Reduction while moving" }, } }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (6-8) to (9-11) Physical Damage" }, } }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7919 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5041 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [511024200] = { "(1-2)% reduced Physical Damage taken over time" }, } }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-35)% to Chaos Resistance" }, } }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2266636761] = { "+(30-40)% Chaos Resistance against Damage Over Time" }, } }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7912 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-19)% increased Chaos Damage" }, } }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(50-60)% increased Damage when on Full Life" }, } }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(100-120)% increased Damage when on Full Life" }, } }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(25-40) to maximum Life" }, } }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(2-3)% increased maximum Life" }, [3299347043] = { "+(15-25) to maximum Life" }, } }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+500 to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.3% of Life per second" }, } }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+1000 to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9653 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+(250-300) to Armour if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+500 to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+1000 to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6490 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+(250-300) to Evasion Rating if Hit an Enemy Recently" }, } }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6459 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-50)% increased Armour" }, } }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(25-50)% increased Evasion Rating" }, } }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(25-50)% increased Energy Shield" }, } }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(25-50)% increased Armour and Evasion" }, } }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(25-50)% increased Armour and Energy Shield" }, } }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(25-50)% increased Evasion and Energy Shield" }, } }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(25-50)% increased Armour, Evasion and Energy Shield" }, } }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7951 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2016708976] = { "+(10-20)% to Quality" }, } }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6497 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(3-4)% Chance to Block Attack Damage" }, } }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9118 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [335507772] = { "+(3-5) to maximum Fortification" }, } }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9134 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(20-30)% increased Energy Shield from Equipped Body Armour" }, } }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "20% chance to Defend with 200% of Armour" }, } }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(1-2)% chance to Evade Attack Hits" }, } }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7872 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "50% chance to Avoid being Poisoned" }, } }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "50% chance to Avoid Bleeding" }, } }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(30-40)% increased Damage with Ailments" }, } }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-20)% increased Damage with Ailments" }, } }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9251 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [424026624] = { "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies" }, } }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies" }, } }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances" }, } }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-60)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-120)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-25)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(26-32)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-39)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-49)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(37-50)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(51-65)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(66-79)% increased Elemental Damage" }, } }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-94)% increased Elemental Damage" }, } }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-30)% reduced Elemental Ailment Duration on you" }, } }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-30)% increased Elemental Damage" }, } }, - ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 562 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, tradeHashes = { [3425934849] = { "Socketed Skills have 18% increased Cast Speed" }, } }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 568 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, tradeHashes = { [1688834903] = { "Socketed Spells have 20% reduced Mana Cost" }, } }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 331 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 1 Maim" }, } }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 561 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, tradeHashes = { [2881124988] = { "Socketed Skills have 18% increased Attack Speed" }, } }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.3% of Attack Damage Leeched as Life" }, } }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8200 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently" }, } }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8200 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently" }, } }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8212 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(50-70)% increased Mana Regeneration Rate while moving" }, } }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-4) Mana per Enemy Hit with Attacks" }, } }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(8-12)% increased Mana Recovery rate" }, } }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9419 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2181 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [1311723478] = { "Ignore all Movement Penalties from Armour" }, } }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5396 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [628032624] = { "Cannot be Chilled or Frozen while moving" }, } }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(15-20)% chance to gain Onslaught when you use a Flask" }, } }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5412 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3592330380] = { "Cannot be Shocked or Ignited while moving" }, } }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6761 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(5-10)% chance to gain Onslaught when you use a Flask" }, } }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-74)% increased Damage" }, } }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (75-80)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-70)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (71-90)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (91-110)% increased Damage" }, } }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (111-130)% increased Damage" }, } }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(20-25)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, - ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } }, - ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, - ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9487 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 20% reduced Souls Per Use" }, } }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9487 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 40% reduced Souls Per Use" }, } }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(5-8)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(3-5)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } }, + ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-3)% to Chaos Resistance" }, } }, + ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1408638732] = { "1% reduced Character Size" }, } }, + ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1895 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(3-5)% reduced Chill Duration on you" }, } }, + ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(3-5)% reduced Freeze Duration on you" }, } }, + ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(3-5)% reduced Ignite Duration on you" }, } }, + ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1896 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(3-5)% reduced Shock Duration on you" }, } }, + ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(3-7)% increased Endurance, Frenzy and Power Charge Duration" }, } }, + ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } }, + ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3166 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [165218607] = { "Hits have (60-100)% increased Critical Strike Chance against you" }, } }, + ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3130 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3582580206] = { "(20-30)% increased Damage while Dead" }, } }, + ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(5-10)% increased Damage with Vaal Skills" }, } }, + ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3133 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "1% increased Chaos Damage for each Corrupted Item Equipped" }, } }, + ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3134 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3815042054] = { "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped" }, } }, + ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3136 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2679819855] = { "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped" }, } }, + ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3128 }, level = 1, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, + ["V2AvoidIgniteAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-25)% chance to Avoid being Ignited" }, } }, + ["V2AvoidChillAndFreezeAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(20-25)% chance to Avoid being Frozen" }, } }, + ["V2AvoidShockAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-25)% chance to Avoid being Shocked" }, } }, + ["V2AvoidPoisonAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(20-25)% chance to Avoid being Poisoned" }, } }, + ["V2AvoidBleedAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(20-25)% chance to Avoid Bleeding" }, } }, + ["V2AvoidStunAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, + ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5483 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10813 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(5-7)% increased Effect of Non-Damaging Ailments" }, } }, + ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [280731498] = { "(4-5)% increased Area of Effect" }, } }, + ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-10)% increased Global Critical Strike Chance" }, } }, + ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1214 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(4-5)% increased Damage" }, } }, + ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4997 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, + ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-5)% increased Damage" }, } }, + ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2256 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4202507508] = { "2% increased Reservation Efficiency of Skills" }, } }, + ["V2ReducedManaReservationCorruptedEfficiency_____"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [2587176568] = { "2% increased Reservation Efficiency of Skills" }, } }, + ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3128 }, level = 60, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, + ["V2FirePenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, + ["V2ColdPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, + ["V2LightningPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, + ["V2ElementalPenetrationAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, + ["V2ArmourPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(21-25) to maximum Life", statOrder = { 1591 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(21-25) to maximum Life" }, } }, + ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(26-30) to maximum Life", statOrder = { 1591 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(26-30) to maximum Life" }, } }, + ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(31-35) to maximum Life", statOrder = { 1591 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(31-35) to maximum Life" }, } }, + ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(36-40) to maximum Life", statOrder = { 1591 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(36-40) to maximum Life" }, } }, + ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(20-23) to maximum Mana", statOrder = { 1602 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-23) to maximum Mana" }, } }, + ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(24-27) to maximum Mana", statOrder = { 1602 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(24-27) to maximum Mana" }, } }, + ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(28-31) to maximum Mana", statOrder = { 1602 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(28-31) to maximum Mana" }, } }, + ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(32-34) to maximum Mana", statOrder = { 1602 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(32-34) to maximum Mana" }, } }, + ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(10-20)% increased Effect of Cold Ailments", statOrder = { 5880 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(10-20)% increased Effect of Cold Ailments" }, } }, + ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased Effect of Lightning Ailments", statOrder = { 7535 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(10-20)% increased Effect of Lightning Ailments" }, } }, + ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1200 }, level = 1, group = "StrengthForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-16) to Strength" }, } }, + ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-16) to Dexterity" }, } }, + ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-16) to Intelligence" }, } }, + ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1203 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [538848803] = { "+(8-10) to Strength and Dexterity" }, } }, + ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1204 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [1535626285] = { "+(8-10) to Strength and Intelligence" }, } }, + ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1205 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, tradeHashes = { [2300185227] = { "+(8-10) to Dexterity and Intelligence" }, } }, + ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-8) to all Attributes" }, } }, + ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-15)% to Fire Resistance" }, } }, + ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-15)% to Cold Resistance" }, } }, + ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-15)% to Lightning Resistance" }, } }, + ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-12)% to Fire and Cold Resistances" }, } }, + ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-12)% to Fire and Lightning Resistances" }, } }, + ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-12)% to Cold and Lightning Resistances" }, } }, + ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(8-10)% to all Elemental Resistances" }, } }, + ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, + ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1434 }, level = 50, group = "IncreasedAttackSpeedForJewel", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(3-5)% increased Attack Speed" }, } }, + ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1470 }, level = 50, group = "IncreasedCastSpeedForJewel", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, + ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 50, group = "CritChanceForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-12)% increased Global Critical Strike Chance" }, } }, + ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 50, group = "CritMultiplierForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(9-12)% to Global Critical Strike Multiplier" }, } }, + ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrder = { 2158 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, tradeHashes = { [214001793] = { "(10-14)% increased Damage over Time while Dual Wielding" }, } }, + ["AbyssDamageOverTimeWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while Dual Wielding", statOrder = { 2158 }, level = 60, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, tradeHashes = { [214001793] = { "(15-18)% increased Damage over Time while Dual Wielding" }, } }, + ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2160 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 900, 450 }, modTags = { "damage" }, tradeHashes = { [4193088553] = { "(10-14)% increased Damage over Time while wielding a Two Handed Weapon" }, } }, + ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2160 }, level = 60, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 300, 150 }, modTags = { "damage" }, tradeHashes = { [4193088553] = { "(15-18)% increased Damage over Time while wielding a Two Handed Weapon" }, } }, + ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrder = { 2159 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, tradeHashes = { [1244360317] = { "(10-14)% increased Damage over Time while holding a Shield" }, } }, + ["AbyssDamageOverTimeWhileHoldingAShieldJewel2_"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while holding a Shield", statOrder = { 2159 }, level = 60, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, tradeHashes = { [1244360317] = { "(15-18)% increased Damage over Time while holding a Shield" }, } }, + ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (3-6) to (8-11) additional Fire Damage", statOrder = { 3807 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (3-6) to (8-11) additional Fire Damage" }, } }, + ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (11-14) to (17-20) additional Fire Damage", statOrder = { 3807 }, level = 39, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (11-14) to (17-20) additional Fire Damage" }, } }, + ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (15-18) to (21-24) additional Fire Damage", statOrder = { 3807 }, level = 48, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (15-18) to (21-24) additional Fire Damage" }, } }, + ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (20-23) to (26-32) additional Fire Damage", statOrder = { 3807 }, level = 58, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (20-23) to (26-32) additional Fire Damage" }, } }, + ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (24-27) to (33-36) additional Fire Damage", statOrder = { 3807 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (24-27) to (33-36) additional Fire Damage" }, } }, + ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (29-35) to (42-51) additional Fire Damage", statOrder = { 3807 }, level = 82, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [3351784991] = { "Minions deal (29-35) to (42-51) additional Fire Damage" }, } }, + ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (3-6) to (8-11) additional Cold Damage", statOrder = { 3806 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (3-6) to (8-11) additional Cold Damage" }, } }, + ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (11-14) to (17-20) additional Cold Damage", statOrder = { 3806 }, level = 39, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (11-14) to (17-20) additional Cold Damage" }, } }, + ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (15-18) to (21-24) additional Cold Damage", statOrder = { 3806 }, level = 48, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (15-18) to (21-24) additional Cold Damage" }, } }, + ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (20-23) to (26-32) additional Cold Damage", statOrder = { 3806 }, level = 58, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (20-23) to (26-32) additional Cold Damage" }, } }, + ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (24-27) to (33-36) additional Cold Damage", statOrder = { 3806 }, level = 70, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (24-27) to (33-36) additional Cold Damage" }, } }, + ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (29-35) to (42-51) additional Cold Damage", statOrder = { 3806 }, level = 82, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, tradeHashes = { [3152982863] = { "Minions deal (29-35) to (42-51) additional Cold Damage" }, } }, + ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (9-15) additional Lightning Damage", statOrder = { 3808 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal 1 to (9-15) additional Lightning Damage" }, } }, + ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (26-32) additional Lightning Damage", statOrder = { 3808 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-2) to (26-32) additional Lightning Damage" }, } }, + ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (33-39) additional Lightning Damage", statOrder = { 3808 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-3) to (33-39) additional Lightning Damage" }, } }, + ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (1-4) to (44-50) additional Lightning Damage", statOrder = { 3808 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-4) to (44-50) additional Lightning Damage" }, } }, + ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (1-5) to (51-54) additional Lightning Damage", statOrder = { 3808 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-5) to (51-54) additional Lightning Damage" }, } }, + ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (1-6) to (65-77) additional Lightning Damage", statOrder = { 3808 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, tradeHashes = { [2930653471] = { "Minions deal (1-6) to (65-77) additional Lightning Damage" }, } }, + ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (2-3) to (5-8) additional Physical Damage", statOrder = { 3809 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (2-3) to (5-8) additional Physical Damage" }, } }, + ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (5-8) to (11-14) additional Physical Damage", statOrder = { 3809 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (5-8) to (11-14) additional Physical Damage" }, } }, + ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (9-12) to (15-18) additional Physical Damage", statOrder = { 3809 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (9-12) to (15-18) additional Physical Damage" }, } }, + ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (14-17) to (20-23) additional Physical Damage", statOrder = { 3809 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (14-17) to (20-23) additional Physical Damage" }, } }, + ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (18-21) to (24-27) additional Physical Damage", statOrder = { 3809 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (18-21) to (24-27) additional Physical Damage" }, } }, + ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (23-26) to (33-39) additional Physical Damage", statOrder = { 3809 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [1172029298] = { "Minions deal (23-26) to (33-39) additional Physical Damage" }, } }, + ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (2-3) to (5-8) additional Chaos Damage", statOrder = { 3805 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (2-3) to (5-8) additional Chaos Damage" }, } }, + ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (5-8) to (11-14) additional Chaos Damage", statOrder = { 3805 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (5-8) to (11-14) additional Chaos Damage" }, } }, + ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (9-12) to (15-18) additional Chaos Damage", statOrder = { 3805 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (9-12) to (15-18) additional Chaos Damage" }, } }, + ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (14-17) to (20-23) additional Chaos Damage", statOrder = { 3805 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (14-17) to (20-23) additional Chaos Damage" }, } }, + ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (18-21) to (24-27) additional Chaos Damage", statOrder = { 3805 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (18-21) to (24-27) additional Chaos Damage" }, } }, + ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (23-26) to (33-39) additional Chaos Damage", statOrder = { 3805 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (23-26) to (33-39) additional Chaos Damage" }, } }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "(3-5) to (7-9) Added Spell Fire Damage while Dual Wielding", statOrder = { 2135 }, level = 1, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(3-5) to (7-9) Added Spell Fire Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "(9-12) to (14-17) Added Spell Fire Damage while Dual Wielding", statOrder = { 2135 }, level = 39, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(9-12) to (14-17) Added Spell Fire Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "(13-16) to (18-21) Added Spell Fire Damage while Dual Wielding", statOrder = { 2135 }, level = 48, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(13-16) to (18-21) Added Spell Fire Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "(17-20) to (22-27) Added Spell Fire Damage while Dual Wielding", statOrder = { 2135 }, level = 58, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(17-20) to (22-27) Added Spell Fire Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "(21-23) to (29-31) Added Spell Fire Damage while Dual Wielding", statOrder = { 2135 }, level = 70, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(21-23) to (29-31) Added Spell Fire Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "(25-33) to (34-44) Added Spell Fire Damage while Dual Wielding", statOrder = { 2135 }, level = 82, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [662691280] = { "(25-33) to (34-44) Added Spell Fire Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "(2-5) to (6-8) Added Spell Cold Damage while Dual Wielding", statOrder = { 2132 }, level = 1, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(2-5) to (6-8) Added Spell Cold Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "(8-11) to (13-16) Added Spell Cold Damage while Dual Wielding", statOrder = { 2132 }, level = 39, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(8-11) to (13-16) Added Spell Cold Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "(12-14) to (17-19) Added Spell Cold Damage while Dual Wielding", statOrder = { 2132 }, level = 48, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(12-14) to (17-19) Added Spell Cold Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "(16-18) to (20-25) Added Spell Cold Damage while Dual Wielding", statOrder = { 2132 }, level = 58, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(16-18) to (20-25) Added Spell Cold Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "(19-22) to (26-29) Added Spell Cold Damage while Dual Wielding", statOrder = { 2132 }, level = 70, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(19-22) to (26-29) Added Spell Cold Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "(23-30) to (31-41) Added Spell Cold Damage while Dual Wielding", statOrder = { 2132 }, level = 82, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3376452528] = { "(23-30) to (31-41) Added Spell Cold Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "1 to (8-13) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2138 }, level = 1, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "1 to (8-13) Added Spell Lightning Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "(1-3) to (22-27) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2138 }, level = 39, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-3) to (22-27) Added Spell Lightning Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "(1-4) to (29-34) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2138 }, level = 48, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-4) to (29-34) Added Spell Lightning Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "(1-5) to (38-43) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2138 }, level = 58, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-5) to (38-43) Added Spell Lightning Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-7) to (44-47) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2138 }, level = 70, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-7) to (44-47) Added Spell Lightning Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-8) to (56-66) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2138 }, level = 82, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3352373076] = { "(1-8) to (56-66) Added Spell Lightning Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "(1-3) to (4-7) Added Spell Physical Damage while Dual Wielding", statOrder = { 2141 }, level = 1, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(1-3) to (4-7) Added Spell Physical Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "(4-7) to (10-13) Added Spell Physical Damage while Dual Wielding", statOrder = { 2141 }, level = 42, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(4-7) to (10-13) Added Spell Physical Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "(9-12) to (14-17) Added Spell Physical Damage while Dual Wielding", statOrder = { 2141 }, level = 54, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(9-12) to (14-17) Added Spell Physical Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(13-16) to (19-22) Added Spell Physical Damage while Dual Wielding", statOrder = { 2141 }, level = 63, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(13-16) to (19-22) Added Spell Physical Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "(17-20) to (22-24) Added Spell Physical Damage while Dual Wielding", statOrder = { 2141 }, level = 72, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(17-20) to (22-24) Added Spell Physical Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "(22-24) to (29-35) Added Spell Physical Damage while Dual Wielding", statOrder = { 2141 }, level = 83, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [4255924189] = { "(22-24) to (29-35) Added Spell Physical Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "(1-3) to (4-7) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2129 }, level = 1, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(1-3) to (4-7) Added Spell Chaos Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "(4-7) to (10-13) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2129 }, level = 42, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(4-7) to (10-13) Added Spell Chaos Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "(9-12) to (14-17) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2129 }, level = 54, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(9-12) to (14-17) Added Spell Chaos Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "(13-16) to (19-22) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2129 }, level = 65, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(13-16) to (19-22) Added Spell Chaos Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "(17-20) to (22-24) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2129 }, level = 75, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(17-20) to (22-24) Added Spell Chaos Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "(22-24) to (29-35) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2129 }, level = 84, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1865428306] = { "(22-24) to (29-35) Added Spell Chaos Damage while Dual Wielding" }, } }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "(3-5) to (7-9) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 1, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(3-5) to (7-9) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "(9-12) to (14-17) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 39, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(9-12) to (14-17) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "(13-16) to (18-21) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 48, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(13-16) to (18-21) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "(17-20) to (22-27) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 58, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(17-20) to (22-27) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "(21-23) to (29-31) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 70, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(21-23) to (29-31) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "(25-33) to (34-44) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 82, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [2135335407] = { "(25-33) to (34-44) Added Spell Fire Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "(2-5) to (6-8) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2134 }, level = 1, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(2-5) to (6-8) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "(8-11) to (13-16) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2134 }, level = 39, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(8-11) to (13-16) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "(12-14) to (17-19) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2134 }, level = 48, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(12-14) to (17-19) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "(16-18) to (20-25) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2134 }, level = 58, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(16-18) to (20-25) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "(19-22) to (26-29) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2134 }, level = 70, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(19-22) to (26-29) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "(23-30) to (31-41) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2134 }, level = 82, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2464689927] = { "(23-30) to (31-41) Added Spell Cold Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "1 to (8-13) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2140 }, level = 1, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "1 to (8-13) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "(1-3) to (22-27) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2140 }, level = 39, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-3) to (22-27) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "(1-4) to (29-34) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2140 }, level = 48, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-4) to (29-34) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "(1-5) to (38-43) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2140 }, level = 58, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-5) to (38-43) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-7) to (44-47) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2140 }, level = 70, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-7) to (44-47) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "(1-8) to (56-66) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2140 }, level = 82, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2398198236] = { "(1-8) to (56-66) Added Spell Lightning Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "(1-3) to (4-7) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2143 }, level = 1, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(1-3) to (4-7) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "(4-7) to (10-13) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2143 }, level = 42, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(4-7) to (10-13) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "(9-12) to (14-17) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2143 }, level = 54, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(9-12) to (14-17) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(13-16) to (19-22) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2143 }, level = 63, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(13-16) to (19-22) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "(17-20) to (22-24) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2143 }, level = 72, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(17-20) to (22-24) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "(22-24) to (29-35) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2143 }, level = 83, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2921084940] = { "(22-24) to (29-35) Added Spell Physical Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "(1-3) to (4-7) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2131 }, level = 1, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(1-3) to (4-7) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "(4-7) to (10-13) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2131 }, level = 42, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(4-7) to (10-13) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "(9-12) to (14-17) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2131 }, level = 54, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(9-12) to (14-17) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "(13-16) to (19-22) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2131 }, level = 65, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(13-16) to (19-22) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "(17-20) to (22-24) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2131 }, level = 75, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(17-20) to (22-24) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "(22-24) to (29-35) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2131 }, level = 84, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1743759111] = { "(22-24) to (29-35) Added Spell Chaos Damage while wielding a Two Handed Weapon" }, } }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "(3-5) to (7-9) Added Spell Fire Damage while holding a Shield", statOrder = { 2136 }, level = 1, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(3-5) to (7-9) Added Spell Fire Damage while holding a Shield" }, } }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "(9-12) to (14-17) Added Spell Fire Damage while holding a Shield", statOrder = { 2136 }, level = 39, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(9-12) to (14-17) Added Spell Fire Damage while holding a Shield" }, } }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "(13-16) to (18-21) Added Spell Fire Damage while holding a Shield", statOrder = { 2136 }, level = 48, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(13-16) to (18-21) Added Spell Fire Damage while holding a Shield" }, } }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "(17-20) to (22-27) Added Spell Fire Damage while holding a Shield", statOrder = { 2136 }, level = 58, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(17-20) to (22-27) Added Spell Fire Damage while holding a Shield" }, } }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "(21-23) to (29-31) Added Spell Fire Damage while holding a Shield", statOrder = { 2136 }, level = 70, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(21-23) to (29-31) Added Spell Fire Damage while holding a Shield" }, } }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "(25-33) to (34-44) Added Spell Fire Damage while holding a Shield", statOrder = { 2136 }, level = 82, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [44182350] = { "(25-33) to (34-44) Added Spell Fire Damage while holding a Shield" }, } }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "(2-5) to (6-8) Added Spell Cold Damage while holding a Shield", statOrder = { 2133 }, level = 1, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(2-5) to (6-8) Added Spell Cold Damage while holding a Shield" }, } }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "(8-11) to (13-16) Added Spell Cold Damage while holding a Shield", statOrder = { 2133 }, level = 39, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(8-11) to (13-16) Added Spell Cold Damage while holding a Shield" }, } }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "(12-14) to (17-19) Added Spell Cold Damage while holding a Shield", statOrder = { 2133 }, level = 48, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(12-14) to (17-19) Added Spell Cold Damage while holding a Shield" }, } }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "(16-18) to (20-25) Added Spell Cold Damage while holding a Shield", statOrder = { 2133 }, level = 58, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(16-18) to (20-25) Added Spell Cold Damage while holding a Shield" }, } }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "(19-22) to (26-29) Added Spell Cold Damage while holding a Shield", statOrder = { 2133 }, level = 70, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(19-22) to (26-29) Added Spell Cold Damage while holding a Shield" }, } }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "(23-30) to (31-41) Added Spell Cold Damage while holding a Shield", statOrder = { 2133 }, level = 82, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2671663397] = { "(23-30) to (31-41) Added Spell Cold Damage while holding a Shield" }, } }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "1 to (8-13) Added Spell Lightning Damage while holding a Shield", statOrder = { 2139 }, level = 1, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "1 to (8-13) Added Spell Lightning Damage while holding a Shield" }, } }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "(1-3) to (22-27) Added Spell Lightning Damage while holding a Shield", statOrder = { 2139 }, level = 39, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-3) to (22-27) Added Spell Lightning Damage while holding a Shield" }, } }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "(1-4) to (29-34) Added Spell Lightning Damage while holding a Shield", statOrder = { 2139 }, level = 48, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-4) to (29-34) Added Spell Lightning Damage while holding a Shield" }, } }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "(1-5) to (38-43) Added Spell Lightning Damage while holding a Shield", statOrder = { 2139 }, level = 58, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-5) to (38-43) Added Spell Lightning Damage while holding a Shield" }, } }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "(1-7) to (44-47) Added Spell Lightning Damage while holding a Shield", statOrder = { 2139 }, level = 70, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-7) to (44-47) Added Spell Lightning Damage while holding a Shield" }, } }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-8) to (56-66) Added Spell Lightning Damage while holding a Shield", statOrder = { 2139 }, level = 82, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [1801889979] = { "(1-8) to (56-66) Added Spell Lightning Damage while holding a Shield" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "(1-3) to (4-7) Added Spell Physical Damage while holding a Shield", statOrder = { 2142 }, level = 1, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(1-3) to (4-7) Added Spell Physical Damage while holding a Shield" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "(4-7) to (10-13) Added Spell Physical Damage while holding a Shield", statOrder = { 2142 }, level = 42, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(4-7) to (10-13) Added Spell Physical Damage while holding a Shield" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "(9-12) to (14-17) Added Spell Physical Damage while holding a Shield", statOrder = { 2142 }, level = 54, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(9-12) to (14-17) Added Spell Physical Damage while holding a Shield" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(13-16) to (19-22) Added Spell Physical Damage while holding a Shield", statOrder = { 2142 }, level = 63, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(13-16) to (19-22) Added Spell Physical Damage while holding a Shield" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "(17-20) to (22-24) Added Spell Physical Damage while holding a Shield", statOrder = { 2142 }, level = 72, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(17-20) to (22-24) Added Spell Physical Damage while holding a Shield" }, } }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "(22-24) to (29-35) Added Spell Physical Damage while holding a Shield", statOrder = { 2142 }, level = 83, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [3954157711] = { "(22-24) to (29-35) Added Spell Physical Damage while holding a Shield" }, } }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "(1-3) to (4-7) Added Spell Chaos Damage while holding a Shield", statOrder = { 2130 }, level = 1, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(1-3) to (4-7) Added Spell Chaos Damage while holding a Shield" }, } }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "(4-7) to (10-13) Added Spell Chaos Damage while holding a Shield", statOrder = { 2130 }, level = 42, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(4-7) to (10-13) Added Spell Chaos Damage while holding a Shield" }, } }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "(9-12) to (14-17) Added Spell Chaos Damage while holding a Shield", statOrder = { 2130 }, level = 54, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(9-12) to (14-17) Added Spell Chaos Damage while holding a Shield" }, } }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "(13-16) to (19-22) Added Spell Chaos Damage while holding a Shield", statOrder = { 2130 }, level = 65, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(13-16) to (19-22) Added Spell Chaos Damage while holding a Shield" }, } }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "(17-20) to (22-24) Added Spell Chaos Damage while holding a Shield", statOrder = { 2130 }, level = 75, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(17-20) to (22-24) Added Spell Chaos Damage while holding a Shield" }, } }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "(22-24) to (29-35) Added Spell Chaos Damage while holding a Shield", statOrder = { 2130 }, level = 84, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1181129483] = { "(22-24) to (29-35) Added Spell Chaos Damage while holding a Shield" }, } }, + ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (8-10) to (12-14) Fire Damage to Spells", statOrder = { 1428 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-10) to (12-14) Fire Damage to Spells" }, } }, + ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (12-14) to (16-18) Fire Damage to Spells", statOrder = { 1428 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (12-14) to (16-18) Fire Damage to Spells" }, } }, + ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (16-18) to (20-25) Fire Damage to Spells", statOrder = { 1428 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (16-18) to (20-25) Fire Damage to Spells" }, } }, + ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (20-22) to (26-30) Fire Damage to Spells", statOrder = { 1428 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-22) to (26-30) Fire Damage to Spells" }, } }, + ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (25-30) to (31-42) Fire Damage to Spells", statOrder = { 1428 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-30) to (31-42) Fire Damage to Spells" }, } }, + ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (7-10) to (11-13) Cold Damage to Spells", statOrder = { 1429 }, level = 30, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (7-10) to (11-13) Cold Damage to Spells" }, } }, + ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (11-13) to (14-17) Cold Damage to Spells", statOrder = { 1429 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-13) to (14-17) Cold Damage to Spells" }, } }, + ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (14-17) to (18-23) Cold Damage to Spells", statOrder = { 1429 }, level = 55, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-17) to (18-23) Cold Damage to Spells" }, } }, + ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (18-20) to (24-28) Cold Damage to Spells", statOrder = { 1429 }, level = 66, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (18-20) to (24-28) Cold Damage to Spells" }, } }, + ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (23-28) to (29-38) Cold Damage to Spells", statOrder = { 1429 }, level = 77, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (23-28) to (29-38) Cold Damage to Spells" }, } }, + ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-3) to (20-25) Lightning Damage to Spells", statOrder = { 1430 }, level = 30, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (20-25) Lightning Damage to Spells" }, } }, + ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-4) to (26-31) Lightning Damage to Spells", statOrder = { 1430 }, level = 43, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (26-31) Lightning Damage to Spells" }, } }, + ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-5) to (33-38) Lightning Damage to Spells", statOrder = { 1430 }, level = 55, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-5) to (33-38) Lightning Damage to Spells" }, } }, + ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-7) to (39-42) Lightning Damage to Spells", statOrder = { 1430 }, level = 66, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-7) to (39-42) Lightning Damage to Spells" }, } }, + ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-8) to (48-59) Lightning Damage to Spells", statOrder = { 1430 }, level = 77, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-8) to (48-59) Lightning Damage to Spells" }, } }, + ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (4-6) to (9-10) Physical Damage to Spells", statOrder = { 1427 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (4-6) to (9-10) Physical Damage to Spells" }, } }, + ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (7-10) to (12-14) Physical Damage to Spells", statOrder = { 1427 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (7-10) to (12-14) Physical Damage to Spells" }, } }, + ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (12-14) to (16-19) Physical Damage to Spells", statOrder = { 1427 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (12-14) to (16-19) Physical Damage to Spells" }, } }, + ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (16-19) to (20-23) Physical Damage to Spells", statOrder = { 1427 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-19) to (20-23) Physical Damage to Spells" }, } }, + ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (20-23) to (26-32) Physical Damage to Spells", statOrder = { 1427 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (20-23) to (26-32) Physical Damage to Spells" }, } }, + ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (4-6) to (9-10) Chaos Damage to Spells", statOrder = { 1431 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (4-6) to (9-10) Chaos Damage to Spells" }, } }, + ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (7-10) to (12-14) Chaos Damage to Spells", statOrder = { 1431 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (7-10) to (12-14) Chaos Damage to Spells" }, } }, + ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (12-14) to (16-19) Chaos Damage to Spells", statOrder = { 1431 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (12-14) to (16-19) Chaos Damage to Spells" }, } }, + ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (16-19) to (20-23) Chaos Damage to Spells", statOrder = { 1431 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (16-19) to (20-23) Chaos Damage to Spells" }, } }, + ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (20-23) to (26-32) Chaos Damage to Spells", statOrder = { 1431 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (20-23) to (26-32) Chaos Damage to Spells" }, } }, + ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Wand Attacks", statOrder = { 2099 }, level = 1, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "2 to 3 Added Physical Damage with Wand Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Wand Attacks", statOrder = { 2099 }, level = 42, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "3 to 4 Added Physical Damage with Wand Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Wand Attacks", statOrder = { 2099 }, level = 64, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "4 to (5-6) Added Physical Damage with Wand Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Wand Attacks", statOrder = { 2099 }, level = 77, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 150, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "(5-6) to (7-8) Added Physical Damage with Wand Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithWandsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Wand Attacks", statOrder = { 2099 }, level = 85, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 75, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [133683091] = { "(7-8) to (9-10) Added Physical Damage with Wand Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Dagger Attacks", statOrder = { 2095 }, level = 1, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "2 to 3 Added Physical Damage with Dagger Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Dagger Attacks", statOrder = { 2095 }, level = 42, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "3 to 4 Added Physical Damage with Dagger Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Dagger Attacks", statOrder = { 2095 }, level = 64, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "4 to (5-6) Added Physical Damage with Dagger Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Dagger Attacks", statOrder = { 2095 }, level = 77, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "(5-6) to (7-8) Added Physical Damage with Dagger Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithDaggersJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Dagger Attacks", statOrder = { 2095 }, level = 85, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1298238534] = { "(7-8) to (9-10) Added Physical Damage with Dagger Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Claw Attacks", statOrder = { 2094 }, level = 1, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "2 to 3 Added Physical Damage with Claw Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Claw Attacks", statOrder = { 2094 }, level = 42, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "3 to 4 Added Physical Damage with Claw Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Claw Attacks", statOrder = { 2094 }, level = 64, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "4 to (5-6) Added Physical Damage with Claw Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Claw Attacks", statOrder = { 2094 }, level = 77, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "(5-6) to (7-8) Added Physical Damage with Claw Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithClawsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Claw Attacks", statOrder = { 2094 }, level = 85, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3303015] = { "(7-8) to (9-10) Added Physical Damage with Claw Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Sword Attacks", statOrder = { 2098 }, level = 1, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "2 to 3 Added Physical Damage with Sword Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Sword Attacks", statOrder = { 2098 }, level = 42, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "3 to 4 Added Physical Damage with Sword Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Sword Attacks", statOrder = { 2098 }, level = 64, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "4 to (5-6) Added Physical Damage with Sword Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Sword Attacks", statOrder = { 2098 }, level = 77, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "(5-6) to (7-8) Added Physical Damage with Sword Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Sword Attacks", statOrder = { 2098 }, level = 85, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1040189894] = { "(7-8) to (9-10) Added Physical Damage with Sword Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Axe Attacks", statOrder = { 2092 }, level = 1, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "2 to 3 Added Physical Damage with Axe Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Axe Attacks", statOrder = { 2092 }, level = 42, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "3 to 4 Added Physical Damage with Axe Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Axe Attacks", statOrder = { 2092 }, level = 64, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "4 to (5-6) Added Physical Damage with Axe Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Axe Attacks", statOrder = { 2092 }, level = 77, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "(5-6) to (7-8) Added Physical Damage with Axe Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithAxesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Axe Attacks", statOrder = { 2092 }, level = 85, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [311030839] = { "(7-8) to (9-10) Added Physical Damage with Axe Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 1, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "2 to 3 Added Physical Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 42, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "3 to 4 Added Physical Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 64, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "4 to (5-6) Added Physical Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 77, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "(5-6) to (7-8) Added Physical Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithMacesJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 85, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882662078] = { "(7-8) to (9-10) Added Physical Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Staff Attacks", statOrder = { 2097 }, level = 1, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "2 to 3 Added Physical Damage with Staff Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Staff Attacks", statOrder = { 2097 }, level = 42, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "3 to 4 Added Physical Damage with Staff Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Staff Attacks", statOrder = { 2097 }, level = 64, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "4 to (5-6) Added Physical Damage with Staff Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Staff Attacks", statOrder = { 2097 }, level = 77, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "(5-6) to (7-8) Added Physical Damage with Staff Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithStavesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Staff Attacks", statOrder = { 2097 }, level = 85, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69898010] = { "(7-8) to (9-10) Added Physical Damage with Staff Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "2 to 3 Added Physical Damage with Bow Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 42, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "3 to 4 Added Physical Damage with Bow Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 64, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "4 to (5-6) Added Physical Damage with Bow Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 77, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-6) to (7-8) Added Physical Damage with Bow Attacks" }, } }, + ["AbyssAddedPhysicalDamageWithBowsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Bow Attacks", statOrder = { 2093 }, level = 85, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(7-8) to (9-10) Added Physical Damage with Bow Attacks" }, } }, + ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Wand Attacks", statOrder = { 2125 }, level = 1, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "1 to (19-20) Added Lightning Damage with Wand Attacks" }, } }, + ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Wand Attacks", statOrder = { 2125 }, level = 37, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(1-2) to (23-24) Added Lightning Damage with Wand Attacks" }, } }, + ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Wand Attacks", statOrder = { 2125 }, level = 48, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(1-3) to (28-30) Added Lightning Damage with Wand Attacks" }, } }, + ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Wand Attacks", statOrder = { 2125 }, level = 60, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(1-4) to (33-35) Added Lightning Damage with Wand Attacks" }, } }, + ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Wand Attacks", statOrder = { 2125 }, level = 70, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(2-4) to (40-43) Added Lightning Damage with Wand Attacks" }, } }, + ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Wand Attacks", statOrder = { 2125 }, level = 82, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2787733863] = { "(2-5) to (48-50) Added Lightning Damage with Wand Attacks" }, } }, + ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Dagger Attacks", statOrder = { 2121 }, level = 1, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "1 to (19-20) Added Lightning Damage with Dagger Attacks" }, } }, + ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Dagger Attacks", statOrder = { 2121 }, level = 37, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(1-2) to (23-24) Added Lightning Damage with Dagger Attacks" }, } }, + ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Dagger Attacks", statOrder = { 2121 }, level = 48, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(1-3) to (28-30) Added Lightning Damage with Dagger Attacks" }, } }, + ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Dagger Attacks", statOrder = { 2121 }, level = 60, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(1-4) to (33-35) Added Lightning Damage with Dagger Attacks" }, } }, + ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Dagger Attacks", statOrder = { 2121 }, level = 70, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(2-4) to (40-43) Added Lightning Damage with Dagger Attacks" }, } }, + ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Dagger Attacks", statOrder = { 2121 }, level = 82, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3479683016] = { "(2-5) to (48-50) Added Lightning Damage with Dagger Attacks" }, } }, + ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Claw Attacks", statOrder = { 2120 }, level = 1, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "1 to (19-20) Added Lightning Damage with Claw Attacks" }, } }, + ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Claw Attacks", statOrder = { 2120 }, level = 37, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(1-2) to (23-24) Added Lightning Damage with Claw Attacks" }, } }, + ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Claw Attacks", statOrder = { 2120 }, level = 48, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(1-3) to (28-30) Added Lightning Damage with Claw Attacks" }, } }, + ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Claw Attacks", statOrder = { 2120 }, level = 60, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(1-4) to (33-35) Added Lightning Damage with Claw Attacks" }, } }, + ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Claw Attacks", statOrder = { 2120 }, level = 70, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(2-4) to (40-43) Added Lightning Damage with Claw Attacks" }, } }, + ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Claw Attacks", statOrder = { 2120 }, level = 82, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4231842891] = { "(2-5) to (48-50) Added Lightning Damage with Claw Attacks" }, } }, + ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 1, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "1 to (19-20) Added Lightning Damage with Bow Attacks" }, } }, + ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 37, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-2) to (23-24) Added Lightning Damage with Bow Attacks" }, } }, + ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 48, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-3) to (28-30) Added Lightning Damage with Bow Attacks" }, } }, + ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 60, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-4) to (33-35) Added Lightning Damage with Bow Attacks" }, } }, + ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 70, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(2-4) to (40-43) Added Lightning Damage with Bow Attacks" }, } }, + ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Bow Attacks", statOrder = { 2119 }, level = 82, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 625, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(2-5) to (48-50) Added Lightning Damage with Bow Attacks" }, } }, + ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Sword Attacks", statOrder = { 2124 }, level = 1, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "1 to (19-20) Added Lightning Damage with Sword Attacks" }, } }, + ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Sword Attacks", statOrder = { 2124 }, level = 37, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(1-2) to (23-24) Added Lightning Damage with Sword Attacks" }, } }, + ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Sword Attacks", statOrder = { 2124 }, level = 48, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(1-3) to (28-30) Added Lightning Damage with Sword Attacks" }, } }, + ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Sword Attacks", statOrder = { 2124 }, level = 60, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(1-4) to (33-35) Added Lightning Damage with Sword Attacks" }, } }, + ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Sword Attacks", statOrder = { 2124 }, level = 70, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(2-4) to (40-43) Added Lightning Damage with Sword Attacks" }, } }, + ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Sword Attacks", statOrder = { 2124 }, level = 82, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1237708713] = { "(2-5) to (48-50) Added Lightning Damage with Sword Attacks" }, } }, + ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Axe Attacks", statOrder = { 2118 }, level = 1, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "1 to (19-20) Added Lightning Damage with Axe Attacks" }, } }, + ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Axe Attacks", statOrder = { 2118 }, level = 37, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(1-2) to (23-24) Added Lightning Damage with Axe Attacks" }, } }, + ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Axe Attacks", statOrder = { 2118 }, level = 48, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(1-3) to (28-30) Added Lightning Damage with Axe Attacks" }, } }, + ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Axe Attacks", statOrder = { 2118 }, level = 60, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(1-4) to (33-35) Added Lightning Damage with Axe Attacks" }, } }, + ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Axe Attacks", statOrder = { 2118 }, level = 70, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(2-4) to (40-43) Added Lightning Damage with Axe Attacks" }, } }, + ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Axe Attacks", statOrder = { 2118 }, level = 82, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1582068183] = { "(2-5) to (48-50) Added Lightning Damage with Axe Attacks" }, } }, + ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2122 }, level = 1, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "1 to (19-20) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2122 }, level = 37, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(1-2) to (23-24) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2122 }, level = 48, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(1-3) to (28-30) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2122 }, level = 60, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(1-4) to (33-35) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2122 }, level = 70, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(2-4) to (40-43) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2122 }, level = 82, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2096159630] = { "(2-5) to (48-50) Added Lightning Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Staff Attacks", statOrder = { 2123 }, level = 1, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "1 to (19-20) Added Lightning Damage with Staff Attacks" }, } }, + ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Staff Attacks", statOrder = { 2123 }, level = 37, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(1-2) to (23-24) Added Lightning Damage with Staff Attacks" }, } }, + ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Staff Attacks", statOrder = { 2123 }, level = 48, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(1-3) to (28-30) Added Lightning Damage with Staff Attacks" }, } }, + ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Staff Attacks", statOrder = { 2123 }, level = 60, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(1-4) to (33-35) Added Lightning Damage with Staff Attacks" }, } }, + ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Staff Attacks", statOrder = { 2123 }, level = 70, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(2-4) to (40-43) Added Lightning Damage with Staff Attacks" }, } }, + ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Staff Attacks", statOrder = { 2123 }, level = 82, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3212481075] = { "(2-5) to (48-50) Added Lightning Damage with Staff Attacks" }, } }, + ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Wand Attacks", statOrder = { 2109 }, level = 1, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(5-6) to (11-12) Added Fire Damage with Wand Attacks" }, } }, + ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Wand Attacks", statOrder = { 2109 }, level = 40, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(7-8) to (13-15) Added Fire Damage with Wand Attacks" }, } }, + ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Wand Attacks", statOrder = { 2109 }, level = 51, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(9-11) to (16-19) Added Fire Damage with Wand Attacks" }, } }, + ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Wand Attacks", statOrder = { 2109 }, level = 62, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(12-13) to (20-22) Added Fire Damage with Wand Attacks" }, } }, + ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Wand Attacks", statOrder = { 2109 }, level = 72, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(14-15) to (23-26) Added Fire Damage with Wand Attacks" }, } }, + ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Wand Attacks", statOrder = { 2109 }, level = 84, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [87098247] = { "(16-18) to (27-32) Added Fire Damage with Wand Attacks" }, } }, + ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Dagger Attacks", statOrder = { 2105 }, level = 1, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(5-6) to (11-12) Added Fire Damage with Dagger Attacks" }, } }, + ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Dagger Attacks", statOrder = { 2105 }, level = 40, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(7-8) to (13-15) Added Fire Damage with Dagger Attacks" }, } }, + ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Dagger Attacks", statOrder = { 2105 }, level = 51, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(9-11) to (16-19) Added Fire Damage with Dagger Attacks" }, } }, + ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Dagger Attacks", statOrder = { 2105 }, level = 62, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(12-13) to (20-22) Added Fire Damage with Dagger Attacks" }, } }, + ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Dagger Attacks", statOrder = { 2105 }, level = 72, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(14-15) to (23-26) Added Fire Damage with Dagger Attacks" }, } }, + ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Dagger Attacks", statOrder = { 2105 }, level = 84, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1910361436] = { "(16-18) to (27-32) Added Fire Damage with Dagger Attacks" }, } }, + ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Claw Attacks", statOrder = { 2104 }, level = 1, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(5-6) to (11-12) Added Fire Damage with Claw Attacks" }, } }, + ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Claw Attacks", statOrder = { 2104 }, level = 40, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(7-8) to (13-15) Added Fire Damage with Claw Attacks" }, } }, + ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Claw Attacks", statOrder = { 2104 }, level = 51, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(9-11) to (16-19) Added Fire Damage with Claw Attacks" }, } }, + ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Claw Attacks", statOrder = { 2104 }, level = 62, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(12-13) to (20-22) Added Fire Damage with Claw Attacks" }, } }, + ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Claw Attacks", statOrder = { 2104 }, level = 72, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(14-15) to (23-26) Added Fire Damage with Claw Attacks" }, } }, + ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Claw Attacks", statOrder = { 2104 }, level = 84, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2154290807] = { "(16-18) to (27-32) Added Fire Damage with Claw Attacks" }, } }, + ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 1, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(5-6) to (11-12) Added Fire Damage with Bow Attacks" }, } }, + ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 40, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(7-8) to (13-15) Added Fire Damage with Bow Attacks" }, } }, + ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 51, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(9-11) to (16-19) Added Fire Damage with Bow Attacks" }, } }, + ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 62, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(12-13) to (20-22) Added Fire Damage with Bow Attacks" }, } }, + ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 72, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(14-15) to (23-26) Added Fire Damage with Bow Attacks" }, } }, + ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Bow Attacks", statOrder = { 2103 }, level = 84, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(16-18) to (27-32) Added Fire Damage with Bow Attacks" }, } }, + ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Sword Attacks", statOrder = { 2108 }, level = 1, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(5-6) to (11-12) Added Fire Damage with Sword Attacks" }, } }, + ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Sword Attacks", statOrder = { 2108 }, level = 40, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(7-8) to (13-15) Added Fire Damage with Sword Attacks" }, } }, + ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Sword Attacks", statOrder = { 2108 }, level = 51, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(9-11) to (16-19) Added Fire Damage with Sword Attacks" }, } }, + ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Sword Attacks", statOrder = { 2108 }, level = 62, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(12-13) to (20-22) Added Fire Damage with Sword Attacks" }, } }, + ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Sword Attacks", statOrder = { 2108 }, level = 72, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(14-15) to (23-26) Added Fire Damage with Sword Attacks" }, } }, + ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Sword Attacks", statOrder = { 2108 }, level = 84, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [601249293] = { "(16-18) to (27-32) Added Fire Damage with Sword Attacks" }, } }, + ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Axe Attacks", statOrder = { 2102 }, level = 1, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(5-6) to (11-12) Added Fire Damage with Axe Attacks" }, } }, + ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Axe Attacks", statOrder = { 2102 }, level = 40, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(7-8) to (13-15) Added Fire Damage with Axe Attacks" }, } }, + ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Axe Attacks", statOrder = { 2102 }, level = 51, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(9-11) to (16-19) Added Fire Damage with Axe Attacks" }, } }, + ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Axe Attacks", statOrder = { 2102 }, level = 62, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(12-13) to (20-22) Added Fire Damage with Axe Attacks" }, } }, + ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Axe Attacks", statOrder = { 2102 }, level = 72, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(14-15) to (23-26) Added Fire Damage with Axe Attacks" }, } }, + ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Axe Attacks", statOrder = { 2102 }, level = 84, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2461965653] = { "(16-18) to (27-32) Added Fire Damage with Axe Attacks" }, } }, + ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2106 }, level = 1, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(5-6) to (11-12) Added Fire Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2106 }, level = 40, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(7-8) to (13-15) Added Fire Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2106 }, level = 51, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(9-11) to (16-19) Added Fire Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2106 }, level = 62, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(12-13) to (20-22) Added Fire Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2106 }, level = 72, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(14-15) to (23-26) Added Fire Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2106 }, level = 84, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3146788701] = { "(16-18) to (27-32) Added Fire Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Staff Attacks", statOrder = { 2107 }, level = 1, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(5-6) to (11-12) Added Fire Damage with Staff Attacks" }, } }, + ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Staff Attacks", statOrder = { 2107 }, level = 40, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(7-8) to (13-15) Added Fire Damage with Staff Attacks" }, } }, + ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Staff Attacks", statOrder = { 2107 }, level = 51, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(9-11) to (16-19) Added Fire Damage with Staff Attacks" }, } }, + ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Staff Attacks", statOrder = { 2107 }, level = 62, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(12-13) to (20-22) Added Fire Damage with Staff Attacks" }, } }, + ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Staff Attacks", statOrder = { 2107 }, level = 72, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(14-15) to (23-26) Added Fire Damage with Staff Attacks" }, } }, + ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Staff Attacks", statOrder = { 2107 }, level = 84, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3220927448] = { "(16-18) to (27-32) Added Fire Damage with Staff Attacks" }, } }, + ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Wand Attacks", statOrder = { 2117 }, level = 1, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(4-5) to (9-10) Added Cold Damage with Wand Attacks" }, } }, + ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Wand Attacks", statOrder = { 2117 }, level = 38, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(6-7) to (11-13) Added Cold Damage with Wand Attacks" }, } }, + ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Wand Attacks", statOrder = { 2117 }, level = 47, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(8-9) to (14-16) Added Cold Damage with Wand Attacks" }, } }, + ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Wand Attacks", statOrder = { 2117 }, level = 59, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(10-11) to (17-20) Added Cold Damage with Wand Attacks" }, } }, + ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Wand Attacks", statOrder = { 2117 }, level = 68, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(12-13) to (21-24) Added Cold Damage with Wand Attacks" }, } }, + ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Wand Attacks", statOrder = { 2117 }, level = 83, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2383797932] = { "(14-15) to (25-28) Added Cold Damage with Wand Attacks" }, } }, + ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Dagger Attacks", statOrder = { 2113 }, level = 1, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(4-5) to (9-10) Added Cold Damage with Dagger Attacks" }, } }, + ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Dagger Attacks", statOrder = { 2113 }, level = 38, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(6-7) to (11-13) Added Cold Damage with Dagger Attacks" }, } }, + ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Dagger Attacks", statOrder = { 2113 }, level = 47, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(8-9) to (14-16) Added Cold Damage with Dagger Attacks" }, } }, + ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Dagger Attacks", statOrder = { 2113 }, level = 59, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(10-11) to (17-20) Added Cold Damage with Dagger Attacks" }, } }, + ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Dagger Attacks", statOrder = { 2113 }, level = 68, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(12-13) to (21-24) Added Cold Damage with Dagger Attacks" }, } }, + ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Dagger Attacks", statOrder = { 2113 }, level = 83, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1263342750] = { "(14-15) to (25-28) Added Cold Damage with Dagger Attacks" }, } }, + ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Claw Attacks", statOrder = { 2112 }, level = 1, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(4-5) to (9-10) Added Cold Damage with Claw Attacks" }, } }, + ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Claw Attacks", statOrder = { 2112 }, level = 38, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(6-7) to (11-13) Added Cold Damage with Claw Attacks" }, } }, + ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Claw Attacks", statOrder = { 2112 }, level = 47, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(8-9) to (14-16) Added Cold Damage with Claw Attacks" }, } }, + ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Claw Attacks", statOrder = { 2112 }, level = 59, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(10-11) to (17-20) Added Cold Damage with Claw Attacks" }, } }, + ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Claw Attacks", statOrder = { 2112 }, level = 68, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(12-13) to (21-24) Added Cold Damage with Claw Attacks" }, } }, + ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Claw Attacks", statOrder = { 2112 }, level = 83, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2848646243] = { "(14-15) to (25-28) Added Cold Damage with Claw Attacks" }, } }, + ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 1, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(4-5) to (9-10) Added Cold Damage with Bow Attacks" }, } }, + ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 38, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(6-7) to (11-13) Added Cold Damage with Bow Attacks" }, } }, + ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 47, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(8-9) to (14-16) Added Cold Damage with Bow Attacks" }, } }, + ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 59, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(10-11) to (17-20) Added Cold Damage with Bow Attacks" }, } }, + ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 68, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(12-13) to (21-24) Added Cold Damage with Bow Attacks" }, } }, + ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Bow Attacks", statOrder = { 2111 }, level = 83, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(14-15) to (25-28) Added Cold Damage with Bow Attacks" }, } }, + ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Sword Attacks", statOrder = { 2116 }, level = 1, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(4-5) to (9-10) Added Cold Damage with Sword Attacks" }, } }, + ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Sword Attacks", statOrder = { 2116 }, level = 38, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(6-7) to (11-13) Added Cold Damage with Sword Attacks" }, } }, + ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Sword Attacks", statOrder = { 2116 }, level = 47, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(8-9) to (14-16) Added Cold Damage with Sword Attacks" }, } }, + ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Sword Attacks", statOrder = { 2116 }, level = 59, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(10-11) to (17-20) Added Cold Damage with Sword Attacks" }, } }, + ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Sword Attacks", statOrder = { 2116 }, level = 68, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(12-13) to (21-24) Added Cold Damage with Sword Attacks" }, } }, + ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Sword Attacks", statOrder = { 2116 }, level = 83, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [972201717] = { "(14-15) to (25-28) Added Cold Damage with Sword Attacks" }, } }, + ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Axe Attacks", statOrder = { 2110 }, level = 1, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(4-5) to (9-10) Added Cold Damage with Axe Attacks" }, } }, + ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Axe Attacks", statOrder = { 2110 }, level = 38, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(6-7) to (11-13) Added Cold Damage with Axe Attacks" }, } }, + ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Axe Attacks", statOrder = { 2110 }, level = 47, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(8-9) to (14-16) Added Cold Damage with Axe Attacks" }, } }, + ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Axe Attacks", statOrder = { 2110 }, level = 59, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(10-11) to (17-20) Added Cold Damage with Axe Attacks" }, } }, + ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Axe Attacks", statOrder = { 2110 }, level = 68, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(12-13) to (21-24) Added Cold Damage with Axe Attacks" }, } }, + ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Axe Attacks", statOrder = { 2110 }, level = 83, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1782176131] = { "(14-15) to (25-28) Added Cold Damage with Axe Attacks" }, } }, + ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2114 }, level = 1, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(4-5) to (9-10) Added Cold Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2114 }, level = 38, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(6-7) to (11-13) Added Cold Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2114 }, level = 47, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(8-9) to (14-16) Added Cold Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2114 }, level = 59, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(10-11) to (17-20) Added Cold Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2114 }, level = 68, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(12-13) to (21-24) Added Cold Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2114 }, level = 83, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [187418672] = { "(14-15) to (25-28) Added Cold Damage with Mace or Sceptre Attacks" }, } }, + ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Staff Attacks", statOrder = { 2115 }, level = 1, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(4-5) to (9-10) Added Cold Damage with Staff Attacks" }, } }, + ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Staff Attacks", statOrder = { 2115 }, level = 38, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(6-7) to (11-13) Added Cold Damage with Staff Attacks" }, } }, + ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Staff Attacks", statOrder = { 2115 }, level = 47, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(8-9) to (14-16) Added Cold Damage with Staff Attacks" }, } }, + ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Staff Attacks", statOrder = { 2115 }, level = 59, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(10-11) to (17-20) Added Cold Damage with Staff Attacks" }, } }, + ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Staff Attacks", statOrder = { 2115 }, level = 68, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(12-13) to (21-24) Added Cold Damage with Staff Attacks" }, } }, + ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Staff Attacks", statOrder = { 2115 }, level = 83, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1261958804] = { "(14-15) to (25-28) Added Cold Damage with Staff Attacks" }, } }, + ["AbyssAddedChaosDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Dagger Attacks", statOrder = { 2128 }, level = 1, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(4-5) to (9-10) Added Chaos Damage with Dagger Attacks" }, } }, + ["AbyssAddedChaosDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Dagger Attacks", statOrder = { 2128 }, level = 42, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(6-7) to (11-13) Added Chaos Damage with Dagger Attacks" }, } }, + ["AbyssAddedChaosDamageWithDaggersJewel3__"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Dagger Attacks", statOrder = { 2128 }, level = 64, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(8-9) to (14-16) Added Chaos Damage with Dagger Attacks" }, } }, + ["AbyssAddedChaosDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Dagger Attacks", statOrder = { 2128 }, level = 77, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(10-11) to (17-20) Added Chaos Damage with Dagger Attacks" }, } }, + ["AbyssAddedChaosDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Dagger Attacks", statOrder = { 2128 }, level = 85, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3248691197] = { "(12-13) to (21-24) Added Chaos Damage with Dagger Attacks" }, } }, + ["AbyssAddedChaosDamageWithBowsJewel1_"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Bow Attacks", statOrder = { 2126 }, level = 1, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(4-5) to (9-10) Added Chaos Damage with Bow Attacks" }, } }, + ["AbyssAddedChaosDamageWithBowsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Bow Attacks", statOrder = { 2126 }, level = 42, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(6-7) to (11-13) Added Chaos Damage with Bow Attacks" }, } }, + ["AbyssAddedChaosDamageWithBowsJewel3"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Bow Attacks", statOrder = { 2126 }, level = 64, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(8-9) to (14-16) Added Chaos Damage with Bow Attacks" }, } }, + ["AbyssAddedChaosDamageWithBowsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Bow Attacks", statOrder = { 2126 }, level = 77, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(10-11) to (17-20) Added Chaos Damage with Bow Attacks" }, } }, + ["AbyssAddedChaosDamageWithBowsJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Bow Attacks", statOrder = { 2126 }, level = 85, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(12-13) to (21-24) Added Chaos Damage with Bow Attacks" }, } }, + ["AbyssAddedChaosDamageWithClawsJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Claw Attacks", statOrder = { 2127 }, level = 1, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(4-5) to (9-10) Added Chaos Damage with Claw Attacks" }, } }, + ["AbyssAddedChaosDamageWithClawsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Claw Attacks", statOrder = { 2127 }, level = 42, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(6-7) to (11-13) Added Chaos Damage with Claw Attacks" }, } }, + ["AbyssAddedChaosDamageWithClawsJewel3_"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Claw Attacks", statOrder = { 2127 }, level = 64, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(8-9) to (14-16) Added Chaos Damage with Claw Attacks" }, } }, + ["AbyssAddedChaosDamageWithClawsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Claw Attacks", statOrder = { 2127 }, level = 77, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(10-11) to (17-20) Added Chaos Damage with Claw Attacks" }, } }, + ["AbyssAddedChaosDamageWithClawsJewel5_"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Claw Attacks", statOrder = { 2127 }, level = 85, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [4191067677] = { "(12-13) to (21-24) Added Chaos Damage with Claw Attacks" }, } }, + ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (4-5) to (10-12) Fire Damage to Attacks", statOrder = { 1384 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (4-5) to (10-12) Fire Damage to Attacks" }, } }, + ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (6-7) to (13-16) Fire Damage to Attacks", statOrder = { 1384 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-7) to (13-16) Fire Damage to Attacks" }, } }, + ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (8-9) to (17-20) Fire Damage to Attacks", statOrder = { 1384 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-9) to (17-20) Fire Damage to Attacks" }, } }, + ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (10-12) to (21-24) Fire Damage to Attacks", statOrder = { 1384 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (10-12) to (21-24) Fire Damage to Attacks" }, } }, + ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (13-15) to (25-28) Fire Damage to Attacks", statOrder = { 1384 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-15) to (25-28) Fire Damage to Attacks" }, } }, + ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (4-5) to (8-10) Cold Damage to Attacks", statOrder = { 1393 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (4-5) to (8-10) Cold Damage to Attacks" }, } }, + ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1393 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-13) Cold Damage to Attacks" }, } }, + ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (8-9) to (14-17) Cold Damage to Attacks", statOrder = { 1393 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-9) to (14-17) Cold Damage to Attacks" }, } }, + ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (10-11) to (18-21) Cold Damage to Attacks", statOrder = { 1393 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-11) to (18-21) Cold Damage to Attacks" }, } }, + ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (12-13) to (22-26) Cold Damage to Attacks", statOrder = { 1393 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-13) to (22-26) Cold Damage to Attacks" }, } }, + ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds 1 to (19-20) Lightning Damage to Attacks", statOrder = { 1404 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (19-20) Lightning Damage to Attacks" }, } }, + ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-2) to (25-27) Lightning Damage to Attacks", statOrder = { 1404 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (25-27) Lightning Damage to Attacks" }, } }, + ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1404 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, } }, + ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-4) to (36-39) Lightning Damage to Attacks", statOrder = { 1404 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (36-39) Lightning Damage to Attacks" }, } }, + ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (1-4) to (43-48) Lightning Damage to Attacks", statOrder = { 1404 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (43-48) Lightning Damage to Attacks" }, } }, + ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 1290 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 3 Physical Damage to Attacks" }, } }, + ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1290 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-5) Physical Damage to Attacks" }, } }, + ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (6-7) Physical Damage to Attacks", statOrder = { 1290 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (6-7) Physical Damage to Attacks" }, } }, + ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds (6-7) to (11-13) Chaos Damage to Attacks", statOrder = { 1411 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-7) to (11-13) Chaos Damage to Attacks" }, } }, + ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (8-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1411 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (8-9) to (14-17) Chaos Damage to Attacks" }, } }, + ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (10-11) to (18-21) Chaos Damage to Attacks", statOrder = { 1411 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (10-11) to (18-21) Chaos Damage to Attacks" }, } }, + ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (22-30) Life per second", statOrder = { 9447 }, level = 1, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3062329212] = { "Minions Regenerate (22-30) Life per second" }, } }, + ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (32-40) Life per second", statOrder = { 9447 }, level = 30, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3062329212] = { "Minions Regenerate (32-40) Life per second" }, } }, + ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (42-60) Life per second", statOrder = { 9447 }, level = 60, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3062329212] = { "Minions Regenerate (42-60) Life per second" }, } }, + ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "Regenerate (9-12) Energy Shield per second", statOrder = { 6549 }, level = 1, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2561836520] = { "Regenerate (9-12) Energy Shield per second" }, } }, + ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "Regenerate (13-16) Energy Shield per second", statOrder = { 6549 }, level = 30, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2561836520] = { "Regenerate (13-16) Energy Shield per second" }, } }, + ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "Regenerate (17-20) Energy Shield per second", statOrder = { 6549 }, level = 60, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2561836520] = { "Regenerate (17-20) Energy Shield per second" }, } }, + ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "Regenerate (9-12) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (9-12) Life per second" }, } }, + ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "Regenerate (13-16) Life per second", statOrder = { 1596 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (13-16) Life per second" }, } }, + ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "Regenerate (17-20) Life per second", statOrder = { 1596 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (17-20) Life per second" }, } }, + ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "Regenerate (1.1-2) Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (1.1-2) Mana per second" }, } }, + ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "Regenerate (2.1-3) Mana per second", statOrder = { 1605 }, level = 40, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (2.1-3) Mana per second" }, } }, + ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "Regenerate (3.3-4) Mana per second", statOrder = { 1605 }, level = 75, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3.3-4) Mana per second" }, } }, + ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 32, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-4)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 65, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 32, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(3-5)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 65, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(6-8)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 32, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(3-5)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 65, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(6-8)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrder = { 9408 }, level = 32, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2431643207] = { "Minions have (3-4)% chance to Blind on Hit with Attacks" }, } }, + ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrder = { 9408 }, level = 65, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2431643207] = { "Minions have (5-6)% chance to Blind on Hit with Attacks" }, } }, + ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrder = { 3467 }, level = 32, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (3-5)% chance to Taunt on Hit with Attacks" }, } }, + ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrder = { 3467 }, level = 65, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (6-8)% chance to Taunt on Hit with Attacks" }, } }, + ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9467 }, level = 32, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [2323739383] = { "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9467 }, level = 65, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "caster", "minion" }, tradeHashes = { [2323739383] = { "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["AbyssMinionPoisonOnHitChanceJewel1"] = { type = "Suffix", affix = "of Venom", "Minions have (10-15)% chance to Poison Enemies on Hit", statOrder = { 3209 }, level = 60, group = "AbyssMinionPoisonOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have (10-15)% chance to Poison Enemies on Hit" }, } }, + ["AbyssMinionIgniteOnHitChanceJewel1"] = { type = "Suffix", affix = "of Combustion", "Minions have (10-15)% chance to Ignite", statOrder = { 9416 }, level = 60, group = "AbyssMinionIgniteOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "minion", "ailment" }, tradeHashes = { [3945908658] = { "Minions have (10-15)% chance to Ignite" }, } }, + ["AbyssMinionAttacksBleedOnHitChanceJewel1"] = { type = "Suffix", affix = "of Bloodletting", "Minions have (10-15)% chance to cause Bleeding with Attacks", statOrder = { 2516 }, level = 60, group = "AbyssMinionAttacksBleedOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "bleed", "physical", "minion", "ailment" }, tradeHashes = { [3998967779] = { "Minions have (10-15)% chance to cause Bleeding with Attacks" }, } }, + ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6155 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [3257279374] = { "(30-40)% increased Damage with Hits and Ailments against Abyssal Monsters" }, } }, + ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 9429 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1086057912] = { "Minions deal (30-40)% increased Damage with Hits and Ailments against Abyssal Monsters" }, } }, + ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4621 }, level = 1, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [287491423] = { "(4-6)% additional Physical Damage Reduction against Abyssal Monsters" }, } }, + ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Nonflammability", "(31-40)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 50, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(31-40)% chance to Avoid being Ignited" }, } }, + ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Fireproofing", "(41-50)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 70, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(41-50)% chance to Avoid being Ignited" }, } }, + ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(31-40)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 50, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(31-40)% chance to Avoid being Frozen" }, } }, + ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Heating", "(41-50)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 70, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(41-50)% chance to Avoid being Frozen" }, } }, + ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(31-40)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 50, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(31-40)% chance to Avoid being Shocked" }, } }, + ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of the Lightning Rod", "(41-50)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 70, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(41-50)% chance to Avoid being Shocked" }, } }, + ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(31-40)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(31-40)% chance to Avoid being Poisoned" }, } }, + ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Immunity", "(41-50)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 70, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(41-50)% chance to Avoid being Poisoned" }, } }, + ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Stemming", "(31-40)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(31-40)% chance to Avoid Bleeding" }, } }, + ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of the Tourniquet", "(41-50)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 70, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(41-50)% chance to Avoid Bleeding" }, } }, + ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Balance", "(21-24)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 50, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, tradeHashes = { [4262448838] = { "(21-24)% chance to Avoid being Stunned" }, } }, + ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Poise", "(25-30)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 70, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150 }, modTags = { }, tradeHashes = { [4262448838] = { "(25-30)% chance to Avoid being Stunned" }, } }, + ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(10-30) to Accuracy Rating" }, } }, + ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(31-60) to Accuracy Rating" }, } }, + ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrder = { 1457 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-120) to Accuracy Rating" }, } }, + ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrder = { 1457 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(121-240) to Accuracy Rating" }, } }, + ["AbyssAccuracyRatingJewel5"] = { type = "Suffix", affix = "of the Deadeye", "+(241-300) to Accuracy Rating", statOrder = { 1457 }, level = 85, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 250, 500, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(241-300) to Accuracy Rating" }, } }, + ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } }, + ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% of Life per second", statOrder = { 2945 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (0.4-0.8)% of Life per second" }, } }, + ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrder = { 2944 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech (0.3-0.5)% of Damage as Life" }, } }, + ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (10-15)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (10-15)% increased Movement Speed" }, } }, + ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLifeForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, + ["AbyssFlatMinionAccuracy1"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(95-125) to Accuracy Rating", statOrder = { 9395 }, level = 1, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(95-125) to Accuracy Rating" }, } }, + ["AbyssFlatMinionAccuracy2_"] = { type = "Suffix", affix = "of Instruction", "Minions have +(126-180) to Accuracy Rating", statOrder = { 9395 }, level = 52, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(126-180) to Accuracy Rating" }, } }, + ["AbyssFlatMinionAccuracy3"] = { type = "Suffix", affix = "of Command", "Minions have +(181-250) to Accuracy Rating", statOrder = { 9395 }, level = 78, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(181-250) to Accuracy Rating" }, } }, + ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrder = { 2946 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(6-10)% to all Elemental Resistances" }, } }, + ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrder = { 2947 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-11)% to Chaos Resistance" }, } }, + ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrder = { 1561 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(36-60) to Armour" }, } }, + ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrder = { 1561 }, level = 40, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(61-100) to Armour" }, } }, + ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrder = { 1561 }, level = 75, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(101-180) to Armour" }, } }, + ["AbyssFlatArmourJewel4__"] = { type = "Prefix", affix = "Encased", "+(181-250) to Armour", statOrder = { 1561 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(181-250) to Armour" }, } }, + ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrder = { 1566 }, level = 1, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(36-60) to Evasion Rating" }, } }, + ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrder = { 1566 }, level = 40, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(61-100) to Evasion Rating" }, } }, + ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrder = { 1566 }, level = 75, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(101-180) to Evasion Rating" }, } }, + ["AbyssFlatEvasionJewel4_"] = { type = "Prefix", affix = "Beclouded", "+(181-250) to Evasion Rating", statOrder = { 1566 }, level = 83, group = "EvasionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(181-250) to Evasion Rating" }, } }, + ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(21-25) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(21-25) to maximum Energy Shield" }, } }, + ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(26-30) to maximum Energy Shield", statOrder = { 1580 }, level = 40, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(26-30) to maximum Energy Shield" }, } }, + ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(31-35) to maximum Energy Shield", statOrder = { 1580 }, level = 75, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(31-35) to maximum Energy Shield" }, } }, + ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(36-40) to maximum Energy Shield", statOrder = { 1580 }, level = 83, group = "EnergyShield", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(36-40) to maximum Energy Shield" }, } }, + ["AbyssCurseEffectJewel1"] = { type = "Prefix", affix = "Murmuring", "2% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "2% increased Effect of your Curses" }, } }, + ["AbyssCurseEffectJewel2"] = { type = "Prefix", affix = "Foul-tongued", "3% increased Effect of your Curses", statOrder = { 2622 }, level = 86, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "3% increased Effect of your Curses" }, } }, + ["AbyssCooldownRecoverySpeed1_"] = { type = "Prefix", affix = "Facilitating", "2% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "2% increased Cooldown Recovery Rate" }, } }, + ["AbyssCooldownRecoverySpeed2__"] = { type = "Prefix", affix = "Expediting", "3% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 86, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "3% increased Cooldown Recovery Rate" }, } }, + ["AbyssImpaleEffect1_"] = { type = "Prefix", affix = "Skewering", "(3-5)% increased Impale Effect", statOrder = { 7343 }, level = 75, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(3-5)% increased Impale Effect" }, } }, + ["AbyssImpaleEffect2_"] = { type = "Prefix", affix = "Lancing", "(6-8)% increased Impale Effect", statOrder = { 7343 }, level = 86, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(6-8)% increased Impale Effect" }, } }, + ["AbyssDamageRecoupedAsMana1"] = { type = "Prefix", affix = "Spurring", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 75, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, + ["AbyssDamageRecoupedAsMana2"] = { type = "Prefix", affix = "Motivating", "(4-5)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 86, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(4-5)% of Damage taken Recouped as Mana" }, } }, + ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5729 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "block" }, tradeHashes = { [1101206134] = { "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, + ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrder = { 4617 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3603666270] = { "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently" }, } }, + ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrder = { 9555 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "speed" }, tradeHashes = { [3854949926] = { "(3-4)% increased Movement Speed if you haven't taken Damage Recently" }, } }, + ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrder = { 6128 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "damage" }, tradeHashes = { [1072119541] = { "(15-20)% increased Damage if you've Killed Recently" }, } }, + ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 6040 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [2937483991] = { "+(8-14)% to Critical Strike Multiplier if you've Killed Recently" }, } }, + ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrder = { 4815 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2424133568] = { "(20-30)% increased Armour if you haven't Killed Recently" }, } }, + ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrder = { 4564 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [2806435316] = { "(20-30)% increased Accuracy Rating if you haven't Killed Recently" }, } }, + ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently", statOrder = { 6118 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [455556407] = { "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently" }, } }, + ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrder = { 5544 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3110907148] = { "(7-10)% increased Cast Speed if a Minion has been Killed Recently" }, } }, + ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently", statOrder = { 1997 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [412745376] = { "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently" }, } }, + ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrder = { 6586 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [734823525] = { "(25-35)% increased Evasion Rating while moving" }, } }, + ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrder = { 8325 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-25)% increased Mana Regeneration Rate while moving" }, } }, + ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "Regenerate (0.5-1)% of Life per second while moving", statOrder = { 7525 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [908516597] = { "Regenerate (0.5-1)% of Life per second while moving" }, } }, + ["AbyssPhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of the Inferno", "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9776 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 150, 150, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2810434465] = { "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently" }, } }, + ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4947 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently" }, } }, + ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5543 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1174076861] = { "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently" }, } }, + ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 6010 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "critical" }, tradeHashes = { [2856328513] = { "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } }, + ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrder = { 9402 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [4227567885] = { "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently" }, } }, + ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5729 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "block" }, tradeHashes = { [1101206134] = { "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } }, + ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrder = { 4297 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 0, 0 }, modTags = { "speed" }, tradeHashes = { [279227559] = { "(2-4)% increased Movement Speed if you've Killed Recently" }, } }, + ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3252 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "block" }, tradeHashes = { [852195286] = { "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } }, + ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(3-5)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(6-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(3-5)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(6-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(3-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3117 }, level = 60, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3166317791] = { "(3-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill" }, } }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(6-8)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3117 }, level = 84, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3166317791] = { "(6-8)% chance to Gain Unholy Might for 4 seconds on Melee Kill" }, } }, + ["AbyssSelfCurseEffectOnConsecratedGroundJewel1__"] = { type = "Suffix", affix = "of the Sanctum", "(15-25)% reduced Effect of Curses on you while on Consecrated Ground", statOrder = { 6079 }, level = 84, group = "EnchantmentConsecratedGround", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3444629796] = { "(15-25)% reduced Effect of Curses on you while on Consecrated Ground" }, } }, + ["AbyssAvoidElementalAilmentsWhileElusiveJewel1"] = { type = "Suffix", affix = "of Escape", "(10-20)% chance to Avoid Elemental Ailments while you have Elusive", statOrder = { 4991 }, level = 84, group = "EnchantmentElusive", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 500, 100, 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [2662268382] = { "(10-20)% chance to Avoid Elemental Ailments while you have Elusive" }, } }, + ["AbyssHinderedEnemiesLifeRegenerationRateJewel1"] = { type = "Suffix", affix = "of Enervation", "Enemies Hindered by you have (25-35)% reduced Life Regeneration rate", statOrder = { 6498 }, level = 84, group = "EnchantmentHinder", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3709502856] = { "Enemies Hindered by you have (25-35)% reduced Life Regeneration rate" }, } }, + ["AbyssBlindedEnemiesCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Clouding", "Enemies Blinded by you have (20-30)% reduced Critical Strike Chance", statOrder = { 6492 }, level = 84, group = "EnchantmentBlind", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have (20-30)% reduced Critical Strike Chance" }, } }, + ["AbyssWitheredEnemiesAllResistanceJewel1___"] = { type = "Suffix", affix = "of Languishing", "Enemies Withered by you have -2% to all Resistances", statOrder = { 6504 }, level = 84, group = "EnchantmentWither", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "damage" }, tradeHashes = { [1032614900] = { "Enemies Withered by you have -2% to all Resistances" }, } }, + ["AbyssMaimedEnemiesDamageOverTimeJewel1"] = { type = "Suffix", affix = "of Mangling", "Enemies Maimed by you take (4-5)% increased Damage Over Time", statOrder = { 6502 }, level = 84, group = "EnchantmentMaim", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "damage" }, tradeHashes = { [2745149002] = { "Enemies Maimed by you take (4-5)% increased Damage Over Time" }, } }, + ["AbyssIntimidatedEnemiesStunDurationJewel1"] = { type = "Suffix", affix = "of Daunting", "Enemies Intimidated by you have (10-15)% increased duration of stuns against them", statOrder = { 6501 }, level = 84, group = "EnchantmentIntimidate", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 100, 100, 0 }, modTags = { }, tradeHashes = { [1919892065] = { "Enemies Intimidated by you have (10-15)% increased duration of stuns against them" }, } }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-15)% Fire Resistance" }, } }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1383 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 8024 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, } }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-15)% Cold Resistance" }, } }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-10)% chance to Avoid Cold Damage from Hits" }, } }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1392 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 8022 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-15)% Lightning Resistance" }, } }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-10)% chance to Avoid Lightning Damage from Hits" }, } }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1403 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 8026 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7983 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2258 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2258 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(34-20) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2258 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(49-35) Physical Damage taken from Hits" }, } }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2258 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2296 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4627 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "(3-5)% additional Physical Damage Reduction while moving" }, } }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1289 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (6-8) to (9-11) Physical Damage" }, } }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 8028 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5107 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [511024200] = { "(1-2)% reduced Physical Damage taken over time" }, } }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-35)% to Chaos Resistance" }, } }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5812 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2266636761] = { "+(30-40)% Chaos Resistance against Damage Over Time" }, } }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1410 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 8021 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-19)% increased Chaos Damage" }, } }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6160 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(50-60)% increased Damage when on Full Life" }, } }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6160 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(100-120)% increased Damage when on Full Life" }, } }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1591, 1593 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(25-40) to maximum Life" }, } }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1591, 1593 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(2-3)% increased maximum Life" }, [3299347043] = { "+(15-25) to maximum Life" }, } }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+500 to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.3% of Life per second" }, } }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+1000 to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9795 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+(250-300) to Armour if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+500 to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+1000 to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6577 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+(250-300) to Evasion Rating if Hit an Enemy Recently" }, } }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6546 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently" }, } }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-50)% increased Armour" }, } }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(25-50)% increased Evasion Rating" }, } }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(25-50)% increased Energy Shield" }, } }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1575 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(25-50)% increased Armour and Evasion" }, } }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(25-50)% increased Armour and Energy Shield" }, } }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(25-50)% increased Evasion and Energy Shield" }, } }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(25-50)% increased Armour, Evasion and Energy Shield" }, } }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 8062 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2016708976] = { "+(10-20)% to Quality" }, } }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1745 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6584 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(3-4)% Chance to Block Attack Damage" }, } }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9240 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [335507772] = { "+(3-5) to maximum Fortification" }, } }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9257 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(20-30)% increased Energy Shield from Equipped Body Armour" }, } }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "20% chance to Defend with 200% of Armour" }, } }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5751 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(1-2)% chance to Evade Attack Hits" }, } }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2867 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7979 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7978 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "50% chance to Avoid being Poisoned" }, } }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "50% chance to Avoid Bleeding" }, } }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(30-40)% increased Damage with Ailments" }, } }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-20)% increased Damage with Ailments" }, } }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9382 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [424026624] = { "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies" }, } }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2520 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies" }, } }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3797 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances" }, } }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-60)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-120)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-25)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(26-32)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 2003 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-39)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 2003 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-49)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(37-50)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(51-65)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 2003 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(66-79)% increased Elemental Damage" }, } }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 2003 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-94)% increased Elemental Damage" }, } }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-30)% reduced Elemental Ailment Duration on you" }, } }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-30)% increased Elemental Damage" }, } }, + ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 576 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 576 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 235 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 573 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, tradeHashes = { [3425934849] = { "Socketed Skills have 18% increased Cast Speed" }, } }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 579 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, tradeHashes = { [1688834903] = { "Socketed Spells have 20% reduced Mana Cost" }, } }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 557 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 557 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 341 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 1 Maim" }, } }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 572 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, tradeHashes = { [2881124988] = { "Socketed Skills have 18% increased Attack Speed" }, } }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 560 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.3% of Attack Damage Leeched as Life" }, } }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8313 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently" }, } }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8313 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently" }, } }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8325 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(50-70)% increased Mana Regeneration Rate while moving" }, } }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-4) Mana per Enemy Hit with Attacks" }, } }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1604 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1609 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(8-12)% increased Mana Recovery rate" }, } }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4574 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9552 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4865 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2204 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [1311723478] = { "Ignore all Movement Penalties from Armour" }, } }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5471 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [628032624] = { "Cannot be Chilled or Frozen while moving" }, } }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5771 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(15-20)% chance to gain Onslaught when you use a Flask" }, } }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5487 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3592330380] = { "Cannot be Shocked or Ignited while moving" }, } }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6852 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5771 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(5-10)% chance to gain Onslaught when you use a Flask" }, } }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3494 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3494 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1996 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1996 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-74)% increased Damage" }, } }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (75-80)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-70)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1996 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (71-90)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1996 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (91-110)% increased Damage" }, } }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (111-130)% increased Damage" }, } }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1792 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1789 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1639 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(20-25)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } }, + ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } }, + ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 161 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 163 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 164 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, + ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 69 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9621 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 20% reduced Souls Per Use" }, } }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9621 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 40% reduced Souls Per Use" }, } }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(5-8)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(3-5)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3141 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3139 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } }, } \ No newline at end of file diff --git a/src/Data/ModJewelCharm.lua b/src/Data/ModJewelCharm.lua index 0a559dfc89..0efa546d8e 100644 --- a/src/Data/ModJewelCharm.lua +++ b/src/Data/ModJewelCharm.lua @@ -2,246 +2,246 @@ -- Item data (c) Grinding Gear Games return { - ["AnimalCharmMovementSpeedCannotBeBelowBase"] = { type = "Prefix", affix = "Juggernaut's", "Movement Speed cannot be modified to below Base Value", statOrder = { 3196 }, level = 70, group = "AnimalCharmMovementSpeedCannotBeBelowBase", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3875592188] = { "Movement Speed cannot be modified to below Base Value" }, } }, - ["AnimalCharmArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of the Juggernaut", "2% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4748 }, level = 81, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, tradeHashes = { [3362812763] = { "2% of Armour applies to Fire, Cold and Lightning Damage taken from Hits" }, } }, - ["AnimalCharmArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of the Juggernaut", "3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4748 }, level = 83, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [3362812763] = { "3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits" }, } }, - ["AnimalCharmEnduranceChargeOnStun1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1582887649] = { "(10-19)% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, - ["AnimalCharmEnduranceChargeOnStun2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 60, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1582887649] = { "(20-30)% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, - ["AnimalCharmAreaOfEffectPerEnduranceCharge1"] = { type = "Prefix", affix = "Juggernaut's", "(3-4)% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 1, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2448279015] = { "(3-4)% increased Area of Effect per Endurance Charge" }, } }, - ["AnimalCharmAreaOfEffectPerEnduranceCharge2"] = { type = "Prefix", affix = "Juggernaut's", "(5-6)% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 60, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2448279015] = { "(5-6)% increased Area of Effect per Endurance Charge" }, } }, - ["AnimalCharmEnchangeChargeWhenHit1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 1, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1514657588] = { "(10-19)% chance to gain an Endurance Charge when you are Hit" }, } }, - ["AnimalCharmEnchangeChargeWhenHit2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 60, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1514657588] = { "(20-30)% chance to gain an Endurance Charge when you are Hit" }, } }, - ["AnimalCharmChaosResistancePerEnduranceCharge1"] = { type = "Suffix", affix = "of the Juggernaut", "+(2-3)% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4210011075] = { "+(2-3)% to Chaos Resistance per Endurance Charge" }, } }, - ["AnimalCharmChaosResistancePerEnduranceCharge2"] = { type = "Suffix", affix = "of the Juggernaut", "+(4-5)% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 60, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4210011075] = { "+(4-5)% to Chaos Resistance per Endurance Charge" }, } }, - ["AnimalCharmLIfeRegenerationRate1"] = { type = "Suffix", affix = "of the Juggernaut", "(10-15)% increased Life Regeneration rate", statOrder = { 1577 }, level = 45, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [44972811] = { "(10-15)% increased Life Regeneration rate" }, } }, - ["AnimalCharmLIfeRegenerationRate2"] = { type = "Suffix", affix = "of the Juggernaut", "(16-20)% increased Life Regeneration rate", statOrder = { 1577 }, level = 72, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [44972811] = { "(16-20)% increased Life Regeneration rate" }, } }, - ["AnimalCharmTotemTauntEnemiesWhenSummoned"] = { type = "Suffix", affix = "of the Chieftain", "Totems Taunt Enemies around them for 2 seconds when Summoned", statOrder = { 10409 }, level = 45, group = "AnimalCharmTotemTauntEnemiesWhenSummoned", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2076876595] = { "Totems Taunt Enemies around them for 2 seconds when Summoned" }, } }, - ["AnimalCharmTotemRecoup1"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (5-7)% of Damage Taken by your Totems as Life", statOrder = { 9837 }, level = 1, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [825316273] = { "Recoup (5-7)% of Damage Taken by your Totems as Life" }, } }, - ["AnimalCharmTotemRecoup2"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (8-12)% of Damage Taken by your Totems as Life", statOrder = { 9837 }, level = 60, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [825316273] = { "Recoup (8-12)% of Damage Taken by your Totems as Life" }, } }, - ["AnimalCharmFireExplode"] = { type = "Prefix", affix = "Chieftain's", "Enemies you or your Totems Kill have 1% chance to Explode, dealing 250% of their maximum Life as Fire Damage", statOrder = { 6516 }, level = 70, group = "AnimalCharmFireExplode", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [215242678] = { "Enemies you or your Totems Kill have 1% chance to Explode, dealing 250% of their maximum Life as Fire Damage" }, } }, - ["AnimalCharmAshOnHittingRareUniqueEnemy1"] = { type = "Prefix", affix = "Chieftain's", "(5-10)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4694 }, level = 45, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [240642724] = { "(5-10)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit" }, } }, - ["AnimalCharmAshOnHittingRareUniqueEnemy2"] = { type = "Prefix", affix = "Chieftain's", "(11-20)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4694 }, level = 72, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [240642724] = { "(11-20)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit" }, } }, - ["AnimalCharmStrengthPercent1"] = { type = "Prefix", affix = "Chieftain's", "(3-5)% increased Strength", statOrder = { 1184 }, level = 1, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [734614379] = { "(3-5)% increased Strength" }, } }, - ["AnimalCharmStrengthPercent2"] = { type = "Prefix", affix = "Chieftain's", "(6-8)% increased Strength", statOrder = { 1184 }, level = 60, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [734614379] = { "(6-8)% increased Strength" }, } }, - ["AnimalCharmMaximumFireDamageResistance1"] = { type = "Suffix", affix = "of the Chieftain", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 45, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["AnimalCharmMaximumFireDamageResistance2"] = { type = "Suffix", affix = "of the Chieftain", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 72, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, - ["AnimalCharmIgniteDurationOnSelf1"] = { type = "Suffix", affix = "of the Chieftain", "(20-30)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, - ["AnimalCharmIgniteDurationOnSelf2"] = { type = "Suffix", affix = "of the Chieftain", "(31-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 60, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [986397080] = { "(31-50)% reduced Ignite Duration on you" }, } }, - ["AnimalCharmStunImmuneWith25Rage"] = { type = "Suffix", affix = "of the Berserker", "Cannot be Stunned while you have at least 25 Rage", statOrder = { 9792 }, level = 45, group = "AnimalCharmStunImmuneWith25Rage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2971900104] = { "Cannot be Stunned while you have at least 25 Rage" }, } }, - ["AnimalCharmAddedPhysicalDamageIfCritRecently1"] = { type = "Prefix", affix = "Berserker's", "Adds (5-7) to (14-17) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9248 }, level = 1, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2723101291] = { "Adds (5-7) to (14-17) Physical Damage if you've dealt a Critical Strike Recently" }, } }, - ["AnimalCharmAddedPhysicalDamageIfCritRecently2"] = { type = "Prefix", affix = "Berserker's", "Adds (8-12) to (18-22) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9248 }, level = 60, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2723101291] = { "Adds (8-12) to (18-22) Physical Damage if you've dealt a Critical Strike Recently" }, } }, - ["AnimalCharmMaximumRage1"] = { type = "Prefix", affix = "Berserker's", "+(2-3) to Maximum Rage", statOrder = { 9786 }, level = 1, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(2-3) to Maximum Rage" }, } }, - ["AnimalCharmMaximumRage2"] = { type = "Prefix", affix = "Berserker's", "+(4-5) to Maximum Rage", statOrder = { 9786 }, level = 60, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-5) to Maximum Rage" }, } }, - ["AnimalCharmWarcriesGrantRage1"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (2-3) Rage per 5 Power if you have less than 25 Rage", statOrder = { 5071 }, level = 1, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3608339129] = { "Warcries grant (2-3) Rage per 5 Power if you have less than 25 Rage" }, } }, - ["AnimalCharmWarcriesGrantRage2"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (4-5) Rage per 5 Power if you have less than 25 Rage", statOrder = { 5071 }, level = 60, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3608339129] = { "Warcries grant (4-5) Rage per 5 Power if you have less than 25 Rage" }, } }, - ["AnimalCharmLeechPercentIsInstant1"] = { type = "Suffix", affix = "of the Berserker", "(3-5)% of Leech is Instant", statOrder = { 7339 }, level = 45, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3561837752] = { "(3-5)% of Leech is Instant" }, } }, - ["AnimalCharmLeechPercentIsInstant2"] = { type = "Suffix", affix = "of the Berserker", "(6-8)% of Leech is Instant", statOrder = { 7339 }, level = 72, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [3561837752] = { "(6-8)% of Leech is Instant" }, } }, - ["AnimalCharmLeechIfKilledRecently1"] = { type = "Suffix", affix = "of the Berserker", "1% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7346 }, level = 1, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2770801535] = { "1% of Attack Damage Leeched as Life and Mana if you've Killed Recently" }, } }, - ["AnimalCharmLeechIfKilledRecently2"] = { type = "Suffix", affix = "of the Berserker", "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7346 }, level = 60, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2770801535] = { "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently" }, } }, - ["AnimalCharmCorpseExplodeOnWarcry1"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (3-4)% of their Life as Physical Damage", statOrder = { 9448 }, level = 70, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing (3-4)% of their Life as Physical Damage" }, } }, - ["AnimalCharmCorpseExplodeOnWarcry2"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (5-6)% of their Life as Physical Damage", statOrder = { 9448 }, level = 81, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing (5-6)% of their Life as Physical Damage" }, } }, - ["AnimalCharmStunImmuneWhileFortified"] = { type = "Suffix", affix = "of the Champion", "Cannot be Stunned while Fortified", statOrder = { 5425 }, level = 70, group = "AnimalCharmStunImmuneWhileFortified", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [2983926876] = { "Cannot be Stunned while Fortified" }, } }, - ["AnimalCharmTauntOnHitChance1"] = { type = "Prefix", affix = "Champion's", "(10-19)% chance to Taunt on Hit", statOrder = { 3430 }, level = 1, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3272283603] = { "(10-19)% chance to Taunt on Hit" }, } }, - ["AnimalCharmTauntOnHitChance2"] = { type = "Prefix", affix = "Champion's", "(20-30)% chance to Taunt on Hit", statOrder = { 3430 }, level = 60, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3272283603] = { "(20-30)% chance to Taunt on Hit" }, } }, - ["AnimalCharmBannersNoReservation"] = { type = "Prefix", affix = "Champion's", "Banner Skills have no Reservation", statOrder = { 4980 }, level = 45, group = "AnimalCharmBannersNoReservation", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2384457007] = { "Banner Skills have no Reservation" }, } }, - ["AnimalCharmRecoverBannerStagesOnPlacingBanner1"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (10-15)% of the Valour consumed for that Banner", statOrder = { 9557 }, level = 1, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3906150898] = { "When you leave your Banner's Area, recover (10-15)% of the Valour consumed for that Banner" }, } }, - ["AnimalCharmRecoverBannerStagesOnPlacingBanner2"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (16-25)% of the Valour consumed for that Banner", statOrder = { 9557 }, level = 60, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3906150898] = { "When you leave your Banner's Area, recover (16-25)% of the Valour consumed for that Banner" }, } }, - ["AnimalCharmGainAdrenalineOnReachingLowLife"] = { type = "Prefix", affix = "Champion's", "Gain Adrenaline for 4 seconds when you reach Low Life", statOrder = { 6716 }, level = 70, group = "AnimalCharmGainAdrenalineOnReachingLowLife", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [4205704547] = { "Gain Adrenaline for 4 seconds when you reach Low Life" }, } }, - ["AnimalCharmImpaleLastsForExtraHits"] = { type = "Prefix", affix = "Champion's", "Impales you inflict last 1 additional Hit", statOrder = { 7256 }, level = 81, group = "AnimalCharmImpaleLastsForExtraHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 10, 10, 0 }, modTags = { }, tradeHashes = { [3425951133] = { "Impales you inflict last 1 additional Hit" }, } }, - ["AnimalCharmFortifyOnMeleeHitChance1"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (5-10)% chance to Fortify", statOrder = { 2264 }, level = 45, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1166417447] = { "Melee Hits have (5-10)% chance to Fortify" }, } }, - ["AnimalCharmFortifyOnMeleeHitChance2"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (11-20)% chance to Fortify", statOrder = { 2264 }, level = 72, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [1166417447] = { "Melee Hits have (11-20)% chance to Fortify" }, } }, - ["AnimalCharmBleedExplode1"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (2-3)% of", "their Maximum Life as Physical Damage", statOrder = { 3481, 3481.1 }, level = 70, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing (2-3)% of", "their Maximum Life as Physical Damage" }, } }, - ["AnimalCharmBleedExplode2"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (4-5)% of", "their Maximum Life as Physical Damage", statOrder = { 3481, 3481.1 }, level = 81, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing (4-5)% of", "their Maximum Life as Physical Damage" }, } }, - ["AnimalCharmBlindOnHitVsBleedingEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (10-19)% chance to Blind", statOrder = { 4841 }, level = 1, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4204320922] = { "Attack Hits against Bleeding Enemies have (10-19)% chance to Blind" }, } }, - ["AnimalCharmBlindOnHitVsBleedingEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (20-30)% chance to Blind", statOrder = { 4841 }, level = 60, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4204320922] = { "Attack Hits against Bleeding Enemies have (20-30)% chance to Blind" }, } }, - ["AnimalCharmMaimOnHitVsBlindedEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (10-19)% chance to Maim", statOrder = { 4842 }, level = 1, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1291726336] = { "Attack Hits against Blinded Enemies have (10-19)% chance to Maim" }, } }, - ["AnimalCharmMaimOnHitVsBlindedEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (20-30)% chance to Maim", statOrder = { 4842 }, level = 60, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1291726336] = { "Attack Hits against Blinded Enemies have (20-30)% chance to Maim" }, } }, - ["AnimalCharmStunImmuneAgainstBlockedHits"] = { type = "Suffix", affix = "of the Gladiator", "Cannot be Stunned by Hits you Block", statOrder = { 5416 }, level = 45, group = "AnimalCharmStunImmuneAgainstBlockedHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3058290552] = { "Cannot be Stunned by Hits you Block" }, } }, - ["AnimalCharmMaximumBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 45, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4124805414] = { "+(1-2)% to maximum Chance to Block Attack Damage" }, } }, - ["AnimalCharmMaximumBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 72, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, - ["AnimalCharmOverwhelmIfBlockedinPast20Seconds"] = { type = "Prefix", affix = "Gladiator's", "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds", statOrder = { 7170 }, level = 1, group = "AnimalCharmOverwhelmIfBlockedinPast20Seconds", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3035931505] = { "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds" }, } }, - ["AnimalCharmArmourAndEvasionPerBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4758 }, level = 1, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2818854203] = { "+(3-4) to Armour and Evasion Rating per 1% Chance to Block Attack Damage" }, } }, - ["AnimalCharmArmourAndEvasionPerBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4758 }, level = 60, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2818854203] = { "+(5-6) to Armour and Evasion Rating per 1% Chance to Block Attack Damage" }, } }, - ["AnimalCharmAttackBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1702195217] = { "+(3-4)% Chance to Block Attack Damage" }, } }, - ["AnimalCharmAttackBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 60, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1702195217] = { "+(5-6)% Chance to Block Attack Damage" }, } }, - ["AnimalCharmAttackSpeedOnKillingRareUnique1"] = { type = "Prefix", affix = "Slayer's", "Gain (4-7)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6737 }, level = 1, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3243270997] = { "Gain (4-7)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy" }, } }, - ["AnimalCharmAttackSpeedOnKillingRareUnique2"] = { type = "Prefix", affix = "Slayer's", "Gain (8-12)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6737 }, level = 60, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3243270997] = { "Gain (8-12)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy" }, } }, - ["AnimalCharmPhysicalReflectImmune"] = { type = "Suffix", affix = "of the Slayer", "Cannot take Reflected Physical Damage", statOrder = { 5447 }, level = 45, group = "AnimalCharmPhysicalReflectImmune", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [249805317] = { "Cannot take Reflected Physical Damage" }, } }, - ["AnimalCharmStunImmuneWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "Cannot be Stunned while Leeching", statOrder = { 3212 }, level = 70, group = "AnimalCharmStunImmuneWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [1887508417] = { "Cannot be Stunned while Leeching" }, } }, - ["AnimalCharmUnaffectedbyBleedingWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "You are Unaffected by Bleeding while Leeching", statOrder = { 10455 }, level = 70, group = "AnimalCharmUnaffectedbyBleedingWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [2291122510] = { "You are Unaffected by Bleeding while Leeching" }, } }, - ["AnimalCharmOverkillLeech1"] = { type = "Suffix", affix = "of the Slayer", "(4-7)% of Overkill Damage is Leeched as Life", statOrder = { 3209 }, level = 1, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3511523149] = { "(4-7)% of Overkill Damage is Leeched as Life" }, } }, - ["AnimalCharmOverkillLeech2"] = { type = "Suffix", affix = "of the Slayer", "(8-12)% of Overkill Damage is Leeched as Life", statOrder = { 3209 }, level = 60, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3511523149] = { "(8-12)% of Overkill Damage is Leeched as Life" }, } }, - ["AnimalCharmMaximumAmountPerLifeLeech1"] = { type = "Prefix", affix = "Slayer's", "(10-20)% increased Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 45, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3101897388] = { "(10-20)% increased Maximum Recovery per Life Leech" }, } }, - ["AnimalCharmMaximumAmountPerLifeLeech2"] = { type = "Prefix", affix = "Slayer's", "(21-30)% increased Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 72, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [3101897388] = { "(21-30)% increased Maximum Recovery per Life Leech" }, } }, - ["AnimalCharmAreaOfEffectIfKilledRecently1"] = { type = "Prefix", affix = "Slayer's", "(4-7)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 1, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(4-7)% increased Area of Effect if you've Killed Recently" }, } }, - ["AnimalCharmAreaOfEffectIfKilledRecently2"] = { type = "Prefix", affix = "Slayer's", "(8-12)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 60, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(8-12)% increased Area of Effect if you've Killed Recently" }, } }, - ["AnimalCharmCullingStrike"] = { type = "Prefix", affix = "Slayer's", "Culling Strike", statOrder = { 2039 }, level = 45, group = "AnimalCharmCullingStrike", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["AnimalCharmStrengthAndIntelligence1"] = { type = "Suffix", affix = "of the Inquisitor", "+(20-30) to Strength and Intelligence", statOrder = { 461 }, level = 1, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2543977012] = { "+(20-30) to Strength and Intelligence" }, } }, - ["AnimalCharmStrengthAndIntelligence2"] = { type = "Suffix", affix = "of the Inquisitor", "+(31-40) to Strength and Intelligence", statOrder = { 461 }, level = 60, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2543977012] = { "+(31-40) to Strength and Intelligence" }, } }, - ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect1"] = { type = "Prefix", affix = "Inquisitor's", "(20-30)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9504 }, level = 1, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3772078232] = { "(20-30)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } }, - ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect2"] = { type = "Prefix", affix = "Inquisitor's", "(31-40)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9504 }, level = 60, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3772078232] = { "(31-40)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } }, - ["AnimalCharmConsecratedGroundLingerDuration"] = { type = "Suffix", affix = "of the Inquisitor", "Effects of Consecrated Ground you create Linger for 2 seconds", statOrder = { 10690 }, level = 70, group = "AnimalCharmConsecratedGroundLingerDuration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 2 seconds" }, } }, - ["AnimalCharmConsecratedGroundDamageTaken1"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (5-6)% increased Damage taken to Enemies", statOrder = { 5848 }, level = 45, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2474564741] = { "Consecrated Ground you create applies (5-6)% increased Damage taken to Enemies" }, } }, - ["AnimalCharmConsecratedGroundDamageTaken2"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (7-10)% increased Damage taken to Enemies", statOrder = { 5848 }, level = 72, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [2474564741] = { "Consecrated Ground you create applies (7-10)% increased Damage taken to Enemies" }, } }, - ["AnimalCharmElementalPenetration1"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (3-4)% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 1, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [697807915] = { "Damage Penetrates (3-4)% of Enemy Elemental Resistances" }, } }, - ["AnimalCharmElementalPenetration2"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (5-6)% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 60, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [697807915] = { "Damage Penetrates (5-6)% of Enemy Elemental Resistances" }, } }, - ["AnimalCharmConsecratedGroundVsRareUnique1"] = { type = "Suffix", affix = "of the Inquisitor", "(10-19)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5903 }, level = 1, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3135669941] = { "(10-19)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds" }, } }, - ["AnimalCharmConsecratedGroundVsRareUnique2"] = { type = "Suffix", affix = "of the Inquisitor", "(20-30)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5903 }, level = 60, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3135669941] = { "(20-30)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds" }, } }, - ["AnimalCharmCriticalStrikeChanceIfNotCritRecently1"] = { type = "Prefix", affix = "Inquisitor's", "(50-70)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5927 }, level = 1, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2856328513] = { "(50-70)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } }, - ["AnimalCharmCriticalStrikeChanceIfNotCritRecently2"] = { type = "Prefix", affix = "Inquisitor's", "(71-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5927 }, level = 60, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2856328513] = { "(71-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } }, - ["AnimalCharmDamageRemovedFromManaBeforeLife1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 70, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [458438597] = { "(1-2)% of Damage is taken from Mana before Life" }, } }, - ["AnimalCharmDamageRemovedFromManaBeforeLife2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 81, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, tradeHashes = { [458438597] = { "3% of Damage is taken from Mana before Life" }, } }, - ["AnimalCharmManaReservationEfficiency1"] = { type = "Prefix", affix = "Hierophant's", "(4-7)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 45, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4237190083] = { "(4-7)% increased Mana Reservation Efficiency of Skills" }, } }, - ["AnimalCharmManaReservationEfficiency2"] = { type = "Prefix", affix = "Hierophant's", "(8-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 72, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [4237190083] = { "(8-12)% increased Mana Reservation Efficiency of Skills" }, } }, - ["AnimalCharmManaToAddAsExtraEnergyShield1"] = { type = "Suffix", affix = "of the Hierophant", "Gain (2-3)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2663376056] = { "Gain (2-3)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["AnimalCharmManaToAddAsExtraEnergyShield2"] = { type = "Suffix", affix = "of the Hierophant", "Gain (4-5)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 60, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2663376056] = { "Gain (4-5)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["AnimalCharmArcaneSurgeOnHit"] = { type = "Prefix", affix = "Hierophant's", "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", statOrder = { 6732 }, level = 70, group = "AnimalCharmArcaneSurgeOnHit", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [4286031492] = { "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell" }, } }, - ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge1"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (20-30)% reduced Effect on you while you have Arcane Surge", statOrder = { 4331 }, level = 1, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3014823981] = { "Non-Damaging Ailments have (20-30)% reduced Effect on you while you have Arcane Surge" }, } }, - ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge2"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (31-40)% reduced Effect on you while you have Arcane Surge", statOrder = { 4331 }, level = 60, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3014823981] = { "Non-Damaging Ailments have (31-40)% reduced Effect on you while you have Arcane Surge" }, } }, - ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6094 }, level = 1, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2762445213] = { "(1-2)% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, - ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6094 }, level = 60, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2762445213] = { "3% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, - ["AnimalCharmMinimumEnduranceAndPowerCharges"] = { type = "Suffix", affix = "of the Hierophant", "+1 to Minimum Endurance Charges", "+1 to Minimum Power Charges", statOrder = { 1803, 1813 }, level = 70, group = "AnimalCharmMinimumEnduranceAndPowerCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, - ["AnimalCharmChanceToSummonTwoTotems1"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (20-30)% chance to Summon two Totems instead of one", statOrder = { 5723 }, level = 1, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1870732546] = { "Skills that Summon a Totem have (20-30)% chance to Summon two Totems instead of one" }, } }, - ["AnimalCharmChanceToSummonTwoTotems2"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (31-50)% chance to Summon two Totems instead of one", statOrder = { 5723 }, level = 60, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1870732546] = { "Skills that Summon a Totem have (31-50)% chance to Summon two Totems instead of one" }, } }, - ["AnimalCharmBlockChanceIfAttackedRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(4-5)% Chance to Block Attack Damage", statOrder = { 10637 }, level = 1, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1453771408] = { "If you've Attacked Recently, you and nearby Allies have +(4-5)% Chance to Block Attack Damage" }, } }, - ["AnimalCharmBlockChanceIfAttackedRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(6-8)% Chance to Block Attack Damage", statOrder = { 10637 }, level = 60, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1453771408] = { "If you've Attacked Recently, you and nearby Allies have +(6-8)% Chance to Block Attack Damage" }, } }, - ["AnimalCharmSpellBlockChanceIfCastSpellRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(4-5)% Chance to Block Spell Damage", statOrder = { 10638 }, level = 1, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1952992278] = { "If you've Cast a Spell Recently, you and nearby Allies have +(4-5)% Chance to Block Spell Damage" }, } }, - ["AnimalCharmSpellBlockChanceIfCastSpellRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(6-8)% Chance to Block Spell Damage", statOrder = { 10638 }, level = 60, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1952992278] = { "If you've Cast a Spell Recently, you and nearby Allies have +(6-8)% Chance to Block Spell Damage" }, } }, - ["AnimalCharmRemoveCursesAndAilmentsEvery10seconds"] = { type = "Suffix", affix = "of the Guardian", "Every 4 seconds, remove Curses and Ailments from you", statOrder = { 3785 }, level = 45, group = "AnimalCharmRemoveCursesAndAilmentsEvery10seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2189230542] = { "Every 4 seconds, remove Curses and Ailments from you" }, } }, - ["AnimalCharmReservedManaGrantedAsArmour1"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (3-4)% of your Reserved Mana to you and nearby Allies", statOrder = { 3783 }, level = 45, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [681709908] = { "Grants Armour equal to (3-4)% of your Reserved Mana to you and nearby Allies" }, } }, - ["AnimalCharmReservedManaGrantedAsArmour2"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (5-6)% of your Reserved Mana to you and nearby Allies", statOrder = { 3783 }, level = 72, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [681709908] = { "Grants Armour equal to (5-6)% of your Reserved Mana to you and nearby Allies" }, } }, - ["AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments"] = { type = "Suffix", affix = "of the Guardian", "Enemies in your Link Beams cannot apply Elemental Ailments", statOrder = { 7500 }, level = 45, group = "AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2556900184] = { "Enemies in your Link Beams cannot apply Elemental Ailments" }, } }, - ["AnimalCharmLifeRegenerationForASecondEvery10Seconds1"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 10% of Life over one second", statOrder = { 3786 }, level = 1, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 10% of Life over one second" }, } }, - ["AnimalCharmLifeRegenerationForASecondEvery10Seconds2"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 20% of Life over one second", statOrder = { 3786 }, level = 60, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 20% of Life over one second" }, } }, - ["AnimalCharmNearbyEnemiesCannotGainCharges"] = { type = "Prefix", affix = "Guardian's", "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges", statOrder = { 3781 }, level = 45, group = "AnimalCharmNearbyEnemiesCannotGainCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4031527864] = { "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges" }, } }, - ["AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby"] = { type = "Prefix", affix = "Guardian's", "While there are at least five nearby Allies, you and nearby Allies have Onslaught", statOrder = { 6925 }, level = 45, group = "AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3730497630] = { "While there are at least five nearby Allies, you and nearby Allies have Onslaught" }, } }, - ["AnimalCharmExposureExtraResistance1"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(5-4)% to the affected Resistance", statOrder = { 6523 }, level = 1, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3306713700] = { "Exposure you inflict applies an extra -(5-4)% to the affected Resistance" }, } }, - ["AnimalCharmExposureExtraResistance2"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(7-6)% to the affected Resistance", statOrder = { 6523 }, level = 60, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3306713700] = { "Exposure you inflict applies an extra -(7-6)% to the affected Resistance" }, } }, - ["AnimalCharmAllDamageCanIgnite"] = { type = "Prefix", affix = "Elementalist's", "All Damage can Ignite", statOrder = { 4625 }, level = 81, group = "AnimalCharmAllDamageCanIgnite", weightKey = { "int_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, - ["AnimalCharmShockMinimumDamageIncrease1"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (5-7)%", statOrder = { 4442 }, level = 45, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1712740586] = { "Shocks from your Hits always increase Damage taken by at least (5-7)%" }, } }, - ["AnimalCharmShockMinimumDamageIncrease2"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (8-10)%", statOrder = { 4442 }, level = 72, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [1712740586] = { "Shocks from your Hits always increase Damage taken by at least (8-10)%" }, } }, - ["AnimalCharmChillMinimumSlow1"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (3-4)%", statOrder = { 4440 }, level = 45, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2774670797] = { "Chills from your Hits always reduce Action Speed by at least (3-4)%" }, } }, - ["AnimalCharmChillMinimumSlow2"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (5-6)%", statOrder = { 4440 }, level = 72, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2774670797] = { "Chills from your Hits always reduce Action Speed by at least (5-6)%" }, } }, - ["AnimalCharmGolemBuffEffect1"] = { type = "Suffix", affix = "of the Elementalist", "(15-20)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 1, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(15-20)% increased Effect of Buffs granted by your Golems" }, } }, - ["AnimalCharmGolemBuffEffect2"] = { type = "Suffix", affix = "of the Elementalist", "(21-35)% increased Effect of Buffs granted by your Golems", statOrder = { 6894 }, level = 60, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(21-35)% increased Effect of Buffs granted by your Golems" }, } }, - ["AnimalCharmIgniteFreezeShockChance1"] = { type = "Prefix", affix = "Elementalist's", "(10-15)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [800141891] = { "(10-15)% chance to Freeze, Shock and Ignite" }, } }, - ["AnimalCharmIgniteFreezeShockChance2"] = { type = "Prefix", affix = "Elementalist's", "(16-25)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 60, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [800141891] = { "(16-25)% chance to Freeze, Shock and Ignite" }, } }, - ["AnimalCharmElementalReflectImmune"] = { type = "Suffix", affix = "of the Elementalist", "Cannot take Reflected Elemental Damage", statOrder = { 5446 }, level = 45, group = "AnimalCharmElementalReflectImmune", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1827932821] = { "Cannot take Reflected Elemental Damage" }, } }, - ["AnimalCharmIgnoreHexproofEnemies"] = { type = "Prefix", affix = "Occultist's", "Your Hexes can affect Hexproof Enemies", statOrder = { 2600 }, level = 45, group = "AnimalCharmIgnoreHexproofEnemies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1367119630] = { "Your Hexes can affect Hexproof Enemies" }, } }, - ["AnimalCharmChaosExplode1"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (6-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3306 }, level = 70, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1763939859] = { "Cursed Enemies you or your Minions Kill have a (6-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, - ["AnimalCharmChaosExplode2"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (11-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3306 }, level = 81, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [1763939859] = { "Cursed Enemies you or your Minions Kill have a (11-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, - ["AnimalCharmAreaofEffectPerPowerCharge1"] = { type = "Prefix", affix = "Occultist's", "(2-3)% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3094501804] = { "(2-3)% increased Area of Effect per Power Charge" }, } }, - ["AnimalCharmAreaofEffectPerPowerCharge2"] = { type = "Prefix", affix = "Occultist's", "4% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 60, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3094501804] = { "4% increased Area of Effect per Power Charge" }, } }, - ["AnimalCharmCurseEffect1"] = { type = "Prefix", affix = "Occultist's", "(3-5)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2353576063] = { "(3-5)% increased Effect of your Curses" }, } }, - ["AnimalCharmCurseEffect2"] = { type = "Prefix", affix = "Occultist's", "(6-8)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2353576063] = { "(6-8)% increased Effect of your Curses" }, } }, - ["AnimalCharmNearbyEnemiesAreChilled"] = { type = "Suffix", affix = "of the Occultist", "Nearby Enemies are Chilled", statOrder = { 9451 }, level = 70, group = "AnimalCharmNearbyEnemiesAreChilled", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2480873346] = { "Nearby Enemies are Chilled" }, } }, - ["AnimalCharmEnergyShieldRegeneration1"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } }, - ["AnimalCharmEnergyShieldRegeneration2"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (2-3)% of Energy Shield per second", statOrder = { 2646 }, level = 60, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3594640492] = { "Regenerate (2-3)% of Energy Shield per second" }, } }, - ["AnimalCharmSpellHinderOnHitChance1"] = { type = "Suffix", affix = "of the Occultist", "(10-19)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 1, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3002506763] = { "(10-19)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["AnimalCharmSpellHinderOnHitChance2"] = { type = "Suffix", affix = "of the Occultist", "(20-30)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 60, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3002506763] = { "(20-30)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["AnimalCharmMinionUnholyMightChance1"] = { type = "Prefix", affix = "Necromancer's", "Minions have (10-19)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3131367308] = { "Minions have (10-19)% chance to gain Unholy Might for 4 seconds on Kill" }, } }, - ["AnimalCharmMinionUnholyMightChance2"] = { type = "Prefix", affix = "Necromancer's", "Minions have (20-30)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 60, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3131367308] = { "Minions have (20-30)% chance to gain Unholy Might for 4 seconds on Kill" }, } }, - ["AnimalCharmOfferingEffect1"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (15-20)% increased Effect on you", statOrder = { 1170 }, level = 1, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2071120096] = { "Your Offerings have (15-20)% increased Effect on you" }, } }, - ["AnimalCharmOfferingEffect2"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (21-30)% increased Effect on you", statOrder = { 1170 }, level = 60, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2071120096] = { "Your Offerings have (21-30)% increased Effect on you" }, } }, - ["AnimalCharmRegenerateManaOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9897 }, level = 1, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3721828090] = { "Regenerate (2-3)% of Mana over 2 seconds when you Consume a corpse" }, } }, - ["AnimalCharmRegenerateManaOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9897 }, level = 60, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3721828090] = { "Regenerate (4-5)% of Mana over 2 seconds when you Consume a corpse" }, } }, - ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9896 }, level = 1, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2900084972] = { "Regenerate (2-3)% of Energy Shield over 2 seconds when you Consume a corpse" }, } }, - ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9896 }, level = 60, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2900084972] = { "Regenerate (4-5)% of Energy Shield over 2 seconds when you Consume a corpse" }, } }, - ["AnimalCharmElementalResistancesForAuraAffectedAllies1"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(10-14)% to Elemental Resistances", statOrder = { 4070 }, level = 1, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [319842716] = { "You and nearby Allies have +(10-14)% to Elemental Resistances" }, } }, - ["AnimalCharmElementalResistancesForAuraAffectedAllies2"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(15-20)% to Elemental Resistances", statOrder = { 4070 }, level = 60, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [319842716] = { "You and nearby Allies have +(15-20)% to Elemental Resistances" }, } }, - ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield1"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (3-5)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10692 }, level = 45, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2268802111] = { "Minions gain Added Physical Damage equal to (3-5)% of Maximum Energy Shield on your Equipped Helmet" }, } }, - ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield2"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (6-10)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10692 }, level = 72, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2268802111] = { "Minions gain Added Physical Damage equal to (6-10)% of Maximum Energy Shield on your Equipped Helmet" }, } }, - ["AnimalCharmCorpseLife1"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (5-10)% increased Maximum Life", statOrder = { 9163 }, level = 45, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [586568910] = { "Corpses you Spawn have (5-10)% increased Maximum Life" }, } }, - ["AnimalCharmCorpseLife2"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (11-20)% increased Maximum Life", statOrder = { 9163 }, level = 72, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [586568910] = { "Corpses you Spawn have (11-20)% increased Maximum Life" }, } }, - ["AnimalCharmMinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (5-8)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 1, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3119612865] = { "Minions have (5-8)% additional Physical Damage Reduction" }, } }, - ["AnimalCharmMinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (9-12)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 60, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3119612865] = { "Minions have (9-12)% additional Physical Damage Reduction" }, } }, - ["AnimalCharmPowerChargeOnCriticalStrike1"] = { type = "Prefix", affix = "Assassin's", "(10-15)% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3814876985] = { "(10-15)% chance to gain a Power Charge on Critical Strike" }, } }, - ["AnimalCharmPowerChargeOnCriticalStrike2"] = { type = "Prefix", affix = "Assassin's", "(16-25)% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 60, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3814876985] = { "(16-25)% chance to gain a Power Charge on Critical Strike" }, } }, - ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge1"] = { type = "Prefix", affix = "Assassin's", "+(2-3)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4164870816] = { "+(2-3)% to Critical Strike Multiplier per Power Charge" }, } }, - ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge2"] = { type = "Prefix", affix = "Assassin's", "+(4-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 60, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4164870816] = { "+(4-5)% to Critical Strike Multiplier per Power Charge" }, } }, - ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges1"] = { type = "Prefix", affix = "Assassin's", "+(0.4-0.6)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3470 }, level = 1, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1166971727] = { "+(0.4-0.6)% Critical Strike Chance while at maximum Power Charges" }, } }, - ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges2"] = { type = "Prefix", affix = "Assassin's", "+(0.61-1)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3470 }, level = 60, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1166971727] = { "+(0.61-1)% Critical Strike Chance while at maximum Power Charges" }, } }, - ["AnimalCharmCriticalStrikesHaveCullingStrike"] = { type = "Prefix", affix = "Assassin's", "Critical Strikes have Culling Strike", statOrder = { 3440 }, level = 45, group = "AnimalCharmCriticalStrikesHaveCullingStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, - ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies1"] = { type = "Prefix", affix = "Assassin's", "(80-120)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3766 }, level = 1, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [47954913] = { "(80-120)% increased Critical Strike Chance against Enemies that are on Full Life" }, } }, - ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies2"] = { type = "Prefix", affix = "Assassin's", "(130-160)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3766 }, level = 60, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [47954913] = { "(130-160)% increased Critical Strike Chance against Enemies that are on Full Life" }, } }, - ["AnimalCharmCriticalStrikeDamageCannotBeReflected"] = { type = "Suffix", affix = "of the Assassin", "Damage from your Critical Strikes cannot be Reflected", statOrder = { 5947 }, level = 45, group = "AnimalCharmCriticalStrikeDamageCannotBeReflected", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1857928882] = { "Damage from your Critical Strikes cannot be Reflected" }, } }, - ["AnimalCharmElusiveEffect1"] = { type = "Suffix", affix = "of the Assassin", "(10-15)% increased Elusive Effect", statOrder = { 6350 }, level = 45, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(10-15)% increased Elusive Effect" }, } }, - ["AnimalCharmElusiveEffect2"] = { type = "Suffix", affix = "of the Assassin", "(16-25)% increased Elusive Effect", statOrder = { 6350 }, level = 72, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(16-25)% increased Elusive Effect" }, } }, - ["AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive"] = { type = "Suffix", affix = "of the Assassin", "You take no Extra Damage from Critical Strikes while Elusive", statOrder = { 9985 }, level = 70, group = "AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [2953854044] = { "You take no Extra Damage from Critical Strikes while Elusive" }, } }, - ["AnimalCharmPoisonDurationPerPoisonAppliedRecently1"] = { type = "Prefix", affix = "Assassin's", "(1-2)% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9687, 9687.1 }, level = 1, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [86516932] = { "(1-2)% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%" }, } }, - ["AnimalCharmPoisonDurationPerPoisonAppliedRecently2"] = { type = "Prefix", affix = "Assassin's", "3% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9687, 9687.1 }, level = 60, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [86516932] = { "3% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%" }, } }, - ["AnimalCharmCannotBeBlinded"] = { type = "Suffix", affix = "of the Saboteur", "Cannot be Blinded", statOrder = { 2974 }, level = 45, group = "AnimalCharmCannotBeBlinded", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["AnimalCharmBlindOnHitChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-10)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(5-10)% Global chance to Blind Enemies on hit" }, } }, - ["AnimalCharmBlindOnHitChance2"] = { type = "Suffix", affix = "of the Saboteur", "(11-15)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 60, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(11-15)% Global chance to Blind Enemies on hit" }, } }, - ["AnimalCharmMineAuraEffect1"] = { type = "Prefix", affix = "Saboteur's", "(20-30)% increased Effect of Auras from Mines", statOrder = { 9220 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2121424530] = { "(20-30)% increased Effect of Auras from Mines" }, } }, - ["AnimalCharmMineAuraEffect2"] = { type = "Prefix", affix = "Saboteur's", "(31-50)% increased Effect of Auras from Mines", statOrder = { 9220 }, level = 60, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2121424530] = { "(31-50)% increased Effect of Auras from Mines" }, } }, - ["AnimalCharmTakeHalfAreaDamageChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-6)% chance to take 50% less Area Damage from Hits", statOrder = { 10352 }, level = 45, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4253777805] = { "(5-6)% chance to take 50% less Area Damage from Hits" }, } }, - ["AnimalCharmTakeHalfAreaDamageChance2"] = { type = "Suffix", affix = "of the Saboteur", "(7-10)% chance to take 50% less Area Damage from Hits", statOrder = { 10352 }, level = 72, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [4253777805] = { "(7-10)% chance to take 50% less Area Damage from Hits" }, } }, - ["AnimalCharmChanceFor150%AreaDamage1"] = { type = "Prefix", affix = "Saboteur's", "Hits have (5-6)% chance to deal 50% more Area Damage", statOrder = { 9598 }, level = 1, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2289189129] = { "Hits have (5-6)% chance to deal 50% more Area Damage" }, } }, - ["AnimalCharmChanceFor150%AreaDamage2"] = { type = "Prefix", affix = "Saboteur's", "Hits have (7-10)% chance to deal 50% more Area Damage", statOrder = { 9598 }, level = 60, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2289189129] = { "Hits have (7-10)% chance to deal 50% more Area Damage" }, } }, - ["AnimalCharmCooldownRecoveryRate1"] = { type = "Prefix", affix = "Saboteur's", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 70, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-8)% increased Cooldown Recovery Rate" }, } }, - ["AnimalCharmCooldownRecoveryRate2"] = { type = "Prefix", affix = "Saboteur's", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 81, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(9-12)% increased Cooldown Recovery Rate" }, } }, - ["AnimalCharmChanceToThrow4AdditionalTraps1"] = { type = "Prefix", affix = "Saboteur's", "(2-3)% chance to throw up to 4 additional Traps", statOrder = { 5724 }, level = 1, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3132227798] = { "(2-3)% chance to throw up to 4 additional Traps" }, } }, - ["AnimalCharmChanceToThrow4AdditionalTraps2"] = { type = "Prefix", affix = "Saboteur's", "(4-5)% chance to throw up to 4 additional Traps", statOrder = { 5724 }, level = 60, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3132227798] = { "(4-5)% chance to throw up to 4 additional Traps" }, } }, - ["AnimalCharmCritVsBurningAndShockedEnemies1"] = { type = "Prefix", affix = "Saboteur's", "+(10-15)% to Critical Strike Multiplier against Burning Enemies", "(20-30)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3188, 5913 }, level = 1, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(20-30)% increased Critical Strike Chance against Shocked Enemies" }, [1963942874] = { "+(10-15)% to Critical Strike Multiplier against Burning Enemies" }, } }, - ["AnimalCharmCritVsBurningAndShockedEnemies2"] = { type = "Prefix", affix = "Saboteur's", "+(16-25)% to Critical Strike Multiplier against Burning Enemies", "(31-50)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3188, 5913 }, level = 60, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(31-50)% increased Critical Strike Chance against Shocked Enemies" }, [1963942874] = { "+(16-25)% to Critical Strike Multiplier against Burning Enemies" }, } }, - ["AnimalCharmChargeDuration1"] = { type = "Prefix", affix = "Trickster's", "(40-60)% increased Charge Duration", statOrder = { 5003 }, level = 1, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2171629017] = { "(40-60)% increased Charge Duration" }, } }, - ["AnimalCharmChargeDuration2"] = { type = "Prefix", affix = "Trickster's", "(61-100)% increased Charge Duration", statOrder = { 5003 }, level = 60, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2171629017] = { "(61-100)% increased Charge Duration" }, } }, - ["AnimalCharmLifeManaESOnKill1"] = { type = "Suffix", affix = "of the Trickster", "Recover 1% of Life on Kill", "Recover 1% of Energy Shield on Kill", "Recover 1% of Mana on Kill", statOrder = { 1749, 1750, 1751 }, level = 1, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2406605753] = { "Recover 1% of Energy Shield on Kill" }, [1030153674] = { "Recover 1% of Mana on Kill" }, [2023107756] = { "Recover 1% of Life on Kill" }, } }, - ["AnimalCharmLifeManaESOnKill2"] = { type = "Suffix", affix = "of the Trickster", "Recover 2% of Life on Kill", "Recover 2% of Energy Shield on Kill", "Recover 2% of Mana on Kill", statOrder = { 1749, 1750, 1751 }, level = 60, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2406605753] = { "Recover 2% of Energy Shield on Kill" }, [1030153674] = { "Recover 2% of Mana on Kill" }, [2023107756] = { "Recover 2% of Life on Kill" }, } }, - ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress1"] = { type = "Suffix", affix = "of the Trickster", "(5-8)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3423 }, level = 45, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3410306164] = { "(5-8)% chance for Energy Shield Recharge to start when you Suppress Spell Damage" }, } }, - ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress2"] = { type = "Suffix", affix = "of the Trickster", "(9-12)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3423 }, level = 72, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [3410306164] = { "(9-12)% chance for Energy Shield Recharge to start when you Suppress Spell Damage" }, } }, - ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage1"] = { type = "Prefix", affix = "Trickster's", "(7-13)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4357 }, level = 45, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1741279188] = { "(7-13)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage" }, } }, - ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage2"] = { type = "Prefix", affix = "Trickster's", "(17-23)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4357 }, level = 72, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [1741279188] = { "(17-23)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage" }, } }, - ["AnimalCharmEvasionPerEnergyShieldOnHelmet1"] = { type = "Suffix", affix = "of the Trickster", "+(1-2) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1547 }, level = 1, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1144937587] = { "+(1-2) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet" }, } }, - ["AnimalCharmEvasionPerEnergyShieldOnHelmet2"] = { type = "Suffix", affix = "of the Trickster", "+(3-4) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1547 }, level = 60, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1144937587] = { "+(3-4) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet" }, } }, - ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield1"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(3-4)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1146 }, level = 70, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [1493325653] = { "Prevent +(3-4)% of Suppressed Spell Damage while on Full Energy Shield" }, } }, - ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield2"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(5-6)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1146 }, level = 81, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, tradeHashes = { [1493325653] = { "Prevent +(5-6)% of Suppressed Spell Damage while on Full Energy Shield" }, } }, - ["AnimalCharmEnergyShieldLeech1"] = { type = "Prefix", affix = "Trickster's", "(0.5-1)% of Damage Leeched as Energy Shield", statOrder = { 1721 }, level = 1, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4201339891] = { "(0.5-1)% of Damage Leeched as Energy Shield" }, } }, - ["AnimalCharmEnergyShieldLeech2"] = { type = "Prefix", affix = "Trickster's", "(1.1-2)% of Damage Leeched as Energy Shield", statOrder = { 1721 }, level = 60, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4201339891] = { "(1.1-2)% of Damage Leeched as Energy Shield" }, } }, - ["AnimalCharmRecover10PercentManaOnSkillUseChance1"] = { type = "Suffix", affix = "of the Trickster", "(4-6)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3475 }, level = 1, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [308309328] = { "(4-6)% chance to Recover 10% of Mana when you use a Skill" }, } }, - ["AnimalCharmRecover10PercentManaOnSkillUseChance2"] = { type = "Suffix", affix = "of the Trickster", "(7-10)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3475 }, level = 60, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [308309328] = { "(7-10)% chance to Recover 10% of Mana when you use a Skill" }, } }, - ["AnimalCharmNoBarrageSpread"] = { type = "Prefix", affix = "Deadeye's", "Projectile Barrages have no spread", statOrder = { 9481 }, level = 45, group = "AnimalCharmNoBarrageSpread", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3953699641] = { "Projectile Barrages have no spread" }, } }, - ["AnimalCharmMarkEffect1"] = { type = "Prefix", affix = "Deadeye's", "(10-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 1, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [803185500] = { "(10-15)% increased Effect of your Marks" }, } }, - ["AnimalCharmMarkEffect2"] = { type = "Prefix", affix = "Deadeye's", "(16-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 60, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [803185500] = { "(16-25)% increased Effect of your Marks" }, } }, - ["AnimalCharmProjectileChainFromTerrainChance1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (7-13)% chance to be able to Chain when colliding with terrain", statOrder = { 1827 }, level = 45, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2140446632] = { "Projectiles have (7-13)% chance to be able to Chain when colliding with terrain" }, } }, - ["AnimalCharmProjectileChainFromTerrainChance2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (14-20)% chance to be able to Chain when colliding with terrain", statOrder = { 1827 }, level = 72, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2140446632] = { "Projectiles have (14-20)% chance to be able to Chain when colliding with terrain" }, } }, - ["AnimalCharmAdditionalProjectiles"] = { type = "Prefix", affix = "Deadeye's", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 81, group = "AnimalCharmAdditionalProjectiles", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, - ["AnimalCharmMirageArcherDuration1"] = { type = "Suffix", affix = "of the Deadeye", "(30-50)% increased Mirage Archer Duration", statOrder = { 9376 }, level = 1, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3663580344] = { "(30-50)% increased Mirage Archer Duration" }, } }, - ["AnimalCharmMirageArcherDuration2"] = { type = "Suffix", affix = "of the Deadeye", "(51-100)% increased Mirage Archer Duration", statOrder = { 9376 }, level = 60, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3663580344] = { "(51-100)% increased Mirage Archer Duration" }, } }, - ["AnimalCharmProjectileDamageWithDistanceTravelled1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (25-40)% increased Damage with Hits to targets", statOrder = { 4081, 4081.1 }, level = 1, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2083727359] = { "Projectiles gain Damage as they travel farther, dealing up", "to (25-40)% increased Damage with Hits to targets" }, } }, - ["AnimalCharmProjectileDamageWithDistanceTravelled2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (41-60)% increased Damage with Hits to targets", statOrder = { 4081, 4081.1 }, level = 60, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2083727359] = { "Projectiles gain Damage as they travel farther, dealing up", "to (41-60)% increased Damage with Hits to targets" }, } }, - ["AnimalCharmLifeOnHitVsBleedingEnemies1"] = { type = "Suffix", affix = "of the Deadeye", "Gain (6-10) Life per Bleeding Enemy Hit", statOrder = { 3570 }, level = 1, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3148570142] = { "Gain (6-10) Life per Bleeding Enemy Hit" }, } }, - ["AnimalCharmLifeOnHitVsBleedingEnemies2"] = { type = "Suffix", affix = "of the Deadeye", "Gain (11-20) Life per Bleeding Enemy Hit", statOrder = { 3570 }, level = 60, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3148570142] = { "Gain (11-20) Life per Bleeding Enemy Hit" }, } }, - ["AnimalCharmAccuracyIfCritInLast8Seconds1"] = { type = "Prefix", affix = "Deadeye's", "(7-13)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4521 }, level = 1, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1381557885] = { "(7-13)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["AnimalCharmAccuracyIfCritInLast8Seconds2"] = { type = "Prefix", affix = "Deadeye's", "(14-20)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4521 }, level = 60, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1381557885] = { "(14-20)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds" }, } }, - ["AnimalCharmOnslaughtEffect1"] = { type = "Prefix", affix = "Raider's", "(15-25)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 1, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(15-25)% increased Effect of Onslaught on you" }, } }, - ["AnimalCharmOnslaughtEffect2"] = { type = "Prefix", affix = "Raider's", "(26-40)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 60, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(26-40)% increased Effect of Onslaught on you" }, } }, - ["AnimalCharmPhasingOnKillChance1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 1, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(10-15)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["AnimalCharmPhasingOnKillChance2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 60, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(16-25)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["AnimalCharmSpellSuppressionChance1"] = { type = "Suffix", affix = "of the Raider", "+(5-9)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-9)% chance to Suppress Spell Damage" }, } }, - ["AnimalCharmSpellSuppressionChance2"] = { type = "Suffix", affix = "of the Raider", "+(10-15)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 60, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(10-15)% chance to Suppress Spell Damage" }, } }, - ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4942 }, level = 1, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [115351487] = { "(10-15)% chance to Avoid Elemental Ailments while Phasing" }, } }, - ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4942 }, level = 60, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [115351487] = { "(16-25)% chance to Avoid Elemental Ailments while Phasing" }, } }, - ["AnimalCharmOnslaughtOnKillChance1"] = { type = "Prefix", affix = "Raider's", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 1, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [665823128] = { "(10-15)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["AnimalCharmOnslaughtOnKillChance2"] = { type = "Prefix", affix = "Raider's", "(16-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 60, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [665823128] = { "(16-25)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["AnimalCharmEvasionRatingPerFrenzyCharge1"] = { type = "Suffix", affix = "of the Raider", "(3-5)% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 1, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [660404777] = { "(3-5)% increased Evasion Rating per Frenzy Charge" }, } }, - ["AnimalCharmEvasionRatingPerFrenzyCharge2"] = { type = "Suffix", affix = "of the Raider", "(6-9)% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 60, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [660404777] = { "(6-9)% increased Evasion Rating per Frenzy Charge" }, } }, - ["AnimalCharmMovementSpeedPerFrenzyCharge"] = { type = "Prefix", affix = "Raider's", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 70, group = "AnimalCharmMovementSpeedPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, - ["AnimalCharmFrenzyOnHItChance1"] = { type = "Prefix", affix = "Raider's", "(3-5)% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 45, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2323242761] = { "(3-5)% chance to gain a Frenzy Charge on Hit" }, } }, - ["AnimalCharmFrenzyOnHItChance2"] = { type = "Prefix", affix = "Raider's", "(6-8)% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 72, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2323242761] = { "(6-8)% chance to gain a Frenzy Charge on Hit" }, } }, - ["AnimalCharmFlaskChargesEvery3Seconds"] = { type = "Suffix", affix = "of the Pathfinder", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 81, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { "flask" }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, - ["AnimalCharmRemoveBleedOnFlaskUse"] = { type = "Suffix", affix = "of the Pathfinder", "Removes Bleeding when you use a Flask", statOrder = { 3386 }, level = 45, group = "AnimalCharmRemoveBleedOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2202201823] = { "Removes Bleeding when you use a Flask" }, } }, - ["AnimalCharmMagicUtilityFlaskEffect1"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (6-10)% increased Effect", statOrder = { 2743 }, level = 70, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2564857472] = { "Magic Utility Flasks applied to you have (6-10)% increased Effect" }, } }, - ["AnimalCharmMagicUtilityFlaskEffect2"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (11-15)% increased Effect", statOrder = { 2743 }, level = 81, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [2564857472] = { "Magic Utility Flasks applied to you have (11-15)% increased Effect" }, } }, - ["AnimalCharmWitheredOnHitChance1"] = { type = "Prefix", affix = "Pathfinder's", "(6-10)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4397 }, level = 45, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1957711555] = { "(6-10)% chance to inflict Withered for 2 seconds on Hit" }, } }, - ["AnimalCharmWitheredOnHitChance2"] = { type = "Prefix", affix = "Pathfinder's", "(11-15)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4397 }, level = 72, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [1957711555] = { "(11-15)% chance to inflict Withered for 2 seconds on Hit" }, } }, - ["AnimalCharmRecoverLifeOnFlaskUse1"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (2-3)% of Life when you use a Flask", statOrder = { 4342 }, level = 45, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3184268466] = { "Recover (2-3)% of Life when you use a Flask" }, } }, - ["AnimalCharmRecoverLifeOnFlaskUse2"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (4-5)% of Life when you use a Flask", statOrder = { 4342 }, level = 72, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [3184268466] = { "Recover (4-5)% of Life when you use a Flask" }, } }, - ["AnimalCharmWitheredEffect1"] = { type = "Prefix", affix = "Pathfinder's", "(7-13)% increased Effect of Withered", statOrder = { 10626 }, level = 1, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2545584555] = { "(7-13)% increased Effect of Withered" }, } }, - ["AnimalCharmWitheredEffect2"] = { type = "Prefix", affix = "Pathfinder's", "(14-20)% increased Effect of Withered", statOrder = { 10626 }, level = 60, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2545584555] = { "(14-20)% increased Effect of Withered" }, } }, - ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments1"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (15-25)% increased Flask Charges", statOrder = { 4249, 4249.1 }, level = 1, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [589437732] = { "Enemies you Kill that are affected by Elemental Ailments", "grant (15-25)% increased Flask Charges" }, } }, - ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments2"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (26-40)% increased Flask Charges", statOrder = { 4249, 4249.1 }, level = 60, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [589437732] = { "Enemies you Kill that are affected by Elemental Ailments", "grant (26-40)% increased Flask Charges" }, } }, - ["AnimalCharmPhysicalDamageAsRandomElement1"] = { type = "Prefix", affix = "Pathfinder's", "Gain (5-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 1, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3753703249] = { "Gain (5-8)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["AnimalCharmPhysicalDamageAsRandomElement2"] = { type = "Prefix", affix = "Pathfinder's", "Gain (9-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 60, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3753703249] = { "Gain (9-12)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["AnimalCharmMovementSpeedCannotBeBelowBase"] = { type = "Prefix", affix = "Juggernaut's", "Movement Speed cannot be modified to below Base Value", statOrder = { 3232 }, level = 70, group = "AnimalCharmMovementSpeedCannotBeBelowBase", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3875592188] = { "Movement Speed cannot be modified to below Base Value" }, } }, + ["AnimalCharmArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of the Juggernaut", "2% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4793 }, level = 81, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, tradeHashes = { [3362812763] = { "2% of Armour applies to Fire, Cold and Lightning Damage taken from Hits" }, } }, + ["AnimalCharmArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of the Juggernaut", "3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4793 }, level = 83, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [3362812763] = { "3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits" }, } }, + ["AnimalCharmEnduranceChargeOnStun1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5765 }, level = 1, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1582887649] = { "(10-19)% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, + ["AnimalCharmEnduranceChargeOnStun2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5765 }, level = 60, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1582887649] = { "(20-30)% chance to gain an Endurance Charge when you Stun an Enemy" }, } }, + ["AnimalCharmAreaOfEffectPerEnduranceCharge1"] = { type = "Prefix", affix = "Juggernaut's", "(3-4)% increased Area of Effect per Endurance Charge", statOrder = { 4778 }, level = 1, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2448279015] = { "(3-4)% increased Area of Effect per Endurance Charge" }, } }, + ["AnimalCharmAreaOfEffectPerEnduranceCharge2"] = { type = "Prefix", affix = "Juggernaut's", "(5-6)% increased Area of Effect per Endurance Charge", statOrder = { 4778 }, level = 60, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2448279015] = { "(5-6)% increased Area of Effect per Endurance Charge" }, } }, + ["AnimalCharmEnchangeChargeWhenHit1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2785 }, level = 1, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1514657588] = { "(10-19)% chance to gain an Endurance Charge when you are Hit" }, } }, + ["AnimalCharmEnchangeChargeWhenHit2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2785 }, level = 60, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1514657588] = { "(20-30)% chance to gain an Endurance Charge when you are Hit" }, } }, + ["AnimalCharmChaosResistancePerEnduranceCharge1"] = { type = "Suffix", affix = "of the Juggernaut", "+(2-3)% to Chaos Resistance per Endurance Charge", statOrder = { 5820 }, level = 1, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4210011075] = { "+(2-3)% to Chaos Resistance per Endurance Charge" }, } }, + ["AnimalCharmChaosResistancePerEnduranceCharge2"] = { type = "Suffix", affix = "of the Juggernaut", "+(4-5)% to Chaos Resistance per Endurance Charge", statOrder = { 5820 }, level = 60, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4210011075] = { "+(4-5)% to Chaos Resistance per Endurance Charge" }, } }, + ["AnimalCharmLIfeRegenerationRate1"] = { type = "Suffix", affix = "of the Juggernaut", "(10-15)% increased Life Regeneration rate", statOrder = { 1600 }, level = 45, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [44972811] = { "(10-15)% increased Life Regeneration rate" }, } }, + ["AnimalCharmLIfeRegenerationRate2"] = { type = "Suffix", affix = "of the Juggernaut", "(16-20)% increased Life Regeneration rate", statOrder = { 1600 }, level = 72, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [44972811] = { "(16-20)% increased Life Regeneration rate" }, } }, + ["AnimalCharmTotemTauntEnemiesWhenSummoned"] = { type = "Suffix", affix = "of the Chieftain", "Totems Taunt Enemies around them for 2 seconds when Summoned", statOrder = { 10559 }, level = 45, group = "AnimalCharmTotemTauntEnemiesWhenSummoned", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2076876595] = { "Totems Taunt Enemies around them for 2 seconds when Summoned" }, } }, + ["AnimalCharmTotemRecoup1"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (5-7)% of Damage Taken by your Totems as Life", statOrder = { 9980 }, level = 1, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [825316273] = { "Recoup (5-7)% of Damage Taken by your Totems as Life" }, } }, + ["AnimalCharmTotemRecoup2"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (8-12)% of Damage Taken by your Totems as Life", statOrder = { 9980 }, level = 60, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [825316273] = { "Recoup (8-12)% of Damage Taken by your Totems as Life" }, } }, + ["AnimalCharmFireExplode"] = { type = "Prefix", affix = "Chieftain's", "Enemies you or your Totems Kill have 1% chance to Explode, dealing 250% of their maximum Life as Fire Damage", statOrder = { 6603 }, level = 70, group = "AnimalCharmFireExplode", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [215242678] = { "Enemies you or your Totems Kill have 1% chance to Explode, dealing 250% of their maximum Life as Fire Damage" }, } }, + ["AnimalCharmAshOnHittingRareUniqueEnemy1"] = { type = "Prefix", affix = "Chieftain's", "(5-10)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4738 }, level = 45, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [240642724] = { "(5-10)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit" }, } }, + ["AnimalCharmAshOnHittingRareUniqueEnemy2"] = { type = "Prefix", affix = "Chieftain's", "(11-20)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4738 }, level = 72, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [240642724] = { "(11-20)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit" }, } }, + ["AnimalCharmStrengthPercent1"] = { type = "Prefix", affix = "Chieftain's", "(3-5)% increased Strength", statOrder = { 1207 }, level = 1, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [734614379] = { "(3-5)% increased Strength" }, } }, + ["AnimalCharmStrengthPercent2"] = { type = "Prefix", affix = "Chieftain's", "(6-8)% increased Strength", statOrder = { 1207 }, level = 60, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [734614379] = { "(6-8)% increased Strength" }, } }, + ["AnimalCharmMaximumFireDamageResistance1"] = { type = "Suffix", affix = "of the Chieftain", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 45, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["AnimalCharmMaximumFireDamageResistance2"] = { type = "Suffix", affix = "of the Chieftain", "+2% to maximum Fire Resistance", statOrder = { 1646 }, level = 72, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } }, + ["AnimalCharmIgniteDurationOnSelf1"] = { type = "Suffix", affix = "of the Chieftain", "(20-30)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, + ["AnimalCharmIgniteDurationOnSelf2"] = { type = "Suffix", affix = "of the Chieftain", "(31-50)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 60, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [986397080] = { "(31-50)% reduced Ignite Duration on you" }, } }, + ["AnimalCharmStunImmuneWith25Rage"] = { type = "Suffix", affix = "of the Berserker", "Cannot be Stunned while you have at least 25 Rage", statOrder = { 9934 }, level = 45, group = "AnimalCharmStunImmuneWith25Rage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2971900104] = { "Cannot be Stunned while you have at least 25 Rage" }, } }, + ["AnimalCharmAddedPhysicalDamageIfCritRecently1"] = { type = "Prefix", affix = "Berserker's", "Adds (5-7) to (14-17) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9379 }, level = 1, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2723101291] = { "Adds (5-7) to (14-17) Physical Damage if you've dealt a Critical Strike Recently" }, } }, + ["AnimalCharmAddedPhysicalDamageIfCritRecently2"] = { type = "Prefix", affix = "Berserker's", "Adds (8-12) to (18-22) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9379 }, level = 60, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2723101291] = { "Adds (8-12) to (18-22) Physical Damage if you've dealt a Critical Strike Recently" }, } }, + ["AnimalCharmMaximumRage1"] = { type = "Prefix", affix = "Berserker's", "+(2-3) to Maximum Rage", statOrder = { 9928 }, level = 1, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(2-3) to Maximum Rage" }, } }, + ["AnimalCharmMaximumRage2"] = { type = "Prefix", affix = "Berserker's", "+(4-5) to Maximum Rage", statOrder = { 9928 }, level = 60, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-5) to Maximum Rage" }, } }, + ["AnimalCharmWarcriesGrantRage1"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (2-3) Rage per 5 Power if you have less than 25 Rage", statOrder = { 5143 }, level = 1, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3608339129] = { "Warcries grant (2-3) Rage per 5 Power if you have less than 25 Rage" }, } }, + ["AnimalCharmWarcriesGrantRage2"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (4-5) Rage per 5 Power if you have less than 25 Rage", statOrder = { 5143 }, level = 60, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3608339129] = { "Warcries grant (4-5) Rage per 5 Power if you have less than 25 Rage" }, } }, + ["AnimalCharmLeechPercentIsInstant1"] = { type = "Suffix", affix = "of the Berserker", "(3-5)% of Leech is Instant", statOrder = { 7439 }, level = 45, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3561837752] = { "(3-5)% of Leech is Instant" }, } }, + ["AnimalCharmLeechPercentIsInstant2"] = { type = "Suffix", affix = "of the Berserker", "(6-8)% of Leech is Instant", statOrder = { 7439 }, level = 72, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [3561837752] = { "(6-8)% of Leech is Instant" }, } }, + ["AnimalCharmLeechIfKilledRecently1"] = { type = "Suffix", affix = "of the Berserker", "1% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7446 }, level = 1, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2770801535] = { "1% of Attack Damage Leeched as Life and Mana if you've Killed Recently" }, } }, + ["AnimalCharmLeechIfKilledRecently2"] = { type = "Suffix", affix = "of the Berserker", "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7446 }, level = 60, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2770801535] = { "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently" }, } }, + ["AnimalCharmCorpseExplodeOnWarcry1"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (3-4)% of their Life as Physical Damage", statOrder = { 9581 }, level = 70, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing (3-4)% of their Life as Physical Damage" }, } }, + ["AnimalCharmCorpseExplodeOnWarcry2"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (5-6)% of their Life as Physical Damage", statOrder = { 9581 }, level = 81, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [293071889] = { "Nearby corpses Explode when you Warcry, dealing (5-6)% of their Life as Physical Damage" }, } }, + ["AnimalCharmStunImmuneWhileFortified"] = { type = "Suffix", affix = "of the Champion", "Cannot be Stunned while Fortified", statOrder = { 5500 }, level = 70, group = "AnimalCharmStunImmuneWhileFortified", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [2983926876] = { "Cannot be Stunned while Fortified" }, } }, + ["AnimalCharmTauntOnHitChance1"] = { type = "Prefix", affix = "Champion's", "(10-19)% chance to Taunt on Hit", statOrder = { 3466 }, level = 1, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3272283603] = { "(10-19)% chance to Taunt on Hit" }, } }, + ["AnimalCharmTauntOnHitChance2"] = { type = "Prefix", affix = "Champion's", "(20-30)% chance to Taunt on Hit", statOrder = { 3466 }, level = 60, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3272283603] = { "(20-30)% chance to Taunt on Hit" }, } }, + ["AnimalCharmBannersNoReservation"] = { type = "Prefix", affix = "Champion's", "Banner Skills have no Reservation", statOrder = { 5031 }, level = 45, group = "AnimalCharmBannersNoReservation", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2384457007] = { "Banner Skills have no Reservation" }, } }, + ["AnimalCharmRecoverBannerStagesOnPlacingBanner1"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (10-15)% of the Valour consumed for that Banner", statOrder = { 9693 }, level = 1, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3906150898] = { "When you leave your Banner's Area, recover (10-15)% of the Valour consumed for that Banner" }, } }, + ["AnimalCharmRecoverBannerStagesOnPlacingBanner2"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (16-25)% of the Valour consumed for that Banner", statOrder = { 9693 }, level = 60, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3906150898] = { "When you leave your Banner's Area, recover (16-25)% of the Valour consumed for that Banner" }, } }, + ["AnimalCharmGainAdrenalineOnReachingLowLife"] = { type = "Prefix", affix = "Champion's", "Gain Adrenaline for 4 seconds when you reach Low Life", statOrder = { 6806 }, level = 70, group = "AnimalCharmGainAdrenalineOnReachingLowLife", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [4205704547] = { "Gain Adrenaline for 4 seconds when you reach Low Life" }, } }, + ["AnimalCharmImpaleLastsForExtraHits"] = { type = "Prefix", affix = "Champion's", "Impales you inflict last 1 additional Hit", statOrder = { 7356 }, level = 81, group = "AnimalCharmImpaleLastsForExtraHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 10, 10, 0 }, modTags = { }, tradeHashes = { [3425951133] = { "Impales you inflict last 1 additional Hit" }, } }, + ["AnimalCharmFortifyOnMeleeHitChance1"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (5-10)% chance to Fortify", statOrder = { 2287 }, level = 45, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1166417447] = { "Melee Hits have (5-10)% chance to Fortify" }, } }, + ["AnimalCharmFortifyOnMeleeHitChance2"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (11-20)% chance to Fortify", statOrder = { 2287 }, level = 72, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [1166417447] = { "Melee Hits have (11-20)% chance to Fortify" }, } }, + ["AnimalCharmBleedExplode1"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (2-3)% of", "their Maximum Life as Physical Damage", statOrder = { 3517, 3517.1 }, level = 70, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing (2-3)% of", "their Maximum Life as Physical Damage" }, } }, + ["AnimalCharmBleedExplode2"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (4-5)% of", "their Maximum Life as Physical Damage", statOrder = { 3517, 3517.1 }, level = 81, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, tradeHashes = { [3133323410] = { "Bleeding Enemies you Kill Explode, dealing (4-5)% of", "their Maximum Life as Physical Damage" }, } }, + ["AnimalCharmBlindOnHitVsBleedingEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (10-19)% chance to Blind", statOrder = { 4891 }, level = 1, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4204320922] = { "Attack Hits against Bleeding Enemies have (10-19)% chance to Blind" }, } }, + ["AnimalCharmBlindOnHitVsBleedingEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (20-30)% chance to Blind", statOrder = { 4891 }, level = 60, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4204320922] = { "Attack Hits against Bleeding Enemies have (20-30)% chance to Blind" }, } }, + ["AnimalCharmMaimOnHitVsBlindedEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (10-19)% chance to Maim", statOrder = { 4892 }, level = 1, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1291726336] = { "Attack Hits against Blinded Enemies have (10-19)% chance to Maim" }, } }, + ["AnimalCharmMaimOnHitVsBlindedEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (20-30)% chance to Maim", statOrder = { 4892 }, level = 60, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1291726336] = { "Attack Hits against Blinded Enemies have (20-30)% chance to Maim" }, } }, + ["AnimalCharmStunImmuneAgainstBlockedHits"] = { type = "Suffix", affix = "of the Gladiator", "Cannot be Stunned by Hits you Block", statOrder = { 5491 }, level = 45, group = "AnimalCharmStunImmuneAgainstBlockedHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3058290552] = { "Cannot be Stunned by Hits you Block" }, } }, + ["AnimalCharmMaximumBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 45, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4124805414] = { "+(1-2)% to maximum Chance to Block Attack Damage" }, } }, + ["AnimalCharmMaximumBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+3% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 72, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } }, + ["AnimalCharmOverwhelmIfBlockedinPast20Seconds"] = { type = "Prefix", affix = "Gladiator's", "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds", statOrder = { 7270 }, level = 1, group = "AnimalCharmOverwhelmIfBlockedinPast20Seconds", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3035931505] = { "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds" }, } }, + ["AnimalCharmArmourAndEvasionPerBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4804 }, level = 1, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2818854203] = { "+(3-4) to Armour and Evasion Rating per 1% Chance to Block Attack Damage" }, } }, + ["AnimalCharmArmourAndEvasionPerBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4804 }, level = 60, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2818854203] = { "+(5-6) to Armour and Evasion Rating per 1% Chance to Block Attack Damage" }, } }, + ["AnimalCharmAttackBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 1, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1702195217] = { "+(3-4)% Chance to Block Attack Damage" }, } }, + ["AnimalCharmAttackBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 60, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1702195217] = { "+(5-6)% Chance to Block Attack Damage" }, } }, + ["AnimalCharmAttackSpeedOnKillingRareUnique1"] = { type = "Prefix", affix = "Slayer's", "Gain (4-7)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6827 }, level = 1, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3243270997] = { "Gain (4-7)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy" }, } }, + ["AnimalCharmAttackSpeedOnKillingRareUnique2"] = { type = "Prefix", affix = "Slayer's", "Gain (8-12)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6827 }, level = 60, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3243270997] = { "Gain (8-12)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy" }, } }, + ["AnimalCharmPhysicalReflectImmune"] = { type = "Suffix", affix = "of the Slayer", "Cannot take Reflected Physical Damage", statOrder = { 5522 }, level = 45, group = "AnimalCharmPhysicalReflectImmune", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [249805317] = { "Cannot take Reflected Physical Damage" }, } }, + ["AnimalCharmStunImmuneWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "Cannot be Stunned while Leeching", statOrder = { 3248 }, level = 70, group = "AnimalCharmStunImmuneWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [1887508417] = { "Cannot be Stunned while Leeching" }, } }, + ["AnimalCharmUnaffectedbyBleedingWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "You are Unaffected by Bleeding while Leeching", statOrder = { 10611 }, level = 70, group = "AnimalCharmUnaffectedbyBleedingWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [2291122510] = { "You are Unaffected by Bleeding while Leeching" }, } }, + ["AnimalCharmOverkillLeech1"] = { type = "Suffix", affix = "of the Slayer", "(4-7)% of Overkill Damage is Leeched as Life", statOrder = { 3245 }, level = 1, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3511523149] = { "(4-7)% of Overkill Damage is Leeched as Life" }, } }, + ["AnimalCharmOverkillLeech2"] = { type = "Suffix", affix = "of the Slayer", "(8-12)% of Overkill Damage is Leeched as Life", statOrder = { 3245 }, level = 60, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3511523149] = { "(8-12)% of Overkill Damage is Leeched as Life" }, } }, + ["AnimalCharmMaximumAmountPerLifeLeech1"] = { type = "Prefix", affix = "Slayer's", "(10-20)% increased Maximum Recovery per Life Leech", statOrder = { 1747 }, level = 45, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3101897388] = { "(10-20)% increased Maximum Recovery per Life Leech" }, } }, + ["AnimalCharmMaximumAmountPerLifeLeech2"] = { type = "Prefix", affix = "Slayer's", "(21-30)% increased Maximum Recovery per Life Leech", statOrder = { 1747 }, level = 72, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [3101897388] = { "(21-30)% increased Maximum Recovery per Life Leech" }, } }, + ["AnimalCharmAreaOfEffectIfKilledRecently1"] = { type = "Prefix", affix = "Slayer's", "(4-7)% increased Area of Effect if you've Killed Recently", statOrder = { 4255 }, level = 1, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(4-7)% increased Area of Effect if you've Killed Recently" }, } }, + ["AnimalCharmAreaOfEffectIfKilledRecently2"] = { type = "Prefix", affix = "Slayer's", "(8-12)% increased Area of Effect if you've Killed Recently", statOrder = { 4255 }, level = 60, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(8-12)% increased Area of Effect if you've Killed Recently" }, } }, + ["AnimalCharmCullingStrike"] = { type = "Prefix", affix = "Slayer's", "Culling Strike", statOrder = { 2062 }, level = 45, group = "AnimalCharmCullingStrike", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["AnimalCharmStrengthAndIntelligence1"] = { type = "Suffix", affix = "of the Inquisitor", "+(20-30) to Strength and Intelligence", statOrder = { 472 }, level = 1, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2543977012] = { "+(20-30) to Strength and Intelligence" }, } }, + ["AnimalCharmStrengthAndIntelligence2"] = { type = "Suffix", affix = "of the Inquisitor", "+(31-40) to Strength and Intelligence", statOrder = { 472 }, level = 60, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2543977012] = { "+(31-40) to Strength and Intelligence" }, } }, + ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect1"] = { type = "Prefix", affix = "Inquisitor's", "(20-30)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9638 }, level = 1, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3772078232] = { "(20-30)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } }, + ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect2"] = { type = "Prefix", affix = "Inquisitor's", "(31-40)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9638 }, level = 60, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3772078232] = { "(31-40)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } }, + ["AnimalCharmConsecratedGroundLingerDuration"] = { type = "Suffix", affix = "of the Inquisitor", "Effects of Consecrated Ground you create Linger for 2 seconds", statOrder = { 10846 }, level = 70, group = "AnimalCharmConsecratedGroundLingerDuration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 2 seconds" }, } }, + ["AnimalCharmConsecratedGroundDamageTaken1"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (5-6)% increased Damage taken to Enemies", statOrder = { 5930 }, level = 45, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2474564741] = { "Consecrated Ground you create applies (5-6)% increased Damage taken to Enemies" }, } }, + ["AnimalCharmConsecratedGroundDamageTaken2"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (7-10)% increased Damage taken to Enemies", statOrder = { 5930 }, level = 72, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [2474564741] = { "Consecrated Ground you create applies (7-10)% increased Damage taken to Enemies" }, } }, + ["AnimalCharmElementalPenetration1"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (3-4)% of Enemy Elemental Resistances", statOrder = { 3595 }, level = 1, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [697807915] = { "Damage Penetrates (3-4)% of Enemy Elemental Resistances" }, } }, + ["AnimalCharmElementalPenetration2"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (5-6)% of Enemy Elemental Resistances", statOrder = { 3595 }, level = 60, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [697807915] = { "Damage Penetrates (5-6)% of Enemy Elemental Resistances" }, } }, + ["AnimalCharmConsecratedGroundVsRareUnique1"] = { type = "Suffix", affix = "of the Inquisitor", "(10-19)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5986 }, level = 1, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3135669941] = { "(10-19)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds" }, } }, + ["AnimalCharmConsecratedGroundVsRareUnique2"] = { type = "Suffix", affix = "of the Inquisitor", "(20-30)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5986 }, level = 60, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3135669941] = { "(20-30)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds" }, } }, + ["AnimalCharmCriticalStrikeChanceIfNotCritRecently1"] = { type = "Prefix", affix = "Inquisitor's", "(50-70)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 6010 }, level = 1, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2856328513] = { "(50-70)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } }, + ["AnimalCharmCriticalStrikeChanceIfNotCritRecently2"] = { type = "Prefix", affix = "Inquisitor's", "(71-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 6010 }, level = 60, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2856328513] = { "(71-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } }, + ["AnimalCharmDamageRemovedFromManaBeforeLife1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 70, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [458438597] = { "(1-2)% of Damage is taken from Mana before Life" }, } }, + ["AnimalCharmDamageRemovedFromManaBeforeLife2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage is taken from Mana before Life", statOrder = { 2726 }, level = 81, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, tradeHashes = { [458438597] = { "3% of Damage is taken from Mana before Life" }, } }, + ["AnimalCharmManaReservationEfficiency1"] = { type = "Prefix", affix = "Hierophant's", "(4-7)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 45, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4237190083] = { "(4-7)% increased Mana Reservation Efficiency of Skills" }, } }, + ["AnimalCharmManaReservationEfficiency2"] = { type = "Prefix", affix = "Hierophant's", "(8-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 72, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [4237190083] = { "(8-12)% increased Mana Reservation Efficiency of Skills" }, } }, + ["AnimalCharmManaToAddAsExtraEnergyShield1"] = { type = "Suffix", affix = "of the Hierophant", "Gain (2-3)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2198 }, level = 1, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2663376056] = { "Gain (2-3)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, + ["AnimalCharmManaToAddAsExtraEnergyShield2"] = { type = "Suffix", affix = "of the Hierophant", "Gain (4-5)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2198 }, level = 60, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2663376056] = { "Gain (4-5)% of Maximum Mana as Extra Maximum Energy Shield" }, } }, + ["AnimalCharmArcaneSurgeOnHit"] = { type = "Prefix", affix = "Hierophant's", "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", statOrder = { 6822 }, level = 70, group = "AnimalCharmArcaneSurgeOnHit", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [4286031492] = { "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell" }, } }, + ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge1"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (20-30)% reduced Effect on you while you have Arcane Surge", statOrder = { 4369 }, level = 1, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3014823981] = { "Non-Damaging Ailments have (20-30)% reduced Effect on you while you have Arcane Surge" }, } }, + ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge2"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (31-40)% reduced Effect on you while you have Arcane Surge", statOrder = { 4369 }, level = 60, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3014823981] = { "Non-Damaging Ailments have (31-40)% reduced Effect on you while you have Arcane Surge" }, } }, + ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6181 }, level = 1, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2762445213] = { "(1-2)% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, + ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6181 }, level = 60, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2762445213] = { "3% of Damage from Hits is taken from your nearest Totem's Life before you" }, } }, + ["AnimalCharmMinimumEnduranceAndPowerCharges"] = { type = "Suffix", affix = "of the Hierophant", "+1 to Minimum Endurance Charges", "+1 to Minimum Power Charges", statOrder = { 1826, 1836 }, level = 70, group = "AnimalCharmMinimumEnduranceAndPowerCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, + ["AnimalCharmChanceToSummonTwoTotems1"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (20-30)% chance to Summon two Totems instead of one", statOrder = { 5801 }, level = 1, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1870732546] = { "Skills that Summon a Totem have (20-30)% chance to Summon two Totems instead of one" }, } }, + ["AnimalCharmChanceToSummonTwoTotems2"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (31-50)% chance to Summon two Totems instead of one", statOrder = { 5801 }, level = 60, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1870732546] = { "Skills that Summon a Totem have (31-50)% chance to Summon two Totems instead of one" }, } }, + ["AnimalCharmBlockChanceIfAttackedRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(4-5)% Chance to Block Attack Damage", statOrder = { 10793 }, level = 1, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1453771408] = { "If you've Attacked Recently, you and nearby Allies have +(4-5)% Chance to Block Attack Damage" }, } }, + ["AnimalCharmBlockChanceIfAttackedRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(6-8)% Chance to Block Attack Damage", statOrder = { 10793 }, level = 60, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1453771408] = { "If you've Attacked Recently, you and nearby Allies have +(6-8)% Chance to Block Attack Damage" }, } }, + ["AnimalCharmSpellBlockChanceIfCastSpellRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(4-5)% Chance to Block Spell Damage", statOrder = { 10794 }, level = 1, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1952992278] = { "If you've Cast a Spell Recently, you and nearby Allies have +(4-5)% Chance to Block Spell Damage" }, } }, + ["AnimalCharmSpellBlockChanceIfCastSpellRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(6-8)% Chance to Block Spell Damage", statOrder = { 10794 }, level = 60, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1952992278] = { "If you've Cast a Spell Recently, you and nearby Allies have +(6-8)% Chance to Block Spell Damage" }, } }, + ["AnimalCharmRemoveCursesAndAilmentsEvery10seconds"] = { type = "Suffix", affix = "of the Guardian", "Every 4 seconds, remove Curses and Ailments from you", statOrder = { 3821 }, level = 45, group = "AnimalCharmRemoveCursesAndAilmentsEvery10seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2189230542] = { "Every 4 seconds, remove Curses and Ailments from you" }, } }, + ["AnimalCharmReservedManaGrantedAsArmour1"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (3-4)% of your Reserved Mana to you and nearby Allies", statOrder = { 3819 }, level = 45, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [681709908] = { "Grants Armour equal to (3-4)% of your Reserved Mana to you and nearby Allies" }, } }, + ["AnimalCharmReservedManaGrantedAsArmour2"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (5-6)% of your Reserved Mana to you and nearby Allies", statOrder = { 3819 }, level = 72, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [681709908] = { "Grants Armour equal to (5-6)% of your Reserved Mana to you and nearby Allies" }, } }, + ["AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments"] = { type = "Suffix", affix = "of the Guardian", "Enemies in your Link Beams cannot apply Elemental Ailments", statOrder = { 7603 }, level = 45, group = "AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2556900184] = { "Enemies in your Link Beams cannot apply Elemental Ailments" }, } }, + ["AnimalCharmLifeRegenerationForASecondEvery10Seconds1"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 10% of Life over one second", statOrder = { 3822 }, level = 1, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 10% of Life over one second" }, } }, + ["AnimalCharmLifeRegenerationForASecondEvery10Seconds2"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 20% of Life over one second", statOrder = { 3822 }, level = 60, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 20% of Life over one second" }, } }, + ["AnimalCharmNearbyEnemiesCannotGainCharges"] = { type = "Prefix", affix = "Guardian's", "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges", statOrder = { 3817 }, level = 45, group = "AnimalCharmNearbyEnemiesCannotGainCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4031527864] = { "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges" }, } }, + ["AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby"] = { type = "Prefix", affix = "Guardian's", "While there are at least five nearby Allies, you and nearby Allies have Onslaught", statOrder = { 7020 }, level = 45, group = "AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3730497630] = { "While there are at least five nearby Allies, you and nearby Allies have Onslaught" }, } }, + ["AnimalCharmExposureExtraResistance1"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(5-4)% to the affected Resistance", statOrder = { 6610 }, level = 1, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3306713700] = { "Exposure you inflict applies an extra -(5-4)% to the affected Resistance" }, } }, + ["AnimalCharmExposureExtraResistance2"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(7-6)% to the affected Resistance", statOrder = { 6610 }, level = 60, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3306713700] = { "Exposure you inflict applies an extra -(7-6)% to the affected Resistance" }, } }, + ["AnimalCharmAllDamageCanIgnite"] = { type = "Prefix", affix = "Elementalist's", "All Damage can Ignite", statOrder = { 4669 }, level = 81, group = "AnimalCharmAllDamageCanIgnite", weightKey = { "int_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } }, + ["AnimalCharmShockMinimumDamageIncrease1"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (5-7)%", statOrder = { 4480 }, level = 45, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1712740586] = { "Shocks from your Hits always increase Damage taken by at least (5-7)%" }, } }, + ["AnimalCharmShockMinimumDamageIncrease2"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (8-10)%", statOrder = { 4480 }, level = 72, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [1712740586] = { "Shocks from your Hits always increase Damage taken by at least (8-10)%" }, } }, + ["AnimalCharmChillMinimumSlow1"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (3-4)%", statOrder = { 4478 }, level = 45, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2774670797] = { "Chills from your Hits always reduce Action Speed by at least (3-4)%" }, } }, + ["AnimalCharmChillMinimumSlow2"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (5-6)%", statOrder = { 4478 }, level = 72, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2774670797] = { "Chills from your Hits always reduce Action Speed by at least (5-6)%" }, } }, + ["AnimalCharmGolemBuffEffect1"] = { type = "Suffix", affix = "of the Elementalist", "(15-20)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 1, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(15-20)% increased Effect of Buffs granted by your Golems" }, } }, + ["AnimalCharmGolemBuffEffect2"] = { type = "Suffix", affix = "of the Elementalist", "(21-35)% increased Effect of Buffs granted by your Golems", statOrder = { 6988 }, level = 60, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(21-35)% increased Effect of Buffs granted by your Golems" }, } }, + ["AnimalCharmIgniteFreezeShockChance1"] = { type = "Prefix", affix = "Elementalist's", "(10-15)% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 1, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [800141891] = { "(10-15)% chance to Freeze, Shock and Ignite" }, } }, + ["AnimalCharmIgniteFreezeShockChance2"] = { type = "Prefix", affix = "Elementalist's", "(16-25)% chance to Freeze, Shock and Ignite", statOrder = { 2835 }, level = 60, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [800141891] = { "(16-25)% chance to Freeze, Shock and Ignite" }, } }, + ["AnimalCharmElementalReflectImmune"] = { type = "Suffix", affix = "of the Elementalist", "Cannot take Reflected Elemental Damage", statOrder = { 5521 }, level = 45, group = "AnimalCharmElementalReflectImmune", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1827932821] = { "Cannot take Reflected Elemental Damage" }, } }, + ["AnimalCharmIgnoreHexproofEnemies"] = { type = "Prefix", affix = "Occultist's", "Your Hexes can affect Hexproof Enemies", statOrder = { 2626 }, level = 45, group = "AnimalCharmIgnoreHexproofEnemies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1367119630] = { "Your Hexes can affect Hexproof Enemies" }, } }, + ["AnimalCharmChaosExplode1"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (6-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3342 }, level = 70, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1763939859] = { "Cursed Enemies you or your Minions Kill have a (6-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, + ["AnimalCharmChaosExplode2"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (11-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3342 }, level = 81, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [1763939859] = { "Cursed Enemies you or your Minions Kill have a (11-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, + ["AnimalCharmAreaofEffectPerPowerCharge1"] = { type = "Prefix", affix = "Occultist's", "(2-3)% increased Area of Effect per Power Charge", statOrder = { 2152 }, level = 1, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3094501804] = { "(2-3)% increased Area of Effect per Power Charge" }, } }, + ["AnimalCharmAreaofEffectPerPowerCharge2"] = { type = "Prefix", affix = "Occultist's", "4% increased Area of Effect per Power Charge", statOrder = { 2152 }, level = 60, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3094501804] = { "4% increased Area of Effect per Power Charge" }, } }, + ["AnimalCharmCurseEffect1"] = { type = "Prefix", affix = "Occultist's", "(3-5)% increased Effect of your Curses", statOrder = { 2622 }, level = 1, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2353576063] = { "(3-5)% increased Effect of your Curses" }, } }, + ["AnimalCharmCurseEffect2"] = { type = "Prefix", affix = "Occultist's", "(6-8)% increased Effect of your Curses", statOrder = { 2622 }, level = 60, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2353576063] = { "(6-8)% increased Effect of your Curses" }, } }, + ["AnimalCharmNearbyEnemiesAreChilled"] = { type = "Suffix", affix = "of the Occultist", "Nearby Enemies are Chilled", statOrder = { 9584 }, level = 70, group = "AnimalCharmNearbyEnemiesAreChilled", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2480873346] = { "Nearby Enemies are Chilled" }, } }, + ["AnimalCharmEnergyShieldRegeneration1"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } }, + ["AnimalCharmEnergyShieldRegeneration2"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (2-3)% of Energy Shield per second", statOrder = { 2672 }, level = 60, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3594640492] = { "Regenerate (2-3)% of Energy Shield per second" }, } }, + ["AnimalCharmSpellHinderOnHitChance1"] = { type = "Suffix", affix = "of the Occultist", "(10-19)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 1, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3002506763] = { "(10-19)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["AnimalCharmSpellHinderOnHitChance2"] = { type = "Suffix", affix = "of the Occultist", "(20-30)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 60, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3002506763] = { "(20-30)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["AnimalCharmMinionUnholyMightChance1"] = { type = "Prefix", affix = "Necromancer's", "Minions have (10-19)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3415 }, level = 1, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3131367308] = { "Minions have (10-19)% chance to gain Unholy Might for 4 seconds on Kill" }, } }, + ["AnimalCharmMinionUnholyMightChance2"] = { type = "Prefix", affix = "Necromancer's", "Minions have (20-30)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3415 }, level = 60, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3131367308] = { "Minions have (20-30)% chance to gain Unholy Might for 4 seconds on Kill" }, } }, + ["AnimalCharmOfferingEffect1"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (15-20)% increased Effect on you", statOrder = { 1193 }, level = 1, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2071120096] = { "Your Offerings have (15-20)% increased Effect on you" }, } }, + ["AnimalCharmOfferingEffect2"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (21-30)% increased Effect on you", statOrder = { 1193 }, level = 60, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2071120096] = { "Your Offerings have (21-30)% increased Effect on you" }, } }, + ["AnimalCharmRegenerateManaOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 10040 }, level = 1, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3721828090] = { "Regenerate (2-3)% of Mana over 2 seconds when you Consume a corpse" }, } }, + ["AnimalCharmRegenerateManaOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 10040 }, level = 60, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3721828090] = { "Regenerate (4-5)% of Mana over 2 seconds when you Consume a corpse" }, } }, + ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 10039 }, level = 1, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2900084972] = { "Regenerate (2-3)% of Energy Shield over 2 seconds when you Consume a corpse" }, } }, + ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 10039 }, level = 60, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2900084972] = { "Regenerate (4-5)% of Energy Shield over 2 seconds when you Consume a corpse" }, } }, + ["AnimalCharmElementalResistancesForAuraAffectedAllies1"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(10-14)% to Elemental Resistances", statOrder = { 4106 }, level = 1, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [319842716] = { "You and nearby Allies have +(10-14)% to Elemental Resistances" }, } }, + ["AnimalCharmElementalResistancesForAuraAffectedAllies2"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(15-20)% to Elemental Resistances", statOrder = { 4106 }, level = 60, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [319842716] = { "You and nearby Allies have +(15-20)% to Elemental Resistances" }, } }, + ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield1"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (3-5)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10848 }, level = 45, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2268802111] = { "Minions gain Added Physical Damage equal to (3-5)% of Maximum Energy Shield on your Equipped Helmet" }, } }, + ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield2"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (6-10)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10848 }, level = 72, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2268802111] = { "Minions gain Added Physical Damage equal to (6-10)% of Maximum Energy Shield on your Equipped Helmet" }, } }, + ["AnimalCharmCorpseLife1"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (5-10)% increased Maximum Life", statOrder = { 9287 }, level = 45, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [586568910] = { "Corpses you Spawn have (5-10)% increased Maximum Life" }, } }, + ["AnimalCharmCorpseLife2"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (11-20)% increased Maximum Life", statOrder = { 9287 }, level = 72, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [586568910] = { "Corpses you Spawn have (11-20)% increased Maximum Life" }, } }, + ["AnimalCharmMinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (5-8)% additional Physical Damage Reduction", statOrder = { 2297 }, level = 1, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3119612865] = { "Minions have (5-8)% additional Physical Damage Reduction" }, } }, + ["AnimalCharmMinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (9-12)% additional Physical Damage Reduction", statOrder = { 2297 }, level = 60, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3119612865] = { "Minions have (9-12)% additional Physical Damage Reduction" }, } }, + ["AnimalCharmPowerChargeOnCriticalStrike1"] = { type = "Prefix", affix = "Assassin's", "(10-15)% chance to gain a Power Charge on Critical Strike", statOrder = { 1853 }, level = 1, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3814876985] = { "(10-15)% chance to gain a Power Charge on Critical Strike" }, } }, + ["AnimalCharmPowerChargeOnCriticalStrike2"] = { type = "Prefix", affix = "Assassin's", "(16-25)% chance to gain a Power Charge on Critical Strike", statOrder = { 1853 }, level = 60, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3814876985] = { "(16-25)% chance to gain a Power Charge on Critical Strike" }, } }, + ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge1"] = { type = "Prefix", affix = "Assassin's", "+(2-3)% to Critical Strike Multiplier per Power Charge", statOrder = { 3318 }, level = 1, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4164870816] = { "+(2-3)% to Critical Strike Multiplier per Power Charge" }, } }, + ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge2"] = { type = "Prefix", affix = "Assassin's", "+(4-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3318 }, level = 60, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4164870816] = { "+(4-5)% to Critical Strike Multiplier per Power Charge" }, } }, + ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges1"] = { type = "Prefix", affix = "Assassin's", "+(0.4-0.6)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3506 }, level = 1, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1166971727] = { "+(0.4-0.6)% Critical Strike Chance while at maximum Power Charges" }, } }, + ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges2"] = { type = "Prefix", affix = "Assassin's", "+(0.61-1)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3506 }, level = 60, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1166971727] = { "+(0.61-1)% Critical Strike Chance while at maximum Power Charges" }, } }, + ["AnimalCharmCriticalStrikesHaveCullingStrike"] = { type = "Prefix", affix = "Assassin's", "Critical Strikes have Culling Strike", statOrder = { 3476 }, level = 45, group = "AnimalCharmCriticalStrikesHaveCullingStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2996445420] = { "Critical Strikes have Culling Strike" }, } }, + ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies1"] = { type = "Prefix", affix = "Assassin's", "(80-120)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3802 }, level = 1, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [47954913] = { "(80-120)% increased Critical Strike Chance against Enemies that are on Full Life" }, } }, + ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies2"] = { type = "Prefix", affix = "Assassin's", "(130-160)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3802 }, level = 60, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [47954913] = { "(130-160)% increased Critical Strike Chance against Enemies that are on Full Life" }, } }, + ["AnimalCharmCriticalStrikeDamageCannotBeReflected"] = { type = "Suffix", affix = "of the Assassin", "Damage from your Critical Strikes cannot be Reflected", statOrder = { 6030 }, level = 45, group = "AnimalCharmCriticalStrikeDamageCannotBeReflected", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1857928882] = { "Damage from your Critical Strikes cannot be Reflected" }, } }, + ["AnimalCharmElusiveEffect1"] = { type = "Suffix", affix = "of the Assassin", "(10-15)% increased Elusive Effect", statOrder = { 6437 }, level = 45, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(10-15)% increased Elusive Effect" }, } }, + ["AnimalCharmElusiveEffect2"] = { type = "Suffix", affix = "of the Assassin", "(16-25)% increased Elusive Effect", statOrder = { 6437 }, level = 72, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(16-25)% increased Elusive Effect" }, } }, + ["AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive"] = { type = "Suffix", affix = "of the Assassin", "You take no Extra Damage from Critical Strikes while Elusive", statOrder = { 10129 }, level = 70, group = "AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [2953854044] = { "You take no Extra Damage from Critical Strikes while Elusive" }, } }, + ["AnimalCharmPoisonDurationPerPoisonAppliedRecently1"] = { type = "Prefix", affix = "Assassin's", "(1-2)% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9829, 9829.1 }, level = 1, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [86516932] = { "(1-2)% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%" }, } }, + ["AnimalCharmPoisonDurationPerPoisonAppliedRecently2"] = { type = "Prefix", affix = "Assassin's", "3% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9829, 9829.1 }, level = 60, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [86516932] = { "3% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%" }, } }, + ["AnimalCharmCannotBeBlinded"] = { type = "Suffix", affix = "of the Saboteur", "Cannot be Blinded", statOrder = { 3008 }, level = 45, group = "AnimalCharmCannotBeBlinded", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["AnimalCharmBlindOnHitChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-10)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 1, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(5-10)% Global chance to Blind Enemies on hit" }, } }, + ["AnimalCharmBlindOnHitChance2"] = { type = "Suffix", affix = "of the Saboteur", "(11-15)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 60, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(11-15)% Global chance to Blind Enemies on hit" }, } }, + ["AnimalCharmMineAuraEffect1"] = { type = "Prefix", affix = "Saboteur's", "(20-30)% increased Effect of Auras from Mines", statOrder = { 9351 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2121424530] = { "(20-30)% increased Effect of Auras from Mines" }, } }, + ["AnimalCharmMineAuraEffect2"] = { type = "Prefix", affix = "Saboteur's", "(31-50)% increased Effect of Auras from Mines", statOrder = { 9351 }, level = 60, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2121424530] = { "(31-50)% increased Effect of Auras from Mines" }, } }, + ["AnimalCharmTakeHalfAreaDamageChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-6)% chance to take 50% less Area Damage from Hits", statOrder = { 10502 }, level = 45, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4253777805] = { "(5-6)% chance to take 50% less Area Damage from Hits" }, } }, + ["AnimalCharmTakeHalfAreaDamageChance2"] = { type = "Suffix", affix = "of the Saboteur", "(7-10)% chance to take 50% less Area Damage from Hits", statOrder = { 10502 }, level = 72, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [4253777805] = { "(7-10)% chance to take 50% less Area Damage from Hits" }, } }, + ["AnimalCharmChanceFor150%AreaDamage1"] = { type = "Prefix", affix = "Saboteur's", "Hits have (5-6)% chance to deal 50% more Area Damage", statOrder = { 9734 }, level = 1, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2289189129] = { "Hits have (5-6)% chance to deal 50% more Area Damage" }, } }, + ["AnimalCharmChanceFor150%AreaDamage2"] = { type = "Prefix", affix = "Saboteur's", "Hits have (7-10)% chance to deal 50% more Area Damage", statOrder = { 9734 }, level = 60, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2289189129] = { "Hits have (7-10)% chance to deal 50% more Area Damage" }, } }, + ["AnimalCharmCooldownRecoveryRate1"] = { type = "Prefix", affix = "Saboteur's", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 70, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-8)% increased Cooldown Recovery Rate" }, } }, + ["AnimalCharmCooldownRecoveryRate2"] = { type = "Prefix", affix = "Saboteur's", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 81, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(9-12)% increased Cooldown Recovery Rate" }, } }, + ["AnimalCharmChanceToThrow4AdditionalTraps1"] = { type = "Prefix", affix = "Saboteur's", "(2-3)% chance to throw up to 4 additional Traps", statOrder = { 5802 }, level = 1, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3132227798] = { "(2-3)% chance to throw up to 4 additional Traps" }, } }, + ["AnimalCharmChanceToThrow4AdditionalTraps2"] = { type = "Prefix", affix = "Saboteur's", "(4-5)% chance to throw up to 4 additional Traps", statOrder = { 5802 }, level = 60, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3132227798] = { "(4-5)% chance to throw up to 4 additional Traps" }, } }, + ["AnimalCharmCritVsBurningAndShockedEnemies1"] = { type = "Prefix", affix = "Saboteur's", "+(10-15)% to Critical Strike Multiplier against Burning Enemies", "(20-30)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3224, 5996 }, level = 1, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(20-30)% increased Critical Strike Chance against Shocked Enemies" }, [1963942874] = { "+(10-15)% to Critical Strike Multiplier against Burning Enemies" }, } }, + ["AnimalCharmCritVsBurningAndShockedEnemies2"] = { type = "Prefix", affix = "Saboteur's", "+(16-25)% to Critical Strike Multiplier against Burning Enemies", "(31-50)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3224, 5996 }, level = 60, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(31-50)% increased Critical Strike Chance against Shocked Enemies" }, [1963942874] = { "+(16-25)% to Critical Strike Multiplier against Burning Enemies" }, } }, + ["AnimalCharmChargeDuration1"] = { type = "Prefix", affix = "Trickster's", "(40-60)% increased Charge Duration", statOrder = { 5056 }, level = 1, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2171629017] = { "(40-60)% increased Charge Duration" }, } }, + ["AnimalCharmChargeDuration2"] = { type = "Prefix", affix = "Trickster's", "(61-100)% increased Charge Duration", statOrder = { 5056 }, level = 60, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2171629017] = { "(61-100)% increased Charge Duration" }, } }, + ["AnimalCharmLifeManaESOnKill1"] = { type = "Suffix", affix = "of the Trickster", "Recover 1% of Life on Kill", "Recover 1% of Energy Shield on Kill", "Recover 1% of Mana on Kill", statOrder = { 1772, 1773, 1774 }, level = 1, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2406605753] = { "Recover 1% of Energy Shield on Kill" }, [1030153674] = { "Recover 1% of Mana on Kill" }, [2023107756] = { "Recover 1% of Life on Kill" }, } }, + ["AnimalCharmLifeManaESOnKill2"] = { type = "Suffix", affix = "of the Trickster", "Recover 2% of Life on Kill", "Recover 2% of Energy Shield on Kill", "Recover 2% of Mana on Kill", statOrder = { 1772, 1773, 1774 }, level = 60, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2406605753] = { "Recover 2% of Energy Shield on Kill" }, [1030153674] = { "Recover 2% of Mana on Kill" }, [2023107756] = { "Recover 2% of Life on Kill" }, } }, + ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress1"] = { type = "Suffix", affix = "of the Trickster", "(5-8)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3459 }, level = 45, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [3410306164] = { "(5-8)% chance for Energy Shield Recharge to start when you Suppress Spell Damage" }, } }, + ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress2"] = { type = "Suffix", affix = "of the Trickster", "(9-12)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3459 }, level = 72, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [3410306164] = { "(9-12)% chance for Energy Shield Recharge to start when you Suppress Spell Damage" }, } }, + ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage1"] = { type = "Prefix", affix = "Trickster's", "(7-13)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4395 }, level = 45, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1741279188] = { "(7-13)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage" }, } }, + ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage2"] = { type = "Prefix", affix = "Trickster's", "(17-23)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4395 }, level = 72, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, tradeHashes = { [1741279188] = { "(17-23)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage" }, } }, + ["AnimalCharmEvasionPerEnergyShieldOnHelmet1"] = { type = "Suffix", affix = "of the Trickster", "+(1-2) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1569 }, level = 1, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [1144937587] = { "+(1-2) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet" }, } }, + ["AnimalCharmEvasionPerEnergyShieldOnHelmet2"] = { type = "Suffix", affix = "of the Trickster", "+(3-4) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1569 }, level = 60, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [1144937587] = { "+(3-4) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet" }, } }, + ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield1"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(3-4)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1170 }, level = 70, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, tradeHashes = { [1493325653] = { "Prevent +(3-4)% of Suppressed Spell Damage while on Full Energy Shield" }, } }, + ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield2"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(5-6)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1170 }, level = 81, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, tradeHashes = { [1493325653] = { "Prevent +(5-6)% of Suppressed Spell Damage while on Full Energy Shield" }, } }, + ["AnimalCharmEnergyShieldLeech1"] = { type = "Prefix", affix = "Trickster's", "(0.5-1)% of Damage Leeched as Energy Shield", statOrder = { 1744 }, level = 1, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4201339891] = { "(0.5-1)% of Damage Leeched as Energy Shield" }, } }, + ["AnimalCharmEnergyShieldLeech2"] = { type = "Prefix", affix = "Trickster's", "(1.1-2)% of Damage Leeched as Energy Shield", statOrder = { 1744 }, level = 60, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [4201339891] = { "(1.1-2)% of Damage Leeched as Energy Shield" }, } }, + ["AnimalCharmRecover10PercentManaOnSkillUseChance1"] = { type = "Suffix", affix = "of the Trickster", "(4-6)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3511 }, level = 1, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [308309328] = { "(4-6)% chance to Recover 10% of Mana when you use a Skill" }, } }, + ["AnimalCharmRecover10PercentManaOnSkillUseChance2"] = { type = "Suffix", affix = "of the Trickster", "(7-10)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3511 }, level = 60, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [308309328] = { "(7-10)% chance to Recover 10% of Mana when you use a Skill" }, } }, + ["AnimalCharmNoBarrageSpread"] = { type = "Prefix", affix = "Deadeye's", "Projectile Barrages have no spread", statOrder = { 9614 }, level = 45, group = "AnimalCharmNoBarrageSpread", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3953699641] = { "Projectile Barrages have no spread" }, } }, + ["AnimalCharmMarkEffect1"] = { type = "Prefix", affix = "Deadeye's", "(10-15)% increased Effect of your Marks", statOrder = { 2624 }, level = 1, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [803185500] = { "(10-15)% increased Effect of your Marks" }, } }, + ["AnimalCharmMarkEffect2"] = { type = "Prefix", affix = "Deadeye's", "(16-25)% increased Effect of your Marks", statOrder = { 2624 }, level = 60, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [803185500] = { "(16-25)% increased Effect of your Marks" }, } }, + ["AnimalCharmProjectileChainFromTerrainChance1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (7-13)% chance to be able to Chain when colliding with terrain", statOrder = { 1850 }, level = 45, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2140446632] = { "Projectiles have (7-13)% chance to be able to Chain when colliding with terrain" }, } }, + ["AnimalCharmProjectileChainFromTerrainChance2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (14-20)% chance to be able to Chain when colliding with terrain", statOrder = { 1850 }, level = 72, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2140446632] = { "Projectiles have (14-20)% chance to be able to Chain when colliding with terrain" }, } }, + ["AnimalCharmAdditionalProjectiles"] = { type = "Prefix", affix = "Deadeye's", "Skills fire an additional Projectile", statOrder = { 1815 }, level = 81, group = "AnimalCharmAdditionalProjectiles", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } }, + ["AnimalCharmMirageArcherDuration1"] = { type = "Suffix", affix = "of the Deadeye", "(30-50)% increased Mirage Archer Duration", statOrder = { 9509 }, level = 1, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3663580344] = { "(30-50)% increased Mirage Archer Duration" }, } }, + ["AnimalCharmMirageArcherDuration2"] = { type = "Suffix", affix = "of the Deadeye", "(51-100)% increased Mirage Archer Duration", statOrder = { 9509 }, level = 60, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3663580344] = { "(51-100)% increased Mirage Archer Duration" }, } }, + ["AnimalCharmProjectileDamageWithDistanceTravelled1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (25-40)% increased Damage with Hits to targets", statOrder = { 4117, 4117.1 }, level = 1, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2083727359] = { "Projectiles gain Damage as they travel farther, dealing up", "to (25-40)% increased Damage with Hits to targets" }, } }, + ["AnimalCharmProjectileDamageWithDistanceTravelled2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (41-60)% increased Damage with Hits to targets", statOrder = { 4117, 4117.1 }, level = 60, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2083727359] = { "Projectiles gain Damage as they travel farther, dealing up", "to (41-60)% increased Damage with Hits to targets" }, } }, + ["AnimalCharmLifeOnHitVsBleedingEnemies1"] = { type = "Suffix", affix = "of the Deadeye", "Gain (6-10) Life per Bleeding Enemy Hit", statOrder = { 3606 }, level = 1, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3148570142] = { "Gain (6-10) Life per Bleeding Enemy Hit" }, } }, + ["AnimalCharmLifeOnHitVsBleedingEnemies2"] = { type = "Suffix", affix = "of the Deadeye", "Gain (11-20) Life per Bleeding Enemy Hit", statOrder = { 3606 }, level = 60, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3148570142] = { "Gain (11-20) Life per Bleeding Enemy Hit" }, } }, + ["AnimalCharmAccuracyIfCritInLast8Seconds1"] = { type = "Prefix", affix = "Deadeye's", "(7-13)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4565 }, level = 1, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1381557885] = { "(7-13)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds" }, } }, + ["AnimalCharmAccuracyIfCritInLast8Seconds2"] = { type = "Prefix", affix = "Deadeye's", "(14-20)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4565 }, level = 60, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1381557885] = { "(14-20)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds" }, } }, + ["AnimalCharmOnslaughtEffect1"] = { type = "Prefix", affix = "Raider's", "(15-25)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 1, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(15-25)% increased Effect of Onslaught on you" }, } }, + ["AnimalCharmOnslaughtEffect2"] = { type = "Prefix", affix = "Raider's", "(26-40)% increased Effect of Onslaught on you", statOrder = { 3326 }, level = 60, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(26-40)% increased Effect of Onslaught on you" }, } }, + ["AnimalCharmPhasingOnKillChance1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 1, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(10-15)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["AnimalCharmPhasingOnKillChance2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 60, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(16-25)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["AnimalCharmSpellSuppressionChance1"] = { type = "Suffix", affix = "of the Raider", "+(5-9)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 1, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-9)% chance to Suppress Spell Damage" }, } }, + ["AnimalCharmSpellSuppressionChance2"] = { type = "Suffix", affix = "of the Raider", "+(10-15)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 60, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(10-15)% chance to Suppress Spell Damage" }, } }, + ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4992 }, level = 1, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [115351487] = { "(10-15)% chance to Avoid Elemental Ailments while Phasing" }, } }, + ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4992 }, level = 60, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [115351487] = { "(16-25)% chance to Avoid Elemental Ailments while Phasing" }, } }, + ["AnimalCharmOnslaughtOnKillChance1"] = { type = "Prefix", affix = "Raider's", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3416 }, level = 1, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [665823128] = { "(10-15)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["AnimalCharmOnslaughtOnKillChance2"] = { type = "Prefix", affix = "Raider's", "(16-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3416 }, level = 60, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [665823128] = { "(16-25)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["AnimalCharmEvasionRatingPerFrenzyCharge1"] = { type = "Suffix", affix = "of the Raider", "(3-5)% increased Evasion Rating per Frenzy Charge", statOrder = { 1578 }, level = 1, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [660404777] = { "(3-5)% increased Evasion Rating per Frenzy Charge" }, } }, + ["AnimalCharmEvasionRatingPerFrenzyCharge2"] = { type = "Suffix", affix = "of the Raider", "(6-9)% increased Evasion Rating per Frenzy Charge", statOrder = { 1578 }, level = 60, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [660404777] = { "(6-9)% increased Evasion Rating per Frenzy Charge" }, } }, + ["AnimalCharmMovementSpeedPerFrenzyCharge"] = { type = "Prefix", affix = "Raider's", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1825 }, level = 70, group = "AnimalCharmMovementSpeedPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } }, + ["AnimalCharmFrenzyOnHItChance1"] = { type = "Prefix", affix = "Raider's", "(3-5)% chance to gain a Frenzy Charge on Hit", statOrder = { 1856 }, level = 45, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2323242761] = { "(3-5)% chance to gain a Frenzy Charge on Hit" }, } }, + ["AnimalCharmFrenzyOnHItChance2"] = { type = "Prefix", affix = "Raider's", "(6-8)% chance to gain a Frenzy Charge on Hit", statOrder = { 1856 }, level = 72, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2323242761] = { "(6-8)% chance to gain a Frenzy Charge on Hit" }, } }, + ["AnimalCharmFlaskChargesEvery3Seconds"] = { type = "Suffix", affix = "of the Pathfinder", "Flasks gain a Charge every 3 seconds", statOrder = { 3514 }, level = 81, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { "flask" }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } }, + ["AnimalCharmRemoveBleedOnFlaskUse"] = { type = "Suffix", affix = "of the Pathfinder", "Removes Bleeding when you use a Flask", statOrder = { 3422 }, level = 45, group = "AnimalCharmRemoveBleedOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2202201823] = { "Removes Bleeding when you use a Flask" }, } }, + ["AnimalCharmMagicUtilityFlaskEffect1"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (6-10)% increased Effect", statOrder = { 2777 }, level = 70, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2564857472] = { "Magic Utility Flasks applied to you have (6-10)% increased Effect" }, } }, + ["AnimalCharmMagicUtilityFlaskEffect2"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (11-15)% increased Effect", statOrder = { 2777 }, level = 81, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [2564857472] = { "Magic Utility Flasks applied to you have (11-15)% increased Effect" }, } }, + ["AnimalCharmWitheredOnHitChance1"] = { type = "Prefix", affix = "Pathfinder's", "(6-10)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4435 }, level = 45, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1957711555] = { "(6-10)% chance to inflict Withered for 2 seconds on Hit" }, } }, + ["AnimalCharmWitheredOnHitChance2"] = { type = "Prefix", affix = "Pathfinder's", "(11-15)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4435 }, level = 72, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [1957711555] = { "(11-15)% chance to inflict Withered for 2 seconds on Hit" }, } }, + ["AnimalCharmRecoverLifeOnFlaskUse1"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (2-3)% of Life when you use a Flask", statOrder = { 4380 }, level = 45, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3184268466] = { "Recover (2-3)% of Life when you use a Flask" }, } }, + ["AnimalCharmRecoverLifeOnFlaskUse2"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (4-5)% of Life when you use a Flask", statOrder = { 4380 }, level = 72, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [3184268466] = { "Recover (4-5)% of Life when you use a Flask" }, } }, + ["AnimalCharmWitheredEffect1"] = { type = "Prefix", affix = "Pathfinder's", "(7-13)% increased Effect of Withered", statOrder = { 10782 }, level = 1, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2545584555] = { "(7-13)% increased Effect of Withered" }, } }, + ["AnimalCharmWitheredEffect2"] = { type = "Prefix", affix = "Pathfinder's", "(14-20)% increased Effect of Withered", statOrder = { 10782 }, level = 60, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2545584555] = { "(14-20)% increased Effect of Withered" }, } }, + ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments1"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (15-25)% increased Flask Charges", statOrder = { 4285, 4285.1 }, level = 1, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [589437732] = { "Enemies you Kill that are affected by Elemental Ailments", "grant (15-25)% increased Flask Charges" }, } }, + ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments2"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (26-40)% increased Flask Charges", statOrder = { 4285, 4285.1 }, level = 60, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [589437732] = { "Enemies you Kill that are affected by Elemental Ailments", "grant (26-40)% increased Flask Charges" }, } }, + ["AnimalCharmPhysicalDamageAsRandomElement1"] = { type = "Prefix", affix = "Pathfinder's", "Gain (5-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 1, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3753703249] = { "Gain (5-8)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["AnimalCharmPhysicalDamageAsRandomElement2"] = { type = "Prefix", affix = "Pathfinder's", "Gain (9-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 60, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3753703249] = { "Gain (9-12)% of Physical Damage as Extra Damage of a random Element" }, } }, } \ No newline at end of file diff --git a/src/Data/ModJewelCluster.lua b/src/Data/ModJewelCluster.lua index cd31d83698..9ea8cbe512 100644 --- a/src/Data/ModJewelCluster.lua +++ b/src/Data/ModJewelCluster.lua @@ -2,561 +2,561 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-3)% to Chaos Resistance" }, } }, - ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1408638732] = { "1% reduced Character Size" }, } }, - ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(3-5)% reduced Chill Duration on you" }, } }, - ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(3-5)% reduced Freeze Duration on you" }, } }, - ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(3-5)% reduced Ignite Duration on you" }, } }, - ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1873 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(3-5)% reduced Shock Duration on you" }, } }, - ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(3-7)% increased Endurance, Frenzy and Power Charge Duration" }, } }, - ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } }, - ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3132 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, tradeHashes = { [165218607] = { "Hits have (60-100)% increased Critical Strike Chance against you" }, } }, - ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3096 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [3582580206] = { "(20-30)% increased Damage while Dead" }, } }, - ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(5-10)% increased Damage with Vaal Skills" }, } }, - ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "1% increased Chaos Damage for each Corrupted Item Equipped" }, } }, - ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3100 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3815042054] = { "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped" }, } }, - ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3102 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2679819855] = { "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped" }, } }, - ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10657 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(5-7)% increased Effect of Non-Damaging Ailments" }, } }, - ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-5)% increased Area of Effect" }, } }, - ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-10)% increased Global Critical Strike Chance" }, } }, - ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(4-5)% increased Damage" }, } }, - ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, - ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-5)% increased Damage" }, } }, - ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4202507508] = { "2% increased Reservation Efficiency of Skills" }, } }, - ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2587176568] = { "2% increased Reservation Efficiency of Skills" }, } }, - ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, - ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, - ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, - ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, - ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, - ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7171 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-25)% chance to Avoid being Ignited" }, } }, - ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-25)% chance to Avoid being Chilled" }, [1514829491] = { "(20-25)% chance to Avoid being Frozen" }, } }, - ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-25)% chance to Avoid being Shocked" }, } }, - ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(20-25)% chance to Avoid being Poisoned" }, } }, - ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(20-25)% chance to Avoid Bleeding" }, } }, - ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, - ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-25)% reduced Ignite Duration on you" }, } }, - ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(20-25)% reduced Effect of Chill on you" }, } }, - ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-25)% reduced Effect of Shock on you" }, } }, - ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9979 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-25)% reduced Poison Duration on you" }, } }, - ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9970 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-25)% reduced Bleed Duration on you" }, } }, - ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(20-25)% reduced Effect of Curses on you" }, } }, - ["AfflictionNotableProdigiousDefense__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prodigious Defence", statOrder = { 7755 }, level = 1, group = "AfflictionNotableProdigiousDefense", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, tradeHashes = { [1705633890] = { "1 Added Passive Skill is Prodigious Defence" }, } }, - ["AfflictionNotableAdvanceGuard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Advance Guard", statOrder = { 7556 }, level = 50, group = "AfflictionNotableAdvanceGuard", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, tradeHashes = { [1625939562] = { "1 Added Passive Skill is Advance Guard" }, } }, - ["AfflictionNotableGladiatorialCombat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiatorial Combat", statOrder = { 7678 }, level = 68, group = "AfflictionNotableGladiatorialCombat", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1543731719] = { "1 Added Passive Skill is Gladiatorial Combat" }, } }, - ["AfflictionNotableStrikeLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Strike Leader", statOrder = { 7810 }, level = 1, group = "AfflictionNotableStrikeLeader", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, tradeHashes = { [282062371] = { "1 Added Passive Skill is Strike Leader" }, } }, - ["AfflictionNotablePowerfulWard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Ward", statOrder = { 7745 }, level = 68, group = "AfflictionNotablePowerfulWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge" }, tradeHashes = { [164032122] = { "1 Added Passive Skill is Powerful Ward" }, } }, - ["AfflictionNotableEnduringWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Ward", statOrder = { 7646 }, level = 68, group = "AfflictionNotableEnduringWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge" }, tradeHashes = { [252724319] = { "1 Added Passive Skill is Enduring Ward" }, } }, - ["AfflictionNotableGladiatorsFortitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiator's Fortitude", statOrder = { 7679 }, level = 68, group = "AfflictionNotableGladiatorsFortitude", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_maximum_life", "default", }, weightVal = { 113, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, tradeHashes = { [1591995797] = { "1 Added Passive Skill is Gladiator's Fortitude" }, } }, - ["AfflictionNotablePreciseRetaliation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Retaliation", statOrder = { 7749 }, level = 50, group = "AfflictionNotablePreciseRetaliation", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_critical_chance", "default", }, weightVal = { 300, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [2335364359] = { "1 Added Passive Skill is Precise Retaliation" }, } }, - ["AfflictionNotableVeteranDefender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Veteran Defender", statOrder = { 7832 }, level = 1, group = "AfflictionNotableVeteranDefender", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "elemental", "resistance", "attribute" }, tradeHashes = { [664010431] = { "1 Added Passive Skill is Veteran Defender" }, } }, - ["AfflictionNotableIronBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Iron Breaker", statOrder = { 7706 }, level = 1, group = "AfflictionNotableIronBreaker", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3258653591] = { "1 Added Passive Skill is Iron Breaker" }, } }, - ["AfflictionNotableDeepCuts"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Cuts", statOrder = { 7624 }, level = 75, group = "AfflictionNotableDeepCuts", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack" }, tradeHashes = { [410939404] = { "1 Added Passive Skill is Deep Cuts" }, } }, - ["AfflictionNotableMastertheFundamentals_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master the Fundamentals", statOrder = { 7723 }, level = 50, group = "AfflictionNotableMastertheFundamentals", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "resistance" }, tradeHashes = { [3585232432] = { "1 Added Passive Skill is Master the Fundamentals" }, } }, - ["AfflictionNotableForceMultiplier"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Force Multiplier", statOrder = { 7673 }, level = 50, group = "AfflictionNotableForceMultiplier", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1904581068] = { "1 Added Passive Skill is Force Multiplier" }, } }, - ["AfflictionNotableFuriousAssault"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Furious Assault", statOrder = { 7676 }, level = 1, group = "AfflictionNotableFuriousAssault", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "damage", "physical", "attack", "caster" }, tradeHashes = { [3415827027] = { "1 Added Passive Skill is Furious Assault" }, } }, - ["AfflictionNotableViciousSkewering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Skewering", statOrder = { 7835 }, level = 68, group = "AfflictionNotableViciousSkewering", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 81, 141, 141, 151, 145, 151, 113, 117, 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [567971948] = { "1 Added Passive Skill is Vicious Skewering" }, } }, - ["AfflictionNotableGrimOath"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Grim Oath", statOrder = { 7683 }, level = 68, group = "AfflictionNotableGrimOath", weightKey = { "affliction_physical_damage", "affliction_chaos_damage", "default", }, weightVal = { 87, 97, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [2194205899] = { "1 Added Passive Skill is Grim Oath" }, } }, - ["AfflictionNotableBattleHardened_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battle-Hardened", statOrder = { 7577 }, level = 50, group = "AfflictionNotableBattleHardened", weightKey = { "affliction_physical_damage", "affliction_armour", "affliction_evasion", "default", }, weightVal = { 232, 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "evasion", "physical" }, tradeHashes = { [4188581520] = { "1 Added Passive Skill is Battle-Hardened" }, } }, - ["AfflictionNotableReplenishingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Replenishing Presence", statOrder = { 7773 }, level = 50, group = "AfflictionNotableReplenishingPresence", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, tradeHashes = { [1496043857] = { "1 Added Passive Skill is Replenishing Presence" }, } }, - ["AfflictionNotableMasterofCommand__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Command", statOrder = { 7719 }, level = 68, group = "AfflictionNotableMasterofCommand", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3257074218] = { "1 Added Passive Skill is Master of Command" }, } }, - ["AfflictionNotableFirstAmongEquals__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiteful Presence", statOrder = { 7668 }, level = 1, group = "AfflictionNotableFirstAmongEquals", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 960, 960, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "cold", "aura", "ailment" }, tradeHashes = { [1134501245] = { "1 Added Passive Skill is Spiteful Presence" }, } }, - ["AfflictionNotablePurposefulHarbinger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Purposeful Harbinger", statOrder = { 7762 }, level = 75, group = "AfflictionNotablePurposefulHarbinger", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 60, 60, 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [507505131] = { "1 Added Passive Skill is Purposeful Harbinger" }, } }, - ["AfflictionNotablePreciseCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Destructive Aspect", statOrder = { 7747 }, level = 68, group = "AfflictionNotablePreciseCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_critical_chance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3860179422] = { "1 Added Passive Skill is Destructive Aspect" }, } }, - ["AfflictionNotablePureCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Electric Presence", statOrder = { 7759 }, level = 68, group = "AfflictionNotablePureCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "aura", "ailment" }, tradeHashes = { [3950683692] = { "1 Added Passive Skill is Electric Presence" }, } }, - ["AfflictionNotableSummerCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mortifying Aspect", statOrder = { 7814 }, level = 68, group = "AfflictionNotableSummerCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "chaos", "resistance", "aura" }, tradeHashes = { [3881737087] = { "1 Added Passive Skill is Mortifying Aspect" }, } }, - ["AfflictionNotableWinterCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Frantic Aspect", statOrder = { 7850 }, level = 68, group = "AfflictionNotableWinterCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_cold_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "speed", "aura" }, tradeHashes = { [792262925] = { "1 Added Passive Skill is Frantic Aspect" }, } }, - ["AfflictionNotableGroundedCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Introspection", statOrder = { 7684 }, level = 68, group = "AfflictionNotableGroundedCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, tradeHashes = { [1309218394] = { "1 Added Passive Skill is Introspection" }, } }, - ["AfflictionNotableStalwartCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Volatile Presence", statOrder = { 7803 }, level = 50, group = "AfflictionNotableStalwartCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_armour", "affliction_evasion", "affliction_maximum_energy_shield", "default", }, weightVal = { 480, 480, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "fire", "aura", "ailment" }, tradeHashes = { [2350668735] = { "1 Added Passive Skill is Volatile Presence" }, } }, - ["AfflictionNotableVengefulCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Righteous Path", statOrder = { 7831 }, level = 1, group = "AfflictionNotableVengefulCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 960, 960, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2620267328] = { "1 Added Passive Skill is Righteous Path" }, } }, - ["AfflictionNotableSkullbreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skullbreaker", statOrder = { 7794 }, level = 68, group = "AfflictionNotableSkullbreaker", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [315697256] = { "1 Added Passive Skill is Skullbreaker" }, } }, - ["AfflictionNotablePressurePoints__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pressure Points", statOrder = { 7750 }, level = 50, group = "AfflictionNotablePressurePoints", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [3391925584] = { "1 Added Passive Skill is Pressure Points" }, } }, - ["AfflictionNotableOverwhelmingMalice"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overwhelming Malice", statOrder = { 7739 }, level = 68, group = "AfflictionNotableOverwhelmingMalice", weightKey = { "affliction_critical_chance", "affliction_chaos_damage", "default", }, weightVal = { 171, 97, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [770408103] = { "1 Added Passive Skill is Overwhelming Malice" }, } }, - ["AfflictionNotableMagnifier"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Magnifier", statOrder = { 7715 }, level = 1, group = "AfflictionNotableMagnifier", weightKey = { "affliction_critical_chance", "affliction_area_damage", "default", }, weightVal = { 914, 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [2886441936] = { "1 Added Passive Skill is Magnifier" }, } }, - ["AfflictionNotableSavageResponse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savage Response", statOrder = { 7782 }, level = 50, group = "AfflictionNotableSavageResponse", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [4222635921] = { "1 Added Passive Skill is Savage Response" }, } }, - ["AfflictionNotableEyeoftheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye of the Storm", statOrder = { 7656 }, level = 50, group = "AfflictionNotableEyeoftheStorm", weightKey = { "affliction_critical_chance", "affliction_fire_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 457, 366, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "critical", "ailment" }, tradeHashes = { [3818661553] = { "1 Added Passive Skill is Eye of the Storm" }, } }, - ["AfflictionNotableBasicsofPain"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Basics of Pain", statOrder = { 7576 }, level = 1, group = "AfflictionNotableBasicsofPain", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [3084359503] = { "1 Added Passive Skill is Basics of Pain" }, } }, - ["AfflictionNotableQuickGetaway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick Getaway", statOrder = { 7764 }, level = 1, group = "AfflictionNotableQuickGetaway", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "critical" }, tradeHashes = { [1626818279] = { "1 Added Passive Skill is Quick Getaway" }, } }, - ["AfflictionNotableAssertDominance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Assert Dominance", statOrder = { 7574 }, level = 68, group = "AfflictionNotableAssertDominance", weightKey = { "affliction_area_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [4222265138] = { "1 Added Passive Skill is Assert Dominance" }, } }, - ["AfflictionNotableVastPower"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vast Power", statOrder = { 7830 }, level = 50, group = "AfflictionNotableVastPower", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [1996576560] = { "1 Added Passive Skill is Vast Power" }, } }, - ["AfflictionNotablePowerfulAssault_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Assault", statOrder = { 7744 }, level = 50, group = "AfflictionNotablePowerfulAssault", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [1005475168] = { "1 Added Passive Skill is Powerful Assault" }, } }, - ["AfflictionNotableIntensity"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Intensity", statOrder = { 7704 }, level = 68, group = "AfflictionNotableIntensity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2785835061] = { "1 Added Passive Skill is Intensity" }, } }, - ["AfflictionNotableTitanicSwings_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Titanic Swings", statOrder = { 7822 }, level = 50, group = "AfflictionNotableTitanicSwings", weightKey = { "affliction_area_damage", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 980, 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2930275641] = { "1 Added Passive Skill is Titanic Swings" }, } }, - ["AfflictionNotableToweringThreat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Towering Threat", statOrder = { 7824 }, level = 68, group = "AfflictionNotableToweringThreat", weightKey = { "affliction_area_damage", "affliction_maximum_life", "default", }, weightVal = { 367, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, tradeHashes = { [3536778624] = { "1 Added Passive Skill is Towering Threat" }, } }, - ["AfflictionNotableAncestralEcho"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Echo", statOrder = { 7562 }, level = 1, group = "AfflictionNotableAncestralEcho", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [957679205] = { "1 Added Passive Skill is Ancestral Echo" }, } }, - ["AfflictionNotableAncestralReach"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Reach", statOrder = { 7567 }, level = 1, group = "AfflictionNotableAncestralReach", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, tradeHashes = { [3294884567] = { "1 Added Passive Skill is Ancestral Reach" }, } }, - ["AfflictionNotableAncestralMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Might", statOrder = { 7565 }, level = 50, group = "AfflictionNotableAncestralMight", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3998316] = { "1 Added Passive Skill is Ancestral Might" }, } }, - ["AfflictionNotableAncestralPreservation__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Preservation", statOrder = { 7566 }, level = 68, group = "AfflictionNotableAncestralPreservation", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance" }, tradeHashes = { [3746703776] = { "1 Added Passive Skill is Ancestral Preservation" }, } }, - ["AfflictionNotableSnaringSpirits"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snaring Spirits", statOrder = { 7798 }, level = 50, group = "AfflictionNotableSnaringSpirits", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3319205340] = { "1 Added Passive Skill is Snaring Spirits" }, } }, - ["AfflictionNotableSleeplessSentries"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sleepless Sentries", statOrder = { 7795 }, level = 68, group = "AfflictionNotableSleeplessSentries", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [3993957711] = { "1 Added Passive Skill is Sleepless Sentries" }, } }, - ["AfflictionNotableAncestralGuidance_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Guidance", statOrder = { 7563 }, level = 50, group = "AfflictionNotableAncestralGuidance", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, tradeHashes = { [2387747995] = { "1 Added Passive Skill is Ancestral Guidance" }, } }, - ["AfflictionNotableAncestralInspiration__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Inspiration", statOrder = { 7564 }, level = 68, group = "AfflictionNotableAncestralInspiration", weightKey = { "affliction_totem_damage", "affliction_spell_damage", "default", }, weightVal = { 277, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster" }, tradeHashes = { [77045106] = { "1 Added Passive Skill is Ancestral Inspiration" }, } }, - ["AfflictionNotableVitalFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vital Focus", statOrder = { 7838 }, level = 1, group = "AfflictionNotableVitalFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1811, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, tradeHashes = { [2134141047] = { "1 Added Passive Skill is Vital Focus" }, } }, - ["AfflictionNotableRapidInfusion_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unrestrained Focus", statOrder = { 7765 }, level = 68, group = "AfflictionNotableRapidInfusion", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 340, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, tradeHashes = { [1570474940] = { "1 Added Passive Skill is Unrestrained Focus" }, } }, - ["AfflictionNotableUnwaveringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwavering Focus", statOrder = { 7828 }, level = 50, group = "AfflictionNotableUnwaveringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "damage" }, tradeHashes = { [367638058] = { "1 Added Passive Skill is Unwavering Focus" }, } }, - ["AfflictionNotableEnduringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Focus", statOrder = { 7645 }, level = 75, group = "AfflictionNotableEnduringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "damage" }, tradeHashes = { [2522970386] = { "1 Added Passive Skill is Enduring Focus" }, } }, - ["AfflictionNotablePreciseFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Focus", statOrder = { 7748 }, level = 50, group = "AfflictionNotablePreciseFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [2913581789] = { "1 Added Passive Skill is Precise Focus" }, } }, - ["AfflictionNotableStoicFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stoic Focus", statOrder = { 7805 }, level = 1, group = "AfflictionNotableStoicFocus", weightKey = { "affliction_channelling_skill_damage", "affliction_chance_to_block", "default", }, weightVal = { 1811, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage" }, tradeHashes = { [1088949570] = { "1 Added Passive Skill is Stoic Focus" }, } }, - ["AfflictionNotableHexBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hex Breaker", statOrder = { 7692 }, level = 75, group = "AfflictionNotableHexBreaker", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "curse" }, tradeHashes = { [2341828832] = { "1 Added Passive Skill is Hex Breaker" }, } }, - ["AfflictionNotableArcaneAdept_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Adept", statOrder = { 7570 }, level = 68, group = "AfflictionNotableArcaneAdept", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, tradeHashes = { [393565679] = { "1 Added Passive Skill is Arcane Adept" }, } }, - ["AfflictionNotableDistilledPerfection_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Distilled Perfection", statOrder = { 7633 }, level = 1, group = "AfflictionNotableDistilledPerfection", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [3652138990] = { "1 Added Passive Skill is Distilled Perfection" }, } }, - ["AfflictionNotableSpikedConcoction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiked Concoction", statOrder = { 7801 }, level = 50, group = "AfflictionNotableSpikedConcoction", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [3372255769] = { "1 Added Passive Skill is Spiked Concoction" }, } }, - ["AfflictionNotableFasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fasting", statOrder = { 7660 }, level = 50, group = "AfflictionNotableFasting", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "speed" }, tradeHashes = { [37078857] = { "1 Added Passive Skill is Fasting" }, } }, - ["AfflictionNotableMendersWellspring__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mender's Wellspring", statOrder = { 7724 }, level = 68, group = "AfflictionNotableMendersWellspring", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, tradeHashes = { [4291434923] = { "1 Added Passive Skill is Mender's Wellspring" }, } }, - ["AfflictionNotableSpecialReserve"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Special Reserve", statOrder = { 7800 }, level = 1, group = "AfflictionNotableSpecialReserve", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "damage" }, tradeHashes = { [4235300427] = { "1 Added Passive Skill is Special Reserve" }, } }, - ["AfflictionNotableNumbingElixir"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Numbing Elixir", statOrder = { 7733 }, level = 68, group = "AfflictionNotableNumbingElixir", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "caster", "ailment", "curse" }, tradeHashes = { [1028754276] = { "1 Added Passive Skill is Numbing Elixir" }, } }, - ["AfflictionNotableMobMentality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mob Mentality", statOrder = { 7727 }, level = 75, group = "AfflictionNotableMobMentality", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 109, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "damage", "attack" }, tradeHashes = { [1048879642] = { "1 Added Passive Skill is Mob Mentality" }, } }, - ["AfflictionNotableCryWolf__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cry Wolf", statOrder = { 7615 }, level = 68, group = "AfflictionNotableCryWolf", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [1821748178] = { "1 Added Passive Skill is Cry Wolf" }, } }, - ["AfflictionNotableHauntingShout"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haunting Shout", statOrder = { 7687 }, level = 50, group = "AfflictionNotableHauntingShout", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [1080363357] = { "1 Added Passive Skill is Haunting Shout" }, } }, - ["AfflictionNotableLeadByExample__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lead By Example", statOrder = { 7708 }, level = 1, group = "AfflictionNotableLeadByExample", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, tradeHashes = { [2195406641] = { "1 Added Passive Skill is Lead By Example" }, } }, - ["AfflictionNotableProvocateur"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Provocateur", statOrder = { 7756 }, level = 50, group = "AfflictionNotableProvocateur", weightKey = { "affliction_warcry_buff_effect", "affliction_critical_chance", "default", }, weightVal = { 873, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [814369372] = { "1 Added Passive Skill is Provocateur" }, } }, - ["AfflictionNotableWarningCall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Warning Call", statOrder = { 7842 }, level = 68, group = "AfflictionNotableWarningCall", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, tradeHashes = { [578355556] = { "1 Added Passive Skill is Warning Call" }, } }, - ["AfflictionNotableRattlingBellow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rattling Bellow", statOrder = { 7766 }, level = 1, group = "AfflictionNotableRattlingBellow", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, tradeHashes = { [4288473380] = { "1 Added Passive Skill is Rattling Bellow" }, } }, - ["AfflictionNotableBloodscent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bloodscent", statOrder = { 7585 }, level = 75, group = "AfflictionNotableBloodscent", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, tradeHashes = { [3967765261] = { "1 Added Passive Skill is Bloodscent" }, } }, - ["AfflictionNotableRunThrough"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Run Through", statOrder = { 7778 }, level = 68, group = "AfflictionNotableRunThrough", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1488030420] = { "1 Added Passive Skill is Run Through" }, } }, - ["AfflictionNotableWoundAggravation____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wound Aggravation", statOrder = { 7854 }, level = 1, group = "AfflictionNotableWoundAggravation", weightKey = { "affliction_axe_and_sword_damage", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 750, 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69078820] = { "1 Added Passive Skill is Wound Aggravation" }, } }, - ["AfflictionNotableOverlord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overlord", statOrder = { 7737 }, level = 75, group = "AfflictionNotableOverlord", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2250169390] = { "1 Added Passive Skill is Overlord" }, } }, - ["AfflictionNotableExpansiveMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expansive Might", statOrder = { 7651 }, level = 68, group = "AfflictionNotableExpansiveMight", weightKey = { "affliction_mace_and_staff_damage", "affliction_area_damage", "default", }, weightVal = { 141, 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [394918362] = { "1 Added Passive Skill is Expansive Might" }, } }, - ["AfflictionNotableWeightAdvantage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Weight Advantage", statOrder = { 7844 }, level = 1, group = "AfflictionNotableWeightAdvantage", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, tradeHashes = { [2244243943] = { "1 Added Passive Skill is Weight Advantage" }, } }, - ["AfflictionNotableWindup_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wind-up", statOrder = { 7849 }, level = 68, group = "AfflictionNotableWindup", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "damage", "attack", "critical" }, tradeHashes = { [1938661964] = { "1 Added Passive Skill is Wind-up" }, } }, - ["AfflictionNotableFanofBlades_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan of Blades", statOrder = { 7658 }, level = 75, group = "AfflictionNotableFanofBlades", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 51, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2484082827] = { "1 Added Passive Skill is Fan of Blades" }, } }, - ["AfflictionNotableDiseaseVector"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disease Vector", statOrder = { 7630 }, level = 50, group = "AfflictionNotableDiseaseVector", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 404, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [183591019] = { "1 Added Passive Skill is Disease Vector" }, } }, - ["AfflictionNotableArcingShot__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcing Shot", statOrder = { 7573 }, level = 50, group = "AfflictionNotableArcingShot", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3212859169] = { "1 Added Passive Skill is Arcing Shot" }, } }, - ["AfflictionNotableTemperedArrowheads"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempered Arrowheads", statOrder = { 7819 }, level = 50, group = "AfflictionNotableTemperedArrowheads", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "ailment" }, tradeHashes = { [2631806437] = { "1 Added Passive Skill is Tempered Arrowheads" }, } }, - ["AfflictionNotableBroadside_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Broadside", statOrder = { 7591 }, level = 1, group = "AfflictionNotableBroadside", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 774, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, tradeHashes = { [2205982416] = { "1 Added Passive Skill is Broadside" }, } }, - ["AfflictionNotableExplosiveForce"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Explosive Force", statOrder = { 7654 }, level = 68, group = "AfflictionNotableExplosiveForce", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [2017927451] = { "1 Added Passive Skill is Explosive Force" }, } }, - ["AfflictionNotableOpportunisticFusilade_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Opportunistic Fusilade", statOrder = { 7736 }, level = 1, group = "AfflictionNotableOpportunisticFusilade", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 807, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4281625943] = { "1 Added Passive Skill is Opportunistic Fusilade" }, } }, - ["AfflictionNotableStormsHand"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm's Hand", statOrder = { 7808 }, level = 50, group = "AfflictionNotableStormsHand", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 403, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1122051203] = { "1 Added Passive Skill is Storm's Hand" }, } }, - ["AfflictionNotableBattlefieldDominator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battlefield Dominator", statOrder = { 7578 }, level = 1, group = "AfflictionNotableBattlefieldDominator", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [1499057234] = { "1 Added Passive Skill is Battlefield Dominator" }, } }, - ["AfflictionNotableMartialMastery"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Mastery", statOrder = { 7716 }, level = 50, group = "AfflictionNotableMartialMastery", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "attribute" }, tradeHashes = { [1015189426] = { "1 Added Passive Skill is Martial Mastery" }, } }, - ["AfflictionNotableSurefootedStriker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surefooted Striker", statOrder = { 7816 }, level = 50, group = "AfflictionNotableSurefootedStriker", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3410752193] = { "1 Added Passive Skill is Surefooted Striker" }, } }, - ["AfflictionNotableGracefulExecution_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Graceful Execution", statOrder = { 7680 }, level = 1, group = "AfflictionNotableGracefulExecution", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "critical", "attribute" }, tradeHashes = { [1903496649] = { "1 Added Passive Skill is Graceful Execution" }, } }, - ["AfflictionNotableBrutalInfamy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brutal Infamy", statOrder = { 7593 }, level = 50, group = "AfflictionNotableBrutalInfamy", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2068574831] = { "1 Added Passive Skill is Brutal Infamy" }, } }, - ["AfflictionNotableFearsomeWarrior"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fearsome Warrior", statOrder = { 7661 }, level = 68, group = "AfflictionNotableFearsomeWarrior", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [3134222965] = { "1 Added Passive Skill is Fearsome Warrior" }, } }, - ["AfflictionNotableCombatRhythm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Combat Rhythm", statOrder = { 7607 }, level = 50, group = "AfflictionNotableCombatRhythm", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed" }, tradeHashes = { [3122505794] = { "1 Added Passive Skill is Combat Rhythm" }, } }, - ["AfflictionNotableHitandRun"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hit and Run", statOrder = { 7694 }, level = 1, group = "AfflictionNotableHitandRun", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 623, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2665170385] = { "1 Added Passive Skill is Hit and Run" }, } }, - ["AfflictionNotableInsatiableKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insatiable Killer", statOrder = { 7701 }, level = 50, group = "AfflictionNotableInsatiableKiller", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "frenzy_charge", "attack", "speed" }, tradeHashes = { [3904970959] = { "1 Added Passive Skill is Insatiable Killer" }, } }, - ["AfflictionNotableMageBane__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Bane", statOrder = { 7713 }, level = 68, group = "AfflictionNotableMageBane", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_block", "default", }, weightVal = { 117, 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "damage", "attack" }, tradeHashes = { [684155617] = { "1 Added Passive Skill is Mage Bane" }, } }, - ["AfflictionNotableMartialMomentum"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Momentum", statOrder = { 7717 }, level = 50, group = "AfflictionNotableMartialMomentum", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, tradeHashes = { [2978494217] = { "1 Added Passive Skill is Martial Momentum" }, } }, - ["AfflictionNotableDeadlyRepartee"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deadly Repartee", statOrder = { 7622 }, level = 1, group = "AfflictionNotableDeadlyRepartee", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 623, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack", "critical" }, tradeHashes = { [1013470938] = { "1 Added Passive Skill is Deadly Repartee" }, } }, - ["AfflictionNotableQuickandDeadly_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick and Deadly", statOrder = { 7763 }, level = 68, group = "AfflictionNotableQuickandDeadly", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 117, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, tradeHashes = { [2169345147] = { "1 Added Passive Skill is Quick and Deadly" }, } }, - ["AfflictionNotableSmitetheWeak"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Smite the Weak", statOrder = { 7796 }, level = 1, group = "AfflictionNotableSmitetheWeak", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [540300548] = { "1 Added Passive Skill is Smite the Weak" }, } }, - ["AfflictionNotableHeavyHitter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Heavy Hitter", statOrder = { 7689 }, level = 50, group = "AfflictionNotableHeavyHitter", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [3640252904] = { "1 Added Passive Skill is Heavy Hitter" }, } }, - ["AfflictionNotableMartialProwess"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Martial Prowess", statOrder = { 7718 }, level = 1, group = "AfflictionNotableMartialProwess", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, tradeHashes = { [1152182658] = { "1 Added Passive Skill is Martial Prowess" }, } }, - ["AfflictionNotableCalamitous"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Calamitous", statOrder = { 7596 }, level = 50, group = "AfflictionNotableCalamitous", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, tradeHashes = { [3359207393] = { "1 Added Passive Skill is Calamitous" }, } }, - ["AfflictionNotableDevastator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Devastator", statOrder = { 7627 }, level = 75, group = "AfflictionNotableDevastator", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 27, 47, 47, 51, 48, 50, 38, 39, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3711553948] = { "1 Added Passive Skill is Devastator" }, } }, - ["AfflictionNotableFueltheFight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fuel the Fight", statOrder = { 7675 }, level = 1, group = "AfflictionNotableFueltheFight", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack", "speed" }, tradeHashes = { [3599340381] = { "1 Added Passive Skill is Fuel the Fight" }, } }, - ["AfflictionNotableDrivetheDestruction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Drive the Destruction", statOrder = { 7639 }, level = 1, group = "AfflictionNotableDrivetheDestruction", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, tradeHashes = { [1911162866] = { "1 Added Passive Skill is Drive the Destruction" }, } }, - ["AfflictionNotableFeedtheFury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feed the Fury", statOrder = { 7664 }, level = 50, group = "AfflictionNotableFeedtheFury", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack", "speed" }, tradeHashes = { [3944525413] = { "1 Added Passive Skill is Feed the Fury" }, } }, - ["AfflictionNotableSealMender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seal Mender", statOrder = { 7785 }, level = 75, group = "AfflictionNotableSealMender", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 94, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [876846990] = { "1 Added Passive Skill is Seal Mender" }, } }, - ["AfflictionNotableConjuredWall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conjured Wall", statOrder = { 7610 }, level = 50, group = "AfflictionNotableConjuredWall", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "caster_damage", "damage", "caster" }, tradeHashes = { [4105031548] = { "1 Added Passive Skill is Conjured Wall" }, } }, - ["AfflictionNotableArcaneHeroism_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Heroism", statOrder = { 7571 }, level = 68, group = "AfflictionNotableArcaneHeroism", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [3901992019] = { "1 Added Passive Skill is Arcane Heroism" }, } }, - ["AfflictionNotablePracticedCaster"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Practiced Caster", statOrder = { 7746 }, level = 1, group = "AfflictionNotablePracticedCaster", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 1500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, tradeHashes = { [3435403756] = { "1 Added Passive Skill is Practiced Caster" }, } }, - ["AfflictionNotableBurdenProjection"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burden Projection", statOrder = { 7594 }, level = 50, group = "AfflictionNotableBurdenProjection", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, tradeHashes = { [2008682345] = { "1 Added Passive Skill is Burden Projection" }, } }, - ["AfflictionNotableThaumophage"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Thaumophage", statOrder = { 7820 }, level = 50, group = "AfflictionNotableThaumophage", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "caster" }, tradeHashes = { [177215332] = { "1 Added Passive Skill is Thaumophage" }, } }, - ["AfflictionNotableEssenceRush"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Essence Rush", statOrder = { 7648 }, level = 50, group = "AfflictionNotableEssenceRush", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "attack", "caster", "speed" }, tradeHashes = { [1096136223] = { "1 Added Passive Skill is Essence Rush" }, } }, - ["AfflictionNotableSapPsyche"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Sap Psyche", statOrder = { 7781 }, level = 68, group = "AfflictionNotableSapPsyche", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "resource", "mana", "defences", "energy_shield", "damage", "caster" }, tradeHashes = { [715786975] = { "1 Added Passive Skill is Sap Psyche" }, } }, - ["AfflictionNotableSadist_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sadist", statOrder = { 7779 }, level = 68, group = "AfflictionNotableSadist", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3638731729] = { "1 Added Passive Skill is Sadist" }, } }, - ["AfflictionNotableCorrosiveElements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Corrosive Elements", statOrder = { 7613 }, level = 75, group = "AfflictionNotableCorrosiveElements", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 94, 45, 32, 30, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1777139212] = { "1 Added Passive Skill is Corrosive Elements" }, } }, - ["AfflictionNotableDoryanisLesson_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Doryani's Lesson", statOrder = { 7636 }, level = 68, group = "AfflictionNotableDoryanisLesson", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental" }, tradeHashes = { [228455793] = { "1 Added Passive Skill is Doryani's Lesson" }, } }, - ["AfflictionNotableDisorientingDisplay____"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Disorienting Display", statOrder = { 7631 }, level = 50, group = "AfflictionNotableDisorientingDisplay", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 750, 364, 253, 238, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3206911230] = { "1 Added Passive Skill is Disorienting Display" }, } }, - ["AfflictionNotablePrismaticHeart__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Heart", statOrder = { 7754 }, level = 1, group = "AfflictionNotablePrismaticHeart", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 1500, 727, 505, 475, 1371, 1371, 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "resistance" }, tradeHashes = { [2342448236] = { "1 Added Passive Skill is Prismatic Heart" }, } }, - ["AfflictionNotableWidespreadDestruction"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Widespread Destruction", statOrder = { 7847 }, level = 1, group = "AfflictionNotableWidespreadDestruction", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 1500, 727, 505, 475, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1678643716] = { "1 Added Passive Skill is Widespread Destruction" }, } }, - ["AfflictionNotableMasterofFire"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fire", statOrder = { 7721 }, level = 75, group = "AfflictionNotableMasterofFire", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 30, 46, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [1462135249] = { "1 Added Passive Skill is Master of Fire" }, } }, - ["AfflictionNotableSmokingRemains"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Smoking Remains", statOrder = { 7797 }, level = 50, group = "AfflictionNotableSmokingRemains", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2322980282] = { "1 Added Passive Skill is Smoking Remains" }, } }, - ["AfflictionNotableCremator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cremator", statOrder = { 7614 }, level = 50, group = "AfflictionNotableCremator", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1153801980] = { "1 Added Passive Skill is Cremator" }, } }, - ["AfflictionNotableSnowstorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snowstorm", statOrder = { 7799 }, level = 50, group = "AfflictionNotableSnowstorm", weightKey = { "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 364, 253, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [1595367309] = { "1 Added Passive Skill is Snowstorm" }, } }, - ["AfflictionNotableStormDrinker___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm Drinker", statOrder = { 7806 }, level = 1, group = "AfflictionNotableStormDrinker", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 727, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "defences", "energy_shield", "damage", "elemental", "lightning" }, tradeHashes = { [2087561637] = { "1 Added Passive Skill is Storm Drinker" }, } }, - ["AfflictionNotableParalysis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Paralysis", statOrder = { 7740 }, level = 50, group = "AfflictionNotableParalysis", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4272503233] = { "1 Added Passive Skill is Paralysis" }, } }, - ["AfflictionNotableSupercharge"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Supercharge", statOrder = { 7815 }, level = 75, group = "AfflictionNotableSupercharge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3226074658] = { "1 Added Passive Skill is Supercharge" }, } }, - ["AfflictionNotableBlanketedSnow_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blanketed Snow", statOrder = { 7580 }, level = 68, group = "AfflictionNotableBlanketedSnow", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1085167979] = { "1 Added Passive Skill is Blanketed Snow" }, } }, - ["AfflictionNotableColdtotheCore"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold to the Core", statOrder = { 7606 }, level = 68, group = "AfflictionNotableColdtotheCore", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [744783843] = { "1 Added Passive Skill is Cold to the Core" }, } }, - ["AfflictionNotableColdBloodedKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold-Blooded Killer", statOrder = { 7604 }, level = 50, group = "AfflictionNotableColdBloodedKiller", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 253, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental", "cold" }, tradeHashes = { [836566759] = { "1 Added Passive Skill is Cold-Blooded Killer" }, } }, - ["AfflictionNotableTouchofCruelty_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Touch of Cruelty", statOrder = { 7823 }, level = 1, group = "AfflictionNotableTouchofCruelty", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2780712583] = { "1 Added Passive Skill is Touch of Cruelty" }, } }, - ["AfflictionNotableUnwaveringlyEvil"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwaveringly Evil", statOrder = { 7829 }, level = 1, group = "AfflictionNotableUnwaveringlyEvil", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 519, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2788982914] = { "1 Added Passive Skill is Unwaveringly Evil" }, } }, - ["AfflictionNotableUnspeakableGifts"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unspeakable Gifts", statOrder = { 7826 }, level = 75, group = "AfflictionNotableUnspeakableGifts", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 32, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [729163974] = { "1 Added Passive Skill is Unspeakable Gifts" }, } }, - ["AfflictionNotableDarkIdeation"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Ideation", statOrder = { 7619 }, level = 68, group = "AfflictionNotableDarkIdeation", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 97, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1603621602] = { "1 Added Passive Skill is Dark Ideation" }, } }, - ["AfflictionNotableUnholyGrace_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unholy Grace", statOrder = { 7825 }, level = 1, group = "AfflictionNotableUnholyGrace", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster", "speed" }, tradeHashes = { [4186213466] = { "1 Added Passive Skill is Unholy Grace" }, } }, - ["AfflictionNotableWickedPall_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wicked Pall", statOrder = { 7846 }, level = 50, group = "AfflictionNotableWickedPall", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 259, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1616734644] = { "1 Added Passive Skill is Wicked Pall" }, } }, - ["AfflictionNotableRenewal"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Renewal", statOrder = { 7771 }, level = 50, group = "AfflictionNotableRenewal", weightKey = { "affliction_minion_damage", "affliction_minion_life", "default", }, weightVal = { 500, 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, tradeHashes = { [3607300552] = { "1 Added Passive Skill is Renewal" }, } }, - ["AfflictionNotableRazeandPillage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Raze and Pillage", statOrder = { 7767 }, level = 68, group = "AfflictionNotableRazeandPillage", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "bleed", "damage", "physical", "elemental", "fire", "minion", "ailment" }, tradeHashes = { [1038897629] = { "1 Added Passive Skill is Raze and Pillage" }, } }, - ["AfflictionNotableRottenClaws"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rotten Claws", statOrder = { 7777 }, level = 50, group = "AfflictionNotableRottenClaws", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack", "minion" }, tradeHashes = { [2289610642] = { "1 Added Passive Skill is Rotten Claws" }, } }, - ["AfflictionNotableCalltotheSlaughter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Call to the Slaughter", statOrder = { 7597 }, level = 1, group = "AfflictionNotableCalltotheSlaughter", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed", "minion" }, tradeHashes = { [3317068522] = { "1 Added Passive Skill is Call to the Slaughter" }, } }, - ["AfflictionNotableSkeletalAtrophy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skeletal Atrophy", statOrder = { 7793 }, level = 68, group = "AfflictionNotableSkeletalAtrophy", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, tradeHashes = { [1290215329] = { "1 Added Passive Skill is Skeletal Atrophy" }, } }, - ["AfflictionNotableHulkingCorpses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hulking Corpses", statOrder = { 7699 }, level = 50, group = "AfflictionNotableHulkingCorpses", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3467711950] = { "1 Added Passive Skill is Hulking Corpses" }, } }, - ["AfflictionNotableViciousBite"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Vicious Bite", statOrder = { 7833 }, level = 75, group = "AfflictionNotableViciousBite", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [882876854] = { "1 Added Passive Skill is Vicious Bite" }, } }, - ["AfflictionNotablePrimordialBond"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Primordial Bond", statOrder = { 7751 }, level = 68, group = "AfflictionNotablePrimordialBond", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, tradeHashes = { [622362787] = { "1 Added Passive Skill is Primordial Bond" }, } }, - ["AfflictionNotableBlowback"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blowback", statOrder = { 7586 }, level = 50, group = "AfflictionNotableBlowback", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1612414696] = { "1 Added Passive Skill is Blowback" }, } }, - ["AfflictionNotableFantheFlames_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan the Flames", statOrder = { 7659 }, level = 68, group = "AfflictionNotableFantheFlames", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2918755450] = { "1 Added Passive Skill is Fan the Flames" }, } }, - ["AfflictionNotableCookedAlive"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cooked Alive", statOrder = { 7612 }, level = 68, group = "AfflictionNotableCookedAlive", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2938895712] = { "1 Added Passive Skill is Cooked Alive" }, } }, - ["AfflictionNotableBurningBright"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burning Bright", statOrder = { 7595 }, level = 50, group = "AfflictionNotableBurningBright", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_fire_damage", "default", }, weightVal = { 366, 238, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4199056048] = { "1 Added Passive Skill is Burning Bright" }, } }, - ["AfflictionNotableWrappedinFlame_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wrapped in Flame", statOrder = { 7855 }, level = 68, group = "AfflictionNotableWrappedinFlame", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [241783558] = { "1 Added Passive Skill is Wrapped in Flame" }, } }, - ["AfflictionNotableVividHues"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vivid Hues", statOrder = { 7839 }, level = 50, group = "AfflictionNotableVividHues", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "resource", "life", "physical", "attack", "ailment" }, tradeHashes = { [3957006524] = { "1 Added Passive Skill is Vivid Hues" }, } }, - ["AfflictionNotableRend"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rend", statOrder = { 7770 }, level = 50, group = "AfflictionNotableRend", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4263287206] = { "1 Added Passive Skill is Rend" }, } }, - ["AfflictionNotableDisorientingWounds"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disorienting Wounds", statOrder = { 7632 }, level = 1, group = "AfflictionNotableDisorientingWounds", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3351136461] = { "1 Added Passive Skill is Disorienting Wounds" }, } }, - ["AfflictionNotableCompoundInjury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Compound Injury", statOrder = { 7608 }, level = 50, group = "AfflictionNotableCompoundInjury", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4018305528] = { "1 Added Passive Skill is Compound Injury" }, } }, - ["AfflictionNotableBloodArtist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blood Artist", statOrder = { 7584 }, level = 75, group = "AfflictionNotableBloodArtist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [2284771334] = { "1 Added Passive Skill is Blood Artist" }, } }, - ["AfflictionNotablePhlebotomist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Phlebotomist", statOrder = { 7743 }, level = 50, group = "AfflictionNotablePhlebotomist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "critical", "ailment" }, tradeHashes = { [3057154383] = { "1 Added Passive Skill is Phlebotomist" }, } }, - ["AfflictionNotableSepticSpells"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Septic Spells", statOrder = { 7789 }, level = 50, group = "AfflictionNotableSepticSpells", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "speed", "ailment" }, tradeHashes = { [4290522695] = { "1 Added Passive Skill is Septic Spells" }, } }, - ["AfflictionNotableLowTolerance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Low Tolerance", statOrder = { 7712 }, level = 68, group = "AfflictionNotableLowTolerance", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [3989400244] = { "1 Added Passive Skill is Low Tolerance" }, } }, - ["AfflictionNotableSteadyTorment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Steady Torment", statOrder = { 7804 }, level = 68, group = "AfflictionNotableSteadyTorment", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 130, 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "damage", "physical", "chaos", "attack", "ailment", "ailment" }, tradeHashes = { [3500334379] = { "1 Added Passive Skill is Steady Torment" }, } }, - ["AfflictionNotableEternalSuffering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eternal Suffering", statOrder = { 7649 }, level = 50, group = "AfflictionNotableEternalSuffering", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2144634814] = { "1 Added Passive Skill is Eternal Suffering" }, } }, - ["AfflictionNotableEldritchInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eldritch Inspiration", statOrder = { 7640 }, level = 50, group = "AfflictionNotableEldritchInspiration", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_mana", "default", }, weightVal = { 348, 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos" }, tradeHashes = { [3737604164] = { "1 Added Passive Skill is Eldritch Inspiration" }, } }, - ["AfflictionNotableWastingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wasting Affliction", statOrder = { 7843 }, level = 68, group = "AfflictionNotableWastingAffliction", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 222, 178, 129, 137, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, tradeHashes = { [2066820199] = { "1 Added Passive Skill is Wasting Affliction" }, } }, - ["AfflictionNotableHaemorrhage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haemorrhage", statOrder = { 7686 }, level = 50, group = "AfflictionNotableHaemorrhage", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_critical_chance", "default", }, weightVal = { 593, 475, 343, 366, 348, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [72129119] = { "1 Added Passive Skill is Haemorrhage" }, } }, - ["AfflictionNotableFlowofLife_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flow of Life", statOrder = { 7671 }, level = 68, group = "AfflictionNotableFlowofLife", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, tradeHashes = { [2350430215] = { "1 Added Passive Skill is Flow of Life" }, } }, - ["AfflictionNotableExposureTherapy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exposure Therapy", statOrder = { 7655 }, level = 1, group = "AfflictionNotableExposureTherapy", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_chaos_resistance", "default", }, weightVal = { 1185, 950, 686, 733, 696, 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [131358113] = { "1 Added Passive Skill is Exposure Therapy" }, } }, - ["AfflictionNotableBrushwithDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brush with Death", statOrder = { 7592 }, level = 68, group = "AfflictionNotableBrushwithDeath", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield", "damage" }, tradeHashes = { [2900833792] = { "1 Added Passive Skill is Brush with Death" }, } }, - ["AfflictionNotableVileReinvigoration_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vile Reinvigoration", statOrder = { 7837 }, level = 50, group = "AfflictionNotableVileReinvigoration", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_energy_shield", "default", }, weightVal = { 593, 475, 343, 366, 348, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "damage" }, tradeHashes = { [647201233] = { "1 Added Passive Skill is Vile Reinvigoration" }, } }, - ["AfflictionNotableCirclingOblivion"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Circling Oblivion", statOrder = { 7602 }, level = 1, group = "AfflictionNotableCirclingOblivion", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1185, 950, 686, 733, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, tradeHashes = { [2129392647] = { "1 Added Passive Skill is Circling Oblivion" }, } }, - ["AfflictionNotableBrewedforPotency"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brewed for Potency", statOrder = { 7590 }, level = 1, group = "AfflictionNotableBrewedforPotency", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_flask_duration", "default", }, weightVal = { 1185, 950, 686, 733, 696, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana", "damage" }, tradeHashes = { [3250272113] = { "1 Added Passive Skill is Brewed for Potency" }, } }, - ["AfflictionNotableAstonishingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Astonishing Affliction", statOrder = { 7575 }, level = 1, group = "AfflictionNotableAstonishingAffliction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 1627, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, tradeHashes = { [2428334013] = { "1 Added Passive Skill is Astonishing Affliction" }, } }, - ["AfflictionNotableColdConduction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold Conduction", statOrder = { 7605 }, level = 68, group = "AfflictionNotableColdConduction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1274505521] = { "1 Added Passive Skill is Cold Conduction" }, } }, - ["AfflictionNotableInspiredOppression"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Inspired Oppression", statOrder = { 7702 }, level = 75, group = "AfflictionNotableInspiredOppression", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 102, 94, 45, 32, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "ailment" }, tradeHashes = { [3872380586] = { "1 Added Passive Skill is Inspired Oppression" }, } }, - ["AfflictionNotableChillingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chilling Presence", statOrder = { 7600 }, level = 75, group = "AfflictionNotableChillingPresence", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 102, 59, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2834490860] = { "1 Added Passive Skill is Chilling Presence" }, } }, - ["AfflictionNotableDeepChill"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Chill", statOrder = { 7623 }, level = 1, group = "AfflictionNotableDeepChill", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 1627, 505, 950, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [1703766309] = { "1 Added Passive Skill is Deep Chill" }, } }, - ["AfflictionNotableBlastFreeze_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blast-Freeze", statOrder = { 7581 }, level = 68, group = "AfflictionNotableBlastFreeze", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 95, 178, 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [693808153] = { "1 Added Passive Skill is Blast-Freeze" }, } }, - ["AfflictionNotableThunderstruck"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Thunderstruck", statOrder = { 7821 }, level = 50, group = "AfflictionNotableThunderstruck", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHashes = { [1741700339] = { "1 Added Passive Skill is Thunderstruck" }, } }, - ["AfflictionNotableStormrider"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stormrider", statOrder = { 7807 }, level = 68, group = "AfflictionNotableStormrider", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_lightning_damage", "default", }, weightVal = { 305, 95, 136, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [889728548] = { "1 Added Passive Skill is Stormrider" }, } }, - ["AfflictionNotableOvershock"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overshock", statOrder = { 7738 }, level = 50, group = "AfflictionNotableOvershock", weightKey = { "affliction_lightning_damage", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 364, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3777170562] = { "1 Added Passive Skill is Overshock" }, } }, - ["AfflictionNotableEvilEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7650 }, level = 1, group = "AfflictionNotableEvilEye", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [4291066912] = { "1 Added Passive Skill is Evil Eye" }, } }, - ["AfflictionNotableWhispersofDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7845 }, level = 1, group = "AfflictionNotableWhispersofDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [156080652] = { "1 Added Passive Skill is Evil Eye" }, } }, - ["AfflictionNotableWardbreaker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Forbidden Words", statOrder = { 7841 }, level = 68, group = "AfflictionNotableWardbreaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "caster", "curse" }, tradeHashes = { [2454339320] = { "1 Added Passive Skill is Forbidden Words" }, } }, - ["AfflictionNotableDarkDiscourse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Spite", statOrder = { 7618 }, level = 50, group = "AfflictionNotableDarkDiscourse", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [462115791] = { "1 Added Passive Skill is Doedre's Spite" }, } }, - ["AfflictionNotableVictimMaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Victim Maker", statOrder = { 7836 }, level = 50, group = "AfflictionNotableVictimMaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [1936135020] = { "1 Added Passive Skill is Victim Maker" }, } }, - ["AfflictionNotableMasterofFear"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fear", statOrder = { 7720 }, level = 68, group = "AfflictionNotableMasterofFear", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [2771217016] = { "1 Added Passive Skill is Master of Fear" }, } }, - ["AfflictionNotableWishforDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wish for Death", statOrder = { 7852 }, level = 50, group = "AfflictionNotableWishforDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [608164368] = { "1 Added Passive Skill is Wish for Death" }, } }, - ["AfflictionNotableLordofDrought_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lord of Drought", statOrder = { 7669 }, level = 50, group = "AfflictionNotableLordofDrought", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_fire_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [2055715585] = { "1 Added Passive Skill is Lord of Drought" }, } }, - ["AfflictionNotableBlizzardCaller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blizzard Caller", statOrder = { 7674 }, level = 50, group = "AfflictionNotableBlizzardCaller", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_cold_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "critical", "curse" }, tradeHashes = { [3758712376] = { "1 Added Passive Skill is Blizzard Caller" }, } }, - ["AfflictionNotableTempttheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempt the Storm", statOrder = { 7710 }, level = 50, group = "AfflictionNotableTempttheStorm", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_lightning_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [348883745] = { "1 Added Passive Skill is Tempt the Storm" }, } }, - ["AfflictionNotableMiseryEverlasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Misery Everlasting", statOrder = { 7625 }, level = 50, group = "AfflictionNotableMiseryEverlasting", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_chaos_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [3832665876] = { "1 Added Passive Skill is Misery Everlasting" }, } }, - ["AfflictionNotableExploitWeakness_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exploit Weakness", statOrder = { 7690 }, level = 50, group = "AfflictionNotableExploitWeakness", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_physical_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster", "curse" }, tradeHashes = { [50129423] = { "1 Added Passive Skill is Exploit Weakness" }, } }, - ["AfflictionNotableHoundsMark"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hound's Mark", statOrder = { 7698 }, level = 1, group = "AfflictionNotableHoundsMark", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [555800967] = { "1 Added Passive Skill is Hound's Mark" }, } }, - ["AfflictionNotableDoedresGluttony"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Gluttony", statOrder = { 7635 }, level = 50, group = "AfflictionNotableDoedresGluttony", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [2695848124] = { "1 Added Passive Skill is Doedre's Gluttony" }, } }, - ["AfflictionNotableDoedresApathy____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Apathy", statOrder = { 7634 }, level = 68, group = "AfflictionNotableDoedresApathy", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 132, 132, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [1381945089] = { "1 Added Passive Skill is Doedre's Apathy" }, } }, - ["AfflictionNotableMasterOfTheMaelstrom_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of the Maelstrom", statOrder = { 7722 }, level = 50, group = "AfflictionNotableMasterOfTheMaelstrom", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "caster", "ailment", "curse" }, tradeHashes = { [185592058] = { "1 Added Passive Skill is Master of the Maelstrom" }, } }, - ["AfflictionNotableHeraldry"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heraldry", statOrder = { 7691 }, level = 75, group = "AfflictionNotableHeraldry", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [3274270612] = { "1 Added Passive Skill is Heraldry" }, } }, - ["AfflictionNotableEndbringer"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Endbringer", statOrder = { 7643 }, level = 68, group = "AfflictionNotableEndbringer", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2150878631] = { "1 Added Passive Skill is Endbringer" }, } }, - ["AfflictionNotableCultLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cult-Leader", statOrder = { 7616 }, level = 1, group = "AfflictionNotableCultLeader", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 2526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, tradeHashes = { [2026112251] = { "1 Added Passive Skill is Cult-Leader" }, } }, - ["AfflictionNotableEmpoweredEnvoy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Empowered Envoy", statOrder = { 7642 }, level = 1, group = "AfflictionNotableEmpoweredEnvoy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2032453153] = { "1 Added Passive Skill is Empowered Envoy" }, } }, - ["AfflictionNotableDarkMessenger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Messenger", statOrder = { 7620 }, level = 50, group = "AfflictionNotableDarkMessenger", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 941, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3784610129] = { "1 Added Passive Skill is Dark Messenger" }, } }, - ["AfflictionNotableAgentofDestruction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Agent of Destruction", statOrder = { 7559 }, level = 1, group = "AfflictionNotableAgentofDestruction", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3122491961] = { "1 Added Passive Skill is Agent of Destruction" }, } }, - ["AfflictionNotableLastingImpression_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lasting Impression", statOrder = { 7707 }, level = 68, group = "AfflictionNotableLastingImpression", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [426715778] = { "1 Added Passive Skill is Lasting Impression" }, } }, - ["AfflictionNotableSelfFulfillingProphecy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Fulfilling Prophecy", statOrder = { 7788 }, level = 68, group = "AfflictionNotableSelfFulfillingProphecy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [2644533453] = { "1 Added Passive Skill is Self-Fulfilling Prophecy" }, } }, - ["AfflictionNotableInvigoratingPortents"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Invigorating Portents", statOrder = { 7705 }, level = 50, group = "AfflictionNotableInvigoratingPortents", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 1263, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, tradeHashes = { [2262034536] = { "1 Added Passive Skill is Invigorating Portents" }, } }, - ["AfflictionNotablePureAgony_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Agony", statOrder = { 7757 }, level = 68, group = "AfflictionNotablePureAgony", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, tradeHashes = { [1507409483] = { "1 Added Passive Skill is Pure Agony" }, } }, - ["AfflictionNotableDisciples_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disciples", statOrder = { 7628 }, level = 68, group = "AfflictionNotableDisciples", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, tradeHashes = { [3177526694] = { "1 Added Passive Skill is Disciples" }, } }, - ["AfflictionNotableDreadMarch_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dread March", statOrder = { 7638 }, level = 1, group = "AfflictionNotableDreadMarch", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1433, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance", "speed", "minion" }, tradeHashes = { [3087667389] = { "1 Added Passive Skill is Dread March" }, } }, - ["AfflictionNotableBlessedRebirth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed Rebirth", statOrder = { 7583 }, level = 68, group = "AfflictionNotableBlessedRebirth", weightKey = { "affliction_minion_life", "default", }, weightVal = { 269, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1424794574] = { "1 Added Passive Skill is Blessed Rebirth" }, } }, - ["AfflictionNotableLifefromDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Life from Death", statOrder = { 7709 }, level = 50, group = "AfflictionNotableLifefromDeath", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2337273077] = { "1 Added Passive Skill is Life from Death" }, } }, - ["AfflictionNotableFeastingFiends"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feasting Fiends", statOrder = { 7663 }, level = 1, group = "AfflictionNotableFeastingFiends", weightKey = { "affliction_minion_life", "affliction_minion_damage", "default", }, weightVal = { 1433, 1000, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, tradeHashes = { [383245807] = { "1 Added Passive Skill is Feasting Fiends" }, } }, - ["AfflictionNotableBodyguards"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bodyguards", statOrder = { 7587 }, level = 50, group = "AfflictionNotableBodyguards", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [791125124] = { "1 Added Passive Skill is Bodyguards" }, } }, - ["AfflictionNotableFollowThrough_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Follow-Through", statOrder = { 7672 }, level = 68, group = "AfflictionNotableFollowThrough", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3984980429] = { "1 Added Passive Skill is Follow-Through" }, } }, - ["AfflictionNotableStreamlined"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Streamlined", statOrder = { 7809 }, level = 1, group = "AfflictionNotableStreamlined", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, tradeHashes = { [1397498432] = { "1 Added Passive Skill is Streamlined" }, } }, - ["AfflictionNotableShriekingBolts_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shrieking Bolts", statOrder = { 7792 }, level = 50, group = "AfflictionNotableShriekingBolts", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2783012144] = { "1 Added Passive Skill is Shrieking Bolts" }, } }, - ["AfflictionNotableEyetoEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye to Eye", statOrder = { 7657 }, level = 50, group = "AfflictionNotableEyetoEye", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [392942015] = { "1 Added Passive Skill is Eye to Eye" }, } }, - ["AfflictionNotableRepeater"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Repeater", statOrder = { 7772 }, level = 1, group = "AfflictionNotableRepeater", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, tradeHashes = { [2233272527] = { "1 Added Passive Skill is Repeater" }, } }, - ["AfflictionNotableAerodynamics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerodynamics", statOrder = { 7558 }, level = 68, group = "AfflictionNotableAerodynamics", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, tradeHashes = { [4120556534] = { "1 Added Passive Skill is Aerodynamics" }, } }, - ["AfflictionNotableChipAway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chip Away", statOrder = { 7601 }, level = 50, group = "AfflictionNotableChipAway", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, tradeHashes = { [968069586] = { "1 Added Passive Skill is Chip Away" }, } }, - ["AfflictionNotableSeekerRunes"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seeker Runes", statOrder = { 7787 }, level = 68, group = "AfflictionNotableSeekerRunes", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2261237498] = { "1 Added Passive Skill is Seeker Runes" }, } }, - ["AfflictionNotableRemarkable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Remarkable", statOrder = { 7769 }, level = 68, group = "AfflictionNotableRemarkable", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, tradeHashes = { [691431951] = { "1 Added Passive Skill is Remarkable" }, } }, - ["AfflictionNotableBrandLoyalty"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brand Loyalty", statOrder = { 7589 }, level = 1, group = "AfflictionNotableBrandLoyalty", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3198006994] = { "1 Added Passive Skill is Brand Loyalty" }, } }, - ["AfflictionNotableHolyConquest"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Conquest", statOrder = { 7696 }, level = 50, group = "AfflictionNotableHolyConquest", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, tradeHashes = { [3898572660] = { "1 Added Passive Skill is Holy Conquest" }, } }, - ["AfflictionNotableGrandDesign_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Grand Design", statOrder = { 7682 }, level = 68, group = "AfflictionNotableGrandDesign", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, tradeHashes = { [2350900742] = { "1 Added Passive Skill is Grand Design" }, } }, - ["AfflictionNotableSetandForget_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Set and Forget", statOrder = { 7790 }, level = 50, group = "AfflictionNotableSetandForget", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [1101250813] = { "1 Added Passive Skill is Set and Forget" }, } }, - ["AfflictionNotableExpertSabotage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expert Sabotage", statOrder = { 7653 }, level = 50, group = "AfflictionNotableExpertSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, tradeHashes = { [2084371547] = { "1 Added Passive Skill is Expert Sabotage" }, } }, - ["AfflictionNotableGuerillaTactics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Guerilla Tactics", statOrder = { 7685 }, level = 1, group = "AfflictionNotableGuerillaTactics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, tradeHashes = { [1882129725] = { "1 Added Passive Skill is Guerilla Tactics" }, } }, - ["AfflictionNotableExpendability"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expendability", statOrder = { 7652 }, level = 68, group = "AfflictionNotableExpendability", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [2020075345] = { "1 Added Passive Skill is Expendability" }, } }, - ["AfflictionNotableArcanePyrotechnics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Pyrotechnics", statOrder = { 7572 }, level = 68, group = "AfflictionNotableArcanePyrotechnics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2043503530] = { "1 Added Passive Skill is Arcane Pyrotechnics" }, } }, - ["AfflictionNotableSurpriseSabotage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surprise Sabotage", statOrder = { 7818 }, level = 50, group = "AfflictionNotableSurpriseSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3051562738] = { "1 Added Passive Skill is Surprise Sabotage" }, } }, - ["AfflictionNotableCarefulHandling"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Careful Handling", statOrder = { 7599 }, level = 68, group = "AfflictionNotableCarefulHandling", weightKey = { "affliction_trap_and_mine_damage", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 367, 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "damage" }, tradeHashes = { [456502758] = { "1 Added Passive Skill is Careful Handling" }, } }, - ["AfflictionNotablePeakVigour"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peak Vigour", statOrder = { 7742 }, level = 1, group = "AfflictionNotablePeakVigour", weightKey = { "affliction_maximum_life", "affliction_flask_duration", "default", }, weightVal = { 780, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1722821275] = { "1 Added Passive Skill is Peak Vigour" }, } }, - ["AfflictionNotableFettle"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fettle", statOrder = { 7665 }, level = 75, group = "AfflictionNotableFettle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, tradeHashes = { [1353571444] = { "1 Added Passive Skill is Fettle" }, } }, - ["AfflictionNotableFeastofFlesh"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feast of Flesh", statOrder = { 7662 }, level = 68, group = "AfflictionNotableFeastofFlesh", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2396755365] = { "1 Added Passive Skill is Feast of Flesh" }, } }, - ["AfflictionNotableSublimeSensation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Sensation", statOrder = { 7813 }, level = 50, group = "AfflictionNotableSublimeSensation", weightKey = { "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 390, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1364858171] = { "1 Added Passive Skill is Sublime Sensation" }, } }, - ["AfflictionNotableSurgingVitality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surging Vitality", statOrder = { 7817 }, level = 1, group = "AfflictionNotableSurgingVitality", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, tradeHashes = { [2410501331] = { "1 Added Passive Skill is Surging Vitality" }, } }, - ["AfflictionNotablePeaceAmidstChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peace Amidst Chaos", statOrder = { 7741 }, level = 50, group = "AfflictionNotablePeaceAmidstChaos", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [1734275536] = { "1 Added Passive Skill is Peace Amidst Chaos" }, } }, - ["AfflictionNotableAdrenaline_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Adrenaline", statOrder = { 7555 }, level = 68, group = "AfflictionNotableAdrenaline", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, tradeHashes = { [4022743870] = { "1 Added Passive Skill is Adrenaline" }, } }, - ["AfflictionNotableWallofMuscle_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wall of Muscle", statOrder = { 7840 }, level = 75, group = "AfflictionNotableWallofMuscle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attribute" }, tradeHashes = { [1363668533] = { "1 Added Passive Skill is Wall of Muscle" }, } }, - ["AfflictionNotableMindfulness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mindfulness", statOrder = { 7726 }, level = 50, group = "AfflictionNotableMindfulness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [2595115995] = { "1 Added Passive Skill is Mindfulness" }, } }, - ["AfflictionNotableLiquidInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Liquid Inspiration", statOrder = { 7711 }, level = 68, group = "AfflictionNotableLiquidInspiration", weightKey = { "affliction_maximum_mana", "affliction_flask_duration", "default", }, weightVal = { 175, 202, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "power_charge", "resource", "mana" }, tradeHashes = { [1094635162] = { "1 Added Passive Skill is Liquid Inspiration" }, } }, - ["AfflictionNotableOpenness__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Openness", statOrder = { 7735 }, level = 1, group = "AfflictionNotableOpenness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [633943719] = { "1 Added Passive Skill is Openness" }, } }, - ["AfflictionNotableDaringIdeas"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Daring Ideas", statOrder = { 7617 }, level = 50, group = "AfflictionNotableDaringIdeas", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2534405517] = { "1 Added Passive Skill is Daring Ideas" }, } }, - ["AfflictionNotableClarityofPurpose"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Clarity of Purpose", statOrder = { 7603 }, level = 1, group = "AfflictionNotableClarityofPurpose", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [684087686] = { "1 Added Passive Skill is Clarity of Purpose" }, } }, - ["AfflictionNotableScintillatingIdea_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Scintillating Idea", statOrder = { 7784 }, level = 50, group = "AfflictionNotableScintillatingIdea", weightKey = { "affliction_maximum_mana", "affliction_lightning_damage", "default", }, weightVal = { 466, 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, tradeHashes = { [2589589781] = { "1 Added Passive Skill is Scintillating Idea" }, } }, - ["AfflictionNotableHolisticHealth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holistic Health", statOrder = { 7695 }, level = 68, group = "AfflictionNotableHolisticHealth", weightKey = { "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana" }, tradeHashes = { [3667965781] = { "1 Added Passive Skill is Holistic Health" }, } }, - ["AfflictionNotableGenius"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Genius", statOrder = { 7677 }, level = 75, group = "AfflictionNotableGenius", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, tradeHashes = { [2763732093] = { "1 Added Passive Skill is Genius" }, } }, - ["AfflictionNotableImprovisor"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Improvisor", statOrder = { 7700 }, level = 68, group = "AfflictionNotableImprovisor", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [810219447] = { "1 Added Passive Skill is Improvisor" }, } }, - ["AfflictionNotableStubbornStudent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stubborn Student", statOrder = { 7811 }, level = 68, group = "AfflictionNotableStubbornStudent", weightKey = { "affliction_maximum_mana", "affliction_armour", "default", }, weightVal = { 175, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "armour" }, tradeHashes = { [2383914651] = { "1 Added Passive Skill is Stubborn Student" }, } }, - ["AfflictionNotableSavourtheMoment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savour the Moment", statOrder = { 7783 }, level = 1, group = "AfflictionNotableSavourtheMoment", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3539175001] = { "1 Added Passive Skill is Savour the Moment" }, } }, - ["AfflictionNotableEnergyFromNaught"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Energy From Naught", statOrder = { 7647 }, level = 50, group = "AfflictionNotableEnergyFromNaught", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2195518432] = { "1 Added Passive Skill is Energy From Naught" }, } }, - ["AfflictionNotableWillShaper"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Will Shaper", statOrder = { 7848 }, level = 75, group = "AfflictionNotableWillShaper", weightKey = { "affliction_maximum_energy_shield", "affliction_maximum_mana", "default", }, weightVal = { 63, 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1162352537] = { "1 Added Passive Skill is Will Shaper" }, } }, - ["AfflictionNotableSpringBack_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spring Back", statOrder = { 7802 }, level = 1, group = "AfflictionNotableSpringBack", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3603695769] = { "1 Added Passive Skill is Spring Back" }, } }, - ["AfflictionNotableConservationofEnergy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conservation of Energy", statOrder = { 7611 }, level = 68, group = "AfflictionNotableConservationofEnergy", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "caster" }, tradeHashes = { [2083777017] = { "1 Added Passive Skill is Conservation of Energy" }, } }, - ["AfflictionNotableSelfControl"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Control", statOrder = { 7629 }, level = 50, group = "AfflictionNotableSelfControl", weightKey = { "affliction_maximum_energy_shield", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 505, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [3025453294] = { "1 Added Passive Skill is Self-Control" }, } }, - ["AfflictionNotableHeartofIron"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heart of Iron", statOrder = { 7688 }, level = 68, group = "AfflictionNotableHeartofIron", weightKey = { "affliction_maximum_life", "affliction_armour", "default", }, weightVal = { 146, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, tradeHashes = { [1483358825] = { "1 Added Passive Skill is Heart of Iron" }, } }, - ["AfflictionNotablePrismaticCarapace_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Carapace", statOrder = { 7752 }, level = 75, group = "AfflictionNotablePrismaticCarapace", weightKey = { "affliction_armour", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 87, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "resistance" }, tradeHashes = { [3492924480] = { "1 Added Passive Skill is Prismatic Carapace" }, } }, - ["AfflictionNotableMilitarism"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Militarism", statOrder = { 7725 }, level = 50, group = "AfflictionNotableMilitarism", weightKey = { "affliction_armour", "default", }, weightVal = { 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [4154709486] = { "1 Added Passive Skill is Militarism" }, } }, - ["AfflictionNotableSecondSkin"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Second Skin", statOrder = { 7786 }, level = 1, group = "AfflictionNotableSecondSkin", weightKey = { "affliction_armour", "affliction_chance_to_block", "default", }, weightVal = { 1391, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "armour" }, tradeHashes = { [2773515950] = { "1 Added Passive Skill is Second Skin" }, } }, - ["AfflictionNotableDragonHunter__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dragon Hunter", statOrder = { 7637 }, level = 50, group = "AfflictionNotableDragonHunter", weightKey = { "affliction_armour", "affliction_fire_resistance", "default", }, weightVal = { 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "fire", "resistance" }, tradeHashes = { [1038955006] = { "1 Added Passive Skill is Dragon Hunter" }, } }, - ["AfflictionNotableEnduringComposure"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Composure", statOrder = { 7644 }, level = 68, group = "AfflictionNotableEnduringComposure", weightKey = { "affliction_armour", "default", }, weightVal = { 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "defences", "armour" }, tradeHashes = { [2043284086] = { "1 Added Passive Skill is Enduring Composure" }, } }, - ["AfflictionNotableUncompromising_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Uncompromising", statOrder = { 7626 }, level = 50, group = "AfflictionNotableUncompromising", weightKey = { "affliction_armour", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 696, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [382360671] = { "1 Added Passive Skill is Uncompromising" }, } }, - ["AfflictionNotablePrismaticDance____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Dance", statOrder = { 7753 }, level = 75, group = "AfflictionNotablePrismaticDance", weightKey = { "affliction_evasion", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 82, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "elemental", "resistance" }, tradeHashes = { [1149662934] = { "1 Added Passive Skill is Prismatic Dance" }, } }, - ["AfflictionNotableNaturalVigour_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Natural Vigour", statOrder = { 7730 }, level = 50, group = "AfflictionNotableNaturalVigour", weightKey = { "affliction_evasion", "affliction_maximum_life", "default", }, weightVal = { 658, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [510654792] = { "1 Added Passive Skill is Natural Vigour" }, } }, - ["AfflictionNotableUntouchable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Untouchable", statOrder = { 7827 }, level = 1, group = "AfflictionNotableUntouchable", weightKey = { "affliction_evasion", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1315, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion" }, tradeHashes = { [2758966888] = { "1 Added Passive Skill is Untouchable" }, } }, - ["AfflictionNotableShiftingShadow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shifting Shadow", statOrder = { 7791 }, level = 50, group = "AfflictionNotableShiftingShadow", weightKey = { "affliction_evasion", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "attribute" }, tradeHashes = { [1476913894] = { "1 Added Passive Skill is Shifting Shadow" }, } }, - ["AfflictionNotableReadiness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Readiness", statOrder = { 7768 }, level = 1, group = "AfflictionNotableReadiness", weightKey = { "affliction_evasion", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "defences", "evasion", "physical", "attack", "ailment" }, tradeHashes = { [845306697] = { "1 Added Passive Skill is Readiness" }, } }, - ["AfflictionNotableSublimeForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Form", statOrder = { 7681 }, level = 50, group = "AfflictionNotableSublimeForm", weightKey = { "affliction_evasion", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 658, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "resistance" }, tradeHashes = { [2251304016] = { "1 Added Passive Skill is Sublime Form" }, } }, - ["AfflictionNotableConfidentCombatant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Confident Combatant", statOrder = { 7609 }, level = 68, group = "AfflictionNotableConfidentCombatant", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3930242735] = { "1 Added Passive Skill is Confident Combatant" }, } }, - ["AfflictionNotableFlexibleSentry___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flexible Sentry", statOrder = { 7670 }, level = 50, group = "AfflictionNotableFlexibleSentry", weightKey = { "affliction_chance_to_block", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 375, 686, 686, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "ailment" }, tradeHashes = { [982290947] = { "1 Added Passive Skill is Flexible Sentry" }, } }, - ["AfflictionNotableViciousGuard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Guard", statOrder = { 7834 }, level = 1, group = "AfflictionNotableViciousGuard", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 750, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "attack" }, tradeHashes = { [4054656914] = { "1 Added Passive Skill is Vicious Guard" }, } }, - ["AfflictionNotableMysticalWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mystical Ward", statOrder = { 7729 }, level = 1, group = "AfflictionNotableMysticalWard", weightKey = { "affliction_chance_to_block", "affliction_maximum_energy_shield", "default", }, weightVal = { 750, 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [2314111938] = { "1 Added Passive Skill is Mystical Ward" }, } }, - ["AfflictionNotableRoteReinforcement"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rote Reinforcement", statOrder = { 7776 }, level = 68, group = "AfflictionNotableRoteReinforcement", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 141, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge", "resource", "life" }, tradeHashes = { [2478282326] = { "1 Added Passive Skill is Rote Reinforcement" }, } }, - ["AfflictionNotableMageHunter___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Hunter", statOrder = { 7714 }, level = 68, group = "AfflictionNotableMageHunter", weightKey = { "affliction_chance_to_block", "affliction_spell_damage", "default", }, weightVal = { 141, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "caster_damage", "damage", "caster" }, tradeHashes = { [2118664144] = { "1 Added Passive Skill is Mage Hunter" }, } }, - ["AfflictionNotableRiotQueller"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Riot Queller", statOrder = { 7774 }, level = 75, group = "AfflictionNotableRiotQueller", weightKey = { "affliction_chance_to_block", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 47, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block" }, tradeHashes = { [254194892] = { "1 Added Passive Skill is Riot Queller" }, } }, - ["AfflictionNotableOnewiththeShield_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is One with the Shield", statOrder = { 7734 }, level = 50, group = "AfflictionNotableOnewiththeShield", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 375, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "defences" }, tradeHashes = { [1976069869] = { "1 Added Passive Skill is One with the Shield" }, } }, - ["AfflictionNotableAerialist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerialist", statOrder = { 7557 }, level = 75, group = "AfflictionNotableAerialist", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 92, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, tradeHashes = { [3848677307] = { "1 Added Passive Skill is Aerialist" }, } }, - ["AfflictionNotableElegantForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Elegant Form", statOrder = { 7641 }, level = 1, group = "AfflictionNotableElegantForm", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "ailment" }, tradeHashes = { [289714529] = { "1 Added Passive Skill is Elegant Form" }, } }, - ["AfflictionNotableDartingMovements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Darting Movements", statOrder = { 7621 }, level = 1, group = "AfflictionNotableDartingMovements", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, tradeHashes = { [846491278] = { "1 Added Passive Skill is Darting Movements" }, } }, - ["AfflictionNotableNoWitnesses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is No Witnesses", statOrder = { 7731 }, level = 75, group = "AfflictionNotableNoWitnesses", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [1722480396] = { "1 Added Passive Skill is No Witnesses" }, } }, - ["AfflictionNotableMoltenOnesMark_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Molten One's Mark", statOrder = { 7728 }, level = 68, group = "AfflictionNotableMoltenOnesMark", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 247, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3875792669] = { "1 Added Passive Skill is Molten One's Mark" }, } }, - ["AfflictionNotableFireAttunement_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fire Attunement", statOrder = { 7667 }, level = 1, group = "AfflictionNotableFireAttunement", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3188756614] = { "1 Added Passive Skill is Fire Attunement" }, } }, - ["AfflictionNotablePureMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Might", statOrder = { 7761 }, level = 68, group = "AfflictionNotablePureMight", weightKey = { "affliction_fire_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 247, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, tradeHashes = { [2372915005] = { "1 Added Passive Skill is Pure Might" }, } }, - ["AfflictionNotableBlacksmith_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blacksmith", statOrder = { 7579 }, level = 68, group = "AfflictionNotableBlacksmith", weightKey = { "affliction_fire_resistance", "affliction_armour", "default", }, weightVal = { 247, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour", "elemental", "fire", "resistance" }, tradeHashes = { [1127706436] = { "1 Added Passive Skill is Blacksmith" }, } }, - ["AfflictionNotableNonFlammable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Non-Flammable", statOrder = { 7732 }, level = 50, group = "AfflictionNotableNonFlammable", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "resistance", "ailment" }, tradeHashes = { [731840035] = { "1 Added Passive Skill is Non-Flammable" }, } }, - ["AfflictionNotableWinterProwler"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Winter Prowler", statOrder = { 7851 }, level = 68, group = "AfflictionNotableWinterProwler", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 257, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "speed" }, tradeHashes = { [755881431] = { "1 Added Passive Skill is Winter Prowler" }, } }, - ["AfflictionNotableHibernator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hibernator", statOrder = { 7693 }, level = 50, group = "AfflictionNotableHibernator", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2294919888] = { "1 Added Passive Skill is Hibernator" }, } }, - ["AfflictionNotablePureGuile"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Guile", statOrder = { 7760 }, level = 68, group = "AfflictionNotablePureGuile", weightKey = { "affliction_cold_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, tradeHashes = { [1621496909] = { "1 Added Passive Skill is Pure Guile" }, } }, - ["AfflictionNotableAlchemist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Alchemist", statOrder = { 7561 }, level = 1, group = "AfflictionNotableAlchemist", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1371, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "elemental", "cold", "resistance", "attack", "caster", "speed" }, tradeHashes = { [2912949210] = { "1 Added Passive Skill is Alchemist" }, } }, - ["AfflictionNotableAntifreeze"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antifreeze", statOrder = { 7568 }, level = 50, group = "AfflictionNotableAntifreeze", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "ailment" }, tradeHashes = { [2622946553] = { "1 Added Passive Skill is Antifreeze" }, } }, - ["AfflictionNotableWizardry_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wizardry", statOrder = { 7853 }, level = 68, group = "AfflictionNotableWizardry", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "default", }, weightVal = { 257, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, tradeHashes = { [3078065247] = { "1 Added Passive Skill is Wizardry" }, } }, - ["AfflictionNotableCapacitor____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Capacitor", statOrder = { 7598 }, level = 50, group = "AfflictionNotableCapacitor", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4025536654] = { "1 Added Passive Skill is Capacitor" }, } }, - ["AfflictionNotablePureAptitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Aptitude", statOrder = { 7758 }, level = 68, group = "AfflictionNotablePureAptitude", weightKey = { "affliction_lightning_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "energy_shield", "attribute" }, tradeHashes = { [3509724289] = { "1 Added Passive Skill is Pure Aptitude" }, } }, - ["AfflictionNotableSage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sage", statOrder = { 7780 }, level = 1, group = "AfflictionNotableSage", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 1371, 932, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "elemental", "lightning", "resistance" }, tradeHashes = { [478147593] = { "1 Added Passive Skill is Sage" }, } }, - ["AfflictionNotableInsulated"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insulated", statOrder = { 7703 }, level = 50, group = "AfflictionNotableInsulated", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "resistance", "ailment" }, tradeHashes = { [212648555] = { "1 Added Passive Skill is Insulated" }, } }, - ["AfflictionNotableBornofChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Born of Chaos", statOrder = { 7588 }, level = 68, group = "AfflictionNotableBornofChaos", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos", "resistance" }, tradeHashes = { [2449392400] = { "1 Added Passive Skill is Born of Chaos" }, } }, - ["AfflictionNotableAntivenom"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antivenom", statOrder = { 7569 }, level = 50, group = "AfflictionNotableAntivenom", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [774369953] = { "1 Added Passive Skill is Antivenom" }, } }, - ["AfflictionNotableRotResistant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rot-Resistant", statOrder = { 7775 }, level = 68, group = "AfflictionNotableRotResistant", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "defences", "energy_shield", "chaos", "resistance" }, tradeHashes = { [713945233] = { "1 Added Passive Skill is Rot-Resistant" }, } }, - ["AfflictionNotableBlessed"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed", statOrder = { 7582 }, level = 68, group = "AfflictionNotableBlessed", weightKey = { "affliction_chaos_resistance", "affliction_maximum_life", "affliction_maximum_mana", "default", }, weightVal = { 439, 146, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "chaos", "resistance" }, tradeHashes = { [775689239] = { "1 Added Passive Skill is Blessed" }, } }, - ["AfflictionNotableStudentofDecay"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Student of Decay", statOrder = { 7812 }, level = 50, group = "AfflictionNotableStudentofDecay", weightKey = { "affliction_chaos_resistance", "affliction_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1171, 593, 343, 366, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [3202667190] = { "1 Added Passive Skill is Student of Decay" }, } }, - ["AfflictionNotableAggressiveDefence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aggressive Defence", statOrder = { 7560 }, level = 1, group = "AfflictionNotableAggressiveDefence", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 750, 750, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [4154008618] = { "1 Added Passive Skill is Aggressive Defence" }, } }, - ["AfflictionNotableHolyWord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Word", statOrder = { 7697 }, level = 50, group = "AfflictionNotableHolyWord", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire" }, tradeHashes = { [3697635701] = { "1 Added Passive Skill is Holy Word" }, } }, - ["AfflictionNotableFieryAegis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fiery Aegis", statOrder = { 7666 }, level = 50, group = "AfflictionNotableFieryAegis", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire" }, tradeHashes = { [3233538204] = { "1 Added Passive Skill is Fiery Aegis" }, } }, - ["AfflictionJewelSmallPassivesGrantLife_"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7543 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(2-3) to Maximum Life" }, } }, - ["AfflictionJewelSmallPassivesGrantLife2_"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7543 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(4-7) to Maximum Life" }, } }, - ["AfflictionJewelSmallPassivesGrantLife3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7543 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(8-10) to Maximum Life" }, } }, - ["AfflictionJewelSmallPassivesGrantMana"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7544 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(2-5) to Maximum Mana" }, } }, - ["AfflictionJewelSmallPassivesGrantMana2"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7544 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(6-8) to Maximum Mana" }, } }, - ["AfflictionJewelSmallPassivesGrantMana3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7544 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(9-10) to Maximum Mana" }, } }, - ["AfflictionJewelSmallPassivesGrantES"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7542 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield" }, } }, - ["AfflictionJewelSmallPassivesGrantES2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7542 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield" }, } }, - ["AfflictionJewelSmallPassivesGrantES3"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7542 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield" }, } }, - ["AfflictionJewelSmallPassivesGrantArmour"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7513 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(11-20) to Armour" }, } }, - ["AfflictionJewelSmallPassivesGrantArmour2"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7513 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(21-30) to Armour" }, } }, - ["AfflictionJewelSmallPassivesGrantArmour3_"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7513 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(31-40) to Armour" }, } }, - ["AfflictionJewelSmallPassivesGrantEvasion"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7537 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(11-20) to Evasion" }, } }, - ["AfflictionJewelSmallPassivesGrantEvasion2__"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7537 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(21-30) to Evasion" }, } }, - ["AfflictionJewelSmallPassivesGrantEvasion3"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7537 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(31-40) to Evasion" }, } }, - ["AfflictionJewelSmallPassivesGrantStr"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7550 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(2-3) to Strength" }, } }, - ["AfflictionJewelSmallPassivesGrantStr2_"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7550 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(4-5) to Strength" }, } }, - ["AfflictionJewelSmallPassivesGrantStr3_"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7550 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(6-8) to Strength" }, } }, - ["AfflictionJewelSmallPassivesGrantDex_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7535 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(2-3) to Dexterity" }, } }, - ["AfflictionJewelSmallPassivesGrantDex2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7535 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(4-5) to Dexterity" }, } }, - ["AfflictionJewelSmallPassivesGrantDex3_"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7535 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(6-8) to Dexterity" }, } }, - ["AfflictionJewelSmallPassivesGrantInt_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7539 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(2-3) to Intelligence" }, } }, - ["AfflictionJewelSmallPassivesGrantInt2_"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7539 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(4-5) to Intelligence" }, } }, - ["AfflictionJewelSmallPassivesGrantInt3"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7539 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(6-8) to Intelligence" }, } }, - ["AfflictionJewelSmallPassivesGrantAttributes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7512 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +2 to All Attributes" }, } }, - ["AfflictionJewelSmallPassivesGrantAttributes2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7512 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +3 to All Attributes" }, } }, - ["AfflictionJewelSmallPassivesGrantAttributes3"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7512 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +4 to All Attributes" }, } }, - ["AfflictionJewelSmallPassivesGrantManaRegen"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7541 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate" }, } }, - ["AfflictionJewelSmallPassivesGrantManaRegen2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7541 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate" }, } }, - ["AfflictionJewelSmallPassivesGrantManaRegen3_"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7541 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeRegen___"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7548 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeRegen2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7548 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeRegen3"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7548 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantFireRes"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7538 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantFireRes2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7538 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantFireRes3"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7538 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantColdRes_"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7531 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantColdRes2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7531 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantColdRes3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7531 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningRes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7540 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningRes2_"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7540 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningRes3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7540 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalRes"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7536 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +2% to all Elemental Resistances" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalRes2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7536 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +3% to all Elemental Resistances" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalRes3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7536 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +4% to all Elemental Resistances" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosRes"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7529 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +3% to Chaos Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosRes2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7529 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +4% to Chaos Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosRes3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7529 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +5% to Chaos Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantDamage_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7534 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 2% increased Damage" }, } }, - ["AfflictionJewelSmallPassivesGrantDamage2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7534 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 3% increased Damage" }, } }, - ["AfflictionJewelSmallPassivesGrantDamage3"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7534 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 4% increased Damage" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeSmall"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7543 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(2-3) to Maximum Life" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeSmall2"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7543 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(4-7) to Maximum Life" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeSmall3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7543 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(8-10) to Maximum Life" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeSmall4"] = { type = "Prefix", affix = "Stalwart", "Added Small Passive Skills also grant: +(11-13) to Maximum Life", statOrder = { 7543 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(11-13) to Maximum Life" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeSmall5_"] = { type = "Prefix", affix = "Stout", "Added Small Passive Skills also grant: +(14-16) to Maximum Life", statOrder = { 7543 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(14-16) to Maximum Life" }, } }, - ["AfflictionJewelSmallPassivesGrantManaSmall"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7544 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(2-5) to Maximum Mana" }, } }, - ["AfflictionJewelSmallPassivesGrantManaSmall2_"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7544 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(6-8) to Maximum Mana" }, } }, - ["AfflictionJewelSmallPassivesGrantManaSmall3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7544 }, level = 73, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(9-10) to Maximum Mana" }, } }, - ["AfflictionJewelSmallPassivesGrantManaSmall4_"] = { type = "Prefix", affix = "Sapphire", "Added Small Passive Skills also grant: +(11-13) to Maximum Mana", statOrder = { 7544 }, level = 78, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(11-13) to Maximum Mana" }, } }, - ["AfflictionJewelSmallPassivesGrantManaSmall5_"] = { type = "Prefix", affix = "Cerulean", "Added Small Passive Skills also grant: +(14-16) to Maximum Mana", statOrder = { 7544 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(14-16) to Maximum Mana" }, } }, - ["AfflictionJewelSmallPassivesGrantESSmall"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7542 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield" }, } }, - ["AfflictionJewelSmallPassivesGrantESSmall2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7542 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield" }, } }, - ["AfflictionJewelSmallPassivesGrantESSmall3_"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7542 }, level = 73, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield" }, } }, - ["AfflictionJewelSmallPassivesGrantESSmall4"] = { type = "Prefix", affix = "Radiating", "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield", statOrder = { 7542 }, level = 78, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield" }, } }, - ["AfflictionJewelSmallPassivesGrantESSmall5"] = { type = "Prefix", affix = "Pulsing", "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield", statOrder = { 7542 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield" }, } }, - ["AfflictionJewelSmallPassivesGrantArmourSmall__"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7513 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(11-20) to Armour" }, } }, - ["AfflictionJewelSmallPassivesGrantArmourSmall2__"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7513 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(21-30) to Armour" }, } }, - ["AfflictionJewelSmallPassivesGrantArmourSmall3"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7513 }, level = 73, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(31-40) to Armour" }, } }, - ["AfflictionJewelSmallPassivesGrantArmourSmall4___"] = { type = "Prefix", affix = "Fortified", "Added Small Passive Skills also grant: +(41-53) to Armour", statOrder = { 7513 }, level = 78, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(41-53) to Armour" }, } }, - ["AfflictionJewelSmallPassivesGrantArmourSmall5"] = { type = "Prefix", affix = "Plated", "Added Small Passive Skills also grant: +(54-66) to Armour", statOrder = { 7513 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(54-66) to Armour" }, } }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7537 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(11-20) to Evasion" }, } }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall2_"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7537 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(21-30) to Evasion" }, } }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall3___"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7537 }, level = 73, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(31-40) to Evasion" }, } }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall4_"] = { type = "Prefix", affix = "Fleet", "Added Small Passive Skills also grant: +(41-53) to Evasion", statOrder = { 7537 }, level = 78, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(41-53) to Evasion" }, } }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall5"] = { type = "Prefix", affix = "Blurred", "Added Small Passive Skills also grant: +(54-66) to Evasion", statOrder = { 7537 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(54-66) to Evasion" }, } }, - ["AfflictionJewelSmallPassivesGrantStrSmall_"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7550 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(2-3) to Strength" }, } }, - ["AfflictionJewelSmallPassivesGrantStrSmall2"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7550 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(4-5) to Strength" }, } }, - ["AfflictionJewelSmallPassivesGrantStrSmall3"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7550 }, level = 73, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(6-8) to Strength" }, } }, - ["AfflictionJewelSmallPassivesGrantStrSmall4_"] = { type = "Suffix", affix = "of the Lion", "Added Small Passive Skills also grant: +(9-11) to Strength", statOrder = { 7550 }, level = 78, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(9-11) to Strength" }, } }, - ["AfflictionJewelSmallPassivesGrantStrSmall5"] = { type = "Suffix", affix = "of the Gorilla", "Added Small Passive Skills also grant: +(12-14) to Strength", statOrder = { 7550 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(12-14) to Strength" }, } }, - ["AfflictionJewelSmallPassivesGrantDexSmall_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7535 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(2-3) to Dexterity" }, } }, - ["AfflictionJewelSmallPassivesGrantDexSmall2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7535 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(4-5) to Dexterity" }, } }, - ["AfflictionJewelSmallPassivesGrantDexSmall3"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7535 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(6-8) to Dexterity" }, } }, - ["AfflictionJewelSmallPassivesGrantDexSmall4_"] = { type = "Suffix", affix = "of the Falcon", "Added Small Passive Skills also grant: +(9-11) to Dexterity", statOrder = { 7535 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(9-11) to Dexterity" }, } }, - ["AfflictionJewelSmallPassivesGrantDexSmall5"] = { type = "Suffix", affix = "of the Panther", "Added Small Passive Skills also grant: +(12-14) to Dexterity", statOrder = { 7535 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(12-14) to Dexterity" }, } }, - ["AfflictionJewelSmallPassivesGrantIntSmall_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7539 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(2-3) to Intelligence" }, } }, - ["AfflictionJewelSmallPassivesGrantIntSmall2"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7539 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(4-5) to Intelligence" }, } }, - ["AfflictionJewelSmallPassivesGrantIntSmall3______"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7539 }, level = 73, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(6-8) to Intelligence" }, } }, - ["AfflictionJewelSmallPassivesGrantIntSmall4_"] = { type = "Suffix", affix = "of the Augur", "Added Small Passive Skills also grant: +(9-11) to Intelligence", statOrder = { 7539 }, level = 78, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(9-11) to Intelligence" }, } }, - ["AfflictionJewelSmallPassivesGrantIntSmall5"] = { type = "Suffix", affix = "of the Philosopher", "Added Small Passive Skills also grant: +(12-14) to Intelligence", statOrder = { 7539 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(12-14) to Intelligence" }, } }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7512 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +2 to All Attributes" }, } }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7512 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +3 to All Attributes" }, } }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall3_"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7512 }, level = 73, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +4 to All Attributes" }, } }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall4"] = { type = "Suffix", affix = "of the Comet", "Added Small Passive Skills also grant: +5 to All Attributes", statOrder = { 7512 }, level = 78, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +5 to All Attributes" }, } }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall5"] = { type = "Suffix", affix = "of the Heavens", "Added Small Passive Skills also grant: +6 to All Attributes", statOrder = { 7512 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +6 to All Attributes" }, } }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall_"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7541 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate" }, } }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7541 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate" }, } }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall3"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7541 }, level = 73, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate" }, } }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall4"] = { type = "Suffix", affix = "of Bliss", "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate", statOrder = { 7541 }, level = 78, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate" }, } }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall5"] = { type = "Suffix", affix = "of Euphoria", "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate", statOrder = { 7541 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7548 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7548 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall3_"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7548 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall4_"] = { type = "Suffix", affix = "of the Starfish", "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second", statOrder = { 7548 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall5"] = { type = "Suffix", affix = "of the Hydra", "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second", statOrder = { 7548 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantFireResSmall"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7538 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantFireResSmall2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7538 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantFireResSmall3_"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7538 }, level = 73, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantFireResSmall4"] = { type = "Suffix", affix = "of the Kiln", "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance", statOrder = { 7538 }, level = 78, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantFireResSmall5"] = { type = "Suffix", affix = "of the Furnace", "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance", statOrder = { 7538 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantColdResSmall"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7531 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantColdResSmall2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7531 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantColdResSmall3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7531 }, level = 73, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantColdResSmall4"] = { type = "Suffix", affix = "of the Yeti", "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance", statOrder = { 7531 }, level = 78, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantColdResSmall5_"] = { type = "Suffix", affix = "of the Walrus", "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance", statOrder = { 7531 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7540 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall2__"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7540 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7540 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall4_"] = { type = "Suffix", affix = "of the Thunderhead", "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance", statOrder = { 7540 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall5"] = { type = "Suffix", affix = "of the Tempest", "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance", statOrder = { 7540 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7536 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +2% to all Elemental Resistances" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7536 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +3% to all Elemental Resistances" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7536 }, level = 73, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +4% to all Elemental Resistances" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall4"] = { type = "Suffix", affix = "of Variegation", "Added Small Passive Skills also grant: +5% to all Elemental Resistances", statOrder = { 7536 }, level = 78, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +5% to all Elemental Resistances" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall5"] = { type = "Suffix", affix = "of the Rainbow", "Added Small Passive Skills also grant: +6% to all Elemental Resistances", statOrder = { 7536 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +6% to all Elemental Resistances" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7529 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +3% to Chaos Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7529 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +4% to Chaos Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7529 }, level = 73, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +5% to Chaos Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall4"] = { type = "Suffix", affix = "of Expulsion", "Added Small Passive Skills also grant: +6% to Chaos Resistance", statOrder = { 7529 }, level = 78, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +6% to Chaos Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall5"] = { type = "Suffix", affix = "of Exile", "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance", statOrder = { 7529 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance" }, } }, - ["AfflictionJewelSmallPassivesGrantDamageSmall_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7534 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 2% increased Damage" }, } }, - ["AfflictionJewelSmallPassivesGrantDamageSmall2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7534 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 3% increased Damage" }, } }, - ["AfflictionJewelSmallPassivesGrantDamageSmall3_"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7534 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 4% increased Damage" }, } }, - ["AfflictionJewelSmallPassivesGrantDamageSmall4_"] = { type = "Prefix", affix = "Destructive", "Added Small Passive Skills also grant: 5% increased Damage", statOrder = { 7534 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 5% increased Damage" }, } }, - ["AfflictionJewelSmallPassivesGrantDamageSmall5"] = { type = "Prefix", affix = "Deadly", "Added Small Passive Skills also grant: 6% increased Damage", statOrder = { 7534 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 6% increased Damage" }, } }, - ["AfflictionJewelSmallPassivesHaveIncreasedEffect"] = { type = "Prefix", affix = "Potent", "Added Small Passive Skills have 25% increased Effect", statOrder = { 7554 }, level = 1, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 500 }, modTags = { }, tradeHashes = { [2618549697] = { "Added Small Passive Skills have 25% increased Effect" }, } }, - ["AfflictionJewelSmallPassivesHaveIncreasedEffect2"] = { type = "Prefix", affix = "Powerful", "Added Small Passive Skills have 35% increased Effect", statOrder = { 7554 }, level = 84, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, tradeHashes = { [2618549697] = { "Added Small Passive Skills have 35% increased Effect" }, } }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed"] = { type = "Suffix", affix = "of Skill", "Added Small Passive Skills also grant: 1% increased Attack Speed", statOrder = { 7522 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1411310186] = { "Added Small Passive Skills also grant: 1% increased Attack Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed2_"] = { type = "Suffix", affix = "of Ease", "Added Small Passive Skills also grant: 2% increased Attack Speed", statOrder = { 7522 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1411310186] = { "Added Small Passive Skills also grant: 2% increased Attack Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed3__"] = { type = "Suffix", affix = "of Mastery", "Added Small Passive Skills also grant: 3% increased Attack Speed", statOrder = { 7522 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1411310186] = { "Added Small Passive Skills also grant: 3% increased Attack Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantCastSpeed"] = { type = "Suffix", affix = "of Talent", "Added Small Passive Skills also grant: 1% increased Cast Speed", statOrder = { 7524 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1195353227] = { "Added Small Passive Skills also grant: 1% increased Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Added Small Passive Skills also grant: 2% increased Cast Speed", statOrder = { 7524 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1195353227] = { "Added Small Passive Skills also grant: 2% increased Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantCastSpeed3_"] = { type = "Suffix", affix = "of Expertise", "Added Small Passive Skills also grant: 3% increased Cast Speed", statOrder = { 7524 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1195353227] = { "Added Small Passive Skills also grant: 3% increased Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime"] = { type = "Suffix", affix = "of Decline", "Added Small Passive Skills also grant: 1% increased Damage over Time", statOrder = { 7533 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, tradeHashes = { [2401834120] = { "Added Small Passive Skills also grant: 1% increased Damage over Time" }, } }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime2"] = { type = "Suffix", affix = "of Degeneration", "Added Small Passive Skills also grant: 2% increased Damage over Time", statOrder = { 7533 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, tradeHashes = { [2401834120] = { "Added Small Passive Skills also grant: 2% increased Damage over Time" }, } }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime3"] = { type = "Suffix", affix = "of Disintegration", "Added Small Passive Skills also grant: 3% increased Damage over Time", statOrder = { 7533 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "damage" }, tradeHashes = { [2401834120] = { "Added Small Passive Skills also grant: 3% increased Damage over Time" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration_"] = { type = "Suffix", affix = "of Tumult", "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies", statOrder = { 7526 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3338465330] = { "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration2"] = { type = "Suffix", affix = "of Turbulence", "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies", statOrder = { 7526 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3338465330] = { "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration3"] = { type = "Suffix", affix = "of Disturbance", "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies", statOrder = { 7526 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3338465330] = { "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies" }, } }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect__"] = { type = "Suffix", affix = "of Outreach", "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills", statOrder = { 7523 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, tradeHashes = { [2642917409] = { "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect2"] = { type = "Suffix", affix = "of Influence", "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills", statOrder = { 7523 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, tradeHashes = { [2642917409] = { "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect3"] = { type = "Suffix", affix = "of Guidance", "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills", statOrder = { 7523 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 250, 0 }, modTags = { "aura" }, tradeHashes = { [2642917409] = { "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect"] = { type = "Suffix", affix = "of Clout", "Added Small Passive Skills also grant: 1% increased Area of Effect of Hex Skills", statOrder = { 7532 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2138819920] = { "Added Small Passive Skills also grant: 1% increased Area of Effect of Hex Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect2"] = { type = "Suffix", affix = "of Dominance", "Added Small Passive Skills also grant: 2% increased Area of Effect of Hex Skills", statOrder = { 7532 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2138819920] = { "Added Small Passive Skills also grant: 2% increased Area of Effect of Hex Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect3"] = { type = "Suffix", affix = "of Suppression", "Added Small Passive Skills also grant: 3% increased Area of Effect of Hex Skills", statOrder = { 7532 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2138819920] = { "Added Small Passive Skills also grant: 3% increased Area of Effect of Hex Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration"] = { type = "Suffix", affix = "of Yelling", "Added Small Passive Skills also grant: 2% increased Warcry Duration", statOrder = { 7553 }, level = 1, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, tradeHashes = { [2596487673] = { "Added Small Passive Skills also grant: 2% increased Warcry Duration" }, } }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration2"] = { type = "Suffix", affix = "of Shouting", "Added Small Passive Skills also grant: 3% increased Warcry Duration", statOrder = { 7553 }, level = 68, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, tradeHashes = { [2596487673] = { "Added Small Passive Skills also grant: 3% increased Warcry Duration" }, } }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration3"] = { type = "Suffix", affix = "of Bellowing", "Added Small Passive Skills also grant: 4% increased Warcry Duration", statOrder = { 7553 }, level = 84, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2596487673] = { "Added Small Passive Skills also grant: 4% increased Warcry Duration" }, } }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Ire", "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier", statOrder = { 7525 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1926135629] = { "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier" }, } }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier2_"] = { type = "Suffix", affix = "of Anger", "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier", statOrder = { 7525 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1926135629] = { "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier" }, } }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier", statOrder = { 7525 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1926135629] = { "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier" }, } }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen"] = { type = "Suffix", affix = "of Fostering", "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second", statOrder = { 7547 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [542238572] = { "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen2"] = { type = "Suffix", affix = "of Nurturing", "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second", statOrder = { 7547 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [542238572] = { "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen3"] = { type = "Suffix", affix = "of Motherhood", "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second", statOrder = { 7547 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [542238572] = { "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second" }, } }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect_"] = { type = "Suffix", affix = "of Reach", "Added Small Passive Skills also grant: 1% increased Area of Effect", statOrder = { 7528 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, tradeHashes = { [713280739] = { "Added Small Passive Skills also grant: 1% increased Area of Effect" }, } }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect2"] = { type = "Suffix", affix = "of Range", "Added Small Passive Skills also grant: 2% increased Area of Effect", statOrder = { 7528 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, tradeHashes = { [713280739] = { "Added Small Passive Skills also grant: 2% increased Area of Effect" }, } }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect3"] = { type = "Suffix", affix = "of Horizons", "Added Small Passive Skills also grant: 3% increased Area of Effect", statOrder = { 7528 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [713280739] = { "Added Small Passive Skills also grant: 3% increased Area of Effect" }, } }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed"] = { type = "Suffix", affix = "of Darting", "Added Small Passive Skills also grant: 2% increased Projectile Speed", statOrder = { 7527 }, level = 1, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [679080252] = { "Added Small Passive Skills also grant: 2% increased Projectile Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "Added Small Passive Skills also grant: 3% increased Projectile Speed", statOrder = { 7527 }, level = 68, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [679080252] = { "Added Small Passive Skills also grant: 3% increased Projectile Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "Added Small Passive Skills also grant: 4% increased Projectile Speed", statOrder = { 7527 }, level = 84, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [679080252] = { "Added Small Passive Skills also grant: 4% increased Projectile Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed_"] = { type = "Suffix", affix = "of Tinkering", "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed", statOrder = { 7552 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [2135246244] = { "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed2"] = { type = "Suffix", affix = "of Assembly", "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed", statOrder = { 7552 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [2135246244] = { "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed3_"] = { type = "Suffix", affix = "of Deployment", "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed", statOrder = { 7552 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [2135246244] = { "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed"] = { type = "Suffix", affix = "of the Karui", "Added Small Passive Skills also grant: 1% increased Totem Placement speed", statOrder = { 7551 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [1588674629] = { "Added Small Passive Skills also grant: 1% increased Totem Placement speed" }, } }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed2"] = { type = "Suffix", affix = "of the Ancestors", "Added Small Passive Skills also grant: 2% increased Totem Placement speed", statOrder = { 7551 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [1588674629] = { "Added Small Passive Skills also grant: 2% increased Totem Placement speed" }, } }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed3"] = { type = "Suffix", affix = "of The Way", "Added Small Passive Skills also grant: 3% increased Totem Placement speed", statOrder = { 7551 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [1588674629] = { "Added Small Passive Skills also grant: 3% increased Totem Placement speed" }, } }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange_"] = { type = "Suffix", affix = "of Gripping", "Added Small Passive Skills also grant: 1% increased Brand Attachment range", statOrder = { 7549 }, level = 1, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, tradeHashes = { [2265469693] = { "Added Small Passive Skills also grant: 1% increased Brand Attachment range" }, } }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange2"] = { type = "Suffix", affix = "of Grasping", "Added Small Passive Skills also grant: 2% increased Brand Attachment range", statOrder = { 7549 }, level = 68, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, tradeHashes = { [2265469693] = { "Added Small Passive Skills also grant: 2% increased Brand Attachment range" }, } }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange3____"] = { type = "Suffix", affix = "of Latching", "Added Small Passive Skills also grant: 3% increased Brand Attachment range", statOrder = { 7549 }, level = 84, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster" }, tradeHashes = { [2265469693] = { "Added Small Passive Skills also grant: 3% increased Brand Attachment range" }, } }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed"] = { type = "Suffix", affix = "of Attention", "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed", statOrder = { 7515 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3799759054] = { "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Concentration", "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed", statOrder = { 7515 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3799759054] = { "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Forethought", "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed", statOrder = { 7515 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3799759054] = { "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained"] = { type = "Suffix", affix = "of Refilling", "Added Small Passive Skills also grant: 1% increased Flask Charges gained", statOrder = { 7530 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, tradeHashes = { [3187805501] = { "Added Small Passive Skills also grant: 1% increased Flask Charges gained" }, } }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained2_"] = { type = "Suffix", affix = "of Brimming", "Added Small Passive Skills also grant: 2% increased Flask Charges gained", statOrder = { 7530 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, tradeHashes = { [3187805501] = { "Added Small Passive Skills also grant: 2% increased Flask Charges gained" }, } }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained3"] = { type = "Suffix", affix = "of Overflowing", "Added Small Passive Skills also grant: 3% increased Flask Charges gained", statOrder = { 7530 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 250, 250, 0 }, modTags = { "flask" }, tradeHashes = { [3187805501] = { "Added Small Passive Skills also grant: 3% increased Flask Charges gained" }, } }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Kindling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills", statOrder = { 7519 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, tradeHashes = { [1849042097] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Smoke", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills", statOrder = { 7519 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, tradeHashes = { [1849042097] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Flashfires", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills", statOrder = { 7519 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, tradeHashes = { [1849042097] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Cooling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills", statOrder = { 7517 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, tradeHashes = { [2054530657] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Frigidity", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills", statOrder = { 7517 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, tradeHashes = { [2054530657] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Avalanche", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills", statOrder = { 7517 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, tradeHashes = { [2054530657] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Gathering Clouds", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7520 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, tradeHashes = { [201731102] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Sudden Storms", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7520 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, tradeHashes = { [201731102] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Strike", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7520 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, tradeHashes = { [201731102] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Dusk", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7516 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, tradeHashes = { [3692167527] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed2____"] = { type = "Suffix", affix = "of Midnight", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7516 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, tradeHashes = { [3692167527] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Eclipse", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7516 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, tradeHashes = { [3692167527] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Rumbling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills", statOrder = { 7521 }, level = 1, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, tradeHashes = { [1903097619] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Tremors", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills", statOrder = { 7521 }, level = 68, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, tradeHashes = { [1903097619] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of the Earthquake", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills", statOrder = { 7521 }, level = 84, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 250, 0 }, modTags = { "physical", "attack", "caster", "speed" }, tradeHashes = { [1903097619] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Coaxing", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7518 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, tradeHashes = { [2699118751] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Evoking", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7518 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, tradeHashes = { [2699118751] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Manifesting", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7518 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, tradeHashes = { [2699118751] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills" }, } }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of Pillaging", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed", statOrder = { 7545 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2310019673] = { "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Ravaging", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed", statOrder = { 7545 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2310019673] = { "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Razing", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed", statOrder = { 7545 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2310019673] = { "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed" }, } }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Courier", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7514 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3262895685] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald" }, } }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Messenger", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7514 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3262895685] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald" }, } }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Herald", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7514 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3262895685] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald" }, } }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Message", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7546 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [1948127742] = { "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed while you are affected by a Herald" }, } }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Teachings", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7546 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [1948127742] = { "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed while you are affected by a Herald" }, } }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Canon", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7546 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [1948127742] = { "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed while you are affected by a Herald" }, } }, + ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-3)% to Chaos Resistance" }, } }, + ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2080 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1408638732] = { "1% reduced Character Size" }, } }, + ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1895 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(3-5)% reduced Chill Duration on you" }, } }, + ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(3-5)% reduced Freeze Duration on you" }, } }, + ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(3-5)% reduced Ignite Duration on you" }, } }, + ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1896 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(3-5)% reduced Shock Duration on you" }, } }, + ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3060 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2839036860] = { "(3-7)% increased Endurance, Frenzy and Power Charge Duration" }, } }, + ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } }, + ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3166 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, tradeHashes = { [165218607] = { "Hits have (60-100)% increased Critical Strike Chance against you" }, } }, + ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3130 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [3582580206] = { "(20-30)% increased Damage while Dead" }, } }, + ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(5-10)% increased Damage with Vaal Skills" }, } }, + ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3133 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "1% increased Chaos Damage for each Corrupted Item Equipped" }, } }, + ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3134 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3815042054] = { "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped" }, } }, + ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3136 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2679819855] = { "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped" }, } }, + ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3128 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, + ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5483 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10813 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(5-7)% increased Effect of Non-Damaging Ailments" }, } }, + ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-5)% increased Area of Effect" }, } }, + ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(8-10)% increased Global Critical Strike Chance" }, } }, + ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1214 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(4-5)% increased Damage" }, } }, + ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4997 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1126826428] = { "You cannot be Maimed" }, } }, + ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-5)% increased Damage" }, } }, + ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2256 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4202507508] = { "2% increased Reservation Efficiency of Skills" }, } }, + ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2253 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2587176568] = { "2% increased Reservation Efficiency of Skills" }, } }, + ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3128 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1654414582] = { "You cannot be Cursed with Silence" }, } }, + ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 3015 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } }, + ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 3017 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } }, + ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 3018 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } }, + ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 3014 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } }, + ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7271 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-25)% chance to Avoid being Ignited" }, } }, + ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1867, 1868 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-25)% chance to Avoid being Chilled" }, [1514829491] = { "(20-25)% chance to Avoid being Frozen" }, } }, + ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-25)% chance to Avoid being Shocked" }, } }, + ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(20-25)% chance to Avoid being Poisoned" }, } }, + ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(20-25)% chance to Avoid Bleeding" }, } }, + ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, + ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-25)% reduced Ignite Duration on you" }, } }, + ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1668 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(20-25)% reduced Effect of Chill on you" }, } }, + ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-25)% reduced Effect of Shock on you" }, } }, + ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 10123 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-25)% reduced Poison Duration on you" }, } }, + ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 10114 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-25)% reduced Bleed Duration on you" }, } }, + ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(20-25)% reduced Effect of Curses on you" }, } }, + ["AfflictionNotableProdigiousDefense__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prodigious Defence", statOrder = { 7859 }, level = 1, group = "AfflictionNotableProdigiousDefense", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, tradeHashes = { [1705633890] = { "1 Added Passive Skill is Prodigious Defence" }, } }, + ["AfflictionNotableAdvanceGuard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Advance Guard", statOrder = { 7660 }, level = 50, group = "AfflictionNotableAdvanceGuard", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, tradeHashes = { [1625939562] = { "1 Added Passive Skill is Advance Guard" }, } }, + ["AfflictionNotableGladiatorialCombat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiatorial Combat", statOrder = { 7782 }, level = 68, group = "AfflictionNotableGladiatorialCombat", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1543731719] = { "1 Added Passive Skill is Gladiatorial Combat" }, } }, + ["AfflictionNotableStrikeLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Strike Leader", statOrder = { 7914 }, level = 1, group = "AfflictionNotableStrikeLeader", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, tradeHashes = { [282062371] = { "1 Added Passive Skill is Strike Leader" }, } }, + ["AfflictionNotablePowerfulWard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Ward", statOrder = { 7849 }, level = 68, group = "AfflictionNotablePowerfulWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge" }, tradeHashes = { [164032122] = { "1 Added Passive Skill is Powerful Ward" }, } }, + ["AfflictionNotableEnduringWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Ward", statOrder = { 7750 }, level = 68, group = "AfflictionNotableEnduringWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge" }, tradeHashes = { [252724319] = { "1 Added Passive Skill is Enduring Ward" }, } }, + ["AfflictionNotableGladiatorsFortitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiator's Fortitude", statOrder = { 7783 }, level = 68, group = "AfflictionNotableGladiatorsFortitude", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_maximum_life", "default", }, weightVal = { 113, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, tradeHashes = { [1591995797] = { "1 Added Passive Skill is Gladiator's Fortitude" }, } }, + ["AfflictionNotablePreciseRetaliation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Retaliation", statOrder = { 7853 }, level = 50, group = "AfflictionNotablePreciseRetaliation", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_critical_chance", "default", }, weightVal = { 300, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [2335364359] = { "1 Added Passive Skill is Precise Retaliation" }, } }, + ["AfflictionNotableVeteranDefender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Veteran Defender", statOrder = { 7936 }, level = 1, group = "AfflictionNotableVeteranDefender", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "elemental", "resistance", "attribute" }, tradeHashes = { [664010431] = { "1 Added Passive Skill is Veteran Defender" }, } }, + ["AfflictionNotableIronBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Iron Breaker", statOrder = { 7810 }, level = 1, group = "AfflictionNotableIronBreaker", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3258653591] = { "1 Added Passive Skill is Iron Breaker" }, } }, + ["AfflictionNotableDeepCuts"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Cuts", statOrder = { 7728 }, level = 75, group = "AfflictionNotableDeepCuts", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack" }, tradeHashes = { [410939404] = { "1 Added Passive Skill is Deep Cuts" }, } }, + ["AfflictionNotableMastertheFundamentals_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master the Fundamentals", statOrder = { 7827 }, level = 50, group = "AfflictionNotableMastertheFundamentals", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "resistance" }, tradeHashes = { [3585232432] = { "1 Added Passive Skill is Master the Fundamentals" }, } }, + ["AfflictionNotableForceMultiplier"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Force Multiplier", statOrder = { 7777 }, level = 50, group = "AfflictionNotableForceMultiplier", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1904581068] = { "1 Added Passive Skill is Force Multiplier" }, } }, + ["AfflictionNotableFuriousAssault"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Furious Assault", statOrder = { 7780 }, level = 1, group = "AfflictionNotableFuriousAssault", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "damage", "physical", "attack", "caster" }, tradeHashes = { [3415827027] = { "1 Added Passive Skill is Furious Assault" }, } }, + ["AfflictionNotableViciousSkewering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Skewering", statOrder = { 7939 }, level = 68, group = "AfflictionNotableViciousSkewering", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 81, 141, 141, 151, 145, 151, 113, 117, 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [567971948] = { "1 Added Passive Skill is Vicious Skewering" }, } }, + ["AfflictionNotableGrimOath"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Grim Oath", statOrder = { 7787 }, level = 68, group = "AfflictionNotableGrimOath", weightKey = { "affliction_physical_damage", "affliction_chaos_damage", "default", }, weightVal = { 87, 97, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [2194205899] = { "1 Added Passive Skill is Grim Oath" }, } }, + ["AfflictionNotableBattleHardened_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battle-Hardened", statOrder = { 7681 }, level = 50, group = "AfflictionNotableBattleHardened", weightKey = { "affliction_physical_damage", "affliction_armour", "affliction_evasion", "default", }, weightVal = { 232, 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "evasion", "physical" }, tradeHashes = { [4188581520] = { "1 Added Passive Skill is Battle-Hardened" }, } }, + ["AfflictionNotableReplenishingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Replenishing Presence", statOrder = { 7877 }, level = 50, group = "AfflictionNotableReplenishingPresence", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, tradeHashes = { [1496043857] = { "1 Added Passive Skill is Replenishing Presence" }, } }, + ["AfflictionNotableMasterofCommand__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Command", statOrder = { 7823 }, level = 68, group = "AfflictionNotableMasterofCommand", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3257074218] = { "1 Added Passive Skill is Master of Command" }, } }, + ["AfflictionNotableFirstAmongEquals__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiteful Presence", statOrder = { 7772 }, level = 1, group = "AfflictionNotableFirstAmongEquals", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 960, 960, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "cold", "aura", "ailment" }, tradeHashes = { [1134501245] = { "1 Added Passive Skill is Spiteful Presence" }, } }, + ["AfflictionNotablePurposefulHarbinger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Purposeful Harbinger", statOrder = { 7866 }, level = 75, group = "AfflictionNotablePurposefulHarbinger", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 60, 60, 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [507505131] = { "1 Added Passive Skill is Purposeful Harbinger" }, } }, + ["AfflictionNotablePreciseCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Destructive Aspect", statOrder = { 7851 }, level = 68, group = "AfflictionNotablePreciseCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_critical_chance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3860179422] = { "1 Added Passive Skill is Destructive Aspect" }, } }, + ["AfflictionNotablePureCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Electric Presence", statOrder = { 7863 }, level = 68, group = "AfflictionNotablePureCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "aura", "ailment" }, tradeHashes = { [3950683692] = { "1 Added Passive Skill is Electric Presence" }, } }, + ["AfflictionNotableSummerCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mortifying Aspect", statOrder = { 7918 }, level = 68, group = "AfflictionNotableSummerCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "chaos", "resistance", "aura" }, tradeHashes = { [3881737087] = { "1 Added Passive Skill is Mortifying Aspect" }, } }, + ["AfflictionNotableWinterCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Frantic Aspect", statOrder = { 7954 }, level = 68, group = "AfflictionNotableWinterCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_cold_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "speed", "aura" }, tradeHashes = { [792262925] = { "1 Added Passive Skill is Frantic Aspect" }, } }, + ["AfflictionNotableGroundedCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Introspection", statOrder = { 7788 }, level = 68, group = "AfflictionNotableGroundedCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, tradeHashes = { [1309218394] = { "1 Added Passive Skill is Introspection" }, } }, + ["AfflictionNotableStalwartCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Volatile Presence", statOrder = { 7907 }, level = 50, group = "AfflictionNotableStalwartCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_armour", "affliction_evasion", "affliction_maximum_energy_shield", "default", }, weightVal = { 480, 480, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "fire", "aura", "ailment" }, tradeHashes = { [2350668735] = { "1 Added Passive Skill is Volatile Presence" }, } }, + ["AfflictionNotableVengefulCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Righteous Path", statOrder = { 7935 }, level = 1, group = "AfflictionNotableVengefulCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 960, 960, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2620267328] = { "1 Added Passive Skill is Righteous Path" }, } }, + ["AfflictionNotableSkullbreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skullbreaker", statOrder = { 7898 }, level = 68, group = "AfflictionNotableSkullbreaker", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [315697256] = { "1 Added Passive Skill is Skullbreaker" }, } }, + ["AfflictionNotablePressurePoints__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pressure Points", statOrder = { 7854 }, level = 50, group = "AfflictionNotablePressurePoints", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [3391925584] = { "1 Added Passive Skill is Pressure Points" }, } }, + ["AfflictionNotableOverwhelmingMalice"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overwhelming Malice", statOrder = { 7843 }, level = 68, group = "AfflictionNotableOverwhelmingMalice", weightKey = { "affliction_critical_chance", "affliction_chaos_damage", "default", }, weightVal = { 171, 97, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [770408103] = { "1 Added Passive Skill is Overwhelming Malice" }, } }, + ["AfflictionNotableMagnifier"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Magnifier", statOrder = { 7819 }, level = 1, group = "AfflictionNotableMagnifier", weightKey = { "affliction_critical_chance", "affliction_area_damage", "default", }, weightVal = { 914, 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [2886441936] = { "1 Added Passive Skill is Magnifier" }, } }, + ["AfflictionNotableSavageResponse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savage Response", statOrder = { 7886 }, level = 50, group = "AfflictionNotableSavageResponse", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [4222635921] = { "1 Added Passive Skill is Savage Response" }, } }, + ["AfflictionNotableEyeoftheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye of the Storm", statOrder = { 7760 }, level = 50, group = "AfflictionNotableEyeoftheStorm", weightKey = { "affliction_critical_chance", "affliction_fire_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 457, 366, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "critical", "ailment" }, tradeHashes = { [3818661553] = { "1 Added Passive Skill is Eye of the Storm" }, } }, + ["AfflictionNotableBasicsofPain"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Basics of Pain", statOrder = { 7680 }, level = 1, group = "AfflictionNotableBasicsofPain", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [3084359503] = { "1 Added Passive Skill is Basics of Pain" }, } }, + ["AfflictionNotableQuickGetaway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick Getaway", statOrder = { 7868 }, level = 1, group = "AfflictionNotableQuickGetaway", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "critical" }, tradeHashes = { [1626818279] = { "1 Added Passive Skill is Quick Getaway" }, } }, + ["AfflictionNotableAssertDominance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Assert Dominance", statOrder = { 7678 }, level = 68, group = "AfflictionNotableAssertDominance", weightKey = { "affliction_area_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [4222265138] = { "1 Added Passive Skill is Assert Dominance" }, } }, + ["AfflictionNotableVastPower"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vast Power", statOrder = { 7934 }, level = 50, group = "AfflictionNotableVastPower", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [1996576560] = { "1 Added Passive Skill is Vast Power" }, } }, + ["AfflictionNotablePowerfulAssault_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Assault", statOrder = { 7848 }, level = 50, group = "AfflictionNotablePowerfulAssault", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [1005475168] = { "1 Added Passive Skill is Powerful Assault" }, } }, + ["AfflictionNotableIntensity"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Intensity", statOrder = { 7808 }, level = 68, group = "AfflictionNotableIntensity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2785835061] = { "1 Added Passive Skill is Intensity" }, } }, + ["AfflictionNotableTitanicSwings_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Titanic Swings", statOrder = { 7926 }, level = 50, group = "AfflictionNotableTitanicSwings", weightKey = { "affliction_area_damage", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 980, 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2930275641] = { "1 Added Passive Skill is Titanic Swings" }, } }, + ["AfflictionNotableToweringThreat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Towering Threat", statOrder = { 7928 }, level = 68, group = "AfflictionNotableToweringThreat", weightKey = { "affliction_area_damage", "affliction_maximum_life", "default", }, weightVal = { 367, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, tradeHashes = { [3536778624] = { "1 Added Passive Skill is Towering Threat" }, } }, + ["AfflictionNotableAncestralEcho"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Echo", statOrder = { 7666 }, level = 1, group = "AfflictionNotableAncestralEcho", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [957679205] = { "1 Added Passive Skill is Ancestral Echo" }, } }, + ["AfflictionNotableAncestralReach"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Reach", statOrder = { 7671 }, level = 1, group = "AfflictionNotableAncestralReach", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, tradeHashes = { [3294884567] = { "1 Added Passive Skill is Ancestral Reach" }, } }, + ["AfflictionNotableAncestralMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Might", statOrder = { 7669 }, level = 50, group = "AfflictionNotableAncestralMight", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3998316] = { "1 Added Passive Skill is Ancestral Might" }, } }, + ["AfflictionNotableAncestralPreservation__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Preservation", statOrder = { 7670 }, level = 68, group = "AfflictionNotableAncestralPreservation", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance" }, tradeHashes = { [3746703776] = { "1 Added Passive Skill is Ancestral Preservation" }, } }, + ["AfflictionNotableSnaringSpirits"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snaring Spirits", statOrder = { 7902 }, level = 50, group = "AfflictionNotableSnaringSpirits", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3319205340] = { "1 Added Passive Skill is Snaring Spirits" }, } }, + ["AfflictionNotableSleeplessSentries"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sleepless Sentries", statOrder = { 7899 }, level = 68, group = "AfflictionNotableSleeplessSentries", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [3993957711] = { "1 Added Passive Skill is Sleepless Sentries" }, } }, + ["AfflictionNotableAncestralGuidance_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Guidance", statOrder = { 7667 }, level = 50, group = "AfflictionNotableAncestralGuidance", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, tradeHashes = { [2387747995] = { "1 Added Passive Skill is Ancestral Guidance" }, } }, + ["AfflictionNotableAncestralInspiration__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Inspiration", statOrder = { 7668 }, level = 68, group = "AfflictionNotableAncestralInspiration", weightKey = { "affliction_totem_damage", "affliction_spell_damage", "default", }, weightVal = { 277, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster" }, tradeHashes = { [77045106] = { "1 Added Passive Skill is Ancestral Inspiration" }, } }, + ["AfflictionNotableVitalFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vital Focus", statOrder = { 7942 }, level = 1, group = "AfflictionNotableVitalFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1811, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, tradeHashes = { [2134141047] = { "1 Added Passive Skill is Vital Focus" }, } }, + ["AfflictionNotableRapidInfusion_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unrestrained Focus", statOrder = { 7869 }, level = 68, group = "AfflictionNotableRapidInfusion", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 340, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, tradeHashes = { [1570474940] = { "1 Added Passive Skill is Unrestrained Focus" }, } }, + ["AfflictionNotableUnwaveringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwavering Focus", statOrder = { 7932 }, level = 50, group = "AfflictionNotableUnwaveringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "damage" }, tradeHashes = { [367638058] = { "1 Added Passive Skill is Unwavering Focus" }, } }, + ["AfflictionNotableEnduringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Focus", statOrder = { 7749 }, level = 75, group = "AfflictionNotableEnduringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "damage" }, tradeHashes = { [2522970386] = { "1 Added Passive Skill is Enduring Focus" }, } }, + ["AfflictionNotablePreciseFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Focus", statOrder = { 7852 }, level = 50, group = "AfflictionNotablePreciseFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [2913581789] = { "1 Added Passive Skill is Precise Focus" }, } }, + ["AfflictionNotableStoicFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stoic Focus", statOrder = { 7909 }, level = 1, group = "AfflictionNotableStoicFocus", weightKey = { "affliction_channelling_skill_damage", "affliction_chance_to_block", "default", }, weightVal = { 1811, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage" }, tradeHashes = { [1088949570] = { "1 Added Passive Skill is Stoic Focus" }, } }, + ["AfflictionNotableHexBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hex Breaker", statOrder = { 7796 }, level = 75, group = "AfflictionNotableHexBreaker", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "curse" }, tradeHashes = { [2341828832] = { "1 Added Passive Skill is Hex Breaker" }, } }, + ["AfflictionNotableArcaneAdept_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Adept", statOrder = { 7674 }, level = 68, group = "AfflictionNotableArcaneAdept", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, tradeHashes = { [393565679] = { "1 Added Passive Skill is Arcane Adept" }, } }, + ["AfflictionNotableDistilledPerfection_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Distilled Perfection", statOrder = { 7737 }, level = 1, group = "AfflictionNotableDistilledPerfection", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [3652138990] = { "1 Added Passive Skill is Distilled Perfection" }, } }, + ["AfflictionNotableSpikedConcoction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiked Concoction", statOrder = { 7905 }, level = 50, group = "AfflictionNotableSpikedConcoction", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [3372255769] = { "1 Added Passive Skill is Spiked Concoction" }, } }, + ["AfflictionNotableFasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fasting", statOrder = { 7764 }, level = 50, group = "AfflictionNotableFasting", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "speed" }, tradeHashes = { [37078857] = { "1 Added Passive Skill is Fasting" }, } }, + ["AfflictionNotableMendersWellspring__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mender's Wellspring", statOrder = { 7828 }, level = 68, group = "AfflictionNotableMendersWellspring", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, tradeHashes = { [4291434923] = { "1 Added Passive Skill is Mender's Wellspring" }, } }, + ["AfflictionNotableSpecialReserve"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Special Reserve", statOrder = { 7904 }, level = 1, group = "AfflictionNotableSpecialReserve", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "damage" }, tradeHashes = { [4235300427] = { "1 Added Passive Skill is Special Reserve" }, } }, + ["AfflictionNotableNumbingElixir"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Numbing Elixir", statOrder = { 7837 }, level = 68, group = "AfflictionNotableNumbingElixir", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "caster", "ailment", "curse" }, tradeHashes = { [1028754276] = { "1 Added Passive Skill is Numbing Elixir" }, } }, + ["AfflictionNotableMobMentality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mob Mentality", statOrder = { 7831 }, level = 75, group = "AfflictionNotableMobMentality", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 109, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "damage", "attack" }, tradeHashes = { [1048879642] = { "1 Added Passive Skill is Mob Mentality" }, } }, + ["AfflictionNotableCryWolf__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cry Wolf", statOrder = { 7719 }, level = 68, group = "AfflictionNotableCryWolf", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [1821748178] = { "1 Added Passive Skill is Cry Wolf" }, } }, + ["AfflictionNotableHauntingShout"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haunting Shout", statOrder = { 7791 }, level = 50, group = "AfflictionNotableHauntingShout", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [1080363357] = { "1 Added Passive Skill is Haunting Shout" }, } }, + ["AfflictionNotableLeadByExample__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lead By Example", statOrder = { 7812 }, level = 1, group = "AfflictionNotableLeadByExample", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, tradeHashes = { [2195406641] = { "1 Added Passive Skill is Lead By Example" }, } }, + ["AfflictionNotableProvocateur"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Provocateur", statOrder = { 7860 }, level = 50, group = "AfflictionNotableProvocateur", weightKey = { "affliction_warcry_buff_effect", "affliction_critical_chance", "default", }, weightVal = { 873, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [814369372] = { "1 Added Passive Skill is Provocateur" }, } }, + ["AfflictionNotableWarningCall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Warning Call", statOrder = { 7946 }, level = 68, group = "AfflictionNotableWarningCall", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, tradeHashes = { [578355556] = { "1 Added Passive Skill is Warning Call" }, } }, + ["AfflictionNotableRattlingBellow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rattling Bellow", statOrder = { 7870 }, level = 1, group = "AfflictionNotableRattlingBellow", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, tradeHashes = { [4288473380] = { "1 Added Passive Skill is Rattling Bellow" }, } }, + ["AfflictionNotableBloodscent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bloodscent", statOrder = { 7689 }, level = 75, group = "AfflictionNotableBloodscent", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, tradeHashes = { [3967765261] = { "1 Added Passive Skill is Bloodscent" }, } }, + ["AfflictionNotableRunThrough"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Run Through", statOrder = { 7882 }, level = 68, group = "AfflictionNotableRunThrough", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1488030420] = { "1 Added Passive Skill is Run Through" }, } }, + ["AfflictionNotableWoundAggravation____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wound Aggravation", statOrder = { 7958 }, level = 1, group = "AfflictionNotableWoundAggravation", weightKey = { "affliction_axe_and_sword_damage", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 750, 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [69078820] = { "1 Added Passive Skill is Wound Aggravation" }, } }, + ["AfflictionNotableOverlord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overlord", statOrder = { 7841 }, level = 75, group = "AfflictionNotableOverlord", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2250169390] = { "1 Added Passive Skill is Overlord" }, } }, + ["AfflictionNotableExpansiveMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expansive Might", statOrder = { 7755 }, level = 68, group = "AfflictionNotableExpansiveMight", weightKey = { "affliction_mace_and_staff_damage", "affliction_area_damage", "default", }, weightVal = { 141, 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [394918362] = { "1 Added Passive Skill is Expansive Might" }, } }, + ["AfflictionNotableWeightAdvantage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Weight Advantage", statOrder = { 7948 }, level = 1, group = "AfflictionNotableWeightAdvantage", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, tradeHashes = { [2244243943] = { "1 Added Passive Skill is Weight Advantage" }, } }, + ["AfflictionNotableWindup_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wind-up", statOrder = { 7953 }, level = 68, group = "AfflictionNotableWindup", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "damage", "attack", "critical" }, tradeHashes = { [1938661964] = { "1 Added Passive Skill is Wind-up" }, } }, + ["AfflictionNotableFanofBlades_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan of Blades", statOrder = { 7762 }, level = 75, group = "AfflictionNotableFanofBlades", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 51, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2484082827] = { "1 Added Passive Skill is Fan of Blades" }, } }, + ["AfflictionNotableDiseaseVector"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disease Vector", statOrder = { 7734 }, level = 50, group = "AfflictionNotableDiseaseVector", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 404, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [183591019] = { "1 Added Passive Skill is Disease Vector" }, } }, + ["AfflictionNotableArcingShot__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcing Shot", statOrder = { 7677 }, level = 50, group = "AfflictionNotableArcingShot", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3212859169] = { "1 Added Passive Skill is Arcing Shot" }, } }, + ["AfflictionNotableTemperedArrowheads"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempered Arrowheads", statOrder = { 7923 }, level = 50, group = "AfflictionNotableTemperedArrowheads", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "ailment" }, tradeHashes = { [2631806437] = { "1 Added Passive Skill is Tempered Arrowheads" }, } }, + ["AfflictionNotableBroadside_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Broadside", statOrder = { 7695 }, level = 1, group = "AfflictionNotableBroadside", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 774, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, tradeHashes = { [2205982416] = { "1 Added Passive Skill is Broadside" }, } }, + ["AfflictionNotableExplosiveForce"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Explosive Force", statOrder = { 7758 }, level = 68, group = "AfflictionNotableExplosiveForce", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [2017927451] = { "1 Added Passive Skill is Explosive Force" }, } }, + ["AfflictionNotableOpportunisticFusilade_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Opportunistic Fusilade", statOrder = { 7840 }, level = 1, group = "AfflictionNotableOpportunisticFusilade", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 807, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4281625943] = { "1 Added Passive Skill is Opportunistic Fusilade" }, } }, + ["AfflictionNotableStormsHand"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm's Hand", statOrder = { 7912 }, level = 50, group = "AfflictionNotableStormsHand", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 403, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1122051203] = { "1 Added Passive Skill is Storm's Hand" }, } }, + ["AfflictionNotableBattlefieldDominator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battlefield Dominator", statOrder = { 7682 }, level = 1, group = "AfflictionNotableBattlefieldDominator", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [1499057234] = { "1 Added Passive Skill is Battlefield Dominator" }, } }, + ["AfflictionNotableMartialMastery"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Mastery", statOrder = { 7820 }, level = 50, group = "AfflictionNotableMartialMastery", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "attribute" }, tradeHashes = { [1015189426] = { "1 Added Passive Skill is Martial Mastery" }, } }, + ["AfflictionNotableSurefootedStriker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surefooted Striker", statOrder = { 7920 }, level = 50, group = "AfflictionNotableSurefootedStriker", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3410752193] = { "1 Added Passive Skill is Surefooted Striker" }, } }, + ["AfflictionNotableGracefulExecution_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Graceful Execution", statOrder = { 7784 }, level = 1, group = "AfflictionNotableGracefulExecution", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "critical", "attribute" }, tradeHashes = { [1903496649] = { "1 Added Passive Skill is Graceful Execution" }, } }, + ["AfflictionNotableBrutalInfamy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brutal Infamy", statOrder = { 7697 }, level = 50, group = "AfflictionNotableBrutalInfamy", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2068574831] = { "1 Added Passive Skill is Brutal Infamy" }, } }, + ["AfflictionNotableFearsomeWarrior"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fearsome Warrior", statOrder = { 7765 }, level = 68, group = "AfflictionNotableFearsomeWarrior", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [3134222965] = { "1 Added Passive Skill is Fearsome Warrior" }, } }, + ["AfflictionNotableCombatRhythm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Combat Rhythm", statOrder = { 7711 }, level = 50, group = "AfflictionNotableCombatRhythm", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed" }, tradeHashes = { [3122505794] = { "1 Added Passive Skill is Combat Rhythm" }, } }, + ["AfflictionNotableHitandRun"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hit and Run", statOrder = { 7798 }, level = 1, group = "AfflictionNotableHitandRun", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 623, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [2665170385] = { "1 Added Passive Skill is Hit and Run" }, } }, + ["AfflictionNotableInsatiableKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insatiable Killer", statOrder = { 7805 }, level = 50, group = "AfflictionNotableInsatiableKiller", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "frenzy_charge", "attack", "speed" }, tradeHashes = { [3904970959] = { "1 Added Passive Skill is Insatiable Killer" }, } }, + ["AfflictionNotableMageBane__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Bane", statOrder = { 7817 }, level = 68, group = "AfflictionNotableMageBane", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_block", "default", }, weightVal = { 117, 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "damage", "attack" }, tradeHashes = { [684155617] = { "1 Added Passive Skill is Mage Bane" }, } }, + ["AfflictionNotableMartialMomentum"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Momentum", statOrder = { 7821 }, level = 50, group = "AfflictionNotableMartialMomentum", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, tradeHashes = { [2978494217] = { "1 Added Passive Skill is Martial Momentum" }, } }, + ["AfflictionNotableDeadlyRepartee"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deadly Repartee", statOrder = { 7726 }, level = 1, group = "AfflictionNotableDeadlyRepartee", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 623, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack", "critical" }, tradeHashes = { [1013470938] = { "1 Added Passive Skill is Deadly Repartee" }, } }, + ["AfflictionNotableQuickandDeadly_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick and Deadly", statOrder = { 7867 }, level = 68, group = "AfflictionNotableQuickandDeadly", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 117, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, tradeHashes = { [2169345147] = { "1 Added Passive Skill is Quick and Deadly" }, } }, + ["AfflictionNotableSmitetheWeak"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Smite the Weak", statOrder = { 7900 }, level = 1, group = "AfflictionNotableSmitetheWeak", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [540300548] = { "1 Added Passive Skill is Smite the Weak" }, } }, + ["AfflictionNotableHeavyHitter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Heavy Hitter", statOrder = { 7793 }, level = 50, group = "AfflictionNotableHeavyHitter", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [3640252904] = { "1 Added Passive Skill is Heavy Hitter" }, } }, + ["AfflictionNotableMartialProwess"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Martial Prowess", statOrder = { 7822 }, level = 1, group = "AfflictionNotableMartialProwess", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, tradeHashes = { [1152182658] = { "1 Added Passive Skill is Martial Prowess" }, } }, + ["AfflictionNotableCalamitous"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Calamitous", statOrder = { 7700 }, level = 50, group = "AfflictionNotableCalamitous", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, tradeHashes = { [3359207393] = { "1 Added Passive Skill is Calamitous" }, } }, + ["AfflictionNotableDevastator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Devastator", statOrder = { 7731 }, level = 75, group = "AfflictionNotableDevastator", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 27, 47, 47, 51, 48, 50, 38, 39, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3711553948] = { "1 Added Passive Skill is Devastator" }, } }, + ["AfflictionNotableFueltheFight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fuel the Fight", statOrder = { 7779 }, level = 1, group = "AfflictionNotableFueltheFight", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack", "speed" }, tradeHashes = { [3599340381] = { "1 Added Passive Skill is Fuel the Fight" }, } }, + ["AfflictionNotableDrivetheDestruction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Drive the Destruction", statOrder = { 7743 }, level = 1, group = "AfflictionNotableDrivetheDestruction", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, tradeHashes = { [1911162866] = { "1 Added Passive Skill is Drive the Destruction" }, } }, + ["AfflictionNotableFeedtheFury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feed the Fury", statOrder = { 7768 }, level = 50, group = "AfflictionNotableFeedtheFury", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack", "speed" }, tradeHashes = { [3944525413] = { "1 Added Passive Skill is Feed the Fury" }, } }, + ["AfflictionNotableSealMender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seal Mender", statOrder = { 7889 }, level = 75, group = "AfflictionNotableSealMender", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 94, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [876846990] = { "1 Added Passive Skill is Seal Mender" }, } }, + ["AfflictionNotableConjuredWall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conjured Wall", statOrder = { 7714 }, level = 50, group = "AfflictionNotableConjuredWall", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "caster_damage", "damage", "caster" }, tradeHashes = { [4105031548] = { "1 Added Passive Skill is Conjured Wall" }, } }, + ["AfflictionNotableArcaneHeroism_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Heroism", statOrder = { 7675 }, level = 68, group = "AfflictionNotableArcaneHeroism", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [3901992019] = { "1 Added Passive Skill is Arcane Heroism" }, } }, + ["AfflictionNotablePracticedCaster"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Practiced Caster", statOrder = { 7850 }, level = 1, group = "AfflictionNotablePracticedCaster", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 1500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, tradeHashes = { [3435403756] = { "1 Added Passive Skill is Practiced Caster" }, } }, + ["AfflictionNotableBurdenProjection"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burden Projection", statOrder = { 7698 }, level = 50, group = "AfflictionNotableBurdenProjection", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, tradeHashes = { [2008682345] = { "1 Added Passive Skill is Burden Projection" }, } }, + ["AfflictionNotableThaumophage"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Thaumophage", statOrder = { 7924 }, level = 50, group = "AfflictionNotableThaumophage", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "caster" }, tradeHashes = { [177215332] = { "1 Added Passive Skill is Thaumophage" }, } }, + ["AfflictionNotableEssenceRush"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Essence Rush", statOrder = { 7752 }, level = 50, group = "AfflictionNotableEssenceRush", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "attack", "caster", "speed" }, tradeHashes = { [1096136223] = { "1 Added Passive Skill is Essence Rush" }, } }, + ["AfflictionNotableSapPsyche"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Sap Psyche", statOrder = { 7885 }, level = 68, group = "AfflictionNotableSapPsyche", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "resource", "mana", "defences", "energy_shield", "damage", "caster" }, tradeHashes = { [715786975] = { "1 Added Passive Skill is Sap Psyche" }, } }, + ["AfflictionNotableSadist_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sadist", statOrder = { 7883 }, level = 68, group = "AfflictionNotableSadist", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3638731729] = { "1 Added Passive Skill is Sadist" }, } }, + ["AfflictionNotableCorrosiveElements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Corrosive Elements", statOrder = { 7717 }, level = 75, group = "AfflictionNotableCorrosiveElements", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 94, 45, 32, 30, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1777139212] = { "1 Added Passive Skill is Corrosive Elements" }, } }, + ["AfflictionNotableDoryanisLesson_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Doryani's Lesson", statOrder = { 7740 }, level = 68, group = "AfflictionNotableDoryanisLesson", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental" }, tradeHashes = { [228455793] = { "1 Added Passive Skill is Doryani's Lesson" }, } }, + ["AfflictionNotableDisorientingDisplay____"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Disorienting Display", statOrder = { 7735 }, level = 50, group = "AfflictionNotableDisorientingDisplay", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 750, 364, 253, 238, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3206911230] = { "1 Added Passive Skill is Disorienting Display" }, } }, + ["AfflictionNotablePrismaticHeart__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Heart", statOrder = { 7858 }, level = 1, group = "AfflictionNotablePrismaticHeart", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 1500, 727, 505, 475, 1371, 1371, 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "resistance" }, tradeHashes = { [2342448236] = { "1 Added Passive Skill is Prismatic Heart" }, } }, + ["AfflictionNotableWidespreadDestruction"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Widespread Destruction", statOrder = { 7951 }, level = 1, group = "AfflictionNotableWidespreadDestruction", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 1500, 727, 505, 475, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1678643716] = { "1 Added Passive Skill is Widespread Destruction" }, } }, + ["AfflictionNotableMasterofFire"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fire", statOrder = { 7825 }, level = 75, group = "AfflictionNotableMasterofFire", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 30, 46, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [1462135249] = { "1 Added Passive Skill is Master of Fire" }, } }, + ["AfflictionNotableSmokingRemains"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Smoking Remains", statOrder = { 7901 }, level = 50, group = "AfflictionNotableSmokingRemains", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2322980282] = { "1 Added Passive Skill is Smoking Remains" }, } }, + ["AfflictionNotableCremator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cremator", statOrder = { 7718 }, level = 50, group = "AfflictionNotableCremator", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1153801980] = { "1 Added Passive Skill is Cremator" }, } }, + ["AfflictionNotableSnowstorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snowstorm", statOrder = { 7903 }, level = 50, group = "AfflictionNotableSnowstorm", weightKey = { "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 364, 253, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [1595367309] = { "1 Added Passive Skill is Snowstorm" }, } }, + ["AfflictionNotableStormDrinker___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm Drinker", statOrder = { 7910 }, level = 1, group = "AfflictionNotableStormDrinker", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 727, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "defences", "energy_shield", "damage", "elemental", "lightning" }, tradeHashes = { [2087561637] = { "1 Added Passive Skill is Storm Drinker" }, } }, + ["AfflictionNotableParalysis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Paralysis", statOrder = { 7844 }, level = 50, group = "AfflictionNotableParalysis", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4272503233] = { "1 Added Passive Skill is Paralysis" }, } }, + ["AfflictionNotableSupercharge"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Supercharge", statOrder = { 7919 }, level = 75, group = "AfflictionNotableSupercharge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3226074658] = { "1 Added Passive Skill is Supercharge" }, } }, + ["AfflictionNotableBlanketedSnow_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blanketed Snow", statOrder = { 7684 }, level = 68, group = "AfflictionNotableBlanketedSnow", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1085167979] = { "1 Added Passive Skill is Blanketed Snow" }, } }, + ["AfflictionNotableColdtotheCore"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold to the Core", statOrder = { 7710 }, level = 68, group = "AfflictionNotableColdtotheCore", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [744783843] = { "1 Added Passive Skill is Cold to the Core" }, } }, + ["AfflictionNotableColdBloodedKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold-Blooded Killer", statOrder = { 7708 }, level = 50, group = "AfflictionNotableColdBloodedKiller", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 253, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental", "cold" }, tradeHashes = { [836566759] = { "1 Added Passive Skill is Cold-Blooded Killer" }, } }, + ["AfflictionNotableTouchofCruelty_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Touch of Cruelty", statOrder = { 7927 }, level = 1, group = "AfflictionNotableTouchofCruelty", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2780712583] = { "1 Added Passive Skill is Touch of Cruelty" }, } }, + ["AfflictionNotableUnwaveringlyEvil"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwaveringly Evil", statOrder = { 7933 }, level = 1, group = "AfflictionNotableUnwaveringlyEvil", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 519, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2788982914] = { "1 Added Passive Skill is Unwaveringly Evil" }, } }, + ["AfflictionNotableUnspeakableGifts"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unspeakable Gifts", statOrder = { 7930 }, level = 75, group = "AfflictionNotableUnspeakableGifts", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 32, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [729163974] = { "1 Added Passive Skill is Unspeakable Gifts" }, } }, + ["AfflictionNotableDarkIdeation"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Ideation", statOrder = { 7723 }, level = 68, group = "AfflictionNotableDarkIdeation", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 97, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1603621602] = { "1 Added Passive Skill is Dark Ideation" }, } }, + ["AfflictionNotableUnholyGrace_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unholy Grace", statOrder = { 7929 }, level = 1, group = "AfflictionNotableUnholyGrace", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster", "speed" }, tradeHashes = { [4186213466] = { "1 Added Passive Skill is Unholy Grace" }, } }, + ["AfflictionNotableWickedPall_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wicked Pall", statOrder = { 7950 }, level = 50, group = "AfflictionNotableWickedPall", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 259, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1616734644] = { "1 Added Passive Skill is Wicked Pall" }, } }, + ["AfflictionNotableRenewal"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Renewal", statOrder = { 7875 }, level = 50, group = "AfflictionNotableRenewal", weightKey = { "affliction_minion_damage", "affliction_minion_life", "default", }, weightVal = { 500, 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, tradeHashes = { [3607300552] = { "1 Added Passive Skill is Renewal" }, } }, + ["AfflictionNotableRazeandPillage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Raze and Pillage", statOrder = { 7871 }, level = 68, group = "AfflictionNotableRazeandPillage", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "bleed", "damage", "physical", "elemental", "fire", "minion", "ailment" }, tradeHashes = { [1038897629] = { "1 Added Passive Skill is Raze and Pillage" }, } }, + ["AfflictionNotableRottenClaws"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rotten Claws", statOrder = { 7881 }, level = 50, group = "AfflictionNotableRottenClaws", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack", "minion" }, tradeHashes = { [2289610642] = { "1 Added Passive Skill is Rotten Claws" }, } }, + ["AfflictionNotableCalltotheSlaughter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Call to the Slaughter", statOrder = { 7701 }, level = 1, group = "AfflictionNotableCalltotheSlaughter", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed", "minion" }, tradeHashes = { [3317068522] = { "1 Added Passive Skill is Call to the Slaughter" }, } }, + ["AfflictionNotableSkeletalAtrophy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skeletal Atrophy", statOrder = { 7897 }, level = 68, group = "AfflictionNotableSkeletalAtrophy", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, tradeHashes = { [1290215329] = { "1 Added Passive Skill is Skeletal Atrophy" }, } }, + ["AfflictionNotableHulkingCorpses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hulking Corpses", statOrder = { 7803 }, level = 50, group = "AfflictionNotableHulkingCorpses", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3467711950] = { "1 Added Passive Skill is Hulking Corpses" }, } }, + ["AfflictionNotableViciousBite"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Vicious Bite", statOrder = { 7937 }, level = 75, group = "AfflictionNotableViciousBite", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [882876854] = { "1 Added Passive Skill is Vicious Bite" }, } }, + ["AfflictionNotablePrimordialBond"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Primordial Bond", statOrder = { 7855 }, level = 68, group = "AfflictionNotablePrimordialBond", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, tradeHashes = { [622362787] = { "1 Added Passive Skill is Primordial Bond" }, } }, + ["AfflictionNotableBlowback"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blowback", statOrder = { 7690 }, level = 50, group = "AfflictionNotableBlowback", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1612414696] = { "1 Added Passive Skill is Blowback" }, } }, + ["AfflictionNotableFantheFlames_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan the Flames", statOrder = { 7763 }, level = 68, group = "AfflictionNotableFantheFlames", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2918755450] = { "1 Added Passive Skill is Fan the Flames" }, } }, + ["AfflictionNotableCookedAlive"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cooked Alive", statOrder = { 7716 }, level = 68, group = "AfflictionNotableCookedAlive", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2938895712] = { "1 Added Passive Skill is Cooked Alive" }, } }, + ["AfflictionNotableBurningBright"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burning Bright", statOrder = { 7699 }, level = 50, group = "AfflictionNotableBurningBright", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_fire_damage", "default", }, weightVal = { 366, 238, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4199056048] = { "1 Added Passive Skill is Burning Bright" }, } }, + ["AfflictionNotableWrappedinFlame_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wrapped in Flame", statOrder = { 7959 }, level = 68, group = "AfflictionNotableWrappedinFlame", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [241783558] = { "1 Added Passive Skill is Wrapped in Flame" }, } }, + ["AfflictionNotableVividHues"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vivid Hues", statOrder = { 7943 }, level = 50, group = "AfflictionNotableVividHues", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "resource", "life", "physical", "attack", "ailment" }, tradeHashes = { [3957006524] = { "1 Added Passive Skill is Vivid Hues" }, } }, + ["AfflictionNotableRend"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rend", statOrder = { 7874 }, level = 50, group = "AfflictionNotableRend", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4263287206] = { "1 Added Passive Skill is Rend" }, } }, + ["AfflictionNotableDisorientingWounds"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disorienting Wounds", statOrder = { 7736 }, level = 1, group = "AfflictionNotableDisorientingWounds", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3351136461] = { "1 Added Passive Skill is Disorienting Wounds" }, } }, + ["AfflictionNotableCompoundInjury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Compound Injury", statOrder = { 7712 }, level = 50, group = "AfflictionNotableCompoundInjury", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4018305528] = { "1 Added Passive Skill is Compound Injury" }, } }, + ["AfflictionNotableBloodArtist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blood Artist", statOrder = { 7688 }, level = 75, group = "AfflictionNotableBloodArtist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [2284771334] = { "1 Added Passive Skill is Blood Artist" }, } }, + ["AfflictionNotablePhlebotomist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Phlebotomist", statOrder = { 7847 }, level = 50, group = "AfflictionNotablePhlebotomist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "critical", "ailment" }, tradeHashes = { [3057154383] = { "1 Added Passive Skill is Phlebotomist" }, } }, + ["AfflictionNotableSepticSpells"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Septic Spells", statOrder = { 7893 }, level = 50, group = "AfflictionNotableSepticSpells", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "speed", "ailment" }, tradeHashes = { [4290522695] = { "1 Added Passive Skill is Septic Spells" }, } }, + ["AfflictionNotableLowTolerance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Low Tolerance", statOrder = { 7816 }, level = 68, group = "AfflictionNotableLowTolerance", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [3989400244] = { "1 Added Passive Skill is Low Tolerance" }, } }, + ["AfflictionNotableSteadyTorment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Steady Torment", statOrder = { 7908 }, level = 68, group = "AfflictionNotableSteadyTorment", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 130, 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "damage", "physical", "chaos", "attack", "ailment", "ailment" }, tradeHashes = { [3500334379] = { "1 Added Passive Skill is Steady Torment" }, } }, + ["AfflictionNotableEternalSuffering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eternal Suffering", statOrder = { 7753 }, level = 50, group = "AfflictionNotableEternalSuffering", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2144634814] = { "1 Added Passive Skill is Eternal Suffering" }, } }, + ["AfflictionNotableEldritchInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eldritch Inspiration", statOrder = { 7744 }, level = 50, group = "AfflictionNotableEldritchInspiration", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_mana", "default", }, weightVal = { 348, 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos" }, tradeHashes = { [3737604164] = { "1 Added Passive Skill is Eldritch Inspiration" }, } }, + ["AfflictionNotableWastingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wasting Affliction", statOrder = { 7947 }, level = 68, group = "AfflictionNotableWastingAffliction", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 222, 178, 129, 137, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, tradeHashes = { [2066820199] = { "1 Added Passive Skill is Wasting Affliction" }, } }, + ["AfflictionNotableHaemorrhage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haemorrhage", statOrder = { 7790 }, level = 50, group = "AfflictionNotableHaemorrhage", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_critical_chance", "default", }, weightVal = { 593, 475, 343, 366, 348, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [72129119] = { "1 Added Passive Skill is Haemorrhage" }, } }, + ["AfflictionNotableFlowofLife_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flow of Life", statOrder = { 7775 }, level = 68, group = "AfflictionNotableFlowofLife", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, tradeHashes = { [2350430215] = { "1 Added Passive Skill is Flow of Life" }, } }, + ["AfflictionNotableExposureTherapy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exposure Therapy", statOrder = { 7759 }, level = 1, group = "AfflictionNotableExposureTherapy", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_chaos_resistance", "default", }, weightVal = { 1185, 950, 686, 733, 696, 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [131358113] = { "1 Added Passive Skill is Exposure Therapy" }, } }, + ["AfflictionNotableBrushwithDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brush with Death", statOrder = { 7696 }, level = 68, group = "AfflictionNotableBrushwithDeath", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield", "damage" }, tradeHashes = { [2900833792] = { "1 Added Passive Skill is Brush with Death" }, } }, + ["AfflictionNotableVileReinvigoration_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vile Reinvigoration", statOrder = { 7941 }, level = 50, group = "AfflictionNotableVileReinvigoration", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_energy_shield", "default", }, weightVal = { 593, 475, 343, 366, 348, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "damage" }, tradeHashes = { [647201233] = { "1 Added Passive Skill is Vile Reinvigoration" }, } }, + ["AfflictionNotableCirclingOblivion"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Circling Oblivion", statOrder = { 7706 }, level = 1, group = "AfflictionNotableCirclingOblivion", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1185, 950, 686, 733, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, tradeHashes = { [2129392647] = { "1 Added Passive Skill is Circling Oblivion" }, } }, + ["AfflictionNotableBrewedforPotency"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brewed for Potency", statOrder = { 7694 }, level = 1, group = "AfflictionNotableBrewedforPotency", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_flask_duration", "default", }, weightVal = { 1185, 950, 686, 733, 696, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana", "damage" }, tradeHashes = { [3250272113] = { "1 Added Passive Skill is Brewed for Potency" }, } }, + ["AfflictionNotableAstonishingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Astonishing Affliction", statOrder = { 7679 }, level = 1, group = "AfflictionNotableAstonishingAffliction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 1627, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, tradeHashes = { [2428334013] = { "1 Added Passive Skill is Astonishing Affliction" }, } }, + ["AfflictionNotableColdConduction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold Conduction", statOrder = { 7709 }, level = 68, group = "AfflictionNotableColdConduction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1274505521] = { "1 Added Passive Skill is Cold Conduction" }, } }, + ["AfflictionNotableInspiredOppression"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Inspired Oppression", statOrder = { 7806 }, level = 75, group = "AfflictionNotableInspiredOppression", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 102, 94, 45, 32, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "ailment" }, tradeHashes = { [3872380586] = { "1 Added Passive Skill is Inspired Oppression" }, } }, + ["AfflictionNotableChillingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chilling Presence", statOrder = { 7704 }, level = 75, group = "AfflictionNotableChillingPresence", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 102, 59, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2834490860] = { "1 Added Passive Skill is Chilling Presence" }, } }, + ["AfflictionNotableDeepChill"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Chill", statOrder = { 7727 }, level = 1, group = "AfflictionNotableDeepChill", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 1627, 505, 950, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [1703766309] = { "1 Added Passive Skill is Deep Chill" }, } }, + ["AfflictionNotableBlastFreeze_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blast-Freeze", statOrder = { 7685 }, level = 68, group = "AfflictionNotableBlastFreeze", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 95, 178, 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [693808153] = { "1 Added Passive Skill is Blast-Freeze" }, } }, + ["AfflictionNotableThunderstruck"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Thunderstruck", statOrder = { 7925 }, level = 50, group = "AfflictionNotableThunderstruck", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHashes = { [1741700339] = { "1 Added Passive Skill is Thunderstruck" }, } }, + ["AfflictionNotableStormrider"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stormrider", statOrder = { 7911 }, level = 68, group = "AfflictionNotableStormrider", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_lightning_damage", "default", }, weightVal = { 305, 95, 136, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [889728548] = { "1 Added Passive Skill is Stormrider" }, } }, + ["AfflictionNotableOvershock"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overshock", statOrder = { 7842 }, level = 50, group = "AfflictionNotableOvershock", weightKey = { "affliction_lightning_damage", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 364, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3777170562] = { "1 Added Passive Skill is Overshock" }, } }, + ["AfflictionNotableEvilEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7754 }, level = 1, group = "AfflictionNotableEvilEye", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [4291066912] = { "1 Added Passive Skill is Evil Eye" }, } }, + ["AfflictionNotableWhispersofDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7949 }, level = 1, group = "AfflictionNotableWhispersofDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [156080652] = { "1 Added Passive Skill is Evil Eye" }, } }, + ["AfflictionNotableWardbreaker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Forbidden Words", statOrder = { 7945 }, level = 68, group = "AfflictionNotableWardbreaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "caster", "curse" }, tradeHashes = { [2454339320] = { "1 Added Passive Skill is Forbidden Words" }, } }, + ["AfflictionNotableDarkDiscourse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Spite", statOrder = { 7722 }, level = 50, group = "AfflictionNotableDarkDiscourse", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [462115791] = { "1 Added Passive Skill is Doedre's Spite" }, } }, + ["AfflictionNotableVictimMaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Victim Maker", statOrder = { 7940 }, level = 50, group = "AfflictionNotableVictimMaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [1936135020] = { "1 Added Passive Skill is Victim Maker" }, } }, + ["AfflictionNotableMasterofFear"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fear", statOrder = { 7824 }, level = 68, group = "AfflictionNotableMasterofFear", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [2771217016] = { "1 Added Passive Skill is Master of Fear" }, } }, + ["AfflictionNotableWishforDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wish for Death", statOrder = { 7956 }, level = 50, group = "AfflictionNotableWishforDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [608164368] = { "1 Added Passive Skill is Wish for Death" }, } }, + ["AfflictionNotableLordofDrought_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lord of Drought", statOrder = { 7773 }, level = 50, group = "AfflictionNotableLordofDrought", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_fire_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [2055715585] = { "1 Added Passive Skill is Lord of Drought" }, } }, + ["AfflictionNotableBlizzardCaller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blizzard Caller", statOrder = { 7778 }, level = 50, group = "AfflictionNotableBlizzardCaller", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_cold_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "critical", "curse" }, tradeHashes = { [3758712376] = { "1 Added Passive Skill is Blizzard Caller" }, } }, + ["AfflictionNotableTempttheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempt the Storm", statOrder = { 7814 }, level = 50, group = "AfflictionNotableTempttheStorm", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_lightning_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, tradeHashes = { [348883745] = { "1 Added Passive Skill is Tempt the Storm" }, } }, + ["AfflictionNotableMiseryEverlasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Misery Everlasting", statOrder = { 7729 }, level = 50, group = "AfflictionNotableMiseryEverlasting", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_chaos_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [3832665876] = { "1 Added Passive Skill is Misery Everlasting" }, } }, + ["AfflictionNotableExploitWeakness_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exploit Weakness", statOrder = { 7794 }, level = 50, group = "AfflictionNotableExploitWeakness", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_physical_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster", "curse" }, tradeHashes = { [50129423] = { "1 Added Passive Skill is Exploit Weakness" }, } }, + ["AfflictionNotableHoundsMark"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hound's Mark", statOrder = { 7802 }, level = 1, group = "AfflictionNotableHoundsMark", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [555800967] = { "1 Added Passive Skill is Hound's Mark" }, } }, + ["AfflictionNotableDoedresGluttony"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Gluttony", statOrder = { 7739 }, level = 50, group = "AfflictionNotableDoedresGluttony", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, tradeHashes = { [2695848124] = { "1 Added Passive Skill is Doedre's Gluttony" }, } }, + ["AfflictionNotableDoedresApathy____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Apathy", statOrder = { 7738 }, level = 68, group = "AfflictionNotableDoedresApathy", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 132, 132, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, tradeHashes = { [1381945089] = { "1 Added Passive Skill is Doedre's Apathy" }, } }, + ["AfflictionNotableMasterOfTheMaelstrom_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of the Maelstrom", statOrder = { 7826 }, level = 50, group = "AfflictionNotableMasterOfTheMaelstrom", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "caster", "ailment", "curse" }, tradeHashes = { [185592058] = { "1 Added Passive Skill is Master of the Maelstrom" }, } }, + ["AfflictionNotableHeraldry"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heraldry", statOrder = { 7795 }, level = 75, group = "AfflictionNotableHeraldry", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [3274270612] = { "1 Added Passive Skill is Heraldry" }, } }, + ["AfflictionNotableEndbringer"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Endbringer", statOrder = { 7747 }, level = 68, group = "AfflictionNotableEndbringer", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2150878631] = { "1 Added Passive Skill is Endbringer" }, } }, + ["AfflictionNotableCultLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cult-Leader", statOrder = { 7720 }, level = 1, group = "AfflictionNotableCultLeader", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 2526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, tradeHashes = { [2026112251] = { "1 Added Passive Skill is Cult-Leader" }, } }, + ["AfflictionNotableEmpoweredEnvoy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Empowered Envoy", statOrder = { 7746 }, level = 1, group = "AfflictionNotableEmpoweredEnvoy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2032453153] = { "1 Added Passive Skill is Empowered Envoy" }, } }, + ["AfflictionNotableDarkMessenger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Messenger", statOrder = { 7724 }, level = 50, group = "AfflictionNotableDarkMessenger", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 941, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3784610129] = { "1 Added Passive Skill is Dark Messenger" }, } }, + ["AfflictionNotableAgentofDestruction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Agent of Destruction", statOrder = { 7663 }, level = 1, group = "AfflictionNotableAgentofDestruction", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3122491961] = { "1 Added Passive Skill is Agent of Destruction" }, } }, + ["AfflictionNotableLastingImpression_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lasting Impression", statOrder = { 7811 }, level = 68, group = "AfflictionNotableLastingImpression", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [426715778] = { "1 Added Passive Skill is Lasting Impression" }, } }, + ["AfflictionNotableSelfFulfillingProphecy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Fulfilling Prophecy", statOrder = { 7892 }, level = 68, group = "AfflictionNotableSelfFulfillingProphecy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, tradeHashes = { [2644533453] = { "1 Added Passive Skill is Self-Fulfilling Prophecy" }, } }, + ["AfflictionNotableInvigoratingPortents"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Invigorating Portents", statOrder = { 7809 }, level = 50, group = "AfflictionNotableInvigoratingPortents", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 1263, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, tradeHashes = { [2262034536] = { "1 Added Passive Skill is Invigorating Portents" }, } }, + ["AfflictionNotablePureAgony_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Agony", statOrder = { 7861 }, level = 68, group = "AfflictionNotablePureAgony", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, tradeHashes = { [1507409483] = { "1 Added Passive Skill is Pure Agony" }, } }, + ["AfflictionNotableDisciples_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disciples", statOrder = { 7732 }, level = 68, group = "AfflictionNotableDisciples", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, tradeHashes = { [3177526694] = { "1 Added Passive Skill is Disciples" }, } }, + ["AfflictionNotableDreadMarch_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dread March", statOrder = { 7742 }, level = 1, group = "AfflictionNotableDreadMarch", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1433, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance", "speed", "minion" }, tradeHashes = { [3087667389] = { "1 Added Passive Skill is Dread March" }, } }, + ["AfflictionNotableBlessedRebirth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed Rebirth", statOrder = { 7687 }, level = 68, group = "AfflictionNotableBlessedRebirth", weightKey = { "affliction_minion_life", "default", }, weightVal = { 269, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1424794574] = { "1 Added Passive Skill is Blessed Rebirth" }, } }, + ["AfflictionNotableLifefromDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Life from Death", statOrder = { 7813 }, level = 50, group = "AfflictionNotableLifefromDeath", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2337273077] = { "1 Added Passive Skill is Life from Death" }, } }, + ["AfflictionNotableFeastingFiends"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feasting Fiends", statOrder = { 7767 }, level = 1, group = "AfflictionNotableFeastingFiends", weightKey = { "affliction_minion_life", "affliction_minion_damage", "default", }, weightVal = { 1433, 1000, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, tradeHashes = { [383245807] = { "1 Added Passive Skill is Feasting Fiends" }, } }, + ["AfflictionNotableBodyguards"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bodyguards", statOrder = { 7691 }, level = 50, group = "AfflictionNotableBodyguards", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [791125124] = { "1 Added Passive Skill is Bodyguards" }, } }, + ["AfflictionNotableFollowThrough_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Follow-Through", statOrder = { 7776 }, level = 68, group = "AfflictionNotableFollowThrough", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3984980429] = { "1 Added Passive Skill is Follow-Through" }, } }, + ["AfflictionNotableStreamlined"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Streamlined", statOrder = { 7913 }, level = 1, group = "AfflictionNotableStreamlined", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, tradeHashes = { [1397498432] = { "1 Added Passive Skill is Streamlined" }, } }, + ["AfflictionNotableShriekingBolts_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shrieking Bolts", statOrder = { 7896 }, level = 50, group = "AfflictionNotableShriekingBolts", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2783012144] = { "1 Added Passive Skill is Shrieking Bolts" }, } }, + ["AfflictionNotableEyetoEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye to Eye", statOrder = { 7761 }, level = 50, group = "AfflictionNotableEyetoEye", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [392942015] = { "1 Added Passive Skill is Eye to Eye" }, } }, + ["AfflictionNotableRepeater"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Repeater", statOrder = { 7876 }, level = 1, group = "AfflictionNotableRepeater", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, tradeHashes = { [2233272527] = { "1 Added Passive Skill is Repeater" }, } }, + ["AfflictionNotableAerodynamics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerodynamics", statOrder = { 7662 }, level = 68, group = "AfflictionNotableAerodynamics", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, tradeHashes = { [4120556534] = { "1 Added Passive Skill is Aerodynamics" }, } }, + ["AfflictionNotableChipAway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chip Away", statOrder = { 7705 }, level = 50, group = "AfflictionNotableChipAway", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, tradeHashes = { [968069586] = { "1 Added Passive Skill is Chip Away" }, } }, + ["AfflictionNotableSeekerRunes"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seeker Runes", statOrder = { 7891 }, level = 68, group = "AfflictionNotableSeekerRunes", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2261237498] = { "1 Added Passive Skill is Seeker Runes" }, } }, + ["AfflictionNotableRemarkable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Remarkable", statOrder = { 7873 }, level = 68, group = "AfflictionNotableRemarkable", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, tradeHashes = { [691431951] = { "1 Added Passive Skill is Remarkable" }, } }, + ["AfflictionNotableBrandLoyalty"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brand Loyalty", statOrder = { 7693 }, level = 1, group = "AfflictionNotableBrandLoyalty", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3198006994] = { "1 Added Passive Skill is Brand Loyalty" }, } }, + ["AfflictionNotableHolyConquest"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Conquest", statOrder = { 7800 }, level = 50, group = "AfflictionNotableHolyConquest", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, tradeHashes = { [3898572660] = { "1 Added Passive Skill is Holy Conquest" }, } }, + ["AfflictionNotableGrandDesign_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Grand Design", statOrder = { 7786 }, level = 68, group = "AfflictionNotableGrandDesign", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, tradeHashes = { [2350900742] = { "1 Added Passive Skill is Grand Design" }, } }, + ["AfflictionNotableSetandForget_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Set and Forget", statOrder = { 7894 }, level = 50, group = "AfflictionNotableSetandForget", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [1101250813] = { "1 Added Passive Skill is Set and Forget" }, } }, + ["AfflictionNotableExpertSabotage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expert Sabotage", statOrder = { 7757 }, level = 50, group = "AfflictionNotableExpertSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, tradeHashes = { [2084371547] = { "1 Added Passive Skill is Expert Sabotage" }, } }, + ["AfflictionNotableGuerillaTactics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Guerilla Tactics", statOrder = { 7789 }, level = 1, group = "AfflictionNotableGuerillaTactics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, tradeHashes = { [1882129725] = { "1 Added Passive Skill is Guerilla Tactics" }, } }, + ["AfflictionNotableExpendability"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expendability", statOrder = { 7756 }, level = 68, group = "AfflictionNotableExpendability", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [2020075345] = { "1 Added Passive Skill is Expendability" }, } }, + ["AfflictionNotableArcanePyrotechnics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Pyrotechnics", statOrder = { 7676 }, level = 68, group = "AfflictionNotableArcanePyrotechnics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [2043503530] = { "1 Added Passive Skill is Arcane Pyrotechnics" }, } }, + ["AfflictionNotableSurpriseSabotage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surprise Sabotage", statOrder = { 7922 }, level = 50, group = "AfflictionNotableSurpriseSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3051562738] = { "1 Added Passive Skill is Surprise Sabotage" }, } }, + ["AfflictionNotableCarefulHandling"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Careful Handling", statOrder = { 7703 }, level = 68, group = "AfflictionNotableCarefulHandling", weightKey = { "affliction_trap_and_mine_damage", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 367, 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "damage" }, tradeHashes = { [456502758] = { "1 Added Passive Skill is Careful Handling" }, } }, + ["AfflictionNotablePeakVigour"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peak Vigour", statOrder = { 7846 }, level = 1, group = "AfflictionNotablePeakVigour", weightKey = { "affliction_maximum_life", "affliction_flask_duration", "default", }, weightVal = { 780, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1722821275] = { "1 Added Passive Skill is Peak Vigour" }, } }, + ["AfflictionNotableFettle"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fettle", statOrder = { 7769 }, level = 75, group = "AfflictionNotableFettle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, tradeHashes = { [1353571444] = { "1 Added Passive Skill is Fettle" }, } }, + ["AfflictionNotableFeastofFlesh"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feast of Flesh", statOrder = { 7766 }, level = 68, group = "AfflictionNotableFeastofFlesh", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2396755365] = { "1 Added Passive Skill is Feast of Flesh" }, } }, + ["AfflictionNotableSublimeSensation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Sensation", statOrder = { 7917 }, level = 50, group = "AfflictionNotableSublimeSensation", weightKey = { "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 390, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1364858171] = { "1 Added Passive Skill is Sublime Sensation" }, } }, + ["AfflictionNotableSurgingVitality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surging Vitality", statOrder = { 7921 }, level = 1, group = "AfflictionNotableSurgingVitality", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, tradeHashes = { [2410501331] = { "1 Added Passive Skill is Surging Vitality" }, } }, + ["AfflictionNotablePeaceAmidstChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peace Amidst Chaos", statOrder = { 7845 }, level = 50, group = "AfflictionNotablePeaceAmidstChaos", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [1734275536] = { "1 Added Passive Skill is Peace Amidst Chaos" }, } }, + ["AfflictionNotableAdrenaline_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Adrenaline", statOrder = { 7659 }, level = 68, group = "AfflictionNotableAdrenaline", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, tradeHashes = { [4022743870] = { "1 Added Passive Skill is Adrenaline" }, } }, + ["AfflictionNotableWallofMuscle_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wall of Muscle", statOrder = { 7944 }, level = 75, group = "AfflictionNotableWallofMuscle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attribute" }, tradeHashes = { [1363668533] = { "1 Added Passive Skill is Wall of Muscle" }, } }, + ["AfflictionNotableMindfulness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mindfulness", statOrder = { 7830 }, level = 50, group = "AfflictionNotableMindfulness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [2595115995] = { "1 Added Passive Skill is Mindfulness" }, } }, + ["AfflictionNotableLiquidInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Liquid Inspiration", statOrder = { 7815 }, level = 68, group = "AfflictionNotableLiquidInspiration", weightKey = { "affliction_maximum_mana", "affliction_flask_duration", "default", }, weightVal = { 175, 202, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "power_charge", "resource", "mana" }, tradeHashes = { [1094635162] = { "1 Added Passive Skill is Liquid Inspiration" }, } }, + ["AfflictionNotableOpenness__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Openness", statOrder = { 7839 }, level = 1, group = "AfflictionNotableOpenness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [633943719] = { "1 Added Passive Skill is Openness" }, } }, + ["AfflictionNotableDaringIdeas"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Daring Ideas", statOrder = { 7721 }, level = 50, group = "AfflictionNotableDaringIdeas", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2534405517] = { "1 Added Passive Skill is Daring Ideas" }, } }, + ["AfflictionNotableClarityofPurpose"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Clarity of Purpose", statOrder = { 7707 }, level = 1, group = "AfflictionNotableClarityofPurpose", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [684087686] = { "1 Added Passive Skill is Clarity of Purpose" }, } }, + ["AfflictionNotableScintillatingIdea_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Scintillating Idea", statOrder = { 7888 }, level = 50, group = "AfflictionNotableScintillatingIdea", weightKey = { "affliction_maximum_mana", "affliction_lightning_damage", "default", }, weightVal = { 466, 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, tradeHashes = { [2589589781] = { "1 Added Passive Skill is Scintillating Idea" }, } }, + ["AfflictionNotableHolisticHealth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holistic Health", statOrder = { 7799 }, level = 68, group = "AfflictionNotableHolisticHealth", weightKey = { "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana" }, tradeHashes = { [3667965781] = { "1 Added Passive Skill is Holistic Health" }, } }, + ["AfflictionNotableGenius"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Genius", statOrder = { 7781 }, level = 75, group = "AfflictionNotableGenius", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, tradeHashes = { [2763732093] = { "1 Added Passive Skill is Genius" }, } }, + ["AfflictionNotableImprovisor"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Improvisor", statOrder = { 7804 }, level = 68, group = "AfflictionNotableImprovisor", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [810219447] = { "1 Added Passive Skill is Improvisor" }, } }, + ["AfflictionNotableStubbornStudent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stubborn Student", statOrder = { 7915 }, level = 68, group = "AfflictionNotableStubbornStudent", weightKey = { "affliction_maximum_mana", "affliction_armour", "default", }, weightVal = { 175, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "armour" }, tradeHashes = { [2383914651] = { "1 Added Passive Skill is Stubborn Student" }, } }, + ["AfflictionNotableSavourtheMoment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savour the Moment", statOrder = { 7887 }, level = 1, group = "AfflictionNotableSavourtheMoment", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3539175001] = { "1 Added Passive Skill is Savour the Moment" }, } }, + ["AfflictionNotableEnergyFromNaught"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Energy From Naught", statOrder = { 7751 }, level = 50, group = "AfflictionNotableEnergyFromNaught", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2195518432] = { "1 Added Passive Skill is Energy From Naught" }, } }, + ["AfflictionNotableWillShaper"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Will Shaper", statOrder = { 7952 }, level = 75, group = "AfflictionNotableWillShaper", weightKey = { "affliction_maximum_energy_shield", "affliction_maximum_mana", "default", }, weightVal = { 63, 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1162352537] = { "1 Added Passive Skill is Will Shaper" }, } }, + ["AfflictionNotableSpringBack_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spring Back", statOrder = { 7906 }, level = 1, group = "AfflictionNotableSpringBack", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3603695769] = { "1 Added Passive Skill is Spring Back" }, } }, + ["AfflictionNotableConservationofEnergy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conservation of Energy", statOrder = { 7715 }, level = 68, group = "AfflictionNotableConservationofEnergy", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "caster" }, tradeHashes = { [2083777017] = { "1 Added Passive Skill is Conservation of Energy" }, } }, + ["AfflictionNotableSelfControl"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Control", statOrder = { 7733 }, level = 50, group = "AfflictionNotableSelfControl", weightKey = { "affliction_maximum_energy_shield", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 505, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [3025453294] = { "1 Added Passive Skill is Self-Control" }, } }, + ["AfflictionNotableHeartofIron"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heart of Iron", statOrder = { 7792 }, level = 68, group = "AfflictionNotableHeartofIron", weightKey = { "affliction_maximum_life", "affliction_armour", "default", }, weightVal = { 146, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, tradeHashes = { [1483358825] = { "1 Added Passive Skill is Heart of Iron" }, } }, + ["AfflictionNotablePrismaticCarapace_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Carapace", statOrder = { 7856 }, level = 75, group = "AfflictionNotablePrismaticCarapace", weightKey = { "affliction_armour", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 87, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "resistance" }, tradeHashes = { [3492924480] = { "1 Added Passive Skill is Prismatic Carapace" }, } }, + ["AfflictionNotableMilitarism"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Militarism", statOrder = { 7829 }, level = 50, group = "AfflictionNotableMilitarism", weightKey = { "affliction_armour", "default", }, weightVal = { 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [4154709486] = { "1 Added Passive Skill is Militarism" }, } }, + ["AfflictionNotableSecondSkin"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Second Skin", statOrder = { 7890 }, level = 1, group = "AfflictionNotableSecondSkin", weightKey = { "affliction_armour", "affliction_chance_to_block", "default", }, weightVal = { 1391, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "armour" }, tradeHashes = { [2773515950] = { "1 Added Passive Skill is Second Skin" }, } }, + ["AfflictionNotableDragonHunter__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dragon Hunter", statOrder = { 7741 }, level = 50, group = "AfflictionNotableDragonHunter", weightKey = { "affliction_armour", "affliction_fire_resistance", "default", }, weightVal = { 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "fire", "resistance" }, tradeHashes = { [1038955006] = { "1 Added Passive Skill is Dragon Hunter" }, } }, + ["AfflictionNotableEnduringComposure"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Composure", statOrder = { 7748 }, level = 68, group = "AfflictionNotableEnduringComposure", weightKey = { "affliction_armour", "default", }, weightVal = { 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "defences", "armour" }, tradeHashes = { [2043284086] = { "1 Added Passive Skill is Enduring Composure" }, } }, + ["AfflictionNotableUncompromising_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Uncompromising", statOrder = { 7730 }, level = 50, group = "AfflictionNotableUncompromising", weightKey = { "affliction_armour", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 696, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, tradeHashes = { [382360671] = { "1 Added Passive Skill is Uncompromising" }, } }, + ["AfflictionNotablePrismaticDance____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Dance", statOrder = { 7857 }, level = 75, group = "AfflictionNotablePrismaticDance", weightKey = { "affliction_evasion", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 82, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "elemental", "resistance" }, tradeHashes = { [1149662934] = { "1 Added Passive Skill is Prismatic Dance" }, } }, + ["AfflictionNotableNaturalVigour_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Natural Vigour", statOrder = { 7834 }, level = 50, group = "AfflictionNotableNaturalVigour", weightKey = { "affliction_evasion", "affliction_maximum_life", "default", }, weightVal = { 658, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [510654792] = { "1 Added Passive Skill is Natural Vigour" }, } }, + ["AfflictionNotableUntouchable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Untouchable", statOrder = { 7931 }, level = 1, group = "AfflictionNotableUntouchable", weightKey = { "affliction_evasion", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1315, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion" }, tradeHashes = { [2758966888] = { "1 Added Passive Skill is Untouchable" }, } }, + ["AfflictionNotableShiftingShadow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shifting Shadow", statOrder = { 7895 }, level = 50, group = "AfflictionNotableShiftingShadow", weightKey = { "affliction_evasion", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "attribute" }, tradeHashes = { [1476913894] = { "1 Added Passive Skill is Shifting Shadow" }, } }, + ["AfflictionNotableReadiness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Readiness", statOrder = { 7872 }, level = 1, group = "AfflictionNotableReadiness", weightKey = { "affliction_evasion", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "defences", "evasion", "physical", "attack", "ailment" }, tradeHashes = { [845306697] = { "1 Added Passive Skill is Readiness" }, } }, + ["AfflictionNotableSublimeForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Form", statOrder = { 7785 }, level = 50, group = "AfflictionNotableSublimeForm", weightKey = { "affliction_evasion", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 658, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "resistance" }, tradeHashes = { [2251304016] = { "1 Added Passive Skill is Sublime Form" }, } }, + ["AfflictionNotableConfidentCombatant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Confident Combatant", statOrder = { 7713 }, level = 68, group = "AfflictionNotableConfidentCombatant", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, tradeHashes = { [3930242735] = { "1 Added Passive Skill is Confident Combatant" }, } }, + ["AfflictionNotableFlexibleSentry___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flexible Sentry", statOrder = { 7774 }, level = 50, group = "AfflictionNotableFlexibleSentry", weightKey = { "affliction_chance_to_block", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 375, 686, 686, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "ailment" }, tradeHashes = { [982290947] = { "1 Added Passive Skill is Flexible Sentry" }, } }, + ["AfflictionNotableViciousGuard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Guard", statOrder = { 7938 }, level = 1, group = "AfflictionNotableViciousGuard", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 750, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "attack" }, tradeHashes = { [4054656914] = { "1 Added Passive Skill is Vicious Guard" }, } }, + ["AfflictionNotableMysticalWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mystical Ward", statOrder = { 7833 }, level = 1, group = "AfflictionNotableMysticalWard", weightKey = { "affliction_chance_to_block", "affliction_maximum_energy_shield", "default", }, weightVal = { 750, 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [2314111938] = { "1 Added Passive Skill is Mystical Ward" }, } }, + ["AfflictionNotableRoteReinforcement"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rote Reinforcement", statOrder = { 7880 }, level = 68, group = "AfflictionNotableRoteReinforcement", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 141, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge", "resource", "life" }, tradeHashes = { [2478282326] = { "1 Added Passive Skill is Rote Reinforcement" }, } }, + ["AfflictionNotableMageHunter___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Hunter", statOrder = { 7818 }, level = 68, group = "AfflictionNotableMageHunter", weightKey = { "affliction_chance_to_block", "affliction_spell_damage", "default", }, weightVal = { 141, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "caster_damage", "damage", "caster" }, tradeHashes = { [2118664144] = { "1 Added Passive Skill is Mage Hunter" }, } }, + ["AfflictionNotableRiotQueller"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Riot Queller", statOrder = { 7878 }, level = 75, group = "AfflictionNotableRiotQueller", weightKey = { "affliction_chance_to_block", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 47, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block" }, tradeHashes = { [254194892] = { "1 Added Passive Skill is Riot Queller" }, } }, + ["AfflictionNotableOnewiththeShield_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is One with the Shield", statOrder = { 7838 }, level = 50, group = "AfflictionNotableOnewiththeShield", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 375, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "defences" }, tradeHashes = { [1976069869] = { "1 Added Passive Skill is One with the Shield" }, } }, + ["AfflictionNotableAerialist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerialist", statOrder = { 7661 }, level = 75, group = "AfflictionNotableAerialist", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 92, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, tradeHashes = { [3848677307] = { "1 Added Passive Skill is Aerialist" }, } }, + ["AfflictionNotableElegantForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Elegant Form", statOrder = { 7745 }, level = 1, group = "AfflictionNotableElegantForm", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "ailment" }, tradeHashes = { [289714529] = { "1 Added Passive Skill is Elegant Form" }, } }, + ["AfflictionNotableDartingMovements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Darting Movements", statOrder = { 7725 }, level = 1, group = "AfflictionNotableDartingMovements", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, tradeHashes = { [846491278] = { "1 Added Passive Skill is Darting Movements" }, } }, + ["AfflictionNotableNoWitnesses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is No Witnesses", statOrder = { 7835 }, level = 75, group = "AfflictionNotableNoWitnesses", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, tradeHashes = { [1722480396] = { "1 Added Passive Skill is No Witnesses" }, } }, + ["AfflictionNotableMoltenOnesMark_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Molten One's Mark", statOrder = { 7832 }, level = 68, group = "AfflictionNotableMoltenOnesMark", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 247, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3875792669] = { "1 Added Passive Skill is Molten One's Mark" }, } }, + ["AfflictionNotableFireAttunement_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fire Attunement", statOrder = { 7771 }, level = 1, group = "AfflictionNotableFireAttunement", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3188756614] = { "1 Added Passive Skill is Fire Attunement" }, } }, + ["AfflictionNotablePureMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Might", statOrder = { 7865 }, level = 68, group = "AfflictionNotablePureMight", weightKey = { "affliction_fire_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 247, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, tradeHashes = { [2372915005] = { "1 Added Passive Skill is Pure Might" }, } }, + ["AfflictionNotableBlacksmith_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blacksmith", statOrder = { 7683 }, level = 68, group = "AfflictionNotableBlacksmith", weightKey = { "affliction_fire_resistance", "affliction_armour", "default", }, weightVal = { 247, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour", "elemental", "fire", "resistance" }, tradeHashes = { [1127706436] = { "1 Added Passive Skill is Blacksmith" }, } }, + ["AfflictionNotableNonFlammable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Non-Flammable", statOrder = { 7836 }, level = 50, group = "AfflictionNotableNonFlammable", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "resistance", "ailment" }, tradeHashes = { [731840035] = { "1 Added Passive Skill is Non-Flammable" }, } }, + ["AfflictionNotableWinterProwler"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Winter Prowler", statOrder = { 7955 }, level = 68, group = "AfflictionNotableWinterProwler", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 257, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "speed" }, tradeHashes = { [755881431] = { "1 Added Passive Skill is Winter Prowler" }, } }, + ["AfflictionNotableHibernator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hibernator", statOrder = { 7797 }, level = 50, group = "AfflictionNotableHibernator", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2294919888] = { "1 Added Passive Skill is Hibernator" }, } }, + ["AfflictionNotablePureGuile"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Guile", statOrder = { 7864 }, level = 68, group = "AfflictionNotablePureGuile", weightKey = { "affliction_cold_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, tradeHashes = { [1621496909] = { "1 Added Passive Skill is Pure Guile" }, } }, + ["AfflictionNotableAlchemist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Alchemist", statOrder = { 7665 }, level = 1, group = "AfflictionNotableAlchemist", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1371, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "elemental", "cold", "resistance", "attack", "caster", "speed" }, tradeHashes = { [2912949210] = { "1 Added Passive Skill is Alchemist" }, } }, + ["AfflictionNotableAntifreeze"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antifreeze", statOrder = { 7672 }, level = 50, group = "AfflictionNotableAntifreeze", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "ailment" }, tradeHashes = { [2622946553] = { "1 Added Passive Skill is Antifreeze" }, } }, + ["AfflictionNotableWizardry_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wizardry", statOrder = { 7957 }, level = 68, group = "AfflictionNotableWizardry", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "default", }, weightVal = { 257, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, tradeHashes = { [3078065247] = { "1 Added Passive Skill is Wizardry" }, } }, + ["AfflictionNotableCapacitor____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Capacitor", statOrder = { 7702 }, level = 50, group = "AfflictionNotableCapacitor", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4025536654] = { "1 Added Passive Skill is Capacitor" }, } }, + ["AfflictionNotablePureAptitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Aptitude", statOrder = { 7862 }, level = 68, group = "AfflictionNotablePureAptitude", weightKey = { "affliction_lightning_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "energy_shield", "attribute" }, tradeHashes = { [3509724289] = { "1 Added Passive Skill is Pure Aptitude" }, } }, + ["AfflictionNotableSage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sage", statOrder = { 7884 }, level = 1, group = "AfflictionNotableSage", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 1371, 932, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "elemental", "lightning", "resistance" }, tradeHashes = { [478147593] = { "1 Added Passive Skill is Sage" }, } }, + ["AfflictionNotableInsulated"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insulated", statOrder = { 7807 }, level = 50, group = "AfflictionNotableInsulated", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "resistance", "ailment" }, tradeHashes = { [212648555] = { "1 Added Passive Skill is Insulated" }, } }, + ["AfflictionNotableBornofChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Born of Chaos", statOrder = { 7692 }, level = 68, group = "AfflictionNotableBornofChaos", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos", "resistance" }, tradeHashes = { [2449392400] = { "1 Added Passive Skill is Born of Chaos" }, } }, + ["AfflictionNotableAntivenom"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antivenom", statOrder = { 7673 }, level = 50, group = "AfflictionNotableAntivenom", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [774369953] = { "1 Added Passive Skill is Antivenom" }, } }, + ["AfflictionNotableRotResistant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rot-Resistant", statOrder = { 7879 }, level = 68, group = "AfflictionNotableRotResistant", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "defences", "energy_shield", "chaos", "resistance" }, tradeHashes = { [713945233] = { "1 Added Passive Skill is Rot-Resistant" }, } }, + ["AfflictionNotableBlessed"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed", statOrder = { 7686 }, level = 68, group = "AfflictionNotableBlessed", weightKey = { "affliction_chaos_resistance", "affliction_maximum_life", "affliction_maximum_mana", "default", }, weightVal = { 439, 146, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "chaos", "resistance" }, tradeHashes = { [775689239] = { "1 Added Passive Skill is Blessed" }, } }, + ["AfflictionNotableStudentofDecay"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Student of Decay", statOrder = { 7916 }, level = 50, group = "AfflictionNotableStudentofDecay", weightKey = { "affliction_chaos_resistance", "affliction_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1171, 593, 343, 366, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [3202667190] = { "1 Added Passive Skill is Student of Decay" }, } }, + ["AfflictionNotableAggressiveDefence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aggressive Defence", statOrder = { 7664 }, level = 1, group = "AfflictionNotableAggressiveDefence", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 750, 750, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, tradeHashes = { [4154008618] = { "1 Added Passive Skill is Aggressive Defence" }, } }, + ["AfflictionNotableHolyWord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Word", statOrder = { 7801 }, level = 50, group = "AfflictionNotableHolyWord", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire" }, tradeHashes = { [3697635701] = { "1 Added Passive Skill is Holy Word" }, } }, + ["AfflictionNotableFieryAegis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fiery Aegis", statOrder = { 7770 }, level = 50, group = "AfflictionNotableFieryAegis", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire" }, tradeHashes = { [3233538204] = { "1 Added Passive Skill is Fiery Aegis" }, } }, + ["AfflictionJewelSmallPassivesGrantLife_"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7647 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(2-3) to Maximum Life" }, } }, + ["AfflictionJewelSmallPassivesGrantLife2_"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7647 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(4-7) to Maximum Life" }, } }, + ["AfflictionJewelSmallPassivesGrantLife3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7647 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(8-10) to Maximum Life" }, } }, + ["AfflictionJewelSmallPassivesGrantMana"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7648 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(2-5) to Maximum Mana" }, } }, + ["AfflictionJewelSmallPassivesGrantMana2"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7648 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(6-8) to Maximum Mana" }, } }, + ["AfflictionJewelSmallPassivesGrantMana3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7648 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(9-10) to Maximum Mana" }, } }, + ["AfflictionJewelSmallPassivesGrantES"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7646 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield" }, } }, + ["AfflictionJewelSmallPassivesGrantES2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7646 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield" }, } }, + ["AfflictionJewelSmallPassivesGrantES3"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7646 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield" }, } }, + ["AfflictionJewelSmallPassivesGrantArmour"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7617 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(11-20) to Armour" }, } }, + ["AfflictionJewelSmallPassivesGrantArmour2"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7617 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(21-30) to Armour" }, } }, + ["AfflictionJewelSmallPassivesGrantArmour3_"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7617 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(31-40) to Armour" }, } }, + ["AfflictionJewelSmallPassivesGrantEvasion"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7641 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(11-20) to Evasion" }, } }, + ["AfflictionJewelSmallPassivesGrantEvasion2__"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7641 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(21-30) to Evasion" }, } }, + ["AfflictionJewelSmallPassivesGrantEvasion3"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7641 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(31-40) to Evasion" }, } }, + ["AfflictionJewelSmallPassivesGrantStr"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7654 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(2-3) to Strength" }, } }, + ["AfflictionJewelSmallPassivesGrantStr2_"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7654 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(4-5) to Strength" }, } }, + ["AfflictionJewelSmallPassivesGrantStr3_"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7654 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(6-8) to Strength" }, } }, + ["AfflictionJewelSmallPassivesGrantDex_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7639 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(2-3) to Dexterity" }, } }, + ["AfflictionJewelSmallPassivesGrantDex2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7639 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(4-5) to Dexterity" }, } }, + ["AfflictionJewelSmallPassivesGrantDex3_"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7639 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(6-8) to Dexterity" }, } }, + ["AfflictionJewelSmallPassivesGrantInt_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7643 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(2-3) to Intelligence" }, } }, + ["AfflictionJewelSmallPassivesGrantInt2_"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7643 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(4-5) to Intelligence" }, } }, + ["AfflictionJewelSmallPassivesGrantInt3"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7643 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(6-8) to Intelligence" }, } }, + ["AfflictionJewelSmallPassivesGrantAttributes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7616 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +2 to All Attributes" }, } }, + ["AfflictionJewelSmallPassivesGrantAttributes2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7616 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +3 to All Attributes" }, } }, + ["AfflictionJewelSmallPassivesGrantAttributes3"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7616 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +4 to All Attributes" }, } }, + ["AfflictionJewelSmallPassivesGrantManaRegen"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7645 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate" }, } }, + ["AfflictionJewelSmallPassivesGrantManaRegen2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7645 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate" }, } }, + ["AfflictionJewelSmallPassivesGrantManaRegen3_"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7645 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeRegen___"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7652 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeRegen2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7652 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeRegen3"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7652 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantFireRes"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7642 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantFireRes2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7642 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantFireRes3"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7642 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantColdRes_"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7635 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantColdRes2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7635 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantColdRes3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7635 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningRes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7644 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningRes2_"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7644 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningRes3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7644 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalRes"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7640 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +2% to all Elemental Resistances" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalRes2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7640 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +3% to all Elemental Resistances" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalRes3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7640 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +4% to all Elemental Resistances" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosRes"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7633 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +3% to Chaos Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosRes2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7633 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +4% to Chaos Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosRes3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7633 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +5% to Chaos Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantDamage_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7638 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 2% increased Damage" }, } }, + ["AfflictionJewelSmallPassivesGrantDamage2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7638 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 3% increased Damage" }, } }, + ["AfflictionJewelSmallPassivesGrantDamage3"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7638 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 4% increased Damage" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeSmall"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7647 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(2-3) to Maximum Life" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeSmall2"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7647 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(4-7) to Maximum Life" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeSmall3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7647 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(8-10) to Maximum Life" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeSmall4"] = { type = "Prefix", affix = "Stalwart", "Added Small Passive Skills also grant: +(11-13) to Maximum Life", statOrder = { 7647 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(11-13) to Maximum Life" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeSmall5_"] = { type = "Prefix", affix = "Stout", "Added Small Passive Skills also grant: +(14-16) to Maximum Life", statOrder = { 7647 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3819827377] = { "Added Small Passive Skills also grant: +(14-16) to Maximum Life" }, } }, + ["AfflictionJewelSmallPassivesGrantManaSmall"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7648 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(2-5) to Maximum Mana" }, } }, + ["AfflictionJewelSmallPassivesGrantManaSmall2_"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7648 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(6-8) to Maximum Mana" }, } }, + ["AfflictionJewelSmallPassivesGrantManaSmall3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7648 }, level = 73, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(9-10) to Maximum Mana" }, } }, + ["AfflictionJewelSmallPassivesGrantManaSmall4_"] = { type = "Prefix", affix = "Sapphire", "Added Small Passive Skills also grant: +(11-13) to Maximum Mana", statOrder = { 7648 }, level = 78, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(11-13) to Maximum Mana" }, } }, + ["AfflictionJewelSmallPassivesGrantManaSmall5_"] = { type = "Prefix", affix = "Cerulean", "Added Small Passive Skills also grant: +(14-16) to Maximum Mana", statOrder = { 7648 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3994193163] = { "Added Small Passive Skills also grant: +(14-16) to Maximum Mana" }, } }, + ["AfflictionJewelSmallPassivesGrantESSmall"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7646 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield" }, } }, + ["AfflictionJewelSmallPassivesGrantESSmall2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7646 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield" }, } }, + ["AfflictionJewelSmallPassivesGrantESSmall3_"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7646 }, level = 73, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield" }, } }, + ["AfflictionJewelSmallPassivesGrantESSmall4"] = { type = "Prefix", affix = "Radiating", "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield", statOrder = { 7646 }, level = 78, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield" }, } }, + ["AfflictionJewelSmallPassivesGrantESSmall5"] = { type = "Prefix", affix = "Pulsing", "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield", statOrder = { 7646 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2643685329] = { "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield" }, } }, + ["AfflictionJewelSmallPassivesGrantArmourSmall__"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7617 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(11-20) to Armour" }, } }, + ["AfflictionJewelSmallPassivesGrantArmourSmall2__"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7617 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(21-30) to Armour" }, } }, + ["AfflictionJewelSmallPassivesGrantArmourSmall3"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7617 }, level = 73, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(31-40) to Armour" }, } }, + ["AfflictionJewelSmallPassivesGrantArmourSmall4___"] = { type = "Prefix", affix = "Fortified", "Added Small Passive Skills also grant: +(41-53) to Armour", statOrder = { 7617 }, level = 78, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(41-53) to Armour" }, } }, + ["AfflictionJewelSmallPassivesGrantArmourSmall5"] = { type = "Prefix", affix = "Plated", "Added Small Passive Skills also grant: +(54-66) to Armour", statOrder = { 7617 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2554466725] = { "Added Small Passive Skills also grant: +(54-66) to Armour" }, } }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7641 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(11-20) to Evasion" }, } }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall2_"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7641 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(21-30) to Evasion" }, } }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall3___"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7641 }, level = 73, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(31-40) to Evasion" }, } }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall4_"] = { type = "Prefix", affix = "Fleet", "Added Small Passive Skills also grant: +(41-53) to Evasion", statOrder = { 7641 }, level = 78, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(41-53) to Evasion" }, } }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall5"] = { type = "Prefix", affix = "Blurred", "Added Small Passive Skills also grant: +(54-66) to Evasion", statOrder = { 7641 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4100161067] = { "Added Small Passive Skills also grant: +(54-66) to Evasion" }, } }, + ["AfflictionJewelSmallPassivesGrantStrSmall_"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7654 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(2-3) to Strength" }, } }, + ["AfflictionJewelSmallPassivesGrantStrSmall2"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7654 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(4-5) to Strength" }, } }, + ["AfflictionJewelSmallPassivesGrantStrSmall3"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7654 }, level = 73, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(6-8) to Strength" }, } }, + ["AfflictionJewelSmallPassivesGrantStrSmall4_"] = { type = "Suffix", affix = "of the Lion", "Added Small Passive Skills also grant: +(9-11) to Strength", statOrder = { 7654 }, level = 78, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(9-11) to Strength" }, } }, + ["AfflictionJewelSmallPassivesGrantStrSmall5"] = { type = "Suffix", affix = "of the Gorilla", "Added Small Passive Skills also grant: +(12-14) to Strength", statOrder = { 7654 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, tradeHashes = { [3258414199] = { "Added Small Passive Skills also grant: +(12-14) to Strength" }, } }, + ["AfflictionJewelSmallPassivesGrantDexSmall_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7639 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(2-3) to Dexterity" }, } }, + ["AfflictionJewelSmallPassivesGrantDexSmall2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7639 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(4-5) to Dexterity" }, } }, + ["AfflictionJewelSmallPassivesGrantDexSmall3"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7639 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(6-8) to Dexterity" }, } }, + ["AfflictionJewelSmallPassivesGrantDexSmall4_"] = { type = "Suffix", affix = "of the Falcon", "Added Small Passive Skills also grant: +(9-11) to Dexterity", statOrder = { 7639 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(9-11) to Dexterity" }, } }, + ["AfflictionJewelSmallPassivesGrantDexSmall5"] = { type = "Suffix", affix = "of the Panther", "Added Small Passive Skills also grant: +(12-14) to Dexterity", statOrder = { 7639 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, tradeHashes = { [2090413987] = { "Added Small Passive Skills also grant: +(12-14) to Dexterity" }, } }, + ["AfflictionJewelSmallPassivesGrantIntSmall_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7643 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(2-3) to Intelligence" }, } }, + ["AfflictionJewelSmallPassivesGrantIntSmall2"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7643 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(4-5) to Intelligence" }, } }, + ["AfflictionJewelSmallPassivesGrantIntSmall3______"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7643 }, level = 73, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(6-8) to Intelligence" }, } }, + ["AfflictionJewelSmallPassivesGrantIntSmall4_"] = { type = "Suffix", affix = "of the Augur", "Added Small Passive Skills also grant: +(9-11) to Intelligence", statOrder = { 7643 }, level = 78, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(9-11) to Intelligence" }, } }, + ["AfflictionJewelSmallPassivesGrantIntSmall5"] = { type = "Suffix", affix = "of the Philosopher", "Added Small Passive Skills also grant: +(12-14) to Intelligence", statOrder = { 7643 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, tradeHashes = { [724930776] = { "Added Small Passive Skills also grant: +(12-14) to Intelligence" }, } }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7616 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +2 to All Attributes" }, } }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7616 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +3 to All Attributes" }, } }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall3_"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7616 }, level = 73, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +4 to All Attributes" }, } }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall4"] = { type = "Suffix", affix = "of the Comet", "Added Small Passive Skills also grant: +5 to All Attributes", statOrder = { 7616 }, level = 78, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +5 to All Attributes" }, } }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall5"] = { type = "Suffix", affix = "of the Heavens", "Added Small Passive Skills also grant: +6 to All Attributes", statOrder = { 7616 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, tradeHashes = { [4036575250] = { "Added Small Passive Skills also grant: +6 to All Attributes" }, } }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall_"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7645 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate" }, } }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7645 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate" }, } }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall3"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7645 }, level = 73, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate" }, } }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall4"] = { type = "Suffix", affix = "of Bliss", "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate", statOrder = { 7645 }, level = 78, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate" }, } }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall5"] = { type = "Suffix", affix = "of Euphoria", "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate", statOrder = { 7645 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2474836297] = { "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7652 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7652 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall3_"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7652 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall4_"] = { type = "Suffix", affix = "of the Starfish", "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second", statOrder = { 7652 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall5"] = { type = "Suffix", affix = "of the Hydra", "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second", statOrder = { 7652 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3721672021] = { "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantFireResSmall"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7642 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantFireResSmall2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7642 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantFireResSmall3_"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7642 }, level = 73, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantFireResSmall4"] = { type = "Suffix", affix = "of the Kiln", "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance", statOrder = { 7642 }, level = 78, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantFireResSmall5"] = { type = "Suffix", affix = "of the Furnace", "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance", statOrder = { 7642 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1790411851] = { "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantColdResSmall"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7635 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantColdResSmall2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7635 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantColdResSmall3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7635 }, level = 73, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantColdResSmall4"] = { type = "Suffix", affix = "of the Yeti", "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance", statOrder = { 7635 }, level = 78, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantColdResSmall5_"] = { type = "Suffix", affix = "of the Walrus", "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance", statOrder = { 7635 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [2709692542] = { "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7644 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall2__"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7644 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7644 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall4_"] = { type = "Suffix", affix = "of the Thunderhead", "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance", statOrder = { 7644 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall5"] = { type = "Suffix", affix = "of the Tempest", "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance", statOrder = { 7644 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [2250780084] = { "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7640 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +2% to all Elemental Resistances" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7640 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +3% to all Elemental Resistances" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7640 }, level = 73, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +4% to all Elemental Resistances" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall4"] = { type = "Suffix", affix = "of Variegation", "Added Small Passive Skills also grant: +5% to all Elemental Resistances", statOrder = { 7640 }, level = 78, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +5% to all Elemental Resistances" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall5"] = { type = "Suffix", affix = "of the Rainbow", "Added Small Passive Skills also grant: +6% to all Elemental Resistances", statOrder = { 7640 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2669029667] = { "Added Small Passive Skills also grant: +6% to all Elemental Resistances" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7633 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +3% to Chaos Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7633 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +4% to Chaos Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7633 }, level = 73, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +5% to Chaos Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall4"] = { type = "Suffix", affix = "of Expulsion", "Added Small Passive Skills also grant: +6% to Chaos Resistance", statOrder = { 7633 }, level = 78, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +6% to Chaos Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall5"] = { type = "Suffix", affix = "of Exile", "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance", statOrder = { 7633 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1811604576] = { "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance" }, } }, + ["AfflictionJewelSmallPassivesGrantDamageSmall_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7638 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 2% increased Damage" }, } }, + ["AfflictionJewelSmallPassivesGrantDamageSmall2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7638 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 3% increased Damage" }, } }, + ["AfflictionJewelSmallPassivesGrantDamageSmall3_"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7638 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 4% increased Damage" }, } }, + ["AfflictionJewelSmallPassivesGrantDamageSmall4_"] = { type = "Prefix", affix = "Destructive", "Added Small Passive Skills also grant: 5% increased Damage", statOrder = { 7638 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 5% increased Damage" }, } }, + ["AfflictionJewelSmallPassivesGrantDamageSmall5"] = { type = "Prefix", affix = "Deadly", "Added Small Passive Skills also grant: 6% increased Damage", statOrder = { 7638 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, tradeHashes = { [1719521705] = { "Added Small Passive Skills also grant: 6% increased Damage" }, } }, + ["AfflictionJewelSmallPassivesHaveIncreasedEffect"] = { type = "Prefix", affix = "Potent", "Added Small Passive Skills have 25% increased Effect", statOrder = { 7658 }, level = 1, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 500 }, modTags = { }, tradeHashes = { [2618549697] = { "Added Small Passive Skills have 25% increased Effect" }, } }, + ["AfflictionJewelSmallPassivesHaveIncreasedEffect2"] = { type = "Prefix", affix = "Powerful", "Added Small Passive Skills have 35% increased Effect", statOrder = { 7658 }, level = 84, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, tradeHashes = { [2618549697] = { "Added Small Passive Skills have 35% increased Effect" }, } }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed"] = { type = "Suffix", affix = "of Skill", "Added Small Passive Skills also grant: 1% increased Attack Speed", statOrder = { 7626 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1411310186] = { "Added Small Passive Skills also grant: 1% increased Attack Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed2_"] = { type = "Suffix", affix = "of Ease", "Added Small Passive Skills also grant: 2% increased Attack Speed", statOrder = { 7626 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1411310186] = { "Added Small Passive Skills also grant: 2% increased Attack Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed3__"] = { type = "Suffix", affix = "of Mastery", "Added Small Passive Skills also grant: 3% increased Attack Speed", statOrder = { 7626 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1411310186] = { "Added Small Passive Skills also grant: 3% increased Attack Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantCastSpeed"] = { type = "Suffix", affix = "of Talent", "Added Small Passive Skills also grant: 1% increased Cast Speed", statOrder = { 7628 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1195353227] = { "Added Small Passive Skills also grant: 1% increased Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Added Small Passive Skills also grant: 2% increased Cast Speed", statOrder = { 7628 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1195353227] = { "Added Small Passive Skills also grant: 2% increased Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantCastSpeed3_"] = { type = "Suffix", affix = "of Expertise", "Added Small Passive Skills also grant: 3% increased Cast Speed", statOrder = { 7628 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [1195353227] = { "Added Small Passive Skills also grant: 3% increased Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime"] = { type = "Suffix", affix = "of Decline", "Added Small Passive Skills also grant: 1% increased Damage over Time", statOrder = { 7637 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, tradeHashes = { [2401834120] = { "Added Small Passive Skills also grant: 1% increased Damage over Time" }, } }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime2"] = { type = "Suffix", affix = "of Degeneration", "Added Small Passive Skills also grant: 2% increased Damage over Time", statOrder = { 7637 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, tradeHashes = { [2401834120] = { "Added Small Passive Skills also grant: 2% increased Damage over Time" }, } }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime3"] = { type = "Suffix", affix = "of Disintegration", "Added Small Passive Skills also grant: 3% increased Damage over Time", statOrder = { 7637 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "damage" }, tradeHashes = { [2401834120] = { "Added Small Passive Skills also grant: 3% increased Damage over Time" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration_"] = { type = "Suffix", affix = "of Tumult", "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies", statOrder = { 7630 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3338465330] = { "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration2"] = { type = "Suffix", affix = "of Turbulence", "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies", statOrder = { 7630 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3338465330] = { "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration3"] = { type = "Suffix", affix = "of Disturbance", "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies", statOrder = { 7630 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3338465330] = { "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies" }, } }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect__"] = { type = "Suffix", affix = "of Outreach", "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills", statOrder = { 7627 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, tradeHashes = { [2642917409] = { "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect2"] = { type = "Suffix", affix = "of Influence", "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills", statOrder = { 7627 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, tradeHashes = { [2642917409] = { "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect3"] = { type = "Suffix", affix = "of Guidance", "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills", statOrder = { 7627 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 250, 0 }, modTags = { "aura" }, tradeHashes = { [2642917409] = { "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect"] = { type = "Suffix", affix = "of Clout", "Added Small Passive Skills also grant: 1% increased Area of Effect of Hex Skills", statOrder = { 7636 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2138819920] = { "Added Small Passive Skills also grant: 1% increased Area of Effect of Hex Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect2"] = { type = "Suffix", affix = "of Dominance", "Added Small Passive Skills also grant: 2% increased Area of Effect of Hex Skills", statOrder = { 7636 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2138819920] = { "Added Small Passive Skills also grant: 2% increased Area of Effect of Hex Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect3"] = { type = "Suffix", affix = "of Suppression", "Added Small Passive Skills also grant: 3% increased Area of Effect of Hex Skills", statOrder = { 7636 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2138819920] = { "Added Small Passive Skills also grant: 3% increased Area of Effect of Hex Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration"] = { type = "Suffix", affix = "of Yelling", "Added Small Passive Skills also grant: 2% increased Warcry Duration", statOrder = { 7657 }, level = 1, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, tradeHashes = { [2596487673] = { "Added Small Passive Skills also grant: 2% increased Warcry Duration" }, } }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration2"] = { type = "Suffix", affix = "of Shouting", "Added Small Passive Skills also grant: 3% increased Warcry Duration", statOrder = { 7657 }, level = 68, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, tradeHashes = { [2596487673] = { "Added Small Passive Skills also grant: 3% increased Warcry Duration" }, } }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration3"] = { type = "Suffix", affix = "of Bellowing", "Added Small Passive Skills also grant: 4% increased Warcry Duration", statOrder = { 7657 }, level = 84, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2596487673] = { "Added Small Passive Skills also grant: 4% increased Warcry Duration" }, } }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Ire", "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier", statOrder = { 7629 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1926135629] = { "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier" }, } }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier2_"] = { type = "Suffix", affix = "of Anger", "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier", statOrder = { 7629 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1926135629] = { "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier" }, } }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier", statOrder = { 7629 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [1926135629] = { "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier" }, } }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen"] = { type = "Suffix", affix = "of Fostering", "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second", statOrder = { 7651 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [542238572] = { "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen2"] = { type = "Suffix", affix = "of Nurturing", "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second", statOrder = { 7651 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [542238572] = { "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen3"] = { type = "Suffix", affix = "of Motherhood", "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second", statOrder = { 7651 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [542238572] = { "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second" }, } }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect_"] = { type = "Suffix", affix = "of Reach", "Added Small Passive Skills also grant: 1% increased Area of Effect", statOrder = { 7632 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, tradeHashes = { [713280739] = { "Added Small Passive Skills also grant: 1% increased Area of Effect" }, } }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect2"] = { type = "Suffix", affix = "of Range", "Added Small Passive Skills also grant: 2% increased Area of Effect", statOrder = { 7632 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, tradeHashes = { [713280739] = { "Added Small Passive Skills also grant: 2% increased Area of Effect" }, } }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect3"] = { type = "Suffix", affix = "of Horizons", "Added Small Passive Skills also grant: 3% increased Area of Effect", statOrder = { 7632 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [713280739] = { "Added Small Passive Skills also grant: 3% increased Area of Effect" }, } }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed"] = { type = "Suffix", affix = "of Darting", "Added Small Passive Skills also grant: 2% increased Projectile Speed", statOrder = { 7631 }, level = 1, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [679080252] = { "Added Small Passive Skills also grant: 2% increased Projectile Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "Added Small Passive Skills also grant: 3% increased Projectile Speed", statOrder = { 7631 }, level = 68, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [679080252] = { "Added Small Passive Skills also grant: 3% increased Projectile Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "Added Small Passive Skills also grant: 4% increased Projectile Speed", statOrder = { 7631 }, level = 84, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [679080252] = { "Added Small Passive Skills also grant: 4% increased Projectile Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed_"] = { type = "Suffix", affix = "of Tinkering", "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed", statOrder = { 7656 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [2135246244] = { "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed2"] = { type = "Suffix", affix = "of Assembly", "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed", statOrder = { 7656 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [2135246244] = { "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed3_"] = { type = "Suffix", affix = "of Deployment", "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed", statOrder = { 7656 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [2135246244] = { "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed"] = { type = "Suffix", affix = "of the Karui", "Added Small Passive Skills also grant: 1% increased Totem Placement speed", statOrder = { 7655 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [1588674629] = { "Added Small Passive Skills also grant: 1% increased Totem Placement speed" }, } }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed2"] = { type = "Suffix", affix = "of the Ancestors", "Added Small Passive Skills also grant: 2% increased Totem Placement speed", statOrder = { 7655 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, tradeHashes = { [1588674629] = { "Added Small Passive Skills also grant: 2% increased Totem Placement speed" }, } }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed3"] = { type = "Suffix", affix = "of The Way", "Added Small Passive Skills also grant: 3% increased Totem Placement speed", statOrder = { 7655 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [1588674629] = { "Added Small Passive Skills also grant: 3% increased Totem Placement speed" }, } }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange_"] = { type = "Suffix", affix = "of Gripping", "Added Small Passive Skills also grant: 1% increased Brand Attachment range", statOrder = { 7653 }, level = 1, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, tradeHashes = { [2265469693] = { "Added Small Passive Skills also grant: 1% increased Brand Attachment range" }, } }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange2"] = { type = "Suffix", affix = "of Grasping", "Added Small Passive Skills also grant: 2% increased Brand Attachment range", statOrder = { 7653 }, level = 68, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, tradeHashes = { [2265469693] = { "Added Small Passive Skills also grant: 2% increased Brand Attachment range" }, } }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange3____"] = { type = "Suffix", affix = "of Latching", "Added Small Passive Skills also grant: 3% increased Brand Attachment range", statOrder = { 7653 }, level = 84, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster" }, tradeHashes = { [2265469693] = { "Added Small Passive Skills also grant: 3% increased Brand Attachment range" }, } }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed"] = { type = "Suffix", affix = "of Attention", "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed", statOrder = { 7619 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3799759054] = { "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Concentration", "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed", statOrder = { 7619 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3799759054] = { "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Forethought", "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed", statOrder = { 7619 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3799759054] = { "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained"] = { type = "Suffix", affix = "of Refilling", "Added Small Passive Skills also grant: 1% increased Flask Charges gained", statOrder = { 7634 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, tradeHashes = { [3187805501] = { "Added Small Passive Skills also grant: 1% increased Flask Charges gained" }, } }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained2_"] = { type = "Suffix", affix = "of Brimming", "Added Small Passive Skills also grant: 2% increased Flask Charges gained", statOrder = { 7634 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, tradeHashes = { [3187805501] = { "Added Small Passive Skills also grant: 2% increased Flask Charges gained" }, } }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained3"] = { type = "Suffix", affix = "of Overflowing", "Added Small Passive Skills also grant: 3% increased Flask Charges gained", statOrder = { 7634 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 250, 250, 0 }, modTags = { "flask" }, tradeHashes = { [3187805501] = { "Added Small Passive Skills also grant: 3% increased Flask Charges gained" }, } }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Kindling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills", statOrder = { 7623 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, tradeHashes = { [1849042097] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Smoke", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills", statOrder = { 7623 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, tradeHashes = { [1849042097] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Flashfires", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills", statOrder = { 7623 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, tradeHashes = { [1849042097] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Cooling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills", statOrder = { 7621 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, tradeHashes = { [2054530657] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Frigidity", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills", statOrder = { 7621 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, tradeHashes = { [2054530657] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Avalanche", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills", statOrder = { 7621 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, tradeHashes = { [2054530657] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Gathering Clouds", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7624 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, tradeHashes = { [201731102] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Sudden Storms", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7624 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, tradeHashes = { [201731102] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Strike", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7624 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, tradeHashes = { [201731102] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Dusk", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7620 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, tradeHashes = { [3692167527] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed2____"] = { type = "Suffix", affix = "of Midnight", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7620 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, tradeHashes = { [3692167527] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Eclipse", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7620 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, tradeHashes = { [3692167527] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Rumbling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills", statOrder = { 7625 }, level = 1, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, tradeHashes = { [1903097619] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Tremors", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills", statOrder = { 7625 }, level = 68, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, tradeHashes = { [1903097619] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of the Earthquake", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills", statOrder = { 7625 }, level = 84, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 250, 0 }, modTags = { "physical", "attack", "caster", "speed" }, tradeHashes = { [1903097619] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Coaxing", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7622 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, tradeHashes = { [2699118751] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Evoking", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7622 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, tradeHashes = { [2699118751] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Manifesting", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7622 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, tradeHashes = { [2699118751] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills" }, } }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of Pillaging", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed", statOrder = { 7649 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2310019673] = { "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Ravaging", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed", statOrder = { 7649 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2310019673] = { "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Razing", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed", statOrder = { 7649 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2310019673] = { "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed" }, } }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Courier", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7618 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3262895685] = { "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald" }, } }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Messenger", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7618 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3262895685] = { "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald" }, } }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Herald", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7618 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [3262895685] = { "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald" }, } }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Message", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7650 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [1948127742] = { "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed while you are affected by a Herald" }, } }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Teachings", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7650 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [1948127742] = { "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed while you are affected by a Herald" }, } }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Canon", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7650 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [1948127742] = { "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed while you are affected by a Herald" }, } }, } \ No newline at end of file diff --git a/src/Data/ModMaster.lua b/src/Data/ModMaster.lua index ce0fc5b79b..46895c50a3 100644 --- a/src/Data/ModMaster.lua +++ b/src/Data/ModMaster.lua @@ -2,729 +2,733 @@ -- Item data (c) Grinding Gear Games return { - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(15-25) to maximum Life", statOrder = { 1569 }, level = 15, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(16-20)% to Fire Resistance", statOrder = { 1625 }, level = 15, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(16-20)% to Cold Resistance", statOrder = { 1631 }, level = 15, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(16-20)% to Lightning Resistance", statOrder = { 1636 }, level = 15, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Strength", statOrder = { 1177 }, level = 15, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Dexterity", statOrder = { 1178 }, level = 15, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Intelligence", statOrder = { 1179 }, level = 15, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(21-28)% to Fire Resistance", statOrder = { 1625 }, level = 30, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(29-35)% to Fire Resistance", statOrder = { 1625 }, level = 50, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(21-28)% to Cold Resistance", statOrder = { 1631 }, level = 30, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(29-35)% to Cold Resistance", statOrder = { 1631 }, level = 50, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(21-28)% to Lightning Resistance", statOrder = { 1636 }, level = 30, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(29-35)% to Lightning Resistance", statOrder = { 1636 }, level = 50, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(10-12)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 30, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(13-16)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 50, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(17-20)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 75, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 30, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(13-16)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 50, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(17-20)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 75, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 30, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(13-16)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 50, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(17-20)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 75, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(5-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(9-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(4-6)% to all Elemental Resistances", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 1619, 2912 }, level = 30, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(7-9)% to all Elemental Resistances", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 1619, 2912 }, level = 60, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", statOrder = { 1177 }, level = 20, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Strength", statOrder = { 1177 }, level = 40, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", statOrder = { 1178 }, level = 20, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Dexterity", statOrder = { 1178 }, level = 40, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", statOrder = { 1179 }, level = 20, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Intelligence", statOrder = { 1179 }, level = 40, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(6-9) to all Attributes", statOrder = { 1176 }, level = 30, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-13) to all Attributes", statOrder = { 1176 }, level = 50, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(10-14)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(15-19)% increased Movement Speed", statOrder = { 1798 }, level = 40, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(20-24)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(26-40) to maximum Life", statOrder = { 1569 }, level = 40, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(41-55) to maximum Life", statOrder = { 1569 }, level = 68, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(56-70) to maximum Life", statOrder = { 1569 }, level = 75, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(71-85) to maximum Life", statOrder = { 1569 }, level = 80, group = "IncreasedLife", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 30, group = "LifeLeechPermyriad", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 50, group = "LifeLeechPermyriad", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 30, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(2.6-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 50, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana", "physical", "attack" }, "(2-2.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 50, group = "ManaLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1579 }, level = 20, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1579 }, level = 40, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(75-84) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(85-94) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1579 }, level = 20, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1579 }, level = 40, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(25-34) to maximum Mana", statOrder = { 1579 }, level = 20, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1579 }, level = 40, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 30, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(31-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 50, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(30-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 30, group = "ManaRegeneration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(46-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 50, group = "ManaRegeneration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(40-59)% increased Physical Damage", statOrder = { 1232 }, level = 20, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(60-79)% increased Physical Damage", statOrder = { 1232 }, level = 40, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(80-99)% increased Physical Damage", statOrder = { 1232 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(100-129)% increased Physical Damage", statOrder = { 1232 }, level = 80, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(37-51)% increased Spell Damage", statOrder = { 1223 }, level = 20, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(52-66)% increased Spell Damage", statOrder = { 1223 }, level = 40, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(67-81)% increased Spell Damage", statOrder = { 1223 }, level = 60, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(82-99)% increased Spell Damage", statOrder = { 1223 }, level = 80, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(25-34)% increased Spell Damage", statOrder = { 1223 }, level = 20, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(35-44)% increased Spell Damage", statOrder = { 1223 }, level = 40, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(45-54)% increased Spell Damage", statOrder = { 1223 }, level = 60, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(55-66)% increased Spell Damage", statOrder = { 1223 }, level = 80, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(11-20)% increased Damage over Time", statOrder = { 1210 }, level = 30, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(21-30)% increased Damage over Time", statOrder = { 1210 }, level = 50, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(15-23)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(24-32)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 50, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(8-10)% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-15)% increased Attack Speed", statOrder = { 1413 }, level = 50, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(16-20)% increased Attack Speed", statOrder = { 1413 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-13)% increased Attack Speed", statOrder = { 1413 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(7-12)% increased Attack Speed", statOrder = { 1410 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Gloves"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(21-26)% increased Cast Speed", statOrder = { 1446 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(27-32)% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(10-13)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(14-17)% increased Cast Speed", statOrder = { 1446 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(18-21)% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(37-51)% increased Fire Damage", statOrder = { 1357 }, level = 20, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(52-66)% increased Fire Damage", statOrder = { 1357 }, level = 40, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(67-81)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(25-34)% increased Fire Damage", statOrder = { 1357 }, level = 20, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(35-44)% increased Fire Damage", statOrder = { 1357 }, level = 40, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(45-54)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(9-12)% increased Fire Damage", statOrder = { 1357 }, level = 20, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(13-16)% increased Fire Damage", statOrder = { 1357 }, level = 40, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(37-51)% increased Cold Damage", statOrder = { 1366 }, level = 20, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(52-66)% increased Cold Damage", statOrder = { 1366 }, level = 40, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(67-81)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(25-34)% increased Cold Damage", statOrder = { 1366 }, level = 20, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(35-44)% increased Cold Damage", statOrder = { 1366 }, level = 40, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(45-54)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(9-12)% increased Cold Damage", statOrder = { 1366 }, level = 20, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(13-16)% increased Cold Damage", statOrder = { 1366 }, level = 40, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(37-51)% increased Lightning Damage", statOrder = { 1377 }, level = 20, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(52-66)% increased Lightning Damage", statOrder = { 1377 }, level = 40, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(67-81)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(25-34)% increased Lightning Damage", statOrder = { 1377 }, level = 20, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(35-44)% increased Lightning Damage", statOrder = { 1377 }, level = 40, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(45-54)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(9-12)% increased Lightning Damage", statOrder = { 1377 }, level = 20, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(13-16)% increased Lightning Damage", statOrder = { 1377 }, level = 40, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(37-51)% increased Chaos Damage", statOrder = { 1385 }, level = 20, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(52-66)% increased Chaos Damage", statOrder = { 1385 }, level = 40, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(67-81)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(25-34)% increased Chaos Damage", statOrder = { 1385 }, level = 30, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(35-44)% increased Chaos Damage", statOrder = { 1385 }, level = 50, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(45-54)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(9-12)% increased Chaos Damage", statOrder = { 1385 }, level = 30, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(13-16)% increased Chaos Damage", statOrder = { 1385 }, level = 50, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 2024 }, level = 20, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-200) to Accuracy Rating", statOrder = { 2024 }, level = 40, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(201-300) to Accuracy Rating", statOrder = { 2024 }, level = 68, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1433 }, level = 20, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-150) to Accuracy Rating", statOrder = { 1433 }, level = 40, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(151-220) to Accuracy Rating", statOrder = { 1433 }, level = 68, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(9-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 30, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(13-16)% increased Global Physical Damage", statOrder = { 1231 }, level = 50, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(26-35)% increased Armour", statOrder = { 1542 }, level = 30, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(41-50)% increased Armour", statOrder = { 1542 }, level = 50, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(56-74)% increased Armour", statOrder = { 1542 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(50-75) to Armour", statOrder = { 1540 }, level = 30, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(100-150) to Armour", statOrder = { 1540 }, level = 50, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(250-320) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(26-35)% increased Evasion Rating", statOrder = { 1550 }, level = 30, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(41-50)% increased Evasion Rating", statOrder = { 1550 }, level = 50, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(56-74)% increased Evasion Rating", statOrder = { 1550 }, level = 75, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(50-75) to Evasion Rating", statOrder = { 1548 }, level = 30, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(100-150) to Evasion Rating", statOrder = { 1548 }, level = 50, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(250-320) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(26-35)% increased Energy Shield", statOrder = { 1560 }, level = 30, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(41-50)% increased Energy Shield", statOrder = { 1560 }, level = 50, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(56-74)% increased Energy Shield", statOrder = { 1560 }, level = 75, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(17-22) to maximum Energy Shield", statOrder = { 1559 }, level = 30, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(35-45) to maximum Energy Shield", statOrder = { 1559 }, level = 50, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(56-69) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(10-12)% increased maximum Energy Shield", statOrder = { 1561 }, level = 60, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(13-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(21-25) to maximum Energy Shield", statOrder = { 1558 }, level = 50, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(26-30) to maximum Energy Shield", statOrder = { 1558 }, level = 68, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(26-35)% increased Armour and Evasion", statOrder = { 1553 }, level = 30, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(41-50)% increased Armour and Evasion", statOrder = { 1553 }, level = 50, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(56-74)% increased Armour and Evasion", statOrder = { 1553 }, level = 75, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(26-35)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 30, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(41-50)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 50, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(56-74)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 75, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(26-35)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 30, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(41-50)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 50, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(56-74)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 75, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-21) to (32-41) Fire Damage", statOrder = { 1362 }, level = 20, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (38-46) to (73-85) Fire Damage", statOrder = { 1362 }, level = 40, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (60-72) to (110-128) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (11-12) to (19-23) Fire Damage", statOrder = { 1362 }, level = 20, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (22-27) to (42-49) Fire Damage", statOrder = { 1362 }, level = 40, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (35-41) to (63-73) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (8-11) to (16-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 20, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (12-17) to (26-30) Fire Damage to Attacks", statOrder = { 1360 }, level = 40, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-21) to (32-41) Cold Damage", statOrder = { 1371 }, level = 20, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (38-46) to (73-85) Cold Damage", statOrder = { 1371 }, level = 40, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (60-72) to (110-128) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-12) to (19-23) Cold Damage", statOrder = { 1371 }, level = 20, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (22-27) to (42-49) Cold Damage", statOrder = { 1371 }, level = 40, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (35-41) to (63-73) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (6-8) to (14-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 20, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-15) to (23-27) Cold Damage to Attacks", statOrder = { 1369 }, level = 40, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (2-5) to (46-64) Lightning Damage", statOrder = { 1382 }, level = 20, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-9) to (104-139) Lightning Damage", statOrder = { 1382 }, level = 40, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (10-14) to (162-197) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-3) to (27-37) Lightning Damage", statOrder = { 1382 }, level = 20, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-5) to (60-80) Lightning Damage", statOrder = { 1382 }, level = 40, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-8) to (100-113) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1380 }, level = 20, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-5) to (41-48) Lightning Damage to Attacks", statOrder = { 1380 }, level = 40, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (9-12) to (18-21) Physical Damage", statOrder = { 1276 }, level = 20, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (11-15) to (23-27) Physical Damage", statOrder = { 1276 }, level = 40, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (18-24) to (36-42) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (6-8) to (13-15) Physical Damage", statOrder = { 1276 }, level = 20, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (7-11) to (16-19) Physical Damage", statOrder = { 1276 }, level = 40, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (13-17) to (26-30) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (3-5) to (6-8) Physical Damage to Attacks", statOrder = { 1266 }, level = 20, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (5-7) to (8-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 40, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (6-8) to (14-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 30, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (11-15) to (23-27) Chaos Damage to Attacks", statOrder = { 1387 }, level = 68, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (16-21) to (31-36) Fire Damage to Spells", statOrder = { 1404 }, level = 30, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (28-38) to (57-66) Fire Damage to Spells", statOrder = { 1404 }, level = 50, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (41-55) to (83-96) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (12-16) to (23-27) Fire Damage to Spells", statOrder = { 1404 }, level = 30, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1404 }, level = 50, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (31-41) to (61-71) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (14-19) to (28-33) Cold Damage to Spells", statOrder = { 1405 }, level = 30, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (26-34) to (52-60) Cold Damage to Spells", statOrder = { 1405 }, level = 50, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (38-50) to (75-88) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (10-13) to (19-22) Cold Damage to Spells", statOrder = { 1405 }, level = 30, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1405 }, level = 50, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (25-33) to (50-58) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-5) to (59-63) Lightning Damage to Spells", statOrder = { 1406 }, level = 30, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrder = { 1406 }, level = 50, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-4) to (39-42) Lightning Damage to Spells", statOrder = { 1406 }, level = 30, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1406 }, level = 50, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(17-19)% increased Critical Strike Chance", statOrder = { 1464 }, level = 40, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(20-24)% increased Critical Strike Chance", statOrder = { 1464 }, level = 60, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(25-27)% increased Critical Strike Chance", statOrder = { 1464 }, level = 75, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 40, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 60, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(25-28)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(45-75)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(76-105)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(30-49)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(50-69)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(17-21)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 50, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(22-27)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(5-10)% increased Flask Effect Duration", statOrder = { 2187 }, level = 50, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(11-15)% increased Flask Effect Duration", statOrder = { 2187 }, level = 68, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "(15-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 30, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "(21-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 60, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 30, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 60, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(24-30)% reduced Effect of Chill and Shock on you", statOrder = { 10019 }, level = 30, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(31-40)% reduced Effect of Chill and Shock on you", statOrder = { 10019 }, level = 60, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(31-40)% increased Chance to Block", statOrder = { 90 }, level = 50, group = "LocalIncreasedBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(41-50)% increased Chance to Block", statOrder = { 90 }, level = 68, group = "LocalIncreasedBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 50, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(5-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(5-6)% increased Life Regeneration rate", statOrder = { 1577 }, level = 40, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(7-8)% increased Life Regeneration rate", statOrder = { 1577 }, level = 60, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "2% additional Physical Damage Reduction", statOrder = { 2273 }, level = 40, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "3% additional Physical Damage Reduction", statOrder = { 2273 }, level = 60, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(3-4)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-7)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 40, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(12-14)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 60, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 40, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 60, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "Upgraded", modTags = { "damage" }, "5% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 80, group = "DegenDamageTaken", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "Light Radius is based on Energy Shield instead of Life", statOrder = { 2741 }, level = 68, group = "LightRadiusScalesWithEnergyShield", types = { ["Helmet"] = true, ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (11-15)% increased maximum Life", statOrder = { 1766 }, level = 40, group = "MinionLife", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (16-20)% increased maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (10-20)% increased Damage", statOrder = { 1973 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (13-17)% increased Movement Speed", statOrder = { 1769 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (18-22)% increased Movement Speed", statOrder = { 1769 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (37-51)% increased Damage", statOrder = { 1973 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (52-66)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (67-81)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (25-34)% increased Damage", statOrder = { 1973 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (35-44)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (45-54)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Trap Damage", statOrder = { 1194 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Trap Damage", statOrder = { 1194 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Trap Damage", statOrder = { 1194 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Trap Damage", statOrder = { 1194 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Mine Damage", statOrder = { 1196 }, level = 50, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Mine Damage", statOrder = { 1196 }, level = 68, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Mine Damage", statOrder = { 1196 }, level = 50, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Mine Damage", statOrder = { 1196 }, level = 68, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(3-5)% increased Attack Speed", statOrder = { 1410 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(6-9)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(15-20)% increased Warcry Speed", statOrder = { 3277 }, level = 30, group = "WarcrySpeed", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Control", modTags = { }, "Warcries cannot Exert Travel Skills", statOrder = { 10424 }, level = 1, group = "TravelSkillsCannotBeExerted", types = { ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 30, group = "NoExtraBleedDamageWhileMoving", types = { ["Shield"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(31-36)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 30, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(37-43)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 60, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(41-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 30, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(51-60)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 60, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(41-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 30, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(51-60)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 60, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(41-50)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 30, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(51-60)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 60, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(41-50)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 30, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(51-60)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 60, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(16-20)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 30, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(21-25)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 60, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(11-15)% reduced Effect of Freeze on you", statOrder = { 5020 }, level = 30, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(16-20)% reduced Effect of Freeze on you", statOrder = { 5020 }, level = 60, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (9-11) to (16-21) Fire Damage to Attacks", statOrder = { 1360 }, level = 20, group = "FireDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-23) to (37-42) Fire Damage to Attacks", statOrder = { 1360 }, level = 40, group = "FireDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (9-11) to (16-21) Cold Damage to Attacks", statOrder = { 1369 }, level = 20, group = "ColdDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-23) to (37-42) Cold Damage to Attacks", statOrder = { 1369 }, level = 40, group = "ColdDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1380 }, level = 20, group = "LightningDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-6) to (52-70) Lightning Damage to Attacks", statOrder = { 1380 }, level = 40, group = "LightningDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "vaal" }, "(20-60)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 24, group = "VaalSkillDamage", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flat_life_regen", "resource", "life", "mana" }, "Regenerate (12-20) Life per second", "Regenerate (1.8-3) Mana per second", statOrder = { 1574, 1582 }, level = 30, group = "LifeRegenerationAndManaRegeneration", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "skill", "caster", "gem" }, "Trigger a Socketed Spell when you Use a Skill, with a 8 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 833, 833.1 }, level = 75, group = "TriggerSocketedSpellOnSkillUse", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1232, 7861 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1232, 7861 }, level = 72, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1232, 7861 }, level = 81, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to cause Bleeding on Hit", statOrder = { 1232, 2483 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to cause Bleeding on Hit", statOrder = { 1232, 2483 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to cause Bleeding on Hit", statOrder = { 1232, 2483 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Blind Enemies on hit", statOrder = { 1232, 2263 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Blind Enemies on hit", statOrder = { 1232, 2263 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Blind Enemies on hit", statOrder = { 1232, 2263 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Poison on Hit", statOrder = { 1232, 8003 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Poison on Hit", statOrder = { 1232, 8003 }, level = 72, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Poison on Hit", statOrder = { 1232, 8003 }, level = 81, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(60-64)% increased Fire Damage", "(21-24)% chance to Ignite", statOrder = { 1357, 2026 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(65-72)% increased Fire Damage", "(25-28)% chance to Ignite", statOrder = { 1357, 2026 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(73-80)% increased Fire Damage", "(29-34)% chance to Ignite", statOrder = { 1357, 2026 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(36-41)% increased Fire Damage", "(13-15)% chance to Ignite", statOrder = { 1357, 2026 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(42-50)% increased Fire Damage", "(16-17)% chance to Ignite", statOrder = { 1357, 2026 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(51-60)% increased Fire Damage", "(18-20)% chance to Ignite", statOrder = { 1357, 2026 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(60-64)% increased Cold Damage", "(21-24)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(65-72)% increased Cold Damage", "(25-28)% chance to Freeze", statOrder = { 1366, 2029 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(73-80)% increased Cold Damage", "(29-34)% chance to Freeze", statOrder = { 1366, 2029 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(36-41)% increased Cold Damage", "(13-15)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(42-50)% increased Cold Damage", "(16-17)% chance to Freeze", statOrder = { 1366, 2029 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(51-60)% increased Cold Damage", "(18-20)% chance to Freeze", statOrder = { 1366, 2029 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(60-64)% increased Lightning Damage", "(21-24)% chance to Shock", statOrder = { 1377, 2033 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(65-72)% increased Lightning Damage", "(25-28)% chance to Shock", statOrder = { 1377, 2033 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(73-80)% increased Lightning Damage", "(29-34)% chance to Shock", statOrder = { 1377, 2033 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(36-41)% increased Lightning Damage", "(13-15)% chance to Shock", statOrder = { 1377, 2033 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(42-50)% increased Lightning Damage", "(16-17)% chance to Shock", statOrder = { 1377, 2033 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(51-60)% increased Lightning Damage", "(18-20)% chance to Shock", statOrder = { 1377, 2033 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(53-60)% increased Chaos Damage", "Chaos Skills have (15-17)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(61-68)% increased Chaos Damage", "Chaos Skills have (18-20)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(69-75)% increased Chaos Damage", "Chaos Skills have (21-23)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(35-39)% increased Chaos Damage", "Chaos Skills have (7-8)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(40-45)% increased Chaos Damage", "Chaos Skills have (9-10)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(46-50)% increased Chaos Damage", "Chaos Skills have (11-12)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(60-64)% increased Spell Damage", "(16-20)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(65-72)% increased Spell Damage", "(21-25)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(73-80)% increased Spell Damage", "(26-30)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(36-41)% increased Spell Damage", "(7-9)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(42-50)% increased Spell Damage", "(10-12)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(51-60)% increased Spell Damage", "(13-15)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(53-58)% increased Spell Damage", "Gain (3-4)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(59-66)% increased Spell Damage", "Gain (5-6)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(67-75)% increased Spell Damage", "Gain (7-8)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(38-40)% increased Spell Damage", "Gain 2% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(41-45)% increased Spell Damage", "Gain 3% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(46-50)% increased Spell Damage", "Gain 4% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (26-32)% increased maximum Life", "Minions deal (26-32)% increased Damage", statOrder = { 1766, 1973 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (33-38)% increased maximum Life", "Minions deal (33-38)% increased Damage", statOrder = { 1766, 1973 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (39-45)% increased maximum Life", "Minions deal (39-45)% increased Damage", statOrder = { 1766, 1973 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (16-19)% increased maximum Life", "Minions deal (16-19)% increased Damage", statOrder = { 1766, 1973 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (20-24)% increased maximum Life", "Minions deal (20-24)% increased Damage", statOrder = { 1766, 1973 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (25-28)% increased maximum Life", "Minions deal (25-28)% increased Damage", statOrder = { 1766, 1973 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (19-21)% increased Attack Speed", "Minions have (19-21)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (22-24)% increased Attack Speed", "Minions have (22-24)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (10-11)% increased Attack Speed", "Minions have (10-11)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (12-13)% increased Attack Speed", "Minions have (12-13)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (14-15)% increased Attack Speed", "Minions have (14-15)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(25-27)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(28-30)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(31-35)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(14-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(16-17)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(18-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(25-27)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(28-30)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(31-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(14-15)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(16-17)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(18-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(25-27)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(28-30)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(31-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(14-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(16-17)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(18-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(25-27)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(28-30)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(31-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(14-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(16-17)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(18-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3761 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Elemental Resistances", statOrder = { 3761 }, level = 72, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Elemental Resistances", statOrder = { 3761 }, level = 81, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7876 }, level = 60, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Chaos Resistance", statOrder = { 7876 }, level = 72, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Chaos Resistance", statOrder = { 7876 }, level = 81, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(6-7)% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(8-10)% chance to deal Double Damage", statOrder = { 5659 }, level = 72, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "3% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(4-5)% chance to deal Double Damage", statOrder = { 5659 }, level = 72, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(8-9) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1553, 1569 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(12-14) to maximum Life", statOrder = { 1553, 1569 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1552, 1569 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1552, 1569 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1554, 1569 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1554, 1569 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(8-9) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1542, 1569 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(12-14) to maximum Life", statOrder = { 1542, 1569 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(8-9) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1550, 1569 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(12-14) to maximum Life", statOrder = { 1550, 1569 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(8-9) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1560, 1569 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(12-14) to maximum Life", statOrder = { 1560, 1569 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1555, 1569 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1555, 1569 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(12-13) to maximum Life", statOrder = { 1553, 1569 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(14-16) to maximum Life", statOrder = { 1553, 1569 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1552, 1569 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1552, 1569 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1554, 1569 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1554, 1569 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(12-13) to maximum Life", statOrder = { 1542, 1569 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(14-16) to maximum Life", statOrder = { 1542, 1569 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(12-13) to maximum Life", statOrder = { 1550, 1569 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(14-16) to maximum Life", statOrder = { 1550, 1569 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(12-13) to maximum Life", statOrder = { 1560, 1569 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(14-16) to maximum Life", statOrder = { 1560, 1569 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1555, 1569 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1555, 1569 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(13-14) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(15-16) to maximum Life", statOrder = { 1553, 1569 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1553, 1569 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1552, 1569 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1552, 1569 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1554, 1569 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1554, 1569 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(13-14) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(15-16) to maximum Life", statOrder = { 1542, 1569 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1542, 1569 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(13-14) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(15-16) to maximum Life", statOrder = { 1550, 1569 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1550, 1569 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(13-14) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(15-16) to maximum Life", statOrder = { 1560, 1569 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1560, 1569 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1555, 1569 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1555, 1569 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Dexterity", statOrder = { 1180 }, level = 60, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Dexterity", statOrder = { 1180 }, level = 72, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Dexterity", statOrder = { 1180 }, level = 81, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Dexterity and Intelligence", statOrder = { 1182 }, level = 60, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Dexterity and Intelligence", statOrder = { 1182 }, level = 72, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Dexterity and Intelligence", statOrder = { 1182 }, level = 81, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Intelligence", statOrder = { 1181 }, level = 60, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Intelligence", statOrder = { 1181 }, level = 72, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Intelligence", statOrder = { 1181 }, level = 81, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "endurance_charge", "unveiled_mod" }, "+1 to Minimum Endurance Charges", statOrder = { 1803 }, level = 75, group = "MinimumEnduranceCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "power_charge", "unveiled_mod" }, "+1 to Minimum Power Charges", statOrder = { 1813 }, level = 75, group = "MinimumPowerCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod" }, "+1 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 75, group = "MinimumFrenzyCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "Regenerate 2 Mana per second", statOrder = { 1579, 1582 }, level = 60, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "Regenerate 3 Mana per second", statOrder = { 1579, 1582 }, level = 72, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "Regenerate 4 Mana per second", statOrder = { 1579, 1582 }, level = 81, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "3% reduced Mana Cost of Skills", statOrder = { 1579, 1883 }, level = 60, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "4% reduced Mana Cost of Skills", statOrder = { 1579, 1883 }, level = 72, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "5% reduced Mana Cost of Skills", statOrder = { 1579, 1883 }, level = 81, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "4% of Damage taken Recouped as Mana", statOrder = { 1579, 2455 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "5% of Damage taken Recouped as Mana", statOrder = { 1579, 2455 }, level = 72, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "6% of Damage taken Recouped as Mana", statOrder = { 1579, 2455 }, level = 81, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "3% increased Attack and Cast Speed", statOrder = { 2046 }, level = 60, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "4% increased Attack and Cast Speed", statOrder = { 2046 }, level = 25, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(5-6)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 50, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3223 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3223 }, level = 72, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3223 }, level = 81, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1798, 2993 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1798, 2993 }, level = 72, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1798, 2993 }, level = 81, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(13-14)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1798, 1844 }, level = 60, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(15-17)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1798, 1844 }, level = 72, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(18-20)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1798, 1844 }, level = 81, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(105-150) to Armour and Evasion Rating", statOrder = { 4266 }, level = 60, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(151-213) to Armour and Evasion Rating", statOrder = { 4266 }, level = 72, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(214-285) to Armour and Evasion Rating", statOrder = { 4266 }, level = 81, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(105-150) to Armour", "+(11-15) to maximum Energy Shield", statOrder = { 1539, 1558 }, level = 60, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(151-213) to Armour", "+(16-20) to maximum Energy Shield", statOrder = { 1539, 1558 }, level = 72, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(214-285) to Armour", "+(21-25) to maximum Energy Shield", statOrder = { 1539, 1558 }, level = 81, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(105-150) to Evasion Rating", "+(11-15) to maximum Energy Shield", statOrder = { 1544, 1558 }, level = 60, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(151-213) to Evasion Rating", "+(16-20) to maximum Energy Shield", statOrder = { 1544, 1558 }, level = 72, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(214-285) to Evasion Rating", "+(21-25) to maximum Energy Shield", statOrder = { 1544, 1558 }, level = 81, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod" }, "20% reduced Flask Charges gained", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2183, 2742 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod" }, "33% reduced Flask Charges gained", "Flasks applied to you have (11-14)% increased Effect", statOrder = { 2183, 2742 }, level = 75, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "(6-8)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 60, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "(9-12)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Power Charge", statOrder = { 6066 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Power Charge", statOrder = { 6066 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, "(20-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFire", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, "(20-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToCold", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, "(20-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightning", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "minion" }, "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 2160, 2162 }, level = 60, group = "MaximumMinionCount", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(16-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(23-30)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "curse" }, "(4-5)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "curse" }, "(6-7)% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental" }, "(6-7)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4943 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental" }, "(8-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4943 }, level = 75, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(1000-1600) to Armour during Soul Gain Prevention", statOrder = { 9652 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(1601-2200) to Armour during Soul Gain Prevention", statOrder = { 9652 }, level = 72, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(2201-3000) to Armour during Soul Gain Prevention", statOrder = { 9652 }, level = 81, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "You have Onslaught during Soul Gain Prevention", statOrder = { 6781 }, level = 50, group = "GainOnslaughtDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(30-40)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6084 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(41-50)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6084 }, level = 72, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(51-60)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6084 }, level = 81, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 176, 1880 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 177, 1790 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "attack", "attack", "gem" }, "+1 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 179, 2534 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(25-31)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(32-38)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(39-45)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(17-21)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(22-25)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(26-30)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(14-16)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(17-19)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(20-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "7% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(8-9)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(10-11)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 90 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6457 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6457 }, level = 72, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 150 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6457 }, level = 81, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(9-10)% increased Global Critical Strike Chance", "3% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1459, 6756 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(11-12)% increased Global Critical Strike Chance", "4% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1459, 6756 }, level = 72, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(13-14)% increased Global Critical Strike Chance", "5% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1459, 6756 }, level = 81, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(11-12)% increased Global Critical Strike Chance", "(14-16)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 6303 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(13-14)% increased Global Critical Strike Chance", "(17-19)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 6303 }, level = 72, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(15-16)% increased Global Critical Strike Chance", "(20-22)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 6303 }, level = 81, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(11-12)% increased Global Critical Strike Chance", "Adds (10-11) to (14-16) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 9225 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(13-14)% increased Global Critical Strike Chance", "Adds (12-13) to (17-20) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 9225 }, level = 72, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(15-16)% increased Global Critical Strike Chance", "Adds (14-16) to (21-24) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 9225 }, level = 81, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(28-33) to maximum Life", "Regenerate 2 Mana per second", statOrder = { 1569, 1582 }, level = 60, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(34-40) to maximum Life", "Regenerate 3 Mana per second", statOrder = { 1569, 1582 }, level = 72, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(41-45) to maximum Life", "Regenerate 4 Mana per second", statOrder = { 1569, 1582 }, level = 81, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 15 Life per second", "+(28-33) to maximum Mana", statOrder = { 1574, 1579 }, level = 60, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 20 Life per second", "+(34-40) to maximum Mana", statOrder = { 1574, 1579 }, level = 72, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 25 Life per second", "+(41-45) to maximum Mana", statOrder = { 1574, 1579 }, level = 81, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Totem Placement speed", statOrder = { 2578 }, level = 60, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(21-25)% increased Totem Placement speed", statOrder = { 2578 }, level = 72, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(26-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 81, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (6-7) to (9-10) Fire Damage", "Adds (6-7) to (9-10) Cold Damage", statOrder = { 1359, 1368 }, level = 60, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (8-9) to (11-13) Fire Damage", "Adds (8-9) to (11-13) Cold Damage", statOrder = { 1359, 1368 }, level = 72, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (10-12) to (14-16) Fire Damage", "Adds (10-12) to (14-16) Cold Damage", statOrder = { 1359, 1368 }, level = 81, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (6-7) to (9-10) Fire Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1359, 1379 }, level = 60, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (8-9) to (11-13) Fire Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1359, 1379 }, level = 72, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (10-12) to (14-16) Fire Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1359, 1379 }, level = 81, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (6-7) to (9-10) Cold Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1368, 1379 }, level = 60, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (8-9) to (11-13) Cold Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1368, 1379 }, level = 72, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (10-12) to (14-16) Cold Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1368, 1379 }, level = 81, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "critical" }, "Your Critical Strike Chance is Lucky while Focused", statOrder = { 6531 }, level = 72, group = "LuckyCriticalsDuringFocus", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(16-18)% increased Evasion Rating while Focused", statOrder = { 6478 }, level = 60, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(19-22)% increased Evasion Rating while Focused", statOrder = { 6478 }, level = 72, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(23-25)% increased Evasion Rating while Focused", statOrder = { 6478 }, level = 81, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "8% additional Physical Damage Reduction while Focused", statOrder = { 4572 }, level = 60, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "(9-10)% additional Physical Damage Reduction while Focused", statOrder = { 4572 }, level = 72, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "(11-12)% additional Physical Damage Reduction while Focused", statOrder = { 4572 }, level = 81, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 2 Seconds when you Focus", statOrder = { 10014 }, level = 60, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 3 Seconds when you Focus", statOrder = { 10014 }, level = 72, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 10014 }, level = 81, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life" }, "1% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6488 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (23-25)% of Mana and Energy Shield when you Focus", statOrder = { 9925 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (26-28)% of Mana and Energy Shield when you Focus", statOrder = { 9925 }, level = 72, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (29-31)% of Mana and Energy Shield when you Focus", statOrder = { 9925 }, level = 81, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(16-20)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(21-25)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(26-30)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(7-9)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(10-12)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(13-15)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(22-25)% increased Attack and Cast Speed while Focused", statOrder = { 4822 }, level = 60, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(26-30)% increased Attack and Cast Speed while Focused", statOrder = { 4822 }, level = 72, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(31-36)% increased Attack and Cast Speed while Focused", statOrder = { 4822 }, level = 81, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(16-20)% increased Duration of Ailments you inflict while Focused", statOrder = { 10225 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(21-25)% increased Duration of Ailments you inflict while Focused", statOrder = { 10225 }, level = 72, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(26-30)% increased Duration of Ailments you inflict while Focused", statOrder = { 10225 }, level = 81, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "You are Immune to Ailments while Focused", statOrder = { 7240 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocused", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life" }, "You have Vaal Pact while Focused", "10% of Damage Leeched as Life while Focused", statOrder = { 6829, 7363 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+5 to maximum Fortification while Focused", statOrder = { 9119 }, level = 60, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+6 to maximum Fortification while Focused", statOrder = { 9119 }, level = 72, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+7 to maximum Fortification while Focused", statOrder = { 9119 }, level = 81, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "skill", "unveiled_mod", "caster", "gem" }, "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", statOrder = { 834 }, level = 60, group = "TriggerSocketedSpellWhenYouFocus", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(11-15)% of Damage is taken from Mana before Life while Focused", statOrder = { 6089 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life", "minion" }, "Minions Recover 100% of their Life when you Focus", statOrder = { 9367 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocus", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(12-14)% increased Damage", statOrder = { 1191 }, level = 72, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(15-17)% increased Damage", statOrder = { 1191 }, level = 81, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+2 to Level of Socketed Support Gems", statOrder = { 189 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -1 to Total Mana Cost", statOrder = { 10061 }, level = 60, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -2 to Total Mana Cost", statOrder = { 10061 }, level = 72, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -3 to Total Mana Cost", statOrder = { 10061 }, level = 81, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -4 to Total Mana Cost", statOrder = { 10063 }, level = 60, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -5 to Total Mana Cost", statOrder = { 10063 }, level = 72, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -(7-6) to Total Mana Cost", statOrder = { 10063 }, level = 81, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(31-36)% increased Damage while Leeching", statOrder = { 3063 }, level = 72, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(37-43)% increased Damage while Leeching", statOrder = { 3063 }, level = 81, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+(6-7)% to Quality of Socketed Gems", statOrder = { 204 }, level = 72, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+(7-8)% to Quality of Socketed Gems", statOrder = { 204 }, level = 81, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (11-13) to (16-17) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (14-16) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (7-8) to (10-11) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (9-11) to (12-14) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "attack" }, "Hits can't be Evaded", statOrder = { 2043 }, level = 60, group = "AlwaysHits", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod", "damage" }, "(19-23)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 72, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod", "damage" }, "(24-28)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 81, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "drop" }, "(36-40)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9831 }, level = 72, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "drop" }, "(41-45)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9831 }, level = 81, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 72, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (14-16)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 81, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (5-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 72, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (7-8)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 81, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (14-16)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 81, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (5-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (7-8)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 81, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 72, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (14-16)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 81, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (5-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 72, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (7-8)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 81, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (14-16)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (5-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (7-8)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "5% increased Attributes", statOrder = { 1183 }, level = 72, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "6% increased Attributes", statOrder = { 1183 }, level = 81, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "aura" }, "Banner Skills have (12-15)% increased Aura Effect", statOrder = { 3362 }, level = 72, group = "BannerEffect", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "aura" }, "Banner Skills have (16-20)% increased Aura Effect", statOrder = { 3362 }, level = 81, group = "BannerEffect", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "minion" }, "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 60, group = "SummonWolfOnKillOld", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod" }, "(10-14)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 72, group = "WarcryBuffEffect", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod" }, "(15-18)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 81, group = "WarcryBuffEffect", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "80% chance to Avoid being Frozen", statOrder = { 1845 }, level = 72, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "100% chance to Avoid being Frozen", statOrder = { 1845 }, level = 81, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "(12-13)% increased Global Critical Strike Chance", "+(18-20)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1459, 5958 }, level = 72, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "(14-16)% increased Global Critical Strike Chance", "+(21-23)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1459, 5958 }, level = 81, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(11-13)% increased Global Physical Damage", "(11-13)% increased Chaos Damage", statOrder = { 1231, 1385 }, level = 72, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(14-16)% increased Global Physical Damage", "(14-16)% increased Chaos Damage", statOrder = { 1231, 1385 }, level = 81, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(11-13)% increased Fire Damage", "(11-13)% increased Lightning Damage", statOrder = { 1357, 1377 }, level = 72, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(14-16)% increased Fire Damage", "(14-16)% increased Lightning Damage", statOrder = { 1357, 1377 }, level = 81, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "resource", "unveiled_mod", "life" }, "Regenerate 3% of Life per second during Effect", statOrder = { 993 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod" }, "50% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod", "drop" }, "(20-30)% increased Rarity of Items found during Effect", statOrder = { 989 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod" }, "(45-55)% of Damage from your Hits cannot be Reflected during Effect", statOrder = { 968 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "resource", "unveiled_mod", "life" }, "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 992 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed", "attribute" }, "+(15-19) to Dexterity and Intelligence", "(8-10)% increased Attack Speed", statOrder = { 1182, 1413 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed", "attribute" }, "+(20-24) to Dexterity and Intelligence", "(13-16)% increased Attack Speed", statOrder = { 1182, 1413 }, level = 75, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical", "attribute" }, "+(15-19) to Strength and Intelligence", "(15-20)% increased Critical Strike Chance", statOrder = { 1181, 1464 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical", "attribute" }, "+(20-24) to Strength and Intelligence", "(21-25)% increased Critical Strike Chance", statOrder = { 1181, 1464 }, level = 75, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "attribute" }, "+(15-19) to Strength and Dexterity", "+(161-200) to Accuracy Rating", statOrder = { 1180, 2024 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "attribute" }, "+(20-24) to Strength and Dexterity", "+(201-250) to Accuracy Rating", statOrder = { 1180, 2024 }, level = 75, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(8-10)% increased Attack Speed", statOrder = { 792, 1413 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(13-16)% increased Attack Speed", statOrder = { 792, 1413 }, level = 75, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(12-14)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6731 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(15-18)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6731 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(19-24)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6731 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(8-9)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6731 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(10-12)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6731 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(13-16)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6731 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(9-10)% to Fire and Chaos Resistances", statOrder = { 6550 }, level = 60, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(11-12)% to Fire and Chaos Resistances", statOrder = { 6550 }, level = 72, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(13-15)% to Fire and Chaos Resistances", statOrder = { 6550 }, level = 81, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(9-10)% to Lightning and Chaos Resistances", statOrder = { 7436 }, level = 60, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(11-12)% to Lightning and Chaos Resistances", statOrder = { 7436 }, level = 72, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(13-15)% to Lightning and Chaos Resistances", statOrder = { 7436 }, level = 81, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(9-10)% to Cold and Chaos Resistances", statOrder = { 5800 }, level = 60, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(11-12)% to Cold and Chaos Resistances", statOrder = { 5800 }, level = 72, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(13-15)% to Cold and Chaos Resistances", statOrder = { 5800 }, level = 81, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1177, 1846 }, level = 60, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1177, 1846 }, level = 72, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1177, 1846 }, level = 81, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1178, 1845 }, level = 60, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1178, 1845 }, level = 72, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1178, 1845 }, level = 81, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1179, 1848 }, level = 60, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1179, 1848 }, level = 72, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1179, 1848 }, level = 81, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 60, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 72, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 81, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 60, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 72, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 81, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(11-13)% increased Brand Attachment range", statOrder = { 10044 }, level = 60, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(14-16)% increased Brand Attachment range", statOrder = { 10044 }, level = 72, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(17-20)% increased Brand Attachment range", statOrder = { 10044 }, level = 81, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(5-8)% increased maximum Life", "(5-8)% increased maximum Mana", statOrder = { 1571, 1580 }, level = 60, group = "PercentageLifeAndMana", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block", "unveiled_mod" }, "(5-7)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 60, group = "BlockPercent", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(6-8)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 60, group = "SpellBlockPercentage", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1843, 1851 }, level = 60, group = "AvoidStunAndElementalStatusAilments", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(6-7)% increased Area of Effect", "(9-10)% increased Area Damage", statOrder = { 1880, 2035 }, level = 60, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(8-9)% increased Area of Effect", "(11-13)% increased Area Damage", statOrder = { 1880, 2035 }, level = 72, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(10-12)% increased Area of Effect", "(14-16)% increased Area Damage", statOrder = { 1880, 2035 }, level = 81, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(10-12)% increased Projectile Speed", "(9-10)% increased Projectile Damage", statOrder = { 1796, 1996 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(13-16)% increased Projectile Speed", "(11-13)% increased Projectile Damage", statOrder = { 1796, 1996 }, level = 72, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(17-20)% increased Projectile Speed", "(14-16)% increased Projectile Damage", statOrder = { 1796, 1996 }, level = 81, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(9-10)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 60, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(11-13)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 72, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(14-16)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 81, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "Focus has (21-25)% increased Cooldown Recovery Rate", statOrder = { 6654 }, level = 60, group = "FocusCooldownRecovery", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(15-25) to maximum Life", statOrder = { 1591 }, level = 15, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(16-20)% to Fire Resistance", statOrder = { 1648 }, level = 15, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(16-20)% to Cold Resistance", statOrder = { 1654 }, level = 15, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(16-20)% to Lightning Resistance", statOrder = { 1659 }, level = 15, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Strength", statOrder = { 1200 }, level = 15, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Dexterity", statOrder = { 1201 }, level = 15, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Intelligence", statOrder = { 1202 }, level = 15, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(21-28)% to Fire Resistance", statOrder = { 1648 }, level = 30, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(29-35)% to Fire Resistance", statOrder = { 1648 }, level = 50, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(21-28)% to Cold Resistance", statOrder = { 1654 }, level = 30, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(29-35)% to Cold Resistance", statOrder = { 1654 }, level = 50, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(21-28)% to Lightning Resistance", statOrder = { 1659 }, level = 30, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(29-35)% to Lightning Resistance", statOrder = { 1659 }, level = 50, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(10-12)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 30, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(13-16)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 50, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(17-20)% to Fire and Cold Resistances", statOrder = { 2832 }, level = 75, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 30, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(13-16)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 50, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(17-20)% to Cold and Lightning Resistances", statOrder = { 2834 }, level = 75, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 30, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(13-16)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 50, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(17-20)% to Fire and Lightning Resistances", statOrder = { 2833 }, level = 75, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(5-8)% to all Elemental Resistances", statOrder = { 1642 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(9-12)% to all Elemental Resistances", statOrder = { 1642 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(4-6)% to all Elemental Resistances", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 1642, 2946 }, level = 30, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(7-9)% to all Elemental Resistances", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 1642, 2946 }, level = 60, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", statOrder = { 1200 }, level = 20, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Strength", statOrder = { 1200 }, level = 40, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", statOrder = { 1201 }, level = 20, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Dexterity", statOrder = { 1201 }, level = 40, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", statOrder = { 1202 }, level = 20, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Intelligence", statOrder = { 1202 }, level = 40, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(6-9) to all Attributes", statOrder = { 1199 }, level = 30, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-13) to all Attributes", statOrder = { 1199 }, level = 50, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(10-14)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(15-19)% increased Movement Speed", statOrder = { 1821 }, level = 40, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(20-24)% increased Movement Speed", statOrder = { 1821 }, level = 68, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(26-40) to maximum Life", statOrder = { 1591 }, level = 40, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(41-55) to maximum Life", statOrder = { 1591 }, level = 68, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(56-70) to maximum Life", statOrder = { 1591 }, level = 75, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(71-85) to maximum Life", statOrder = { 1591 }, level = 80, group = "IncreasedLife", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 30, group = "LifeLeechPermyriad", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 50, group = "LifeLeechPermyriad", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 30, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(2.6-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 50, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana", "physical", "attack" }, "(2-2.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 50, group = "ManaLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1602 }, level = 20, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1602 }, level = 40, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(75-84) to maximum Mana", statOrder = { 1602 }, level = 60, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(85-94) to maximum Mana", statOrder = { 1602 }, level = 75, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1602 }, level = 20, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1602 }, level = 40, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1602 }, level = 60, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1602 }, level = 75, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(25-34) to maximum Mana", statOrder = { 1602 }, level = 20, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1602 }, level = 40, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1602 }, level = 60, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(20-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 30, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(31-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 50, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(30-45)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 30, group = "ManaRegeneration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(46-60)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 50, group = "ManaRegeneration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(40-59)% increased Physical Damage", statOrder = { 1255 }, level = 20, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(60-79)% increased Physical Damage", statOrder = { 1255 }, level = 40, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(80-99)% increased Physical Damage", statOrder = { 1255 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(100-129)% increased Physical Damage", statOrder = { 1255 }, level = 80, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(44-60)% increased Spell Damage", statOrder = { 1246 }, level = 20, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(61-78)% increased Spell Damage", statOrder = { 1246 }, level = 40, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(79-95)% increased Spell Damage", statOrder = { 1246 }, level = 60, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(96-115)% increased Spell Damage", statOrder = { 1246 }, level = 80, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(25-34)% increased Spell Damage", statOrder = { 1246 }, level = 20, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(35-44)% increased Spell Damage", statOrder = { 1246 }, level = 40, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(45-54)% increased Spell Damage", statOrder = { 1246 }, level = 60, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(55-66)% increased Spell Damage", statOrder = { 1246 }, level = 80, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(11-20)% increased Damage over Time", statOrder = { 1233 }, level = 30, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(21-30)% increased Damage over Time", statOrder = { 1233 }, level = 50, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(15-23)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(24-32)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 50, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(8-10)% increased Attack Speed", statOrder = { 1437 }, level = 30, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-15)% increased Attack Speed", statOrder = { 1437 }, level = 50, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(16-20)% increased Attack Speed", statOrder = { 1437 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-13)% increased Attack Speed", statOrder = { 1437 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(7-12)% increased Attack Speed", statOrder = { 1434 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Gloves"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(15-20)% increased Cast Speed", statOrder = { 1470 }, level = 30, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(21-26)% increased Cast Speed", statOrder = { 1470 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(27-32)% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(10-13)% increased Cast Speed", statOrder = { 1470 }, level = 30, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(14-17)% increased Cast Speed", statOrder = { 1470 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(18-21)% increased Cast Speed", statOrder = { 1470 }, level = 75, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(44-60)% increased Fire Damage", statOrder = { 1381 }, level = 20, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(61-78)% increased Fire Damage", statOrder = { 1381 }, level = 40, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(79-95)% increased Fire Damage", statOrder = { 1381 }, level = 68, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(25-34)% increased Fire Damage", statOrder = { 1381 }, level = 20, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(35-44)% increased Fire Damage", statOrder = { 1381 }, level = 40, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(45-54)% increased Fire Damage", statOrder = { 1381 }, level = 68, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(9-12)% increased Fire Damage", statOrder = { 1381 }, level = 20, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(13-16)% increased Fire Damage", statOrder = { 1381 }, level = 40, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(44-60)% increased Cold Damage", statOrder = { 1390 }, level = 20, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(61-78)% increased Cold Damage", statOrder = { 1390 }, level = 40, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(79-95)% increased Cold Damage", statOrder = { 1390 }, level = 68, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(25-34)% increased Cold Damage", statOrder = { 1390 }, level = 20, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(35-44)% increased Cold Damage", statOrder = { 1390 }, level = 40, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(45-54)% increased Cold Damage", statOrder = { 1390 }, level = 68, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(9-12)% increased Cold Damage", statOrder = { 1390 }, level = 20, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(13-16)% increased Cold Damage", statOrder = { 1390 }, level = 40, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(44-60)% increased Lightning Damage", statOrder = { 1401 }, level = 20, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(61-78)% increased Lightning Damage", statOrder = { 1401 }, level = 40, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(79-95)% increased Lightning Damage", statOrder = { 1401 }, level = 68, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(25-34)% increased Lightning Damage", statOrder = { 1401 }, level = 20, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(35-44)% increased Lightning Damage", statOrder = { 1401 }, level = 40, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(45-54)% increased Lightning Damage", statOrder = { 1401 }, level = 68, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(9-12)% increased Lightning Damage", statOrder = { 1401 }, level = 20, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(13-16)% increased Lightning Damage", statOrder = { 1401 }, level = 40, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(44-60)% increased Chaos Damage", statOrder = { 1409 }, level = 20, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(61-78)% increased Chaos Damage", statOrder = { 1409 }, level = 40, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(79-95)% increased Chaos Damage", statOrder = { 1409 }, level = 68, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(25-34)% increased Chaos Damage", statOrder = { 1409 }, level = 30, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(35-44)% increased Chaos Damage", statOrder = { 1409 }, level = 50, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(45-54)% increased Chaos Damage", statOrder = { 1409 }, level = 68, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(9-12)% increased Chaos Damage", statOrder = { 1409 }, level = 30, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(13-16)% increased Chaos Damage", statOrder = { 1409 }, level = 50, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 2047 }, level = 20, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-200) to Accuracy Rating", statOrder = { 2047 }, level = 40, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(201-300) to Accuracy Rating", statOrder = { 2047 }, level = 68, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1457 }, level = 20, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-150) to Accuracy Rating", statOrder = { 1457 }, level = 40, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(151-220) to Accuracy Rating", statOrder = { 1457 }, level = 68, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(9-12)% increased Global Physical Damage", statOrder = { 1254 }, level = 30, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(13-16)% increased Global Physical Damage", statOrder = { 1254 }, level = 50, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(26-35)% increased Armour", statOrder = { 1564 }, level = 30, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(41-50)% increased Armour", statOrder = { 1564 }, level = 50, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(56-74)% increased Armour", statOrder = { 1564 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(50-75) to Armour", statOrder = { 1562 }, level = 30, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(100-150) to Armour", statOrder = { 1562 }, level = 50, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(250-320) to Armour", statOrder = { 1562 }, level = 68, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(26-35)% increased Evasion Rating", statOrder = { 1572 }, level = 30, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(41-50)% increased Evasion Rating", statOrder = { 1572 }, level = 50, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(56-74)% increased Evasion Rating", statOrder = { 1572 }, level = 75, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(50-75) to Evasion Rating", statOrder = { 1570 }, level = 30, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(100-150) to Evasion Rating", statOrder = { 1570 }, level = 50, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(250-320) to Evasion Rating", statOrder = { 1570 }, level = 68, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(26-35)% increased Energy Shield", statOrder = { 1582 }, level = 30, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(41-50)% increased Energy Shield", statOrder = { 1582 }, level = 50, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(56-74)% increased Energy Shield", statOrder = { 1582 }, level = 75, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(17-22) to maximum Energy Shield", statOrder = { 1581 }, level = 30, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(35-45) to maximum Energy Shield", statOrder = { 1581 }, level = 50, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(56-69) to maximum Energy Shield", statOrder = { 1581 }, level = 68, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(10-12)% increased maximum Energy Shield", statOrder = { 1583 }, level = 60, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(13-15)% increased maximum Energy Shield", statOrder = { 1583 }, level = 75, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(21-25) to maximum Energy Shield", statOrder = { 1580 }, level = 50, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(26-30) to maximum Energy Shield", statOrder = { 1580 }, level = 68, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(26-35)% increased Armour and Evasion", statOrder = { 1575 }, level = 30, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(41-50)% increased Armour and Evasion", statOrder = { 1575 }, level = 50, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(56-74)% increased Armour and Evasion", statOrder = { 1575 }, level = 75, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(26-35)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 30, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(41-50)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 50, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(56-74)% increased Armour and Energy Shield", statOrder = { 1574 }, level = 75, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(26-35)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 30, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(41-50)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 50, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(56-74)% increased Evasion and Energy Shield", statOrder = { 1576 }, level = 75, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-21) to (32-41) Fire Damage", statOrder = { 1386 }, level = 20, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (38-46) to (73-85) Fire Damage", statOrder = { 1386 }, level = 40, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (60-72) to (110-128) Fire Damage", statOrder = { 1386 }, level = 68, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (11-12) to (19-23) Fire Damage", statOrder = { 1386 }, level = 20, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (22-27) to (42-49) Fire Damage", statOrder = { 1386 }, level = 40, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (35-41) to (63-73) Fire Damage", statOrder = { 1386 }, level = 68, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (8-11) to (16-20) Fire Damage to Attacks", statOrder = { 1384 }, level = 20, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (12-17) to (26-30) Fire Damage to Attacks", statOrder = { 1384 }, level = 40, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-21) to (32-41) Cold Damage", statOrder = { 1395 }, level = 20, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (38-46) to (73-85) Cold Damage", statOrder = { 1395 }, level = 40, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (60-72) to (110-128) Cold Damage", statOrder = { 1395 }, level = 68, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-12) to (19-23) Cold Damage", statOrder = { 1395 }, level = 20, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (22-27) to (42-49) Cold Damage", statOrder = { 1395 }, level = 40, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (35-41) to (63-73) Cold Damage", statOrder = { 1395 }, level = 68, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (6-8) to (14-18) Cold Damage to Attacks", statOrder = { 1393 }, level = 20, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-15) to (23-27) Cold Damage to Attacks", statOrder = { 1393 }, level = 40, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (2-5) to (46-64) Lightning Damage", statOrder = { 1406 }, level = 20, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-9) to (104-139) Lightning Damage", statOrder = { 1406 }, level = 40, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (10-14) to (162-197) Lightning Damage", statOrder = { 1406 }, level = 68, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-3) to (27-37) Lightning Damage", statOrder = { 1406 }, level = 20, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-5) to (60-80) Lightning Damage", statOrder = { 1406 }, level = 40, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-8) to (100-113) Lightning Damage", statOrder = { 1406 }, level = 68, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1404 }, level = 20, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-5) to (41-48) Lightning Damage to Attacks", statOrder = { 1404 }, level = 40, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (9-12) to (18-21) Physical Damage", statOrder = { 1300 }, level = 20, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (11-15) to (23-27) Physical Damage", statOrder = { 1300 }, level = 40, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (18-24) to (36-42) Physical Damage", statOrder = { 1300 }, level = 68, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (6-8) to (13-15) Physical Damage", statOrder = { 1300 }, level = 20, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (7-11) to (16-19) Physical Damage", statOrder = { 1300 }, level = 40, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (13-17) to (26-30) Physical Damage", statOrder = { 1300 }, level = 68, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (3-5) to (6-8) Physical Damage to Attacks", statOrder = { 1290 }, level = 20, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (5-7) to (8-10) Physical Damage to Attacks", statOrder = { 1290 }, level = 40, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (6-8) to (14-18) Chaos Damage to Attacks", statOrder = { 1411 }, level = 30, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (11-15) to (23-27) Chaos Damage to Attacks", statOrder = { 1411 }, level = 68, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (22-29) to (42-49) Fire Damage to Spells", statOrder = { 1428 }, level = 30, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (38-52) to (78-90) Fire Damage to Spells", statOrder = { 1428 }, level = 50, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (56-75) to (114-132) Fire Damage to Spells", statOrder = { 1428 }, level = 68, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (13-18) to (25-30) Fire Damage to Spells", statOrder = { 1428 }, level = 30, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (23-31) to (46-54) Fire Damage to Spells", statOrder = { 1428 }, level = 50, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (34-45) to (67-78) Fire Damage to Spells", statOrder = { 1428 }, level = 68, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (19-26) to (38-45) Cold Damage to Spells", statOrder = { 1429 }, level = 30, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (36-47) to (71-82) Cold Damage to Spells", statOrder = { 1429 }, level = 50, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (52-69) to (103-121) Cold Damage to Spells", statOrder = { 1429 }, level = 68, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (11-14) to (21-24) Cold Damage to Spells", statOrder = { 1429 }, level = 30, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1429 }, level = 50, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (28-36) to (55-64) Cold Damage to Spells", statOrder = { 1429 }, level = 68, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-7) to (81-86) Lightning Damage to Spells", statOrder = { 1430 }, level = 30, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (4-12) to (149-158) Lightning Damage to Spells", statOrder = { 1430 }, level = 50, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (5-18) to (218-230) Lightning Damage to Spells", statOrder = { 1430 }, level = 68, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-4) to (43-46) Lightning Damage to Spells", statOrder = { 1430 }, level = 30, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (2-7) to (80-85) Lightning Damage to Spells", statOrder = { 1430 }, level = 50, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-10) to (117-123) Lightning Damage to Spells", statOrder = { 1430 }, level = 68, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(17-19)% increased Critical Strike Chance", statOrder = { 1487 }, level = 40, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(20-24)% increased Critical Strike Chance", statOrder = { 1487 }, level = 60, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(25-27)% increased Critical Strike Chance", statOrder = { 1487 }, level = 75, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 40, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 60, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(25-28)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 75, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(70-89)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(90-120)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(50-59)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(60-69)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(17-21)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 50, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(22-27)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 68, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(5-10)% increased Flask Effect Duration", statOrder = { 2210 }, level = 50, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(11-15)% increased Flask Effect Duration", statOrder = { 2210 }, level = 68, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "(15-20)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 30, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "(21-25)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 60, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 30, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 60, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(24-30)% reduced Effect of Chill and Shock on you", statOrder = { 10163 }, level = 30, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(31-40)% reduced Effect of Chill and Shock on you", statOrder = { 10163 }, level = 60, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(31-40)% increased Chance to Block", statOrder = { 94 }, level = 50, group = "LocalIncreasedBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(41-50)% increased Chance to Block", statOrder = { 94 }, level = 68, group = "LocalIncreasedBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(3-4)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 50, group = "SpellBlockPercentagePrefix", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(5-6)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 68, group = "SpellBlockPercentagePrefix", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(5-6)% increased Life Regeneration rate", statOrder = { 1600 }, level = 40, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(7-8)% increased Life Regeneration rate", statOrder = { 1600 }, level = 60, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "2% additional Physical Damage Reduction", statOrder = { 2296 }, level = 40, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "3% additional Physical Damage Reduction", statOrder = { 2296 }, level = 60, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(3-4)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-7)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 40, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(12-14)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 60, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 40, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 60, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "Upgraded", modTags = { "damage" }, "5% reduced Damage taken from Damage Over Time", statOrder = { 2268 }, level = 80, group = "DegenDamageTaken", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "Light Radius is based on Energy Shield instead of Life", statOrder = { 2775 }, level = 68, group = "LightRadiusScalesWithEnergyShield", types = { ["Helmet"] = true, ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (11-15)% increased maximum Life", statOrder = { 1789 }, level = 40, group = "MinionLife", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (16-20)% increased maximum Life", statOrder = { 1789 }, level = 68, group = "MinionLife", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (10-20)% increased Damage", statOrder = { 1996 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (13-17)% increased Movement Speed", statOrder = { 1792 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (18-22)% increased Movement Speed", statOrder = { 1792 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (37-51)% increased Damage", statOrder = { 1996 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (52-66)% increased Damage", statOrder = { 1996 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (67-81)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (25-34)% increased Damage", statOrder = { 1996 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (35-44)% increased Damage", statOrder = { 1996 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (45-54)% increased Damage", statOrder = { 1996 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(61-78)% increased Trap Damage", statOrder = { 1217 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(79-95)% increased Trap Damage", statOrder = { 1217 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Trap Damage", statOrder = { 1217 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Trap Damage", statOrder = { 1217 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(61-78)% increased Mine Damage", statOrder = { 1219 }, level = 50, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(79-95)% increased Mine Damage", statOrder = { 1219 }, level = 68, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Mine Damage", statOrder = { 1219 }, level = 50, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Mine Damage", statOrder = { 1219 }, level = 68, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(3-5)% increased Attack Speed", statOrder = { 1434 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(6-9)% increased Cast Speed", statOrder = { 1470 }, level = 30, group = "IncreasedCastSpeed", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(15-20)% increased Warcry Speed", statOrder = { 3313 }, level = 30, group = "WarcrySpeed", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Control", modTags = { }, "Warcries cannot Exert Travel Skills", statOrder = { 10575 }, level = 1, group = "TravelSkillsCannotBeExerted", types = { ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3228 }, level = 30, group = "NoExtraBleedDamageWhileMoving", types = { ["Shield"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(31-36)% Chaos Resistance against Damage Over Time", statOrder = { 5812 }, level = 30, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(37-43)% Chaos Resistance against Damage Over Time", statOrder = { 5812 }, level = 60, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(41-50)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 30, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(51-60)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 60, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(41-50)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 30, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(51-60)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 60, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(41-50)% reduced Effect of Chill on you", statOrder = { 1668 }, level = 30, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(51-60)% reduced Effect of Chill on you", statOrder = { 1668 }, level = 60, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(41-50)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 30, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(51-60)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 60, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(16-20)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 30, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(21-25)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 60, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(11-15)% reduced Effect of Freeze on you", statOrder = { 5074 }, level = 30, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(16-20)% reduced Effect of Freeze on you", statOrder = { 5074 }, level = 60, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (9-11) to (16-21) Fire Damage to Attacks", statOrder = { 1384 }, level = 20, group = "FireDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-23) to (37-42) Fire Damage to Attacks", statOrder = { 1384 }, level = 40, group = "FireDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (9-11) to (16-21) Cold Damage to Attacks", statOrder = { 1393 }, level = 20, group = "ColdDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-23) to (37-42) Cold Damage to Attacks", statOrder = { 1393 }, level = 40, group = "ColdDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1404 }, level = 20, group = "LightningDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-6) to (52-70) Lightning Damage to Attacks", statOrder = { 1404 }, level = 40, group = "LightningDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "vaal" }, "(20-60)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 24, group = "VaalSkillDamage", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flat_life_regen", "resource", "life", "mana" }, "Regenerate (12-20) Life per second", "Regenerate (1.8-3) Mana per second", statOrder = { 1596, 1605 }, level = 30, group = "LifeRegenerationAndManaRegeneration", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "skill", "caster", "gem" }, "Trigger a Socketed Spell when you Use a Skill, with a 8 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 854, 854.1 }, level = 75, group = "TriggerSocketedSpellOnSkillUse", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1255, 7967 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1255, 7967 }, level = 72, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1255, 7967 }, level = 81, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to cause Bleeding on Hit", statOrder = { 1255, 2509 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to cause Bleeding on Hit", statOrder = { 1255, 2509 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to cause Bleeding on Hit", statOrder = { 1255, 2509 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Blind Enemies on hit", statOrder = { 1255, 2286 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Blind Enemies on hit", statOrder = { 1255, 2286 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Blind Enemies on hit", statOrder = { 1255, 2286 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Poison on Hit", statOrder = { 1255, 8116 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Poison on Hit", statOrder = { 1255, 8116 }, level = 72, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Poison on Hit", statOrder = { 1255, 8116 }, level = 81, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(63-73)% increased Fire Damage", "(21-24)% chance to Ignite", statOrder = { 1381, 2049 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(74-88)% increased Fire Damage", "(25-28)% chance to Ignite", statOrder = { 1381, 2049 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(89-105)% increased Fire Damage", "(29-34)% chance to Ignite", statOrder = { 1381, 2049 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(36-41)% increased Fire Damage", "(13-15)% chance to Ignite", statOrder = { 1381, 2049 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(42-50)% increased Fire Damage", "(16-17)% chance to Ignite", statOrder = { 1381, 2049 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(51-60)% increased Fire Damage", "(18-20)% chance to Ignite", statOrder = { 1381, 2049 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(63-73)% increased Cold Damage", "(21-24)% chance to Freeze", statOrder = { 1390, 2052 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(74-88)% increased Cold Damage", "(25-28)% chance to Freeze", statOrder = { 1390, 2052 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(89-105)% increased Cold Damage", "(29-34)% chance to Freeze", statOrder = { 1390, 2052 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(36-41)% increased Cold Damage", "(13-15)% chance to Freeze", statOrder = { 1390, 2052 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(42-50)% increased Cold Damage", "(16-17)% chance to Freeze", statOrder = { 1390, 2052 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(51-60)% increased Cold Damage", "(18-20)% chance to Freeze", statOrder = { 1390, 2052 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(63-73)% increased Lightning Damage", "(21-24)% chance to Shock", statOrder = { 1401, 2056 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(74-88)% increased Lightning Damage", "(25-28)% chance to Shock", statOrder = { 1401, 2056 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(89-105)% increased Lightning Damage", "(29-34)% chance to Shock", statOrder = { 1401, 2056 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(36-41)% increased Lightning Damage", "(13-15)% chance to Shock", statOrder = { 1401, 2056 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(42-50)% increased Lightning Damage", "(16-17)% chance to Shock", statOrder = { 1401, 2056 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(51-60)% increased Lightning Damage", "(18-20)% chance to Shock", statOrder = { 1401, 2056 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(60-69)% increased Chaos Damage", "Chaos Skills have (15-17)% increased Skill Effect Duration", statOrder = { 1409, 1919 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(70-79)% increased Chaos Damage", "Chaos Skills have (18-20)% increased Skill Effect Duration", statOrder = { 1409, 1919 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(80-89)% increased Chaos Damage", "Chaos Skills have (21-23)% increased Skill Effect Duration", statOrder = { 1409, 1919 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(35-39)% increased Chaos Damage", "Chaos Skills have (7-8)% increased Skill Effect Duration", statOrder = { 1409, 1919 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(40-45)% increased Chaos Damage", "Chaos Skills have (9-10)% increased Skill Effect Duration", statOrder = { 1409, 1919 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(46-50)% increased Chaos Damage", "Chaos Skills have (11-12)% increased Skill Effect Duration", statOrder = { 1409, 1919 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(63-73)% increased Spell Damage", "(16-20)% increased Mana Regeneration Rate", statOrder = { 1246, 1607 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(74-88)% increased Spell Damage", "(21-25)% increased Mana Regeneration Rate", statOrder = { 1246, 1607 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(89-105)% increased Spell Damage", "(26-30)% increased Mana Regeneration Rate", statOrder = { 1246, 1607 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(36-41)% increased Spell Damage", "(7-9)% increased Mana Regeneration Rate", statOrder = { 1246, 1607 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(42-50)% increased Spell Damage", "(10-12)% increased Mana Regeneration Rate", statOrder = { 1246, 1607 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(51-60)% increased Spell Damage", "(13-15)% increased Mana Regeneration Rate", statOrder = { 1246, 1607 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(60-69)% increased Spell Damage", "Gain (3-4)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(70-79)% increased Spell Damage", "Gain (5-6)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(80-89)% increased Spell Damage", "Gain (7-8)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(38-40)% increased Spell Damage", "Gain 2% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(41-45)% increased Spell Damage", "Gain 3% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(46-50)% increased Spell Damage", "Gain 4% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (26-32)% increased maximum Life", "Minions deal (26-32)% increased Damage", statOrder = { 1789, 1996 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (33-38)% increased maximum Life", "Minions deal (33-38)% increased Damage", statOrder = { 1789, 1996 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (39-45)% increased maximum Life", "Minions deal (39-45)% increased Damage", statOrder = { 1789, 1996 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (16-19)% increased maximum Life", "Minions deal (16-19)% increased Damage", statOrder = { 1789, 1996 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (20-24)% increased maximum Life", "Minions deal (20-24)% increased Damage", statOrder = { 1789, 1996 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (25-28)% increased maximum Life", "Minions deal (25-28)% increased Damage", statOrder = { 1789, 1996 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (19-21)% increased Attack Speed", "Minions have (19-21)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (22-24)% increased Attack Speed", "Minions have (22-24)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (10-11)% increased Attack Speed", "Minions have (10-11)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (12-13)% increased Attack Speed", "Minions have (12-13)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (14-15)% increased Attack Speed", "Minions have (14-15)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(25-27)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(28-30)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(31-35)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(14-15)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(16-17)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(18-20)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(25-27)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(28-30)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(31-35)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(14-15)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(16-17)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(18-20)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(25-27)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(28-30)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(31-35)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(14-15)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(16-17)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(18-20)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(25-27)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(28-30)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(31-35)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(14-15)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(16-17)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(18-20)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3797 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Elemental Resistances", statOrder = { 3797 }, level = 72, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Elemental Resistances", statOrder = { 3797 }, level = 81, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7984 }, level = 60, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Chaos Resistance", statOrder = { 7984 }, level = 72, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Chaos Resistance", statOrder = { 7984 }, level = 81, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(6-7)% chance to deal Double Damage", statOrder = { 5737 }, level = 60, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(8-10)% chance to deal Double Damage", statOrder = { 5737 }, level = 72, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "3% chance to deal Double Damage", statOrder = { 5737 }, level = 60, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(4-5)% chance to deal Double Damage", statOrder = { 5737 }, level = 72, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(8-9) to maximum Life", statOrder = { 1575, 1591 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1575, 1591 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(12-14) to maximum Life", statOrder = { 1575, 1591 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1574, 1591 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1574, 1591 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1574, 1591 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1576, 1591 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1576, 1591 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1576, 1591 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(8-9) to maximum Life", statOrder = { 1564, 1591 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1564, 1591 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(12-14) to maximum Life", statOrder = { 1564, 1591 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(8-9) to maximum Life", statOrder = { 1572, 1591 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1572, 1591 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(12-14) to maximum Life", statOrder = { 1572, 1591 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(8-9) to maximum Life", statOrder = { 1582, 1591 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1582, 1591 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(12-14) to maximum Life", statOrder = { 1582, 1591 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1577, 1591 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1577, 1591 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1577, 1591 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1575, 1591 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(12-13) to maximum Life", statOrder = { 1575, 1591 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(14-16) to maximum Life", statOrder = { 1575, 1591 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1574, 1591 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1574, 1591 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1574, 1591 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1576, 1591 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1576, 1591 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1576, 1591 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1564, 1591 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(12-13) to maximum Life", statOrder = { 1564, 1591 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(14-16) to maximum Life", statOrder = { 1564, 1591 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1572, 1591 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(12-13) to maximum Life", statOrder = { 1572, 1591 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(14-16) to maximum Life", statOrder = { 1572, 1591 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1582, 1591 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(12-13) to maximum Life", statOrder = { 1582, 1591 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(14-16) to maximum Life", statOrder = { 1582, 1591 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1577, 1591 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1577, 1591 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1577, 1591 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(13-14) to maximum Life", statOrder = { 1575, 1591 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(15-16) to maximum Life", statOrder = { 1575, 1591 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1575, 1591 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1574, 1591 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1574, 1591 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1574, 1591 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1576, 1591 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1576, 1591 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1576, 1591 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(13-14) to maximum Life", statOrder = { 1564, 1591 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(15-16) to maximum Life", statOrder = { 1564, 1591 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1564, 1591 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(13-14) to maximum Life", statOrder = { 1572, 1591 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(15-16) to maximum Life", statOrder = { 1572, 1591 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1572, 1591 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(13-14) to maximum Life", statOrder = { 1582, 1591 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(15-16) to maximum Life", statOrder = { 1582, 1591 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1582, 1591 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1577, 1591 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1577, 1591 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1577, 1591 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Dexterity", statOrder = { 1203 }, level = 60, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Dexterity", statOrder = { 1203 }, level = 72, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Dexterity", statOrder = { 1203 }, level = 81, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Dexterity and Intelligence", statOrder = { 1205 }, level = 60, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Dexterity and Intelligence", statOrder = { 1205 }, level = 72, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Dexterity and Intelligence", statOrder = { 1205 }, level = 81, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Intelligence", statOrder = { 1204 }, level = 60, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Intelligence", statOrder = { 1204 }, level = 72, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Intelligence", statOrder = { 1204 }, level = 81, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "endurance_charge", "unveiled_mod" }, "+1 to Minimum Endurance Charges", statOrder = { 1826 }, level = 75, group = "MinimumEnduranceCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "power_charge", "unveiled_mod" }, "+1 to Minimum Power Charges", statOrder = { 1836 }, level = 75, group = "MinimumPowerCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod" }, "+1 to Minimum Frenzy Charges", statOrder = { 1831 }, level = 75, group = "MinimumFrenzyCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "Regenerate 2 Mana per second", statOrder = { 1602, 1605 }, level = 60, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "Regenerate 3 Mana per second", statOrder = { 1602, 1605 }, level = 72, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "Regenerate 4 Mana per second", statOrder = { 1602, 1605 }, level = 81, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "(6-7)% increased Mana Cost Efficiency", statOrder = { 1602, 5086 }, level = 60, group = "ManaAndManaCostEfficiency", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "(8-9)% increased Mana Cost Efficiency", statOrder = { 1602, 5086 }, level = 72, group = "ManaAndManaCostEfficiency", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "(10-12)% increased Mana Cost Efficiency", statOrder = { 1602, 5086 }, level = 81, group = "ManaAndManaCostEfficiency", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "4% of Damage taken Recouped as Mana", statOrder = { 1602, 2480 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "5% of Damage taken Recouped as Mana", statOrder = { 1602, 2480 }, level = 72, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "6% of Damage taken Recouped as Mana", statOrder = { 1602, 2480 }, level = 81, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "3% increased Attack and Cast Speed", statOrder = { 2069 }, level = 60, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "4% increased Attack and Cast Speed", statOrder = { 2069 }, level = 25, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(5-6)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 50, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1821, 3259 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1821, 3259 }, level = 72, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1821, 3259 }, level = 81, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1821, 3027 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1821, 3027 }, level = 72, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1821, 3027 }, level = 81, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(13-14)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1821, 1867 }, level = 60, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(15-17)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1821, 1867 }, level = 72, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(18-20)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1821, 1867 }, level = 81, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(105-150) to Armour and Evasion Rating", statOrder = { 4302 }, level = 60, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(151-213) to Armour and Evasion Rating", statOrder = { 4302 }, level = 72, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(214-285) to Armour and Evasion Rating", statOrder = { 4302 }, level = 81, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(105-150) to Armour", "+(11-15) to maximum Energy Shield", statOrder = { 1561, 1580 }, level = 60, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(151-213) to Armour", "+(16-20) to maximum Energy Shield", statOrder = { 1561, 1580 }, level = 72, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(214-285) to Armour", "+(21-25) to maximum Energy Shield", statOrder = { 1561, 1580 }, level = 81, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(105-150) to Evasion Rating", "+(11-15) to maximum Energy Shield", statOrder = { 1566, 1580 }, level = 60, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(151-213) to Evasion Rating", "+(16-20) to maximum Energy Shield", statOrder = { 1566, 1580 }, level = 72, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(214-285) to Evasion Rating", "+(21-25) to maximum Energy Shield", statOrder = { 1566, 1580 }, level = 81, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod" }, "20% reduced Flask Charges gained", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2206, 2776 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod" }, "33% reduced Flask Charges gained", "Flasks applied to you have (11-14)% increased Effect", statOrder = { 2206, 2776 }, level = 75, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "(6-8)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 60, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "(9-12)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 75, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Power Charge", statOrder = { 6152 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Power Charge", statOrder = { 6152 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, "(20-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 60, group = "ConvertPhysicalToFire", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, "(20-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 60, group = "ConvertPhysicalToCold", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, "(20-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 60, group = "ConvertPhysicalToLightning", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "minion" }, "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 2183, 2185 }, level = 60, group = "MaximumMinionCount", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(16-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(23-30)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "curse" }, "(4-5)% increased Effect of your Curses", statOrder = { 2622 }, level = 60, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "curse" }, "(6-7)% increased Effect of your Curses", statOrder = { 2622 }, level = 75, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental" }, "(6-7)% chance to Avoid Damage of each Element from Hits during Soul Gain Prevention", statOrder = { 4993 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental" }, "(8-9)% chance to Avoid Damage of each Element from Hits during Soul Gain Prevention", statOrder = { 4993 }, level = 75, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(1000-1600) to Armour during Soul Gain Prevention", statOrder = { 9794 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(1601-2200) to Armour during Soul Gain Prevention", statOrder = { 9794 }, level = 72, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(2201-3000) to Armour during Soul Gain Prevention", statOrder = { 9794 }, level = 81, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "You have Onslaught during Soul Gain Prevention", statOrder = { 6873 }, level = 50, group = "GainOnslaughtDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(30-40)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6170 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(41-50)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6170 }, level = 72, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(51-60)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6170 }, level = 81, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 182, 1903 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 183, 1813 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "attack", "attack", "gem" }, "+1 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 185, 2560 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(25-31)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 6044 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(32-38)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 6044 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(39-45)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 6044 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(17-21)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 6044 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(22-25)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 6044 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(26-30)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 6044 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(14-16)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4950 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(17-19)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4950 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(20-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4950 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "7% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4950 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(8-9)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4950 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(10-11)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4950 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 90 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6544 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6544 }, level = 72, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 150 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6544 }, level = 81, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(9-10)% increased Global Critical Strike Chance", "3% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1482, 6847 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(11-12)% increased Global Critical Strike Chance", "4% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1482, 6847 }, level = 72, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(13-14)% increased Global Critical Strike Chance", "5% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1482, 6847 }, level = 81, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(11-12)% increased Global Critical Strike Chance", "(14-16)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1482, 6390 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(13-14)% increased Global Critical Strike Chance", "(17-19)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1482, 6390 }, level = 72, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(15-16)% increased Global Critical Strike Chance", "(20-22)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1482, 6390 }, level = 81, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(11-12)% increased Global Critical Strike Chance", "Adds (10-11) to (14-16) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1482, 9356 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(13-14)% increased Global Critical Strike Chance", "Adds (12-13) to (17-20) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1482, 9356 }, level = 72, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(15-16)% increased Global Critical Strike Chance", "Adds (14-16) to (21-24) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1482, 9356 }, level = 81, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(28-33) to maximum Life", "Regenerate 2 Mana per second", statOrder = { 1591, 1605 }, level = 60, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(34-40) to maximum Life", "Regenerate 3 Mana per second", statOrder = { 1591, 1605 }, level = 72, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(41-45) to maximum Life", "Regenerate 4 Mana per second", statOrder = { 1591, 1605 }, level = 81, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 15 Life per second", "+(28-33) to maximum Mana", statOrder = { 1596, 1602 }, level = 60, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 20 Life per second", "+(34-40) to maximum Mana", statOrder = { 1596, 1602 }, level = 72, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 25 Life per second", "+(41-45) to maximum Mana", statOrder = { 1596, 1602 }, level = 81, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Totem Placement speed", statOrder = { 2604 }, level = 60, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(21-25)% increased Totem Placement speed", statOrder = { 2604 }, level = 72, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(26-30)% increased Totem Placement speed", statOrder = { 2604 }, level = 81, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (6-7) to (9-10) Fire Damage", "Adds (6-7) to (9-10) Cold Damage", statOrder = { 1383, 1392 }, level = 60, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (8-9) to (11-13) Fire Damage", "Adds (8-9) to (11-13) Cold Damage", statOrder = { 1383, 1392 }, level = 72, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (10-12) to (14-16) Fire Damage", "Adds (10-12) to (14-16) Cold Damage", statOrder = { 1383, 1392 }, level = 81, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (6-7) to (9-10) Fire Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1383, 1403 }, level = 60, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (8-9) to (11-13) Fire Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1383, 1403 }, level = 72, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (10-12) to (14-16) Fire Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1383, 1403 }, level = 81, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (6-7) to (9-10) Cold Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1392, 1403 }, level = 60, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (8-9) to (11-13) Cold Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1392, 1403 }, level = 72, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (10-12) to (14-16) Cold Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1392, 1403 }, level = 81, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "critical" }, "Your Critical Strike Chance is Lucky while Focused", statOrder = { 6618 }, level = 72, group = "LuckyCriticalsDuringFocus", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(16-18)% increased Evasion Rating while Focused", statOrder = { 6565 }, level = 60, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(19-22)% increased Evasion Rating while Focused", statOrder = { 6565 }, level = 72, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(23-25)% increased Evasion Rating while Focused", statOrder = { 6565 }, level = 81, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "8% additional Physical Damage Reduction while Focused", statOrder = { 4615 }, level = 60, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "(9-10)% additional Physical Damage Reduction while Focused", statOrder = { 4615 }, level = 72, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "(11-12)% additional Physical Damage Reduction while Focused", statOrder = { 4615 }, level = 81, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 2 Seconds when you Focus", statOrder = { 10158 }, level = 60, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 3 Seconds when you Focus", statOrder = { 10158 }, level = 72, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 10158 }, level = 81, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life" }, "1% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6575 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (23-25)% of Mana and Energy Shield when you Focus", statOrder = { 10069 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (26-28)% of Mana and Energy Shield when you Focus", statOrder = { 10069 }, level = 72, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (29-31)% of Mana and Energy Shield when you Focus", statOrder = { 10069 }, level = 81, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(16-20)% chance to deal Double Damage while Focused", statOrder = { 5744 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(21-25)% chance to deal Double Damage while Focused", statOrder = { 5744 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(26-30)% chance to deal Double Damage while Focused", statOrder = { 5744 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(7-9)% chance to deal Double Damage while Focused", statOrder = { 5744 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(10-12)% chance to deal Double Damage while Focused", statOrder = { 5744 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(13-15)% chance to deal Double Damage while Focused", statOrder = { 5744 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(22-25)% increased Attack and Cast Speed while Focused", statOrder = { 4872 }, level = 60, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(26-30)% increased Attack and Cast Speed while Focused", statOrder = { 4872 }, level = 72, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(31-36)% increased Attack and Cast Speed while Focused", statOrder = { 4872 }, level = 81, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(16-20)% increased Duration of Ailments you inflict while Focused", statOrder = { 10372 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(21-25)% increased Duration of Ailments you inflict while Focused", statOrder = { 10372 }, level = 72, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(26-30)% increased Duration of Ailments you inflict while Focused", statOrder = { 10372 }, level = 81, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "You are Immune to Ailments while Focused", statOrder = { 7340 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocused", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life" }, "You have Vaal Pact while Focused", "10% of Damage Leeched as Life while Focused", statOrder = { 6922, 7463 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+5 to maximum Fortification while Focused", statOrder = { 9241 }, level = 60, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+6 to maximum Fortification while Focused", statOrder = { 9241 }, level = 72, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+7 to maximum Fortification while Focused", statOrder = { 9241 }, level = 81, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "skill", "unveiled_mod", "caster", "gem" }, "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", statOrder = { 855 }, level = 60, group = "TriggerSocketedSpellWhenYouFocus", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(11-15)% of Damage is taken from Mana before Life while Focused", statOrder = { 6175 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life", "minion" }, "Minions Recover 100% of their Life when you Focus", statOrder = { 9499 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocus", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(12-14)% increased Damage", statOrder = { 1214 }, level = 72, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(15-17)% increased Damage", statOrder = { 1214 }, level = 81, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Support Gems", statOrder = { 195 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+2 to Level of Socketed Support Gems", statOrder = { 195 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -1 to Total Mana Cost", statOrder = { 10206 }, level = 60, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -2 to Total Mana Cost", statOrder = { 10206 }, level = 72, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -3 to Total Mana Cost", statOrder = { 10206 }, level = 81, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -4 to Total Mana Cost", statOrder = { 10208 }, level = 60, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -5 to Total Mana Cost", statOrder = { 10208 }, level = 72, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -(7-6) to Total Mana Cost", statOrder = { 10208 }, level = 81, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(31-36)% increased Damage while Leeching", statOrder = { 3097 }, level = 72, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(37-43)% increased Damage while Leeching", statOrder = { 3097 }, level = 81, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+(6-7)% to Quality of Socketed Gems", statOrder = { 213 }, level = 72, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+(7-8)% to Quality of Socketed Gems", statOrder = { 213 }, level = 81, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (11-13) to (16-17) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (14-16) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (7-8) to (10-11) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (9-11) to (12-14) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "attack" }, "Hits can't be Evaded", statOrder = { 2066 }, level = 60, group = "AlwaysHits", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod", "damage" }, "(19-23)% increased Damage during any Flask Effect", statOrder = { 4118 }, level = 72, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod", "damage" }, "(24-28)% increased Damage during any Flask Effect", statOrder = { 4118 }, level = 81, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "drop" }, "(36-40)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9974 }, level = 72, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "drop" }, "(41-45)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9974 }, level = 81, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 72, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (14-16)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 81, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (5-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 72, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (7-8)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 81, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 72, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (14-16)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 81, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (5-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 72, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (7-8)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 81, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 72, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (14-16)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 81, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (5-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 72, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (7-8)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 81, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (14-16)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (5-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (7-8)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "5% increased Attributes", statOrder = { 1206 }, level = 72, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "6% increased Attributes", statOrder = { 1206 }, level = 81, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "aura" }, "Banner Skills have (12-15)% increased Aura Effect", statOrder = { 3398 }, level = 72, group = "BannerEffect", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "aura" }, "Banner Skills have (16-20)% increased Aura Effect", statOrder = { 3398 }, level = 81, group = "BannerEffect", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "minion" }, "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 812 }, level = 60, group = "SummonWolfOnKillOld", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod" }, "(10-14)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 72, group = "WarcryBuffEffect", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod" }, "(15-18)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 81, group = "WarcryBuffEffect", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "80% chance to Avoid being Frozen", statOrder = { 1868 }, level = 72, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "100% chance to Avoid being Frozen", statOrder = { 1868 }, level = 81, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "(12-13)% increased Global Critical Strike Chance", "+(18-20)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1482, 6041 }, level = 72, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "(14-16)% increased Global Critical Strike Chance", "+(21-23)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1482, 6041 }, level = 81, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(11-13)% increased Global Physical Damage", "(11-13)% increased Chaos Damage", statOrder = { 1254, 1409 }, level = 72, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(14-16)% increased Global Physical Damage", "(14-16)% increased Chaos Damage", statOrder = { 1254, 1409 }, level = 81, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(11-13)% increased Fire Damage", "(11-13)% increased Lightning Damage", statOrder = { 1381, 1401 }, level = 72, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(14-16)% increased Fire Damage", "(14-16)% increased Lightning Damage", statOrder = { 1381, 1401 }, level = 81, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "resource", "unveiled_mod", "life" }, "Regenerate 3% of Life per second during Effect", statOrder = { 1017 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod" }, "50% Chance to Avoid being Stunned during Effect", statOrder = { 996 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod", "drop" }, "(20-30)% increased Rarity of Items found during Effect", statOrder = { 1013 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod" }, "Prevent +(45-55)% of Reflected Damage during Effect", statOrder = { 992 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "resource", "unveiled_mod", "life" }, "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 1016 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed", "attribute" }, "+(15-19) to Dexterity and Intelligence", "(8-10)% increased Attack Speed", statOrder = { 1205, 1437 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed", "attribute" }, "+(20-24) to Dexterity and Intelligence", "(13-16)% increased Attack Speed", statOrder = { 1205, 1437 }, level = 75, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical", "attribute" }, "+(15-19) to Strength and Intelligence", "(15-20)% increased Critical Strike Chance", statOrder = { 1204, 1487 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical", "attribute" }, "+(20-24) to Strength and Intelligence", "(21-25)% increased Critical Strike Chance", statOrder = { 1204, 1487 }, level = 75, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "attribute" }, "+(15-19) to Strength and Dexterity", "+(161-200) to Accuracy Rating", statOrder = { 1203, 2047 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "attribute" }, "+(20-24) to Strength and Dexterity", "+(201-250) to Accuracy Rating", statOrder = { 1203, 2047 }, level = 75, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(8-10)% increased Attack Speed", statOrder = { 813, 1437 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(13-16)% increased Attack Speed", statOrder = { 813, 1437 }, level = 75, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(12-14)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1470, 6821 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(15-18)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1470, 6821 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(19-24)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1470, 6821 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(8-9)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1470, 6821 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(10-12)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1470, 6821 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(13-16)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1470, 6821 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(9-10)% to Fire and Chaos Resistances", statOrder = { 6637 }, level = 60, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(11-12)% to Fire and Chaos Resistances", statOrder = { 6637 }, level = 72, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(13-15)% to Fire and Chaos Resistances", statOrder = { 6637 }, level = 81, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(9-10)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 60, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(11-12)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 72, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(13-15)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 81, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(9-10)% to Cold and Chaos Resistances", statOrder = { 5882 }, level = 60, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(11-12)% to Cold and Chaos Resistances", statOrder = { 5882 }, level = 72, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(13-15)% to Cold and Chaos Resistances", statOrder = { 5882 }, level = 81, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1200, 1869 }, level = 60, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1200, 1869 }, level = 72, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1200, 1869 }, level = 81, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1201, 1868 }, level = 60, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1201, 1868 }, level = 72, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1201, 1868 }, level = 81, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1202, 1871 }, level = 60, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1202, 1871 }, level = 72, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1202, 1871 }, level = 81, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 60, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 72, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 81, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 60, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 72, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 81, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(11-13)% increased Brand Attachment range", statOrder = { 10189 }, level = 60, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(14-16)% increased Brand Attachment range", statOrder = { 10189 }, level = 72, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(17-20)% increased Brand Attachment range", statOrder = { 10189 }, level = 81, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(5-8)% increased maximum Life", "(5-8)% increased maximum Mana", statOrder = { 1593, 1603 }, level = 60, group = "PercentageLifeAndMana", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block", "unveiled_mod" }, "(5-7)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 60, group = "BlockPercent", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(6-8)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 60, group = "SpellBlockPercentage", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1866, 1874 }, level = 60, group = "AvoidStunAndElementalStatusAilments", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(6-7)% increased Area of Effect", "(9-10)% increased Area Damage", statOrder = { 1903, 2058 }, level = 60, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(8-9)% increased Area of Effect", "(11-13)% increased Area Damage", statOrder = { 1903, 2058 }, level = 72, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(10-12)% increased Area of Effect", "(14-16)% increased Area Damage", statOrder = { 1903, 2058 }, level = 81, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(10-12)% increased Projectile Speed", "(9-10)% increased Projectile Damage", statOrder = { 1819, 2019 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(13-16)% increased Projectile Speed", "(11-13)% increased Projectile Damage", statOrder = { 1819, 2019 }, level = 72, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(17-20)% increased Projectile Speed", "(14-16)% increased Projectile Damage", statOrder = { 1819, 2019 }, level = 81, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(9-10)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1257, 2560 }, level = 60, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(11-13)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1257, 2560 }, level = 72, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(14-16)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1257, 2560 }, level = 81, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "Focus has (21-25)% increased Cooldown Recovery Rate", statOrder = { 6743 }, level = 60, group = "FocusCooldownRecovery", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "block" }, "+(8-10)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 50, group = "AdditionalBlock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "block" }, "+(11-13)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 68, group = "AdditionalBlock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "block" }, "+(8-10)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 50, group = "AdditionalSpellBlock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "block" }, "+(11-13)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 68, group = "AdditionalSpellBlock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, { type = "Suffix", affix = "of Prefixes", modTags = { }, "Prefixes Cannot Be Changed", statOrder = { 19 }, level = 1, group = "ItemGenerationCannotChangePrefixes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, { type = "Prefix", affix = "Suffixed", modTags = { }, "Suffixes Cannot Be Changed", statOrder = { 23 }, level = 1, group = "ItemGenerationCannotChangeSuffixes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, { type = "Suffix", affix = "of Crafting", modTags = { }, "Can have up to 3 Crafted Modifiers", statOrder = { 26 }, level = 1, group = "ItemGenerationCanHaveMultipleCraftedMods", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, diff --git a/src/Data/ModNecropolis.lua b/src/Data/ModNecropolis.lua index f644f1d8f1..6ab340a866 100644 --- a/src/Data/ModNecropolis.lua +++ b/src/Data/ModNecropolis.lua @@ -2,55 +2,55 @@ -- Item data (c) Grinding Gear Games return { - ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9923 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, tradeHashes = { [2016723660] = { "+(12-16)% to All Resistances" }, } }, - ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6585 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, tradeHashes = { [1138860262] = { "Fire Resistance cannot be Penetrated" }, } }, - ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5833 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, tradeHashes = { [1864616755] = { "Cold Resistance cannot be Penetrated" }, } }, - ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7462 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [3515979920] = { "Lightning Resistance cannot be Penetrated" }, } }, - ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 1082 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, - ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, tradeHashes = { [1444556985] = { "(25-35)% of Damage taken Recouped as Life" }, } }, - ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [472520716] = { "(25-35)% of Damage taken Recouped as Mana" }, } }, - ["NecropolisCraftingLocalCanSocketIgnoringColour"] = { type = "Suffix", affix = "of Haunting", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 91 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [899329924] = { "Gems can be Socketed in this Item ignoring Socket Colour" }, } }, - ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (40-60)% reduced Extra Damage from Critical Strikes" }, } }, - ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [4237190083] = { "(10-15)% increased Mana Reservation Efficiency of Skills" }, } }, - ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, tradeHashes = { [635485889] = { "(20-30)% increased Life Reservation Efficiency of Skills" }, } }, - ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [680068163] = { "(80-120)% increased Stun Threshold" }, } }, - ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1521 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, - ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(60-75)% chance to Avoid being Ignited" }, } }, - ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(60-75)% chance to Avoid being Frozen" }, } }, - ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(60-75)% chance to Avoid being Shocked" }, } }, - ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9970 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(60-75)% reduced Bleed Duration on you" }, } }, - ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9979 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(60-75)% reduced Poison Duration on you" }, } }, - ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 10457 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 10462 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 10468 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, - ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3196 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, tradeHashes = { [3875592188] = { "Movement Speed cannot be modified to below Base Value" }, } }, - ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9560 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [3452963763] = { "Your Warcries open Chests" }, } }, - ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Global Critical Strike Chance" }, } }, - ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, - ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2974 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9172 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [3822999954] = { "+1 to maximum Mana per 2 Intelligence" }, } }, - ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4516 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [773731062] = { "+2 to Accuracy Rating per 2 Dexterity" }, } }, - ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, - ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 7142 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [913614572] = { "Gain Arcane Surge after Spending a total of 400 Mana" }, } }, - ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2596 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-8)% increased Effect of your Curses" }, } }, - ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-17) to (23-29) Chaos Damage to Attacks" }, } }, - ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, - ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3173 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(15-25)% chance to Poison on Hit" }, } }, - ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3170 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(12-20)% increased Poison Duration" }, } }, - ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2489 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (15-25)% chance to cause Bleeding" }, } }, - ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6545 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (12-20)% faster" }, } }, - ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [2221570601] = { "(15-25)% Global chance to Blind Enemies on hit" }, } }, - ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 8155 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (15-25)% chance to Maim on Hit" }, } }, - ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, tradeHashes = { [3002506763] = { "(15-25)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 9194 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [3962823719] = { "Melee Attacks Knock Enemies Back on Hit" }, } }, - ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4920 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [3438201750] = { "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, - ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5726 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, tradeHashes = { [220991810] = { "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells" }, } }, + ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 10067 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, tradeHashes = { [2016723660] = { "+(12-16)% to All Resistances" }, } }, + ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6672 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, tradeHashes = { [1138860262] = { "Fire Resistance cannot be Penetrated" }, } }, + ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5915 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, tradeHashes = { [1864616755] = { "Cold Resistance cannot be Penetrated" }, } }, + ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7563 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [3515979920] = { "Lightning Resistance cannot be Penetrated" }, } }, + ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 1106 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, + ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, tradeHashes = { [1444556985] = { "(25-35)% of Damage taken Recouped as Life" }, } }, + ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2480 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [472520716] = { "(25-35)% of Damage taken Recouped as Mana" }, } }, + ["NecropolisCraftingLocalCanSocketIgnoringColour"] = { type = "Suffix", affix = "of Haunting", "Gems Socketed always have the Quality bonus from Socket Colour", statOrder = { 170 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [899329924] = { "Gems Socketed always have the Quality bonus from Socket Colour" }, } }, + ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (40-60)% reduced Extra Damage from Critical Strikes" }, } }, + ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [4237190083] = { "(10-15)% increased Mana Reservation Efficiency of Skills" }, } }, + ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2249 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, tradeHashes = { [635485889] = { "(20-30)% increased Life Reservation Efficiency of Skills" }, } }, + ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5483 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3308 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [680068163] = { "(80-120)% increased Stun Threshold" }, } }, + ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 3198 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, + ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3228 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } }, + ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(60-75)% chance to Avoid being Ignited" }, } }, + ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(60-75)% chance to Avoid being Frozen" }, } }, + ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(60-75)% chance to Avoid being Shocked" }, } }, + ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 10114 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(60-75)% reduced Bleed Duration on you" }, } }, + ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 10123 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(60-75)% reduced Poison Duration on you" }, } }, + ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 10613 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, + ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 10638 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, + ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 10618 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, + ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 10624 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } }, + ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3232 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, tradeHashes = { [3875592188] = { "Movement Speed cannot be modified to below Base Value" }, } }, + ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9696 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [3452963763] = { "Your Warcries open Chests" }, } }, + ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, tradeHashes = { [587431675] = { "(30-50)% increased Global Critical Strike Chance" }, } }, + ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [789117908] = { "(40-60)% increased Mana Regeneration Rate" }, } }, + ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 3008 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9296 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [3822999954] = { "+1 to maximum Mana per 2 Intelligence" }, } }, + ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4560 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [773731062] = { "+2 to Accuracy Rating per 2 Dexterity" }, } }, + ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, + ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, + ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 7241 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, tradeHashes = { [913614572] = { "Gain Arcane Surge after Spending a total of 400 Mana" }, } }, + ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1903 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, + ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2622 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-8)% increased Effect of your Curses" }, } }, + ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1411 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (13-17) to (23-29) Chaos Damage to Attacks" }, } }, + ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, } }, + ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3208 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(15-25)% chance to Poison on Hit" }, } }, + ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3205 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(12-20)% increased Poison Duration" }, } }, + ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2515 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (15-25)% chance to cause Bleeding" }, } }, + ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6632 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (12-20)% faster" }, } }, + ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, tradeHashes = { [2221570601] = { "(15-25)% Global chance to Blind Enemies on hit" }, } }, + ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 8268 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (15-25)% chance to Maim on Hit" }, } }, + ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, tradeHashes = { [3002506763] = { "(15-25)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 9318 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [3962823719] = { "Melee Attacks Knock Enemies Back on Hit" }, } }, + ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4970 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, tradeHashes = { [3438201750] = { "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, + ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5804 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, tradeHashes = { [220991810] = { "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells" }, } }, } \ No newline at end of file diff --git a/src/Data/ModScalability.lua b/src/Data/ModScalability.lua index 1a40041c78..4e0aa1198a 100644 --- a/src/Data/ModScalability.lua +++ b/src/Data/ModScalability.lua @@ -190,7 +190,6 @@ return { ["# to # Added Spell Physical Damage while wielding a Two Handed Weapon"] = { { isScalable = true }, { isScalable = true } }, ["# to # Fire Damage per Endurance Charge"] = { { isScalable = true }, { isScalable = true } }, ["# to # Lightning Damage per Power Charge"] = { { isScalable = true }, { isScalable = true } }, - ["# to # Spell Lightning Damage per 10 Intelligence"] = { { isScalable = true }, { isScalable = true } }, ["# to # added Fire Damage against Burning Enemies"] = { { isScalable = true }, { isScalable = true } }, ["# to # added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower"] = { { isScalable = true }, { isScalable = true } }, ["# to Accuracy Rating"] = { { isScalable = true } }, @@ -271,6 +270,7 @@ return { ["# to Level of Socketed Minion Gems"] = { { isScalable = true } }, ["# to Level of Socketed Movement Gems"] = { { isScalable = true } }, ["# to Level of Socketed Non-Vaal Gems"] = { { isScalable = true } }, + ["# to Level of Socketed Physical Gems"] = { { isScalable = true } }, ["# to Level of Socketed Projectile Gems"] = { { isScalable = true } }, ["# to Level of Socketed Skill Gems"] = { { isScalable = true } }, ["# to Level of Socketed Spell Gems"] = { { isScalable = true } }, @@ -513,7 +513,6 @@ return { ["#% Chance to gain up to maximum Endurance Charges when you take a Critical Strike"] = { { isScalable = true } }, ["#% Chaos Resistance against Damage Over Time"] = { { isScalable = true } }, ["#% Critical Strike Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, - ["#% Critical Strike Chance per Power Charge"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% Critical Strike Chance while at maximum Power Charges"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby"] = { { isScalable = true } }, ["#% Elemental Resistances while holding a Shield"] = { { isScalable = true } }, @@ -667,6 +666,7 @@ return { ["#% chance in Heists for Items to drop with Elder Influence"] = { { isScalable = true } }, ["#% chance in Heists for Items to drop with Shaper Influence"] = { { isScalable = true } }, ["#% chance in Heists for Items to drop with an additional Socket"] = { { isScalable = true } }, + ["#% chance in Heists for Jeweller's Orbs to drop as Chromatic Orbs instead"] = { { isScalable = true } }, ["#% chance in Heists for Jeweller's Orbs to drop as Orbs of Fusing instead"] = { { isScalable = true } }, ["#% chance in Heists for Orbs of Alchemy to drop as Blessed Orbs instead"] = { { isScalable = true } }, ["#% chance in Heists for Orbs of Alchemy to drop as Divine Orbs instead"] = { { isScalable = true } }, @@ -677,6 +677,7 @@ return { ["#% chance in Heists for Orbs of Augmentation to drop as Chaos Orbs instead"] = { { isScalable = true } }, ["#% chance in Heists for Orbs of Augmentation to drop as Orbs of Alchemy instead"] = { { isScalable = true } }, ["#% chance in Heists for Orbs of Augmentation to drop as Regal Orbs instead"] = { { isScalable = true } }, + ["#% chance in Heists for Orbs of Fusing to drop as Chromatic Orbs instead"] = { { isScalable = true } }, ["#% chance in Heists for Orbs of Regret to drop as Orbs of Annulment instead"] = { { isScalable = true } }, ["#% chance in Heists for Orbs of Scouring to drop as Orbs of Annulment instead"] = { { isScalable = true } }, ["#% chance in Heists for Orbs of Scouring to drop as Orbs of Regret instead"] = { { isScalable = true } }, @@ -708,11 +709,14 @@ return { ["#% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks"] = { { isScalable = true } }, ["#% chance to Aggravate Bleeding on targets you Knockback with Attacks Hits"] = { { isScalable = true } }, ["#% chance to Aggravate Bleeding on targets you Stun with Attacks Hits"] = { { isScalable = true } }, - ["#% chance to Avoid All Damage from Hits"] = { { isScalable = true } }, ["#% chance to Avoid Bleeding"] = { { isScalable = true } }, ["#% chance to Avoid Blind"] = { { isScalable = true } }, ["#% chance to Avoid Chaos Damage from Hits"] = { { isScalable = true } }, ["#% chance to Avoid Cold Damage from Hits"] = { { isScalable = true } }, + ["#% chance to Avoid Damage of each Element from Hits during Soul Gain Prevention"] = { { isScalable = true } }, + ["#% chance to Avoid Damage of each Element from Hits per Frenzy Charge"] = { { isScalable = true } }, + ["#% chance to Avoid Damage of each Element from Hits while Phasing"] = { { isScalable = true } }, + ["#% chance to Avoid Damage of each Type from Hits"] = { { isScalable = true } }, ["#% chance to Avoid Elemental Ailments"] = { { isScalable = true } }, ["#% chance to Avoid Elemental Ailments during any Flask Effect"] = { { isScalable = true } }, ["#% chance to Avoid Elemental Ailments per Grand Spectrum"] = { { isScalable = true } }, @@ -721,9 +725,6 @@ return { ["#% chance to Avoid Elemental Ailments while holding a Shield"] = { { isScalable = true } }, ["#% chance to Avoid Elemental Ailments while on Consecrated Ground"] = { { isScalable = true } }, ["#% chance to Avoid Elemental Ailments while you have Elusive"] = { { isScalable = true } }, - ["#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention"] = { { isScalable = true } }, - ["#% chance to Avoid Elemental Damage from Hits per Frenzy Charge"] = { { isScalable = true } }, - ["#% chance to Avoid Elemental Damage from Hits while Phasing"] = { { isScalable = true } }, ["#% chance to Avoid Fire Damage from Hits"] = { { isScalable = true } }, ["#% chance to Avoid Lightning Damage from Hits"] = { { isScalable = true } }, ["#% chance to Avoid Physical Damage from Hits"] = { { isScalable = true } }, @@ -949,6 +950,7 @@ return { ["#% chance to Trigger Edict of Winter when Hit"] = { { isScalable = false } }, ["#% chance to Trigger Edict of the Grave when your Skills or Minions Kill"] = { { isScalable = false } }, ["#% chance to Trigger Edict of the Tempest on Hit"] = { { isScalable = false } }, + ["#% chance to Trigger Explosive Toad when you kill an Enemy"] = { { isScalable = true } }, ["#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"] = { { isScalable = false } }, ["#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy"] = { { isScalable = false } }, ["#% chance to Trigger Level 1 Raise Spiders on Kill"] = { { isScalable = false } }, @@ -1198,6 +1200,7 @@ return { ["#% chance to drop an additional Sulphite Scarab"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["#% chance to drop an additional Titanic Scarab"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["#% chance to drop an additional Torment Scarab"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, + ["#% chance to drop an additional Trarthan Scarab"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["#% chance to drop an additional Ultimatum Scarab"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["#% chance to drop an additional Unique Item"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, ["#% chance to drop an additional Vaal Orb"] = { { isScalable = true, formats = { "divide_by_ten_1dp_if_required" } } }, @@ -1229,6 +1232,7 @@ return { ["#% chance to gain Phasing for # seconds when your Trap is triggered by an Enemy"] = { { isScalable = true, formats = { "canonical_stat" } }, { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["#% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy"] = { { isScalable = true } }, ["#% chance to gain Phasing for 4 seconds on Kill"] = { { isScalable = true } }, + ["#% chance to gain Phasing on Hit with this weapon"] = { { isScalable = true } }, ["#% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike"] = { { isScalable = true } }, ["#% chance to gain Unholy Might for 3 seconds on Kill"] = { { isScalable = true } }, ["#% chance to gain Unholy Might for 4 seconds on Critical Strike"] = { { isScalable = true } }, @@ -1236,6 +1240,7 @@ return { ["#% chance to gain Unholy Might on Block for # seconds"] = { { isScalable = true }, { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["#% chance to gain Unholy Might on Block for 3 seconds"] = { { isScalable = true } }, ["#% chance to gain a Blitz Charge on Critical Strike"] = { { isScalable = true } }, + ["#% chance to gain a Brine Charge instead of an Endurance Charge"] = { { isScalable = true } }, ["#% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance"] = { { isScalable = true } }, ["#% chance to gain a Challenger Charge when you Kill an Enemy while in Sand Stance"] = { { isScalable = true } }, ["#% chance to gain a Divine Charge on Hit"] = { { isScalable = false } }, @@ -1399,7 +1404,6 @@ return { ["#% faster start of Energy Shield Recharge"] = { { isScalable = true } }, ["#% faster start of Energy Shield Recharge during any Flask Effect"] = { { isScalable = true } }, ["#% faster start of Energy Shield Recharge while affected by Discipline"] = { { isScalable = true } }, - ["#% improved Rewards"] = { { isScalable = false } }, ["#% increased Absolution Cast Speed"] = { { isScalable = true } }, ["#% increased Abyssal Cry Duration"] = { { isScalable = true } }, ["#% increased Accuracy Rating"] = { { isScalable = true } }, @@ -1411,6 +1415,7 @@ return { ["#% increased Accuracy Rating when on Low Life"] = { { isScalable = true } }, ["#% increased Accuracy Rating while Dual Wielding"] = { { isScalable = true } }, ["#% increased Accuracy Rating while you have Onslaught"] = { { isScalable = true } }, + ["#% increased Accuracy Rating while you have at least 1 nearby Ally"] = { { isScalable = true } }, ["#% increased Accuracy Rating with Axes"] = { { isScalable = true } }, ["#% increased Accuracy Rating with Bows"] = { { isScalable = true } }, ["#% increased Accuracy Rating with Claws"] = { { isScalable = true } }, @@ -1469,9 +1474,11 @@ return { ["#% increased Area of Effect per 50 Strength"] = { { isScalable = true } }, ["#% increased Area of Effect per 50 Unreserved Maximum Mana, up to 100%"] = { { isScalable = true } }, ["#% increased Area of Effect per Endurance Charge"] = { { isScalable = true } }, + ["#% increased Area of Effect per Enemy killed recently, up to 25%"] = { { isScalable = true } }, ["#% increased Area of Effect per Enemy killed recently, up to 50%"] = { { isScalable = true } }, ["#% increased Area of Effect per Power Charge"] = { { isScalable = true } }, ["#% increased Area of Effect per Power Charge, up to a maximum of 50%"] = { { isScalable = true } }, + ["#% increased Area of Effect per Red Socket"] = { { isScalable = true } }, ["#% increased Area of Effect per second you've been stationary, up to a maximum of 50%"] = { { isScalable = true } }, ["#% increased Area of Effect while Fortified"] = { { isScalable = true } }, ["#% increased Area of Effect while Unarmed"] = { { isScalable = true } }, @@ -1490,6 +1497,7 @@ return { ["#% increased Armour and Evasion"] = { { isScalable = true } }, ["#% increased Armour and Evasion Rating during Onslaught"] = { { isScalable = true } }, ["#% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently"] = { { isScalable = true } }, + ["#% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket"] = { { isScalable = true } }, ["#% increased Armour and Evasion Rating when on Low Life"] = { { isScalable = true } }, ["#% increased Armour and Evasion Rating while Fortified"] = { { isScalable = true } }, ["#% increased Armour and Evasion Rating while Leeching"] = { { isScalable = true } }, @@ -1502,6 +1510,7 @@ return { ["#% increased Armour if you have been Hit Recently"] = { { isScalable = true } }, ["#% increased Armour if you haven't Killed Recently"] = { { isScalable = true } }, ["#% increased Armour if you haven't been Hit Recently"] = { { isScalable = true } }, + ["#% increased Armour per 100 Reserved Mana"] = { { isScalable = false } }, ["#% increased Armour per 50 Reserved Mana"] = { { isScalable = false } }, ["#% increased Armour per 50 Strength"] = { { isScalable = true } }, ["#% increased Armour per Defiance"] = { { isScalable = true } }, @@ -1517,8 +1526,11 @@ return { ["#% increased Armour, Evasion and Energy Shield"] = { { isScalable = true } }, ["#% increased Arrow Speed"] = { { isScalable = true } }, ["#% increased Aspect of the Avian Buff Effect"] = { { isScalable = true } }, + ["#% increased Aspect of the Cat Buff Effect"] = { { isScalable = true } }, + ["#% increased Aspect of the Crab Buff Effect"] = { { isScalable = true } }, ["#% increased Aspect of the Spider Area of Effect"] = { { isScalable = true } }, ["#% increased Aspect of the Spider Debuff Duration"] = { { isScalable = true } }, + ["#% increased Aspect of the Spider Debuff Effect"] = { { isScalable = true } }, ["#% increased Assassin's Mark Curse Effect"] = { { isScalable = true } }, ["#% increased Assassin's Mark Duration"] = { { isScalable = true } }, ["#% increased Attack Cold Damage"] = { { isScalable = true } }, @@ -1582,6 +1594,7 @@ return { ["#% increased Attack Speed per Frenzy Charge"] = { { isScalable = false } }, ["#% increased Attack Speed per Minion, up to a maximum of 80%"] = { { isScalable = true } }, ["#% increased Attack Speed per Reave stack"] = { { isScalable = true } }, + ["#% increased Attack Speed per socketed Searching Eye Jewel"] = { { isScalable = true } }, ["#% increased Attack Speed when on Full Life"] = { { isScalable = true } }, ["#% increased Attack Speed when on Low Life"] = { { isScalable = true } }, ["#% increased Attack Speed while Chilled"] = { { isScalable = true } }, @@ -1829,6 +1842,11 @@ return { ["#% increased Cooldown Recovery Rate per Brand, up to a maximum of 40%"] = { { isScalable = true } }, ["#% increased Cooldown Recovery Rate per Power Charge"] = { { isScalable = true } }, ["#% increased Corrupting Fever Duration"] = { { isScalable = true } }, + ["#% increased Cost Efficiency"] = { { isScalable = true } }, + ["#% increased Cost Efficiency of Attacks"] = { { isScalable = true } }, + ["#% increased Cost Efficiency of Retaliation Skills"] = { { isScalable = true } }, + ["#% increased Cost Efficiency of Spells"] = { { isScalable = true } }, + ["#% increased Cost Efficiency of Spells you Cast yourself"] = { { isScalable = true } }, ["#% increased Cost of Arc and Crackling Lance"] = { { isScalable = true } }, ["#% increased Cost of Attacks while you have at least 20 Rage"] = { { isScalable = true } }, ["#% increased Cost of Aura Skills that summon Totems"] = { { isScalable = true } }, @@ -1886,11 +1904,13 @@ return { ["#% increased Critical Strike Chance per Grand Spectrum"] = { { isScalable = true } }, ["#% increased Critical Strike Chance per Inspiration Charge"] = { { isScalable = true } }, ["#% increased Critical Strike Chance per Power Charge"] = { { isScalable = true } }, + ["#% increased Critical Strike Chance per socketed Hypnotic Eye Jewel"] = { { isScalable = true } }, ["#% increased Critical Strike Chance while Channelling"] = { { isScalable = true } }, ["#% increased Critical Strike Chance while Dual Wielding"] = { { isScalable = true } }, ["#% increased Critical Strike Chance while Physical Aegis is depleted"] = { { isScalable = true } }, ["#% increased Critical Strike Chance while affected by Wrath"] = { { isScalable = true } }, ["#% increased Critical Strike Chance while holding a Shield"] = { { isScalable = true } }, + ["#% increased Critical Strike Chance while wielding a Staff"] = { { isScalable = true } }, ["#% increased Critical Strike Chance while you have Avatar of Fire"] = { { isScalable = true } }, ["#% increased Critical Strike Chance while you have at least 200 Intelligence"] = { { isScalable = true } }, ["#% increased Critical Strike Chance with Axes"] = { { isScalable = true } }, @@ -1980,6 +2000,7 @@ return { ["#% increased Damage per Frenzy Charge"] = { { isScalable = true } }, ["#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"] = { { isScalable = true } }, ["#% increased Damage per Linked target"] = { { isScalable = true } }, + ["#% increased Damage per Moon Rite completed"] = { { isScalable = true } }, ["#% increased Damage per Power Charge"] = { { isScalable = true } }, ["#% increased Damage per Power Charge with Hits against Enemies on Full Life"] = { { isScalable = false } }, ["#% increased Damage per Power Charge with Hits against Enemies on Low Life"] = { { isScalable = false } }, @@ -2128,9 +2149,9 @@ return { ["#% increased Damage with Vaal Skills during effect"] = { { isScalable = true } }, ["#% increased Damage with Wands"] = { { isScalable = true } }, ["#% increased Damage with Wands if you've dealt a Critical Strike Recently"] = { { isScalable = true } }, - ["#% increased Dark Pact Area of Effect"] = { { isScalable = true } }, - ["#% increased Dark Pact Cast Speed"] = { { isScalable = true } }, - ["#% increased Dark Pact Damage"] = { { isScalable = true } }, + ["#% increased Dark Bargain Area of Effect"] = { { isScalable = true } }, + ["#% increased Dark Bargain Cast Speed"] = { { isScalable = true } }, + ["#% increased Dark Bargain Damage"] = { { isScalable = true } }, ["#% increased Decoy Totem Area of Effect"] = { { isScalable = true } }, ["#% increased Decoy Totem Life"] = { { isScalable = true } }, ["#% increased Defences from Equipped Shield"] = { { isScalable = true } }, @@ -2263,6 +2284,7 @@ return { ["#% increased Effect of Shocks you inflict while Leeching Energy Shield"] = { { isScalable = true } }, ["#% increased Effect of Shrine Buffs on Players"] = { { isScalable = true } }, ["#% increased Effect of Shrine Buffs on you"] = { { isScalable = true } }, + ["#% increased Effect of Shrine Buffs on you for each 5% of Life Reserved"] = { { isScalable = false } }, ["#% increased Effect of Socketed Abyss Jewels"] = { { isScalable = true } }, ["#% increased Effect of Socketed Magic Ghastly Eye Jewels"] = { { isScalable = true } }, ["#% increased Effect of Socketed Magic Hypnotic Eye Jewels"] = { { isScalable = true } }, @@ -2287,6 +2309,7 @@ return { ["#% increased Effect of your Curses"] = { { isScalable = true } }, ["#% increased Effect of your Curses if you've spent 200 total Mana Recently"] = { { isScalable = true } }, ["#% increased Effect of your Marks"] = { { isScalable = true } }, + ["#% increased Effect of your Marks per maximum Power Charge"] = { { isScalable = true } }, ["#% increased Effect of your Marks while Elusive"] = { { isScalable = true } }, ["#% increased Elemental Ailment Duration on you"] = { { isScalable = true, formats = { "negate" } } }, ["#% increased Elemental Ailment Duration on you per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } }, @@ -2341,6 +2364,7 @@ return { ["#% increased Elemental and Chaos Resistances"] = { { isScalable = true } }, ["#% increased Elusive Effect"] = { { isScalable = true } }, ["#% increased Empowerment"] = { { isScalable = true } }, + ["#% increased Enchantment Modifier magnitudes"] = { { isScalable = false } }, ["#% increased Endurance Charge Duration"] = { { isScalable = true } }, ["#% increased Endurance, Frenzy and Power Charge Duration"] = { { isScalable = true } }, ["#% increased Enduring Cry Buff Effect"] = { { isScalable = true } }, @@ -2532,25 +2556,25 @@ return { ["#% increased Glacial Cascade Damage"] = { { isScalable = true } }, ["#% increased Glacial Hammer Damage"] = { { isScalable = true } }, ["#% increased Global Accuracy Rating"] = { { isScalable = true } }, - ["#% increased Global Accuracy Rating while you have at least 1 nearby Ally"] = { { isScalable = true } }, ["#% increased Global Armour while you have no Energy Shield"] = { { isScalable = true } }, ["#% increased Global Attack Speed per Green Socket"] = { { isScalable = true } }, ["#% increased Global Attack Speed per Level"] = { { isScalable = true } }, ["#% increased Global Critical Strike Chance"] = { { isScalable = true } }, ["#% increased Global Critical Strike Chance if Corrupted"] = { { isScalable = true } }, + ["#% increased Global Critical Strike Chance per Blue Socket"] = { { isScalable = true } }, ["#% increased Global Critical Strike Chance per Level"] = { { isScalable = true } }, ["#% increased Global Critical Strike Chance when in Main Hand"] = { { isScalable = true } }, ["#% increased Global Critical Strike Chance while wielding a Bow"] = { { isScalable = true } }, - ["#% increased Global Critical Strike Chance while wielding a Staff"] = { { isScalable = true } }, ["#% increased Global Damage"] = { { isScalable = true } }, ["#% increased Global Defences"] = { { isScalable = true } }, ["#% increased Global Defences if there are no Defence Modifiers on other Equipped Items"] = { { isScalable = true } }, + ["#% increased Global Defences per Empty Socket"] = { { isScalable = true } }, ["#% increased Global Defences per White Socket"] = { { isScalable = true } }, ["#% increased Global Evasion Rating when on Full Life"] = { { isScalable = true } }, ["#% increased Global Evasion Rating when on Low Life"] = { { isScalable = true } }, ["#% increased Global Physical Damage"] = { { isScalable = true } }, + ["#% increased Global Physical Damage per Red Socket"] = { { isScalable = true } }, ["#% increased Global Physical Damage while Frozen"] = { { isScalable = true } }, - ["#% increased Global Physical Damage with Weapons per Red Socket"] = { { isScalable = true } }, ["#% increased Global maximum Energy Shield and reduced Lightning Resistance"] = { { isScalable = true } }, ["#% increased Golem Damage for each Type of Golem you have Summoned"] = { { isScalable = true } }, ["#% increased Golem Damage per Summoned Golem"] = { { isScalable = true } }, @@ -2612,6 +2636,7 @@ return { ["#% increased Leap Slam Area of Effect"] = { { isScalable = true } }, ["#% increased Leap Slam Attack Speed"] = { { isScalable = true } }, ["#% increased Leap Slam Damage"] = { { isScalable = true } }, + ["#% increased Life Cost Efficiency"] = { { isScalable = true } }, ["#% increased Life Cost of Skills"] = { { isScalable = true } }, ["#% increased Life Recovered"] = { { isScalable = true } }, ["#% increased Life Recovery Rate if you haven't Killed Recently"] = { { isScalable = true } }, @@ -2664,6 +2689,19 @@ return { ["#% increased Magic Pack Size"] = { { isScalable = true } }, ["#% increased Main Hand Attack Damage while wielding two different Weapon Types"] = { { isScalable = true } }, ["#% increased Main Hand Critical Strike Chance per\nMurderous Eye Jewel affecting you, up to a maximum of 200%"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency for 2 seconds after Spending a total of 800 Mana"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Curse Skills"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Link Skills"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Mark Skills"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Minion Skills"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Retaliation Skills"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Skills which throw Traps or Mines"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Spells"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency of Spells you Cast yourself"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency per 10 Devotion"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency per Endurance Charge"] = { { isScalable = true } }, + ["#% increased Mana Cost Efficiency while on Low Mana"] = { { isScalable = true } }, ["#% increased Mana Cost of Attacks"] = { { isScalable = true } }, ["#% increased Mana Cost of Curse Skills"] = { { isScalable = true } }, ["#% increased Mana Cost of Link Skills"] = { { isScalable = true } }, @@ -2821,6 +2859,7 @@ return { ["#% increased Movement Speed on Shocked Ground"] = { { isScalable = true } }, ["#% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius"] = { { isScalable = true } }, ["#% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius"] = { { isScalable = true } }, + ["#% increased Movement Speed per 1800 Evasion Rating, up to 25%"] = { { isScalable = true } }, ["#% increased Movement Speed per 5 Rage"] = { { isScalable = true } }, ["#% increased Movement Speed per Chest opened Recently"] = { { isScalable = true } }, ["#% increased Movement Speed per Endurance Charge"] = { { isScalable = true } }, @@ -2868,6 +2907,7 @@ return { ["#% increased Physical Damage over Time"] = { { isScalable = true } }, ["#% increased Physical Damage over Time taken while moving"] = { { isScalable = true } }, ["#% increased Physical Damage per Endurance Charge"] = { { isScalable = false } }, + ["#% increased Physical Damage per socketed Murderous Eye Jewel"] = { { isScalable = true } }, ["#% increased Physical Damage taken"] = { { isScalable = true } }, ["#% increased Physical Damage taken over time"] = { { isScalable = true } }, ["#% increased Physical Damage taken while Frozen"] = { { isScalable = true } }, @@ -2915,6 +2955,7 @@ return { ["#% increased Projectile Attack Damage"] = { { isScalable = true } }, ["#% increased Projectile Attack Damage during any Flask Effect"] = { { isScalable = true } }, ["#% increased Projectile Attack Damage per 200 Accuracy Rating"] = { { isScalable = true } }, + ["#% increased Projectile Attack Damage per 400 Accuracy Rating"] = { { isScalable = true } }, ["#% increased Projectile Attack Damage while you have at least 200 Dexterity"] = { { isScalable = true } }, ["#% increased Projectile Attack Damage with Claws or Daggers"] = { { isScalable = true } }, ["#% increased Projectile Damage"] = { { isScalable = true } }, @@ -2960,6 +3001,7 @@ return { ["#% increased Quantity of Vivid Wisps found in the Viridian Wildwood"] = { { isScalable = true } }, ["#% increased Quantity of Wild Wisps found in the Viridian Wildwood"] = { { isScalable = true } }, ["#% increased Radius of Consecrated Ground created by this Flask"] = { { isScalable = true } }, + ["#% increased Rage Cost Efficiency"] = { { isScalable = true } }, ["#% increased Rage Cost of Skills"] = { { isScalable = true } }, ["#% increased Rage Effect"] = { { isScalable = true } }, ["#% increased Rage Vortex Area of Effect"] = { { isScalable = true } }, @@ -2972,6 +3014,7 @@ return { ["#% increased Rallying Cry Duration"] = { { isScalable = true } }, ["#% increased Rampage Streak Duration"] = { { isScalable = true } }, ["#% increased Rarity of Fish Caught"] = { { isScalable = true } }, + ["#% increased Rarity of Fish Caught per held Dead Fish"] = { { isScalable = false } }, ["#% increased Rarity of Items Dropped"] = { { isScalable = true } }, ["#% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"] = { { isScalable = true } }, ["#% increased Rarity of Items Dropped by Frozen Enemies"] = { { isScalable = true } }, @@ -3027,6 +3070,7 @@ return { ["#% increased Reservation of Skills per 250 total Attributes"] = { { isScalable = true } }, ["#% increased Reservation of Skills that throw Mines"] = { { isScalable = true } }, ["#% increased Reservation of Stance Skills"] = { { isScalable = true } }, + ["#% increased Reward progress from Monster Kills"] = { { isScalable = false } }, ["#% increased Righteous Fire Area of Effect"] = { { isScalable = true } }, ["#% increased Righteous Fire Damage"] = { { isScalable = true } }, ["#% increased Riposte Damage"] = { { isScalable = true } }, @@ -3306,6 +3350,7 @@ return { ["#% increased maximum Energy Shield"] = { { isScalable = true } }, ["#% increased maximum Energy Shield if Corrupted"] = { { isScalable = true } }, ["#% increased maximum Life"] = { { isScalable = true } }, + ["#% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket"] = { { isScalable = true } }, ["#% increased maximum Life and reduced Fire Resistance"] = { { isScalable = true } }, ["#% increased maximum Life if 2 Elder Items are Equipped"] = { { isScalable = true } }, ["#% increased maximum Life if Corrupted"] = { { isScalable = true } }, @@ -3340,6 +3385,7 @@ return { ["#% less Accuracy Rating against Unique Enemies"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Accuracy Rating at Close Range"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Accuracy Rating per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Accuracy Rating while at maximum Frenzy Charges"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Accuracy Rating while wielding a Sword"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Animate Weapon Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Area of Effect while wielding a Mace or Sceptre"] = { { isScalable = true, formats = { "negate" } } }, @@ -3361,6 +3407,7 @@ return { ["#% less Cold Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Cold Damage taken"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Cold Damage taken from Hits"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Cost of Link Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Critical Strike Chance"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Critical Strike Chance against Enemies on that are Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Critical Strike Chance against Enemies on that are not on Low Life"] = { { isScalable = true, formats = { "negate" } } }, @@ -3438,6 +3485,7 @@ return { ["#% less Maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Maximum Physical Attack Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Maximum Physical Attack Damage with Daggers"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Melee Damage while Burning"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Mine Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Minimum Physical Attack Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Monster Life"] = { { isScalable = true, formats = { "negate" } } }, @@ -3455,6 +3503,7 @@ return { ["#% less Quantity of Items found"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Rogue's Marker value of primary Heist Target"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Skill Effect Duration"] = { { isScalable = true, formats = { "negate" } } }, + ["#% less Spell Critical Strike Chance"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Spell Damage"] = { { isScalable = false, formats = { "negate" } } }, ["#% less Spell Damage if you've been Stunned while Casting Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% less Spell Fire Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -3488,6 +3537,7 @@ return { ["#% more Accuracy Rating against Unique Enemies"] = { { isScalable = true } }, ["#% more Accuracy Rating at Close Range"] = { { isScalable = true } }, ["#% more Accuracy Rating per Frenzy Charge"] = { { isScalable = true } }, + ["#% more Accuracy Rating while at maximum Frenzy Charges"] = { { isScalable = true } }, ["#% more Accuracy Rating while wielding a Sword"] = { { isScalable = true } }, ["#% more Animate Weapon Duration"] = { { isScalable = true } }, ["#% more Area of Effect while wielding a Mace or Sceptre"] = { { isScalable = true } }, @@ -3511,6 +3561,7 @@ return { ["#% more Cold Damage"] = { { isScalable = true } }, ["#% more Cold Damage taken"] = { { isScalable = true } }, ["#% more Cold Damage taken from Hits"] = { { isScalable = true } }, + ["#% more Cost of Link Skills"] = { { isScalable = true } }, ["#% more Critical Strike Chance"] = { { isScalable = true } }, ["#% more Critical Strike Chance against Enemies that are not on Low Life"] = { { isScalable = true } }, ["#% more Critical Strike Chance against Enemies that are on Full Life"] = { { isScalable = true } }, @@ -3554,6 +3605,8 @@ return { ["#% more Damage with Hits and Ailments against Unique Enemies"] = { { isScalable = true } }, ["#% more Damage with Ignite"] = { { isScalable = true } }, ["#% more Damage with Ignites you inflict with Hits for which the highest Damage Type is Fire"] = { { isScalable = true } }, + ["#% more Damage with Mines if one of your Traps has Triggered Recently"] = { { isScalable = true } }, + ["#% more Damage with Traps if you have Detonated a Mine Recently"] = { { isScalable = true } }, ["#% more Damage with Triggered Spells"] = { { isScalable = true } }, ["#% more Divination Cards found from Beyond Demons in your Maps\nthat are followers of K'Tash"] = { { isScalable = true } }, ["#% more Duration"] = { { isScalable = true } }, @@ -3592,6 +3645,7 @@ return { ["#% more Maximum Life if you have at least 6 Life Masteries allocated"] = { { isScalable = true } }, ["#% more Maximum Physical Attack Damage"] = { { isScalable = true } }, ["#% more Maximum Physical Attack Damage with Daggers"] = { { isScalable = true } }, + ["#% more Melee Damage while Burning"] = { { isScalable = true } }, ["#% more Melee Physical Damage during effect"] = { { isScalable = true } }, ["#% more Mine Damage"] = { { isScalable = true } }, ["#% more Minimum Physical Attack Damage"] = { { isScalable = true } }, @@ -3616,6 +3670,7 @@ return { ["#% more Recovery if used while on Low Life"] = { { isScalable = false } }, ["#% more Rogue's Marker value of primary Heist Target"] = { { isScalable = true } }, ["#% more Skill Effect Duration"] = { { isScalable = true } }, + ["#% more Spell Critical Strike Chance"] = { { isScalable = true } }, ["#% more Spell Damage"] = { { isScalable = false } }, ["#% more Spell Damage if you've been Stunned while Casting Recently"] = { { isScalable = true } }, ["#% more Spell Fire Damage"] = { { isScalable = true } }, @@ -3643,6 +3698,7 @@ return { ["#% more raising of Alert Level"] = { { isScalable = true } }, ["#% more raising of Alert Level from opening Reward Chests"] = { { isScalable = true } }, ["#% of Armour also applies to Chaos Damage taken from Hits"] = { { isScalable = true } }, + ["#% of Armour also applies to Lightning Damage taken from Hits"] = { { isScalable = true } }, ["#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits"] = { { isScalable = true } }, ["#% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently"] = { { isScalable = true } }, ["#% of Attack Damage Leeched as Life"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, @@ -3682,10 +3738,10 @@ return { ["#% of Cold Damage Leeched by Enemy as Life"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% of Cold Damage from Hits taken as Fire Damage"] = { { isScalable = true } }, ["#% of Cold Damage from Hits taken as Lightning Damage"] = { { isScalable = true } }, - ["#% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice"] = { { isScalable = true, formats = { "negate" } } }, ["#% of Cold Damage taken Recouped as Life"] = { { isScalable = true } }, ["#% of Cold Damage taken as Fire Damage"] = { { isScalable = true } }, ["#% of Cold Damage taken as Lightning Damage"] = { { isScalable = true } }, + ["#% of Cold and Lightning Damage from Hits taken as Fire Damage"] = { { isScalable = true } }, ["#% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire"] = { { isScalable = true } }, ["#% of Consecrated Path and Purifying Flame Fire Damage Converted to Chaos Damage"] = { { isScalable = true } }, ["#% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, @@ -3720,8 +3776,6 @@ return { ["#% of Damage from Hits is taken from your Raised Spectres' Life before you"] = { { isScalable = true } }, ["#% of Damage from Hits is taken from your Sentinel of Radiance's Life before you"] = { { isScalable = true } }, ["#% of Damage from Hits is taken from your nearest Totem's Life before you"] = { { isScalable = true } }, - ["#% of Damage from your Hits cannot be Reflected"] = { { isScalable = true } }, - ["#% of Damage from your Hits cannot be Reflected during Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% of Damage is taken from Mana before Life"] = { { isScalable = true } }, ["#% of Damage is taken from Mana before Life per Power Charge"] = { { isScalable = true } }, ["#% of Damage is taken from Mana before Life while Focused"] = { { isScalable = true } }, @@ -3747,10 +3801,7 @@ return { ["#% of Elemental Damage Leeched as Mana"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% of Elemental Damage from Hits taken as Chaos Damage"] = { { isScalable = true } }, ["#% of Elemental Damage from Hits taken as Physical Damage"] = { { isScalable = true } }, - ["#% of Elemental Damage from your Hits cannot be Reflected"] = { { isScalable = true } }, - ["#% of Elemental Damage from your Hits cannot be Reflected while\naffected by Purity of Elements"] = { { isScalable = true, formats = { "negate" } } }, ["#% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped"] = { { isScalable = true } }, - ["#% of Elemental Hit Damage from you and your Minions cannot be Reflected"] = { { isScalable = true } }, ["#% of Energy Shield Lost per minute"] = { { isScalable = true, formats = { "negate" } } }, ["#% of Energy Shield Recharged per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["#% of Evasion Rating is Regenerated as Life per second while Focused"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, @@ -3766,7 +3817,6 @@ return { ["#% of Fire Damage from Hits taken as Cold Damage"] = { { isScalable = true } }, ["#% of Fire Damage from Hits taken as Lightning Damage"] = { { isScalable = true } }, ["#% of Fire Damage from Hits taken as Physical Damage"] = { { isScalable = true } }, - ["#% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire"] = { { isScalable = true, formats = { "negate" } } }, ["#% of Fire Damage taken Recouped as Life"] = { { isScalable = true } }, ["#% of Fire Damage taken as Lightning Damage"] = { { isScalable = true } }, ["#% of Fire Damage taken causes extra Physical Damage"] = { { isScalable = true } }, @@ -3779,12 +3829,11 @@ return { ["#% of Glacial Hammer Physical Damage Converted to Cold Damage"] = { { isScalable = true } }, ["#% of Glacial Hammer Physical Damage gained as Extra Cold Damage"] = { { isScalable = true } }, ["#% of Hexblast and Doom Blast Overkill Damage is Leeched as Life"] = { { isScalable = true } }, - ["#% of Hit Damage from you and your Minions cannot be Reflected"] = { { isScalable = true } }, - ["#% of Hit Damage from your Minions cannot be Reflected"] = { { isScalable = true, formats = { "negate" } } }, ["#% of Ice Crash Physical Damage gained as Extra Cold Damage"] = { { isScalable = true } }, ["#% of Infernal Blow Physical Damage gained as Extra Fire Damage"] = { { isScalable = true } }, ["#% of Leech from Hits with this Weapon is Instant per Enemy Power"] = { { isScalable = true } }, ["#% of Leech is Instant"] = { { isScalable = true } }, + ["#% of Leech is Instant per maximum Power Charge"] = { { isScalable = true } }, ["#% of Leech is Instant while wielding a Claw"] = { { isScalable = true } }, ["#% of Life Leech applies to Enemies as Chaos Damage"] = { { isScalable = true } }, ["#% of Life Leech is Instant"] = { { isScalable = true } }, @@ -3807,7 +3856,6 @@ return { ["#% of Lightning Damage Leeched by Enemy as Mana"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% of Lightning Damage from Hits taken as Cold Damage"] = { { isScalable = true } }, ["#% of Lightning Damage from Hits taken as Fire Damage"] = { { isScalable = true } }, - ["#% of Lightning Damage from your Hits cannot be Reflected while\naffected by Purity of Lightning"] = { { isScalable = true, formats = { "negate" } } }, ["#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% of Lightning Damage is Leeched as Mana while affected by Wrath"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% of Lightning Damage is taken from Mana before Life"] = { { isScalable = true } }, @@ -3880,8 +3928,6 @@ return { ["#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements"] = { { isScalable = true } }, ["#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning"] = { { isScalable = true } }, ["#% of Physical Damage from Hits with this Weapon is Converted to a random Element"] = { { isScalable = true } }, - ["#% of Physical Damage from your Hits cannot be Reflected"] = { { isScalable = true } }, - ["#% of Physical Damage from your Hits cannot be Reflected while affected by Determination"] = { { isScalable = true, formats = { "negate" } } }, ["#% of Physical Damage gained as Extra Chaos Damage against\nBleeding Enemies"] = { { isScalable = true } }, ["#% of Physical Damage is taken from Mana before Life"] = { { isScalable = true } }, ["#% of Physical Damage prevented from Hits in the past\n10 seconds is Regenerated as Life per second"] = { { isScalable = true, formats = { "deciseconds_to_seconds" } } }, @@ -3891,7 +3937,6 @@ return { ["#% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped"] = { { isScalable = true } }, ["#% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped"] = { { isScalable = true } }, ["#% of Physical Damage taken bypasses Energy Shield"] = { { isScalable = false } }, - ["#% of Physical Hit Damage from you and your Minions cannot be Reflected"] = { { isScalable = true } }, ["#% of Recovery applied Instantly"] = { { isScalable = true } }, ["#% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage"] = { { isScalable = true } }, ["#% of Spell Damage Leeched as Energy Shield"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, @@ -3918,6 +3963,7 @@ return { ["#% reduced Accuracy Rating when on Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Accuracy Rating while Dual Wielding"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Accuracy Rating while you have Onslaught"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Accuracy Rating while you have at least 1 nearby Ally"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Accuracy Rating with Axes"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Accuracy Rating with Bows"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Accuracy Rating with Claws"] = { { isScalable = true, formats = { "negate" } } }, @@ -3991,6 +4037,7 @@ return { ["#% reduced Armour and Evasion"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Evasion Rating during Onslaught"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Evasion Rating if you've killed a Taunted Enemy Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Evasion Rating when on Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Evasion Rating while Fortified"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Armour and Evasion Rating while Leeching"] = { { isScalable = true, formats = { "negate" } } }, @@ -4014,8 +4061,11 @@ return { ["#% reduced Armour, Evasion and Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Arrow Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Aspect of the Avian Buff Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Aspect of the Cat Buff Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Aspect of the Crab Buff Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Aspect of the Spider Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Aspect of the Spider Debuff Duration"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Aspect of the Spider Debuff Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Assassin's Mark Curse Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Assassin's Mark Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Attack Cold Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -4300,6 +4350,11 @@ return { ["#% reduced Cooldown Recovery Rate per Brand"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cooldown Recovery Rate per Power Charge"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Corrupting Fever Duration"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Cost Efficiency of Attacks"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Cost Efficiency of Retaliation Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Cost Efficiency of Spells"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Cost Efficiency of Spells you Cast yourself"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cost of Arc and Crackling Lance"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cost of Attacks while you have at least 20 Rage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Cost of Aura Skills that summon Totems"] = { { isScalable = true, formats = { "negate" } } }, @@ -4356,6 +4411,7 @@ return { ["#% reduced Critical Strike Chance while Physical Aegis is depleted"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Strike Chance while affected by Wrath"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Strike Chance while holding a Shield"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Critical Strike Chance while wielding a Staff"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Strike Chance while you have Avatar of Fire"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Strike Chance while you have at least 200 Intelligence"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Critical Strike Chance with Axes"] = { { isScalable = true, formats = { "negate" } } }, @@ -4428,6 +4484,7 @@ return { ["#% reduced Damage per Frenzy Charge"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage per Frenzy Charge with Hits against Enemies on Low Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage per Linked target"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Damage per Moon Rite completed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage per Power Charge"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage per Power Charge with Hits against Enemies on Full Life"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced Damage per Power Charge with Hits against Enemies on Low Life"] = { { isScalable = false, formats = { "negate" } } }, @@ -4573,9 +4630,9 @@ return { ["#% reduced Damage with Vaal Skills during effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage with Wands"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Damage with Wands if you've dealt a Critical Strike Recently"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Dark Pact Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Dark Pact Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Dark Pact Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Dark Bargain Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Dark Bargain Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Dark Bargain Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Decoy Totem Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Decoy Totem Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Defences from Equipped Shield"] = { { isScalable = true, formats = { "negate" } } }, @@ -4701,6 +4758,7 @@ return { ["#% reduced Effect of Shocks you inflict while Leeching Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Shrine Buffs on Players"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Shrine Buffs on you"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Effect of Shrine Buffs on you for each 5% of Life Reserved"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced Effect of Socketed Abyss Jewels"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Socketed Magic Ghastly Eye Jewels"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of Socketed Magic Hypnotic Eye Jewels"] = { { isScalable = true, formats = { "negate" } } }, @@ -4725,6 +4783,7 @@ return { ["#% reduced Effect of your Curses"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of your Curses if you've spent 200 total Mana Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of your Marks"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Effect of your Marks per maximum Power Charge"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Effect of your Marks while Elusive"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Elemental Ailment Duration on you"] = { { isScalable = true } }, ["#% reduced Elemental Ailment Duration on you per 10 Devotion"] = { { isScalable = true } }, @@ -4775,6 +4834,7 @@ return { ["#% reduced Elemental and Chaos Resistances"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Elusive Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Empowerment"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Enchantment Modifier magnitudes"] = { { isScalable = false, formats = { "negate" } } }, ["#% reduced Endurance Charge Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Endurance, Frenzy and Power Charge Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Enduring Cry Buff Effect"] = { { isScalable = true, formats = { "negate" } } }, @@ -4960,16 +5020,15 @@ return { ["#% reduced Glacial Cascade Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Glacial Hammer Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Global Accuracy Rating while you have at least 1 nearby Ally"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Armour while you have no Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Attack Speed per Level"] = { { isScalable = true, formats = { "negate", "milliseconds_to_seconds" } } }, ["#% reduced Global Critical Strike Chance"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Critical Strike Chance if Corrupted"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Critical Strike Chance per Level"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Critical Strike Chance while wielding a Bow"] = { { isScalable = true, formats = { "negate" } } }, - ["#% reduced Global Critical Strike Chance while wielding a Staff"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Defences"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Global Defences per Empty Socket"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Defences per White Socket"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Evasion Rating when on Full Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Global Evasion Rating when on Low Life"] = { { isScalable = true, formats = { "negate" } } }, @@ -5033,6 +5092,7 @@ return { ["#% reduced Leap Slam Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Leap Slam Attack Speed"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Leap Slam Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Life Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Life Cost of Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Life Recovered"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Life Recovery Rate if you haven't Killed Recently"] = { { isScalable = true, formats = { "negate" } } }, @@ -5080,6 +5140,19 @@ return { ["#% reduced Main Hand Attack Damage while wielding two different Weapon Types"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Main Hand Critical Strike Chance per\nMurderous Eye Jewel affecting you"] = { { isScalable = true } }, ["#% reduced Mana Cost"] = { { isScalable = false } }, + ["#% reduced Mana Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency for 2 seconds after Spending a total of 800 Mana"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Curse Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Link Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Mark Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Minion Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Retaliation Skills"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Skills which throw Traps or Mines"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Spells"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency of Spells you Cast yourself"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency per 10 Devotion"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency per Endurance Charge"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Mana Cost Efficiency while on Low Mana"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost of Attacks"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost of Curse Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Mana Cost of Link Skills"] = { { isScalable = true, formats = { "negate" } } }, @@ -5309,6 +5382,7 @@ return { ["#% reduced Projectile Attack Damage"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Projectile Attack Damage during any Flask Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Projectile Attack Damage per 200 Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Projectile Attack Damage per 400 Accuracy Rating"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Projectile Attack Damage while you have at least 200 Dexterity"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Projectile Attack Damage with Claws or Daggers"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Projectile Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -5345,6 +5419,7 @@ return { ["#% reduced Quantity of Vendor Refresh Currencies dropped by Monsters in Area"] = { { isScalable = true } }, ["#% reduced Quantity of Vivid Wisps found in the Viridian Wildwood"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Quantity of Wild Wisps found in the Viridian Wildwood"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Rage Cost Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rage Cost of Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rage Effect"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rage Vortex Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, @@ -5357,6 +5432,7 @@ return { ["#% reduced Rallying Cry Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rampage Streak Duration"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rarity of Fish Caught"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Rarity of Fish Caught per held Dead Fish"] = { { isScalable = false } }, ["#% reduced Rarity of Items Dropped"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rarity of Items Dropped by Enemies killed with a Critical Strike"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Rarity of Items Dropped by Shattered Enemies"] = { { isScalable = true, formats = { "negate" } } }, @@ -5663,6 +5739,7 @@ return { ["#% reduced maximum Energy Shield"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Energy Shield if Corrupted"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced maximum Life and Mana if your equipped Staff has a Red and Blue Socket"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Life and increased Fire Resistance"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Life if 2 Elder Items are Equipped"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced maximum Life if Corrupted"] = { { isScalable = true, formats = { "negate" } } }, @@ -5707,6 +5784,9 @@ return { ["#% to Chaos Golem Elemental Resistances"] = { { isScalable = true } }, ["#% to Chaos Resistance"] = { { isScalable = true } }, ["#% to Chaos Resistance during any Flask Effect"] = { { isScalable = true } }, + ["#% to Chaos Resistance per 1% Cold Resistance"] = { { isScalable = false } }, + ["#% to Chaos Resistance per 1% Fire Resistance"] = { { isScalable = false } }, + ["#% to Chaos Resistance per 1% Lightning Resistance"] = { { isScalable = false } }, ["#% to Chaos Resistance per Endurance Charge"] = { { isScalable = true } }, ["#% to Chaos Resistance per Poison on you"] = { { isScalable = true } }, ["#% to Chaos Resistance when on Low Life"] = { { isScalable = true } }, @@ -5727,6 +5807,7 @@ return { ["#% to Critical Strike Chance of Herald Skills"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% to Critical Strike Chance per 10 Maximum Energy Shield on Shield"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, + ["#% to Critical Strike Chance per Power Charge"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% to Critical Strike Chance while affected by Aspect of the Cat"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% to Critical Strike Chance while affected by Hatred"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["#% to Critical Strike Multiplier"] = { { isScalable = true } }, @@ -5768,6 +5849,7 @@ return { ["#% to Critical Strike Multiplier while Dual Wielding"] = { { isScalable = true } }, ["#% to Critical Strike Multiplier while affected by Anger"] = { { isScalable = true } }, ["#% to Critical Strike Multiplier while affected by Precision"] = { { isScalable = true } }, + ["#% to Critical Strike Multiplier while wielding a Staff"] = { { isScalable = true } }, ["#% to Critical Strike Multiplier with Axes"] = { { isScalable = true } }, ["#% to Critical Strike Multiplier with Bows"] = { { isScalable = true } }, ["#% to Critical Strike Multiplier with Chaos Skills"] = { { isScalable = true } }, @@ -5828,7 +5910,6 @@ return { ["#% to Global Critical Strike Multiplier"] = { { isScalable = true } }, ["#% to Global Critical Strike Multiplier per Green Socket"] = { { isScalable = true } }, ["#% to Global Critical Strike Multiplier while wielding a Bow"] = { { isScalable = true } }, - ["#% to Global Critical Strike Multiplier while wielding a Staff"] = { { isScalable = true } }, ["#% to Ice Golem Elemental Resistances"] = { { isScalable = true } }, ["#% to Lightning Damage over Time Multiplier"] = { { isScalable = true } }, ["#% to Lightning Golem Elemental Resistances"] = { { isScalable = true } }, @@ -6267,19 +6348,21 @@ return { ["30% increased Movement Speed for # seconds on Throwing a Trap"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["35% chance to avoid being Stunned for each Herald Buff affecting you"] = { }, ["40% chance to Summon an additional Skeleton with Summon Skeletons"] = { }, + ["40% increased Critical Strike Chance if you've Summoned a Totem Recently"] = { }, + ["40% increased Critical Strike Chance if you've Summoned a Totem in the past # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["40% increased Global Critical Strike Chance"] = { }, ["50% chance to cause Bleeding on Critical Strike"] = { }, ["50% chance to cause Bleeding on Hit"] = { }, ["50% increased Global Critical Strike Chance"] = { }, ["50% more Global Accuracy Rating"] = { }, ["60% chance to Summon an additional Skeleton with Summon Skeletons"] = { }, - ["60% increased Global Critical Strike Chance if you've Summoned a Totem Recently"] = { }, - ["60% increased Global Critical Strike Chance if you've Summoned a Totem in the past # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["80% chance to Summon an additional Skeleton with Summon Skeletons"] = { }, ["A Beyond Unique drops when the first Unique Monster from Beyond is slain"] = { }, ["A Monster in this Area will summon Abaxoth when Slain"] = { }, ["A Monster in this Area will summon a Unique Monster from Beyond when Slain"] = { }, ["A Strongbox in this Area is Corrupted"] = { }, + ["Abyss Chasms in Area spawn #% increased Monsters per fed soul"] = { { isScalable = true } }, + ["Abyss Chasms in Area spawn #% reduced Monsters per fed soul"] = { { isScalable = true, formats = { "negate" } } }, ["Abyss Jewels found are Corrupted and have 5 or 6 random Modifiers"] = { }, ["Abyss Jewels found have #% chance to be Corrupted and have 5 or 6 random Modifiers"] = { { isScalable = true } }, ["Abysses in Area have #% increased chance to lead to an Abyssal Depths"] = { { isScalable = true } }, @@ -6417,6 +6500,7 @@ return { ["Adds # to # Lightning Damage to Spells"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Lightning Damage to Spells and Attacks"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Lightning Damage to Spells during Effect"] = { { isScalable = true }, { isScalable = true } }, + ["Adds # to # Lightning Damage to Spells per 10 Intelligence"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Lightning Damage to Spells per Power Charge"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Lightning Damage to Spells while Unarmed"] = { { isScalable = true }, { isScalable = true } }, ["Adds # to # Lightning Damage to Spells while no Life is Reserved"] = { { isScalable = true }, { isScalable = true } }, @@ -6474,6 +6558,8 @@ return { ["All Damage can inflict all Elemental Ailments while Unbound"] = { }, ["All Damage from Blast Rain and Artillery Ballista Hits can Poison"] = { }, ["All Damage from Cold Snap and Creeping Frost can Sap"] = { }, + ["All Damage from Critical Strikes can apply Cold Ailments during effect"] = { }, + ["All Damage from Critical Strikes can apply Lightning Ailments during effect"] = { }, ["All Damage from Hits can Poison"] = { }, ["All Damage from Hits can cause Elemental Ailments you are suffering"] = { }, ["All Damage from Hits will cause Elemental Ailments you are suffering"] = { }, @@ -6496,6 +6582,7 @@ return { ["All Damage with Maces and Sceptres inflicts Chill"] = { }, ["All Damage with Triggered Spells can Poison"] = { }, ["All Elemental Damage Converted to Chaos Damage"] = { }, + ["All Equipment Items on Mercenaries found in Area are Unique"] = { }, ["All Hits with your next Non-Channelling Attack within # second of taking a Critical Strike will be Critical Strikes"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["All Hits with your next Non-Channelling Attack within # seconds of taking a Critical Strike will be Critical Strikes"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["All Incursions must be completed to claim Reward"] = { }, @@ -6519,6 +6606,7 @@ return { ["All bonuses from an Equipped Shield apply to your Minions instead of you"] = { }, ["All hits are Critical Strikes"] = { }, ["All hits are Critical Strikes while holding a Fishing Rod"] = { }, + ["All other Summoned Totems die when you Summon a Totem"] = { }, ["Allies' Aura Buffs do not affect you"] = { }, ["Allocated Notable Passive Skills in Radius grant nothing"] = { }, ["Allocated Small Passive Skills in Radius grant nothing"] = { }, @@ -6532,6 +6620,7 @@ return { ["Always Freeze, Shock and Ignite"] = { }, ["Always Freeze, Shock and Ignite during any Flask Effect"] = { }, ["Always Freezes Enemies on Hit"] = { }, + ["Always Hits Burning Enemies"] = { }, ["Always Ignite"] = { }, ["Always Ignite when in Main Hand"] = { }, ["Always Ignite while Ignited"] = { }, @@ -6550,6 +6639,7 @@ return { ["Always inflict Brittle"] = { }, ["Always inflict Brittle while affected by Hatred"] = { }, ["Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits"] = { }, + ["An Abyss Pit in Area will spawn an Abyssal Consort"] = { }, ["An Enemy Writhing Worm spawns every 2 seconds"] = { }, ["An Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit"] = { }, ["An additional Basic Currency Item drops when the first Invasion Boss is slain"] = { }, @@ -6612,8 +6702,10 @@ return { ["Arcane Cloak Spends an additional #% of current Mana"] = { { isScalable = true } }, ["Arcane Cloak grants Life Regeneration equal to #% of Mana Spent per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Arcane Surge also grants #% increased Life Regeneration Rate to you"] = { { isScalable = true } }, + ["Arcane Surge also grants #% increased Mana Cost Efficiency to you"] = { { isScalable = true } }, ["Arcane Surge also grants #% less Spell Damage to you"] = { { isScalable = true, formats = { "negate" } } }, ["Arcane Surge also grants #% more Spell Damage to you"] = { { isScalable = true } }, + ["Arcane Surge also grants #% of Damage taken Recouped as Mana to you"] = { { isScalable = true } }, ["Arcanist Brand has #% increased Cast Speed"] = { { isScalable = true } }, ["Arcanist Brand has #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Arctic Armour has #% increased Mana Reservation Efficiency"] = { { isScalable = true } }, @@ -6974,6 +7066,7 @@ return { ["Area is inhabited by Solaris fanatics"] = { }, ["Area is inhabited by Spiders"] = { }, ["Area is inhabited by Undead"] = { }, + ["Area is inhabited by a Mercenary"] = { }, ["Area is inhabited by an additional Invasion Boss"] = { }, ["Area is inhabited by an additional Rogue Exile"] = { }, ["Area is inhabited by ranged monsters"] = { }, @@ -6984,9 +7077,9 @@ return { ["Area's inhabitants are lying in ambush"] = { }, ["Areas Have the Same Layout for all Players"] = { }, ["Areas are Breached\nAreas contain additional Large Breach Hands\nBreach Bosses have a chance to drop a Breachstone"] = { }, - ["Areas can contain Abysses"] = { }, ["Areas can contain Imprisoned Monsters"] = { }, ["Areas contain # additional Shrines guarded by Pantheon Monsters"] = { { isScalable = true } }, + ["Areas contain Abysses"] = { }, ["Areas contain Beasts to hunt"] = { }, ["Areas contain Einhar\nAreas can contain capturable Harvest Beasts"] = { }, ["Areas contain Memory Fragments"] = { }, @@ -7017,6 +7110,7 @@ return { ["Armour also applies to Lightning Damage taken from Hits"] = { }, ["Armour from Equipped Body Armour is doubled"] = { }, ["Armour from Equipped Shield is doubled"] = { }, + ["Armour is increased by #% of Overcapped Fire Resistance"] = { { isScalable = true } }, ["Armour is increased by Overcapped Fire Resistance"] = { }, ["Arrow Dancing"] = { }, ["Arrows Chain # times"] = { { isScalable = true } }, @@ -7119,6 +7213,7 @@ return { ["Attacks fire # additional Projectiles when in Off Hand"] = { { isScalable = true } }, ["Attacks fire an additional Projectile"] = { }, ["Attacks fire an additional Projectile when in Off Hand"] = { }, + ["Attacks have #% Arcane Might while wielding a Wand"] = { { isScalable = true } }, ["Attacks have #% chance to Ignite"] = { { isScalable = true } }, ["Attacks have #% chance to Maim on Hit"] = { { isScalable = true } }, ["Attacks have #% chance to Poison while at maximum Frenzy Charges"] = { { isScalable = true } }, @@ -7127,6 +7222,8 @@ return { ["Attacks have #% reduced Area of Effect when in Main Hand"] = { { isScalable = true, formats = { "negate" } } }, ["Attacks have #% to Critical Strike Chance"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["Attacks have #% to Critical Strike Chance if 4 Elder Items are Equipped"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, + ["Attacks have 100% Arcane Might"] = { }, + ["Attacks have 150% Arcane Might"] = { }, ["Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies"] = { }, ["Attacks inflict Unnerve on Critical Strike for 4 seconds"] = { }, ["Attacks that Fire Projectiles Consume up to # additional Steel Shard"] = { { isScalable = true } }, @@ -7211,10 +7308,10 @@ return { ["Auras from your Skills have #% reduced Effect on you for\neach Herald affecting you"] = { { isScalable = true, formats = { "negate" } } }, ["Auras from your Skills which affect Allies also affect Enemies"] = { }, ["Avatar of Fire"] = { }, - ["Avoid All Damage from Hits"] = { }, ["Avoid Chaos Damage from Hits"] = { }, ["Avoid Cold Damage from Hits"] = { }, - ["Avoid Elemental Damage from Hits while you have Frenzy Charges"] = { }, + ["Avoid Damage of each Element from Hits while you have Frenzy Charges"] = { }, + ["Avoid Damage of each Type from Hits"] = { }, ["Avoid Fire Damage from Hits"] = { }, ["Avoid Lightning Damage from Hits"] = { }, ["Avoid Physical Damage from Hits"] = { }, @@ -7287,6 +7384,7 @@ return { ["Beyond Portals have a #% chance to spawn an additional Beyond Demon"] = { { isScalable = true } }, ["Beyond Portals in your Maps cannot spawn Unique Bosses\nBeyond Portals in your Maps have 50% less Merging Radius"] = { }, ["Beyond Portals spawn an additional Beyond Demon"] = { }, + ["Binding # souls to phylacteries to sustain Zorath\nPassives affected are Conquered by the Abyssal"] = { { isScalable = true } }, ["Birthed Armour has a random amount of Quality"] = { }, ["Birthed Armour rolls Sockets and Links # times, keeping the best outcome"] = { { isScalable = true } }, ["Birthed Currency Items are rolled # additional times keeping the rarest outcome"] = { { isScalable = true } }, @@ -7342,6 +7440,7 @@ return { ["Birthed Uniques are rolled an additional time keeping the rarest outcome"] = { }, ["Birthed Uniques have #% increased chance to be Foulborn"] = { { isScalable = true } }, ["Birthed Uniques have #% reduced chance to be Foulborn"] = { { isScalable = true, formats = { "negate" } } }, + ["Bitter Frost"] = { }, ["Black Scythe Training"] = { }, ["Blade Blast deals #% increased Damage"] = { { isScalable = true } }, ["Blade Blast deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -7514,10 +7613,12 @@ return { ["Call of Steel has #% increased Use Speed"] = { { isScalable = true } }, ["Call to Arms"] = { }, ["Can Scout nearby Enemy Patrols and Elite Patrols during Heists"] = { }, + ["Can be Allflame Crafted as if Rare\nCannot gain Intangibility"] = { }, ["Can be Anointed"] = { }, ["Can be Enchanted by a Kalguuran Runesmith"] = { }, ["Can be Runesmithed as though it were all One Handed Melee Weapon Types"] = { }, ["Can be modified while Corrupted"] = { }, + ["Can catch Abyssal Fish"] = { }, ["Can have # additional Crafted Modifier"] = { { isScalable = true } }, ["Can have # additional Crafted Modifiers"] = { { isScalable = true } }, ["Can have # additional Enchantment Modifiers"] = { { isScalable = true } }, @@ -7631,6 +7732,7 @@ return { ["Cannot gain Mana during effect"] = { }, ["Cannot gain Power Charges"] = { }, ["Cannot have a Boss in the final Round"] = { }, + ["Cannot have non-Abyssal sockets"] = { }, ["Cannot inflict Curses"] = { }, ["Cannot inflict Elemental Ailments"] = { }, ["Cannot inflict Freeze"] = { }, @@ -7765,7 +7867,8 @@ return { ["Claw or Dagger Attacks deal #% increased Damage with Hits and Ailments"] = { { isScalable = true } }, ["Claw or Dagger Attacks deal #% reduced Damage with Ailments"] = { { isScalable = true, formats = { "negate" } } }, ["Claw or Dagger Attacks deal #% reduced Damage with Hits and Ailments"] = { { isScalable = true, formats = { "negate" } } }, - ["Cleave has +0.1 metres to radius per Nearby Enemy, up to a maximum of +1 metre"] = { }, + ["Cleave has # metres to radius per Nearby Enemy, up to a maximum of +1 metre"] = { { isScalable = false, formats = { "locations_to_metres" } } }, + ["Cleave has +1 metre to radius per Nearby Enemy, up to a maximum of +1 metre"] = { }, ["Cobra Lash Chains # additional times"] = { { isScalable = true } }, ["Cobra Lash Chains an additional time"] = { }, ["Cobra Lash and Venom Gyre have #% of Physical Damage Converted to Chaos Damage"] = { { isScalable = true } }, @@ -7979,6 +8082,7 @@ return { ["Culling Strike against Frozen Enemies"] = { }, ["Culling Strike against Marked Enemy"] = { }, ["Culling Strike during Effect"] = { }, + ["Curse Aura Skills reserve Life instead of Mana"] = { }, ["Curse Auras from Socketed Skills also affect you"] = { }, ["Curse Enemies which Hit you with a random Hex, ignoring Curse Limit"] = { }, ["Curse Enemies with Conductivity on Hit"] = { }, @@ -7997,6 +8101,7 @@ return { ["Curse Enemies with Vulnerability on Block"] = { }, ["Curse Enemies with Vulnerability on Hit"] = { }, ["Curse Non-Cursed Enemies with Enfeeble on Hit"] = { }, + ["Curse Skills cost Life instead of Mana"] = { }, ["Curse Skills have #% increased Cast Speed"] = { { isScalable = true } }, ["Curse Skills have #% increased Skill Effect Duration"] = { { isScalable = true } }, ["Curse Skills have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, @@ -8018,6 +8123,76 @@ return { ["Curses you inflict are reflected back to you"] = { }, ["Curses you with Punishment on Kill"] = { }, ["Curses you with Silence when Hit"] = { }, + ["DNT # to all Attributes for each Keystone affecting you"] = { { isScalable = true } }, + ["DNT #% Chance to Block Spell Damage per Minion"] = { { isScalable = true } }, + ["DNT #% increased Area of Effect per 10 Rage"] = { { isScalable = true } }, + ["DNT #% increased Attribute Requirements of equipped Armour"] = { { isScalable = true } }, + ["DNT #% increased Attribute Requirements of equipped Weapons"] = { { isScalable = true } }, + ["DNT #% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently"] = { { isScalable = true } }, + ["DNT #% increased Explicit Modifier Magnitudes per socketed Abyss Jewel"] = { { isScalable = false } }, + ["DNT #% reduced Attribute Requirements of equipped Armour"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT #% reduced Attribute Requirements of equipped Weapons"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT #% reduced Chance to Block Attack and Spell Damage for every 100 Life Spent Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT #% to All Resistances per Minion"] = { { isScalable = true } }, + ["DNT #% to Critical Strike Multiplier with Unarmed Attack"] = { { isScalable = true } }, + ["DNT #% to Global Defenses per Minion"] = { { isScalable = true } }, + ["DNT Adds # maximum Lightning Damage\nLose one maximum Lightning Damage per level"] = { { isScalable = true } }, + ["DNT Area contains # additional Common Chest Marker"] = { { isScalable = true } }, + ["DNT Area contains # additional Common Chest Markers"] = { { isScalable = true } }, + ["DNT Area contains # additional Epic Chest Marker"] = { { isScalable = true } }, + ["DNT Area contains # additional Epic Chest Markers"] = { { isScalable = true } }, + ["DNT Area contains # additional Uncommon Chest Marker"] = { { isScalable = true } }, + ["DNT Area contains # additional Uncommon Chest Markers"] = { { isScalable = true } }, + ["DNT Areas contain additional Betrayal Targets\nBetrayal Targets ambush players"] = { }, + ["DNT Areas contain additional Essences\nEssences contain multiple Rare Monsters with Essences"] = { }, + ["DNT Areas contain additional Rogue Exiles\nRogues Exiles are equipped Unique Items\nRogue Exiles drop their equipped Unique Items"] = { }, + ["DNT Areas contain additional packs of Beasts instead of other Monsters"] = { }, + ["DNT Attacks with this Weapon gain 1% of Physical Damage as Extra Fire per #% life reserved"] = { { isScalable = false } }, + ["DNT Auras from your Allies have #% increased Effect on you"] = { { isScalable = true } }, + ["DNT Auras from your Allies have #% reduced Effect on you"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT Bow Attacks Sacrifice #% of your Life to fire an additional Arrow for every 100 Life Sacrificed"] = { { isScalable = true } }, + ["DNT Dropped items have #% chance to be Fractured"] = { { isScalable = true } }, + ["DNT Energy Shield Recharge instead applies to Mana"] = { }, + ["DNT Every 4 seconds, Remove Elemental Ailments from you"] = { }, + ["DNT Every 4 seconds, remove all Curses"] = { }, + ["DNT Every 6 seconds:\n#% Chance to Block Attack Damage for 3 seconds\n#% Chance to Block Spell Damage for 3 seconds"] = { { isScalable = false }, { isScalable = false } }, + ["DNT For each nearby Ally you and nearby Allies deal #% less Damage per nearby Ally, up to 15%"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT For each nearby Ally you and nearby Allies deal #% more Damage, up to 15%"] = { { isScalable = true } }, + ["DNT Grants Level # Unleash Power"] = { { isScalable = false } }, + ["DNT Hits with this Weapon deal Triple Damage if you have spent at least # seconds on a single attack recently"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, + ["DNT Impaled Enemies Cannot be Impaled"] = { }, + ["DNT Impales you inflict have #% increased Effect per Impale on you"] = { { isScalable = true } }, + ["DNT Impales you inflict have #% reduced Effect per Impale on you"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage"] = { }, + ["DNT Killing a Burning Enemy creates a Ghostflame Soul"] = { }, + ["DNT Killing a Burning Enemy has a #% chance to create a Ghostflame Soul"] = { { isScalable = true } }, + ["DNT Link Skills Cost Life instead of Mana"] = { }, + ["DNT Minions are Aggressive if you've Blocked Recently"] = { }, + ["DNT Monsters spawn Volatile Cores on death"] = { }, + ["DNT Nearby Allies have Onslaught"] = { }, + ["DNT Nearby Non-Player Allies are Shocked, taking #% increased damage\nGain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies"] = { { isScalable = true } }, + ["DNT Players can be touched by Tormented Spirits"] = { }, + ["DNT Projectiles from your Spells have infinite speed"] = { }, + ["DNT Projectiles you create move at your speed"] = { }, + ["DNT Sirus' Meteors rain down in Area"] = { }, + ["DNT Socketed Gems are Supported by Level # Crustaceous Grasp"] = { { isScalable = false } }, + ["DNT Socketed Gems are Supported by Level # Rings of Light"] = { { isScalable = false } }, + ["DNT Trigger Ghost Furnace when you Ignite an Enemy"] = { }, + ["DNT Triggers Level # Violent Path when Equipped"] = { { isScalable = false } }, + ["DNT Unarmed Attacks deal # to # added Chaos Damage for each Poison on the target, up to 100"] = { { isScalable = true }, { isScalable = true } }, + ["DNT Unarmed Non-Vaal Strike Skills target # additional nearby Enemies"] = { { isScalable = true } }, + ["DNT Unarmed Non-Vaal Strike Skills target # additional nearby Enemy"] = { { isScalable = true } }, + ["DNT You have Feeding Frenzy if you've Blocked Recently"] = { }, + ["DNT You have Onslaught during Effect of any Life Flask"] = { }, + ["DNT Your Guard Skill Buffs take Damage for Linked Targets as well as you"] = { }, + ["DNT Your Minions cannot cast Spells"] = { }, + ["DNT Your Minions cannot use Attacks"] = { }, + ["DNT Your Minions have #% increased Cooldown Recovery Rate with Attacks"] = { { isScalable = true } }, + ["DNT Your Minions have #% increased Cooldown Recovery Rate with Spells"] = { { isScalable = true } }, + ["DNT Your Minions have #% reduced Cooldown Recovery Rate with Attacks"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT Your Minions have #% reduced Cooldown Recovery Rate with Spells"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT Your minions gain your chance to Suppress Spell Damage"] = { }, + ["DNT Your minions have no Armour or Maximum Energy Shield"] = { }, ["Dagger Attacks deal #% increased Damage with Ailments"] = { { isScalable = true } }, ["Dagger Attacks deal #% increased Damage with Hits and Ailments"] = { { isScalable = true } }, ["Dagger Attacks deal #% reduced Damage with Ailments"] = { { isScalable = true, formats = { "negate" } } }, @@ -8237,6 +8412,7 @@ return { ["Dread Banner has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["Drop # Atlas Memories on Map Completion"] = { { isScalable = true } }, ["Drop # Forbidden Tomes on Map Completion"] = { { isScalable = true } }, + ["Drop Brine Ground while moving, lasting # seconds"] = { { isScalable = false, formats = { "milliseconds_to_seconds" } } }, ["Drop a Forbidden Tome on Map Completion"] = { }, ["Drop an Atlas Memory on Map Completion"] = { }, ["Dropped Armour has #% chance to be converted to a Blessed Orb"] = { { isScalable = true } }, @@ -8371,6 +8547,7 @@ return { ["Elemental Hit has #% chance to Freeze, Shock and Ignite"] = { { isScalable = true } }, ["Elemental Hit's Added Damage cannot be replaced this way"] = { }, ["Elemental Overload"] = { }, + ["Elemental Purist"] = { }, ["Elemental Resistances are Zero"] = { }, ["Elemental Resistances are capped by your highest Maximum Elemental Resistance instead"] = { }, ["Elemental Resistances cannot be Penetrated"] = { }, @@ -8727,6 +8904,7 @@ return { ["Fireball has #% chance to Ignite"] = { { isScalable = true } }, ["Fireball has #% chance to Scorch"] = { { isScalable = true } }, ["Fires Projectiles every # seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_1dp" } } }, + ["Fires Projectiles every second"] = { }, ["First Stage deals #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, ["First Stage deals #% more Damage"] = { { isScalable = true } }, ["First and Final shots of Barrage sequences fire Projectiles that Return to you"] = { }, @@ -8806,7 +8984,7 @@ return { ["For each nearby corpse, you and nearby Allies Regenerate #% of Energy Shield per second, up to 2.0% per second"] = { { isScalable = true, formats = { "per_minute_to_per_second_1dp" } } }, ["For each nearby corpse, you and nearby Allies deal #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, ["For each nearby corpse, you and nearby Allies deal #% more Damage, up to a maximum of 10%"] = { { isScalable = true } }, - ["Forbidden Rite and Dark Pact gains Added Chaos Damage equal to #% of Mana Cost, if Mana Cost is not higher than the maximum you could spend"] = { { isScalable = true } }, + ["Forbidden Rite and Dark Bargain gains Added Chaos Damage equal to #% of Mana Cost, if Mana Cost is not higher than the maximum you could spend"] = { { isScalable = true } }, ["Forbidden Rite fires # additional Projectiles"] = { { isScalable = true } }, ["Forbidden Rite fires an additional Projectile"] = { }, ["Forbidden Rite fires extra Projectiles at up to # surrounding Enemies"] = { { isScalable = true } }, @@ -9089,6 +9267,7 @@ return { ["Gain Arcane Surge when you use a Movement Skill"] = { }, ["Gain Arcane Surge when your Mine is Detonated targeting an Enemy"] = { }, ["Gain Arcane Surge when your Trap is Triggered by an Enemy"] = { }, + ["Gain Brine Charges instead of Endurance Charges"] = { }, ["Gain Brutal Charges instead of Endurance Charges"] = { }, ["Gain Chaotic Might for 10 seconds on Kill"] = { }, ["Gain Chaotic Might for 4 seconds on Critical Strike"] = { }, @@ -9099,7 +9278,7 @@ return { ["Gain Elusive on Kill"] = { }, ["Gain Elusive on reaching Low Life"] = { }, ["Gain Exposed to Corruption stacks twice as frequently\nLose 1 stack of Exposed to Corruption every 5 seconds"] = { }, - ["Gain Fanaticism for 4 seconds on reaching Maximum Fanatic Charges"] = { }, + ["Gain Fanaticism for 5 seconds on reaching Maximum Fanatic Charges"] = { }, ["Gain Flaming, Icy or Crackling Runesurge at random for # second every 10 seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Gain Flaming, Icy or Crackling Runesurge at random for # seconds every 10 seconds"] = { { isScalable = true, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Gain Her Blessing for 3 seconds when you Ignite an Enemy"] = { }, @@ -9108,6 +9287,7 @@ return { ["Gain Immunity to Physical Damage for # seconds on Rampage"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"] = { }, ["Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items"] = { }, + ["Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items\nat #% of the value"] = { { isScalable = true } }, ["Gain Onslaught after Spending a total of 200 Mana"] = { }, ["Gain Onslaught for # second per Frenzy Charge consumed on use"] = { { isScalable = true } }, ["Gain Onslaught for # seconds on Kill"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, @@ -9124,6 +9304,7 @@ return { ["Gain Phasing for # seconds when your Trap is triggered by an Enemy"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Phasing for 3 seconds when your Trap is triggered by an Enemy"] = { }, ["Gain Phasing for 4 seconds on Kill"] = { }, + ["Gain Phasing on Hit with this weapon"] = { }, ["Gain Rampage while at Maximum Endurance Charges"] = { }, ["Gain Sacrificial Zeal when you use a Skill, dealing you #% of the Skill's Mana Cost as Physical Damage per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"] = { }, @@ -9131,6 +9312,8 @@ return { ["Gain Soul Eater for # seconds on Rare Monster Kill"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Soul Eater for # seconds when you use a Vaal Skill"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike"] = { }, + ["Gain Spirit Infusion every # seconds while Channelling a Spell"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, + ["Gain Spirit Infusion every second while Channelling a Spell"] = { }, ["Gain Unholy Might for # second on Rampage"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Unholy Might for # seconds on Rampage"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Gain Unholy Might for 2 seconds on Critical Strike"] = { }, @@ -9203,6 +9386,8 @@ return { ["Gain a Spirit Charge on Kill"] = { }, ["Gain a Void Charge every # seconds"] = { { isScalable = false, formats = { "milliseconds_to_seconds" } } }, ["Gain a Void Charge every second"] = { }, + ["Gain a random Blood Shrine buff every # seconds"] = { { isScalable = false, formats = { "milliseconds_to_seconds" } } }, + ["Gain a random Blood Shrine buff every 1 second"] = { }, ["Gain a random Shrine Buff for # seconds when you Kill a Rare or Unique Enemy"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["Gain a random Shrine buff every # seconds"] = { { isScalable = false, formats = { "milliseconds_to_seconds" } } }, ["Gain a random Shrine buff every 1 second"] = { }, @@ -9256,10 +9441,10 @@ return { ["Galvanic Field fires Beams with #% increased Frequency"] = { { isScalable = true } }, ["Galvanic Field fires Beams with #% reduced Frequency"] = { { isScalable = true } }, ["Galvanic Field has #% increased Cast Speed"] = { { isScalable = true } }, + ["Gems Socketed always have the Quality bonus from Socket Colour"] = { }, ["Gems Socketed in Blue Sockets gain #% increased Experience"] = { { isScalable = true } }, ["Gems Socketed in Green Sockets have #% to Quality"] = { { isScalable = true } }, ["Gems Socketed in Red Sockets have # to Level"] = { { isScalable = true } }, - ["Gems can be Socketed in this Item ignoring Socket Colour"] = { }, ["General's Cry has # to maximum number of Mirage Warriors"] = { { isScalable = true } }, ["General's Cry has #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Ghost Dance"] = { }, @@ -9348,7 +9533,11 @@ return { ["Grants Level # Affliction Skill"] = { { isScalable = false } }, ["Grants Level # Anger Skill"] = { { isScalable = false } }, ["Grants Level # Approaching Flames Skill"] = { { isScalable = false } }, + ["Grants Level # Aspect of Arakaali Skill"] = { { isScalable = false } }, + ["Grants Level # Aspect of Lunaris Skill"] = { { isScalable = false } }, + ["Grants Level # Aspect of Solaris Skill"] = { { isScalable = false } }, ["Grants Level # Aspect of the Avian Skill"] = { { isScalable = false } }, + ["Grants Level # Aspect of the Brine King Skill"] = { { isScalable = false } }, ["Grants Level # Aspect of the Cat Skill"] = { { isScalable = false } }, ["Grants Level # Aspect of the Crab Skill"] = { { isScalable = false } }, ["Grants Level # Aspect of the Spider Skill"] = { { isScalable = false } }, @@ -9411,6 +9600,7 @@ return { ["Grants Level # Queen's Demand Skill"] = { { isScalable = false } }, ["Grants Level # Rallying Cry Skill"] = { { isScalable = false } }, ["Grants Level # Ravenous Skill"] = { { isScalable = false } }, + ["Grants Level # Savage Barnacle"] = { { isScalable = false } }, ["Grants Level # Scorching Ray Skill"] = { { isScalable = false } }, ["Grants Level # Smite Skill"] = { { isScalable = false } }, ["Grants Level # Snipe Skill"] = { { isScalable = false } }, @@ -9783,6 +9973,9 @@ return { ["If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed"] = { { isScalable = true } }, ["If you've Warcried Recently, you and nearby allies\nhave #% increased Attack Speed"] = { { isScalable = true } }, ["If you've used a Skill Recently, you and nearby Allies have Tailwind"] = { }, + ["If your Linked Mercenary dies, the Link owner does not also die"] = { }, + ["If your Mercenary's Life is higher than your own, #% of Damage from Hits is\ntaken from your Mercenary's Life before you"] = { { isScalable = true } }, + ["If your Mercenary's Life is lower than your own, #% of Damage they take is Recouped as Life"] = { { isScalable = true } }, ["Ignited Enemies Burn #% slower"] = { { isScalable = true } }, ["Ignited Enemies Killed by your Hits are destroyed"] = { }, ["Ignited Enemies you Kill Explode, dealing #% of their Life as Fire Damage which cannot Ignite"] = { { isScalable = true } }, @@ -9890,6 +10083,7 @@ return { ["In Heists Chaos Orbs drop as Exalted Orbs instead"] = { }, ["In Heists Chromatic Orbs drop as Jeweller's Orbs instead"] = { }, ["In Heists Chromatic Orbs drop as Orbs of Fusing instead"] = { }, + ["In Heists Jeweller's Orbs drop as Chromatic Orbs instead"] = { }, ["In Heists Jeweller's Orbs drop as Orbs of Fusing instead"] = { }, ["In Heists Orbs of Alchemy drop as Blessed Orbs instead"] = { }, ["In Heists Orbs of Alchemy drop as Divine Orbs instead"] = { }, @@ -9900,6 +10094,7 @@ return { ["In Heists Orbs of Augmentation drop as Chaos Orbs instead"] = { }, ["In Heists Orbs of Augmentation drop as Orbs of Alchemy instead"] = { }, ["In Heists Orbs of Augmentation drop as Regal Orbs instead"] = { }, + ["In Heists Orbs of Fusing drop as Chromatic Orbs instead"] = { }, ["In Heists Orbs of Regret drop as Orbs of Annulment instead"] = { }, ["In Heists Orbs of Scouring drop as Orbs of Annulment instead"] = { }, ["In Heists Orbs of Scouring drop as Orbs of Regret instead"] = { }, @@ -9936,6 +10131,7 @@ return { ["Increases and Reductions to Light Radius also apply to Area of Effect"] = { }, ["Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value"] = { { isScalable = true } }, ["Increases and Reductions to Light Radius also apply to Damage"] = { }, + ["Increases and Reductions to Light Radius also apply to Effect\nof your Link Skill Buffs on your Mercenary"] = { }, ["Increases and Reductions to Lightning Damage also apply to Effect of\nAuras from Lightning Skills at #% of their value, up to a maximum of 150%"] = { { isScalable = false } }, ["Increases and Reductions to Maximum Energy Shield instead apply to Ward"] = { }, ["Increases and Reductions to Minion Attack Speed also affect you"] = { }, @@ -9947,13 +10143,9 @@ return { ["Increases and Reductions to Physical Damage also apply to Effect of\nAuras from Physical Skills at #% of their value, up to a maximum of 150%"] = { { isScalable = false } }, ["Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage"] = { }, ["Increases and Reductions to Projectile Speed also apply to Damage with Bows"] = { }, - ["Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills"] = { }, - ["Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at #% of their value"] = { { isScalable = true } }, - ["Increases and Reductions to Spell Damage also apply to Attacks"] = { }, - ["Increases and Reductions to Spell Damage also apply to Attacks at #% of their value while wielding a Wand"] = { { isScalable = true } }, - ["Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value"] = { }, - ["Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand"] = { }, ["Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage"] = { }, + ["Increases and Reductions to your Evasion Rating also apply to your Spell Damage"] = { }, + ["Increases and Reductions to your Evasion Rating also apply to your Spell Damage at #% of their value"] = { { isScalable = true } }, ["Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value"] = { }, ["Increases to Cast Speed from Arcane Surge also applies to Movement Speed"] = { }, ["Incursion Architects are Possessed by a Tormented Spirit"] = { }, @@ -9972,6 +10164,7 @@ return { ["Inflict # Grasping Vine on Hit"] = { { isScalable = true } }, ["Inflict # Grasping Vines on Hit"] = { { isScalable = true } }, ["Inflict # additional Poisons on the same Target\nwhen you inflict Poison with this weapon"] = { { isScalable = false } }, + ["Inflict Barnacles on nearby Enemies every second"] = { }, ["Inflict Brittle on Enemies when you Block their Damage"] = { }, ["Inflict Cold Exposure on Hit"] = { }, ["Inflict Cold Exposure on Hit if you have at least 150 Devotion"] = { }, @@ -10189,6 +10382,7 @@ return { ["Knocks Enemies Back when Hit by a Bow"] = { }, ["Knocks Enemies Back when Hit by a Staff"] = { }, ["Knocks Enemies Back when Hit by a Wand"] = { }, + ["Kulemak's Corpsebait"] = { }, ["Labyrinth Monsters deal #% increased Damage"] = { { isScalable = true } }, ["Labyrinth Monsters deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Labyrinth Monsters have #% increased Attack, Cast, and Movement Speed"] = { { isScalable = true } }, @@ -10226,7 +10420,6 @@ return { ["Left ring slot: #% increased Mana Regeneration Rate"] = { { isScalable = true } }, ["Left ring slot: #% increased Skill Effect Duration"] = { { isScalable = true } }, ["Left ring slot: #% of Cold Damage from Hits taken as Fire Damage"] = { { isScalable = true } }, - ["Left ring slot: #% of Elemental Hit Damage from you and\nyour Minions cannot be Reflected"] = { { isScalable = true, formats = { "negate" } } }, ["Left ring slot: #% of Fire Damage from Hits taken as Lightning Damage"] = { { isScalable = true } }, ["Left ring slot: #% of Lightning Damage from Hits taken as Cold Damage"] = { { isScalable = true } }, ["Left ring slot: #% reduced Duration of Ailments on You"] = { { isScalable = true, formats = { "negate" } } }, @@ -10239,6 +10432,7 @@ return { ["Left ring slot: Regenerate # Mana per Second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Left ring slot: Skills supported by Unleash have # to maximum number of Seals"] = { { isScalable = true } }, ["Left ring slot: You cannot Recharge or Regenerate Energy Shield"] = { }, + ["Left ring slot: you and your Minions prevent #% of Reflected Elemental Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Leftmost # Magic Utility Flask constantly applies its Flask Effect to you"] = { { isScalable = true } }, ["Leftmost # Magic Utility Flasks constantly apply their Flask Effects to you"] = { { isScalable = true } }, ["Legion Encounters contain # additional Sergeant"] = { { isScalable = true } }, @@ -10339,6 +10533,7 @@ return { ["Link Skills have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Link Skills have #% reduced Skill Effect Duration"] = { { isScalable = true, formats = { "negate" } } }, ["Link Skills have #% reduced range"] = { { isScalable = true, formats = { "negate" } } }, + ["Link Skills have infinite Attachment Duration"] = { }, ["Linked Targets Cannot Die for # seconds after you Die"] = { { isScalable = true } }, ["Linked Targets always count as in range of Non-Curse Auras from your Skills\nNon-Curse Auras from your Skills only apply to you and Linked Targets"] = { }, ["Linked Targets and Allies in your Link Beams have #% to all Maximum Elemental Resistances"] = { { isScalable = true } }, @@ -10370,7 +10565,7 @@ return { ["Lose # Life per Enemy Hit with this Weapon while you are Leeching"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Life per Enemy Killed"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Life per Ignited Enemy Killed"] = { { isScalable = true, formats = { "negate" } } }, - ["Lose # Life per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, + ["Lose # Life per second"] = { { isScalable = true, formats = { "deciseconds_to_seconds" } } }, ["Lose # Life when you Block"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Mana per Cursed Enemy Hit with Attacks"] = { { isScalable = true, formats = { "negate" } } }, ["Lose # Mana per Cursed Enemy Hit with Spells"] = { { isScalable = true, formats = { "negate" } } }, @@ -10451,6 +10646,8 @@ return { ["Magic Utility Flasks applied to you have #% reduced Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Magic Utility Flasks cannot be Used"] = { }, ["Maim on Hit"] = { }, + ["Maim you inflict causes Hits against the target to have #% less Critical Strike Chance"] = { { isScalable = true } }, + ["Maim you inflict causes Hits against the target to have #% more Critical Strike Chance"] = { { isScalable = true } }, ["Malevolence has #% increased Aura Effect"] = { { isScalable = true } }, ["Malevolence has #% increased Mana Reservation Efficiency"] = { { isScalable = true } }, ["Malevolence has #% increased Reservation"] = { { isScalable = true } }, @@ -10596,6 +10793,7 @@ return { ["Melee Skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Melee Strike Skills deal Splash Damage to surrounding targets"] = { }, ["Melee Strike Skills deal Splash Damage to surrounding targets while wielding a Mace"] = { }, + ["Melee Strikes Curse Enemies with Flammability on Hit, ignoring Curse Limit"] = { }, ["Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers"] = { }, ["Memories at this location do not collapse"] = { }, ["Memories placed on this location are # Level Higher"] = { { isScalable = true } }, @@ -10603,6 +10801,8 @@ return { ["Memories placed on this location are unaffected by Global Mods"] = { }, ["Memories placed on this location can be run # additional times before Decaying"] = { { isScalable = true } }, ["Memories placed on this location can be run an additional time before Decaying"] = { }, + ["Mercenaries found in Area are Infamous"] = { }, + ["Mercenaries found in Area are accompanied by two Wild Mercenaries"] = { }, ["Mercury Footprints"] = { }, ["Metamorph Boss Organs found in Area always have at least # rewards"] = { { isScalable = true } }, ["Metamorph Boss Organs found in Area always have at least 1 reward"] = { }, @@ -10663,13 +10863,17 @@ return { ["Minions cause Bleeding with Attacks"] = { }, ["Minions convert #% of Fire Damage to Chaos Damage"] = { { isScalable = true } }, ["Minions convert #% of Physical Damage to Chaos Damage"] = { { isScalable = true } }, + ["Minions convert #% of Physical Damage to Chaos Damage per Empty Socket"] = { { isScalable = true } }, ["Minions convert #% of Physical Damage to Chaos Damage per White Socket"] = { { isScalable = true } }, ["Minions convert #% of Physical Damage to Cold Damage"] = { { isScalable = true } }, ["Minions convert #% of Physical Damage to Cold Damage per Green Socket"] = { { isScalable = true } }, + ["Minions convert #% of Physical Damage to Cold Damage per Socketed Green Gem"] = { { isScalable = true } }, ["Minions convert #% of Physical Damage to Fire Damage"] = { { isScalable = true } }, ["Minions convert #% of Physical Damage to Fire Damage per Red Socket"] = { { isScalable = true } }, + ["Minions convert #% of Physical Damage to Fire Damage per Socketed Red Gem"] = { { isScalable = true } }, ["Minions convert #% of Physical Damage to Lightning Damage"] = { { isScalable = true } }, ["Minions convert #% of Physical Damage to Lightning Damage per Blue Socket"] = { { isScalable = true } }, + ["Minions convert #% of Physical Damage to Lightning Damage per Socketed Blue Gem"] = { { isScalable = true } }, ["Minions count as having the same number of\nEndurance, Frenzy and Power Charges as you"] = { }, ["Minions created Recently cannot be Damaged"] = { }, ["Minions created Recently have #% increased Attack and Cast Speed"] = { { isScalable = true } }, @@ -10731,6 +10935,7 @@ return { ["Minions have #% chance to Freeze, Shock and Ignite"] = { { isScalable = true } }, ["Minions have #% chance to Hinder Enemies on Hit with Spells"] = { { isScalable = true } }, ["Minions have #% chance to Ignite"] = { { isScalable = true } }, + ["Minions have #% chance to Impale on Attack Hit per socketed Ghastly Eye Jewel"] = { { isScalable = true } }, ["Minions have #% chance to Intimidate Enemies for 4 seconds on Hit"] = { { isScalable = true } }, ["Minions have #% chance to Knock Enemies Back on Hit with Attacks"] = { { isScalable = true } }, ["Minions have #% chance to Maim Enemies on Hit with Attacks"] = { { isScalable = true } }, @@ -10800,6 +11005,7 @@ return { ["Minions have #% to Critical Strike Multiplier"] = { { isScalable = true } }, ["Minions have #% to Critical Strike Multiplier per Grand Spectrum"] = { { isScalable = true } }, ["Minions have #% to Critical Strike Multiplier per Withered Debuff on Enemy"] = { { isScalable = true } }, + ["Minions have #% to Damage over Time Multiplier"] = { { isScalable = true } }, ["Minions have #% to Damage over Time Multiplier per\nGhastly Eye Jewel affecting you, up to a maximum of +30%"] = { { isScalable = true } }, ["Minions have #% to Fire Resistance"] = { { isScalable = true } }, ["Minions have #% to all Elemental Resistances"] = { { isScalable = true } }, @@ -10809,6 +11015,7 @@ return { ["Minions have a #% chance to Impale on Hit with Attacks"] = { { isScalable = true } }, ["Minions have the same maximum number of Endurance, Frenzy and Power Charges as you"] = { }, ["Minions never deal Critical Strikes"] = { }, + ["Minions prevent #% of Reflected Damage they would take"] = { { isScalable = true, formats = { "negate" } } }, ["Minions recover # Life when they Block"] = { { isScalable = true } }, ["Minions recover #% of Life on Hit"] = { { isScalable = true } }, ["Minions summoned by Your Scout Towers have #% increased Damage"] = { { isScalable = true } }, @@ -10837,6 +11044,7 @@ return { ["Minions take Chaos Damage equal to #% of their Life over one second Life when Created"] = { { isScalable = true } }, ["Minions' Accuracy Rating is equal to yours"] = { }, ["Minions' Base Attack Critical Strike Chance is equal to the Critical\nStrike Chance of your Main Hand Weapon"] = { }, + ["Minions' Base Attack time is equal to the Attack time of your Main Hand Weapon"] = { }, ["Minions' Hits can only Kill Ignited Enemies"] = { }, ["Minions' Hits can't be Evaded"] = { }, ["Mirage Archers are not attached to you"] = { }, @@ -10905,7 +11113,7 @@ return { ["Monsters Maim on Hit with Attacks"] = { }, ["Monsters Overwhelm #% Physical Damage Reduction"] = { { isScalable = true } }, ["Monsters Overwhelm #% of Physical Damage Reduction for each time they have been Revived"] = { { isScalable = true } }, - ["Monsters Penetrate #% of Enemy Resistances for each time they have been Revived"] = { { isScalable = true } }, + ["Monsters Penetrate #% of Enemy Elemental Resistances for each time they have been Revived"] = { { isScalable = true } }, ["Monsters Poison on Hit"] = { }, ["Monsters Possessed by Tormented Spirits take #% increased Damage"] = { { isScalable = true } }, ["Monsters Possessed by Tormented Spirits take #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -10963,6 +11171,7 @@ return { ["Monsters gain #% increased Maximum Life each time they are Revived"] = { { isScalable = true } }, ["Monsters gain #% increased Movement Speed each time they are Revived"] = { { isScalable = true } }, ["Monsters gain #% of Maximum Life as Extra Maximum Energy Shield"] = { { isScalable = true } }, + ["Monsters gain #% of Physical Damage as Extra Chaos Damage for each time they have been Revived"] = { { isScalable = true } }, ["Monsters gain #% of their Physical Damage as Extra Chaos Damage"] = { { isScalable = true } }, ["Monsters gain #% of their Physical Damage as Extra Damage of a random Element"] = { { isScalable = true } }, ["Monsters gain #% reduced Armour each time they are Revived"] = { { isScalable = true, formats = { "negate" } } }, @@ -11006,8 +11215,10 @@ return { ["Monsters have #% chance to remove a Flask Charge on Hit"] = { { isScalable = true } }, ["Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit"] = { { isScalable = true } }, ["Monsters have #% increased Accuracy Rating"] = { { isScalable = true } }, + ["Monsters have #% increased Accuracy Rating for each time they have been Revived"] = { { isScalable = true } }, ["Monsters have #% increased Action Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Monsters have #% increased Area of Effect"] = { { isScalable = true } }, + ["Monsters have #% increased Area of Effect for each time they have been Revived"] = { { isScalable = true } }, ["Monsters have #% increased Attack, Cast and Movement Speed"] = { { isScalable = true } }, ["Monsters have #% increased Bleeding Duration"] = { { isScalable = true } }, ["Monsters have #% increased Critical Strike Chance"] = { { isScalable = true } }, @@ -11015,6 +11226,7 @@ return { ["Monsters have #% increased Freeze Duration"] = { { isScalable = true } }, ["Monsters have #% increased Ignite Duration"] = { { isScalable = true } }, ["Monsters have #% increased Poison Duration"] = { { isScalable = true } }, + ["Monsters have #% increased Toughness for each time they have been Revived"] = { { isScalable = true } }, ["Monsters have #% increased chance of having Rewards"] = { { isScalable = true } }, ["Monsters have #% increased chance to spawn a Beyond Portal"] = { { isScalable = true } }, ["Monsters have #% less Life"] = { { isScalable = true, formats = { "negate" } } }, @@ -11241,6 +11453,7 @@ return { ["Non-Exerted Attacks deal no Damage"] = { }, ["Non-Instant Warcries ignore their Cooldown when Used"] = { }, ["Non-Projectile Chaining Lightning Skills Chain # times"] = { { isScalable = true } }, + ["Non-Spectre Minions' Base Attack time is equal to\nthe Attack time of your Main Hand Weapon"] = { }, ["Non-Travel Attack Skills Repeat # additional Times"] = { { isScalable = true } }, ["Non-Travel Attack Skills Repeat an additional Time"] = { }, ["Non-Unique Equipment found in Area drops as Currency instead"] = { }, @@ -11305,6 +11518,11 @@ return { ["Pack spawns a Meteor on Death"] = { }, ["Pack spawns a Strongbox on Death"] = { }, ["Pack spawns a Tormented Spirit on Death"] = { }, + ["Pact Skills grant Boons instead of Afflictions"] = { }, + ["Pact Skills have #% increased Cast Speed"] = { { isScalable = true } }, + ["Pact Skills have #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, + ["Pact Skills have #% reduced Cast Speed"] = { { isScalable = true, formats = { "negate" } } }, + ["Pact Skills have #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, ["Pain Attunement"] = { }, ["Passive Skills in Radius also grant # to all Attributes"] = { { isScalable = false } }, ["Passive Skills in Radius also grant # to maximum Life"] = { { isScalable = false } }, @@ -11398,6 +11616,7 @@ return { ["Phasing"] = { }, ["Physical Attack Damage is increased by 1% per # Dexterity from Allocated Passives in Radius"] = { { isScalable = true } }, ["Physical Attack Damage is increased by 1% per # Strength from Allocated Passives in Radius"] = { { isScalable = true } }, + ["Physical Damage Reduction is zero"] = { }, ["Physical Damage is increased by 1% per # Intelligence from Allocated Passives in Radius"] = { { isScalable = true } }, ["Physical Damage of Enemies Hitting you is Lucky"] = { }, ["Physical Damage of Enemies Hitting you is Unlucky"] = { }, @@ -11676,6 +11895,15 @@ return { ["Precision has no Reservation"] = { }, ["Prefix Modifiers have no effect"] = { }, ["Prefixes Cannot Be Changed"] = { }, + ["Prevent #% of Reflected Cold Damage you would take while affected by Purity of Ice"] = { { isScalable = true, formats = { "negate" } } }, + ["Prevent #% of Reflected Damage"] = { { isScalable = true } }, + ["Prevent #% of Reflected Damage during Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["Prevent #% of Reflected Elemental Damage"] = { { isScalable = true } }, + ["Prevent #% of Reflected Elemental Damage you would take while\naffected by Purity of Elements"] = { { isScalable = true, formats = { "negate" } } }, + ["Prevent #% of Reflected Fire Damage you would take while affected by Purity of Fire"] = { { isScalable = true, formats = { "negate" } } }, + ["Prevent #% of Reflected Lightning Damage you would take while\naffected by Purity of Lightning"] = { { isScalable = true, formats = { "negate" } } }, + ["Prevent #% of Reflected Physical Damage"] = { { isScalable = true } }, + ["Prevent #% of Reflected Physical Damage you would take while affected by Determination"] = { { isScalable = true, formats = { "negate" } } }, ["Prevent #% of Suppressed Spell Damage"] = { { isScalable = true } }, ["Prevent #% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently"] = { { isScalable = true } }, ["Prevent #% of Suppressed Spell Damage if you've taken a Savage Hit Recently"] = { { isScalable = true } }, @@ -11827,6 +12055,7 @@ return { ["Rage Vortex Sacrifices #% of Rage"] = { { isScalable = true } }, ["Rage grants Cast Speed instead of Attack Speed"] = { }, ["Rage grants Spell Damage instead of Attack Damage"] = { }, + ["Rage grants Spell Damage instead of Attack Damage at 50% of the value"] = { }, ["Rain of Arrows and Toxic Rain deal #% less Damage with Bleeding"] = { { isScalable = true, formats = { "negate" } } }, ["Rain of Arrows and Toxic Rain deal #% more Damage with Bleeding"] = { { isScalable = true } }, ["Rain of Arrows has #% chance to fire an additional sequence of arrows"] = { { isScalable = true } }, @@ -11899,8 +12128,10 @@ return { ["Rare Monsters have #% chance to drop a Rare Prismatic Ring"] = { { isScalable = true } }, ["Rare Monsters have #% chance to have a Volatile Core"] = { { isScalable = true } }, ["Rare Monsters have #% chance to spawn a Duplicate of Map Boss on Death"] = { { isScalable = true } }, + ["Rare Monsters have Elemental Thorns reflecting # Elemental Damage"] = { { isScalable = true } }, ["Rare Monsters have Essence effects"] = { }, ["Rare Monsters have Inner Treasure in addition to their other Modifiers"] = { }, + ["Rare Monsters have Physical Thorns reflecting # Physical Damage"] = { { isScalable = true } }, ["Rare Monsters have Volatile Cores"] = { }, ["Rare Monsters have a quarter chance to be Possessed by up to # Tormented Spirit"] = { { isScalable = true } }, ["Rare Monsters have a quarter chance to be Possessed by up to # Tormented Spirits"] = { { isScalable = true } }, @@ -12153,7 +12384,7 @@ return { ["Regenerate #% of Life per second if you've taken Fire Damage from an Enemy Hit Recently"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate #% of Life per second if you've taken a Savage Hit in the past 1 second"] = { { isScalable = false } }, ["Regenerate #% of Life per second on Chilled Ground"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, - ["Regenerate #% of Life per second per 500 Maximum Energy Shield"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, + ["Regenerate #% of Life per second per 500 Player Maximum Energy Shield"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate #% of Life per second per Endurance Charge"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate #% of Life per second per Fortification"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Regenerate #% of Life per second per Frenzy Charge"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, @@ -12261,6 +12492,7 @@ return { ["Retaliation Skills deal #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Retaliation Skills deal #% more Damage"] = { { isScalable = true } }, ["Retaliation Skills deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Retaliation Skills have #% Arcane Might"] = { { isScalable = true } }, ["Retaliation Skills have #% chance to Knockback"] = { { isScalable = true } }, ["Retaliation Skills have #% increased Area of Effect"] = { { isScalable = true } }, ["Retaliation Skills have #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, @@ -12295,7 +12527,6 @@ return { ["Right ring slot: #% of Cold Damage from Hits taken as Lightning Damage"] = { { isScalable = true } }, ["Right ring slot: #% of Fire Damage from Hits taken as Cold Damage"] = { { isScalable = true } }, ["Right ring slot: #% of Lightning Damage from Hits taken as Fire Damage"] = { { isScalable = true } }, - ["Right ring slot: #% of Physical Hit Damage from you and\nyour Minions cannot be Reflected"] = { { isScalable = true, formats = { "negate" } } }, ["Right ring slot: #% reduced Duration of Ailments on You"] = { { isScalable = true, formats = { "negate" } } }, ["Right ring slot: #% reduced Effect of Curses on you"] = { { isScalable = true, formats = { "negate" } } }, ["Right ring slot: #% reduced Skill Effect Duration"] = { { isScalable = true, formats = { "negate" } } }, @@ -12306,6 +12537,7 @@ return { ["Right ring slot: Regenerate #% of Energy Shield per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Right ring slot: Shockwave has # to Cooldown Uses"] = { { isScalable = true } }, ["Right ring slot: You cannot Regenerate Mana"] = { }, + ["Right ring slot: you and your Minions prevent #% of Reflected Physical Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Righteous Fire grants #% increased Spell Damage"] = { { isScalable = true } }, ["Righteous Fire grants #% reduced Spell Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Righteous Fire\nEnemies in the Righteous Fire have -10% to maximum Fire Resistance"] = { }, @@ -12332,6 +12564,7 @@ return { ["Rogue Exiles roam Wraeclast"] = { }, ["Rogue Perks are doubled"] = { }, ["Rogue Perks have #% more effect"] = { { isScalable = true } }, + ["Roiling Tempest"] = { }, ["Rolling Magma Chains an additional # times"] = { { isScalable = true } }, ["Rolling Magma Chains an additional time"] = { }, ["Rolling Magma deals #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -12342,7 +12575,7 @@ return { ["Rolling Magma fires an additional Projectile"] = { }, ["Rolling Magma has #% increased Area of Effect per Chain"] = { { isScalable = true } }, ["Rolling Magma has #% reduced Area of Effect per Chain"] = { { isScalable = true, formats = { "negate" } } }, - ["Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second"] = { }, + ["Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 0.5 seconds"] = { }, ["Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds"] = { }, ["Runebinder"] = { }, ["Runic Monsters deal #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -12506,6 +12739,9 @@ return { ["Skills Repeat an additional # Times"] = { { isScalable = true } }, ["Skills Repeat an additional Time"] = { }, ["Skills Reserve Life instead of Mana"] = { }, + ["Skills Socketed in your Boots are Supported by level # #"] = { { isScalable = false }, { isScalable = false, formats = { "display_indexable_non_active_support" } } }, + ["Skills Socketed in your Gloves are Supported by level # #"] = { { isScalable = false }, { isScalable = false, formats = { "display_indexable_non_active_support" } } }, + ["Skills Socketed in your Helmet are Supported by level # #"] = { { isScalable = false }, { isScalable = false, formats = { "display_indexable_non_active_support" } } }, ["Skills Supported by Nightblade have #% increased Effect of Elusive"] = { { isScalable = true } }, ["Skills Supported by Nightblade have #% reduced Effect of Elusive"] = { { isScalable = true, formats = { "negate" } } }, ["Skills Supported by Spellslinger have #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, @@ -12541,6 +12777,7 @@ return { ["Skills gain Added Chaos Damage equal to #% of Mana Cost, if Mana Cost is not higher than the maximum you could spend"] = { { isScalable = true } }, ["Skills gain a Base Energy Shield Cost equal to #% of Base Mana Cost"] = { { isScalable = true } }, ["Skills gain a Base Life Cost equal to #% of Base Mana Cost"] = { { isScalable = true } }, + ["Skills granted by your Passive Tree are Supported by level # #"] = { { isScalable = false }, { isScalable = false, formats = { "display_indexable_non_active_support" } } }, ["Skills have #% to Critical Strike Chance for each Warcry Exerting them"] = { { isScalable = true, formats = { "divide_by_one_hundred" } } }, ["Skills supported by Unleash have # to maximum number of Seals"] = { { isScalable = true } }, ["Skills that Summon a Totem Summon two Totems instead of one"] = { }, @@ -12555,7 +12792,13 @@ return { ["Skills used by Mines have #% reduced Area of Effect if you Detonated a Mine Recently"] = { { isScalable = true, formats = { "negate" } } }, ["Skills used by Spectral Totems deal #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Skills used by Spectral Totems deal #% more Damage"] = { { isScalable = true } }, + ["Skills used by Totems deal #% less Damage per maximum number of Summoned Totems"] = { { isScalable = true } }, + ["Skills used by Totems deal #% more Damage per maximum number of Summoned Totems"] = { { isScalable = true } }, + ["Skills used by Totems have #% less Area of Effect per maximum number of Summoned Totems"] = { { isScalable = true } }, + ["Skills used by Totems have #% more Area of Effect per maximum number of Summoned Totems"] = { { isScalable = true } }, ["Skills used by Totems have a #% chance to Taunt on Hit"] = { { isScalable = true } }, + ["Skills used by Traps and Mines have #% increased Area of Effect"] = { { isScalable = true } }, + ["Skills used by Traps and Mines have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Skills used by Traps have #% increased Area of Effect"] = { { isScalable = true } }, ["Skills used by Traps have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Skills used by your Traps and Mines Chain # additional times"] = { { isScalable = true } }, @@ -12681,6 +12924,7 @@ return { ["Socketed Gems are Supported by Level # Cold Penetration"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Cold to Fire"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Combustion"] = { { isScalable = false } }, + ["Socketed Gems are Supported by Level # Communion"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Companionship"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Concentrated Effect"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Congregation"] = { { isScalable = false } }, @@ -12690,6 +12934,7 @@ return { ["Socketed Gems are Supported by Level # Corrupting Cry"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Critical Strike Affliction"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Cruelty"] = { { isScalable = false } }, + ["Socketed Gems are Supported by Level # Crystalfall"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Cull the Weak"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Culling Strike"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Cursed Ground"] = { { isScalable = false } }, @@ -12794,7 +13039,6 @@ return { ["Socketed Gems are Supported by Level # Minefield"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Minion Damage"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Minion Life"] = { { isScalable = false } }, - ["Socketed Gems are Supported by Level # Minion Pact"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Minion Speed"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Mirage Archer"] = { { isScalable = false } }, ["Socketed Gems are Supported by Level # Momentum"] = { { isScalable = false } }, @@ -12891,12 +13135,12 @@ return { ["Socketed Gems have #% chance to Ignite"] = { { isScalable = false } }, ["Socketed Gems have #% chance to cause Enemies to Flee on Hit"] = { { isScalable = false } }, ["Socketed Gems have #% increased Effect of Exposure inflicted by Elemental Equilibrium"] = { { isScalable = false } }, - ["Socketed Gems have #% increased Mana Cost"] = { { isScalable = false, formats = { "negate" } } }, ["Socketed Gems have #% increased Reservation Efficiency"] = { { isScalable = false, formats = { "negate" } } }, ["Socketed Gems have #% increased Skill Effect Duration"] = { { isScalable = false } }, + ["Socketed Gems have #% less Mana Cost"] = { { isScalable = false } }, ["Socketed Gems have #% more Attack and Cast Speed"] = { { isScalable = false } }, + ["Socketed Gems have #% more Mana Cost"] = { { isScalable = false, formats = { "negate" } } }, ["Socketed Gems have #% reduced Effect of Exposure inflicted by Elemental Equilibrium"] = { { isScalable = false, formats = { "negate" } } }, - ["Socketed Gems have #% reduced Mana Cost"] = { { isScalable = false } }, ["Socketed Gems have #% reduced Reservation Efficiency"] = { { isScalable = false } }, ["Socketed Gems have #% reduced Skill Effect Duration"] = { { isScalable = false, formats = { "negate" } } }, ["Socketed Gems have +3.5% Critical Strike Chance"] = { }, @@ -12923,6 +13167,7 @@ return { ["Socketed Projectile Spells have # seconds to Cooldown"] = { { isScalable = false, formats = { "milliseconds_to_seconds_2dp_if_required" } } }, ["Socketed Projectile Spells have #% less Skill Effect Duration"] = { { isScalable = false, formats = { "negate" } } }, ["Socketed Projectile Spells have #% more Skill Effect Duration"] = { { isScalable = false } }, + ["Socketed Rare Abyssal Jewels will be Consumed\nOne modifier from Consumed Jewels will be retained"] = { }, ["Socketed Red Gems get #% Physical Damage as Extra Fire Damage"] = { { isScalable = false } }, ["Socketed Skill Gems get a #% Cost & Reservation Multiplier"] = { { isScalable = false } }, ["Socketed Skills Summon your maximum number of Totems in formation"] = { }, @@ -12937,6 +13182,7 @@ return { ["Socketed Skills have #% reduced Attack Speed"] = { { isScalable = false, formats = { "negate" } } }, ["Socketed Skills have #% reduced Cast Speed"] = { { isScalable = false, formats = { "negate" } } }, ["Socketed Slam Gems are Supported by Level 25 Earthbreaker"] = { }, + ["Socketed Spells are Supported by level # Crab Totem"] = { { isScalable = false } }, ["Socketed Spells have #% increased Mana Cost"] = { { isScalable = false } }, ["Socketed Spells have #% reduced Mana Cost"] = { { isScalable = false, formats = { "negate" } } }, ["Socketed Spells have #% to Critical Strike Chance"] = { { isScalable = false, formats = { "divide_by_one_hundred" } } }, @@ -12989,6 +13235,7 @@ return { ["Spectral Shield Throw's Shield Projectile Chains an additional time"] = { }, ["Spectral Throw deals #% increased Damage per Enemy Hit"] = { { isScalable = true } }, ["Spectral Throw has #% chance on Hit to give a Vaal soul to Vaal Spectral Throw"] = { { isScalable = true } }, + ["Spell Critical Strike Chance Bifurcates"] = { }, ["Spell Hits Hinder you"] = { }, ["Spell Hits against you to inflict Poison"] = { }, ["Spell Hits have #% chance to Hinder you"] = { { isScalable = true } }, @@ -12996,7 +13243,9 @@ return { ["Spell Skills cannot deal Critical Strikes except on final Repeat"] = { }, ["Spell Skills deal no Damage"] = { }, ["Spell Skills have #% increased Area of Effect"] = { { isScalable = true } }, + ["Spell Skills have #% increased Critical Strike Chance on Final Repeat"] = { { isScalable = true } }, ["Spell Skills have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, + ["Spell Skills have #% reduced Critical Strike Chance on Final Repeat"] = { { isScalable = true, formats = { "negate" } } }, ["Spell Skills have #% to Critical Strike Multiplier on final Repeat"] = { { isScalable = true } }, ["Spell Skills have #% to Damage over Time Multiplier for Poison"] = { { isScalable = true } }, ["Spells Cast by Totems have #% increased Cast Speed"] = { { isScalable = true } }, @@ -13008,7 +13257,7 @@ return { ["Spells Unnerve Enemies for 4 seconds on Hit"] = { }, ["Spells cast by Totems deal #% increased Damage"] = { { isScalable = true } }, ["Spells cast by Totems deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, - ["Spells cause you to gain Energy Shield equal to their Upfront\nCost every fifth time you Pay it"] = { }, + ["Spells cause you to gain Energy Shield equal to their Upfront\nCost every third time you Pay it"] = { }, ["Spells cause you to gain Mana equal to their Upfront Cost every fifth time you Pay it"] = { }, ["Spells deal added Chaos Damage equal to #% of your maximum Life"] = { { isScalable = true } }, ["Spells fire # additional Projectiles"] = { { isScalable = true } }, @@ -13129,6 +13378,10 @@ return { ["Stun Threshold is increased by Overcapped Fire Resistance"] = { }, ["Stun nearby Enemies when you Revive"] = { }, ["Stuns from Critical Strikes have #% increased Duration"] = { { isScalable = true } }, + ["Subjugating # souls in the thrall of Amanamu\nPassives affected are Conquered by the Abyssal"] = { { isScalable = true } }, + ["Subjugating # souls in the thrall of Kurgal\nPassives affected are Conquered by the Abyssal"] = { { isScalable = true } }, + ["Subjugating # souls in the thrall of Tecrod\nPassives affected are Conquered by the Abyssal"] = { { isScalable = true } }, + ["Subjugating # souls in the thrall of Ulaman\nPassives affected are Conquered by the Abyssal"] = { { isScalable = true } }, ["Suffix Modifiers have no effect"] = { }, ["Suffixes Cannot Be Changed"] = { }, ["Summon # additional Skeletons with Summon Skeletons"] = { { isScalable = true } }, @@ -13390,6 +13643,7 @@ return { ["Talismans found in this Area are 1 Tier higher"] = { }, ["Talismans found in this Area are Rare"] = { }, ["Targeted by a Meteor when you use a Flask"] = { }, + ["Targets affected by Maim you inflict cannot deal Critical Strikes"] = { }, ["Targets are Unaffected by your Hexes"] = { }, ["Taunt Enemies on Hit with Attacks"] = { }, ["Taunt on Hit"] = { }, @@ -13402,7 +13656,7 @@ return { ["Tectonic Slam has #% fissure branching chance"] = { { isScalable = true } }, ["Tectonic Slam has #% increased Area of Effect"] = { { isScalable = true } }, ["Tectonic Slam has #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, - ["Teleport to the detonated Rune if you have not detonated Runes in the past 1 second"] = { }, + ["Teleport to the detonated Rune if you have not detonated Runes in the past 0.5 seconds"] = { }, ["Tempest Effects have #% increased Area of Effect"] = { { isScalable = true } }, ["Tempest Effects have #% reduced Area of Effect"] = { { isScalable = true, formats = { "negate" } } }, ["Tempest Shield chains an additional # times"] = { { isScalable = true } }, @@ -13424,6 +13678,7 @@ return { ["The Blood Crucible can transform Unique Equipment"] = { }, ["The Divine Font may bless belts"] = { }, ["The Effect of Chill on you is reversed"] = { }, + ["The Effect of Chill on you is reversed while on Chilled ground"] = { }, ["The First 3 Possessed Monsters drop an additional Gilded Scarab"] = { }, ["The First 3 Possessed Monsters drop an additional Map"] = { }, ["The First 3 Possessed Monsters drop an additional Polished Scarab"] = { }, @@ -13524,9 +13779,13 @@ return { ["Totems have #% additional Physical Damage Reduction"] = { { isScalable = true } }, ["Totems have #% increased Attack Speed per Summoned Totem"] = { { isScalable = true } }, ["Totems have #% increased Cast Speed per Summoned Totem"] = { { isScalable = true } }, + ["Totems have #% increased Movement Speed"] = { { isScalable = true } }, + ["Totems have #% less Life per maximum number of Summoned Totems"] = { { isScalable = true } }, + ["Totems have #% more Life per maximum number of Summoned Totems"] = { { isScalable = true } }, ["Totems have #% of your Armour"] = { { isScalable = true } }, ["Totems have #% reduced Attack Speed per Summoned Totem"] = { { isScalable = true, formats = { "negate" } } }, ["Totems have #% reduced Cast Speed per Summoned Totem"] = { { isScalable = true, formats = { "negate" } } }, + ["Totems have #% reduced Movement Speed"] = { { isScalable = true, formats = { "negate" } } }, ["Totems lose #% to Chaos Resistance"] = { { isScalable = true, formats = { "negate" } } }, ["Totems which would be killed by Enemies become Spectral Totems for # seconds instead"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Totems' Action Speed cannot be modified to below Base Value"] = { }, @@ -13632,6 +13891,7 @@ return { ["Trigger Level # Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown"] = { { isScalable = false } }, ["Trigger Level # Lightning Bolt when you deal a Critical Strike"] = { { isScalable = false } }, ["Trigger Level # Lightning Warp on Hit with this Weapon"] = { { isScalable = false } }, + ["Trigger Level # Molten Burst on Melee Hit"] = { { isScalable = false } }, ["Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark"] = { { isScalable = false } }, ["Trigger Level # Rain of Arrows when you Attack with a Bow"] = { { isScalable = false } }, ["Trigger Level # Shield Shatter when you Block"] = { { isScalable = false } }, @@ -13675,6 +13935,7 @@ return { ["Trigger Level 20 Starfall on Melee Critical Strike"] = { }, ["Trigger Level 20 Summon Spectral Wolf on Critical Strike"] = { }, ["Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave"] = { }, + ["Trigger Level 20 Surging Torrent when you cast an Elemental Spell"] = { }, ["Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot"] = { }, ["Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight"] = { }, ["Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon"] = { }, @@ -13716,6 +13977,7 @@ return { ["Trigger a Socketed Spell when you Use a Skill, with a 8 second Cooldown\nSpells Triggered this way have 150% more Cost"] = { }, ["Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown"] = { }, ["Trigger level # Ceaseless Flesh once every second"] = { { isScalable = false } }, + ["Trigger level # Ghostly Artillery when you Attack with this Weapon"] = { { isScalable = false } }, ["Trigger level # Summon Spirit of Ahuana Skill when you Suppress\nSpell Damage from a Unique Enemy"] = { { isScalable = false } }, ["Trigger level # Summon Spirit of Akoya Skill when you reach Maximum Rage while\na Unique Enemy is in your Presence"] = { { isScalable = false } }, ["Trigger level # Summon Spirit of Ikiaho Skill when you use a Travel\nSkill while a Unique Enemy is in your Presence"] = { { isScalable = false } }, @@ -13726,10 +13988,12 @@ return { ["Trigger level # Summon Spirit of Rakiata Skill on Critical Strike against Marked Unique Enemy"] = { { isScalable = false } }, ["Trigger level # Summon Spirit of Tawhanuku Skill when Energy Shield Recharge starts while a Unique Enemy is in your Presence"] = { { isScalable = false } }, ["Trigger level # Summon Spirit of Utula Skill on taking a Savage Hit from a Unique Enemy"] = { { isScalable = false } }, + ["Trigger level # Suspend in Time on Casting a Spell"] = { { isScalable = false } }, ["Trigger level 20 Suspend in Time on Casting a Spell"] = { }, ["Triggered Spells Poison on Hit"] = { }, ["Triggered Spells deal #% increased Spell Damage"] = { { isScalable = true } }, ["Triggered Spells deal #% reduced Spell Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Triggers Drowning Domain when Allocated"] = { }, ["Triggers Level # Abberath's Fury when Equipped"] = { { isScalable = false } }, ["Triggers Level # Blinding Aura when Equipped"] = { { isScalable = false } }, ["Triggers Level # Cold Aegis when Equipped"] = { { isScalable = false } }, @@ -13749,7 +14013,7 @@ return { ["Triples the values of Global Mods affecting Memories placed on this location, if all adjacent locations have Memories"] = { }, ["Ultimatum Altars in your Maps have #% increased Life"] = { { isScalable = true } }, ["Ultimatum Altars in your Maps have #% reduced Life"] = { { isScalable = true, formats = { "negate" } } }, - ["Ultimatum Boss drops a full stack of a random Catalyst"] = { }, + ["Ultimatum Boss drops 10 of a random Catalyst"] = { }, ["Ultimatum Encounters in Area grant rewards as though you completed # additional Rounds"] = { { isScalable = true } }, ["Ultimatum Encounters in Area grant rewards as though you completed an additional Round"] = { }, ["Ultimatum Encounters in your Maps have #% increased chance to\nonly require you to Survive"] = { { isScalable = true } }, @@ -13851,6 +14115,8 @@ return { ["Unearth Spawns corpses with # Level"] = { { isScalable = true } }, ["Unholy Might"] = { }, ["Unholy Might during Effect"] = { }, + ["Unholy Might you grant also applies #% Increased Effect of Withered"] = { { isScalable = true } }, + ["Unholy Might you grant also causes target's Damage to Penetrate #% Chaos Resistance"] = { { isScalable = true } }, ["Unique Boss deals #% increased Damage"] = { { isScalable = true } }, ["Unique Boss deals #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Unique Boss deals #% more Damage"] = { { isScalable = true } }, @@ -14060,10 +14326,12 @@ return { ["Volcanic Fissure travels #% slower"] = { { isScalable = true, formats = { "negate" } } }, ["Voltaxic Burst deals #% increased Damage per 0.1 seconds of Duration"] = { { isScalable = true } }, ["Voltaxic Burst deals #% reduced Damage per 0.1 seconds of Duration"] = { { isScalable = true, formats = { "negate" } } }, + ["Voracious Flame"] = { }, ["Vortex has #% increased Area of Effect when Cast on Frostbolt"] = { { isScalable = true } }, ["Vortex has #% increased Cooldown Recovery Rate"] = { { isScalable = true } }, ["Vortex has #% reduced Area of Effect when Cast on Frostbolt"] = { { isScalable = true, formats = { "negate" } } }, ["Vortex has #% reduced Cooldown Recovery Rate"] = { { isScalable = true, formats = { "negate" } } }, + ["Voyage Modifier will be revealed once Charted"] = { }, ["Vulnerability can affect Hexproof Enemies"] = { }, ["Vulnerability has #% increased Reservation if Cast as an Aura"] = { { isScalable = true } }, ["Vulnerability has #% reduced Reservation if Cast as an Aura"] = { { isScalable = true, formats = { "negate" } } }, @@ -14171,6 +14439,9 @@ return { ["While there is at least one nearby Ally, you and nearby Allies deal #% less Damage"] = { { isScalable = true, formats = { "negate" } } }, ["While there is at least one nearby Ally, you and nearby Allies deal #% more Damage"] = { { isScalable = true } }, ["While there is at most one Rare or Unique Enemy nearby, you take no Extra Damage from Critical Strikes"] = { }, + ["While you have at least # Ghastly Eye Jewels socketed:"] = { { isScalable = true } }, + ["While you have at least # Hypnotic Eye Jewels socketed:"] = { { isScalable = true } }, + ["While you have at least # Searching Eye Jewels socketed:"] = { { isScalable = true } }, ["While your Passive Skill Tree connects to a class' starting location, you gain:\nMarauder: #% of Life Regenerated per second\nDuelist: # metres to Melee Strike Range\nRanger: #% increased Flask Charges gained\nShadow: #% increased Attack and Cast Speed\nWitch: #% increased Skill Effect Duration\nTemplar: #% Chance to Block Attack and Spell Damage\nScion: #% increased Damage"] = { { isScalable = true, formats = { "per_minute_to_per_second" } }, { isScalable = true, formats = { "locations_to_metres" } }, { isScalable = true }, { isScalable = true }, { isScalable = true }, { isScalable = true }, { isScalable = true } }, ["While your Passive Skill Tree connects to a class' starting location, you gain:\nMarauder: Melee Skills have #% increased Area of Effect\nDuelist: #% of Attack Damage Leeched as Life\nRanger: #% increased Movement Speed\nShadow: #% to Critical Strike Chance\nWitch: #% of Mana Regenerated per second\nTemplar: Damage Penetrates #% Elemental Resistances\nScion: # to All Attributes"] = { { isScalable = true }, { isScalable = true, formats = { "divide_by_one_hundred" } }, { isScalable = true }, { isScalable = true, formats = { "divide_by_one_hundred" } }, { isScalable = true, formats = { "per_minute_to_per_second" } }, { isScalable = true }, { isScalable = true } }, ["While your Passive Skill Tree connects to the Duelist's starting location, you gain:\n# metres to Melee Strike Range"] = { { isScalable = true, formats = { "locations_to_metres" } } }, @@ -14188,7 +14459,10 @@ return { ["While your Passive Skill Tree connects to the Witch's starting location, you gain:\n#% increased Skill Effect Duration"] = { { isScalable = true } }, ["While your Passive Skill Tree connects to the Witch's starting location, you gain:\n#% of Mana Regenerated per second"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, ["Wicked Ward"] = { }, + ["Wild Mercenaries have increased Difficulty for each Wild Mercenary in Area"] = { }, ["Wild Rogue Exiles appear in Pairs"] = { }, + ["Wild Rogue Exiles in Area are accompanied by a Wild Mercenary"] = { }, + ["Wild Rogue Exiles in Area have #% chance to be accompanied by a Wild Mercenary"] = { { isScalable = true } }, ["Wild Strike's Beam Chains an additional # times"] = { { isScalable = true } }, ["Wild Strike's Beam Chains an additional time"] = { }, ["Wind Dancer"] = { }, @@ -14377,6 +14651,7 @@ return { ["Wrath has no Reservation"] = { }, ["You always Ignite while Burning"] = { }, ["You and Allies near your Banner Regenerate #% of Life per second for each Valour consumed for that Banner"] = { { isScalable = true, formats = { "per_minute_to_per_second" } } }, + ["You and Allies near your Banner have #% to Damage over Time Multiplier per\n2 Valour consumed for that Banner"] = { { isScalable = true } }, ["You and Enemies in your Presence count as moving while affected by Elemental Ailments"] = { }, ["You and Nearby Allies have # to # added Chaos Damage per White Socket"] = { { isScalable = true }, { isScalable = true } }, ["You and Nearby Allies have # to # added Cold Damage per Green Socket"] = { { isScalable = true }, { isScalable = true } }, @@ -14410,6 +14685,9 @@ return { ["You and your Minions have #% increased Attack and Cast Speed if\nyou've Consumed a corpse Recently"] = { { isScalable = true } }, ["You and your Minions have #% increased Damage if you've Consumed a corpse Recently"] = { { isScalable = true } }, ["You and your Minions have #% reduced Attack and Cast Speed if\nyou've Consumed a corpse Recently"] = { { isScalable = true, formats = { "negate" } } }, + ["You and your Minions prevent #% of Reflected Damage"] = { { isScalable = true } }, + ["You and your Minions prevent #% of Reflected Elemental Damage"] = { { isScalable = true } }, + ["You and your Minions prevent #% of Reflected Physical Damage"] = { { isScalable = true } }, ["You and your Minions take #% increased Reflected Damage"] = { { isScalable = true } }, ["You and your Minions take #% increased Reflected Elemental Damage"] = { { isScalable = true } }, ["You and your Minions take #% increased Reflected Physical Damage"] = { { isScalable = true } }, @@ -14475,6 +14753,7 @@ return { ["You can have an additional Tincture active"] = { }, ["You can have two Offerings of different types"] = { }, ["You can have two different Banners at the same time"] = { }, + ["You can hire a Mercenary permanently"] = { }, ["You can inflict # Hallowing Flame on Enemies"] = { { isScalable = true } }, ["You can inflict # Hallowing Flames on Enemies"] = { { isScalable = true } }, ["You can inflict # additional Ignites on each Enemy"] = { { isScalable = true } }, @@ -14537,7 +14816,7 @@ return { ["You gain #% increased Area of Effect for each Mine"] = { { isScalable = true } }, ["You gain #% increased Damage for each Trap"] = { { isScalable = true } }, ["You gain Added Cold Damage instead of Added Damage of other types if Dexterity exceeds both other Attributes"] = { }, - ["You gain Added Lighting Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes"] = { }, + ["You gain Added Lightning Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes"] = { }, ["You gain Adrenaline for # second on using a Vaal Skill"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["You gain Adrenaline for # seconds on using a Vaal Skill"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["You gain Divinity for # seconds on reaching maximum Divine Charges\nLose all Divine Charges when you gain Divinity"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, @@ -14838,6 +15117,23 @@ return { ["Your Maximum Frenzy Charges is equal to your Maximum Power Charges"] = { }, ["Your Maximum Resistances are #%"] = { { isScalable = false } }, ["Your Melee Hits can't be Evaded while wielding a Sword"] = { }, + ["Your Mercenary Taunts on Hit"] = { }, + ["Your Mercenary and their Minions deal #% increased Damage"] = { { isScalable = true } }, + ["Your Mercenary and their Minions deal #% less Damage for\neach Unique item they have equipped"] = { { isScalable = true, formats = { "negate" } } }, + ["Your Mercenary and their Minions deal #% more Damage for\neach Unique item they have equipped"] = { { isScalable = true } }, + ["Your Mercenary and their Minions deal #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, + ["Your Mercenary and their Minions have #% increased maximum Life"] = { { isScalable = true } }, + ["Your Mercenary and their Minions have #% reduced maximum Life"] = { { isScalable = true, formats = { "negate" } } }, + ["Your Mercenary can equip Unique Amulets"] = { }, + ["Your Mercenary can equip Unique Belts"] = { }, + ["Your Mercenary can equip Unique Boots"] = { }, + ["Your Mercenary can equip Unique Gloves"] = { }, + ["Your Mercenary can equip Unique Helmets"] = { }, + ["Your Mercenary can equip Unique Rings"] = { }, + ["Your Mercenary can equip Unique Weapons, Shields and Quivers"] = { }, + ["Your Mercenary has #% chance to Taunt on Hit"] = { { isScalable = true } }, + ["Your Mercenary has #% increased effect of Non-Curse Auras from Skills"] = { { isScalable = true } }, + ["Your Mercenary has #% reduced effect of Non-Curse Auras from Skills"] = { { isScalable = true, formats = { "negate" } } }, ["Your Meteor Towers always Stun"] = { }, ["Your Meteor Towers create Burning Ground for # seconds on Hit"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, ["Your Meteor Towers deal #% increased Damage"] = { { isScalable = true } }, @@ -14954,68 +15250,4 @@ return { ["Zealotry has #% reduced Mana Reservation Efficiency"] = { { isScalable = true, formats = { "negate" } } }, ["Zealotry has #% reduced Reservation"] = { { isScalable = true, formats = { "negate" } } }, ["Zealotry has no Reservation"] = { }, - ["[DNT] # to all Attributes for each Keystone affecting you"] = { { isScalable = true } }, - ["[DNT] #% Chance to Block Spell Damage per Minion"] = { { isScalable = true } }, - ["[DNT] #% increased Area of Effect per 10 Rage"] = { { isScalable = true } }, - ["[DNT] #% increased Attribute Requirements of equipped Armour"] = { { isScalable = true } }, - ["[DNT] #% increased Attribute Requirements of equipped Weapons"] = { { isScalable = true } }, - ["[DNT] #% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently"] = { { isScalable = true } }, - ["[DNT] #% reduced Attribute Requirements of equipped Armour"] = { { isScalable = true, formats = { "negate" } } }, - ["[DNT] #% reduced Attribute Requirements of equipped Weapons"] = { { isScalable = true, formats = { "negate" } } }, - ["[DNT] #% reduced Chance to Block Attack and Spell Damage for every 100 Life Spent Recently"] = { { isScalable = true, formats = { "negate" } } }, - ["[DNT] #% to All Resistances per Minion"] = { { isScalable = true } }, - ["[DNT] #% to Critical Strike Multiplier with Unarmed Attack"] = { { isScalable = true } }, - ["[DNT] #% to Global Defenses per Minion"] = { { isScalable = true } }, - ["[DNT] Adds # maximum Lightning Damage\nLose one maximum Lightning Damage per level"] = { { isScalable = true } }, - ["[DNT] Area contains # additional Common Chest Marker"] = { { isScalable = true } }, - ["[DNT] Area contains # additional Common Chest Markers"] = { { isScalable = true } }, - ["[DNT] Area contains # additional Epic Chest Marker"] = { { isScalable = true } }, - ["[DNT] Area contains # additional Epic Chest Markers"] = { { isScalable = true } }, - ["[DNT] Area contains # additional Uncommon Chest Marker"] = { { isScalable = true } }, - ["[DNT] Area contains # additional Uncommon Chest Markers"] = { { isScalable = true } }, - ["[DNT] Areas contain additional Betrayal Targets\nBetrayal Targets ambush players"] = { }, - ["[DNT] Areas contain additional Essences\nEssences contain multiple Rare Monsters with Essences"] = { }, - ["[DNT] Areas contain additional Rogue Exiles\nRogues Exiles are equipped Unique Items\nRogue Exiles drop their equipped Unique Items"] = { }, - ["[DNT] Areas contain additional packs of Beasts instead of other Monsters"] = { }, - ["[DNT] Auras from your Allies have #% increased Effect on you"] = { { isScalable = true } }, - ["[DNT] Auras from your Allies have #% reduced Effect on you"] = { { isScalable = true, formats = { "negate" } } }, - ["[DNT] Bow Attacks Sacrifice #% of your Life to fire an additional Arrow for every 100 Life Sacrificed"] = { { isScalable = true } }, - ["[DNT] Dropped items have #% chance to be Fractured"] = { { isScalable = true } }, - ["[DNT] Energy Shield Recharge instead applies to Mana"] = { }, - ["[DNT] Every 4 seconds, Remove Elemental Ailments from you"] = { }, - ["[DNT] Every 4 seconds, remove all Curses"] = { }, - ["[DNT] Every 6 seconds:\n#% Chance to Block Attack Damage for 3 seconds\n#% Chance to Block Spell Damage for 3 seconds"] = { { isScalable = false }, { isScalable = false } }, - ["[DNT] For each nearby Ally you and nearby Allies deal #% less Damage per nearby Ally, up to 15%"] = { { isScalable = true, formats = { "negate" } } }, - ["[DNT] For each nearby Ally you and nearby Allies deal #% more Damage, up to 15%"] = { { isScalable = true } }, - ["[DNT] Grants Level # Unleash Power"] = { { isScalable = false } }, - ["[DNT] Hits with this Weapon deal Triple Damage if you have spent at least # seconds on a single attack recently"] = { { isScalable = true, formats = { "milliseconds_to_seconds" } } }, - ["[DNT] Impaled Enemies Cannot be Impaled"] = { }, - ["[DNT] Impales you inflict have #% increased Effect per Impale on you"] = { { isScalable = true } }, - ["[DNT] Impales you inflict have #% reduced Effect per Impale on you"] = { { isScalable = true, formats = { "negate" } } }, - ["[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage"] = { }, - ["[DNT] Link Skills Cost Life instead of Mana"] = { }, - ["[DNT] Minions are Aggressive if you've Blocked Recently"] = { }, - ["[DNT] Monsters spawn Volatile Cores on death"] = { }, - ["[DNT] Nearby Allies have Onslaught"] = { }, - ["[DNT] Nearby Non-Player Allies are Shocked, taking #% increased damage\nGain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies"] = { { isScalable = true } }, - ["[DNT] Players can be touched by Tormented Spirits"] = { }, - ["[DNT] Projectiles from your Spells have infinite speed"] = { }, - ["[DNT] Projectiles you create move at your speed"] = { }, - ["[DNT] Sirus' Meteors rain down in Area"] = { }, - ["[DNT] Socketed Gems are Supported by Level # Rings of Light"] = { { isScalable = false } }, - ["[DNT] Triggers Level # Violent Path when Equipped"] = { { isScalable = false } }, - ["[DNT] Unarmed Attacks deal # to # added Chaos Damage for each Poison on the target, up to 100"] = { { isScalable = true }, { isScalable = true } }, - ["[DNT] Unarmed Non-Vaal Strike Skills target # additional nearby Enemies"] = { { isScalable = true } }, - ["[DNT] Unarmed Non-Vaal Strike Skills target # additional nearby Enemy"] = { { isScalable = true } }, - ["[DNT] You have Feeding Frenzy if you've Blocked Recently"] = { }, - ["[DNT] You have Onslaught during Effect of any Life Flask"] = { }, - ["[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you"] = { }, - ["[DNT] Your Minions cannot cast Spells"] = { }, - ["[DNT] Your Minions cannot use Attacks"] = { }, - ["[DNT] Your Minions have #% increased Cooldown Recovery Rate with Attacks"] = { { isScalable = true } }, - ["[DNT] Your Minions have #% increased Cooldown Recovery Rate with Spells"] = { { isScalable = true } }, - ["[DNT] Your Minions have #% reduced Cooldown Recovery Rate with Attacks"] = { { isScalable = true, formats = { "negate" } } }, - ["[DNT] Your Minions have #% reduced Cooldown Recovery Rate with Spells"] = { { isScalable = true, formats = { "negate" } } }, - ["[DNT] Your minions gain your chance to Suppress Spell Damage"] = { }, - ["[DNT] Your minions have no Armour or Maximum Energy Shield"] = { }, } \ No newline at end of file diff --git a/src/Data/ModScourge.lua b/src/Data/ModScourge.lua index e7e0f5e522..25610faf54 100644 --- a/src/Data/ModScourge.lua +++ b/src/Data/ModScourge.lua @@ -2,1255 +2,1255 @@ -- Item data (c) Grinding Gear Games return { - ["HellscapeUpsideIncreasedLife1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(23-25) to maximum Life" }, } }, - ["HellscapeUpsideIncreasedLife2_"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Life", statOrder = { 1569 }, level = 45, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(28-30) to maximum Life" }, } }, - ["HellscapeUpsideIncreasedLife3_"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Life", statOrder = { 1569 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(33-35) to maximum Life" }, } }, - ["HellscapeUpsideIncreasedLife4"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Life", statOrder = { 1569 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(38-40) to maximum Life" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots1__"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(30-33) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots2"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Armour", statOrder = { 1540 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(34-37) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(38-41) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(42-45) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(33-39) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield2__"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Armour", statOrder = { 1540 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(40-46) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(47-53) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield4_"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(54-60) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(31-60) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Armour", statOrder = { 1540 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(61-90) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(91-120) to Armour" }, } }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-150) to Armour" }, } }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots1"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-33) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots2___"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Evasion Rating", statOrder = { 1548 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(34-37) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots3_"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(38-41) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(42-45) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(33-39) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Evasion Rating", statOrder = { 1548 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-46) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(47-53) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(54-60) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(31-60) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Evasion Rating", statOrder = { 1548 }, level = 45, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(61-90) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(91-120) to Evasion Rating" }, } }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-150) to Evasion Rating" }, } }, - ["HellscapeUpsideEnergyShieldGlovesBoots1_"] = { type = "ScourgeUpside", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(8-9) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldGlovesBoots2__"] = { type = "ScourgeUpside", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1559 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-11) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(12-13) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldGlovesBoots4"] = { type = "ScourgeUpside", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(14-15) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldHelmetShield1_"] = { type = "ScourgeUpside", affix = "", "+(11-12) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(13-14) to maximum Energy Shield", statOrder = { 1559 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(13-14) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(15-16) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-16) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(17-18) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(17-18) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(15-18) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-18) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldBodyArmour2_"] = { type = "ScourgeUpside", affix = "", "+(19-22) to maximum Energy Shield", statOrder = { 1559 }, level = 45, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(19-22) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldBodyArmour3_"] = { type = "ScourgeUpside", affix = "", "+(23-26) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(23-26) to maximum Energy Shield" }, } }, - ["HellscapeUpsideEnergyShieldBodyArmour4"] = { type = "ScourgeUpside", affix = "", "+(27-30) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(27-30) to maximum Energy Shield" }, } }, - ["HellscapeUpsidePhysicalDamageTakenAsFirePercent3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "4% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["HellscapeUpsidePhysicalDamageTakenAsFirePercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "5% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["HellscapeUpsidePhysicalDamageTakenAsCold3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "4% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["HellscapeUpsidePhysicalDamageTakenAsCold4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "5% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent3_"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "4% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "5% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["HellscapeUpsidePhysicalDamageTakenAsChaos3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "4% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["HellscapeUpsidePhysicalDamageTakenAsChaos4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "5% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["HellscapeUpsideBaseFreezeDurationOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(31-35)% reduced Freeze Duration on you" }, } }, - ["HellscapeUpsideBaseFreezeDurationOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, - ["HellscapeUpsideChillEffectivenessOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(31-35)% reduced Effect of Chill on you" }, } }, - ["HellscapeUpsideChillEffectivenessOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(36-40)% reduced Effect of Chill on you" }, } }, - ["HellscapeUpsideReducedShockEffectOnSelf3"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(31-35)% reduced Effect of Shock on you" }, } }, - ["HellscapeUpsideReducedShockEffectOnSelf4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Shock on you", statOrder = { 10020 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-40)% reduced Effect of Shock on you" }, } }, - ["HellscapeUpsideReducedCurseEffect3"] = { type = "ScourgeUpside", affix = "", "(16-20)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(16-20)% reduced Effect of Curses on you" }, } }, - ["HellscapeUpsideReducedCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(21-25)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(21-25)% reduced Effect of Curses on you" }, } }, - ["HellscapeUpsideCannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks1"] = { type = "ScourgeUpside", affix = "", "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", statOrder = { 5433 }, level = 45, group = "CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, tradeHashes = { [736820284] = { "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you" }, } }, - ["HellscapeUpsideReducedBurnDuration3__"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(31-35)% reduced Ignite Duration on you" }, } }, - ["HellscapeUpsideReducedBurnDuration4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, - ["HellscapeUpsideChanceToAvoidBleeding2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 45, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(26-30)% chance to Avoid Bleeding" }, } }, - ["HellscapeUpsideChanceToAvoidBleeding3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(31-35)% chance to Avoid Bleeding" }, } }, - ["HellscapeUpsideChanceToAvoidBleeding4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(36-40)% chance to Avoid Bleeding" }, } }, - ["HellscapeUpsideChillEnemiesWhenHit3"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 4 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 4 seconds when Hit, reducing their Action Speed by 30%" }, } }, - ["HellscapeUpsideChillEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 5 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 5 seconds when Hit, reducing their Action Speed by 30%" }, } }, - ["HellscapeUpsideDamageTakenGainedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(7-8)% of Damage taken Recouped as Life" }, } }, - ["HellscapeUpsideDamageTakenGainedAsLife3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(9-10)% of Damage taken Recouped as Life" }, } }, - ["HellscapeUpsideDamageTakenGainedAsLife4"] = { type = "ScourgeUpside", affix = "", "(11-12)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(11-12)% of Damage taken Recouped as Life" }, } }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h2__"] = { type = "ScourgeUpside", affix = "", "3% chance to deal Triple Damage", statOrder = { 5000 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "3% chance to deal Triple Damage" }, } }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h3__"] = { type = "ScourgeUpside", affix = "", "4% chance to deal Triple Damage", statOrder = { 5000 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "4% chance to deal Triple Damage" }, } }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h4__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 5000 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "5% chance to deal Triple Damage" }, } }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h2__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 5000 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "5% chance to deal Triple Damage" }, } }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h3_"] = { type = "ScourgeUpside", affix = "", "6% chance to deal Triple Damage", statOrder = { 5000 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "6% chance to deal Triple Damage" }, } }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h4"] = { type = "ScourgeUpside", affix = "", "7% chance to deal Triple Damage", statOrder = { 5000 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "7% chance to deal Triple Damage" }, } }, - ["HellscapeUpsideOnslaughtWhenHitForDuration2"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 2 seconds when Hit", statOrder = { 2827 }, level = 45, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 2 seconds when Hit" }, } }, - ["HellscapeUpsideOnslaughtWhenHitForDuration3"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 3 seconds when Hit", statOrder = { 2827 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 3 seconds when Hit" }, } }, - ["HellscapeUpsideOnslaughtWhenHitForDuration4"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 4 seconds when Hit", statOrder = { 2827 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 4 seconds when Hit" }, } }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit2"] = { type = "ScourgeUpside", affix = "", "Deal (8-11)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3787 }, level = 45, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3643913768] = { "Deal (8-11)% of your maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit3"] = { type = "ScourgeUpside", affix = "", "Deal (12-15)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3787 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3643913768] = { "Deal (12-15)% of your maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit4"] = { type = "ScourgeUpside", affix = "", "Deal (16-19)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3787 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3643913768] = { "Deal (16-19)% of your maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, - ["HellscapeUpsideConsecrateGroundFor3SecondsWhenHit1"] = { type = "ScourgeUpside", affix = "", "Create Consecrated Ground when Hit, lasting 8 seconds", statOrder = { 3553 }, level = 45, group = "ConsecrateGroundFor3SecondsWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [1968872681] = { "Create Consecrated Ground when Hit, lasting 8 seconds" }, } }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h2"] = { type = "ScourgeUpside", affix = "", "5% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "5% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h3"] = { type = "ScourgeUpside", affix = "", "6% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "6% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h4___"] = { type = "ScourgeUpside", affix = "", "7% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "7% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h2_"] = { type = "ScourgeUpside", affix = "", "8% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "8% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h3_"] = { type = "ScourgeUpside", affix = "", "9% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "9% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h4"] = { type = "ScourgeUpside", affix = "", "10% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "10% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["HellscapeUpsideElusiveEffect2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Elusive Effect", statOrder = { 6350 }, level = 45, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(12-14)% increased Elusive Effect" }, } }, - ["HellscapeUpsideElusiveEffect3___"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Elusive Effect", statOrder = { 6350 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(15-17)% increased Elusive Effect" }, } }, - ["HellscapeUpsideElusiveEffect4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Elusive Effect", statOrder = { 6350 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(18-20)% increased Elusive Effect" }, } }, - ["HellscapeUpsideBasePenetrateElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 45, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates 3% of Enemy Elemental Resistances" }, } }, - ["HellscapeUpsideBasePenetrateElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates 4% of Enemy Elemental Resistances" }, } }, - ["HellscapeUpsideBasePenetrateElementalResistances4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates 5% of Enemy Elemental Resistances" }, } }, - ["HellscapeUpsideMinimumEnduranceCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Endurance Charges", statOrder = { 1803 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, - ["HellscapeUpsideMinimumPowerCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Power Charges", statOrder = { 1813 }, level = 68, group = "MinimumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "power_charge" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, } }, - ["HellscapeUpsideMinimumFrenzyCharges1___"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, } }, - ["HellscapeUpsideCannotBeSlowedBelowValue3"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (75-79)% of base value", statOrder = { 3195 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [770490590] = { "Action Speed cannot be modified to below (75-79)% of base value" }, } }, - ["HellscapeUpsideCannotBeSlowedBelowValue4_"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (70-74)% of base value", statOrder = { 3195 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [770490590] = { "Action Speed cannot be modified to below (70-74)% of base value" }, } }, - ["HellscapeUpsideMonsterNemesisOndarsGuile1__"] = { type = "ScourgeUpside", affix = "", "Arrow Dancing", statOrder = { 10805 }, level = 68, group = "MonsterNemesisOndarsGuile", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2606808909] = { "Arrow Dancing" }, } }, - ["HellscapeUpsideConduit1"] = { type = "ScourgeUpside", affix = "", "Conduit", statOrder = { 10776 }, level = 68, group = "Conduit", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, - ["HellscapeUpsideIronReflexes1__"] = { type = "ScourgeUpside", affix = "", "Iron Reflexes", statOrder = { 10794 }, level = 68, group = "IronReflexes", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["HellscapeUpsideUnwaveringStance1"] = { type = "ScourgeUpside", affix = "", "Unwavering Stance", statOrder = { 10821 }, level = 68, group = "UnwaveringStance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["HellscapeUpsideEternalYouth1_"] = { type = "ScourgeUpside", affix = "", "Eternal Youth", statOrder = { 10785 }, level = 68, group = "EternalYouth", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, - ["HellscapeUpsideWindDancer1"] = { type = "ScourgeUpside", affix = "", "Wind Dancer", statOrder = { 10826 }, level = 68, group = "WindDancer", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4170338365] = { "Wind Dancer" }, } }, - ["HellscapeUpsideGlancingBlows1"] = { type = "ScourgeUpside", affix = "", "Glancing Blows", statOrder = { 10789 }, level = 68, group = "GlancingBlows", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, - ["HellscapeUpsideSacredBastion1_"] = { type = "ScourgeUpside", affix = "", "Imbalanced Guard", statOrder = { 10810 }, level = 68, group = "SacredBastion", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3868073741] = { "Imbalanced Guard" }, } }, - ["HellscapeUpsideManaShield1_"] = { type = "ScourgeUpside", affix = "", "Mind Over Matter", statOrder = { 10797 }, level = 68, group = "ManaShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, - ["HellscapeUpsideWickedWard1"] = { type = "ScourgeUpside", affix = "", "Wicked Ward", statOrder = { 10825 }, level = 68, group = "WickedWard", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1109343199] = { "Wicked Ward" }, } }, - ["HellscapeUpsideZealotsOath1"] = { type = "ScourgeUpside", affix = "", "Zealot's Oath", statOrder = { 10807 }, level = 68, group = "ZealotsOath", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, - ["HellscapeUpsideBlindEnemiesWhenHit2"] = { type = "ScourgeUpside", affix = "", "(11-20)% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 45, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [26216403] = { "(11-20)% chance to Blind Enemies when they Hit you" }, } }, - ["HellscapeUpsideBlindEnemiesWhenHit3_"] = { type = "ScourgeUpside", affix = "", "(21-30)% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [26216403] = { "(21-30)% chance to Blind Enemies when they Hit you" }, } }, - ["HellscapeUpsideBlindEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "(31-40)% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [26216403] = { "(31-40)% chance to Blind Enemies when they Hit you" }, } }, - ["HellscapeUpsideGuardSkillCooldownRecovery3"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (14-16)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150300096] = { "Guard Skills have (14-16)% increased Cooldown Recovery Rate" }, } }, - ["HellscapeUpsideGuardSkillCooldownRecovery4___"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (17-19)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150300096] = { "Guard Skills have (17-19)% increased Cooldown Recovery Rate" }, } }, - ["HellscapeUpsideMinionChanceToTauntOnHit2___"] = { type = "ScourgeUpside", affix = "", "Minions have (11-13)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 45, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (11-13)% chance to Taunt on Hit with Attacks" }, } }, - ["HellscapeUpsideMinionChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "Minions have (14-16)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (14-16)% chance to Taunt on Hit with Attacks" }, } }, - ["HellscapeUpsideMinionChanceToTauntOnHit4"] = { type = "ScourgeUpside", affix = "", "Minions have (17-19)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (17-19)% chance to Taunt on Hit with Attacks" }, } }, - ["HellscapeUpsideIncreaseSocketedSupportGemQuality3"] = { type = "ScourgeUpside", affix = "", "+(9-10)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(9-10)% to Quality of Socketed Support Gems" }, } }, - ["HellscapeUpsideIncreaseSocketedSupportGemQuality4_"] = { type = "ScourgeUpside", affix = "", "+(11-12)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(11-12)% to Quality of Socketed Support Gems" }, } }, - ["HellscapeUpsideGainManaAsExtraEnergyShield3"] = { type = "ScourgeUpside", affix = "", "Gain 5% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain 5% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["HellscapeUpsideGainManaAsExtraEnergyShield4_"] = { type = "ScourgeUpside", affix = "", "Gain 6% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain 6% of Maximum Mana as Extra Maximum Energy Shield" }, } }, - ["HellscapeUpsideAreaOfEffect1_"] = { type = "ScourgeUpside", affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, - ["HellscapeUpsideAreaOfEffect2"] = { type = "ScourgeUpside", affix = "", "11% increased Area of Effect", statOrder = { 1880 }, level = 45, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "11% increased Area of Effect" }, } }, - ["HellscapeUpsideAreaOfEffect3____"] = { type = "ScourgeUpside", affix = "", "12% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "12% increased Area of Effect" }, } }, - ["HellscapeUpsideAreaOfEffect4"] = { type = "ScourgeUpside", affix = "", "13% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "13% increased Area of Effect" }, } }, - ["HellscapeUpsideProjectileSpeed1"] = { type = "ScourgeUpside", affix = "", "(14-16)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(14-16)% increased Projectile Speed" }, } }, - ["HellscapeUpsideProjectileSpeed2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Projectile Speed", statOrder = { 1796 }, level = 45, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(17-19)% increased Projectile Speed" }, } }, - ["HellscapeUpsideProjectileSpeed3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Projectile Speed", statOrder = { 1796 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-22)% increased Projectile Speed" }, } }, - ["HellscapeUpsideProjectileSpeed4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Projectile Speed", statOrder = { 1796 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(23-25)% increased Projectile Speed" }, } }, - ["HellscapeUpsideMinionLife2___"] = { type = "ScourgeUpside", affix = "", "Minions have (10-11)% increased maximum Life", statOrder = { 1766 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-11)% increased maximum Life" }, } }, - ["HellscapeUpsideMinionLife3"] = { type = "ScourgeUpside", affix = "", "Minions have (12-13)% increased maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (12-13)% increased maximum Life" }, } }, - ["HellscapeUpsideMinionLife4_"] = { type = "ScourgeUpside", affix = "", "Minions have (14-15)% increased maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (14-15)% increased maximum Life" }, } }, - ["HellscapeUpsideFireResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(18-20)% to Fire Resistance" }, } }, - ["HellscapeUpsideFireResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Fire Resistance", statOrder = { 1625 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(23-25)% to Fire Resistance" }, } }, - ["HellscapeUpsideFireResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Fire Resistance", statOrder = { 1625 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(28-30)% to Fire Resistance" }, } }, - ["HellscapeUpsideFireResistance4__"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Fire Resistance", statOrder = { 1625 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(33-35)% to Fire Resistance" }, } }, - ["HellscapeUpsideColdResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(18-20)% to Cold Resistance" }, } }, - ["HellscapeUpsideColdResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Cold Resistance", statOrder = { 1631 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-25)% to Cold Resistance" }, } }, - ["HellscapeUpsideColdResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Cold Resistance", statOrder = { 1631 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(28-30)% to Cold Resistance" }, } }, - ["HellscapeUpsideColdResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Cold Resistance", statOrder = { 1631 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(33-35)% to Cold Resistance" }, } }, - ["HellscapeUpsideLightningResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(18-20)% to Lightning Resistance" }, } }, - ["HellscapeUpsideLightningResistance2__"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Lightning Resistance", statOrder = { 1636 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(23-25)% to Lightning Resistance" }, } }, - ["HellscapeUpsideLightningResistance3"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Lightning Resistance", statOrder = { 1636 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(28-30)% to Lightning Resistance" }, } }, - ["HellscapeUpsideLightningResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Lightning Resistance", statOrder = { 1636 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(33-35)% to Lightning Resistance" }, } }, - ["HellscapeUpsideElementalResistance1__"] = { type = "ScourgeUpside", affix = "", "+6% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+6% to all Elemental Resistances" }, } }, - ["HellscapeUpsideElementalResistance2"] = { type = "ScourgeUpside", affix = "", "+8% to all Elemental Resistances", statOrder = { 1619 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+8% to all Elemental Resistances" }, } }, - ["HellscapeUpsideElementalResistance3"] = { type = "ScourgeUpside", affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, - ["HellscapeUpsideElementalResistance4_"] = { type = "ScourgeUpside", affix = "", "+12% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+12% to all Elemental Resistances" }, } }, - ["HellscapeUpsideChaosResistance1_"] = { type = "ScourgeUpside", affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, - ["HellscapeUpsideChaosResistance2_"] = { type = "ScourgeUpside", affix = "", "+(14-17)% to Chaos Resistance", statOrder = { 1641 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(14-17)% to Chaos Resistance" }, } }, - ["HellscapeUpsideChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "+(18-21)% to Chaos Resistance", statOrder = { 1641 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(18-21)% to Chaos Resistance" }, } }, - ["HellscapeUpsideChaosResistance4_"] = { type = "ScourgeUpside", affix = "", "+(22-25)% to Chaos Resistance", statOrder = { 1641 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, - ["HellscapeUpsideMinionElementalResistance2"] = { type = "ScourgeUpside", affix = "", "Minions have +(10-11)% to all Elemental Resistances", statOrder = { 2912 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-11)% to all Elemental Resistances" }, } }, - ["HellscapeUpsideMinionElementalResistance3"] = { type = "ScourgeUpside", affix = "", "Minions have +(12-13)% to all Elemental Resistances", statOrder = { 2912 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(12-13)% to all Elemental Resistances" }, } }, - ["HellscapeUpsideMinionElementalResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(14-15)% to all Elemental Resistances" }, } }, - ["HellscapeUpsideMinionChaosResistance2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-17)% to Chaos Resistance", statOrder = { 2913 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(14-17)% to Chaos Resistance" }, } }, - ["HellscapeUpsideMinionChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "Minions have +(18-21)% to Chaos Resistance", statOrder = { 2913 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(18-21)% to Chaos Resistance" }, } }, - ["HellscapeUpsideMinionChaosResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(22-25)% to Chaos Resistance", statOrder = { 2913 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(22-25)% to Chaos Resistance" }, } }, - ["HellscapeUpsideStunAndBlockRecovery2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 45, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, - ["HellscapeUpsideStunAndBlockRecovery3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, - ["HellscapeUpsideStunAndBlockRecovery4__"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Chilled", "(26-30)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 45, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(26-30)% chance to Avoid being Chilled" }, [1514829491] = { "(26-30)% chance to Avoid being Frozen" }, } }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Chilled", "(31-35)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(31-35)% chance to Avoid being Chilled" }, [1514829491] = { "(31-35)% chance to Avoid being Frozen" }, } }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Chilled", "(36-40)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(36-40)% chance to Avoid being Chilled" }, [1514829491] = { "(36-40)% chance to Avoid being Frozen" }, } }, - ["HellscapeUpsideChanceToAvoidShock2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 45, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(26-30)% chance to Avoid being Shocked" }, } }, - ["HellscapeUpsideChanceToAvoidShock3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(31-35)% chance to Avoid being Shocked" }, } }, - ["HellscapeUpsideChanceToAvoidShock4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-40)% chance to Avoid being Shocked" }, } }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 45, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(26-30)% chance to Avoid being Ignited" }, } }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(31-35)% chance to Avoid being Ignited" }, } }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-40)% chance to Avoid being Ignited" }, } }, - ["HellscapeUpsideChanceToAvoidPoison2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 45, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(26-30)% chance to Avoid being Poisoned" }, } }, - ["HellscapeUpsideChanceToAvoidPoison3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(31-35)% chance to Avoid being Poisoned" }, } }, - ["HellscapeUpsideChanceToAvoidPoison4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(36-40)% chance to Avoid being Poisoned" }, } }, - ["HellscapeUpsideChanceToAvoidStun2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 45, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, - ["HellscapeUpsideChanceToAvoidStun3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, - ["HellscapeUpsideChanceToAvoidStun4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-25)% chance to Avoid being Stunned" }, } }, - ["HellscapeUpsideAvoidElementalStatusAilments2__"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(17-19)% chance to Avoid Elemental Ailments" }, } }, - ["HellscapeUpsideAvoidElementalStatusAilments3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-22)% chance to Avoid Elemental Ailments" }, } }, - ["HellscapeUpsideAvoidElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(23-25)% chance to Avoid Elemental Ailments" }, } }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments2"] = { type = "ScourgeUpside", affix = "", "(17-19)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(17-19)% reduced Elemental Ailment Duration on you" }, } }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments3"] = { type = "ScourgeUpside", affix = "", "(20-22)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-22)% reduced Elemental Ailment Duration on you" }, } }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(23-25)% reduced Elemental Ailment Duration on you" }, } }, - ["HellscapeUpsideGainLifeOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Life gained when you Block", statOrder = { 1757 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(31-40) Life gained when you Block" }, } }, - ["HellscapeUpsideGainLifeOnBlock3_"] = { type = "ScourgeUpside", affix = "", "(41-50) Life gained when you Block", statOrder = { 1757 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-50) Life gained when you Block" }, } }, - ["HellscapeUpsideGainLifeOnBlock4___"] = { type = "ScourgeUpside", affix = "", "(51-60) Life gained when you Block", statOrder = { 1757 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(51-60) Life gained when you Block" }, } }, - ["HellscapeUpsideGainManaOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Mana gained when you Block", statOrder = { 1758 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-40) Mana gained when you Block" }, } }, - ["HellscapeUpsideGainManaOnBlock3"] = { type = "ScourgeUpside", affix = "", "(41-50) Mana gained when you Block", statOrder = { 1758 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(41-50) Mana gained when you Block" }, } }, - ["HellscapeUpsideGainManaOnBlock4"] = { type = "ScourgeUpside", affix = "", "(51-60) Mana gained when you Block", statOrder = { 1758 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(51-60) Mana gained when you Block" }, } }, - ["HellscapeUpsideGainEnergyShieldOnBlock2"] = { type = "ScourgeUpside", affix = "", "Gain (31-40) Energy Shield when you Block", statOrder = { 1759 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (31-40) Energy Shield when you Block" }, } }, - ["HellscapeUpsideGainEnergyShieldOnBlock3___"] = { type = "ScourgeUpside", affix = "", "Gain (41-50) Energy Shield when you Block", statOrder = { 1759 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (41-50) Energy Shield when you Block" }, } }, - ["HellscapeUpsideGainEnergyShieldOnBlock4_"] = { type = "ScourgeUpside", affix = "", "Gain (51-60) Energy Shield when you Block", statOrder = { 1759 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (51-60) Energy Shield when you Block" }, } }, - ["HellscapeUpsideBlockAttacks1"] = { type = "ScourgeUpside", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-3)% Chance to Block Attack Damage" }, } }, - ["HellscapeUpsideBlockAttacks2_"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["HellscapeUpsideBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(6-7)% Chance to Block Attack Damage" }, } }, - ["HellscapeUpsideBlockAttacks4__"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(8-9)% Chance to Block Attack Damage" }, } }, - ["HellscapeUpsideBlockSpells2"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(4-5)% Chance to Block Spell Damage" }, } }, - ["HellscapeUpsideBlockSpells3_"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(6-7)% Chance to Block Spell Damage" }, } }, - ["HellscapeUpsideBlockSpells4"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(8-9)% Chance to Block Spell Damage" }, } }, - ["HellscapeUpsideMinionBlockAttacks2"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 45, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(11-13)% Chance to Block Attack Damage" }, } }, - ["HellscapeUpsideMinionBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(14-16)% Chance to Block Attack Damage" }, } }, - ["HellscapeUpsideMinionBlockAttacks4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(17-19)% Chance to Block Attack Damage" }, } }, - ["HellscapeUpsideMinionBlockSpells2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Spell Damage", statOrder = { 2904 }, level = 45, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +(11-13)% Chance to Block Spell Damage" }, } }, - ["HellscapeUpsideMinionBlockSpells3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Spell Damage", statOrder = { 2904 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +(14-16)% Chance to Block Spell Damage" }, } }, - ["HellscapeUpsideMinionBlockSpells4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Spell Damage", statOrder = { 2904 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +(17-19)% Chance to Block Spell Damage" }, } }, - ["HellscapeUpsideChanceToSuppressSpells2"] = { type = "ScourgeUpside", affix = "", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-6)% chance to Suppress Spell Damage" }, } }, - ["HellscapeUpsideChanceToSuppressSpells3_"] = { type = "ScourgeUpside", affix = "", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(7-8)% chance to Suppress Spell Damage" }, } }, - ["HellscapeUpsideChanceToSuppressSpells4_"] = { type = "ScourgeUpside", affix = "", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(9-10)% chance to Suppress Spell Damage" }, } }, - ["HellscapeUpsideAttackerTakesDamageNoRange1_"] = { type = "ScourgeUpside", affix = "", "Reflects (20-40) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (20-40) Physical Damage to Melee Attackers" }, } }, - ["HellscapeUpsideAttackerTakesDamageNoRange2_"] = { type = "ScourgeUpside", affix = "", "Reflects (41-60) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (41-60) Physical Damage to Melee Attackers" }, } }, - ["HellscapeUpsideAttackerTakesDamageNoRange3"] = { type = "ScourgeUpside", affix = "", "Reflects (61-80) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (61-80) Physical Damage to Melee Attackers" }, } }, - ["HellscapeUpsideAttackerTakesDamageNoRange4"] = { type = "ScourgeUpside", affix = "", "Reflects (81-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (81-100) Physical Damage to Melee Attackers" }, } }, - ["HellscapeUpsideLocalColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (18-23) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-13) to (18-23) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (28-33) Cold Damage", statOrder = { 1371 }, level = 45, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-24) to (28-33) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (27-33) to (38-43) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (27-33) to (38-43) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (37-43) to (51-57) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-43) to (51-57) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (16-20) to (30-35) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-20) to (30-35) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamageRanged2_____"] = { type = "ScourgeUpside", affix = "", "Adds (24-29) to (41-46) Cold Damage", statOrder = { 1371 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (24-29) to (41-46) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (31-36) to (50-57) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-36) to (50-57) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (37-45) to (60-67) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-45) to (60-67) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (35-39) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-24) to (35-39) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamage2h2_____"] = { type = "ScourgeUpside", affix = "", "Adds (30-35) to (53-61) Cold Damage", statOrder = { 1371 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (30-35) to (53-61) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (41-48) to (63-72) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-48) to (63-72) Cold Damage" }, } }, - ["HellscapeUpsideLocalColdDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (50-61) to (75-87) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (50-61) to (75-87) Cold Damage" }, } }, - ["HellscapeUpsideLocalFireDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (11-14) to (23-27) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-14) to (23-27) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (21-26) to (31-38) Fire Damage", statOrder = { 1362 }, level = 45, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (21-26) to (31-38) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamage1h3___"] = { type = "ScourgeUpside", affix = "", "Adds (29-35) to (43-48) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (29-35) to (43-48) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (40-45) to (56-62) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (40-45) to (56-62) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (18-22) to (35-39) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (18-22) to (35-39) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (27-34) to (46-53) Fire Damage", statOrder = { 1362 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (27-34) to (46-53) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (36-41) to (56-64) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (36-41) to (56-64) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamageRanged4______"] = { type = "ScourgeUpside", affix = "", "Adds (43-57) to (66-72) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (43-57) to (66-72) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (22-26) to (38-44) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (22-26) to (38-44) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamage2h2__"] = { type = "ScourgeUpside", affix = "", "Adds (34-43) to (59-67) Fire Damage", statOrder = { 1362 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (34-43) to (59-67) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamage2h3______"] = { type = "ScourgeUpside", affix = "", "Adds (48-56) to (69-78) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (48-56) to (69-78) Fire Damage" }, } }, - ["HellscapeUpsideLocalFireDamage2h4______"] = { type = "ScourgeUpside", affix = "", "Adds (59-72) to (80-91) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (59-72) to (80-91) Fire Damage" }, } }, - ["HellscapeUpsideLocalLightningDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (1-3) to (40-45) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (40-45) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (54-68) Lightning Damage", statOrder = { 1382 }, level = 45, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-4) to (54-68) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (76-90) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-6) to (76-90) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (98-111) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-8) to (98-111) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (1-5) to (60-66) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-5) to (60-66) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamageRanged2_"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (81-102) Lightning Damage", statOrder = { 1382 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-6) to (81-102) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (4-9) to (114-134) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-9) to (114-134) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamageRanged4_"] = { type = "ScourgeUpside", affix = "", "Adds (5-12) to (147-166) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-12) to (147-166) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamage2h1__"] = { type = "ScourgeUpside", affix = "", "Adds (2-6) to (74-86) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (74-86) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (103-129) Lightning Damage", statOrder = { 1382 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-8) to (103-129) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (5-10) to (145-170) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-10) to (145-170) Lightning Damage" }, } }, - ["HellscapeUpsideLocalLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (6-15) to (186-211) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (6-15) to (186-211) Lightning Damage" }, } }, - ["HellscapeUpsideLocalPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (1-2) to (6-7) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (6-7) Physical Damage" }, } }, - ["HellscapeUpsideLocalPhysicalDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (3-4) to (8-9) Physical Damage", statOrder = { 1276 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (8-9) Physical Damage" }, } }, - ["HellscapeUpsideLocalPhysicalDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (10-11) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-6) to (10-11) Physical Damage" }, } }, - ["HellscapeUpsideLocalPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (7-8) to (12-13) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-8) to (12-13) Physical Damage" }, } }, - ["HellscapeUpsideLocalPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (11-13) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-4) to (11-13) Physical Damage" }, } }, - ["HellscapeUpsideLocalPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (6-8) to (15-17) Physical Damage", statOrder = { 1276 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-8) to (15-17) Physical Damage" }, } }, - ["HellscapeUpsideLocalPhysicalDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (19-21) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-12) to (19-21) Physical Damage" }, } }, - ["HellscapeUpsideLocalPhysicalDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (14-16) to (23-25) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-16) to (23-25) Physical Damage" }, } }, - ["HellscapeUpsideLocalChaosDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (13-17) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-6) to (13-17) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-21) Chaos Damage", statOrder = { 1390 }, level = 45, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-9) to (19-21) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamage1h3____"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (23-27) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-12) to (23-27) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (29-33) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (13-15) to (29-33) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-25) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-9) to (19-25) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (10-14) to (28-31) Chaos Damage", statOrder = { 1390 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-14) to (28-31) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (15-19) to (34-40) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (15-19) to (34-40) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (20-22) to (43-49) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (20-22) to (43-49) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (10-11) to (25-32) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-11) to (25-32) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-17) to (36-40) Chaos Damage", statOrder = { 1390 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (13-17) to (36-40) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamage2h3_____"] = { type = "ScourgeUpside", affix = "", "Adds (19-23) to (44-51) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-23) to (44-51) Chaos Damage" }, } }, - ["HellscapeUpsideLocalChaosDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (25-29) to (55-63) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (25-29) to (55-63) Chaos Damage" }, } }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent1"] = { type = "ScourgeUpside", affix = "", "(8-12)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(8-12)% increased Elemental Damage with Attack Skills" }, } }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent2_"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 45, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(13-16)% increased Elemental Damage with Attack Skills" }, } }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent3"] = { type = "ScourgeUpside", affix = "", "(17-20)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(17-20)% increased Elemental Damage with Attack Skills" }, } }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent4"] = { type = "ScourgeUpside", affix = "", "(21-24)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-24)% increased Elemental Damage with Attack Skills" }, } }, - ["HellscapeUpsideSpellAddedColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-12) to (25-27) Cold Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-15) to (28-32) Cold Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedColdDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-18) to (33-36) Cold Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedColdDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (19-21) to (37-40) Cold Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-18) to (37-40) Cold Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedColdDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Cold Damage to Spells", statOrder = { 1405 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (19-22) to (42-48) Cold Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedColdDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (23-27) to (49-54) Cold Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedColdDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (28-31) to (55-60) Cold Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedFireDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (9-12) to (25-27) Fire Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Fire Damage to Spells", statOrder = { 1404 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-15) to (28-32) Fire Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedFireDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (16-18) to (33-36) Fire Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-21) to (37-40) Fire Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedFireDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (37-40) Fire Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedFireDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Fire Damage to Spells", statOrder = { 1404 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-22) to (42-48) Fire Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedFireDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-27) to (49-54) Fire Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedFireDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (28-31) to (55-60) Fire Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedLightningDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (4-6) to (31-34) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-6) to (31-34) Lightning Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (36-39) Lightning Damage to Spells", statOrder = { 1406 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-9) to (36-39) Lightning Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedLightningDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (42-45) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (10-12) to (42-45) Lightning Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedLightningDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (47-50) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (13-15) to (47-50) Lightning Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedLightningDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (6-9) to (46-51) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-9) to (46-51) Lightning Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (10-13) to (54-59) Lightning Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedLightningDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (15-18) to (63-67) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (15-18) to (63-67) Lightning Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (70-75) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (19-22) to (70-75) Lightning Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (9-12) to (25-27) Physical Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-15) to (28-32) Physical Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (32-36) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-18) to (32-36) Physical Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (36-40) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-21) to (36-40) Physical Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (37-40) Physical Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Physical Damage to Spells", statOrder = { 1403 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-22) to (42-48) Physical Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (23-27) to (49-54) Physical Damage to Spells" }, } }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (28-31) to (55-60) Physical Damage to Spells" }, } }, - ["HellscapeUpsideSpellDamage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-25)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Spell Damage", statOrder = { 1223 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(28-30)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Spell Damage", statOrder = { 1223 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(33-35)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage1h2b___"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Spell Damage", statOrder = { 1223 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-40)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(43-45)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(48-50)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage2h1___"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(34-40)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Spell Damage", statOrder = { 1223 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(41-47)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage2h2_"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Spell Damage", statOrder = { 1223 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(48-54)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Spell Damage", statOrder = { 1223 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-61)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(62-68)% increased Spell Damage" }, } }, - ["HellscapeUpsideSpellDamage2h4___"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-75)% increased Spell Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-25)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Cold Damage", statOrder = { 1366 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(28-30)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Cold Damage", statOrder = { 1366 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-35)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Cold Damage", statOrder = { 1366 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(38-40)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage1h3___"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(43-45)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(48-50)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(34-40)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Cold Damage", statOrder = { 1366 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-47)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Cold Damage", statOrder = { 1366 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(48-54)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Cold Damage", statOrder = { 1366 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-61)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(62-68)% increased Cold Damage" }, } }, - ["HellscapeUpsideColdDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-75)% increased Cold Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage1h1__"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-25)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Fire Damage", statOrder = { 1357 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(28-30)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage1h2___"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-35)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Fire Damage", statOrder = { 1357 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(38-40)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage1h3__"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(43-45)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(48-50)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(34-40)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage2h1b____"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Fire Damage", statOrder = { 1357 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-47)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage2h2__"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(48-54)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Fire Damage", statOrder = { 1357 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-61)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(62-68)% increased Fire Damage" }, } }, - ["HellscapeUpsideFireDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-75)% increased Fire Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-25)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage1h1b__"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Lightning Damage", statOrder = { 1377 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(28-30)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Lightning Damage", statOrder = { 1377 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(33-35)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage1h2b__"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Lightning Damage", statOrder = { 1377 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(38-40)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(43-45)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(48-50)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(34-40)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Lightning Damage", statOrder = { 1377 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(41-47)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Lightning Damage", statOrder = { 1377 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(48-54)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Lightning Damage", statOrder = { 1377 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-61)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(62-68)% increased Lightning Damage" }, } }, - ["HellscapeUpsideLightningDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-75)% increased Lightning Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(23-25)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(28-30)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage1h2__"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Global Physical Damage", statOrder = { 1231 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(33-35)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(38-40)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(43-45)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(48-50)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(34-40)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Global Physical Damage", statOrder = { 1231 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(41-47)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Global Physical Damage", statOrder = { 1231 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(48-54)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage2h2b__"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(55-61)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(62-68)% increased Global Physical Damage" }, } }, - ["HellscapeUpsidePhysicalDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(69-75)% increased Global Physical Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(23-25)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(28-30)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Elemental Damage", statOrder = { 1980 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-35)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Elemental Damage", statOrder = { 1980 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(38-40)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage1h3_"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(43-45)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(48-50)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(34-40)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(41-47)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Elemental Damage", statOrder = { 1980 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(48-54)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Elemental Damage", statOrder = { 1980 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(55-61)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(62-68)% increased Elemental Damage" }, } }, - ["HellscapeUpsideElementalDamagePercentage2h4__"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(69-75)% increased Elemental Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-25)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage1h1b_"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Chaos Damage", statOrder = { 1385 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(28-30)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Chaos Damage", statOrder = { 1385 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-35)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Chaos Damage", statOrder = { 1385 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(38-40)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(43-45)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(48-50)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(34-40)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Chaos Damage", statOrder = { 1385 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(41-47)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Chaos Damage", statOrder = { 1385 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(48-54)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage2h2b___"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Chaos Damage", statOrder = { 1385 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-61)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(62-68)% increased Chaos Damage" }, } }, - ["HellscapeUpsideChaosDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-75)% increased Chaos Damage" }, } }, - ["HellscapeUpsideMinionDamagePercentage1__"] = { type = "ScourgeUpside", affix = "", "Minions deal (8-9)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (8-9)% increased Damage" }, } }, - ["HellscapeUpsideMinionDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "Minions deal (10-11)% increased Damage", statOrder = { 1973 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-11)% increased Damage" }, } }, - ["HellscapeUpsideMinionDamagePercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions deal (12-13)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (12-13)% increased Damage" }, } }, - ["HellscapeUpsideMinionDamagePercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions deal (14-15)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-15)% increased Damage" }, } }, - ["HellscapeUpsideProjectileDamagePercentage1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(8-9)% increased Projectile Damage" }, } }, - ["HellscapeUpsideProjectileDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Projectile Damage", statOrder = { 1996 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-11)% increased Projectile Damage" }, } }, - ["HellscapeUpsideProjectileDamagePercentage3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Projectile Damage", statOrder = { 1996 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(12-13)% increased Projectile Damage" }, } }, - ["HellscapeUpsideProjectileDamagePercentage4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Projectile Damage", statOrder = { 1996 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(14-15)% increased Projectile Damage" }, } }, - ["HellscapeUpsideCriticalStrikeChance2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(17-19)% increased Global Critical Strike Chance" }, } }, - ["HellscapeUpsideCriticalStrikeChance3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-22)% increased Global Critical Strike Chance" }, } }, - ["HellscapeUpsideCriticalStrikeChance4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(23-25)% increased Global Critical Strike Chance" }, } }, - ["HellscapeUpsideCriticalStrikeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-19)% to Global Critical Strike Multiplier" }, } }, - ["HellscapeUpsideCriticalStrikeMultiplier3"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-22)% to Global Critical Strike Multiplier" }, } }, - ["HellscapeUpsideCriticalStrikeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(23-25)% to Global Critical Strike Multiplier" }, } }, - ["HellscapeUpsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(17-19)% increased Critical Strike Chance with Bows" }, } }, - ["HellscapeUpsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-22)% increased Critical Strike Chance with Bows" }, } }, - ["HellscapeUpsideCriticalStrikeChanceWithBows4_"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(23-25)% increased Critical Strike Chance with Bows" }, } }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(17-19)% to Critical Strike Multiplier with Bows" }, } }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows3__"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(20-22)% to Critical Strike Multiplier with Bows" }, } }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(23-25)% to Critical Strike Multiplier with Bows" }, } }, - ["HellscapeUpsideFireDamageOverTimeMultiplier1h3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-13)% to Fire Damage over Time Multiplier" }, } }, - ["HellscapeUpsideFireDamageOverTimeMultiplier1h4__"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, } }, - ["HellscapeUpsideFireDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-19)% to Fire Damage over Time Multiplier" }, } }, - ["HellscapeUpsideFireDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(21-24)% to Fire Damage over Time Multiplier" }, } }, - ["HellscapeUpsideColdDamageOverTimeMultiplier1h3___"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-13)% to Cold Damage over Time Multiplier" }, } }, - ["HellscapeUpsideColdDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, } }, - ["HellscapeUpsideColdDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-19)% to Cold Damage over Time Multiplier" }, } }, - ["HellscapeUpsideColdDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(21-24)% to Cold Damage over Time Multiplier" }, } }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h3____"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-13)% to Physical Damage over Time Multiplier" }, } }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h3_"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-19)% to Physical Damage over Time Multiplier" }, } }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h4_"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(21-24)% to Physical Damage over Time Multiplier" }, } }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier1h3__"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-13)% to Chaos Damage over Time Multiplier" }, } }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier1h4___"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-19)% to Chaos Damage over Time Multiplier" }, } }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(21-24)% to Chaos Damage over Time Multiplier" }, } }, - ["HellscapeUpsideDamageOverTimeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(8-10)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(8-10)% to Damage over Time Multiplier" }, } }, - ["HellscapeUpsideDamageOverTimeMultiplier3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(11-13)% to Damage over Time Multiplier" }, } }, - ["HellscapeUpsideDamageOverTimeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(14-16)% to Damage over Time Multiplier" }, } }, - ["HellscapeUpsideIncreasedAttackSpeed1_"] = { type = "ScourgeUpside", affix = "", "4% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "4% increased Attack Speed" }, } }, - ["HellscapeUpsideIncreasedAttackSpeed2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1410 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-6)% increased Attack Speed" }, } }, - ["HellscapeUpsideIncreasedAttackSpeed3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1410 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-8)% increased Attack Speed" }, } }, - ["HellscapeUpsideIncreasedAttackSpeed4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Attack Speed", statOrder = { 1410 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-10)% increased Attack Speed" }, } }, - ["HellscapeUpsideIncreasedCastSpeed1"] = { type = "ScourgeUpside", affix = "", "5% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "5% increased Cast Speed" }, } }, - ["HellscapeUpsideIncreasedCastSpeed2"] = { type = "ScourgeUpside", affix = "", "6% increased Cast Speed", statOrder = { 1446 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "6% increased Cast Speed" }, } }, - ["HellscapeUpsideIncreasedCastSpeed3_"] = { type = "ScourgeUpside", affix = "", "7% increased Cast Speed", statOrder = { 1446 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "7% increased Cast Speed" }, } }, - ["HellscapeUpsideIncreasedCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "8% increased Cast Speed", statOrder = { 1446 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, } }, - ["HellscapeUpsideMinionAttackAndCastSpeed1"] = { type = "ScourgeUpside", affix = "", "Minions have 5% increased Attack Speed", "Minions have 5% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have 5% increased Attack Speed" }, [4000101551] = { "Minions have 5% increased Cast Speed" }, } }, - ["HellscapeUpsideMinionAttackAndCastSpeed2"] = { type = "ScourgeUpside", affix = "", "Minions have 6% increased Attack Speed", "Minions have 6% increased Cast Speed", statOrder = { 2907, 2908 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have 6% increased Attack Speed" }, [4000101551] = { "Minions have 6% increased Cast Speed" }, } }, - ["HellscapeUpsideMinionAttackAndCastSpeed3____"] = { type = "ScourgeUpside", affix = "", "Minions have (7-8)% increased Attack Speed", "Minions have (7-8)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (7-8)% increased Attack Speed" }, [4000101551] = { "Minions have (7-8)% increased Cast Speed" }, } }, - ["HellscapeUpsideMinionAttackAndCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "Minions have (9-10)% increased Attack Speed", "Minions have (9-10)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (9-10)% increased Attack Speed" }, [4000101551] = { "Minions have (9-10)% increased Cast Speed" }, } }, - ["HellscapeUpsideMaximumLifeOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of Life on Kill" }, } }, - ["HellscapeUpsideMaximumLifeOnKillPercent4___"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 4% of Life on Kill" }, } }, - ["HellscapeUpsideMaximumManaOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of Mana on Kill" }, } }, - ["HellscapeUpsideMaximumManaOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 4% of Mana on Kill" }, } }, - ["HellscapeUpsideMaximumEnergyShieldOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 3% of Energy Shield on Kill" }, } }, - ["HellscapeUpsideMaximumEnergyShieldOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 4% of Energy Shield on Kill" }, } }, - ["HellscapeUpsideIncreasedAccuracyPercent2"] = { type = "ScourgeUpside", affix = "", "(11-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(11-14)% increased Global Accuracy Rating" }, } }, - ["HellscapeUpsideIncreasedAccuracyPercent3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-17)% increased Global Accuracy Rating" }, } }, - ["HellscapeUpsideIncreasedAccuracyPercent4__"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(18-20)% increased Global Accuracy Rating" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedAreaOfEffectGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 176 }, level = 68, group = "IncreasedSocketedAoEGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [2551600084] = { "+1 to Level of Socketed AoE Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedAuraGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 68, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+1 to Level of Socketed Aura Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedCurseGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 68, group = "IncreaseSocketedCurseGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+1 to Level of Socketed Curse Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedDurationGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Duration Gems", statOrder = { 175 }, level = 68, group = "IncreaseSocketedDurationGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [2115168758] = { "+1 to Level of Socketed Duration Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 5, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedProjectileGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 68, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+1 to Level of Socketed Projectile Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedTrapAndMineGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Trap or Mine Gems", statOrder = { 187 }, level = 68, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+1 to Level of Socketed Trap or Mine Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedWarcryGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 68, group = "LocalSocketedWarcryGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedSupportGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 68, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedLightningGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+1 to Level of Socketed Lightning Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedChaosGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+1 to Level of Socketed Chaos Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedFireGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedColdGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedMinionGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 68, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, - ["HellscapeUpsideLocalIncreaseSocketedMeleeGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 68, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel2h__"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel1h__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, - ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skill Gems" }, } }, - ["HellscapeUpsideAdditionalRaisedZombie1_"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, } }, - ["HellscapeUpsideAdditionalSkeleton1__"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, } }, - ["HellscapeUpsideWeaponRange1"] = { type = "ScourgeUpside", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, - ["HellscapeUpsideWeaponRange2"] = { type = "ScourgeUpside", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 45, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["HellscapeUpsideWeaponRange3"] = { type = "ScourgeUpside", affix = "", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } }, - ["HellscapeUpsideWeaponRange4"] = { type = "ScourgeUpside", affix = "", "+0.4 metres to Weapon Range", statOrder = { 2745 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.4 metres to Weapon Range" }, } }, - ["HellscapeUpsideAreaDamage1"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(11-15)% increased Area Damage" }, } }, - ["HellscapeUpsideAreaDamage2_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Area Damage", statOrder = { 2035 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(16-20)% increased Area Damage" }, } }, - ["HellscapeUpsideAreaDamage3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Area Damage", statOrder = { 2035 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(21-25)% increased Area Damage" }, } }, - ["HellscapeUpsideAreaDamage4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Area Damage", statOrder = { 2035 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(26-30)% increased Area Damage" }, } }, - ["HellscapeUpsideReducedAttributeRequirement2"] = { type = "ScourgeUpside", affix = "", "(12-14)% reduced Attribute Requirements", statOrder = { 1075 }, level = 45, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(12-14)% reduced Attribute Requirements" }, } }, - ["HellscapeUpsideReducedAttributeRequirement3"] = { type = "ScourgeUpside", affix = "", "(15-17)% reduced Attribute Requirements", statOrder = { 1075 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(15-17)% reduced Attribute Requirements" }, } }, - ["HellscapeUpsideReducedAttributeRequirement4"] = { type = "ScourgeUpside", affix = "", "(18-20)% reduced Attribute Requirements", statOrder = { 1075 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(18-20)% reduced Attribute Requirements" }, } }, - ["HellscapeUpsideRarityOfItemsFound1_"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-9)% increased Rarity of Items found" }, } }, - ["HellscapeUpsideRarityOfItemsFound2_"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1596 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-11)% increased Rarity of Items found" }, } }, - ["HellscapeUpsideRarityOfItemsFound3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1596 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-13)% increased Rarity of Items found" }, } }, - ["HellscapeUpsideRarityOfItemsFound4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(14-15)% increased Rarity of Items found" }, } }, - ["HellscapeUpsideLifeRegenerationRate2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Life Regeneration rate", statOrder = { 1577 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(7-9)% increased Life Regeneration rate" }, } }, - ["HellscapeUpsideLifeRegenerationRate3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(10-12)% increased Life Regeneration rate" }, } }, - ["HellscapeUpsideLifeRegenerationRate4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(13-15)% increased Life Regeneration rate" }, } }, - ["HellscapeUpsideLifeRegeneration1"] = { type = "ScourgeUpside", affix = "", "Regenerate (10.8-11.7) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10.8-11.7) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration1b_"] = { type = "ScourgeUpside", affix = "", "Regenerate (12.5-13.3) Life per second", statOrder = { 1574 }, level = 25, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (12.5-13.3) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration1c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (14.2-15) Life per second", statOrder = { 1574 }, level = 35, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (14.2-15) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (15.8-16.7) Life per second", statOrder = { 1574 }, level = 45, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (15.8-16.7) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (17.5-18.3) Life per second", statOrder = { 1574 }, level = 52, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (17.5-18.3) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration2c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (19.2-20) Life per second", statOrder = { 1574 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (19.2-20) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration3__"] = { type = "ScourgeUpside", affix = "", "Regenerate (20.8-21.7) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (20.8-21.7) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration3b"] = { type = "ScourgeUpside", affix = "", "Regenerate (22.5-23.3) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 200 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (22.5-23.3) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration3c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (24.2-25) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 100 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (24.2-25) Life per second" }, } }, - ["HellscapeUpsideLifeRegeneration4_"] = { type = "ScourgeUpside", affix = "", "Regenerate (25.8-26.7) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (25.8-26.7) Life per second" }, } }, - ["HellscapeUpsideMinionLifeRegenPercentage2"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2911 }, level = 45, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 2% of Life per second" }, } }, - ["HellscapeUpsideMinionLifeRegenPercentage2b_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2.5% of Life per second", statOrder = { 2911 }, level = 55, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 2.5% of Life per second" }, } }, - ["HellscapeUpsideMinionLifeRegenPercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3% of Life per second", statOrder = { 2911 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 3% of Life per second" }, } }, - ["HellscapeUpsideMinionLifeRegenPercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3.5% of Life per second", statOrder = { 2911 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 3.5% of Life per second" }, } }, - ["HellscapeUpsideEnergyShieldRechargeRate2"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 45, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(11-15)% increased Energy Shield Recharge Rate" }, } }, - ["HellscapeUpsideEnergyShieldRechargeRate3"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(16-20)% increased Energy Shield Recharge Rate" }, } }, - ["HellscapeUpsideEnergyShieldRechargeRate4"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(21-25)% increased Energy Shield Recharge Rate" }, } }, - ["HellscapeUpsideMovementVelocity1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-9)% increased Movement Speed" }, } }, - ["HellscapeUpsideMovementVelocity2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Movement Speed", statOrder = { 1798 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-11)% increased Movement Speed" }, } }, - ["HellscapeUpsideMovementVelocity3_"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(12-13)% increased Movement Speed" }, } }, - ["HellscapeUpsideMovementVelocity4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(14-15)% increased Movement Speed" }, } }, - ["HellscapeUpsideMaximumMana1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(23-25) to maximum Mana" }, } }, - ["HellscapeUpsideMaximumMana2"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Mana", statOrder = { 1579 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(28-30) to maximum Mana" }, } }, - ["HellscapeUpsideMaximumMana3"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Mana", statOrder = { 1579 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(33-35) to maximum Mana" }, } }, - ["HellscapeUpsideMaximumMana4_"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Mana", statOrder = { 1579 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(38-40) to maximum Mana" }, } }, - ["HellscapeUpsideManaRegeneration1"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(18-20)% increased Mana Regeneration Rate" }, } }, - ["HellscapeUpsideManaRegeneration2"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(23-25)% increased Mana Regeneration Rate" }, } }, - ["HellscapeUpsideManaRegeneration2b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } }, - ["HellscapeUpsideManaRegeneration3"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(33-35)% increased Mana Regeneration Rate" }, } }, - ["HellscapeUpsideManaRegeneration3b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(38-40)% increased Mana Regeneration Rate" }, } }, - ["HellscapeUpsideManaRegeneration4"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, - ["HellscapeUpsideManaRegenFlat1"] = { type = "ScourgeUpside", affix = "", "Regenerate 0.8 Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 0.8 Mana per second" }, } }, - ["HellscapeUpsideManaRegenFlat1b"] = { type = "ScourgeUpside", affix = "", "Regenerate (1.5-1.7) Mana per second", statOrder = { 1582 }, level = 15, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (1.5-1.7) Mana per second" }, } }, - ["HellscapeUpsideManaRegenFlat1c"] = { type = "ScourgeUpside", affix = "", "Regenerate (2.6-2.8) Mana per second", statOrder = { 1582 }, level = 25, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (2.6-2.8) Mana per second" }, } }, - ["HellscapeUpsideManaRegenFlat1d__"] = { type = "ScourgeUpside", affix = "", "Regenerate (4-4.3) Mana per second", statOrder = { 1582 }, level = 35, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (4-4.3) Mana per second" }, } }, - ["HellscapeUpsideManaRegenFlat2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (5.1-5.7) Mana per second", statOrder = { 1582 }, level = 45, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (5.1-5.7) Mana per second" }, } }, - ["HellscapeUpsideManaRegenFlat2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (6.3-6.7) Mana per second", statOrder = { 1582 }, level = 55, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6.3-6.7) Mana per second" }, } }, - ["HellscapeUpsideManaRegenFlat3"] = { type = "ScourgeUpside", affix = "", "Regenerate (8-8.3) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-8.3) Mana per second" }, } }, - ["HellscapeUpsideManaRegenFlat4"] = { type = "ScourgeUpside", affix = "", "Regenerate (8.8-9.2) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8.8-9.2) Mana per second" }, } }, - ["HellscapeUpsideAttackLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 45, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Life" }, } }, - ["HellscapeUpsideAttackLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.31-0.4)% of Physical Attack Damage Leeched as Life" }, } }, - ["HellscapeUpsideAttackLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.41-0.5)% of Physical Attack Damage Leeched as Life" }, } }, - ["HellscapeUpsideAttackManaLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 45, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Mana" }, } }, - ["HellscapeUpsideAttackManaLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.31-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, - ["HellscapeUpsideAttackManaLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.41-0.5)% of Physical Attack Damage Leeched as Mana" }, } }, - ["HellscapeUpsideMinionLifeLeech2"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.2-0.3)% of Damage as Life", statOrder = { 2910 }, level = 45, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech (0.2-0.3)% of Damage as Life" }, } }, - ["HellscapeUpsideMinionLifeLeech3_"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.4-0.5)% of Damage as Life", statOrder = { 2910 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech (0.4-0.5)% of Damage as Life" }, } }, - ["HellscapeUpsideMinionLifeLeech4___"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.6-0.7)% of Damage as Life", statOrder = { 2910 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech (0.6-0.7)% of Damage as Life" }, } }, - ["HellscapeUpsideFlaskChargesGained2_"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Flask Charges gained", statOrder = { 2183 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(13-15)% increased Flask Charges gained" }, } }, - ["HellscapeUpsideFlaskChargesGained3_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Charges gained", statOrder = { 2183 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(18-20)% increased Flask Charges gained" }, } }, - ["HellscapeUpsideFlaskChargesGained4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Flask Charges gained", statOrder = { 2183 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(23-25)% increased Flask Charges gained" }, } }, - ["HellscapeUpsideStunThreshold2"] = { type = "ScourgeUpside", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 45, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(5-6)% reduced Enemy Stun Threshold" }, } }, - ["HellscapeUpsideStunThreshold3____"] = { type = "ScourgeUpside", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(7-8)% reduced Enemy Stun Threshold" }, } }, - ["HellscapeUpsideStunThreshold4"] = { type = "ScourgeUpside", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(9-10)% reduced Enemy Stun Threshold" }, } }, - ["HellscapeUpsideStunDuration2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 45, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(17-19)% increased Stun Duration on Enemies" }, } }, - ["HellscapeUpsideStunDuration3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(20-22)% increased Stun Duration on Enemies" }, } }, - ["HellscapeUpsideStunDuration4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(23-25)% increased Stun Duration on Enemies" }, } }, - ["HellscapeUpsideFlaskLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 45, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-14)% increased Flask Life Recovery rate" }, } }, - ["HellscapeUpsideFlaskLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(15-17)% increased Flask Life Recovery rate" }, } }, - ["HellscapeUpsideFlaskLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(18-20)% increased Flask Life Recovery rate" }, } }, - ["HellscapeUpsideFlaskManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 45, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(12-14)% increased Flask Mana Recovery rate" }, } }, - ["HellscapeUpsideFlaskManaRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(15-17)% increased Flask Mana Recovery rate" }, } }, - ["HellscapeUpsideFlaskManaRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(18-20)% increased Flask Mana Recovery rate" }, } }, - ["HellscapeUpsideAdditionalDexterity1__"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-23) to Dexterity" }, } }, - ["HellscapeUpsideAdditionalDexterity2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Dexterity", statOrder = { 1178 }, level = 45, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(24-27) to Dexterity" }, } }, - ["HellscapeUpsideAdditionalDexterity3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Dexterity", statOrder = { 1178 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-31) to Dexterity" }, } }, - ["HellscapeUpsideAdditionalDexterity4_"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Dexterity", statOrder = { 1178 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(32-35) to Dexterity" }, } }, - ["HellscapeUpsideAdditionalIntelligence1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-23) to Intelligence" }, } }, - ["HellscapeUpsideAdditionalIntelligence2__"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Intelligence", statOrder = { 1179 }, level = 45, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(24-27) to Intelligence" }, } }, - ["HellscapeUpsideAdditionalIntelligence3_"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Intelligence", statOrder = { 1179 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-31) to Intelligence" }, } }, - ["HellscapeUpsideAdditionalIntelligence4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Intelligence", statOrder = { 1179 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(32-35) to Intelligence" }, } }, - ["HellscapeUpsideAdditionalStrength1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-23) to Strength" }, } }, - ["HellscapeUpsideAdditionalStrength2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Strength", statOrder = { 1177 }, level = 45, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(24-27) to Strength" }, } }, - ["HellscapeUpsideAdditionalStrength3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Strength", statOrder = { 1177 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-31) to Strength" }, } }, - ["HellscapeUpsideAdditionalStrength4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Strength", statOrder = { 1177 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(32-35) to Strength" }, } }, - ["HellscapeUpsideChanceToFreeze1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(5-6)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-8)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze1h4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(9-10)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-9)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze2h3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(10-12)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToFreeze2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(13-15)% chance to Freeze" }, } }, - ["HellscapeUpsideChanceToIgnite1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(5-6)% chance to Ignite" }, } }, - ["HellscapeUpsideChanceToIgnite1h3_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(7-8)% chance to Ignite" }, } }, - ["HellscapeUpsideChanceToIgnite1h4___"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(9-10)% chance to Ignite" }, } }, - ["HellscapeUpsideChanceToIgnite2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(7-9)% chance to Ignite" }, } }, - ["HellscapeUpsideChanceToIgnite2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-12)% chance to Ignite" }, } }, - ["HellscapeUpsideChanceToIgnite2h4___"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(13-15)% chance to Ignite" }, } }, - ["HellscapeUpsideChanceToShock1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(5-6)% chance to Shock" }, } }, - ["HellscapeUpsideChanceToShock1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(7-8)% chance to Shock" }, } }, - ["HellscapeUpsideChanceToShock1h4"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(9-10)% chance to Shock" }, } }, - ["HellscapeUpsideChanceToShock2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(7-9)% chance to Shock" }, } }, - ["HellscapeUpsideChanceToShock2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-12)% chance to Shock" }, } }, - ["HellscapeUpsideChanceToShock2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(13-15)% chance to Shock" }, } }, - ["HellscapeUpsideChanceToBleed2__"] = { type = "ScourgeUpside", affix = "", "Attacks have (12-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 45, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (12-14)% chance to cause Bleeding" }, } }, - ["HellscapeUpsideChanceToBleed3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (15-17)% chance to cause Bleeding", statOrder = { 2489 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (15-17)% chance to cause Bleeding" }, } }, - ["HellscapeUpsideChanceToBleed4"] = { type = "ScourgeUpside", affix = "", "Attacks have (18-20)% chance to cause Bleeding", statOrder = { 2489 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (18-20)% chance to cause Bleeding" }, } }, - ["HellscapeUpsideChanceToPoison2"] = { type = "ScourgeUpside", affix = "", "(12-14)% chance to Poison on Hit", statOrder = { 3173 }, level = 45, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(12-14)% chance to Poison on Hit" }, } }, - ["HellscapeUpsideChanceToPoison3"] = { type = "ScourgeUpside", affix = "", "(15-17)% chance to Poison on Hit", statOrder = { 3173 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(15-17)% chance to Poison on Hit" }, } }, - ["HellscapeUpsideChanceToPoison4"] = { type = "ScourgeUpside", affix = "", "(18-20)% chance to Poison on Hit", statOrder = { 3173 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(18-20)% chance to Poison on Hit" }, } }, - ["HellscapeUpsideLightRadius1_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(16-20)% increased Light Radius" }, } }, - ["HellscapeUpsideLightRadius2_"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Light Radius", statOrder = { 2500 }, level = 45, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(21-25)% increased Light Radius" }, } }, - ["HellscapeUpsideLightRadius3______"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Light Radius", statOrder = { 2500 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(26-30)% increased Light Radius" }, } }, - ["HellscapeUpsideLightRadius4"] = { type = "ScourgeUpside", affix = "", "(31-35)% increased Light Radius", statOrder = { 2500 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(31-35)% increased Light Radius" }, } }, - ["HellscapeUpsideCooldownRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(3-4)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-4)% increased Cooldown Recovery Rate" }, } }, - ["HellscapeUpsideCooldownRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-6)% increased Cooldown Recovery Rate" }, } }, - ["HellscapeUpsideChanceToNotConsumeFlaskCharges3"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [311641062] = { "(5-6)% chance for Flasks you use to not consume Charges" }, } }, - ["HellscapeUpsideChanceToNotConsumeFlaskCharges4_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [311641062] = { "(7-8)% chance for Flasks you use to not consume Charges" }, } }, - ["HellscapeUpsideLifePercentage3_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, - ["HellscapeUpsideLifePercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, - ["HellscapeUpsideManaPercentage3"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, - ["HellscapeUpsideManaPercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, - ["HellscapeUpsideReducedReflectedPhysicalDamage3_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (41-50)% reduced Reflected Physical Damage" }, } }, - ["HellscapeUpsideReducedReflectedPhysicalDamage4_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Physical Damage", statOrder = { 9671 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (51-60)% reduced Reflected Physical Damage" }, } }, - ["HellscapeUpsideReducedReflectedElementalDamage3_____"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (41-50)% reduced Reflected Elemental Damage" }, } }, - ["HellscapeUpsideReducedReflectedElementalDamage4"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Elemental Damage", statOrder = { 6335 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (51-60)% reduced Reflected Elemental Damage" }, } }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill2__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 45, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(5-6)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(7-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(9-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["HellscapeUpsideChanceToGainPhasingOnKill2"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 45, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(11-15)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["HellscapeUpsideChanceToGainPhasingOnKill3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(16-20)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["HellscapeUpsideChanceToGainPhasingOnKill4"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(21-25)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["HellscapeUpsideChanceToTauntOnHit2__"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 45, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(11-15)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["HellscapeUpsideChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(16-20)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["HellscapeUpsideChanceToTauntOnHit4___"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(21-25)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["HellscapeUpsideMaximumColdResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["HellscapeUpsideMaximumFireResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["HellscapeUpsideMaximumLightningResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["HellscapeUpsideMaximumChaosResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, - ["HellscapeUpsideMaximumElementalResistance1"] = { type = "ScourgeUpside", affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 50, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all maximum Elemental Resistances" }, } }, - ["HellscapeUpsideTotemPlacementSpeed2"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Totem Placement speed", statOrder = { 2578 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(16-20)% increased Totem Placement speed" }, } }, - ["HellscapeUpsideTotemPlacementSpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Totem Placement speed", statOrder = { 2578 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, - ["HellscapeUpsideTotemPlacementSpeed4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, - ["HellscapeUpsideTotemElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Totems gain +(21-25)% to all Elemental Resistances", statOrder = { 2787 }, level = 45, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(21-25)% to all Elemental Resistances" }, } }, - ["HellscapeUpsideTotemElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Totems gain +(26-30)% to all Elemental Resistances", statOrder = { 2787 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(26-30)% to all Elemental Resistances" }, } }, - ["HellscapeUpsideTotemElementalResistances4"] = { type = "ScourgeUpside", affix = "", "Totems gain +(31-35)% to all Elemental Resistances", statOrder = { 2787 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(31-35)% to all Elemental Resistances" }, } }, - ["HellscapeUpsideTotemDuration2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Totem Duration", statOrder = { 1778 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(12-14)% increased Totem Duration" }, } }, - ["HellscapeUpsideTotemDuration3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Totem Duration", statOrder = { 1778 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(15-17)% increased Totem Duration" }, } }, - ["HellscapeUpsideTotemDuration4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Totem Duration", statOrder = { 1778 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(18-20)% increased Totem Duration" }, } }, - ["HellscapeUpsideTotemPhysicalDamageReduction2___"] = { type = "ScourgeUpside", affix = "", "Totems have (11-15)% additional Physical Damage Reduction", statOrder = { 2789 }, level = 45, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [3616562963] = { "Totems have (11-15)% additional Physical Damage Reduction" }, } }, - ["HellscapeUpsideTotemPhysicalDamageReduction3___"] = { type = "ScourgeUpside", affix = "", "Totems have (16-20)% additional Physical Damage Reduction", statOrder = { 2789 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [3616562963] = { "Totems have (16-20)% additional Physical Damage Reduction" }, } }, - ["HellscapeUpsideTotemPhysicalDamageReduction4_"] = { type = "ScourgeUpside", affix = "", "Totems have (21-25)% additional Physical Damage Reduction", statOrder = { 2789 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [3616562963] = { "Totems have (21-25)% additional Physical Damage Reduction" }, } }, - ["HellscapeUpsideTotemLife2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Totem Life", statOrder = { 1774 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(7-9)% increased Totem Life" }, } }, - ["HellscapeUpsideTotemLife3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Totem Life", statOrder = { 1774 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-12)% increased Totem Life" }, } }, - ["HellscapeUpsideTotemLife4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Totem Life", statOrder = { 1774 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(13-15)% increased Totem Life" }, } }, - ["HellscapeUpsideBrandDuration2"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (12-14)% increased Duration", statOrder = { 10039 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (12-14)% increased Duration" }, } }, - ["HellscapeUpsideBrandDuration3"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (15-17)% increased Duration", statOrder = { 10039 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (15-17)% increased Duration" }, } }, - ["HellscapeUpsideBrandDuration4"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (18-20)% increased Duration", statOrder = { 10039 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (18-20)% increased Duration" }, } }, - ["HellscapeUpsideBrandAttachmentRange2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Brand Attachment range", statOrder = { 10044 }, level = 45, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(12-14)% increased Brand Attachment range" }, } }, - ["HellscapeUpsideBrandAttachmentRange3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Brand Attachment range", statOrder = { 10044 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(15-17)% increased Brand Attachment range" }, } }, - ["HellscapeUpsideBrandAttachmentRange4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Brand Attachment range", statOrder = { 10044 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(18-20)% increased Brand Attachment range" }, } }, - ["HellscapeUpsideLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Life Recovery rate", statOrder = { 1578 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(5-6)% increased Life Recovery rate" }, } }, - ["HellscapeUpsideLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(7-8)% increased Life Recovery rate" }, } }, - ["HellscapeUpsideLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(9-10)% increased Life Recovery rate" }, } }, - ["HellscapeUpsideManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Mana Recovery rate", statOrder = { 1586 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(5-6)% increased Mana Recovery rate" }, } }, - ["HellscapeUpsideManaRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(7-8)% increased Mana Recovery rate" }, } }, - ["HellscapeUpsideManaRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(9-10)% increased Mana Recovery rate" }, } }, - ["HellscapeUpsideEnergyShieldRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(5-6)% increased Energy Shield Recovery rate" }, } }, - ["HellscapeUpsideEnergyShieldRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-8)% increased Energy Shield Recovery rate" }, } }, - ["HellscapeUpsideEnergyShieldRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(9-10)% increased Energy Shield Recovery rate" }, } }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes2"] = { type = "ScourgeUpside", affix = "", "You take (13-15)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (13-15)% reduced Extra Damage from Critical Strikes" }, } }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeUpside", affix = "", "You take (18-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (18-20)% reduced Extra Damage from Critical Strikes" }, } }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes4"] = { type = "ScourgeUpside", affix = "", "You take (23-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (23-25)% reduced Extra Damage from Critical Strikes" }, } }, - ["HellscapeUpsideChanceToBlindOnHit2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 45, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(7-8)% Global chance to Blind Enemies on hit" }, } }, - ["HellscapeUpsideChanceToBlindOnHit3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } }, - ["HellscapeUpsideChanceToBlindOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(11-12)% Global chance to Blind Enemies on hit" }, } }, - ["HellscapeUpsideChanceToMaimOnHit2"] = { type = "ScourgeUpside", affix = "", "Attacks have (7-8)% chance to Maim on Hit", statOrder = { 8155 }, level = 45, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have (7-8)% chance to Maim on Hit" }, } }, - ["HellscapeUpsideChanceToMaimOnHit3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (9-10)% chance to Maim on Hit", statOrder = { 8155 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have (9-10)% chance to Maim on Hit" }, } }, - ["HellscapeUpsideChanceToMaimOnHit4"] = { type = "ScourgeUpside", affix = "", "Attacks have (11-12)% chance to Maim on Hit", statOrder = { 8155 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have (11-12)% chance to Maim on Hit" }, } }, - ["HellscapeUpsideChanceToHinderOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 45, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(7-8)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["HellscapeUpsideChanceToHinderOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(9-10)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["HellscapeUpsideChanceToHinderOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(11-12)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["HellscapeUpsideChanceToIntimidateOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 45, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(7-8)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["HellscapeUpsideChanceToIntimidateOnHit3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(9-10)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["HellscapeUpsideChanceToIntimidateOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(11-12)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["HellscapeUpsideChanceToUnnerveOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 45, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-8)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["HellscapeUpsideChanceToUnnerveOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(9-10)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["HellscapeUpsideChanceToUnnerveOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(11-12)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, - ["HellscapeUpsideChanceToImpaleOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 45, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(7-8)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["HellscapeUpsideChanceToImpaleOnHit3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(9-10)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["HellscapeUpsideChanceToImpaleOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(11-12)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["HellscapeUpsideEnemiesExplodeOnDeathPhysical4_"] = { type = "ScourgeUpside", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 68, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, - ["HellscapeUpsideColdPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Cold Resistance", statOrder = { 2983 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, - ["HellscapeUpsideColdPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, - ["HellscapeUpsideColdPenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, - ["HellscapeUpsideColdPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["HellscapeUpsideColdPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["HellscapeUpsideColdPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["HellscapeUpsideFirePenetration1h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Fire Resistance", statOrder = { 2981 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 3% Fire Resistance" }, } }, - ["HellscapeUpsideFirePenetration1h3___"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["HellscapeUpsideFirePenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, - ["HellscapeUpsideFirePenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["HellscapeUpsideFirePenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["HellscapeUpsideFirePenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["HellscapeUpsideLightningPenetration1h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Lightning Resistance", statOrder = { 2984 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 3% Lightning Resistance" }, } }, - ["HellscapeUpsideLightningPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, - ["HellscapeUpsideLightningPenetration1h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, - ["HellscapeUpsideLightningPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["HellscapeUpsideLightningPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["HellscapeUpsideLightningPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["HellscapeUpsideChaosPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Chaos Resistance", statOrder = { 9876 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 3% Chaos Resistance" }, } }, - ["HellscapeUpsideChaosPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Chaos Resistance", statOrder = { 9876 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 4% Chaos Resistance" }, } }, - ["HellscapeUpsideChaosPenetration1h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Chaos Resistance", statOrder = { 9876 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 5% Chaos Resistance" }, } }, - ["HellscapeUpsideChaosPenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Chaos Resistance", statOrder = { 9876 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 6% Chaos Resistance" }, } }, - ["HellscapeUpsideChaosPenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Chaos Resistance", statOrder = { 9876 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 7% Chaos Resistance" }, } }, - ["HellscapeUpsideChaosPenetration2h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Chaos Resistance", statOrder = { 9876 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 8% Chaos Resistance" }, } }, - ["HellscapeUpsideCullingStrike1"] = { type = "ScourgeUpside", affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["HellscapeUpsideCurseOnHitDespair1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2515 }, level = 68, group = "CurseOnHitDespairChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1764973832] = { "Curse Enemies with Despair on Hit" }, } }, - ["HellscapeUpsideCurseOnHitElementalWeakness1___"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2516 }, level = 68, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [636057969] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, - ["HellscapeUpsideCurseOnHitEnfeeble1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 68, group = "EnfeebleOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, - ["HellscapeUpsideCurseOnHitTemporalChains1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 68, group = "TemporalChainsOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, - ["HellscapeUpsideCurseOnHitVulnerability1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2520 }, level = 68, group = "VulnerabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1826297223] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["HellscapeUpsideCurseOnHitConductivity1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2514 }, level = 68, group = "CurseOnHitConductivityChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [670088789] = { "Curse Enemies with Conductivity on Hit" }, } }, - ["HellscapeUpsideCurseOnHitFlammability1______"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2517 }, level = 68, group = "FlammabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [654274615] = { "Curse Enemies with Flammability on Hit" }, } }, - ["HellscapeUpsideCurseOnHitFrostbite1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2518 }, level = 68, group = "FrostbiteOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1016707110] = { "Curse Enemies with Frostbite on Hit" }, } }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill1__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(5-6)% chance to gain an Endurance Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 45, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(7-8)% chance to gain an Endurance Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(9-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(11-12)% chance to gain an Endurance Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(5-6)% chance to gain a Power Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 45, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(7-8)% chance to gain a Power Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(9-10)% chance to gain a Power Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill4___"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(11-12)% chance to gain a Power Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(5-6)% chance to gain a Frenzy Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 45, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(7-8)% chance to gain a Frenzy Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(9-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(11-12)% chance to gain a Frenzy Charge on Kill" }, } }, - ["HellscapeUpsideTrapThrowingSpeed2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 45, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(7-9)% increased Trap Throwing Speed" }, } }, - ["HellscapeUpsideTrapThrowingSpeed3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(10-12)% increased Trap Throwing Speed" }, } }, - ["HellscapeUpsideTrapThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(13-15)% increased Trap Throwing Speed" }, } }, - ["HellscapeUpsideMineThrowingSpeed2___"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 45, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(7-9)% increased Mine Throwing Speed" }, } }, - ["HellscapeUpsideMineThrowingSpeed3_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(10-12)% increased Mine Throwing Speed" }, } }, - ["HellscapeUpsideMineThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(13-15)% increased Mine Throwing Speed" }, } }, - ["HellscapeUpsideAdditionalArrow1"] = { type = "ScourgeUpside", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 68, group = "AdditionalArrows", weightKey = { "bow", "quiver", "default", }, weightVal = { 50, 5, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["HellscapeUpsideAdditionalChainChance1__"] = { type = "ScourgeUpside", affix = "", "Skills Chain +1 times", statOrder = { 1789 }, level = 68, group = "AdditionalChain", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, - ["HellscapeUpsideAdditionalPierceChance1__"] = { type = "ScourgeUpside", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 68, group = "AdditionalPierce", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["HellscapeUpsideAdditionalSplitChance1_"] = { type = "ScourgeUpside", affix = "", "Projectiles Split towards +1 targets", statOrder = { 9741 }, level = 68, group = "ProjectilesSplitCount", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +1 targets" }, } }, - ["HellscapeUpsideAdditionalReturn1___"] = { type = "ScourgeUpside", affix = "", "Attack Projectiles Return to you", statOrder = { 2824 }, level = 68, group = "ReturningAttackProjectiles", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { "attack" }, tradeHashes = { [1658124062] = { "Attack Projectiles Return to you" }, } }, - ["HellscapeUpsideStrengthPercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-5)% increased Strength" }, } }, - ["HellscapeUpsideStrengthPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-7)% increased Strength" }, } }, - ["HellscapeUpsideDexterityPercent3_"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-5)% increased Dexterity" }, } }, - ["HellscapeUpsideDexterityPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(6-7)% increased Dexterity" }, } }, - ["HellscapeUpsideIntelligencePercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-5)% increased Intelligence" }, } }, - ["HellscapeUpsideIntelligencePercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(6-7)% increased Intelligence" }, } }, - ["HellscapeUpsidePoisonDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (4-5)% faster", statOrder = { 6546 }, level = 45, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (4-5)% faster" }, } }, - ["HellscapeUpsidePoisonDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (6-7)% faster", statOrder = { 6546 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (6-7)% faster" }, } }, - ["HellscapeUpsidePoisonDamageFaster1h4"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6546 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (8-9)% faster" }, } }, - ["HellscapeUpsidePoisonDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6546 }, level = 45, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (8-9)% faster" }, } }, - ["HellscapeUpsidePoisonDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (10-11)% faster", statOrder = { 6546 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (10-11)% faster" }, } }, - ["HellscapeUpsidePoisonDamageFaster2h4_"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (12-13)% faster", statOrder = { 6546 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (12-13)% faster" }, } }, - ["HellscapeUpsideIgniteDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (4-5)% faster", statOrder = { 2564 }, level = 45, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (4-5)% faster" }, } }, - ["HellscapeUpsideIgniteDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (6-7)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (6-7)% faster" }, } }, - ["HellscapeUpsideIgniteDamageFaster1h4__"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (8-9)% faster" }, } }, - ["HellscapeUpsideIgniteDamageFaster2h2_"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2564 }, level = 45, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (8-9)% faster" }, } }, - ["HellscapeUpsideIgniteDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (10-11)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (10-11)% faster" }, } }, - ["HellscapeUpsideIgniteDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (12-13)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (12-13)% faster" }, } }, - ["HellscapeUpsideBleedingDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (4-5)% faster", statOrder = { 6545 }, level = 45, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (4-5)% faster" }, } }, - ["HellscapeUpsideBleedingDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (6-7)% faster", statOrder = { 6545 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (6-7)% faster" }, } }, - ["HellscapeUpsideBleedingDamageFaster1h4_"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6545 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (8-9)% faster" }, } }, - ["HellscapeUpsideBleedingDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6545 }, level = 45, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (8-9)% faster" }, } }, - ["HellscapeUpsideBleedingDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (10-11)% faster", statOrder = { 6545 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-11)% faster" }, } }, - ["HellscapeUpsideBleedingDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (12-13)% faster", statOrder = { 6545 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (12-13)% faster" }, } }, - ["HellscapeUpsidePhysicalConvertedToCold1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, - ["HellscapeUpsidePhysicalConvertedToFire1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, - ["HellscapeUpsidePhysicalConvertedToLightning1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, - ["HellscapeUpsidePhysicalConvertedToChaos1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["HellscapeUpsideAilmentDuration2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(7-8)% increased Duration of Ailments on Enemies" }, } }, - ["HellscapeUpsideAilmentDuration3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(9-10)% increased Duration of Ailments on Enemies" }, } }, - ["HellscapeUpsideAilmentDuration4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(11-12)% increased Duration of Ailments on Enemies" }, } }, - ["HellscapeUpsideNonDamagingAilmentEffect2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(10-12)% increased Effect of Non-Damaging Ailments" }, } }, - ["HellscapeUpsideNonDamagingAilmentEffect3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(13-15)% increased Effect of Non-Damaging Ailments" }, } }, - ["HellscapeUpsideNonDamagingAilmentEffect4_"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(16-18)% increased Effect of Non-Damaging Ailments" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 3% increased Physical Damage", statOrder = { 7919 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "3% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 3% increased Physical Damage" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 4% increased Physical Damage", statOrder = { 7919 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "4% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 4% increased Physical Damage" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage3__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Fire Resistance", statOrder = { 7915 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -3% to Fire Resistance" }, [3372524247] = { "-3% to Fire Resistance" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Fire Resistance", statOrder = { 7915 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -4% to Fire Resistance" }, [3372524247] = { "-4% to Fire Resistance" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage3___"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Cold Resistance", statOrder = { 7913 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-3% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -3% to Cold Resistance" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage4__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Cold Resistance", statOrder = { 7913 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-4% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -4% to Cold Resistance" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Lightning Resistance", statOrder = { 7917 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-3% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -3% to Lightning Resistance" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage4_"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Lightning Resistance", statOrder = { 7917 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-4% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -4% to Lightning Resistance" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Chaos Resistance", statOrder = { 7912 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -3% to Chaos Resistance" }, [2923486259] = { "-3% to Chaos Resistance" }, } }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Chaos Resistance", statOrder = { 7912 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -4% to Chaos Resistance" }, [2923486259] = { "-4% to Chaos Resistance" }, } }, - ["HellscapeUpsideCurseEffect3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(9-10)% increased Effect of your Curses" }, } }, - ["HellscapeUpsideCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Effect of your Curses", statOrder = { 2596 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(11-12)% increased Effect of your Curses" }, } }, - ["HellscapeUpsideNonCurseAuraEffect2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(7-8)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["HellscapeUpsideNonCurseAuraEffect3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(9-10)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["HellscapeUpsideNonCurseAuraEffect4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(11-12)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["HellscapeUpsideImpaleEffect1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Impale Effect", statOrder = { 7243 }, level = 45, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(7-8)% increased Impale Effect" }, } }, - ["HellscapeUpsideImpaleEffect1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Impale Effect", statOrder = { 7243 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(9-10)% increased Impale Effect" }, } }, - ["HellscapeUpsideImpaleEffect1h4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Impale Effect", statOrder = { 7243 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(11-12)% increased Impale Effect" }, } }, - ["HellscapeUpsideImpaleEffect2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Impale Effect", statOrder = { 7243 }, level = 45, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(10-12)% increased Impale Effect" }, } }, - ["HellscapeUpsideImpaleEffect2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Impale Effect", statOrder = { 7243 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(13-15)% increased Impale Effect" }, } }, - ["HellscapeUpsideImpaleEffect2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Impale Effect", statOrder = { 7243 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(16-18)% increased Impale Effect" }, } }, - ["HellscapeUpsideInflictColdExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 45, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(7-8)% chance to inflict Cold Exposure on Hit" }, } }, - ["HellscapeUpsideInflictColdExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(9-10)% chance to inflict Cold Exposure on Hit" }, } }, - ["HellscapeUpsideInflictColdExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(11-12)% chance to inflict Cold Exposure on Hit" }, } }, - ["HellscapeUpsideInflictColdExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 45, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(10-12)% chance to inflict Cold Exposure on Hit" }, } }, - ["HellscapeUpsideInflictColdExposureOnHit2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(13-15)% chance to inflict Cold Exposure on Hit" }, } }, - ["HellscapeUpsideInflictColdExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(16-18)% chance to inflict Cold Exposure on Hit" }, } }, - ["HellscapeUpsideInflictFireExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 45, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(7-8)% chance to inflict Fire Exposure on Hit" }, } }, - ["HellscapeUpsideInflictFireExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(9-10)% chance to inflict Fire Exposure on Hit" }, } }, - ["HellscapeUpsideInflictFireExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(11-12)% chance to inflict Fire Exposure on Hit" }, } }, - ["HellscapeUpsideInflictFireExposureOnHit2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 45, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(10-12)% chance to inflict Fire Exposure on Hit" }, } }, - ["HellscapeUpsideInflictFireExposureOnHit2h3_____"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(13-15)% chance to inflict Fire Exposure on Hit" }, } }, - ["HellscapeUpsideInflictFireExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(16-18)% chance to inflict Fire Exposure on Hit" }, } }, - ["HellscapeUpsideInflictLightningExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 45, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(7-8)% chance to inflict Lightning Exposure on Hit" }, } }, - ["HellscapeUpsideInflictLightningExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(9-10)% chance to inflict Lightning Exposure on Hit" }, } }, - ["HellscapeUpsideInflictLightningExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(11-12)% chance to inflict Lightning Exposure on Hit" }, } }, - ["HellscapeUpsideInflictLightningExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 45, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(10-12)% chance to inflict Lightning Exposure on Hit" }, } }, - ["HellscapeUpsideInflictLightningExposureOnHit2h3__"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(13-15)% chance to inflict Lightning Exposure on Hit" }, } }, - ["HellscapeUpsideInflictLightningExposureOnHit2h4__"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(16-18)% chance to inflict Lightning Exposure on Hit" }, } }, - ["HellscapeUpsideKnockbackOnHit2"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 45, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [977908611] = { "(16-20)% chance to Knock Enemies Back on hit" }, } }, - ["HellscapeUpsideKnockbackOnHit3__"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [977908611] = { "(21-25)% chance to Knock Enemies Back on hit" }, } }, - ["HellscapeUpsideKnockbackOnHit4"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [977908611] = { "(26-30)% chance to Knock Enemies Back on hit" }, } }, - ["HellscapeUpsideReservationEfficiency3__"] = { type = "ScourgeUpside", affix = "", "(6-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(6-8)% increased Mana Reservation Efficiency of Skills" }, } }, - ["HellscapeUpsideReservationEfficiency4_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(10-12)% increased Mana Reservation Efficiency of Skills" }, } }, - ["HellscapeUpsideWarcrySpeed2__"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Warcry Speed", statOrder = { 3277 }, level = 45, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(16-20)% increased Warcry Speed" }, } }, - ["HellscapeUpsideWarcrySpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Warcry Speed", statOrder = { 3277 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } }, - ["HellscapeUpsideWarcrySpeed4_"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Warcry Speed", statOrder = { 3277 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } }, - ["HellscapeUpsideColdDamageLeechedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.2-0.3)% of Cold Damage Leeched as Life" }, } }, - ["HellscapeUpsideColdDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.31-0.4)% of Cold Damage Leeched as Life" }, } }, - ["HellscapeUpsideColdDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.41-0.5)% of Cold Damage Leeched as Life" }, } }, - ["HellscapeUpsideFireDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.2-0.3)% of Fire Damage Leeched as Life" }, } }, - ["HellscapeUpsideFireDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.31-0.4)% of Fire Damage Leeched as Life" }, } }, - ["HellscapeUpsideFireDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.41-0.5)% of Fire Damage Leeched as Life" }, } }, - ["HellscapeUpsideLightningDamageLeechedAsLife2__"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.2-0.3)% of Lightning Damage Leeched as Life" }, } }, - ["HellscapeUpsideLightningDamageLeechedAsLife3_"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.31-0.4)% of Lightning Damage Leeched as Life" }, } }, - ["HellscapeUpsideLightningDamageLeechedAsLife4_"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.41-0.5)% of Lightning Damage Leeched as Life" }, } }, - ["HellscapeUpsideChaosDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.2-0.3)% of Chaos Damage Leeched as Life" }, } }, - ["HellscapeUpsideChaosDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.31-0.4)% of Chaos Damage Leeched as Life" }, } }, - ["HellscapeUpsideChaosDamageLeechedAsLife4__"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.41-0.5)% of Chaos Damage Leeched as Life" }, } }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.2-0.3)% of Physical Damage Leeched as Life" }, } }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.31-0.4)% of Physical Damage Leeched as Life" }, } }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife4____"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.41-0.5)% of Physical Damage Leeched as Life" }, } }, - ["HellscapeUpsideKeystoneMinionInstability"] = { type = "ScourgeUpside", affix = "", "Minion Instability", statOrder = { 10799 }, level = 68, group = "MinionInstability", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, - ["HellscapeUpsideKeystoneResoluteTechnique"] = { type = "ScourgeUpside", affix = "", "Resolute Technique", statOrder = { 10829 }, level = 68, group = "ResoluteTechnique", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["HellscapeUpsideKeystoneBloodMagic"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["HellscapeUpsideKeystonePainAttunement"] = { type = "ScourgeUpside", affix = "", "Pain Attunement", statOrder = { 10801 }, level = 68, group = "PainAttunement", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["HellscapeUpsideKeystoneElementalEquilibrium_"] = { type = "ScourgeUpside", affix = "", "Elemental Equilibrium", statOrder = { 10782 }, level = 68, group = "ElementalEquilibrium", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, - ["HellscapeUpsideKeystoneIronGrip"] = { type = "ScourgeUpside", affix = "", "Iron Grip", statOrder = { 10817 }, level = 68, group = "IronGrip", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, - ["HellscapeUpsideKeystonePointBlank"] = { type = "ScourgeUpside", affix = "", "Point Blank", statOrder = { 10802 }, level = 68, group = "PointBlank", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, - ["HellscapeUpsideKeystoneAcrobatics___"] = { type = "ScourgeUpside", affix = "", "Acrobatics", statOrder = { 10768 }, level = 68, group = "Acrobatics", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, - ["HellscapeUpsideKeystoneGhostReaver"] = { type = "ScourgeUpside", affix = "", "Ghost Reaver", statOrder = { 10788 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, - ["HellscapeUpsideKeystoneVaalPact"] = { type = "ScourgeUpside", affix = "", "Vaal Pact", statOrder = { 10822 }, level = 68, group = "VaalPact", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["HellscapeUpsideKeystoneElementalOverload"] = { type = "ScourgeUpside", affix = "", "Elemental Overload", statOrder = { 10783 }, level = 68, group = "ElementalOverload", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, - ["HellscapeUpsideKeystoneAvatarOfFire"] = { type = "ScourgeUpside", affix = "", "Avatar of Fire", statOrder = { 10771 }, level = 68, group = "AvatarOfFire", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } }, - ["HellscapeUpsideKeystoneEldritchBattery_"] = { type = "ScourgeUpside", affix = "", "Eldritch Battery", statOrder = { 10781 }, level = 68, group = "EldritchBattery", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["HellscapeUpsideKeystoneAncestralBond"] = { type = "ScourgeUpside", affix = "", "Ancestral Bond", statOrder = { 10770 }, level = 68, group = "AncestralBond", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, - ["HellscapeUpsideKeystoneCrimsonDance_"] = { type = "ScourgeUpside", affix = "", "Crimson Dance", statOrder = { 10778 }, level = 68, group = "CrimsonDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, - ["HellscapeUpsideKeystonePerfectAgony_"] = { type = "ScourgeUpside", affix = "", "Perfect Agony", statOrder = { 10769 }, level = 68, group = "PerfectAgony", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, - ["HellscapeUpsideKeystoneRunebinder___"] = { type = "ScourgeUpside", affix = "", "Runebinder", statOrder = { 10809 }, level = 68, group = "Runebinder", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, - ["HellscapeUpsideKeystoneMortalConviction_"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10773 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, - ["HellscapeUpsideKeystoneCallToArms"] = { type = "ScourgeUpside", affix = "", "Call to Arms", statOrder = { 10774 }, level = 68, group = "CallToArms", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, - ["HellscapeUpsideKeystoneTheAgnostic_"] = { type = "ScourgeUpside", affix = "", "The Agnostic", statOrder = { 10800 }, level = 68, group = "TheAgnostic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, - ["HellscapeUpsideKeystoneSupremeEgo_"] = { type = "ScourgeUpside", affix = "", "Supreme Ego", statOrder = { 10818 }, level = 68, group = "SupremeEgo", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, - ["HellscapeUpsideKeystoneTheImpaler_"] = { type = "ScourgeUpside", affix = "", "The Impaler", statOrder = { 10793 }, level = 68, group = "Impaler", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } }, - ["HellscapeUpsideKeystoneDoomsday"] = { type = "ScourgeUpside", affix = "", "Hex Master", statOrder = { 10791 }, level = 68, group = "HexMaster", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } }, - ["HellscapeUpsideKeystoneLetheShade1_"] = { type = "ScourgeUpside", affix = "", "Lethe Shade", statOrder = { 10795 }, level = 68, group = "LetheShade", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } }, - ["HellscapeUpsideKeystoneGhostDance"] = { type = "ScourgeUpside", affix = "", "Ghost Dance", statOrder = { 10787 }, level = 68, group = "GhostDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, - ["HellscapeUpsideKeystoneVersatileCombatant___"] = { type = "ScourgeUpside", affix = "", "Versatile Combatant", statOrder = { 10823 }, level = 68, group = "VersatileCombatant", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, - ["HellscapeUpsideKeystoneMagebane"] = { type = "ScourgeUpside", affix = "", "Magebane", statOrder = { 10796 }, level = 68, group = "Magebane", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } }, - ["HellscapeUpsideKeystoneSolipsism"] = { type = "ScourgeUpside", affix = "", "Solipsism", statOrder = { 10815 }, level = 68, group = "Solipsism", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } }, - ["HellscapeUpsideKeystoneDivineShield"] = { type = "ScourgeUpside", affix = "", "Divine Shield", statOrder = { 10780 }, level = 68, group = "DivineShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } }, - ["HellscapeUpsideKeystoneIronWill"] = { type = "ScourgeUpside", affix = "", "Iron Will", statOrder = { 10830 }, level = 68, group = "IronWill", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, - ["HellscapeUpsideLifeGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, - ["HellscapeUpsideLifeGainOnHitWithAttacks2_"] = { type = "ScourgeUpside", affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 45, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (3-4) Life per Enemy Hit with Attacks" }, } }, - ["HellscapeUpsideLifeGainOnHitWithAttacks3"] = { type = "ScourgeUpside", affix = "", "Gain (5-7) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (5-7) Life per Enemy Hit with Attacks" }, } }, - ["HellscapeUpsideLifeGainOnHitWithAttacks4_"] = { type = "ScourgeUpside", affix = "", "Gain (8-10) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (8-10) Life per Enemy Hit with Attacks" }, } }, - ["HellscapeUpsideManaGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 2 Mana per Enemy Hit with Attacks" }, } }, - ["HellscapeUpsideManaGainOnHitWithAttacks2__"] = { type = "ScourgeUpside", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 45, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 3 Mana per Enemy Hit with Attacks" }, } }, - ["HellscapeUpsideManaGainOnHitWithAttacks3_"] = { type = "ScourgeUpside", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 4 Mana per Enemy Hit with Attacks" }, } }, - ["HellscapeUpsideManaGainOnHitWithAttacks4__"] = { type = "ScourgeUpside", affix = "", "Gain 5 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 5 Mana per Enemy Hit with Attacks" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 1 Added Lightning Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedLightningDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Lightning Damage", statOrder = { 467 }, level = 45, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 10 Added Lightning Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 467 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 20 Added Lightning Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Lightning Damage", statOrder = { 467 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 22 Added Lightning Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedColdDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Cold Damage", statOrder = { 518 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 1 Added Cold Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Cold Damage", statOrder = { 518 }, level = 45, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 10 Added Cold Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 518 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 20 Added Cold Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Cold Damage", statOrder = { 518 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 22 Added Cold Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 1 Added Chaos Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedChaosDamage_____"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 458 }, level = 45, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 10 Added Chaos Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 458 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 20 Added Chaos Damage" }, } }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedChaosDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Chaos Damage", statOrder = { 458 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 22 Added Chaos Damage" }, } }, - ["HellscapeUpsideCannotBeFrozen___"] = { type = "ScourgeUpside", affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["HellscapeUpsideGainLifeChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7348 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } }, - ["HellscapeUpsideGainManaChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 8176 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } }, - ["HellscapeUpsideChillOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(14-16)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["HellscapeUpsideChillOnBlock2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 45, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(17-19)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["HellscapeUpsideChillOnBlock3"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(20-22)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["HellscapeUpsideChillOnBlock4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(23-25)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["HellscapeUpsideShockOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(14-16)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["HellscapeUpsideShockOnBlock2___"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 45, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(17-19)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["HellscapeUpsideShockOnBlock3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(20-22)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["HellscapeUpsideShockOnBlock4__"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10006 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(23-25)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["HellscapeUpsideSocketedStrengthGems___"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["HellscapeUpsideSocketedDexterityGems"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["HellscapeUpsideSocketedIntelligenceGems__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, - ["HellscapeUpsideGrantsLevel1HeraldOfIce__"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ice Skill", statOrder = { 706 }, level = 1, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3846248551] = { "Grants Level 1 Herald of Ice Skill" }, } }, - ["HellscapeUpsideGrantsLevel10HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ice Skill", statOrder = { 706 }, level = 45, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [3846248551] = { "Grants Level 10 Herald of Ice Skill" }, } }, - ["HellscapeUpsideGrantsLevel20HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ice Skill", statOrder = { 706 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3846248551] = { "Grants Level 20 Herald of Ice Skill" }, } }, - ["HellscapeUpsideGrantsLevel22HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ice Skill", statOrder = { 706 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3846248551] = { "Grants Level 22 Herald of Ice Skill" }, } }, - ["HellscapeUpsideGrantsLevel1HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ash Skill", statOrder = { 705 }, level = 1, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3880462354] = { "Grants Level 1 Herald of Ash Skill" }, } }, - ["HellscapeUpsideGrantsLevel10HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ash Skill", statOrder = { 705 }, level = 45, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [3880462354] = { "Grants Level 10 Herald of Ash Skill" }, } }, - ["HellscapeUpsideGrantsLevel20HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ash Skill", statOrder = { 705 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3880462354] = { "Grants Level 20 Herald of Ash Skill" }, } }, - ["HellscapeUpsideGrantsLevel22HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ash Skill", statOrder = { 705 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3880462354] = { "Grants Level 22 Herald of Ash Skill" }, } }, - ["HellscapeUpsideGrantsLevel1HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Thunder Skill", statOrder = { 709 }, level = 1, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1665492921] = { "Grants Level 1 Herald of Thunder Skill" }, } }, - ["HellscapeUpsideGrantsLevel10HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Thunder Skill", statOrder = { 709 }, level = 45, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [1665492921] = { "Grants Level 10 Herald of Thunder Skill" }, } }, - ["HellscapeUpsideGrantsLevel20HeraldOfThunder_"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Thunder Skill", statOrder = { 709 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [1665492921] = { "Grants Level 20 Herald of Thunder Skill" }, } }, - ["HellscapeUpsideGrantsLevel22HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Thunder Skill", statOrder = { 709 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [1665492921] = { "Grants Level 22 Herald of Thunder Skill" }, } }, - ["HellscapeUpsideGrantsLevel1HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Purity Skill", statOrder = { 707 }, level = 1, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [738207023] = { "Grants Level 1 Herald of Purity Skill" }, } }, - ["HellscapeUpsideGrantsLevel10HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Purity Skill", statOrder = { 707 }, level = 45, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [738207023] = { "Grants Level 10 Herald of Purity Skill" }, } }, - ["HellscapeUpsideGrantsLevel20HeraldOfPurity_____"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Purity Skill", statOrder = { 707 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [738207023] = { "Grants Level 20 Herald of Purity Skill" }, } }, - ["HellscapeUpsideGrantsLevel22HeraldOfPurity_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Purity Skill", statOrder = { 707 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [738207023] = { "Grants Level 22 Herald of Purity Skill" }, } }, - ["HellscapeUpsideGrantsLevel1HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Agony Skill", statOrder = { 704 }, level = 1, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1504952168] = { "Grants Level 1 Herald of Agony Skill" }, } }, - ["HellscapeUpsideGrantsLevel10HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Agony Skill", statOrder = { 704 }, level = 45, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [1504952168] = { "Grants Level 10 Herald of Agony Skill" }, } }, - ["HellscapeUpsideGrantsLevel20HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Agony Skill", statOrder = { 704 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [1504952168] = { "Grants Level 20 Herald of Agony Skill" }, } }, - ["HellscapeUpsideGrantsLevel22HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Agony Skill", statOrder = { 704 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [1504952168] = { "Grants Level 22 Herald of Agony Skill" }, } }, - ["HellscapeUpsideGrantsLevel1SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Sniper's Mark Skill", statOrder = { 658 }, level = 1, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 1 Sniper's Mark Skill" }, } }, - ["HellscapeUpsideGrantsLevel10SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Sniper's Mark Skill", statOrder = { 658 }, level = 45, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 10 Sniper's Mark Skill" }, } }, - ["HellscapeUpsideGrantsLevel20SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Sniper's Mark Skill", statOrder = { 658 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 20 Sniper's Mark Skill" }, } }, - ["HellscapeUpsideGrantsLevel22SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Sniper's Mark Skill", statOrder = { 658 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 22 Sniper's Mark Skill" }, } }, - ["HellscapeUpsideDaytimeFishSize___"] = { type = "ScourgeUpside", affix = "", "(10-30)% increased Size of Fish caught during Daytime", statOrder = { 6132 }, level = 1, group = "DaytimeFishSize", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1771018579] = { "(10-30)% increased Size of Fish caught during Daytime" }, } }, - ["HellscapeUpsideFishingCastDistance"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Fishing Range", statOrder = { 2848 }, level = 45, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(13-16)% increased Fishing Range" }, } }, - ["HellscapeUpsideFishingRarity"] = { type = "ScourgeUpside", affix = "", "(20-25)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(20-25)% increased Rarity of Fish Caught" }, } }, - ["HellscapeUpsideStrengthAppliesToFishingReelSpeed_"] = { type = "ScourgeUpside", affix = "", "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", statOrder = { 10256 }, level = 1, group = "StrengthAppliesToFishingReelSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4039414411] = { "Strength's Damage bonus also applies to Reeling Speed at 20% of its value" }, } }, - ["HellscapeUpsideCanCatchScourgedFish"] = { type = "ScourgeUpside", affix = "", "You can catch Scourged Fish", statOrder = { 5386 }, level = 68, group = "CanCatchScourgedFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3385970045] = { "You can catch Scourged Fish" }, } }, - ["HellscapeDownsideStrengthRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Strength Requirement", statOrder = { 1085 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2833226514] = { "+(21-30) Strength Requirement" }, } }, - ["HellscapeDownsideStrengthRequirement1"] = { type = "ScourgeDownside", affix = "", "+(36-50) Strength Requirement", statOrder = { 1085 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2833226514] = { "+(36-50) Strength Requirement" }, } }, - ["HellscapeDownsideStrengthRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Strength Requirement", statOrder = { 1085 }, level = 45, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2833226514] = { "+(75-125) Strength Requirement" }, } }, - ["HellscapeDownsideStrengthRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Strength Requirement", statOrder = { 1085 }, level = 68, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2833226514] = { "+(150-200) Strength Requirement" }, } }, - ["HellscapeDownsideDexterityRequirement0__"] = { type = "ScourgeDownside", affix = "", "+(21-30) Dexterity Requirement", statOrder = { 1077 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1133453872] = { "+(21-30) Dexterity Requirement" }, } }, - ["HellscapeDownsideDexterityRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Dexterity Requirement", statOrder = { 1077 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1133453872] = { "+(36-50) Dexterity Requirement" }, } }, - ["HellscapeDownsideDexterityRequirement2_"] = { type = "ScourgeDownside", affix = "", "+(75-125) Dexterity Requirement", statOrder = { 1077 }, level = 45, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1133453872] = { "+(75-125) Dexterity Requirement" }, } }, - ["HellscapeDownsideDexterityRequirement3__"] = { type = "ScourgeDownside", affix = "", "+(150-200) Dexterity Requirement", statOrder = { 1077 }, level = 68, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1133453872] = { "+(150-200) Dexterity Requirement" }, } }, - ["HellscapeDownsideIntelligenceRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2153364323] = { "+(21-30) Intelligence Requirement" }, } }, - ["HellscapeDownsideIntelligenceRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2153364323] = { "+(36-50) Intelligence Requirement" }, } }, - ["HellscapeDownsideIntelligenceRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Intelligence Requirement", statOrder = { 1079 }, level = 45, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2153364323] = { "+(75-125) Intelligence Requirement" }, } }, - ["HellscapeDownsideIntelligenceRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Intelligence Requirement", statOrder = { 1079 }, level = 68, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2153364323] = { "+(150-200) Intelligence Requirement" }, } }, - ["HellscapeDownsideCannotCrit_"] = { type = "ScourgeDownside", affix = "", "Never deal Critical Strikes", statOrder = { 2178 }, level = 45, group = "HellscapeDownsideCannotCrit", weightKey = { "body_armour", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3638599682] = { "Never deal Critical Strikes" }, } }, - ["HellscapeDownsideCannotBlock"] = { type = "ScourgeDownside", affix = "", "Cannot Block Attack Damage", "Cannot Block Spell Damage", statOrder = { 2258, 5428 }, level = 45, group = "HellscapeDownsideCannotBlock", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3162258068] = { "Cannot Block Attack Damage" }, [4076910393] = { "Cannot Block Spell Damage" }, } }, - ["HellscapeDownsideCannotEvade_"] = { type = "ScourgeDownside", affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1918 }, level = 45, group = "HellscapeDownsideCannotEvade", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, - ["HellscapeDownsideReducedFireResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(15-11)% to Fire Resistance" }, } }, - ["HellscapeDownsideReducedFireResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(20-16)% to Fire Resistance" }, } }, - ["HellscapeDownsideReducedFireResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Fire Resistance", statOrder = { 1625 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(25-21)% to Fire Resistance" }, } }, - ["HellscapeDownsideReducedFireResistance3_"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Fire Resistance", statOrder = { 1625 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(30-26)% to Fire Resistance" }, } }, - ["HellscapeDownsideReducedColdResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(15-11)% to Cold Resistance" }, } }, - ["HellscapeDownsideReducedColdResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(20-16)% to Cold Resistance" }, } }, - ["HellscapeDownsideReducedColdResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Cold Resistance", statOrder = { 1631 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(25-21)% to Cold Resistance" }, } }, - ["HellscapeDownsideReducedColdResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Cold Resistance", statOrder = { 1631 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(30-26)% to Cold Resistance" }, } }, - ["HellscapeDownsideReducedLightningResistance0_"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(15-11)% to Lightning Resistance" }, } }, - ["HellscapeDownsideReducedLightningResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(20-16)% to Lightning Resistance" }, } }, - ["HellscapeDownsideReducedLightningResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Lightning Resistance", statOrder = { 1636 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(25-21)% to Lightning Resistance" }, } }, - ["HellscapeDownsideReducedLightningResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Lightning Resistance", statOrder = { 1636 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(30-26)% to Lightning Resistance" }, } }, - ["HellscapeDownsideReducedChaosResistance0_"] = { type = "ScourgeDownside", affix = "", "-(13-10)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(13-10)% to Chaos Resistance" }, } }, - ["HellscapeDownsideReducedChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-(17-14)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(17-14)% to Chaos Resistance" }, } }, - ["HellscapeDownsideReducedChaosResistance2_"] = { type = "ScourgeDownside", affix = "", "-(21-18)% to Chaos Resistance", statOrder = { 1641 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(21-18)% to Chaos Resistance" }, } }, - ["HellscapeDownsideReducedChaosResistance3___"] = { type = "ScourgeDownside", affix = "", "-(25-22)% to Chaos Resistance", statOrder = { 1641 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(25-22)% to Chaos Resistance" }, } }, - ["HellscapeDownsideReducedElementalResistances0_"] = { type = "ScourgeDownside", affix = "", "-5% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-5% to all Elemental Resistances" }, } }, - ["HellscapeDownsideReducedElementalResistances1_"] = { type = "ScourgeDownside", affix = "", "-(7-6)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(7-6)% to all Elemental Resistances" }, } }, - ["HellscapeDownsideReducedElementalResistances2_"] = { type = "ScourgeDownside", affix = "", "-(9-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 750, 750, 750, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(9-8)% to all Elemental Resistances" }, } }, - ["HellscapeDownsideReducedElementalResistances3_"] = { type = "ScourgeDownside", affix = "", "-(11-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(11-10)% to all Elemental Resistances" }, } }, - ["HellscapeDownsideMinusMaximumLife0"] = { type = "ScourgeDownside", affix = "", "-(20-16) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-(20-16) to maximum Life" }, } }, - ["HellscapeDownsideMinusMaximumLife1_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-(25-21) to maximum Life" }, } }, - ["HellscapeDownsideMinusMaximumLife2"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Life", statOrder = { 1569 }, level = 45, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-(30-26) to maximum Life" }, } }, - ["HellscapeDownsideMinusMaximumLife3_"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Life", statOrder = { 1569 }, level = 68, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-(35-31) to maximum Life" }, } }, - ["HellscapeDownsideMinusMaximumMana0_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "-(25-21) to maximum Mana" }, } }, - ["HellscapeDownsideMinusMaximumMana1"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "-(30-26) to maximum Mana" }, } }, - ["HellscapeDownsideMinusMaximumMana2__"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Mana", statOrder = { 1579 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "-(35-31) to maximum Mana" }, } }, - ["HellscapeDownsideMinusMaximumMana3_"] = { type = "ScourgeDownside", affix = "", "-(40-36) to maximum Mana", statOrder = { 1579 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "-(40-36) to maximum Mana" }, } }, - ["HellscapeDownsideReducedGlobalDefences0"] = { type = "ScourgeDownside", affix = "", "(6-10)% reduced Global Defences", statOrder = { 2833 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1389153006] = { "(6-10)% reduced Global Defences" }, } }, - ["HellscapeDownsideReducedGlobalDefences1"] = { type = "ScourgeDownside", affix = "", "(11-15)% reduced Global Defences", statOrder = { 2833 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1389153006] = { "(11-15)% reduced Global Defences" }, } }, - ["HellscapeDownsideReducedGlobalDefences2"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Global Defences", statOrder = { 2833 }, level = 45, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1389153006] = { "(16-20)% reduced Global Defences" }, } }, - ["HellscapeDownsideReducedGlobalDefences3__"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Global Defences", statOrder = { 2833 }, level = 68, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1389153006] = { "(21-25)% reduced Global Defences" }, } }, - ["HellscapeDownsideDealNoDamageYourself_"] = { type = "ScourgeDownside", affix = "", "You can't deal Damage with your Skills yourself", statOrder = { 2250 }, level = 68, group = "HellscapeDownsideDealNoDamageYourself", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2248945598] = { "You can't deal Damage with your Skills yourself" }, } }, - ["HellscapeDownsideReducedMinionLife2_"] = { type = "ScourgeDownside", affix = "", "Minions have (30-33)% reduced maximum Life", statOrder = { 1766 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (30-33)% reduced maximum Life" }, } }, - ["HellscapeDownsideReducedMinionLife3_"] = { type = "ScourgeDownside", affix = "", "Minions have (36-39)% reduced maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-39)% reduced maximum Life" }, } }, - ["HellscapeDownsideReservationEfficiency3"] = { type = "ScourgeDownside", affix = "", "(18-24)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(18-24)% reduced Mana Reservation Efficiency of Skills" }, } }, - ["HellscapeDownsideIncreasedChanceToBeCrit3__"] = { type = "ScourgeDownside", affix = "", "Hits have +10% additional Critical Strike Chance against you", statOrder = { 3131 }, level = 68, group = "HellscapeDownsideIncreasedChanceToBeCrit", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4152537231] = { "Hits have +10% additional Critical Strike Chance against you" }, } }, - ["HellscapeDownsideHinderedOnHitBySpells3__"] = { type = "ScourgeDownside", affix = "", "Spell Hits Hinder you", statOrder = { 5640 }, level = 68, group = "HellscapeDownsideHinderedOnHitBySpells", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1533511331] = { "Spell Hits Hinder you" }, } }, - ["HellscapeDownsideChanceToBeSilencedWhenHit3__"] = { type = "ScourgeDownside", affix = "", "(21-30)% chance to Curse you with Silence when Hit", statOrder = { 6007 }, level = 68, group = "HellscapeDownsideChanceToBeSilencedWhenHit", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3370064078] = { "(21-30)% chance to Curse you with Silence when Hit" }, } }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent0__"] = { type = "ScourgeDownside", affix = "", "(21-30)% reduced Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(21-30)% reduced Armour, Evasion and Energy Shield" }, } }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent1_"] = { type = "ScourgeDownside", affix = "", "(31-40)% reduced Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(31-40)% reduced Armour, Evasion and Energy Shield" }, } }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent2_"] = { type = "ScourgeDownside", affix = "", "(41-50)% reduced Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 45, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(41-50)% reduced Armour, Evasion and Energy Shield" }, } }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent3"] = { type = "ScourgeDownside", affix = "", "(51-60)% reduced Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 68, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(51-60)% reduced Armour, Evasion and Energy Shield" }, } }, - ["HellscapeDownsideMaximumElementalResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "-1% to all maximum Elemental Resistances" }, } }, - ["HellscapeDownsideMaximumChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "-1% to maximum Chaos Resistance" }, } }, - ["HellscapeDownsideElementalResistanceMinion2__"] = { type = "ScourgeDownside", affix = "", "Minions have -(33-30)% to all Elemental Resistances", statOrder = { 2912 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have -(33-30)% to all Elemental Resistances" }, } }, - ["HellscapeDownsideElementalResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(39-36)% to all Elemental Resistances", statOrder = { 2912 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have -(39-36)% to all Elemental Resistances" }, } }, - ["HellscapeDownsideChaosResistanceMinion2"] = { type = "ScourgeDownside", affix = "", "Minions have -(51-42)% to Chaos Resistance", statOrder = { 2913 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have -(51-42)% to Chaos Resistance" }, } }, - ["HellscapeDownsideChaosResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(63-54)% to Chaos Resistance", statOrder = { 2913 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have -(63-54)% to Chaos Resistance" }, } }, - ["HellscapeDownsideAllAilmentDuration2"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Duration of Ailments on Enemies", statOrder = { 1860 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(21-25)% reduced Duration of Ailments on Enemies" }, } }, - ["HellscapeDownsideAllAilmentDuration3__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(26-30)% reduced Duration of Ailments on Enemies" }, } }, - ["HellscapeDownsideElementalDurationOnSelf2"] = { type = "ScourgeDownside", affix = "", "(17-19)% increased Elemental Ailment Duration on you", statOrder = { 1867 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(17-19)% increased Elemental Ailment Duration on you" }, } }, - ["HellscapeDownsideElementalDurationOnSelf3__"] = { type = "ScourgeDownside", affix = "", "(20-22)% increased Elemental Ailment Duration on you", statOrder = { 1867 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-22)% increased Elemental Ailment Duration on you" }, } }, - ["HellscapeDownsideLifeOnBlock2__"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Life when you Block", statOrder = { 1757 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "Lose (31-40) Life when you Block" }, } }, - ["HellscapeDownsideLifeOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Life when you Block", statOrder = { 1757 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "Lose (41-50) Life when you Block" }, } }, - ["HellscapeDownsideManaOnBlock2_"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Mana when you Block", statOrder = { 1758 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "Lose (31-40) Mana when you Block" }, } }, - ["HellscapeDownsideManaOnBlock3_____"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Mana when you Block", statOrder = { 1758 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "Lose (41-50) Mana when you Block" }, } }, - ["HellscapeDownsideEnergyShieldOnBlock2___"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Energy Shield when you Block", statOrder = { 1759 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Lose (31-40) Energy Shield when you Block" }, } }, - ["HellscapeDownsideEnergyShieldOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Energy Shield when you Block", statOrder = { 1759 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Lose (41-50) Energy Shield when you Block" }, } }, - ["HellscapeDownsideChanceToBlockAttacks2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "-(10-8)% Chance to Block Attack Damage" }, } }, - ["HellscapeDownsideChanceToBlockAttacks3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "-(14-12)% Chance to Block Attack Damage" }, } }, - ["HellscapeDownsideChanceToBlockSpells2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "-(10-8)% Chance to Block Spell Damage" }, } }, - ["HellscapeDownsideChanceToBlockSpells3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "-(14-12)% Chance to Block Spell Damage" }, } }, - ["HellscapeDownsideChanceToSuppressSpells2"] = { type = "ScourgeDownside", affix = "", "-(18-15)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "-(18-15)% chance to Suppress Spell Damage" }, } }, - ["HellscapeDownsideChanceToSuppressSpells3"] = { type = "ScourgeDownside", affix = "", "-(24-21)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "-(24-21)% chance to Suppress Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(32-40)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(42-50)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage1h1b_"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Spell Damage", statOrder = { 1223 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(52-60)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Spell Damage", statOrder = { 1223 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(62-70)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Spell Damage", statOrder = { 1223 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(72-80)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(82-90)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(54-66)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(68-80)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage2h1b_"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Spell Damage", statOrder = { 1223 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(82-94)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage2h2____"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Spell Damage", statOrder = { 1223 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(96-108)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Spell Damage", statOrder = { 1223 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(110-122)% reduced Spell Damage" }, } }, - ["HellscapeDownsideSpellDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(124-136)% reduced Spell Damage" }, } }, - ["HellscapeDownsideColdDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(32-40)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(42-50)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Cold Damage", statOrder = { 1366 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(52-60)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Cold Damage", statOrder = { 1366 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(62-70)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage1h2b_______"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Cold Damage", statOrder = { 1366 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(72-80)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(82-90)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage2h0__"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(54-66)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(68-80)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Cold Damage", statOrder = { 1366 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(82-94)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Cold Damage", statOrder = { 1366 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(96-108)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage2h2b_"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Cold Damage", statOrder = { 1366 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(110-122)% reduced Cold Damage" }, } }, - ["HellscapeDownsideColdDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(124-136)% reduced Cold Damage" }, } }, - ["HellscapeDownsideFireDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(32-40)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(42-50)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Fire Damage", statOrder = { 1357 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(52-60)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(62-70)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Fire Damage", statOrder = { 1357 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(72-80)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(82-90)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(54-66)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage2h1__"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(68-80)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Fire Damage", statOrder = { 1357 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(82-94)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(96-108)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Fire Damage", statOrder = { 1357 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(110-122)% reduced Fire Damage" }, } }, - ["HellscapeDownsideFireDamage2h3____"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(124-136)% reduced Fire Damage" }, } }, - ["HellscapeDownsideLightningDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(32-40)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(42-50)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Lightning Damage", statOrder = { 1377 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(52-60)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Lightning Damage", statOrder = { 1377 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(62-70)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage1h2b_"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Lightning Damage", statOrder = { 1377 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(72-80)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(82-90)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(54-66)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(68-80)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Lightning Damage", statOrder = { 1377 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(82-94)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage2h2___"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Lightning Damage", statOrder = { 1377 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(96-108)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Lightning Damage", statOrder = { 1377 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(110-122)% reduced Lightning Damage" }, } }, - ["HellscapeDownsideLightningDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(124-136)% reduced Lightning Damage" }, } }, - ["HellscapeDownsidePhysicalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(32-40)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(42-50)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Global Physical Damage", statOrder = { 1231 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(52-60)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Global Physical Damage", statOrder = { 1231 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(62-70)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(72-80)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(82-90)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(54-66)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(68-80)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Global Physical Damage", statOrder = { 1231 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(82-94)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Global Physical Damage", statOrder = { 1231 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(96-108)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage2h2b__"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(110-122)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsidePhysicalDamage2h3______"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(124-136)% reduced Global Physical Damage" }, } }, - ["HellscapeDownsideElementalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(32-40)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(42-50)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage1h1b__"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(52-60)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Elemental Damage", statOrder = { 1980 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(62-70)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Elemental Damage", statOrder = { 1980 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(72-80)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage1h3__"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(82-90)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(54-66)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(68-80)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(82-94)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Elemental Damage", statOrder = { 1980 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(96-108)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Elemental Damage", statOrder = { 1980 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(110-122)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideElementalDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(124-136)% reduced Elemental Damage" }, } }, - ["HellscapeDownsideChaosDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(32-40)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(42-50)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Chaos Damage", statOrder = { 1385 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(52-60)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Chaos Damage", statOrder = { 1385 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(62-70)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Chaos Damage", statOrder = { 1385 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(72-80)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(82-90)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(54-66)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(68-80)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Chaos Damage", statOrder = { 1385 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(82-94)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Chaos Damage", statOrder = { 1385 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(96-108)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Chaos Damage", statOrder = { 1385 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(110-122)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideChaosDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(124-136)% reduced Chaos Damage" }, } }, - ["HellscapeDownsideMinionDamage0"] = { type = "ScourgeDownside", affix = "", "Minions deal (18-21)% reduced Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-21)% reduced Damage" }, } }, - ["HellscapeDownsideMinionDamage1"] = { type = "ScourgeDownside", affix = "", "Minions deal (24-27)% reduced Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (24-27)% reduced Damage" }, } }, - ["HellscapeDownsideMinionDamage2"] = { type = "ScourgeDownside", affix = "", "Minions deal (30-33)% reduced Damage", statOrder = { 1973 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-33)% reduced Damage" }, } }, - ["HellscapeDownsideMinionDamage3"] = { type = "ScourgeDownside", affix = "", "Minions deal (36-39)% reduced Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (36-39)% reduced Damage" }, } }, - ["HellscapeDownsideProjectileDamagePercentage0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(18-21)% reduced Projectile Damage" }, } }, - ["HellscapeDownsideProjectileDamagePercentage1__"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Projectile Damage", statOrder = { 1996 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(24-27)% reduced Projectile Damage" }, } }, - ["HellscapeDownsideProjectileDamagePercentage2_"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Projectile Damage", statOrder = { 1996 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-33)% reduced Projectile Damage" }, } }, - ["HellscapeDownsideProjectileDamagePercentage3_"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Projectile Damage", statOrder = { 1996 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(36-39)% reduced Projectile Damage" }, } }, - ["HellscapeDownsideCriticalStrikeChance2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Global Critical Strike Chance", statOrder = { 1459 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(51-57)% reduced Global Critical Strike Chance" }, } }, - ["HellscapeDownsideCriticalStrikeChance3_"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(60-66)% reduced Global Critical Strike Chance" }, } }, - ["HellscapeDownsideCriticalStrikeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "-(57-51)% to Global Critical Strike Multiplier" }, } }, - ["HellscapeDownsideCriticalStrikeMultiplier3__"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "-(66-60)% to Global Critical Strike Multiplier" }, } }, - ["HellscapeDownsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Critical Strike Chance with Bows", statOrder = { 1465 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(51-57)% reduced Critical Strike Chance with Bows" }, } }, - ["HellscapeDownsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Critical Strike Chance with Bows", statOrder = { 1465 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(60-66)% reduced Critical Strike Chance with Bows" }, } }, - ["HellscapeDownsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "-(57-51)% to Critical Strike Multiplier with Bows" }, } }, - ["HellscapeDownsideCriticalStrikeMultiplierWithBows3"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "-(66-60)% to Critical Strike Multiplier with Bows" }, } }, - ["HellscapeDownsideDamageOverTimeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(30-24)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "-(30-24)% to Damage over Time Multiplier" }, } }, - ["HellscapeDownsideDamageOverTimeMultiplier3"] = { type = "ScourgeDownside", affix = "", "-(39-33)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "-(39-33)% to Damage over Time Multiplier" }, } }, - ["HellscapeDownsideAttackSpeed0"] = { type = "ScourgeDownside", affix = "", "(9-12)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-12)% reduced Attack Speed" }, } }, - ["HellscapeDownsideAttackSpeed1__"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(15-18)% reduced Attack Speed" }, } }, - ["HellscapeDownsideAttackSpeed2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Attack Speed", statOrder = { 1410 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(21-24)% reduced Attack Speed" }, } }, - ["HellscapeDownsideAttackSpeed3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Attack Speed", statOrder = { 1410 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(27-30)% reduced Attack Speed" }, } }, - ["HellscapeDownsideCastSpeed0"] = { type = "ScourgeDownside", affix = "", "12% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% reduced Cast Speed" }, } }, - ["HellscapeDownsideCastSpeed1_"] = { type = "ScourgeDownside", affix = "", "15% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, - ["HellscapeDownsideCastSpeed2"] = { type = "ScourgeDownside", affix = "", "18% reduced Cast Speed", statOrder = { 1446 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "18% reduced Cast Speed" }, } }, - ["HellscapeDownsideCastSpeed3"] = { type = "ScourgeDownside", affix = "", "21% reduced Cast Speed", statOrder = { 1446 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "21% reduced Cast Speed" }, } }, - ["HellscapeDownsideAttackAndCastSpeedMinion2_"] = { type = "ScourgeDownside", affix = "", "Minions have (21-24)% reduced Attack Speed", "Minions have (21-24)% reduced Cast Speed", statOrder = { 2907, 2908 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (21-24)% reduced Attack Speed" }, [4000101551] = { "Minions have (21-24)% reduced Cast Speed" }, } }, - ["HellscapeDownsideAttackAndCastSpeedMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have (27-30)% reduced Attack Speed", "Minions have (27-30)% reduced Cast Speed", statOrder = { 2907, 2908 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (27-30)% reduced Attack Speed" }, [4000101551] = { "Minions have (27-30)% reduced Cast Speed" }, } }, - ["HellscapeDownsideLifeOnKill3__"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 3% of Life on Kill" }, } }, - ["HellscapeDownsideManaOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Lose 3% of Mana on Kill" }, } }, - ["HellscapeDownsideEnergyShieldOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Lose 3% of Energy Shield on Kill" }, } }, - ["HellscapeDownsideAccuracyPercent2"] = { type = "ScourgeDownside", affix = "", "(33-42)% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(33-42)% reduced Global Accuracy Rating" }, } }, - ["HellscapeDownsideAccuracyPercent3__"] = { type = "ScourgeDownside", affix = "", "(45-51)% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(45-51)% reduced Global Accuracy Rating" }, } }, - ["HellscapeDownsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeDownside", affix = "", "-2 to Level of Socketed Gems", statOrder = { 162 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "-2 to Level of Socketed Gems" }, } }, - ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel1h"] = { type = "ScourgeDownside", affix = "", "-2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "-2 to Level of all Spell Skill Gems" }, } }, - ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel2h"] = { type = "ScourgeDownside", affix = "", "-4 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "-4 to Level of all Spell Skill Gems" }, } }, - ["HellscapeDownsideAdditionalRaisedZombie1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "-2 to maximum number of Raised Zombies" }, } }, - ["HellscapeDownsideAdditionalSkeleton1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Skeletons", statOrder = { 2162 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "-2 to maximum number of Skeletons" }, } }, - ["HellscapeDownsideAreaDamage0___"] = { type = "ScourgeDownside", affix = "", "(24-30)% reduced Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(24-30)% reduced Area Damage" }, } }, - ["HellscapeDownsideAreaDamage1"] = { type = "ScourgeDownside", affix = "", "(33-45)% reduced Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(33-45)% reduced Area Damage" }, } }, - ["HellscapeDownsideAreaDamage2_"] = { type = "ScourgeDownside", affix = "", "(48-60)% reduced Area Damage", statOrder = { 2035 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(48-60)% reduced Area Damage" }, } }, - ["HellscapeDownsideAreaDamage3"] = { type = "ScourgeDownside", affix = "", "(63-75)% reduced Area Damage", statOrder = { 2035 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(63-75)% reduced Area Damage" }, } }, - ["HellscapeDownsideRarityOfItemsFound0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(18-21)% reduced Rarity of Items found" }, } }, - ["HellscapeDownsideRarityOfItemsFound1_"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(24-27)% reduced Rarity of Items found" }, } }, - ["HellscapeDownsideRarityOfItemsFound2"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Rarity of Items found", statOrder = { 1596 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-33)% reduced Rarity of Items found" }, } }, - ["HellscapeDownsideRarityOfItemsFound3"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Rarity of Items found", statOrder = { 1596 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(36-39)% reduced Rarity of Items found" }, } }, - ["HellscapeDownsideLifeRegeneration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Life Regeneration rate", statOrder = { 1577 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(21-27)% reduced Life Regeneration rate" }, } }, - ["HellscapeDownsideLifeRegeneration3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(30-36)% reduced Life Regeneration rate" }, } }, - ["HellscapeDownsideMovementVelocity0"] = { type = "ScourgeDownside", affix = "", "(6-7)% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(6-7)% reduced Movement Speed" }, } }, - ["HellscapeDownsideMovementVelocity1_"] = { type = "ScourgeDownside", affix = "", "(8-9)% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-9)% reduced Movement Speed" }, } }, - ["HellscapeDownsideMovementVelocity2"] = { type = "ScourgeDownside", affix = "", "(10-11)% reduced Movement Speed", statOrder = { 1798 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-11)% reduced Movement Speed" }, } }, - ["HellscapeDownsideMovementVelocity3"] = { type = "ScourgeDownside", affix = "", "(12-13)% reduced Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(12-13)% reduced Movement Speed" }, } }, - ["HellscapeDownsideMovementSkillsAreDisabled1_"] = { type = "ScourgeDownside", affix = "", "Your Movement Skills are Disabled", statOrder = { 10693 }, level = 68, group = "MovementSkillsAreDisabled", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [86000920] = { "Your Movement Skills are Disabled" }, } }, - ["HellscapeDownsideManaRegeneration0"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(16-20)% reduced Mana Regeneration Rate" }, } }, - ["HellscapeDownsideManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(21-25)% reduced Mana Regeneration Rate" }, } }, - ["HellscapeDownsideManaRegeneration2__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(26-30)% reduced Mana Regeneration Rate" }, } }, - ["HellscapeDownsideManaRegeneration2b"] = { type = "ScourgeDownside", affix = "", "(31-35)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(31-35)% reduced Mana Regeneration Rate" }, } }, - ["HellscapeDownsideManaRegeneration3"] = { type = "ScourgeDownside", affix = "", "(36-40)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(36-40)% reduced Mana Regeneration Rate" }, } }, - ["HellscapeDownsideManaRegeneration3b"] = { type = "ScourgeDownside", affix = "", "(46-50)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(46-50)% reduced Mana Regeneration Rate" }, } }, - ["HellscapeDownsideManaRegenFlat0________"] = { type = "ScourgeDownside", affix = "", "Lose (3.3-4.2) Mana per Second", statOrder = { 8172 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (3.3-4.2) Mana per Second" }, } }, - ["HellscapeDownsideManaRegenFlat1"] = { type = "ScourgeDownside", affix = "", "Lose (4.6-5.7) Mana per Second", statOrder = { 8172 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (4.6-5.7) Mana per Second" }, } }, - ["HellscapeDownsideManaRegenFlat1b_"] = { type = "ScourgeDownside", affix = "", "Lose (5.8-6.7) Mana per Second", statOrder = { 8172 }, level = 15, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (5.8-6.7) Mana per Second" }, } }, - ["HellscapeDownsideManaRegenFlat1c"] = { type = "ScourgeDownside", affix = "", "Lose (7.7-8.3) Mana per Second", statOrder = { 8172 }, level = 25, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (7.7-8.3) Mana per Second" }, } }, - ["HellscapeDownsideManaRegenFlat1d"] = { type = "ScourgeDownside", affix = "", "Lose (9.3-10) Mana per Second", statOrder = { 8172 }, level = 35, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (9.3-10) Mana per Second" }, } }, - ["HellscapeDownsideManaRegenFlat2"] = { type = "ScourgeDownside", affix = "", "Lose (11-11.7) Mana per Second", statOrder = { 8172 }, level = 45, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (11-11.7) Mana per Second" }, } }, - ["HellscapeDownsideManaRegenFlat2b"] = { type = "ScourgeDownside", affix = "", "Lose (12.7-13.3) Mana per Second", statOrder = { 8172 }, level = 55, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (12.7-13.3) Mana per Second" }, } }, - ["HellscapeDownsideManaRegenFlat3"] = { type = "ScourgeDownside", affix = "", "Lose (14.3-15) Mana per Second", statOrder = { 8172 }, level = 68, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (14.3-15) Mana per Second" }, } }, - ["HellscapeDownsideCannotLeechLife1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Life", statOrder = { 2567 }, level = 68, group = "CannotLeechLife", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3769854701] = { "Cannot Leech Life" }, } }, - ["HellscapeDownsideCannotLeechMana1_"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Mana", statOrder = { 2568 }, level = 68, group = "CannotLeechMana", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, - ["HellscapeDownsideCannotLeechEnergyShield1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Energy Shield", statOrder = { 4999 }, level = 68, group = "CannotLeechEnergyShield", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [700952022] = { "Cannot Leech Energy Shield" }, } }, - ["HellscapeDownsideFlaskChargesGained2_"] = { type = "ScourgeDownside", affix = "", "(22-30)% reduced Flask Charges gained", statOrder = { 2183 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(22-30)% reduced Flask Charges gained" }, } }, - ["HellscapeDownsideFlaskChargesGained3__"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Flask Charges gained", statOrder = { 2183 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(32-40)% reduced Flask Charges gained" }, } }, - ["HellscapeDownsideFlaskChargesUsed2"] = { type = "ScourgeDownside", affix = "", "(32-40)% increased Flask Charges used", statOrder = { 2184 }, level = 45, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(32-40)% increased Flask Charges used" }, } }, - ["HellscapeDownsideFlaskChargesUsed3"] = { type = "ScourgeDownside", affix = "", "(42-50)% increased Flask Charges used", statOrder = { 2184 }, level = 68, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(42-50)% increased Flask Charges used" }, } }, - ["HellscapeDownsideFlaskLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Life Recovery from Flasks", statOrder = { 2059 }, level = 45, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(24-28)% reduced Life Recovery from Flasks" }, } }, - ["HellscapeDownsideFlaskLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Life Recovery from Flasks", statOrder = { 2059 }, level = 68, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-34)% reduced Life Recovery from Flasks" }, } }, - ["HellscapeDownsideFlaskManaRecoveryRate2_"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Mana Recovery from Flasks", statOrder = { 2060 }, level = 45, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(24-28)% reduced Mana Recovery from Flasks" }, } }, - ["HellscapeDownsideFlaskManaRecoveryRate3___"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Mana Recovery from Flasks", statOrder = { 2060 }, level = 68, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(30-34)% reduced Mana Recovery from Flasks" }, } }, - ["HellscapeDownsideCannotApplyBleed1"] = { type = "ScourgeDownside", affix = "", "Attacks cannot cause Bleeding", statOrder = { 2489 }, level = 68, group = "CannotCauseBleeding", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [129138230] = { "Attacks cannot cause Bleeding" }, } }, - ["HellscapeDownsideCannotApplyPoison1_"] = { type = "ScourgeDownside", affix = "", "Your Chaos Damage cannot Poison", "Your Physical Damage cannot Poison", statOrder = { 2888, 2890 }, level = 68, group = "CannotCausePoison", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [733138911] = { "Your Physical Damage cannot Poison" }, [2578701544] = { "Your Chaos Damage cannot Poison" }, } }, - ["HellscapeDownsideCannotApplyStun1"] = { type = "ScourgeDownside", affix = "", "Your Hits cannot Stun Enemies", statOrder = { 1855 }, level = 68, group = "CannotStun", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [373932729] = { "Your Hits cannot Stun Enemies" }, } }, - ["HellscapeDownsideCooldownRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(12-16)% reduced Cooldown Recovery Rate", statOrder = { 5005 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-16)% reduced Cooldown Recovery Rate" }, } }, - ["HellscapeDownsideLifePercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(15-18)% reduced maximum Life" }, } }, - ["HellscapeDownsideManaPercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(15-18)% reduced maximum Mana" }, } }, - ["HellscapeDownsideCursedWithDespair1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Despair", statOrder = { 10650 }, level = 68, group = "SelfCurseDespair", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2177148618] = { "You are Cursed with Despair" }, } }, - ["HellscapeDownsideCursedWithElementalWeakness1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Elemental Weakness", statOrder = { 10651 }, level = 68, group = "SelfCurseElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [916233227] = { "You are Cursed with Elemental Weakness" }, } }, - ["HellscapeDownsideCursedWithEnfeeble1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Enfeeble", statOrder = { 10652 }, level = 68, group = "SelfCurseEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2102270408] = { "You are Cursed with Enfeeble" }, } }, - ["HellscapeDownsideCursedWithTemporalChains1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Temporal Chains", statOrder = { 10655 }, level = 68, group = "SelfCurseTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [226443538] = { "You are Cursed with Temporal Chains" }, } }, - ["HellscapeDownsideCursedWithVulnerability1____"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Vulnerability", statOrder = { 10656 }, level = 68, group = "SelfCurseVulnerability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3947740014] = { "You are Cursed with Vulnerability" }, } }, - ["HellscapeDownsideCursedWithConductivity1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Conductivity", statOrder = { 10649 }, level = 68, group = "SelfCurseConductivity", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4256430383] = { "You are Cursed with Conductivity" }, } }, - ["HellscapeDownsideCursedWithFlammability1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Flammability", statOrder = { 10653 }, level = 68, group = "SelfCurseFlammability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [469425157] = { "You are Cursed with Flammability" }, } }, - ["HellscapeDownsideCursedWithFrostbite1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Frostbite", statOrder = { 10654 }, level = 68, group = "SelfCurseFrostbite", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [469418792] = { "You are Cursed with Frostbite" }, } }, - ["HellscapeDownsidePhysicalDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Physical Damage taken", statOrder = { 2241 }, level = 45, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(7-8)% increased Physical Damage taken" }, } }, - ["HellscapeDownsidePhysicalDamageTaken3____"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Physical Damage taken", statOrder = { 2241 }, level = 68, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(9-10)% increased Physical Damage taken" }, } }, - ["HellscapeDownsideFireDamageTaken2_"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Fire Damage taken", statOrder = { 2242 }, level = 45, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(7-8)% increased Fire Damage taken" }, } }, - ["HellscapeDownsideFireDamageTaken3_"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Fire Damage taken", statOrder = { 2242 }, level = 68, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(9-10)% increased Fire Damage taken" }, } }, - ["HellscapeDownsideColdDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Cold Damage taken", statOrder = { 3389 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(7-8)% increased Cold Damage taken" }, } }, - ["HellscapeDownsideColdDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Cold Damage taken", statOrder = { 3389 }, level = 68, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(9-10)% increased Cold Damage taken" }, } }, - ["HellscapeDownsideLightningDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Lightning Damage taken", statOrder = { 3388 }, level = 45, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(7-8)% increased Lightning Damage taken" }, } }, - ["HellscapeDownsideLightningDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Lightning Damage taken", statOrder = { 3388 }, level = 68, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(9-10)% increased Lightning Damage taken" }, } }, - ["HellscapeDownsideChaosDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Chaos Damage taken", statOrder = { 2243 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(7-8)% increased Chaos Damage taken" }, } }, - ["HellscapeDownsideChaosDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Chaos Damage taken", statOrder = { 2243 }, level = 68, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(9-10)% increased Chaos Damage taken" }, } }, - ["HellscapeDownsideTotemDuration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Duration", statOrder = { 1778 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(21-27)% reduced Totem Duration" }, } }, - ["HellscapeDownsideTotemDuration3_"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Duration", statOrder = { 1778 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(30-36)% reduced Totem Duration" }, } }, - ["HellscapeDownsideTotemLife2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Life", statOrder = { 1774 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(21-27)% reduced Totem Life" }, } }, - ["HellscapeDownsideTotemLife3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Life", statOrder = { 1774 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(30-36)% reduced Totem Life" }, } }, - ["HellscapeDownsideBrandDuration2"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (36-42)% reduced Duration", statOrder = { 10039 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (36-42)% reduced Duration" }, } }, - ["HellscapeDownsideBrandDuration3_"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (45-51)% reduced Duration", statOrder = { 10039 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (45-51)% reduced Duration" }, } }, - ["HellscapeDownsideNoLifeRegeneration1__"] = { type = "ScourgeDownside", affix = "", "You have no Life Regeneration", statOrder = { 2271 }, level = 45, group = "NoLifeRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, - ["HellscapeDownsideNoManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "You have no Mana Regeneration", statOrder = { 2272 }, level = 45, group = "NoManaRegeneration", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, - ["HellscapeDownsideNoEnergyShieldRegeneration1"] = { type = "ScourgeDownside", affix = "", "You cannot Regenerate Energy Shield", statOrder = { 5445 }, level = 45, group = "NoEnergyShieldRegen", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1052583507] = { "You cannot Regenerate Energy Shield" }, } }, - ["HellscapeDownsideNoEnergyShieldRecharge1"] = { type = "ScourgeDownside", affix = "", "You cannot Recharge Energy Shield", statOrder = { 5444 }, level = 45, group = "NoEnergyShieldRecharge", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4164247992] = { "You cannot Recharge Energy Shield" }, } }, - ["HellscapeDownsideLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Life Recovery rate", statOrder = { 1578 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(10-12)% reduced Life Recovery rate" }, } }, - ["HellscapeDownsideLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(14-16)% reduced Life Recovery rate" }, } }, - ["HellscapeDownsideManaRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Mana Recovery rate", statOrder = { 1586 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% reduced Mana Recovery rate" }, } }, - ["HellscapeDownsideManaRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(14-16)% reduced Mana Recovery rate" }, } }, - ["HellscapeDownsideEnergyShieldRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Energy Shield Recovery rate", statOrder = { 1568 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% reduced Energy Shield Recovery rate" }, } }, - ["HellscapeDownsideEnergyShieldRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(14-16)% reduced Energy Shield Recovery rate" }, } }, - ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes2_"] = { type = "ScourgeDownside", affix = "", "You take (22-30)% increased Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (22-30)% increased Extra Damage from Critical Strikes" }, } }, - ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeDownside", affix = "", "You take (32-40)% increased Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (32-40)% increased Extra Damage from Critical Strikes" }, } }, - ["HellscapeDownsideDamageIsUnlucky1___"] = { type = "ScourgeDownside", affix = "", "Damage with Hits is Unlucky", statOrder = { 5019 }, level = 45, group = "DamageIsUnlucky", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [827991492] = { "Damage with Hits is Unlucky" }, } }, - ["HellscapeDownsideColdPenetration1h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 2983 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, - ["HellscapeDownsideColdPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 14% higher than actual value", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Your Hits treat Cold Resistance as 14% higher than actual value" }, } }, - ["HellscapeDownsideColdPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 16% higher than actual value", statOrder = { 2983 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Your Hits treat Cold Resistance as 16% higher than actual value" }, } }, - ["HellscapeDownsideColdPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 20% higher than actual value", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Your Hits treat Cold Resistance as 20% higher than actual value" }, } }, - ["HellscapeDownsideFirePenetration1h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 10% higher than actual value", statOrder = { 2981 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Your Hits treat Fire Resistance as 10% higher than actual value" }, } }, - ["HellscapeDownsideFirePenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 14% higher than actual value", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Your Hits treat Fire Resistance as 14% higher than actual value" }, } }, - ["HellscapeDownsideFirePenetration2h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 16% higher than actual value", statOrder = { 2981 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Your Hits treat Fire Resistance as 16% higher than actual value" }, } }, - ["HellscapeDownsideFirePenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 20% higher than actual value", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Your Hits treat Fire Resistance as 20% higher than actual value" }, } }, - ["HellscapeDownsideLightningPenetration1h2__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 10% higher than actual value", statOrder = { 2984 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Your Hits treat Lightning Resistance as 10% higher than actual value" }, } }, - ["HellscapeDownsideLightningPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 14% higher than actual value", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Your Hits treat Lightning Resistance as 14% higher than actual value" }, } }, - ["HellscapeDownsideLightningPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 16% higher than actual value", statOrder = { 2984 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Your Hits treat Lightning Resistance as 16% higher than actual value" }, } }, - ["HellscapeDownsideLightningPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 20% higher than actual value", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Your Hits treat Lightning Resistance as 20% higher than actual value" }, } }, - ["HellscapeDownsideChaosPenetration1h2___"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 10% higher than actual value", statOrder = { 9876 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Your Hits treat Chaos Resistance as 10% higher than actual value" }, } }, - ["HellscapeDownsideChaosPenetration1h3__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 14% higher than actual value", statOrder = { 9876 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Your Hits treat Chaos Resistance as 14% higher than actual value" }, } }, - ["HellscapeDownsideChaosPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 16% higher than actual value", statOrder = { 9876 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Your Hits treat Chaos Resistance as 16% higher than actual value" }, } }, - ["HellscapeDownsideChaosPenetration2h3_____"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 20% higher than actual value", statOrder = { 9876 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Your Hits treat Chaos Resistance as 20% higher than actual value" }, } }, - ["HellscapeDownsideCannotCurse"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Curses", statOrder = { 10661 }, level = 45, group = "CannotCurse", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1925222248] = { "Cannot inflict Curses" }, } }, - ["HellscapeDownsideCannotApplyAilments1___"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1862 }, level = 45, group = "CannotApplyFireAilments", weightKey = { "sceptre", "wand", "staff", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3913992084] = { "Cannot inflict Elemental Ailments" }, } }, - ["HellscapeDownsideAdditionalTraps1"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2255 }, level = 45, group = "TrapsAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2224292784] = { "Can have 5 fewer Traps placed at a time" }, } }, - ["HellscapeDownsideAdditionalMines1_"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Remote Mines placed at a time", statOrder = { 2256 }, level = 45, group = "AdditionalRemoteMinesAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [60263468] = { "Can have 5 fewer Remote Mines placed at a time" }, } }, - ["HellscapeDownsideEffectOfNonDamagingAilments2"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(30-40)% reduced Effect of Non-Damaging Ailments" }, } }, - ["HellscapeDownsideEffectOfNonDamagingAilments3"] = { type = "ScourgeDownside", affix = "", "(50-60)% reduced Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(50-60)% reduced Effect of Non-Damaging Ailments" }, } }, - ["HellscapeDownsideNearbyEnemiesTakeReducedPhysicalDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies take 9% reduced Physical Damage", statOrder = { 7919 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% reduced Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% reduced Physical Damage" }, } }, - ["HellscapeDownsideNearbyEnemiesTakeReducedFireDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Fire Resistance", statOrder = { 7915 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have +9% to Fire Resistance" }, [3372524247] = { "+9% to Fire Resistance" }, } }, - ["HellscapeDownsideNearbyEnemiesTakeReducedColdDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Cold Resistance", statOrder = { 7913 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have +9% to Cold Resistance" }, } }, - ["HellscapeDownsideNearbyEnemiesTakeReducedLightningDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Lightning Resistance", statOrder = { 7917 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have +9% to Lightning Resistance" }, } }, - ["HellscapeDownsideNearbyEnemiesTakeReducedChaosDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Chaos Resistance", statOrder = { 7912 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have +9% to Chaos Resistance" }, [2923486259] = { "+9% to Chaos Resistance" }, } }, - ["HellscapeDownsideCurseEffect2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Effect of your Curses", statOrder = { 2596 }, level = 45, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(21-24)% reduced Effect of your Curses" }, } }, - ["HellscapeDownsideCurseEffect3__"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Effect of your Curses", statOrder = { 2596 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(27-30)% reduced Effect of your Curses" }, } }, - ["HellscapeDownsideAuraEffectOfNonCurseSkills2"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(21-24)% reduced effect of Non-Curse Auras from your Skills" }, } }, - ["HellscapeDownsideAuraEffectOfNonCurseSkills3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(27-30)% reduced effect of Non-Curse Auras from your Skills" }, } }, - ["HellscapeDownsideAdditionalCurse1__"] = { type = "ScourgeDownside", affix = "", "You can apply one fewer Curse", statOrder = { 2168 }, level = 68, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply one fewer Curse" }, } }, - ["HellscapeDownsideMaximumEnduranceCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-1 to Maximum Endurance Charges" }, } }, - ["HellscapeDownsideMaximumFrenzyCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, - ["HellscapeDownsideMaximumPowerCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Power Charges", statOrder = { 1814 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, - ["HellscapeDownsideDealNoPhysicalDamage___"] = { type = "ScourgeDownside", affix = "", "Deal no Physical Damage", statOrder = { 2790 }, level = 1, group = "DealNoPhysicalDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3900877792] = { "Deal no Physical Damage" }, } }, - ["HellscapeDownsideDealNoFireDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Fire Damage", statOrder = { 5008 }, level = 1, group = "DealNoFireDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, tradeHashes = { [3763013280] = { "Deal no Fire Damage" }, } }, - ["HellscapeDownsideDealNoColdDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Cold Damage", statOrder = { 2792 }, level = 1, group = "DealNoColdDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [743677006] = { "Deal no Cold Damage" }, } }, - ["HellscapeDownsideDealNoLightningDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Lightning Damage", statOrder = { 5009 }, level = 1, group = "DealNoLightningDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, tradeHashes = { [3520498509] = { "Deal no Lightning Damage" }, } }, - ["HellscapeDownsideDealNoChaosDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Chaos Damage", statOrder = { 5007 }, level = 1, group = "DealNoChaosDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1896269067] = { "Deal no Chaos Damage" }, } }, - ["HellscapeDownsideCannotGainCharges"] = { type = "ScourgeDownside", affix = "", "Cannot gain Charges", statOrder = { 5432 }, level = 68, group = "CannotGainCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1500620123] = { "Cannot gain Charges" }, } }, - ["HellscapeDownsideCriticalStrikesDealNoExtraDamage"] = { type = "ScourgeDownside", affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2678 }, level = 45, group = "CriticalStrikesDealNoExtraDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, - ["HellscapeDownsideDamageTakenOnFullLife2"] = { type = "ScourgeDownside", affix = "", "12% increased Damage taken while on Full Life", statOrder = { 6119 }, level = 45, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4091521421] = { "12% increased Damage taken while on Full Life" }, } }, - ["HellscapeDownsideDamageTakenOnFullLife3_"] = { type = "ScourgeDownside", affix = "", "20% increased Damage taken while on Full Life", statOrder = { 6119 }, level = 68, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4091521421] = { "20% increased Damage taken while on Full Life" }, } }, - ["HellscapeDownsideFishingLineStrength"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(30-40)% reduced Fishing Line Strength" }, } }, - ["HellscapeDownsideFishingPoolConsumption"] = { type = "ScourgeDownside", affix = "", "(50-100)% increased Fishing Pool Consumption", statOrder = { 2845 }, level = 45, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(50-100)% increased Fishing Pool Consumption" }, } }, - ["HellscapeDownsideFishRotWhenCaught"] = { type = "ScourgeDownside", affix = "", "Fish Rot upon being Caught", statOrder = { 6599 }, level = 1, group = "FishRotWhenCaught", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [261024552] = { "Fish Rot upon being Caught" }, } }, - ["HellscapeDownsideFishingReelStability"] = { type = "ScourgeDownside", affix = "", "(30-60)% reduced Reeling Stability", statOrder = { 6612 }, level = 1, group = "FishingReelStability", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3332149074] = { "(30-60)% reduced Reeling Stability" }, } }, - ["HellscapeDownsideCannotFishFromWater_______"] = { type = "ScourgeDownside", affix = "", "Cannot Fish while standing in Water", statOrder = { 5431 }, level = 68, group = "CannotFishFromWater", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1831380809] = { "Cannot Fish while standing in Water" }, } }, + ["HellscapeUpsideIncreasedLife1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(23-25) to maximum Life" }, } }, + ["HellscapeUpsideIncreasedLife2_"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Life", statOrder = { 1591 }, level = 45, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(28-30) to maximum Life" }, } }, + ["HellscapeUpsideIncreasedLife3_"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Life", statOrder = { 1591 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(33-35) to maximum Life" }, } }, + ["HellscapeUpsideIncreasedLife4"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Life", statOrder = { 1591 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(38-40) to maximum Life" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots1__"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(30-33) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots2"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Armour", statOrder = { 1562 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(34-37) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Armour", statOrder = { 1562 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(38-41) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Armour", statOrder = { 1562 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(42-45) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(33-39) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield2__"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Armour", statOrder = { 1562 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(40-46) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Armour", statOrder = { 1562 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(47-53) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield4_"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Armour", statOrder = { 1562 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(54-60) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(31-60) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Armour", statOrder = { 1562 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(61-90) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Armour", statOrder = { 1562 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(91-120) to Armour" }, } }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Armour", statOrder = { 1562 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-150) to Armour" }, } }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots1"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(30-33) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots2___"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Evasion Rating", statOrder = { 1570 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(34-37) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots3_"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Evasion Rating", statOrder = { 1570 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(38-41) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Evasion Rating", statOrder = { 1570 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(42-45) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(33-39) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Evasion Rating", statOrder = { 1570 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-46) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Evasion Rating", statOrder = { 1570 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(47-53) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Evasion Rating", statOrder = { 1570 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(54-60) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(31-60) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Evasion Rating", statOrder = { 1570 }, level = 45, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(61-90) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Evasion Rating", statOrder = { 1570 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(91-120) to Evasion Rating" }, } }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Evasion Rating", statOrder = { 1570 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-150) to Evasion Rating" }, } }, + ["HellscapeUpsideEnergyShieldGlovesBoots1_"] = { type = "ScourgeUpside", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(8-9) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldGlovesBoots2__"] = { type = "ScourgeUpside", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1581 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-11) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1581 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(12-13) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldGlovesBoots4"] = { type = "ScourgeUpside", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1581 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(14-15) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldHelmetShield1_"] = { type = "ScourgeUpside", affix = "", "+(11-12) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(13-14) to maximum Energy Shield", statOrder = { 1581 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(13-14) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(15-16) to maximum Energy Shield", statOrder = { 1581 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-16) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(17-18) to maximum Energy Shield", statOrder = { 1581 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(17-18) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(15-18) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-18) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldBodyArmour2_"] = { type = "ScourgeUpside", affix = "", "+(19-22) to maximum Energy Shield", statOrder = { 1581 }, level = 45, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(19-22) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldBodyArmour3_"] = { type = "ScourgeUpside", affix = "", "+(23-26) to maximum Energy Shield", statOrder = { 1581 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(23-26) to maximum Energy Shield" }, } }, + ["HellscapeUpsideEnergyShieldBodyArmour4"] = { type = "ScourgeUpside", affix = "", "+(27-30) to maximum Energy Shield", statOrder = { 1581 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(27-30) to maximum Energy Shield" }, } }, + ["HellscapeUpsidePhysicalDamageTakenAsFirePercent3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "4% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["HellscapeUpsidePhysicalDamageTakenAsFirePercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "5% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["HellscapeUpsidePhysicalDamageTakenAsCold3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "4% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["HellscapeUpsidePhysicalDamageTakenAsCold4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "5% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent3_"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "4% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "5% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["HellscapeUpsidePhysicalDamageTakenAsChaos3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "4% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["HellscapeUpsidePhysicalDamageTakenAsChaos4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "5% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["HellscapeUpsideBaseFreezeDurationOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(31-35)% reduced Freeze Duration on you" }, } }, + ["HellscapeUpsideBaseFreezeDurationOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Freeze Duration on you", statOrder = { 1897 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, + ["HellscapeUpsideChillEffectivenessOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Chill on you", statOrder = { 1668 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(31-35)% reduced Effect of Chill on you" }, } }, + ["HellscapeUpsideChillEffectivenessOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Chill on you", statOrder = { 1668 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(36-40)% reduced Effect of Chill on you" }, } }, + ["HellscapeUpsideReducedShockEffectOnSelf3"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(31-35)% reduced Effect of Shock on you" }, } }, + ["HellscapeUpsideReducedShockEffectOnSelf4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Shock on you", statOrder = { 10164 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-40)% reduced Effect of Shock on you" }, } }, + ["HellscapeUpsideReducedCurseEffect3"] = { type = "ScourgeUpside", affix = "", "(16-20)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(16-20)% reduced Effect of Curses on you" }, } }, + ["HellscapeUpsideReducedCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(21-25)% reduced Effect of Curses on you", statOrder = { 2193 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(21-25)% reduced Effect of Curses on you" }, } }, + ["HellscapeUpsideCannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks1"] = { type = "ScourgeUpside", affix = "", "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", statOrder = { 5508 }, level = 45, group = "CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, tradeHashes = { [736820284] = { "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you" }, } }, + ["HellscapeUpsideReducedBurnDuration3__"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(31-35)% reduced Ignite Duration on you" }, } }, + ["HellscapeUpsideReducedBurnDuration4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Ignite Duration on you", statOrder = { 1898 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, + ["HellscapeUpsideChanceToAvoidBleeding2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 45, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(26-30)% chance to Avoid Bleeding" }, } }, + ["HellscapeUpsideChanceToAvoidBleeding3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(31-35)% chance to Avoid Bleeding" }, } }, + ["HellscapeUpsideChanceToAvoidBleeding4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(36-40)% chance to Avoid Bleeding" }, } }, + ["HellscapeUpsideChillEnemiesWhenHit3"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 4 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3174 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 4 seconds when Hit, reducing their Action Speed by 30%" }, } }, + ["HellscapeUpsideChillEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 5 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3174 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 5 seconds when Hit, reducing their Action Speed by 30%" }, } }, + ["HellscapeUpsideDamageTakenGainedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(7-8)% of Damage taken Recouped as Life" }, } }, + ["HellscapeUpsideDamageTakenGainedAsLife3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(9-10)% of Damage taken Recouped as Life" }, } }, + ["HellscapeUpsideDamageTakenGainedAsLife4"] = { type = "ScourgeUpside", affix = "", "(11-12)% of Damage taken Recouped as Life", statOrder = { 6192 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(11-12)% of Damage taken Recouped as Life" }, } }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h2__"] = { type = "ScourgeUpside", affix = "", "3% chance to deal Triple Damage", statOrder = { 5053 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "3% chance to deal Triple Damage" }, } }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h3__"] = { type = "ScourgeUpside", affix = "", "4% chance to deal Triple Damage", statOrder = { 5053 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "4% chance to deal Triple Damage" }, } }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h4__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 5053 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "5% chance to deal Triple Damage" }, } }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h2__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 5053 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "5% chance to deal Triple Damage" }, } }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h3_"] = { type = "ScourgeUpside", affix = "", "6% chance to deal Triple Damage", statOrder = { 5053 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "6% chance to deal Triple Damage" }, } }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h4"] = { type = "ScourgeUpside", affix = "", "7% chance to deal Triple Damage", statOrder = { 5053 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [2445189705] = { "7% chance to deal Triple Damage" }, } }, + ["HellscapeUpsideOnslaughtWhenHitForDuration2"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 2 seconds when Hit", statOrder = { 2861 }, level = 45, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 2 seconds when Hit" }, } }, + ["HellscapeUpsideOnslaughtWhenHitForDuration3"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 3 seconds when Hit", statOrder = { 2861 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 3 seconds when Hit" }, } }, + ["HellscapeUpsideOnslaughtWhenHitForDuration4"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 4 seconds when Hit", statOrder = { 2861 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 4 seconds when Hit" }, } }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit2"] = { type = "ScourgeUpside", affix = "", "Deal (8-11)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3823 }, level = 45, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3643913768] = { "Deal (8-11)% of your maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit3"] = { type = "ScourgeUpside", affix = "", "Deal (12-15)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3823 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3643913768] = { "Deal (12-15)% of your maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit4"] = { type = "ScourgeUpside", affix = "", "Deal (16-19)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3823 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3643913768] = { "Deal (16-19)% of your maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, + ["HellscapeUpsideConsecrateGroundFor3SecondsWhenHit1"] = { type = "ScourgeUpside", affix = "", "Create Consecrated Ground when Hit, lasting 8 seconds", statOrder = { 3589 }, level = 45, group = "ConsecrateGroundFor3SecondsWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [1968872681] = { "Create Consecrated Ground when Hit, lasting 8 seconds" }, } }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h2"] = { type = "ScourgeUpside", affix = "", "5% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "5% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h3"] = { type = "ScourgeUpside", affix = "", "6% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "6% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h4___"] = { type = "ScourgeUpside", affix = "", "7% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "7% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h2_"] = { type = "ScourgeUpside", affix = "", "8% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "8% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h3_"] = { type = "ScourgeUpside", affix = "", "9% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "9% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h4"] = { type = "ScourgeUpside", affix = "", "10% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "10% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["HellscapeUpsideElusiveEffect2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Elusive Effect", statOrder = { 6437 }, level = 45, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(12-14)% increased Elusive Effect" }, } }, + ["HellscapeUpsideElusiveEffect3___"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Elusive Effect", statOrder = { 6437 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(15-17)% increased Elusive Effect" }, } }, + ["HellscapeUpsideElusiveEffect4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Elusive Effect", statOrder = { 6437 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(18-20)% increased Elusive Effect" }, } }, + ["HellscapeUpsideBasePenetrateElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% of Enemy Elemental Resistances", statOrder = { 3595 }, level = 45, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates 3% of Enemy Elemental Resistances" }, } }, + ["HellscapeUpsideBasePenetrateElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% of Enemy Elemental Resistances", statOrder = { 3595 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates 4% of Enemy Elemental Resistances" }, } }, + ["HellscapeUpsideBasePenetrateElementalResistances4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% of Enemy Elemental Resistances", statOrder = { 3595 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates 5% of Enemy Elemental Resistances" }, } }, + ["HellscapeUpsideMinimumEnduranceCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Endurance Charges", statOrder = { 1826 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, + ["HellscapeUpsideMinimumPowerCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Power Charges", statOrder = { 1836 }, level = 68, group = "MinimumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "power_charge" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, } }, + ["HellscapeUpsideMinimumFrenzyCharges1___"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Frenzy Charges", statOrder = { 1831 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, } }, + ["HellscapeUpsideCannotBeSlowedBelowValue3"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (75-79)% of base value", statOrder = { 3231 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [770490590] = { "Action Speed cannot be modified to below (75-79)% of base value" }, } }, + ["HellscapeUpsideCannotBeSlowedBelowValue4_"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (70-74)% of base value", statOrder = { 3231 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, tradeHashes = { [770490590] = { "Action Speed cannot be modified to below (70-74)% of base value" }, } }, + ["HellscapeUpsideMonsterNemesisOndarsGuile1__"] = { type = "ScourgeUpside", affix = "", "Arrow Dancing", statOrder = { 10971 }, level = 68, group = "MonsterNemesisOndarsGuile", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2606808909] = { "Arrow Dancing" }, } }, + ["HellscapeUpsideConduit1"] = { type = "ScourgeUpside", affix = "", "Conduit", statOrder = { 10940 }, level = 68, group = "Conduit", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, + ["HellscapeUpsideIronReflexes1__"] = { type = "ScourgeUpside", affix = "", "Iron Reflexes", statOrder = { 10959 }, level = 68, group = "IronReflexes", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["HellscapeUpsideUnwaveringStance1"] = { type = "ScourgeUpside", affix = "", "Unwavering Stance", statOrder = { 10988 }, level = 68, group = "UnwaveringStance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["HellscapeUpsideEternalYouth1_"] = { type = "ScourgeUpside", affix = "", "Eternal Youth", statOrder = { 10949 }, level = 68, group = "EternalYouth", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, + ["HellscapeUpsideWindDancer1"] = { type = "ScourgeUpside", affix = "", "Wind Dancer", statOrder = { 10993 }, level = 68, group = "WindDancer", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [4170338365] = { "Wind Dancer" }, } }, + ["HellscapeUpsideGlancingBlows1"] = { type = "ScourgeUpside", affix = "", "Glancing Blows", statOrder = { 10954 }, level = 68, group = "GlancingBlows", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, + ["HellscapeUpsideSacredBastion1_"] = { type = "ScourgeUpside", affix = "", "Imbalanced Guard", statOrder = { 10977 }, level = 68, group = "SacredBastion", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3868073741] = { "Imbalanced Guard" }, } }, + ["HellscapeUpsideManaShield1_"] = { type = "ScourgeUpside", affix = "", "Mind Over Matter", statOrder = { 10963 }, level = 68, group = "ManaShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [373964381] = { "Mind Over Matter" }, } }, + ["HellscapeUpsideWickedWard1"] = { type = "ScourgeUpside", affix = "", "Wicked Ward", statOrder = { 10992 }, level = 68, group = "WickedWard", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1109343199] = { "Wicked Ward" }, } }, + ["HellscapeUpsideZealotsOath1"] = { type = "ScourgeUpside", affix = "", "Zealot's Oath", statOrder = { 10974 }, level = 68, group = "ZealotsOath", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [632761194] = { "Zealot's Oath" }, } }, + ["HellscapeUpsideBlindEnemiesWhenHit2"] = { type = "ScourgeUpside", affix = "", "(11-20)% chance to Blind Enemies when they Hit you", statOrder = { 5292 }, level = 45, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [26216403] = { "(11-20)% chance to Blind Enemies when they Hit you" }, } }, + ["HellscapeUpsideBlindEnemiesWhenHit3_"] = { type = "ScourgeUpside", affix = "", "(21-30)% chance to Blind Enemies when they Hit you", statOrder = { 5292 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [26216403] = { "(21-30)% chance to Blind Enemies when they Hit you" }, } }, + ["HellscapeUpsideBlindEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "(31-40)% chance to Blind Enemies when they Hit you", statOrder = { 5292 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [26216403] = { "(31-40)% chance to Blind Enemies when they Hit you" }, } }, + ["HellscapeUpsideGuardSkillCooldownRecovery3"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (14-16)% increased Cooldown Recovery Rate", statOrder = { 7015 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150300096] = { "Guard Skills have (14-16)% increased Cooldown Recovery Rate" }, } }, + ["HellscapeUpsideGuardSkillCooldownRecovery4___"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (17-19)% increased Cooldown Recovery Rate", statOrder = { 7015 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150300096] = { "Guard Skills have (17-19)% increased Cooldown Recovery Rate" }, } }, + ["HellscapeUpsideMinionChanceToTauntOnHit2___"] = { type = "ScourgeUpside", affix = "", "Minions have (11-13)% chance to Taunt on Hit with Attacks", statOrder = { 3467 }, level = 45, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (11-13)% chance to Taunt on Hit with Attacks" }, } }, + ["HellscapeUpsideMinionChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "Minions have (14-16)% chance to Taunt on Hit with Attacks", statOrder = { 3467 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (14-16)% chance to Taunt on Hit with Attacks" }, } }, + ["HellscapeUpsideMinionChanceToTauntOnHit4"] = { type = "ScourgeUpside", affix = "", "Minions have (17-19)% chance to Taunt on Hit with Attacks", statOrder = { 3467 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [2911442053] = { "Minions have (17-19)% chance to Taunt on Hit with Attacks" }, } }, + ["HellscapeUpsideIncreaseSocketedSupportGemQuality3"] = { type = "ScourgeUpside", affix = "", "+(9-10)% to Quality of Socketed Support Gems", statOrder = { 214 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(9-10)% to Quality of Socketed Support Gems" }, } }, + ["HellscapeUpsideIncreaseSocketedSupportGemQuality4_"] = { type = "ScourgeUpside", affix = "", "+(11-12)% to Quality of Socketed Support Gems", statOrder = { 214 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(11-12)% to Quality of Socketed Support Gems" }, } }, + ["HellscapeUpsideGainManaAsExtraEnergyShield3"] = { type = "ScourgeUpside", affix = "", "Gain 5% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2198 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain 5% of Maximum Mana as Extra Maximum Energy Shield" }, } }, + ["HellscapeUpsideGainManaAsExtraEnergyShield4_"] = { type = "ScourgeUpside", affix = "", "Gain 6% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2198 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain 6% of Maximum Mana as Extra Maximum Energy Shield" }, } }, + ["HellscapeUpsideAreaOfEffect1_"] = { type = "ScourgeUpside", affix = "", "10% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "10% increased Area of Effect" }, } }, + ["HellscapeUpsideAreaOfEffect2"] = { type = "ScourgeUpside", affix = "", "11% increased Area of Effect", statOrder = { 1903 }, level = 45, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "11% increased Area of Effect" }, } }, + ["HellscapeUpsideAreaOfEffect3____"] = { type = "ScourgeUpside", affix = "", "12% increased Area of Effect", statOrder = { 1903 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "12% increased Area of Effect" }, } }, + ["HellscapeUpsideAreaOfEffect4"] = { type = "ScourgeUpside", affix = "", "13% increased Area of Effect", statOrder = { 1903 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "13% increased Area of Effect" }, } }, + ["HellscapeUpsideProjectileSpeed1"] = { type = "ScourgeUpside", affix = "", "(14-16)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(14-16)% increased Projectile Speed" }, } }, + ["HellscapeUpsideProjectileSpeed2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Projectile Speed", statOrder = { 1819 }, level = 45, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(17-19)% increased Projectile Speed" }, } }, + ["HellscapeUpsideProjectileSpeed3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Projectile Speed", statOrder = { 1819 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(20-22)% increased Projectile Speed" }, } }, + ["HellscapeUpsideProjectileSpeed4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Projectile Speed", statOrder = { 1819 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(23-25)% increased Projectile Speed" }, } }, + ["HellscapeUpsideMinionLife2___"] = { type = "ScourgeUpside", affix = "", "Minions have (10-11)% increased maximum Life", statOrder = { 1789 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-11)% increased maximum Life" }, } }, + ["HellscapeUpsideMinionLife3"] = { type = "ScourgeUpside", affix = "", "Minions have (12-13)% increased maximum Life", statOrder = { 1789 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (12-13)% increased maximum Life" }, } }, + ["HellscapeUpsideMinionLife4_"] = { type = "ScourgeUpside", affix = "", "Minions have (14-15)% increased maximum Life", statOrder = { 1789 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (14-15)% increased maximum Life" }, } }, + ["HellscapeUpsideFireResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(18-20)% to Fire Resistance" }, } }, + ["HellscapeUpsideFireResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Fire Resistance", statOrder = { 1648 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(23-25)% to Fire Resistance" }, } }, + ["HellscapeUpsideFireResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Fire Resistance", statOrder = { 1648 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(28-30)% to Fire Resistance" }, } }, + ["HellscapeUpsideFireResistance4__"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Fire Resistance", statOrder = { 1648 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(33-35)% to Fire Resistance" }, } }, + ["HellscapeUpsideColdResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(18-20)% to Cold Resistance" }, } }, + ["HellscapeUpsideColdResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Cold Resistance", statOrder = { 1654 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-25)% to Cold Resistance" }, } }, + ["HellscapeUpsideColdResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Cold Resistance", statOrder = { 1654 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(28-30)% to Cold Resistance" }, } }, + ["HellscapeUpsideColdResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Cold Resistance", statOrder = { 1654 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(33-35)% to Cold Resistance" }, } }, + ["HellscapeUpsideLightningResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(18-20)% to Lightning Resistance" }, } }, + ["HellscapeUpsideLightningResistance2__"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Lightning Resistance", statOrder = { 1659 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(23-25)% to Lightning Resistance" }, } }, + ["HellscapeUpsideLightningResistance3"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Lightning Resistance", statOrder = { 1659 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(28-30)% to Lightning Resistance" }, } }, + ["HellscapeUpsideLightningResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Lightning Resistance", statOrder = { 1659 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(33-35)% to Lightning Resistance" }, } }, + ["HellscapeUpsideElementalResistance1__"] = { type = "ScourgeUpside", affix = "", "+6% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+6% to all Elemental Resistances" }, } }, + ["HellscapeUpsideElementalResistance2"] = { type = "ScourgeUpside", affix = "", "+8% to all Elemental Resistances", statOrder = { 1642 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+8% to all Elemental Resistances" }, } }, + ["HellscapeUpsideElementalResistance3"] = { type = "ScourgeUpside", affix = "", "+10% to all Elemental Resistances", statOrder = { 1642 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+10% to all Elemental Resistances" }, } }, + ["HellscapeUpsideElementalResistance4_"] = { type = "ScourgeUpside", affix = "", "+12% to all Elemental Resistances", statOrder = { 1642 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+12% to all Elemental Resistances" }, } }, + ["HellscapeUpsideChaosResistance1_"] = { type = "ScourgeUpside", affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1664 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, + ["HellscapeUpsideChaosResistance2_"] = { type = "ScourgeUpside", affix = "", "+(14-17)% to Chaos Resistance", statOrder = { 1664 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(14-17)% to Chaos Resistance" }, } }, + ["HellscapeUpsideChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "+(18-21)% to Chaos Resistance", statOrder = { 1664 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(18-21)% to Chaos Resistance" }, } }, + ["HellscapeUpsideChaosResistance4_"] = { type = "ScourgeUpside", affix = "", "+(22-25)% to Chaos Resistance", statOrder = { 1664 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, + ["HellscapeUpsideMinionElementalResistance2"] = { type = "ScourgeUpside", affix = "", "Minions have +(10-11)% to all Elemental Resistances", statOrder = { 2946 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-11)% to all Elemental Resistances" }, } }, + ["HellscapeUpsideMinionElementalResistance3"] = { type = "ScourgeUpside", affix = "", "Minions have +(12-13)% to all Elemental Resistances", statOrder = { 2946 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(12-13)% to all Elemental Resistances" }, } }, + ["HellscapeUpsideMinionElementalResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-15)% to all Elemental Resistances", statOrder = { 2946 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(14-15)% to all Elemental Resistances" }, } }, + ["HellscapeUpsideMinionChaosResistance2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-17)% to Chaos Resistance", statOrder = { 2947 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(14-17)% to Chaos Resistance" }, } }, + ["HellscapeUpsideMinionChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "Minions have +(18-21)% to Chaos Resistance", statOrder = { 2947 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(18-21)% to Chaos Resistance" }, } }, + ["HellscapeUpsideMinionChaosResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(22-25)% to Chaos Resistance", statOrder = { 2947 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(22-25)% to Chaos Resistance" }, } }, + ["HellscapeUpsideStunAndBlockRecovery2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 45, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } }, + ["HellscapeUpsideStunAndBlockRecovery3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } }, + ["HellscapeUpsideStunAndBlockRecovery4__"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Chilled", "(26-30)% chance to Avoid being Frozen", statOrder = { 1867, 1868 }, level = 45, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(26-30)% chance to Avoid being Chilled" }, [1514829491] = { "(26-30)% chance to Avoid being Frozen" }, } }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Chilled", "(31-35)% chance to Avoid being Frozen", statOrder = { 1867, 1868 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(31-35)% chance to Avoid being Chilled" }, [1514829491] = { "(31-35)% chance to Avoid being Frozen" }, } }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Chilled", "(36-40)% chance to Avoid being Frozen", statOrder = { 1867, 1868 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(36-40)% chance to Avoid being Chilled" }, [1514829491] = { "(36-40)% chance to Avoid being Frozen" }, } }, + ["HellscapeUpsideChanceToAvoidShock2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 45, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(26-30)% chance to Avoid being Shocked" }, } }, + ["HellscapeUpsideChanceToAvoidShock3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(31-35)% chance to Avoid being Shocked" }, } }, + ["HellscapeUpsideChanceToAvoidShock4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-40)% chance to Avoid being Shocked" }, } }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 45, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(26-30)% chance to Avoid being Ignited" }, } }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(31-35)% chance to Avoid being Ignited" }, } }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-40)% chance to Avoid being Ignited" }, } }, + ["HellscapeUpsideChanceToAvoidPoison2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 45, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(26-30)% chance to Avoid being Poisoned" }, } }, + ["HellscapeUpsideChanceToAvoidPoison3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(31-35)% chance to Avoid being Poisoned" }, } }, + ["HellscapeUpsideChanceToAvoidPoison4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(36-40)% chance to Avoid being Poisoned" }, } }, + ["HellscapeUpsideChanceToAvoidStun2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 45, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, + ["HellscapeUpsideChanceToAvoidStun3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, + ["HellscapeUpsideChanceToAvoidStun4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-25)% chance to Avoid being Stunned" }, } }, + ["HellscapeUpsideAvoidElementalStatusAilments2__"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(17-19)% chance to Avoid Elemental Ailments" }, } }, + ["HellscapeUpsideAvoidElementalStatusAilments3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-22)% chance to Avoid Elemental Ailments" }, } }, + ["HellscapeUpsideAvoidElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(23-25)% chance to Avoid Elemental Ailments" }, } }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments2"] = { type = "ScourgeUpside", affix = "", "(17-19)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(17-19)% reduced Elemental Ailment Duration on you" }, } }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments3"] = { type = "ScourgeUpside", affix = "", "(20-22)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-22)% reduced Elemental Ailment Duration on you" }, } }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(23-25)% reduced Elemental Ailment Duration on you" }, } }, + ["HellscapeUpsideGainLifeOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Life gained when you Block", statOrder = { 1780 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(31-40) Life gained when you Block" }, } }, + ["HellscapeUpsideGainLifeOnBlock3_"] = { type = "ScourgeUpside", affix = "", "(41-50) Life gained when you Block", statOrder = { 1780 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-50) Life gained when you Block" }, } }, + ["HellscapeUpsideGainLifeOnBlock4___"] = { type = "ScourgeUpside", affix = "", "(51-60) Life gained when you Block", statOrder = { 1780 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(51-60) Life gained when you Block" }, } }, + ["HellscapeUpsideGainManaOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Mana gained when you Block", statOrder = { 1781 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-40) Mana gained when you Block" }, } }, + ["HellscapeUpsideGainManaOnBlock3"] = { type = "ScourgeUpside", affix = "", "(41-50) Mana gained when you Block", statOrder = { 1781 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(41-50) Mana gained when you Block" }, } }, + ["HellscapeUpsideGainManaOnBlock4"] = { type = "ScourgeUpside", affix = "", "(51-60) Mana gained when you Block", statOrder = { 1781 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(51-60) Mana gained when you Block" }, } }, + ["HellscapeUpsideGainEnergyShieldOnBlock2"] = { type = "ScourgeUpside", affix = "", "Gain (31-40) Energy Shield when you Block", statOrder = { 1782 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (31-40) Energy Shield when you Block" }, } }, + ["HellscapeUpsideGainEnergyShieldOnBlock3___"] = { type = "ScourgeUpside", affix = "", "Gain (41-50) Energy Shield when you Block", statOrder = { 1782 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (41-50) Energy Shield when you Block" }, } }, + ["HellscapeUpsideGainEnergyShieldOnBlock4_"] = { type = "ScourgeUpside", affix = "", "Gain (51-60) Energy Shield when you Block", statOrder = { 1782 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (51-60) Energy Shield when you Block" }, } }, + ["HellscapeUpsideBlockAttacks1"] = { type = "ScourgeUpside", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 1, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-3)% Chance to Block Attack Damage" }, } }, + ["HellscapeUpsideBlockAttacks2_"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, + ["HellscapeUpsideBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(6-7)% Chance to Block Attack Damage" }, } }, + ["HellscapeUpsideBlockAttacks4__"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(8-9)% Chance to Block Attack Damage" }, } }, + ["HellscapeUpsideBlockSpells2"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(4-5)% Chance to Block Spell Damage" }, } }, + ["HellscapeUpsideBlockSpells3_"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(6-7)% Chance to Block Spell Damage" }, } }, + ["HellscapeUpsideBlockSpells4"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "+(8-9)% Chance to Block Spell Damage" }, } }, + ["HellscapeUpsideMinionBlockAttacks2"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Attack Damage", statOrder = { 2937 }, level = 45, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(11-13)% Chance to Block Attack Damage" }, } }, + ["HellscapeUpsideMinionBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Attack Damage", statOrder = { 2937 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(14-16)% Chance to Block Attack Damage" }, } }, + ["HellscapeUpsideMinionBlockAttacks4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Attack Damage", statOrder = { 2937 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(17-19)% Chance to Block Attack Damage" }, } }, + ["HellscapeUpsideMinionBlockSpells2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Spell Damage", statOrder = { 2938 }, level = 45, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +(11-13)% Chance to Block Spell Damage" }, } }, + ["HellscapeUpsideMinionBlockSpells3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Spell Damage", statOrder = { 2938 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +(14-16)% Chance to Block Spell Damage" }, } }, + ["HellscapeUpsideMinionBlockSpells4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Spell Damage", statOrder = { 2938 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, tradeHashes = { [2762046953] = { "Minions have +(17-19)% Chance to Block Spell Damage" }, } }, + ["HellscapeUpsideChanceToSuppressSpells2"] = { type = "ScourgeUpside", affix = "", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-6)% chance to Suppress Spell Damage" }, } }, + ["HellscapeUpsideChanceToSuppressSpells3_"] = { type = "ScourgeUpside", affix = "", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(7-8)% chance to Suppress Spell Damage" }, } }, + ["HellscapeUpsideChanceToSuppressSpells4_"] = { type = "ScourgeUpside", affix = "", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(9-10)% chance to Suppress Spell Damage" }, } }, + ["HellscapeUpsideAttackerTakesDamageNoRange1_"] = { type = "ScourgeUpside", affix = "", "Reflects (20-40) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (20-40) Physical Damage to Melee Attackers" }, } }, + ["HellscapeUpsideAttackerTakesDamageNoRange2_"] = { type = "ScourgeUpside", affix = "", "Reflects (41-60) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (41-60) Physical Damage to Melee Attackers" }, } }, + ["HellscapeUpsideAttackerTakesDamageNoRange3"] = { type = "ScourgeUpside", affix = "", "Reflects (61-80) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (61-80) Physical Damage to Melee Attackers" }, } }, + ["HellscapeUpsideAttackerTakesDamageNoRange4"] = { type = "ScourgeUpside", affix = "", "Reflects (81-100) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (81-100) Physical Damage to Melee Attackers" }, } }, + ["HellscapeUpsideLocalColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (18-23) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-13) to (18-23) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (28-33) Cold Damage", statOrder = { 1395 }, level = 45, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-24) to (28-33) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (27-33) to (38-43) Cold Damage", statOrder = { 1395 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (27-33) to (38-43) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (37-43) to (51-57) Cold Damage", statOrder = { 1395 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-43) to (51-57) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (16-20) to (30-35) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-20) to (30-35) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamageRanged2_____"] = { type = "ScourgeUpside", affix = "", "Adds (24-29) to (41-46) Cold Damage", statOrder = { 1395 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (24-29) to (41-46) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (31-36) to (50-57) Cold Damage", statOrder = { 1395 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-36) to (50-57) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (37-45) to (60-67) Cold Damage", statOrder = { 1395 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-45) to (60-67) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (35-39) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-24) to (35-39) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamage2h2_____"] = { type = "ScourgeUpside", affix = "", "Adds (30-35) to (53-61) Cold Damage", statOrder = { 1395 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (30-35) to (53-61) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (41-48) to (63-72) Cold Damage", statOrder = { 1395 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-48) to (63-72) Cold Damage" }, } }, + ["HellscapeUpsideLocalColdDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (50-61) to (75-87) Cold Damage", statOrder = { 1395 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (50-61) to (75-87) Cold Damage" }, } }, + ["HellscapeUpsideLocalFireDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (11-14) to (23-27) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-14) to (23-27) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (21-26) to (31-38) Fire Damage", statOrder = { 1386 }, level = 45, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (21-26) to (31-38) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamage1h3___"] = { type = "ScourgeUpside", affix = "", "Adds (29-35) to (43-48) Fire Damage", statOrder = { 1386 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (29-35) to (43-48) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (40-45) to (56-62) Fire Damage", statOrder = { 1386 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (40-45) to (56-62) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (18-22) to (35-39) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (18-22) to (35-39) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (27-34) to (46-53) Fire Damage", statOrder = { 1386 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (27-34) to (46-53) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (36-41) to (56-64) Fire Damage", statOrder = { 1386 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (36-41) to (56-64) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamageRanged4______"] = { type = "ScourgeUpside", affix = "", "Adds (43-57) to (66-72) Fire Damage", statOrder = { 1386 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (43-57) to (66-72) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (22-26) to (38-44) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (22-26) to (38-44) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamage2h2__"] = { type = "ScourgeUpside", affix = "", "Adds (34-43) to (59-67) Fire Damage", statOrder = { 1386 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (34-43) to (59-67) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamage2h3______"] = { type = "ScourgeUpside", affix = "", "Adds (48-56) to (69-78) Fire Damage", statOrder = { 1386 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (48-56) to (69-78) Fire Damage" }, } }, + ["HellscapeUpsideLocalFireDamage2h4______"] = { type = "ScourgeUpside", affix = "", "Adds (59-72) to (80-91) Fire Damage", statOrder = { 1386 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (59-72) to (80-91) Fire Damage" }, } }, + ["HellscapeUpsideLocalLightningDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (1-3) to (40-45) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (40-45) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (54-68) Lightning Damage", statOrder = { 1406 }, level = 45, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-4) to (54-68) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (76-90) Lightning Damage", statOrder = { 1406 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-6) to (76-90) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (98-111) Lightning Damage", statOrder = { 1406 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-8) to (98-111) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (1-5) to (60-66) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-5) to (60-66) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamageRanged2_"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (81-102) Lightning Damage", statOrder = { 1406 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-6) to (81-102) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (4-9) to (114-134) Lightning Damage", statOrder = { 1406 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-9) to (114-134) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamageRanged4_"] = { type = "ScourgeUpside", affix = "", "Adds (5-12) to (147-166) Lightning Damage", statOrder = { 1406 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-12) to (147-166) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamage2h1__"] = { type = "ScourgeUpside", affix = "", "Adds (2-6) to (74-86) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (74-86) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (103-129) Lightning Damage", statOrder = { 1406 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-8) to (103-129) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (5-10) to (145-170) Lightning Damage", statOrder = { 1406 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-10) to (145-170) Lightning Damage" }, } }, + ["HellscapeUpsideLocalLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (6-15) to (186-211) Lightning Damage", statOrder = { 1406 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (6-15) to (186-211) Lightning Damage" }, } }, + ["HellscapeUpsideLocalPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (1-2) to (6-7) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (6-7) Physical Damage" }, } }, + ["HellscapeUpsideLocalPhysicalDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (3-4) to (8-9) Physical Damage", statOrder = { 1300 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (8-9) Physical Damage" }, } }, + ["HellscapeUpsideLocalPhysicalDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (10-11) Physical Damage", statOrder = { 1300 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-6) to (10-11) Physical Damage" }, } }, + ["HellscapeUpsideLocalPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (7-8) to (12-13) Physical Damage", statOrder = { 1300 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (7-8) to (12-13) Physical Damage" }, } }, + ["HellscapeUpsideLocalPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (11-13) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-4) to (11-13) Physical Damage" }, } }, + ["HellscapeUpsideLocalPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (6-8) to (15-17) Physical Damage", statOrder = { 1300 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-8) to (15-17) Physical Damage" }, } }, + ["HellscapeUpsideLocalPhysicalDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (19-21) Physical Damage", statOrder = { 1300 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-12) to (19-21) Physical Damage" }, } }, + ["HellscapeUpsideLocalPhysicalDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (14-16) to (23-25) Physical Damage", statOrder = { 1300 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-16) to (23-25) Physical Damage" }, } }, + ["HellscapeUpsideLocalChaosDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (13-17) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-6) to (13-17) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-21) Chaos Damage", statOrder = { 1414 }, level = 45, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-9) to (19-21) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamage1h3____"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (23-27) Chaos Damage", statOrder = { 1414 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-12) to (23-27) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (29-33) Chaos Damage", statOrder = { 1414 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (13-15) to (29-33) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-25) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-9) to (19-25) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (10-14) to (28-31) Chaos Damage", statOrder = { 1414 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-14) to (28-31) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (15-19) to (34-40) Chaos Damage", statOrder = { 1414 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (15-19) to (34-40) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (20-22) to (43-49) Chaos Damage", statOrder = { 1414 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (20-22) to (43-49) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (10-11) to (25-32) Chaos Damage", statOrder = { 1414 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-11) to (25-32) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-17) to (36-40) Chaos Damage", statOrder = { 1414 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (13-17) to (36-40) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamage2h3_____"] = { type = "ScourgeUpside", affix = "", "Adds (19-23) to (44-51) Chaos Damage", statOrder = { 1414 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-23) to (44-51) Chaos Damage" }, } }, + ["HellscapeUpsideLocalChaosDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (25-29) to (55-63) Chaos Damage", statOrder = { 1414 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (25-29) to (55-63) Chaos Damage" }, } }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent1"] = { type = "ScourgeUpside", affix = "", "(8-12)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(8-12)% increased Elemental Damage with Attack Skills" }, } }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent2_"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 45, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(13-16)% increased Elemental Damage with Attack Skills" }, } }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent3"] = { type = "ScourgeUpside", affix = "", "(17-20)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(17-20)% increased Elemental Damage with Attack Skills" }, } }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent4"] = { type = "ScourgeUpside", affix = "", "(21-24)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-24)% increased Elemental Damage with Attack Skills" }, } }, + ["HellscapeUpsideSpellAddedColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-12) to (25-27) Cold Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Cold Damage to Spells", statOrder = { 1429 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-15) to (28-32) Cold Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedColdDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Cold Damage to Spells", statOrder = { 1429 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-18) to (33-36) Cold Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedColdDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Cold Damage to Spells", statOrder = { 1429 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (19-21) to (37-40) Cold Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-18) to (37-40) Cold Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedColdDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Cold Damage to Spells", statOrder = { 1429 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (19-22) to (42-48) Cold Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedColdDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Cold Damage to Spells", statOrder = { 1429 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (23-27) to (49-54) Cold Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedColdDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Cold Damage to Spells", statOrder = { 1429 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (28-31) to (55-60) Cold Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedFireDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (9-12) to (25-27) Fire Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Fire Damage to Spells", statOrder = { 1428 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-15) to (28-32) Fire Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedFireDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Fire Damage to Spells", statOrder = { 1428 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (16-18) to (33-36) Fire Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Fire Damage to Spells", statOrder = { 1428 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-21) to (37-40) Fire Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedFireDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (37-40) Fire Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedFireDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Fire Damage to Spells", statOrder = { 1428 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-22) to (42-48) Fire Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedFireDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Fire Damage to Spells", statOrder = { 1428 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-27) to (49-54) Fire Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedFireDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Fire Damage to Spells", statOrder = { 1428 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (28-31) to (55-60) Fire Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedLightningDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (4-6) to (31-34) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-6) to (31-34) Lightning Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (36-39) Lightning Damage to Spells", statOrder = { 1430 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-9) to (36-39) Lightning Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedLightningDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (42-45) Lightning Damage to Spells", statOrder = { 1430 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (10-12) to (42-45) Lightning Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedLightningDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (47-50) Lightning Damage to Spells", statOrder = { 1430 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (13-15) to (47-50) Lightning Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedLightningDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (6-9) to (46-51) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-9) to (46-51) Lightning Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (54-59) Lightning Damage to Spells", statOrder = { 1430 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (10-13) to (54-59) Lightning Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedLightningDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (15-18) to (63-67) Lightning Damage to Spells", statOrder = { 1430 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (15-18) to (63-67) Lightning Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (70-75) Lightning Damage to Spells", statOrder = { 1430 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (19-22) to (70-75) Lightning Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Physical Damage to Spells", statOrder = { 1427 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (9-12) to (25-27) Physical Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Physical Damage to Spells", statOrder = { 1427 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-15) to (28-32) Physical Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (32-36) Physical Damage to Spells", statOrder = { 1427 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-18) to (32-36) Physical Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (36-40) Physical Damage to Spells", statOrder = { 1427 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-21) to (36-40) Physical Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Physical Damage to Spells", statOrder = { 1427 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (37-40) Physical Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Physical Damage to Spells", statOrder = { 1427 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-22) to (42-48) Physical Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Physical Damage to Spells", statOrder = { 1427 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (23-27) to (49-54) Physical Damage to Spells" }, } }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Physical Damage to Spells", statOrder = { 1427 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (28-31) to (55-60) Physical Damage to Spells" }, } }, + ["HellscapeUpsideSpellDamage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-25)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Spell Damage", statOrder = { 1246 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(28-30)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Spell Damage", statOrder = { 1246 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(33-35)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage1h2b___"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Spell Damage", statOrder = { 1246 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-40)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(43-45)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(48-50)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage2h1___"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(34-40)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Spell Damage", statOrder = { 1246 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(41-47)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage2h2_"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Spell Damage", statOrder = { 1246 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(48-54)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Spell Damage", statOrder = { 1246 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-61)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(62-68)% increased Spell Damage" }, } }, + ["HellscapeUpsideSpellDamage2h4___"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-75)% increased Spell Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-25)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Cold Damage", statOrder = { 1390 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(28-30)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Cold Damage", statOrder = { 1390 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-35)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Cold Damage", statOrder = { 1390 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(38-40)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage1h3___"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Cold Damage", statOrder = { 1390 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(43-45)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Cold Damage", statOrder = { 1390 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(48-50)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(34-40)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Cold Damage", statOrder = { 1390 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-47)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Cold Damage", statOrder = { 1390 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(48-54)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Cold Damage", statOrder = { 1390 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-61)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Cold Damage", statOrder = { 1390 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(62-68)% increased Cold Damage" }, } }, + ["HellscapeUpsideColdDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Cold Damage", statOrder = { 1390 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-75)% increased Cold Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage1h1__"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-25)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Fire Damage", statOrder = { 1381 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(28-30)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage1h2___"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Fire Damage", statOrder = { 1381 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-35)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Fire Damage", statOrder = { 1381 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(38-40)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage1h3__"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Fire Damage", statOrder = { 1381 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(43-45)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Fire Damage", statOrder = { 1381 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(48-50)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(34-40)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage2h1b____"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Fire Damage", statOrder = { 1381 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-47)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage2h2__"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Fire Damage", statOrder = { 1381 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(48-54)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Fire Damage", statOrder = { 1381 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-61)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Fire Damage", statOrder = { 1381 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(62-68)% increased Fire Damage" }, } }, + ["HellscapeUpsideFireDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Fire Damage", statOrder = { 1381 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-75)% increased Fire Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-25)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage1h1b__"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Lightning Damage", statOrder = { 1401 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(28-30)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Lightning Damage", statOrder = { 1401 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(33-35)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage1h2b__"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Lightning Damage", statOrder = { 1401 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(38-40)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Lightning Damage", statOrder = { 1401 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(43-45)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Lightning Damage", statOrder = { 1401 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(48-50)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(34-40)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Lightning Damage", statOrder = { 1401 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(41-47)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Lightning Damage", statOrder = { 1401 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(48-54)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Lightning Damage", statOrder = { 1401 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-61)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Lightning Damage", statOrder = { 1401 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(62-68)% increased Lightning Damage" }, } }, + ["HellscapeUpsideLightningDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Lightning Damage", statOrder = { 1401 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-75)% increased Lightning Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(23-25)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(28-30)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage1h2__"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Global Physical Damage", statOrder = { 1254 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(33-35)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Global Physical Damage", statOrder = { 1254 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(38-40)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Global Physical Damage", statOrder = { 1254 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(43-45)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Global Physical Damage", statOrder = { 1254 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(48-50)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(34-40)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Global Physical Damage", statOrder = { 1254 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(41-47)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Global Physical Damage", statOrder = { 1254 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(48-54)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage2h2b__"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Global Physical Damage", statOrder = { 1254 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(55-61)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Global Physical Damage", statOrder = { 1254 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(62-68)% increased Global Physical Damage" }, } }, + ["HellscapeUpsidePhysicalDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Global Physical Damage", statOrder = { 1254 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(69-75)% increased Global Physical Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(23-25)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(28-30)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Elemental Damage", statOrder = { 2003 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-35)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Elemental Damage", statOrder = { 2003 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(38-40)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage1h3_"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Elemental Damage", statOrder = { 2003 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(43-45)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Elemental Damage", statOrder = { 2003 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(48-50)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(34-40)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(41-47)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Elemental Damage", statOrder = { 2003 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(48-54)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Elemental Damage", statOrder = { 2003 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(55-61)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Elemental Damage", statOrder = { 2003 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(62-68)% increased Elemental Damage" }, } }, + ["HellscapeUpsideElementalDamagePercentage2h4__"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Elemental Damage", statOrder = { 2003 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(69-75)% increased Elemental Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-25)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage1h1b_"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Chaos Damage", statOrder = { 1409 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(28-30)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Chaos Damage", statOrder = { 1409 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-35)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Chaos Damage", statOrder = { 1409 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(38-40)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Chaos Damage", statOrder = { 1409 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(43-45)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Chaos Damage", statOrder = { 1409 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(48-50)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(34-40)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Chaos Damage", statOrder = { 1409 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(41-47)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Chaos Damage", statOrder = { 1409 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(48-54)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage2h2b___"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Chaos Damage", statOrder = { 1409 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-61)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Chaos Damage", statOrder = { 1409 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(62-68)% increased Chaos Damage" }, } }, + ["HellscapeUpsideChaosDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Chaos Damage", statOrder = { 1409 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-75)% increased Chaos Damage" }, } }, + ["HellscapeUpsideMinionDamagePercentage1__"] = { type = "ScourgeUpside", affix = "", "Minions deal (8-9)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (8-9)% increased Damage" }, } }, + ["HellscapeUpsideMinionDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "Minions deal (10-11)% increased Damage", statOrder = { 1996 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-11)% increased Damage" }, } }, + ["HellscapeUpsideMinionDamagePercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions deal (12-13)% increased Damage", statOrder = { 1996 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (12-13)% increased Damage" }, } }, + ["HellscapeUpsideMinionDamagePercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions deal (14-15)% increased Damage", statOrder = { 1996 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-15)% increased Damage" }, } }, + ["HellscapeUpsideProjectileDamagePercentage1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(8-9)% increased Projectile Damage" }, } }, + ["HellscapeUpsideProjectileDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Projectile Damage", statOrder = { 2019 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-11)% increased Projectile Damage" }, } }, + ["HellscapeUpsideProjectileDamagePercentage3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Projectile Damage", statOrder = { 2019 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(12-13)% increased Projectile Damage" }, } }, + ["HellscapeUpsideProjectileDamagePercentage4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Projectile Damage", statOrder = { 2019 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(14-15)% increased Projectile Damage" }, } }, + ["HellscapeUpsideCriticalStrikeChance2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(17-19)% increased Global Critical Strike Chance" }, } }, + ["HellscapeUpsideCriticalStrikeChance3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-22)% increased Global Critical Strike Chance" }, } }, + ["HellscapeUpsideCriticalStrikeChance4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(23-25)% increased Global Critical Strike Chance" }, } }, + ["HellscapeUpsideCriticalStrikeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-19)% to Global Critical Strike Multiplier" }, } }, + ["HellscapeUpsideCriticalStrikeMultiplier3"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-22)% to Global Critical Strike Multiplier" }, } }, + ["HellscapeUpsideCriticalStrikeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(23-25)% to Global Critical Strike Multiplier" }, } }, + ["HellscapeUpsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(17-19)% increased Critical Strike Chance with Bows" }, } }, + ["HellscapeUpsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-22)% increased Critical Strike Chance with Bows" }, } }, + ["HellscapeUpsideCriticalStrikeChanceWithBows4_"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Critical Strike Chance with Bows", statOrder = { 1488 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(23-25)% increased Critical Strike Chance with Bows" }, } }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(17-19)% to Critical Strike Multiplier with Bows" }, } }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows3__"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(20-22)% to Critical Strike Multiplier with Bows" }, } }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(23-25)% to Critical Strike Multiplier with Bows" }, } }, + ["HellscapeUpsideFireDamageOverTimeMultiplier1h3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-13)% to Fire Damage over Time Multiplier" }, } }, + ["HellscapeUpsideFireDamageOverTimeMultiplier1h4__"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, } }, + ["HellscapeUpsideFireDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-19)% to Fire Damage over Time Multiplier" }, } }, + ["HellscapeUpsideFireDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(21-24)% to Fire Damage over Time Multiplier" }, } }, + ["HellscapeUpsideColdDamageOverTimeMultiplier1h3___"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-13)% to Cold Damage over Time Multiplier" }, } }, + ["HellscapeUpsideColdDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, } }, + ["HellscapeUpsideColdDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-19)% to Cold Damage over Time Multiplier" }, } }, + ["HellscapeUpsideColdDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(21-24)% to Cold Damage over Time Multiplier" }, } }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h3____"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-13)% to Physical Damage over Time Multiplier" }, } }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h3_"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-19)% to Physical Damage over Time Multiplier" }, } }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h4_"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(21-24)% to Physical Damage over Time Multiplier" }, } }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier1h3__"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-13)% to Chaos Damage over Time Multiplier" }, } }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier1h4___"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-19)% to Chaos Damage over Time Multiplier" }, } }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(21-24)% to Chaos Damage over Time Multiplier" }, } }, + ["HellscapeUpsideDamageOverTimeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(8-10)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(8-10)% to Damage over Time Multiplier" }, } }, + ["HellscapeUpsideDamageOverTimeMultiplier3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(11-13)% to Damage over Time Multiplier" }, } }, + ["HellscapeUpsideDamageOverTimeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(14-16)% to Damage over Time Multiplier" }, } }, + ["HellscapeUpsideIncreasedAttackSpeed1_"] = { type = "ScourgeUpside", affix = "", "4% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "4% increased Attack Speed" }, } }, + ["HellscapeUpsideIncreasedAttackSpeed2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1434 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-6)% increased Attack Speed" }, } }, + ["HellscapeUpsideIncreasedAttackSpeed3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1434 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-8)% increased Attack Speed" }, } }, + ["HellscapeUpsideIncreasedAttackSpeed4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Attack Speed", statOrder = { 1434 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-10)% increased Attack Speed" }, } }, + ["HellscapeUpsideIncreasedCastSpeed1"] = { type = "ScourgeUpside", affix = "", "5% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "5% increased Cast Speed" }, } }, + ["HellscapeUpsideIncreasedCastSpeed2"] = { type = "ScourgeUpside", affix = "", "6% increased Cast Speed", statOrder = { 1470 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "6% increased Cast Speed" }, } }, + ["HellscapeUpsideIncreasedCastSpeed3_"] = { type = "ScourgeUpside", affix = "", "7% increased Cast Speed", statOrder = { 1470 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "7% increased Cast Speed" }, } }, + ["HellscapeUpsideIncreasedCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "8% increased Cast Speed", statOrder = { 1470 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, } }, + ["HellscapeUpsideMinionAttackAndCastSpeed1"] = { type = "ScourgeUpside", affix = "", "Minions have 5% increased Attack Speed", "Minions have 5% increased Cast Speed", statOrder = { 2941, 2942 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have 5% increased Attack Speed" }, [4000101551] = { "Minions have 5% increased Cast Speed" }, } }, + ["HellscapeUpsideMinionAttackAndCastSpeed2"] = { type = "ScourgeUpside", affix = "", "Minions have 6% increased Attack Speed", "Minions have 6% increased Cast Speed", statOrder = { 2941, 2942 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have 6% increased Attack Speed" }, [4000101551] = { "Minions have 6% increased Cast Speed" }, } }, + ["HellscapeUpsideMinionAttackAndCastSpeed3____"] = { type = "ScourgeUpside", affix = "", "Minions have (7-8)% increased Attack Speed", "Minions have (7-8)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (7-8)% increased Attack Speed" }, [4000101551] = { "Minions have (7-8)% increased Cast Speed" }, } }, + ["HellscapeUpsideMinionAttackAndCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "Minions have (9-10)% increased Attack Speed", "Minions have (9-10)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (9-10)% increased Attack Speed" }, [4000101551] = { "Minions have (9-10)% increased Cast Speed" }, } }, + ["HellscapeUpsideMaximumLifeOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Life on Kill", statOrder = { 1772 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of Life on Kill" }, } }, + ["HellscapeUpsideMaximumLifeOnKillPercent4___"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Life on Kill", statOrder = { 1772 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 4% of Life on Kill" }, } }, + ["HellscapeUpsideMaximumManaOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Mana on Kill", statOrder = { 1774 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of Mana on Kill" }, } }, + ["HellscapeUpsideMaximumManaOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Mana on Kill", statOrder = { 1774 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 4% of Mana on Kill" }, } }, + ["HellscapeUpsideMaximumEnergyShieldOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Energy Shield on Kill", statOrder = { 1773 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 3% of Energy Shield on Kill" }, } }, + ["HellscapeUpsideMaximumEnergyShieldOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Energy Shield on Kill", statOrder = { 1773 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover 4% of Energy Shield on Kill" }, } }, + ["HellscapeUpsideIncreasedAccuracyPercent2"] = { type = "ScourgeUpside", affix = "", "(11-14)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(11-14)% increased Global Accuracy Rating" }, } }, + ["HellscapeUpsideIncreasedAccuracyPercent3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-17)% increased Global Accuracy Rating" }, } }, + ["HellscapeUpsideIncreasedAccuracyPercent4__"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(18-20)% increased Global Accuracy Rating" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedAreaOfEffectGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 182 }, level = 68, group = "IncreasedSocketedAoEGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [2551600084] = { "+1 to Level of Socketed AoE Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedAuraGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 68, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+1 to Level of Socketed Aura Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedCurseGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Curse Gems", statOrder = { 190 }, level = 68, group = "IncreaseSocketedCurseGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+1 to Level of Socketed Curse Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedDurationGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Duration Gems", statOrder = { 181 }, level = 68, group = "IncreaseSocketedDurationGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [2115168758] = { "+1 to Level of Socketed Duration Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 5, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedProjectileGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 183 }, level = 68, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+1 to Level of Socketed Projectile Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedTrapAndMineGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Trap or Mine Gems", statOrder = { 193 }, level = 68, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+1 to Level of Socketed Trap or Mine Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedWarcryGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 200 }, level = 68, group = "LocalSocketedWarcryGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+1 to Level of Socketed Warcry Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedSupportGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 195 }, level = 68, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedLightningGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+1 to Level of Socketed Lightning Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedChaosGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+1 to Level of Socketed Chaos Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedFireGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedColdGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedMinionGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 68, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, + ["HellscapeUpsideLocalIncreaseSocketedMeleeGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 68, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, + ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel2h__"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1636 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1635 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1633 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1634 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel1h__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } }, + ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Physical Spell Skill Gems", statOrder = { 1632 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skill Gems" }, } }, + ["HellscapeUpsideAdditionalRaisedZombie1_"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2183 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, } }, + ["HellscapeUpsideAdditionalSkeleton1__"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Skeletons", statOrder = { 2185 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, } }, + ["HellscapeUpsideWeaponRange1"] = { type = "ScourgeUpside", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2779 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, + ["HellscapeUpsideWeaponRange2"] = { type = "ScourgeUpside", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 45, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["HellscapeUpsideWeaponRange3"] = { type = "ScourgeUpside", affix = "", "+0.3 metres to Weapon Range", statOrder = { 2779 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } }, + ["HellscapeUpsideWeaponRange4"] = { type = "ScourgeUpside", affix = "", "+0.4 metres to Weapon Range", statOrder = { 2779 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.4 metres to Weapon Range" }, } }, + ["HellscapeUpsideAreaDamage1"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(11-15)% increased Area Damage" }, } }, + ["HellscapeUpsideAreaDamage2_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Area Damage", statOrder = { 2058 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(16-20)% increased Area Damage" }, } }, + ["HellscapeUpsideAreaDamage3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Area Damage", statOrder = { 2058 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(21-25)% increased Area Damage" }, } }, + ["HellscapeUpsideAreaDamage4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Area Damage", statOrder = { 2058 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(26-30)% increased Area Damage" }, } }, + ["HellscapeUpsideReducedAttributeRequirement2"] = { type = "ScourgeUpside", affix = "", "(12-14)% reduced Attribute Requirements", statOrder = { 1099 }, level = 45, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(12-14)% reduced Attribute Requirements" }, } }, + ["HellscapeUpsideReducedAttributeRequirement3"] = { type = "ScourgeUpside", affix = "", "(15-17)% reduced Attribute Requirements", statOrder = { 1099 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(15-17)% reduced Attribute Requirements" }, } }, + ["HellscapeUpsideReducedAttributeRequirement4"] = { type = "ScourgeUpside", affix = "", "(18-20)% reduced Attribute Requirements", statOrder = { 1099 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(18-20)% reduced Attribute Requirements" }, } }, + ["HellscapeUpsideRarityOfItemsFound1_"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-9)% increased Rarity of Items found" }, } }, + ["HellscapeUpsideRarityOfItemsFound2_"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1619 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-11)% increased Rarity of Items found" }, } }, + ["HellscapeUpsideRarityOfItemsFound3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1619 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-13)% increased Rarity of Items found" }, } }, + ["HellscapeUpsideRarityOfItemsFound4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1619 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(14-15)% increased Rarity of Items found" }, } }, + ["HellscapeUpsideLifeRegenerationRate2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Life Regeneration rate", statOrder = { 1600 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(7-9)% increased Life Regeneration rate" }, } }, + ["HellscapeUpsideLifeRegenerationRate3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Life Regeneration rate", statOrder = { 1600 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(10-12)% increased Life Regeneration rate" }, } }, + ["HellscapeUpsideLifeRegenerationRate4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Life Regeneration rate", statOrder = { 1600 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(13-15)% increased Life Regeneration rate" }, } }, + ["HellscapeUpsideLifeRegeneration1"] = { type = "ScourgeUpside", affix = "", "Regenerate (10.8-11.7) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (10.8-11.7) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration1b_"] = { type = "ScourgeUpside", affix = "", "Regenerate (12.5-13.3) Life per second", statOrder = { 1596 }, level = 25, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (12.5-13.3) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration1c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (14.2-15) Life per second", statOrder = { 1596 }, level = 35, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (14.2-15) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (15.8-16.7) Life per second", statOrder = { 1596 }, level = 45, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (15.8-16.7) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (17.5-18.3) Life per second", statOrder = { 1596 }, level = 52, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (17.5-18.3) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration2c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (19.2-20) Life per second", statOrder = { 1596 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (19.2-20) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration3__"] = { type = "ScourgeUpside", affix = "", "Regenerate (20.8-21.7) Life per second", statOrder = { 1596 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (20.8-21.7) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration3b"] = { type = "ScourgeUpside", affix = "", "Regenerate (22.5-23.3) Life per second", statOrder = { 1596 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 200 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (22.5-23.3) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration3c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (24.2-25) Life per second", statOrder = { 1596 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 100 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (24.2-25) Life per second" }, } }, + ["HellscapeUpsideLifeRegeneration4_"] = { type = "ScourgeUpside", affix = "", "Regenerate (25.8-26.7) Life per second", statOrder = { 1596 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (25.8-26.7) Life per second" }, } }, + ["HellscapeUpsideMinionLifeRegenPercentage2"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2945 }, level = 45, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 2% of Life per second" }, } }, + ["HellscapeUpsideMinionLifeRegenPercentage2b_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2.5% of Life per second", statOrder = { 2945 }, level = 55, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 2.5% of Life per second" }, } }, + ["HellscapeUpsideMinionLifeRegenPercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3% of Life per second", statOrder = { 2945 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 3% of Life per second" }, } }, + ["HellscapeUpsideMinionLifeRegenPercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3.5% of Life per second", statOrder = { 2945 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 3.5% of Life per second" }, } }, + ["HellscapeUpsideEnergyShieldRechargeRate2"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 45, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(11-15)% increased Energy Shield Recharge Rate" }, } }, + ["HellscapeUpsideEnergyShieldRechargeRate3"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(16-20)% increased Energy Shield Recharge Rate" }, } }, + ["HellscapeUpsideEnergyShieldRechargeRate4"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(21-25)% increased Energy Shield Recharge Rate" }, } }, + ["HellscapeUpsideMovementVelocity1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-9)% increased Movement Speed" }, } }, + ["HellscapeUpsideMovementVelocity2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Movement Speed", statOrder = { 1821 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-11)% increased Movement Speed" }, } }, + ["HellscapeUpsideMovementVelocity3_"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Movement Speed", statOrder = { 1821 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(12-13)% increased Movement Speed" }, } }, + ["HellscapeUpsideMovementVelocity4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Movement Speed", statOrder = { 1821 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(14-15)% increased Movement Speed" }, } }, + ["HellscapeUpsideMaximumMana1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(23-25) to maximum Mana" }, } }, + ["HellscapeUpsideMaximumMana2"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Mana", statOrder = { 1602 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(28-30) to maximum Mana" }, } }, + ["HellscapeUpsideMaximumMana3"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Mana", statOrder = { 1602 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(33-35) to maximum Mana" }, } }, + ["HellscapeUpsideMaximumMana4_"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Mana", statOrder = { 1602 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(38-40) to maximum Mana" }, } }, + ["HellscapeUpsideManaRegeneration1"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(18-20)% increased Mana Regeneration Rate" }, } }, + ["HellscapeUpsideManaRegeneration2"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(23-25)% increased Mana Regeneration Rate" }, } }, + ["HellscapeUpsideManaRegeneration2b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } }, + ["HellscapeUpsideManaRegeneration3"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(33-35)% increased Mana Regeneration Rate" }, } }, + ["HellscapeUpsideManaRegeneration3b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(38-40)% increased Mana Regeneration Rate" }, } }, + ["HellscapeUpsideManaRegeneration4"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } }, + ["HellscapeUpsideManaRegenFlat1"] = { type = "ScourgeUpside", affix = "", "Regenerate 0.8 Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 0.8 Mana per second" }, } }, + ["HellscapeUpsideManaRegenFlat1b"] = { type = "ScourgeUpside", affix = "", "Regenerate (1.5-1.7) Mana per second", statOrder = { 1605 }, level = 15, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (1.5-1.7) Mana per second" }, } }, + ["HellscapeUpsideManaRegenFlat1c"] = { type = "ScourgeUpside", affix = "", "Regenerate (2.6-2.8) Mana per second", statOrder = { 1605 }, level = 25, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (2.6-2.8) Mana per second" }, } }, + ["HellscapeUpsideManaRegenFlat1d__"] = { type = "ScourgeUpside", affix = "", "Regenerate (4-4.3) Mana per second", statOrder = { 1605 }, level = 35, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (4-4.3) Mana per second" }, } }, + ["HellscapeUpsideManaRegenFlat2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (5.1-5.7) Mana per second", statOrder = { 1605 }, level = 45, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (5.1-5.7) Mana per second" }, } }, + ["HellscapeUpsideManaRegenFlat2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (6.3-6.7) Mana per second", statOrder = { 1605 }, level = 55, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6.3-6.7) Mana per second" }, } }, + ["HellscapeUpsideManaRegenFlat3"] = { type = "ScourgeUpside", affix = "", "Regenerate (8-8.3) Mana per second", statOrder = { 1605 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8-8.3) Mana per second" }, } }, + ["HellscapeUpsideManaRegenFlat4"] = { type = "ScourgeUpside", affix = "", "Regenerate (8.8-9.2) Mana per second", statOrder = { 1605 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (8.8-9.2) Mana per second" }, } }, + ["HellscapeUpsideAttackLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 45, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Life" }, } }, + ["HellscapeUpsideAttackLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.31-0.4)% of Physical Attack Damage Leeched as Life" }, } }, + ["HellscapeUpsideAttackLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.41-0.5)% of Physical Attack Damage Leeched as Life" }, } }, + ["HellscapeUpsideAttackManaLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 45, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.3)% of Physical Attack Damage Leeched as Mana" }, } }, + ["HellscapeUpsideAttackManaLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.31-0.4)% of Physical Attack Damage Leeched as Mana" }, } }, + ["HellscapeUpsideAttackManaLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.41-0.5)% of Physical Attack Damage Leeched as Mana" }, } }, + ["HellscapeUpsideMinionLifeLeech2"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.2-0.3)% of Damage as Life", statOrder = { 2944 }, level = 45, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech (0.2-0.3)% of Damage as Life" }, } }, + ["HellscapeUpsideMinionLifeLeech3_"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.4-0.5)% of Damage as Life", statOrder = { 2944 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech (0.4-0.5)% of Damage as Life" }, } }, + ["HellscapeUpsideMinionLifeLeech4___"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.6-0.7)% of Damage as Life", statOrder = { 2944 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech (0.6-0.7)% of Damage as Life" }, } }, + ["HellscapeUpsideFlaskChargesGained2_"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Flask Charges gained", statOrder = { 2206 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(13-15)% increased Flask Charges gained" }, } }, + ["HellscapeUpsideFlaskChargesGained3_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Charges gained", statOrder = { 2206 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(18-20)% increased Flask Charges gained" }, } }, + ["HellscapeUpsideFlaskChargesGained4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Flask Charges gained", statOrder = { 2206 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(23-25)% increased Flask Charges gained" }, } }, + ["HellscapeUpsideStunThreshold2"] = { type = "ScourgeUpside", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 45, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(5-6)% reduced Enemy Stun Threshold" }, } }, + ["HellscapeUpsideStunThreshold3____"] = { type = "ScourgeUpside", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(7-8)% reduced Enemy Stun Threshold" }, } }, + ["HellscapeUpsideStunThreshold4"] = { type = "ScourgeUpside", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(9-10)% reduced Enemy Stun Threshold" }, } }, + ["HellscapeUpsideStunDuration2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 45, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(17-19)% increased Stun Duration on Enemies" }, } }, + ["HellscapeUpsideStunDuration3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(20-22)% increased Stun Duration on Enemies" }, } }, + ["HellscapeUpsideStunDuration4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(23-25)% increased Stun Duration on Enemies" }, } }, + ["HellscapeUpsideFlaskLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 45, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-14)% increased Flask Life Recovery rate" }, } }, + ["HellscapeUpsideFlaskLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(15-17)% increased Flask Life Recovery rate" }, } }, + ["HellscapeUpsideFlaskLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Life Recovery rate", statOrder = { 2212 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(18-20)% increased Flask Life Recovery rate" }, } }, + ["HellscapeUpsideFlaskManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 45, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(12-14)% increased Flask Mana Recovery rate" }, } }, + ["HellscapeUpsideFlaskManaRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(15-17)% increased Flask Mana Recovery rate" }, } }, + ["HellscapeUpsideFlaskManaRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Mana Recovery rate", statOrder = { 2213 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(18-20)% increased Flask Mana Recovery rate" }, } }, + ["HellscapeUpsideAdditionalDexterity1__"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-23) to Dexterity" }, } }, + ["HellscapeUpsideAdditionalDexterity2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Dexterity", statOrder = { 1201 }, level = 45, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(24-27) to Dexterity" }, } }, + ["HellscapeUpsideAdditionalDexterity3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Dexterity", statOrder = { 1201 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-31) to Dexterity" }, } }, + ["HellscapeUpsideAdditionalDexterity4_"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Dexterity", statOrder = { 1201 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(32-35) to Dexterity" }, } }, + ["HellscapeUpsideAdditionalIntelligence1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-23) to Intelligence" }, } }, + ["HellscapeUpsideAdditionalIntelligence2__"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Intelligence", statOrder = { 1202 }, level = 45, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(24-27) to Intelligence" }, } }, + ["HellscapeUpsideAdditionalIntelligence3_"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Intelligence", statOrder = { 1202 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-31) to Intelligence" }, } }, + ["HellscapeUpsideAdditionalIntelligence4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Intelligence", statOrder = { 1202 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(32-35) to Intelligence" }, } }, + ["HellscapeUpsideAdditionalStrength1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Strength", statOrder = { 1200 }, level = 1, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-23) to Strength" }, } }, + ["HellscapeUpsideAdditionalStrength2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Strength", statOrder = { 1200 }, level = 45, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(24-27) to Strength" }, } }, + ["HellscapeUpsideAdditionalStrength3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Strength", statOrder = { 1200 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-31) to Strength" }, } }, + ["HellscapeUpsideAdditionalStrength4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Strength", statOrder = { 1200 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(32-35) to Strength" }, } }, + ["HellscapeUpsideChanceToFreeze1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Freeze", statOrder = { 2052 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(5-6)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Freeze", statOrder = { 2052 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-8)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze1h4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Freeze", statOrder = { 2052 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(9-10)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Freeze", statOrder = { 2052 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-9)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze2h3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Freeze", statOrder = { 2052 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(10-12)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToFreeze2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Freeze", statOrder = { 2052 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(13-15)% chance to Freeze" }, } }, + ["HellscapeUpsideChanceToIgnite1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Ignite", statOrder = { 2049 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(5-6)% chance to Ignite" }, } }, + ["HellscapeUpsideChanceToIgnite1h3_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Ignite", statOrder = { 2049 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(7-8)% chance to Ignite" }, } }, + ["HellscapeUpsideChanceToIgnite1h4___"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Ignite", statOrder = { 2049 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(9-10)% chance to Ignite" }, } }, + ["HellscapeUpsideChanceToIgnite2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Ignite", statOrder = { 2049 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(7-9)% chance to Ignite" }, } }, + ["HellscapeUpsideChanceToIgnite2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Ignite", statOrder = { 2049 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-12)% chance to Ignite" }, } }, + ["HellscapeUpsideChanceToIgnite2h4___"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Ignite", statOrder = { 2049 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(13-15)% chance to Ignite" }, } }, + ["HellscapeUpsideChanceToShock1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Shock", statOrder = { 2056 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(5-6)% chance to Shock" }, } }, + ["HellscapeUpsideChanceToShock1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Shock", statOrder = { 2056 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(7-8)% chance to Shock" }, } }, + ["HellscapeUpsideChanceToShock1h4"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Shock", statOrder = { 2056 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(9-10)% chance to Shock" }, } }, + ["HellscapeUpsideChanceToShock2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Shock", statOrder = { 2056 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(7-9)% chance to Shock" }, } }, + ["HellscapeUpsideChanceToShock2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Shock", statOrder = { 2056 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(10-12)% chance to Shock" }, } }, + ["HellscapeUpsideChanceToShock2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Shock", statOrder = { 2056 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(13-15)% chance to Shock" }, } }, + ["HellscapeUpsideChanceToBleed2__"] = { type = "ScourgeUpside", affix = "", "Attacks have (12-14)% chance to cause Bleeding", statOrder = { 2515 }, level = 45, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (12-14)% chance to cause Bleeding" }, } }, + ["HellscapeUpsideChanceToBleed3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (15-17)% chance to cause Bleeding", statOrder = { 2515 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (15-17)% chance to cause Bleeding" }, } }, + ["HellscapeUpsideChanceToBleed4"] = { type = "ScourgeUpside", affix = "", "Attacks have (18-20)% chance to cause Bleeding", statOrder = { 2515 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (18-20)% chance to cause Bleeding" }, } }, + ["HellscapeUpsideChanceToPoison2"] = { type = "ScourgeUpside", affix = "", "(12-14)% chance to Poison on Hit", statOrder = { 3208 }, level = 45, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(12-14)% chance to Poison on Hit" }, } }, + ["HellscapeUpsideChanceToPoison3"] = { type = "ScourgeUpside", affix = "", "(15-17)% chance to Poison on Hit", statOrder = { 3208 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(15-17)% chance to Poison on Hit" }, } }, + ["HellscapeUpsideChanceToPoison4"] = { type = "ScourgeUpside", affix = "", "(18-20)% chance to Poison on Hit", statOrder = { 3208 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(18-20)% chance to Poison on Hit" }, } }, + ["HellscapeUpsideLightRadius1_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(16-20)% increased Light Radius" }, } }, + ["HellscapeUpsideLightRadius2_"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Light Radius", statOrder = { 2526 }, level = 45, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(21-25)% increased Light Radius" }, } }, + ["HellscapeUpsideLightRadius3______"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Light Radius", statOrder = { 2526 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(26-30)% increased Light Radius" }, } }, + ["HellscapeUpsideLightRadius4"] = { type = "ScourgeUpside", affix = "", "(31-35)% increased Light Radius", statOrder = { 2526 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1263695895] = { "(31-35)% increased Light Radius" }, } }, + ["HellscapeUpsideCooldownRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(3-4)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-4)% increased Cooldown Recovery Rate" }, } }, + ["HellscapeUpsideCooldownRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-6)% increased Cooldown Recovery Rate" }, } }, + ["HellscapeUpsideChanceToNotConsumeFlaskCharges3"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance for Flasks you use to not consume Charges", statOrder = { 4266 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [311641062] = { "(5-6)% chance for Flasks you use to not consume Charges" }, } }, + ["HellscapeUpsideChanceToNotConsumeFlaskCharges4_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance for Flasks you use to not consume Charges", statOrder = { 4266 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [311641062] = { "(7-8)% chance for Flasks you use to not consume Charges" }, } }, + ["HellscapeUpsideLifePercentage3_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Life", statOrder = { 1593 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, + ["HellscapeUpsideLifePercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Life", statOrder = { 1593 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, + ["HellscapeUpsideManaPercentage3"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Mana", statOrder = { 1603 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, + ["HellscapeUpsideManaPercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1603 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, + ["HellscapeUpsideReducedReflectedPhysicalDamage3_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (41-50)% reduced Reflected Physical Damage" }, } }, + ["HellscapeUpsideReducedReflectedPhysicalDamage4_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Physical Damage", statOrder = { 9813 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (51-60)% reduced Reflected Physical Damage" }, } }, + ["HellscapeUpsideReducedReflectedElementalDamage3_____"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (41-50)% reduced Reflected Elemental Damage" }, } }, + ["HellscapeUpsideReducedReflectedElementalDamage4"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Elemental Damage", statOrder = { 6422 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (51-60)% reduced Reflected Elemental Damage" }, } }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill2__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 45, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(5-6)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(7-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(9-10)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToGainPhasingOnKill2"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 45, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(11-15)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToGainPhasingOnKill3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(16-20)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToGainPhasingOnKill4"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2918708827] = { "(21-25)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["HellscapeUpsideChanceToTauntOnHit2__"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 45, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(11-15)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["HellscapeUpsideChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(16-20)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["HellscapeUpsideChanceToTauntOnHit4___"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(21-25)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["HellscapeUpsideMaximumColdResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["HellscapeUpsideMaximumFireResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["HellscapeUpsideMaximumLightningResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["HellscapeUpsideMaximumChaosResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1663 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, + ["HellscapeUpsideMaximumElementalResistance1"] = { type = "ScourgeUpside", affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1666 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 50, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all maximum Elemental Resistances" }, } }, + ["HellscapeUpsideTotemPlacementSpeed2"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Totem Placement speed", statOrder = { 2604 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(16-20)% increased Totem Placement speed" }, } }, + ["HellscapeUpsideTotemPlacementSpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Totem Placement speed", statOrder = { 2604 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, + ["HellscapeUpsideTotemPlacementSpeed4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Totem Placement speed", statOrder = { 2604 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, + ["HellscapeUpsideTotemElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Totems gain +(21-25)% to all Elemental Resistances", statOrder = { 2821 }, level = 45, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(21-25)% to all Elemental Resistances" }, } }, + ["HellscapeUpsideTotemElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Totems gain +(26-30)% to all Elemental Resistances", statOrder = { 2821 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(26-30)% to all Elemental Resistances" }, } }, + ["HellscapeUpsideTotemElementalResistances4"] = { type = "ScourgeUpside", affix = "", "Totems gain +(31-35)% to all Elemental Resistances", statOrder = { 2821 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(31-35)% to all Elemental Resistances" }, } }, + ["HellscapeUpsideTotemDuration2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Totem Duration", statOrder = { 1801 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(12-14)% increased Totem Duration" }, } }, + ["HellscapeUpsideTotemDuration3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Totem Duration", statOrder = { 1801 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(15-17)% increased Totem Duration" }, } }, + ["HellscapeUpsideTotemDuration4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Totem Duration", statOrder = { 1801 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(18-20)% increased Totem Duration" }, } }, + ["HellscapeUpsideTotemPhysicalDamageReduction2___"] = { type = "ScourgeUpside", affix = "", "Totems have (11-15)% additional Physical Damage Reduction", statOrder = { 2823 }, level = 45, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [3616562963] = { "Totems have (11-15)% additional Physical Damage Reduction" }, } }, + ["HellscapeUpsideTotemPhysicalDamageReduction3___"] = { type = "ScourgeUpside", affix = "", "Totems have (16-20)% additional Physical Damage Reduction", statOrder = { 2823 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [3616562963] = { "Totems have (16-20)% additional Physical Damage Reduction" }, } }, + ["HellscapeUpsideTotemPhysicalDamageReduction4_"] = { type = "ScourgeUpside", affix = "", "Totems have (21-25)% additional Physical Damage Reduction", statOrder = { 2823 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, tradeHashes = { [3616562963] = { "Totems have (21-25)% additional Physical Damage Reduction" }, } }, + ["HellscapeUpsideTotemLife2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Totem Life", statOrder = { 1797 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(7-9)% increased Totem Life" }, } }, + ["HellscapeUpsideTotemLife3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Totem Life", statOrder = { 1797 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-12)% increased Totem Life" }, } }, + ["HellscapeUpsideTotemLife4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Totem Life", statOrder = { 1797 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(13-15)% increased Totem Life" }, } }, + ["HellscapeUpsideBrandDuration2"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (12-14)% increased Duration", statOrder = { 10184 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (12-14)% increased Duration" }, } }, + ["HellscapeUpsideBrandDuration3"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (15-17)% increased Duration", statOrder = { 10184 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (15-17)% increased Duration" }, } }, + ["HellscapeUpsideBrandDuration4"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (18-20)% increased Duration", statOrder = { 10184 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (18-20)% increased Duration" }, } }, + ["HellscapeUpsideBrandAttachmentRange2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Brand Attachment range", statOrder = { 10189 }, level = 45, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(12-14)% increased Brand Attachment range" }, } }, + ["HellscapeUpsideBrandAttachmentRange3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Brand Attachment range", statOrder = { 10189 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(15-17)% increased Brand Attachment range" }, } }, + ["HellscapeUpsideBrandAttachmentRange4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Brand Attachment range", statOrder = { 10189 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(18-20)% increased Brand Attachment range" }, } }, + ["HellscapeUpsideLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Life Recovery rate", statOrder = { 1601 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(5-6)% increased Life Recovery rate" }, } }, + ["HellscapeUpsideLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Life Recovery rate", statOrder = { 1601 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(7-8)% increased Life Recovery rate" }, } }, + ["HellscapeUpsideLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Life Recovery rate", statOrder = { 1601 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(9-10)% increased Life Recovery rate" }, } }, + ["HellscapeUpsideManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Mana Recovery rate", statOrder = { 1609 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(5-6)% increased Mana Recovery rate" }, } }, + ["HellscapeUpsideManaRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Mana Recovery rate", statOrder = { 1609 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(7-8)% increased Mana Recovery rate" }, } }, + ["HellscapeUpsideManaRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Mana Recovery rate", statOrder = { 1609 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(9-10)% increased Mana Recovery rate" }, } }, + ["HellscapeUpsideEnergyShieldRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(5-6)% increased Energy Shield Recovery rate" }, } }, + ["HellscapeUpsideEnergyShieldRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-8)% increased Energy Shield Recovery rate" }, } }, + ["HellscapeUpsideEnergyShieldRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(9-10)% increased Energy Shield Recovery rate" }, } }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes2"] = { type = "ScourgeUpside", affix = "", "You take (13-15)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (13-15)% reduced Extra Damage from Critical Strikes" }, } }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeUpside", affix = "", "You take (18-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (18-20)% reduced Extra Damage from Critical Strikes" }, } }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes4"] = { type = "ScourgeUpside", affix = "", "You take (23-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (23-25)% reduced Extra Damage from Critical Strikes" }, } }, + ["HellscapeUpsideChanceToBlindOnHit2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 45, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(7-8)% Global chance to Blind Enemies on hit" }, } }, + ["HellscapeUpsideChanceToBlindOnHit3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } }, + ["HellscapeUpsideChanceToBlindOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(11-12)% Global chance to Blind Enemies on hit" }, } }, + ["HellscapeUpsideChanceToMaimOnHit2"] = { type = "ScourgeUpside", affix = "", "Attacks have (7-8)% chance to Maim on Hit", statOrder = { 8268 }, level = 45, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have (7-8)% chance to Maim on Hit" }, } }, + ["HellscapeUpsideChanceToMaimOnHit3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (9-10)% chance to Maim on Hit", statOrder = { 8268 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have (9-10)% chance to Maim on Hit" }, } }, + ["HellscapeUpsideChanceToMaimOnHit4"] = { type = "ScourgeUpside", affix = "", "Attacks have (11-12)% chance to Maim on Hit", statOrder = { 8268 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have (11-12)% chance to Maim on Hit" }, } }, + ["HellscapeUpsideChanceToHinderOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 45, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(7-8)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["HellscapeUpsideChanceToHinderOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(9-10)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["HellscapeUpsideChanceToHinderOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(11-12)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["HellscapeUpsideChanceToIntimidateOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 45, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(7-8)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["HellscapeUpsideChanceToIntimidateOnHit3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(9-10)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["HellscapeUpsideChanceToIntimidateOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5793 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(11-12)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["HellscapeUpsideChanceToUnnerveOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 45, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-8)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["HellscapeUpsideChanceToUnnerveOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(9-10)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["HellscapeUpsideChanceToUnnerveOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5803 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(11-12)% chance to Unnerve Enemies for 4 seconds on Hit" }, } }, + ["HellscapeUpsideChanceToImpaleOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 45, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(7-8)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["HellscapeUpsideChanceToImpaleOnHit3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(9-10)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["HellscapeUpsideChanceToImpaleOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(11-12)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["HellscapeUpsideEnemiesExplodeOnDeathPhysical4_"] = { type = "ScourgeUpside", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3340 }, level = 68, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, + ["HellscapeUpsideColdPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Cold Resistance", statOrder = { 3017 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, + ["HellscapeUpsideColdPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, + ["HellscapeUpsideColdPenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, + ["HellscapeUpsideColdPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 3017 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["HellscapeUpsideColdPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Cold Resistance", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["HellscapeUpsideColdPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Cold Resistance", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["HellscapeUpsideFirePenetration1h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Fire Resistance", statOrder = { 3015 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 3% Fire Resistance" }, } }, + ["HellscapeUpsideFirePenetration1h3___"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["HellscapeUpsideFirePenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, + ["HellscapeUpsideFirePenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 3015 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["HellscapeUpsideFirePenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Fire Resistance", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["HellscapeUpsideFirePenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Fire Resistance", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["HellscapeUpsideLightningPenetration1h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Lightning Resistance", statOrder = { 3018 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 3% Lightning Resistance" }, } }, + ["HellscapeUpsideLightningPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } }, + ["HellscapeUpsideLightningPenetration1h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, + ["HellscapeUpsideLightningPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 3018 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["HellscapeUpsideLightningPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Lightning Resistance", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["HellscapeUpsideLightningPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Lightning Resistance", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["HellscapeUpsideChaosPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Chaos Resistance", statOrder = { 10019 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 3% Chaos Resistance" }, } }, + ["HellscapeUpsideChaosPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Chaos Resistance", statOrder = { 10019 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 4% Chaos Resistance" }, } }, + ["HellscapeUpsideChaosPenetration1h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Chaos Resistance", statOrder = { 10019 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 5% Chaos Resistance" }, } }, + ["HellscapeUpsideChaosPenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Chaos Resistance", statOrder = { 10019 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 6% Chaos Resistance" }, } }, + ["HellscapeUpsideChaosPenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Chaos Resistance", statOrder = { 10019 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 7% Chaos Resistance" }, } }, + ["HellscapeUpsideChaosPenetration2h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Chaos Resistance", statOrder = { 10019 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Damage Penetrates 8% Chaos Resistance" }, } }, + ["HellscapeUpsideCullingStrike1"] = { type = "ScourgeUpside", affix = "", "Culling Strike", statOrder = { 2062 }, level = 1, group = "CullingStrike", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, + ["HellscapeUpsideCurseOnHitDespair1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2541 }, level = 68, group = "CurseOnHitDespairChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1764973832] = { "Curse Enemies with Despair on Hit" }, } }, + ["HellscapeUpsideCurseOnHitElementalWeakness1___"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2542 }, level = 68, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [636057969] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, + ["HellscapeUpsideCurseOnHitEnfeeble1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2539 }, level = 68, group = "EnfeebleOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } }, + ["HellscapeUpsideCurseOnHitTemporalChains1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2545 }, level = 68, group = "TemporalChainsOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } }, + ["HellscapeUpsideCurseOnHitVulnerability1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2546 }, level = 68, group = "VulnerabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1826297223] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["HellscapeUpsideCurseOnHitConductivity1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2540 }, level = 68, group = "CurseOnHitConductivityChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [670088789] = { "Curse Enemies with Conductivity on Hit" }, } }, + ["HellscapeUpsideCurseOnHitFlammability1______"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2543 }, level = 68, group = "FlammabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [654274615] = { "Curse Enemies with Flammability on Hit" }, } }, + ["HellscapeUpsideCurseOnHitFrostbite1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2544 }, level = 68, group = "FrostbiteOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1016707110] = { "Curse Enemies with Frostbite on Hit" }, } }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill1__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(5-6)% chance to gain an Endurance Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 45, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(7-8)% chance to gain an Endurance Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(9-10)% chance to gain an Endurance Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(11-12)% chance to gain an Endurance Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(5-6)% chance to gain a Power Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 45, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(7-8)% chance to gain a Power Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(9-10)% chance to gain a Power Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill4___"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(11-12)% chance to gain a Power Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(5-6)% chance to gain a Frenzy Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 45, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(7-8)% chance to gain a Frenzy Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(9-10)% chance to gain a Frenzy Charge on Kill" }, } }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(11-12)% chance to gain a Frenzy Charge on Kill" }, } }, + ["HellscapeUpsideTrapThrowingSpeed2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 45, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(7-9)% increased Trap Throwing Speed" }, } }, + ["HellscapeUpsideTrapThrowingSpeed3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(10-12)% increased Trap Throwing Speed" }, } }, + ["HellscapeUpsideTrapThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(13-15)% increased Trap Throwing Speed" }, } }, + ["HellscapeUpsideMineThrowingSpeed2___"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 45, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(7-9)% increased Mine Throwing Speed" }, } }, + ["HellscapeUpsideMineThrowingSpeed3_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(10-12)% increased Mine Throwing Speed" }, } }, + ["HellscapeUpsideMineThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(13-15)% increased Mine Throwing Speed" }, } }, + ["HellscapeUpsideAdditionalArrow1"] = { type = "ScourgeUpside", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 68, group = "AdditionalArrows", weightKey = { "bow", "quiver", "default", }, weightVal = { 50, 5, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["HellscapeUpsideAdditionalChainChance1__"] = { type = "ScourgeUpside", affix = "", "Skills Chain +1 times", statOrder = { 1812 }, level = 68, group = "AdditionalChain", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, tradeHashes = { [1787073323] = { "Skills Chain +1 times" }, } }, + ["HellscapeUpsideAdditionalPierceChance1__"] = { type = "ScourgeUpside", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 68, group = "AdditionalPierce", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["HellscapeUpsideAdditionalSplitChance1_"] = { type = "ScourgeUpside", affix = "", "Projectiles Split towards +1 targets", statOrder = { 9883 }, level = 68, group = "ProjectilesSplitCount", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +1 targets" }, } }, + ["HellscapeUpsideAdditionalReturn1___"] = { type = "ScourgeUpside", affix = "", "Attack Projectiles Return to you", statOrder = { 2858 }, level = 68, group = "ReturningAttackProjectiles", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { "attack" }, tradeHashes = { [1658124062] = { "Attack Projectiles Return to you" }, } }, + ["HellscapeUpsideStrengthPercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Strength", statOrder = { 1207 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-5)% increased Strength" }, } }, + ["HellscapeUpsideStrengthPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Strength", statOrder = { 1207 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-7)% increased Strength" }, } }, + ["HellscapeUpsideDexterityPercent3_"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Dexterity", statOrder = { 1208 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-5)% increased Dexterity" }, } }, + ["HellscapeUpsideDexterityPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Dexterity", statOrder = { 1208 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(6-7)% increased Dexterity" }, } }, + ["HellscapeUpsideIntelligencePercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Intelligence", statOrder = { 1209 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-5)% increased Intelligence" }, } }, + ["HellscapeUpsideIntelligencePercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Intelligence", statOrder = { 1209 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(6-7)% increased Intelligence" }, } }, + ["HellscapeUpsidePoisonDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (4-5)% faster", statOrder = { 6633 }, level = 45, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (4-5)% faster" }, } }, + ["HellscapeUpsidePoisonDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (6-7)% faster", statOrder = { 6633 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (6-7)% faster" }, } }, + ["HellscapeUpsidePoisonDamageFaster1h4"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6633 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (8-9)% faster" }, } }, + ["HellscapeUpsidePoisonDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6633 }, level = 45, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (8-9)% faster" }, } }, + ["HellscapeUpsidePoisonDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (10-11)% faster", statOrder = { 6633 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (10-11)% faster" }, } }, + ["HellscapeUpsidePoisonDamageFaster2h4_"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (12-13)% faster", statOrder = { 6633 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (12-13)% faster" }, } }, + ["HellscapeUpsideIgniteDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (4-5)% faster", statOrder = { 2590 }, level = 45, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (4-5)% faster" }, } }, + ["HellscapeUpsideIgniteDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (6-7)% faster", statOrder = { 2590 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (6-7)% faster" }, } }, + ["HellscapeUpsideIgniteDamageFaster1h4__"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2590 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (8-9)% faster" }, } }, + ["HellscapeUpsideIgniteDamageFaster2h2_"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2590 }, level = 45, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (8-9)% faster" }, } }, + ["HellscapeUpsideIgniteDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (10-11)% faster", statOrder = { 2590 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (10-11)% faster" }, } }, + ["HellscapeUpsideIgniteDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (12-13)% faster", statOrder = { 2590 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (12-13)% faster" }, } }, + ["HellscapeUpsideBleedingDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (4-5)% faster", statOrder = { 6632 }, level = 45, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (4-5)% faster" }, } }, + ["HellscapeUpsideBleedingDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (6-7)% faster", statOrder = { 6632 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (6-7)% faster" }, } }, + ["HellscapeUpsideBleedingDamageFaster1h4_"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6632 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (8-9)% faster" }, } }, + ["HellscapeUpsideBleedingDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6632 }, level = 45, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (8-9)% faster" }, } }, + ["HellscapeUpsideBleedingDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (10-11)% faster", statOrder = { 6632 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-11)% faster" }, } }, + ["HellscapeUpsideBleedingDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (12-13)% faster", statOrder = { 6632 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (12-13)% faster" }, } }, + ["HellscapeUpsidePhysicalConvertedToCold1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } }, + ["HellscapeUpsidePhysicalConvertedToFire1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } }, + ["HellscapeUpsidePhysicalConvertedToLightning1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } }, + ["HellscapeUpsidePhysicalConvertedToChaos1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, + ["HellscapeUpsideAilmentDuration2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(7-8)% increased Duration of Ailments on Enemies" }, } }, + ["HellscapeUpsideAilmentDuration3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(9-10)% increased Duration of Ailments on Enemies" }, } }, + ["HellscapeUpsideAilmentDuration4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Duration of Ailments on Enemies", statOrder = { 1883 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(11-12)% increased Duration of Ailments on Enemies" }, } }, + ["HellscapeUpsideNonDamagingAilmentEffect2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(10-12)% increased Effect of Non-Damaging Ailments" }, } }, + ["HellscapeUpsideNonDamagingAilmentEffect3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(13-15)% increased Effect of Non-Damaging Ailments" }, } }, + ["HellscapeUpsideNonDamagingAilmentEffect4_"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(16-18)% increased Effect of Non-Damaging Ailments" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 3% increased Physical Damage", statOrder = { 8028 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "3% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 3% increased Physical Damage" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 4% increased Physical Damage", statOrder = { 8028 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "4% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 4% increased Physical Damage" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage3__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Fire Resistance", statOrder = { 8024 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -3% to Fire Resistance" }, [3372524247] = { "-3% to Fire Resistance" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Fire Resistance", statOrder = { 8024 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -4% to Fire Resistance" }, [3372524247] = { "-4% to Fire Resistance" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage3___"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Cold Resistance", statOrder = { 8022 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-3% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -3% to Cold Resistance" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage4__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Cold Resistance", statOrder = { 8022 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-4% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -4% to Cold Resistance" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Lightning Resistance", statOrder = { 8026 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-3% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -3% to Lightning Resistance" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage4_"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Lightning Resistance", statOrder = { 8026 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-4% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -4% to Lightning Resistance" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Chaos Resistance", statOrder = { 8021 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -3% to Chaos Resistance" }, [2923486259] = { "-3% to Chaos Resistance" }, } }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Chaos Resistance", statOrder = { 8021 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -4% to Chaos Resistance" }, [2923486259] = { "-4% to Chaos Resistance" }, } }, + ["HellscapeUpsideCurseEffect3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Effect of your Curses", statOrder = { 2622 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(9-10)% increased Effect of your Curses" }, } }, + ["HellscapeUpsideCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Effect of your Curses", statOrder = { 2622 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(11-12)% increased Effect of your Curses" }, } }, + ["HellscapeUpsideNonCurseAuraEffect2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(7-8)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["HellscapeUpsideNonCurseAuraEffect3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(9-10)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["HellscapeUpsideNonCurseAuraEffect4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(11-12)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["HellscapeUpsideImpaleEffect1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Impale Effect", statOrder = { 7343 }, level = 45, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(7-8)% increased Impale Effect" }, } }, + ["HellscapeUpsideImpaleEffect1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Impale Effect", statOrder = { 7343 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(9-10)% increased Impale Effect" }, } }, + ["HellscapeUpsideImpaleEffect1h4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Impale Effect", statOrder = { 7343 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(11-12)% increased Impale Effect" }, } }, + ["HellscapeUpsideImpaleEffect2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Impale Effect", statOrder = { 7343 }, level = 45, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(10-12)% increased Impale Effect" }, } }, + ["HellscapeUpsideImpaleEffect2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Impale Effect", statOrder = { 7343 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(13-15)% increased Impale Effect" }, } }, + ["HellscapeUpsideImpaleEffect2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Impale Effect", statOrder = { 7343 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(16-18)% increased Impale Effect" }, } }, + ["HellscapeUpsideInflictColdExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 45, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(7-8)% chance to inflict Cold Exposure on Hit" }, } }, + ["HellscapeUpsideInflictColdExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(9-10)% chance to inflict Cold Exposure on Hit" }, } }, + ["HellscapeUpsideInflictColdExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(11-12)% chance to inflict Cold Exposure on Hit" }, } }, + ["HellscapeUpsideInflictColdExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 45, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(10-12)% chance to inflict Cold Exposure on Hit" }, } }, + ["HellscapeUpsideInflictColdExposureOnHit2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(13-15)% chance to inflict Cold Exposure on Hit" }, } }, + ["HellscapeUpsideInflictColdExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Cold Exposure on Hit", statOrder = { 5080 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2630708439] = { "(16-18)% chance to inflict Cold Exposure on Hit" }, } }, + ["HellscapeUpsideInflictFireExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 45, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(7-8)% chance to inflict Fire Exposure on Hit" }, } }, + ["HellscapeUpsideInflictFireExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(9-10)% chance to inflict Fire Exposure on Hit" }, } }, + ["HellscapeUpsideInflictFireExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(11-12)% chance to inflict Fire Exposure on Hit" }, } }, + ["HellscapeUpsideInflictFireExposureOnHit2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 45, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(10-12)% chance to inflict Fire Exposure on Hit" }, } }, + ["HellscapeUpsideInflictFireExposureOnHit2h3_____"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(13-15)% chance to inflict Fire Exposure on Hit" }, } }, + ["HellscapeUpsideInflictFireExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Fire Exposure on Hit", statOrder = { 5081 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3602667353] = { "(16-18)% chance to inflict Fire Exposure on Hit" }, } }, + ["HellscapeUpsideInflictLightningExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 45, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(7-8)% chance to inflict Lightning Exposure on Hit" }, } }, + ["HellscapeUpsideInflictLightningExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(9-10)% chance to inflict Lightning Exposure on Hit" }, } }, + ["HellscapeUpsideInflictLightningExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(11-12)% chance to inflict Lightning Exposure on Hit" }, } }, + ["HellscapeUpsideInflictLightningExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 45, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(10-12)% chance to inflict Lightning Exposure on Hit" }, } }, + ["HellscapeUpsideInflictLightningExposureOnHit2h3__"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(13-15)% chance to inflict Lightning Exposure on Hit" }, } }, + ["HellscapeUpsideInflictLightningExposureOnHit2h4__"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Lightning Exposure on Hit", statOrder = { 5082 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4265906483] = { "(16-18)% chance to inflict Lightning Exposure on Hit" }, } }, + ["HellscapeUpsideKnockbackOnHit2"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Knock Enemies Back on hit", statOrder = { 2018 }, level = 45, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [977908611] = { "(16-20)% chance to Knock Enemies Back on hit" }, } }, + ["HellscapeUpsideKnockbackOnHit3__"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Knock Enemies Back on hit", statOrder = { 2018 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [977908611] = { "(21-25)% chance to Knock Enemies Back on hit" }, } }, + ["HellscapeUpsideKnockbackOnHit4"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Knock Enemies Back on hit", statOrder = { 2018 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [977908611] = { "(26-30)% chance to Knock Enemies Back on hit" }, } }, + ["HellscapeUpsideReservationEfficiency3__"] = { type = "ScourgeUpside", affix = "", "(6-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(6-8)% increased Mana Reservation Efficiency of Skills" }, } }, + ["HellscapeUpsideReservationEfficiency4_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(10-12)% increased Mana Reservation Efficiency of Skills" }, } }, + ["HellscapeUpsideWarcrySpeed2__"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Warcry Speed", statOrder = { 3313 }, level = 45, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(16-20)% increased Warcry Speed" }, } }, + ["HellscapeUpsideWarcrySpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Warcry Speed", statOrder = { 3313 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } }, + ["HellscapeUpsideWarcrySpeed4_"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Warcry Speed", statOrder = { 3313 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } }, + ["HellscapeUpsideColdDamageLeechedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.2-0.3)% of Cold Damage Leeched as Life" }, } }, + ["HellscapeUpsideColdDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.31-0.4)% of Cold Damage Leeched as Life" }, } }, + ["HellscapeUpsideColdDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.41-0.5)% of Cold Damage Leeched as Life" }, } }, + ["HellscapeUpsideFireDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.2-0.3)% of Fire Damage Leeched as Life" }, } }, + ["HellscapeUpsideFireDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.31-0.4)% of Fire Damage Leeched as Life" }, } }, + ["HellscapeUpsideFireDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.41-0.5)% of Fire Damage Leeched as Life" }, } }, + ["HellscapeUpsideLightningDamageLeechedAsLife2__"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.2-0.3)% of Lightning Damage Leeched as Life" }, } }, + ["HellscapeUpsideLightningDamageLeechedAsLife3_"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.31-0.4)% of Lightning Damage Leeched as Life" }, } }, + ["HellscapeUpsideLightningDamageLeechedAsLife4_"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.41-0.5)% of Lightning Damage Leeched as Life" }, } }, + ["HellscapeUpsideChaosDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.2-0.3)% of Chaos Damage Leeched as Life" }, } }, + ["HellscapeUpsideChaosDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.31-0.4)% of Chaos Damage Leeched as Life" }, } }, + ["HellscapeUpsideChaosDamageLeechedAsLife4__"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.41-0.5)% of Chaos Damage Leeched as Life" }, } }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.2-0.3)% of Physical Damage Leeched as Life" }, } }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.31-0.4)% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.31-0.4)% of Physical Damage Leeched as Life" }, } }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife4____"] = { type = "ScourgeUpside", affix = "", "(0.41-0.5)% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.41-0.5)% of Physical Damage Leeched as Life" }, } }, + ["HellscapeUpsideKeystoneMinionInstability"] = { type = "ScourgeUpside", affix = "", "Minion Instability", statOrder = { 10965 }, level = 68, group = "MinionInstability", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } }, + ["HellscapeUpsideKeystoneResoluteTechnique"] = { type = "ScourgeUpside", affix = "", "Resolute Technique", statOrder = { 10996 }, level = 68, group = "ResoluteTechnique", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, + ["HellscapeUpsideKeystoneBloodMagic"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10936 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["HellscapeUpsideKeystonePainAttunement"] = { type = "ScourgeUpside", affix = "", "Pain Attunement", statOrder = { 10967 }, level = 68, group = "PainAttunement", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["HellscapeUpsideKeystoneElementalEquilibrium_"] = { type = "ScourgeUpside", affix = "", "Elemental Equilibrium", statOrder = { 10946 }, level = 68, group = "ElementalEquilibrium", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } }, + ["HellscapeUpsideKeystoneIronGrip"] = { type = "ScourgeUpside", affix = "", "Iron Grip", statOrder = { 10984 }, level = 68, group = "IronGrip", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } }, + ["HellscapeUpsideKeystonePointBlank"] = { type = "ScourgeUpside", affix = "", "Point Blank", statOrder = { 10968 }, level = 68, group = "PointBlank", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } }, + ["HellscapeUpsideKeystoneAcrobatics___"] = { type = "ScourgeUpside", affix = "", "Acrobatics", statOrder = { 10931 }, level = 68, group = "Acrobatics", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, + ["HellscapeUpsideKeystoneGhostReaver"] = { type = "ScourgeUpside", affix = "", "Ghost Reaver", statOrder = { 10953 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } }, + ["HellscapeUpsideKeystoneVaalPact"] = { type = "ScourgeUpside", affix = "", "Vaal Pact", statOrder = { 10989 }, level = 68, group = "VaalPact", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, + ["HellscapeUpsideKeystoneElementalOverload"] = { type = "ScourgeUpside", affix = "", "Elemental Overload", statOrder = { 10947 }, level = 68, group = "ElementalOverload", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } }, + ["HellscapeUpsideKeystoneAvatarOfFire"] = { type = "ScourgeUpside", affix = "", "Avatar of Fire", statOrder = { 10934 }, level = 68, group = "AvatarOfFire", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } }, + ["HellscapeUpsideKeystoneEldritchBattery_"] = { type = "ScourgeUpside", affix = "", "Eldritch Battery", statOrder = { 10945 }, level = 68, group = "EldritchBattery", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["HellscapeUpsideKeystoneAncestralBond"] = { type = "ScourgeUpside", affix = "", "Ancestral Bond", statOrder = { 10933 }, level = 68, group = "AncestralBond", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } }, + ["HellscapeUpsideKeystoneCrimsonDance_"] = { type = "ScourgeUpside", affix = "", "Crimson Dance", statOrder = { 10942 }, level = 68, group = "CrimsonDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } }, + ["HellscapeUpsideKeystonePerfectAgony_"] = { type = "ScourgeUpside", affix = "", "Perfect Agony", statOrder = { 10932 }, level = 68, group = "PerfectAgony", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } }, + ["HellscapeUpsideKeystoneRunebinder___"] = { type = "ScourgeUpside", affix = "", "Runebinder", statOrder = { 10976 }, level = 68, group = "Runebinder", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } }, + ["HellscapeUpsideKeystoneMortalConviction_"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10936 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["HellscapeUpsideKeystoneCallToArms"] = { type = "ScourgeUpside", affix = "", "Call to Arms", statOrder = { 10937 }, level = 68, group = "CallToArms", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } }, + ["HellscapeUpsideKeystoneTheAgnostic_"] = { type = "ScourgeUpside", affix = "", "The Agnostic", statOrder = { 10966 }, level = 68, group = "TheAgnostic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } }, + ["HellscapeUpsideKeystoneSupremeEgo_"] = { type = "ScourgeUpside", affix = "", "Supreme Ego", statOrder = { 10985 }, level = 68, group = "SupremeEgo", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } }, + ["HellscapeUpsideKeystoneTheImpaler_"] = { type = "ScourgeUpside", affix = "", "The Impaler", statOrder = { 10958 }, level = 68, group = "Impaler", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } }, + ["HellscapeUpsideKeystoneDoomsday"] = { type = "ScourgeUpside", affix = "", "Hex Master", statOrder = { 10956 }, level = 68, group = "HexMaster", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } }, + ["HellscapeUpsideKeystoneLetheShade1_"] = { type = "ScourgeUpside", affix = "", "Lethe Shade", statOrder = { 10960 }, level = 68, group = "LetheShade", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } }, + ["HellscapeUpsideKeystoneGhostDance"] = { type = "ScourgeUpside", affix = "", "Ghost Dance", statOrder = { 10952 }, level = 68, group = "GhostDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } }, + ["HellscapeUpsideKeystoneVersatileCombatant___"] = { type = "ScourgeUpside", affix = "", "Versatile Combatant", statOrder = { 10990 }, level = 68, group = "VersatileCombatant", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } }, + ["HellscapeUpsideKeystoneMagebane"] = { type = "ScourgeUpside", affix = "", "Magebane", statOrder = { 10962 }, level = 68, group = "Magebane", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } }, + ["HellscapeUpsideKeystoneSolipsism"] = { type = "ScourgeUpside", affix = "", "Solipsism", statOrder = { 10982 }, level = 68, group = "Solipsism", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } }, + ["HellscapeUpsideKeystoneDivineShield"] = { type = "ScourgeUpside", affix = "", "Divine Shield", statOrder = { 10944 }, level = 68, group = "DivineShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } }, + ["HellscapeUpsideKeystoneIronWill"] = { type = "ScourgeUpside", affix = "", "Iron Will", statOrder = { 10997 }, level = 68, group = "IronWill", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } }, + ["HellscapeUpsideLifeGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, + ["HellscapeUpsideLifeGainOnHitWithAttacks2_"] = { type = "ScourgeUpside", affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 45, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (3-4) Life per Enemy Hit with Attacks" }, } }, + ["HellscapeUpsideLifeGainOnHitWithAttacks3"] = { type = "ScourgeUpside", affix = "", "Gain (5-7) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (5-7) Life per Enemy Hit with Attacks" }, } }, + ["HellscapeUpsideLifeGainOnHitWithAttacks4_"] = { type = "ScourgeUpside", affix = "", "Gain (8-10) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (8-10) Life per Enemy Hit with Attacks" }, } }, + ["HellscapeUpsideManaGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 1, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 2 Mana per Enemy Hit with Attacks" }, } }, + ["HellscapeUpsideManaGainOnHitWithAttacks2__"] = { type = "ScourgeUpside", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 45, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 3 Mana per Enemy Hit with Attacks" }, } }, + ["HellscapeUpsideManaGainOnHitWithAttacks3_"] = { type = "ScourgeUpside", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 4 Mana per Enemy Hit with Attacks" }, } }, + ["HellscapeUpsideManaGainOnHitWithAttacks4__"] = { type = "ScourgeUpside", affix = "", "Gain 5 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 5 Mana per Enemy Hit with Attacks" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Lightning Damage", statOrder = { 478 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 1 Added Lightning Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedLightningDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Lightning Damage", statOrder = { 478 }, level = 45, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 10 Added Lightning Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 478 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 20 Added Lightning Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Lightning Damage", statOrder = { 478 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 22 Added Lightning Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedColdDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Cold Damage", statOrder = { 529 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 1 Added Cold Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Cold Damage", statOrder = { 529 }, level = 45, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 10 Added Cold Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 529 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 20 Added Cold Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Cold Damage", statOrder = { 529 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, tradeHashes = { [4020144606] = { "Socketed Gems are Supported by Level 22 Added Cold Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Chaos Damage", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 1 Added Chaos Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedChaosDamage_____"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 469 }, level = 45, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 10 Added Chaos Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 469 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 20 Added Chaos Damage" }, } }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedChaosDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Chaos Damage", statOrder = { 469 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, tradeHashes = { [411460446] = { "Socketed Gems are Supported by Level 22 Added Chaos Damage" }, } }, + ["HellscapeUpsideCannotBeFrozen___"] = { type = "ScourgeUpside", affix = "", "Cannot be Frozen", statOrder = { 1861 }, level = 1, group = "CannotBeFrozen", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, + ["HellscapeUpsideGainLifeChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7448 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } }, + ["HellscapeUpsideGainManaChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 8289 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } }, + ["HellscapeUpsideChillOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(14-16)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["HellscapeUpsideChillOnBlock2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 45, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(17-19)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["HellscapeUpsideChillOnBlock3"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(20-22)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["HellscapeUpsideChillOnBlock4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5847 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(23-25)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["HellscapeUpsideShockOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(14-16)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["HellscapeUpsideShockOnBlock2___"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 45, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(17-19)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["HellscapeUpsideShockOnBlock3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(20-22)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["HellscapeUpsideShockOnBlock4__"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10150 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(23-25)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["HellscapeUpsideSocketedStrengthGems___"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 161 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, + ["HellscapeUpsideSocketedDexterityGems"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 163 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, + ["HellscapeUpsideSocketedIntelligenceGems__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 164 }, level = 1, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, + ["HellscapeUpsideGrantsLevel1HeraldOfIce__"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ice Skill", statOrder = { 722 }, level = 1, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3846248551] = { "Grants Level 1 Herald of Ice Skill" }, } }, + ["HellscapeUpsideGrantsLevel10HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ice Skill", statOrder = { 722 }, level = 45, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [3846248551] = { "Grants Level 10 Herald of Ice Skill" }, } }, + ["HellscapeUpsideGrantsLevel20HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ice Skill", statOrder = { 722 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3846248551] = { "Grants Level 20 Herald of Ice Skill" }, } }, + ["HellscapeUpsideGrantsLevel22HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ice Skill", statOrder = { 722 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3846248551] = { "Grants Level 22 Herald of Ice Skill" }, } }, + ["HellscapeUpsideGrantsLevel1HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ash Skill", statOrder = { 721 }, level = 1, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [3880462354] = { "Grants Level 1 Herald of Ash Skill" }, } }, + ["HellscapeUpsideGrantsLevel10HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ash Skill", statOrder = { 721 }, level = 45, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [3880462354] = { "Grants Level 10 Herald of Ash Skill" }, } }, + ["HellscapeUpsideGrantsLevel20HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ash Skill", statOrder = { 721 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3880462354] = { "Grants Level 20 Herald of Ash Skill" }, } }, + ["HellscapeUpsideGrantsLevel22HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ash Skill", statOrder = { 721 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3880462354] = { "Grants Level 22 Herald of Ash Skill" }, } }, + ["HellscapeUpsideGrantsLevel1HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Thunder Skill", statOrder = { 725 }, level = 1, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1665492921] = { "Grants Level 1 Herald of Thunder Skill" }, } }, + ["HellscapeUpsideGrantsLevel10HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Thunder Skill", statOrder = { 725 }, level = 45, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [1665492921] = { "Grants Level 10 Herald of Thunder Skill" }, } }, + ["HellscapeUpsideGrantsLevel20HeraldOfThunder_"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Thunder Skill", statOrder = { 725 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [1665492921] = { "Grants Level 20 Herald of Thunder Skill" }, } }, + ["HellscapeUpsideGrantsLevel22HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Thunder Skill", statOrder = { 725 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [1665492921] = { "Grants Level 22 Herald of Thunder Skill" }, } }, + ["HellscapeUpsideGrantsLevel1HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Purity Skill", statOrder = { 723 }, level = 1, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [738207023] = { "Grants Level 1 Herald of Purity Skill" }, } }, + ["HellscapeUpsideGrantsLevel10HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Purity Skill", statOrder = { 723 }, level = 45, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [738207023] = { "Grants Level 10 Herald of Purity Skill" }, } }, + ["HellscapeUpsideGrantsLevel20HeraldOfPurity_____"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Purity Skill", statOrder = { 723 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [738207023] = { "Grants Level 20 Herald of Purity Skill" }, } }, + ["HellscapeUpsideGrantsLevel22HeraldOfPurity_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Purity Skill", statOrder = { 723 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [738207023] = { "Grants Level 22 Herald of Purity Skill" }, } }, + ["HellscapeUpsideGrantsLevel1HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Agony Skill", statOrder = { 720 }, level = 1, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, tradeHashes = { [1504952168] = { "Grants Level 1 Herald of Agony Skill" }, } }, + ["HellscapeUpsideGrantsLevel10HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Agony Skill", statOrder = { 720 }, level = 45, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, tradeHashes = { [1504952168] = { "Grants Level 10 Herald of Agony Skill" }, } }, + ["HellscapeUpsideGrantsLevel20HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Agony Skill", statOrder = { 720 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [1504952168] = { "Grants Level 20 Herald of Agony Skill" }, } }, + ["HellscapeUpsideGrantsLevel22HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Agony Skill", statOrder = { 720 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [1504952168] = { "Grants Level 22 Herald of Agony Skill" }, } }, + ["HellscapeUpsideGrantsLevel1SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Sniper's Mark Skill", statOrder = { 670 }, level = 1, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 1 Sniper's Mark Skill" }, } }, + ["HellscapeUpsideGrantsLevel10SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Sniper's Mark Skill", statOrder = { 670 }, level = 45, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 10 Sniper's Mark Skill" }, } }, + ["HellscapeUpsideGrantsLevel20SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Sniper's Mark Skill", statOrder = { 670 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 20 Sniper's Mark Skill" }, } }, + ["HellscapeUpsideGrantsLevel22SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Sniper's Mark Skill", statOrder = { 670 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 22 Sniper's Mark Skill" }, } }, + ["HellscapeUpsideDaytimeFishSize___"] = { type = "ScourgeUpside", affix = "", "(10-30)% increased Size of Fish caught during Daytime", statOrder = { 6219 }, level = 1, group = "DaytimeFishSize", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1771018579] = { "(10-30)% increased Size of Fish caught during Daytime" }, } }, + ["HellscapeUpsideFishingCastDistance"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Fishing Range", statOrder = { 2882 }, level = 45, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(13-16)% increased Fishing Range" }, } }, + ["HellscapeUpsideFishingRarity"] = { type = "ScourgeUpside", affix = "", "(20-25)% increased Rarity of Fish Caught", statOrder = { 2884 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(20-25)% increased Rarity of Fish Caught" }, } }, + ["HellscapeUpsideStrengthAppliesToFishingReelSpeed_"] = { type = "ScourgeUpside", affix = "", "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", statOrder = { 10403 }, level = 1, group = "StrengthAppliesToFishingReelSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4039414411] = { "Strength's Damage bonus also applies to Reeling Speed at 20% of its value" }, } }, + ["HellscapeUpsideCanCatchScourgedFish"] = { type = "ScourgeUpside", affix = "", "You can catch Scourged Fish", statOrder = { 5460 }, level = 68, group = "CanCatchScourgedFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3385970045] = { "You can catch Scourged Fish" }, } }, + ["HellscapeDownsideStrengthRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Strength Requirement", statOrder = { 1109 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2833226514] = { "+(21-30) Strength Requirement" }, } }, + ["HellscapeDownsideStrengthRequirement1"] = { type = "ScourgeDownside", affix = "", "+(36-50) Strength Requirement", statOrder = { 1109 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2833226514] = { "+(36-50) Strength Requirement" }, } }, + ["HellscapeDownsideStrengthRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Strength Requirement", statOrder = { 1109 }, level = 45, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2833226514] = { "+(75-125) Strength Requirement" }, } }, + ["HellscapeDownsideStrengthRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Strength Requirement", statOrder = { 1109 }, level = 68, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2833226514] = { "+(150-200) Strength Requirement" }, } }, + ["HellscapeDownsideDexterityRequirement0__"] = { type = "ScourgeDownside", affix = "", "+(21-30) Dexterity Requirement", statOrder = { 1101 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1133453872] = { "+(21-30) Dexterity Requirement" }, } }, + ["HellscapeDownsideDexterityRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Dexterity Requirement", statOrder = { 1101 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1133453872] = { "+(36-50) Dexterity Requirement" }, } }, + ["HellscapeDownsideDexterityRequirement2_"] = { type = "ScourgeDownside", affix = "", "+(75-125) Dexterity Requirement", statOrder = { 1101 }, level = 45, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1133453872] = { "+(75-125) Dexterity Requirement" }, } }, + ["HellscapeDownsideDexterityRequirement3__"] = { type = "ScourgeDownside", affix = "", "+(150-200) Dexterity Requirement", statOrder = { 1101 }, level = 68, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1133453872] = { "+(150-200) Dexterity Requirement" }, } }, + ["HellscapeDownsideIntelligenceRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Intelligence Requirement", statOrder = { 1103 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2153364323] = { "+(21-30) Intelligence Requirement" }, } }, + ["HellscapeDownsideIntelligenceRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Intelligence Requirement", statOrder = { 1103 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2153364323] = { "+(36-50) Intelligence Requirement" }, } }, + ["HellscapeDownsideIntelligenceRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Intelligence Requirement", statOrder = { 1103 }, level = 45, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2153364323] = { "+(75-125) Intelligence Requirement" }, } }, + ["HellscapeDownsideIntelligenceRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Intelligence Requirement", statOrder = { 1103 }, level = 68, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2153364323] = { "+(150-200) Intelligence Requirement" }, } }, + ["HellscapeDownsideCannotCrit_"] = { type = "ScourgeDownside", affix = "", "Never deal Critical Strikes", statOrder = { 2201 }, level = 45, group = "HellscapeDownsideCannotCrit", weightKey = { "body_armour", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3638599682] = { "Never deal Critical Strikes" }, } }, + ["HellscapeDownsideCannotBlock"] = { type = "ScourgeDownside", affix = "", "Cannot Block Attack Damage", "Cannot Block Spell Damage", statOrder = { 2281, 5503 }, level = 45, group = "HellscapeDownsideCannotBlock", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3162258068] = { "Cannot Block Attack Damage" }, [4076910393] = { "Cannot Block Spell Damage" }, } }, + ["HellscapeDownsideCannotEvade_"] = { type = "ScourgeDownside", affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1941 }, level = 45, group = "HellscapeDownsideCannotEvade", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, + ["HellscapeDownsideReducedFireResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(15-11)% to Fire Resistance" }, } }, + ["HellscapeDownsideReducedFireResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(20-16)% to Fire Resistance" }, } }, + ["HellscapeDownsideReducedFireResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Fire Resistance", statOrder = { 1648 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(25-21)% to Fire Resistance" }, } }, + ["HellscapeDownsideReducedFireResistance3_"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Fire Resistance", statOrder = { 1648 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "-(30-26)% to Fire Resistance" }, } }, + ["HellscapeDownsideReducedColdResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(15-11)% to Cold Resistance" }, } }, + ["HellscapeDownsideReducedColdResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(20-16)% to Cold Resistance" }, } }, + ["HellscapeDownsideReducedColdResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Cold Resistance", statOrder = { 1654 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(25-21)% to Cold Resistance" }, } }, + ["HellscapeDownsideReducedColdResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Cold Resistance", statOrder = { 1654 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-(30-26)% to Cold Resistance" }, } }, + ["HellscapeDownsideReducedLightningResistance0_"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(15-11)% to Lightning Resistance" }, } }, + ["HellscapeDownsideReducedLightningResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(20-16)% to Lightning Resistance" }, } }, + ["HellscapeDownsideReducedLightningResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Lightning Resistance", statOrder = { 1659 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(25-21)% to Lightning Resistance" }, } }, + ["HellscapeDownsideReducedLightningResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Lightning Resistance", statOrder = { 1659 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-(30-26)% to Lightning Resistance" }, } }, + ["HellscapeDownsideReducedChaosResistance0_"] = { type = "ScourgeDownside", affix = "", "-(13-10)% to Chaos Resistance", statOrder = { 1664 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(13-10)% to Chaos Resistance" }, } }, + ["HellscapeDownsideReducedChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-(17-14)% to Chaos Resistance", statOrder = { 1664 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(17-14)% to Chaos Resistance" }, } }, + ["HellscapeDownsideReducedChaosResistance2_"] = { type = "ScourgeDownside", affix = "", "-(21-18)% to Chaos Resistance", statOrder = { 1664 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(21-18)% to Chaos Resistance" }, } }, + ["HellscapeDownsideReducedChaosResistance3___"] = { type = "ScourgeDownside", affix = "", "-(25-22)% to Chaos Resistance", statOrder = { 1664 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(25-22)% to Chaos Resistance" }, } }, + ["HellscapeDownsideReducedElementalResistances0_"] = { type = "ScourgeDownside", affix = "", "-5% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-5% to all Elemental Resistances" }, } }, + ["HellscapeDownsideReducedElementalResistances1_"] = { type = "ScourgeDownside", affix = "", "-(7-6)% to all Elemental Resistances", statOrder = { 1642 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(7-6)% to all Elemental Resistances" }, } }, + ["HellscapeDownsideReducedElementalResistances2_"] = { type = "ScourgeDownside", affix = "", "-(9-8)% to all Elemental Resistances", statOrder = { 1642 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 750, 750, 750, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(9-8)% to all Elemental Resistances" }, } }, + ["HellscapeDownsideReducedElementalResistances3_"] = { type = "ScourgeDownside", affix = "", "-(11-10)% to all Elemental Resistances", statOrder = { 1642 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "-(11-10)% to all Elemental Resistances" }, } }, + ["HellscapeDownsideMinusMaximumLife0"] = { type = "ScourgeDownside", affix = "", "-(20-16) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-(20-16) to maximum Life" }, } }, + ["HellscapeDownsideMinusMaximumLife1_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-(25-21) to maximum Life" }, } }, + ["HellscapeDownsideMinusMaximumLife2"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Life", statOrder = { 1591 }, level = 45, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-(30-26) to maximum Life" }, } }, + ["HellscapeDownsideMinusMaximumLife3_"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Life", statOrder = { 1591 }, level = 68, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-(35-31) to maximum Life" }, } }, + ["HellscapeDownsideMinusMaximumMana0_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "-(25-21) to maximum Mana" }, } }, + ["HellscapeDownsideMinusMaximumMana1"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "-(30-26) to maximum Mana" }, } }, + ["HellscapeDownsideMinusMaximumMana2__"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Mana", statOrder = { 1602 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "-(35-31) to maximum Mana" }, } }, + ["HellscapeDownsideMinusMaximumMana3_"] = { type = "ScourgeDownside", affix = "", "-(40-36) to maximum Mana", statOrder = { 1602 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "-(40-36) to maximum Mana" }, } }, + ["HellscapeDownsideReducedGlobalDefences0"] = { type = "ScourgeDownside", affix = "", "(6-10)% reduced Global Defences", statOrder = { 2867 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1389153006] = { "(6-10)% reduced Global Defences" }, } }, + ["HellscapeDownsideReducedGlobalDefences1"] = { type = "ScourgeDownside", affix = "", "(11-15)% reduced Global Defences", statOrder = { 2867 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1389153006] = { "(11-15)% reduced Global Defences" }, } }, + ["HellscapeDownsideReducedGlobalDefences2"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Global Defences", statOrder = { 2867 }, level = 45, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1389153006] = { "(16-20)% reduced Global Defences" }, } }, + ["HellscapeDownsideReducedGlobalDefences3__"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Global Defences", statOrder = { 2867 }, level = 68, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1389153006] = { "(21-25)% reduced Global Defences" }, } }, + ["HellscapeDownsideDealNoDamageYourself_"] = { type = "ScourgeDownside", affix = "", "You can't deal Damage with your Skills yourself", statOrder = { 2273 }, level = 68, group = "HellscapeDownsideDealNoDamageYourself", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2248945598] = { "You can't deal Damage with your Skills yourself" }, } }, + ["HellscapeDownsideReducedMinionLife2_"] = { type = "ScourgeDownside", affix = "", "Minions have (30-33)% reduced maximum Life", statOrder = { 1789 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (30-33)% reduced maximum Life" }, } }, + ["HellscapeDownsideReducedMinionLife3_"] = { type = "ScourgeDownside", affix = "", "Minions have (36-39)% reduced maximum Life", statOrder = { 1789 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-39)% reduced maximum Life" }, } }, + ["HellscapeDownsideReservationEfficiency3"] = { type = "ScourgeDownside", affix = "", "(18-24)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(18-24)% reduced Mana Reservation Efficiency of Skills" }, } }, + ["HellscapeDownsideIncreasedChanceToBeCrit3__"] = { type = "ScourgeDownside", affix = "", "Hits have +10% additional Critical Strike Chance against you", statOrder = { 3165 }, level = 68, group = "HellscapeDownsideIncreasedChanceToBeCrit", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4152537231] = { "Hits have +10% additional Critical Strike Chance against you" }, } }, + ["HellscapeDownsideHinderedOnHitBySpells3__"] = { type = "ScourgeDownside", affix = "", "Spell Hits Hinder you", statOrder = { 5718 }, level = 68, group = "HellscapeDownsideHinderedOnHitBySpells", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1533511331] = { "Spell Hits Hinder you" }, } }, + ["HellscapeDownsideChanceToBeSilencedWhenHit3__"] = { type = "ScourgeDownside", affix = "", "(21-30)% chance to Curse you with Silence when Hit", statOrder = { 6093 }, level = 68, group = "HellscapeDownsideChanceToBeSilencedWhenHit", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3370064078] = { "(21-30)% chance to Curse you with Silence when Hit" }, } }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent0__"] = { type = "ScourgeDownside", affix = "", "(21-30)% reduced Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(21-30)% reduced Armour, Evasion and Energy Shield" }, } }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent1_"] = { type = "ScourgeDownside", affix = "", "(31-40)% reduced Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(31-40)% reduced Armour, Evasion and Energy Shield" }, } }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent2_"] = { type = "ScourgeDownside", affix = "", "(41-50)% reduced Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 45, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(41-50)% reduced Armour, Evasion and Energy Shield" }, } }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent3"] = { type = "ScourgeDownside", affix = "", "(51-60)% reduced Armour, Evasion and Energy Shield", statOrder = { 1577 }, level = 68, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(51-60)% reduced Armour, Evasion and Energy Shield" }, } }, + ["HellscapeDownsideMaximumElementalResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to all maximum Elemental Resistances", statOrder = { 1666 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "-1% to all maximum Elemental Resistances" }, } }, + ["HellscapeDownsideMaximumChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to maximum Chaos Resistance", statOrder = { 1663 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "-1% to maximum Chaos Resistance" }, } }, + ["HellscapeDownsideElementalResistanceMinion2__"] = { type = "ScourgeDownside", affix = "", "Minions have -(33-30)% to all Elemental Resistances", statOrder = { 2946 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have -(33-30)% to all Elemental Resistances" }, } }, + ["HellscapeDownsideElementalResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(39-36)% to all Elemental Resistances", statOrder = { 2946 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have -(39-36)% to all Elemental Resistances" }, } }, + ["HellscapeDownsideChaosResistanceMinion2"] = { type = "ScourgeDownside", affix = "", "Minions have -(51-42)% to Chaos Resistance", statOrder = { 2947 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have -(51-42)% to Chaos Resistance" }, } }, + ["HellscapeDownsideChaosResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(63-54)% to Chaos Resistance", statOrder = { 2947 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have -(63-54)% to Chaos Resistance" }, } }, + ["HellscapeDownsideAllAilmentDuration2"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Duration of Ailments on Enemies", statOrder = { 1883 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(21-25)% reduced Duration of Ailments on Enemies" }, } }, + ["HellscapeDownsideAllAilmentDuration3__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Duration of Ailments on Enemies", statOrder = { 1883 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(26-30)% reduced Duration of Ailments on Enemies" }, } }, + ["HellscapeDownsideElementalDurationOnSelf2"] = { type = "ScourgeDownside", affix = "", "(17-19)% increased Elemental Ailment Duration on you", statOrder = { 1890 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(17-19)% increased Elemental Ailment Duration on you" }, } }, + ["HellscapeDownsideElementalDurationOnSelf3__"] = { type = "ScourgeDownside", affix = "", "(20-22)% increased Elemental Ailment Duration on you", statOrder = { 1890 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-22)% increased Elemental Ailment Duration on you" }, } }, + ["HellscapeDownsideLifeOnBlock2__"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Life when you Block", statOrder = { 1780 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "Lose (31-40) Life when you Block" }, } }, + ["HellscapeDownsideLifeOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Life when you Block", statOrder = { 1780 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "Lose (41-50) Life when you Block" }, } }, + ["HellscapeDownsideManaOnBlock2_"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Mana when you Block", statOrder = { 1781 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "Lose (31-40) Mana when you Block" }, } }, + ["HellscapeDownsideManaOnBlock3_____"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Mana when you Block", statOrder = { 1781 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "Lose (41-50) Mana when you Block" }, } }, + ["HellscapeDownsideEnergyShieldOnBlock2___"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Energy Shield when you Block", statOrder = { 1782 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Lose (31-40) Energy Shield when you Block" }, } }, + ["HellscapeDownsideEnergyShieldOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Energy Shield when you Block", statOrder = { 1782 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Lose (41-50) Energy Shield when you Block" }, } }, + ["HellscapeDownsideChanceToBlockAttacks2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "-(10-8)% Chance to Block Attack Damage" }, } }, + ["HellscapeDownsideChanceToBlockAttacks3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [1702195217] = { "-(14-12)% Chance to Block Attack Damage" }, } }, + ["HellscapeDownsideChanceToBlockSpells2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "-(10-8)% Chance to Block Spell Damage" }, } }, + ["HellscapeDownsideChanceToBlockSpells3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Spell Damage", statOrder = { 2484 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [19803471] = { "-(14-12)% Chance to Block Spell Damage" }, } }, + ["HellscapeDownsideChanceToSuppressSpells2"] = { type = "ScourgeDownside", affix = "", "-(18-15)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "-(18-15)% chance to Suppress Spell Damage" }, } }, + ["HellscapeDownsideChanceToSuppressSpells3"] = { type = "ScourgeDownside", affix = "", "-(24-21)% chance to Suppress Spell Damage", statOrder = { 1167 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "-(24-21)% chance to Suppress Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(32-40)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(42-50)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage1h1b_"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Spell Damage", statOrder = { 1246 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(52-60)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Spell Damage", statOrder = { 1246 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(62-70)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Spell Damage", statOrder = { 1246 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(72-80)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(82-90)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(54-66)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(68-80)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage2h1b_"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Spell Damage", statOrder = { 1246 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(82-94)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage2h2____"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Spell Damage", statOrder = { 1246 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(96-108)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Spell Damage", statOrder = { 1246 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(110-122)% reduced Spell Damage" }, } }, + ["HellscapeDownsideSpellDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Spell Damage", statOrder = { 1246 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(124-136)% reduced Spell Damage" }, } }, + ["HellscapeDownsideColdDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(32-40)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(42-50)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Cold Damage", statOrder = { 1390 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(52-60)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Cold Damage", statOrder = { 1390 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(62-70)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage1h2b_______"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Cold Damage", statOrder = { 1390 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(72-80)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Cold Damage", statOrder = { 1390 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(82-90)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage2h0__"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(54-66)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(68-80)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Cold Damage", statOrder = { 1390 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(82-94)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Cold Damage", statOrder = { 1390 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(96-108)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage2h2b_"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Cold Damage", statOrder = { 1390 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(110-122)% reduced Cold Damage" }, } }, + ["HellscapeDownsideColdDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Cold Damage", statOrder = { 1390 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(124-136)% reduced Cold Damage" }, } }, + ["HellscapeDownsideFireDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(32-40)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(42-50)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Fire Damage", statOrder = { 1381 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(52-60)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Fire Damage", statOrder = { 1381 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(62-70)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Fire Damage", statOrder = { 1381 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(72-80)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Fire Damage", statOrder = { 1381 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(82-90)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(54-66)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage2h1__"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(68-80)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Fire Damage", statOrder = { 1381 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(82-94)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Fire Damage", statOrder = { 1381 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(96-108)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Fire Damage", statOrder = { 1381 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(110-122)% reduced Fire Damage" }, } }, + ["HellscapeDownsideFireDamage2h3____"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Fire Damage", statOrder = { 1381 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(124-136)% reduced Fire Damage" }, } }, + ["HellscapeDownsideLightningDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(32-40)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(42-50)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Lightning Damage", statOrder = { 1401 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(52-60)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Lightning Damage", statOrder = { 1401 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(62-70)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage1h2b_"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Lightning Damage", statOrder = { 1401 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(72-80)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Lightning Damage", statOrder = { 1401 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(82-90)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(54-66)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(68-80)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Lightning Damage", statOrder = { 1401 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(82-94)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage2h2___"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Lightning Damage", statOrder = { 1401 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(96-108)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Lightning Damage", statOrder = { 1401 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(110-122)% reduced Lightning Damage" }, } }, + ["HellscapeDownsideLightningDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Lightning Damage", statOrder = { 1401 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(124-136)% reduced Lightning Damage" }, } }, + ["HellscapeDownsidePhysicalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(32-40)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(42-50)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Global Physical Damage", statOrder = { 1254 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(52-60)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Global Physical Damage", statOrder = { 1254 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(62-70)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Global Physical Damage", statOrder = { 1254 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(72-80)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Global Physical Damage", statOrder = { 1254 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(82-90)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(54-66)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(68-80)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Global Physical Damage", statOrder = { 1254 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(82-94)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Global Physical Damage", statOrder = { 1254 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(96-108)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage2h2b__"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Global Physical Damage", statOrder = { 1254 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(110-122)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsidePhysicalDamage2h3______"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Global Physical Damage", statOrder = { 1254 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(124-136)% reduced Global Physical Damage" }, } }, + ["HellscapeDownsideElementalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(32-40)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(42-50)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage1h1b__"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(52-60)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Elemental Damage", statOrder = { 2003 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(62-70)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Elemental Damage", statOrder = { 2003 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(72-80)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage1h3__"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Elemental Damage", statOrder = { 2003 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(82-90)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(54-66)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(68-80)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Elemental Damage", statOrder = { 2003 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(82-94)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Elemental Damage", statOrder = { 2003 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(96-108)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Elemental Damage", statOrder = { 2003 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(110-122)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideElementalDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Elemental Damage", statOrder = { 2003 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(124-136)% reduced Elemental Damage" }, } }, + ["HellscapeDownsideChaosDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(32-40)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(42-50)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Chaos Damage", statOrder = { 1409 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(52-60)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Chaos Damage", statOrder = { 1409 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(62-70)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Chaos Damage", statOrder = { 1409 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(72-80)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Chaos Damage", statOrder = { 1409 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(82-90)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(54-66)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(68-80)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Chaos Damage", statOrder = { 1409 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(82-94)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Chaos Damage", statOrder = { 1409 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(96-108)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Chaos Damage", statOrder = { 1409 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(110-122)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideChaosDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Chaos Damage", statOrder = { 1409 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(124-136)% reduced Chaos Damage" }, } }, + ["HellscapeDownsideMinionDamage0"] = { type = "ScourgeDownside", affix = "", "Minions deal (18-21)% reduced Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-21)% reduced Damage" }, } }, + ["HellscapeDownsideMinionDamage1"] = { type = "ScourgeDownside", affix = "", "Minions deal (24-27)% reduced Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (24-27)% reduced Damage" }, } }, + ["HellscapeDownsideMinionDamage2"] = { type = "ScourgeDownside", affix = "", "Minions deal (30-33)% reduced Damage", statOrder = { 1996 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-33)% reduced Damage" }, } }, + ["HellscapeDownsideMinionDamage3"] = { type = "ScourgeDownside", affix = "", "Minions deal (36-39)% reduced Damage", statOrder = { 1996 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (36-39)% reduced Damage" }, } }, + ["HellscapeDownsideProjectileDamagePercentage0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Projectile Damage", statOrder = { 2019 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(18-21)% reduced Projectile Damage" }, } }, + ["HellscapeDownsideProjectileDamagePercentage1__"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Projectile Damage", statOrder = { 2019 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(24-27)% reduced Projectile Damage" }, } }, + ["HellscapeDownsideProjectileDamagePercentage2_"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Projectile Damage", statOrder = { 2019 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(30-33)% reduced Projectile Damage" }, } }, + ["HellscapeDownsideProjectileDamagePercentage3_"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Projectile Damage", statOrder = { 2019 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(36-39)% reduced Projectile Damage" }, } }, + ["HellscapeDownsideCriticalStrikeChance2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Global Critical Strike Chance", statOrder = { 1482 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(51-57)% reduced Global Critical Strike Chance" }, } }, + ["HellscapeDownsideCriticalStrikeChance3_"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Global Critical Strike Chance", statOrder = { 1482 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(60-66)% reduced Global Critical Strike Chance" }, } }, + ["HellscapeDownsideCriticalStrikeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "-(57-51)% to Global Critical Strike Multiplier" }, } }, + ["HellscapeDownsideCriticalStrikeMultiplier3__"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "-(66-60)% to Global Critical Strike Multiplier" }, } }, + ["HellscapeDownsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Critical Strike Chance with Bows", statOrder = { 1488 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(51-57)% reduced Critical Strike Chance with Bows" }, } }, + ["HellscapeDownsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Critical Strike Chance with Bows", statOrder = { 1488 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(60-66)% reduced Critical Strike Chance with Bows" }, } }, + ["HellscapeDownsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "-(57-51)% to Critical Strike Multiplier with Bows" }, } }, + ["HellscapeDownsideCriticalStrikeMultiplierWithBows3"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "-(66-60)% to Critical Strike Multiplier with Bows" }, } }, + ["HellscapeDownsideDamageOverTimeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(30-24)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "-(30-24)% to Damage over Time Multiplier" }, } }, + ["HellscapeDownsideDamageOverTimeMultiplier3"] = { type = "ScourgeDownside", affix = "", "-(39-33)% to Damage over Time Multiplier", statOrder = { 1265 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "-(39-33)% to Damage over Time Multiplier" }, } }, + ["HellscapeDownsideAttackSpeed0"] = { type = "ScourgeDownside", affix = "", "(9-12)% reduced Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-12)% reduced Attack Speed" }, } }, + ["HellscapeDownsideAttackSpeed1__"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(15-18)% reduced Attack Speed" }, } }, + ["HellscapeDownsideAttackSpeed2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Attack Speed", statOrder = { 1434 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(21-24)% reduced Attack Speed" }, } }, + ["HellscapeDownsideAttackSpeed3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Attack Speed", statOrder = { 1434 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(27-30)% reduced Attack Speed" }, } }, + ["HellscapeDownsideCastSpeed0"] = { type = "ScourgeDownside", affix = "", "12% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% reduced Cast Speed" }, } }, + ["HellscapeDownsideCastSpeed1_"] = { type = "ScourgeDownside", affix = "", "15% reduced Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "15% reduced Cast Speed" }, } }, + ["HellscapeDownsideCastSpeed2"] = { type = "ScourgeDownside", affix = "", "18% reduced Cast Speed", statOrder = { 1470 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "18% reduced Cast Speed" }, } }, + ["HellscapeDownsideCastSpeed3"] = { type = "ScourgeDownside", affix = "", "21% reduced Cast Speed", statOrder = { 1470 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "21% reduced Cast Speed" }, } }, + ["HellscapeDownsideAttackAndCastSpeedMinion2_"] = { type = "ScourgeDownside", affix = "", "Minions have (21-24)% reduced Attack Speed", "Minions have (21-24)% reduced Cast Speed", statOrder = { 2941, 2942 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (21-24)% reduced Attack Speed" }, [4000101551] = { "Minions have (21-24)% reduced Cast Speed" }, } }, + ["HellscapeDownsideAttackAndCastSpeedMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have (27-30)% reduced Attack Speed", "Minions have (27-30)% reduced Cast Speed", statOrder = { 2941, 2942 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (27-30)% reduced Attack Speed" }, [4000101551] = { "Minions have (27-30)% reduced Cast Speed" }, } }, + ["HellscapeDownsideLifeOnKill3__"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Life on Kill", statOrder = { 1772 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 3% of Life on Kill" }, } }, + ["HellscapeDownsideManaOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Mana on Kill", statOrder = { 1774 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Lose 3% of Mana on Kill" }, } }, + ["HellscapeDownsideEnergyShieldOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Energy Shield on Kill", statOrder = { 1773 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Lose 3% of Energy Shield on Kill" }, } }, + ["HellscapeDownsideAccuracyPercent2"] = { type = "ScourgeDownside", affix = "", "(33-42)% reduced Global Accuracy Rating", statOrder = { 1458 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(33-42)% reduced Global Accuracy Rating" }, } }, + ["HellscapeDownsideAccuracyPercent3__"] = { type = "ScourgeDownside", affix = "", "(45-51)% reduced Global Accuracy Rating", statOrder = { 1458 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(45-51)% reduced Global Accuracy Rating" }, } }, + ["HellscapeDownsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeDownside", affix = "", "-2 to Level of Socketed Gems", statOrder = { 165 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "-2 to Level of Socketed Gems" }, } }, + ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel1h"] = { type = "ScourgeDownside", affix = "", "-2 to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "-2 to Level of all Spell Skill Gems" }, } }, + ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel2h"] = { type = "ScourgeDownside", affix = "", "-4 to Level of all Spell Skill Gems", statOrder = { 1631 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "-4 to Level of all Spell Skill Gems" }, } }, + ["HellscapeDownsideAdditionalRaisedZombie1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Raised Zombies", statOrder = { 2183 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "-2 to maximum number of Raised Zombies" }, } }, + ["HellscapeDownsideAdditionalSkeleton1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Skeletons", statOrder = { 2185 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "-2 to maximum number of Skeletons" }, } }, + ["HellscapeDownsideAreaDamage0___"] = { type = "ScourgeDownside", affix = "", "(24-30)% reduced Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(24-30)% reduced Area Damage" }, } }, + ["HellscapeDownsideAreaDamage1"] = { type = "ScourgeDownside", affix = "", "(33-45)% reduced Area Damage", statOrder = { 2058 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(33-45)% reduced Area Damage" }, } }, + ["HellscapeDownsideAreaDamage2_"] = { type = "ScourgeDownside", affix = "", "(48-60)% reduced Area Damage", statOrder = { 2058 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(48-60)% reduced Area Damage" }, } }, + ["HellscapeDownsideAreaDamage3"] = { type = "ScourgeDownside", affix = "", "(63-75)% reduced Area Damage", statOrder = { 2058 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(63-75)% reduced Area Damage" }, } }, + ["HellscapeDownsideRarityOfItemsFound0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(18-21)% reduced Rarity of Items found" }, } }, + ["HellscapeDownsideRarityOfItemsFound1_"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(24-27)% reduced Rarity of Items found" }, } }, + ["HellscapeDownsideRarityOfItemsFound2"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Rarity of Items found", statOrder = { 1619 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(30-33)% reduced Rarity of Items found" }, } }, + ["HellscapeDownsideRarityOfItemsFound3"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Rarity of Items found", statOrder = { 1619 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(36-39)% reduced Rarity of Items found" }, } }, + ["HellscapeDownsideLifeRegeneration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Life Regeneration rate", statOrder = { 1600 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(21-27)% reduced Life Regeneration rate" }, } }, + ["HellscapeDownsideLifeRegeneration3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Life Regeneration rate", statOrder = { 1600 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(30-36)% reduced Life Regeneration rate" }, } }, + ["HellscapeDownsideMovementVelocity0"] = { type = "ScourgeDownside", affix = "", "(6-7)% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(6-7)% reduced Movement Speed" }, } }, + ["HellscapeDownsideMovementVelocity1_"] = { type = "ScourgeDownside", affix = "", "(8-9)% reduced Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-9)% reduced Movement Speed" }, } }, + ["HellscapeDownsideMovementVelocity2"] = { type = "ScourgeDownside", affix = "", "(10-11)% reduced Movement Speed", statOrder = { 1821 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(10-11)% reduced Movement Speed" }, } }, + ["HellscapeDownsideMovementVelocity3"] = { type = "ScourgeDownside", affix = "", "(12-13)% reduced Movement Speed", statOrder = { 1821 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(12-13)% reduced Movement Speed" }, } }, + ["HellscapeDownsideMovementSkillsAreDisabled1_"] = { type = "ScourgeDownside", affix = "", "Your Movement Skills are Disabled", statOrder = { 10849 }, level = 68, group = "MovementSkillsAreDisabled", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [86000920] = { "Your Movement Skills are Disabled" }, } }, + ["HellscapeDownsideManaRegeneration0"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(16-20)% reduced Mana Regeneration Rate" }, } }, + ["HellscapeDownsideManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(21-25)% reduced Mana Regeneration Rate" }, } }, + ["HellscapeDownsideManaRegeneration2__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Mana Regeneration Rate", statOrder = { 1607 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(26-30)% reduced Mana Regeneration Rate" }, } }, + ["HellscapeDownsideManaRegeneration2b"] = { type = "ScourgeDownside", affix = "", "(31-35)% reduced Mana Regeneration Rate", statOrder = { 1607 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(31-35)% reduced Mana Regeneration Rate" }, } }, + ["HellscapeDownsideManaRegeneration3"] = { type = "ScourgeDownside", affix = "", "(36-40)% reduced Mana Regeneration Rate", statOrder = { 1607 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(36-40)% reduced Mana Regeneration Rate" }, } }, + ["HellscapeDownsideManaRegeneration3b"] = { type = "ScourgeDownside", affix = "", "(46-50)% reduced Mana Regeneration Rate", statOrder = { 1607 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(46-50)% reduced Mana Regeneration Rate" }, } }, + ["HellscapeDownsideManaRegenFlat0________"] = { type = "ScourgeDownside", affix = "", "Lose (3.3-4.2) Mana per Second", statOrder = { 8285 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (3.3-4.2) Mana per Second" }, } }, + ["HellscapeDownsideManaRegenFlat1"] = { type = "ScourgeDownside", affix = "", "Lose (4.6-5.7) Mana per Second", statOrder = { 8285 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (4.6-5.7) Mana per Second" }, } }, + ["HellscapeDownsideManaRegenFlat1b_"] = { type = "ScourgeDownside", affix = "", "Lose (5.8-6.7) Mana per Second", statOrder = { 8285 }, level = 15, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (5.8-6.7) Mana per Second" }, } }, + ["HellscapeDownsideManaRegenFlat1c"] = { type = "ScourgeDownside", affix = "", "Lose (7.7-8.3) Mana per Second", statOrder = { 8285 }, level = 25, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (7.7-8.3) Mana per Second" }, } }, + ["HellscapeDownsideManaRegenFlat1d"] = { type = "ScourgeDownside", affix = "", "Lose (9.3-10) Mana per Second", statOrder = { 8285 }, level = 35, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (9.3-10) Mana per Second" }, } }, + ["HellscapeDownsideManaRegenFlat2"] = { type = "ScourgeDownside", affix = "", "Lose (11-11.7) Mana per Second", statOrder = { 8285 }, level = 45, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (11-11.7) Mana per Second" }, } }, + ["HellscapeDownsideManaRegenFlat2b"] = { type = "ScourgeDownside", affix = "", "Lose (12.7-13.3) Mana per Second", statOrder = { 8285 }, level = 55, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (12.7-13.3) Mana per Second" }, } }, + ["HellscapeDownsideManaRegenFlat3"] = { type = "ScourgeDownside", affix = "", "Lose (14.3-15) Mana per Second", statOrder = { 8285 }, level = 68, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [2589042711] = { "Lose (14.3-15) Mana per Second" }, } }, + ["HellscapeDownsideCannotLeechLife1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Life", statOrder = { 2593 }, level = 68, group = "CannotLeechLife", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3769854701] = { "Cannot Leech Life" }, } }, + ["HellscapeDownsideCannotLeechMana1_"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Mana", statOrder = { 2594 }, level = 68, group = "CannotLeechMana", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, + ["HellscapeDownsideCannotLeechEnergyShield1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Energy Shield", statOrder = { 5052 }, level = 68, group = "CannotLeechEnergyShield", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [700952022] = { "Cannot Leech Energy Shield" }, } }, + ["HellscapeDownsideFlaskChargesGained2_"] = { type = "ScourgeDownside", affix = "", "(22-30)% reduced Flask Charges gained", statOrder = { 2206 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(22-30)% reduced Flask Charges gained" }, } }, + ["HellscapeDownsideFlaskChargesGained3__"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Flask Charges gained", statOrder = { 2206 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(32-40)% reduced Flask Charges gained" }, } }, + ["HellscapeDownsideFlaskChargesUsed2"] = { type = "ScourgeDownside", affix = "", "(32-40)% increased Flask Charges used", statOrder = { 2207 }, level = 45, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(32-40)% increased Flask Charges used" }, } }, + ["HellscapeDownsideFlaskChargesUsed3"] = { type = "ScourgeDownside", affix = "", "(42-50)% increased Flask Charges used", statOrder = { 2207 }, level = 68, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(42-50)% increased Flask Charges used" }, } }, + ["HellscapeDownsideFlaskLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Life Recovery from Flasks", statOrder = { 2082 }, level = 45, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(24-28)% reduced Life Recovery from Flasks" }, } }, + ["HellscapeDownsideFlaskLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Life Recovery from Flasks", statOrder = { 2082 }, level = 68, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(30-34)% reduced Life Recovery from Flasks" }, } }, + ["HellscapeDownsideFlaskManaRecoveryRate2_"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Mana Recovery from Flasks", statOrder = { 2083 }, level = 45, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(24-28)% reduced Mana Recovery from Flasks" }, } }, + ["HellscapeDownsideFlaskManaRecoveryRate3___"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Mana Recovery from Flasks", statOrder = { 2083 }, level = 68, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(30-34)% reduced Mana Recovery from Flasks" }, } }, + ["HellscapeDownsideCannotApplyBleed1"] = { type = "ScourgeDownside", affix = "", "Attacks cannot cause Bleeding", statOrder = { 2515 }, level = 68, group = "CannotCauseBleeding", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [129138230] = { "Attacks cannot cause Bleeding" }, } }, + ["HellscapeDownsideCannotApplyPoison1_"] = { type = "ScourgeDownside", affix = "", "Your Chaos Damage cannot Poison", "Your Physical Damage cannot Poison", statOrder = { 2922, 2924 }, level = 68, group = "CannotCausePoison", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [733138911] = { "Your Physical Damage cannot Poison" }, [2578701544] = { "Your Chaos Damage cannot Poison" }, } }, + ["HellscapeDownsideCannotApplyStun1"] = { type = "ScourgeDownside", affix = "", "Your Hits cannot Stun Enemies", statOrder = { 1878 }, level = 68, group = "CannotStun", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [373932729] = { "Your Hits cannot Stun Enemies" }, } }, + ["HellscapeDownsideCooldownRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(12-16)% reduced Cooldown Recovery Rate", statOrder = { 5058 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-16)% reduced Cooldown Recovery Rate" }, } }, + ["HellscapeDownsideLifePercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Life", statOrder = { 1593 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(15-18)% reduced maximum Life" }, } }, + ["HellscapeDownsideManaPercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Mana", statOrder = { 1603 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(15-18)% reduced maximum Mana" }, } }, + ["HellscapeDownsideCursedWithDespair1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Despair", statOrder = { 10806 }, level = 68, group = "SelfCurseDespair", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2177148618] = { "You are Cursed with Despair" }, } }, + ["HellscapeDownsideCursedWithElementalWeakness1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Elemental Weakness", statOrder = { 10807 }, level = 68, group = "SelfCurseElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [916233227] = { "You are Cursed with Elemental Weakness" }, } }, + ["HellscapeDownsideCursedWithEnfeeble1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Enfeeble", statOrder = { 10808 }, level = 68, group = "SelfCurseEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [2102270408] = { "You are Cursed with Enfeeble" }, } }, + ["HellscapeDownsideCursedWithTemporalChains1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Temporal Chains", statOrder = { 10811 }, level = 68, group = "SelfCurseTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [226443538] = { "You are Cursed with Temporal Chains" }, } }, + ["HellscapeDownsideCursedWithVulnerability1____"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Vulnerability", statOrder = { 10812 }, level = 68, group = "SelfCurseVulnerability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [3947740014] = { "You are Cursed with Vulnerability" }, } }, + ["HellscapeDownsideCursedWithConductivity1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Conductivity", statOrder = { 10805 }, level = 68, group = "SelfCurseConductivity", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [4256430383] = { "You are Cursed with Conductivity" }, } }, + ["HellscapeDownsideCursedWithFlammability1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Flammability", statOrder = { 10809 }, level = 68, group = "SelfCurseFlammability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [469425157] = { "You are Cursed with Flammability" }, } }, + ["HellscapeDownsideCursedWithFrostbite1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Frostbite", statOrder = { 10810 }, level = 68, group = "SelfCurseFrostbite", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [469418792] = { "You are Cursed with Frostbite" }, } }, + ["HellscapeDownsidePhysicalDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Physical Damage taken", statOrder = { 2264 }, level = 45, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(7-8)% increased Physical Damage taken" }, } }, + ["HellscapeDownsidePhysicalDamageTaken3____"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Physical Damage taken", statOrder = { 2264 }, level = 68, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(9-10)% increased Physical Damage taken" }, } }, + ["HellscapeDownsideFireDamageTaken2_"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Fire Damage taken", statOrder = { 2265 }, level = 45, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(7-8)% increased Fire Damage taken" }, } }, + ["HellscapeDownsideFireDamageTaken3_"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Fire Damage taken", statOrder = { 2265 }, level = 68, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(9-10)% increased Fire Damage taken" }, } }, + ["HellscapeDownsideColdDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Cold Damage taken", statOrder = { 3425 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(7-8)% increased Cold Damage taken" }, } }, + ["HellscapeDownsideColdDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Cold Damage taken", statOrder = { 3425 }, level = 68, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(9-10)% increased Cold Damage taken" }, } }, + ["HellscapeDownsideLightningDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Lightning Damage taken", statOrder = { 3424 }, level = 45, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(7-8)% increased Lightning Damage taken" }, } }, + ["HellscapeDownsideLightningDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Lightning Damage taken", statOrder = { 3424 }, level = 68, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(9-10)% increased Lightning Damage taken" }, } }, + ["HellscapeDownsideChaosDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Chaos Damage taken", statOrder = { 2266 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(7-8)% increased Chaos Damage taken" }, } }, + ["HellscapeDownsideChaosDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Chaos Damage taken", statOrder = { 2266 }, level = 68, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(9-10)% increased Chaos Damage taken" }, } }, + ["HellscapeDownsideTotemDuration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Duration", statOrder = { 1801 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(21-27)% reduced Totem Duration" }, } }, + ["HellscapeDownsideTotemDuration3_"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Duration", statOrder = { 1801 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, tradeHashes = { [2357996603] = { "(30-36)% reduced Totem Duration" }, } }, + ["HellscapeDownsideTotemLife2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Life", statOrder = { 1797 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(21-27)% reduced Totem Life" }, } }, + ["HellscapeDownsideTotemLife3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Life", statOrder = { 1797 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(30-36)% reduced Totem Life" }, } }, + ["HellscapeDownsideBrandDuration2"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (36-42)% reduced Duration", statOrder = { 10184 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (36-42)% reduced Duration" }, } }, + ["HellscapeDownsideBrandDuration3_"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (45-51)% reduced Duration", statOrder = { 10184 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, tradeHashes = { [3089482869] = { "Brand Skills have (45-51)% reduced Duration" }, } }, + ["HellscapeDownsideNoLifeRegeneration1__"] = { type = "ScourgeDownside", affix = "", "You have no Life Regeneration", statOrder = { 2294 }, level = 45, group = "NoLifeRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, + ["HellscapeDownsideNoManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "You have no Mana Regeneration", statOrder = { 2295 }, level = 45, group = "NoManaRegeneration", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, + ["HellscapeDownsideNoEnergyShieldRegeneration1"] = { type = "ScourgeDownside", affix = "", "You cannot Regenerate Energy Shield", statOrder = { 5520 }, level = 45, group = "NoEnergyShieldRegen", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1052583507] = { "You cannot Regenerate Energy Shield" }, } }, + ["HellscapeDownsideNoEnergyShieldRecharge1"] = { type = "ScourgeDownside", affix = "", "You cannot Recharge Energy Shield", statOrder = { 5519 }, level = 45, group = "NoEnergyShieldRecharge", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4164247992] = { "You cannot Recharge Energy Shield" }, } }, + ["HellscapeDownsideLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Life Recovery rate", statOrder = { 1601 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(10-12)% reduced Life Recovery rate" }, } }, + ["HellscapeDownsideLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Life Recovery rate", statOrder = { 1601 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(14-16)% reduced Life Recovery rate" }, } }, + ["HellscapeDownsideManaRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Mana Recovery rate", statOrder = { 1609 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% reduced Mana Recovery rate" }, } }, + ["HellscapeDownsideManaRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Mana Recovery rate", statOrder = { 1609 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(14-16)% reduced Mana Recovery rate" }, } }, + ["HellscapeDownsideEnergyShieldRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Energy Shield Recovery rate", statOrder = { 1590 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% reduced Energy Shield Recovery rate" }, } }, + ["HellscapeDownsideEnergyShieldRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Energy Shield Recovery rate", statOrder = { 1590 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(14-16)% reduced Energy Shield Recovery rate" }, } }, + ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes2_"] = { type = "ScourgeDownside", affix = "", "You take (22-30)% increased Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (22-30)% increased Extra Damage from Critical Strikes" }, } }, + ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeDownside", affix = "", "You take (32-40)% increased Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (32-40)% increased Extra Damage from Critical Strikes" }, } }, + ["HellscapeDownsideDamageIsUnlucky1___"] = { type = "ScourgeDownside", affix = "", "Damage with Hits is Unlucky", statOrder = { 5073 }, level = 45, group = "DamageIsUnlucky", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [827991492] = { "Damage with Hits is Unlucky" }, } }, + ["HellscapeDownsideColdPenetration1h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 3017 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Your Hits treat Cold Resistance as 10% higher than actual value" }, } }, + ["HellscapeDownsideColdPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 14% higher than actual value", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Your Hits treat Cold Resistance as 14% higher than actual value" }, } }, + ["HellscapeDownsideColdPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 16% higher than actual value", statOrder = { 3017 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Your Hits treat Cold Resistance as 16% higher than actual value" }, } }, + ["HellscapeDownsideColdPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 20% higher than actual value", statOrder = { 3017 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Your Hits treat Cold Resistance as 20% higher than actual value" }, } }, + ["HellscapeDownsideFirePenetration1h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 10% higher than actual value", statOrder = { 3015 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Your Hits treat Fire Resistance as 10% higher than actual value" }, } }, + ["HellscapeDownsideFirePenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 14% higher than actual value", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Your Hits treat Fire Resistance as 14% higher than actual value" }, } }, + ["HellscapeDownsideFirePenetration2h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 16% higher than actual value", statOrder = { 3015 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Your Hits treat Fire Resistance as 16% higher than actual value" }, } }, + ["HellscapeDownsideFirePenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 20% higher than actual value", statOrder = { 3015 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Your Hits treat Fire Resistance as 20% higher than actual value" }, } }, + ["HellscapeDownsideLightningPenetration1h2__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 10% higher than actual value", statOrder = { 3018 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Your Hits treat Lightning Resistance as 10% higher than actual value" }, } }, + ["HellscapeDownsideLightningPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 14% higher than actual value", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Your Hits treat Lightning Resistance as 14% higher than actual value" }, } }, + ["HellscapeDownsideLightningPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 16% higher than actual value", statOrder = { 3018 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Your Hits treat Lightning Resistance as 16% higher than actual value" }, } }, + ["HellscapeDownsideLightningPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 20% higher than actual value", statOrder = { 3018 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Your Hits treat Lightning Resistance as 20% higher than actual value" }, } }, + ["HellscapeDownsideChaosPenetration1h2___"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 10% higher than actual value", statOrder = { 10019 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Your Hits treat Chaos Resistance as 10% higher than actual value" }, } }, + ["HellscapeDownsideChaosPenetration1h3__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 14% higher than actual value", statOrder = { 10019 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Your Hits treat Chaos Resistance as 14% higher than actual value" }, } }, + ["HellscapeDownsideChaosPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 16% higher than actual value", statOrder = { 10019 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Your Hits treat Chaos Resistance as 16% higher than actual value" }, } }, + ["HellscapeDownsideChaosPenetration2h3_____"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 20% higher than actual value", statOrder = { 10019 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [4264312960] = { "Your Hits treat Chaos Resistance as 20% higher than actual value" }, } }, + ["HellscapeDownsideCannotCurse"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Curses", statOrder = { 10817 }, level = 45, group = "CannotCurse", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1925222248] = { "Cannot inflict Curses" }, } }, + ["HellscapeDownsideCannotApplyAilments1___"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1885 }, level = 45, group = "CannotApplyFireAilments", weightKey = { "sceptre", "wand", "staff", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [3913992084] = { "Cannot inflict Elemental Ailments" }, } }, + ["HellscapeDownsideAdditionalTraps1"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2278 }, level = 45, group = "TrapsAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [2224292784] = { "Can have 5 fewer Traps placed at a time" }, } }, + ["HellscapeDownsideAdditionalMines1_"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Remote Mines placed at a time", statOrder = { 2279 }, level = 45, group = "AdditionalRemoteMinesAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [60263468] = { "Can have 5 fewer Remote Mines placed at a time" }, } }, + ["HellscapeDownsideEffectOfNonDamagingAilments2"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(30-40)% reduced Effect of Non-Damaging Ailments" }, } }, + ["HellscapeDownsideEffectOfNonDamagingAilments3"] = { type = "ScourgeDownside", affix = "", "(50-60)% reduced Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(50-60)% reduced Effect of Non-Damaging Ailments" }, } }, + ["HellscapeDownsideNearbyEnemiesTakeReducedPhysicalDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies take 9% reduced Physical Damage", statOrder = { 8028 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% reduced Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% reduced Physical Damage" }, } }, + ["HellscapeDownsideNearbyEnemiesTakeReducedFireDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Fire Resistance", statOrder = { 8024 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have +9% to Fire Resistance" }, [3372524247] = { "+9% to Fire Resistance" }, } }, + ["HellscapeDownsideNearbyEnemiesTakeReducedColdDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Cold Resistance", statOrder = { 8022 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have +9% to Cold Resistance" }, } }, + ["HellscapeDownsideNearbyEnemiesTakeReducedLightningDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Lightning Resistance", statOrder = { 8026 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have +9% to Lightning Resistance" }, } }, + ["HellscapeDownsideNearbyEnemiesTakeReducedChaosDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Chaos Resistance", statOrder = { 8021 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have +9% to Chaos Resistance" }, [2923486259] = { "+9% to Chaos Resistance" }, } }, + ["HellscapeDownsideCurseEffect2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Effect of your Curses", statOrder = { 2622 }, level = 45, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(21-24)% reduced Effect of your Curses" }, } }, + ["HellscapeDownsideCurseEffect3__"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Effect of your Curses", statOrder = { 2622 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(27-30)% reduced Effect of your Curses" }, } }, + ["HellscapeDownsideAuraEffectOfNonCurseSkills2"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(21-24)% reduced effect of Non-Curse Auras from your Skills" }, } }, + ["HellscapeDownsideAuraEffectOfNonCurseSkills3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(27-30)% reduced effect of Non-Curse Auras from your Skills" }, } }, + ["HellscapeDownsideAdditionalCurse1__"] = { type = "ScourgeDownside", affix = "", "You can apply one fewer Curse", statOrder = { 2191 }, level = 68, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply one fewer Curse" }, } }, + ["HellscapeDownsideMaximumEnduranceCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "-1 to Maximum Endurance Charges" }, } }, + ["HellscapeDownsideMaximumFrenzyCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, + ["HellscapeDownsideMaximumPowerCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Power Charges", statOrder = { 1837 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "-1 to Maximum Power Charges" }, } }, + ["HellscapeDownsideDealNoPhysicalDamage___"] = { type = "ScourgeDownside", affix = "", "Deal no Physical Damage", statOrder = { 2824 }, level = 1, group = "DealNoPhysicalDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3900877792] = { "Deal no Physical Damage" }, } }, + ["HellscapeDownsideDealNoFireDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Fire Damage", statOrder = { 5062 }, level = 1, group = "DealNoFireDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, tradeHashes = { [3763013280] = { "Deal no Fire Damage" }, } }, + ["HellscapeDownsideDealNoColdDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Cold Damage", statOrder = { 2826 }, level = 1, group = "DealNoColdDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [743677006] = { "Deal no Cold Damage" }, } }, + ["HellscapeDownsideDealNoLightningDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Lightning Damage", statOrder = { 5063 }, level = 1, group = "DealNoLightningDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, tradeHashes = { [3520498509] = { "Deal no Lightning Damage" }, } }, + ["HellscapeDownsideDealNoChaosDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Chaos Damage", statOrder = { 5061 }, level = 1, group = "DealNoChaosDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1896269067] = { "Deal no Chaos Damage" }, } }, + ["HellscapeDownsideCannotGainCharges"] = { type = "ScourgeDownside", affix = "", "Cannot gain Charges", statOrder = { 5507 }, level = 68, group = "CannotGainCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1500620123] = { "Cannot gain Charges" }, } }, + ["HellscapeDownsideCriticalStrikesDealNoExtraDamage"] = { type = "ScourgeDownside", affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2705 }, level = 45, group = "CriticalStrikesDealNoExtraDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4058681894] = { "Your Critical Strikes do not deal extra Damage" }, } }, + ["HellscapeDownsideDamageTakenOnFullLife2"] = { type = "ScourgeDownside", affix = "", "12% increased Damage taken while on Full Life", statOrder = { 6206 }, level = 45, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4091521421] = { "12% increased Damage taken while on Full Life" }, } }, + ["HellscapeDownsideDamageTakenOnFullLife3_"] = { type = "ScourgeDownside", affix = "", "20% increased Damage taken while on Full Life", statOrder = { 6206 }, level = 68, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4091521421] = { "20% increased Damage taken while on Full Life" }, } }, + ["HellscapeDownsideFishingLineStrength"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Fishing Line Strength", statOrder = { 2878 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(30-40)% reduced Fishing Line Strength" }, } }, + ["HellscapeDownsideFishingPoolConsumption"] = { type = "ScourgeDownside", affix = "", "(50-100)% increased Fishing Pool Consumption", statOrder = { 2879 }, level = 45, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(50-100)% increased Fishing Pool Consumption" }, } }, + ["HellscapeDownsideFishRotWhenCaught"] = { type = "ScourgeDownside", affix = "", "Fish Rot upon being Caught", statOrder = { 6687 }, level = 1, group = "FishRotWhenCaught", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [261024552] = { "Fish Rot upon being Caught" }, } }, + ["HellscapeDownsideFishingReelStability"] = { type = "ScourgeDownside", affix = "", "(30-60)% reduced Reeling Stability", statOrder = { 6701 }, level = 1, group = "FishingReelStability", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3332149074] = { "(30-60)% reduced Reeling Stability" }, } }, + ["HellscapeDownsideCannotFishFromWater_______"] = { type = "ScourgeDownside", affix = "", "Cannot Fish while standing in Water", statOrder = { 5506 }, level = 68, group = "CannotFishFromWater", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1831380809] = { "Cannot Fish while standing in Water" }, } }, } \ No newline at end of file diff --git a/src/Data/ModSynthesis.lua b/src/Data/ModSynthesis.lua index ae336457cb..b7783e2b03 100644 --- a/src/Data/ModSynthesis.lua +++ b/src/Data/ModSynthesis.lua @@ -2,1348 +2,1348 @@ -- Item data (c) Grinding Gear Games return { - ["SynthesisImplicitLife1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(8-10) to maximum Life" }, } }, - ["SynthesisImplicitLife2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Life", statOrder = { 1569 }, level = 15, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(11-14) to maximum Life" }, } }, - ["SynthesisImplicitLife3"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Life", statOrder = { 1569 }, level = 24, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-19) to maximum Life" }, } }, - ["SynthesisImplicitLife4_"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Life", statOrder = { 1569 }, level = 36, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-24) to maximum Life" }, } }, - ["SynthesisImplicitLife5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Life", statOrder = { 1569 }, level = 48, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-30) to maximum Life" }, } }, - ["SynthesisImplicitLifeJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(3-4) to maximum Life" }, } }, - ["SynthesisImplicitLifeJewel2"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(5-6) to maximum Life" }, } }, - ["SynthesisImplicitPercentLife1_"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "4% increased maximum Life" }, } }, - ["SynthesisImplicitPercentLife2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, - ["SynthesisImplicitPercentLife3"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["SynthesisImplicitPercentLifeTrinket1__"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "4% increased maximum Life" }, } }, - ["SynthesisImplicitPercentLifeTrinket2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, - ["SynthesisImplicitPercentLifeTrinket3"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Life", statOrder = { 1571 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, - ["SynthesisImplicitLifeRegen1_"] = { type = "Synthesis", affix = "", "Regenerate (5-7) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (5-7) Life per second" }, } }, - ["SynthesisImplicitLifeRegen2_"] = { type = "Synthesis", affix = "", "Regenerate (7-11.7) Life per second", statOrder = { 1574 }, level = 15, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (7-11.7) Life per second" }, } }, - ["SynthesisImplicitLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate (11.7-18.3) Life per second", statOrder = { 1574 }, level = 24, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (11.7-18.3) Life per second" }, } }, - ["SynthesisImplicitLifeRegen4"] = { type = "Synthesis", affix = "", "Regenerate (18.4-26.7) Life per second", statOrder = { 1574 }, level = 36, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (18.4-26.7) Life per second" }, } }, - ["SynthesisImplicitLifeRegen5_"] = { type = "Synthesis", affix = "", "Regenerate (26.7-40) Life per second", statOrder = { 1574 }, level = 48, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (26.7-40) Life per second" }, } }, - ["SynthesisImplicitHighLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (80-100) Life per second", statOrder = { 1574 }, level = 56, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (80-100) Life per second" }, } }, - ["SynthesisImplicitPercentLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.6-0.7)% of Life per second" }, } }, - ["SynthesisImplicitPercentLifeRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.93)% of Life per second", statOrder = { 1944 }, level = 15, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-0.93)% of Life per second" }, } }, - ["SynthesisImplicitPercentLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 24, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, - ["SynthesisImplicitPercentLifeRegenJewel1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.2% of Life per second" }, } }, - ["SynthesisImplicitLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitLifeLeech2_"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 15, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.3% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitLifeLeech3"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 24, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitLocalLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitLocalLifeLeech2"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 15, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.3% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitLocalLifeLeech3__"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 24, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitLifeLeechOneHanded1"] = { type = "Synthesis", affix = "", "1.5% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.5% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitLifeLeechTwoHanded1"] = { type = "Synthesis", affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "3% of Physical Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitAttackLifeLeech1_"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 36, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.4% of Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitAttackLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.2% of Attack Damage Leeched as Life" }, } }, - ["SynthesisImplicitMaximumLifeLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 56, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4118987751] = { "10% increased Maximum total Life Recovery per second from Leech" }, } }, - ["SynthesisImplicitIncreasedLifeLeechRate1_"] = { type = "Synthesis", affix = "", "(8-10)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(8-10)% increased total Recovery per second from Life Leech" }, } }, - ["SynthesisImplicitIncreasedLifeLeechRate2_"] = { type = "Synthesis", affix = "", "(11-13)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 15, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(11-13)% increased total Recovery per second from Life Leech" }, } }, - ["SynthesisImplicitIncreasedLifeLeechRate3"] = { type = "Synthesis", affix = "", "(14-16)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 24, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(14-16)% increased total Recovery per second from Life Leech" }, } }, - ["SynthesisImplicitLifeOnKill1_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (6-8) Life per Enemy Killed" }, } }, - ["SynthesisImplicitLifeOnKill2"] = { type = "Synthesis", affix = "", "Gain (9-11) Life per Enemy Killed", statOrder = { 1748 }, level = 15, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (9-11) Life per Enemy Killed" }, } }, - ["SynthesisImplicitLifeOnKill3"] = { type = "Synthesis", affix = "", "Gain (12-15) Life per Enemy Killed", statOrder = { 1748 }, level = 24, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (12-15) Life per Enemy Killed" }, } }, - ["SynthesisImplicitPercentLifeOnKill1_"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Life on Kill", statOrder = { 1749 }, level = 55, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of Life on Kill" }, } }, - ["SynthesisImplicitLifeOnHit1"] = { type = "Synthesis", affix = "", "Gain (4-5) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (4-5) Life per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitLifeOnHit2_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 15, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (6-8) Life per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitLifeOnHit3"] = { type = "Synthesis", affix = "", "Gain (9-15) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 24, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (9-15) Life per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitLifeOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (1-2) Life per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitLocalLifeOnHit1_"] = { type = "Synthesis", affix = "", "Grants (4-5) Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (4-5) Life per Enemy Hit" }, } }, - ["SynthesisImplicitLocalLifeOnHit2_"] = { type = "Synthesis", affix = "", "Grants (6-8) Life per Enemy Hit", statOrder = { 1738 }, level = 15, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (6-8) Life per Enemy Hit" }, } }, - ["SynthesisImplicitLocalLifeOnHit3"] = { type = "Synthesis", affix = "", "Grants (9-15) Life per Enemy Hit", statOrder = { 1738 }, level = 24, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (9-15) Life per Enemy Hit" }, } }, - ["SynthesisImplicitLifeOnHitOneHanded1"] = { type = "Synthesis", affix = "", "Grants (25-30) Life per Enemy Hit", statOrder = { 1738 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (25-30) Life per Enemy Hit" }, } }, - ["SynthesisImplicitLifeOnHitTwoHanded1_"] = { type = "Synthesis", affix = "", "Grants (45-50) Life per Enemy Hit", statOrder = { 1738 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (45-50) Life per Enemy Hit" }, } }, - ["SynthesisImplicitGlobalFlaskLifeRecovery1_"] = { type = "Synthesis", affix = "", "(7-10)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 56, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(7-10)% increased Life Recovery from Flasks" }, } }, - ["SynthesisImplicitLifeRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Life Recovery rate", statOrder = { 1578 }, level = 60, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(10-15)% increased Life Recovery rate" }, } }, - ["SynthesisImplicitMana1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(8-10) to maximum Mana" }, } }, - ["SynthesisImplicitMana2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Mana", statOrder = { 1579 }, level = 15, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(11-14) to maximum Mana" }, } }, - ["SynthesisImplicitMana3_"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Mana", statOrder = { 1579 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-19) to maximum Mana" }, } }, - ["SynthesisImplicitMana4"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Mana", statOrder = { 1579 }, level = 36, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-24) to maximum Mana" }, } }, - ["SynthesisImplicitMana5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Mana", statOrder = { 1579 }, level = 48, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-30) to maximum Mana" }, } }, - ["SynthesisImplicitManaJewel1_"] = { type = "Synthesis", affix = "", "+(2-3) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(2-3) to maximum Mana" }, } }, - ["SynthesisImplicitManaJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(4-5) to maximum Mana" }, } }, - ["SynthesisImplicitPercentMana1_"] = { type = "Synthesis", affix = "", "6% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "6% increased maximum Mana" }, } }, - ["SynthesisImplicitPercentMana2"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1580 }, level = 15, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, - ["SynthesisImplicitPercentMana3"] = { type = "Synthesis", affix = "", "(9-10)% increased maximum Mana", statOrder = { 1580 }, level = 24, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(9-10)% increased maximum Mana" }, } }, - ["SynthesisImplicitManaRegeneration1"] = { type = "Synthesis", affix = "", "(16-18)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(16-18)% increased Mana Regeneration Rate" }, } }, - ["SynthesisImplicitManaRegeneration2"] = { type = "Synthesis", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 15, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(19-21)% increased Mana Regeneration Rate" }, } }, - ["SynthesisImplicitManaRegeneration3_"] = { type = "Synthesis", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 24, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(22-24)% increased Mana Regeneration Rate" }, } }, - ["SynthesisImplicitManaRegeneration4_"] = { type = "Synthesis", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 36, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-27)% increased Mana Regeneration Rate" }, } }, - ["SynthesisImplicitManaRegeneration5"] = { type = "Synthesis", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 48, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } }, - ["SynthesisImplicitManaRegenerationJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-7)% increased Mana Regeneration Rate" }, } }, - ["SynthesisImplicitAddedManaRegen1__"] = { type = "Synthesis", affix = "", "Regenerate (2-2.5) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (2-2.5) Mana per second" }, } }, - ["SynthesisImplicitAddedManaRegen2"] = { type = "Synthesis", affix = "", "Regenerate (2.5-3) Mana per second", statOrder = { 1582 }, level = 15, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (2.5-3) Mana per second" }, } }, - ["SynthesisImplicitAddedManaRegen3_____"] = { type = "Synthesis", affix = "", "Regenerate (3-4) Mana per second", statOrder = { 1582 }, level = 24, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-4) Mana per second" }, } }, - ["SynthesisImplicitAddedManaRegenWithStaffJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per second while wielding a Staff", statOrder = { 8206 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1388668644] = { "Regenerate (0.5-0.7) Mana per second while wielding a Staff" }, } }, - ["SynthesisImplicitAddedManaRegenWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while Dual Wielding", statOrder = { 8203 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1361343333] = { "Regenerate (0.5-0.7) Mana per Second while Dual Wielding" }, } }, - ["SynthesisImplicitAddedManaRegenWithShieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while holding a Shield", statOrder = { 8204 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3762868276] = { "Regenerate (0.5-0.7) Mana per Second while holding a Shield" }, } }, - ["SynthesisImplicitAddedManaRegenWithStaffJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per second while wielding a Staff", statOrder = { 8206 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1388668644] = { "Regenerate (0.8-1) Mana per second while wielding a Staff" }, } }, - ["SynthesisImplicitAddedManaRegenWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while Dual Wielding", statOrder = { 8203 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1361343333] = { "Regenerate (0.8-1) Mana per Second while Dual Wielding" }, } }, - ["SynthesisImplicitAddedManaRegenWithShieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while holding a Shield", statOrder = { 8204 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3762868276] = { "Regenerate (0.8-1) Mana per Second while holding a Shield" }, } }, - ["SynthesisImplicitBaseManaRegeneration1"] = { type = "Synthesis", affix = "", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 56, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } }, - ["SynthesisImplicitBaseManaRegenerationOneHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Mana per second", statOrder = { 1581 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.2% of Mana per second" }, } }, - ["SynthesisImplicitBaseManaRegenerationOneHand2_"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Mana per second", statOrder = { 1581 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.3% of Mana per second" }, } }, - ["SynthesisImplicitBaseManaRegenerationTwoHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.4% of Mana per second", statOrder = { 1581 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.4% of Mana per second" }, } }, - ["SynthesisImplicitBaseManaRegenerationTwoHand2"] = { type = "Synthesis", affix = "", "Regenerate 0.6% of Mana per second", statOrder = { 1581 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.6% of Mana per second" }, } }, - ["SynthesisImplicitManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.1% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 15, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 24, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.3% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitManaLeechJewel1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.1% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitLocalManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.1% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitLocalManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 15, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitLocalManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 24, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.3% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitManaLeechOneHanded1"] = { type = "Synthesis", affix = "", "0.5% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.5% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitManaLeechTwoHanded1"] = { type = "Synthesis", affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitAttackManaLeech1"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 36, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.4% of Attack Damage Leeched as Mana" }, } }, - ["SynthesisImplicitMaximumManaLeechRate1_"] = { type = "Synthesis", affix = "", "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1733 }, level = 56, group = "MaximumManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [96977651] = { "10% increased Maximum total Mana Recovery per second from Leech" }, } }, - ["SynthesisImplicitIncreasedManaLeechRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased total Recovery per second from Mana Leech", statOrder = { 2158 }, level = 36, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [690135178] = { "(10-15)% increased total Recovery per second from Mana Leech" }, } }, - ["SynthesisImplicitManaOnKill1_"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 3 Mana per Enemy Killed" }, } }, - ["SynthesisImplicitManaOnKill2___"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Killed", statOrder = { 1763 }, level = 15, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 4 Mana per Enemy Killed" }, } }, - ["SynthesisImplicitManaOnKill3"] = { type = "Synthesis", affix = "", "Gain 5 Mana per Enemy Killed", statOrder = { 1763 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 5 Mana per Enemy Killed" }, } }, - ["SynthesisImplicitManaOnHit1__"] = { type = "Synthesis", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 2 Mana per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitManaOnHit2"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 15, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 3 Mana per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitManaOnHit3"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 24, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 4 Mana per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitManaOnHitJewel1_"] = { type = "Synthesis", affix = "", "Gain 1 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 1 Mana per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitPercentManaOnKill1"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Mana on Kill", statOrder = { 1751 }, level = 56, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-2)% of Mana on Kill" }, } }, - ["SynthesisImplicitManaRecoveryRate1_"] = { type = "Synthesis", affix = "", "(10-15)% increased Mana Recovery rate", statOrder = { 1586 }, level = 60, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(10-15)% increased Mana Recovery rate" }, } }, - ["SynthesisImplicitTotalManaCost1_"] = { type = "Synthesis", affix = "", "-1 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-1 to Total Mana Cost of Skills" }, } }, - ["SynthesisImplicitTotalManaCost2_"] = { type = "Synthesis", affix = "", "-2 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 15, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-2 to Total Mana Cost of Skills" }, } }, - ["SynthesisImplicitTotalManaCost3"] = { type = "Synthesis", affix = "", "-3 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 24, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-3 to Total Mana Cost of Skills" }, } }, - ["SynthesisImplicitReducedManaCost1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "2% reduced Mana Cost of Skills" }, } }, - ["SynthesisImplicitReducedManaCost2"] = { type = "Synthesis", affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 15, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "3% reduced Mana Cost of Skills" }, } }, - ["SynthesisImplicitReducedManaCost3"] = { type = "Synthesis", affix = "", "(4-5)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 24, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-5)% reduced Mana Cost of Skills" }, } }, - ["SynthesisImplicitReducedManaCostJewel1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "2% reduced Mana Cost of Skills" }, } }, - ["SynthesisImplicitAttackDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4848 }, level = 36, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4134865890] = { "(6-8)% increased Attack Damage per 500 Maximum Mana" }, } }, - ["SynthesisImplicitAttackDamagePerMana2"] = { type = "Synthesis", affix = "", "(12-14)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4848 }, level = 48, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4134865890] = { "(12-14)% increased Attack Damage per 500 Maximum Mana" }, } }, - ["SynthesisImplicitSpellDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Spell Damage per 500 Maximum Mana", statOrder = { 10147 }, level = 36, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3555662994] = { "(6-8)% increased Spell Damage per 500 Maximum Mana" }, } }, - ["SynthesisImplicitSpellDamagePerMana2___"] = { type = "Synthesis", affix = "", "(12-14)% increased Spell Damage per 500 Maximum Mana", statOrder = { 10147 }, level = 48, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3555662994] = { "(12-14)% increased Spell Damage per 500 Maximum Mana" }, } }, - ["SynthesisImplicitPhysicalDamageTakenFromMana1"] = { type = "Synthesis", affix = "", "(2-3)% of Physical Damage is taken from Mana before Life", statOrder = { 4169 }, level = 36, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "(2-3)% of Physical Damage is taken from Mana before Life" }, } }, - ["SynthesisImplicitPhysicalDamageTakenFromMana2_"] = { type = "Synthesis", affix = "", "(4-5)% of Physical Damage is taken from Mana before Life", statOrder = { 4169 }, level = 48, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "(4-5)% of Physical Damage is taken from Mana before Life" }, } }, - ["SynthesisImplicitFireResist1"] = { type = "Synthesis", affix = "", "+8% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+8% to Fire Resistance" }, } }, - ["SynthesisImplicitFireResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Fire Resistance", statOrder = { 1625 }, level = 15, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(9-10)% to Fire Resistance" }, } }, - ["SynthesisImplicitFireResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Fire Resistance", statOrder = { 1625 }, level = 24, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-12)% to Fire Resistance" }, } }, - ["SynthesisImplicitFireResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1625 }, level = 36, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(13-14)% to Fire Resistance" }, } }, - ["SynthesisImplicitFireResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1625 }, level = 48, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-16)% to Fire Resistance" }, } }, - ["SynthesisImplicitFireResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(2-3)% to Fire Resistance" }, } }, - ["SynthesisImplicitFireResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(4-5)% to Fire Resistance" }, } }, - ["SynthesisImplicitMaxFireResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 60, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, - ["SynthesisImplicitMaxFireResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 65, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, - ["SynthesisImplicitPhysicalTakenAsFire1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 56, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(7-10)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["SynthesisImplicitFlatFireDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Fire Damage taken from Hits", statOrder = { 2237 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(15-10) Fire Damage taken from Hits" }, } }, - ["SynthesisImplicitFlatFireDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Fire Damage taken from Hits", statOrder = { 2237 }, level = 15, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(40-16) Fire Damage taken from Hits" }, } }, - ["SynthesisImplicitFlatFireDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Fire Damage taken from Hits", statOrder = { 2237 }, level = 24, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(80-40) Fire Damage taken from Hits" }, } }, - ["SynthesisImplicitImmuneToIgnite1"] = { type = "Synthesis", affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 56, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, - ["SynthesisImplicitColdResist1"] = { type = "Synthesis", affix = "", "+8% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+8% to Cold Resistance" }, } }, - ["SynthesisImplicitColdResist2_"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Resistance", statOrder = { 1631 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(9-10)% to Cold Resistance" }, } }, - ["SynthesisImplicitColdResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Resistance", statOrder = { 1631 }, level = 24, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-12)% to Cold Resistance" }, } }, - ["SynthesisImplicitColdResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1631 }, level = 36, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(13-14)% to Cold Resistance" }, } }, - ["SynthesisImplicitColdResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1631 }, level = 48, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-16)% to Cold Resistance" }, } }, - ["SynthesisImplicitColdResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(2-3)% to Cold Resistance" }, } }, - ["SynthesisImplicitColdResistJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(4-5)% to Cold Resistance" }, } }, - ["SynthesisImplicitMaxColdResist1_"] = { type = "Synthesis", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 60, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, - ["SynthesisImplicitMaxColdResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 65, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, - ["SynthesisImplicitPhysicalTakenAsCold1__"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 56, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(7-10)% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["SynthesisImplicitFlatColdDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-10) Cold Damage taken from Hits", statOrder = { 5819 }, level = 1, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [261654754] = { "-(15-10) Cold Damage taken from Hits" }, } }, - ["SynthesisImplicitFlatColdDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Cold Damage taken from Hits", statOrder = { 5819 }, level = 15, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [261654754] = { "-(40-16) Cold Damage taken from Hits" }, } }, - ["SynthesisImplicitFlatColdDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Cold Damage taken from Hits", statOrder = { 5819 }, level = 24, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [261654754] = { "-(80-40) Cold Damage taken from Hits" }, } }, - ["SynthesisImplicitImmuneToFreeze1"] = { type = "Synthesis", affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 56, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, - ["SynthesisImplicitLightningResist1"] = { type = "Synthesis", affix = "", "+8% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+8% to Lightning Resistance" }, } }, - ["SynthesisImplicitLightningResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Lightning Resistance", statOrder = { 1636 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(9-10)% to Lightning Resistance" }, } }, - ["SynthesisImplicitLightningResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Lightning Resistance", statOrder = { 1636 }, level = 24, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-12)% to Lightning Resistance" }, } }, - ["SynthesisImplicitLightningResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1636 }, level = 36, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(13-14)% to Lightning Resistance" }, } }, - ["SynthesisImplicitLightningResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1636 }, level = 48, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-16)% to Lightning Resistance" }, } }, - ["SynthesisImplicitLightningResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(2-3)% to Lightning Resistance" }, } }, - ["SynthesisImplicitLightningResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(4-5)% to Lightning Resistance" }, } }, - ["SynthesisImplicitMaxLightningResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 60, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, - ["SynthesisImplicitMaxLightningResist2____"] = { type = "Synthesis", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 65, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, - ["SynthesisImplicitPhysicalTakenAsLightning1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 56, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(7-10)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["SynthesisImplicitFlatLightningDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Lightning Damage taken from Hits", statOrder = { 7453 }, level = 1, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [465051235] = { "-(15-10) Lightning Damage taken from Hits" }, } }, - ["SynthesisImplicitFlatLightningDamageTaken2_"] = { type = "Synthesis", affix = "", "-(40-16) Lightning Damage taken from Hits", statOrder = { 7453 }, level = 15, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [465051235] = { "-(40-16) Lightning Damage taken from Hits" }, } }, - ["SynthesisImplicitFlatLightningDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Lightning Damage taken from Hits", statOrder = { 7453 }, level = 24, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [465051235] = { "-(80-40) Lightning Damage taken from Hits" }, } }, - ["SynthesisImplicitImmuneToShock1"] = { type = "Synthesis", affix = "", "Cannot be Shocked", statOrder = { 1841 }, level = 56, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["SynthesisImplicitChaosResist1_"] = { type = "Synthesis", affix = "", "+(5-6)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-6)% to Chaos Resistance" }, } }, - ["SynthesisImplicitChaosResist2"] = { type = "Synthesis", affix = "", "+(7-8)% to Chaos Resistance", statOrder = { 1641 }, level = 15, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-8)% to Chaos Resistance" }, } }, - ["SynthesisImplicitChaosResist3"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Resistance", statOrder = { 1641 }, level = 24, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(9-10)% to Chaos Resistance" }, } }, - ["SynthesisImplicitChaosResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(2-3)% to Chaos Resistance" }, } }, - ["SynthesisImplicitMaxChaosResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 60, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, - ["SynthesisImplicitMaxChaosResist2"] = { type = "Synthesis", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 65, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, - ["SynthesisImplicitPhysicalTakenAsChaos1"] = { type = "Synthesis", affix = "", "(5-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 56, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(5-8)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["SynthesisImplicitFlatChaosDamageTaken1"] = { type = "Synthesis", affix = "", "-(17-13) Chaos Damage taken", statOrder = { 2839 }, level = 15, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(17-13) Chaos Damage taken" }, } }, - ["SynthesisImplicitFlatChaosDamageTaken2"] = { type = "Synthesis", affix = "", "-(31-18) Chaos Damage taken", statOrder = { 2839 }, level = 24, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(31-18) Chaos Damage taken" }, } }, - ["SynthesisImplicitImmuneToPoison1"] = { type = "Synthesis", affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 56, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["SynthesisImplicitAllResist1__"] = { type = "Synthesis", affix = "", "+(3-4)% to all Elemental Resistances", statOrder = { 1619 }, level = 15, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(3-4)% to all Elemental Resistances" }, } }, - ["SynthesisImplicitAllResist2_"] = { type = "Synthesis", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1619 }, level = 24, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-6)% to all Elemental Resistances" }, } }, - ["SynthesisImplicitAllResist3"] = { type = "Synthesis", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 36, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(7-8)% to all Elemental Resistances" }, } }, - ["SynthesisImplicitMaximumResistance1"] = { type = "Synthesis", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["SynthesisImplicitMaximumResistance2_"] = { type = "Synthesis", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, - ["SynthesisImplicitLocalIncreaseSocketedGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["SynthesisImplicitLocalCrit1"] = { type = "Synthesis", affix = "", "(5-6)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(5-6)% increased Critical Strike Chance" }, } }, - ["SynthesisImplicitLocalCrit2"] = { type = "Synthesis", affix = "", "(7-8)% increased Critical Strike Chance", statOrder = { 1464 }, level = 15, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(7-8)% increased Critical Strike Chance" }, } }, - ["SynthesisImplicitLocalCrit3"] = { type = "Synthesis", affix = "", "(9-10)% increased Critical Strike Chance", statOrder = { 1464 }, level = 24, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(9-10)% increased Critical Strike Chance" }, } }, - ["SynthesisImplicitLocalCrit4_"] = { type = "Synthesis", affix = "", "(11-12)% increased Critical Strike Chance", statOrder = { 1464 }, level = 36, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(11-12)% increased Critical Strike Chance" }, } }, - ["SynthesisImplicitLocalCrit5"] = { type = "Synthesis", affix = "", "(13-15)% increased Critical Strike Chance", statOrder = { 1464 }, level = 48, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(13-15)% increased Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCrit1"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(14-15)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCrit2"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(16-17)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCrit3"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(18-20)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCrit4"] = { type = "Synthesis", affix = "", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(21-23)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCrit5"] = { type = "Synthesis", affix = "", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(24-26)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCritQuiver1"] = { type = "Synthesis", affix = "", "(26-28)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(26-28)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCritQuiver2"] = { type = "Synthesis", affix = "", "(29-31)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(29-31)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCritQuiver3"] = { type = "Synthesis", affix = "", "(32-34)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(32-34)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCritQuiver4"] = { type = "Synthesis", affix = "", "(35-37)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-37)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCritQuiver5"] = { type = "Synthesis", affix = "", "(38-40)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(38-40)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCritJewel1_"] = { type = "Synthesis", affix = "", "2% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "2% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitGlobalCritJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(3-4)% increased Global Critical Strike Chance" }, } }, - ["SynthesisImplicitMinorCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+12% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+12% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitMinorCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-14)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitMinorCriticalMultiplier3_"] = { type = "Synthesis", affix = "", "+(15-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-16)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitMinorCriticalMultiplier4_"] = { type = "Synthesis", affix = "", "+(17-18)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-18)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitMinorCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(19-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(19-20)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitSpellCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(29-31)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(29-31)% increased Spell Critical Strike Chance" }, } }, - ["SynthesisImplicitSpellCriticalStrikeChance2"] = { type = "Synthesis", affix = "", "(32-34)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 15, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(32-34)% increased Spell Critical Strike Chance" }, } }, - ["SynthesisImplicitSpellCriticalStrikeChance3_"] = { type = "Synthesis", affix = "", "(35-37)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 24, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(35-37)% increased Spell Critical Strike Chance" }, } }, - ["SynthesisImplicitSpellCriticalStrikeChance4"] = { type = "Synthesis", affix = "", "(38-41)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 36, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(38-41)% increased Spell Critical Strike Chance" }, } }, - ["SynthesisImplicitSpellCriticalStrikeChance5_"] = { type = "Synthesis", affix = "", "(42-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 48, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(42-45)% increased Spell Critical Strike Chance" }, } }, - ["SynthesisImplicitCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-17)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-20)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitCriticalMultiplier3"] = { type = "Synthesis", affix = "", "+(21-23)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-23)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitCriticalMultiplier4"] = { type = "Synthesis", affix = "", "+(24-26)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(24-26)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(27-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(27-30)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+2% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+2% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(3-4)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(3-4)% to Global Critical Strike Multiplier" }, } }, - ["SynthesisImplicitAdditionalCriticalStrikeChanceWithAttacks1_"] = { type = "Synthesis", affix = "", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4792 }, level = 65, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } }, - ["SynthesisImplicitAdditionalCriticalStrikeChanceWithSpells1"] = { type = "Synthesis", affix = "", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10126 }, level = 65, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } }, - ["SynthesisImplicitMaceCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1494 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(2-3)% to Critical Strike Multiplier with Maces or Sceptres" }, } }, - ["SynthesisImplicitAxeCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Axes", statOrder = { 1495 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(2-3)% to Critical Strike Multiplier with Axes" }, } }, - ["SynthesisImplicitSwordCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Swords", statOrder = { 1497 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(2-3)% to Critical Strike Multiplier with Swords" }, } }, - ["SynthesisImplicitBowCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(2-3)% to Critical Strike Multiplier with Bows" }, } }, - ["SynthesisImplicitClawCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Claws", statOrder = { 1499 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(2-3)% to Critical Strike Multiplier with Claws" }, } }, - ["SynthesisImplicitDaggerCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Daggers", statOrder = { 1493 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "+(2-3)% to Critical Strike Multiplier with Daggers" }, } }, - ["SynthesisImplicitWandCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Wands", statOrder = { 1498 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(2-3)% to Critical Strike Multiplier with Wands" }, } }, - ["SynthesisImplicitStaffCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Staves", statOrder = { 1500 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1474913037] = { "+(2-3)% to Critical Strike Multiplier with Staves" }, } }, - ["SynthesisImplicitMaceCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1494 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(4-5)% to Critical Strike Multiplier with Maces or Sceptres" }, } }, - ["SynthesisImplicitAxeCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Axes", statOrder = { 1495 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(4-5)% to Critical Strike Multiplier with Axes" }, } }, - ["SynthesisImplicitSwordCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Swords", statOrder = { 1497 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(4-5)% to Critical Strike Multiplier with Swords" }, } }, - ["SynthesisImplicitBowCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(4-5)% to Critical Strike Multiplier with Bows" }, } }, - ["SynthesisImplicitClawCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Claws", statOrder = { 1499 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(4-5)% to Critical Strike Multiplier with Claws" }, } }, - ["SynthesisImplicitDaggerCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Daggers", statOrder = { 1493 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "+(4-5)% to Critical Strike Multiplier with Daggers" }, } }, - ["SynthesisImplicitWandCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Wands", statOrder = { 1498 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(4-5)% to Critical Strike Multiplier with Wands" }, } }, - ["SynthesisImplicitStaffCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Staves", statOrder = { 1500 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1474913037] = { "+(4-5)% to Critical Strike Multiplier with Staves" }, } }, - ["SynthesisImplicitSpellCriticalChanceWithStaffJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5945 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [140429540] = { "(2-3)% increased Critical Strike Chance for Spells while wielding a Staff" }, } }, - ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5943 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1218939541] = { "(2-3)% increased Critical Strike Chance for Spells while Dual Wielding" }, } }, - ["SynthesisImplicitSpellCriticalChanceWithShieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5944 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [952509814] = { "(2-3)% increased Critical Strike Chance for Spells while holding a Shield" }, } }, - ["SynthesisImplicitSpellCriticalChanceWithStaffJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5945 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [140429540] = { "(4-5)% increased Critical Strike Chance for Spells while wielding a Staff" }, } }, - ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5943 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1218939541] = { "(4-5)% increased Critical Strike Chance for Spells while Dual Wielding" }, } }, - ["SynthesisImplicitSpellCriticalChanceWithShieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5944 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [952509814] = { "(4-5)% increased Critical Strike Chance for Spells while holding a Shield" }, } }, - ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5972 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [3629080637] = { "+(2-3)% to Critical Strike Multiplier for Spells while wielding a Staff" }, } }, - ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5970 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2349237916] = { "+(2-3)% to Critical Strike Multiplier for Spells while Dual Wielding" }, } }, - ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5971 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2311200892] = { "+(2-3)% to Critical Strike Multiplier for Spells while holding a Shield" }, } }, - ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5972 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [3629080637] = { "+(4-5)% to Critical Strike Multiplier for Spells while wielding a Staff" }, } }, - ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5970 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2349237916] = { "+(4-5)% to Critical Strike Multiplier for Spells while Dual Wielding" }, } }, - ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel2__"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5971 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2311200892] = { "+(4-5)% to Critical Strike Multiplier for Spells while holding a Shield" }, } }, - ["SynthesisImplicitAdditionalArrow1"] = { type = "Synthesis", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 65, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["SynthesisImplicitAdditionalArrowPierce1_"] = { type = "Synthesis", affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 56, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["SynthesisImplicitAdditionalArrowPierce2_"] = { type = "Synthesis", affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1791 }, level = 61, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce 2 additional Targets" }, } }, - ["SynthesisImplicitAdditionalArrowPierce3"] = { type = "Synthesis", affix = "", "Arrows Pierce 3 additional Targets", statOrder = { 1791 }, level = 65, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce 3 additional Targets" }, } }, - ["SynthesisImplicitAdditionalPierce1"] = { type = "Synthesis", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 56, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["SynthesisImplicitStunDuration1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(15-17)% increased Stun Duration on Enemies" }, } }, - ["SynthesisImplicitStunDuration2"] = { type = "Synthesis", affix = "", "(18-25)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 15, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(18-25)% increased Stun Duration on Enemies" }, } }, - ["SynthesisImplicitStunDuration3_"] = { type = "Synthesis", affix = "", "(26-35)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 24, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(26-35)% increased Stun Duration on Enemies" }, } }, - ["SynthesisImplicitEnemyStunThreshold1"] = { type = "Synthesis", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(5-6)% reduced Enemy Stun Threshold" }, } }, - ["SynthesisImplicitEnemyStunThreshold2"] = { type = "Synthesis", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 15, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(7-8)% reduced Enemy Stun Threshold" }, } }, - ["SynthesisImplicitEnemyStunThreshold3"] = { type = "Synthesis", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 24, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(9-10)% reduced Enemy Stun Threshold" }, } }, - ["SynthesisImplicitStunRecovery1"] = { type = "Synthesis", affix = "", "(10-12)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(10-12)% increased Stun and Block Recovery" }, } }, - ["SynthesisImplicitStunRecovery2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 15, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(13-15)% increased Stun and Block Recovery" }, } }, - ["SynthesisImplicitStunRecovery3_"] = { type = "Synthesis", affix = "", "(16-18)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 24, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(16-18)% increased Stun and Block Recovery" }, } }, - ["SynthesisImplicitStunRecovery4"] = { type = "Synthesis", affix = "", "(19-21)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 36, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(19-21)% increased Stun and Block Recovery" }, } }, - ["SynthesisImplicitStunRecovery5"] = { type = "Synthesis", affix = "", "(22-25)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 48, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(22-25)% increased Stun and Block Recovery" }, } }, - ["SynthesisImplicitStunRecoveryJewel1"] = { type = "Synthesis", affix = "", "(6-7)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, - ["SynthesisImplicitStunDurationJewel1___"] = { type = "Synthesis", affix = "", "(2-3)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(2-3)% increased Stun Duration on Enemies" }, } }, - ["SynthesisImplicitStunDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(4-5)% increased Stun Duration on Enemies" }, } }, - ["SynthesisImplicitGlobalKnockbackChanceJewel1"] = { type = "Synthesis", affix = "", "(2-3)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 1, group = "GlobalKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "(2-3)% chance to Knock Enemies Back on hit" }, } }, - ["SynthesisImplicitAvoidStun1"] = { type = "Synthesis", affix = "", "(10-11)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 15, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(10-11)% chance to Avoid being Stunned" }, } }, - ["SynthesisImplicitAvoidStun2"] = { type = "Synthesis", affix = "", "(12-13)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 24, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(12-13)% chance to Avoid being Stunned" }, } }, - ["SynthesisImplicitAvoidStun3"] = { type = "Synthesis", affix = "", "(14-15)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 36, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(14-15)% chance to Avoid being Stunned" }, } }, - ["SynthesisImplicitAvoidStunJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(8-10)% chance to Avoid being Stunned" }, } }, - ["SynthesisImplicitAvoidStunCastingJewel1_"] = { type = "Synthesis", affix = "", "(16-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1916706958] = { "(16-20)% chance to Ignore Stuns while Casting" }, } }, - ["SynthesisImplicitAreaOfEffectOnStun1"] = { type = "Synthesis", affix = "", "(20-25)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 56, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [430248187] = { "(20-25)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, - ["SynthesisImplicitUnwaveringStance1"] = { type = "Synthesis", affix = "", "Unwavering Stance", statOrder = { 10821 }, level = 65, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["SynthesisImplicitImmuneToBleed1____"] = { type = "Synthesis", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 56, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, - ["SynthesisImplicitSelfAilmentDuration1"] = { type = "Synthesis", affix = "", "(15-20)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 15, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(15-20)% reduced Elemental Ailment Duration on you" }, } }, - ["SynthesisImplicitSelfAilmentDuration2"] = { type = "Synthesis", affix = "", "(21-35)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 24, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(21-35)% reduced Elemental Ailment Duration on you" }, } }, - ["SynthesisImplicitSelfAilmentDuration3"] = { type = "Synthesis", affix = "", "(36-50)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 36, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(36-50)% reduced Elemental Ailment Duration on you" }, } }, - ["SynthesisImplicitSelfAilmentDurationJewel1_"] = { type = "Synthesis", affix = "", "(5-7)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(5-7)% reduced Elemental Ailment Duration on you" }, } }, - ["SynthesisImplicitSelfAilmentDurationJewel2"] = { type = "Synthesis", affix = "", "(8-10)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(8-10)% reduced Elemental Ailment Duration on you" }, } }, - ["SynthesisImplicitAilmentDamage1"] = { type = "Synthesis", affix = "", "8% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "8% increased Damage with Ailments" }, } }, - ["SynthesisImplicitAilmentDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage with Ailments", statOrder = { 4983 }, level = 15, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(9-10)% increased Damage with Ailments" }, } }, - ["SynthesisImplicitAilmentDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage with Ailments", statOrder = { 4983 }, level = 24, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(11-12)% increased Damage with Ailments" }, } }, - ["SynthesisImplicitAilmentDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Damage with Ailments", statOrder = { 4983 }, level = 36, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(13-14)% increased Damage with Ailments" }, } }, - ["SynthesisImplicitAilmentDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Damage with Ailments", statOrder = { 4983 }, level = 48, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-16)% increased Damage with Ailments" }, } }, - ["SynthesisImplicitAilmentDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(2-3)% increased Damage with Ailments" }, } }, - ["SynthesisImplicitAilmentDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(4-5)% increased Damage with Ailments" }, } }, - ["SynthesisImplicitAilmentEffect1"] = { type = "Synthesis", affix = "", "6% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "6% increased Effect of Non-Damaging Ailments" }, } }, - ["SynthesisImplicitAilmentEffect2_"] = { type = "Synthesis", affix = "", "7% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 15, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "7% increased Effect of Non-Damaging Ailments" }, } }, - ["SynthesisImplicitAilmentEffect3"] = { type = "Synthesis", affix = "", "8% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 24, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "8% increased Effect of Non-Damaging Ailments" }, } }, - ["SynthesisImplicitAilmentEffect4"] = { type = "Synthesis", affix = "", "9% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 36, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "9% increased Effect of Non-Damaging Ailments" }, } }, - ["SynthesisImplicitAilmentEffect5"] = { type = "Synthesis", affix = "", "10% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 48, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "10% increased Effect of Non-Damaging Ailments" }, } }, - ["SynthesisImplicitChanceToIgnite1"] = { type = "Synthesis", affix = "", "6% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "6% chance to Ignite" }, } }, - ["SynthesisImplicitChanceToIgnite2"] = { type = "Synthesis", affix = "", "7% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "7% chance to Ignite" }, } }, - ["SynthesisImplicitChanceToIgnite3"] = { type = "Synthesis", affix = "", "8% chance to Ignite", statOrder = { 2026 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "8% chance to Ignite" }, } }, - ["SynthesisImplicitChanceToIgniteTwoHand1_"] = { type = "Synthesis", affix = "", "(9-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(9-10)% chance to Ignite" }, } }, - ["SynthesisImplicitChanceToIgniteTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(11-12)% chance to Ignite" }, } }, - ["SynthesisImplicitChanceToIgniteTwoHand3_"] = { type = "Synthesis", affix = "", "(13-15)% chance to Ignite", statOrder = { 2026 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(13-15)% chance to Ignite" }, } }, - ["SynthesisImplicitChanceToIgniteJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(1-2)% chance to Ignite" }, } }, - ["SynthesisImplicitChanceToIgniteJewel2"] = { type = "Synthesis", affix = "", "3% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "3% chance to Ignite" }, } }, - ["SynthesisImplicitIgniteDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 36, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(8-10)% increased Ignite Duration on Enemies" }, } }, - ["SynthesisImplicitIgniteDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 48, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(12-15)% increased Ignite Duration on Enemies" }, } }, - ["SynthesisImplicitFasterIgnite1__"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (7-10)% faster", statOrder = { 2564 }, level = 56, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (7-10)% faster" }, } }, - ["SynthesisImplicitFasterIgniteWeapon1_"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (15-20)% faster", statOrder = { 2564 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (15-20)% faster" }, } }, - ["SynthesisImplicitFasterIgniteWeapon2"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (30-35)% faster", statOrder = { 2564 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (30-35)% faster" }, } }, - ["SynthesisImplicitAvoidIgnite1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 15, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(13-14)% chance to Avoid being Ignited" }, } }, - ["SynthesisImplicitAvoidIgnite2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 24, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(15-17)% chance to Avoid being Ignited" }, } }, - ["SynthesisImplicitAvoidIgnite3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 36, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(18-20)% chance to Avoid being Ignited" }, } }, - ["SynthesisImplicitAvoidIgniteJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(8-10)% chance to Avoid being Ignited" }, } }, - ["SynthesisImplicitChanceToFreeze1"] = { type = "Synthesis", affix = "", "6% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "6% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreeze2"] = { type = "Synthesis", affix = "", "7% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "7% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreeze3"] = { type = "Synthesis", affix = "", "8% chance to Freeze", statOrder = { 2029 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "8% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(9-10)% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(11-12)% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Freeze", statOrder = { 2029 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(13-15)% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(1-2)% chance to Freeze" }, } }, - ["SynthesisImplicitChanceToFreezeJewel2"] = { type = "Synthesis", affix = "", "3% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "3% chance to Freeze" }, } }, - ["SynthesisImplicitFreezeDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 36, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "(8-10)% increased Freeze Duration on Enemies" }, } }, - ["SynthesisImplicitFreezeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 48, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "(12-15)% increased Freeze Duration on Enemies" }, } }, - ["SynthesisImplicitAvoidChill1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 15, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(14-16)% chance to Avoid being Chilled" }, } }, - ["SynthesisImplicitAvoidChill2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 24, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(18-21)% chance to Avoid being Chilled" }, } }, - ["SynthesisImplicitAvoidChill3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 36, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(22-25)% chance to Avoid being Chilled" }, } }, - ["SynthesisImplicitAvoidFreeze1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 15, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(13-14)% chance to Avoid being Frozen" }, } }, - ["SynthesisImplicitAvoidFreeze2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 24, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(15-17)% chance to Avoid being Frozen" }, } }, - ["SynthesisImplicitAvoidFreeze3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 36, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(18-20)% chance to Avoid being Frozen" }, } }, - ["SynthesisImplicitAvoidFreezeJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(8-10)% chance to Avoid being Frozen" }, } }, - ["SynthesisImplicitChillDurationJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(2-3)% increased Chill Duration on Enemies" }, [1073942215] = { "" }, } }, - ["SynthesisImplicitChillDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(4-5)% increased Chill Duration on Enemies" }, [1073942215] = { "" }, } }, - ["SynthesisImplicitChillEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 36, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(7-10)% increased Effect of Cold Ailments" }, } }, - ["SynthesisImplicitChillEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 48, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(11-15)% increased Effect of Cold Ailments" }, } }, - ["SynthesisImplicitChillEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(2-3)% increased Effect of Cold Ailments" }, } }, - ["SynthesisImplicitChanceToShock1"] = { type = "Synthesis", affix = "", "6% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "6% chance to Shock" }, } }, - ["SynthesisImplicitChanceToShock2"] = { type = "Synthesis", affix = "", "7% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "7% chance to Shock" }, } }, - ["SynthesisImplicitChanceToShock3"] = { type = "Synthesis", affix = "", "8% chance to Shock", statOrder = { 2033 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "8% chance to Shock" }, } }, - ["SynthesisImplicitChanceToShockTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(9-10)% chance to Shock" }, } }, - ["SynthesisImplicitChanceToShockTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(11-12)% chance to Shock" }, } }, - ["SynthesisImplicitChanceToShockTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Shock", statOrder = { 2033 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(13-15)% chance to Shock" }, } }, - ["SynthesisImplicitChanceToShockJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(1-2)% chance to Shock" }, } }, - ["SynthesisImplicitChanceToShockJewel2"] = { type = "Synthesis", affix = "", "3% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "3% chance to Shock" }, } }, - ["SynthesisImplicitShockDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 36, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(8-10)% increased Shock Duration on Enemies" }, } }, - ["SynthesisImplicitShockDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 48, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-15)% increased Shock Duration on Enemies" }, } }, - ["SynthesisImplicitShockDurationJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(2-3)% increased Shock Duration on Enemies" }, } }, - ["SynthesisImplicitShockDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(4-5)% increased Shock Duration on Enemies" }, } }, - ["SynthesisImplicitAvoidShock1"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 15, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(13-14)% chance to Avoid being Shocked" }, } }, - ["SynthesisImplicitAvoidShock2_"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 24, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(15-17)% chance to Avoid being Shocked" }, } }, - ["SynthesisImplicitAvoidShock3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 36, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(18-20)% chance to Avoid being Shocked" }, } }, - ["SynthesisImplicitAvoidShockJewel1____"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(8-10)% chance to Avoid being Shocked" }, } }, - ["SynthesisImplicitShockEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Shock", statOrder = { 10009 }, level = 36, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(7-10)% increased Effect of Shock" }, } }, - ["SynthesisImplicitShockEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Shock", statOrder = { 10009 }, level = 48, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(11-15)% increased Effect of Shock" }, } }, - ["SynthesisImplicitShockEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Shock", statOrder = { 10009 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(2-3)% increased Effect of Shock" }, } }, - ["SynthesisImplicitBurnDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(10-11)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamage2__"] = { type = "Synthesis", affix = "", "(12-13)% increased Burning Damage", statOrder = { 1877 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(12-13)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Burning Damage", statOrder = { 1877 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(14-15)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamageOneHand1"] = { type = "Synthesis", affix = "", "(14-18)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(14-18)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamageOneHand2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Burning Damage", statOrder = { 1877 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(19-23)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamageOneHand3"] = { type = "Synthesis", affix = "", "(24-28)% increased Burning Damage", statOrder = { 1877 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(24-28)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-27)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(22-27)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamageTwoHand2"] = { type = "Synthesis", affix = "", "(28-35)% increased Burning Damage", statOrder = { 1877 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(28-35)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamageTwoHand3"] = { type = "Synthesis", affix = "", "(36-44)% increased Burning Damage", statOrder = { 1877 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(36-44)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(2-3)% increased Burning Damage" }, } }, - ["SynthesisImplicitBurnDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(4-5)% increased Burning Damage" }, } }, - ["SynthesisImplicitPoisonDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(10-11)% increased Damage with Poison" }, } }, - ["SynthesisImplicitPoisonDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Poison", statOrder = { 3181 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(12-13)% increased Damage with Poison" }, } }, - ["SynthesisImplicitPoisonDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Poison", statOrder = { 3181 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(14-15)% increased Damage with Poison" }, } }, - ["SynthesisImplicitWeaponPoisonDamage1"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(14-18)% increased Damage with Poison" }, } }, - ["SynthesisImplicitWeaponPoisonDamage2"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Poison", statOrder = { 3181 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(19-23)% increased Damage with Poison" }, } }, - ["SynthesisImplicitWeaponPoisonDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Poison", statOrder = { 3181 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(24-28)% increased Damage with Poison" }, } }, - ["SynthesisImplicitPoisonDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(2-3)% increased Damage with Poison" }, } }, - ["SynthesisImplicitPoisonDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(4-5)% increased Damage with Poison" }, } }, - ["SynthesisImplicitLocalPoisonOnHit1_"] = { type = "Synthesis", affix = "", "(25-30)% chance to Poison on Hit", statOrder = { 8003 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-30)% chance to Poison on Hit" }, } }, - ["SynthesisImplicitChanceToPoisonJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Poison on Hit", statOrder = { 3173 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(1-2)% chance to Poison on Hit" }, } }, - ["SynthesisImplicitChanceToPoisonJewel2_"] = { type = "Synthesis", affix = "", "3% chance to Poison on Hit", statOrder = { 3173 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "3% chance to Poison on Hit" }, } }, - ["SynthesisImplicitPoisonDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Poison Duration", statOrder = { 3170 }, level = 55, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, - ["SynthesisImplicitFasterPoison1"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (7-10)% faster", statOrder = { 6546 }, level = 56, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (7-10)% faster" }, } }, - ["SynthesisImplicitFasterPoisonWeapon1_"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6546 }, level = 36, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (15-20)% faster" }, } }, - ["SynthesisImplicitFasterPoisonWeapon2__"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (30-35)% faster", statOrder = { 6546 }, level = 48, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (30-35)% faster" }, } }, - ["SynthesisImplicitAvoidPoison1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 24, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(14-16)% chance to Avoid being Poisoned" }, } }, - ["SynthesisImplicitAvoidPoison2"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 36, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(18-21)% chance to Avoid being Poisoned" }, } }, - ["SynthesisImplicitAvoidPoison3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 48, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(22-25)% chance to Avoid being Poisoned" }, } }, - ["SynthesisImplicitAvoidPoisonJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(8-10)% chance to Avoid being Poisoned" }, } }, - ["SynthesisImplicitBleedDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Bleeding", statOrder = { 3169 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(10-11)% increased Damage with Bleeding" }, } }, - ["SynthesisImplicitBleedDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Bleeding", statOrder = { 3169 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(12-13)% increased Damage with Bleeding" }, } }, - ["SynthesisImplicitBleedDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Bleeding", statOrder = { 3169 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(14-15)% increased Damage with Bleeding" }, } }, - ["SynthesisImplicitWeaponBleedDamage1_"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Bleeding", statOrder = { 3169 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(14-18)% increased Damage with Bleeding" }, } }, - ["SynthesisImplicitWeaponBleedDamage2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Bleeding", statOrder = { 3169 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(19-23)% increased Damage with Bleeding" }, } }, - ["SynthesisImplicitWeaponBleedDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Bleeding", statOrder = { 3169 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(24-28)% increased Damage with Bleeding" }, } }, - ["SynthesisImplicitBleedDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(2-3)% increased Damage with Bleeding" }, } }, - ["SynthesisImplicitBleedDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(4-5)% increased Damage with Bleeding" }, } }, - ["SynthesisImplicitLocalBleedOnHit1"] = { type = "Synthesis", affix = "", "(15-20)% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 50, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-20)% chance to cause Bleeding on Hit" }, } }, - ["SynthesisImplicitChanceToBleedJewel1"] = { type = "Synthesis", affix = "", "Attacks have (1-2)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (1-2)% chance to cause Bleeding" }, } }, - ["SynthesisImplicitChanceToBleedJewel2__"] = { type = "Synthesis", affix = "", "Attacks have 3% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 3% chance to cause Bleeding" }, } }, - ["SynthesisImplicitFasterBleed1_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (7-10)% faster", statOrder = { 6545 }, level = 56, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (7-10)% faster" }, } }, - ["SynthesisImplicitFasterBleedWeapon1"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (15-20)% faster", statOrder = { 6545 }, level = 36, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (15-20)% faster" }, } }, - ["SynthesisImplicitFasterBleedWeapon2_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (30-35)% faster", statOrder = { 6545 }, level = 48, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (30-35)% faster" }, } }, - ["SynthesisImplicitBleedDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4994 }, level = 55, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, - ["SynthesisImplicitAvoidBleed1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 15, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(14-16)% chance to Avoid Bleeding" }, } }, - ["SynthesisImplicitAvoidBleed2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 24, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(18-21)% chance to Avoid Bleeding" }, } }, - ["SynthesisImplicitAvoidBleed3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 36, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(22-25)% chance to Avoid Bleeding" }, } }, - ["SynthesisImplicitAvoidBleedJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(8-10)% chance to Avoid Bleeding" }, } }, - ["SynthesisImplicitAllDamage1_"] = { type = "Synthesis", affix = "", "7% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "7% increased Damage" }, } }, - ["SynthesisImplicitAllDamage2"] = { type = "Synthesis", affix = "", "(8-9)% increased Damage", statOrder = { 1191 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(8-9)% increased Damage" }, } }, - ["SynthesisImplicitAllDamage3"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage", statOrder = { 1191 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-11)% increased Damage" }, } }, - ["SynthesisImplicitAllDamage4"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage", statOrder = { 1191 }, level = 36, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(12-13)% increased Damage" }, } }, - ["SynthesisImplicitAllDamage5"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage", statOrder = { 1191 }, level = 48, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(14-15)% increased Damage" }, } }, - ["SynthesisImplicitWeaponAllDamage1"] = { type = "Synthesis", affix = "", "(15-18)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(15-18)% increased Damage" }, } }, - ["SynthesisImplicitWeaponAllDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Damage", statOrder = { 1191 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(19-22)% increased Damage" }, } }, - ["SynthesisImplicitWeaponAllDamage3_"] = { type = "Synthesis", affix = "", "(23-26)% increased Damage", statOrder = { 1191 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(23-26)% increased Damage" }, } }, - ["SynthesisImplicitWeaponAllDamageTwoHand1_"] = { type = "Synthesis", affix = "", "(21-26)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(21-26)% increased Damage" }, } }, - ["SynthesisImplicitWeaponAllDamageTwoHand2"] = { type = "Synthesis", affix = "", "(27-32)% increased Damage", statOrder = { 1191 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(27-32)% increased Damage" }, } }, - ["SynthesisImplicitWeaponAllDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Damage", statOrder = { 1191 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(33-38)% increased Damage" }, } }, - ["SynthesisImplicitAllDamageJewel1"] = { type = "Synthesis", affix = "", "2% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "2% increased Damage" }, } }, - ["SynthesisImplicitAllDamageJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(3-4)% increased Damage" }, } }, - ["SynthesisImplicitFireDamage1_"] = { type = "Synthesis", affix = "", "8% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "8% increased Fire Damage" }, } }, - ["SynthesisImplicitFireDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Fire Damage", statOrder = { 1357 }, level = 15, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(9-10)% increased Fire Damage" }, } }, - ["SynthesisImplicitFireDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Fire Damage", statOrder = { 1357 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(11-12)% increased Fire Damage" }, } }, - ["SynthesisImplicitFireDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-14)% increased Fire Damage" }, } }, - ["SynthesisImplicitFireDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Fire Damage", statOrder = { 1357 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-16)% increased Fire Damage" }, } }, - ["SynthesisImplicitFireDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Fire Damage", statOrder = { 1357 }, level = 56, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(17-20)% increased Fire Damage" }, } }, - ["SynthesisImplicitFireDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(2-3)% increased Fire Damage" }, } }, - ["SynthesisImplicitFireDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-5)% increased Fire Damage" }, } }, - ["SynthesisImplicitFireDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Attack Skills", statOrder = { 6577 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2468413380] = { "(3-4)% increased Fire Damage with Attack Skills" }, } }, - ["SynthesisImplicitFireDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Attack Skills", statOrder = { 6577 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2468413380] = { "(5-6)% increased Fire Damage with Attack Skills" }, } }, - ["SynthesisImplicitFireDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Spell Skills", statOrder = { 6578 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [361162316] = { "(3-4)% increased Fire Damage with Spell Skills" }, } }, - ["SynthesisImplicitFireDamageSpellsJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Spell Skills", statOrder = { 6578 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [361162316] = { "(5-6)% increased Fire Damage with Spell Skills" }, } }, - ["SynthesisImplicitPhysicalConvertedToFireMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 50, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(7-10)% of Physical Damage Converted to Fire Damage" }, } }, - ["SynthesisImplicitPhysicalConvertedToFire1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 55, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(15-25)% of Physical Damage Converted to Fire Damage" }, } }, - ["SynthesisImplicitPhysicalConvertedToFire2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(40-50)% of Physical Damage Converted to Fire Damage" }, } }, - ["SynthesisImplicitPhysicalConvertedToFireJewel1_"] = { type = "Synthesis", affix = "", "3% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "3% of Physical Damage Converted to Fire Damage" }, } }, - ["SynthesisImplicitPhysicalAddedAsFire1"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 45, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } }, - ["SynthesisImplicitPhysicalAddedAsFire2"] = { type = "Synthesis", affix = "", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 55, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (6-8)% of Physical Damage as Extra Fire Damage" }, } }, - ["SynthesisImplicitFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6564 }, level = 55, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, - ["SynthesisImplicitFireLeechMinor1__"] = { type = "Synthesis", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, - ["SynthesisImplicitFireLeech1"] = { type = "Synthesis", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 55, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.5% of Fire Damage Leeched as Life" }, } }, - ["SynthesisImplicitWeaponFireDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-17)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1357 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Fire Damage", statOrder = { 1357 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-28)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(29-32)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-32)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Fire Damage", statOrder = { 1357 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-36)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(37-40)% increased Fire Damage" }, } }, - ["SynthesisImplicitWeaponFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Fire Damage", statOrder = { 1357 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-44)% increased Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamage1"] = { type = "Synthesis", affix = "", "Adds (4-8) to (9-15) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-8) to (9-15) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamage2"] = { type = "Synthesis", affix = "", "Adds (9-12) to (16-23) Fire Damage", statOrder = { 1362 }, level = 15, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-12) to (16-23) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamage3"] = { type = "Synthesis", affix = "", "Adds (13-18) to (24-31) Fire Damage", statOrder = { 1362 }, level = 24, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-18) to (24-31) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamage4"] = { type = "Synthesis", affix = "", "Adds (19-24) to (32-43) Fire Damage", statOrder = { 1362 }, level = 36, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-24) to (32-43) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamage5"] = { type = "Synthesis", affix = "", "Adds (25-30) to (44-53) Fire Damage", statOrder = { 1362 }, level = 48, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-30) to (44-53) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (15-24) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-14) to (15-24) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-22) to (26-41) Fire Damage", statOrder = { 1362 }, level = 15, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (15-22) to (26-41) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (23-31) to (42-56) Fire Damage", statOrder = { 1362 }, level = 24, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (42-56) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (32-41) to (57-74) Fire Damage", statOrder = { 1362 }, level = 36, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-41) to (57-74) Fire Damage" }, } }, - ["SynthesisImplicitLocalFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (42-52) to (75-93) Fire Damage", statOrder = { 1362 }, level = 48, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (42-52) to (75-93) Fire Damage" }, } }, - ["SynthesisImplicitSpellAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (3-6) to (7-11) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamage2"] = { type = "Synthesis", affix = "", "Adds (7-9) to (12-17) Fire Damage to Spells", statOrder = { 1404 }, level = 15, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (7-9) to (12-17) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamage3"] = { type = "Synthesis", affix = "", "Adds (10-13) to (17-22) Fire Damage to Spells", statOrder = { 1404 }, level = 24, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (17-22) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamage4"] = { type = "Synthesis", affix = "", "Adds (14-17) to (23-31) Fire Damage to Spells", statOrder = { 1404 }, level = 36, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-17) to (23-31) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamage5"] = { type = "Synthesis", affix = "", "Adds (18-21) to (31-38) Fire Damage to Spells", statOrder = { 1404 }, level = 48, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-21) to (31-38) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (5-9) to (10-15) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (5-9) to (10-15) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (10-14) to (16-25) Fire Damage to Spells", statOrder = { 1404 }, level = 15, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-14) to (16-25) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (14-19) to (26-34) Fire Damage to Spells", statOrder = { 1404 }, level = 24, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-19) to (26-34) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (20-25) to (35-45) Fire Damage to Spells", statOrder = { 1404 }, level = 36, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-25) to (35-45) Fire Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand5__"] = { type = "Synthesis", affix = "", "Adds (26-32) to (46-56) Fire Damage to Spells", statOrder = { 1404 }, level = 48, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-32) to (46-56) Fire Damage to Spells" }, } }, - ["SynthesisImplicitGlobalAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (13-18) to (28-33) Fire Damage", statOrder = { 1359 }, level = 50, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (13-18) to (28-33) Fire Damage" }, } }, - ["SynthesisImplicitFireAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 55, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (4-6)% of Fire Damage as Extra Chaos Damage" }, } }, - ["SynthesisImplicitFireAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 65, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (7-10)% of Fire Damage as Extra Chaos Damage" }, } }, - ["SynthesisImplicitColdDamage1"] = { type = "Synthesis", affix = "", "8% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "8% increased Cold Damage" }, } }, - ["SynthesisImplicitColdDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Cold Damage", statOrder = { 1366 }, level = 15, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(9-10)% increased Cold Damage" }, } }, - ["SynthesisImplicitColdDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(11-12)% increased Cold Damage" }, } }, - ["SynthesisImplicitColdDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-14)% increased Cold Damage" }, } }, - ["SynthesisImplicitColdDamage5_"] = { type = "Synthesis", affix = "", "(15-16)% increased Cold Damage", statOrder = { 1366 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-16)% increased Cold Damage" }, } }, - ["SynthesisImplicitColdDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Cold Damage", statOrder = { 1366 }, level = 56, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(17-20)% increased Cold Damage" }, } }, - ["SynthesisImplicitColdDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(2-3)% increased Cold Damage" }, } }, - ["SynthesisImplicitColdDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-5)% increased Cold Damage" }, } }, - ["SynthesisImplicitColdDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Attack Skills", statOrder = { 5821 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(3-4)% increased Cold Damage with Attack Skills" }, } }, - ["SynthesisImplicitColdDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Attack Skills", statOrder = { 5821 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(5-6)% increased Cold Damage with Attack Skills" }, } }, - ["SynthesisImplicitColdDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Spell Skills", statOrder = { 5822 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2186994986] = { "(3-4)% increased Cold Damage with Spell Skills" }, } }, - ["SynthesisImplicitColdDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Spell Skills", statOrder = { 5822 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2186994986] = { "(5-6)% increased Cold Damage with Spell Skills" }, } }, - ["SynthesisImplicitPhysicalConvertedToColdMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 50, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(7-10)% of Physical Damage Converted to Cold Damage" }, } }, - ["SynthesisImplicitPhysicalConvertedToCold1_"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 55, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(15-25)% of Physical Damage Converted to Cold Damage" }, } }, - ["SynthesisImplicitPhysicalConvertedToCold2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(40-50)% of Physical Damage Converted to Cold Damage" }, } }, - ["SynthesisImplicitColdDamagePerFrenzyCharge1"] = { type = "Synthesis", affix = "", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 55, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, - ["SynthesisImplicitColdLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, - ["SynthesisImplicitColdLeech1"] = { type = "Synthesis", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 55, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.5% of Cold Damage Leeched as Life" }, } }, - ["SynthesisImplicitWeaponColdDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-17)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-20)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Cold Damage", statOrder = { 1366 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-28)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-32)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-36)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(37-40)% increased Cold Damage" }, } }, - ["SynthesisImplicitWeaponColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Cold Damage", statOrder = { 1366 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-44)% increased Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-6) to (7-11) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamage2"] = { type = "Synthesis", affix = "", "Adds (7-10) to (12-18) Cold Damage", statOrder = { 1371 }, level = 15, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-10) to (12-18) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamage3"] = { type = "Synthesis", affix = "", "Adds (11-15) to (19-26) Cold Damage", statOrder = { 1371 }, level = 24, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (19-26) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamage4"] = { type = "Synthesis", affix = "", "Adds (16-20) to (27-35) Cold Damage", statOrder = { 1371 }, level = 36, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-20) to (27-35) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamage5"] = { type = "Synthesis", affix = "", "Adds (21-25) to (36-43) Cold Damage", statOrder = { 1371 }, level = 48, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-25) to (36-43) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamageTwoHand1__"] = { type = "Synthesis", affix = "", "Adds (6-9) to (13-21) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (13-21) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamageTwoHand2__"] = { type = "Synthesis", affix = "", "Adds (10-17) to (22-32) Cold Damage", statOrder = { 1371 }, level = 15, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-17) to (22-32) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamageTwoHand3_"] = { type = "Synthesis", affix = "", "Adds (19-26) to (34-45) Cold Damage", statOrder = { 1371 }, level = 24, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-26) to (34-45) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (27-35) to (46-61) Cold Damage", statOrder = { 1371 }, level = 36, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (27-35) to (46-61) Cold Damage" }, } }, - ["SynthesisImplicitLocalColdDamageTwoHand5_"] = { type = "Synthesis", affix = "", "Adds (36-43) to (51-75) Cold Damage", statOrder = { 1371 }, level = 48, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (36-43) to (51-75) Cold Damage" }, } }, - ["SynthesisImplicitSpellAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (3-5) to (5-8) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (3-5) to (5-8) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamage2_"] = { type = "Synthesis", affix = "", "Adds (5-7) to (9-13) Cold Damage to Spells", statOrder = { 1405 }, level = 15, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (9-13) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamage3"] = { type = "Synthesis", affix = "", "Adds (8-11) to (14-19) Cold Damage to Spells", statOrder = { 1405 }, level = 24, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-11) to (14-19) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamage4"] = { type = "Synthesis", affix = "", "Adds (12-14) to (19-25) Cold Damage to Spells", statOrder = { 1405 }, level = 36, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-14) to (19-25) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamage5"] = { type = "Synthesis", affix = "", "Adds (15-18) to (26-31) Cold Damage to Spells", statOrder = { 1405 }, level = 48, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (15-18) to (26-31) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (4-6) to (8-13) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (4-6) to (8-13) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (7-11) to (14-20) Cold Damage to Spells", statOrder = { 1405 }, level = 15, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (7-11) to (14-20) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (12-16) to (21-28) Cold Damage to Spells", statOrder = { 1405 }, level = 24, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-16) to (21-28) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (17-21) to (28-38) Cold Damage to Spells", statOrder = { 1405 }, level = 36, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-21) to (28-38) Cold Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (22-26) to (31-46) Cold Damage to Spells", statOrder = { 1405 }, level = 48, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (22-26) to (31-46) Cold Damage to Spells" }, } }, - ["SynthesisImplicitGlobalAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (12-16) to (24-28) Cold Damage", statOrder = { 1368 }, level = 50, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (12-16) to (24-28) Cold Damage" }, } }, - ["SynthesisImplicitColdDamageOverTimeMultiplier1"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(9-10)% to Cold Damage over Time Multiplier" }, } }, - ["SynthesisImplicitColdDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-12)% to Cold Damage over Time Multiplier" }, } }, - ["SynthesisImplicitColdDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(13-15)% to Cold Damage over Time Multiplier" }, } }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Synthesis", affix = "", "+(21-23)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(21-23)% to Cold Damage over Time Multiplier" }, } }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand2_"] = { type = "Synthesis", affix = "", "+(24-26)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-26)% to Cold Damage over Time Multiplier" }, } }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand3_"] = { type = "Synthesis", affix = "", "+(27-30)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(27-30)% to Cold Damage over Time Multiplier" }, } }, - ["SynthesisImplicitColdAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 55, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (4-6)% of Cold Damage as Extra Chaos Damage" }, } }, - ["SynthesisImplicitColdAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 65, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (7-10)% of Cold Damage as Extra Chaos Damage" }, } }, - ["SynthesisImplicitLightningDamage1"] = { type = "Synthesis", affix = "", "8% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "8% increased Lightning Damage" }, } }, - ["SynthesisImplicitLightningDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Lightning Damage", statOrder = { 1377 }, level = 15, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(9-10)% increased Lightning Damage" }, } }, - ["SynthesisImplicitLightningDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Lightning Damage", statOrder = { 1377 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(11-12)% increased Lightning Damage" }, } }, - ["SynthesisImplicitLightningDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-14)% increased Lightning Damage" }, } }, - ["SynthesisImplicitLightningDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Lightning Damage", statOrder = { 1377 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-16)% increased Lightning Damage" }, } }, - ["SynthesisImplicitLightningDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Lightning Damage", statOrder = { 1377 }, level = 56, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(17-20)% increased Lightning Damage" }, } }, - ["SynthesisImplicitLightningDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(2-3)% increased Lightning Damage" }, } }, - ["SynthesisImplicitLightningDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(4-5)% increased Lightning Damage" }, } }, - ["SynthesisImplicitLightningDamageAttacksJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Attack Skills", statOrder = { 7454 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4208907162] = { "(3-4)% increased Lightning Damage with Attack Skills" }, } }, - ["SynthesisImplicitLightningDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Attack Skills", statOrder = { 7454 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4208907162] = { "(5-6)% increased Lightning Damage with Attack Skills" }, } }, - ["SynthesisImplicitLightningDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Spell Skills", statOrder = { 7455 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3935031607] = { "(3-4)% increased Lightning Damage with Spell Skills" }, } }, - ["SynthesisImplicitLightningDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Spell Skills", statOrder = { 7455 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3935031607] = { "(5-6)% increased Lightning Damage with Spell Skills" }, } }, - ["SynthesisImplicitPhysicalConvertedToLightningMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 50, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(7-10)% of Physical Damage Converted to Lightning Damage" }, } }, - ["SynthesisImplicitPhysicalConvertedToLightning1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 55, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(15-25)% of Physical Damage Converted to Lightning Damage" }, } }, - ["SynthesisImplicitPhysicalConvertedToLightning2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(40-50)% of Physical Damage Converted to Lightning Damage" }, } }, - ["SynthesisImplicitPhysicalAddedAsLightning1___"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 55, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, } }, - ["SynthesisImplicitLightningLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, - ["SynthesisImplicitLightningLeech1"] = { type = "Synthesis", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 55, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.5% of Lightning Damage Leeched as Life" }, } }, - ["SynthesisImplicitWeaponLightningDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-17)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-20)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamage4_"] = { type = "Synthesis", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamage5_"] = { type = "Synthesis", affix = "", "(27-30)% increased Lightning Damage", statOrder = { 1377 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-28)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-32)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Lightning Damage", statOrder = { 1377 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(33-36)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(37-40)% increased Lightning Damage" }, } }, - ["SynthesisImplicitWeaponLightningDamageTwoHand5_"] = { type = "Synthesis", affix = "", "(41-44)% increased Lightning Damage", statOrder = { 1377 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(41-44)% increased Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (16-25) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (16-25) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (26-40) Lightning Damage", statOrder = { 1382 }, level = 15, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (26-40) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamage3_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (41-55) Lightning Damage", statOrder = { 1382 }, level = 24, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-55) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (56-70) Lightning Damage", statOrder = { 1382 }, level = 36, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-5) to (56-70) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-6) to (71-83) Lightning Damage", statOrder = { 1382 }, level = 48, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (71-83) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (29-46) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (29-46) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (1-3) to (48-75) Lightning Damage", statOrder = { 1382 }, level = 15, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (48-75) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-6) to (77-95) Lightning Damage", statOrder = { 1382 }, level = 24, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (77-95) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-8) to (96-123) Lightning Damage", statOrder = { 1382 }, level = 36, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-8) to (96-123) Lightning Damage" }, } }, - ["SynthesisImplicitLocalLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-10) to (124-145) Lightning Damage", statOrder = { 1382 }, level = 48, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-10) to (124-145) Lightning Damage" }, } }, - ["SynthesisImplicitSpellAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (12-18) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (12-18) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (19-28) Lightning Damage to Spells", statOrder = { 1406 }, level = 15, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (19-28) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamage3"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-39) Lightning Damage to Spells", statOrder = { 1406 }, level = 24, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (29-39) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-4) to (40-49) Lightning Damage to Spells", statOrder = { 1406 }, level = 36, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (40-49) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-5) to (50-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 48, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-59) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (18-28) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (18-28) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-46) Lightning Damage to Spells", statOrder = { 1406 }, level = 15, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (29-46) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-4) to (47-58) Lightning Damage to Spells", statOrder = { 1406 }, level = 24, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (47-58) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (59-75) Lightning Damage to Spells", statOrder = { 1406 }, level = 36, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (59-75) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-7) to (75-88) Lightning Damage to Spells", statOrder = { 1406 }, level = 48, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (75-88) Lightning Damage to Spells" }, } }, - ["SynthesisImplicitGlobalAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds (1-5) to (50-52) Lightning Damage", statOrder = { 1379 }, level = 50, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-5) to (50-52) Lightning Damage" }, } }, - ["SynthesisImplicitLightningAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 55, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (4-6)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["SynthesisImplicitLightningAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 65, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (7-10)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["SynthesisImplicitPhysicalDamage1_"] = { type = "Synthesis", affix = "", "8% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "8% increased Global Physical Damage" }, } }, - ["SynthesisImplicitPhysicalDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(9-10)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitPhysicalDamage3_"] = { type = "Synthesis", affix = "", "(11-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(11-12)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitPhysicalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Global Physical Damage", statOrder = { 1231 }, level = 36, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(13-14)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitPhysicalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Global Physical Damage", statOrder = { 1231 }, level = 48, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-16)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitPhysicalDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 56, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(17-20)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(2-3)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitPhysicalDamageJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(4-5)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitPhysicalDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Attack Skills", statOrder = { 9665 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2266750692] = { "(3-4)% increased Physical Damage with Attack Skills" }, } }, - ["SynthesisImplicitPhysicalDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Attack Skills", statOrder = { 9665 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2266750692] = { "(5-6)% increased Physical Damage with Attack Skills" }, } }, - ["SynthesisImplicitPhysicalDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Spell Skills", statOrder = { 9666 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [1430255627] = { "(3-4)% increased Physical Damage with Spell Skills" }, } }, - ["SynthesisImplicitPhysicalDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Spell Skills", statOrder = { 9666 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [1430255627] = { "(5-6)% increased Physical Damage with Spell Skills" }, } }, - ["SynthesisImplicitAttackChanceToImpale1"] = { type = "Synthesis", affix = "", "(6-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(6-10)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["SynthesisImplicitPhysicalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } }, - ["SynthesisImplicitPhysicalLeech1"] = { type = "Synthesis", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 55, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.5% of Physical Damage Leeched as Life" }, } }, - ["SynthesisImplicitWeaponPhysicalDamage1"] = { type = "Synthesis", affix = "", "(19-22)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(19-22)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitWeaponPhysicalDamage2"] = { type = "Synthesis", affix = "", "(23-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(23-26)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitWeaponPhysicalDamage3"] = { type = "Synthesis", affix = "", "(27-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-30)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand1"] = { type = "Synthesis", affix = "", "(27-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-32)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(33-38)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(33-38)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "(39-44)% increased Global Physical Damage", statOrder = { 1231 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(39-44)% increased Global Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage1"] = { type = "Synthesis", affix = "", "(13-14)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(13-14)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage2"] = { type = "Synthesis", affix = "", "(15-16)% increased Physical Damage", statOrder = { 1232 }, level = 15, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-16)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage3"] = { type = "Synthesis", affix = "", "(17-19)% increased Physical Damage", statOrder = { 1232 }, level = 24, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(17-19)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage4"] = { type = "Synthesis", affix = "", "(20-22)% increased Physical Damage", statOrder = { 1232 }, level = 36, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-22)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalPhysicalDamage5"] = { type = "Synthesis", affix = "", "(23-25)% increased Physical Damage", statOrder = { 1232 }, level = 48, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(23-25)% increased Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 2 Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamage2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (3-4) Physical Damage", statOrder = { 1276 }, level = 15, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (3-4) Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamage3"] = { type = "Synthesis", affix = "", "Adds (3-4) to (5-6) Physical Damage", statOrder = { 1276 }, level = 24, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-6) Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamage4"] = { type = "Synthesis", affix = "", "Adds (5-6) to (7-8) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-6) to (7-8) Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamage5"] = { type = "Synthesis", affix = "", "Adds (6-7) to (9-10) Physical Damage", statOrder = { 1276 }, level = 48, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-7) to (9-10) Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Physical Damage", statOrder = { 1276 }, level = 15, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (4-5) Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (4-5) to (6-7) Physical Damage", statOrder = { 1276 }, level = 24, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (6-7) Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand4_"] = { type = "Synthesis", affix = "", "Adds (6-7) to (8-10) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-7) to (8-10) Physical Damage" }, } }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1276 }, level = 48, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-9) to (11-13) Physical Damage" }, } }, - ["SynthesisImplicitPhysicalAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 55, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (4-6)% of Physical Damage as Extra Chaos Damage" }, } }, - ["SynthesisImplicitPhysicalAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 65, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (7-10)% of Physical Damage as Extra Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamage1"] = { type = "Synthesis", affix = "", "8% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "8% increased Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Chaos Damage", statOrder = { 1385 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(9-10)% increased Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Chaos Damage", statOrder = { 1385 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(11-12)% increased Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Chaos Damage", statOrder = { 1385 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-14)% increased Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Chaos Damage", statOrder = { 1385 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-16)% increased Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamage6_"] = { type = "Synthesis", affix = "", "(17-20)% increased Chaos Damage", statOrder = { 1385 }, level = 56, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(17-20)% increased Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(2-3)% increased Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-5)% increased Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamageAttacksJewel1___"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Attack Skills", statOrder = { 5749 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [1959092146] = { "(3-4)% increased Chaos Damage with Attack Skills" }, } }, - ["SynthesisImplicitChaosDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Attack Skills", statOrder = { 5749 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [1959092146] = { "(5-6)% increased Chaos Damage with Attack Skills" }, } }, - ["SynthesisImplicitChaosDamageSpellsJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Spell Skills", statOrder = { 5750 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3761858151] = { "(3-4)% increased Chaos Damage with Spell Skills" }, } }, - ["SynthesisImplicitChaosDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Spell Skills", statOrder = { 5750 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3761858151] = { "(5-6)% increased Chaos Damage with Spell Skills" }, } }, - ["SynthesisImplicitPhysicalConvertedToChaos1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 55, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(15-25)% of Physical Damage Converted to Chaos Damage" }, } }, - ["SynthesisImplicitPhysicalConvertedToChaos2_"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 60, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(40-50)% of Physical Damage Converted to Chaos Damage" }, } }, - ["SynthesisImplicitChaosLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, - ["SynthesisImplicitChaosLeech1"] = { type = "Synthesis", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 55, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } }, - ["SynthesisImplicitWeaponChaosDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1385 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-17)% increased Chaos Damage" }, } }, - ["SynthesisImplicitWeaponChaosDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1385 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, } }, - ["SynthesisImplicitWeaponChaosDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, } }, - ["SynthesisImplicitWeaponChaosDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, } }, - ["SynthesisImplicitWeaponChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Chaos Damage", statOrder = { 1385 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-28)% increased Chaos Damage" }, } }, - ["SynthesisImplicitWeaponChaosDamageTwoHand2___"] = { type = "Synthesis", affix = "", "(29-32)% increased Chaos Damage", statOrder = { 1385 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(29-32)% increased Chaos Damage" }, } }, - ["SynthesisImplicitWeaponChaosDamageTwoHand3_"] = { type = "Synthesis", affix = "", "(33-36)% increased Chaos Damage", statOrder = { 1385 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-36)% increased Chaos Damage" }, } }, - ["SynthesisImplicitWeaponChaosDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Chaos Damage", statOrder = { 1385 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(37-40)% increased Chaos Damage" }, } }, - ["SynthesisImplicitLocalChaosDamage1"] = { type = "Synthesis", affix = "", "Adds (4-9) to (11-21) Chaos Damage", statOrder = { 1390 }, level = 15, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (4-9) to (11-21) Chaos Damage" }, } }, - ["SynthesisImplicitLocalChaosDamage2_"] = { type = "Synthesis", affix = "", "Adds (10-18) to (22-34) Chaos Damage", statOrder = { 1390 }, level = 24, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-18) to (22-34) Chaos Damage" }, } }, - ["SynthesisImplicitLocalChaosDamage3"] = { type = "Synthesis", affix = "", "Adds (19-28) to (35-49) Chaos Damage", statOrder = { 1390 }, level = 36, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-28) to (35-49) Chaos Damage" }, } }, - ["SynthesisImplicitLocalChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (17-30) Chaos Damage", statOrder = { 1390 }, level = 15, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-14) to (17-30) Chaos Damage" }, } }, - ["SynthesisImplicitLocalChaosDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-24) to (31-57) Chaos Damage", statOrder = { 1390 }, level = 24, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (15-24) to (31-57) Chaos Damage" }, } }, - ["SynthesisImplicitLocalChaosDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (26-50) to (58-86) Chaos Damage", statOrder = { 1390 }, level = 36, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (26-50) to (58-86) Chaos Damage" }, } }, - ["SynthesisImplicitGlobalAddedChaosDamage1_"] = { type = "Synthesis", affix = "", "Adds (11-13) to (19-23) Chaos Damage", statOrder = { 1386 }, level = 50, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (11-13) to (19-23) Chaos Damage" }, } }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier1_"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(9-10)% to Chaos Damage over Time Multiplier" }, } }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-12)% to Chaos Damage over Time Multiplier" }, } }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(13-15)% to Chaos Damage over Time Multiplier" }, } }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand1"] = { type = "Synthesis", affix = "", "+(21-23)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(21-23)% to Chaos Damage over Time Multiplier" }, } }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand2"] = { type = "Synthesis", affix = "", "+(24-26)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-26)% to Chaos Damage over Time Multiplier" }, } }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand3"] = { type = "Synthesis", affix = "", "+(27-30)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(27-30)% to Chaos Damage over Time Multiplier" }, } }, - ["SynthesisImplicitDegenerationDamage1_"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(9-10)% increased Damage over Time" }, } }, - ["SynthesisImplicitDegenerationDamage2"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage over Time", statOrder = { 1210 }, level = 15, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(11-12)% increased Damage over Time" }, } }, - ["SynthesisImplicitDegenerationDamage3"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage over Time", statOrder = { 1210 }, level = 24, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(13-15)% increased Damage over Time" }, } }, - ["SynthesisImplicitDegenerationDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(2-3)% increased Damage over Time" }, } }, - ["SynthesisImplicitDegenerationDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(4-5)% increased Damage over Time" }, } }, - ["SynthesisImplicitWeaponElementalDamage1_"] = { type = "Synthesis", affix = "", "(12-13)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(12-13)% increased Elemental Damage with Attack Skills" }, } }, - ["SynthesisImplicitWeaponElementalDamage2"] = { type = "Synthesis", affix = "", "(14-15)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 24, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(14-15)% increased Elemental Damage with Attack Skills" }, } }, - ["SynthesisImplicitWeaponElementalDamage3"] = { type = "Synthesis", affix = "", "(16-18)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 36, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(16-18)% increased Elemental Damage with Attack Skills" }, } }, - ["SynthesisImplicitWeaponElementalDamage4"] = { type = "Synthesis", affix = "", "(19-21)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 48, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-21)% increased Elemental Damage with Attack Skills" }, } }, - ["SynthesisImplicitWeaponElementalDamage5"] = { type = "Synthesis", affix = "", "(22-24)% increased Elemental Damage with Attack Skills", statOrder = { 6322 }, level = 56, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(22-24)% increased Elemental Damage with Attack Skills" }, } }, - ["SynthesisImplicitPhysicalDamageAddedAsRandomElement1"] = { type = "Synthesis", affix = "", "Gain (8-10)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 65, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (8-10)% of Physical Damage as Extra Damage of a random Element" }, } }, - ["SynthesisImplicitLocalElementalPen1_"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 2% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 2% Elemental Resistances" }, } }, - ["SynthesisImplicitLocalElementalPen2"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 3% Elemental Resistances", statOrder = { 3761 }, level = 15, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 3% Elemental Resistances" }, } }, - ["SynthesisImplicitLocalElementalPen3"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate (4-5)% Elemental Resistances", statOrder = { 3761 }, level = 24, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (4-5)% Elemental Resistances" }, } }, - ["SynthesisImplicitElementalDamage1"] = { type = "Synthesis", affix = "", "8% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "8% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(9-10)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Elemental Damage", statOrder = { 1980 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(11-12)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Elemental Damage", statOrder = { 1980 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(13-14)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Elemental Damage", statOrder = { 1980 }, level = 48, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-16)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamageHigh1__"] = { type = "Synthesis", affix = "", "(17-19)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(17-19)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamageHigh2"] = { type = "Synthesis", affix = "", "(20-22)% increased Elemental Damage", statOrder = { 1980 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(20-22)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamageHigh3__"] = { type = "Synthesis", affix = "", "(23-26)% increased Elemental Damage", statOrder = { 1980 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(23-26)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamageHighTwoHand1"] = { type = "Synthesis", affix = "", "(21-26)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(21-26)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamageHighTwoHand2_"] = { type = "Synthesis", affix = "", "(27-32)% increased Elemental Damage", statOrder = { 1980 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(27-32)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamageHighTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Elemental Damage", statOrder = { 1980 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-38)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(2-3)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(4-5)% increased Elemental Damage" }, } }, - ["SynthesisImplicitElementalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1686 }, level = 45, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [720395808] = { "0.2% of Elemental Damage Leeched as Life" }, } }, - ["SynthesisImplicitFirePenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Fire Resistance", statOrder = { 2981 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (3-5)% Fire Resistance" }, } }, - ["SynthesisImplicitColdPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Cold Resistance", statOrder = { 2983 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (3-5)% Cold Resistance" }, } }, - ["SynthesisImplicitLightningPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Lightning Resistance", statOrder = { 2984 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (3-5)% Lightning Resistance" }, } }, - ["SynthesisImplicitFirePenetrationWeapon1"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Fire Resistance", statOrder = { 3590 }, level = 60, group = "FirePenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1123291426] = { "Damage with Weapons Penetrates (4-6)% Fire Resistance" }, } }, - ["SynthesisImplicitColdPenetrationWeapon1_"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Cold Resistance", statOrder = { 3589 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1211769158] = { "Damage with Weapons Penetrates (4-6)% Cold Resistance" }, } }, - ["SynthesisImplicitLightningPenetrationWeapon1__"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Lightning Resistance", statOrder = { 3591 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3301510262] = { "Damage with Weapons Penetrates (4-6)% Lightning Resistance" }, } }, - ["SynthesisImplicitElementalPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 60, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } }, - ["SynthesisImplicitMeleeDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(2-3)% increased Melee Damage" }, } }, - ["SynthesisImplicitMeleeDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(4-5)% increased Melee Damage" }, } }, - ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Maces or Sceptres", statOrder = { 1327 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3774831856] = { "(3-4)% increased Physical Damage with Maces or Sceptres" }, } }, - ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Axes", statOrder = { 1303 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2008219439] = { "(3-4)% increased Physical Damage with Axes" }, } }, - ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Swords", statOrder = { 1338 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3814560373] = { "(3-4)% increased Physical Damage with Swords" }, } }, - ["SynthesisImplicitBowIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Bows", statOrder = { 1333 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [402920808] = { "(3-4)% increased Physical Damage with Bows" }, } }, - ["SynthesisImplicitClawIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Claws", statOrder = { 1315 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [635761691] = { "(3-4)% increased Physical Damage with Claws" }, } }, - ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882531569] = { "(3-4)% increased Physical Damage with Daggers" }, } }, - ["SynthesisImplicitWandIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Wands", statOrder = { 1345 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2769075491] = { "(3-4)% increased Physical Damage with Wands" }, } }, - ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Staves", statOrder = { 1307 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3150705301] = { "(3-4)% increased Physical Damage with Staves" }, } }, - ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Maces or Sceptres", statOrder = { 1327 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3774831856] = { "(5-6)% increased Physical Damage with Maces or Sceptres" }, } }, - ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Axes", statOrder = { 1303 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2008219439] = { "(5-6)% increased Physical Damage with Axes" }, } }, - ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Swords", statOrder = { 1338 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3814560373] = { "(5-6)% increased Physical Damage with Swords" }, } }, - ["SynthesisImplicitBowIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Bows", statOrder = { 1333 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [402920808] = { "(5-6)% increased Physical Damage with Bows" }, } }, - ["SynthesisImplicitClawIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Claws", statOrder = { 1315 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [635761691] = { "(5-6)% increased Physical Damage with Claws" }, } }, - ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882531569] = { "(5-6)% increased Physical Damage with Daggers" }, } }, - ["SynthesisImplicitWandIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Wands", statOrder = { 1345 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2769075491] = { "(5-6)% increased Physical Damage with Wands" }, } }, - ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Staves", statOrder = { 1307 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3150705301] = { "(5-6)% increased Physical Damage with Staves" }, } }, - ["SynthesisImplicitSpellDamageWithStaffJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while wielding a Staff", statOrder = { 1227 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(3-4)% increased Spell Damage while wielding a Staff" }, } }, - ["SynthesisImplicitSpellDamageWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while Dual Wielding", statOrder = { 1230 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(3-4)% increased Spell Damage while Dual Wielding" }, } }, - ["SynthesisImplicitSpellDamageWithShieldJewel1__"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while holding a Shield", statOrder = { 1229 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(3-4)% increased Spell Damage while holding a Shield" }, } }, - ["SynthesisImplicitSpellDamageWithStaffJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while wielding a Staff", statOrder = { 1227 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(5-6)% increased Spell Damage while wielding a Staff" }, } }, - ["SynthesisImplicitSpellDamageWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while Dual Wielding", statOrder = { 1230 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(5-6)% increased Spell Damage while Dual Wielding" }, } }, - ["SynthesisImplicitSpellDamageWithShieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while holding a Shield", statOrder = { 1229 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(5-6)% increased Spell Damage while holding a Shield" }, } }, - ["SynthesisImplicitAttackDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(12-13)% increased Attack Damage" }, } }, - ["SynthesisImplicitAttackDamage2"] = { type = "Synthesis", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(14-16)% increased Attack Damage" }, } }, - ["SynthesisImplicitAttackDamage3"] = { type = "Synthesis", affix = "", "(17-20)% increased Attack Damage", statOrder = { 1198 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-20)% increased Attack Damage" }, } }, - ["SynthesisImplicitWeaponAttackDamage1"] = { type = "Synthesis", affix = "", "(23-26)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(23-26)% increased Attack Damage" }, } }, - ["SynthesisImplicitWeaponAttackDamage2"] = { type = "Synthesis", affix = "", "(27-30)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(27-30)% increased Attack Damage" }, } }, - ["SynthesisImplicitWeaponAttackDamage3"] = { type = "Synthesis", affix = "", "(31-35)% increased Attack Damage", statOrder = { 1198 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(31-35)% increased Attack Damage" }, } }, - ["SynthesisImplicitWeaponAttackDamageTwoHand1"] = { type = "Synthesis", affix = "", "(29-35)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(29-35)% increased Attack Damage" }, } }, - ["SynthesisImplicitWeaponAttackDamageTwoHand2"] = { type = "Synthesis", affix = "", "(36-44)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(36-44)% increased Attack Damage" }, } }, - ["SynthesisImplicitWeaponAttackDamageTwoHand3"] = { type = "Synthesis", affix = "", "(45-51)% increased Attack Damage", statOrder = { 1198 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(45-51)% increased Attack Damage" }, } }, - ["SynthesisImplicitSpellDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(12-13)% increased Spell Damage" }, } }, - ["SynthesisImplicitSpellDamage2_"] = { type = "Synthesis", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1223 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-16)% increased Spell Damage" }, } }, - ["SynthesisImplicitSpellDamage3_"] = { type = "Synthesis", affix = "", "(17-20)% increased Spell Damage", statOrder = { 1223 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-20)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamage1"] = { type = "Synthesis", affix = "", "(16-18)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(16-18)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Spell Damage", statOrder = { 1223 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(19-22)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamage3"] = { type = "Synthesis", affix = "", "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamage4"] = { type = "Synthesis", affix = "", "(27-30)% increased Spell Damage", statOrder = { 1223 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamage5"] = { type = "Synthesis", affix = "", "(31-35)% increased Spell Damage", statOrder = { 1223 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-24)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-24)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamageTwoHand2"] = { type = "Synthesis", affix = "", "(25-28)% increased Spell Damage", statOrder = { 1223 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-28)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamageTwoHand3"] = { type = "Synthesis", affix = "", "(29-35)% increased Spell Damage", statOrder = { 1223 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-35)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamageTwoHand4_"] = { type = "Synthesis", affix = "", "(36-44)% increased Spell Damage", statOrder = { 1223 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(36-44)% increased Spell Damage" }, } }, - ["SynthesisImplicitWeaponSpellDamageTwoHand5"] = { type = "Synthesis", affix = "", "(45-51)% increased Spell Damage", statOrder = { 1223 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-51)% increased Spell Damage" }, } }, - ["SynthesisImplicitSpellsDoubleDamageChance1__"] = { type = "Synthesis", affix = "", "Spells have a (8-10)% chance to deal Double Damage", statOrder = { 10137 }, level = 60, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (8-10)% chance to deal Double Damage" }, } }, - ["SynthesisImplicitSpellsDoubleDamageChance2_"] = { type = "Synthesis", affix = "", "Spells have a (16-18)% chance to deal Double Damage", statOrder = { 10137 }, level = 65, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (16-18)% chance to deal Double Damage" }, } }, - ["SynthesisImplicitSpellDamageJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(2-3)% increased Spell Damage" }, } }, - ["SynthesisImplicitSpellDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-5)% increased Spell Damage" }, } }, - ["SynthesisImplicitStrength1"] = { type = "Synthesis", affix = "", "+(6-8) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(6-8) to Strength" }, } }, - ["SynthesisImplicitStrength2__"] = { type = "Synthesis", affix = "", "+(9-11) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-11) to Strength" }, } }, - ["SynthesisImplicitStrength3"] = { type = "Synthesis", affix = "", "+(12-14) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-14) to Strength" }, } }, - ["SynthesisImplicitStrength4"] = { type = "Synthesis", affix = "", "+(15-17) to Strength", statOrder = { 1177 }, level = 15, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-17) to Strength" }, } }, - ["SynthesisImplicitStrength5"] = { type = "Synthesis", affix = "", "+(18-20) to Strength", statOrder = { 1177 }, level = 24, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(18-20) to Strength" }, } }, - ["SynthesisImplicitStrengthJewel1__"] = { type = "Synthesis", affix = "", "+(2-3) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(2-3) to Strength" }, } }, - ["SynthesisImplicitStrengthJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-5) to Strength" }, } }, - ["SynthesisImplicitPercentStrength1_"] = { type = "Synthesis", affix = "", "4% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "4% increased Strength" }, } }, - ["SynthesisImplicitPercentStrength2_"] = { type = "Synthesis", affix = "", "5% increased Strength", statOrder = { 1184 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "5% increased Strength" }, } }, - ["SynthesisImplicitPercentStrength3_"] = { type = "Synthesis", affix = "", "6% increased Strength", statOrder = { 1184 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "6% increased Strength" }, } }, - ["SynthesisImplicitPercentStrengthTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-9)% increased Strength" }, } }, - ["SynthesisImplicitPercentStrengthTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Strength", statOrder = { 1184 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(10-12)% increased Strength" }, } }, - ["SynthesisImplicitPercentStrengthTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Strength", statOrder = { 1184 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(13-15)% increased Strength" }, } }, - ["SynthesisImplicitDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Strength", statOrder = { 6058 }, level = 60, group = "DamagePer15Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } }, - ["SynthesisImplicitAddedFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["SynthesisImplicitAddedFireDamagePerStrength2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, - ["SynthesisImplicitSpellDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Strength", statOrder = { 10157 }, level = 55, group = "SpellDamagePer16Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } }, - ["SynthesisImplicitSpellDamagePerStrength2_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Strength", statOrder = { 10154 }, level = 55, group = "SpellDamagePer10Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } }, - ["SynthesisImplicitDamageTakenPer250Strength1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Strength", statOrder = { 6110 }, level = 60, group = "DamageTakenPer250Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443108510] = { "1% reduced Damage taken per 250 Strength" }, } }, - ["SynthesisImplicitDexterity1"] = { type = "Synthesis", affix = "", "+(6-8) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(6-8) to Dexterity" }, } }, - ["SynthesisImplicitDexterity2"] = { type = "Synthesis", affix = "", "+(9-11) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-11) to Dexterity" }, } }, - ["SynthesisImplicitDexterity3"] = { type = "Synthesis", affix = "", "+(12-14) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-14) to Dexterity" }, } }, - ["SynthesisImplicitDexterity4"] = { type = "Synthesis", affix = "", "+(15-17) to Dexterity", statOrder = { 1178 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-17) to Dexterity" }, } }, - ["SynthesisImplicitDexterity5"] = { type = "Synthesis", affix = "", "+(18-20) to Dexterity", statOrder = { 1178 }, level = 24, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(18-20) to Dexterity" }, } }, - ["SynthesisImplicitDexterityJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(2-3) to Dexterity" }, } }, - ["SynthesisImplicitDexterityJewel2_"] = { type = "Synthesis", affix = "", "+(4-5) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-5) to Dexterity" }, } }, - ["SynthesisImplicitPercentDexterity1"] = { type = "Synthesis", affix = "", "4% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "4% increased Dexterity" }, } }, - ["SynthesisImplicitPercentDexterity2"] = { type = "Synthesis", affix = "", "5% increased Dexterity", statOrder = { 1185 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "5% increased Dexterity" }, } }, - ["SynthesisImplicitPercentDexterity3_"] = { type = "Synthesis", affix = "", "6% increased Dexterity", statOrder = { 1185 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "6% increased Dexterity" }, } }, - ["SynthesisImplicitPercentDexterityTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-9)% increased Dexterity" }, } }, - ["SynthesisImplicitPercentDexterityTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Dexterity", statOrder = { 1185 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(10-12)% increased Dexterity" }, } }, - ["SynthesisImplicitPercentDexterityTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Dexterity", statOrder = { 1185 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(13-15)% increased Dexterity" }, } }, - ["SynthesisImplicitDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 60, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["SynthesisImplicitAddedColdDamagePerDexterity1_"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["SynthesisImplicitAddedColdDamagePerDexterity2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, - ["SynthesisImplicitSpellDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10155 }, level = 55, group = "SpellDamagePer16Dexterity", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } }, - ["SynthesisImplicitDamageTakenPer250Dexterity1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Dexterity", statOrder = { 6108 }, level = 60, group = "DamageTakenPer250Dexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2477636501] = { "1% reduced Damage taken per 250 Dexterity" }, } }, - ["SynthesisImplicitIntelligence1"] = { type = "Synthesis", affix = "", "+(6-8) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(6-8) to Intelligence" }, } }, - ["SynthesisImplicitIntelligence2_"] = { type = "Synthesis", affix = "", "+(9-11) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-11) to Intelligence" }, } }, - ["SynthesisImplicitIntelligence3_"] = { type = "Synthesis", affix = "", "+(12-14) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-14) to Intelligence" }, } }, - ["SynthesisImplicitIntelligence4"] = { type = "Synthesis", affix = "", "+(15-17) to Intelligence", statOrder = { 1179 }, level = 15, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-17) to Intelligence" }, } }, - ["SynthesisImplicitIntelligence5"] = { type = "Synthesis", affix = "", "+(18-20) to Intelligence", statOrder = { 1179 }, level = 24, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(18-20) to Intelligence" }, } }, - ["SynthesisImplicitIntelligenceJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(2-3) to Intelligence" }, } }, - ["SynthesisImplicitIntelligenceJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-5) to Intelligence" }, } }, - ["SynthesisImplicitPercentIntelligence1"] = { type = "Synthesis", affix = "", "4% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "4% increased Intelligence" }, } }, - ["SynthesisImplicitPercentIntelligence2_"] = { type = "Synthesis", affix = "", "5% increased Intelligence", statOrder = { 1186 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "5% increased Intelligence" }, } }, - ["SynthesisImplicitPercentIntelligence3_"] = { type = "Synthesis", affix = "", "6% increased Intelligence", statOrder = { 1186 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "6% increased Intelligence" }, } }, - ["SynthesisImplicitPercentIntelligenceTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-9)% increased Intelligence" }, } }, - ["SynthesisImplicitPercentIntelligenceTrinket2_"] = { type = "Synthesis", affix = "", "(10-12)% increased Intelligence", statOrder = { 1186 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(10-12)% increased Intelligence" }, } }, - ["SynthesisImplicitPercentIntelligenceTrinket3_"] = { type = "Synthesis", affix = "", "(13-15)% increased Intelligence", statOrder = { 1186 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(13-15)% increased Intelligence" }, } }, - ["SynthesisImplicitDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Intelligence", statOrder = { 6057 }, level = 60, group = "DamagePer15Intelligence", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } }, - ["SynthesisImplicitAddedLightningDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["SynthesisImplicitAddedLightningDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, - ["SynthesisImplicitSpellDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10156 }, level = 55, group = "SpellDamagePer16Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } }, - ["SynthesisImplicitSpellDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 55, group = "SpellDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, - ["SynthesisImplicitDamageTakenPer250Intelligence1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Intelligence", statOrder = { 6109 }, level = 60, group = "DamageTakenPer250Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3522931817] = { "1% reduced Damage taken per 250 Intelligence" }, } }, - ["SynthesisImplicitAllAttributes1"] = { type = "Synthesis", affix = "", "+(6-7) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-7) to all Attributes" }, } }, - ["SynthesisImplicitAllAttributes2"] = { type = "Synthesis", affix = "", "+(8-9) to all Attributes", statOrder = { 1176 }, level = 15, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-9) to all Attributes" }, } }, - ["SynthesisImplicitAllAttributes3"] = { type = "Synthesis", affix = "", "+(10-12) to all Attributes", statOrder = { 1176 }, level = 24, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-12) to all Attributes" }, } }, - ["SynthesisImplicitPercentAllAttributes1"] = { type = "Synthesis", affix = "", "2% increased Attributes", statOrder = { 1183 }, level = 48, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "2% increased Attributes" }, } }, - ["SynthesisImplicitPercentAllAttributes2"] = { type = "Synthesis", affix = "", "3% increased Attributes", statOrder = { 1183 }, level = 56, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "3% increased Attributes" }, } }, - ["SynthesisImplicitAccuracy1"] = { type = "Synthesis", affix = "", "(10-11)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-11)% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitAccuracy2"] = { type = "Synthesis", affix = "", "(12-13)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 15, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(12-13)% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitAccuracy3"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 24, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(14-15)% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitAccuracy4"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 36, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(16-17)% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitAccuracy5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 48, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(18-20)% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitAccuracyJewel1"] = { type = "Synthesis", affix = "", "+(21-35) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(21-35) to Accuracy Rating" }, } }, - ["SynthesisImplicitAccuracyJewel2"] = { type = "Synthesis", affix = "", "+(36-50) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(36-50) to Accuracy Rating" }, } }, - ["SynthesisImplicitFlatAccuracy1_"] = { type = "Synthesis", affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1433 }, level = 48, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-250) to Accuracy Rating" }, } }, - ["SynthesisImplicitFlatAccuracy2"] = { type = "Synthesis", affix = "", "+(251-350) to Accuracy Rating", statOrder = { 1433 }, level = 56, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-350) to Accuracy Rating" }, } }, - ["SynthesisImplicitWeaponAccuracy1"] = { type = "Synthesis", affix = "", "(10-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-15)% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitWeaponAccuracy2"] = { type = "Synthesis", affix = "", "(20-25)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 15, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-25)% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitWeaponAccuracy3"] = { type = "Synthesis", affix = "", "(30-35)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 24, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-35)% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitWeaponAccuracyHigh1"] = { type = "Synthesis", affix = "", "100% increased Global Accuracy Rating", statOrder = { 1434 }, level = 65, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "100% increased Global Accuracy Rating" }, } }, - ["SynthesisImplicitMaceAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1442 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3208450870] = { "(2-3)% increased Accuracy Rating with Maces or Sceptres" }, } }, - ["SynthesisImplicitAxeAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Axes", statOrder = { 1438 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2538120572] = { "(2-3)% increased Accuracy Rating with Axes" }, } }, - ["SynthesisImplicitSwordAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Swords", statOrder = { 1444 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2090868905] = { "(2-3)% increased Accuracy Rating with Swords" }, } }, - ["SynthesisImplicitBowAccuracyRatingJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Bows", statOrder = { 1443 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(2-3)% increased Accuracy Rating with Bows" }, } }, - ["SynthesisImplicitClawAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Claws", statOrder = { 1440 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1297965523] = { "(2-3)% increased Accuracy Rating with Claws" }, } }, - ["SynthesisImplicitDaggerAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Daggers", statOrder = { 1441 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2054715690] = { "(2-3)% increased Accuracy Rating with Daggers" }, } }, - ["SynthesisImplicitWandAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Wands", statOrder = { 1445 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2150183156] = { "(2-3)% increased Accuracy Rating with Wands" }, } }, - ["SynthesisImplicitStaffAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Staves", statOrder = { 1439 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1617235962] = { "(2-3)% increased Accuracy Rating with Staves" }, } }, - ["SynthesisImplicitMaceAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1442 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3208450870] = { "(4-5)% increased Accuracy Rating with Maces or Sceptres" }, } }, - ["SynthesisImplicitAxeAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Axes", statOrder = { 1438 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2538120572] = { "(4-5)% increased Accuracy Rating with Axes" }, } }, - ["SynthesisImplicitSwordAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Swords", statOrder = { 1444 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2090868905] = { "(4-5)% increased Accuracy Rating with Swords" }, } }, - ["SynthesisImplicitBowAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Bows", statOrder = { 1443 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(4-5)% increased Accuracy Rating with Bows" }, } }, - ["SynthesisImplicitClawAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Claws", statOrder = { 1440 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1297965523] = { "(4-5)% increased Accuracy Rating with Claws" }, } }, - ["SynthesisImplicitDaggerAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Daggers", statOrder = { 1441 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2054715690] = { "(4-5)% increased Accuracy Rating with Daggers" }, } }, - ["SynthesisImplicitWandAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Wands", statOrder = { 1445 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2150183156] = { "(4-5)% increased Accuracy Rating with Wands" }, } }, - ["SynthesisImplicitStaffAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Staves", statOrder = { 1439 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1617235962] = { "(4-5)% increased Accuracy Rating with Staves" }, } }, - ["SynthesisImplicitIncreasedArmour1_"] = { type = "Synthesis", affix = "", "(15-18)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-18)% increased Armour" }, } }, - ["SynthesisImplicitIncreasedArmour2_"] = { type = "Synthesis", affix = "", "(19-22)% increased Armour", statOrder = { 1542 }, level = 15, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(19-22)% increased Armour" }, } }, - ["SynthesisImplicitIncreasedArmour3"] = { type = "Synthesis", affix = "", "(23-26)% increased Armour", statOrder = { 1542 }, level = 24, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(23-26)% increased Armour" }, } }, - ["SynthesisImplicitIncreasedArmour4"] = { type = "Synthesis", affix = "", "(27-30)% increased Armour", statOrder = { 1542 }, level = 36, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-30)% increased Armour" }, } }, - ["SynthesisImplicitIncreasedArmour5_"] = { type = "Synthesis", affix = "", "(30-35)% increased Armour", statOrder = { 1542 }, level = 48, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(30-35)% increased Armour" }, } }, - ["SynthesisImplicitFlatArmour1"] = { type = "Synthesis", affix = "", "+(15-20) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(15-20) to Armour" }, } }, - ["SynthesisImplicitFlatArmour2"] = { type = "Synthesis", affix = "", "+(21-30) to Armour", statOrder = { 1540 }, level = 15, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(21-30) to Armour" }, } }, - ["SynthesisImplicitFlatArmour3"] = { type = "Synthesis", affix = "", "+(31-40) to Armour", statOrder = { 1540 }, level = 24, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(31-40) to Armour" }, } }, - ["SynthesisImplicitFlatArmour4"] = { type = "Synthesis", affix = "", "+(41-55) to Armour", statOrder = { 1540 }, level = 36, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(41-55) to Armour" }, } }, - ["SynthesisImplicitFlatArmour5"] = { type = "Synthesis", affix = "", "+(56-70) to Armour", statOrder = { 1540 }, level = 48, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(56-70) to Armour" }, } }, - ["SynthesisImplicitAdditionalPhysReduction1"] = { type = "Synthesis", affix = "", "2% additional Physical Damage Reduction", statOrder = { 2273 }, level = 36, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "2% additional Physical Damage Reduction" }, } }, - ["SynthesisImplicitAdditionalPhysReduction2"] = { type = "Synthesis", affix = "", "3% additional Physical Damage Reduction", statOrder = { 2273 }, level = 48, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "3% additional Physical Damage Reduction" }, } }, - ["SynthesisImplicitAdditionalPhysReduction3"] = { type = "Synthesis", affix = "", "4% additional Physical Damage Reduction", statOrder = { 2273 }, level = 56, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, - ["SynthesisImplicitGlobalArmour1"] = { type = "Synthesis", affix = "", "(7-9)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(7-9)% increased Armour" }, } }, - ["SynthesisImplicitGlobalArmour2"] = { type = "Synthesis", affix = "", "(10-12)% increased Armour", statOrder = { 1541 }, level = 15, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-12)% increased Armour" }, } }, - ["SynthesisImplicitGlobalArmour3"] = { type = "Synthesis", affix = "", "(13-15)% increased Armour", statOrder = { 1541 }, level = 24, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(13-15)% increased Armour" }, } }, - ["SynthesisImplicitGlobalArmourTwoHand1__"] = { type = "Synthesis", affix = "", "(14-16)% increased Armour", statOrder = { 1541 }, level = 36, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-16)% increased Armour" }, } }, - ["SynthesisImplicitGlobalArmourTwoHand2"] = { type = "Synthesis", affix = "", "(17-19)% increased Armour", statOrder = { 1541 }, level = 48, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(17-19)% increased Armour" }, } }, - ["SynthesisImplicitGlobalArmourTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Armour", statOrder = { 1541 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(20-22)% increased Armour" }, } }, - ["SynthesisImplicitGlobalArmourJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(3-4)% increased Armour" }, } }, - ["SynthesisImplicitGlobalArmourJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(5-6)% increased Armour" }, } }, - ["SynthesisImplicitReducedDamageFromCrits1"] = { type = "Synthesis", affix = "", "You take (15-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 55, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-25)% reduced Extra Damage from Critical Strikes" }, } }, - ["SynthesisImplicitChanceForDoubleArmour1"] = { type = "Synthesis", affix = "", "(15-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 65, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(15-20)% chance to Defend with 200% of Armour" }, } }, - ["SynthesisImplicitIncreasedEvasion1"] = { type = "Synthesis", affix = "", "(15-18)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-18)% increased Evasion Rating" }, } }, - ["SynthesisImplicitIncreasedEvasion2"] = { type = "Synthesis", affix = "", "(19-22)% increased Evasion Rating", statOrder = { 1550 }, level = 15, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(19-22)% increased Evasion Rating" }, } }, - ["SynthesisImplicitIncreasedEvasion3"] = { type = "Synthesis", affix = "", "(23-26)% increased Evasion Rating", statOrder = { 1550 }, level = 24, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(23-26)% increased Evasion Rating" }, } }, - ["SynthesisImplicitIncreasedEvasion4"] = { type = "Synthesis", affix = "", "(27-30)% increased Evasion Rating", statOrder = { 1550 }, level = 36, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-30)% increased Evasion Rating" }, } }, - ["SynthesisImplicitIncreasedEvasion5"] = { type = "Synthesis", affix = "", "(30-35)% increased Evasion Rating", statOrder = { 1550 }, level = 48, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(30-35)% increased Evasion Rating" }, } }, - ["SynthesisImplicitFlatEvasion1"] = { type = "Synthesis", affix = "", "+(15-20) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(15-20) to Evasion Rating" }, } }, - ["SynthesisImplicitFlatEvasion2"] = { type = "Synthesis", affix = "", "+(21-30) to Evasion Rating", statOrder = { 1548 }, level = 15, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-30) to Evasion Rating" }, } }, - ["SynthesisImplicitFlatEvasion3"] = { type = "Synthesis", affix = "", "+(31-40) to Evasion Rating", statOrder = { 1548 }, level = 24, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(31-40) to Evasion Rating" }, } }, - ["SynthesisImplicitFlatEvasion4"] = { type = "Synthesis", affix = "", "+(41-55) to Evasion Rating", statOrder = { 1548 }, level = 36, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(41-55) to Evasion Rating" }, } }, - ["SynthesisImplicitFlatEvasion5"] = { type = "Synthesis", affix = "", "+(56-70) to Evasion Rating", statOrder = { 1548 }, level = 48, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(56-70) to Evasion Rating" }, } }, - ["SynthesisImplicitAdditionalEvadeChance1"] = { type = "Synthesis", affix = "", "+2% chance to Evade Attack Hits", statOrder = { 5673 }, level = 36, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+2% chance to Evade Attack Hits" }, } }, - ["SynthesisImplicitAdditionalEvadeChance2"] = { type = "Synthesis", affix = "", "+3% chance to Evade Attack Hits", statOrder = { 5673 }, level = 48, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+3% chance to Evade Attack Hits" }, } }, - ["SynthesisImplicitAdditionalEvadeChance3"] = { type = "Synthesis", affix = "", "+4% chance to Evade Attack Hits", statOrder = { 5673 }, level = 56, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+4% chance to Evade Attack Hits" }, } }, - ["SynthesisImplicitGlobalEvasion1"] = { type = "Synthesis", affix = "", "(7-9)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(7-9)% increased Evasion Rating" }, } }, - ["SynthesisImplicitGlobalEvasion2"] = { type = "Synthesis", affix = "", "(10-12)% increased Evasion Rating", statOrder = { 1549 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-12)% increased Evasion Rating" }, } }, - ["SynthesisImplicitGlobalEvasion3"] = { type = "Synthesis", affix = "", "(13-15)% increased Evasion Rating", statOrder = { 1549 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(13-15)% increased Evasion Rating" }, } }, - ["SynthesisImplicitGlobalEvasionTwoHand1_"] = { type = "Synthesis", affix = "", "(14-16)% increased Evasion Rating", statOrder = { 1549 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-16)% increased Evasion Rating" }, } }, - ["SynthesisImplicitGlobalEvasionTwoHand2_"] = { type = "Synthesis", affix = "", "(17-19)% increased Evasion Rating", statOrder = { 1549 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(17-19)% increased Evasion Rating" }, } }, - ["SynthesisImplicitGlobalEvasionTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Evasion Rating", statOrder = { 1549 }, level = 36, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(20-22)% increased Evasion Rating" }, } }, - ["SynthesisImplicitGlobalEvasionJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(3-4)% increased Evasion Rating" }, } }, - ["SynthesisImplicitGlobalEvasionJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(5-6)% increased Evasion Rating" }, } }, - ["SynthesisImplicitAvoidStatusAilments1"] = { type = "Synthesis", affix = "", "(10-15)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(10-15)% chance to Avoid Elemental Ailments" }, } }, - ["SynthesisImplicitAvoidStatusAilments2"] = { type = "Synthesis", affix = "", "(16-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-25)% chance to Avoid Elemental Ailments" }, } }, - ["SynthesisImplicitAvoidStatusAilmentsMinor1"] = { type = "Synthesis", affix = "", "(10-12)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(10-12)% chance to Avoid Elemental Ailments" }, } }, - ["SynthesisImplicitAvoidStatusAilmentsMinor2"] = { type = "Synthesis", affix = "", "(13-15)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(13-15)% chance to Avoid Elemental Ailments" }, } }, - ["SynthesisImplicitAvoidStatusAilmentsJewel1"] = { type = "Synthesis", affix = "", "(5-7)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(5-7)% chance to Avoid Elemental Ailments" }, } }, - ["SynthesisImplicitBlindOnHit1"] = { type = "Synthesis", affix = "", "(10-15)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 65, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "(10-15)% Global chance to Blind Enemies on hit" }, } }, - ["SynthesisImplicitIncreasedEnergyShield1"] = { type = "Synthesis", affix = "", "(15-16)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-16)% increased Energy Shield" }, } }, - ["SynthesisImplicitIncreasedEnergyShield2"] = { type = "Synthesis", affix = "", "(17-18)% increased Energy Shield", statOrder = { 1560 }, level = 15, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(17-18)% increased Energy Shield" }, } }, - ["SynthesisImplicitIncreasedEnergyShield3__"] = { type = "Synthesis", affix = "", "(19-20)% increased Energy Shield", statOrder = { 1560 }, level = 24, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(19-20)% increased Energy Shield" }, } }, - ["SynthesisImplicitIncreasedEnergyShield4"] = { type = "Synthesis", affix = "", "(21-22)% increased Energy Shield", statOrder = { 1560 }, level = 36, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-22)% increased Energy Shield" }, } }, - ["SynthesisImplicitIncreasedEnergyShield5"] = { type = "Synthesis", affix = "", "(23-25)% increased Energy Shield", statOrder = { 1560 }, level = 48, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(23-25)% increased Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShield1"] = { type = "Synthesis", affix = "", "+(10-12) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-12) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShield2"] = { type = "Synthesis", affix = "", "+(13-15) to maximum Energy Shield", statOrder = { 1559 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShield3"] = { type = "Synthesis", affix = "", "+(16-18) to maximum Energy Shield", statOrder = { 1559 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(16-18) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShield4"] = { type = "Synthesis", affix = "", "+(19-21) to maximum Energy Shield", statOrder = { 1559 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(19-21) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShield5_"] = { type = "Synthesis", affix = "", "+(22-25) to maximum Energy Shield", statOrder = { 1559 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShieldMinor1"] = { type = "Synthesis", affix = "", "+(6-7) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(6-7) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShieldMinor2_"] = { type = "Synthesis", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1559 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(8-9) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShieldMinor3_"] = { type = "Synthesis", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1559 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-11) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShieldMinor4"] = { type = "Synthesis", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1559 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(12-13) to maximum Energy Shield" }, } }, - ["SynthesisImplicitFlatEnergyShieldMinor5_"] = { type = "Synthesis", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1559 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(14-15) to maximum Energy Shield" }, } }, - ["SynthesisImplicitEnergyShieldRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (0.6-0.7)% of Energy Shield per second" }, } }, - ["SynthesisImplicitEnergyShieldRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.9)% of Energy Shield per second", statOrder = { 2646 }, level = 15, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (0.8-0.9)% of Energy Shield per second" }, } }, - ["SynthesisImplicitEnergyShieldRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 24, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, - ["SynthesisImplicitEnergyShieldRegenJewel1_"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.2% of Energy Shield per second" }, } }, - ["SynthesisImplicitEnergyShieldJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(3-4) to maximum Energy Shield" }, } }, - ["SynthesisImplicitEnergyShieldJewel2_"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(5-6) to maximum Energy Shield" }, } }, - ["SynthesisImplicitEnergyShieldRechargeRate1"] = { type = "Synthesis", affix = "", "(8-9)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(8-9)% increased Energy Shield Recharge Rate" }, } }, - ["SynthesisImplicitEnergyShieldRechargeRate2_"] = { type = "Synthesis", affix = "", "(10-11)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 15, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-11)% increased Energy Shield Recharge Rate" }, } }, - ["SynthesisImplicitEnergyShieldRechargeRate3_"] = { type = "Synthesis", affix = "", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 24, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(12-15)% increased Energy Shield Recharge Rate" }, } }, - ["SynthesisImplicitEnergyShieldRechargeRateJewel1_"] = { type = "Synthesis", affix = "", "(3-5)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(3-5)% increased Energy Shield Recharge Rate" }, } }, - ["SynthesisImplicitGlobalEnergyShield1"] = { type = "Synthesis", affix = "", "(4-5)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-5)% increased maximum Energy Shield" }, } }, - ["SynthesisImplicitGlobalEnergyShield2"] = { type = "Synthesis", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-7)% increased maximum Energy Shield" }, } }, - ["SynthesisImplicitGlobalEnergyShield3__"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand1"] = { type = "Synthesis", affix = "", "(7-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-9)% increased maximum Energy Shield" }, } }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand2"] = { type = "Synthesis", affix = "", "(10-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-13)% increased maximum Energy Shield" }, } }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand3___"] = { type = "Synthesis", affix = "", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 36, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } }, - ["SynthesisImplicitEnergyShieldRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 60, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, } }, - ["SynthesisImplicitEnergyShieldLeech1"] = { type = "Synthesis", affix = "", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 55, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, - ["SynthesisImplicitEnergyShieldLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.2% of Spell Damage Leeched as Energy Shield" }, } }, - ["SynthesisImplicitMaximumEnergyShieldLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 56, group = "MaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "10% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, - ["SynthesisImplicitEnergyShieldOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Energy Shield per Enemy Hit with Attacks", statOrder = { 1747 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (1-2) Energy Shield per Enemy Hit with Attacks" }, } }, - ["SynthesisImplicitEnergyShieldDelay1"] = { type = "Synthesis", affix = "", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 36, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, - ["SynthesisImplicitEnergyShieldDelay2"] = { type = "Synthesis", affix = "", "(7-10)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 48, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(7-10)% faster start of Energy Shield Recharge" }, } }, - ["SynthesisImplicitLifeAddedAsEnergyShield1_"] = { type = "Synthesis", affix = "", "Gain 3% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9161 }, level = 65, group = "LifeAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain 3% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["SynthesisImplicitShieldAttackBlock1_"] = { type = "Synthesis", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-3)% Chance to Block Attack Damage" }, } }, - ["SynthesisImplicitShieldAttackBlock2"] = { type = "Synthesis", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 15, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, - ["SynthesisImplicitShieldSpellBlock1"] = { type = "Synthesis", affix = "", "(2-3)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(2-3)% Chance to Block Spell Damage" }, } }, - ["SynthesisImplicitShieldSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 15, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, - ["SynthesisImplicitAttackBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Attack Damage", statOrder = { 1138 }, level = 48, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "2% Chance to Block Attack Damage" }, } }, - ["SynthesisImplicitAttackBlock2"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 56, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, - ["SynthesisImplicitSpellBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Spell Damage", statOrder = { 1160 }, level = 48, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "2% Chance to Block Spell Damage" }, } }, - ["SynthesisImplicitSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 56, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, - ["SynthesisImplicitLifeOnBlock1_"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Life when you Block", statOrder = { 3060 }, level = 60, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } }, - ["SynthesisImplicitManaOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8187 }, level = 60, group = "RecoverManaPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } }, - ["SynthesisImplicitEnergyShieldOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2467 }, level = 60, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } }, - ["SynthesisImplicitMaximumAttackBlock1"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 65, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+(1-2)% to maximum Chance to Block Attack Damage" }, } }, - ["SynthesisImplicitMaximumSpellBlock1_"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Spell Damage", statOrder = { 1989 }, level = 65, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2388574377] = { "+(1-2)% to maximum Chance to Block Spell Damage" }, } }, - ["SynthesisImplicitFlatLifeOnBlock1"] = { type = "Synthesis", affix = "", "(15-25) Life gained when you Block", statOrder = { 1757 }, level = 15, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(15-25) Life gained when you Block" }, } }, - ["SynthesisImplicitFlatLifeOnBlock2"] = { type = "Synthesis", affix = "", "(26-35) Life gained when you Block", statOrder = { 1757 }, level = 24, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-35) Life gained when you Block" }, } }, - ["SynthesisImplicitFlatLifeOnBlockJewel1"] = { type = "Synthesis", affix = "", "(4-6) Life gained when you Block", statOrder = { 1757 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(4-6) Life gained when you Block" }, } }, - ["SynthesisImplicitFlatManaOnBlock1"] = { type = "Synthesis", affix = "", "(5-10) Mana gained when you Block", statOrder = { 1758 }, level = 15, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(5-10) Mana gained when you Block" }, } }, - ["SynthesisImplicitFlatManaOnBlock2"] = { type = "Synthesis", affix = "", "(11-15) Mana gained when you Block", statOrder = { 1758 }, level = 24, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(11-15) Mana gained when you Block" }, } }, - ["SynthesisImplicitFlatManaOnBlockJewel1"] = { type = "Synthesis", affix = "", "(3-5) Mana gained when you Block", statOrder = { 1758 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(3-5) Mana gained when you Block" }, } }, - ["SynthesisImplicitAttackDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, - ["SynthesisImplicitAttackDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+(6-7)% chance to Suppress Spell Damage" }, } }, - ["SynthesisImplicitSpellDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, - ["SynthesisImplicitSpellDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+(6-7)% chance to Suppress Spell Damage" }, } }, - ["SynthesisImplicitAttackDodgeMinor1"] = { type = "Synthesis", affix = "", "+1% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+1% chance to Suppress Spell Damage" }, } }, - ["SynthesisImplicitAttackDodgeMinor2"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, - ["SynthesisImplicitAvoidFire1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 60, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(3-5)% chance to Avoid Fire Damage from Hits" }, } }, - ["SynthesisImplicitAvoidCold1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 60, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(3-5)% chance to Avoid Cold Damage from Hits" }, } }, - ["SynthesisImplicitAvoidLightning1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 60, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(3-5)% chance to Avoid Lightning Damage from Hits" }, } }, - ["SynthesisImplicitMaximumAttackDodge1_"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(1-2)% of Suppressed Spell Damage" }, } }, - ["SynthesisImplicitMaximumSpellDodge1"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(1-2)% of Suppressed Spell Damage" }, } }, - ["SynthesisImplicitSpellDamageSuppressed1_"] = { type = "Synthesis", affix = "", "Prevent +(2-3)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(2-3)% of Suppressed Spell Damage" }, } }, - ["SynthesisImplicitVitalityReservation1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10536 }, level = 48, group = "VitalityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1233806203] = { "Vitality has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitVitalityReservationEfficiency1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10537 }, level = 48, group = "VitalityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3972739758] = { "Vitality has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitDeterminationReservation1"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6172 }, level = 48, group = "DeterminationReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2721871046] = { "Determination has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitDeterminationReservationEfficiency1_"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6173 }, level = 48, group = "DeterminationReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitGraceReservation1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6903 }, level = 48, group = "GraceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1803598623] = { "Grace has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitGraceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6904 }, level = 48, group = "GraceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitDisciplineReservation1_"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6188 }, level = 48, group = "DisciplineReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1692887998] = { "Discipline has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitDisciplineReservationEfficiency1___"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6189 }, level = 48, group = "DisciplineReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfFireReservation1_"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 48, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfFireReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 48, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfFireReservation2_"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 65, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has (60-80)% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfFireReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 65, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has (60-80)% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfIceReservation1_"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 48, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfIceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 48, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfIceReservation2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 65, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has (60-80)% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfIceReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 65, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has (60-80)% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfLightningReservation1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 48, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfLightningReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9776 }, level = 48, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has 20% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfLightningReservation2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 65, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitPurityOfLightningReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9776 }, level = 65, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency" }, } }, - ["SynthesisImplicitSocketedGemReducedReservation1_"] = { type = "Synthesis", affix = "", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 528 }, level = 60, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } }, - ["SynthesisImplicitSelfAuraEffect1_"] = { type = "Synthesis", affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 56, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, - ["SynthesisImplicitDeterminationEffect1"] = { type = "Synthesis", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3367 }, level = 55, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (15-20)% increased Aura Effect" }, } }, - ["SynthesisImplicitGraceEffect1"] = { type = "Synthesis", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3363 }, level = 55, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (15-20)% increased Aura Effect" }, } }, - ["SynthesisImplicitDisciplineEffect1"] = { type = "Synthesis", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3368 }, level = 55, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (15-20)% increased Aura Effect" }, } }, - ["SynthesisImplicitDeterminationPhysicalDamageReduction1"] = { type = "Synthesis", affix = "", "(4-6)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4579 }, level = 65, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1873457881] = { "(4-6)% additional Physical Damage Reduction while affected by Determination" }, } }, - ["SynthesisImplicitGraceAdditionalChanceToEvade1"] = { type = "Synthesis", affix = "", "+(4-6)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5675 }, level = 65, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [969576725] = { "+(4-6)% chance to Evade Attack Hits while affected by Grace" }, } }, - ["SynthesisImplicitDisciplineEnergyShieldRegen1___"] = { type = "Synthesis", affix = "", "Regenerate (1.2-2.2)% of Energy Shield per Second while affected by Discipline", statOrder = { 6460 }, level = 65, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [991194404] = { "Regenerate (1.2-2.2)% of Energy Shield per Second while affected by Discipline" }, } }, - ["SynthesisImplicitReducedManaReservation1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 60, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["SynthesisImplicitManaReservationEfficiency1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 60, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["SynthesisImplicitSocketedSkillsManaMultiplier1"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 96% Cost & Reservation Multiplier", statOrder = { 530 }, level = 24, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 96% Cost & Reservation Multiplier" }, } }, - ["SynthesisImplicitSocketedSkillsManaMultiplier2"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 94% Cost & Reservation Multiplier", statOrder = { 530 }, level = 36, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 94% Cost & Reservation Multiplier" }, } }, - ["SynthesisImplicitSocketedSkillsManaMultiplier3"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 92% Cost & Reservation Multiplier", statOrder = { 530 }, level = 48, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 92% Cost & Reservation Multiplier" }, } }, - ["SynthesisImplicitGrantsPurityOfFire1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 623 }, level = 75, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 25 Purity of Fire Skill" }, } }, - ["SynthesisImplicitGrantsPurityOfIce1__"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 629 }, level = 75, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 25 Purity of Ice Skill" }, } }, - ["SynthesisImplicitGrantsPurityOfLightning1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 631 }, level = 75, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 25 Purity of Lightning Skill" }, } }, - ["SynthesisImplicitGrantsAnger1"] = { type = "Synthesis", affix = "", "Grants Level 10 Anger Skill", statOrder = { 650 }, level = 45, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 10 Anger Skill" }, } }, - ["SynthesisImplicitGrantsAnger2"] = { type = "Synthesis", affix = "", "Grants Level 15 Anger Skill", statOrder = { 650 }, level = 62, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 15 Anger Skill" }, } }, - ["SynthesisImplicitGrantsHatred1"] = { type = "Synthesis", affix = "", "Grants Level 10 Hatred Skill", statOrder = { 649 }, level = 45, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 10 Hatred Skill" }, } }, - ["SynthesisImplicitGrantsHatred2"] = { type = "Synthesis", affix = "", "Grants Level 15 Hatred Skill", statOrder = { 649 }, level = 62, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 15 Hatred Skill" }, } }, - ["SynthesisImplicitGrantsWrath1"] = { type = "Synthesis", affix = "", "Grants Level 10 Wrath Skill", statOrder = { 648 }, level = 45, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 10 Wrath Skill" }, } }, - ["SynthesisImplicitGrantsWrath2_"] = { type = "Synthesis", affix = "", "Grants Level 15 Wrath Skill", statOrder = { 648 }, level = 62, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 15 Wrath Skill" }, } }, - ["SynthesisImplicitHasSocket1_"] = { type = "Synthesis", affix = "", "Has 1 Socket", statOrder = { 69 }, level = 75, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, - ["SynthesisImplicitCurseDuration1"] = { type = "Synthesis", affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 6000 }, level = 36, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (10-15)% increased Skill Effect Duration" }, } }, - ["SynthesisImplicitCurseDuration2"] = { type = "Synthesis", affix = "", "Curse Skills have (16-20)% increased Skill Effect Duration", statOrder = { 6000 }, level = 48, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (16-20)% increased Skill Effect Duration" }, } }, - ["SynthesisImplicitCurseEffect1"] = { type = "Synthesis", affix = "", "(6-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(6-10)% increased Effect of your Curses" }, } }, - ["SynthesisImplicitCurseOnHitFlammability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 45, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["SynthesisImplicitCurseOnHitFlammability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 56, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, - ["SynthesisImplicitCurseOnHitFrostbite1_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 45, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, - ["SynthesisImplicitCurseOnHitFrostbite2_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 56, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, - ["SynthesisImplicitCurseOnHitConductivity1"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 45, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, - ["SynthesisImplicitCurseOnHitConductivity2"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 56, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, - ["SynthesisImplicitCurseOnHitVulnerability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 45, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["SynthesisImplicitCurseOnHitVulnerability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 56, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["SynthesisImplicitCurseOnHitDespair1"] = { type = "Synthesis", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 45, group = "CurseOnHitDespair", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, - ["SynthesisImplicitCurseOnHitElementalWeakness1__"] = { type = "Synthesis", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 45, group = "CurseOnHitLevelElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, - ["SynthesisImplicitCurseEffectFlammability1"] = { type = "Synthesis", affix = "", "(20-30)% increased Flammability Curse Effect", statOrder = { 4013 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "(20-30)% increased Flammability Curse Effect" }, } }, - ["SynthesisImplicitCurseEffectFlammabilityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Flammability Curse Effect", statOrder = { 4013 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "(10-15)% increased Flammability Curse Effect" }, } }, - ["SynthesisImplicitCurseEffectFrostbite1"] = { type = "Synthesis", affix = "", "(20-30)% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "(20-30)% increased Frostbite Curse Effect" }, } }, - ["SynthesisImplicitCurseEffectFrostbiteOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "(10-15)% increased Frostbite Curse Effect" }, } }, - ["SynthesisImplicitCurseEffectConductivity1"] = { type = "Synthesis", affix = "", "(20-30)% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "(20-30)% increased Conductivity Curse Effect" }, } }, - ["SynthesisImplicitCurseEffectConductivityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "(10-15)% increased Conductivity Curse Effect" }, } }, - ["SynthesisImplicitCurseEffectVulnerability1_"] = { type = "Synthesis", affix = "", "(20-30)% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 55, group = "CurseEffectVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "(20-30)% increased Vulnerability Curse Effect" }, } }, - ["SynthesisImplicitCurseEffectElementalWeakness1"] = { type = "Synthesis", affix = "", "(20-30)% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 55, group = "CurseEffectElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "(20-30)% increased Elemental Weakness Curse Effect" }, } }, - ["SynthesisImplicitDamageAffectedByAuras1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (7-9)% increased Damage", statOrder = { 4069 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (7-9)% increased Damage" }, } }, - ["SynthesisImplicitDamageAffectedByAuras2"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (10-12)% increased Damage", statOrder = { 4069 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (10-12)% increased Damage" }, } }, - ["SynthesisImplicitDamageAffectedByAuras3_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-15)% increased Damage", statOrder = { 4069 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (13-15)% increased Damage" }, } }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-16)% increased Damage", statOrder = { 4069 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (13-16)% increased Damage" }, } }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand2_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (17-21)% increased Damage", statOrder = { 4069 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (17-21)% increased Damage" }, } }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand3"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (22-25)% increased Damage", statOrder = { 4069 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (22-25)% increased Damage" }, } }, - ["SynthesisImplicitDamageWhileLeeching1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage while Leeching", statOrder = { 3063 }, level = 36, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(10-12)% increased Damage while Leeching" }, } }, - ["SynthesisImplicitDamageWhileLeeching2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage while Leeching", statOrder = { 3063 }, level = 48, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(13-15)% increased Damage while Leeching" }, } }, - ["SynthesisImplicitDamageWhileLeechingLife1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Life", statOrder = { 1217 }, level = 1, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3591306273] = { "(13-16)% increased Damage while Leeching Life" }, } }, - ["SynthesisImplicitDamageWhileLeechingLife2__"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Life", statOrder = { 1217 }, level = 15, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3591306273] = { "(17-21)% increased Damage while Leeching Life" }, } }, - ["SynthesisImplicitDamageWhileLeechingLife3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Life", statOrder = { 1217 }, level = 24, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3591306273] = { "(22-25)% increased Damage while Leeching Life" }, } }, - ["SynthesisImplicitDamageWhileLeechingMana1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Mana", statOrder = { 1219 }, level = 1, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1994684426] = { "(13-16)% increased Damage while Leeching Mana" }, } }, - ["SynthesisImplicitDamageWhileLeechingMana2_"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Mana", statOrder = { 1219 }, level = 15, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1994684426] = { "(17-21)% increased Damage while Leeching Mana" }, } }, - ["SynthesisImplicitDamageWhileLeechingMana3_"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Mana", statOrder = { 1219 }, level = 24, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1994684426] = { "(22-25)% increased Damage while Leeching Mana" }, } }, - ["SynthesisImplicitDamageDuringFlaskEffect1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 36, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [2947215268] = { "(10-12)% increased Damage during any Flask Effect" }, } }, - ["SynthesisImplicitDamageDuringFlaskEffect2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 48, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [2947215268] = { "(13-15)% increased Damage during any Flask Effect" }, } }, - ["SynthesisImplicitDamageWithTriggeredSpells1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (10-12)% increased Spell Damage", statOrder = { 10432 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-12)% increased Spell Damage" }, } }, - ["SynthesisImplicitDamageWithTriggeredSpells2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (13-15)% increased Spell Damage", statOrder = { 10432 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (13-15)% increased Spell Damage" }, } }, - ["SynthesisImplicitVaalSkillDamage1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 24, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(13-16)% increased Damage with Vaal Skills" }, } }, - ["SynthesisImplicitVaalSkillDamage2"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(17-21)% increased Damage with Vaal Skills" }, } }, - ["SynthesisImplicitVaalSkillDamage3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(22-25)% increased Damage with Vaal Skills" }, } }, - ["SynthesisImplicitVaalSkillDamageWeapon1"] = { type = "Synthesis", affix = "", "(25-30)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(25-30)% increased Damage with Vaal Skills" }, } }, - ["SynthesisImplicitVaalSkillDamageWeapon2"] = { type = "Synthesis", affix = "", "(31-35)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(31-35)% increased Damage with Vaal Skills" }, } }, - ["SynthesisImplicitVaalSkillDamageWeaponTwoHand1"] = { type = "Synthesis", affix = "", "(36-44)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(36-44)% increased Damage with Vaal Skills" }, } }, - ["SynthesisImplicitVaalSkillDamageWeaponTwoHand2"] = { type = "Synthesis", affix = "", "(45-51)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(45-51)% increased Damage with Vaal Skills" }, } }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeapon1_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (19-22)% increased Spell Damage", statOrder = { 10432 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (19-22)% increased Spell Damage" }, } }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeapon2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (23-26)% increased Spell Damage", statOrder = { 10432 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (23-26)% increased Spell Damage" }, } }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (27-32)% increased Spell Damage", statOrder = { 10432 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (27-32)% increased Spell Damage" }, } }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand2_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (33-38)% increased Spell Damage", statOrder = { 10432 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (33-38)% increased Spell Damage" }, } }, - ["SynthesisImplicitDoubleDamageChanceOneHand1"] = { type = "Synthesis", affix = "", "2% chance to deal Double Damage", statOrder = { 5659 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "2% chance to deal Double Damage" }, } }, - ["SynthesisImplicitDoubleDamageChanceOneHand2"] = { type = "Synthesis", affix = "", "3% chance to deal Double Damage", statOrder = { 5659 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "3% chance to deal Double Damage" }, } }, - ["SynthesisImplicitDoubleDamageChanceTwoHand1"] = { type = "Synthesis", affix = "", "4% chance to deal Double Damage", statOrder = { 5659 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "4% chance to deal Double Damage" }, } }, - ["SynthesisImplicitDoubleDamageChanceTwoHand2_"] = { type = "Synthesis", affix = "", "5% chance to deal Double Damage", statOrder = { 5659 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "5% chance to deal Double Damage" }, } }, - ["SynthesisImplicitAreaDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Area Damage", statOrder = { 2035 }, level = 36, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-12)% increased Area Damage" }, } }, - ["SynthesisImplicitAreaDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Area Damage", statOrder = { 2035 }, level = 48, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(13-15)% increased Area Damage" }, } }, - ["SynthesisImplicitProjectileDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Projectile Damage", statOrder = { 1996 }, level = 36, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-12)% increased Projectile Damage" }, } }, - ["SynthesisImplicitProjectileDamage2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Projectile Damage", statOrder = { 1996 }, level = 48, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(13-15)% increased Projectile Damage" }, } }, - ["SynthesisImplicitMeleeDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Melee Damage", statOrder = { 1234 }, level = 36, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(10-12)% increased Melee Damage" }, } }, - ["SynthesisImplicitMeleeDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Melee Damage", statOrder = { 1234 }, level = 48, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(13-15)% increased Melee Damage" }, } }, - ["SynthesisImplicitMinionDamage1"] = { type = "Synthesis", affix = "", "Minions deal 8% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal 8% increased Damage" }, } }, - ["SynthesisImplicitMinionDamage2_"] = { type = "Synthesis", affix = "", "Minions deal (9-10)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (9-10)% increased Damage" }, } }, - ["SynthesisImplicitMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (11-12)% increased Damage", statOrder = { 1973 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-12)% increased Damage" }, } }, - ["SynthesisImplicitMinionDamage4"] = { type = "Synthesis", affix = "", "Minions deal (13-14)% increased Damage", statOrder = { 1973 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-14)% increased Damage" }, } }, - ["SynthesisImplicitMinionDamage5"] = { type = "Synthesis", affix = "", "Minions deal (15-16)% increased Damage", statOrder = { 1973 }, level = 48, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-16)% increased Damage" }, } }, - ["SynthesisImplicitWeaponMinionDamage1_"] = { type = "Synthesis", affix = "", "Minions deal (19-22)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-22)% increased Damage" }, } }, - ["SynthesisImplicitWeaponMinionDamage2"] = { type = "Synthesis", affix = "", "Minions deal (23-26)% increased Damage", statOrder = { 1973 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } }, - ["SynthesisImplicitWeaponMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (27-30)% increased Damage", statOrder = { 1973 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } }, - ["SynthesisImplicitWeaponMinionDamageTwoHand1"] = { type = "Synthesis", affix = "", "Minions deal (27-32)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-32)% increased Damage" }, } }, - ["SynthesisImplicitWeaponMinionDamageTwoHand2"] = { type = "Synthesis", affix = "", "Minions deal (33-38)% increased Damage", statOrder = { 1973 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (33-38)% increased Damage" }, } }, - ["SynthesisImplicitWeaponMinionDamageTwoHand3"] = { type = "Synthesis", affix = "", "Minions deal (39-44)% increased Damage", statOrder = { 1973 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (39-44)% increased Damage" }, } }, - ["SynthesisImplicitMinionDamageJewel1_"] = { type = "Synthesis", affix = "", "Minions deal (2-3)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (2-3)% increased Damage" }, } }, - ["SynthesisImplicitMinionDamageJewel2_"] = { type = "Synthesis", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-5)% increased Damage" }, } }, - ["SynthesisImplicitZombieDamage1"] = { type = "Synthesis", affix = "", "Raised Zombies deal (30-35)% increased Damage", statOrder = { 3643 }, level = 55, group = "ZombieIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2228518621] = { "Raised Zombies deal (30-35)% increased Damage" }, } }, - ["SynthesisImplicitSkeletonDamage1_"] = { type = "Synthesis", affix = "", "Skeletons deal (30-35)% increased Damage", statOrder = { 3659 }, level = 55, group = "SkeletonDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3059357595] = { "Skeletons deal (30-35)% increased Damage" }, } }, - ["SynthesisImplicitSpectreDamage1"] = { type = "Synthesis", affix = "", "Raised Spectres have (30-35)% increased Damage", statOrder = { 3457 }, level = 55, group = "SpectreDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3645693773] = { "Raised Spectres have (30-35)% increased Damage" }, } }, - ["SynthesisImplicitAnimateGuardianResistances1"] = { type = "Synthesis", affix = "", "+15% to Animated Guardian Elemental Resistances", statOrder = { 3989 }, level = 55, group = "AnimateGuardianResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2094281311] = { "+15% to Animated Guardian Elemental Resistances" }, } }, - ["SynthesisImplicitItemDropsOnDeathAnimateGuardian1_"] = { type = "Synthesis", affix = "", "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 2559 }, level = 60, group = "ItemDropsOnGuardianDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3909846940] = { "Item drops on Death if Equipped by an Animated Guardian" }, } }, - ["SynthesisImplicitMinionLife1_"] = { type = "Synthesis", affix = "", "Minions have (7-9)% increased maximum Life", statOrder = { 1766 }, level = 15, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (7-9)% increased maximum Life" }, } }, - ["SynthesisImplicitMinionLife2__"] = { type = "Synthesis", affix = "", "Minions have (10-12)% increased maximum Life", statOrder = { 1766 }, level = 24, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-12)% increased maximum Life" }, } }, - ["SynthesisImplicitMinionLife3"] = { type = "Synthesis", affix = "", "Minions have (13-15)% increased maximum Life", statOrder = { 1766 }, level = 36, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-15)% increased maximum Life" }, } }, - ["SynthesisImplicitMinionLifeRegen1"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.3% of Life per second", statOrder = { 2911 }, level = 36, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 0.3% of Life per second" }, } }, - ["SynthesisImplicitMinionLifeRegen2"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.5% of Life per second", statOrder = { 2911 }, level = 48, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 0.5% of Life per second" }, } }, - ["SynthesisImplicitMinionLifeJewel1"] = { type = "Synthesis", affix = "", "Minions have (2-3)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (2-3)% increased maximum Life" }, } }, - ["SynthesisImplicitMinionLifeJewel2"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-5)% increased maximum Life" }, } }, - ["SynthesisImplicitMinionResistanceJewel1"] = { type = "Synthesis", affix = "", "Minions have +3% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +3% to all Elemental Resistances" }, } }, - ["SynthesisImplicitMinionResistanceJewel2"] = { type = "Synthesis", affix = "", "Minions have +(4-5)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(4-5)% to all Elemental Resistances" }, } }, - ["SynthesisImplicitMinionMovementSpeed1"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased Movement Speed", statOrder = { 1769 }, level = 24, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (4-5)% increased Movement Speed" }, } }, - ["SynthesisImplicitMinionMovementSpeed2"] = { type = "Synthesis", affix = "", "Minions have (6-7)% increased Movement Speed", statOrder = { 1769 }, level = 36, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (6-7)% increased Movement Speed" }, } }, - ["SynthesisImplicitMinionMovementSpeed3"] = { type = "Synthesis", affix = "", "Minions have (8-10)% increased Movement Speed", statOrder = { 1769 }, level = 48, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (8-10)% increased Movement Speed" }, } }, - ["SynthesisImplicitMinionMovementSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (1-2)% increased Movement Speed" }, } }, - ["SynthesisImplicitMinionMovementSpeedJewel2_"] = { type = "Synthesis", affix = "", "Minions have 3% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have 3% increased Movement Speed" }, } }, - ["SynthesisImplicitMinionAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (1-2)% increased Attack Speed" }, } }, - ["SynthesisImplicitMinionAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have 3% increased Attack Speed" }, } }, - ["SynthesisImplicitMinionCastSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Cast Speed", statOrder = { 2908 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [4000101551] = { "Minions have (1-2)% increased Cast Speed" }, } }, - ["SynthesisImplicitMinionCastSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Cast Speed", statOrder = { 2908 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [4000101551] = { "Minions have 3% increased Cast Speed" }, } }, - ["SynthesisImplicitMinionAccuracyJewel1"] = { type = "Synthesis", affix = "", "2% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "2% increased Minion Accuracy Rating" }, } }, - ["SynthesisImplicitMinionAccuracyJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Minion Accuracy Rating", statOrder = { 9266 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(3-4)% increased Minion Accuracy Rating" }, } }, - ["SynthesisImplicitEnduranceChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 45, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(8-11)% increased Endurance Charge Duration" }, } }, - ["SynthesisImplicitEnduranceChargeDuration2__"] = { type = "Synthesis", affix = "", "(12-15)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 50, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(12-15)% increased Endurance Charge Duration" }, } }, - ["SynthesisImplicitEnduranceChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 55, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(5-10)% chance to gain an Endurance Charge on Kill" }, } }, - ["SynthesisImplicitEnduranceChargeGeneration1"] = { type = "Synthesis", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6747 }, level = 60, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, - ["SynthesisImplicitMinimumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Endurance Charges", statOrder = { 1803 }, level = 55, group = "MinimumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3706959521] = { "+(1-2) to Minimum Endurance Charges" }, } }, - ["SynthesisImplicitMaximumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["SynthesisImplicitDamagePerEnduranceChargeMinor1"] = { type = "Synthesis", affix = "", "2% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 40, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "2% increased Damage per Endurance Charge" }, } }, - ["SynthesisImplicitDamagePerEnduranceCharge1"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "(3-4)% increased Damage per Endurance Charge" }, } }, - ["SynthesisImplicitDamagePerEnduranceCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "(4-5)% increased Damage per Endurance Charge" }, } }, - ["SynthesisImplicitLifeRegenPerEnduranceCharge1____"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 50, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, - ["SynthesisImplicitFrenzyChargeDuration1_"] = { type = "Synthesis", affix = "", "(8-11)% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 45, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(8-11)% increased Frenzy Charge Duration" }, } }, - ["SynthesisImplicitFrenzyChargeDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 50, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(12-15)% increased Frenzy Charge Duration" }, } }, - ["SynthesisImplicitFrenzyChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 55, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(5-10)% chance to gain a Frenzy Charge on Kill" }, } }, - ["SynthesisImplicitFrenzyChargeGeneration1"] = { type = "Synthesis", affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 60, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, - ["SynthesisImplicitMinimumFrenzyCharge1_"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Frenzy Charges", statOrder = { 1808 }, level = 55, group = "MinimumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [658456881] = { "+(1-2) to Minimum Frenzy Charges" }, } }, - ["SynthesisImplicitMaximumFrenzyCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["SynthesisImplicitDamagePerFrenzyChargeMinor1_"] = { type = "Synthesis", affix = "", "2% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 40, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "2% increased Damage per Frenzy Charge" }, } }, - ["SynthesisImplicitDamagePerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "(3-4)% increased Damage per Frenzy Charge" }, } }, - ["SynthesisImplicitDamagePerFrenzyCharge2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "(4-5)% increased Damage per Frenzy Charge" }, } }, - ["SynthesisImplicitEvasionPerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "6% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 50, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "6% increased Evasion Rating per Frenzy Charge" }, } }, - ["SynthesisImplicitPowerChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Power Charge Duration", statOrder = { 2142 }, level = 45, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(8-11)% increased Power Charge Duration" }, } }, - ["SynthesisImplicitPowerChargeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Power Charge Duration", statOrder = { 2142 }, level = 50, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(12-15)% increased Power Charge Duration" }, } }, - ["SynthesisImplicitPowerChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 55, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } }, - ["SynthesisImplicitPowerChargeGeneration1_"] = { type = "Synthesis", affix = "", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 60, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, } }, - ["SynthesisImplicitMinimumPowerCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Power Charges", statOrder = { 1813 }, level = 55, group = "MinimumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1999711879] = { "+(1-2) to Minimum Power Charges" }, } }, - ["SynthesisImplicitMaximumPowerCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["SynthesisImplicitDamagePerPowerChargeMinor1___"] = { type = "Synthesis", affix = "", "2% increased Damage per Power Charge", statOrder = { 6066 }, level = 40, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "2% increased Damage per Power Charge" }, } }, - ["SynthesisImplicitDamagePerPowerCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Power Charge", statOrder = { 6066 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "(3-4)% increased Damage per Power Charge" }, } }, - ["SynthesisImplicitDamagePerPowerCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Power Charge", statOrder = { 6066 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "(4-5)% increased Damage per Power Charge" }, } }, - ["SynthesisImplicitSpellDamagePerPowerCharge1"] = { type = "Synthesis", affix = "", "6% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 50, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "6% increased Spell Damage per Power Charge" }, } }, - ["SynthesisImplicitMovementVelocity1"] = { type = "Synthesis", affix = "", "4% increased Movement Speed", statOrder = { 1798 }, level = 24, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "4% increased Movement Speed" }, } }, - ["SynthesisImplicitMovementVelocity2"] = { type = "Synthesis", affix = "", "(5-6)% increased Movement Speed", statOrder = { 1798 }, level = 36, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-6)% increased Movement Speed" }, } }, - ["SynthesisImplicitMovementVelocity3___"] = { type = "Synthesis", affix = "", "(7-8)% increased Movement Speed", statOrder = { 1798 }, level = 48, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(7-8)% increased Movement Speed" }, } }, - ["SynthesisImplicitTrinketMovementVelocity1"] = { type = "Synthesis", affix = "", "(4-5)% increased Movement Speed", statOrder = { 1798 }, level = 45, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(4-5)% increased Movement Speed" }, } }, - ["SynthesisImplicitMovementVelocityJewel1___"] = { type = "Synthesis", affix = "", "1% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "1% increased Movement Speed" }, } }, - ["SynthesisImplicitMovementVelocityJewel2"] = { type = "Synthesis", affix = "", "2% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "2% increased Movement Speed" }, } }, - ["SynthesisImplicitOnslaught1"] = { type = "Synthesis", affix = "", "Onslaught", statOrder = { 3597 }, level = 60, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, - ["SynthesisImplicitProjectileSpeed1"] = { type = "Synthesis", affix = "", "(9-10)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(9-10)% increased Projectile Speed" }, } }, - ["SynthesisImplicitProjectileSpeed2"] = { type = "Synthesis", affix = "", "(11-12)% increased Projectile Speed", statOrder = { 1796 }, level = 15, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(11-12)% increased Projectile Speed" }, } }, - ["SynthesisImplicitProjectileSpeed3"] = { type = "Synthesis", affix = "", "(13-14)% increased Projectile Speed", statOrder = { 1796 }, level = 24, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(13-14)% increased Projectile Speed" }, } }, - ["SynthesisImplicitProjectileSpeed4"] = { type = "Synthesis", affix = "", "(15-17)% increased Projectile Speed", statOrder = { 1796 }, level = 36, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(15-17)% increased Projectile Speed" }, } }, - ["SynthesisImplicitProjectileSpeed5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Projectile Speed", statOrder = { 1796 }, level = 48, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-20)% increased Projectile Speed" }, } }, - ["SynthesisImplicitProjectileSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(1-2)% increased Projectile Speed" }, } }, - ["SynthesisImplicitProjectileSpeedJewel2__"] = { type = "Synthesis", affix = "", "(3-5)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(3-5)% increased Projectile Speed" }, } }, - ["SynthesisImplicitAreaOfEffectJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(1-2)% increased Area of Effect" }, } }, - ["SynthesisImplicitAreaOfEffectJewel2"] = { type = "Synthesis", affix = "", "(3-5)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(3-5)% increased Area of Effect" }, } }, - ["SynthesisImplicitAttackSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "3% increased Attack Speed" }, } }, - ["SynthesisImplicitAttackSpeed2_"] = { type = "Synthesis", affix = "", "4% increased Attack Speed", statOrder = { 1410 }, level = 15, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "4% increased Attack Speed" }, } }, - ["SynthesisImplicitAttackSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack Speed", statOrder = { 1410 }, level = 24, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, - ["SynthesisImplicitAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "1% increased Attack Speed" }, } }, - ["SynthesisImplicitAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "2% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "2% increased Attack Speed" }, } }, - ["SynthesisImplicitLocalAttackSpeed1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-4)% increased Attack Speed" }, } }, - ["SynthesisImplicitLocalAttackSpeed2"] = { type = "Synthesis", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1413 }, level = 15, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-6)% increased Attack Speed" }, } }, - ["SynthesisImplicitLocalAttackSpeed3"] = { type = "Synthesis", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1413 }, level = 24, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-8)% increased Attack Speed" }, } }, - ["SynthesisImplicitMaceIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Maces or Sceptres", statOrder = { 1424 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "(1-2)% increased Attack Speed with Maces or Sceptres" }, } }, - ["SynthesisImplicitAxeIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Axes", statOrder = { 1420 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(1-2)% increased Attack Speed with Axes" }, } }, - ["SynthesisImplicitSwordIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Swords", statOrder = { 1426 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(1-2)% increased Attack Speed with Swords" }, } }, - ["SynthesisImplicitBowIncreasedAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Bows", statOrder = { 1425 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(1-2)% increased Attack Speed with Bows" }, } }, - ["SynthesisImplicitClawIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Claws", statOrder = { 1422 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "(1-2)% increased Attack Speed with Claws" }, } }, - ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1423 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(1-2)% increased Attack Speed with Daggers" }, } }, - ["SynthesisImplicitWandIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Wands", statOrder = { 1427 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "(1-2)% increased Attack Speed with Wands" }, } }, - ["SynthesisImplicitStaffIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Staves", statOrder = { 1421 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1394963553] = { "(1-2)% increased Attack Speed with Staves" }, } }, - ["SynthesisImplicitMaceIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Maces or Sceptres", statOrder = { 1424 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "3% increased Attack Speed with Maces or Sceptres" }, } }, - ["SynthesisImplicitAxeIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Axes", statOrder = { 1420 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "3% increased Attack Speed with Axes" }, } }, - ["SynthesisImplicitSwordIncreasedAttackSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Swords", statOrder = { 1426 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "3% increased Attack Speed with Swords" }, } }, - ["SynthesisImplicitBowIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Bows", statOrder = { 1425 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "3% increased Attack Speed with Bows" }, } }, - ["SynthesisImplicitClawIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Claws", statOrder = { 1422 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "3% increased Attack Speed with Claws" }, } }, - ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Daggers", statOrder = { 1423 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "3% increased Attack Speed with Daggers" }, } }, - ["SynthesisImplicitWandIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Wands", statOrder = { 1427 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "3% increased Attack Speed with Wands" }, } }, - ["SynthesisImplicitStaffIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Staves", statOrder = { 1421 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1394963553] = { "3% increased Attack Speed with Staves" }, } }, - ["SynthesisImplicitCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "3% increased Cast Speed" }, } }, - ["SynthesisImplicitCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "4% increased Cast Speed" }, } }, - ["SynthesisImplicitCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Cast Speed", statOrder = { 1446 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "5% increased Cast Speed" }, } }, - ["SynthesisImplicitCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "1% increased Cast Speed" }, } }, - ["SynthesisImplicitCastSpeedJewel2_"] = { type = "Synthesis", affix = "", "2% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "2% increased Cast Speed" }, } }, - ["SynthesisImplicitWeaponCastSpeed1_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-6)% increased Cast Speed" }, } }, - ["SynthesisImplicitWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(7-9)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-9)% increased Cast Speed" }, } }, - ["SynthesisImplicitWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(10-12)% increased Cast Speed", statOrder = { 1446 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-12)% increased Cast Speed" }, } }, - ["SynthesisImplicitTwoHandWeaponCastSpeed1"] = { type = "Synthesis", affix = "", "(11-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(11-12)% increased Cast Speed" }, } }, - ["SynthesisImplicitTwoHandWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(13-15)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-15)% increased Cast Speed" }, } }, - ["SynthesisImplicitTwoHandWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(16-18)% increased Cast Speed", statOrder = { 1446 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(16-18)% increased Cast Speed" }, } }, - ["SynthesisImplicitCastSpeedWithStaffJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while wielding a Staff", statOrder = { 1449 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2066542501] = { "(1-2)% increased Cast Speed while wielding a Staff" }, } }, - ["SynthesisImplicitCastSpeedWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while Dual Wielding", statOrder = { 1447 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2382196858] = { "(1-2)% increased Cast Speed while Dual Wielding" }, } }, - ["SynthesisImplicitCastSpeedWithShieldJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while holding a Shield", statOrder = { 1448 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1612163368] = { "(1-2)% increased Cast Speed while holding a Shield" }, } }, - ["SynthesisImplicitCastSpeedWithStaffJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while wielding a Staff", statOrder = { 1449 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2066542501] = { "3% increased Cast Speed while wielding a Staff" }, } }, - ["SynthesisImplicitCastSpeedWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while Dual Wielding", statOrder = { 1447 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2382196858] = { "3% increased Cast Speed while Dual Wielding" }, } }, - ["SynthesisImplicitCastSpeedWithShieldJewel2_"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while holding a Shield", statOrder = { 1448 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1612163368] = { "3% increased Cast Speed while holding a Shield" }, } }, - ["SynthesisImplicitAttackAndCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "3% increased Attack and Cast Speed" }, } }, - ["SynthesisImplicitAttackAndCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Attack and Cast Speed", statOrder = { 2046 }, level = 15, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "4% increased Attack and Cast Speed" }, } }, - ["SynthesisImplicitAttackAndCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack and Cast Speed", statOrder = { 2046 }, level = 24, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "5% increased Attack and Cast Speed" }, } }, - ["SynthesisImplicitAttackAndCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "1% increased Attack and Cast Speed" }, } }, - ["SynthesisImplicitTrapThrowingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 48, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(2-3)% increased Trap Throwing Speed" }, } }, - ["SynthesisImplicitTrapThrowingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 56, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-5)% increased Trap Throwing Speed" }, } }, - ["SynthesisImplicitTrapThrowingSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(1-2)% increased Trap Throwing Speed" }, } }, - ["SynthesisImplicitTrapThrowingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "3% increased Trap Throwing Speed" }, } }, - ["SynthesisImplicitMineLayingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 48, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(2-3)% increased Mine Throwing Speed" }, } }, - ["SynthesisImplicitMineLayingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 56, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(4-5)% increased Mine Throwing Speed" }, } }, - ["SynthesisImplicitMineLayingSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(1-2)% increased Mine Throwing Speed" }, } }, - ["SynthesisImplicitMineLayingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "3% increased Mine Throwing Speed" }, } }, - ["SynthesisImplicitTotemPlacementSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Totem Placement speed", statOrder = { 2578 }, level = 48, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(2-3)% increased Totem Placement speed" }, } }, - ["SynthesisImplicitTotemPlacementSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Totem Placement speed", statOrder = { 2578 }, level = 56, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(4-5)% increased Totem Placement speed" }, } }, - ["SynthesisImplicitTotemPlacementSpeedJewel1___"] = { type = "Synthesis", affix = "", "(1-2)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(1-2)% increased Totem Placement speed" }, } }, - ["SynthesisImplicitTotemPlacementSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "3% increased Totem Placement speed" }, } }, - ["SynthesisImplicitBrandAttachmentRange1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Brand Attachment range", statOrder = { 10044 }, level = 48, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(2-3)% increased Brand Attachment range" }, } }, - ["SynthesisImplicitBrandAttachmentRange2"] = { type = "Synthesis", affix = "", "(4-5)% increased Brand Attachment range", statOrder = { 10044 }, level = 56, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(4-5)% increased Brand Attachment range" }, } }, - ["SynthesisImplicitTauntOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(1-2)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["SynthesisImplicitTauntOnHitJewel2_"] = { type = "Synthesis", affix = "", "(3-4)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(3-4)% chance to Taunt Enemies on Hit with Attacks" }, } }, - ["SynthesisImplicitBlindOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(1-2)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["SynthesisImplicitBlindOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-4)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["SynthesisImplicitHinderOnHitJewel1__"] = { type = "Synthesis", affix = "", "(1-2)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(1-2)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SynthesisImplicitHinderOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10189 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(3-4)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["SynthesisImplicitRarity1"] = { type = "Synthesis", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-11)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarity2"] = { type = "Synthesis", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1596 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-13)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarity3"] = { type = "Synthesis", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(14-15)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarity4"] = { type = "Synthesis", affix = "", "(16-17)% increased Rarity of Items found", statOrder = { 1596 }, level = 36, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-17)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarity5"] = { type = "Synthesis", affix = "", "(18-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 48, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(18-20)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarityRing1"] = { type = "Synthesis", affix = "", "(19-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-20)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarityRing2"] = { type = "Synthesis", affix = "", "(21-22)% increased Rarity of Items found", statOrder = { 1596 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(21-22)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarityRing3"] = { type = "Synthesis", affix = "", "(23-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarityJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(1-2)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitRarityJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(3-4)% increased Rarity of Items found" }, } }, - ["SynthesisImplicitQuantity1"] = { type = "Synthesis", affix = "", "(1-3)% increased Quantity of Items found", statOrder = { 1592 }, level = 65, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(1-3)% increased Quantity of Items found" }, } }, - ["SynthesisImplicitExperience1"] = { type = "Synthesis", affix = "", "2% increased Experience gain", statOrder = { 1603 }, level = 75, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, - ["SynthesisImplicitExplosion1_"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6373 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage" }, } }, - ["SynthesisImplicitExplosion2"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 6373 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage" }, } }, - ["SynthesisImplicitExplosionChance1_"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, - ["SynthesisImplicitExplosionChance2__"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, - ["SynthesisImplicitLocalWeaponRange1_"] = { type = "Synthesis", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 36, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, - ["SynthesisImplicitLocalWeaponRange2"] = { type = "Synthesis", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 48, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, - ["SynthesisImplicitWeaponRange1"] = { type = "Synthesis", affix = "", "+0.1 metres to Melee Strike Range", statOrder = { 2534 }, level = 56, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.1 metres to Melee Strike Range" }, } }, - ["SynthesisImplicitOnslaughtOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 55, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2988593550] = { "(5-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, - ["SynthesisImplicitPhasingOnKill1__"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 55, group = "ChancetoGainPhasingOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918708827] = { "(5-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, - ["SynthesisImplicitUnholyMightOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 55, group = "UnholyMightOnKillPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3562211447] = { "(5-8)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, - ["SynthesisImplicitIntimidateOnHit1"] = { type = "Synthesis", affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4920 }, level = 65, group = "IntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3438201750] = { "Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, - ["SynthesisImplicitOnslaughtOnHit1"] = { type = "Synthesis", affix = "", "You gain Onslaught for 4 seconds on Hit", statOrder = { 6787 }, level = 65, group = "OnslaughtOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2514424018] = { "You gain Onslaught for 4 seconds on Hit" }, } }, - ["SynthesisImplicitArcaneSurgeOnHit1"] = { type = "Synthesis", affix = "", "Gain Arcane Surge on Hit with Spells", statOrder = { 6729 }, level = 65, group = "ArcaneSurgeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4208096430] = { "Gain Arcane Surge on Hit with Spells" }, } }, - ["SynthesisImplicitAreaOfEffect1"] = { type = "Synthesis", affix = "", "(5-6)% increased Area of Effect", statOrder = { 1880 }, level = 36, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(5-6)% increased Area of Effect" }, } }, - ["SynthesisImplicitAreaOfEffect2"] = { type = "Synthesis", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 48, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } }, - ["SynthesisImplicitAreaOfEffect3_"] = { type = "Synthesis", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 56, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } }, - ["SynthesisImplicitUnaffectedByBurningGround1"] = { type = "Synthesis", affix = "", "Unaffected by Burning Ground", statOrder = { 10457 }, level = 65, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, - ["SynthesisImplicitUnaffectedByChilledGround1"] = { type = "Synthesis", affix = "", "Unaffected by Chilled Ground", statOrder = { 10462 }, level = 65, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, - ["SynthesisImplicitUnaffectedByShockedGround1"] = { type = "Synthesis", affix = "", "Unaffected by Shocked Ground", statOrder = { 10482 }, level = 65, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, - ["SynthesisImplicitFlaskChargesGained1"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(10-11)% increased Flask Charges gained" }, } }, - ["SynthesisImplicitFlaskChargesGained2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Charges gained", statOrder = { 2183 }, level = 15, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(12-13)% increased Flask Charges gained" }, } }, - ["SynthesisImplicitFlaskChargesGained3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Charges gained", statOrder = { 2183 }, level = 24, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(14-15)% increased Flask Charges gained" }, } }, - ["SynthesisImplicitReducedFlaskChargesUsed1_"] = { type = "Synthesis", affix = "", "(10-11)% reduced Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-11)% reduced Flask Charges used" }, } }, - ["SynthesisImplicitReducedFlaskChargesUsed2"] = { type = "Synthesis", affix = "", "(12-13)% reduced Flask Charges used", statOrder = { 2184 }, level = 15, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(12-13)% reduced Flask Charges used" }, } }, - ["SynthesisImplicitReducedFlaskChargesUsed3"] = { type = "Synthesis", affix = "", "(14-15)% reduced Flask Charges used", statOrder = { 2184 }, level = 24, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-15)% reduced Flask Charges used" }, } }, - ["SynthesisImplicitFlaskDuration1_"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-11)% increased Flask Effect Duration" }, } }, - ["SynthesisImplicitFlaskDuration2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Effect Duration", statOrder = { 2187 }, level = 15, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(12-13)% increased Flask Effect Duration" }, } }, - ["SynthesisImplicitFlaskDuration3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Effect Duration", statOrder = { 2187 }, level = 24, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(14-15)% increased Flask Effect Duration" }, } }, - ["SynthesisImplicitRemoveIgniteOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Ignite and Burning when you use a Flask", statOrder = { 9908 }, level = 65, group = "RemoveIgniteOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } }, - ["SynthesisImplicitRemoveFreezeOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Chill and Freeze when you use a Flask", statOrder = { 9904 }, level = 65, group = "RemoveFreezeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } }, - ["SynthesisImplicitRemoveShockOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Shock when you use a Flask", statOrder = { 9918 }, level = 65, group = "RemoveShockOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } }, - ["SynthesisImplicitGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Gems", statOrder = { 204 }, level = 40, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(2-3)% to Quality of Socketed Gems" }, } }, - ["SynthesisImplicitGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Gems", statOrder = { 204 }, level = 50, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(4-6)% to Quality of Socketed Gems" }, } }, - ["SynthesisImplicitGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 65, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, - ["SynthesisImplicitSupportGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 40, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(2-3)% to Quality of Socketed Support Gems" }, } }, - ["SynthesisImplicitSupportGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 50, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(4-6)% to Quality of Socketed Support Gems" }, } }, - ["SynthesisImplicitSupportGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 65, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, - ["SynthesisImplicitMinionGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Minion Gems", statOrder = { 218 }, level = 40, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2524260219] = { "+(2-3)% to Quality of Socketed Minion Gems" }, } }, - ["SynthesisImplicitMinionGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Minion Gems", statOrder = { 218 }, level = 50, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2524260219] = { "+(4-6)% to Quality of Socketed Minion Gems" }, } }, - ["SynthesisImplicitMinionGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, - ["SynthesisImplicitFireGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Fire Gems", statOrder = { 214 }, level = 40, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3422008440] = { "+(2-3)% to Quality of Socketed Fire Gems" }, } }, - ["SynthesisImplicitFireGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Fire Gems", statOrder = { 214 }, level = 50, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3422008440] = { "+(4-6)% to Quality of Socketed Fire Gems" }, } }, - ["SynthesisImplicitFireGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 65, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, - ["SynthesisImplicitColdGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Cold Gems", statOrder = { 211 }, level = 40, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1164882313] = { "+(2-3)% to Quality of Socketed Cold Gems" }, } }, - ["SynthesisImplicitColdGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Cold Gems", statOrder = { 211 }, level = 50, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1164882313] = { "+(4-6)% to Quality of Socketed Cold Gems" }, } }, - ["SynthesisImplicitColdGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 65, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, - ["SynthesisImplicitLightningGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Lightning Gems", statOrder = { 216 }, level = 40, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1065580342] = { "+(2-3)% to Quality of Socketed Lightning Gems" }, } }, - ["SynthesisImplicitLightningGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Lightning Gems", statOrder = { 216 }, level = 50, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1065580342] = { "+(4-6)% to Quality of Socketed Lightning Gems" }, } }, - ["SynthesisImplicitLightningGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 65, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+1 to Level of Socketed Lightning Gems" }, } }, - ["SynthesisImplicitChaosGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Chaos Gems", statOrder = { 210 }, level = 40, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2062835769] = { "+(2-3)% to Quality of Socketed Chaos Gems" }, } }, - ["SynthesisImplicitChaosGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Chaos Gems", statOrder = { 210 }, level = 50, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2062835769] = { "+(4-6)% to Quality of Socketed Chaos Gems" }, } }, - ["SynthesisImplicitChaosGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 65, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+1 to Level of Socketed Chaos Gems" }, } }, - ["SynthesisImplicitMeleeGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Melee Gems", statOrder = { 217 }, level = 40, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1396421504] = { "+(2-3)% to Quality of Socketed Melee Gems" }, } }, - ["SynthesisImplicitMeleeGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Melee Gems", statOrder = { 217 }, level = 50, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1396421504] = { "+(4-6)% to Quality of Socketed Melee Gems" }, } }, - ["SynthesisImplicitMeleeGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 65, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, - ["SynthesisImplicitBowGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Bow Gems", statOrder = { 209 }, level = 40, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3280600715] = { "+(2-3)% to Quality of Socketed Bow Gems" }, } }, - ["SynthesisImplicitBowGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Bow Gems", statOrder = { 209 }, level = 50, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3280600715] = { "+(4-6)% to Quality of Socketed Bow Gems" }, } }, - ["SynthesisImplicitBowGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 65, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } }, - ["SynthesisImplicitAuraGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Aura Gems", statOrder = { 208 }, level = 40, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2276941637] = { "+(2-3)% to Quality of Socketed Aura Gems" }, } }, - ["SynthesisImplicitAuraGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Aura Gems", statOrder = { 208 }, level = 50, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2276941637] = { "+(4-6)% to Quality of Socketed Aura Gems" }, } }, - ["SynthesisImplicitAuraGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 65, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+1 to Level of Socketed Aura Gems" }, } }, - ["SynthesisImplicitStrengthGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Strength Gems", statOrder = { 220 }, level = 40, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [122841557] = { "+(2-3)% to Quality of Socketed Strength Gems" }, } }, - ["SynthesisImplicitStrengthGemQuality2__"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Strength Gems", statOrder = { 220 }, level = 50, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [122841557] = { "+(4-6)% to Quality of Socketed Strength Gems" }, } }, - ["SynthesisImplicitStrengthGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 65, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, - ["SynthesisImplicitDexterityGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Dexterity Gems", statOrder = { 212 }, level = 40, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2877754099] = { "+(2-3)% to Quality of Socketed Dexterity Gems" }, } }, - ["SynthesisImplicitDexterityGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Dexterity Gems", statOrder = { 212 }, level = 50, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2877754099] = { "+(4-6)% to Quality of Socketed Dexterity Gems" }, } }, - ["SynthesisImplicitDexterityGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 65, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, - ["SynthesisImplicitIntelligenceGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Intelligence Gems", statOrder = { 215 }, level = 40, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [3174776455] = { "+(2-3)% to Quality of Socketed Intelligence Gems" }, } }, - ["SynthesisImplicitIntelligenceGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Intelligence Gems", statOrder = { 215 }, level = 50, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [3174776455] = { "+(4-6)% to Quality of Socketed Intelligence Gems" }, } }, - ["SynthesisImplicitIntelligenceGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 65, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, - ["SynthesisImplicitAoEGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed AoE Gems", statOrder = { 207 }, level = 40, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [768982451] = { "+(2-3)% to Quality of Socketed AoE Gems" }, } }, - ["SynthesisImplicitAoEGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed AoE Gems", statOrder = { 207 }, level = 50, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [768982451] = { "+(4-6)% to Quality of Socketed AoE Gems" }, } }, - ["SynthesisImplicitAoEGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 176 }, level = 65, group = "IncreasedSocketedAoEGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2551600084] = { "+1 to Level of Socketed AoE Gems" }, } }, - ["SynthesisImplicitProjectileGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Projectile Gems", statOrder = { 219 }, level = 40, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2428621158] = { "+(2-3)% to Quality of Socketed Projectile Gems" }, } }, - ["SynthesisImplicitProjectileGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Projectile Gems", statOrder = { 219 }, level = 50, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2428621158] = { "+(4-6)% to Quality of Socketed Projectile Gems" }, } }, - ["SynthesisImplicitProjectileGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 65, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+1 to Level of Socketed Projectile Gems" }, } }, - ["SynthesisImplicitReducedDamageTaken1_"] = { type = "Synthesis", affix = "", "1% reduced Damage taken", statOrder = { 2238 }, level = 48, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "1% reduced Damage taken" }, } }, - ["SynthesisImplicitReducedDamageTaken2"] = { type = "Synthesis", affix = "", "2% reduced Damage taken", statOrder = { 2238 }, level = 56, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "2% reduced Damage taken" }, } }, - ["SynthesisImplicitPhysicalAttackDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-11) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 24, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-11) Physical Damage taken from Attack Hits" }, } }, - ["SynthesisImplicitPhysicalAttackDamageTaken2"] = { type = "Synthesis", affix = "", "-(20-16) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 36, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(20-16) Physical Damage taken from Attack Hits" }, } }, - ["SynthesisImplicitPhysicalAttackDamageTaken3"] = { type = "Synthesis", affix = "", "-(25-21) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 48, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(25-21) Physical Damage taken from Attack Hits" }, } }, - ["SynthesisImplicitPhysicalAttackDamageTaken4"] = { type = "Synthesis", affix = "", "-(40-35) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 56, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(40-35) Physical Damage taken from Attack Hits" }, } }, - ["SynthesisImplicitPhysicalAttackDamageTakenJewel1_"] = { type = "Synthesis", affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(7-5) Physical Damage taken from Attack Hits" }, } }, - ["SynthesisImplicitPhysicalAttackDamageTakenJewel2___"] = { type = "Synthesis", affix = "", "-(10-8) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(10-8) Physical Damage taken from Attack Hits" }, } }, - ["SynthesisImplicitFortifyEffect1"] = { type = "Synthesis", affix = "", "+1 to maximum Fortification", statOrder = { 9118 }, level = 36, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335507772] = { "+1 to maximum Fortification" }, } }, - ["SynthesisImplicitFortifyEffect2"] = { type = "Synthesis", affix = "", "+2 to maximum Fortification", statOrder = { 9118 }, level = 48, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335507772] = { "+2 to maximum Fortification" }, } }, - ["SynthesisImplicitFortifyEffect3"] = { type = "Synthesis", affix = "", "+3 to maximum Fortification", statOrder = { 9118 }, level = 56, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, - ["SynthesisImplicitArmourEvasionWithFortify1"] = { type = "Synthesis", affix = "", "+250 to Armour and Evasion Rating while Fortified", statOrder = { 4759 }, level = 36, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2962782530] = { "+250 to Armour and Evasion Rating while Fortified" }, } }, - ["SynthesisImplicitArmourEvasionWithFortify2"] = { type = "Synthesis", affix = "", "+500 to Armour and Evasion Rating while Fortified", statOrder = { 4759 }, level = 48, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2962782530] = { "+500 to Armour and Evasion Rating while Fortified" }, } }, - ["SynthesisImplicitArmourEvasionWithFortify3"] = { type = "Synthesis", affix = "", "+800 to Armour and Evasion Rating while Fortified", statOrder = { 4759 }, level = 56, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2962782530] = { "+800 to Armour and Evasion Rating while Fortified" }, } }, - ["SynthesisImplicitDegenDamageTaken1_"] = { type = "Synthesis", affix = "", "3% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 65, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "3% reduced Damage taken from Damage Over Time" }, } }, - ["SynthesisImplicitTotemElementalResistanceJewel1"] = { type = "Synthesis", affix = "", "Totems gain +3% to all Elemental Resistances", statOrder = { 2787 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +3% to all Elemental Resistances" }, } }, - ["SynthesisImplicitTotemElementalResistanceJewel2"] = { type = "Synthesis", affix = "", "Totems gain +(4-5)% to all Elemental Resistances", statOrder = { 2787 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(4-5)% to all Elemental Resistances" }, } }, - ["SynthesisImplicitReflectDamageTaken1"] = { type = "Synthesis", affix = "", "You and your Minions take (5-8)% reduced Reflected Damage", statOrder = { 9883 }, level = 36, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take (5-8)% reduced Reflected Damage" }, } }, - ["SynthesisImplicitReflectDamageTaken2"] = { type = "Synthesis", affix = "", "You and your Minions take (9-12)% reduced Reflected Damage", statOrder = { 9883 }, level = 48, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take (9-12)% reduced Reflected Damage" }, } }, - ["SynthesisImplicitReflectDamageTaken3"] = { type = "Synthesis", affix = "", "You and your Minions take (13-15)% reduced Reflected Damage", statOrder = { 9883 }, level = 56, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take (13-15)% reduced Reflected Damage" }, } }, - ["SynthesisDamageCannotBeReflectedPercent1"] = { type = "Synthesis", affix = "", "(10-16)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 36, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "(10-16)% of Damage from your Hits cannot be Reflected" }, } }, - ["SynthesisDamageCannotBeReflectedPercent2"] = { type = "Synthesis", affix = "", "(17-23)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 48, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "(17-23)% of Damage from your Hits cannot be Reflected" }, } }, - ["SynthesisDamageCannotBeReflectedPercent3"] = { type = "Synthesis", affix = "", "(24-30)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 56, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "(24-30)% of Damage from your Hits cannot be Reflected" }, } }, - ["SynthesisImplicitAttackerTakesDamageNoRange1_"] = { type = "Synthesis", affix = "", "Reflects (10-15) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (10-15) Physical Damage to Melee Attackers" }, } }, - ["SynthesisImplicitAttackerTakesDamageNoRange2"] = { type = "Synthesis", affix = "", "Reflects (16-40) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 15, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (16-40) Physical Damage to Melee Attackers" }, } }, - ["SynthesisImplicitAttackerTakesDamageNoRange3"] = { type = "Synthesis", affix = "", "Reflects (41-80) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 24, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (41-80) Physical Damage to Melee Attackers" }, } }, - ["SynthesisImplicitLightRadius1"] = { type = "Synthesis", affix = "", "10% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, - ["SynthesisImplicitLightRadius2"] = { type = "Synthesis", affix = "", "12% increased Light Radius", statOrder = { 2500 }, level = 15, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "12% increased Light Radius" }, } }, - ["SynthesisImplicitLightRadius3"] = { type = "Synthesis", affix = "", "15% increased Light Radius", statOrder = { 2500 }, level = 24, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, } }, - ["SynthesisImplicitIntimidateOnHitWeapon1"] = { type = "Synthesis", affix = "", "(4-5)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 36, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(4-5)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["SynthesisImplicitIntimidateOnHitWeapon2_"] = { type = "Synthesis", affix = "", "(6-7)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 48, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(6-7)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["SynthesisImplicitIntimidateOnHitWeapon3_"] = { type = "Synthesis", affix = "", "(8-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7875 }, level = 56, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(8-10)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaught1"] = { type = "Synthesis", affix = "", "(10-12)% increased Attack and Cast Speed during Onslaught", statOrder = { 3029 }, level = 65, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2320884914] = { "(10-12)% increased Attack and Cast Speed during Onslaught" }, } }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Attack and Cast Speed during Onslaught", statOrder = { 3029 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2320884914] = { "(2-3)% increased Attack and Cast Speed during Onslaught" }, } }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Attack and Cast Speed during Onslaught", statOrder = { 3029 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2320884914] = { "(4-5)% increased Attack and Cast Speed during Onslaught" }, } }, - ["SynthesisImplicitPhysicalDamageWithUnholyMight1"] = { type = "Synthesis", affix = "", "(40-50)% increased Physical Damage while you have Unholy Might", statOrder = { 9646 }, level = 65, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1609570656] = { "(40-50)% increased Physical Damage while you have Unholy Might" }, } }, - ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel1"] = { type = "Synthesis", affix = "", "(6-8)% increased Physical Damage while you have Unholy Might", statOrder = { 9646 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1609570656] = { "(6-8)% increased Physical Damage while you have Unholy Might" }, } }, - ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel2"] = { type = "Synthesis", affix = "", "(9-10)% increased Physical Damage while you have Unholy Might", statOrder = { 9646 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1609570656] = { "(9-10)% increased Physical Damage while you have Unholy Might" }, } }, - ["SynthesisImplicitMovementSpeedWhilePhasedJewel1_"] = { type = "Synthesis", affix = "", "2% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "2% increased Movement Speed while Phasing" }, } }, - ["SynthesisImplicitMovementSpeedWhilePhasedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "3% increased Movement Speed while Phasing" }, } }, - ["SynthesisImplicitAdditionalVaalSoulOnKill1"] = { type = "Synthesis", affix = "", "(2-3)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 36, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(2-3)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["SynthesisImplicitAdditionalVaalSoulOnKill2"] = { type = "Synthesis", affix = "", "(4-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 48, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(4-5)% chance to gain an additional Vaal Soul on Kill" }, } }, - ["SynthesisImplicitVaalSkillCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(21-30)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 36, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(21-30)% increased Vaal Skill Critical Strike Chance" }, } }, - ["SynthesisImplicitVaalSkillCriticalStrikeChance2_"] = { type = "Synthesis", affix = "", "(31-40)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 48, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(31-40)% increased Vaal Skill Critical Strike Chance" }, } }, - ["SynthesisImplicitVaalSkillDuration1"] = { type = "Synthesis", affix = "", "Vaal Skills have (5-8)% increased Skill Effect Duration", statOrder = { 3105 }, level = 36, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (5-8)% increased Skill Effect Duration" }, } }, - ["SynthesisImplicitVaalSkillDuration2"] = { type = "Synthesis", affix = "", "Vaal Skills have (9-12)% increased Skill Effect Duration", statOrder = { 3105 }, level = 48, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (9-12)% increased Skill Effect Duration" }, } }, - ["SynthesisImplicitMovementVelocityCorruptedItem1"] = { type = "Synthesis", affix = "", "(5-7)% increased Movement Speed if Corrupted", statOrder = { 8000 }, level = 60, group = "MovementVelocityCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2880601380] = { "(5-7)% increased Movement Speed if Corrupted" }, } }, - ["SynthesisImplicitAttackAndCastSpeedCorruptedItem1___"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack and Cast Speed if Corrupted", statOrder = { 7857 }, level = 60, group = "AttackAndCastSpeedCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [26867112] = { "(5-7)% increased Attack and Cast Speed if Corrupted" }, } }, - ["SynthesisImplicitAllElementalResistanceCorruptedItem1"] = { type = "Synthesis", affix = "", "+(8-12)% to all Elemental Resistances if Corrupted", statOrder = { 8005 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3731630482] = { "+(8-12)% to all Elemental Resistances if Corrupted" }, } }, - ["SynthesisImplicitAllElementalResistanceCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "+2% to all Elemental Resistances if Corrupted", statOrder = { 8005 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3731630482] = { "+2% to all Elemental Resistances if Corrupted" }, } }, - ["SynthesisImplicitDamageTakenCorruptedItem1"] = { type = "Synthesis", affix = "", "5% reduced Damage taken if Corrupted", statOrder = { 7887 }, level = 60, group = "DamageTakenCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3309607228] = { "5% reduced Damage taken if Corrupted" }, } }, - ["SynthesisImplicitIncreasedLifeCorruptedItem1"] = { type = "Synthesis", affix = "", "(6-8)% increased maximum Life if Corrupted", statOrder = { 7994 }, level = 60, group = "IncreasedLifeCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3887484120] = { "(6-8)% increased maximum Life if Corrupted" }, } }, - ["SynthesisImplicitIncreasedEnergyShieldCorruptedItem1"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield if Corrupted", statOrder = { 7992 }, level = 60, group = "IncreasedEnergyShieldCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1025108940] = { "(8-10)% increased maximum Energy Shield if Corrupted" }, } }, - ["SynthesisImplicitAllDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage if Corrupted", statOrder = { 7886 }, level = 60, group = "AllDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [767196662] = { "(15-20)% increased Damage if Corrupted" }, } }, - ["SynthesisImplicitGlobalCriticalStrikeChanceCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Global Critical Strike Chance if Corrupted", statOrder = { 7881 }, level = 60, group = "GlobalCriticalStrikeChanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4023723828] = { "(40-50)% increased Global Critical Strike Chance if Corrupted" }, } }, - ["SynthesisImplicitImmuneToCursesCorruptedItem1"] = { type = "Synthesis", affix = "", "Immune to Curses if Corrupted", statOrder = { 7945 }, level = 60, group = "ImmuneToCursesCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1954526925] = { "Immune to Curses if Corrupted" }, } }, - ["SynthesisImplicitAttackDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Attack Damage if Corrupted", statOrder = { 7858 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2347923784] = { "(40-50)% increased Attack Damage if Corrupted" }, } }, - ["SynthesisImplicitAttackDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Attack Damage if Corrupted", statOrder = { 7858 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2347923784] = { "(60-70)% increased Attack Damage if Corrupted" }, } }, - ["SynthesisImplicitAttackDamageCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack Damage if Corrupted", statOrder = { 7858 }, level = 1, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2347923784] = { "(5-7)% increased Attack Damage if Corrupted" }, } }, - ["SynthesisImplicitSpellDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Spell Damage if Corrupted", statOrder = { 8028 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [374116820] = { "(40-50)% increased Spell Damage if Corrupted" }, } }, - ["SynthesisImplicitSpellDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Spell Damage if Corrupted", statOrder = { 8028 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [374116820] = { "(60-70)% increased Spell Damage if Corrupted" }, } }, - ["SynthesisImplicitSpellDamageCorruptedItemJewel1__"] = { type = "Synthesis", affix = "", "(5-7)% increased Spell Damage if Corrupted", statOrder = { 8028 }, level = 1, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [374116820] = { "(5-7)% increased Spell Damage if Corrupted" }, } }, - ["SynthesisImplicitVaalSkillDamageAffectsSkillDamage1"] = { type = "Synthesis", affix = "", "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", statOrder = { 2690 }, level = 65, group = "VaalSkillDamageAffectsSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3871212304] = { "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills" }, } }, - ["SynthesisImplicitDamageVSAbyssMonsters1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6069 }, level = 40, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3257279374] = { "(15-20)% increased Damage with Hits and Ailments against Abyssal Monsters" }, } }, - ["SynthesisImplicitDamageVSAbyssMonsters2"] = { type = "Synthesis", affix = "", "(21-25)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6069 }, level = 50, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3257279374] = { "(21-25)% increased Damage with Hits and Ailments against Abyssal Monsters" }, } }, - ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters1"] = { type = "Synthesis", affix = "", "(2-3)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4578 }, level = 40, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [287491423] = { "(2-3)% additional Physical Damage Reduction against Abyssal Monsters" }, } }, - ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters2"] = { type = "Synthesis", affix = "", "(4-5)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4578 }, level = 50, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [287491423] = { "(4-5)% additional Physical Damage Reduction against Abyssal Monsters" }, } }, - ["SynthesisImplicitAbyssJewelEffect1"] = { type = "Synthesis", affix = "", "25% increased Effect of Socketed Abyss Jewels", statOrder = { 221 }, level = 70, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1482572705] = { "25% increased Effect of Socketed Abyss Jewels" }, } }, + ["SynthesisImplicitLife1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(8-10) to maximum Life" }, } }, + ["SynthesisImplicitLife2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Life", statOrder = { 1591 }, level = 15, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(11-14) to maximum Life" }, } }, + ["SynthesisImplicitLife3"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Life", statOrder = { 1591 }, level = 24, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-19) to maximum Life" }, } }, + ["SynthesisImplicitLife4_"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Life", statOrder = { 1591 }, level = 36, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-24) to maximum Life" }, } }, + ["SynthesisImplicitLife5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Life", statOrder = { 1591 }, level = 48, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-30) to maximum Life" }, } }, + ["SynthesisImplicitLifeJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(3-4) to maximum Life" }, } }, + ["SynthesisImplicitLifeJewel2"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Life", statOrder = { 1591 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(5-6) to maximum Life" }, } }, + ["SynthesisImplicitPercentLife1_"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "4% increased maximum Life" }, } }, + ["SynthesisImplicitPercentLife2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1593 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, + ["SynthesisImplicitPercentLife3"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Life", statOrder = { 1593 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, + ["SynthesisImplicitPercentLifeTrinket1__"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1593 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "4% increased maximum Life" }, } }, + ["SynthesisImplicitPercentLifeTrinket2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1593 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, + ["SynthesisImplicitPercentLifeTrinket3"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Life", statOrder = { 1593 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, + ["SynthesisImplicitLifeRegen1_"] = { type = "Synthesis", affix = "", "Regenerate (5-7) Life per second", statOrder = { 1596 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (5-7) Life per second" }, } }, + ["SynthesisImplicitLifeRegen2_"] = { type = "Synthesis", affix = "", "Regenerate (7-11.7) Life per second", statOrder = { 1596 }, level = 15, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (7-11.7) Life per second" }, } }, + ["SynthesisImplicitLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate (11.7-18.3) Life per second", statOrder = { 1596 }, level = 24, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (11.7-18.3) Life per second" }, } }, + ["SynthesisImplicitLifeRegen4"] = { type = "Synthesis", affix = "", "Regenerate (18.4-26.7) Life per second", statOrder = { 1596 }, level = 36, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (18.4-26.7) Life per second" }, } }, + ["SynthesisImplicitLifeRegen5_"] = { type = "Synthesis", affix = "", "Regenerate (26.7-40) Life per second", statOrder = { 1596 }, level = 48, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (26.7-40) Life per second" }, } }, + ["SynthesisImplicitHighLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (80-100) Life per second", statOrder = { 1596 }, level = 56, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (80-100) Life per second" }, } }, + ["SynthesisImplicitPercentLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.6-0.7)% of Life per second" }, } }, + ["SynthesisImplicitPercentLifeRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.93)% of Life per second", statOrder = { 1967 }, level = 15, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-0.93)% of Life per second" }, } }, + ["SynthesisImplicitPercentLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Life per second", statOrder = { 1967 }, level = 24, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } }, + ["SynthesisImplicitPercentLifeRegenJewel1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Life per second", statOrder = { 1967 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.2% of Life per second" }, } }, + ["SynthesisImplicitLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitLifeLeech2_"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 15, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.3% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitLifeLeech3"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 24, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1672 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitLocalLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.2% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitLocalLifeLeech2"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 15, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.3% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitLocalLifeLeech3__"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 24, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "0.4% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitLifeLeechOneHanded1"] = { type = "Synthesis", affix = "", "1.5% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "1.5% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitLifeLeechTwoHanded1"] = { type = "Synthesis", affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1674 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "3% of Physical Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitAttackLifeLeech1_"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 36, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.4% of Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitAttackLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Attack Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.2% of Attack Damage Leeched as Life" }, } }, + ["SynthesisImplicitMaximumLifeLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1754 }, level = 56, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4118987751] = { "10% increased Maximum total Life Recovery per second from Leech" }, } }, + ["SynthesisImplicitIncreasedLifeLeechRate1_"] = { type = "Synthesis", affix = "", "(8-10)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(8-10)% increased total Recovery per second from Life Leech" }, } }, + ["SynthesisImplicitIncreasedLifeLeechRate2_"] = { type = "Synthesis", affix = "", "(11-13)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 15, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(11-13)% increased total Recovery per second from Life Leech" }, } }, + ["SynthesisImplicitIncreasedLifeLeechRate3"] = { type = "Synthesis", affix = "", "(14-16)% increased total Recovery per second from Life Leech", statOrder = { 2180 }, level = 24, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(14-16)% increased total Recovery per second from Life Leech" }, } }, + ["SynthesisImplicitLifeOnKill1_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Killed", statOrder = { 1771 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (6-8) Life per Enemy Killed" }, } }, + ["SynthesisImplicitLifeOnKill2"] = { type = "Synthesis", affix = "", "Gain (9-11) Life per Enemy Killed", statOrder = { 1771 }, level = 15, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (9-11) Life per Enemy Killed" }, } }, + ["SynthesisImplicitLifeOnKill3"] = { type = "Synthesis", affix = "", "Gain (12-15) Life per Enemy Killed", statOrder = { 1771 }, level = 24, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (12-15) Life per Enemy Killed" }, } }, + ["SynthesisImplicitPercentLifeOnKill1_"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Life on Kill", statOrder = { 1772 }, level = 55, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of Life on Kill" }, } }, + ["SynthesisImplicitLifeOnHit1"] = { type = "Synthesis", affix = "", "Gain (4-5) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (4-5) Life per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitLifeOnHit2_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 15, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (6-8) Life per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitLifeOnHit3"] = { type = "Synthesis", affix = "", "Gain (9-15) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 24, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (9-15) Life per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitLifeOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Life per Enemy Hit with Attacks", statOrder = { 1763 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (1-2) Life per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitLocalLifeOnHit1_"] = { type = "Synthesis", affix = "", "Grants (4-5) Life per Enemy Hit", statOrder = { 1761 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (4-5) Life per Enemy Hit" }, } }, + ["SynthesisImplicitLocalLifeOnHit2_"] = { type = "Synthesis", affix = "", "Grants (6-8) Life per Enemy Hit", statOrder = { 1761 }, level = 15, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (6-8) Life per Enemy Hit" }, } }, + ["SynthesisImplicitLocalLifeOnHit3"] = { type = "Synthesis", affix = "", "Grants (9-15) Life per Enemy Hit", statOrder = { 1761 }, level = 24, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (9-15) Life per Enemy Hit" }, } }, + ["SynthesisImplicitLifeOnHitOneHanded1"] = { type = "Synthesis", affix = "", "Grants (25-30) Life per Enemy Hit", statOrder = { 1761 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (25-30) Life per Enemy Hit" }, } }, + ["SynthesisImplicitLifeOnHitTwoHanded1_"] = { type = "Synthesis", affix = "", "Grants (45-50) Life per Enemy Hit", statOrder = { 1761 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (45-50) Life per Enemy Hit" }, } }, + ["SynthesisImplicitGlobalFlaskLifeRecovery1_"] = { type = "Synthesis", affix = "", "(7-10)% increased Life Recovery from Flasks", statOrder = { 2082 }, level = 56, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(7-10)% increased Life Recovery from Flasks" }, } }, + ["SynthesisImplicitLifeRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Life Recovery rate", statOrder = { 1601 }, level = 60, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(10-15)% increased Life Recovery rate" }, } }, + ["SynthesisImplicitMana1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(8-10) to maximum Mana" }, } }, + ["SynthesisImplicitMana2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Mana", statOrder = { 1602 }, level = 15, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(11-14) to maximum Mana" }, } }, + ["SynthesisImplicitMana3_"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Mana", statOrder = { 1602 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-19) to maximum Mana" }, } }, + ["SynthesisImplicitMana4"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Mana", statOrder = { 1602 }, level = 36, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-24) to maximum Mana" }, } }, + ["SynthesisImplicitMana5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Mana", statOrder = { 1602 }, level = 48, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-30) to maximum Mana" }, } }, + ["SynthesisImplicitManaJewel1_"] = { type = "Synthesis", affix = "", "+(2-3) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(2-3) to maximum Mana" }, } }, + ["SynthesisImplicitManaJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to maximum Mana", statOrder = { 1602 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(4-5) to maximum Mana" }, } }, + ["SynthesisImplicitPercentMana1_"] = { type = "Synthesis", affix = "", "6% increased maximum Mana", statOrder = { 1603 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "6% increased maximum Mana" }, } }, + ["SynthesisImplicitPercentMana2"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1603 }, level = 15, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, + ["SynthesisImplicitPercentMana3"] = { type = "Synthesis", affix = "", "(9-10)% increased maximum Mana", statOrder = { 1603 }, level = 24, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(9-10)% increased maximum Mana" }, } }, + ["SynthesisImplicitManaRegeneration1"] = { type = "Synthesis", affix = "", "(16-18)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(16-18)% increased Mana Regeneration Rate" }, } }, + ["SynthesisImplicitManaRegeneration2"] = { type = "Synthesis", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 15, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(19-21)% increased Mana Regeneration Rate" }, } }, + ["SynthesisImplicitManaRegeneration3_"] = { type = "Synthesis", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 24, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(22-24)% increased Mana Regeneration Rate" }, } }, + ["SynthesisImplicitManaRegeneration4_"] = { type = "Synthesis", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 36, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-27)% increased Mana Regeneration Rate" }, } }, + ["SynthesisImplicitManaRegeneration5"] = { type = "Synthesis", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 48, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } }, + ["SynthesisImplicitManaRegenerationJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Mana Regeneration Rate", statOrder = { 1607 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-7)% increased Mana Regeneration Rate" }, } }, + ["SynthesisImplicitAddedManaRegen1__"] = { type = "Synthesis", affix = "", "Regenerate (2-2.5) Mana per second", statOrder = { 1605 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (2-2.5) Mana per second" }, } }, + ["SynthesisImplicitAddedManaRegen2"] = { type = "Synthesis", affix = "", "Regenerate (2.5-3) Mana per second", statOrder = { 1605 }, level = 15, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (2.5-3) Mana per second" }, } }, + ["SynthesisImplicitAddedManaRegen3_____"] = { type = "Synthesis", affix = "", "Regenerate (3-4) Mana per second", statOrder = { 1605 }, level = 24, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-4) Mana per second" }, } }, + ["SynthesisImplicitAddedManaRegenWithStaffJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per second while wielding a Staff", statOrder = { 8319 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1388668644] = { "Regenerate (0.5-0.7) Mana per second while wielding a Staff" }, } }, + ["SynthesisImplicitAddedManaRegenWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while Dual Wielding", statOrder = { 8316 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1361343333] = { "Regenerate (0.5-0.7) Mana per Second while Dual Wielding" }, } }, + ["SynthesisImplicitAddedManaRegenWithShieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while holding a Shield", statOrder = { 8317 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3762868276] = { "Regenerate (0.5-0.7) Mana per Second while holding a Shield" }, } }, + ["SynthesisImplicitAddedManaRegenWithStaffJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per second while wielding a Staff", statOrder = { 8319 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1388668644] = { "Regenerate (0.8-1) Mana per second while wielding a Staff" }, } }, + ["SynthesisImplicitAddedManaRegenWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while Dual Wielding", statOrder = { 8316 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1361343333] = { "Regenerate (0.8-1) Mana per Second while Dual Wielding" }, } }, + ["SynthesisImplicitAddedManaRegenWithShieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while holding a Shield", statOrder = { 8317 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3762868276] = { "Regenerate (0.8-1) Mana per Second while holding a Shield" }, } }, + ["SynthesisImplicitBaseManaRegeneration1"] = { type = "Synthesis", affix = "", "Regenerate 0.5% of Mana per second", statOrder = { 1604 }, level = 56, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } }, + ["SynthesisImplicitBaseManaRegenerationOneHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Mana per second", statOrder = { 1604 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.2% of Mana per second" }, } }, + ["SynthesisImplicitBaseManaRegenerationOneHand2_"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Mana per second", statOrder = { 1604 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.3% of Mana per second" }, } }, + ["SynthesisImplicitBaseManaRegenerationTwoHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.4% of Mana per second", statOrder = { 1604 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.4% of Mana per second" }, } }, + ["SynthesisImplicitBaseManaRegenerationTwoHand2"] = { type = "Synthesis", affix = "", "Regenerate 0.6% of Mana per second", statOrder = { 1604 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.6% of Mana per second" }, } }, + ["SynthesisImplicitManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.1% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 15, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 24, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.3% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitManaLeechJewel1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1722 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "0.1% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitLocalManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.1% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitLocalManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 15, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.2% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitLocalManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 24, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.3% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitManaLeechOneHanded1"] = { type = "Synthesis", affix = "", "0.5% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "0.5% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitManaLeechTwoHanded1"] = { type = "Synthesis", affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1724 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "1% of Physical Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitAttackManaLeech1"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1728 }, level = 36, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [350069479] = { "0.4% of Attack Damage Leeched as Mana" }, } }, + ["SynthesisImplicitMaximumManaLeechRate1_"] = { type = "Synthesis", affix = "", "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1756 }, level = 56, group = "MaximumManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [96977651] = { "10% increased Maximum total Mana Recovery per second from Leech" }, } }, + ["SynthesisImplicitIncreasedManaLeechRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased total Recovery per second from Mana Leech", statOrder = { 2181 }, level = 36, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [690135178] = { "(10-15)% increased total Recovery per second from Mana Leech" }, } }, + ["SynthesisImplicitManaOnKill1_"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Killed", statOrder = { 1786 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 3 Mana per Enemy Killed" }, } }, + ["SynthesisImplicitManaOnKill2___"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Killed", statOrder = { 1786 }, level = 15, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 4 Mana per Enemy Killed" }, } }, + ["SynthesisImplicitManaOnKill3"] = { type = "Synthesis", affix = "", "Gain 5 Mana per Enemy Killed", statOrder = { 1786 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain 5 Mana per Enemy Killed" }, } }, + ["SynthesisImplicitManaOnHit1__"] = { type = "Synthesis", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 2 Mana per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitManaOnHit2"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 15, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 3 Mana per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitManaOnHit3"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 24, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 4 Mana per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitManaOnHitJewel1_"] = { type = "Synthesis", affix = "", "Gain 1 Mana per Enemy Hit with Attacks", statOrder = { 1767 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain 1 Mana per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitPercentManaOnKill1"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Mana on Kill", statOrder = { 1774 }, level = 56, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-2)% of Mana on Kill" }, } }, + ["SynthesisImplicitManaRecoveryRate1_"] = { type = "Synthesis", affix = "", "(10-15)% increased Mana Recovery rate", statOrder = { 1609 }, level = 60, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(10-15)% increased Mana Recovery rate" }, } }, + ["SynthesisImplicitTotalManaCost1_"] = { type = "Synthesis", affix = "", "-1 to Total Mana Cost of Skills", statOrder = { 1914 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-1 to Total Mana Cost of Skills" }, } }, + ["SynthesisImplicitTotalManaCost2_"] = { type = "Synthesis", affix = "", "-2 to Total Mana Cost of Skills", statOrder = { 1914 }, level = 15, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-2 to Total Mana Cost of Skills" }, } }, + ["SynthesisImplicitTotalManaCost3"] = { type = "Synthesis", affix = "", "-3 to Total Mana Cost of Skills", statOrder = { 1914 }, level = 24, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-3 to Total Mana Cost of Skills" }, } }, + ["SynthesisImplicitReducedManaCost1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "2% reduced Mana Cost of Skills" }, } }, + ["SynthesisImplicitReducedManaCost2"] = { type = "Synthesis", affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 15, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "3% reduced Mana Cost of Skills" }, } }, + ["SynthesisImplicitReducedManaCost3"] = { type = "Synthesis", affix = "", "(4-5)% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 24, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-5)% reduced Mana Cost of Skills" }, } }, + ["SynthesisImplicitReducedManaCostJewel1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1906 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "2% reduced Mana Cost of Skills" }, } }, + ["SynthesisImplicitAttackDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4898 }, level = 36, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4134865890] = { "(6-8)% increased Attack Damage per 500 Maximum Mana" }, } }, + ["SynthesisImplicitAttackDamagePerMana2"] = { type = "Synthesis", affix = "", "(12-14)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4898 }, level = 48, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4134865890] = { "(12-14)% increased Attack Damage per 500 Maximum Mana" }, } }, + ["SynthesisImplicitSpellDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Spell Damage per 500 Maximum Mana", statOrder = { 10293 }, level = 36, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3555662994] = { "(6-8)% increased Spell Damage per 500 Maximum Mana" }, } }, + ["SynthesisImplicitSpellDamagePerMana2___"] = { type = "Synthesis", affix = "", "(12-14)% increased Spell Damage per 500 Maximum Mana", statOrder = { 10293 }, level = 48, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3555662994] = { "(12-14)% increased Spell Damage per 500 Maximum Mana" }, } }, + ["SynthesisImplicitPhysicalDamageTakenFromMana1"] = { type = "Synthesis", affix = "", "(2-3)% of Physical Damage is taken from Mana before Life", statOrder = { 4205 }, level = 36, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "(2-3)% of Physical Damage is taken from Mana before Life" }, } }, + ["SynthesisImplicitPhysicalDamageTakenFromMana2_"] = { type = "Synthesis", affix = "", "(4-5)% of Physical Damage is taken from Mana before Life", statOrder = { 4205 }, level = 48, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "(4-5)% of Physical Damage is taken from Mana before Life" }, } }, + ["SynthesisImplicitFireResist1"] = { type = "Synthesis", affix = "", "+8% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+8% to Fire Resistance" }, } }, + ["SynthesisImplicitFireResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Fire Resistance", statOrder = { 1648 }, level = 15, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(9-10)% to Fire Resistance" }, } }, + ["SynthesisImplicitFireResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Fire Resistance", statOrder = { 1648 }, level = 24, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-12)% to Fire Resistance" }, } }, + ["SynthesisImplicitFireResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1648 }, level = 36, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(13-14)% to Fire Resistance" }, } }, + ["SynthesisImplicitFireResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1648 }, level = 48, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-16)% to Fire Resistance" }, } }, + ["SynthesisImplicitFireResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(2-3)% to Fire Resistance" }, } }, + ["SynthesisImplicitFireResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Fire Resistance", statOrder = { 1648 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(4-5)% to Fire Resistance" }, } }, + ["SynthesisImplicitMaxFireResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1646 }, level = 60, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } }, + ["SynthesisImplicitMaxFireResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1646 }, level = 65, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } }, + ["SynthesisImplicitPhysicalTakenAsFire1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 56, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(7-10)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["SynthesisImplicitFlatFireDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Fire Damage taken from Hits", statOrder = { 2260 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(15-10) Fire Damage taken from Hits" }, } }, + ["SynthesisImplicitFlatFireDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Fire Damage taken from Hits", statOrder = { 2260 }, level = 15, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(40-16) Fire Damage taken from Hits" }, } }, + ["SynthesisImplicitFlatFireDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Fire Damage taken from Hits", statOrder = { 2260 }, level = 24, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [614758785] = { "-(80-40) Fire Damage taken from Hits" }, } }, + ["SynthesisImplicitImmuneToIgnite1"] = { type = "Synthesis", affix = "", "Cannot be Ignited", statOrder = { 1862 }, level = 56, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, + ["SynthesisImplicitColdResist1"] = { type = "Synthesis", affix = "", "+8% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+8% to Cold Resistance" }, } }, + ["SynthesisImplicitColdResist2_"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Resistance", statOrder = { 1654 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(9-10)% to Cold Resistance" }, } }, + ["SynthesisImplicitColdResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Resistance", statOrder = { 1654 }, level = 24, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-12)% to Cold Resistance" }, } }, + ["SynthesisImplicitColdResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1654 }, level = 36, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(13-14)% to Cold Resistance" }, } }, + ["SynthesisImplicitColdResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1654 }, level = 48, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-16)% to Cold Resistance" }, } }, + ["SynthesisImplicitColdResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(2-3)% to Cold Resistance" }, } }, + ["SynthesisImplicitColdResistJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Cold Resistance", statOrder = { 1654 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(4-5)% to Cold Resistance" }, } }, + ["SynthesisImplicitMaxColdResist1_"] = { type = "Synthesis", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1652 }, level = 60, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } }, + ["SynthesisImplicitMaxColdResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1652 }, level = 65, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } }, + ["SynthesisImplicitPhysicalTakenAsCold1__"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2473 }, level = 56, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(7-10)% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["SynthesisImplicitFlatColdDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-10) Cold Damage taken from Hits", statOrder = { 5901 }, level = 1, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [261654754] = { "-(15-10) Cold Damage taken from Hits" }, } }, + ["SynthesisImplicitFlatColdDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Cold Damage taken from Hits", statOrder = { 5901 }, level = 15, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [261654754] = { "-(40-16) Cold Damage taken from Hits" }, } }, + ["SynthesisImplicitFlatColdDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Cold Damage taken from Hits", statOrder = { 5901 }, level = 24, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [261654754] = { "-(80-40) Cold Damage taken from Hits" }, } }, + ["SynthesisImplicitImmuneToFreeze1"] = { type = "Synthesis", affix = "", "Cannot be Frozen", statOrder = { 1861 }, level = 56, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } }, + ["SynthesisImplicitLightningResist1"] = { type = "Synthesis", affix = "", "+8% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+8% to Lightning Resistance" }, } }, + ["SynthesisImplicitLightningResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Lightning Resistance", statOrder = { 1659 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(9-10)% to Lightning Resistance" }, } }, + ["SynthesisImplicitLightningResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Lightning Resistance", statOrder = { 1659 }, level = 24, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-12)% to Lightning Resistance" }, } }, + ["SynthesisImplicitLightningResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1659 }, level = 36, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(13-14)% to Lightning Resistance" }, } }, + ["SynthesisImplicitLightningResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1659 }, level = 48, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-16)% to Lightning Resistance" }, } }, + ["SynthesisImplicitLightningResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(2-3)% to Lightning Resistance" }, } }, + ["SynthesisImplicitLightningResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Lightning Resistance", statOrder = { 1659 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(4-5)% to Lightning Resistance" }, } }, + ["SynthesisImplicitMaxLightningResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1657 }, level = 60, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } }, + ["SynthesisImplicitMaxLightningResist2____"] = { type = "Synthesis", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1657 }, level = 65, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } }, + ["SynthesisImplicitPhysicalTakenAsLightning1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2474 }, level = 56, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(7-10)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["SynthesisImplicitFlatLightningDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Lightning Damage taken from Hits", statOrder = { 7554 }, level = 1, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [465051235] = { "-(15-10) Lightning Damage taken from Hits" }, } }, + ["SynthesisImplicitFlatLightningDamageTaken2_"] = { type = "Synthesis", affix = "", "-(40-16) Lightning Damage taken from Hits", statOrder = { 7554 }, level = 15, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [465051235] = { "-(40-16) Lightning Damage taken from Hits" }, } }, + ["SynthesisImplicitFlatLightningDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Lightning Damage taken from Hits", statOrder = { 7554 }, level = 24, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [465051235] = { "-(80-40) Lightning Damage taken from Hits" }, } }, + ["SynthesisImplicitImmuneToShock1"] = { type = "Synthesis", affix = "", "Cannot be Shocked", statOrder = { 1864 }, level = 56, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, + ["SynthesisImplicitChaosResist1_"] = { type = "Synthesis", affix = "", "+(5-6)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-6)% to Chaos Resistance" }, } }, + ["SynthesisImplicitChaosResist2"] = { type = "Synthesis", affix = "", "+(7-8)% to Chaos Resistance", statOrder = { 1664 }, level = 15, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-8)% to Chaos Resistance" }, } }, + ["SynthesisImplicitChaosResist3"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Resistance", statOrder = { 1664 }, level = 24, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(9-10)% to Chaos Resistance" }, } }, + ["SynthesisImplicitChaosResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 1664 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(2-3)% to Chaos Resistance" }, } }, + ["SynthesisImplicitMaxChaosResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1663 }, level = 60, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } }, + ["SynthesisImplicitMaxChaosResist2"] = { type = "Synthesis", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1663 }, level = 65, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } }, + ["SynthesisImplicitPhysicalTakenAsChaos1"] = { type = "Synthesis", affix = "", "(5-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2476 }, level = 56, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(5-8)% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["SynthesisImplicitFlatChaosDamageTaken1"] = { type = "Synthesis", affix = "", "-(17-13) Chaos Damage taken", statOrder = { 2873 }, level = 15, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(17-13) Chaos Damage taken" }, } }, + ["SynthesisImplicitFlatChaosDamageTaken2"] = { type = "Synthesis", affix = "", "-(31-18) Chaos Damage taken", statOrder = { 2873 }, level = 24, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(31-18) Chaos Damage taken" }, } }, + ["SynthesisImplicitImmuneToPoison1"] = { type = "Synthesis", affix = "", "Cannot be Poisoned", statOrder = { 3405 }, level = 56, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["SynthesisImplicitAllResist1__"] = { type = "Synthesis", affix = "", "+(3-4)% to all Elemental Resistances", statOrder = { 1642 }, level = 15, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(3-4)% to all Elemental Resistances" }, } }, + ["SynthesisImplicitAllResist2_"] = { type = "Synthesis", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1642 }, level = 24, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-6)% to all Elemental Resistances" }, } }, + ["SynthesisImplicitAllResist3"] = { type = "Synthesis", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1642 }, level = 36, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(7-8)% to all Elemental Resistances" }, } }, + ["SynthesisImplicitMaximumResistance1"] = { type = "Synthesis", affix = "", "+1% to all maximum Resistances", statOrder = { 1665 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["SynthesisImplicitMaximumResistance2_"] = { type = "Synthesis", affix = "", "+2% to all maximum Resistances", statOrder = { 1665 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } }, + ["SynthesisImplicitLocalIncreaseSocketedGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["SynthesisImplicitLocalCrit1"] = { type = "Synthesis", affix = "", "(5-6)% increased Critical Strike Chance", statOrder = { 1487 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(5-6)% increased Critical Strike Chance" }, } }, + ["SynthesisImplicitLocalCrit2"] = { type = "Synthesis", affix = "", "(7-8)% increased Critical Strike Chance", statOrder = { 1487 }, level = 15, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(7-8)% increased Critical Strike Chance" }, } }, + ["SynthesisImplicitLocalCrit3"] = { type = "Synthesis", affix = "", "(9-10)% increased Critical Strike Chance", statOrder = { 1487 }, level = 24, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(9-10)% increased Critical Strike Chance" }, } }, + ["SynthesisImplicitLocalCrit4_"] = { type = "Synthesis", affix = "", "(11-12)% increased Critical Strike Chance", statOrder = { 1487 }, level = 36, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(11-12)% increased Critical Strike Chance" }, } }, + ["SynthesisImplicitLocalCrit5"] = { type = "Synthesis", affix = "", "(13-15)% increased Critical Strike Chance", statOrder = { 1487 }, level = 48, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(13-15)% increased Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCrit1"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(14-15)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCrit2"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(16-17)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCrit3"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(18-20)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCrit4"] = { type = "Synthesis", affix = "", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(21-23)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCrit5"] = { type = "Synthesis", affix = "", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(24-26)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCritQuiver1"] = { type = "Synthesis", affix = "", "(26-28)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(26-28)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCritQuiver2"] = { type = "Synthesis", affix = "", "(29-31)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(29-31)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCritQuiver3"] = { type = "Synthesis", affix = "", "(32-34)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(32-34)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCritQuiver4"] = { type = "Synthesis", affix = "", "(35-37)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-37)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCritQuiver5"] = { type = "Synthesis", affix = "", "(38-40)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(38-40)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCritJewel1_"] = { type = "Synthesis", affix = "", "2% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "2% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitGlobalCritJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Global Critical Strike Chance", statOrder = { 1482 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(3-4)% increased Global Critical Strike Chance" }, } }, + ["SynthesisImplicitMinorCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+12% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+12% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitMinorCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-14)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitMinorCriticalMultiplier3_"] = { type = "Synthesis", affix = "", "+(15-16)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-16)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitMinorCriticalMultiplier4_"] = { type = "Synthesis", affix = "", "+(17-18)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-18)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitMinorCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(19-20)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(19-20)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitSpellCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(29-31)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(29-31)% increased Spell Critical Strike Chance" }, } }, + ["SynthesisImplicitSpellCriticalStrikeChance2"] = { type = "Synthesis", affix = "", "(32-34)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 15, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(32-34)% increased Spell Critical Strike Chance" }, } }, + ["SynthesisImplicitSpellCriticalStrikeChance3_"] = { type = "Synthesis", affix = "", "(35-37)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 24, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(35-37)% increased Spell Critical Strike Chance" }, } }, + ["SynthesisImplicitSpellCriticalStrikeChance4"] = { type = "Synthesis", affix = "", "(38-41)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 36, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(38-41)% increased Spell Critical Strike Chance" }, } }, + ["SynthesisImplicitSpellCriticalStrikeChance5_"] = { type = "Synthesis", affix = "", "(42-45)% increased Spell Critical Strike Chance", statOrder = { 1481 }, level = 48, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(42-45)% increased Spell Critical Strike Chance" }, } }, + ["SynthesisImplicitCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-17)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-20)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitCriticalMultiplier3"] = { type = "Synthesis", affix = "", "+(21-23)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-23)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitCriticalMultiplier4"] = { type = "Synthesis", affix = "", "+(24-26)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(24-26)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(27-30)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(27-30)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+2% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+2% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(3-4)% to Global Critical Strike Multiplier", statOrder = { 1511 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(3-4)% to Global Critical Strike Multiplier" }, } }, + ["SynthesisImplicitAdditionalCriticalStrikeChanceWithAttacks1_"] = { type = "Synthesis", affix = "", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4842 }, level = 65, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } }, + ["SynthesisImplicitAdditionalCriticalStrikeChanceWithSpells1"] = { type = "Synthesis", affix = "", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10271 }, level = 65, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } }, + ["SynthesisImplicitMaceCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1517 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(2-3)% to Critical Strike Multiplier with Maces or Sceptres" }, } }, + ["SynthesisImplicitAxeCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Axes", statOrder = { 1518 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(2-3)% to Critical Strike Multiplier with Axes" }, } }, + ["SynthesisImplicitSwordCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Swords", statOrder = { 1520 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(2-3)% to Critical Strike Multiplier with Swords" }, } }, + ["SynthesisImplicitBowCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(2-3)% to Critical Strike Multiplier with Bows" }, } }, + ["SynthesisImplicitClawCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Claws", statOrder = { 1522 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(2-3)% to Critical Strike Multiplier with Claws" }, } }, + ["SynthesisImplicitDaggerCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Daggers", statOrder = { 1516 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "+(2-3)% to Critical Strike Multiplier with Daggers" }, } }, + ["SynthesisImplicitWandCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Wands", statOrder = { 1521 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(2-3)% to Critical Strike Multiplier with Wands" }, } }, + ["SynthesisImplicitStaffCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Staves", statOrder = { 1523 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1474913037] = { "+(2-3)% to Critical Strike Multiplier with Staves" }, } }, + ["SynthesisImplicitMaceCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1517 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [458899422] = { "+(4-5)% to Critical Strike Multiplier with Maces or Sceptres" }, } }, + ["SynthesisImplicitAxeCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Axes", statOrder = { 1518 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4219746989] = { "+(4-5)% to Critical Strike Multiplier with Axes" }, } }, + ["SynthesisImplicitSwordCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Swords", statOrder = { 1520 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3114492047] = { "+(4-5)% to Critical Strike Multiplier with Swords" }, } }, + ["SynthesisImplicitBowCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Bows", statOrder = { 1519 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(4-5)% to Critical Strike Multiplier with Bows" }, } }, + ["SynthesisImplicitClawCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Claws", statOrder = { 1522 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2811834828] = { "+(4-5)% to Critical Strike Multiplier with Claws" }, } }, + ["SynthesisImplicitDaggerCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Daggers", statOrder = { 1516 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3998601568] = { "+(4-5)% to Critical Strike Multiplier with Daggers" }, } }, + ["SynthesisImplicitWandCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Wands", statOrder = { 1521 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1241396104] = { "+(4-5)% to Critical Strike Multiplier with Wands" }, } }, + ["SynthesisImplicitStaffCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Staves", statOrder = { 1523 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1474913037] = { "+(4-5)% to Critical Strike Multiplier with Staves" }, } }, + ["SynthesisImplicitSpellCriticalChanceWithStaffJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 6028 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [140429540] = { "(2-3)% increased Critical Strike Chance for Spells while wielding a Staff" }, } }, + ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 6026 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1218939541] = { "(2-3)% increased Critical Strike Chance for Spells while Dual Wielding" }, } }, + ["SynthesisImplicitSpellCriticalChanceWithShieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 6027 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [952509814] = { "(2-3)% increased Critical Strike Chance for Spells while holding a Shield" }, } }, + ["SynthesisImplicitSpellCriticalChanceWithStaffJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 6028 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [140429540] = { "(4-5)% increased Critical Strike Chance for Spells while wielding a Staff" }, } }, + ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 6026 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [1218939541] = { "(4-5)% increased Critical Strike Chance for Spells while Dual Wielding" }, } }, + ["SynthesisImplicitSpellCriticalChanceWithShieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 6027 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [952509814] = { "(4-5)% increased Critical Strike Chance for Spells while holding a Shield" }, } }, + ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 6055 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [3629080637] = { "+(2-3)% to Critical Strike Multiplier for Spells while wielding a Staff" }, } }, + ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 6053 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2349237916] = { "+(2-3)% to Critical Strike Multiplier for Spells while Dual Wielding" }, } }, + ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 6054 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2311200892] = { "+(2-3)% to Critical Strike Multiplier for Spells while holding a Shield" }, } }, + ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 6055 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [3629080637] = { "+(4-5)% to Critical Strike Multiplier for Spells while wielding a Staff" }, } }, + ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 6053 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2349237916] = { "+(4-5)% to Critical Strike Multiplier for Spells while Dual Wielding" }, } }, + ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel2__"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 6054 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [2311200892] = { "+(4-5)% to Critical Strike Multiplier for Spells while holding a Shield" }, } }, + ["SynthesisImplicitAdditionalArrow1"] = { type = "Synthesis", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1817 }, level = 65, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["SynthesisImplicitAdditionalArrowPierce1_"] = { type = "Synthesis", affix = "", "Arrows Pierce an additional Target", statOrder = { 1814 }, level = 56, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, + ["SynthesisImplicitAdditionalArrowPierce2_"] = { type = "Synthesis", affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1814 }, level = 61, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce 2 additional Targets" }, } }, + ["SynthesisImplicitAdditionalArrowPierce3"] = { type = "Synthesis", affix = "", "Arrows Pierce 3 additional Targets", statOrder = { 1814 }, level = 65, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce 3 additional Targets" }, } }, + ["SynthesisImplicitAdditionalPierce1"] = { type = "Synthesis", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1813 }, level = 56, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["SynthesisImplicitStunDuration1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(15-17)% increased Stun Duration on Enemies" }, } }, + ["SynthesisImplicitStunDuration2"] = { type = "Synthesis", affix = "", "(18-25)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 15, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(18-25)% increased Stun Duration on Enemies" }, } }, + ["SynthesisImplicitStunDuration3_"] = { type = "Synthesis", affix = "", "(26-35)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 24, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(26-35)% increased Stun Duration on Enemies" }, } }, + ["SynthesisImplicitEnemyStunThreshold1"] = { type = "Synthesis", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(5-6)% reduced Enemy Stun Threshold" }, } }, + ["SynthesisImplicitEnemyStunThreshold2"] = { type = "Synthesis", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 15, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(7-8)% reduced Enemy Stun Threshold" }, } }, + ["SynthesisImplicitEnemyStunThreshold3"] = { type = "Synthesis", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1540 }, level = 24, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443060084] = { "(9-10)% reduced Enemy Stun Threshold" }, } }, + ["SynthesisImplicitStunRecovery1"] = { type = "Synthesis", affix = "", "(10-12)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(10-12)% increased Stun and Block Recovery" }, } }, + ["SynthesisImplicitStunRecovery2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 15, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(13-15)% increased Stun and Block Recovery" }, } }, + ["SynthesisImplicitStunRecovery3_"] = { type = "Synthesis", affix = "", "(16-18)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 24, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(16-18)% increased Stun and Block Recovery" }, } }, + ["SynthesisImplicitStunRecovery4"] = { type = "Synthesis", affix = "", "(19-21)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 36, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(19-21)% increased Stun and Block Recovery" }, } }, + ["SynthesisImplicitStunRecovery5"] = { type = "Synthesis", affix = "", "(22-25)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 48, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(22-25)% increased Stun and Block Recovery" }, } }, + ["SynthesisImplicitStunRecoveryJewel1"] = { type = "Synthesis", affix = "", "(6-7)% increased Stun and Block Recovery", statOrder = { 1925 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } }, + ["SynthesisImplicitStunDurationJewel1___"] = { type = "Synthesis", affix = "", "(2-3)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(2-3)% increased Stun Duration on Enemies" }, } }, + ["SynthesisImplicitStunDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Stun Duration on Enemies", statOrder = { 1886 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2517001139] = { "(4-5)% increased Stun Duration on Enemies" }, } }, + ["SynthesisImplicitGlobalKnockbackChanceJewel1"] = { type = "Synthesis", affix = "", "(2-3)% chance to Knock Enemies Back on hit", statOrder = { 2018 }, level = 1, group = "GlobalKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [977908611] = { "(2-3)% chance to Knock Enemies Back on hit" }, } }, + ["SynthesisImplicitAvoidStun1"] = { type = "Synthesis", affix = "", "(10-11)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 15, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(10-11)% chance to Avoid being Stunned" }, } }, + ["SynthesisImplicitAvoidStun2"] = { type = "Synthesis", affix = "", "(12-13)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 24, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(12-13)% chance to Avoid being Stunned" }, } }, + ["SynthesisImplicitAvoidStun3"] = { type = "Synthesis", affix = "", "(14-15)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 36, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(14-15)% chance to Avoid being Stunned" }, } }, + ["SynthesisImplicitAvoidStunJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Stunned", statOrder = { 1874 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4262448838] = { "(8-10)% chance to Avoid being Stunned" }, } }, + ["SynthesisImplicitAvoidStunCastingJewel1_"] = { type = "Synthesis", affix = "", "(16-20)% chance to Ignore Stuns while Casting", statOrder = { 1921 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1916706958] = { "(16-20)% chance to Ignore Stuns while Casting" }, } }, + ["SynthesisImplicitAreaOfEffectOnStun1"] = { type = "Synthesis", affix = "", "(20-25)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4773 }, level = 56, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [430248187] = { "(20-25)% increased Area of Effect if you have Stunned an Enemy Recently" }, } }, + ["SynthesisImplicitUnwaveringStance1"] = { type = "Synthesis", affix = "", "Unwavering Stance", statOrder = { 10988 }, level = 65, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["SynthesisImplicitImmuneToBleed1____"] = { type = "Synthesis", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4251 }, level = 56, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } }, + ["SynthesisImplicitSelfAilmentDuration1"] = { type = "Synthesis", affix = "", "(15-20)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 15, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(15-20)% reduced Elemental Ailment Duration on you" }, } }, + ["SynthesisImplicitSelfAilmentDuration2"] = { type = "Synthesis", affix = "", "(21-35)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 24, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(21-35)% reduced Elemental Ailment Duration on you" }, } }, + ["SynthesisImplicitSelfAilmentDuration3"] = { type = "Synthesis", affix = "", "(36-50)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 36, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(36-50)% reduced Elemental Ailment Duration on you" }, } }, + ["SynthesisImplicitSelfAilmentDurationJewel1_"] = { type = "Synthesis", affix = "", "(5-7)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(5-7)% reduced Elemental Ailment Duration on you" }, } }, + ["SynthesisImplicitSelfAilmentDurationJewel2"] = { type = "Synthesis", affix = "", "(8-10)% reduced Elemental Ailment Duration on you", statOrder = { 1890 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(8-10)% reduced Elemental Ailment Duration on you" }, } }, + ["SynthesisImplicitAilmentDamage1"] = { type = "Synthesis", affix = "", "8% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "8% increased Damage with Ailments" }, } }, + ["SynthesisImplicitAilmentDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage with Ailments", statOrder = { 5034 }, level = 15, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(9-10)% increased Damage with Ailments" }, } }, + ["SynthesisImplicitAilmentDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage with Ailments", statOrder = { 5034 }, level = 24, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(11-12)% increased Damage with Ailments" }, } }, + ["SynthesisImplicitAilmentDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Damage with Ailments", statOrder = { 5034 }, level = 36, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(13-14)% increased Damage with Ailments" }, } }, + ["SynthesisImplicitAilmentDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Damage with Ailments", statOrder = { 5034 }, level = 48, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-16)% increased Damage with Ailments" }, } }, + ["SynthesisImplicitAilmentDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(2-3)% increased Damage with Ailments" }, } }, + ["SynthesisImplicitAilmentDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Ailments", statOrder = { 5034 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(4-5)% increased Damage with Ailments" }, } }, + ["SynthesisImplicitAilmentEffect1"] = { type = "Synthesis", affix = "", "6% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "6% increased Effect of Non-Damaging Ailments" }, } }, + ["SynthesisImplicitAilmentEffect2_"] = { type = "Synthesis", affix = "", "7% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 15, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "7% increased Effect of Non-Damaging Ailments" }, } }, + ["SynthesisImplicitAilmentEffect3"] = { type = "Synthesis", affix = "", "8% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 24, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "8% increased Effect of Non-Damaging Ailments" }, } }, + ["SynthesisImplicitAilmentEffect4"] = { type = "Synthesis", affix = "", "9% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 36, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "9% increased Effect of Non-Damaging Ailments" }, } }, + ["SynthesisImplicitAilmentEffect5"] = { type = "Synthesis", affix = "", "10% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 48, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "10% increased Effect of Non-Damaging Ailments" }, } }, + ["SynthesisImplicitChanceToIgnite1"] = { type = "Synthesis", affix = "", "6% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "6% chance to Ignite" }, } }, + ["SynthesisImplicitChanceToIgnite2"] = { type = "Synthesis", affix = "", "7% chance to Ignite", statOrder = { 2049 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "7% chance to Ignite" }, } }, + ["SynthesisImplicitChanceToIgnite3"] = { type = "Synthesis", affix = "", "8% chance to Ignite", statOrder = { 2049 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "8% chance to Ignite" }, } }, + ["SynthesisImplicitChanceToIgniteTwoHand1_"] = { type = "Synthesis", affix = "", "(9-10)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(9-10)% chance to Ignite" }, } }, + ["SynthesisImplicitChanceToIgniteTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Ignite", statOrder = { 2049 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(11-12)% chance to Ignite" }, } }, + ["SynthesisImplicitChanceToIgniteTwoHand3_"] = { type = "Synthesis", affix = "", "(13-15)% chance to Ignite", statOrder = { 2049 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(13-15)% chance to Ignite" }, } }, + ["SynthesisImplicitChanceToIgniteJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(1-2)% chance to Ignite" }, } }, + ["SynthesisImplicitChanceToIgniteJewel2"] = { type = "Synthesis", affix = "", "3% chance to Ignite", statOrder = { 2049 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "3% chance to Ignite" }, } }, + ["SynthesisImplicitIgniteDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 36, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(8-10)% increased Ignite Duration on Enemies" }, } }, + ["SynthesisImplicitIgniteDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Ignite Duration on Enemies", statOrder = { 1882 }, level = 48, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(12-15)% increased Ignite Duration on Enemies" }, } }, + ["SynthesisImplicitFasterIgnite1__"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (7-10)% faster", statOrder = { 2590 }, level = 56, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (7-10)% faster" }, } }, + ["SynthesisImplicitFasterIgniteWeapon1_"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (15-20)% faster", statOrder = { 2590 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (15-20)% faster" }, } }, + ["SynthesisImplicitFasterIgniteWeapon2"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (30-35)% faster", statOrder = { 2590 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (30-35)% faster" }, } }, + ["SynthesisImplicitAvoidIgnite1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 15, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(13-14)% chance to Avoid being Ignited" }, } }, + ["SynthesisImplicitAvoidIgnite2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 24, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(15-17)% chance to Avoid being Ignited" }, } }, + ["SynthesisImplicitAvoidIgnite3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 36, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(18-20)% chance to Avoid being Ignited" }, } }, + ["SynthesisImplicitAvoidIgniteJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Ignited", statOrder = { 1869 }, level = 1, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(8-10)% chance to Avoid being Ignited" }, } }, + ["SynthesisImplicitChanceToFreeze1"] = { type = "Synthesis", affix = "", "6% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "6% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreeze2"] = { type = "Synthesis", affix = "", "7% chance to Freeze", statOrder = { 2052 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "7% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreeze3"] = { type = "Synthesis", affix = "", "8% chance to Freeze", statOrder = { 2052 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "8% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(9-10)% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Freeze", statOrder = { 2052 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(11-12)% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Freeze", statOrder = { 2052 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(13-15)% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(1-2)% chance to Freeze" }, } }, + ["SynthesisImplicitChanceToFreezeJewel2"] = { type = "Synthesis", affix = "", "3% chance to Freeze", statOrder = { 2052 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "3% chance to Freeze" }, } }, + ["SynthesisImplicitFreezeDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Freeze Duration on Enemies", statOrder = { 1881 }, level = 36, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "(8-10)% increased Freeze Duration on Enemies" }, } }, + ["SynthesisImplicitFreezeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Freeze Duration on Enemies", statOrder = { 1881 }, level = 48, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "(12-15)% increased Freeze Duration on Enemies" }, } }, + ["SynthesisImplicitAvoidChill1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Chilled", statOrder = { 1867 }, level = 15, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(14-16)% chance to Avoid being Chilled" }, } }, + ["SynthesisImplicitAvoidChill2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Chilled", statOrder = { 1867 }, level = 24, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(18-21)% chance to Avoid being Chilled" }, } }, + ["SynthesisImplicitAvoidChill3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Chilled", statOrder = { 1867 }, level = 36, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(22-25)% chance to Avoid being Chilled" }, } }, + ["SynthesisImplicitAvoidFreeze1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 15, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(13-14)% chance to Avoid being Frozen" }, } }, + ["SynthesisImplicitAvoidFreeze2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 24, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(15-17)% chance to Avoid being Frozen" }, } }, + ["SynthesisImplicitAvoidFreeze3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 36, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(18-20)% chance to Avoid being Frozen" }, } }, + ["SynthesisImplicitAvoidFreezeJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Frozen", statOrder = { 1868 }, level = 1, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(8-10)% chance to Avoid being Frozen" }, } }, + ["SynthesisImplicitChillDurationJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Chill Duration on Enemies", statOrder = { 1879 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(2-3)% increased Chill Duration on Enemies" }, [1073942215] = { "" }, } }, + ["SynthesisImplicitChillDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chill Duration on Enemies", statOrder = { 1879 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(4-5)% increased Chill Duration on Enemies" }, [1073942215] = { "" }, } }, + ["SynthesisImplicitChillEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Cold Ailments", statOrder = { 5880 }, level = 36, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(7-10)% increased Effect of Cold Ailments" }, } }, + ["SynthesisImplicitChillEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Cold Ailments", statOrder = { 5880 }, level = 48, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(11-15)% increased Effect of Cold Ailments" }, } }, + ["SynthesisImplicitChillEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Cold Ailments", statOrder = { 5880 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(2-3)% increased Effect of Cold Ailments" }, } }, + ["SynthesisImplicitChanceToShock1"] = { type = "Synthesis", affix = "", "6% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "6% chance to Shock" }, } }, + ["SynthesisImplicitChanceToShock2"] = { type = "Synthesis", affix = "", "7% chance to Shock", statOrder = { 2056 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "7% chance to Shock" }, } }, + ["SynthesisImplicitChanceToShock3"] = { type = "Synthesis", affix = "", "8% chance to Shock", statOrder = { 2056 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "8% chance to Shock" }, } }, + ["SynthesisImplicitChanceToShockTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(9-10)% chance to Shock" }, } }, + ["SynthesisImplicitChanceToShockTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Shock", statOrder = { 2056 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(11-12)% chance to Shock" }, } }, + ["SynthesisImplicitChanceToShockTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Shock", statOrder = { 2056 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(13-15)% chance to Shock" }, } }, + ["SynthesisImplicitChanceToShockJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(1-2)% chance to Shock" }, } }, + ["SynthesisImplicitChanceToShockJewel2"] = { type = "Synthesis", affix = "", "3% chance to Shock", statOrder = { 2056 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "3% chance to Shock" }, } }, + ["SynthesisImplicitShockDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 36, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(8-10)% increased Shock Duration on Enemies" }, } }, + ["SynthesisImplicitShockDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 48, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-15)% increased Shock Duration on Enemies" }, } }, + ["SynthesisImplicitShockDurationJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(2-3)% increased Shock Duration on Enemies" }, } }, + ["SynthesisImplicitShockDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Shock Duration on Enemies", statOrder = { 1880 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(4-5)% increased Shock Duration on Enemies" }, } }, + ["SynthesisImplicitAvoidShock1"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 15, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(13-14)% chance to Avoid being Shocked" }, } }, + ["SynthesisImplicitAvoidShock2_"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 24, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(15-17)% chance to Avoid being Shocked" }, } }, + ["SynthesisImplicitAvoidShock3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 36, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(18-20)% chance to Avoid being Shocked" }, } }, + ["SynthesisImplicitAvoidShockJewel1____"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Shocked", statOrder = { 1871 }, level = 1, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(8-10)% chance to Avoid being Shocked" }, } }, + ["SynthesisImplicitShockEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Shock", statOrder = { 10153 }, level = 36, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(7-10)% increased Effect of Shock" }, } }, + ["SynthesisImplicitShockEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Shock", statOrder = { 10153 }, level = 48, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(11-15)% increased Effect of Shock" }, } }, + ["SynthesisImplicitShockEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Shock", statOrder = { 10153 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(2-3)% increased Effect of Shock" }, } }, + ["SynthesisImplicitBurnDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(10-11)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamage2__"] = { type = "Synthesis", affix = "", "(12-13)% increased Burning Damage", statOrder = { 1900 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(12-13)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Burning Damage", statOrder = { 1900 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(14-15)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamageOneHand1"] = { type = "Synthesis", affix = "", "(14-18)% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(14-18)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamageOneHand2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Burning Damage", statOrder = { 1900 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(19-23)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamageOneHand3"] = { type = "Synthesis", affix = "", "(24-28)% increased Burning Damage", statOrder = { 1900 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(24-28)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-27)% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(22-27)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamageTwoHand2"] = { type = "Synthesis", affix = "", "(28-35)% increased Burning Damage", statOrder = { 1900 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(28-35)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamageTwoHand3"] = { type = "Synthesis", affix = "", "(36-44)% increased Burning Damage", statOrder = { 1900 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(36-44)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(2-3)% increased Burning Damage" }, } }, + ["SynthesisImplicitBurnDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Burning Damage", statOrder = { 1900 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(4-5)% increased Burning Damage" }, } }, + ["SynthesisImplicitPoisonDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Poison", statOrder = { 3217 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(10-11)% increased Damage with Poison" }, } }, + ["SynthesisImplicitPoisonDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Poison", statOrder = { 3217 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(12-13)% increased Damage with Poison" }, } }, + ["SynthesisImplicitPoisonDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Poison", statOrder = { 3217 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(14-15)% increased Damage with Poison" }, } }, + ["SynthesisImplicitWeaponPoisonDamage1"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Poison", statOrder = { 3217 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(14-18)% increased Damage with Poison" }, } }, + ["SynthesisImplicitWeaponPoisonDamage2"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Poison", statOrder = { 3217 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(19-23)% increased Damage with Poison" }, } }, + ["SynthesisImplicitWeaponPoisonDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Poison", statOrder = { 3217 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(24-28)% increased Damage with Poison" }, } }, + ["SynthesisImplicitPoisonDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Poison", statOrder = { 3217 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(2-3)% increased Damage with Poison" }, } }, + ["SynthesisImplicitPoisonDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Poison", statOrder = { 3217 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(4-5)% increased Damage with Poison" }, } }, + ["SynthesisImplicitLocalPoisonOnHit1_"] = { type = "Synthesis", affix = "", "(25-30)% chance to Poison on Hit", statOrder = { 8116 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-30)% chance to Poison on Hit" }, } }, + ["SynthesisImplicitChanceToPoisonJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Poison on Hit", statOrder = { 3208 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "(1-2)% chance to Poison on Hit" }, } }, + ["SynthesisImplicitChanceToPoisonJewel2_"] = { type = "Synthesis", affix = "", "3% chance to Poison on Hit", statOrder = { 3208 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "3% chance to Poison on Hit" }, } }, + ["SynthesisImplicitPoisonDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Poison Duration", statOrder = { 3205 }, level = 55, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, + ["SynthesisImplicitFasterPoison1"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (7-10)% faster", statOrder = { 6633 }, level = 56, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (7-10)% faster" }, } }, + ["SynthesisImplicitFasterPoisonWeapon1_"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6633 }, level = 36, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (15-20)% faster" }, } }, + ["SynthesisImplicitFasterPoisonWeapon2__"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (30-35)% faster", statOrder = { 6633 }, level = 48, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (30-35)% faster" }, } }, + ["SynthesisImplicitAvoidPoison1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 24, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(14-16)% chance to Avoid being Poisoned" }, } }, + ["SynthesisImplicitAvoidPoison2"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 36, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(18-21)% chance to Avoid being Poisoned" }, } }, + ["SynthesisImplicitAvoidPoison3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 48, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(22-25)% chance to Avoid being Poisoned" }, } }, + ["SynthesisImplicitAvoidPoisonJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Poisoned", statOrder = { 1872 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(8-10)% chance to Avoid being Poisoned" }, } }, + ["SynthesisImplicitBleedDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Bleeding", statOrder = { 3204 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(10-11)% increased Damage with Bleeding" }, } }, + ["SynthesisImplicitBleedDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Bleeding", statOrder = { 3204 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(12-13)% increased Damage with Bleeding" }, } }, + ["SynthesisImplicitBleedDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Bleeding", statOrder = { 3204 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(14-15)% increased Damage with Bleeding" }, } }, + ["SynthesisImplicitWeaponBleedDamage1_"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Bleeding", statOrder = { 3204 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(14-18)% increased Damage with Bleeding" }, } }, + ["SynthesisImplicitWeaponBleedDamage2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Bleeding", statOrder = { 3204 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(19-23)% increased Damage with Bleeding" }, } }, + ["SynthesisImplicitWeaponBleedDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Bleeding", statOrder = { 3204 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(24-28)% increased Damage with Bleeding" }, } }, + ["SynthesisImplicitBleedDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Bleeding", statOrder = { 3204 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(2-3)% increased Damage with Bleeding" }, } }, + ["SynthesisImplicitBleedDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Bleeding", statOrder = { 3204 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(4-5)% increased Damage with Bleeding" }, } }, + ["SynthesisImplicitLocalBleedOnHit1"] = { type = "Synthesis", affix = "", "(15-20)% chance to cause Bleeding on Hit", statOrder = { 2509 }, level = 50, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-20)% chance to cause Bleeding on Hit" }, } }, + ["SynthesisImplicitChanceToBleedJewel1"] = { type = "Synthesis", affix = "", "Attacks have (1-2)% chance to cause Bleeding", statOrder = { 2515 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (1-2)% chance to cause Bleeding" }, } }, + ["SynthesisImplicitChanceToBleedJewel2__"] = { type = "Synthesis", affix = "", "Attacks have 3% chance to cause Bleeding", statOrder = { 2515 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 3% chance to cause Bleeding" }, } }, + ["SynthesisImplicitFasterBleed1_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (7-10)% faster", statOrder = { 6632 }, level = 56, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (7-10)% faster" }, } }, + ["SynthesisImplicitFasterBleedWeapon1"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (15-20)% faster", statOrder = { 6632 }, level = 36, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (15-20)% faster" }, } }, + ["SynthesisImplicitFasterBleedWeapon2_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (30-35)% faster", statOrder = { 6632 }, level = 48, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (30-35)% faster" }, } }, + ["SynthesisImplicitBleedDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 5047 }, level = 55, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, + ["SynthesisImplicitAvoidBleed1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 15, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(14-16)% chance to Avoid Bleeding" }, } }, + ["SynthesisImplicitAvoidBleed2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 24, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(18-21)% chance to Avoid Bleeding" }, } }, + ["SynthesisImplicitAvoidBleed3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 36, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(22-25)% chance to Avoid Bleeding" }, } }, + ["SynthesisImplicitAvoidBleedJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid Bleeding", statOrder = { 4252 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(8-10)% chance to Avoid Bleeding" }, } }, + ["SynthesisImplicitAllDamage1_"] = { type = "Synthesis", affix = "", "7% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "7% increased Damage" }, } }, + ["SynthesisImplicitAllDamage2"] = { type = "Synthesis", affix = "", "(8-9)% increased Damage", statOrder = { 1214 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(8-9)% increased Damage" }, } }, + ["SynthesisImplicitAllDamage3"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage", statOrder = { 1214 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(10-11)% increased Damage" }, } }, + ["SynthesisImplicitAllDamage4"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage", statOrder = { 1214 }, level = 36, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(12-13)% increased Damage" }, } }, + ["SynthesisImplicitAllDamage5"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage", statOrder = { 1214 }, level = 48, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(14-15)% increased Damage" }, } }, + ["SynthesisImplicitWeaponAllDamage1"] = { type = "Synthesis", affix = "", "(15-18)% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(15-18)% increased Damage" }, } }, + ["SynthesisImplicitWeaponAllDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Damage", statOrder = { 1214 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(19-22)% increased Damage" }, } }, + ["SynthesisImplicitWeaponAllDamage3_"] = { type = "Synthesis", affix = "", "(23-26)% increased Damage", statOrder = { 1214 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(23-26)% increased Damage" }, } }, + ["SynthesisImplicitWeaponAllDamageTwoHand1_"] = { type = "Synthesis", affix = "", "(21-26)% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(21-26)% increased Damage" }, } }, + ["SynthesisImplicitWeaponAllDamageTwoHand2"] = { type = "Synthesis", affix = "", "(27-32)% increased Damage", statOrder = { 1214 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(27-32)% increased Damage" }, } }, + ["SynthesisImplicitWeaponAllDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Damage", statOrder = { 1214 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(33-38)% increased Damage" }, } }, + ["SynthesisImplicitAllDamageJewel1"] = { type = "Synthesis", affix = "", "2% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "2% increased Damage" }, } }, + ["SynthesisImplicitAllDamageJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage", statOrder = { 1214 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(3-4)% increased Damage" }, } }, + ["SynthesisImplicitFireDamage1_"] = { type = "Synthesis", affix = "", "8% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "8% increased Fire Damage" }, } }, + ["SynthesisImplicitFireDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Fire Damage", statOrder = { 1381 }, level = 15, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(9-10)% increased Fire Damage" }, } }, + ["SynthesisImplicitFireDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Fire Damage", statOrder = { 1381 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(11-12)% increased Fire Damage" }, } }, + ["SynthesisImplicitFireDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Fire Damage", statOrder = { 1381 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-14)% increased Fire Damage" }, } }, + ["SynthesisImplicitFireDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Fire Damage", statOrder = { 1381 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-16)% increased Fire Damage" }, } }, + ["SynthesisImplicitFireDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Fire Damage", statOrder = { 1381 }, level = 56, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(17-20)% increased Fire Damage" }, } }, + ["SynthesisImplicitFireDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(2-3)% increased Fire Damage" }, } }, + ["SynthesisImplicitFireDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-5)% increased Fire Damage" }, } }, + ["SynthesisImplicitFireDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Attack Skills", statOrder = { 6664 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2468413380] = { "(3-4)% increased Fire Damage with Attack Skills" }, } }, + ["SynthesisImplicitFireDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Attack Skills", statOrder = { 6664 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2468413380] = { "(5-6)% increased Fire Damage with Attack Skills" }, } }, + ["SynthesisImplicitFireDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Spell Skills", statOrder = { 6665 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [361162316] = { "(3-4)% increased Fire Damage with Spell Skills" }, } }, + ["SynthesisImplicitFireDamageSpellsJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Spell Skills", statOrder = { 6665 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [361162316] = { "(5-6)% increased Fire Damage with Spell Skills" }, } }, + ["SynthesisImplicitPhysicalConvertedToFireMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 50, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(7-10)% of Physical Damage Converted to Fire Damage" }, } }, + ["SynthesisImplicitPhysicalConvertedToFire1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 55, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(15-25)% of Physical Damage Converted to Fire Damage" }, } }, + ["SynthesisImplicitPhysicalConvertedToFire2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 60, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(40-50)% of Physical Damage Converted to Fire Damage" }, } }, + ["SynthesisImplicitPhysicalConvertedToFireJewel1_"] = { type = "Synthesis", affix = "", "3% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 1, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "3% of Physical Damage Converted to Fire Damage" }, } }, + ["SynthesisImplicitPhysicalAddedAsFire1"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 45, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } }, + ["SynthesisImplicitPhysicalAddedAsFire2"] = { type = "Synthesis", affix = "", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1955 }, level = 55, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (6-8)% of Physical Damage as Extra Fire Damage" }, } }, + ["SynthesisImplicitFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6651 }, level = 55, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, + ["SynthesisImplicitFireLeechMinor1__"] = { type = "Synthesis", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } }, + ["SynthesisImplicitFireLeech1"] = { type = "Synthesis", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1693 }, level = 55, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.5% of Fire Damage Leeched as Life" }, } }, + ["SynthesisImplicitWeaponFireDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-17)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1381 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1381 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Fire Damage", statOrder = { 1381 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-28)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(29-32)% increased Fire Damage", statOrder = { 1381 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-32)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Fire Damage", statOrder = { 1381 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-36)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Fire Damage", statOrder = { 1381 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(37-40)% increased Fire Damage" }, } }, + ["SynthesisImplicitWeaponFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Fire Damage", statOrder = { 1381 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-44)% increased Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamage1"] = { type = "Synthesis", affix = "", "Adds (4-8) to (9-15) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-8) to (9-15) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamage2"] = { type = "Synthesis", affix = "", "Adds (9-12) to (16-23) Fire Damage", statOrder = { 1386 }, level = 15, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-12) to (16-23) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamage3"] = { type = "Synthesis", affix = "", "Adds (13-18) to (24-31) Fire Damage", statOrder = { 1386 }, level = 24, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-18) to (24-31) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamage4"] = { type = "Synthesis", affix = "", "Adds (19-24) to (32-43) Fire Damage", statOrder = { 1386 }, level = 36, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-24) to (32-43) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamage5"] = { type = "Synthesis", affix = "", "Adds (25-30) to (44-53) Fire Damage", statOrder = { 1386 }, level = 48, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-30) to (44-53) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (15-24) Fire Damage", statOrder = { 1386 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-14) to (15-24) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-22) to (26-41) Fire Damage", statOrder = { 1386 }, level = 15, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (15-22) to (26-41) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (23-31) to (42-56) Fire Damage", statOrder = { 1386 }, level = 24, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (42-56) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (32-41) to (57-74) Fire Damage", statOrder = { 1386 }, level = 36, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-41) to (57-74) Fire Damage" }, } }, + ["SynthesisImplicitLocalFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (42-52) to (75-93) Fire Damage", statOrder = { 1386 }, level = 48, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (42-52) to (75-93) Fire Damage" }, } }, + ["SynthesisImplicitSpellAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (3-6) to (7-11) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamage2"] = { type = "Synthesis", affix = "", "Adds (7-9) to (12-17) Fire Damage to Spells", statOrder = { 1428 }, level = 15, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (7-9) to (12-17) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamage3"] = { type = "Synthesis", affix = "", "Adds (10-13) to (17-22) Fire Damage to Spells", statOrder = { 1428 }, level = 24, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (17-22) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamage4"] = { type = "Synthesis", affix = "", "Adds (14-17) to (23-31) Fire Damage to Spells", statOrder = { 1428 }, level = 36, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-17) to (23-31) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamage5"] = { type = "Synthesis", affix = "", "Adds (18-21) to (31-38) Fire Damage to Spells", statOrder = { 1428 }, level = 48, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-21) to (31-38) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (5-9) to (10-15) Fire Damage to Spells", statOrder = { 1428 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (5-9) to (10-15) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (10-14) to (16-25) Fire Damage to Spells", statOrder = { 1428 }, level = 15, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-14) to (16-25) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (14-19) to (26-34) Fire Damage to Spells", statOrder = { 1428 }, level = 24, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-19) to (26-34) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (20-25) to (35-45) Fire Damage to Spells", statOrder = { 1428 }, level = 36, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-25) to (35-45) Fire Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand5__"] = { type = "Synthesis", affix = "", "Adds (26-32) to (46-56) Fire Damage to Spells", statOrder = { 1428 }, level = 48, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-32) to (46-56) Fire Damage to Spells" }, } }, + ["SynthesisImplicitGlobalAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (13-18) to (28-33) Fire Damage", statOrder = { 1383 }, level = 50, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (13-18) to (28-33) Fire Damage" }, } }, + ["SynthesisImplicitFireAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 55, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (4-6)% of Fire Damage as Extra Chaos Damage" }, } }, + ["SynthesisImplicitFireAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 65, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (7-10)% of Fire Damage as Extra Chaos Damage" }, } }, + ["SynthesisImplicitColdDamage1"] = { type = "Synthesis", affix = "", "8% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "8% increased Cold Damage" }, } }, + ["SynthesisImplicitColdDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Cold Damage", statOrder = { 1390 }, level = 15, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(9-10)% increased Cold Damage" }, } }, + ["SynthesisImplicitColdDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Cold Damage", statOrder = { 1390 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(11-12)% increased Cold Damage" }, } }, + ["SynthesisImplicitColdDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Cold Damage", statOrder = { 1390 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-14)% increased Cold Damage" }, } }, + ["SynthesisImplicitColdDamage5_"] = { type = "Synthesis", affix = "", "(15-16)% increased Cold Damage", statOrder = { 1390 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-16)% increased Cold Damage" }, } }, + ["SynthesisImplicitColdDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Cold Damage", statOrder = { 1390 }, level = 56, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(17-20)% increased Cold Damage" }, } }, + ["SynthesisImplicitColdDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(2-3)% increased Cold Damage" }, } }, + ["SynthesisImplicitColdDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-5)% increased Cold Damage" }, } }, + ["SynthesisImplicitColdDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Attack Skills", statOrder = { 5903 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(3-4)% increased Cold Damage with Attack Skills" }, } }, + ["SynthesisImplicitColdDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Attack Skills", statOrder = { 5903 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(5-6)% increased Cold Damage with Attack Skills" }, } }, + ["SynthesisImplicitColdDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Spell Skills", statOrder = { 5904 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2186994986] = { "(3-4)% increased Cold Damage with Spell Skills" }, } }, + ["SynthesisImplicitColdDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Spell Skills", statOrder = { 5904 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2186994986] = { "(5-6)% increased Cold Damage with Spell Skills" }, } }, + ["SynthesisImplicitPhysicalConvertedToColdMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 50, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(7-10)% of Physical Damage Converted to Cold Damage" }, } }, + ["SynthesisImplicitPhysicalConvertedToCold1_"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 55, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(15-25)% of Physical Damage Converted to Cold Damage" }, } }, + ["SynthesisImplicitPhysicalConvertedToCold2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 60, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(40-50)% of Physical Damage Converted to Cold Damage" }, } }, + ["SynthesisImplicitColdDamagePerFrenzyCharge1"] = { type = "Synthesis", affix = "", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4309 }, level = 55, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, + ["SynthesisImplicitColdLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } }, + ["SynthesisImplicitColdLeech1"] = { type = "Synthesis", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1698 }, level = 55, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.5% of Cold Damage Leeched as Life" }, } }, + ["SynthesisImplicitWeaponColdDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-17)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-20)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1390 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1390 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Cold Damage", statOrder = { 1390 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-28)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Cold Damage", statOrder = { 1390 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-32)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Cold Damage", statOrder = { 1390 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-36)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Cold Damage", statOrder = { 1390 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(37-40)% increased Cold Damage" }, } }, + ["SynthesisImplicitWeaponColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Cold Damage", statOrder = { 1390 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-44)% increased Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-6) to (7-11) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamage2"] = { type = "Synthesis", affix = "", "Adds (7-10) to (12-18) Cold Damage", statOrder = { 1395 }, level = 15, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-10) to (12-18) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamage3"] = { type = "Synthesis", affix = "", "Adds (11-15) to (19-26) Cold Damage", statOrder = { 1395 }, level = 24, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (19-26) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamage4"] = { type = "Synthesis", affix = "", "Adds (16-20) to (27-35) Cold Damage", statOrder = { 1395 }, level = 36, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-20) to (27-35) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamage5"] = { type = "Synthesis", affix = "", "Adds (21-25) to (36-43) Cold Damage", statOrder = { 1395 }, level = 48, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-25) to (36-43) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamageTwoHand1__"] = { type = "Synthesis", affix = "", "Adds (6-9) to (13-21) Cold Damage", statOrder = { 1395 }, level = 1, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (13-21) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamageTwoHand2__"] = { type = "Synthesis", affix = "", "Adds (10-17) to (22-32) Cold Damage", statOrder = { 1395 }, level = 15, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-17) to (22-32) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamageTwoHand3_"] = { type = "Synthesis", affix = "", "Adds (19-26) to (34-45) Cold Damage", statOrder = { 1395 }, level = 24, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-26) to (34-45) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (27-35) to (46-61) Cold Damage", statOrder = { 1395 }, level = 36, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (27-35) to (46-61) Cold Damage" }, } }, + ["SynthesisImplicitLocalColdDamageTwoHand5_"] = { type = "Synthesis", affix = "", "Adds (36-43) to (51-75) Cold Damage", statOrder = { 1395 }, level = 48, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (36-43) to (51-75) Cold Damage" }, } }, + ["SynthesisImplicitSpellAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (3-5) to (5-8) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (3-5) to (5-8) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamage2_"] = { type = "Synthesis", affix = "", "Adds (5-7) to (9-13) Cold Damage to Spells", statOrder = { 1429 }, level = 15, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (9-13) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamage3"] = { type = "Synthesis", affix = "", "Adds (8-11) to (14-19) Cold Damage to Spells", statOrder = { 1429 }, level = 24, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-11) to (14-19) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamage4"] = { type = "Synthesis", affix = "", "Adds (12-14) to (19-25) Cold Damage to Spells", statOrder = { 1429 }, level = 36, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-14) to (19-25) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamage5"] = { type = "Synthesis", affix = "", "Adds (15-18) to (26-31) Cold Damage to Spells", statOrder = { 1429 }, level = 48, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (15-18) to (26-31) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (4-6) to (8-13) Cold Damage to Spells", statOrder = { 1429 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (4-6) to (8-13) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (7-11) to (14-20) Cold Damage to Spells", statOrder = { 1429 }, level = 15, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (7-11) to (14-20) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (12-16) to (21-28) Cold Damage to Spells", statOrder = { 1429 }, level = 24, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-16) to (21-28) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (17-21) to (28-38) Cold Damage to Spells", statOrder = { 1429 }, level = 36, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-21) to (28-38) Cold Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (22-26) to (31-46) Cold Damage to Spells", statOrder = { 1429 }, level = 48, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (22-26) to (31-46) Cold Damage to Spells" }, } }, + ["SynthesisImplicitGlobalAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (12-16) to (24-28) Cold Damage", statOrder = { 1392 }, level = 50, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (12-16) to (24-28) Cold Damage" }, } }, + ["SynthesisImplicitColdDamageOverTimeMultiplier1"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(9-10)% to Cold Damage over Time Multiplier" }, } }, + ["SynthesisImplicitColdDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-12)% to Cold Damage over Time Multiplier" }, } }, + ["SynthesisImplicitColdDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(13-15)% to Cold Damage over Time Multiplier" }, } }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Synthesis", affix = "", "+(21-23)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(21-23)% to Cold Damage over Time Multiplier" }, } }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand2_"] = { type = "Synthesis", affix = "", "+(24-26)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-26)% to Cold Damage over Time Multiplier" }, } }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand3_"] = { type = "Synthesis", affix = "", "+(27-30)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(27-30)% to Cold Damage over Time Multiplier" }, } }, + ["SynthesisImplicitColdAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 55, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (4-6)% of Cold Damage as Extra Chaos Damage" }, } }, + ["SynthesisImplicitColdAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 65, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (7-10)% of Cold Damage as Extra Chaos Damage" }, } }, + ["SynthesisImplicitLightningDamage1"] = { type = "Synthesis", affix = "", "8% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "8% increased Lightning Damage" }, } }, + ["SynthesisImplicitLightningDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Lightning Damage", statOrder = { 1401 }, level = 15, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(9-10)% increased Lightning Damage" }, } }, + ["SynthesisImplicitLightningDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Lightning Damage", statOrder = { 1401 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(11-12)% increased Lightning Damage" }, } }, + ["SynthesisImplicitLightningDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Lightning Damage", statOrder = { 1401 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-14)% increased Lightning Damage" }, } }, + ["SynthesisImplicitLightningDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Lightning Damage", statOrder = { 1401 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-16)% increased Lightning Damage" }, } }, + ["SynthesisImplicitLightningDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Lightning Damage", statOrder = { 1401 }, level = 56, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(17-20)% increased Lightning Damage" }, } }, + ["SynthesisImplicitLightningDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(2-3)% increased Lightning Damage" }, } }, + ["SynthesisImplicitLightningDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(4-5)% increased Lightning Damage" }, } }, + ["SynthesisImplicitLightningDamageAttacksJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Attack Skills", statOrder = { 7555 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4208907162] = { "(3-4)% increased Lightning Damage with Attack Skills" }, } }, + ["SynthesisImplicitLightningDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Attack Skills", statOrder = { 7555 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [4208907162] = { "(5-6)% increased Lightning Damage with Attack Skills" }, } }, + ["SynthesisImplicitLightningDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Spell Skills", statOrder = { 7556 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3935031607] = { "(3-4)% increased Lightning Damage with Spell Skills" }, } }, + ["SynthesisImplicitLightningDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Spell Skills", statOrder = { 7556 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3935031607] = { "(5-6)% increased Lightning Damage with Spell Skills" }, } }, + ["SynthesisImplicitPhysicalConvertedToLightningMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 50, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(7-10)% of Physical Damage Converted to Lightning Damage" }, } }, + ["SynthesisImplicitPhysicalConvertedToLightning1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 55, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(15-25)% of Physical Damage Converted to Lightning Damage" }, } }, + ["SynthesisImplicitPhysicalConvertedToLightning2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 60, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(40-50)% of Physical Damage Converted to Lightning Damage" }, } }, + ["SynthesisImplicitPhysicalAddedAsLightning1___"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1957 }, level = 55, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, } }, + ["SynthesisImplicitLightningLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } }, + ["SynthesisImplicitLightningLeech1"] = { type = "Synthesis", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1702 }, level = 55, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.5% of Lightning Damage Leeched as Life" }, } }, + ["SynthesisImplicitWeaponLightningDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-17)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-20)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1401 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-23)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamage4_"] = { type = "Synthesis", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1401 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(24-26)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamage5_"] = { type = "Synthesis", affix = "", "(27-30)% increased Lightning Damage", statOrder = { 1401 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-28)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Lightning Damage", statOrder = { 1401 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-32)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Lightning Damage", statOrder = { 1401 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(33-36)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Lightning Damage", statOrder = { 1401 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(37-40)% increased Lightning Damage" }, } }, + ["SynthesisImplicitWeaponLightningDamageTwoHand5_"] = { type = "Synthesis", affix = "", "(41-44)% increased Lightning Damage", statOrder = { 1401 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(41-44)% increased Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (16-25) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (16-25) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (26-40) Lightning Damage", statOrder = { 1406 }, level = 15, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (26-40) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamage3_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (41-55) Lightning Damage", statOrder = { 1406 }, level = 24, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-55) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (56-70) Lightning Damage", statOrder = { 1406 }, level = 36, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-5) to (56-70) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-6) to (71-83) Lightning Damage", statOrder = { 1406 }, level = 48, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (71-83) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (29-46) Lightning Damage", statOrder = { 1406 }, level = 1, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (29-46) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (1-3) to (48-75) Lightning Damage", statOrder = { 1406 }, level = 15, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (48-75) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-6) to (77-95) Lightning Damage", statOrder = { 1406 }, level = 24, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (77-95) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-8) to (96-123) Lightning Damage", statOrder = { 1406 }, level = 36, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-8) to (96-123) Lightning Damage" }, } }, + ["SynthesisImplicitLocalLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-10) to (124-145) Lightning Damage", statOrder = { 1406 }, level = 48, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-10) to (124-145) Lightning Damage" }, } }, + ["SynthesisImplicitSpellAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (12-18) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (12-18) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (19-28) Lightning Damage to Spells", statOrder = { 1430 }, level = 15, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (19-28) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamage3"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-39) Lightning Damage to Spells", statOrder = { 1430 }, level = 24, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (29-39) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-4) to (40-49) Lightning Damage to Spells", statOrder = { 1430 }, level = 36, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (40-49) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-5) to (50-59) Lightning Damage to Spells", statOrder = { 1430 }, level = 48, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-59) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (18-28) Lightning Damage to Spells", statOrder = { 1430 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (18-28) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-46) Lightning Damage to Spells", statOrder = { 1430 }, level = 15, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (29-46) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-4) to (47-58) Lightning Damage to Spells", statOrder = { 1430 }, level = 24, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (47-58) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (59-75) Lightning Damage to Spells", statOrder = { 1430 }, level = 36, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (59-75) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-7) to (75-88) Lightning Damage to Spells", statOrder = { 1430 }, level = 48, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (75-88) Lightning Damage to Spells" }, } }, + ["SynthesisImplicitGlobalAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds (1-5) to (50-52) Lightning Damage", statOrder = { 1403 }, level = 50, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (1-5) to (50-52) Lightning Damage" }, } }, + ["SynthesisImplicitLightningAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 55, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (4-6)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["SynthesisImplicitLightningAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 65, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (7-10)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["SynthesisImplicitPhysicalDamage1_"] = { type = "Synthesis", affix = "", "8% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "8% increased Global Physical Damage" }, } }, + ["SynthesisImplicitPhysicalDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Global Physical Damage", statOrder = { 1254 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(9-10)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitPhysicalDamage3_"] = { type = "Synthesis", affix = "", "(11-12)% increased Global Physical Damage", statOrder = { 1254 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(11-12)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitPhysicalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Global Physical Damage", statOrder = { 1254 }, level = 36, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(13-14)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitPhysicalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Global Physical Damage", statOrder = { 1254 }, level = 48, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-16)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitPhysicalDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Global Physical Damage", statOrder = { 1254 }, level = 56, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(17-20)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(2-3)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitPhysicalDamageJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(4-5)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitPhysicalDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Attack Skills", statOrder = { 9807 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2266750692] = { "(3-4)% increased Physical Damage with Attack Skills" }, } }, + ["SynthesisImplicitPhysicalDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Attack Skills", statOrder = { 9807 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2266750692] = { "(5-6)% increased Physical Damage with Attack Skills" }, } }, + ["SynthesisImplicitPhysicalDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Spell Skills", statOrder = { 9808 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [1430255627] = { "(3-4)% increased Physical Damage with Spell Skills" }, } }, + ["SynthesisImplicitPhysicalDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Spell Skills", statOrder = { 9808 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [1430255627] = { "(5-6)% increased Physical Damage with Spell Skills" }, } }, + ["SynthesisImplicitAttackChanceToImpale1"] = { type = "Synthesis", affix = "", "(6-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4968 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(6-10)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["SynthesisImplicitPhysicalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } }, + ["SynthesisImplicitPhysicalLeech1"] = { type = "Synthesis", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1689 }, level = 55, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.5% of Physical Damage Leeched as Life" }, } }, + ["SynthesisImplicitWeaponPhysicalDamage1"] = { type = "Synthesis", affix = "", "(19-22)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(19-22)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitWeaponPhysicalDamage2"] = { type = "Synthesis", affix = "", "(23-26)% increased Global Physical Damage", statOrder = { 1254 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(23-26)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitWeaponPhysicalDamage3"] = { type = "Synthesis", affix = "", "(27-30)% increased Global Physical Damage", statOrder = { 1254 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-30)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand1"] = { type = "Synthesis", affix = "", "(27-32)% increased Global Physical Damage", statOrder = { 1254 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-32)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(33-38)% increased Global Physical Damage", statOrder = { 1254 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(33-38)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "(39-44)% increased Global Physical Damage", statOrder = { 1254 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(39-44)% increased Global Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage1"] = { type = "Synthesis", affix = "", "(13-14)% increased Physical Damage", statOrder = { 1255 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(13-14)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage2"] = { type = "Synthesis", affix = "", "(15-16)% increased Physical Damage", statOrder = { 1255 }, level = 15, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-16)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage3"] = { type = "Synthesis", affix = "", "(17-19)% increased Physical Damage", statOrder = { 1255 }, level = 24, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(17-19)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage4"] = { type = "Synthesis", affix = "", "(20-22)% increased Physical Damage", statOrder = { 1255 }, level = 36, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-22)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalPhysicalDamage5"] = { type = "Synthesis", affix = "", "(23-25)% increased Physical Damage", statOrder = { 1255 }, level = 48, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(23-25)% increased Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 2 Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamage2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (3-4) Physical Damage", statOrder = { 1300 }, level = 15, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (3-4) Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamage3"] = { type = "Synthesis", affix = "", "Adds (3-4) to (5-6) Physical Damage", statOrder = { 1300 }, level = 24, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-6) Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamage4"] = { type = "Synthesis", affix = "", "Adds (5-6) to (7-8) Physical Damage", statOrder = { 1300 }, level = 36, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-6) to (7-8) Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamage5"] = { type = "Synthesis", affix = "", "Adds (6-7) to (9-10) Physical Damage", statOrder = { 1300 }, level = 48, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-7) to (9-10) Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1300 }, level = 1, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Physical Damage", statOrder = { 1300 }, level = 15, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (4-5) Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (4-5) to (6-7) Physical Damage", statOrder = { 1300 }, level = 24, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (6-7) Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand4_"] = { type = "Synthesis", affix = "", "Adds (6-7) to (8-10) Physical Damage", statOrder = { 1300 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-7) to (8-10) Physical Damage" }, } }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1300 }, level = 48, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-9) to (11-13) Physical Damage" }, } }, + ["SynthesisImplicitPhysicalAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 55, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (4-6)% of Physical Damage as Extra Chaos Damage" }, } }, + ["SynthesisImplicitPhysicalAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 65, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (7-10)% of Physical Damage as Extra Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamage1"] = { type = "Synthesis", affix = "", "8% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "8% increased Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Chaos Damage", statOrder = { 1409 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(9-10)% increased Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Chaos Damage", statOrder = { 1409 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(11-12)% increased Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Chaos Damage", statOrder = { 1409 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-14)% increased Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Chaos Damage", statOrder = { 1409 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-16)% increased Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamage6_"] = { type = "Synthesis", affix = "", "(17-20)% increased Chaos Damage", statOrder = { 1409 }, level = 56, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(17-20)% increased Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(2-3)% increased Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chaos Damage", statOrder = { 1409 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-5)% increased Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamageAttacksJewel1___"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Attack Skills", statOrder = { 5830 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [1959092146] = { "(3-4)% increased Chaos Damage with Attack Skills" }, } }, + ["SynthesisImplicitChaosDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Attack Skills", statOrder = { 5830 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [1959092146] = { "(5-6)% increased Chaos Damage with Attack Skills" }, } }, + ["SynthesisImplicitChaosDamageSpellsJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Spell Skills", statOrder = { 5831 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3761858151] = { "(3-4)% increased Chaos Damage with Spell Skills" }, } }, + ["SynthesisImplicitChaosDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Spell Skills", statOrder = { 5831 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3761858151] = { "(5-6)% increased Chaos Damage with Spell Skills" }, } }, + ["SynthesisImplicitPhysicalConvertedToChaos1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 55, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(15-25)% of Physical Damage Converted to Chaos Damage" }, } }, + ["SynthesisImplicitPhysicalConvertedToChaos2_"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Chaos Damage", statOrder = { 1985 }, level = 60, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(40-50)% of Physical Damage Converted to Chaos Damage" }, } }, + ["SynthesisImplicitChaosLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } }, + ["SynthesisImplicitChaosLeech1"] = { type = "Synthesis", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1705 }, level = 55, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } }, + ["SynthesisImplicitWeaponChaosDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1409 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-17)% increased Chaos Damage" }, } }, + ["SynthesisImplicitWeaponChaosDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1409 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, } }, + ["SynthesisImplicitWeaponChaosDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1409 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, } }, + ["SynthesisImplicitWeaponChaosDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1409 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, } }, + ["SynthesisImplicitWeaponChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Chaos Damage", statOrder = { 1409 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-28)% increased Chaos Damage" }, } }, + ["SynthesisImplicitWeaponChaosDamageTwoHand2___"] = { type = "Synthesis", affix = "", "(29-32)% increased Chaos Damage", statOrder = { 1409 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(29-32)% increased Chaos Damage" }, } }, + ["SynthesisImplicitWeaponChaosDamageTwoHand3_"] = { type = "Synthesis", affix = "", "(33-36)% increased Chaos Damage", statOrder = { 1409 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-36)% increased Chaos Damage" }, } }, + ["SynthesisImplicitWeaponChaosDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Chaos Damage", statOrder = { 1409 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(37-40)% increased Chaos Damage" }, } }, + ["SynthesisImplicitLocalChaosDamage1"] = { type = "Synthesis", affix = "", "Adds (4-9) to (11-21) Chaos Damage", statOrder = { 1414 }, level = 15, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (4-9) to (11-21) Chaos Damage" }, } }, + ["SynthesisImplicitLocalChaosDamage2_"] = { type = "Synthesis", affix = "", "Adds (10-18) to (22-34) Chaos Damage", statOrder = { 1414 }, level = 24, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-18) to (22-34) Chaos Damage" }, } }, + ["SynthesisImplicitLocalChaosDamage3"] = { type = "Synthesis", affix = "", "Adds (19-28) to (35-49) Chaos Damage", statOrder = { 1414 }, level = 36, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-28) to (35-49) Chaos Damage" }, } }, + ["SynthesisImplicitLocalChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (17-30) Chaos Damage", statOrder = { 1414 }, level = 15, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-14) to (17-30) Chaos Damage" }, } }, + ["SynthesisImplicitLocalChaosDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-24) to (31-57) Chaos Damage", statOrder = { 1414 }, level = 24, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (15-24) to (31-57) Chaos Damage" }, } }, + ["SynthesisImplicitLocalChaosDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (26-50) to (58-86) Chaos Damage", statOrder = { 1414 }, level = 36, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (26-50) to (58-86) Chaos Damage" }, } }, + ["SynthesisImplicitGlobalAddedChaosDamage1_"] = { type = "Synthesis", affix = "", "Adds (11-13) to (19-23) Chaos Damage", statOrder = { 1410 }, level = 50, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (11-13) to (19-23) Chaos Damage" }, } }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier1_"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(9-10)% to Chaos Damage over Time Multiplier" }, } }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-12)% to Chaos Damage over Time Multiplier" }, } }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(13-15)% to Chaos Damage over Time Multiplier" }, } }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand1"] = { type = "Synthesis", affix = "", "+(21-23)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(21-23)% to Chaos Damage over Time Multiplier" }, } }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand2"] = { type = "Synthesis", affix = "", "+(24-26)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-26)% to Chaos Damage over Time Multiplier" }, } }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand3"] = { type = "Synthesis", affix = "", "+(27-30)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(27-30)% to Chaos Damage over Time Multiplier" }, } }, + ["SynthesisImplicitDegenerationDamage1_"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(9-10)% increased Damage over Time" }, } }, + ["SynthesisImplicitDegenerationDamage2"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage over Time", statOrder = { 1233 }, level = 15, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(11-12)% increased Damage over Time" }, } }, + ["SynthesisImplicitDegenerationDamage3"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage over Time", statOrder = { 1233 }, level = 24, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(13-15)% increased Damage over Time" }, } }, + ["SynthesisImplicitDegenerationDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(2-3)% increased Damage over Time" }, } }, + ["SynthesisImplicitDegenerationDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage over Time", statOrder = { 1233 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(4-5)% increased Damage over Time" }, } }, + ["SynthesisImplicitWeaponElementalDamage1_"] = { type = "Synthesis", affix = "", "(12-13)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(12-13)% increased Elemental Damage with Attack Skills" }, } }, + ["SynthesisImplicitWeaponElementalDamage2"] = { type = "Synthesis", affix = "", "(14-15)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 24, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(14-15)% increased Elemental Damage with Attack Skills" }, } }, + ["SynthesisImplicitWeaponElementalDamage3"] = { type = "Synthesis", affix = "", "(16-18)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 36, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(16-18)% increased Elemental Damage with Attack Skills" }, } }, + ["SynthesisImplicitWeaponElementalDamage4"] = { type = "Synthesis", affix = "", "(19-21)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 48, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-21)% increased Elemental Damage with Attack Skills" }, } }, + ["SynthesisImplicitWeaponElementalDamage5"] = { type = "Synthesis", affix = "", "(22-24)% increased Elemental Damage with Attack Skills", statOrder = { 6409 }, level = 56, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(22-24)% increased Elemental Damage with Attack Skills" }, } }, + ["SynthesisImplicitPhysicalDamageAddedAsRandomElement1"] = { type = "Synthesis", affix = "", "Gain (8-10)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2970 }, level = 65, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (8-10)% of Physical Damage as Extra Damage of a random Element" }, } }, + ["SynthesisImplicitLocalElementalPen1_"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 2% Elemental Resistances", statOrder = { 3797 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 2% Elemental Resistances" }, } }, + ["SynthesisImplicitLocalElementalPen2"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 3% Elemental Resistances", statOrder = { 3797 }, level = 15, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 3% Elemental Resistances" }, } }, + ["SynthesisImplicitLocalElementalPen3"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate (4-5)% Elemental Resistances", statOrder = { 3797 }, level = 24, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (4-5)% Elemental Resistances" }, } }, + ["SynthesisImplicitElementalDamage1"] = { type = "Synthesis", affix = "", "8% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "8% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Elemental Damage", statOrder = { 2003 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(9-10)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Elemental Damage", statOrder = { 2003 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(11-12)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Elemental Damage", statOrder = { 2003 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(13-14)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Elemental Damage", statOrder = { 2003 }, level = 48, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-16)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamageHigh1__"] = { type = "Synthesis", affix = "", "(17-19)% increased Elemental Damage", statOrder = { 2003 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(17-19)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamageHigh2"] = { type = "Synthesis", affix = "", "(20-22)% increased Elemental Damage", statOrder = { 2003 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(20-22)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamageHigh3__"] = { type = "Synthesis", affix = "", "(23-26)% increased Elemental Damage", statOrder = { 2003 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(23-26)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamageHighTwoHand1"] = { type = "Synthesis", affix = "", "(21-26)% increased Elemental Damage", statOrder = { 2003 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(21-26)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamageHighTwoHand2_"] = { type = "Synthesis", affix = "", "(27-32)% increased Elemental Damage", statOrder = { 2003 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(27-32)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamageHighTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Elemental Damage", statOrder = { 2003 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-38)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(2-3)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Elemental Damage", statOrder = { 2003 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(4-5)% increased Elemental Damage" }, } }, + ["SynthesisImplicitElementalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1709 }, level = 45, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [720395808] = { "0.2% of Elemental Damage Leeched as Life" }, } }, + ["SynthesisImplicitFirePenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Fire Resistance", statOrder = { 3015 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (3-5)% Fire Resistance" }, } }, + ["SynthesisImplicitColdPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Cold Resistance", statOrder = { 3017 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (3-5)% Cold Resistance" }, } }, + ["SynthesisImplicitLightningPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Lightning Resistance", statOrder = { 3018 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (3-5)% Lightning Resistance" }, } }, + ["SynthesisImplicitFirePenetrationWeapon1"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Fire Resistance", statOrder = { 3626 }, level = 60, group = "FirePenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1123291426] = { "Damage with Weapons Penetrates (4-6)% Fire Resistance" }, } }, + ["SynthesisImplicitColdPenetrationWeapon1_"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Cold Resistance", statOrder = { 3625 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1211769158] = { "Damage with Weapons Penetrates (4-6)% Cold Resistance" }, } }, + ["SynthesisImplicitLightningPenetrationWeapon1__"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Lightning Resistance", statOrder = { 3627 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3301510262] = { "Damage with Weapons Penetrates (4-6)% Lightning Resistance" }, } }, + ["SynthesisImplicitElementalPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 3014 }, level = 60, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } }, + ["SynthesisImplicitMeleeDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Melee Damage", statOrder = { 1257 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(2-3)% increased Melee Damage" }, } }, + ["SynthesisImplicitMeleeDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Melee Damage", statOrder = { 1257 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(4-5)% increased Melee Damage" }, } }, + ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Maces or Sceptres", statOrder = { 1351 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3774831856] = { "(3-4)% increased Physical Damage with Maces or Sceptres" }, } }, + ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Axes", statOrder = { 1327 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2008219439] = { "(3-4)% increased Physical Damage with Axes" }, } }, + ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Swords", statOrder = { 1362 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3814560373] = { "(3-4)% increased Physical Damage with Swords" }, } }, + ["SynthesisImplicitBowIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Bows", statOrder = { 1357 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [402920808] = { "(3-4)% increased Physical Damage with Bows" }, } }, + ["SynthesisImplicitClawIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Claws", statOrder = { 1339 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [635761691] = { "(3-4)% increased Physical Damage with Claws" }, } }, + ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Daggers", statOrder = { 1345 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882531569] = { "(3-4)% increased Physical Damage with Daggers" }, } }, + ["SynthesisImplicitWandIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Wands", statOrder = { 1369 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2769075491] = { "(3-4)% increased Physical Damage with Wands" }, } }, + ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Staves", statOrder = { 1331 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3150705301] = { "(3-4)% increased Physical Damage with Staves" }, } }, + ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Maces or Sceptres", statOrder = { 1351 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3774831856] = { "(5-6)% increased Physical Damage with Maces or Sceptres" }, } }, + ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Axes", statOrder = { 1327 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2008219439] = { "(5-6)% increased Physical Damage with Axes" }, } }, + ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Swords", statOrder = { 1362 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3814560373] = { "(5-6)% increased Physical Damage with Swords" }, } }, + ["SynthesisImplicitBowIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Bows", statOrder = { 1357 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [402920808] = { "(5-6)% increased Physical Damage with Bows" }, } }, + ["SynthesisImplicitClawIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Claws", statOrder = { 1339 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [635761691] = { "(5-6)% increased Physical Damage with Claws" }, } }, + ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Daggers", statOrder = { 1345 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3882531569] = { "(5-6)% increased Physical Damage with Daggers" }, } }, + ["SynthesisImplicitWandIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Wands", statOrder = { 1369 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2769075491] = { "(5-6)% increased Physical Damage with Wands" }, } }, + ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Staves", statOrder = { 1331 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3150705301] = { "(5-6)% increased Physical Damage with Staves" }, } }, + ["SynthesisImplicitSpellDamageWithStaffJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while wielding a Staff", statOrder = { 1250 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(3-4)% increased Spell Damage while wielding a Staff" }, } }, + ["SynthesisImplicitSpellDamageWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while Dual Wielding", statOrder = { 1253 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(3-4)% increased Spell Damage while Dual Wielding" }, } }, + ["SynthesisImplicitSpellDamageWithShieldJewel1__"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while holding a Shield", statOrder = { 1252 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(3-4)% increased Spell Damage while holding a Shield" }, } }, + ["SynthesisImplicitSpellDamageWithStaffJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while wielding a Staff", statOrder = { 1250 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3496944181] = { "(5-6)% increased Spell Damage while wielding a Staff" }, } }, + ["SynthesisImplicitSpellDamageWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while Dual Wielding", statOrder = { 1253 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1678690824] = { "(5-6)% increased Spell Damage while Dual Wielding" }, } }, + ["SynthesisImplicitSpellDamageWithShieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while holding a Shield", statOrder = { 1252 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1766142294] = { "(5-6)% increased Spell Damage while holding a Shield" }, } }, + ["SynthesisImplicitAttackDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Attack Damage", statOrder = { 1221 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(12-13)% increased Attack Damage" }, } }, + ["SynthesisImplicitAttackDamage2"] = { type = "Synthesis", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1221 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(14-16)% increased Attack Damage" }, } }, + ["SynthesisImplicitAttackDamage3"] = { type = "Synthesis", affix = "", "(17-20)% increased Attack Damage", statOrder = { 1221 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-20)% increased Attack Damage" }, } }, + ["SynthesisImplicitWeaponAttackDamage1"] = { type = "Synthesis", affix = "", "(23-26)% increased Attack Damage", statOrder = { 1221 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(23-26)% increased Attack Damage" }, } }, + ["SynthesisImplicitWeaponAttackDamage2"] = { type = "Synthesis", affix = "", "(27-30)% increased Attack Damage", statOrder = { 1221 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(27-30)% increased Attack Damage" }, } }, + ["SynthesisImplicitWeaponAttackDamage3"] = { type = "Synthesis", affix = "", "(31-35)% increased Attack Damage", statOrder = { 1221 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(31-35)% increased Attack Damage" }, } }, + ["SynthesisImplicitWeaponAttackDamageTwoHand1"] = { type = "Synthesis", affix = "", "(29-35)% increased Attack Damage", statOrder = { 1221 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(29-35)% increased Attack Damage" }, } }, + ["SynthesisImplicitWeaponAttackDamageTwoHand2"] = { type = "Synthesis", affix = "", "(36-44)% increased Attack Damage", statOrder = { 1221 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(36-44)% increased Attack Damage" }, } }, + ["SynthesisImplicitWeaponAttackDamageTwoHand3"] = { type = "Synthesis", affix = "", "(45-51)% increased Attack Damage", statOrder = { 1221 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(45-51)% increased Attack Damage" }, } }, + ["SynthesisImplicitSpellDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(12-13)% increased Spell Damage" }, } }, + ["SynthesisImplicitSpellDamage2_"] = { type = "Synthesis", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1246 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-16)% increased Spell Damage" }, } }, + ["SynthesisImplicitSpellDamage3_"] = { type = "Synthesis", affix = "", "(17-20)% increased Spell Damage", statOrder = { 1246 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-20)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamage1"] = { type = "Synthesis", affix = "", "(16-18)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(16-18)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Spell Damage", statOrder = { 1246 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(19-22)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamage3"] = { type = "Synthesis", affix = "", "(23-26)% increased Spell Damage", statOrder = { 1246 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamage4"] = { type = "Synthesis", affix = "", "(27-30)% increased Spell Damage", statOrder = { 1246 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamage5"] = { type = "Synthesis", affix = "", "(31-35)% increased Spell Damage", statOrder = { 1246 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-24)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-24)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamageTwoHand2"] = { type = "Synthesis", affix = "", "(25-28)% increased Spell Damage", statOrder = { 1246 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-28)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamageTwoHand3"] = { type = "Synthesis", affix = "", "(29-35)% increased Spell Damage", statOrder = { 1246 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-35)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamageTwoHand4_"] = { type = "Synthesis", affix = "", "(36-44)% increased Spell Damage", statOrder = { 1246 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(36-44)% increased Spell Damage" }, } }, + ["SynthesisImplicitWeaponSpellDamageTwoHand5"] = { type = "Synthesis", affix = "", "(45-51)% increased Spell Damage", statOrder = { 1246 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-51)% increased Spell Damage" }, } }, + ["SynthesisImplicitSpellsDoubleDamageChance1__"] = { type = "Synthesis", affix = "", "Spells have a (8-10)% chance to deal Double Damage", statOrder = { 10282 }, level = 60, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (8-10)% chance to deal Double Damage" }, } }, + ["SynthesisImplicitSpellsDoubleDamageChance2_"] = { type = "Synthesis", affix = "", "Spells have a (16-18)% chance to deal Double Damage", statOrder = { 10282 }, level = 65, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (16-18)% chance to deal Double Damage" }, } }, + ["SynthesisImplicitSpellDamageJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(2-3)% increased Spell Damage" }, } }, + ["SynthesisImplicitSpellDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Spell Damage", statOrder = { 1246 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-5)% increased Spell Damage" }, } }, + ["SynthesisImplicitStrength1"] = { type = "Synthesis", affix = "", "+(6-8) to Strength", statOrder = { 1200 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(6-8) to Strength" }, } }, + ["SynthesisImplicitStrength2__"] = { type = "Synthesis", affix = "", "+(9-11) to Strength", statOrder = { 1200 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-11) to Strength" }, } }, + ["SynthesisImplicitStrength3"] = { type = "Synthesis", affix = "", "+(12-14) to Strength", statOrder = { 1200 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(12-14) to Strength" }, } }, + ["SynthesisImplicitStrength4"] = { type = "Synthesis", affix = "", "+(15-17) to Strength", statOrder = { 1200 }, level = 15, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-17) to Strength" }, } }, + ["SynthesisImplicitStrength5"] = { type = "Synthesis", affix = "", "+(18-20) to Strength", statOrder = { 1200 }, level = 24, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(18-20) to Strength" }, } }, + ["SynthesisImplicitStrengthJewel1__"] = { type = "Synthesis", affix = "", "+(2-3) to Strength", statOrder = { 1200 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(2-3) to Strength" }, } }, + ["SynthesisImplicitStrengthJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Strength", statOrder = { 1200 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-5) to Strength" }, } }, + ["SynthesisImplicitPercentStrength1_"] = { type = "Synthesis", affix = "", "4% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "4% increased Strength" }, } }, + ["SynthesisImplicitPercentStrength2_"] = { type = "Synthesis", affix = "", "5% increased Strength", statOrder = { 1207 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "5% increased Strength" }, } }, + ["SynthesisImplicitPercentStrength3_"] = { type = "Synthesis", affix = "", "6% increased Strength", statOrder = { 1207 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "6% increased Strength" }, } }, + ["SynthesisImplicitPercentStrengthTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Strength", statOrder = { 1207 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-9)% increased Strength" }, } }, + ["SynthesisImplicitPercentStrengthTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Strength", statOrder = { 1207 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(10-12)% increased Strength" }, } }, + ["SynthesisImplicitPercentStrengthTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Strength", statOrder = { 1207 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(13-15)% increased Strength" }, } }, + ["SynthesisImplicitDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Strength", statOrder = { 6144 }, level = 60, group = "DamagePer15Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } }, + ["SynthesisImplicitAddedFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, + ["SynthesisImplicitAddedFireDamagePerStrength2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4919 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } }, + ["SynthesisImplicitSpellDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Strength", statOrder = { 10303 }, level = 55, group = "SpellDamagePer16Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } }, + ["SynthesisImplicitSpellDamagePerStrength2_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Strength", statOrder = { 10300 }, level = 55, group = "SpellDamagePer10Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } }, + ["SynthesisImplicitDamageTakenPer250Strength1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Strength", statOrder = { 6197 }, level = 60, group = "DamageTakenPer250Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1443108510] = { "1% reduced Damage taken per 250 Strength" }, } }, + ["SynthesisImplicitDexterity1"] = { type = "Synthesis", affix = "", "+(6-8) to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(6-8) to Dexterity" }, } }, + ["SynthesisImplicitDexterity2"] = { type = "Synthesis", affix = "", "+(9-11) to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-11) to Dexterity" }, } }, + ["SynthesisImplicitDexterity3"] = { type = "Synthesis", affix = "", "+(12-14) to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(12-14) to Dexterity" }, } }, + ["SynthesisImplicitDexterity4"] = { type = "Synthesis", affix = "", "+(15-17) to Dexterity", statOrder = { 1201 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-17) to Dexterity" }, } }, + ["SynthesisImplicitDexterity5"] = { type = "Synthesis", affix = "", "+(18-20) to Dexterity", statOrder = { 1201 }, level = 24, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(18-20) to Dexterity" }, } }, + ["SynthesisImplicitDexterityJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(2-3) to Dexterity" }, } }, + ["SynthesisImplicitDexterityJewel2_"] = { type = "Synthesis", affix = "", "+(4-5) to Dexterity", statOrder = { 1201 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-5) to Dexterity" }, } }, + ["SynthesisImplicitPercentDexterity1"] = { type = "Synthesis", affix = "", "4% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "4% increased Dexterity" }, } }, + ["SynthesisImplicitPercentDexterity2"] = { type = "Synthesis", affix = "", "5% increased Dexterity", statOrder = { 1208 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "5% increased Dexterity" }, } }, + ["SynthesisImplicitPercentDexterity3_"] = { type = "Synthesis", affix = "", "6% increased Dexterity", statOrder = { 1208 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "6% increased Dexterity" }, } }, + ["SynthesisImplicitPercentDexterityTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Dexterity", statOrder = { 1208 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-9)% increased Dexterity" }, } }, + ["SynthesisImplicitPercentDexterityTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Dexterity", statOrder = { 1208 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(10-12)% increased Dexterity" }, } }, + ["SynthesisImplicitPercentDexterityTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Dexterity", statOrder = { 1208 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(13-15)% increased Dexterity" }, } }, + ["SynthesisImplicitDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6142 }, level = 60, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, + ["SynthesisImplicitAddedColdDamagePerDexterity1_"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4974 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, + ["SynthesisImplicitAddedColdDamagePerDexterity2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4974 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } }, + ["SynthesisImplicitSpellDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10301 }, level = 55, group = "SpellDamagePer16Dexterity", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } }, + ["SynthesisImplicitDamageTakenPer250Dexterity1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Dexterity", statOrder = { 6195 }, level = 60, group = "DamageTakenPer250Dexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2477636501] = { "1% reduced Damage taken per 250 Dexterity" }, } }, + ["SynthesisImplicitIntelligence1"] = { type = "Synthesis", affix = "", "+(6-8) to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(6-8) to Intelligence" }, } }, + ["SynthesisImplicitIntelligence2_"] = { type = "Synthesis", affix = "", "+(9-11) to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-11) to Intelligence" }, } }, + ["SynthesisImplicitIntelligence3_"] = { type = "Synthesis", affix = "", "+(12-14) to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(12-14) to Intelligence" }, } }, + ["SynthesisImplicitIntelligence4"] = { type = "Synthesis", affix = "", "+(15-17) to Intelligence", statOrder = { 1202 }, level = 15, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-17) to Intelligence" }, } }, + ["SynthesisImplicitIntelligence5"] = { type = "Synthesis", affix = "", "+(18-20) to Intelligence", statOrder = { 1202 }, level = 24, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(18-20) to Intelligence" }, } }, + ["SynthesisImplicitIntelligenceJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(2-3) to Intelligence" }, } }, + ["SynthesisImplicitIntelligenceJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Intelligence", statOrder = { 1202 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-5) to Intelligence" }, } }, + ["SynthesisImplicitPercentIntelligence1"] = { type = "Synthesis", affix = "", "4% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "4% increased Intelligence" }, } }, + ["SynthesisImplicitPercentIntelligence2_"] = { type = "Synthesis", affix = "", "5% increased Intelligence", statOrder = { 1209 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "5% increased Intelligence" }, } }, + ["SynthesisImplicitPercentIntelligence3_"] = { type = "Synthesis", affix = "", "6% increased Intelligence", statOrder = { 1209 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "6% increased Intelligence" }, } }, + ["SynthesisImplicitPercentIntelligenceTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Intelligence", statOrder = { 1209 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-9)% increased Intelligence" }, } }, + ["SynthesisImplicitPercentIntelligenceTrinket2_"] = { type = "Synthesis", affix = "", "(10-12)% increased Intelligence", statOrder = { 1209 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(10-12)% increased Intelligence" }, } }, + ["SynthesisImplicitPercentIntelligenceTrinket3_"] = { type = "Synthesis", affix = "", "(13-15)% increased Intelligence", statOrder = { 1209 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(13-15)% increased Intelligence" }, } }, + ["SynthesisImplicitDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Intelligence", statOrder = { 6143 }, level = 60, group = "DamagePer15Intelligence", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } }, + ["SynthesisImplicitAddedLightningDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, + ["SynthesisImplicitAddedLightningDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4922 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, + ["SynthesisImplicitSpellDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10302 }, level = 55, group = "SpellDamagePer16Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } }, + ["SynthesisImplicitSpellDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2772 }, level = 55, group = "SpellDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } }, + ["SynthesisImplicitDamageTakenPer250Intelligence1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Intelligence", statOrder = { 6196 }, level = 60, group = "DamageTakenPer250Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3522931817] = { "1% reduced Damage taken per 250 Intelligence" }, } }, + ["SynthesisImplicitAllAttributes1"] = { type = "Synthesis", affix = "", "+(6-7) to all Attributes", statOrder = { 1199 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(6-7) to all Attributes" }, } }, + ["SynthesisImplicitAllAttributes2"] = { type = "Synthesis", affix = "", "+(8-9) to all Attributes", statOrder = { 1199 }, level = 15, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-9) to all Attributes" }, } }, + ["SynthesisImplicitAllAttributes3"] = { type = "Synthesis", affix = "", "+(10-12) to all Attributes", statOrder = { 1199 }, level = 24, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-12) to all Attributes" }, } }, + ["SynthesisImplicitPercentAllAttributes1"] = { type = "Synthesis", affix = "", "2% increased Attributes", statOrder = { 1206 }, level = 48, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "2% increased Attributes" }, } }, + ["SynthesisImplicitPercentAllAttributes2"] = { type = "Synthesis", affix = "", "3% increased Attributes", statOrder = { 1206 }, level = 56, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "3% increased Attributes" }, } }, + ["SynthesisImplicitAccuracy1"] = { type = "Synthesis", affix = "", "(10-11)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-11)% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitAccuracy2"] = { type = "Synthesis", affix = "", "(12-13)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 15, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(12-13)% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitAccuracy3"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 24, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(14-15)% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitAccuracy4"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 36, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(16-17)% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitAccuracy5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 48, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(18-20)% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitAccuracyJewel1"] = { type = "Synthesis", affix = "", "+(21-35) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(21-35) to Accuracy Rating" }, } }, + ["SynthesisImplicitAccuracyJewel2"] = { type = "Synthesis", affix = "", "+(36-50) to Accuracy Rating", statOrder = { 1457 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(36-50) to Accuracy Rating" }, } }, + ["SynthesisImplicitFlatAccuracy1_"] = { type = "Synthesis", affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1457 }, level = 48, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(150-250) to Accuracy Rating" }, } }, + ["SynthesisImplicitFlatAccuracy2"] = { type = "Synthesis", affix = "", "+(251-350) to Accuracy Rating", statOrder = { 1457 }, level = 56, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-350) to Accuracy Rating" }, } }, + ["SynthesisImplicitWeaponAccuracy1"] = { type = "Synthesis", affix = "", "(10-15)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(10-15)% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitWeaponAccuracy2"] = { type = "Synthesis", affix = "", "(20-25)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 15, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-25)% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitWeaponAccuracy3"] = { type = "Synthesis", affix = "", "(30-35)% increased Global Accuracy Rating", statOrder = { 1458 }, level = 24, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(30-35)% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitWeaponAccuracyHigh1"] = { type = "Synthesis", affix = "", "100% increased Global Accuracy Rating", statOrder = { 1458 }, level = 65, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "100% increased Global Accuracy Rating" }, } }, + ["SynthesisImplicitMaceAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1466 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3208450870] = { "(2-3)% increased Accuracy Rating with Maces or Sceptres" }, } }, + ["SynthesisImplicitAxeAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Axes", statOrder = { 1462 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2538120572] = { "(2-3)% increased Accuracy Rating with Axes" }, } }, + ["SynthesisImplicitSwordAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Swords", statOrder = { 1468 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2090868905] = { "(2-3)% increased Accuracy Rating with Swords" }, } }, + ["SynthesisImplicitBowAccuracyRatingJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Bows", statOrder = { 1467 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(2-3)% increased Accuracy Rating with Bows" }, } }, + ["SynthesisImplicitClawAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Claws", statOrder = { 1464 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1297965523] = { "(2-3)% increased Accuracy Rating with Claws" }, } }, + ["SynthesisImplicitDaggerAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Daggers", statOrder = { 1465 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2054715690] = { "(2-3)% increased Accuracy Rating with Daggers" }, } }, + ["SynthesisImplicitWandAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Wands", statOrder = { 1469 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2150183156] = { "(2-3)% increased Accuracy Rating with Wands" }, } }, + ["SynthesisImplicitStaffAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Staves", statOrder = { 1463 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1617235962] = { "(2-3)% increased Accuracy Rating with Staves" }, } }, + ["SynthesisImplicitMaceAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1466 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3208450870] = { "(4-5)% increased Accuracy Rating with Maces or Sceptres" }, } }, + ["SynthesisImplicitAxeAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Axes", statOrder = { 1462 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2538120572] = { "(4-5)% increased Accuracy Rating with Axes" }, } }, + ["SynthesisImplicitSwordAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Swords", statOrder = { 1468 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2090868905] = { "(4-5)% increased Accuracy Rating with Swords" }, } }, + ["SynthesisImplicitBowAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Bows", statOrder = { 1467 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(4-5)% increased Accuracy Rating with Bows" }, } }, + ["SynthesisImplicitClawAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Claws", statOrder = { 1464 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1297965523] = { "(4-5)% increased Accuracy Rating with Claws" }, } }, + ["SynthesisImplicitDaggerAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Daggers", statOrder = { 1465 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2054715690] = { "(4-5)% increased Accuracy Rating with Daggers" }, } }, + ["SynthesisImplicitWandAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Wands", statOrder = { 1469 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2150183156] = { "(4-5)% increased Accuracy Rating with Wands" }, } }, + ["SynthesisImplicitStaffAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Staves", statOrder = { 1463 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1617235962] = { "(4-5)% increased Accuracy Rating with Staves" }, } }, + ["SynthesisImplicitIncreasedArmour1_"] = { type = "Synthesis", affix = "", "(15-18)% increased Armour", statOrder = { 1564 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-18)% increased Armour" }, } }, + ["SynthesisImplicitIncreasedArmour2_"] = { type = "Synthesis", affix = "", "(19-22)% increased Armour", statOrder = { 1564 }, level = 15, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(19-22)% increased Armour" }, } }, + ["SynthesisImplicitIncreasedArmour3"] = { type = "Synthesis", affix = "", "(23-26)% increased Armour", statOrder = { 1564 }, level = 24, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(23-26)% increased Armour" }, } }, + ["SynthesisImplicitIncreasedArmour4"] = { type = "Synthesis", affix = "", "(27-30)% increased Armour", statOrder = { 1564 }, level = 36, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-30)% increased Armour" }, } }, + ["SynthesisImplicitIncreasedArmour5_"] = { type = "Synthesis", affix = "", "(30-35)% increased Armour", statOrder = { 1564 }, level = 48, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(30-35)% increased Armour" }, } }, + ["SynthesisImplicitFlatArmour1"] = { type = "Synthesis", affix = "", "+(15-20) to Armour", statOrder = { 1562 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(15-20) to Armour" }, } }, + ["SynthesisImplicitFlatArmour2"] = { type = "Synthesis", affix = "", "+(21-30) to Armour", statOrder = { 1562 }, level = 15, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(21-30) to Armour" }, } }, + ["SynthesisImplicitFlatArmour3"] = { type = "Synthesis", affix = "", "+(31-40) to Armour", statOrder = { 1562 }, level = 24, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(31-40) to Armour" }, } }, + ["SynthesisImplicitFlatArmour4"] = { type = "Synthesis", affix = "", "+(41-55) to Armour", statOrder = { 1562 }, level = 36, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(41-55) to Armour" }, } }, + ["SynthesisImplicitFlatArmour5"] = { type = "Synthesis", affix = "", "+(56-70) to Armour", statOrder = { 1562 }, level = 48, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(56-70) to Armour" }, } }, + ["SynthesisImplicitAdditionalPhysReduction1"] = { type = "Synthesis", affix = "", "2% additional Physical Damage Reduction", statOrder = { 2296 }, level = 36, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "2% additional Physical Damage Reduction" }, } }, + ["SynthesisImplicitAdditionalPhysReduction2"] = { type = "Synthesis", affix = "", "3% additional Physical Damage Reduction", statOrder = { 2296 }, level = 48, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "3% additional Physical Damage Reduction" }, } }, + ["SynthesisImplicitAdditionalPhysReduction3"] = { type = "Synthesis", affix = "", "4% additional Physical Damage Reduction", statOrder = { 2296 }, level = 56, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, + ["SynthesisImplicitGlobalArmour1"] = { type = "Synthesis", affix = "", "(7-9)% increased Armour", statOrder = { 1563 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(7-9)% increased Armour" }, } }, + ["SynthesisImplicitGlobalArmour2"] = { type = "Synthesis", affix = "", "(10-12)% increased Armour", statOrder = { 1563 }, level = 15, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-12)% increased Armour" }, } }, + ["SynthesisImplicitGlobalArmour3"] = { type = "Synthesis", affix = "", "(13-15)% increased Armour", statOrder = { 1563 }, level = 24, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(13-15)% increased Armour" }, } }, + ["SynthesisImplicitGlobalArmourTwoHand1__"] = { type = "Synthesis", affix = "", "(14-16)% increased Armour", statOrder = { 1563 }, level = 36, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-16)% increased Armour" }, } }, + ["SynthesisImplicitGlobalArmourTwoHand2"] = { type = "Synthesis", affix = "", "(17-19)% increased Armour", statOrder = { 1563 }, level = 48, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(17-19)% increased Armour" }, } }, + ["SynthesisImplicitGlobalArmourTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Armour", statOrder = { 1563 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(20-22)% increased Armour" }, } }, + ["SynthesisImplicitGlobalArmourJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Armour", statOrder = { 1563 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(3-4)% increased Armour" }, } }, + ["SynthesisImplicitGlobalArmourJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Armour", statOrder = { 1563 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(5-6)% increased Armour" }, } }, + ["SynthesisImplicitReducedDamageFromCrits1"] = { type = "Synthesis", affix = "", "You take (15-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1535 }, level = 55, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-25)% reduced Extra Damage from Critical Strikes" }, } }, + ["SynthesisImplicitChanceForDoubleArmour1"] = { type = "Synthesis", affix = "", "(15-20)% chance to Defend with 200% of Armour", statOrder = { 5749 }, level = 65, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(15-20)% chance to Defend with 200% of Armour" }, } }, + ["SynthesisImplicitIncreasedEvasion1"] = { type = "Synthesis", affix = "", "(15-18)% increased Evasion Rating", statOrder = { 1572 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-18)% increased Evasion Rating" }, } }, + ["SynthesisImplicitIncreasedEvasion2"] = { type = "Synthesis", affix = "", "(19-22)% increased Evasion Rating", statOrder = { 1572 }, level = 15, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(19-22)% increased Evasion Rating" }, } }, + ["SynthesisImplicitIncreasedEvasion3"] = { type = "Synthesis", affix = "", "(23-26)% increased Evasion Rating", statOrder = { 1572 }, level = 24, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(23-26)% increased Evasion Rating" }, } }, + ["SynthesisImplicitIncreasedEvasion4"] = { type = "Synthesis", affix = "", "(27-30)% increased Evasion Rating", statOrder = { 1572 }, level = 36, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-30)% increased Evasion Rating" }, } }, + ["SynthesisImplicitIncreasedEvasion5"] = { type = "Synthesis", affix = "", "(30-35)% increased Evasion Rating", statOrder = { 1572 }, level = 48, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(30-35)% increased Evasion Rating" }, } }, + ["SynthesisImplicitFlatEvasion1"] = { type = "Synthesis", affix = "", "+(15-20) to Evasion Rating", statOrder = { 1570 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(15-20) to Evasion Rating" }, } }, + ["SynthesisImplicitFlatEvasion2"] = { type = "Synthesis", affix = "", "+(21-30) to Evasion Rating", statOrder = { 1570 }, level = 15, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-30) to Evasion Rating" }, } }, + ["SynthesisImplicitFlatEvasion3"] = { type = "Synthesis", affix = "", "+(31-40) to Evasion Rating", statOrder = { 1570 }, level = 24, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(31-40) to Evasion Rating" }, } }, + ["SynthesisImplicitFlatEvasion4"] = { type = "Synthesis", affix = "", "+(41-55) to Evasion Rating", statOrder = { 1570 }, level = 36, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(41-55) to Evasion Rating" }, } }, + ["SynthesisImplicitFlatEvasion5"] = { type = "Synthesis", affix = "", "+(56-70) to Evasion Rating", statOrder = { 1570 }, level = 48, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(56-70) to Evasion Rating" }, } }, + ["SynthesisImplicitAdditionalEvadeChance1"] = { type = "Synthesis", affix = "", "+2% chance to Evade Attack Hits", statOrder = { 5751 }, level = 36, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+2% chance to Evade Attack Hits" }, } }, + ["SynthesisImplicitAdditionalEvadeChance2"] = { type = "Synthesis", affix = "", "+3% chance to Evade Attack Hits", statOrder = { 5751 }, level = 48, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+3% chance to Evade Attack Hits" }, } }, + ["SynthesisImplicitAdditionalEvadeChance3"] = { type = "Synthesis", affix = "", "+4% chance to Evade Attack Hits", statOrder = { 5751 }, level = 56, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+4% chance to Evade Attack Hits" }, } }, + ["SynthesisImplicitGlobalEvasion1"] = { type = "Synthesis", affix = "", "(7-9)% increased Evasion Rating", statOrder = { 1571 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(7-9)% increased Evasion Rating" }, } }, + ["SynthesisImplicitGlobalEvasion2"] = { type = "Synthesis", affix = "", "(10-12)% increased Evasion Rating", statOrder = { 1571 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-12)% increased Evasion Rating" }, } }, + ["SynthesisImplicitGlobalEvasion3"] = { type = "Synthesis", affix = "", "(13-15)% increased Evasion Rating", statOrder = { 1571 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(13-15)% increased Evasion Rating" }, } }, + ["SynthesisImplicitGlobalEvasionTwoHand1_"] = { type = "Synthesis", affix = "", "(14-16)% increased Evasion Rating", statOrder = { 1571 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-16)% increased Evasion Rating" }, } }, + ["SynthesisImplicitGlobalEvasionTwoHand2_"] = { type = "Synthesis", affix = "", "(17-19)% increased Evasion Rating", statOrder = { 1571 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(17-19)% increased Evasion Rating" }, } }, + ["SynthesisImplicitGlobalEvasionTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Evasion Rating", statOrder = { 1571 }, level = 36, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(20-22)% increased Evasion Rating" }, } }, + ["SynthesisImplicitGlobalEvasionJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Evasion Rating", statOrder = { 1571 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(3-4)% increased Evasion Rating" }, } }, + ["SynthesisImplicitGlobalEvasionJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Evasion Rating", statOrder = { 1571 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(5-6)% increased Evasion Rating" }, } }, + ["SynthesisImplicitAvoidStatusAilments1"] = { type = "Synthesis", affix = "", "(10-15)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(10-15)% chance to Avoid Elemental Ailments" }, } }, + ["SynthesisImplicitAvoidStatusAilments2"] = { type = "Synthesis", affix = "", "(16-25)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-25)% chance to Avoid Elemental Ailments" }, } }, + ["SynthesisImplicitAvoidStatusAilmentsMinor1"] = { type = "Synthesis", affix = "", "(10-12)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(10-12)% chance to Avoid Elemental Ailments" }, } }, + ["SynthesisImplicitAvoidStatusAilmentsMinor2"] = { type = "Synthesis", affix = "", "(13-15)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(13-15)% chance to Avoid Elemental Ailments" }, } }, + ["SynthesisImplicitAvoidStatusAilmentsJewel1"] = { type = "Synthesis", affix = "", "(5-7)% chance to Avoid Elemental Ailments", statOrder = { 1866 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(5-7)% chance to Avoid Elemental Ailments" }, } }, + ["SynthesisImplicitBlindOnHit1"] = { type = "Synthesis", affix = "", "(10-15)% Global chance to Blind Enemies on hit", statOrder = { 2992 }, level = 65, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "(10-15)% Global chance to Blind Enemies on hit" }, } }, + ["SynthesisImplicitIncreasedEnergyShield1"] = { type = "Synthesis", affix = "", "(15-16)% increased Energy Shield", statOrder = { 1582 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-16)% increased Energy Shield" }, } }, + ["SynthesisImplicitIncreasedEnergyShield2"] = { type = "Synthesis", affix = "", "(17-18)% increased Energy Shield", statOrder = { 1582 }, level = 15, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(17-18)% increased Energy Shield" }, } }, + ["SynthesisImplicitIncreasedEnergyShield3__"] = { type = "Synthesis", affix = "", "(19-20)% increased Energy Shield", statOrder = { 1582 }, level = 24, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(19-20)% increased Energy Shield" }, } }, + ["SynthesisImplicitIncreasedEnergyShield4"] = { type = "Synthesis", affix = "", "(21-22)% increased Energy Shield", statOrder = { 1582 }, level = 36, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-22)% increased Energy Shield" }, } }, + ["SynthesisImplicitIncreasedEnergyShield5"] = { type = "Synthesis", affix = "", "(23-25)% increased Energy Shield", statOrder = { 1582 }, level = 48, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(23-25)% increased Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShield1"] = { type = "Synthesis", affix = "", "+(10-12) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-12) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShield2"] = { type = "Synthesis", affix = "", "+(13-15) to maximum Energy Shield", statOrder = { 1581 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShield3"] = { type = "Synthesis", affix = "", "+(16-18) to maximum Energy Shield", statOrder = { 1581 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(16-18) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShield4"] = { type = "Synthesis", affix = "", "+(19-21) to maximum Energy Shield", statOrder = { 1581 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(19-21) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShield5_"] = { type = "Synthesis", affix = "", "+(22-25) to maximum Energy Shield", statOrder = { 1581 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShieldMinor1"] = { type = "Synthesis", affix = "", "+(6-7) to maximum Energy Shield", statOrder = { 1581 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(6-7) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShieldMinor2_"] = { type = "Synthesis", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1581 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(8-9) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShieldMinor3_"] = { type = "Synthesis", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1581 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-11) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShieldMinor4"] = { type = "Synthesis", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1581 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(12-13) to maximum Energy Shield" }, } }, + ["SynthesisImplicitFlatEnergyShieldMinor5_"] = { type = "Synthesis", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1581 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(14-15) to maximum Energy Shield" }, } }, + ["SynthesisImplicitEnergyShieldRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (0.6-0.7)% of Energy Shield per second" }, } }, + ["SynthesisImplicitEnergyShieldRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.9)% of Energy Shield per second", statOrder = { 2672 }, level = 15, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (0.8-0.9)% of Energy Shield per second" }, } }, + ["SynthesisImplicitEnergyShieldRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2672 }, level = 24, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } }, + ["SynthesisImplicitEnergyShieldRegenJewel1_"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Energy Shield per second", statOrder = { 2672 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.2% of Energy Shield per second" }, } }, + ["SynthesisImplicitEnergyShieldJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(3-4) to maximum Energy Shield" }, } }, + ["SynthesisImplicitEnergyShieldJewel2_"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Energy Shield", statOrder = { 1580 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(5-6) to maximum Energy Shield" }, } }, + ["SynthesisImplicitEnergyShieldRechargeRate1"] = { type = "Synthesis", affix = "", "(8-9)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(8-9)% increased Energy Shield Recharge Rate" }, } }, + ["SynthesisImplicitEnergyShieldRechargeRate2_"] = { type = "Synthesis", affix = "", "(10-11)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 15, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-11)% increased Energy Shield Recharge Rate" }, } }, + ["SynthesisImplicitEnergyShieldRechargeRate3_"] = { type = "Synthesis", affix = "", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 24, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(12-15)% increased Energy Shield Recharge Rate" }, } }, + ["SynthesisImplicitEnergyShieldRechargeRateJewel1_"] = { type = "Synthesis", affix = "", "(3-5)% increased Energy Shield Recharge Rate", statOrder = { 1587 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(3-5)% increased Energy Shield Recharge Rate" }, } }, + ["SynthesisImplicitGlobalEnergyShield1"] = { type = "Synthesis", affix = "", "(4-5)% increased maximum Energy Shield", statOrder = { 1583 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-5)% increased maximum Energy Shield" }, } }, + ["SynthesisImplicitGlobalEnergyShield2"] = { type = "Synthesis", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1583 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-7)% increased maximum Energy Shield" }, } }, + ["SynthesisImplicitGlobalEnergyShield3__"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1583 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand1"] = { type = "Synthesis", affix = "", "(7-9)% increased maximum Energy Shield", statOrder = { 1583 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-9)% increased maximum Energy Shield" }, } }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand2"] = { type = "Synthesis", affix = "", "(10-13)% increased maximum Energy Shield", statOrder = { 1583 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-13)% increased maximum Energy Shield" }, } }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand3___"] = { type = "Synthesis", affix = "", "(14-16)% increased maximum Energy Shield", statOrder = { 1583 }, level = 36, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } }, + ["SynthesisImplicitEnergyShieldRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1590 }, level = 60, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, } }, + ["SynthesisImplicitEnergyShieldLeech1"] = { type = "Synthesis", affix = "", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1745 }, level = 55, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } }, + ["SynthesisImplicitEnergyShieldLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Spell Damage Leeched as Energy Shield", statOrder = { 1745 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.2% of Spell Damage Leeched as Energy Shield" }, } }, + ["SynthesisImplicitMaximumEnergyShieldLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1757 }, level = 56, group = "MaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "10% increased Maximum total Energy Shield Recovery per second from Leech" }, } }, + ["SynthesisImplicitEnergyShieldOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Energy Shield per Enemy Hit with Attacks", statOrder = { 1770 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, tradeHashes = { [211381198] = { "Gain (1-2) Energy Shield per Enemy Hit with Attacks" }, } }, + ["SynthesisImplicitEnergyShieldDelay1"] = { type = "Synthesis", affix = "", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 36, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, + ["SynthesisImplicitEnergyShieldDelay2"] = { type = "Synthesis", affix = "", "(7-10)% faster start of Energy Shield Recharge", statOrder = { 1584 }, level = 48, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(7-10)% faster start of Energy Shield Recharge" }, } }, + ["SynthesisImplicitLifeAddedAsEnergyShield1_"] = { type = "Synthesis", affix = "", "Gain 3% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9285 }, level = 65, group = "LifeAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain 3% of Maximum Life as Extra Maximum Energy Shield" }, } }, + ["SynthesisImplicitShieldAttackBlock1_"] = { type = "Synthesis", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(2-3)% Chance to Block Attack Damage" }, } }, + ["SynthesisImplicitShieldAttackBlock2"] = { type = "Synthesis", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2483 }, level = 15, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(4-5)% Chance to Block Attack Damage" }, } }, + ["SynthesisImplicitShieldSpellBlock1"] = { type = "Synthesis", affix = "", "(2-3)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(2-3)% Chance to Block Spell Damage" }, } }, + ["SynthesisImplicitShieldSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 15, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, + ["SynthesisImplicitAttackBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Attack Damage", statOrder = { 1162 }, level = 48, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "2% Chance to Block Attack Damage" }, } }, + ["SynthesisImplicitAttackBlock2"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 56, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } }, + ["SynthesisImplicitSpellBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Spell Damage", statOrder = { 1183 }, level = 48, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "2% Chance to Block Spell Damage" }, } }, + ["SynthesisImplicitSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 56, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } }, + ["SynthesisImplicitLifeOnBlock1_"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Life when you Block", statOrder = { 3094 }, level = 60, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } }, + ["SynthesisImplicitManaOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8300 }, level = 60, group = "RecoverManaPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } }, + ["SynthesisImplicitEnergyShieldOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2493 }, level = 60, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } }, + ["SynthesisImplicitMaximumAttackBlock1"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 2011 }, level = 65, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+(1-2)% to maximum Chance to Block Attack Damage" }, } }, + ["SynthesisImplicitMaximumSpellBlock1_"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Spell Damage", statOrder = { 2012 }, level = 65, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2388574377] = { "+(1-2)% to maximum Chance to Block Spell Damage" }, } }, + ["SynthesisImplicitFlatLifeOnBlock1"] = { type = "Synthesis", affix = "", "(15-25) Life gained when you Block", statOrder = { 1780 }, level = 15, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(15-25) Life gained when you Block" }, } }, + ["SynthesisImplicitFlatLifeOnBlock2"] = { type = "Synthesis", affix = "", "(26-35) Life gained when you Block", statOrder = { 1780 }, level = 24, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-35) Life gained when you Block" }, } }, + ["SynthesisImplicitFlatLifeOnBlockJewel1"] = { type = "Synthesis", affix = "", "(4-6) Life gained when you Block", statOrder = { 1780 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(4-6) Life gained when you Block" }, } }, + ["SynthesisImplicitFlatManaOnBlock1"] = { type = "Synthesis", affix = "", "(5-10) Mana gained when you Block", statOrder = { 1781 }, level = 15, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(5-10) Mana gained when you Block" }, } }, + ["SynthesisImplicitFlatManaOnBlock2"] = { type = "Synthesis", affix = "", "(11-15) Mana gained when you Block", statOrder = { 1781 }, level = 24, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(11-15) Mana gained when you Block" }, } }, + ["SynthesisImplicitFlatManaOnBlockJewel1"] = { type = "Synthesis", affix = "", "(3-5) Mana gained when you Block", statOrder = { 1781 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(3-5) Mana gained when you Block" }, } }, + ["SynthesisImplicitAttackDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, + ["SynthesisImplicitAttackDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+(6-7)% chance to Suppress Spell Damage" }, } }, + ["SynthesisImplicitSpellDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, + ["SynthesisImplicitSpellDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+(6-7)% chance to Suppress Spell Damage" }, } }, + ["SynthesisImplicitAttackDodgeMinor1"] = { type = "Synthesis", affix = "", "+1% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+1% chance to Suppress Spell Damage" }, } }, + ["SynthesisImplicitAttackDodgeMinor2"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } }, + ["SynthesisImplicitAvoidFire1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Fire Damage from Hits", statOrder = { 3409 }, level = 60, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(3-5)% chance to Avoid Fire Damage from Hits" }, } }, + ["SynthesisImplicitAvoidCold1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Cold Damage from Hits", statOrder = { 3410 }, level = 60, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(3-5)% chance to Avoid Cold Damage from Hits" }, } }, + ["SynthesisImplicitAvoidLightning1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3411 }, level = 60, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(3-5)% chance to Avoid Lightning Damage from Hits" }, } }, + ["SynthesisImplicitMaximumAttackDodge1_"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1165 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(1-2)% of Suppressed Spell Damage" }, } }, + ["SynthesisImplicitMaximumSpellDodge1"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1165 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(1-2)% of Suppressed Spell Damage" }, } }, + ["SynthesisImplicitSpellDamageSuppressed1_"] = { type = "Synthesis", affix = "", "Prevent +(2-3)% of Suppressed Spell Damage", statOrder = { 1165 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4116705863] = { "Prevent +(2-3)% of Suppressed Spell Damage" }, } }, + ["SynthesisImplicitVitalityReservation1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10692 }, level = 48, group = "VitalityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1233806203] = { "Vitality has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitVitalityReservationEfficiency1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10693 }, level = 48, group = "VitalityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3972739758] = { "Vitality has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitDeterminationReservation1"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6259 }, level = 48, group = "DeterminationReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2721871046] = { "Determination has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitDeterminationReservationEfficiency1_"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6260 }, level = 48, group = "DeterminationReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitGraceReservation1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6997 }, level = 48, group = "GraceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1803598623] = { "Grace has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitGraceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6998 }, level = 48, group = "GraceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitDisciplineReservation1_"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6275 }, level = 48, group = "DisciplineReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1692887998] = { "Discipline has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitDisciplineReservationEfficiency1___"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6276 }, level = 48, group = "DisciplineReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfFireReservation1_"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9911 }, level = 48, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfFireReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9912 }, level = 48, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfFireReservation2_"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9911 }, level = 65, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has (60-80)% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfFireReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9912 }, level = 65, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has (60-80)% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfIceReservation1_"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9914 }, level = 48, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfIceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9915 }, level = 48, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfIceReservation2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9914 }, level = 65, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has (60-80)% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfIceReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9915 }, level = 65, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has (60-80)% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfLightningReservation1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9917 }, level = 48, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfLightningReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9918 }, level = 48, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has 20% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfLightningReservation2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9917 }, level = 65, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitPurityOfLightningReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9918 }, level = 65, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency" }, } }, + ["SynthesisImplicitSocketedGemReducedReservation1_"] = { type = "Synthesis", affix = "", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 539 }, level = 60, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } }, + ["SynthesisImplicitSelfAuraEffect1_"] = { type = "Synthesis", affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3602 }, level = 56, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(10-15)% increased effect of Non-Curse Auras from your Skills" }, } }, + ["SynthesisImplicitDeterminationEffect1"] = { type = "Synthesis", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3403 }, level = 55, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (15-20)% increased Aura Effect" }, } }, + ["SynthesisImplicitGraceEffect1"] = { type = "Synthesis", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3399 }, level = 55, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (15-20)% increased Aura Effect" }, } }, + ["SynthesisImplicitDisciplineEffect1"] = { type = "Synthesis", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3404 }, level = 55, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (15-20)% increased Aura Effect" }, } }, + ["SynthesisImplicitDeterminationPhysicalDamageReduction1"] = { type = "Synthesis", affix = "", "(4-6)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4622 }, level = 65, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1873457881] = { "(4-6)% additional Physical Damage Reduction while affected by Determination" }, } }, + ["SynthesisImplicitGraceAdditionalChanceToEvade1"] = { type = "Synthesis", affix = "", "+(4-6)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5753 }, level = 65, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [969576725] = { "+(4-6)% chance to Evade Attack Hits while affected by Grace" }, } }, + ["SynthesisImplicitDisciplineEnergyShieldRegen1___"] = { type = "Synthesis", affix = "", "Regenerate (1.2-2.2)% of Energy Shield per Second while affected by Discipline", statOrder = { 6547 }, level = 65, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [991194404] = { "Regenerate (1.2-2.2)% of Energy Shield per Second while affected by Discipline" }, } }, + ["SynthesisImplicitReducedManaReservation1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2255 }, level = 60, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["SynthesisImplicitManaReservationEfficiency1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2251 }, level = 60, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["SynthesisImplicitSocketedSkillsManaMultiplier1"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 96% Cost & Reservation Multiplier", statOrder = { 541 }, level = 24, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 96% Cost & Reservation Multiplier" }, } }, + ["SynthesisImplicitSocketedSkillsManaMultiplier2"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 94% Cost & Reservation Multiplier", statOrder = { 541 }, level = 36, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 94% Cost & Reservation Multiplier" }, } }, + ["SynthesisImplicitSocketedSkillsManaMultiplier3"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 92% Cost & Reservation Multiplier", statOrder = { 541 }, level = 48, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 92% Cost & Reservation Multiplier" }, } }, + ["SynthesisImplicitGrantsPurityOfFire1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 634 }, level = 75, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 25 Purity of Fire Skill" }, } }, + ["SynthesisImplicitGrantsPurityOfIce1__"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 640 }, level = 75, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 25 Purity of Ice Skill" }, } }, + ["SynthesisImplicitGrantsPurityOfLightning1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 642 }, level = 75, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 25 Purity of Lightning Skill" }, } }, + ["SynthesisImplicitGrantsAnger1"] = { type = "Synthesis", affix = "", "Grants Level 10 Anger Skill", statOrder = { 662 }, level = 45, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 10 Anger Skill" }, } }, + ["SynthesisImplicitGrantsAnger2"] = { type = "Synthesis", affix = "", "Grants Level 15 Anger Skill", statOrder = { 662 }, level = 62, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 15 Anger Skill" }, } }, + ["SynthesisImplicitGrantsHatred1"] = { type = "Synthesis", affix = "", "Grants Level 10 Hatred Skill", statOrder = { 661 }, level = 45, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 10 Hatred Skill" }, } }, + ["SynthesisImplicitGrantsHatred2"] = { type = "Synthesis", affix = "", "Grants Level 15 Hatred Skill", statOrder = { 661 }, level = 62, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 15 Hatred Skill" }, } }, + ["SynthesisImplicitGrantsWrath1"] = { type = "Synthesis", affix = "", "Grants Level 10 Wrath Skill", statOrder = { 660 }, level = 45, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 10 Wrath Skill" }, } }, + ["SynthesisImplicitGrantsWrath2_"] = { type = "Synthesis", affix = "", "Grants Level 15 Wrath Skill", statOrder = { 660 }, level = 62, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 15 Wrath Skill" }, } }, + ["SynthesisImplicitHasSocket1_"] = { type = "Synthesis", affix = "", "Has 1 Socket", statOrder = { 70 }, level = 75, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 1 Socket" }, } }, + ["SynthesisImplicitCurseDuration1"] = { type = "Synthesis", affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 6084 }, level = 36, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (10-15)% increased Skill Effect Duration" }, } }, + ["SynthesisImplicitCurseDuration2"] = { type = "Synthesis", affix = "", "Curse Skills have (16-20)% increased Skill Effect Duration", statOrder = { 6084 }, level = 48, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (16-20)% increased Skill Effect Duration" }, } }, + ["SynthesisImplicitCurseEffect1"] = { type = "Synthesis", affix = "", "(6-10)% increased Effect of your Curses", statOrder = { 2622 }, level = 60, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(6-10)% increased Effect of your Curses" }, } }, + ["SynthesisImplicitCurseOnHitFlammability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2556 }, level = 45, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, + ["SynthesisImplicitCurseOnHitFlammability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2556 }, level = 56, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } }, + ["SynthesisImplicitCurseOnHitFrostbite1_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2557 }, level = 45, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, + ["SynthesisImplicitCurseOnHitFrostbite2_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2557 }, level = 56, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } }, + ["SynthesisImplicitCurseOnHitConductivity1"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2553 }, level = 45, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, + ["SynthesisImplicitCurseOnHitConductivity2"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2553 }, level = 56, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } }, + ["SynthesisImplicitCurseOnHitVulnerability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2549 }, level = 45, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["SynthesisImplicitCurseOnHitVulnerability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2549 }, level = 56, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } }, + ["SynthesisImplicitCurseOnHitDespair1"] = { type = "Synthesis", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2554 }, level = 45, group = "CurseOnHitDespair", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } }, + ["SynthesisImplicitCurseOnHitElementalWeakness1__"] = { type = "Synthesis", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2551 }, level = 45, group = "CurseOnHitLevelElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } }, + ["SynthesisImplicitCurseEffectFlammability1"] = { type = "Synthesis", affix = "", "(20-30)% increased Flammability Curse Effect", statOrder = { 4049 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "(20-30)% increased Flammability Curse Effect" }, } }, + ["SynthesisImplicitCurseEffectFlammabilityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Flammability Curse Effect", statOrder = { 4049 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "(10-15)% increased Flammability Curse Effect" }, } }, + ["SynthesisImplicitCurseEffectFrostbite1"] = { type = "Synthesis", affix = "", "(20-30)% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "(20-30)% increased Frostbite Curse Effect" }, } }, + ["SynthesisImplicitCurseEffectFrostbiteOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Frostbite Curse Effect", statOrder = { 4050 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "(10-15)% increased Frostbite Curse Effect" }, } }, + ["SynthesisImplicitCurseEffectConductivity1"] = { type = "Synthesis", affix = "", "(20-30)% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "(20-30)% increased Conductivity Curse Effect" }, } }, + ["SynthesisImplicitCurseEffectConductivityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Conductivity Curse Effect", statOrder = { 4046 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "(10-15)% increased Conductivity Curse Effect" }, } }, + ["SynthesisImplicitCurseEffectVulnerability1_"] = { type = "Synthesis", affix = "", "(20-30)% increased Vulnerability Curse Effect", statOrder = { 4052 }, level = 55, group = "CurseEffectVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "(20-30)% increased Vulnerability Curse Effect" }, } }, + ["SynthesisImplicitCurseEffectElementalWeakness1"] = { type = "Synthesis", affix = "", "(20-30)% increased Elemental Weakness Curse Effect", statOrder = { 4047 }, level = 55, group = "CurseEffectElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "(20-30)% increased Elemental Weakness Curse Effect" }, } }, + ["SynthesisImplicitDamageAffectedByAuras1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (7-9)% increased Damage", statOrder = { 4105 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (7-9)% increased Damage" }, } }, + ["SynthesisImplicitDamageAffectedByAuras2"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (10-12)% increased Damage", statOrder = { 4105 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (10-12)% increased Damage" }, } }, + ["SynthesisImplicitDamageAffectedByAuras3_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-15)% increased Damage", statOrder = { 4105 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (13-15)% increased Damage" }, } }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-16)% increased Damage", statOrder = { 4105 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (13-16)% increased Damage" }, } }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand2_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (17-21)% increased Damage", statOrder = { 4105 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (17-21)% increased Damage" }, } }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand3"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (22-25)% increased Damage", statOrder = { 4105 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1419713278] = { "You and nearby Allies deal (22-25)% increased Damage" }, } }, + ["SynthesisImplicitDamageWhileLeeching1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage while Leeching", statOrder = { 3097 }, level = 36, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(10-12)% increased Damage while Leeching" }, } }, + ["SynthesisImplicitDamageWhileLeeching2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage while Leeching", statOrder = { 3097 }, level = 48, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(13-15)% increased Damage while Leeching" }, } }, + ["SynthesisImplicitDamageWhileLeechingLife1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Life", statOrder = { 1240 }, level = 1, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3591306273] = { "(13-16)% increased Damage while Leeching Life" }, } }, + ["SynthesisImplicitDamageWhileLeechingLife2__"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Life", statOrder = { 1240 }, level = 15, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3591306273] = { "(17-21)% increased Damage while Leeching Life" }, } }, + ["SynthesisImplicitDamageWhileLeechingLife3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Life", statOrder = { 1240 }, level = 24, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3591306273] = { "(22-25)% increased Damage while Leeching Life" }, } }, + ["SynthesisImplicitDamageWhileLeechingMana1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Mana", statOrder = { 1242 }, level = 1, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1994684426] = { "(13-16)% increased Damage while Leeching Mana" }, } }, + ["SynthesisImplicitDamageWhileLeechingMana2_"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Mana", statOrder = { 1242 }, level = 15, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1994684426] = { "(17-21)% increased Damage while Leeching Mana" }, } }, + ["SynthesisImplicitDamageWhileLeechingMana3_"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Mana", statOrder = { 1242 }, level = 24, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1994684426] = { "(22-25)% increased Damage while Leeching Mana" }, } }, + ["SynthesisImplicitDamageDuringFlaskEffect1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage during any Flask Effect", statOrder = { 4118 }, level = 36, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [2947215268] = { "(10-12)% increased Damage during any Flask Effect" }, } }, + ["SynthesisImplicitDamageDuringFlaskEffect2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage during any Flask Effect", statOrder = { 4118 }, level = 48, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [2947215268] = { "(13-15)% increased Damage during any Flask Effect" }, } }, + ["SynthesisImplicitDamageWithTriggeredSpells1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (10-12)% increased Spell Damage", statOrder = { 10583 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-12)% increased Spell Damage" }, } }, + ["SynthesisImplicitDamageWithTriggeredSpells2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (13-15)% increased Spell Damage", statOrder = { 10583 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (13-15)% increased Spell Damage" }, } }, + ["SynthesisImplicitVaalSkillDamage1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 24, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(13-16)% increased Damage with Vaal Skills" }, } }, + ["SynthesisImplicitVaalSkillDamage2"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(17-21)% increased Damage with Vaal Skills" }, } }, + ["SynthesisImplicitVaalSkillDamage3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(22-25)% increased Damage with Vaal Skills" }, } }, + ["SynthesisImplicitVaalSkillDamageWeapon1"] = { type = "Synthesis", affix = "", "(25-30)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(25-30)% increased Damage with Vaal Skills" }, } }, + ["SynthesisImplicitVaalSkillDamageWeapon2"] = { type = "Synthesis", affix = "", "(31-35)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(31-35)% increased Damage with Vaal Skills" }, } }, + ["SynthesisImplicitVaalSkillDamageWeaponTwoHand1"] = { type = "Synthesis", affix = "", "(36-44)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(36-44)% increased Damage with Vaal Skills" }, } }, + ["SynthesisImplicitVaalSkillDamageWeaponTwoHand2"] = { type = "Synthesis", affix = "", "(45-51)% increased Damage with Vaal Skills", statOrder = { 3129 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(45-51)% increased Damage with Vaal Skills" }, } }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeapon1_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (19-22)% increased Spell Damage", statOrder = { 10583 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (19-22)% increased Spell Damage" }, } }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeapon2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (23-26)% increased Spell Damage", statOrder = { 10583 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (23-26)% increased Spell Damage" }, } }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (27-32)% increased Spell Damage", statOrder = { 10583 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (27-32)% increased Spell Damage" }, } }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand2_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (33-38)% increased Spell Damage", statOrder = { 10583 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (33-38)% increased Spell Damage" }, } }, + ["SynthesisImplicitDoubleDamageChanceOneHand1"] = { type = "Synthesis", affix = "", "2% chance to deal Double Damage", statOrder = { 5737 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "2% chance to deal Double Damage" }, } }, + ["SynthesisImplicitDoubleDamageChanceOneHand2"] = { type = "Synthesis", affix = "", "3% chance to deal Double Damage", statOrder = { 5737 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "3% chance to deal Double Damage" }, } }, + ["SynthesisImplicitDoubleDamageChanceTwoHand1"] = { type = "Synthesis", affix = "", "4% chance to deal Double Damage", statOrder = { 5737 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "4% chance to deal Double Damage" }, } }, + ["SynthesisImplicitDoubleDamageChanceTwoHand2_"] = { type = "Synthesis", affix = "", "5% chance to deal Double Damage", statOrder = { 5737 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "5% chance to deal Double Damage" }, } }, + ["SynthesisImplicitAreaDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Area Damage", statOrder = { 2058 }, level = 36, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(10-12)% increased Area Damage" }, } }, + ["SynthesisImplicitAreaDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Area Damage", statOrder = { 2058 }, level = 48, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4251717817] = { "(13-15)% increased Area Damage" }, } }, + ["SynthesisImplicitProjectileDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Projectile Damage", statOrder = { 2019 }, level = 36, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(10-12)% increased Projectile Damage" }, } }, + ["SynthesisImplicitProjectileDamage2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Projectile Damage", statOrder = { 2019 }, level = 48, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(13-15)% increased Projectile Damage" }, } }, + ["SynthesisImplicitMeleeDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Melee Damage", statOrder = { 1257 }, level = 36, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(10-12)% increased Melee Damage" }, } }, + ["SynthesisImplicitMeleeDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Melee Damage", statOrder = { 1257 }, level = 48, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(13-15)% increased Melee Damage" }, } }, + ["SynthesisImplicitMinionDamage1"] = { type = "Synthesis", affix = "", "Minions deal 8% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal 8% increased Damage" }, } }, + ["SynthesisImplicitMinionDamage2_"] = { type = "Synthesis", affix = "", "Minions deal (9-10)% increased Damage", statOrder = { 1996 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (9-10)% increased Damage" }, } }, + ["SynthesisImplicitMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (11-12)% increased Damage", statOrder = { 1996 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-12)% increased Damage" }, } }, + ["SynthesisImplicitMinionDamage4"] = { type = "Synthesis", affix = "", "Minions deal (13-14)% increased Damage", statOrder = { 1996 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-14)% increased Damage" }, } }, + ["SynthesisImplicitMinionDamage5"] = { type = "Synthesis", affix = "", "Minions deal (15-16)% increased Damage", statOrder = { 1996 }, level = 48, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-16)% increased Damage" }, } }, + ["SynthesisImplicitWeaponMinionDamage1_"] = { type = "Synthesis", affix = "", "Minions deal (19-22)% increased Damage", statOrder = { 1996 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-22)% increased Damage" }, } }, + ["SynthesisImplicitWeaponMinionDamage2"] = { type = "Synthesis", affix = "", "Minions deal (23-26)% increased Damage", statOrder = { 1996 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } }, + ["SynthesisImplicitWeaponMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (27-30)% increased Damage", statOrder = { 1996 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } }, + ["SynthesisImplicitWeaponMinionDamageTwoHand1"] = { type = "Synthesis", affix = "", "Minions deal (27-32)% increased Damage", statOrder = { 1996 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-32)% increased Damage" }, } }, + ["SynthesisImplicitWeaponMinionDamageTwoHand2"] = { type = "Synthesis", affix = "", "Minions deal (33-38)% increased Damage", statOrder = { 1996 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (33-38)% increased Damage" }, } }, + ["SynthesisImplicitWeaponMinionDamageTwoHand3"] = { type = "Synthesis", affix = "", "Minions deal (39-44)% increased Damage", statOrder = { 1996 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (39-44)% increased Damage" }, } }, + ["SynthesisImplicitMinionDamageJewel1_"] = { type = "Synthesis", affix = "", "Minions deal (2-3)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (2-3)% increased Damage" }, } }, + ["SynthesisImplicitMinionDamageJewel2_"] = { type = "Synthesis", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1996 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-5)% increased Damage" }, } }, + ["SynthesisImplicitZombieDamage1"] = { type = "Synthesis", affix = "", "Raised Zombies deal (30-35)% increased Damage", statOrder = { 3679 }, level = 55, group = "ZombieIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [2228518621] = { "Raised Zombies deal (30-35)% increased Damage" }, } }, + ["SynthesisImplicitSkeletonDamage1_"] = { type = "Synthesis", affix = "", "Skeletons deal (30-35)% increased Damage", statOrder = { 3695 }, level = 55, group = "SkeletonDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3059357595] = { "Skeletons deal (30-35)% increased Damage" }, } }, + ["SynthesisImplicitSpectreDamage1"] = { type = "Synthesis", affix = "", "Raised Spectres have (30-35)% increased Damage", statOrder = { 3493 }, level = 55, group = "SpectreDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [3645693773] = { "Raised Spectres have (30-35)% increased Damage" }, } }, + ["SynthesisImplicitAnimateGuardianResistances1"] = { type = "Synthesis", affix = "", "+15% to Animated Guardian Elemental Resistances", statOrder = { 4025 }, level = 55, group = "AnimateGuardianResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [2094281311] = { "+15% to Animated Guardian Elemental Resistances" }, } }, + ["SynthesisImplicitItemDropsOnDeathAnimateGuardian1_"] = { type = "Synthesis", affix = "", "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 2585 }, level = 60, group = "ItemDropsOnGuardianDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3909846940] = { "Item drops on Death if Equipped by an Animated Guardian" }, } }, + ["SynthesisImplicitMinionLife1_"] = { type = "Synthesis", affix = "", "Minions have (7-9)% increased maximum Life", statOrder = { 1789 }, level = 15, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (7-9)% increased maximum Life" }, } }, + ["SynthesisImplicitMinionLife2__"] = { type = "Synthesis", affix = "", "Minions have (10-12)% increased maximum Life", statOrder = { 1789 }, level = 24, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (10-12)% increased maximum Life" }, } }, + ["SynthesisImplicitMinionLife3"] = { type = "Synthesis", affix = "", "Minions have (13-15)% increased maximum Life", statOrder = { 1789 }, level = 36, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-15)% increased maximum Life" }, } }, + ["SynthesisImplicitMinionLifeRegen1"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.3% of Life per second", statOrder = { 2945 }, level = 36, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 0.3% of Life per second" }, } }, + ["SynthesisImplicitMinionLifeRegen2"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.5% of Life per second", statOrder = { 2945 }, level = 48, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate 0.5% of Life per second" }, } }, + ["SynthesisImplicitMinionLifeJewel1"] = { type = "Synthesis", affix = "", "Minions have (2-3)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (2-3)% increased maximum Life" }, } }, + ["SynthesisImplicitMinionLifeJewel2"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased maximum Life", statOrder = { 1789 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-5)% increased maximum Life" }, } }, + ["SynthesisImplicitMinionResistanceJewel1"] = { type = "Synthesis", affix = "", "Minions have +3% to all Elemental Resistances", statOrder = { 2946 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +3% to all Elemental Resistances" }, } }, + ["SynthesisImplicitMinionResistanceJewel2"] = { type = "Synthesis", affix = "", "Minions have +(4-5)% to all Elemental Resistances", statOrder = { 2946 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(4-5)% to all Elemental Resistances" }, } }, + ["SynthesisImplicitMinionMovementSpeed1"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased Movement Speed", statOrder = { 1792 }, level = 24, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (4-5)% increased Movement Speed" }, } }, + ["SynthesisImplicitMinionMovementSpeed2"] = { type = "Synthesis", affix = "", "Minions have (6-7)% increased Movement Speed", statOrder = { 1792 }, level = 36, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (6-7)% increased Movement Speed" }, } }, + ["SynthesisImplicitMinionMovementSpeed3"] = { type = "Synthesis", affix = "", "Minions have (8-10)% increased Movement Speed", statOrder = { 1792 }, level = 48, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (8-10)% increased Movement Speed" }, } }, + ["SynthesisImplicitMinionMovementSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (1-2)% increased Movement Speed" }, } }, + ["SynthesisImplicitMinionMovementSpeedJewel2_"] = { type = "Synthesis", affix = "", "Minions have 3% increased Movement Speed", statOrder = { 1792 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have 3% increased Movement Speed" }, } }, + ["SynthesisImplicitMinionAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Attack Speed", statOrder = { 2941 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (1-2)% increased Attack Speed" }, } }, + ["SynthesisImplicitMinionAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Attack Speed", statOrder = { 2941 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have 3% increased Attack Speed" }, } }, + ["SynthesisImplicitMinionCastSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Cast Speed", statOrder = { 2942 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [4000101551] = { "Minions have (1-2)% increased Cast Speed" }, } }, + ["SynthesisImplicitMinionCastSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Cast Speed", statOrder = { 2942 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [4000101551] = { "Minions have 3% increased Cast Speed" }, } }, + ["SynthesisImplicitMinionAccuracyJewel1"] = { type = "Synthesis", affix = "", "2% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "2% increased Minion Accuracy Rating" }, } }, + ["SynthesisImplicitMinionAccuracyJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Minion Accuracy Rating", statOrder = { 9397 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(3-4)% increased Minion Accuracy Rating" }, } }, + ["SynthesisImplicitEnduranceChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Endurance Charge Duration", statOrder = { 2148 }, level = 45, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(8-11)% increased Endurance Charge Duration" }, } }, + ["SynthesisImplicitEnduranceChargeDuration2__"] = { type = "Synthesis", affix = "", "(12-15)% increased Endurance Charge Duration", statOrder = { 2148 }, level = 50, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(12-15)% increased Endurance Charge Duration" }, } }, + ["SynthesisImplicitEnduranceChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2655 }, level = 55, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "(5-10)% chance to gain an Endurance Charge on Kill" }, } }, + ["SynthesisImplicitEnduranceChargeGeneration1"] = { type = "Synthesis", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6838 }, level = 60, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, + ["SynthesisImplicitMinimumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Endurance Charges", statOrder = { 1826 }, level = 55, group = "MinimumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3706959521] = { "+(1-2) to Minimum Endurance Charges" }, } }, + ["SynthesisImplicitMaximumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1827 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["SynthesisImplicitDamagePerEnduranceChargeMinor1"] = { type = "Synthesis", affix = "", "2% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 40, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "2% increased Damage per Endurance Charge" }, } }, + ["SynthesisImplicitDamagePerEnduranceCharge1"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "(3-4)% increased Damage per Endurance Charge" }, } }, + ["SynthesisImplicitDamagePerEnduranceCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "(4-5)% increased Damage per Endurance Charge" }, } }, + ["SynthesisImplicitLifeRegenPerEnduranceCharge1____"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1599 }, level = 50, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } }, + ["SynthesisImplicitFrenzyChargeDuration1_"] = { type = "Synthesis", affix = "", "(8-11)% increased Frenzy Charge Duration", statOrder = { 2150 }, level = 45, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(8-11)% increased Frenzy Charge Duration" }, } }, + ["SynthesisImplicitFrenzyChargeDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Frenzy Charge Duration", statOrder = { 2150 }, level = 50, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(12-15)% increased Frenzy Charge Duration" }, } }, + ["SynthesisImplicitFrenzyChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2657 }, level = 55, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(5-10)% chance to gain a Frenzy Charge on Kill" }, } }, + ["SynthesisImplicitFrenzyChargeGeneration1"] = { type = "Synthesis", affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1856 }, level = 60, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, + ["SynthesisImplicitMinimumFrenzyCharge1_"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Frenzy Charges", statOrder = { 1831 }, level = 55, group = "MinimumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [658456881] = { "+(1-2) to Minimum Frenzy Charges" }, } }, + ["SynthesisImplicitMaximumFrenzyCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1832 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["SynthesisImplicitDamagePerFrenzyChargeMinor1_"] = { type = "Synthesis", affix = "", "2% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 40, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "2% increased Damage per Frenzy Charge" }, } }, + ["SynthesisImplicitDamagePerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "(3-4)% increased Damage per Frenzy Charge" }, } }, + ["SynthesisImplicitDamagePerFrenzyCharge2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "(4-5)% increased Damage per Frenzy Charge" }, } }, + ["SynthesisImplicitEvasionPerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "6% increased Evasion Rating per Frenzy Charge", statOrder = { 1578 }, level = 50, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "6% increased Evasion Rating per Frenzy Charge" }, } }, + ["SynthesisImplicitPowerChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Power Charge Duration", statOrder = { 2165 }, level = 45, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(8-11)% increased Power Charge Duration" }, } }, + ["SynthesisImplicitPowerChargeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Power Charge Duration", statOrder = { 2165 }, level = 50, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(12-15)% increased Power Charge Duration" }, } }, + ["SynthesisImplicitPowerChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2659 }, level = 55, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } }, + ["SynthesisImplicitPowerChargeGeneration1_"] = { type = "Synthesis", affix = "", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1853 }, level = 60, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, } }, + ["SynthesisImplicitMinimumPowerCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Power Charges", statOrder = { 1836 }, level = 55, group = "MinimumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1999711879] = { "+(1-2) to Minimum Power Charges" }, } }, + ["SynthesisImplicitMaximumPowerCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Power Charges", statOrder = { 1837 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["SynthesisImplicitDamagePerPowerChargeMinor1___"] = { type = "Synthesis", affix = "", "2% increased Damage per Power Charge", statOrder = { 6152 }, level = 40, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "2% increased Damage per Power Charge" }, } }, + ["SynthesisImplicitDamagePerPowerCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Power Charge", statOrder = { 6152 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "(3-4)% increased Damage per Power Charge" }, } }, + ["SynthesisImplicitDamagePerPowerCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Power Charge", statOrder = { 6152 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "(4-5)% increased Damage per Power Charge" }, } }, + ["SynthesisImplicitSpellDamagePerPowerCharge1"] = { type = "Synthesis", affix = "", "6% increased Spell Damage per Power Charge", statOrder = { 2163 }, level = 50, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "6% increased Spell Damage per Power Charge" }, } }, + ["SynthesisImplicitMovementVelocity1"] = { type = "Synthesis", affix = "", "4% increased Movement Speed", statOrder = { 1821 }, level = 24, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "4% increased Movement Speed" }, } }, + ["SynthesisImplicitMovementVelocity2"] = { type = "Synthesis", affix = "", "(5-6)% increased Movement Speed", statOrder = { 1821 }, level = 36, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(5-6)% increased Movement Speed" }, } }, + ["SynthesisImplicitMovementVelocity3___"] = { type = "Synthesis", affix = "", "(7-8)% increased Movement Speed", statOrder = { 1821 }, level = 48, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(7-8)% increased Movement Speed" }, } }, + ["SynthesisImplicitTrinketMovementVelocity1"] = { type = "Synthesis", affix = "", "(4-5)% increased Movement Speed", statOrder = { 1821 }, level = 45, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(4-5)% increased Movement Speed" }, } }, + ["SynthesisImplicitMovementVelocityJewel1___"] = { type = "Synthesis", affix = "", "1% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "1% increased Movement Speed" }, } }, + ["SynthesisImplicitMovementVelocityJewel2"] = { type = "Synthesis", affix = "", "2% increased Movement Speed", statOrder = { 1821 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "2% increased Movement Speed" }, } }, + ["SynthesisImplicitOnslaught1"] = { type = "Synthesis", affix = "", "Onslaught", statOrder = { 3633 }, level = 60, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, + ["SynthesisImplicitProjectileSpeed1"] = { type = "Synthesis", affix = "", "(9-10)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(9-10)% increased Projectile Speed" }, } }, + ["SynthesisImplicitProjectileSpeed2"] = { type = "Synthesis", affix = "", "(11-12)% increased Projectile Speed", statOrder = { 1819 }, level = 15, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(11-12)% increased Projectile Speed" }, } }, + ["SynthesisImplicitProjectileSpeed3"] = { type = "Synthesis", affix = "", "(13-14)% increased Projectile Speed", statOrder = { 1819 }, level = 24, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(13-14)% increased Projectile Speed" }, } }, + ["SynthesisImplicitProjectileSpeed4"] = { type = "Synthesis", affix = "", "(15-17)% increased Projectile Speed", statOrder = { 1819 }, level = 36, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(15-17)% increased Projectile Speed" }, } }, + ["SynthesisImplicitProjectileSpeed5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Projectile Speed", statOrder = { 1819 }, level = 48, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-20)% increased Projectile Speed" }, } }, + ["SynthesisImplicitProjectileSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(1-2)% increased Projectile Speed" }, } }, + ["SynthesisImplicitProjectileSpeedJewel2__"] = { type = "Synthesis", affix = "", "(3-5)% increased Projectile Speed", statOrder = { 1819 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(3-5)% increased Projectile Speed" }, } }, + ["SynthesisImplicitAreaOfEffectJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(1-2)% increased Area of Effect" }, } }, + ["SynthesisImplicitAreaOfEffectJewel2"] = { type = "Synthesis", affix = "", "(3-5)% increased Area of Effect", statOrder = { 1903 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(3-5)% increased Area of Effect" }, } }, + ["SynthesisImplicitAttackSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "3% increased Attack Speed" }, } }, + ["SynthesisImplicitAttackSpeed2_"] = { type = "Synthesis", affix = "", "4% increased Attack Speed", statOrder = { 1434 }, level = 15, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "4% increased Attack Speed" }, } }, + ["SynthesisImplicitAttackSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack Speed", statOrder = { 1434 }, level = 24, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "5% increased Attack Speed" }, } }, + ["SynthesisImplicitAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "1% increased Attack Speed" }, } }, + ["SynthesisImplicitAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "2% increased Attack Speed", statOrder = { 1434 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "2% increased Attack Speed" }, } }, + ["SynthesisImplicitLocalAttackSpeed1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Attack Speed", statOrder = { 1437 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-4)% increased Attack Speed" }, } }, + ["SynthesisImplicitLocalAttackSpeed2"] = { type = "Synthesis", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1437 }, level = 15, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-6)% increased Attack Speed" }, } }, + ["SynthesisImplicitLocalAttackSpeed3"] = { type = "Synthesis", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1437 }, level = 24, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(7-8)% increased Attack Speed" }, } }, + ["SynthesisImplicitMaceIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Maces or Sceptres", statOrder = { 1448 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "(1-2)% increased Attack Speed with Maces or Sceptres" }, } }, + ["SynthesisImplicitAxeIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Axes", statOrder = { 1444 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(1-2)% increased Attack Speed with Axes" }, } }, + ["SynthesisImplicitSwordIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Swords", statOrder = { 1450 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(1-2)% increased Attack Speed with Swords" }, } }, + ["SynthesisImplicitBowIncreasedAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Bows", statOrder = { 1449 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(1-2)% increased Attack Speed with Bows" }, } }, + ["SynthesisImplicitClawIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Claws", statOrder = { 1446 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "(1-2)% increased Attack Speed with Claws" }, } }, + ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1447 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(1-2)% increased Attack Speed with Daggers" }, } }, + ["SynthesisImplicitWandIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Wands", statOrder = { 1451 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "(1-2)% increased Attack Speed with Wands" }, } }, + ["SynthesisImplicitStaffIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Staves", statOrder = { 1445 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1394963553] = { "(1-2)% increased Attack Speed with Staves" }, } }, + ["SynthesisImplicitMaceIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Maces or Sceptres", statOrder = { 1448 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2515515064] = { "3% increased Attack Speed with Maces or Sceptres" }, } }, + ["SynthesisImplicitAxeIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Axes", statOrder = { 1444 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "3% increased Attack Speed with Axes" }, } }, + ["SynthesisImplicitSwordIncreasedAttackSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Swords", statOrder = { 1450 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "3% increased Attack Speed with Swords" }, } }, + ["SynthesisImplicitBowIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Bows", statOrder = { 1449 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "3% increased Attack Speed with Bows" }, } }, + ["SynthesisImplicitClawIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Claws", statOrder = { 1446 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1421645223] = { "3% increased Attack Speed with Claws" }, } }, + ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Daggers", statOrder = { 1447 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "3% increased Attack Speed with Daggers" }, } }, + ["SynthesisImplicitWandIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Wands", statOrder = { 1451 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3720627346] = { "3% increased Attack Speed with Wands" }, } }, + ["SynthesisImplicitStaffIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Staves", statOrder = { 1445 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1394963553] = { "3% increased Attack Speed with Staves" }, } }, + ["SynthesisImplicitCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "3% increased Cast Speed" }, } }, + ["SynthesisImplicitCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Cast Speed", statOrder = { 1470 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "4% increased Cast Speed" }, } }, + ["SynthesisImplicitCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Cast Speed", statOrder = { 1470 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "5% increased Cast Speed" }, } }, + ["SynthesisImplicitCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "1% increased Cast Speed" }, } }, + ["SynthesisImplicitCastSpeedJewel2_"] = { type = "Synthesis", affix = "", "2% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "2% increased Cast Speed" }, } }, + ["SynthesisImplicitWeaponCastSpeed1_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-6)% increased Cast Speed" }, } }, + ["SynthesisImplicitWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(7-9)% increased Cast Speed", statOrder = { 1470 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(7-9)% increased Cast Speed" }, } }, + ["SynthesisImplicitWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(10-12)% increased Cast Speed", statOrder = { 1470 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-12)% increased Cast Speed" }, } }, + ["SynthesisImplicitTwoHandWeaponCastSpeed1"] = { type = "Synthesis", affix = "", "(11-12)% increased Cast Speed", statOrder = { 1470 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(11-12)% increased Cast Speed" }, } }, + ["SynthesisImplicitTwoHandWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(13-15)% increased Cast Speed", statOrder = { 1470 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-15)% increased Cast Speed" }, } }, + ["SynthesisImplicitTwoHandWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(16-18)% increased Cast Speed", statOrder = { 1470 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(16-18)% increased Cast Speed" }, } }, + ["SynthesisImplicitCastSpeedWithStaffJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while wielding a Staff", statOrder = { 1473 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2066542501] = { "(1-2)% increased Cast Speed while wielding a Staff" }, } }, + ["SynthesisImplicitCastSpeedWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while Dual Wielding", statOrder = { 1471 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2382196858] = { "(1-2)% increased Cast Speed while Dual Wielding" }, } }, + ["SynthesisImplicitCastSpeedWithShieldJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while holding a Shield", statOrder = { 1472 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1612163368] = { "(1-2)% increased Cast Speed while holding a Shield" }, } }, + ["SynthesisImplicitCastSpeedWithStaffJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while wielding a Staff", statOrder = { 1473 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2066542501] = { "3% increased Cast Speed while wielding a Staff" }, } }, + ["SynthesisImplicitCastSpeedWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while Dual Wielding", statOrder = { 1471 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2382196858] = { "3% increased Cast Speed while Dual Wielding" }, } }, + ["SynthesisImplicitCastSpeedWithShieldJewel2_"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while holding a Shield", statOrder = { 1472 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [1612163368] = { "3% increased Cast Speed while holding a Shield" }, } }, + ["SynthesisImplicitAttackAndCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "3% increased Attack and Cast Speed" }, } }, + ["SynthesisImplicitAttackAndCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Attack and Cast Speed", statOrder = { 2069 }, level = 15, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "4% increased Attack and Cast Speed" }, } }, + ["SynthesisImplicitAttackAndCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack and Cast Speed", statOrder = { 2069 }, level = 24, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "5% increased Attack and Cast Speed" }, } }, + ["SynthesisImplicitAttackAndCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack and Cast Speed", statOrder = { 2069 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "1% increased Attack and Cast Speed" }, } }, + ["SynthesisImplicitTrapThrowingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 48, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(2-3)% increased Trap Throwing Speed" }, } }, + ["SynthesisImplicitTrapThrowingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 56, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-5)% increased Trap Throwing Speed" }, } }, + ["SynthesisImplicitTrapThrowingSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(1-2)% increased Trap Throwing Speed" }, } }, + ["SynthesisImplicitTrapThrowingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Trap Throwing Speed", statOrder = { 1950 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "3% increased Trap Throwing Speed" }, } }, + ["SynthesisImplicitMineLayingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 48, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(2-3)% increased Mine Throwing Speed" }, } }, + ["SynthesisImplicitMineLayingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 56, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(4-5)% increased Mine Throwing Speed" }, } }, + ["SynthesisImplicitMineLayingSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(1-2)% increased Mine Throwing Speed" }, } }, + ["SynthesisImplicitMineLayingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Mine Throwing Speed", statOrder = { 1951 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "3% increased Mine Throwing Speed" }, } }, + ["SynthesisImplicitTotemPlacementSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Totem Placement speed", statOrder = { 2604 }, level = 48, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(2-3)% increased Totem Placement speed" }, } }, + ["SynthesisImplicitTotemPlacementSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Totem Placement speed", statOrder = { 2604 }, level = 56, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(4-5)% increased Totem Placement speed" }, } }, + ["SynthesisImplicitTotemPlacementSpeedJewel1___"] = { type = "Synthesis", affix = "", "(1-2)% increased Totem Placement speed", statOrder = { 2604 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(1-2)% increased Totem Placement speed" }, } }, + ["SynthesisImplicitTotemPlacementSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Totem Placement speed", statOrder = { 2604 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "3% increased Totem Placement speed" }, } }, + ["SynthesisImplicitBrandAttachmentRange1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Brand Attachment range", statOrder = { 10189 }, level = 48, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(2-3)% increased Brand Attachment range" }, } }, + ["SynthesisImplicitBrandAttachmentRange2"] = { type = "Synthesis", affix = "", "(4-5)% increased Brand Attachment range", statOrder = { 10189 }, level = 56, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "(4-5)% increased Brand Attachment range" }, } }, + ["SynthesisImplicitTauntOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(1-2)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["SynthesisImplicitTauntOnHitJewel2_"] = { type = "Synthesis", affix = "", "(3-4)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4966 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [280213220] = { "(3-4)% chance to Taunt Enemies on Hit with Attacks" }, } }, + ["SynthesisImplicitBlindOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(1-2)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["SynthesisImplicitBlindOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4965 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-4)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["SynthesisImplicitHinderOnHitJewel1__"] = { type = "Synthesis", affix = "", "(1-2)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(1-2)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SynthesisImplicitHinderOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10336 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "(3-4)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["SynthesisImplicitRarity1"] = { type = "Synthesis", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-11)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarity2"] = { type = "Synthesis", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1619 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-13)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarity3"] = { type = "Synthesis", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1619 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(14-15)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarity4"] = { type = "Synthesis", affix = "", "(16-17)% increased Rarity of Items found", statOrder = { 1619 }, level = 36, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-17)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarity5"] = { type = "Synthesis", affix = "", "(18-20)% increased Rarity of Items found", statOrder = { 1619 }, level = 48, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(18-20)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarityRing1"] = { type = "Synthesis", affix = "", "(19-20)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-20)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarityRing2"] = { type = "Synthesis", affix = "", "(21-22)% increased Rarity of Items found", statOrder = { 1619 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(21-22)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarityRing3"] = { type = "Synthesis", affix = "", "(23-25)% increased Rarity of Items found", statOrder = { 1619 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarityJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(1-2)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitRarityJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Rarity of Items found", statOrder = { 1619 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(3-4)% increased Rarity of Items found" }, } }, + ["SynthesisImplicitQuantity1"] = { type = "Synthesis", affix = "", "(1-3)% increased Quantity of Items found", statOrder = { 1615 }, level = 65, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(1-3)% increased Quantity of Items found" }, } }, + ["SynthesisImplicitExperience1"] = { type = "Synthesis", affix = "", "2% increased Experience gain", statOrder = { 1626 }, level = 75, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "2% increased Experience gain" }, } }, + ["SynthesisImplicitExplosion1_"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6460 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage" }, } }, + ["SynthesisImplicitExplosion2"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 6460 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage" }, } }, + ["SynthesisImplicitExplosionChance1_"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3340 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, + ["SynthesisImplicitExplosionChance2__"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3340 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } }, + ["SynthesisImplicitLocalWeaponRange1_"] = { type = "Synthesis", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2779 }, level = 36, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } }, + ["SynthesisImplicitLocalWeaponRange2"] = { type = "Synthesis", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2779 }, level = 48, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } }, + ["SynthesisImplicitWeaponRange1"] = { type = "Synthesis", affix = "", "+0.1 metres to Melee Strike Range", statOrder = { 2560 }, level = 56, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+0.1 metres to Melee Strike Range" }, } }, + ["SynthesisImplicitOnslaughtOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3027 }, level = 55, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2988593550] = { "(5-8)% chance to gain Onslaught for 4 seconds on Kill" }, } }, + ["SynthesisImplicitPhasingOnKill1__"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3501 }, level = 55, group = "ChancetoGainPhasingOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918708827] = { "(5-8)% chance to gain Phasing for 4 seconds on Kill" }, } }, + ["SynthesisImplicitUnholyMightOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3413 }, level = 55, group = "UnholyMightOnKillPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3562211447] = { "(5-8)% chance to gain Unholy Might for 3 seconds on Kill" }, } }, + ["SynthesisImplicitIntimidateOnHit1"] = { type = "Synthesis", affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4970 }, level = 65, group = "IntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3438201750] = { "Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, + ["SynthesisImplicitOnslaughtOnHit1"] = { type = "Synthesis", affix = "", "You gain Onslaught for 4 seconds on Hit", statOrder = { 6879 }, level = 65, group = "OnslaughtOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2514424018] = { "You gain Onslaught for 4 seconds on Hit" }, } }, + ["SynthesisImplicitArcaneSurgeOnHit1"] = { type = "Synthesis", affix = "", "Gain Arcane Surge on Hit with Spells", statOrder = { 6819 }, level = 65, group = "ArcaneSurgeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4208096430] = { "Gain Arcane Surge on Hit with Spells" }, } }, + ["SynthesisImplicitAreaOfEffect1"] = { type = "Synthesis", affix = "", "(5-6)% increased Area of Effect", statOrder = { 1903 }, level = 36, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(5-6)% increased Area of Effect" }, } }, + ["SynthesisImplicitAreaOfEffect2"] = { type = "Synthesis", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1903 }, level = 48, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } }, + ["SynthesisImplicitAreaOfEffect3_"] = { type = "Synthesis", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1903 }, level = 56, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } }, + ["SynthesisImplicitUnaffectedByBurningGround1"] = { type = "Synthesis", affix = "", "Unaffected by Burning Ground", statOrder = { 10613 }, level = 65, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } }, + ["SynthesisImplicitUnaffectedByChilledGround1"] = { type = "Synthesis", affix = "", "Unaffected by Chilled Ground", statOrder = { 10618 }, level = 65, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } }, + ["SynthesisImplicitUnaffectedByShockedGround1"] = { type = "Synthesis", affix = "", "Unaffected by Shocked Ground", statOrder = { 10638 }, level = 65, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } }, + ["SynthesisImplicitFlaskChargesGained1"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Charges gained", statOrder = { 2206 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(10-11)% increased Flask Charges gained" }, } }, + ["SynthesisImplicitFlaskChargesGained2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Charges gained", statOrder = { 2206 }, level = 15, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(12-13)% increased Flask Charges gained" }, } }, + ["SynthesisImplicitFlaskChargesGained3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Charges gained", statOrder = { 2206 }, level = 24, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(14-15)% increased Flask Charges gained" }, } }, + ["SynthesisImplicitReducedFlaskChargesUsed1_"] = { type = "Synthesis", affix = "", "(10-11)% reduced Flask Charges used", statOrder = { 2207 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-11)% reduced Flask Charges used" }, } }, + ["SynthesisImplicitReducedFlaskChargesUsed2"] = { type = "Synthesis", affix = "", "(12-13)% reduced Flask Charges used", statOrder = { 2207 }, level = 15, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(12-13)% reduced Flask Charges used" }, } }, + ["SynthesisImplicitReducedFlaskChargesUsed3"] = { type = "Synthesis", affix = "", "(14-15)% reduced Flask Charges used", statOrder = { 2207 }, level = 24, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-15)% reduced Flask Charges used" }, } }, + ["SynthesisImplicitFlaskDuration1_"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Effect Duration", statOrder = { 2210 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-11)% increased Flask Effect Duration" }, } }, + ["SynthesisImplicitFlaskDuration2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Effect Duration", statOrder = { 2210 }, level = 15, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(12-13)% increased Flask Effect Duration" }, } }, + ["SynthesisImplicitFlaskDuration3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Effect Duration", statOrder = { 2210 }, level = 24, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(14-15)% increased Flask Effect Duration" }, } }, + ["SynthesisImplicitRemoveIgniteOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Ignite and Burning when you use a Flask", statOrder = { 10052 }, level = 65, group = "RemoveIgniteOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } }, + ["SynthesisImplicitRemoveFreezeOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Chill and Freeze when you use a Flask", statOrder = { 10048 }, level = 65, group = "RemoveFreezeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } }, + ["SynthesisImplicitRemoveShockOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Shock when you use a Flask", statOrder = { 10062 }, level = 65, group = "RemoveShockOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } }, + ["SynthesisImplicitGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Gems", statOrder = { 213 }, level = 40, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(2-3)% to Quality of Socketed Gems" }, } }, + ["SynthesisImplicitGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Gems", statOrder = { 213 }, level = 50, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3828613551] = { "+(4-6)% to Quality of Socketed Gems" }, } }, + ["SynthesisImplicitGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 165 }, level = 65, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } }, + ["SynthesisImplicitSupportGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Support Gems", statOrder = { 214 }, level = 40, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(2-3)% to Quality of Socketed Support Gems" }, } }, + ["SynthesisImplicitSupportGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Support Gems", statOrder = { 214 }, level = 50, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(4-6)% to Quality of Socketed Support Gems" }, } }, + ["SynthesisImplicitSupportGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 195 }, level = 65, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } }, + ["SynthesisImplicitMinionGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Minion Gems", statOrder = { 227 }, level = 40, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2524260219] = { "+(2-3)% to Quality of Socketed Minion Gems" }, } }, + ["SynthesisImplicitMinionGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Minion Gems", statOrder = { 227 }, level = 50, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2524260219] = { "+(4-6)% to Quality of Socketed Minion Gems" }, } }, + ["SynthesisImplicitMinionGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 186 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } }, + ["SynthesisImplicitFireGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Fire Gems", statOrder = { 223 }, level = 40, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3422008440] = { "+(2-3)% to Quality of Socketed Fire Gems" }, } }, + ["SynthesisImplicitFireGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Fire Gems", statOrder = { 223 }, level = 50, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3422008440] = { "+(4-6)% to Quality of Socketed Fire Gems" }, } }, + ["SynthesisImplicitFireGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 65, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } }, + ["SynthesisImplicitColdGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Cold Gems", statOrder = { 220 }, level = 40, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1164882313] = { "+(2-3)% to Quality of Socketed Cold Gems" }, } }, + ["SynthesisImplicitColdGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Cold Gems", statOrder = { 220 }, level = 50, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1164882313] = { "+(4-6)% to Quality of Socketed Cold Gems" }, } }, + ["SynthesisImplicitColdGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 65, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } }, + ["SynthesisImplicitLightningGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Lightning Gems", statOrder = { 225 }, level = 40, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1065580342] = { "+(2-3)% to Quality of Socketed Lightning Gems" }, } }, + ["SynthesisImplicitLightningGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Lightning Gems", statOrder = { 225 }, level = 50, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1065580342] = { "+(4-6)% to Quality of Socketed Lightning Gems" }, } }, + ["SynthesisImplicitLightningGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 65, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+1 to Level of Socketed Lightning Gems" }, } }, + ["SynthesisImplicitChaosGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Chaos Gems", statOrder = { 219 }, level = 40, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2062835769] = { "+(2-3)% to Quality of Socketed Chaos Gems" }, } }, + ["SynthesisImplicitChaosGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Chaos Gems", statOrder = { 219 }, level = 50, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2062835769] = { "+(4-6)% to Quality of Socketed Chaos Gems" }, } }, + ["SynthesisImplicitChaosGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 176 }, level = 65, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+1 to Level of Socketed Chaos Gems" }, } }, + ["SynthesisImplicitMeleeGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Melee Gems", statOrder = { 226 }, level = 40, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1396421504] = { "+(2-3)% to Quality of Socketed Melee Gems" }, } }, + ["SynthesisImplicitMeleeGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Melee Gems", statOrder = { 226 }, level = 50, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1396421504] = { "+(4-6)% to Quality of Socketed Melee Gems" }, } }, + ["SynthesisImplicitMeleeGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 185 }, level = 65, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } }, + ["SynthesisImplicitBowGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Bow Gems", statOrder = { 218 }, level = 40, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3280600715] = { "+(2-3)% to Quality of Socketed Bow Gems" }, } }, + ["SynthesisImplicitBowGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Bow Gems", statOrder = { 218 }, level = 50, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3280600715] = { "+(4-6)% to Quality of Socketed Bow Gems" }, } }, + ["SynthesisImplicitBowGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 184 }, level = 65, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } }, + ["SynthesisImplicitAuraGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Aura Gems", statOrder = { 217 }, level = 40, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2276941637] = { "+(2-3)% to Quality of Socketed Aura Gems" }, } }, + ["SynthesisImplicitAuraGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Aura Gems", statOrder = { 217 }, level = 50, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2276941637] = { "+(4-6)% to Quality of Socketed Aura Gems" }, } }, + ["SynthesisImplicitAuraGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 187 }, level = 65, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+1 to Level of Socketed Aura Gems" }, } }, + ["SynthesisImplicitStrengthGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Strength Gems", statOrder = { 229 }, level = 40, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [122841557] = { "+(2-3)% to Quality of Socketed Strength Gems" }, } }, + ["SynthesisImplicitStrengthGemQuality2__"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Strength Gems", statOrder = { 229 }, level = 50, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [122841557] = { "+(4-6)% to Quality of Socketed Strength Gems" }, } }, + ["SynthesisImplicitStrengthGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 161 }, level = 65, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, + ["SynthesisImplicitDexterityGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Dexterity Gems", statOrder = { 221 }, level = 40, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2877754099] = { "+(2-3)% to Quality of Socketed Dexterity Gems" }, } }, + ["SynthesisImplicitDexterityGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Dexterity Gems", statOrder = { 221 }, level = 50, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2877754099] = { "+(4-6)% to Quality of Socketed Dexterity Gems" }, } }, + ["SynthesisImplicitDexterityGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 163 }, level = 65, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } }, + ["SynthesisImplicitIntelligenceGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Intelligence Gems", statOrder = { 224 }, level = 40, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [3174776455] = { "+(2-3)% to Quality of Socketed Intelligence Gems" }, } }, + ["SynthesisImplicitIntelligenceGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Intelligence Gems", statOrder = { 224 }, level = 50, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [3174776455] = { "+(4-6)% to Quality of Socketed Intelligence Gems" }, } }, + ["SynthesisImplicitIntelligenceGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 164 }, level = 65, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } }, + ["SynthesisImplicitAoEGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed AoE Gems", statOrder = { 216 }, level = 40, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [768982451] = { "+(2-3)% to Quality of Socketed AoE Gems" }, } }, + ["SynthesisImplicitAoEGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed AoE Gems", statOrder = { 216 }, level = 50, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [768982451] = { "+(4-6)% to Quality of Socketed AoE Gems" }, } }, + ["SynthesisImplicitAoEGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 182 }, level = 65, group = "IncreasedSocketedAoEGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2551600084] = { "+1 to Level of Socketed AoE Gems" }, } }, + ["SynthesisImplicitProjectileGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Projectile Gems", statOrder = { 228 }, level = 40, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2428621158] = { "+(2-3)% to Quality of Socketed Projectile Gems" }, } }, + ["SynthesisImplicitProjectileGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Projectile Gems", statOrder = { 228 }, level = 50, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2428621158] = { "+(4-6)% to Quality of Socketed Projectile Gems" }, } }, + ["SynthesisImplicitProjectileGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 183 }, level = 65, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+1 to Level of Socketed Projectile Gems" }, } }, + ["SynthesisImplicitReducedDamageTaken1_"] = { type = "Synthesis", affix = "", "1% reduced Damage taken", statOrder = { 2261 }, level = 48, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "1% reduced Damage taken" }, } }, + ["SynthesisImplicitReducedDamageTaken2"] = { type = "Synthesis", affix = "", "2% reduced Damage taken", statOrder = { 2261 }, level = 56, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "2% reduced Damage taken" }, } }, + ["SynthesisImplicitPhysicalAttackDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-11) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 24, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-11) Physical Damage taken from Attack Hits" }, } }, + ["SynthesisImplicitPhysicalAttackDamageTaken2"] = { type = "Synthesis", affix = "", "-(20-16) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 36, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(20-16) Physical Damage taken from Attack Hits" }, } }, + ["SynthesisImplicitPhysicalAttackDamageTaken3"] = { type = "Synthesis", affix = "", "-(25-21) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 48, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(25-21) Physical Damage taken from Attack Hits" }, } }, + ["SynthesisImplicitPhysicalAttackDamageTaken4"] = { type = "Synthesis", affix = "", "-(40-35) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 56, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(40-35) Physical Damage taken from Attack Hits" }, } }, + ["SynthesisImplicitPhysicalAttackDamageTakenJewel1_"] = { type = "Synthesis", affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(7-5) Physical Damage taken from Attack Hits" }, } }, + ["SynthesisImplicitPhysicalAttackDamageTakenJewel2___"] = { type = "Synthesis", affix = "", "-(10-8) Physical Damage taken from Attack Hits", statOrder = { 2257 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(10-8) Physical Damage taken from Attack Hits" }, } }, + ["SynthesisImplicitFortifyEffect1"] = { type = "Synthesis", affix = "", "+1 to maximum Fortification", statOrder = { 9240 }, level = 36, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335507772] = { "+1 to maximum Fortification" }, } }, + ["SynthesisImplicitFortifyEffect2"] = { type = "Synthesis", affix = "", "+2 to maximum Fortification", statOrder = { 9240 }, level = 48, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335507772] = { "+2 to maximum Fortification" }, } }, + ["SynthesisImplicitFortifyEffect3"] = { type = "Synthesis", affix = "", "+3 to maximum Fortification", statOrder = { 9240 }, level = 56, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, + ["SynthesisImplicitArmourEvasionWithFortify1"] = { type = "Synthesis", affix = "", "+250 to Armour and Evasion Rating while Fortified", statOrder = { 4805 }, level = 36, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2962782530] = { "+250 to Armour and Evasion Rating while Fortified" }, } }, + ["SynthesisImplicitArmourEvasionWithFortify2"] = { type = "Synthesis", affix = "", "+500 to Armour and Evasion Rating while Fortified", statOrder = { 4805 }, level = 48, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2962782530] = { "+500 to Armour and Evasion Rating while Fortified" }, } }, + ["SynthesisImplicitArmourEvasionWithFortify3"] = { type = "Synthesis", affix = "", "+800 to Armour and Evasion Rating while Fortified", statOrder = { 4805 }, level = 56, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2962782530] = { "+800 to Armour and Evasion Rating while Fortified" }, } }, + ["SynthesisImplicitDegenDamageTaken1_"] = { type = "Synthesis", affix = "", "3% reduced Damage taken from Damage Over Time", statOrder = { 2268 }, level = 65, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "3% reduced Damage taken from Damage Over Time" }, } }, + ["SynthesisImplicitTotemElementalResistanceJewel1"] = { type = "Synthesis", affix = "", "Totems gain +3% to all Elemental Resistances", statOrder = { 2821 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +3% to all Elemental Resistances" }, } }, + ["SynthesisImplicitTotemElementalResistanceJewel2"] = { type = "Synthesis", affix = "", "Totems gain +(4-5)% to all Elemental Resistances", statOrder = { 2821 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(4-5)% to all Elemental Resistances" }, } }, + ["SynthesisImplicitReflectDamageTaken1"] = { type = "Synthesis", affix = "", "You and your Minions take (5-8)% reduced Reflected Damage", statOrder = { 10026 }, level = 36, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take (5-8)% reduced Reflected Damage" }, } }, + ["SynthesisImplicitReflectDamageTaken2"] = { type = "Synthesis", affix = "", "You and your Minions take (9-12)% reduced Reflected Damage", statOrder = { 10026 }, level = 48, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take (9-12)% reduced Reflected Damage" }, } }, + ["SynthesisImplicitReflectDamageTaken3"] = { type = "Synthesis", affix = "", "You and your Minions take (13-15)% reduced Reflected Damage", statOrder = { 10026 }, level = 56, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take (13-15)% reduced Reflected Damage" }, } }, + ["SynthesisDamageCannotBeReflectedPercent1"] = { type = "Synthesis", affix = "", "Prevent +(10-16)% of Reflected Damage", statOrder = { 4 }, level = 36, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "Prevent +(10-16)% of Reflected Damage" }, } }, + ["SynthesisDamageCannotBeReflectedPercent2"] = { type = "Synthesis", affix = "", "Prevent +(17-23)% of Reflected Damage", statOrder = { 4 }, level = 48, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "Prevent +(17-23)% of Reflected Damage" }, } }, + ["SynthesisDamageCannotBeReflectedPercent3"] = { type = "Synthesis", affix = "", "Prevent +(24-30)% of Reflected Damage", statOrder = { 4 }, level = 56, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1571797746] = { "Prevent +(24-30)% of Reflected Damage" }, } }, + ["SynthesisImplicitAttackerTakesDamageNoRange1_"] = { type = "Synthesis", affix = "", "Reflects (10-15) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (10-15) Physical Damage to Melee Attackers" }, } }, + ["SynthesisImplicitAttackerTakesDamageNoRange2"] = { type = "Synthesis", affix = "", "Reflects (16-40) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 15, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (16-40) Physical Damage to Melee Attackers" }, } }, + ["SynthesisImplicitAttackerTakesDamageNoRange3"] = { type = "Synthesis", affix = "", "Reflects (41-80) Physical Damage to Melee Attackers", statOrder = { 2225 }, level = 24, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (41-80) Physical Damage to Melee Attackers" }, } }, + ["SynthesisImplicitLightRadius1"] = { type = "Synthesis", affix = "", "10% increased Light Radius", statOrder = { 2526 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, } }, + ["SynthesisImplicitLightRadius2"] = { type = "Synthesis", affix = "", "12% increased Light Radius", statOrder = { 2526 }, level = 15, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "12% increased Light Radius" }, } }, + ["SynthesisImplicitLightRadius3"] = { type = "Synthesis", affix = "", "15% increased Light Radius", statOrder = { 2526 }, level = 24, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, } }, + ["SynthesisImplicitIntimidateOnHitWeapon1"] = { type = "Synthesis", affix = "", "(4-5)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7983 }, level = 36, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(4-5)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["SynthesisImplicitIntimidateOnHitWeapon2_"] = { type = "Synthesis", affix = "", "(6-7)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7983 }, level = 48, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(6-7)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["SynthesisImplicitIntimidateOnHitWeapon3_"] = { type = "Synthesis", affix = "", "(8-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7983 }, level = 56, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(8-10)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaught1"] = { type = "Synthesis", affix = "", "(10-12)% increased Attack and Cast Speed during Onslaught", statOrder = { 3063 }, level = 65, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2320884914] = { "(10-12)% increased Attack and Cast Speed during Onslaught" }, } }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Attack and Cast Speed during Onslaught", statOrder = { 3063 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2320884914] = { "(2-3)% increased Attack and Cast Speed during Onslaught" }, } }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Attack and Cast Speed during Onslaught", statOrder = { 3063 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2320884914] = { "(4-5)% increased Attack and Cast Speed during Onslaught" }, } }, + ["SynthesisImplicitPhysicalDamageWithUnholyMight1"] = { type = "Synthesis", affix = "", "(40-50)% increased Physical Damage while you have Unholy Might", statOrder = { 9788 }, level = 65, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1609570656] = { "(40-50)% increased Physical Damage while you have Unholy Might" }, } }, + ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel1"] = { type = "Synthesis", affix = "", "(6-8)% increased Physical Damage while you have Unholy Might", statOrder = { 9788 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1609570656] = { "(6-8)% increased Physical Damage while you have Unholy Might" }, } }, + ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel2"] = { type = "Synthesis", affix = "", "(9-10)% increased Physical Damage while you have Unholy Might", statOrder = { 9788 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1609570656] = { "(9-10)% increased Physical Damage while you have Unholy Might" }, } }, + ["SynthesisImplicitMovementSpeedWhilePhasedJewel1_"] = { type = "Synthesis", affix = "", "2% increased Movement Speed while Phasing", statOrder = { 2636 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "2% increased Movement Speed while Phasing" }, } }, + ["SynthesisImplicitMovementSpeedWhilePhasedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Movement Speed while Phasing", statOrder = { 2636 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3684879618] = { "3% increased Movement Speed while Phasing" }, } }, + ["SynthesisImplicitAdditionalVaalSoulOnKill1"] = { type = "Synthesis", affix = "", "(2-3)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 36, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(2-3)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["SynthesisImplicitAdditionalVaalSoulOnKill2"] = { type = "Synthesis", affix = "", "(4-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3138 }, level = 48, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(4-5)% chance to gain an additional Vaal Soul on Kill" }, } }, + ["SynthesisImplicitVaalSkillCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(21-30)% increased Vaal Skill Critical Strike Chance", statOrder = { 3141 }, level = 36, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(21-30)% increased Vaal Skill Critical Strike Chance" }, } }, + ["SynthesisImplicitVaalSkillCriticalStrikeChance2_"] = { type = "Synthesis", affix = "", "(31-40)% increased Vaal Skill Critical Strike Chance", statOrder = { 3141 }, level = 48, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(31-40)% increased Vaal Skill Critical Strike Chance" }, } }, + ["SynthesisImplicitVaalSkillDuration1"] = { type = "Synthesis", affix = "", "Vaal Skills have (5-8)% increased Skill Effect Duration", statOrder = { 3139 }, level = 36, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (5-8)% increased Skill Effect Duration" }, } }, + ["SynthesisImplicitVaalSkillDuration2"] = { type = "Synthesis", affix = "", "Vaal Skills have (9-12)% increased Skill Effect Duration", statOrder = { 3139 }, level = 48, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (9-12)% increased Skill Effect Duration" }, } }, + ["SynthesisImplicitMovementVelocityCorruptedItem1"] = { type = "Synthesis", affix = "", "(5-7)% increased Movement Speed if Corrupted", statOrder = { 8111 }, level = 60, group = "MovementVelocityCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2880601380] = { "(5-7)% increased Movement Speed if Corrupted" }, } }, + ["SynthesisImplicitAttackAndCastSpeedCorruptedItem1___"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack and Cast Speed if Corrupted", statOrder = { 7962 }, level = 60, group = "AttackAndCastSpeedCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [26867112] = { "(5-7)% increased Attack and Cast Speed if Corrupted" }, } }, + ["SynthesisImplicitAllElementalResistanceCorruptedItem1"] = { type = "Synthesis", affix = "", "+(8-12)% to all Elemental Resistances if Corrupted", statOrder = { 8118 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3731630482] = { "+(8-12)% to all Elemental Resistances if Corrupted" }, } }, + ["SynthesisImplicitAllElementalResistanceCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "+2% to all Elemental Resistances if Corrupted", statOrder = { 8118 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3731630482] = { "+2% to all Elemental Resistances if Corrupted" }, } }, + ["SynthesisImplicitDamageTakenCorruptedItem1"] = { type = "Synthesis", affix = "", "5% reduced Damage taken if Corrupted", statOrder = { 7996 }, level = 60, group = "DamageTakenCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3309607228] = { "5% reduced Damage taken if Corrupted" }, } }, + ["SynthesisImplicitIncreasedLifeCorruptedItem1"] = { type = "Synthesis", affix = "", "(6-8)% increased maximum Life if Corrupted", statOrder = { 8105 }, level = 60, group = "IncreasedLifeCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3887484120] = { "(6-8)% increased maximum Life if Corrupted" }, } }, + ["SynthesisImplicitIncreasedEnergyShieldCorruptedItem1"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield if Corrupted", statOrder = { 8103 }, level = 60, group = "IncreasedEnergyShieldCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1025108940] = { "(8-10)% increased maximum Energy Shield if Corrupted" }, } }, + ["SynthesisImplicitAllDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage if Corrupted", statOrder = { 7995 }, level = 60, group = "AllDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [767196662] = { "(15-20)% increased Damage if Corrupted" }, } }, + ["SynthesisImplicitGlobalCriticalStrikeChanceCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Global Critical Strike Chance if Corrupted", statOrder = { 7990 }, level = 60, group = "GlobalCriticalStrikeChanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4023723828] = { "(40-50)% increased Global Critical Strike Chance if Corrupted" }, } }, + ["SynthesisImplicitImmuneToCursesCorruptedItem1"] = { type = "Synthesis", affix = "", "Immune to Curses if Corrupted", statOrder = { 8056 }, level = 60, group = "ImmuneToCursesCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1954526925] = { "Immune to Curses if Corrupted" }, } }, + ["SynthesisImplicitAttackDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Attack Damage if Corrupted", statOrder = { 7963 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2347923784] = { "(40-50)% increased Attack Damage if Corrupted" }, } }, + ["SynthesisImplicitAttackDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Attack Damage if Corrupted", statOrder = { 7963 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2347923784] = { "(60-70)% increased Attack Damage if Corrupted" }, } }, + ["SynthesisImplicitAttackDamageCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack Damage if Corrupted", statOrder = { 7963 }, level = 1, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2347923784] = { "(5-7)% increased Attack Damage if Corrupted" }, } }, + ["SynthesisImplicitSpellDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Spell Damage if Corrupted", statOrder = { 8141 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [374116820] = { "(40-50)% increased Spell Damage if Corrupted" }, } }, + ["SynthesisImplicitSpellDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Spell Damage if Corrupted", statOrder = { 8141 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [374116820] = { "(60-70)% increased Spell Damage if Corrupted" }, } }, + ["SynthesisImplicitSpellDamageCorruptedItemJewel1__"] = { type = "Synthesis", affix = "", "(5-7)% increased Spell Damage if Corrupted", statOrder = { 8141 }, level = 1, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [374116820] = { "(5-7)% increased Spell Damage if Corrupted" }, } }, + ["SynthesisImplicitVaalSkillDamageAffectsSkillDamage1"] = { type = "Synthesis", affix = "", "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", statOrder = { 2717 }, level = 65, group = "VaalSkillDamageAffectsSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3871212304] = { "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills" }, } }, + ["SynthesisImplicitDamageVSAbyssMonsters1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6155 }, level = 40, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3257279374] = { "(15-20)% increased Damage with Hits and Ailments against Abyssal Monsters" }, } }, + ["SynthesisImplicitDamageVSAbyssMonsters2"] = { type = "Synthesis", affix = "", "(21-25)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6155 }, level = 50, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3257279374] = { "(21-25)% increased Damage with Hits and Ailments against Abyssal Monsters" }, } }, + ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters1"] = { type = "Synthesis", affix = "", "(2-3)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4621 }, level = 40, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [287491423] = { "(2-3)% additional Physical Damage Reduction against Abyssal Monsters" }, } }, + ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters2"] = { type = "Synthesis", affix = "", "(4-5)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4621 }, level = 50, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [287491423] = { "(4-5)% additional Physical Damage Reduction against Abyssal Monsters" }, } }, + ["SynthesisImplicitAbyssJewelEffect1"] = { type = "Synthesis", affix = "", "25% increased Effect of Socketed Abyss Jewels", statOrder = { 230 }, level = 70, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1482572705] = { "25% increased Effect of Socketed Abyss Jewels" }, } }, } \ No newline at end of file diff --git a/src/Data/ModTincture.lua b/src/Data/ModTincture.lua index 4221f93cdb..86a04ed84d 100644 --- a/src/Data/ModTincture.lua +++ b/src/Data/ModTincture.lua @@ -2,70 +2,70 @@ -- Item data (c) Grinding Gear Games return { - ["TinctureEffect1"] = { type = "Prefix", affix = "Herbal", "(11-13)% increased effect", statOrder = { 10905 }, level = 1, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(11-13)% increased effect" }, } }, - ["TinctureEffect2"] = { type = "Prefix", affix = "Natural", "(14-16)% increased effect", statOrder = { 10905 }, level = 35, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(14-16)% increased effect" }, } }, - ["TinctureEffect3"] = { type = "Prefix", affix = "Medicinal", "(17-19)% increased effect", statOrder = { 10905 }, level = 64, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(17-19)% increased effect" }, } }, - ["TinctureEffect4"] = { type = "Prefix", affix = "Horticultural", "(20-22)% increased effect", statOrder = { 10905 }, level = 85, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(20-22)% increased effect" }, } }, - ["TinctureToxicityRate1"] = { type = "Prefix", affix = "Sustained", "(15-17)% reduced Mana Burn rate", statOrder = { 10906 }, level = 1, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [116232170] = { "(15-17)% reduced Mana Burn rate" }, } }, - ["TinctureToxicityRate2"] = { type = "Prefix", affix = "Tenacious", "(18-20)% reduced Mana Burn rate", statOrder = { 10906 }, level = 30, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [116232170] = { "(18-20)% reduced Mana Burn rate" }, } }, - ["TinctureToxicityRate3"] = { type = "Prefix", affix = "Persistent", "(21-23)% reduced Mana Burn rate", statOrder = { 10906 }, level = 58, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [116232170] = { "(21-23)% reduced Mana Burn rate" }, } }, - ["TinctureToxicityRate4"] = { type = "Prefix", affix = "Persevering", "(24-26)% reduced Mana Burn rate", statOrder = { 10906 }, level = 80, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [116232170] = { "(24-26)% reduced Mana Burn rate" }, } }, - ["TinctureCooldownRecovery1"] = { type = "Prefix", affix = "Lucid", "(13-17)% increased Cooldown Recovery Rate", statOrder = { 10904 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [239144] = { "(13-17)% increased Cooldown Recovery Rate" }, } }, - ["TinctureCooldownRecovery2"] = { type = "Prefix", affix = "Perceptive", "(18-22)% increased Cooldown Recovery Rate", statOrder = { 10904 }, level = 30, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [239144] = { "(18-22)% increased Cooldown Recovery Rate" }, } }, - ["TinctureCooldownRecovery3"] = { type = "Prefix", affix = "Insightful", "(23-27)% increased Cooldown Recovery Rate", statOrder = { 10904 }, level = 58, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [239144] = { "(23-27)% increased Cooldown Recovery Rate" }, } }, - ["TinctureCooldownRecovery4"] = { type = "Prefix", affix = "Astute", "(28-32)% increased Cooldown Recovery Rate", statOrder = { 10904 }, level = 82, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [239144] = { "(28-32)% increased Cooldown Recovery Rate" }, } }, - ["TinctureEffectFasterToxicity1"] = { type = "Prefix", affix = "Potent", "35% increased effect", "(47-51)% increased Mana Burn rate", statOrder = { 10905, 10906 }, level = 1, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "35% increased effect" }, [116232170] = { "(47-51)% increased Mana Burn rate" }, } }, - ["TinctureEffectFasterToxicity2"] = { type = "Prefix", affix = "Concentrated", "35% increased effect", "(42-46)% increased Mana Burn rate", statOrder = { 10905, 10906 }, level = 49, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "35% increased effect" }, [116232170] = { "(42-46)% increased Mana Burn rate" }, } }, - ["TinctureEffectFasterToxicity3"] = { type = "Prefix", affix = "Enriched", "35% increased effect", "(37-41)% increased Mana Burn rate", statOrder = { 10905, 10906 }, level = 84, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "35% increased effect" }, [116232170] = { "(37-41)% increased Mana Burn rate" }, } }, - ["TinctureEffectSlowerToxicity1"] = { type = "Prefix", affix = "Thin", "(31-35)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10905, 10906 }, level = 1, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(31-35)% reduced effect" }, [116232170] = { "50% reduced Mana Burn rate" }, } }, - ["TinctureEffectSlowerToxicity2"] = { type = "Prefix", affix = "Diluted", "(26-30)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10905, 10906 }, level = 49, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(26-30)% reduced effect" }, [116232170] = { "50% reduced Mana Burn rate" }, } }, - ["TinctureEffectSlowerToxicity3"] = { type = "Prefix", affix = "Measured", "(21-25)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10905, 10906 }, level = 84, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(21-25)% reduced effect" }, [116232170] = { "50% reduced Mana Burn rate" }, } }, - ["TinctureIncreasedAilmentDuration1"] = { type = "Suffix", affix = "of the Wild", "(25-35)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10925 }, level = 1, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, tradeHashes = { [3284469689] = { "(25-35)% increased Duration of Elemental Ailments from Melee Weapon Attacks" }, } }, - ["TinctureIncreasedAilmentDuration2"] = { type = "Suffix", affix = "of the Untamed", "(36-45)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10925 }, level = 42, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, tradeHashes = { [3284469689] = { "(36-45)% increased Duration of Elemental Ailments from Melee Weapon Attacks" }, } }, - ["TinctureIncreasedAilmentDuration3"] = { type = "Suffix", affix = "of the Savage", "(46-55)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10925 }, level = 60, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, tradeHashes = { [3284469689] = { "(46-55)% increased Duration of Elemental Ailments from Melee Weapon Attacks" }, } }, - ["TinctureIncreasedAilmentDuration4"] = { type = "Suffix", affix = "of the Beast", "(56-65)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10925 }, level = 82, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, tradeHashes = { [3284469689] = { "(56-65)% increased Duration of Elemental Ailments from Melee Weapon Attacks" }, } }, - ["TinctureDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(9-13)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10924 }, level = 1, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(9-13)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, - ["TinctureDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Dispersion", "+(14-18)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10924 }, level = 34, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(14-18)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, - ["TinctureDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Liquefaction", "+(19-23)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10924 }, level = 58, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(19-23)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, - ["TinctureDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Melting", "+(24-28)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10924 }, level = 70, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(24-28)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, - ["TinctureDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Dissolution", "+(29-33)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10924 }, level = 84, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(29-33)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, - ["TinctureElementalPenetration1"] = { type = "Suffix", affix = "of Catalysing", "Melee Weapon Damage Penetrates (5-7)% Elemental Resistances", statOrder = { 10930 }, level = 1, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (5-7)% Elemental Resistances" }, } }, - ["TinctureElementalPenetration2"] = { type = "Suffix", affix = "of Infusing", "Melee Weapon Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 10930 }, level = 32, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (8-10)% Elemental Resistances" }, } }, - ["TinctureElementalPenetration3"] = { type = "Suffix", affix = "of Empowering", "Melee Weapon Damage Penetrates (11-13)% Elemental Resistances", statOrder = { 10930 }, level = 60, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (11-13)% Elemental Resistances" }, } }, - ["TinctureElementalPenetration4"] = { type = "Suffix", affix = "of the Unleashed", "Melee Weapon Damage Penetrates (14-16)% Elemental Resistances", statOrder = { 10930 }, level = 73, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (14-16)% Elemental Resistances" }, } }, - ["TinctureElementalPenetration5"] = { type = "Suffix", affix = "of Overpowering", "Melee Weapon Damage Penetrates (17-19)% Elemental Resistances", statOrder = { 10930 }, level = 85, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (17-19)% Elemental Resistances" }, } }, - ["TinctureCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(9-13)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10923 }, level = 1, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(9-13)% to Melee Weapon Critical Strike Multiplier" }, } }, - ["TinctureCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(14-18)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10923 }, level = 32, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(14-18)% to Melee Weapon Critical Strike Multiplier" }, } }, - ["TinctureCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(19-23)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10923 }, level = 60, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(19-23)% to Melee Weapon Critical Strike Multiplier" }, } }, - ["TinctureCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(24-28)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10923 }, level = 73, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(24-28)% to Melee Weapon Critical Strike Multiplier" }, } }, - ["TinctureCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(29-33)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10923 }, level = 85, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(29-33)% to Melee Weapon Critical Strike Multiplier" }, } }, - ["TinctureIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(15-19)% increased Melee Weapon Attack Speed", statOrder = { 10921 }, level = 1, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2038105340] = { "(15-19)% increased Melee Weapon Attack Speed" }, } }, - ["TinctureIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(20-24)% increased Melee Weapon Attack Speed", statOrder = { 10921 }, level = 65, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2038105340] = { "(20-24)% increased Melee Weapon Attack Speed" }, } }, - ["TinctureIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(25-29)% increased Melee Weapon Attack Speed", statOrder = { 10921 }, level = 85, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2038105340] = { "(25-29)% increased Melee Weapon Attack Speed" }, } }, - ["TinctureDamageAgainstLowLife1"] = { type = "Suffix", affix = "of Execution", "(40-47)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10931 }, level = 1, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(40-47)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, - ["TinctureDamageAgainstLowLife2"] = { type = "Suffix", affix = "of Elimination", "(48-55)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10931 }, level = 28, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(48-55)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, - ["TinctureDamageAgainstLowLife3"] = { type = "Suffix", affix = "of Termination", "(56-63)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10931 }, level = 47, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(56-63)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, - ["TinctureDamageAgainstLowLife4"] = { type = "Suffix", affix = "of Extermination", "(64-71)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10931 }, level = 65, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(64-71)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, - ["TinctureDamageAgainstLowLife5"] = { type = "Suffix", affix = "of Assassination", "(72-79)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10931 }, level = 80, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(72-79)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, - ["TinctureLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (11-15) Life per Enemy Killed with Melee Weapons", statOrder = { 10928 }, level = 1, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2507321875] = { "Gain (11-15) Life per Enemy Killed with Melee Weapons" }, } }, - ["TinctureLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (16-20) Life per Enemy Killed with Melee Weapons", statOrder = { 10928 }, level = 35, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2507321875] = { "Gain (16-20) Life per Enemy Killed with Melee Weapons" }, } }, - ["TinctureLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (21-25) Life per Enemy Killed with Melee Weapons", statOrder = { 10928 }, level = 62, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2507321875] = { "Gain (21-25) Life per Enemy Killed with Melee Weapons" }, } }, - ["TinctureLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (26-30) Life per Enemy Killed with Melee Weapons", statOrder = { 10928 }, level = 80, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2507321875] = { "Gain (26-30) Life per Enemy Killed with Melee Weapons" }, } }, - ["TinctureManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per Enemy Killed with Melee Weapons", statOrder = { 10922 }, level = 38, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2230910022] = { "Gain (2-3) Mana per Enemy Killed with Melee Weapons" }, } }, - ["TinctureManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per Enemy Killed with Melee Weapons", statOrder = { 10922 }, level = 50, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2230910022] = { "Gain (4-5) Mana per Enemy Killed with Melee Weapons" }, } }, - ["TinctureManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (6-8) Mana per Enemy Killed with Melee Weapons", statOrder = { 10922 }, level = 68, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2230910022] = { "Gain (6-8) Mana per Enemy Killed with Melee Weapons" }, } }, - ["TinctureManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Assimilation", "Gain (9-11) Mana per Enemy Killed with Melee Weapons", statOrder = { 10922 }, level = 82, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2230910022] = { "Gain (9-11) Mana per Enemy Killed with Melee Weapons" }, } }, - ["TinctureLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Melee Weapons", statOrder = { 10927 }, level = 1, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3497810785] = { "Gain (2-3) Life per Enemy Hit with Melee Weapons" }, } }, - ["TinctureLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (3-4) Life per Enemy Hit with Melee Weapons", statOrder = { 10927 }, level = 50, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3497810785] = { "Gain (3-4) Life per Enemy Hit with Melee Weapons" }, } }, - ["TinctureLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (5-7) Life per Enemy Hit with Melee Weapons", statOrder = { 10927 }, level = 77, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3497810785] = { "Gain (5-7) Life per Enemy Hit with Melee Weapons" }, } }, - ["TinctureManaGainPerTarget1"] = { type = "Suffix", affix = "of Enveloping", "Gain 1 Mana per Enemy Hit with Melee Weapons", statOrder = { 10929 }, level = 45, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [766380077] = { "Gain 1 Mana per Enemy Hit with Melee Weapons" }, } }, - ["TinctureManaGainPerTarget2"] = { type = "Suffix", affix = "of Siphoning", "Gain 2 Mana per Enemy Hit with Melee Weapons", statOrder = { 10929 }, level = 68, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [766380077] = { "Gain 2 Mana per Enemy Hit with Melee Weapons" }, } }, - ["TinctureManaGainPerTarget3"] = { type = "Suffix", affix = "of Devouring", "Gain 3 Mana per Enemy Hit with Melee Weapons", statOrder = { 10929 }, level = 84, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [766380077] = { "Gain 3 Mana per Enemy Hit with Melee Weapons" }, } }, - ["TinctureFlaskChargeIncrease1"] = { type = "Suffix", affix = "of Restocking", "(11-15)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10926 }, level = 1, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [6637015] = { "(11-15)% increased Flask Charges gained from Kills with Melee Weapons" }, } }, - ["TinctureFlaskChargeIncrease2"] = { type = "Suffix", affix = "of Replenishing", "(16-20)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10926 }, level = 40, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [6637015] = { "(16-20)% increased Flask Charges gained from Kills with Melee Weapons" }, } }, - ["TinctureFlaskChargeIncrease3"] = { type = "Suffix", affix = "of Pouring", "(21-25)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10926 }, level = 72, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [6637015] = { "(21-25)% increased Flask Charges gained from Kills with Melee Weapons" }, } }, - ["TinctureFlaskChargeIncrease4"] = { type = "Suffix", affix = "of Overflowing", "(26-30)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10926 }, level = 85, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [6637015] = { "(26-30)% increased Flask Charges gained from Kills with Melee Weapons" }, } }, - ["TinctureIgnorePhysDR1"] = { type = "Suffix", affix = "of Battering", "Melee Weapon Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10892 }, level = 40, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1676663186] = { "Melee Weapon Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["TinctureIgnorePhysDR2"] = { type = "Suffix", affix = "of Crushing", "Melee Weapon Hits have (40-49)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10892 }, level = 62, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1676663186] = { "Melee Weapon Hits have (40-49)% chance to ignore Enemy Physical Damage Reduction" }, } }, - ["TinctureIgnorePhysDR3"] = { type = "Suffix", affix = "of Overwhelming", "Melee Weapon Hits have (50-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10892 }, level = 80, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1676663186] = { "Melee Weapon Hits have (50-60)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["TinctureEffect1"] = { type = "Prefix", affix = "Herbal", "(11-13)% increased effect", statOrder = { 11072 }, level = 1, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(11-13)% increased effect" }, } }, + ["TinctureEffect2"] = { type = "Prefix", affix = "Natural", "(14-16)% increased effect", statOrder = { 11072 }, level = 35, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(14-16)% increased effect" }, } }, + ["TinctureEffect3"] = { type = "Prefix", affix = "Medicinal", "(17-19)% increased effect", statOrder = { 11072 }, level = 64, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(17-19)% increased effect" }, } }, + ["TinctureEffect4"] = { type = "Prefix", affix = "Horticultural", "(20-22)% increased effect", statOrder = { 11072 }, level = 85, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(20-22)% increased effect" }, } }, + ["TinctureToxicityRate1"] = { type = "Prefix", affix = "Sustained", "(15-17)% reduced Mana Burn rate", statOrder = { 11073 }, level = 1, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [116232170] = { "(15-17)% reduced Mana Burn rate" }, } }, + ["TinctureToxicityRate2"] = { type = "Prefix", affix = "Tenacious", "(18-20)% reduced Mana Burn rate", statOrder = { 11073 }, level = 30, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [116232170] = { "(18-20)% reduced Mana Burn rate" }, } }, + ["TinctureToxicityRate3"] = { type = "Prefix", affix = "Persistent", "(21-23)% reduced Mana Burn rate", statOrder = { 11073 }, level = 58, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [116232170] = { "(21-23)% reduced Mana Burn rate" }, } }, + ["TinctureToxicityRate4"] = { type = "Prefix", affix = "Persevering", "(24-26)% reduced Mana Burn rate", statOrder = { 11073 }, level = 80, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [116232170] = { "(24-26)% reduced Mana Burn rate" }, } }, + ["TinctureCooldownRecovery1"] = { type = "Prefix", affix = "Lucid", "(13-17)% increased Cooldown Recovery Rate", statOrder = { 11071 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [239144] = { "(13-17)% increased Cooldown Recovery Rate" }, } }, + ["TinctureCooldownRecovery2"] = { type = "Prefix", affix = "Perceptive", "(18-22)% increased Cooldown Recovery Rate", statOrder = { 11071 }, level = 30, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [239144] = { "(18-22)% increased Cooldown Recovery Rate" }, } }, + ["TinctureCooldownRecovery3"] = { type = "Prefix", affix = "Insightful", "(23-27)% increased Cooldown Recovery Rate", statOrder = { 11071 }, level = 58, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [239144] = { "(23-27)% increased Cooldown Recovery Rate" }, } }, + ["TinctureCooldownRecovery4"] = { type = "Prefix", affix = "Astute", "(28-32)% increased Cooldown Recovery Rate", statOrder = { 11071 }, level = 82, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [239144] = { "(28-32)% increased Cooldown Recovery Rate" }, } }, + ["TinctureEffectFasterToxicity1"] = { type = "Prefix", affix = "Potent", "35% increased effect", "(47-51)% increased Mana Burn rate", statOrder = { 11072, 11073 }, level = 1, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "35% increased effect" }, [116232170] = { "(47-51)% increased Mana Burn rate" }, } }, + ["TinctureEffectFasterToxicity2"] = { type = "Prefix", affix = "Concentrated", "35% increased effect", "(42-46)% increased Mana Burn rate", statOrder = { 11072, 11073 }, level = 49, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "35% increased effect" }, [116232170] = { "(42-46)% increased Mana Burn rate" }, } }, + ["TinctureEffectFasterToxicity3"] = { type = "Prefix", affix = "Enriched", "35% increased effect", "(37-41)% increased Mana Burn rate", statOrder = { 11072, 11073 }, level = 84, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "35% increased effect" }, [116232170] = { "(37-41)% increased Mana Burn rate" }, } }, + ["TinctureEffectSlowerToxicity1"] = { type = "Prefix", affix = "Thin", "(31-35)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 11072, 11073 }, level = 1, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(31-35)% reduced effect" }, [116232170] = { "50% reduced Mana Burn rate" }, } }, + ["TinctureEffectSlowerToxicity2"] = { type = "Prefix", affix = "Diluted", "(26-30)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 11072, 11073 }, level = 49, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(26-30)% reduced effect" }, [116232170] = { "50% reduced Mana Burn rate" }, } }, + ["TinctureEffectSlowerToxicity3"] = { type = "Prefix", affix = "Measured", "(21-25)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 11072, 11073 }, level = 84, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, tradeHashes = { [3529940209] = { "(21-25)% reduced effect" }, [116232170] = { "50% reduced Mana Burn rate" }, } }, + ["TinctureIncreasedAilmentDuration1"] = { type = "Suffix", affix = "of the Wild", "(25-35)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 11092 }, level = 1, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, tradeHashes = { [3284469689] = { "(25-35)% increased Duration of Elemental Ailments from Melee Weapon Attacks" }, } }, + ["TinctureIncreasedAilmentDuration2"] = { type = "Suffix", affix = "of the Untamed", "(36-45)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 11092 }, level = 42, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, tradeHashes = { [3284469689] = { "(36-45)% increased Duration of Elemental Ailments from Melee Weapon Attacks" }, } }, + ["TinctureIncreasedAilmentDuration3"] = { type = "Suffix", affix = "of the Savage", "(46-55)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 11092 }, level = 60, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, tradeHashes = { [3284469689] = { "(46-55)% increased Duration of Elemental Ailments from Melee Weapon Attacks" }, } }, + ["TinctureIncreasedAilmentDuration4"] = { type = "Suffix", affix = "of the Beast", "(56-65)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 11092 }, level = 82, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, tradeHashes = { [3284469689] = { "(56-65)% increased Duration of Elemental Ailments from Melee Weapon Attacks" }, } }, + ["TinctureDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(9-13)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 11091 }, level = 1, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(9-13)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, + ["TinctureDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Dispersion", "+(14-18)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 11091 }, level = 34, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(14-18)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, + ["TinctureDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Liquefaction", "+(19-23)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 11091 }, level = 58, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(19-23)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, + ["TinctureDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Melting", "+(24-28)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 11091 }, level = 70, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(24-28)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, + ["TinctureDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Dissolution", "+(29-33)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 11091 }, level = 84, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1867426121] = { "+(29-33)% to Damage over Time Multiplier with Melee Weapon Attacks" }, } }, + ["TinctureElementalPenetration1"] = { type = "Suffix", affix = "of Catalysing", "Melee Weapon Damage Penetrates (5-7)% Elemental Resistances", statOrder = { 11097 }, level = 1, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (5-7)% Elemental Resistances" }, } }, + ["TinctureElementalPenetration2"] = { type = "Suffix", affix = "of Infusing", "Melee Weapon Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 11097 }, level = 32, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (8-10)% Elemental Resistances" }, } }, + ["TinctureElementalPenetration3"] = { type = "Suffix", affix = "of Empowering", "Melee Weapon Damage Penetrates (11-13)% Elemental Resistances", statOrder = { 11097 }, level = 60, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (11-13)% Elemental Resistances" }, } }, + ["TinctureElementalPenetration4"] = { type = "Suffix", affix = "of the Unleashed", "Melee Weapon Damage Penetrates (14-16)% Elemental Resistances", statOrder = { 11097 }, level = 73, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (14-16)% Elemental Resistances" }, } }, + ["TinctureElementalPenetration5"] = { type = "Suffix", affix = "of Overpowering", "Melee Weapon Damage Penetrates (17-19)% Elemental Resistances", statOrder = { 11097 }, level = 85, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [2499808413] = { "Melee Weapon Damage Penetrates (17-19)% Elemental Resistances" }, } }, + ["TinctureCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(9-13)% to Melee Weapon Critical Strike Multiplier", statOrder = { 11090 }, level = 1, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(9-13)% to Melee Weapon Critical Strike Multiplier" }, } }, + ["TinctureCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(14-18)% to Melee Weapon Critical Strike Multiplier", statOrder = { 11090 }, level = 32, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(14-18)% to Melee Weapon Critical Strike Multiplier" }, } }, + ["TinctureCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(19-23)% to Melee Weapon Critical Strike Multiplier", statOrder = { 11090 }, level = 60, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(19-23)% to Melee Weapon Critical Strike Multiplier" }, } }, + ["TinctureCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(24-28)% to Melee Weapon Critical Strike Multiplier", statOrder = { 11090 }, level = 73, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(24-28)% to Melee Weapon Critical Strike Multiplier" }, } }, + ["TinctureCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(29-33)% to Melee Weapon Critical Strike Multiplier", statOrder = { 11090 }, level = 85, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [605218169] = { "+(29-33)% to Melee Weapon Critical Strike Multiplier" }, } }, + ["TinctureIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(15-19)% increased Melee Weapon Attack Speed", statOrder = { 11088 }, level = 1, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2038105340] = { "(15-19)% increased Melee Weapon Attack Speed" }, } }, + ["TinctureIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(20-24)% increased Melee Weapon Attack Speed", statOrder = { 11088 }, level = 65, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2038105340] = { "(20-24)% increased Melee Weapon Attack Speed" }, } }, + ["TinctureIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(25-29)% increased Melee Weapon Attack Speed", statOrder = { 11088 }, level = 85, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2038105340] = { "(25-29)% increased Melee Weapon Attack Speed" }, } }, + ["TinctureDamageAgainstLowLife1"] = { type = "Suffix", affix = "of Execution", "(40-47)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 11098 }, level = 1, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(40-47)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, + ["TinctureDamageAgainstLowLife2"] = { type = "Suffix", affix = "of Elimination", "(48-55)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 11098 }, level = 28, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(48-55)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, + ["TinctureDamageAgainstLowLife3"] = { type = "Suffix", affix = "of Termination", "(56-63)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 11098 }, level = 47, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(56-63)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, + ["TinctureDamageAgainstLowLife4"] = { type = "Suffix", affix = "of Extermination", "(64-71)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 11098 }, level = 65, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(64-71)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, + ["TinctureDamageAgainstLowLife5"] = { type = "Suffix", affix = "of Assassination", "(72-79)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 11098 }, level = 80, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [259714394] = { "(72-79)% increased Melee Weapon Damage against Enemies that are on Low Life" }, } }, + ["TinctureLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (11-15) Life per Enemy Killed with Melee Weapons", statOrder = { 11095 }, level = 1, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2507321875] = { "Gain (11-15) Life per Enemy Killed with Melee Weapons" }, } }, + ["TinctureLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (16-20) Life per Enemy Killed with Melee Weapons", statOrder = { 11095 }, level = 35, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2507321875] = { "Gain (16-20) Life per Enemy Killed with Melee Weapons" }, } }, + ["TinctureLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (21-25) Life per Enemy Killed with Melee Weapons", statOrder = { 11095 }, level = 62, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2507321875] = { "Gain (21-25) Life per Enemy Killed with Melee Weapons" }, } }, + ["TinctureLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (26-30) Life per Enemy Killed with Melee Weapons", statOrder = { 11095 }, level = 80, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2507321875] = { "Gain (26-30) Life per Enemy Killed with Melee Weapons" }, } }, + ["TinctureManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per Enemy Killed with Melee Weapons", statOrder = { 11089 }, level = 38, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2230910022] = { "Gain (2-3) Mana per Enemy Killed with Melee Weapons" }, } }, + ["TinctureManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per Enemy Killed with Melee Weapons", statOrder = { 11089 }, level = 50, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2230910022] = { "Gain (4-5) Mana per Enemy Killed with Melee Weapons" }, } }, + ["TinctureManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (6-8) Mana per Enemy Killed with Melee Weapons", statOrder = { 11089 }, level = 68, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2230910022] = { "Gain (6-8) Mana per Enemy Killed with Melee Weapons" }, } }, + ["TinctureManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Assimilation", "Gain (9-11) Mana per Enemy Killed with Melee Weapons", statOrder = { 11089 }, level = 82, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2230910022] = { "Gain (9-11) Mana per Enemy Killed with Melee Weapons" }, } }, + ["TinctureLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Melee Weapons", statOrder = { 11094 }, level = 1, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3497810785] = { "Gain (2-3) Life per Enemy Hit with Melee Weapons" }, } }, + ["TinctureLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (3-4) Life per Enemy Hit with Melee Weapons", statOrder = { 11094 }, level = 50, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3497810785] = { "Gain (3-4) Life per Enemy Hit with Melee Weapons" }, } }, + ["TinctureLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (5-7) Life per Enemy Hit with Melee Weapons", statOrder = { 11094 }, level = 77, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3497810785] = { "Gain (5-7) Life per Enemy Hit with Melee Weapons" }, } }, + ["TinctureManaGainPerTarget1"] = { type = "Suffix", affix = "of Enveloping", "Gain 1 Mana per Enemy Hit with Melee Weapons", statOrder = { 11096 }, level = 45, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [766380077] = { "Gain 1 Mana per Enemy Hit with Melee Weapons" }, } }, + ["TinctureManaGainPerTarget2"] = { type = "Suffix", affix = "of Siphoning", "Gain 2 Mana per Enemy Hit with Melee Weapons", statOrder = { 11096 }, level = 68, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [766380077] = { "Gain 2 Mana per Enemy Hit with Melee Weapons" }, } }, + ["TinctureManaGainPerTarget3"] = { type = "Suffix", affix = "of Devouring", "Gain 3 Mana per Enemy Hit with Melee Weapons", statOrder = { 11096 }, level = 84, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [766380077] = { "Gain 3 Mana per Enemy Hit with Melee Weapons" }, } }, + ["TinctureFlaskChargeIncrease1"] = { type = "Suffix", affix = "of Restocking", "(11-15)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 11093 }, level = 1, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [6637015] = { "(11-15)% increased Flask Charges gained from Kills with Melee Weapons" }, } }, + ["TinctureFlaskChargeIncrease2"] = { type = "Suffix", affix = "of Replenishing", "(16-20)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 11093 }, level = 40, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [6637015] = { "(16-20)% increased Flask Charges gained from Kills with Melee Weapons" }, } }, + ["TinctureFlaskChargeIncrease3"] = { type = "Suffix", affix = "of Pouring", "(21-25)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 11093 }, level = 72, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [6637015] = { "(21-25)% increased Flask Charges gained from Kills with Melee Weapons" }, } }, + ["TinctureFlaskChargeIncrease4"] = { type = "Suffix", affix = "of Overflowing", "(26-30)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 11093 }, level = 85, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, tradeHashes = { [6637015] = { "(26-30)% increased Flask Charges gained from Kills with Melee Weapons" }, } }, + ["TinctureIgnorePhysDR1"] = { type = "Suffix", affix = "of Battering", "Melee Weapon Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 11059 }, level = 40, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1676663186] = { "Melee Weapon Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["TinctureIgnorePhysDR2"] = { type = "Suffix", affix = "of Crushing", "Melee Weapon Hits have (40-49)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 11059 }, level = 62, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1676663186] = { "Melee Weapon Hits have (40-49)% chance to ignore Enemy Physical Damage Reduction" }, } }, + ["TinctureIgnorePhysDR3"] = { type = "Suffix", affix = "of Overwhelming", "Melee Weapon Hits have (50-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 11059 }, level = 80, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1676663186] = { "Melee Weapon Hits have (50-60)% chance to ignore Enemy Physical Damage Reduction" }, } }, } \ No newline at end of file diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index d3d130e2aa..02cc8cd8cc 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -2,261 +2,262 @@ -- Item data (c) Grinding Gear Games return { - ["JunMasterAvoidStunAndElementalStatusAilments1"] = { type = "Prefix", affix = "Chosen", "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1843, 1851 }, level = 1, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndImpaleCrafted"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1232, 7861 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [725880290] = { "(21-25)% chance to Impale Enemies on Hit with Attacks" }, } }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBleedChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to cause Bleeding on Hit", statOrder = { 1232, 2483 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [1519615863] = { "(21-25)% chance to cause Bleeding on Hit" }, } }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBlindChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Blind Enemies on hit", statOrder = { 1232, 2263 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [2301191210] = { "(21-25)% chance to Blind Enemies on hit" }, } }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndPoisonChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Poison on Hit", statOrder = { 1232, 8003 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [3885634897] = { "(21-25)% chance to Poison on Hit" }, } }, - ["JunMasterVeiledElementalPenetrationWithAttacks_"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances", statOrder = { 3761 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances" }, } }, - ["JunMasterVeiledChaosPenetrationWithAttacks__"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance", statOrder = { 7876 }, level = 60, group = "LocalChaosPenetration", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance" }, } }, - ["JunMasterVeiledDoubleDamageChance2h_"] = { type = "Suffix", affix = "of the Order", "(12-14)% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1172810729] = { "(12-14)% chance to deal Double Damage" }, } }, - ["JunMasterVeiledDoubleDamageChance1h"] = { type = "Suffix", affix = "of the Order", "(6-7)% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1172810729] = { "(6-7)% chance to deal Double Damage" }, } }, - ["JunMasterVeiledAreaDamageAndAreaOfEffect"] = { type = "Prefix", affix = "Chosen", "(14-16)% increased Area of Effect", "(17-20)% increased Area Damage", statOrder = { 1880, 2035 }, level = 60, group = "AreaDamageAndAreaOfEffect", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [4251717817] = { "(17-20)% increased Area Damage" }, [280731498] = { "(14-16)% increased Area of Effect" }, } }, - ["JunMasterVeiledProjectileDamageAndProjectileSpeed"] = { type = "Prefix", affix = "Chosen", "(23-25)% increased Projectile Speed", "(17-20)% increased Projectile Damage", statOrder = { 1796, 1996 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "speed" }, tradeHashes = { [3759663284] = { "(23-25)% increased Projectile Speed" }, [1839076647] = { "(17-20)% increased Projectile Damage" }, } }, - ["JunMasterVeiledMeleeDamageAndMeleeRange"] = { type = "Prefix", affix = "Chosen", "(17-20)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 60, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [1002362373] = { "(17-20)% increased Melee Damage" }, } }, - ["JunMasterVeiledFireDamageAndChanceToIgnite1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 1357, 2026 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(70-79)% increased Fire Damage" }, [1335054179] = { "(21-23)% chance to Ignite" }, } }, - ["JunMasterVeiledFireDamageAndChanceToIgnite2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Fire Damage", "(35-40)% chance to Ignite", statOrder = { 1357, 2026 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(100-109)% increased Fire Damage" }, [1335054179] = { "(35-40)% chance to Ignite" }, } }, - ["JunMasterVeiledColdDamageAndBaseChanceToFreeze1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(70-79)% increased Cold Damage" }, [44571480] = { "(21-23)% chance to Freeze" }, } }, - ["JunMasterVeiledColdDamageAndBaseChanceToFreeze2h__"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Cold Damage", "(35-40)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(100-109)% increased Cold Damage" }, [44571480] = { "(35-40)% chance to Freeze" }, } }, - ["JunMasterVeiledLightningDamageAndChanceToShock1h_"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 1377, 2033 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(21-23)% chance to Shock" }, [2231156303] = { "(70-79)% increased Lightning Damage" }, } }, - ["JunMasterVeiledLightningDamageAndChanceToShock2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Lightning Damage", "(35-40)% chance to Shock", statOrder = { 1377, 2033 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(35-40)% chance to Shock" }, [2231156303] = { "(100-109)% increased Lightning Damage" }, } }, - ["JunMasterVeiledChaosDamageAndChaosSkillDuration1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Chaos Damage", "Chaos Skills have (13-15)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-69)% increased Chaos Damage" }, [289885185] = { "Chaos Skills have (13-15)% increased Skill Effect Duration" }, } }, - ["JunMasterVeiledChaosDamageAndChaosSkillDuration2h_"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Chaos Damage", "Chaos Skills have (26-30)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(90-99)% increased Chaos Damage" }, [289885185] = { "Chaos Skills have (26-30)% increased Skill Effect Duration" }, } }, - ["JunMasterVeiledSpellDamageAndManaRegenerationRate1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Spell Damage", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-79)% increased Spell Damage" }, [789117908] = { "(18-20)% increased Mana Regeneration Rate" }, } }, - ["JunMasterVeiledSpellDamageAndManaRegenerationRate2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Spell Damage", "(36-40)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-109)% increased Spell Damage" }, [789117908] = { "(36-40)% increased Mana Regeneration Rate" }, } }, - ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(60-69)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage2h"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Spell Damage", "Gain (9-10)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9489 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(90-99)% increased Spell Damage" }, [2063695047] = { "Gain (9-10)% of Non-Chaos Damage as extra Chaos Damage" }, } }, - ["JunMasterVeiledMinionDamageAndMinionMaximumLife1h"] = { type = "Prefix", affix = "Chosen", "Minions have (34-38)% increased maximum Life", "Minions deal (34-38)% increased Damage", statOrder = { 1766, 1973 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [770672621] = { "Minions have (34-38)% increased maximum Life" }, [1589917703] = { "Minions deal (34-38)% increased Damage" }, } }, - ["JunMasterVeiledMinionDamageAndMinionMaximumLife2h__"] = { type = "Prefix", affix = "Chosen", "Minions have (50-59)% increased maximum Life", "Minions deal (50-59)% increased Damage", statOrder = { 1766, 1973 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [770672621] = { "Minions have (50-59)% increased maximum Life" }, [1589917703] = { "Minions deal (50-59)% increased Damage" }, } }, - ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon1h"] = { type = "Suffix", affix = "of the Order", "Minions have (18-20)% increased Attack Speed", "Minions have (18-20)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (18-20)% increased Attack Speed" }, [4000101551] = { "Minions have (18-20)% increased Cast Speed" }, } }, - ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon2h"] = { type = "Suffix", affix = "of the Order", "Minions have (34-38)% increased Attack Speed", "Minions have (34-38)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (34-38)% increased Attack Speed" }, [4000101551] = { "Minions have (34-38)% increased Cast Speed" }, } }, - ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier2h"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(44-48)% to Chaos Damage over Time Multiplier" }, } }, - ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(44-48)% to Physical Damage over Time Multiplier" }, } }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } }, - ["JunMasterVeiledColdDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(44-48)% to Cold Damage over Time Multiplier" }, } }, - ["JunMasterVeiledColdDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } }, - ["JunMasterVeiledFireDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(44-48)% to Fire Damage over Time Multiplier" }, } }, - ["JunMasterVeiledFireDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } }, - ["JunMasterVeiledChaosDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(44-48)% to Chaos Damage over Time Multiplier" }, } }, - ["JunMasterVeiledChaosDamageOverTimeMultiplier__"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 0, 1000, 1000, 600, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplierTwoHand_"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(44-48)% to Physical Damage over Time Multiplier" }, } }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "weapon", "default", }, weightVal = { 400, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } }, - ["JunMasterVeiledColdDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(44-48)% to Cold Damage over Time Multiplier" }, } }, - ["JunMasterVeiledColdDamageOverTimeMultiplier___"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } }, - ["JunMasterVeiledFireDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(44-48)% to Fire Damage over Time Multiplier" }, } }, - ["JunMasterVeiledFireDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 100, 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(24-28)% increased Armour and Evasion" }, [3299347043] = { "+(17-19) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(17-19) to maximum Life" }, [3321629045] = { "(24-28)% increased Armour and Energy Shield" }, } }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(17-19) to maximum Life" }, [1999113824] = { "(24-28)% increased Evasion and Energy Shield" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "shield", "helmet", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, tradeHashes = { [1062208444] = { "(24-28)% increased Armour" }, [3299347043] = { "+(17-19) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedEvasionAndLife__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, tradeHashes = { [124859000] = { "(24-28)% increased Evasion Rating" }, [3299347043] = { "+(17-19) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(24-28)% increased Energy Shield" }, [3299347043] = { "+(17-19) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedDefencesAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(17-19) to maximum Life" }, [3523867985] = { "(24-28)% increased Armour, Evasion and Energy Shield" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(19-22) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(24-28)% increased Armour and Evasion" }, [3299347043] = { "+(19-22) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(19-22) to maximum Life" }, [3321629045] = { "(24-28)% increased Armour and Energy Shield" }, } }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(19-22) to maximum Life" }, [1999113824] = { "(24-28)% increased Evasion and Energy Shield" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(19-22) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, tradeHashes = { [1062208444] = { "(24-28)% increased Armour" }, [3299347043] = { "+(19-22) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedEvasionAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(19-22) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, tradeHashes = { [124859000] = { "(24-28)% increased Evasion Rating" }, [3299347043] = { "+(19-22) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(19-22) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(24-28)% increased Energy Shield" }, [3299347043] = { "+(19-22) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedDefencesAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(19-22) to maximum Life" }, [3523867985] = { "(24-28)% increased Armour, Evasion and Energy Shield" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(23-26) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(24-28)% increased Armour and Evasion" }, [3299347043] = { "+(23-26) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(23-26) to maximum Life" }, [3321629045] = { "(24-28)% increased Armour and Energy Shield" }, } }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(23-26) to maximum Life" }, [1999113824] = { "(24-28)% increased Evasion and Energy Shield" }, } }, - ["JunMasterVeiledLocalIncreasedArmourAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(23-26) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, tradeHashes = { [1062208444] = { "(24-28)% increased Armour" }, [3299347043] = { "+(23-26) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedEvasionAndLifeHigh_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(23-26) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, tradeHashes = { [124859000] = { "(24-28)% increased Evasion Rating" }, [3299347043] = { "+(23-26) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(23-26) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(24-28)% increased Energy Shield" }, [3299347043] = { "+(23-26) to maximum Life" }, } }, - ["JunMasterVeiledLocalIncreasedDefencesAndLifeHigh__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(23-26) to maximum Life" }, [3523867985] = { "(24-28)% increased Armour, Evasion and Energy Shield" }, } }, - ["JunMasterVeiledStrengthAndDexterity"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Dexterity", statOrder = { 1180 }, level = 60, group = "StrengthAndDexterity", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [538848803] = { "+(31-35) to Strength and Dexterity" }, } }, - ["JunMasterVeiledDexterityAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity and Intelligence", statOrder = { 1182 }, level = 60, group = "DexterityAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(31-35) to Dexterity and Intelligence" }, } }, - ["JunMasterVeiledStrengthAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Intelligence", statOrder = { 1181 }, level = 60, group = "StrengthAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(31-35) to Strength and Intelligence" }, } }, - ["JunMasterVeiledMinimumEnduranceCharges_"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to gain an Endurance Charge on Kill", statOrder = { 1803, 2629 }, level = 60, group = "MinimumEnduranceChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "endurance_charge", "unveiled_mod" }, tradeHashes = { [1054322244] = { "(3-4)% chance to gain an Endurance Charge on Kill" }, [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, - ["JunMasterVeiledMinimumPowerCharges"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to gain a Power Charge on Kill", statOrder = { 1813, 2633 }, level = 60, group = "MinimumPowerChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "power_charge", "unveiled_mod" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, [2483795307] = { "(3-4)% chance to gain a Power Charge on Kill" }, } }, - ["JunMasterVeiledMinimumFrenzyCharges___"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to gain a Frenzy Charge on Kill", statOrder = { 1808, 2631 }, level = 60, group = "MinimumFrenzyChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, [1826802197] = { "(3-4)% chance to gain a Frenzy Charge on Kill" }, } }, - ["JunMasterVeiledIncreasedManaAndRegen"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Regenerate 5.3 Mana per second", statOrder = { 1579, 1582 }, level = 60, group = "IncreasedManaAndRegen", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [4291461939] = { "Regenerate 5.3 Mana per second" }, } }, - ["JunMasterVeiledManaAndManaCostPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(6-7)% reduced Mana Cost of Skills", statOrder = { 1579, 1883 }, level = 60, group = "ManaAndManaCostPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [474294393] = { "(6-7)% reduced Mana Cost of Skills" }, } }, - ["JunMasterVeiledManaAndDamageTakenGoesToManaPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(7-8)% of Damage taken Recouped as Mana", statOrder = { 1579, 2455 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [472520716] = { "(7-8)% of Damage taken Recouped as Mana" }, } }, - ["JunMasterVeiledAttackAndCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 60, group = "AttackAndCastSpeed", weightKey = { "amulet", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, - ["JunMasterVeiledMovementVelocityAndMovementVelocityIfNotHitRecently"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(10-12)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3223 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [1177358866] = { "(10-12)% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, - ["JunMasterVeiledMovementVelocityAndOnslaughtOnKill"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(13-16)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1798, 2993 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [2988593550] = { "(13-16)% chance to gain Onslaught for 4 seconds on Kill" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, - ["JunMasterVeiledMovementVelocityAndCannotBeChilled__"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1798, 1844 }, level = 60, group = "MovementVelocityAndCannotBeChilled", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, tradeHashes = { [3483999943] = { "100% chance to Avoid being Chilled" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, - ["JunMasterVeiledArmourAndEvasionRating"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour and Evasion Rating", statOrder = { 4266 }, level = 60, group = "ArmourAndEvasionRating", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "evasion" }, tradeHashes = { [2316658489] = { "+(365-400) to Armour and Evasion Rating" }, } }, - ["JunMasterVeiledArmourAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour", "+(31-35) to maximum Energy Shield", statOrder = { 1539, 1558 }, level = 60, group = "ArmourAndEnergyShield", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, tradeHashes = { [809229260] = { "+(365-400) to Armour" }, [3489782002] = { "+(31-35) to maximum Energy Shield" }, } }, - ["JunMasterVeiledEvasionRatingAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Evasion Rating", "+(31-35) to maximum Energy Shield", statOrder = { 1544, 1558 }, level = 60, group = "EvasionRatingAndEnergyShield", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, tradeHashes = { [2144192055] = { "+(365-400) to Evasion Rating" }, [3489782002] = { "+(31-35) to maximum Energy Shield" }, } }, - ["JunMasterVeiledFlaskEffect"] = { type = "Prefix", affix = "Chosen", "Flasks applied to you have (9-10)% increased Effect", statOrder = { 2742 }, level = 60, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (9-10)% increased Effect" }, } }, - ["JunMasterVeiledChanceToNotConsumeFlaskCharges"] = { type = "Prefix", affix = "Chosen", "(9-10)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 60, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [311641062] = { "(9-10)% chance for Flasks you use to not consume Charges" }, } }, - ["JunMasterVeiledFlaskEffectAndFlaskChargesGained"] = { type = "Prefix", affix = "Chosen", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2183, 2742 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [1452809865] = { "33% reduced Flask Charges gained" }, [114734841] = { "Flasks applied to you have (15-18)% increased Effect" }, } }, - ["JunMasterVeiledFlaskEffectAndFlaskChargesGainedNew"] = { type = "Suffix", affix = "of the Order", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2183, 2742 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [1452809865] = { "33% reduced Flask Charges gained" }, [114734841] = { "Flasks applied to you have (15-18)% increased Effect" }, } }, - ["JunMasterVeiledGlobalCooldownRecovery"] = { type = "Suffix", affix = "of the Order", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 60, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, - ["JunMasterVeiledDamagePerEnduranceCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-6)% increased Damage per Endurance Charge" }, } }, - ["JunMasterVeiledDamagePerEnduranceCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [3515686789] = { "(7-8)% increased Damage per Endurance Charge" }, } }, - ["JunMasterVeiledDamagePerFrenzyCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [902747843] = { "(5-6)% increased Damage per Frenzy Charge" }, } }, - ["JunMasterVeiledDamagePerFrenzyCharge2h__"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [902747843] = { "(7-8)% increased Damage per Frenzy Charge" }, } }, - ["JunMasterVeiledDamagePerPowerCharge1h_"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Power Charge", statOrder = { 6066 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-6)% increased Damage per Power Charge" }, } }, - ["JunMasterVeiledDamagePerPowerCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Power Charge", statOrder = { 6066 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2034658008] = { "(7-8)% increased Damage per Power Charge" }, } }, - ["JunMasterVeiledPhysicalDamageConvertedToFire_"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(30-35)% of Physical Damage Converted to Fire Damage" }, } }, - ["JunMasterVeiledPhysicalDamageConvertedToCold"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(30-35)% of Physical Damage Converted to Cold Damage" }, } }, - ["JunMasterVeiledPhysicalDamageConvertedToLightning"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(30-35)% of Physical Damage Converted to Lightning Damage" }, } }, - ["JunMasterVeiledMaximumZombieAndSkeleton"] = { type = "Prefix", affix = "Chosen", "Minions have (8-10)% increased maximum Life", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1766, 2160, 2162 }, level = 60, group = "MaximumMinionCountAndMinionLife", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 2000, 0, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [770672621] = { "Minions have (8-10)% increased maximum Life" }, } }, - ["JunMasterVeiledEffectOfAilments__"] = { type = "Suffix", affix = "of the Order", "(33-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9500 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [782230869] = { "(33-40)% increased Effect of Non-Damaging Ailments" }, } }, - ["JunMasterVeiledMaximumCurse"] = { type = "Prefix", affix = "Chosen", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["JunMasterVeiledCurseEffect"] = { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 3000, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-10)% increased Effect of your Curses" }, } }, - ["JunMasterVeiledLifeRegeneration"] = { type = "Suffix", affix = "of the Order", "Regenerate (1.03-1.33)% of Life per second", statOrder = { 1944 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.03-1.33)% of Life per second" }, } }, - ["JunMasterVeiledAvoidElementalDamageChanceDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "(10-12)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4943 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "elemental" }, tradeHashes = { [720398262] = { "(10-12)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention" }, } }, - ["JunMasterVeiledPhysicalDamageReductionRatingDuringSoulGainPrevention"] = { type = "Prefix", affix = "Chosen", "+(3201-4000) to Armour during Soul Gain Prevention", statOrder = { 9652 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "physical" }, tradeHashes = { [1539825365] = { "+(3201-4000) to Armour during Soul Gain Prevention" }, } }, - ["JunMasterVeiledGainOnslaughtDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "You have Onslaught during Soul Gain Prevention", statOrder = { 6781 }, level = 60, group = "GainOnslaughtDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1572897579] = { "You have Onslaught during Soul Gain Prevention" }, } }, - ["JunMasterVeiledDamageWithNonVaalSkillsDuringSoulGainPrevention_"] = { type = "Suffix", affix = "of the Order", "(71-80)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6084 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1583385065] = { "(71-80)% increased Damage with Non-Vaal Skills during Soul Gain Prevention" }, } }, - ["JunMasterVeiledSkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 176, 1880 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [2551600084] = { "+2 to Level of Socketed AoE Gems" }, [280731498] = { "(8-10)% increased Area of Effect" }, } }, - ["JunMasterVeiledProjectilePierceAndProjectileGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 177, 1790 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [2176571093] = { "+2 to Level of Socketed Projectile Gems" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["JunMasterVeiledMeleeRangeAndMeleeGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 179, 2534 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "attack", "attack", "gem" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [829382474] = { "+2 to Level of Socketed Melee Gems" }, } }, - ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "+(36-40)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, tradeHashes = { [3992439283] = { "+(36-40)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby" }, } }, - ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "+(54-60)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, tradeHashes = { [3992439283] = { "+(54-60)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby" }, } }, - ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [314741699] = { "(12-15)% increased Attack Speed while a Rare or Unique Enemy is Nearby" }, } }, - ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [314741699] = { "(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby" }, } }, - ["JunMasterVeiledEnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { type = "Suffix", affix = "of the Order", "Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6457 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, tradeHashes = { [2238019079] = { "Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby" }, } }, - ["JunMasterVeiledCriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { type = "Suffix", affix = "of the Order", "(18-20)% increased Global Critical Strike Chance", "(6-7)% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1459, 6756 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", weightKey = { "quiver", "default", }, weightVal = { 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod", "critical" }, tradeHashes = { [3032585258] = { "(6-7)% chance to gain a Frenzy Charge on Critical Strike" }, [587431675] = { "(18-20)% increased Global Critical Strike Chance" }, } }, - ["JunMasterVeiledCriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "(27-30)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 6303 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, tradeHashes = { [2379781920] = { "(27-30)% increased Elemental Damage if you've dealt a Critical Strike Recently" }, [587431675] = { "(20-22)% increased Global Critical Strike Chance" }, } }, - ["JunMasterVeiledCriticalChanceAndAddedChaosDamageIfHaveCritRecently_"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "Adds (22-25) to (28-32) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 9225 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, tradeHashes = { [587431675] = { "(20-22)% increased Global Critical Strike Chance" }, [2523334466] = { "Adds (22-25) to (28-32) Chaos Damage if you've dealt a Critical Strike Recently" }, } }, - ["JunMasterVeiledBaseLifeAndMana_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "+(55-60) to maximum Mana", statOrder = { 1569, 1579 }, level = 60, group = "BaseLifeAndMana", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1050105434] = { "+(55-60) to maximum Mana" }, [3299347043] = { "+(55-60) to maximum Life" }, } }, - ["JunMasterVeiledBaseLifeAndManaRegen_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Regenerate 5.3 Mana per second", statOrder = { 1569, 1582 }, level = 60, group = "BaseLifeAndManaRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 5.3 Mana per second" }, [3299347043] = { "+(55-60) to maximum Life" }, } }, - ["JunMasterVeiledBaseManaAndLifeRegen__"] = { type = "Prefix", affix = "Chosen", "Regenerate 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1574, 1579 }, level = 60, group = "BaseManaAndLifeRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1050105434] = { "+(55-60) to maximum Mana" }, [3325883026] = { "Regenerate 33.3 Life per second" }, } }, - ["JunMasterVeiledSummonTotemCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Totem Placement speed", statOrder = { 2578 }, level = 60, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [3374165039] = { "(36-40)% increased Totem Placement speed" }, } }, - ["JunMasterVeiledTrapThrowSpeed_"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 60, group = "TrapThrowSpeed", weightKey = { "amulet", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [118398748] = { "(14-16)% increased Trap Throwing Speed" }, } }, - ["JunMasterVeiledMineLayingSpeed"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 60, group = "MineLayingSpeed", weightKey = { "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [1896971621] = { "(14-16)% increased Mine Throwing Speed" }, } }, - ["JunMasterVeiledBrandAttachmentRange"] = { type = "Suffix", affix = "of the Order", "(25-28)% increased Brand Attachment range", statOrder = { 10044 }, level = 60, group = "BrandAttachmentRange", weightKey = { "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "caster" }, tradeHashes = { [4223377453] = { "(25-28)% increased Brand Attachment range" }, } }, - ["JunMasterVeiledAddedFireAndColdDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Cold Damage", statOrder = { 1359, 1368 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, tradeHashes = { [2387423236] = { "Adds (14-16) to (20-22) Cold Damage" }, [321077055] = { "Adds (14-16) to (20-22) Fire Damage" }, } }, - ["JunMasterVeiledAddedFireAndColdDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Cold Damage", statOrder = { 1359, 1368 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, tradeHashes = { [2387423236] = { "Adds (9-10) to (13-14) Cold Damage" }, [321077055] = { "Adds (9-10) to (13-14) Fire Damage" }, } }, - ["JunMasterVeiledAddedFireAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1359, 1379 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [1334060246] = { "Adds (14-16) to (20-22) Lightning Damage" }, [321077055] = { "Adds (14-16) to (20-22) Fire Damage" }, } }, - ["JunMasterVeiledAddedFireAndLightningDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1359, 1379 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [1334060246] = { "Adds (9-10) to (13-14) Lightning Damage" }, [321077055] = { "Adds (9-10) to (13-14) Fire Damage" }, } }, - ["JunMasterVeiledAddedColdAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1368, 1379 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2387423236] = { "Adds (14-16) to (20-22) Cold Damage" }, [1334060246] = { "Adds (14-16) to (20-22) Lightning Damage" }, } }, - ["JunMasterVeiledAddedColdAndLightningDamageQuiver"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Cold Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1368, 1379 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2387423236] = { "Adds (9-10) to (13-14) Cold Damage" }, [1334060246] = { "Adds (9-10) to (13-14) Lightning Damage" }, } }, - ["JunMasterVeiledLuckyCriticalsDuringFocus"] = { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focused", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 6531, 6654 }, level = 60, group = "LuckyCriticalsDuringFocusCDR", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "critical" }, tradeHashes = { [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1349659520] = { "Your Critical Strike Chance is Lucky while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledDodgeChanceDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(30-32)% increased Evasion Rating while Focused", statOrder = { 6478 }, level = 60, group = "DodgeChanceDuringFocus", weightKey = { "helmet", "boots", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "defences", "evasion" }, tradeHashes = { [3839620417] = { "(30-32)% increased Evasion Rating while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledPhysicalDamageReductionDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(13-15)% additional Physical Damage Reduction while Focused", statOrder = { 4572 }, level = 60, group = "PhysicalDamageReductionDuringFocus", weightKey = { "helmet", "gloves", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "physical" }, tradeHashes = { [3753650187] = { "(13-15)% additional Physical Damage Reduction while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledShockNearbyEnemiesOnFocus"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6654, 10014 }, level = 60, group = "ShockNearbyEnemiesOnFocusCDR", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3031766858] = { "Shock nearby Enemies for 4 Seconds when you Focus" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledLifeRegenerationPerEvasionDuringFocus"] = { type = "Suffix", affix = "of the Order", "1.5% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6488 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [1533152070] = { "" }, [3244118730] = { "1.5% of Evasion Rating is Regenerated as Life per second while Focused" }, } }, - ["JunMasterVeiledRestoreManaAndEnergyShieldOnFocus"] = { type = "Suffix", affix = "of the Order", "Recover (37-40)% of Mana and Energy Shield when you Focus", statOrder = { 9925 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, tradeHashes = { [1533152070] = { "" }, [2992263716] = { "Recover (37-40)% of Mana and Energy Shield when you Focus" }, } }, - ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused2h_"] = { type = "Suffix", affix = "of the Order", "(36-40)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1533152070] = { "" }, [2908886986] = { "(36-40)% chance to deal Double Damage while Focused" }, } }, - ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused1h"] = { type = "Suffix", affix = "of the Order", "(18-20)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1533152070] = { "" }, [2908886986] = { "(18-20)% chance to deal Double Damage while Focused" }, } }, - ["JunMasterVeiledAttackAndCastSpeedWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(45-50)% increased Attack and Cast Speed while Focused", statOrder = { 4822 }, level = 60, group = "AttackAndCastSpeedWhileFocused", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, tradeHashes = { [1533152070] = { "" }, [2628163981] = { "(45-50)% increased Attack and Cast Speed while Focused" }, } }, - ["JunMasterVeiledStatusAilmentsYouInflictDurationWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Duration of Ailments you inflict while Focused", statOrder = { 10225 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [1533152070] = { "" }, [1840751341] = { "(36-40)% increased Duration of Ailments you inflict while Focused" }, } }, - ["JunMasterVeiledImmuneToStatusAilmentsWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "You are Immune to Ailments while Focused", statOrder = { 6654, 7240 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocusedCDR", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [1766730250] = { "You are Immune to Ailments while Focused" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledFocusCooldownRecovery_"] = { type = "Suffix", affix = "of the Order", "Focus has (31-35)% increased Cooldown Recovery Rate", statOrder = { 6654 }, level = 60, group = "FocusCooldownRecovery", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3610263531] = { "Focus has (31-35)% increased Cooldown Recovery Rate" }, } }, - ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched as Life while Focused", statOrder = { 6829, 7363 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", weightKey = { "amulet", "default", }, weightVal = { 3000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [3324747104] = { "15% of Damage Leeched as Life while Focused" }, [2022851697] = { "You have Vaal Pact while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledFortifyEffectWhileFocused_"] = { type = "Suffix", affix = "of the Order", "+10 to maximum Fortification while Focused", statOrder = { 9119 }, level = 60, group = "FortifyEffectWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [922014346] = { "+10 to maximum Fortification while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledTriggerSocketedSpellWhenYouFocus"] = { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 834, 6654 }, level = 60, group = "TriggerSocketedSpellWhenYouFocusCDR", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, tradeHashes = { [2062792091] = { "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledDamageRemovedFromManaBeforeLifeWhileFocused"] = { type = "Suffix", affix = "of the Order", "(18-22)% of Damage is taken from Mana before Life while Focused", statOrder = { 6089 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1588539856] = { "(18-22)% of Damage is taken from Mana before Life while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledMinionsRecoverMaximumLifeWhenYouFocus_"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Minions Recover 100% of their Life when you Focus", statOrder = { 6654, 9367 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocusCDR", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [3500359417] = { "Minions Recover 100% of their Life when you Focus" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledGainVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", statOrder = { 6829 }, level = 60, group = "GainVaalPactWhileFocused", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [1533152070] = { "" }, [2022851697] = { "You have Vaal Pact while Focused" }, } }, - ["JunMasterVeiledSkillsCostNoManaWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Non-Aura Skills Cost no Mana or Life while Focused", statOrder = { 6654, 10066 }, level = 60, group = "SkillsCostNoManaWhileFocusedCDR", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [849152640] = { "Non-Aura Skills Cost no Mana or Life while Focused" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledAllDamage"] = { type = "Prefix", affix = "Leo's", "(20-23)% increased Damage", statOrder = { 1191 }, level = 60, group = "AllDamage", weightKey = { "leo_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2154246560] = { "(20-23)% increased Damage" }, } }, - ["JunMasterVeiledLocalIncreaseSocketedSupportGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevelAndQuality", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-8)% to Quality of Socketed Support Gems" }, [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, - ["JunMasterVeiledChaosExplosionOnKill"] = { type = "Prefix", affix = "Catarina's", "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3305 }, level = 60, group = "ObliterationExplodeOnKillChaos", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [1776945532] = { "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, - ["JunMasterVeiledSupportedByCastOnCritAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are supported by Level 1 Cast On Critical Strike", "(80-89)% increased Spell Damage", statOrder = { 472, 1223 }, level = 60, group = "CastOnCritAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster", "critical" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 1 Cast On Critical Strike" }, [2974417149] = { "(80-89)% increased Spell Damage" }, } }, - ["JunMasterVeiledSupportedByCastWhileChannelingAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Cast While Channelling", "(80-89)% increased Spell Damage", statOrder = { 242, 1223 }, level = 60, group = "CastWhileChannelingAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-89)% increased Spell Damage" }, [1316646496] = { "Socketed Gems are Supported by Level 1 Cast While Channelling" }, } }, - ["JunMasterVeiledSupportedByArcaneSurgeAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Arcane Surge", "(80-89)% increased Spell Damage", statOrder = { 226, 1223 }, level = 60, group = "ArcaneSurgeAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, [2974417149] = { "(80-89)% increased Spell Damage" }, } }, - ["JunMasterVeiledReduceGlobalFlatManaCost"] = { type = "Prefix", affix = "Elreon's", "-(10-9) to Total Mana Cost of Skills", statOrder = { 1891 }, level = 60, group = "IncreaseManaCostFlat", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [3736589033] = { "-(10-9) to Total Mana Cost of Skills" }, } }, - ["JunMasterVeiledReduceGlobalFlatManaCostChannelling_"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills have -4 to Total Mana Cost", statOrder = { 10061 }, level = 60, group = "ManaCostTotalChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [2421446548] = { "Channelling Skills have -4 to Total Mana Cost" }, } }, - ["JunMasterVeiledReduceGlobalFlatManaCostNonChannelling"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(10-9) to Total Mana Cost", statOrder = { 10063 }, level = 60, group = "ManaCostTotalNonChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [677564538] = { "Non-Channelling Skills have -(10-9) to Total Mana Cost" }, } }, - ["JunMasterVeiledDamageWhileLeeching"] = { type = "Prefix", affix = "Vorici's", "(54-60)% increased Damage while Leeching", statOrder = { 3063 }, level = 60, group = "DamageWhileLeeching", weightKey = { "vorici_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [310246444] = { "(54-60)% increased Damage while Leeching" }, } }, - ["JunMasterVeiledSocketedGemQuality"] = { type = "Prefix", affix = "Haku's", "+(9-10)% to Quality of Socketed Gems", statOrder = { 204 }, level = 60, group = "SocketedGemQuality", weightKey = { "haku_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [3828613551] = { "+(9-10)% to Quality of Socketed Gems" }, } }, - ["JunMasterVeiledBleedOnHitGained1h"] = { type = "Prefix", affix = "Tora's", "Adds (12-14) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1940865751] = { "Adds (12-14) to (18-20) Physical Damage" }, [1519615863] = { "40% chance to cause Bleeding on Hit" }, } }, - ["JunMasterVeiledBleedOnHitGained2h"] = { type = "Prefix", affix = "Tora's", "Adds (17-20) to (26-28) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1940865751] = { "Adds (17-20) to (26-28) Physical Damage" }, [1519615863] = { "40% chance to cause Bleeding on Hit" }, } }, - ["JunMasterVeiledAlwaysHits"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2043 }, level = 60, group = "AlwaysHits", weightKey = { "vagan_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, - ["JunMasterVeiledDamageDuringFlaskEffect"] = { type = "Prefix", affix = "Brinerot", "(36-40)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 60, group = "DamageDuringFlaskEffect", weightKey = { "brinerot_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "flask", "unveiled_mod", "damage" }, tradeHashes = { [2947215268] = { "(36-40)% increased Damage during any Flask Effect" }, } }, - ["JunMasterVeiledItemRarityFromRareAndUniqueEnemies_"] = { type = "Suffix", affix = "of Janus", "(55-60)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9831 }, level = 60, group = "RareOrUniqueMonsterDroppedItemRarity", weightKey = { "janus_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "drop" }, tradeHashes = { [2161689853] = { "(55-60)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies" }, } }, - ["JunMasterVeiledFireAddedAsChaos1h_"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 60, group = "FireAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (9-10)% of Fire Damage as Extra Chaos Damage" }, } }, - ["JunMasterVeiledColdAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (9-10)% of Cold Damage as Extra Chaos Damage" }, } }, - ["JunMasterVeiledLightningAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (9-10)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["JunMasterVeiledPhysicalAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (9-10)% of Physical Damage as Extra Chaos Damage" }, } }, - ["JunMasterVeiledFireAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 60, group = "FireAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (18-20)% of Fire Damage as Extra Chaos Damage" }, } }, - ["JunMasterVeiledColdAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (18-20)% of Cold Damage as Extra Chaos Damage" }, } }, - ["JunMasterVeiledLightningAddedAsChaos2h__"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (18-20)% of Lightning Damage as Extra Chaos Damage" }, } }, - ["JunMasterVeiledPhysicalAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (18-20)% of Physical Damage as Extra Chaos Damage" }, } }, - ["JunMasterVeiledPercentageAllAttributes"] = { type = "Suffix", affix = "of Hillock", "(7-8)% increased Attributes", statOrder = { 1183 }, level = 60, group = "PercentageAllAttributes", weightKey = { "hillock_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [3143208761] = { "(7-8)% increased Attributes" }, } }, - ["JunMasterVeiledLifeAddedAsEnergyShield"] = { type = "Prefix", affix = "Gravicius'", "Gain (12-14)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9161 }, level = 60, group = "LifeAddedAsEnergyShield", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain (12-14)% of Maximum Life as Extra Maximum Energy Shield" }, } }, - ["JunMasterVeiledPhysicalTakenAsFireAndLightning"] = { type = "Prefix", affix = "Gravicius'", "(8-9)% of Physical Damage from Hits taken as Fire Damage", "(8-9)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2447, 2449 }, level = 60, group = "PhysicalDamageTakenAsFireAndLightningPercent", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, tradeHashes = { [3342989455] = { "(8-9)% of Physical Damage from Hits taken as Fire Damage" }, [425242359] = { "(8-9)% of Physical Damage from Hits taken as Lightning Damage" }, } }, - ["JunMasterVeiledBannerEffect"] = { type = "Prefix", affix = "Gravicius'", "Banner Skills have (26-35)% increased Aura Effect", statOrder = { 3362 }, level = 60, group = "BannerEffect", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [2729804981] = { "Banner Skills have (26-35)% increased Aura Effect" }, } }, - ["JunMasterVeiledWolfOnKill___"] = { type = "Suffix", affix = "Jorgin's", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 60, group = "SummonWolfOnKillOld", weightKey = { "jorgin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["JunMasterVeiledPhysicalDamageTakenAsFirePercent__"] = { type = "Prefix", affix = "Korell's", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(9-10)% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["JunMasterVeiledWarcryBuffEffect"] = { type = "Prefix", affix = "Korell's", "(20-25)% increased Warcry Buff Effect", statOrder = { 10567 }, level = 60, group = "WarcryBuffEffect", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3037553757] = { "(20-25)% increased Warcry Buff Effect" }, } }, - ["JunMasterVeiledAvoidFreeze_"] = { type = "Prefix", affix = "Rin's", "(20-30)% chance to Avoid being Chilled", "100% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 60, group = "AvoidFreezeAndChill", weightKey = { "rin_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-30)% chance to Avoid being Chilled" }, [1514829491] = { "100% chance to Avoid being Frozen" }, } }, - ["JunMasterVeiledCriticalMultiplierOnShatter_"] = { type = "Suffix", affix = "of Cameria", "(20-22)% increased Global Critical Strike Chance", "+(27-30)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1459, 5958 }, level = 60, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", weightKey = { "cameria_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, tradeHashes = { [536929014] = { "+(27-30)% to Critical Strike Multiplier if you've Shattered an Enemy Recently" }, [587431675] = { "(20-22)% increased Global Critical Strike Chance" }, } }, - ["JunMasterVeiledIncreasedChaosAndPhysicalDamage"] = { type = "Suffix", affix = "of Aisling", "(20-22)% increased Global Physical Damage", "(18-20)% increased Chaos Damage", statOrder = { 1231, 1385 }, level = 60, group = "IncreasedChaosAndPhysicalDamage", weightKey = { "aislin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, [1310194496] = { "(20-22)% increased Global Physical Damage" }, } }, - ["JunMasterVeiledIncreasedFireAndLightningDamage"] = { type = "Suffix", affix = "of Riker", "(18-20)% increased Fire Damage", "(20-22)% increased Lightning Damage", statOrder = { 1357, 1377 }, level = 60, group = "IncreasedFireAndLightningDamage", weightKey = { "riker_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, [2231156303] = { "(20-22)% increased Lightning Damage" }, } }, - ["JunMasterVeiledLocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "Regenerate 3% of Life per second during Effect", statOrder = { 993 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, tradeHashes = { [871270154] = { "Regenerate 3% of Life per second during Effect" }, } }, - ["JunMasterVeiledLocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 60, group = "LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "speed" }, tradeHashes = { [2312652600] = { "50% Chance to Avoid being Stunned during Effect" }, [3182498570] = { "" }, } }, - ["JunMasterVeiledLocalFlaskAvoidStunChanceDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [2312652600] = { "50% Chance to Avoid being Stunned during Effect" }, } }, - ["JunMasterVeiledLocalFlaskSkillManaCostDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-25)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "mana" }, tradeHashes = { [683273571] = { "(20-25)% reduced Mana Cost of Skills during Effect" }, } }, - ["JunMasterVeiledLocalFlaskItemFoundRarityDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 989 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod", "drop" }, tradeHashes = { [3251705960] = { "(20-30)% increased Rarity of Items found during Effect" }, } }, - ["JunMasterVeiledLocalFlaskCriticalStrikeChanceDuringFlaskEffect_"] = { type = "Prefix", affix = "of the Order", "(40-60)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 60, group = "LocalFlaskCriticalStrikeChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "critical" }, tradeHashes = { [2008255263] = { "(40-60)% increased Critical Strike Chance during Effect" }, } }, - ["JunMasterVeiledLocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 992 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, tradeHashes = { [3824033729] = { "15% of Damage Taken from Hits is Leeched as Life during Effect" }, } }, - ["JunMasterVeiledLocalAttackSpeedAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1413, 7951 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(18-22)% increased Attack Speed" }, [2016708976] = { "+(13-18)% to Quality" }, } }, - ["JunMasterVeiledLocalAttackSpeedAndLocalItemQualityRangedWeapon"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1413, 7951 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(12-15)% increased Attack Speed" }, [2016708976] = { "+(13-18)% to Quality" }, } }, - ["JunMasterVeiledLocalCriticalStrikeChanceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(28-32)% increased Critical Strike Chance", "+(13-18)% to Quality", statOrder = { 1464, 7951 }, level = 60, group = "LocalCriticalStrikeChanceAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(28-32)% increased Critical Strike Chance" }, [2016708976] = { "+(13-18)% to Quality" }, } }, - ["JunMasterVeiledLocalAccuracyRatingAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(311-350) to Accuracy Rating", "+(16-18)% to Quality", statOrder = { 2024, 7951 }, level = 60, group = "LocalAccuracyRatingAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack" }, tradeHashes = { [2016708976] = { "+(16-18)% to Quality" }, [691932474] = { "+(311-350) to Accuracy Rating" }, } }, - ["JunMasterVeiledLocalAttackSpeedDexterityIntelligence"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(18-22)% increased Attack Speed", statOrder = { 1182, 1413 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, tradeHashes = { [210067635] = { "(18-22)% increased Attack Speed" }, [2300185227] = { "+(25-28) to Dexterity and Intelligence" }, } }, - ["JunMasterVeiledLocalAttackSpeedDexterityIntelligenceRanged"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(12-15)% increased Attack Speed", statOrder = { 1182, 1413 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "wand", "bow", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, tradeHashes = { [210067635] = { "(12-15)% increased Attack Speed" }, [2300185227] = { "+(25-28) to Dexterity and Intelligence" }, } }, - ["JunMasterVeiledLocalCriticalStrikeChanceStrengthIntelligence__"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Intelligence", "(28-32)% increased Critical Strike Chance", statOrder = { 1181, 1464 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "critical", "attribute" }, tradeHashes = { [2375316951] = { "(28-32)% increased Critical Strike Chance" }, [1535626285] = { "+(25-28) to Strength and Intelligence" }, } }, - ["JunMasterVeiledLocalAccuracyRatingStrengthDexterity_"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Dexterity", "+(311-350) to Accuracy Rating", statOrder = { 1180, 2024 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "attribute" }, tradeHashes = { [538848803] = { "+(25-28) to Strength and Dexterity" }, [691932474] = { "+(311-350) to Accuracy Rating" }, } }, - ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance_"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(18-22)% increased Attack Speed", statOrder = { 792, 1413 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(18-22)% increased Attack Speed" }, [205619502] = { "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy" }, } }, - ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChanceRangedWeapon"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(12-15)% increased Attack Speed", statOrder = { 792, 1413 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "bow", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(12-15)% increased Attack Speed" }, [205619502] = { "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy" }, } }, - ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance1h__"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6731 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "wand", "dagger", "sceptre", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, tradeHashes = { [573223427] = { "15% chance to gain Arcane Surge when you Kill an Enemy" }, [2891184298] = { "(18-22)% increased Cast Speed" }, } }, - ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance2h_"] = { type = "Suffix", affix = "of the Order", "(26-31)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6731 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, tradeHashes = { [573223427] = { "15% chance to gain Arcane Surge when you Kill an Enemy" }, [2891184298] = { "(26-31)% increased Cast Speed" }, } }, - ["JunMasterVeiledTriggerSocketedSpellOnSkillUse_"] = { type = "Suffix", affix = "of the Order", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 832, 832.1 }, level = 60, group = "TriggerSocketedSpellOnSkillUseFourSeconds", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, tradeHashes = { [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } }, - ["JunMasterVeiledFireAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Fire and Chaos Resistances", statOrder = { 6550 }, level = 60, group = "FireAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(16-20)% to Fire and Chaos Resistances" }, } }, - ["JunMasterVeiledLightningAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Lightning and Chaos Resistances", statOrder = { 7436 }, level = 60, group = "LightningAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(16-20)% to Lightning and Chaos Resistances" }, } }, - ["JunMasterVeiledColdAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Cold and Chaos Resistances", statOrder = { 5800 }, level = 60, group = "ColdAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(16-20)% to Cold and Chaos Resistances" }, } }, - ["JunMasterVeiledStrengthAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "+(15-18)% to Quality", statOrder = { 1177, 7951 }, level = 60, group = "StrengthAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(31-35) to Strength" }, [2016708976] = { "+(15-18)% to Quality" }, } }, - ["JunMasterVeiledDexterityAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "+(15-18)% to Quality", statOrder = { 1178, 7951 }, level = 60, group = "DexterityAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [2016708976] = { "+(15-18)% to Quality" }, [3261801346] = { "+(31-35) to Dexterity" }, } }, - ["JunMasterVeiledIntelligenceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "+(15-18)% to Quality", statOrder = { 1179, 7951 }, level = 60, group = "IntelligenceAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [328541901] = { "+(31-35) to Intelligence" }, [2016708976] = { "+(15-18)% to Quality" }, } }, - ["JunMasterVeiledStrengthAndAvoidIgnite"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1177, 1846 }, level = 60, group = "StrengthAndAvoidIgnite", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(31-35) to Strength" }, [1783006896] = { "(21-25)% chance to Avoid being Ignited" }, } }, - ["JunMasterVeiledDexterityAndAvoidFreeze"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1178, 1845 }, level = 60, group = "DexterityAndAvoidFreeze", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [1514829491] = { "(21-25)% chance to Avoid being Frozen" }, [3261801346] = { "+(31-35) to Dexterity" }, } }, - ["JunMasterVeiledIntelligenceAndAvoidShock"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1179, 1848 }, level = 60, group = "IntelligenceAndAvoidShock", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [328541901] = { "+(31-35) to Intelligence" }, [1871765599] = { "(21-25)% chance to Avoid being Shocked" }, } }, - ["JunMasterVeiledLifeRegenerationRatePerMinuteWhileUsingFlask"] = { type = "Suffix", affix = "of the Order", "Regenerate 3% of Life per second during any Flask Effect", statOrder = { 7427 }, level = 60, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, tradeHashes = { [3500911418] = { "Regenerate 3% of Life per second during any Flask Effect" }, } }, - ["JunMasterVeiledPercentageLifeAndMana"] = { type = "Prefix", affix = "Chosen", "(9-10)% increased maximum Life", "(9-10)% increased maximum Mana", statOrder = { 1571, 1580 }, level = 60, group = "PercentageLifeAndMana", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [2748665614] = { "(9-10)% increased maximum Mana" }, [983749596] = { "(9-10)% increased maximum Life" }, } }, - ["JunMasterVeiledBlockPercent"] = { type = "Prefix", affix = "Chosen", "(8-9)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 60, group = "BlockPercent", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, tradeHashes = { [2530372417] = { "(8-9)% Chance to Block Attack Damage" }, } }, - ["JunMasterVeiledSpellBlockPercent____"] = { type = "Prefix", affix = "Chosen", "(9-10)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 60, group = "SpellBlockPercentage", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, tradeHashes = { [561307714] = { "(9-10)% Chance to Block Spell Damage" }, } }, - ["JunMasterVeiledSpellDodgePercentage__"] = { type = "Prefix", affix = "Chosen", "+(18-21)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 60, group = "ChanceToSuppressSpellsOld", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [492027537] = { "+(18-21)% chance to Suppress Spell Damage" }, } }, - ["JunMasterVeiledAvoidStunAndElementalStatusAilments"] = { type = "Prefix", affix = "Chosen", "(30-35)% chance to Avoid Elemental Ailments", "(30-35)% chance to Avoid being Stunned", statOrder = { 1843, 1851 }, level = 60, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(30-35)% chance to Avoid Elemental Ailments" }, [4262448838] = { "(30-35)% chance to Avoid being Stunned" }, } }, - ["JunMasterVeiledLocalFlaskReducedReflectDuringEffect"] = { type = "Prefix", affix = "of the Order", "(60-80)% of Damage from your Hits cannot be Reflected during Effect", statOrder = { 968 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [603134774] = { "(60-80)% of Damage from your Hits cannot be Reflected during Effect" }, } }, - ["JunMasterVeiledMinimumEnduranceChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to lose an Endurance Charge on Kill", statOrder = { 1803, 2630 }, level = 60, group = "MinimumEnduranceChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "unveiled_mod" }, tradeHashes = { [627015097] = { "(3-4)% chance to lose an Endurance Charge on Kill" }, [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, - ["JunMasterVeiledMinimumPowerChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to lose a Power Charge on Kill", statOrder = { 1813, 2634 }, level = 60, group = "MinimumPowerChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "unveiled_mod" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, [2939195168] = { "(3-4)% chance to lose a Power Charge on Kill" }, } }, - ["JunMasterVeiledMinimumFrenzyChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to lose a Frenzy Charge on Kill", statOrder = { 1808, 2632 }, level = 60, group = "MinimumFrenzyChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, [2142803347] = { "(3-4)% chance to lose a Frenzy Charge on Kill" }, } }, - ["JunMasterVeiledAddedFireAndColdDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Cold Damage to Hits against you", statOrder = { 1358, 1367 }, level = 60, group = "SelfFireAndColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, tradeHashes = { [3482587079] = { "Adds (14-16) to (20-22) Cold Damage to Hits against you" }, [1905034712] = { "Adds (14-16) to (20-22) Fire Damage to Hits against you" }, } }, - ["JunMasterVeiledAddedFireAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1358, 1378 }, level = 60, group = "SelfFireAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [2923069345] = { "Adds (14-16) to (20-22) Lightning Damage to Hits against you" }, [1905034712] = { "Adds (14-16) to (20-22) Fire Damage to Hits against you" }, } }, - ["JunMasterVeiledAddedColdAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1367, 1378 }, level = 60, group = "SelfColdAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2923069345] = { "Adds (14-16) to (20-22) Lightning Damage to Hits against you" }, [3482587079] = { "Adds (14-16) to (20-22) Cold Damage to Hits against you" }, } }, - ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocusedInverted"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched by Enemy as Life while Focused", statOrder = { 6829, 7364 }, level = 60, group = "EnemyLifeLeechPermyriadWhileFocusedAndVaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [2022851697] = { "You have Vaal Pact while Focused" }, [497196601] = { "15% of Damage Leeched by Enemy as Life while Focused" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledIncreasedManaAndRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Lose 5.3 Mana per second", statOrder = { 1579, 1583 }, level = 60, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [838272676] = { "Lose 5.3 Mana per second" }, } }, - ["JunMasterVeiledBaseLifeAndManaRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Lose 5.3 Mana per second", statOrder = { 1569, 1583 }, level = 60, group = "BaseLifeAndManaDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [838272676] = { "Lose 5.3 Mana per second" }, [3299347043] = { "+(55-60) to maximum Life" }, } }, - ["JunMasterVeiledBaseManaAndLifeRegenInverted"] = { type = "Prefix", affix = "Chosen", "Lose 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1575, 1579 }, level = 60, group = "BaseManaAndLifeDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1050105434] = { "+(55-60) to maximum Mana" }, [771127912] = { "Lose 33.3 Life per second" }, } }, - ["JunMasterVeiledReduceGlobalFlatManaCostChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills Cost -4 Mana", statOrder = { 10062 }, level = 60, group = "ManaCostBaseChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1178188780] = { "Channelling Skills Cost -4 Mana" }, } }, - ["JunMasterVeiledReduceGlobalFlatManaCostNonChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills Cost -(10-9) Mana", statOrder = { 10064 }, level = 60, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(10-9) Mana" }, } }, - ["JunMasterVeiledShockNearbyEnemiesOnFocusInverted"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% reduced Cooldown Recovery Rate", "Shock yourself for 4 Seconds when you Focus", statOrder = { 6654, 10013 }, level = 60, group = "ShockYourselfOnFocusCDR", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3181879507] = { "Shock yourself for 4 Seconds when you Focus" }, [3610263531] = { "Focus has (5-8)% reduced Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, - ["JunMasterVeiledMinionLargerAggroRadius"] = { type = "Prefix", affix = "Catarina's", "Minions are Aggressive", statOrder = { 10761 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, - ["JunMasterVeiledMinionDamageAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3750 }, level = 60, group = "MinionDamageAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1631928082] = { "Increases and Reductions to Minion Damage also affect you" }, } }, - ["JunMasterVeiledMinionAttackSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3752 }, level = 60, group = "MinionAttackSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2293111154] = { "Increases and Reductions to Minion Attack Speed also affect you" }, } }, - ["JunMasterVeiledMinionCastSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Cast Speed also affect you", statOrder = { 3753 }, level = 60, group = "MinionCastSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2284852387] = { "Increases and Reductions to Minion Cast Speed also affect you" }, } }, - ["JunMasterVeiledMinionSkillCastSpeed"] = { type = "Prefix", affix = "Catarina's", "(20-40)% increased Cast Speed with Minion Skills", statOrder = { 5465 }, level = 60, group = "MinionSkillCastSpeed", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1516375869] = { "(20-40)% increased Cast Speed with Minion Skills" }, } }, - ["JunMasterVeiledMaximumSpectreCount"] = { type = "Prefix", affix = "Catarina's", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 60, group = "MaximumSpectreCount", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["JunMasterVeiledSpectresBaseMaximumAllResistance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(5-10)% to all maximum Resistances", statOrder = { 10118 }, level = 60, group = "SpectresBaseMaximumAllResistance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2472962676] = { "Raised Spectres have +(5-10)% to all maximum Resistances" }, } }, - ["JunMasterVeiledSpectresAdditionalProjectiles"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres fire 2 additional Projectiles", statOrder = { 10124 }, level = 60, group = "SpectresAdditionalProjectiles", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1275218140] = { "Raised Spectres fire 2 additional Projectiles" }, } }, - ["JunMasterVeiledSpectresAdditionalBaseCriticalChance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(3-5)% to Critical Strike Chance", statOrder = { 10116 }, level = 60, group = "SpectresAdditionalBaseCriticalChance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2341487846] = { "Raised Spectres have +(3-5)% to Critical Strike Chance" }, } }, - ["JunMasterVeiledSpectresAreaOfEffect"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have (30-50)% increased Area of Effect", statOrder = { 10119 }, level = 60, group = "SpectresAreaOfEffect", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3724637507] = { "Raised Spectres have (30-50)% increased Area of Effect" }, } }, - ["JunMasterVeiledLocalIncreaseSocketedGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, - ["JunMasterVeiledDamageIfConsumedCorpse"] = { type = "Prefix", affix = "Catarina's", "20% increased Damage if you have Consumed a corpse Recently", statOrder = { 4253 }, level = 60, group = "DamageIfConsumedCorpse", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2118708619] = { "20% increased Damage if you have Consumed a corpse Recently" }, } }, - ["JunMasterVeiledCorpseLife"] = { type = "Prefix", affix = "Catarina's", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 9163 }, level = 60, group = "CorpseLife", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [586568910] = { "Corpses you Spawn have 20% increased Maximum Life" }, } }, - ["JunMasterVeiledAttackAndCastSpeedIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "20% increased Attack and Cast Speed if you've Consumed a Corpse Recently", statOrder = { 4806 }, level = 60, group = "AttackAndCastSpeedIfCorpseConsumedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [672563185] = { "20% increased Attack and Cast Speed if you've Consumed a Corpse Recently" }, } }, - ["JunMasterVeiledTakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { type = "Prefix", affix = "Catarina's", "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", statOrder = { 9980 }, level = 60, group = "TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3753680856] = { "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently" }, } }, - ["JunMasterVeiledOfferingEffect"] = { type = "Prefix", affix = "Catarina's", "20% increased effect of Offerings", statOrder = { 4063 }, level = 60, group = "OfferingEffect", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3191479793] = { "20% increased effect of Offerings" }, } }, - ["JunMasterVeiledOfferingDuration"] = { type = "Prefix", affix = "Catarina's", "Offering Skills have 20% increased Duration", statOrder = { 9553 }, level = 60, group = "OfferingDuration", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2957407601] = { "Offering Skills have 20% increased Duration" }, } }, - ["JunMasterVeiledLifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Life per second if you've Consumed a corpse Recently", statOrder = { 7414 }, level = 60, group = "LifeRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1107877645] = { "Regenerate 2% of Life per second if you've Consumed a corpse Recently" }, } }, - ["JunMasterVeiledManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Mana per second if you've Consumed a corpse Recently", statOrder = { 8195 }, level = 60, group = "ManaRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1309492287] = { "Regenerate 2% of Mana per second if you've Consumed a corpse Recently" }, } }, - ["JunMasterVeiledEnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Energy Shield per second if you've Consumed a Corpse Recently", statOrder = { 6456 }, level = 60, group = "EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2160190507] = { "Regenerate 2% of Energy Shield per second if you've Consumed a Corpse Recently" }, } }, - ["JunMasterVeiledAllow2Offerings"] = { type = "Prefix", affix = "Catarina's", "You can have two Offerings of different types", statOrder = { 4636 }, level = 60, group = "Allow2Offerings", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3639765866] = { "You can have two Offerings of different types" }, } }, - ["JunMasterVeiledLocalFlaskPhysicalDamageCanIgnite"] = { type = "Prefix", affix = "Catarina's", "Your Physical Damage can Ignite during Effect", statOrder = { 998 }, level = 60, group = "LocalFlaskPhysicalDamageCanIgnite", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3914001710] = { "Your Physical Damage can Ignite during Effect" }, } }, - ["JunMasterVeiledLocalFlaskIgnitedEnemiesHaveMalediction"] = { type = "Prefix", affix = "Catarina's", "Enemies Ignited by you during Effect have Malediction", statOrder = { 982 }, level = 60, group = "LocalFlaskIgnitedEnemiesHaveMalediction", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1558071928] = { "Enemies Ignited by you during Effect have Malediction" }, } }, - ["JunMasterVeiledLocalFlaskAdditionalCurseOnEnemies"] = { type = "Prefix", affix = "Catarina's", "You can apply an additional Curse during Effect", statOrder = { 996 }, level = 60, group = "LocalFlaskAdditionalCurseOnEnemies", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3897433431] = { "You can apply an additional Curse during Effect" }, } }, - ["JunMasterVeiledLocalFlaskIgniteProlif"] = { type = "Prefix", affix = "Catarina's", "Ignites you inflict during Effect spread to other Enemies within 1.5 metres", statOrder = { 981 }, level = 60, group = "LocalFlaskIgniteProlif", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3052040294] = { "Ignites you inflict during Effect spread to other Enemies within 1.5 metres" }, } }, - ["JunMasterVeiledLocalFlaskIgniteDamageLifeLeech"] = { type = "Prefix", affix = "Catarina's", "Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", statOrder = { 990 }, level = 60, group = "LocalFlaskIgniteDamageLifeLeech", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [96869632] = { "Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect" }, } }, + ["JunMasterAvoidStunAndElementalStatusAilments1"] = { type = "Prefix", affix = "Chosen", "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1866, 1874 }, level = 1, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(20-25)% chance to Avoid Elemental Ailments" }, [4262448838] = { "(20-25)% chance to Avoid being Stunned" }, } }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndImpaleCrafted"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1255, 7967 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [725880290] = { "(21-25)% chance to Impale Enemies on Hit with Attacks" }, } }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBleedChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to cause Bleeding on Hit", statOrder = { 1255, 2509 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [1519615863] = { "(21-25)% chance to cause Bleeding on Hit" }, } }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBlindChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Blind Enemies on hit", statOrder = { 1255, 2286 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [2301191210] = { "(21-25)% chance to Blind Enemies on hit" }, } }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndPoisonChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Poison on Hit", statOrder = { 1255, 8116 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1805374733] = { "(120-139)% increased Physical Damage" }, [3885634897] = { "(21-25)% chance to Poison on Hit" }, } }, + ["JunMasterVeiledElementalPenetrationWithAttacks_"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances", statOrder = { 3797 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances" }, } }, + ["JunMasterVeiledChaosPenetrationWithAttacks__"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance", statOrder = { 7984 }, level = 60, group = "LocalChaosPenetration", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance" }, } }, + ["JunMasterVeiledDoubleDamageChance2h_"] = { type = "Suffix", affix = "of the Order", "(12-14)% chance to deal Double Damage", statOrder = { 5737 }, level = 60, group = "DoubleDamageChance", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1172810729] = { "(12-14)% chance to deal Double Damage" }, } }, + ["JunMasterVeiledDoubleDamageChance1h"] = { type = "Suffix", affix = "of the Order", "(6-7)% chance to deal Double Damage", statOrder = { 5737 }, level = 60, group = "DoubleDamageChance", weightKey = { "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1172810729] = { "(6-7)% chance to deal Double Damage" }, } }, + ["JunMasterVeiledAreaDamageAndAreaOfEffect"] = { type = "Prefix", affix = "Chosen", "(14-16)% increased Area of Effect", "(17-20)% increased Area Damage", statOrder = { 1903, 2058 }, level = 60, group = "AreaDamageAndAreaOfEffect", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [4251717817] = { "(17-20)% increased Area Damage" }, [280731498] = { "(14-16)% increased Area of Effect" }, } }, + ["JunMasterVeiledProjectileDamageAndProjectileSpeed"] = { type = "Prefix", affix = "Chosen", "(23-25)% increased Projectile Speed", "(17-20)% increased Projectile Damage", statOrder = { 1819, 2019 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "speed" }, tradeHashes = { [3759663284] = { "(23-25)% increased Projectile Speed" }, [1839076647] = { "(17-20)% increased Projectile Damage" }, } }, + ["JunMasterVeiledMeleeDamageAndMeleeRange"] = { type = "Prefix", affix = "Chosen", "(17-20)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1257, 2560 }, level = 60, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [1002362373] = { "(17-20)% increased Melee Damage" }, } }, + ["JunMasterVeiledFireDamageAndChanceToIgnite1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 1381, 2049 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(70-79)% increased Fire Damage" }, [1335054179] = { "(21-23)% chance to Ignite" }, } }, + ["JunMasterVeiledFireDamageAndChanceToIgnite2h"] = { type = "Prefix", affix = "Chosen", "(123-138)% increased Fire Damage", "(35-40)% chance to Ignite", statOrder = { 1381, 2049 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(123-138)% increased Fire Damage" }, [1335054179] = { "(35-40)% chance to Ignite" }, } }, + ["JunMasterVeiledColdDamageAndBaseChanceToFreeze1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 1390, 2052 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(70-79)% increased Cold Damage" }, [44571480] = { "(21-23)% chance to Freeze" }, } }, + ["JunMasterVeiledColdDamageAndBaseChanceToFreeze2h__"] = { type = "Prefix", affix = "Chosen", "(123-138)% increased Cold Damage", "(35-40)% chance to Freeze", statOrder = { 1390, 2052 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(123-138)% increased Cold Damage" }, [44571480] = { "(35-40)% chance to Freeze" }, } }, + ["JunMasterVeiledLightningDamageAndChanceToShock1h_"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 1401, 2056 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(21-23)% chance to Shock" }, [2231156303] = { "(70-79)% increased Lightning Damage" }, } }, + ["JunMasterVeiledLightningDamageAndChanceToShock2h"] = { type = "Prefix", affix = "Chosen", "(123-138)% increased Lightning Damage", "(35-40)% chance to Shock", statOrder = { 1401, 2056 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(35-40)% chance to Shock" }, [2231156303] = { "(123-138)% increased Lightning Damage" }, } }, + ["JunMasterVeiledChaosDamageAndChaosSkillDuration1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Chaos Damage", "Chaos Skills have (13-15)% increased Skill Effect Duration", statOrder = { 1409, 1919 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-69)% increased Chaos Damage" }, [289885185] = { "Chaos Skills have (13-15)% increased Skill Effect Duration" }, } }, + ["JunMasterVeiledChaosDamageAndChaosSkillDuration2h_"] = { type = "Prefix", affix = "Chosen", "(105-120)% increased Chaos Damage", "Chaos Skills have (26-30)% increased Skill Effect Duration", statOrder = { 1409, 1919 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(105-120)% increased Chaos Damage" }, [289885185] = { "Chaos Skills have (26-30)% increased Skill Effect Duration" }, } }, + ["JunMasterVeiledSpellDamageAndManaRegenerationRate1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Spell Damage", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1246, 1607 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-79)% increased Spell Damage" }, [789117908] = { "(18-20)% increased Mana Regeneration Rate" }, } }, + ["JunMasterVeiledSpellDamageAndManaRegenerationRate2h"] = { type = "Prefix", affix = "Chosen", "(123-138)% increased Spell Damage", "(36-40)% increased Mana Regeneration Rate", statOrder = { 1246, 1607 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(123-138)% increased Spell Damage" }, [789117908] = { "(36-40)% increased Mana Regeneration Rate" }, } }, + ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(60-69)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } }, + ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage2h"] = { type = "Prefix", affix = "Chosen", "(105-120)% increased Spell Damage", "Gain (9-10)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1246, 9623 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(105-120)% increased Spell Damage" }, [2063695047] = { "Gain (9-10)% of Non-Chaos Damage as extra Chaos Damage" }, } }, + ["JunMasterVeiledMinionDamageAndMinionMaximumLife1h"] = { type = "Prefix", affix = "Chosen", "Minions have (34-38)% increased maximum Life", "Minions deal (34-38)% increased Damage", statOrder = { 1789, 1996 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [770672621] = { "Minions have (34-38)% increased maximum Life" }, [1589917703] = { "Minions deal (34-38)% increased Damage" }, } }, + ["JunMasterVeiledMinionDamageAndMinionMaximumLife2h__"] = { type = "Prefix", affix = "Chosen", "Minions have (50-59)% increased maximum Life", "Minions deal (50-59)% increased Damage", statOrder = { 1789, 1996 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [770672621] = { "Minions have (50-59)% increased maximum Life" }, [1589917703] = { "Minions deal (50-59)% increased Damage" }, } }, + ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon1h"] = { type = "Suffix", affix = "of the Order", "Minions have (18-20)% increased Attack Speed", "Minions have (18-20)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (18-20)% increased Attack Speed" }, [4000101551] = { "Minions have (18-20)% increased Cast Speed" }, } }, + ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon2h"] = { type = "Suffix", affix = "of the Order", "Minions have (34-38)% increased Attack Speed", "Minions have (34-38)% increased Cast Speed", statOrder = { 2941, 2942 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (34-38)% increased Attack Speed" }, [4000101551] = { "Minions have (34-38)% increased Cast Speed" }, } }, + ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier2h"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(44-48)% to Chaos Damage over Time Multiplier" }, } }, + ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(44-48)% to Physical Damage over Time Multiplier" }, } }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } }, + ["JunMasterVeiledColdDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(44-48)% to Cold Damage over Time Multiplier" }, } }, + ["JunMasterVeiledColdDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } }, + ["JunMasterVeiledFireDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(44-48)% to Fire Damage over Time Multiplier" }, } }, + ["JunMasterVeiledFireDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } }, + ["JunMasterVeiledChaosDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(44-48)% to Chaos Damage over Time Multiplier" }, } }, + ["JunMasterVeiledChaosDamageOverTimeMultiplier__"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1283 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 0, 1000, 1000, 600, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplierTwoHand_"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(44-48)% to Physical Damage over Time Multiplier" }, } }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1271 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "weapon", "default", }, weightVal = { 400, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } }, + ["JunMasterVeiledColdDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(44-48)% to Cold Damage over Time Multiplier" }, } }, + ["JunMasterVeiledColdDamageOverTimeMultiplier___"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1280 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } }, + ["JunMasterVeiledFireDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(44-48)% to Fire Damage over Time Multiplier" }, } }, + ["JunMasterVeiledFireDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1275 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 100, 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1575, 1591 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(24-28)% increased Armour and Evasion" }, [3299347043] = { "+(17-19) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1574, 1591 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(17-19) to maximum Life" }, [3321629045] = { "(24-28)% increased Armour and Energy Shield" }, } }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1576, 1591 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(17-19) to maximum Life" }, [1999113824] = { "(24-28)% increased Evasion and Energy Shield" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1564, 1591 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "shield", "helmet", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, tradeHashes = { [1062208444] = { "(24-28)% increased Armour" }, [3299347043] = { "+(17-19) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedEvasionAndLife__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1572, 1591 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, tradeHashes = { [124859000] = { "(24-28)% increased Evasion Rating" }, [3299347043] = { "+(17-19) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1582, 1591 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(24-28)% increased Energy Shield" }, [3299347043] = { "+(17-19) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedDefencesAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1577, 1591 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(17-19) to maximum Life" }, [3523867985] = { "(24-28)% increased Armour, Evasion and Energy Shield" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(19-22) to maximum Life", statOrder = { 1575, 1591 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(24-28)% increased Armour and Evasion" }, [3299347043] = { "+(19-22) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1574, 1591 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(19-22) to maximum Life" }, [3321629045] = { "(24-28)% increased Armour and Energy Shield" }, } }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1576, 1591 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(19-22) to maximum Life" }, [1999113824] = { "(24-28)% increased Evasion and Energy Shield" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(19-22) to maximum Life", statOrder = { 1564, 1591 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, tradeHashes = { [1062208444] = { "(24-28)% increased Armour" }, [3299347043] = { "+(19-22) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedEvasionAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(19-22) to maximum Life", statOrder = { 1572, 1591 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, tradeHashes = { [124859000] = { "(24-28)% increased Evasion Rating" }, [3299347043] = { "+(19-22) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(19-22) to maximum Life", statOrder = { 1582, 1591 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(24-28)% increased Energy Shield" }, [3299347043] = { "+(19-22) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedDefencesAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1577, 1591 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(19-22) to maximum Life" }, [3523867985] = { "(24-28)% increased Armour, Evasion and Energy Shield" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(23-26) to maximum Life", statOrder = { 1575, 1591 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(24-28)% increased Armour and Evasion" }, [3299347043] = { "+(23-26) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1574, 1591 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(23-26) to maximum Life" }, [3321629045] = { "(24-28)% increased Armour and Energy Shield" }, } }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1576, 1591 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(23-26) to maximum Life" }, [1999113824] = { "(24-28)% increased Evasion and Energy Shield" }, } }, + ["JunMasterVeiledLocalIncreasedArmourAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(23-26) to maximum Life", statOrder = { 1564, 1591 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, tradeHashes = { [1062208444] = { "(24-28)% increased Armour" }, [3299347043] = { "+(23-26) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedEvasionAndLifeHigh_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(23-26) to maximum Life", statOrder = { 1572, 1591 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, tradeHashes = { [124859000] = { "(24-28)% increased Evasion Rating" }, [3299347043] = { "+(23-26) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(23-26) to maximum Life", statOrder = { 1582, 1591 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(24-28)% increased Energy Shield" }, [3299347043] = { "+(23-26) to maximum Life" }, } }, + ["JunMasterVeiledLocalIncreasedDefencesAndLifeHigh__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1577, 1591 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(23-26) to maximum Life" }, [3523867985] = { "(24-28)% increased Armour, Evasion and Energy Shield" }, } }, + ["JunMasterVeiledStrengthAndDexterity"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Dexterity", statOrder = { 1203 }, level = 60, group = "StrengthAndDexterity", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [538848803] = { "+(31-35) to Strength and Dexterity" }, } }, + ["JunMasterVeiledDexterityAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity and Intelligence", statOrder = { 1205 }, level = 60, group = "DexterityAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(31-35) to Dexterity and Intelligence" }, } }, + ["JunMasterVeiledStrengthAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Intelligence", statOrder = { 1204 }, level = 60, group = "StrengthAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(31-35) to Strength and Intelligence" }, } }, + ["JunMasterVeiledMinimumEnduranceCharges_"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to gain an Endurance Charge on Kill", statOrder = { 1826, 2655 }, level = 60, group = "MinimumEnduranceChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "endurance_charge", "unveiled_mod" }, tradeHashes = { [1054322244] = { "(3-4)% chance to gain an Endurance Charge on Kill" }, [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, + ["JunMasterVeiledMinimumPowerCharges"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to gain a Power Charge on Kill", statOrder = { 1836, 2659 }, level = 60, group = "MinimumPowerChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "power_charge", "unveiled_mod" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, [2483795307] = { "(3-4)% chance to gain a Power Charge on Kill" }, } }, + ["JunMasterVeiledMinimumFrenzyCharges___"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to gain a Frenzy Charge on Kill", statOrder = { 1831, 2657 }, level = 60, group = "MinimumFrenzyChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, [1826802197] = { "(3-4)% chance to gain a Frenzy Charge on Kill" }, } }, + ["JunMasterVeiledIncreasedManaAndRegen"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Regenerate 5.3 Mana per second", statOrder = { 1602, 1605 }, level = 60, group = "IncreasedManaAndRegen", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [4291461939] = { "Regenerate 5.3 Mana per second" }, } }, + ["JunMasterVeiledManaAndManaCostPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(6-7)% reduced Mana Cost of Skills", statOrder = { 1602, 1906 }, level = 60, group = "ManaAndManaCostPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [474294393] = { "(6-7)% reduced Mana Cost of Skills" }, } }, + ["JunMasterVeiledManaAndManaCostEfficiency"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(13-15)% increased Mana Cost Efficiency", statOrder = { 1602, 5086 }, level = 60, group = "ManaAndManaCostEfficiency", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [4101445926] = { "(13-15)% increased Mana Cost Efficiency" }, } }, + ["JunMasterVeiledManaAndDamageTakenGoesToManaPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(7-8)% of Damage taken Recouped as Mana", statOrder = { 1602, 2480 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [472520716] = { "(7-8)% of Damage taken Recouped as Mana" }, } }, + ["JunMasterVeiledAttackAndCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Attack and Cast Speed", statOrder = { 2069 }, level = 60, group = "AttackAndCastSpeed", weightKey = { "amulet", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, + ["JunMasterVeiledMovementVelocityAndMovementVelocityIfNotHitRecently"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(10-12)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1821, 3259 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [1177358866] = { "(10-12)% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, + ["JunMasterVeiledMovementVelocityAndOnslaughtOnKill"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(13-16)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1821, 3027 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [2988593550] = { "(13-16)% chance to gain Onslaught for 4 seconds on Kill" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, + ["JunMasterVeiledMovementVelocityAndCannotBeChilled__"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1821, 1867 }, level = 60, group = "MovementVelocityAndCannotBeChilled", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, tradeHashes = { [3483999943] = { "100% chance to Avoid being Chilled" }, [2250533757] = { "(25-30)% increased Movement Speed" }, } }, + ["JunMasterVeiledArmourAndEvasionRating"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour and Evasion Rating", statOrder = { 4302 }, level = 60, group = "ArmourAndEvasionRating", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "evasion" }, tradeHashes = { [2316658489] = { "+(365-400) to Armour and Evasion Rating" }, } }, + ["JunMasterVeiledArmourAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour", "+(31-35) to maximum Energy Shield", statOrder = { 1561, 1580 }, level = 60, group = "ArmourAndEnergyShield", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, tradeHashes = { [809229260] = { "+(365-400) to Armour" }, [3489782002] = { "+(31-35) to maximum Energy Shield" }, } }, + ["JunMasterVeiledEvasionRatingAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Evasion Rating", "+(31-35) to maximum Energy Shield", statOrder = { 1566, 1580 }, level = 60, group = "EvasionRatingAndEnergyShield", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, tradeHashes = { [2144192055] = { "+(365-400) to Evasion Rating" }, [3489782002] = { "+(31-35) to maximum Energy Shield" }, } }, + ["JunMasterVeiledFlaskEffect"] = { type = "Prefix", affix = "Chosen", "Flasks applied to you have (9-10)% increased Effect", statOrder = { 2776 }, level = 60, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (9-10)% increased Effect" }, } }, + ["JunMasterVeiledChanceToNotConsumeFlaskCharges"] = { type = "Prefix", affix = "Chosen", "(9-10)% chance for Flasks you use to not consume Charges", statOrder = { 4266 }, level = 60, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [311641062] = { "(9-10)% chance for Flasks you use to not consume Charges" }, } }, + ["JunMasterVeiledFlaskEffectAndFlaskChargesGained"] = { type = "Prefix", affix = "Chosen", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2206, 2776 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [1452809865] = { "33% reduced Flask Charges gained" }, [114734841] = { "Flasks applied to you have (15-18)% increased Effect" }, } }, + ["JunMasterVeiledFlaskEffectAndFlaskChargesGainedNew"] = { type = "Suffix", affix = "of the Order", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2206, 2776 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [1452809865] = { "33% reduced Flask Charges gained" }, [114734841] = { "Flasks applied to you have (15-18)% increased Effect" }, } }, + ["JunMasterVeiledGlobalCooldownRecovery"] = { type = "Suffix", affix = "of the Order", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 5058 }, level = 60, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, + ["JunMasterVeiledDamagePerEnduranceCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-6)% increased Damage per Endurance Charge" }, } }, + ["JunMasterVeiledDamagePerEnduranceCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Endurance Charge", statOrder = { 3235 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [3515686789] = { "(7-8)% increased Damage per Endurance Charge" }, } }, + ["JunMasterVeiledDamagePerFrenzyCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [902747843] = { "(5-6)% increased Damage per Frenzy Charge" }, } }, + ["JunMasterVeiledDamagePerFrenzyCharge2h__"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Frenzy Charge", statOrder = { 3322 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [902747843] = { "(7-8)% increased Damage per Frenzy Charge" }, } }, + ["JunMasterVeiledDamagePerPowerCharge1h_"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Power Charge", statOrder = { 6152 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-6)% increased Damage per Power Charge" }, } }, + ["JunMasterVeiledDamagePerPowerCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Power Charge", statOrder = { 6152 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2034658008] = { "(7-8)% increased Damage per Power Charge" }, } }, + ["JunMasterVeiledPhysicalDamageConvertedToFire_"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Fire Damage", statOrder = { 1978 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(30-35)% of Physical Damage Converted to Fire Damage" }, } }, + ["JunMasterVeiledPhysicalDamageConvertedToCold"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Cold Damage", statOrder = { 1980 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(30-35)% of Physical Damage Converted to Cold Damage" }, } }, + ["JunMasterVeiledPhysicalDamageConvertedToLightning"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Lightning Damage", statOrder = { 1982 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(30-35)% of Physical Damage Converted to Lightning Damage" }, } }, + ["JunMasterVeiledMaximumZombieAndSkeleton"] = { type = "Prefix", affix = "Chosen", "Minions have (8-10)% increased maximum Life", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1789, 2183, 2185 }, level = 60, group = "MaximumMinionCountAndMinionLife", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 2000, 0, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [770672621] = { "Minions have (8-10)% increased maximum Life" }, } }, + ["JunMasterVeiledEffectOfAilments__"] = { type = "Suffix", affix = "of the Order", "(33-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9634 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [782230869] = { "(33-40)% increased Effect of Non-Damaging Ailments" }, } }, + ["JunMasterVeiledMaximumCurse"] = { type = "Prefix", affix = "Chosen", "You can apply an additional Curse", statOrder = { 2191 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["JunMasterVeiledCurseEffect"] = { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 2622 }, level = 60, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 3000, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-10)% increased Effect of your Curses" }, } }, + ["JunMasterVeiledLifeRegeneration"] = { type = "Suffix", affix = "of the Order", "Regenerate (1.03-1.33)% of Life per second", statOrder = { 1967 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.03-1.33)% of Life per second" }, } }, + ["JunMasterVeiledAvoidElementalDamageChanceDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "(10-12)% chance to Avoid Damage of each Element from Hits during Soul Gain Prevention", statOrder = { 4993 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "elemental" }, tradeHashes = { [720398262] = { "(10-12)% chance to Avoid Damage of each Element from Hits during Soul Gain Prevention" }, } }, + ["JunMasterVeiledPhysicalDamageReductionRatingDuringSoulGainPrevention"] = { type = "Prefix", affix = "Chosen", "+(3201-4000) to Armour during Soul Gain Prevention", statOrder = { 9794 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "physical" }, tradeHashes = { [1539825365] = { "+(3201-4000) to Armour during Soul Gain Prevention" }, } }, + ["JunMasterVeiledGainOnslaughtDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "You have Onslaught during Soul Gain Prevention", statOrder = { 6873 }, level = 60, group = "GainOnslaughtDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1572897579] = { "You have Onslaught during Soul Gain Prevention" }, } }, + ["JunMasterVeiledDamageWithNonVaalSkillsDuringSoulGainPrevention_"] = { type = "Suffix", affix = "of the Order", "(71-80)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6170 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1583385065] = { "(71-80)% increased Damage with Non-Vaal Skills during Soul Gain Prevention" }, } }, + ["JunMasterVeiledSkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 182, 1903 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [2551600084] = { "+2 to Level of Socketed AoE Gems" }, [280731498] = { "(8-10)% increased Area of Effect" }, } }, + ["JunMasterVeiledProjectilePierceAndProjectileGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 183, 1813 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [2176571093] = { "+2 to Level of Socketed Projectile Gems" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["JunMasterVeiledMeleeRangeAndMeleeGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 185, 2560 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "attack", "attack", "gem" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [829382474] = { "+2 to Level of Socketed Melee Gems" }, } }, + ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "+(36-40)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 6044 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, tradeHashes = { [3992439283] = { "+(36-40)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby" }, } }, + ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "+(54-60)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 6044 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, tradeHashes = { [3992439283] = { "+(54-60)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby" }, } }, + ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4950 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [314741699] = { "(12-15)% increased Attack Speed while a Rare or Unique Enemy is Nearby" }, } }, + ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4950 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [314741699] = { "(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby" }, } }, + ["JunMasterVeiledEnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { type = "Suffix", affix = "of the Order", "Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6544 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, tradeHashes = { [2238019079] = { "Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby" }, } }, + ["JunMasterVeiledCriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { type = "Suffix", affix = "of the Order", "(18-20)% increased Global Critical Strike Chance", "(6-7)% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1482, 6847 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", weightKey = { "quiver", "default", }, weightVal = { 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod", "critical" }, tradeHashes = { [3032585258] = { "(6-7)% chance to gain a Frenzy Charge on Critical Strike" }, [587431675] = { "(18-20)% increased Global Critical Strike Chance" }, } }, + ["JunMasterVeiledCriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "(27-30)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1482, 6390 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, tradeHashes = { [2379781920] = { "(27-30)% increased Elemental Damage if you've dealt a Critical Strike Recently" }, [587431675] = { "(20-22)% increased Global Critical Strike Chance" }, } }, + ["JunMasterVeiledCriticalChanceAndAddedChaosDamageIfHaveCritRecently_"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "Adds (22-25) to (28-32) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1482, 9356 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, tradeHashes = { [587431675] = { "(20-22)% increased Global Critical Strike Chance" }, [2523334466] = { "Adds (22-25) to (28-32) Chaos Damage if you've dealt a Critical Strike Recently" }, } }, + ["JunMasterVeiledBaseLifeAndMana_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "+(55-60) to maximum Mana", statOrder = { 1591, 1602 }, level = 60, group = "BaseLifeAndMana", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1050105434] = { "+(55-60) to maximum Mana" }, [3299347043] = { "+(55-60) to maximum Life" }, } }, + ["JunMasterVeiledBaseLifeAndManaRegen_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Regenerate 5.3 Mana per second", statOrder = { 1591, 1605 }, level = 60, group = "BaseLifeAndManaRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [4291461939] = { "Regenerate 5.3 Mana per second" }, [3299347043] = { "+(55-60) to maximum Life" }, } }, + ["JunMasterVeiledBaseManaAndLifeRegen__"] = { type = "Prefix", affix = "Chosen", "Regenerate 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1596, 1602 }, level = 60, group = "BaseManaAndLifeRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1050105434] = { "+(55-60) to maximum Mana" }, [3325883026] = { "Regenerate 33.3 Life per second" }, } }, + ["JunMasterVeiledSummonTotemCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Totem Placement speed", statOrder = { 2604 }, level = 60, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [3374165039] = { "(36-40)% increased Totem Placement speed" }, } }, + ["JunMasterVeiledTrapThrowSpeed_"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Trap Throwing Speed", statOrder = { 1950 }, level = 60, group = "TrapThrowSpeed", weightKey = { "amulet", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [118398748] = { "(14-16)% increased Trap Throwing Speed" }, } }, + ["JunMasterVeiledMineLayingSpeed"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Mine Throwing Speed", statOrder = { 1951 }, level = 60, group = "MineLayingSpeed", weightKey = { "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, tradeHashes = { [1896971621] = { "(14-16)% increased Mine Throwing Speed" }, } }, + ["JunMasterVeiledBrandAttachmentRange"] = { type = "Suffix", affix = "of the Order", "(25-28)% increased Brand Attachment range", statOrder = { 10189 }, level = 60, group = "BrandAttachmentRange", weightKey = { "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "caster" }, tradeHashes = { [4223377453] = { "(25-28)% increased Brand Attachment range" }, } }, + ["JunMasterVeiledAddedFireAndColdDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Cold Damage", statOrder = { 1383, 1392 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, tradeHashes = { [2387423236] = { "Adds (14-16) to (20-22) Cold Damage" }, [321077055] = { "Adds (14-16) to (20-22) Fire Damage" }, } }, + ["JunMasterVeiledAddedFireAndColdDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Cold Damage", statOrder = { 1383, 1392 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, tradeHashes = { [2387423236] = { "Adds (9-10) to (13-14) Cold Damage" }, [321077055] = { "Adds (9-10) to (13-14) Fire Damage" }, } }, + ["JunMasterVeiledAddedFireAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1383, 1403 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [1334060246] = { "Adds (14-16) to (20-22) Lightning Damage" }, [321077055] = { "Adds (14-16) to (20-22) Fire Damage" }, } }, + ["JunMasterVeiledAddedFireAndLightningDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1383, 1403 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [1334060246] = { "Adds (9-10) to (13-14) Lightning Damage" }, [321077055] = { "Adds (9-10) to (13-14) Fire Damage" }, } }, + ["JunMasterVeiledAddedColdAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1392, 1403 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2387423236] = { "Adds (14-16) to (20-22) Cold Damage" }, [1334060246] = { "Adds (14-16) to (20-22) Lightning Damage" }, } }, + ["JunMasterVeiledAddedColdAndLightningDamageQuiver"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Cold Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1392, 1403 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2387423236] = { "Adds (9-10) to (13-14) Cold Damage" }, [1334060246] = { "Adds (9-10) to (13-14) Lightning Damage" }, } }, + ["JunMasterVeiledLuckyCriticalsDuringFocus"] = { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focused", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 6618, 6743 }, level = 60, group = "LuckyCriticalsDuringFocusCDR", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "critical" }, tradeHashes = { [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1349659520] = { "Your Critical Strike Chance is Lucky while Focused" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledDodgeChanceDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(30-32)% increased Evasion Rating while Focused", statOrder = { 6565 }, level = 60, group = "DodgeChanceDuringFocus", weightKey = { "helmet", "boots", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "defences", "evasion" }, tradeHashes = { [3839620417] = { "(30-32)% increased Evasion Rating while Focused" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledPhysicalDamageReductionDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(13-15)% additional Physical Damage Reduction while Focused", statOrder = { 4615 }, level = 60, group = "PhysicalDamageReductionDuringFocus", weightKey = { "helmet", "gloves", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "physical" }, tradeHashes = { [3753650187] = { "(13-15)% additional Physical Damage Reduction while Focused" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledShockNearbyEnemiesOnFocus"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6743, 10158 }, level = 60, group = "ShockNearbyEnemiesOnFocusCDR", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3031766858] = { "Shock nearby Enemies for 4 Seconds when you Focus" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledLifeRegenerationPerEvasionDuringFocus"] = { type = "Suffix", affix = "of the Order", "1.5% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6575 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [1533152070] = { "" }, [3244118730] = { "1.5% of Evasion Rating is Regenerated as Life per second while Focused" }, } }, + ["JunMasterVeiledRestoreManaAndEnergyShieldOnFocus"] = { type = "Suffix", affix = "of the Order", "Recover (37-40)% of Mana and Energy Shield when you Focus", statOrder = { 10069 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, tradeHashes = { [1533152070] = { "" }, [2992263716] = { "Recover (37-40)% of Mana and Energy Shield when you Focus" }, } }, + ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused2h_"] = { type = "Suffix", affix = "of the Order", "(36-40)% chance to deal Double Damage while Focused", statOrder = { 5744 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1533152070] = { "" }, [2908886986] = { "(36-40)% chance to deal Double Damage while Focused" }, } }, + ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused1h"] = { type = "Suffix", affix = "of the Order", "(18-20)% chance to deal Double Damage while Focused", statOrder = { 5744 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1533152070] = { "" }, [2908886986] = { "(18-20)% chance to deal Double Damage while Focused" }, } }, + ["JunMasterVeiledAttackAndCastSpeedWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(45-50)% increased Attack and Cast Speed while Focused", statOrder = { 4872 }, level = 60, group = "AttackAndCastSpeedWhileFocused", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, tradeHashes = { [1533152070] = { "" }, [2628163981] = { "(45-50)% increased Attack and Cast Speed while Focused" }, } }, + ["JunMasterVeiledStatusAilmentsYouInflictDurationWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Duration of Ailments you inflict while Focused", statOrder = { 10372 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [1533152070] = { "" }, [1840751341] = { "(36-40)% increased Duration of Ailments you inflict while Focused" }, } }, + ["JunMasterVeiledImmuneToStatusAilmentsWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "You are Immune to Ailments while Focused", statOrder = { 6743, 7340 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocusedCDR", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "ailment" }, tradeHashes = { [1766730250] = { "You are Immune to Ailments while Focused" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledFocusCooldownRecovery_"] = { type = "Suffix", affix = "of the Order", "Focus has (31-35)% increased Cooldown Recovery Rate", statOrder = { 6743 }, level = 60, group = "FocusCooldownRecovery", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3610263531] = { "Focus has (31-35)% increased Cooldown Recovery Rate" }, } }, + ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched as Life while Focused", statOrder = { 6922, 7463 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", weightKey = { "amulet", "default", }, weightVal = { 3000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [3324747104] = { "15% of Damage Leeched as Life while Focused" }, [2022851697] = { "You have Vaal Pact while Focused" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledFortifyEffectWhileFocused_"] = { type = "Suffix", affix = "of the Order", "+10 to maximum Fortification while Focused", statOrder = { 9241 }, level = 60, group = "FortifyEffectWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [922014346] = { "+10 to maximum Fortification while Focused" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledTriggerSocketedSpellWhenYouFocus"] = { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 855, 6743 }, level = 60, group = "TriggerSocketedSpellWhenYouFocusCDR", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, tradeHashes = { [2062792091] = { "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledDamageRemovedFromManaBeforeLifeWhileFocused"] = { type = "Suffix", affix = "of the Order", "(18-22)% of Damage is taken from Mana before Life while Focused", statOrder = { 6175 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1588539856] = { "(18-22)% of Damage is taken from Mana before Life while Focused" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledMinionsRecoverMaximumLifeWhenYouFocus_"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Minions Recover 100% of their Life when you Focus", statOrder = { 6743, 9499 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocusCDR", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [3500359417] = { "Minions Recover 100% of their Life when you Focus" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledGainVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", statOrder = { 6922 }, level = 60, group = "GainVaalPactWhileFocused", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [1533152070] = { "" }, [2022851697] = { "You have Vaal Pact while Focused" }, } }, + ["JunMasterVeiledSkillsCostNoManaWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Non-Aura Skills Cost no Mana or Life while Focused", statOrder = { 6743, 10211 }, level = 60, group = "SkillsCostNoManaWhileFocusedCDR", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [849152640] = { "Non-Aura Skills Cost no Mana or Life while Focused" }, [3610263531] = { "Focus has (5-8)% increased Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledAllDamage"] = { type = "Prefix", affix = "Leo's", "(20-23)% increased Damage", statOrder = { 1214 }, level = 60, group = "AllDamage", weightKey = { "leo_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2154246560] = { "(20-23)% increased Damage" }, } }, + ["JunMasterVeiledLocalIncreaseSocketedSupportGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 195, 214 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevelAndQuality", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-8)% to Quality of Socketed Support Gems" }, [4154259475] = { "+2 to Level of Socketed Support Gems" }, } }, + ["JunMasterVeiledChaosExplosionOnKill"] = { type = "Prefix", affix = "Catarina's", "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3341 }, level = 60, group = "ObliterationExplodeOnKillChaos", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [1776945532] = { "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" }, } }, + ["JunMasterVeiledSupportedByCastOnCritAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are supported by Level 1 Cast On Critical Strike", "(80-89)% increased Spell Damage", statOrder = { 483, 1246 }, level = 60, group = "CastOnCritAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster", "critical" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 1 Cast On Critical Strike" }, [2974417149] = { "(80-89)% increased Spell Damage" }, } }, + ["JunMasterVeiledSupportedByCastWhileChannelingAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Cast While Channelling", "(80-89)% increased Spell Damage", statOrder = { 251, 1246 }, level = 60, group = "CastWhileChannelingAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-89)% increased Spell Damage" }, [1316646496] = { "Socketed Gems are Supported by Level 1 Cast While Channelling" }, } }, + ["JunMasterVeiledSupportedByArcaneSurgeAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Arcane Surge", "(80-89)% increased Spell Damage", statOrder = { 235, 1246 }, level = 60, group = "ArcaneSurgeAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, [2974417149] = { "(80-89)% increased Spell Damage" }, } }, + ["JunMasterVeiledReduceGlobalFlatManaCost"] = { type = "Prefix", affix = "Elreon's", "-(10-9) to Total Mana Cost of Skills", statOrder = { 1914 }, level = 60, group = "IncreaseManaCostFlat", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [3736589033] = { "-(10-9) to Total Mana Cost of Skills" }, } }, + ["JunMasterVeiledReduceGlobalFlatManaCostChannelling_"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills have -4 to Total Mana Cost", statOrder = { 10206 }, level = 60, group = "ManaCostTotalChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [2421446548] = { "Channelling Skills have -4 to Total Mana Cost" }, } }, + ["JunMasterVeiledReduceGlobalFlatManaCostNonChannelling"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(10-9) to Total Mana Cost", statOrder = { 10208 }, level = 60, group = "ManaCostTotalNonChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [677564538] = { "Non-Channelling Skills have -(10-9) to Total Mana Cost" }, } }, + ["JunMasterVeiledDamageWhileLeeching"] = { type = "Prefix", affix = "Vorici's", "(54-60)% increased Damage while Leeching", statOrder = { 3097 }, level = 60, group = "DamageWhileLeeching", weightKey = { "vorici_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [310246444] = { "(54-60)% increased Damage while Leeching" }, } }, + ["JunMasterVeiledSocketedGemQuality"] = { type = "Prefix", affix = "Haku's", "+(9-10)% to Quality of Socketed Gems", statOrder = { 213 }, level = 60, group = "SocketedGemQuality", weightKey = { "haku_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [3828613551] = { "+(9-10)% to Quality of Socketed Gems" }, } }, + ["JunMasterVeiledBleedOnHitGained1h"] = { type = "Prefix", affix = "Tora's", "Adds (12-14) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1940865751] = { "Adds (12-14) to (18-20) Physical Damage" }, [1519615863] = { "40% chance to cause Bleeding on Hit" }, } }, + ["JunMasterVeiledBleedOnHitGained2h"] = { type = "Prefix", affix = "Tora's", "Adds (17-20) to (26-28) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1300, 2509 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1940865751] = { "Adds (17-20) to (26-28) Physical Damage" }, [1519615863] = { "40% chance to cause Bleeding on Hit" }, } }, + ["JunMasterVeiledAlwaysHits"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2066 }, level = 60, group = "AlwaysHits", weightKey = { "vagan_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } }, + ["JunMasterVeiledDamageDuringFlaskEffect"] = { type = "Prefix", affix = "Brinerot", "(36-40)% increased Damage during any Flask Effect", statOrder = { 4118 }, level = 60, group = "DamageDuringFlaskEffect", weightKey = { "brinerot_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "flask", "unveiled_mod", "damage" }, tradeHashes = { [2947215268] = { "(36-40)% increased Damage during any Flask Effect" }, } }, + ["JunMasterVeiledItemRarityFromRareAndUniqueEnemies_"] = { type = "Suffix", affix = "of Janus", "(55-60)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9974 }, level = 60, group = "RareOrUniqueMonsterDroppedItemRarity", weightKey = { "janus_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "drop" }, tradeHashes = { [2161689853] = { "(55-60)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies" }, } }, + ["JunMasterVeiledFireAddedAsChaos1h_"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 60, group = "FireAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (9-10)% of Fire Damage as Extra Chaos Damage" }, } }, + ["JunMasterVeiledColdAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (9-10)% of Cold Damage as Extra Chaos Damage" }, } }, + ["JunMasterVeiledLightningAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (9-10)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["JunMasterVeiledPhysicalAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (9-10)% of Physical Damage as Extra Chaos Damage" }, } }, + ["JunMasterVeiledFireAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1964 }, level = 60, group = "FireAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (18-20)% of Fire Damage as Extra Chaos Damage" }, } }, + ["JunMasterVeiledColdAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1963 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (18-20)% of Cold Damage as Extra Chaos Damage" }, } }, + ["JunMasterVeiledLightningAddedAsChaos2h__"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1961 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (18-20)% of Lightning Damage as Extra Chaos Damage" }, } }, + ["JunMasterVeiledPhysicalAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1958 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (18-20)% of Physical Damage as Extra Chaos Damage" }, } }, + ["JunMasterVeiledPercentageAllAttributes"] = { type = "Suffix", affix = "of Hillock", "(7-8)% increased Attributes", statOrder = { 1206 }, level = 60, group = "PercentageAllAttributes", weightKey = { "hillock_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [3143208761] = { "(7-8)% increased Attributes" }, } }, + ["JunMasterVeiledLifeAddedAsEnergyShield"] = { type = "Prefix", affix = "Gravicius'", "Gain (12-14)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9285 }, level = 60, group = "LifeAddedAsEnergyShield", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, tradeHashes = { [67280387] = { "Gain (12-14)% of Maximum Life as Extra Maximum Energy Shield" }, } }, + ["JunMasterVeiledPhysicalTakenAsFireAndLightning"] = { type = "Prefix", affix = "Gravicius'", "(8-9)% of Physical Damage from Hits taken as Fire Damage", "(8-9)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2472, 2474 }, level = 60, group = "PhysicalDamageTakenAsFireAndLightningPercent", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, tradeHashes = { [3342989455] = { "(8-9)% of Physical Damage from Hits taken as Fire Damage" }, [425242359] = { "(8-9)% of Physical Damage from Hits taken as Lightning Damage" }, } }, + ["JunMasterVeiledBannerEffect"] = { type = "Prefix", affix = "Gravicius'", "Banner Skills have (26-35)% increased Aura Effect", statOrder = { 3398 }, level = 60, group = "BannerEffect", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [2729804981] = { "Banner Skills have (26-35)% increased Aura Effect" }, } }, + ["JunMasterVeiledWolfOnKill___"] = { type = "Suffix", affix = "Jorgin's", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 812 }, level = 60, group = "SummonWolfOnKillOld", weightKey = { "jorgin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, + ["JunMasterVeiledPhysicalDamageTakenAsFirePercent__"] = { type = "Prefix", affix = "Korell's", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2472 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(9-10)% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["JunMasterVeiledWarcryBuffEffect"] = { type = "Prefix", affix = "Korell's", "(20-25)% increased Warcry Buff Effect", statOrder = { 10723 }, level = 60, group = "WarcryBuffEffect", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3037553757] = { "(20-25)% increased Warcry Buff Effect" }, } }, + ["JunMasterVeiledAvoidFreeze_"] = { type = "Prefix", affix = "Rin's", "(20-30)% chance to Avoid being Chilled", "100% chance to Avoid being Frozen", statOrder = { 1867, 1868 }, level = 60, group = "AvoidFreezeAndChill", weightKey = { "rin_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-30)% chance to Avoid being Chilled" }, [1514829491] = { "100% chance to Avoid being Frozen" }, } }, + ["JunMasterVeiledCriticalMultiplierOnShatter_"] = { type = "Suffix", affix = "of Cameria", "(20-22)% increased Global Critical Strike Chance", "+(27-30)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1482, 6041 }, level = 60, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", weightKey = { "cameria_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, tradeHashes = { [536929014] = { "+(27-30)% to Critical Strike Multiplier if you've Shattered an Enemy Recently" }, [587431675] = { "(20-22)% increased Global Critical Strike Chance" }, } }, + ["JunMasterVeiledIncreasedChaosAndPhysicalDamage"] = { type = "Suffix", affix = "of Aisling", "(20-22)% increased Global Physical Damage", "(18-20)% increased Chaos Damage", statOrder = { 1254, 1409 }, level = 60, group = "IncreasedChaosAndPhysicalDamage", weightKey = { "aislin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, [1310194496] = { "(20-22)% increased Global Physical Damage" }, } }, + ["JunMasterVeiledIncreasedFireAndLightningDamage"] = { type = "Suffix", affix = "of Riker", "(18-20)% increased Fire Damage", "(20-22)% increased Lightning Damage", statOrder = { 1381, 1401 }, level = 60, group = "IncreasedFireAndLightningDamage", weightKey = { "riker_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, [2231156303] = { "(20-22)% increased Lightning Damage" }, } }, + ["JunMasterVeiledLocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "Regenerate 3% of Life per second during Effect", statOrder = { 1017 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, tradeHashes = { [871270154] = { "Regenerate 3% of Life per second during Effect" }, } }, + ["JunMasterVeiledLocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 996 }, level = 60, group = "LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "speed" }, tradeHashes = { [2312652600] = { "50% Chance to Avoid being Stunned during Effect" }, [3182498570] = { "" }, } }, + ["JunMasterVeiledLocalFlaskAvoidStunChanceDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 996 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [2312652600] = { "50% Chance to Avoid being Stunned during Effect" }, } }, + ["JunMasterVeiledLocalFlaskSkillManaCostDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-25)% reduced Mana Cost of Skills during Effect", statOrder = { 1023 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "mana" }, tradeHashes = { [683273571] = { "(20-25)% reduced Mana Cost of Skills during Effect" }, } }, + ["JunMasterVeiledLocalFlaskItemFoundRarityDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 1013 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod", "drop" }, tradeHashes = { [3251705960] = { "(20-30)% increased Rarity of Items found during Effect" }, } }, + ["JunMasterVeiledLocalFlaskCriticalStrikeChanceDuringFlaskEffect_"] = { type = "Prefix", affix = "of the Order", "(40-60)% increased Critical Strike Chance during Effect", statOrder = { 1000 }, level = 60, group = "LocalFlaskCriticalStrikeChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "critical" }, tradeHashes = { [2008255263] = { "(40-60)% increased Critical Strike Chance during Effect" }, } }, + ["JunMasterVeiledLocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 1016 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, tradeHashes = { [3824033729] = { "15% of Damage Taken from Hits is Leeched as Life during Effect" }, } }, + ["JunMasterVeiledLocalAttackSpeedAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1437, 8062 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(18-22)% increased Attack Speed" }, [2016708976] = { "+(13-18)% to Quality" }, } }, + ["JunMasterVeiledLocalAttackSpeedAndLocalItemQualityRangedWeapon"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1437, 8062 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(12-15)% increased Attack Speed" }, [2016708976] = { "+(13-18)% to Quality" }, } }, + ["JunMasterVeiledLocalCriticalStrikeChanceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(28-32)% increased Critical Strike Chance", "+(13-18)% to Quality", statOrder = { 1487, 8062 }, level = 60, group = "LocalCriticalStrikeChanceAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(28-32)% increased Critical Strike Chance" }, [2016708976] = { "+(13-18)% to Quality" }, } }, + ["JunMasterVeiledLocalAccuracyRatingAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(311-350) to Accuracy Rating", "+(16-18)% to Quality", statOrder = { 2047, 8062 }, level = 60, group = "LocalAccuracyRatingAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack" }, tradeHashes = { [2016708976] = { "+(16-18)% to Quality" }, [691932474] = { "+(311-350) to Accuracy Rating" }, } }, + ["JunMasterVeiledLocalAttackSpeedDexterityIntelligence"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(18-22)% increased Attack Speed", statOrder = { 1205, 1437 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, tradeHashes = { [210067635] = { "(18-22)% increased Attack Speed" }, [2300185227] = { "+(25-28) to Dexterity and Intelligence" }, } }, + ["JunMasterVeiledLocalAttackSpeedDexterityIntelligenceRanged"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(12-15)% increased Attack Speed", statOrder = { 1205, 1437 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "wand", "bow", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, tradeHashes = { [210067635] = { "(12-15)% increased Attack Speed" }, [2300185227] = { "+(25-28) to Dexterity and Intelligence" }, } }, + ["JunMasterVeiledLocalCriticalStrikeChanceStrengthIntelligence__"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Intelligence", "(28-32)% increased Critical Strike Chance", statOrder = { 1204, 1487 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "critical", "attribute" }, tradeHashes = { [2375316951] = { "(28-32)% increased Critical Strike Chance" }, [1535626285] = { "+(25-28) to Strength and Intelligence" }, } }, + ["JunMasterVeiledLocalAccuracyRatingStrengthDexterity_"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Dexterity", "+(311-350) to Accuracy Rating", statOrder = { 1203, 2047 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "attribute" }, tradeHashes = { [538848803] = { "+(25-28) to Strength and Dexterity" }, [691932474] = { "+(311-350) to Accuracy Rating" }, } }, + ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance_"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(18-22)% increased Attack Speed", statOrder = { 813, 1437 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(18-22)% increased Attack Speed" }, [205619502] = { "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy" }, } }, + ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChanceRangedWeapon"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(12-15)% increased Attack Speed", statOrder = { 813, 1437 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "bow", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(12-15)% increased Attack Speed" }, [205619502] = { "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy" }, } }, + ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance1h__"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1470, 6821 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "wand", "dagger", "sceptre", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, tradeHashes = { [573223427] = { "15% chance to gain Arcane Surge when you Kill an Enemy" }, [2891184298] = { "(18-22)% increased Cast Speed" }, } }, + ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance2h_"] = { type = "Suffix", affix = "of the Order", "(26-31)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1470, 6821 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, tradeHashes = { [573223427] = { "15% chance to gain Arcane Surge when you Kill an Enemy" }, [2891184298] = { "(26-31)% increased Cast Speed" }, } }, + ["JunMasterVeiledTriggerSocketedSpellOnSkillUse_"] = { type = "Suffix", affix = "of the Order", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 853, 853.1 }, level = 60, group = "TriggerSocketedSpellOnSkillUseFourSeconds", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, tradeHashes = { [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } }, + ["JunMasterVeiledFireAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Fire and Chaos Resistances", statOrder = { 6637 }, level = 60, group = "FireAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(16-20)% to Fire and Chaos Resistances" }, } }, + ["JunMasterVeiledLightningAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Lightning and Chaos Resistances", statOrder = { 7537 }, level = 60, group = "LightningAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(16-20)% to Lightning and Chaos Resistances" }, } }, + ["JunMasterVeiledColdAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Cold and Chaos Resistances", statOrder = { 5882 }, level = 60, group = "ColdAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(16-20)% to Cold and Chaos Resistances" }, } }, + ["JunMasterVeiledStrengthAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "+(15-18)% to Quality", statOrder = { 1200, 8062 }, level = 60, group = "StrengthAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(31-35) to Strength" }, [2016708976] = { "+(15-18)% to Quality" }, } }, + ["JunMasterVeiledDexterityAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "+(15-18)% to Quality", statOrder = { 1201, 8062 }, level = 60, group = "DexterityAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [2016708976] = { "+(15-18)% to Quality" }, [3261801346] = { "+(31-35) to Dexterity" }, } }, + ["JunMasterVeiledIntelligenceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "+(15-18)% to Quality", statOrder = { 1202, 8062 }, level = 60, group = "IntelligenceAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [328541901] = { "+(31-35) to Intelligence" }, [2016708976] = { "+(15-18)% to Quality" }, } }, + ["JunMasterVeiledStrengthAndAvoidIgnite"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1200, 1869 }, level = 60, group = "StrengthAndAvoidIgnite", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(31-35) to Strength" }, [1783006896] = { "(21-25)% chance to Avoid being Ignited" }, } }, + ["JunMasterVeiledDexterityAndAvoidFreeze"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1201, 1868 }, level = 60, group = "DexterityAndAvoidFreeze", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [1514829491] = { "(21-25)% chance to Avoid being Frozen" }, [3261801346] = { "+(31-35) to Dexterity" }, } }, + ["JunMasterVeiledIntelligenceAndAvoidShock"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1202, 1871 }, level = 60, group = "IntelligenceAndAvoidShock", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [328541901] = { "+(31-35) to Intelligence" }, [1871765599] = { "(21-25)% chance to Avoid being Shocked" }, } }, + ["JunMasterVeiledLifeRegenerationRatePerMinuteWhileUsingFlask"] = { type = "Suffix", affix = "of the Order", "Regenerate 3% of Life per second during any Flask Effect", statOrder = { 7527 }, level = 60, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, tradeHashes = { [3500911418] = { "Regenerate 3% of Life per second during any Flask Effect" }, } }, + ["JunMasterVeiledPercentageLifeAndMana"] = { type = "Prefix", affix = "Chosen", "(9-10)% increased maximum Life", "(9-10)% increased maximum Mana", statOrder = { 1593, 1603 }, level = 60, group = "PercentageLifeAndMana", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [2748665614] = { "(9-10)% increased maximum Mana" }, [983749596] = { "(9-10)% increased maximum Life" }, } }, + ["JunMasterVeiledBlockPercent"] = { type = "Prefix", affix = "Chosen", "(8-9)% Chance to Block Attack Damage", statOrder = { 1162 }, level = 60, group = "BlockPercent", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, tradeHashes = { [2530372417] = { "(8-9)% Chance to Block Attack Damage" }, } }, + ["JunMasterVeiledSpellBlockPercent____"] = { type = "Prefix", affix = "Chosen", "(9-10)% Chance to Block Spell Damage", statOrder = { 1183 }, level = 60, group = "SpellBlockPercentage", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, tradeHashes = { [561307714] = { "(9-10)% Chance to Block Spell Damage" }, } }, + ["JunMasterVeiledSpellDodgePercentage__"] = { type = "Prefix", affix = "Chosen", "+(18-21)% chance to Suppress Spell Damage", statOrder = { 1166 }, level = 60, group = "ChanceToSuppressSpellsOld", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [492027537] = { "+(18-21)% chance to Suppress Spell Damage" }, } }, + ["JunMasterVeiledAvoidStunAndElementalStatusAilments"] = { type = "Prefix", affix = "Chosen", "(30-35)% chance to Avoid Elemental Ailments", "(30-35)% chance to Avoid being Stunned", statOrder = { 1866, 1874 }, level = 60, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(30-35)% chance to Avoid Elemental Ailments" }, [4262448838] = { "(30-35)% chance to Avoid being Stunned" }, } }, + ["JunMasterVeiledLocalFlaskReducedReflectDuringEffect"] = { type = "Prefix", affix = "of the Order", "Prevent +(60-80)% of Reflected Damage during Effect", statOrder = { 992 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, tradeHashes = { [603134774] = { "Prevent +(60-80)% of Reflected Damage during Effect" }, } }, + ["JunMasterVeiledMinimumEnduranceChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to lose an Endurance Charge on Kill", statOrder = { 1826, 2656 }, level = 60, group = "MinimumEnduranceChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "unveiled_mod" }, tradeHashes = { [627015097] = { "(3-4)% chance to lose an Endurance Charge on Kill" }, [3706959521] = { "+1 to Minimum Endurance Charges" }, } }, + ["JunMasterVeiledMinimumPowerChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to lose a Power Charge on Kill", statOrder = { 1836, 2660 }, level = 60, group = "MinimumPowerChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "unveiled_mod" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, [2939195168] = { "(3-4)% chance to lose a Power Charge on Kill" }, } }, + ["JunMasterVeiledMinimumFrenzyChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to lose a Frenzy Charge on Kill", statOrder = { 1831, 2658 }, level = 60, group = "MinimumFrenzyChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, [2142803347] = { "(3-4)% chance to lose a Frenzy Charge on Kill" }, } }, + ["JunMasterVeiledAddedFireAndColdDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Cold Damage to Hits against you", statOrder = { 1382, 1391 }, level = 60, group = "SelfFireAndColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, tradeHashes = { [3482587079] = { "Adds (14-16) to (20-22) Cold Damage to Hits against you" }, [1905034712] = { "Adds (14-16) to (20-22) Fire Damage to Hits against you" }, } }, + ["JunMasterVeiledAddedFireAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1382, 1402 }, level = 60, group = "SelfFireAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "lightning" }, tradeHashes = { [2923069345] = { "Adds (14-16) to (20-22) Lightning Damage to Hits against you" }, [1905034712] = { "Adds (14-16) to (20-22) Fire Damage to Hits against you" }, } }, + ["JunMasterVeiledAddedColdAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1391, 1402 }, level = 60, group = "SelfColdAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [2923069345] = { "Adds (14-16) to (20-22) Lightning Damage to Hits against you" }, [3482587079] = { "Adds (14-16) to (20-22) Cold Damage to Hits against you" }, } }, + ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocusedInverted"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched by Enemy as Life while Focused", statOrder = { 6922, 7464 }, level = 60, group = "EnemyLifeLeechPermyriadWhileFocusedAndVaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life" }, tradeHashes = { [2022851697] = { "You have Vaal Pact while Focused" }, [497196601] = { "15% of Damage Leeched by Enemy as Life while Focused" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledIncreasedManaAndRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Lose 5.3 Mana per second", statOrder = { 1602, 1606 }, level = 60, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1050105434] = { "+(51-55) to maximum Mana" }, [838272676] = { "Lose 5.3 Mana per second" }, } }, + ["JunMasterVeiledBaseLifeAndManaRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Lose 5.3 Mana per second", statOrder = { 1591, 1606 }, level = 60, group = "BaseLifeAndManaDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [838272676] = { "Lose 5.3 Mana per second" }, [3299347043] = { "+(55-60) to maximum Life" }, } }, + ["JunMasterVeiledBaseManaAndLifeRegenInverted"] = { type = "Prefix", affix = "Chosen", "Lose 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1598, 1602 }, level = 60, group = "BaseManaAndLifeDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, tradeHashes = { [1050105434] = { "+(55-60) to maximum Mana" }, [771127912] = { "Lose 33.3 Life per second" }, } }, + ["JunMasterVeiledReduceGlobalFlatManaCostChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills Cost -4 Mana", statOrder = { 10207 }, level = 60, group = "ManaCostBaseChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [1178188780] = { "Channelling Skills Cost -4 Mana" }, } }, + ["JunMasterVeiledReduceGlobalFlatManaCostNonChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills Cost -(10-9) Mana", statOrder = { 10209 }, level = 60, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(10-9) Mana" }, } }, + ["JunMasterVeiledShockNearbyEnemiesOnFocusInverted"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% reduced Cooldown Recovery Rate", "Shock yourself for 4 Seconds when you Focus", statOrder = { 6743, 10157 }, level = 60, group = "ShockYourselfOnFocusCDR", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3181879507] = { "Shock yourself for 4 Seconds when you Focus" }, [3610263531] = { "Focus has (5-8)% reduced Cooldown Recovery Rate" }, [1533152070] = { "" }, } }, + ["JunMasterVeiledMinionLargerAggroRadius"] = { type = "Prefix", affix = "Catarina's", "Minions are Aggressive", statOrder = { 10924 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, + ["JunMasterVeiledMinionDamageAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3786 }, level = 60, group = "MinionDamageAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1631928082] = { "Increases and Reductions to Minion Damage also affect you" }, } }, + ["JunMasterVeiledMinionAttackSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3788 }, level = 60, group = "MinionAttackSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2293111154] = { "Increases and Reductions to Minion Attack Speed also affect you" }, } }, + ["JunMasterVeiledMinionCastSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Cast Speed also affect you", statOrder = { 3789 }, level = 60, group = "MinionCastSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2284852387] = { "Increases and Reductions to Minion Cast Speed also affect you" }, } }, + ["JunMasterVeiledMinionSkillCastSpeed"] = { type = "Prefix", affix = "Catarina's", "(20-40)% increased Cast Speed with Minion Skills", statOrder = { 5540 }, level = 60, group = "MinionSkillCastSpeed", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1516375869] = { "(20-40)% increased Cast Speed with Minion Skills" }, } }, + ["JunMasterVeiledMaximumSpectreCount"] = { type = "Prefix", affix = "Catarina's", "+1 to maximum number of Spectres", statOrder = { 2184 }, level = 60, group = "MaximumSpectreCount", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["JunMasterVeiledSpectresBaseMaximumAllResistance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(5-10)% to all maximum Resistances", statOrder = { 10263 }, level = 60, group = "SpectresBaseMaximumAllResistance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2472962676] = { "Raised Spectres have +(5-10)% to all maximum Resistances" }, } }, + ["JunMasterVeiledSpectresAdditionalProjectiles"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres fire 2 additional Projectiles", statOrder = { 10269 }, level = 60, group = "SpectresAdditionalProjectiles", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1275218140] = { "Raised Spectres fire 2 additional Projectiles" }, } }, + ["JunMasterVeiledSpectresAdditionalBaseCriticalChance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(3-5)% to Critical Strike Chance", statOrder = { 10261 }, level = 60, group = "SpectresAdditionalBaseCriticalChance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2341487846] = { "Raised Spectres have +(3-5)% to Critical Strike Chance" }, } }, + ["JunMasterVeiledSpectresAreaOfEffect"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have (30-50)% increased Area of Effect", statOrder = { 10264 }, level = 60, group = "SpectresAreaOfEffect", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3724637507] = { "Raised Spectres have (30-50)% increased Area of Effect" }, } }, + ["JunMasterVeiledLocalIncreaseSocketedGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Gems", statOrder = { 165 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } }, + ["JunMasterVeiledDamageIfConsumedCorpse"] = { type = "Prefix", affix = "Catarina's", "20% increased Damage if you have Consumed a corpse Recently", statOrder = { 4289 }, level = 60, group = "DamageIfConsumedCorpse", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [2118708619] = { "20% increased Damage if you have Consumed a corpse Recently" }, } }, + ["JunMasterVeiledCorpseLife"] = { type = "Prefix", affix = "Catarina's", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 9287 }, level = 60, group = "CorpseLife", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [586568910] = { "Corpses you Spawn have 20% increased Maximum Life" }, } }, + ["JunMasterVeiledAttackAndCastSpeedIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "20% increased Attack and Cast Speed if you've Consumed a Corpse Recently", statOrder = { 4856 }, level = 60, group = "AttackAndCastSpeedIfCorpseConsumedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [672563185] = { "20% increased Attack and Cast Speed if you've Consumed a Corpse Recently" }, } }, + ["JunMasterVeiledTakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { type = "Prefix", affix = "Catarina's", "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", statOrder = { 10124 }, level = 60, group = "TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3753680856] = { "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently" }, } }, + ["JunMasterVeiledOfferingEffect"] = { type = "Prefix", affix = "Catarina's", "20% increased effect of Offerings", statOrder = { 4099 }, level = 60, group = "OfferingEffect", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3191479793] = { "20% increased effect of Offerings" }, } }, + ["JunMasterVeiledOfferingDuration"] = { type = "Prefix", affix = "Catarina's", "Offering Skills have 20% increased Duration", statOrder = { 9689 }, level = 60, group = "OfferingDuration", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2957407601] = { "Offering Skills have 20% increased Duration" }, } }, + ["JunMasterVeiledLifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Life per second if you've Consumed a corpse Recently", statOrder = { 7514 }, level = 60, group = "LifeRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1107877645] = { "Regenerate 2% of Life per second if you've Consumed a corpse Recently" }, } }, + ["JunMasterVeiledManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Mana per second if you've Consumed a corpse Recently", statOrder = { 8308 }, level = 60, group = "ManaRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1309492287] = { "Regenerate 2% of Mana per second if you've Consumed a corpse Recently" }, } }, + ["JunMasterVeiledEnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Energy Shield per second if you've Consumed a Corpse Recently", statOrder = { 6543 }, level = 60, group = "EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [2160190507] = { "Regenerate 2% of Energy Shield per second if you've Consumed a Corpse Recently" }, } }, + ["JunMasterVeiledAllow2Offerings"] = { type = "Prefix", affix = "Catarina's", "You can have two Offerings of different types", statOrder = { 4680 }, level = 60, group = "Allow2Offerings", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3639765866] = { "You can have two Offerings of different types" }, } }, + ["JunMasterVeiledLocalFlaskPhysicalDamageCanIgnite"] = { type = "Prefix", affix = "Catarina's", "Your Physical Damage can Ignite during Effect", statOrder = { 1022 }, level = 60, group = "LocalFlaskPhysicalDamageCanIgnite", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3914001710] = { "Your Physical Damage can Ignite during Effect" }, } }, + ["JunMasterVeiledLocalFlaskIgnitedEnemiesHaveMalediction"] = { type = "Prefix", affix = "Catarina's", "Enemies Ignited by you during Effect have Malediction", statOrder = { 1006 }, level = 60, group = "LocalFlaskIgnitedEnemiesHaveMalediction", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1558071928] = { "Enemies Ignited by you during Effect have Malediction" }, } }, + ["JunMasterVeiledLocalFlaskAdditionalCurseOnEnemies"] = { type = "Prefix", affix = "Catarina's", "You can apply an additional Curse during Effect", statOrder = { 1020 }, level = 60, group = "LocalFlaskAdditionalCurseOnEnemies", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3897433431] = { "You can apply an additional Curse during Effect" }, } }, + ["JunMasterVeiledLocalFlaskIgniteProlif"] = { type = "Prefix", affix = "Catarina's", "Ignites you inflict during Effect spread to other Enemies within 1.5 metres", statOrder = { 1005 }, level = 60, group = "LocalFlaskIgniteProlif", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [3052040294] = { "Ignites you inflict during Effect spread to other Enemies within 1.5 metres" }, } }, + ["JunMasterVeiledLocalFlaskIgniteDamageLifeLeech"] = { type = "Prefix", affix = "Catarina's", "Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", statOrder = { 1014 }, level = 60, group = "LocalFlaskIgniteDamageLifeLeech", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [96869632] = { "Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/Pantheons.lua b/src/Data/Pantheons.lua index f91b2877df..0977257448 100644 --- a/src/Data/Pantheons.lua +++ b/src/Data/Pantheons.lua @@ -11,19 +11,19 @@ return { [1] = { line = "You cannot be Stunned if you've been Stunned or Blocked a Stunning Hit in the past 2 seconds", value = { 1 }, }, }, }, - [2] = { name = "Puruna, the Challenger", + [2] = { name = "Nassar, Lion of the Seas", mods = { -- base_stun_recovery_+% [1] = { line = "30% increased Stun and Block Recovery", value = { 30 }, }, }, }, - [3] = { name = "Merveil, the Returned", + [3] = { name = "Captain Tanner Lightfoot", mods = { -- base_avoid_freeze_% [1] = { line = "100% chance to Avoid being Frozen", value = { 100 }, }, }, }, - [4] = { name = "Nassar, Lion of the Seas", + [4] = { name = "Shock and Horror", mods = { -- chill_effectiveness_on_self_+% [1] = { line = "50% reduced Effect of Chill on you", value = { -50 }, }, @@ -40,13 +40,13 @@ return { [1] = { line = "10% reduced Damage taken from Damage Over Time", value = { -10 }, }, }, }, - [2] = { name = "Hybrid Widow", + [2] = { name = "Maligaro the Mutilator", mods = { -- life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently [1] = { line = "20% increased Recovery rate of Life and Energy Shield if you've stopped taking Damage Over Time Recently", value = { 20 }, }, }, }, - [3] = { name = "Maligaro the Mutilator", + [3] = { name = "Armala, the Widow", mods = { -- debuff_time_passed_+% [1] = { line = "Debuffs on you expire 20% faster", value = { 20 }, }, @@ -71,7 +71,7 @@ return { [2] = { line = "20% chance to take 50% less Area Damage from Hits", value = { 20 }, }, }, }, - [2] = { name = "Fire and Fury", + [2] = { name = "Oak the Mighty", mods = { -- elemental_damage_taken_+%_if_not_hit_recently [1] = { line = "8% reduced Elemental Damage taken if you haven't been Hit Recently", value = { -8 }, }, @@ -83,7 +83,7 @@ return { [1] = { line = "Take no Extra Damage from Critical Strikes if you have taken a Critical Strike Recently", value = { 1 }, }, }, }, - [4] = { name = "Lord of the Ashen Arrow", + [4] = { name = "Forest of Flames", mods = { -- avoid_ailments_%_from_crit [1] = { line = "50% chance to avoid Ailments from Critical Strikes", value = { 50 }, }, @@ -102,19 +102,19 @@ return { [2] = { line = "1% increased Movement Speed for each nearby Enemy, up to 8%", value = { 1 }, }, }, }, - [2] = { name = "Fragment of Winter", + [2] = { name = "Captain Clayborne, The Accursed", mods = { -- base_avoid_projectiles_%_chance [1] = { line = "10% chance to avoid Projectiles", value = { 10 }, }, }, }, - [3] = { name = "Glace", + [3] = { name = "Fragment of Winter", mods = { -- elemental_damage_taken_+%_if_been_hit_recently [1] = { line = "6% reduced Elemental Damage taken if you have been Hit Recently", value = { -6 }, }, }, }, - [4] = { name = "Sebbert, Crescent's Point", + [4] = { name = "Glace", mods = { -- avoid_chained_projectile_%_chance [1] = { line = "Avoid Projectiles that have Chained", value = { 100 }, }, @@ -164,7 +164,7 @@ return { [1] = { name = "Soul of Yugul", mods = { -- %_of_your_and_your_minions_damage_cannot_be_reflected - [1] = { line = "50% of Hit Damage from you and your Minions cannot be Reflected", value = { 50 }, }, + [1] = { line = "You and your Minions prevent +50% of Reflected Damage", value = { 50 }, }, -- reflect_hexes_chance_% [2] = { line = "50% chance to Reflect Hexes", value = { 50 }, }, }, @@ -188,7 +188,7 @@ return { [2] = { line = "You cannot be Poisoned while there are at least 3 Poisons on you", value = { 3 }, }, }, }, - [2] = { name = "The Blacksmith", + [2] = { name = "Terror of the Infinite Drifts", mods = { -- chaos_damage_taken_+% [1] = { line = "5% reduced Chaos Damage taken", value = { -5 }, }, @@ -243,7 +243,7 @@ return { [1] = { line = "60% reduced Effect of Shock on you", value = { -60 }, }, }, }, - [2] = { name = "Stalker of the Endless Dunes", + [2] = { name = "The Blacksmith", mods = { -- cannot_be_blinded [1] = { line = "Cannot be Blinded", value = { 1 }, }, @@ -264,7 +264,7 @@ return { [2] = { line = "60% increased Life Recovery from Flasks used when on Low Life", value = { 60 }, }, }, }, - [2] = { name = "Tunneltrap", + [2] = { name = "Gorulis, Will-Thief", mods = { -- enemy_life_regeneration_rate_+%_for_4_seconds_on_hit [1] = { line = "Enemies you've Hit Recently have 50% reduced Life Regeneration rate", value = { -50 }, }, diff --git a/src/Data/SkillStatMap.lua b/src/Data/SkillStatMap.lua index 45856e0efe..795acd976c 100644 --- a/src/Data/SkillStatMap.lua +++ b/src/Data/SkillStatMap.lua @@ -535,7 +535,7 @@ return { mod("CooldownRecovery", "INC", nil), }, ["cooldown_recovery_rate_+%_per_100_ward"] = { - mod("CooldownRecovery", "INC", nil, 0, 0, { type = "PerStat", stat = "Ward", div = 100 }), + mod("CooldownRecovery", "INC", nil, 0, 0, { type = "PerStat", stat = "Ward", div = 100, limit = 400, limitTotal = true }), }, ["base_cooldown_modifier_ms"] = { mod("CooldownRecovery", "BASE", nil), diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index be59e217d0..cee1a3e6d7 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -1040,7 +1040,7 @@ skills["Barrage"] = { { "base_number_of_projectiles", 0.05 }, }, constantStats = { - { "base_number_of_projectiles", 5 }, + { "base_number_of_projectiles", 6 }, }, stats = { "skill_can_fire_arrows", @@ -1389,7 +1389,7 @@ skills["BladeBlast"] = { { "active_skill_base_area_of_effect_radius", 0.05 }, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 14 }, + { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { "spell_minimum_base_physical_damage", @@ -1401,46 +1401,46 @@ skills["BladeBlast"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 43, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 49, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 55, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 43, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 49, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 55, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 0.7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, }, } skills["BladeBlastAltX"] = { @@ -1491,7 +1491,7 @@ skills["BladeBlastAltX"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 16 }, - { "blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated", 80 }, + { "blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated", 100 }, { "blade_vortex_damage_+%_per_blade_final", 5 }, { "damage_per_blade_vortex_blade_description_mode", 1 }, }, @@ -1505,46 +1505,46 @@ skills["BladeBlastAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 43, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 49, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 55, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 43, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 49, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 55, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, }, } skills["BladeBlastAltY"] = { @@ -1570,7 +1570,7 @@ skills["BladeBlastAltY"] = { { "active_skill_base_area_of_effect_radius", 0.15 }, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 26 }, + { "active_skill_base_area_of_effect_radius", 28 }, }, stats = { "spell_minimum_base_physical_damage", @@ -1583,46 +1583,46 @@ skills["BladeBlastAltY"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 200, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 225, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 250, critChance = 6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 275, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 300, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 325, critChance = 6, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 350, critChance = 6, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 375, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 400, critChance = 6, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 425, critChance = 6, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 450, critChance = 6, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 475, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 500, critChance = 6, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 525, critChance = 6, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 575, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 600, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 625, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 650, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 675, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 700, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 725, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 750, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 775, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 800, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 825, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 850, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 875, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 900, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 925, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 937, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 950, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 962, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 975, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 987, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 1000, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 1012, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 1025, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 1037, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 1050, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 200, critChance = 10, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 225, critChance = 10, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 250, critChance = 10, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 275, critChance = 10, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 300, critChance = 10, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 325, critChance = 10, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 350, critChance = 10, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 375, critChance = 10, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 400, critChance = 10, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 425, critChance = 10, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 450, critChance = 10, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 475, critChance = 10, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 500, critChance = 10, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 525, critChance = 10, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 550, critChance = 10, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 575, critChance = 10, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 600, critChance = 10, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 625, critChance = 10, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 650, critChance = 10, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 675, critChance = 10, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 700, critChance = 10, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 725, critChance = 10, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 750, critChance = 10, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 775, critChance = 10, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 800, critChance = 10, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 825, critChance = 10, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 850, critChance = 10, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 875, critChance = 10, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 900, critChance = 10, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 925, critChance = 10, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 937, critChance = 10, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 950, critChance = 10, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 962, critChance = 10, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 975, critChance = 10, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 987, critChance = 10, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 1000, critChance = 10, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 1012, critChance = 10, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 1025, critChance = 10, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 1037, critChance = 10, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 1050, critChance = 10, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["BladeTrap"] = { @@ -2258,8 +2258,8 @@ skills["BladeVortex"] = { constantStats = { { "base_skill_effect_duration", 4000 }, { "maximum_number_of_spinning_blades", 10 }, - { "blade_vortex_hit_rate_+%_per_blade", 35 }, - { "blade_vortex_damage_+%_per_blade_final", 35 }, + { "blade_vortex_hit_rate_+%_per_blade", 30 }, + { "blade_vortex_damage_+%_per_blade_final", 30 }, }, stats = { "spell_minimum_base_physical_damage", @@ -2279,54 +2279,54 @@ skills["BladeVortex"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 0, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 0, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 0, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 1, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 1, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 1, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 1, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 1, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 1, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 2, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 2, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 2, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 2, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 2, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 2, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 2, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 3, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 3, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 3, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 3, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 3, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 3, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 3, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 4, critChance = 10, damageEffectiveness = 0.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, }, } skills["BladeVortexAltX"] = { name = "Blade Vortex of the Scythe", baseTypeName = "Blade Vortex of the Scythe", color = 2, - baseEffectiveness = 3.2437999248505, - incrementalEffectiveness = 0.042899999767542, + baseEffectiveness = 3.5599999427795, + incrementalEffectiveness = 0.044799998402596, description = "This spell creates a swarm of ethereal blades which briefly orbit in an area around you, dealing damage every 0.6 seconds to all enemies in their radius.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.TotemCastsAlone] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -2349,7 +2349,7 @@ skills["BladeVortexAltX"] = { flag("Condition:HaveBladeVortex"), }, qualityStats = { - { "active_skill_physical_damage_+%_final", 1 }, + { "active_skill_base_radius_+", 0.15 }, }, constantStats = { { "maximum_number_of_spinning_blades", 1 }, @@ -2373,46 +2373,46 @@ skills["BladeVortexAltX"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 18, critChance = 6, damageEffectiveness = 3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 18, critChance = 6, damageEffectiveness = 3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 20, critChance = 6, damageEffectiveness = 3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 20, critChance = 6, damageEffectiveness = 3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 21, critChance = 6, damageEffectiveness = 3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 21, critChance = 6, damageEffectiveness = 3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 22, critChance = 6, damageEffectiveness = 3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 22, critChance = 6, damageEffectiveness = 3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 23, critChance = 6, damageEffectiveness = 3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 23, critChance = 6, damageEffectiveness = 3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 24, critChance = 6, damageEffectiveness = 3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 24, critChance = 6, damageEffectiveness = 3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 25, critChance = 6, damageEffectiveness = 3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 25, critChance = 6, damageEffectiveness = 3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 25, critChance = 6, damageEffectiveness = 3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 25, critChance = 6, damageEffectiveness = 3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 26, critChance = 6, damageEffectiveness = 3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 26, critChance = 6, damageEffectiveness = 3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 26, critChance = 6, damageEffectiveness = 3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 26, critChance = 6, damageEffectiveness = 3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 27, critChance = 6, damageEffectiveness = 3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 27, critChance = 6, damageEffectiveness = 3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 20, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 20, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 21, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 21, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 22, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 22, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 23, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 23, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 24, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 24, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 25, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 25, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 25, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 25, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 26, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 26, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 26, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 26, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 27, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 27, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, }, } skills["VaalBladeVortex"] = { @@ -2475,53 +2475,53 @@ skills["VaalBladeVortex"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 12, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 15, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 19, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 23, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 27, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 31, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 35, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 38, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 41, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 47, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 50, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 53, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 59, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 62, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 66, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 68, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 12, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 15, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 19, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 23, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 27, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 31, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 35, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 38, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 41, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 44, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 47, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 50, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 53, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 56, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 59, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 62, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 64, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 66, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 68, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 70, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 72, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 74, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 76, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 78, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 80, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 82, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 84, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 86, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 88, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 90, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 91, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 92, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 93, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 94, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 95, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 96, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 97, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 98, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 99, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 0.6, levelRequirement = 100, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, }, } skills["Bladefall"] = { name = "Bladefall", baseTypeName = "Bladefall", color = 2, - baseEffectiveness = 1.2013000249863, + baseEffectiveness = 1.4400000572205, incrementalEffectiveness = 0.045499999076128, description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of volleys. Enemies can be hit multiple times where these overlap.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, }, @@ -2562,53 +2562,53 @@ skills["Bladefall"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.6, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, }, } skills["BladefallAltX"] = { name = "Bladefall of Volleys", baseTypeName = "Bladefall of Volleys", color = 2, - baseEffectiveness = 0.89999997615814, + baseEffectiveness = 1.1499999761581, incrementalEffectiveness = 0.045499999076128, description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of volleys, each wider and more damaging than the last. Enemies can be hit multiple times where these overlap.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, @@ -2651,54 +2651,54 @@ skills["BladefallAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, }, } skills["BladefallAltY"] = { name = "Bladefall of Impaling", baseTypeName = "Bladefall of Impaling", color = 2, - baseEffectiveness = 1.2013000249863, - incrementalEffectiveness = 0.045499999076128, + baseEffectiveness = 1.3200000524521, + incrementalEffectiveness = 0.048000000417233, description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of volleys. Enemies can be hit multiple times where these overlap.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -2732,53 +2732,53 @@ skills["BladefallAltY"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 50, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 53, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 56, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 59, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 62, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 65, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 68, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 71, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 74, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 77, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 80, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 83, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 86, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 89, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 92, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 95, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 98, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 101, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 104, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 107, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 110, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 113, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 116, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 119, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 122, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 125, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 128, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 131, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 134, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 137, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 138, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 140, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 141, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 143, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 144, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 146, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 147, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 149, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 150, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 152, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 50, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 53, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 56, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 59, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 62, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 65, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 68, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 71, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 74, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 77, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 80, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 83, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 86, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 89, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 92, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 95, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 98, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 101, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 104, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 107, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 110, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 113, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 116, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 119, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 122, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 125, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 128, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 131, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 134, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 137, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 138, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 140, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 141, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 143, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 144, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 146, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 147, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 149, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 150, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 152, critChance = 25, damageEffectiveness = 1.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["BladefallAltZ"] = { name = "Bladefall of Trarthus", baseTypeName = "Bladefall of Trarthus", color = 2, - baseEffectiveness = 1.081200003624, + baseEffectiveness = 1.2799999713898, incrementalEffectiveness = 0.045499999076128, description = "Once activated, continuously spends mana to cause volleys of ethereal weapons rain from the sky around you, dealing damage to enemies they impact. Each Blade will target a separate enemy in the volley area if possible. Each enemy can only be hit once by each volley, even if multiple blades land near them. This skill cannot be triggered or used by Totems, Traps, or Mines.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.Cooldown] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.Instant] = true, [SkillType.Arcane] = true, [SkillType.Duration] = true, }, @@ -2829,46 +2829,46 @@ skills["BladefallAltZ"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [2] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [3] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [4] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [5] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [6] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [7] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [8] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [9] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [10] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [11] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [12] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [13] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [14] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [15] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [16] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [17] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [18] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [19] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [20] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [21] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [22] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [23] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [24] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [25] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [26] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [27] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [28] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [29] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [30] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [31] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [32] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [33] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [34] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [35] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [36] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [37] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [38] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [39] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [40] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [1] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [2] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [3] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [4] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [5] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [6] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [7] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [8] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [9] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [10] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [11] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [12] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [13] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [14] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [15] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [16] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [17] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [18] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [19] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [20] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [21] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [22] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [23] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [24] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [25] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [26] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [27] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [28] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [29] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [30] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [31] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [32] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [33] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [34] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [35] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [36] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [37] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [38] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [39] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [40] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, }, } skills["BlastRain"] = { @@ -4240,7 +4240,7 @@ skills["Conflagration"] = { baseEffectiveness = 3.3840000629425, incrementalEffectiveness = 0.054000001400709, description = "Fire arrows into the air that rain down around the targeted area, dealing area damage on impact and leaving the arrows stuck in the ground for a duration. If you move close to a stuck arrow, it will explode, dealing area damage and applying a fire damage over time debuff, as well as causing other stuck arrows in range to also explode.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4287,6 +4287,7 @@ skills["Conflagration"] = { { "base_number_of_projectiles", 3 }, }, stats = { + "base_number_of_projectiles", "base_fire_damage_to_deal_per_minute", "active_skill_base_tertiary_area_of_effect_radius", "base_is_projectile", @@ -4296,11 +4297,8 @@ skills["Conflagration"] = { "quality_display_base_number_of_projectiles_is_gem", "projectile_damage_modifiers_apply_to_skill_dot", }, - notMinionStat = { - "base_fire_damage_to_deal_per_minute", - }, levels = { - [1] = { 49.500001583248, 15, baseMultiplier = 0.3, damageEffectiveness = 0.3, levelRequirement = 28, statInterpolation = { 3, 1, }, cost = { Mana = 9, }, }, + [1] = { 8, baseMultiplier = 0.2, damageEffectiveness = 0.2, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 9, }, }, [2] = { 49.500001583248, 15, baseMultiplier = 0.303, damageEffectiveness = 0.3, levelRequirement = 31, statInterpolation = { 3, 1, }, cost = { Mana = 9, }, }, [3] = { 49.500001583248, 16, baseMultiplier = 0.306, damageEffectiveness = 0.31, levelRequirement = 34, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, [4] = { 49.500001583248, 16, baseMultiplier = 0.309, damageEffectiveness = 0.31, levelRequirement = 37, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, @@ -4392,7 +4390,7 @@ skills["Cremation"] = { skill("explodeCorpse", true, { type = "SkillPart", skillPart = 2 }), }, qualityStats = { - { "cremation_fires_projectiles_faster_+%_final", 0.5 }, + { "cremation_fires_projectiles_faster_+%_final", 0.75 }, }, constantStats = { { "base_skill_effect_duration", 8000 }, @@ -4510,13 +4508,13 @@ skills["CremationAltX"] = { skill("explodeCorpse", true, { type = "SkillPart", skillPart = 2 }), }, qualityStats = { - { "cremation_fires_projectiles_faster_+%_final", 0.5 }, + { "cremation_fires_projectiles_faster_+%_final", 0.75 }, }, constantStats = { { "base_skill_effect_duration", 8000 }, { "corpse_erruption_base_maximum_number_of_geyers", 1 }, - { "base_number_of_projectiles", 4 }, - { "cremation_base_fires_projectile_every_x_ms", 1000 }, + { "base_number_of_projectiles", 3 }, + { "cremation_base_fires_projectile_every_x_ms", 800 }, { "cremation_chance_to_explode_nearby_corpse_when_firing_projectiles", 100 }, }, stats = { @@ -4613,11 +4611,11 @@ skills["CremationAltY"] = { skill("radius", 15), }, qualityStats = { - { "cremation_fires_projectiles_faster_+%_final", 0.5 }, + { "corpse_erruption_base_maximum_number_of_geyers", 0.1 }, }, constantStats = { - { "base_skill_effect_duration", 2500 }, - { "corpse_erruption_base_maximum_number_of_geyers", 6 }, + { "base_skill_effect_duration", 2000 }, + { "corpse_erruption_base_maximum_number_of_geyers", 8 }, { "base_number_of_projectiles", 4 }, { "cremation_base_fires_projectile_every_x_ms", 1000 }, }, @@ -5089,7 +5087,7 @@ skills["Desecrate"] = { baseEffectiveness = 1.6000000238419, incrementalEffectiveness = 0.046500001102686, description = "Desecrates the ground, spawning corpses based on monsters in the current area and dealing chaos damage over time to enemies. If you are using the Raise Spectre skill there is a chance to spawn spectral corpses matching your most recently raised Spectres. Spectral corpses cannot be interacted with except by Minion skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.DamageOverTime] = true, [SkillType.Multicastable] = true, [SkillType.Chaos] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.DamageOverTime] = true, [SkillType.Multicastable] = true, [SkillType.Chaos] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.CreatesCorpse] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -6033,7 +6031,7 @@ skills["ElementalHit"] = { name = "Elemental Hit", baseTypeName = "Elemental Hit", color = 2, - baseEffectiveness = 3.2400000095367, + baseEffectiveness = 2.7000000476837, incrementalEffectiveness = 0.035999998450279, description = "Each attack with a melee weapon will choose an element at random, and will only be able to deal damage of that element. If the attack hits an enemy, it will deal damage in an area around them, with the radius being larger if that enemy is suffering from an ailment of the chosen element. It will avoid choosing the same element twice in a row.", skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.RandomElement] = true, }, @@ -6442,8 +6440,8 @@ skills["EtherealKnives"] = { name = "Ethereal Knives", baseTypeName = "Ethereal Knives", color = 2, - baseEffectiveness = 2.1717000007629, - incrementalEffectiveness = 0.043600000441074, + baseEffectiveness = 2.3499999046326, + incrementalEffectiveness = 0.044700000435114, description = "Fires an arc of knives outwards in front of the caster which deal physical damage.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -6453,7 +6451,7 @@ skills["EtherealKnives"] = { projectile = true, }, qualityStats = { - { "base_number_of_projectiles", 0.1 }, + { "active_skill_projectile_speed_+%_final", 1 }, }, constantStats = { { "active_skill_projectile_speed_+%_variation_final", 50 }, @@ -6471,54 +6469,54 @@ skills["EtherealKnives"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.89999997615814, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.89999997615814, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 2.3, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 2.3, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 2.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 2.3, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 2.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 2.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 2.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 2.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, }, } skills["EtherealKnivesAltX"] = { name = "Ethereal Knives of Lingering Blades", baseTypeName = "Ethereal Knives of Lingering Blades", color = 2, - baseEffectiveness = 2.1717000007629, - incrementalEffectiveness = 0.043600000441074, + baseEffectiveness = 2.3499999046326, + incrementalEffectiveness = 0.044700000435114, description = "Fires an arc of knives down into the ground in front of the caster which deal physical damage.\nCannot be supported by Volley.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, [SkillType.NoVolley] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -6549,46 +6547,46 @@ skills["EtherealKnivesAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.89999997615814, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 7, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.89999997615814, 1.2000000476837, 7, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 7, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 7, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 8, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 2.3, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 2.3, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 2.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 2.3, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 2.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 9, critChance = 10, damageEffectiveness = 2.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 2.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 2.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 11, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, }, } skills["EtherealKnivesAltY"] = { @@ -6625,46 +6623,46 @@ skills["EtherealKnivesAltY"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.89999997615814, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 18, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 18, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 18, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 18, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 18, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 18, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 19, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 1.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.89999997615814, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 1.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 12, critChance = 10, damageEffectiveness = 1.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 1.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 1.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 2, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 14, critChance = 10, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 15, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 2.1, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 16, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 18, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 19, critChance = 10, damageEffectiveness = 2.2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, }, } skills["ExplosiveArrow"] = { @@ -12057,7 +12055,7 @@ skills["Puncture"] = { baseTypeName = "Puncture", color = 2, description = "Punctures enemies with your Bow, causing a bleeding debuff, which will be affected by modifiers to skill duration.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -12141,7 +12139,7 @@ skills["PunctureAltX"] = { baseTypeName = "Puncture of Shanking", color = 2, description = "Punctures enemies, causing a bleeding debuff, which will be affected by modifiers to skill duration. Puncture works with daggers, claws or swords.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, }, weaponTypes = { ["Claw"] = true, ["Dagger"] = true, @@ -16201,7 +16199,7 @@ skills["Unearth"] = { baseEffectiveness = 1.8234000205994, incrementalEffectiveness = 0.039500001817942, description = "Fires a projectile that will pierce through enemies to impact the ground at the targeted location, creating a Bone Archer corpse where it lands.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.CreatesCorpse] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.3, statMap = { @@ -16235,46 +16233,46 @@ skills["Unearth"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 10, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 13, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 17, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 21, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 25, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 25, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 29, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 29, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 33, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 33, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 36, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 39, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 39, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 42, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 45, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 45, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 48, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 51, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 51, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 54, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 57, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 57, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 60, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 63, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 63, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 66, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 68, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 70, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 72, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 74, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 76, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 78, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 80, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 82, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 84, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 86, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 88, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 90, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 90, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 91, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 91, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 92, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 92, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 93, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 93, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 94, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 94, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 95, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 10, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 10, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 13, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 13, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 17, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 17, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 21, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 21, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 25, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 25, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 29, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 29, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 33, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 33, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 36, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 39, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 39, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 42, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 45, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 45, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 48, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 51, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 51, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 54, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 57, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 57, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 60, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 63, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 63, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 66, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 68, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 70, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 72, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 74, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 76, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 78, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 80, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 82, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 84, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 86, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 88, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 90, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 90, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 91, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 91, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 92, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 92, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 93, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 93, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 94, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 94, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 95, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, }, } skills["VenomGyre"] = { @@ -16458,7 +16456,7 @@ skills["ViperStrike"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.023299999535084, description = "Hits enemies, converting some of your physical damage to chaos damage and inflicting poison which will be affected by modifiers to skill duration. If dual wielding, will strike with both weapons. Requires a claw, dagger or sword.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Chaos] = true, }, weaponTypes = { ["Claw"] = true, ["Dagger"] = true, @@ -16549,7 +16547,7 @@ skills["ViperStrikeAltX"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.023299999535084, description = "Hits enemies, converting some of your physical damage to chaos damage and inflicting poison which will be affected by modifiers to skill duration. If dual wielding, deals the damage of both weapons in one strike. Requires a claw, dagger or sword.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Chaos] = true, }, weaponTypes = { ["Claw"] = true, ["Dagger"] = true, @@ -16792,7 +16790,7 @@ skills["VolatileDeadAltX"] = { { "volatile_dead_base_number_of_corpses_to_consume", 3 }, { "volatile_dead_max_cores_allowed", 60 }, { "active_skill_base_area_of_effect_radius", 28 }, - { "active_skill_base_secondary_area_of_effect_radius", 20 }, + { "active_skill_base_secondary_area_of_effect_radius", 23 }, { "active_skill_secondary_area_of_effect_description_mode", 1 }, { "base_skill_effect_duration", 1500 }, }, @@ -17706,7 +17704,6 @@ skills["ChannelledSnipeSupport"] = { }, constantStats = { { "snipe_triggered_skill_damage_+%_final", -40 }, - { "base_number_of_projectiles", 3 }, }, stats = { "snipe_triggered_skill_ailment_damage_+%_final_per_stage", @@ -18118,8 +18115,8 @@ skills["TornadoAltY"] = { name = "Tornado of Elemental Turbulence", baseTypeName = "Tornado of Elemental Turbulence", color = 2, - baseEffectiveness = 0.27500000596046, - incrementalEffectiveness = 0.057000000029802, + baseEffectiveness = 0.30500000715256, + incrementalEffectiveness = 0.059000000357628, description = "Create a Tornado of a random element that hinders and repeatedly damages enemies around it, converting physical damage to its element. The Tornado will chase down enemies for a duration.", skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.Area] = true, [SkillType.Orb] = true, [SkillType.AreaSpell] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.RandomElement] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -18186,46 +18183,46 @@ skills["TornadoAltY"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 18, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 21, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 24, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 27, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 30, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 33, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 36, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 39, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 42, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 45, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 48, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 51, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 54, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 69, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 57, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 60, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 63, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 66, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 69, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 72, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 75, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 78, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 81, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 84, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 87, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 88, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 90, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 91, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 93, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 94, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 96, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 97, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 99, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 100, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 102, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 18, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 21, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 24, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 27, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 30, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 33, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 36, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 39, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 42, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 45, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 48, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 51, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 54, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 69, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 57, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 60, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 63, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 66, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 69, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 72, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 75, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 78, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 81, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 84, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 87, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 88, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 90, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 91, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 93, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 94, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 96, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 97, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 99, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 100, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 102, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, }, } skills["IntuitiveLink"] = { diff --git a/src/Data/Skills/act_int.lua b/src/Data/Skills/act_int.lua index f0eea0e70e..36e957f7ce 100644 --- a/src/Data/Skills/act_int.lua +++ b/src/Data/Skills/act_int.lua @@ -15,7 +15,7 @@ skills["Arc"] = { description = "An arc of lightning reaches from the caster to a targeted enemy and chains to other enemies, but not immediately back. Each time the arc chains, it will also chain a secondary arc to another enemy that the main arc has not already hit, which cannot chain further.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, statMap = { ["arc_damage_+%_final_for_each_remaining_chain"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "PerStat", stat = "ChainRemaining" }), @@ -44,46 +44,46 @@ skills["Arc"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [2] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [3] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [6] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [7] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [8] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [9] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [10] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [13] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [14] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [15] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [16] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [17] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [18] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [19] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [20] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [21] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [22] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [23] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [24] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [25] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [26] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [27] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [28] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [29] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [30] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [31] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [32] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [33] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [34] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [35] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [36] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [37] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [38] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [39] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [40] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, }, } skills["ArcAltX"] = { @@ -95,7 +95,7 @@ skills["ArcAltX"] = { description = "An arc of lightning reaches from the caster to a targeted enemy and splits to simultaneously hit several other enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.ThresholdJewelChaining] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, baseFlags = { spell = true, chaining = true, @@ -119,46 +119,46 @@ skills["ArcAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.30000001192093, 1.7000000476837, 4, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.30000001192093, 1.7000000476837, 5, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [2] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [3] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [6] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [7] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [8] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [9] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [10] = { 0.30000001192093, 1.7000000476837, 7, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [13] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [14] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [15] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [16] = { 0.30000001192093, 1.7000000476837, 8, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [17] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [18] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [19] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [20] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [21] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [22] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [23] = { 0.30000001192093, 1.7000000476837, 9, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [24] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [25] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [26] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [27] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [28] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [29] = { 0.30000001192093, 1.7000000476837, 10, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [30] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [31] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [32] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [33] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [34] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [35] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [36] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [37] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [38] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [39] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [40] = { 0.30000001192093, 1.7000000476837, 11, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, }, } skills["ArcAltY"] = { @@ -170,7 +170,7 @@ skills["ArcAltY"] = { description = "An arc of lightning reaches from the caster to a targeted enemy and chains to other enemies. Each time the arc chains, it will also chain a secondary arc to another enemy, but this secondary arc cannot chain further.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Chains] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, statMap = { ["arc_damage_+%_final_for_each_remaining_chain"] = { mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "PerStat", stat = "ChainRemaining" }), @@ -199,46 +199,46 @@ skills["ArcAltY"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [2] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [3] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [6] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [7] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [8] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [9] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [10] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [13] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [14] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [15] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [16] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [17] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [18] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [19] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [20] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [21] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [22] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [23] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [24] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [25] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [26] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [27] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [28] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [29] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [30] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [31] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [32] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [33] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [34] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [35] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [36] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [37] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [38] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [39] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [40] = { 0.30000001192093, 1.7000000476837, 6, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, }, } skills["VaalArc"] = { @@ -376,42 +376,42 @@ skills["ArcaneCloak"] = { [2] = { 46, 10, cooldown = 4, levelRequirement = 20, storedUses = 1, statInterpolation = { 1, 1, }, }, [3] = { 47, 10, cooldown = 4, levelRequirement = 24, storedUses = 1, statInterpolation = { 1, 1, }, }, [4] = { 48, 10, cooldown = 4, levelRequirement = 28, storedUses = 1, statInterpolation = { 1, 1, }, }, - [5] = { 49, 11, cooldown = 4, levelRequirement = 31, storedUses = 1, statInterpolation = { 1, 1, }, }, - [6] = { 50, 11, cooldown = 4, levelRequirement = 34, storedUses = 1, statInterpolation = { 1, 1, }, }, - [7] = { 51, 11, cooldown = 4, levelRequirement = 37, storedUses = 1, statInterpolation = { 1, 1, }, }, - [8] = { 52, 11, cooldown = 4, levelRequirement = 40, storedUses = 1, statInterpolation = { 1, 1, }, }, - [9] = { 53, 12, cooldown = 4, levelRequirement = 43, storedUses = 1, statInterpolation = { 1, 1, }, }, - [10] = { 54, 12, cooldown = 4, levelRequirement = 46, storedUses = 1, statInterpolation = { 1, 1, }, }, - [11] = { 55, 12, cooldown = 4, levelRequirement = 49, storedUses = 1, statInterpolation = { 1, 1, }, }, - [12] = { 56, 12, cooldown = 4, levelRequirement = 52, storedUses = 1, statInterpolation = { 1, 1, }, }, - [13] = { 57, 13, cooldown = 4, levelRequirement = 55, storedUses = 1, statInterpolation = { 1, 1, }, }, - [14] = { 58, 13, cooldown = 4, levelRequirement = 58, storedUses = 1, statInterpolation = { 1, 1, }, }, - [15] = { 59, 13, cooldown = 4, levelRequirement = 60, storedUses = 1, statInterpolation = { 1, 1, }, }, - [16] = { 60, 13, cooldown = 4, levelRequirement = 62, storedUses = 1, statInterpolation = { 1, 1, }, }, - [17] = { 61, 14, cooldown = 4, levelRequirement = 64, storedUses = 1, statInterpolation = { 1, 1, }, }, - [18] = { 62, 14, cooldown = 4, levelRequirement = 66, storedUses = 1, statInterpolation = { 1, 1, }, }, - [19] = { 63, 14, cooldown = 4, levelRequirement = 68, storedUses = 1, statInterpolation = { 1, 1, }, }, - [20] = { 64, 14, cooldown = 4, levelRequirement = 70, storedUses = 1, statInterpolation = { 1, 1, }, }, - [21] = { 65, 15, cooldown = 4, levelRequirement = 72, storedUses = 1, statInterpolation = { 1, 1, }, }, - [22] = { 66, 15, cooldown = 4, levelRequirement = 74, storedUses = 1, statInterpolation = { 1, 1, }, }, - [23] = { 67, 15, cooldown = 4, levelRequirement = 76, storedUses = 1, statInterpolation = { 1, 1, }, }, - [24] = { 68, 15, cooldown = 4, levelRequirement = 78, storedUses = 1, statInterpolation = { 1, 1, }, }, - [25] = { 69, 16, cooldown = 4, levelRequirement = 80, storedUses = 1, statInterpolation = { 1, 1, }, }, - [26] = { 70, 16, cooldown = 4, levelRequirement = 82, storedUses = 1, statInterpolation = { 1, 1, }, }, - [27] = { 71, 16, cooldown = 4, levelRequirement = 84, storedUses = 1, statInterpolation = { 1, 1, }, }, - [28] = { 72, 16, cooldown = 4, levelRequirement = 86, storedUses = 1, statInterpolation = { 1, 1, }, }, - [29] = { 73, 17, cooldown = 4, levelRequirement = 88, storedUses = 1, statInterpolation = { 1, 1, }, }, - [30] = { 74, 17, cooldown = 4, levelRequirement = 90, storedUses = 1, statInterpolation = { 1, 1, }, }, - [31] = { 74, 17, cooldown = 4, levelRequirement = 91, storedUses = 1, statInterpolation = { 1, 1, }, }, - [32] = { 75, 17, cooldown = 4, levelRequirement = 92, storedUses = 1, statInterpolation = { 1, 1, }, }, - [33] = { 75, 17, cooldown = 4, levelRequirement = 93, storedUses = 1, statInterpolation = { 1, 1, }, }, - [34] = { 76, 17, cooldown = 4, levelRequirement = 94, storedUses = 1, statInterpolation = { 1, 1, }, }, - [35] = { 76, 18, cooldown = 4, levelRequirement = 95, storedUses = 1, statInterpolation = { 1, 1, }, }, - [36] = { 77, 18, cooldown = 4, levelRequirement = 96, storedUses = 1, statInterpolation = { 1, 1, }, }, - [37] = { 77, 18, cooldown = 4, levelRequirement = 97, storedUses = 1, statInterpolation = { 1, 1, }, }, - [38] = { 78, 18, cooldown = 4, levelRequirement = 98, storedUses = 1, statInterpolation = { 1, 1, }, }, - [39] = { 78, 18, cooldown = 4, levelRequirement = 99, storedUses = 1, statInterpolation = { 1, 1, }, }, - [40] = { 79, 18, cooldown = 4, levelRequirement = 100, storedUses = 1, statInterpolation = { 1, 1, }, }, + [5] = { 49, 10, cooldown = 4, levelRequirement = 31, storedUses = 1, statInterpolation = { 1, 1, }, }, + [6] = { 50, 10, cooldown = 4, levelRequirement = 34, storedUses = 1, statInterpolation = { 1, 1, }, }, + [7] = { 51, 10, cooldown = 4, levelRequirement = 37, storedUses = 1, statInterpolation = { 1, 1, }, }, + [8] = { 52, 10, cooldown = 4, levelRequirement = 40, storedUses = 1, statInterpolation = { 1, 1, }, }, + [9] = { 53, 10, cooldown = 4, levelRequirement = 43, storedUses = 1, statInterpolation = { 1, 1, }, }, + [10] = { 54, 10, cooldown = 4, levelRequirement = 46, storedUses = 1, statInterpolation = { 1, 1, }, }, + [11] = { 55, 10, cooldown = 4, levelRequirement = 49, storedUses = 1, statInterpolation = { 1, 1, }, }, + [12] = { 56, 10, cooldown = 4, levelRequirement = 52, storedUses = 1, statInterpolation = { 1, 1, }, }, + [13] = { 57, 10, cooldown = 4, levelRequirement = 55, storedUses = 1, statInterpolation = { 1, 1, }, }, + [14] = { 58, 10, cooldown = 4, levelRequirement = 58, storedUses = 1, statInterpolation = { 1, 1, }, }, + [15] = { 59, 10, cooldown = 4, levelRequirement = 60, storedUses = 1, statInterpolation = { 1, 1, }, }, + [16] = { 60, 10, cooldown = 4, levelRequirement = 62, storedUses = 1, statInterpolation = { 1, 1, }, }, + [17] = { 61, 10, cooldown = 4, levelRequirement = 64, storedUses = 1, statInterpolation = { 1, 1, }, }, + [18] = { 62, 10, cooldown = 4, levelRequirement = 66, storedUses = 1, statInterpolation = { 1, 1, }, }, + [19] = { 63, 10, cooldown = 4, levelRequirement = 68, storedUses = 1, statInterpolation = { 1, 1, }, }, + [20] = { 64, 10, cooldown = 4, levelRequirement = 70, storedUses = 1, statInterpolation = { 1, 1, }, }, + [21] = { 65, 10, cooldown = 4, levelRequirement = 72, storedUses = 1, statInterpolation = { 1, 1, }, }, + [22] = { 66, 10, cooldown = 4, levelRequirement = 74, storedUses = 1, statInterpolation = { 1, 1, }, }, + [23] = { 67, 10, cooldown = 4, levelRequirement = 76, storedUses = 1, statInterpolation = { 1, 1, }, }, + [24] = { 68, 10, cooldown = 4, levelRequirement = 78, storedUses = 1, statInterpolation = { 1, 1, }, }, + [25] = { 69, 10, cooldown = 4, levelRequirement = 80, storedUses = 1, statInterpolation = { 1, 1, }, }, + [26] = { 70, 10, cooldown = 4, levelRequirement = 82, storedUses = 1, statInterpolation = { 1, 1, }, }, + [27] = { 71, 10, cooldown = 4, levelRequirement = 84, storedUses = 1, statInterpolation = { 1, 1, }, }, + [28] = { 72, 10, cooldown = 4, levelRequirement = 86, storedUses = 1, statInterpolation = { 1, 1, }, }, + [29] = { 73, 10, cooldown = 4, levelRequirement = 88, storedUses = 1, statInterpolation = { 1, 1, }, }, + [30] = { 74, 10, cooldown = 4, levelRequirement = 90, storedUses = 1, statInterpolation = { 1, 1, }, }, + [31] = { 74, 10, cooldown = 4, levelRequirement = 91, storedUses = 1, statInterpolation = { 1, 1, }, }, + [32] = { 75, 10, cooldown = 4, levelRequirement = 92, storedUses = 1, statInterpolation = { 1, 1, }, }, + [33] = { 75, 10, cooldown = 4, levelRequirement = 93, storedUses = 1, statInterpolation = { 1, 1, }, }, + [34] = { 76, 10, cooldown = 4, levelRequirement = 94, storedUses = 1, statInterpolation = { 1, 1, }, }, + [35] = { 76, 10, cooldown = 4, levelRequirement = 95, storedUses = 1, statInterpolation = { 1, 1, }, }, + [36] = { 77, 10, cooldown = 4, levelRequirement = 96, storedUses = 1, statInterpolation = { 1, 1, }, }, + [37] = { 77, 10, cooldown = 4, levelRequirement = 97, storedUses = 1, statInterpolation = { 1, 1, }, }, + [38] = { 78, 10, cooldown = 4, levelRequirement = 98, storedUses = 1, statInterpolation = { 1, 1, }, }, + [39] = { 78, 10, cooldown = 4, levelRequirement = 99, storedUses = 1, statInterpolation = { 1, 1, }, }, + [40] = { 79, 10, cooldown = 4, levelRequirement = 100, storedUses = 1, statInterpolation = { 1, 1, }, }, }, } skills["Automation"] = { @@ -802,8 +802,8 @@ skills["ArmageddonBrandAltX"] = { name = "Armageddon Brand of Volatility", baseTypeName = "Armageddon Brand of Volatility", color = 3, - baseEffectiveness = 3.5199999809265, - incrementalEffectiveness = 0.044900000095367, + baseEffectiveness = 4.0479998588562, + incrementalEffectiveness = 0.04619999974966, description = "Creates a magical brand which can attach to a nearby enemy. It activates once, causing a fiery meteor to fall from the sky, then is destroyed.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Brand] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "brand_skill_stat_descriptions", @@ -841,46 +841,46 @@ skills["ArmageddonBrandAltX"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [2] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [3] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [4] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [5] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [6] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [7] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [8] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [9] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [10] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [11] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [12] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [13] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [14] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [15] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [16] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [17] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [18] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [19] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [20] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [21] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [22] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [23] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [24] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [25] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [26] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [27] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [28] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [29] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [30] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [31] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [32] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [33] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [34] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [35] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [36] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [37] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [38] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [39] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, - [40] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [1] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [3] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [4] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [5] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [6] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [7] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.7, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [8] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.7, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [9] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.7, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [10] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.8, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [11] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.8, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.9, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.9, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [14] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 4.9, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [16] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [17] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.1, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [18] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.1, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [19] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.1, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [21] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [22] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [23] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [24] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [25] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [26] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [27] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [28] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [29] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [30] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [31] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [32] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [33] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [34] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [35] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [36] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [37] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [38] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [39] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [40] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -60, critChance = 7.5, damageEffectiveness = 5.2, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, }, } skills["ArmageddonBrandAltY"] = { @@ -1075,7 +1075,7 @@ skills["BallLightning"] = { description = "Fires a slow-moving projectile that damages each enemy in an area around it repeatedly with bolts of lightning.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, parts = { { name = "One Bolt", @@ -1185,7 +1185,7 @@ skills["BallLightning"] = { }, constantStats = { { "ball_lightning_projectile_speed_and_hit_frequency_+%_final", 33 }, - { "active_skill_base_area_of_effect_radius", 18 }, + { "active_skill_base_area_of_effect_radius", 20 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -1197,46 +1197,46 @@ skills["BallLightning"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [2] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [6] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [8] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [10] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [12] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [2] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [3] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [4] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [5] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [6] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [7] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [8] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [9] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [10] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [11] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [12] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [13] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [14] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [15] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [16] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [17] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [18] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [19] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [20] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [21] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [22] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [23] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [24] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [25] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [26] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [27] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [28] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [29] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [30] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [31] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [32] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [33] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [34] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [35] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [36] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [37] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [38] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [39] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [40] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, }, } skills["BallLightningAltX"] = { @@ -1248,7 +1248,7 @@ skills["BallLightningAltX"] = { description = "Fires a single projectile which moves in a spiral while damaging each enemy in an area around it repeatedly with bolts of lightning.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.ProjectileSpiral] = true, [SkillType.ProjectilesNumberModifiersNotApplied] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.6, + castTime = 0.5, preDamageFunc = function(activeSkill, output, breakdown) local s_format = string.format local dpsMultiplier = 1 @@ -1320,46 +1320,46 @@ skills["BallLightningAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [2] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [3] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [4] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [5] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [6] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [7] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [8] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [9] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [10] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [11] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [12] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [13] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [14] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [15] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [16] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [17] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [18] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [19] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [20] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [21] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [22] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [23] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [24] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [25] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [26] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [27] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [28] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [29] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [30] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [31] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [32] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [33] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [34] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [35] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [36] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [37] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [38] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [39] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [40] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [1] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [2] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [3] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [4] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [6] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [7] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [8] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [9] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [10] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [11] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [12] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [13] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [14] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [15] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [16] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [18] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [19] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [20] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [21] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [23] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [25] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [27] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [28] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [29] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [30] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [31] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [32] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [33] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [34] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [35] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [36] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [38] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [39] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [40] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, }, } skills["BallLightningAltY"] = { @@ -1371,7 +1371,7 @@ skills["BallLightningAltY"] = { description = "Creates a ball of lightning at a location that damages each enemy in an area around it repeatedly with bolts of lightning. Cannot be supported by Spell Echo or used by Totems.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, preDamageFunc = function(activeSkill, output, breakdown) local s_format = string.format @@ -1415,46 +1415,46 @@ skills["BallLightningAltY"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 28, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [2] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 31, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 34, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 37, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 40, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [6] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 42, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 44, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [8] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 46, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 48, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [10] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 50, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 52, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [12] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 54, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 56, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 58, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 60, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 62, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 64, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 66, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 68, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 70, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 72, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 74, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 76, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 78, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 80, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 82, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 84, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 86, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 88, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 90, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 91, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 92, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 93, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 94, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 95, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 96, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 97, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 98, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 99, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 100, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 28, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [2] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 31, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [3] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 34, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [4] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 37, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [5] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 40, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [6] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 42, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [7] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 44, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [8] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 46, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [9] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 48, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [10] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 50, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [11] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 52, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [12] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 54, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [13] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 56, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [14] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 58, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [15] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 60, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [16] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 62, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [17] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 64, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [18] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 66, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [19] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 68, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [20] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 70, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [21] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 72, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [22] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 74, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [23] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 76, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [24] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 78, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [25] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 80, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [26] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 82, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [27] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 84, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [28] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 86, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [29] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 88, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [30] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 90, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [31] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 91, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [32] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 92, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [33] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 93, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [34] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 94, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [35] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 95, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [36] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 96, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [37] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 97, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [38] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 98, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [39] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 99, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [40] = { 0.10000000149012, 1.8999999761581, PvPDamageMultiplier = -40, cooldown = 1.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 100, storedUses = 4, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, }, } skills["Bane"] = { @@ -1462,7 +1462,7 @@ skills["Bane"] = { baseTypeName = "Bane", color = 3, baseEffectiveness = 6.3354997634888, - incrementalEffectiveness = 0.045299999415874, + incrementalEffectiveness = 0.047499999403954, description = "Applies a debuff to enemies in an area, which deals chaos damage over Time. Linked hex curses are also applied to those enemies. The debuff deals more damage and lasts longer for each hex applied this way. This skill cannot be used by Totems, Traps, or Mines.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Hex] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -1510,9 +1510,8 @@ skills["Bane"] = { }, constantStats = { { "display_linked_curse_effect_+%_final", -25 }, - { "dark_ritual_skill_effect_duration_+%_per_curse_applied", 50 }, + { "dark_ritual_skill_effect_duration_+%_per_curse_applied", 100 }, { "base_skill_effect_duration", 2000 }, - { "active_skill_base_area_of_effect_radius", 21 }, }, stats = { "base_chaos_damage_to_deal_per_minute", @@ -1522,46 +1521,46 @@ skills["Bane"] = { "spell_damage_modifiers_apply_to_skill_dot", }, levels = { - [1] = { 16.666667039196, 0, 28, 24, levelRequirement = 24, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 10, }, }, - [2] = { 16.666667039196, 0, 28, 27, levelRequirement = 27, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 10, }, }, - [3] = { 16.666667039196, 0, 29, 30, levelRequirement = 30, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 11, }, }, - [4] = { 16.666667039196, 0, 30, 33, levelRequirement = 33, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 12, }, }, - [5] = { 16.666667039196, 0, 31, 36, levelRequirement = 36, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 12, }, }, - [6] = { 16.666667039196, 1, 31, 39, levelRequirement = 39, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 13, }, }, - [7] = { 16.666667039196, 1, 32, 42, levelRequirement = 42, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [8] = { 16.666667039196, 1, 33, 45, levelRequirement = 45, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [9] = { 16.666667039196, 1, 34, 48, levelRequirement = 48, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 15, }, }, - [10] = { 16.666667039196, 1, 34, 50, levelRequirement = 50, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 15, }, }, - [11] = { 16.666667039196, 2, 35, 52, levelRequirement = 52, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [12] = { 16.666667039196, 2, 36, 54, levelRequirement = 54, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [13] = { 16.666667039196, 2, 37, 56, levelRequirement = 56, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 17, }, }, - [14] = { 16.666667039196, 2, 37, 58, levelRequirement = 58, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 17, }, }, - [15] = { 16.666667039196, 2, 38, 60, levelRequirement = 60, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 18, }, }, - [16] = { 16.666667039196, 3, 39, 62, levelRequirement = 62, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 18, }, }, - [17] = { 16.666667039196, 3, 40, 64, levelRequirement = 64, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 18, }, }, - [18] = { 16.666667039196, 3, 40, 66, levelRequirement = 66, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 19, }, }, - [19] = { 16.666667039196, 3, 41, 68, levelRequirement = 68, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 19, }, }, - [20] = { 16.666667039196, 3, 42, 70, levelRequirement = 70, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 20, }, }, - [21] = { 16.666667039196, 4, 43, 72, levelRequirement = 72, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 20, }, }, - [22] = { 16.666667039196, 4, 43, 74, levelRequirement = 74, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 21, }, }, - [23] = { 16.666667039196, 4, 44, 76, levelRequirement = 76, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 21, }, }, - [24] = { 16.666667039196, 4, 45, 78, levelRequirement = 78, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 21, }, }, - [25] = { 16.666667039196, 4, 46, 80, levelRequirement = 80, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 22, }, }, - [26] = { 16.666667039196, 5, 46, 82, levelRequirement = 82, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 22, }, }, - [27] = { 16.666667039196, 5, 47, 84, levelRequirement = 84, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 23, }, }, - [28] = { 16.666667039196, 5, 48, 86, levelRequirement = 86, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 23, }, }, - [29] = { 16.666667039196, 5, 49, 88, levelRequirement = 88, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 24, }, }, - [30] = { 16.666667039196, 5, 49, 90, levelRequirement = 90, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 24, }, }, - [31] = { 16.666667039196, 5, 50, 91, levelRequirement = 91, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 24, }, }, - [32] = { 16.666667039196, 6, 50, 92, levelRequirement = 92, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, - [33] = { 16.666667039196, 6, 50, 93, levelRequirement = 93, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, - [34] = { 16.666667039196, 6, 51, 94, levelRequirement = 94, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, - [35] = { 16.666667039196, 6, 51, 95, levelRequirement = 95, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, - [36] = { 16.666667039196, 6, 52, 96, levelRequirement = 96, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, - [37] = { 16.666667039196, 6, 52, 97, levelRequirement = 97, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 26, }, }, - [38] = { 16.666667039196, 6, 52, 98, levelRequirement = 98, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 26, }, }, - [39] = { 16.666667039196, 6, 53, 99, levelRequirement = 99, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 26, }, }, - [40] = { 16.666667039196, 6, 53, 100, levelRequirement = 100, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 26, }, }, + [1] = { 16.666667039196, 24, 28, 24, levelRequirement = 24, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 10, }, }, + [2] = { 16.666667039196, 24, 28, 27, levelRequirement = 27, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 10, }, }, + [3] = { 16.666667039196, 24, 29, 30, levelRequirement = 30, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 11, }, }, + [4] = { 16.666667039196, 24, 30, 33, levelRequirement = 33, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [5] = { 16.666667039196, 25, 31, 36, levelRequirement = 36, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [6] = { 16.666667039196, 25, 31, 39, levelRequirement = 39, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 13, }, }, + [7] = { 16.666667039196, 25, 32, 42, levelRequirement = 42, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [8] = { 16.666667039196, 25, 33, 45, levelRequirement = 45, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [9] = { 16.666667039196, 25, 34, 48, levelRequirement = 48, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 15, }, }, + [10] = { 16.666667039196, 25, 34, 50, levelRequirement = 50, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 15, }, }, + [11] = { 16.666667039196, 26, 35, 52, levelRequirement = 52, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 16, }, }, + [12] = { 16.666667039196, 26, 36, 54, levelRequirement = 54, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 16, }, }, + [13] = { 16.666667039196, 26, 37, 56, levelRequirement = 56, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 17, }, }, + [14] = { 16.666667039196, 26, 37, 58, levelRequirement = 58, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 17, }, }, + [15] = { 16.666667039196, 26, 38, 60, levelRequirement = 60, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 18, }, }, + [16] = { 16.666667039196, 26, 39, 62, levelRequirement = 62, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 16.666667039196, 27, 40, 64, levelRequirement = 64, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 18, }, }, + [18] = { 16.666667039196, 27, 40, 66, levelRequirement = 66, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 16.666667039196, 27, 41, 68, levelRequirement = 68, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 19, }, }, + [20] = { 16.666667039196, 27, 42, 70, levelRequirement = 70, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 20, }, }, + [21] = { 16.666667039196, 27, 43, 72, levelRequirement = 72, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 20, }, }, + [22] = { 16.666667039196, 27, 43, 74, levelRequirement = 74, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 21, }, }, + [23] = { 16.666667039196, 27, 44, 76, levelRequirement = 76, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 21, }, }, + [24] = { 16.666667039196, 28, 45, 78, levelRequirement = 78, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 21, }, }, + [25] = { 16.666667039196, 28, 46, 80, levelRequirement = 80, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 22, }, }, + [26] = { 16.666667039196, 28, 46, 82, levelRequirement = 82, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 22, }, }, + [27] = { 16.666667039196, 28, 47, 84, levelRequirement = 84, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 23, }, }, + [28] = { 16.666667039196, 28, 48, 86, levelRequirement = 86, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 23, }, }, + [29] = { 16.666667039196, 28, 49, 88, levelRequirement = 88, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 24, }, }, + [30] = { 16.666667039196, 29, 49, 90, levelRequirement = 90, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 24, }, }, + [31] = { 16.666667039196, 29, 50, 91, levelRequirement = 91, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 24, }, }, + [32] = { 16.666667039196, 29, 50, 92, levelRequirement = 92, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, + [33] = { 16.666667039196, 29, 50, 93, levelRequirement = 93, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, + [34] = { 16.666667039196, 29, 51, 94, levelRequirement = 94, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, + [35] = { 16.666667039196, 29, 51, 95, levelRequirement = 95, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, + [36] = { 16.666667039196, 29, 52, 96, levelRequirement = 96, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 25, }, }, + [37] = { 16.666667039196, 29, 52, 97, levelRequirement = 97, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 26, }, }, + [38] = { 16.666667039196, 29, 52, 98, levelRequirement = 98, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 26, }, }, + [39] = { 16.666667039196, 29, 53, 99, levelRequirement = 99, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 26, }, }, + [40] = { 16.666667039196, 29, 53, 100, levelRequirement = 100, statInterpolation = { 3, 1, 1, 1, }, cost = { Mana = 26, }, }, }, } skills["SupportDarkRitual"] = { @@ -1639,8 +1638,8 @@ skills["BaneAltX"] = { name = "Bane of Condemnation", baseTypeName = "Bane of Condemnation", color = 3, - baseEffectiveness = 7.3984999656677, - incrementalEffectiveness = 0.046300001442432, + baseEffectiveness = 8.1999998092651, + incrementalEffectiveness = 0.048200000077486, description = "Applies a debuff to enemies in a small area, which deals chaos damage over Time. Linked hex curses are also applied to those enemies. The debuff deals more damage and lasts longer for each hex applied this way. This skill cannot be used by Totems, Traps, or Mines.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Hex] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -1683,10 +1682,9 @@ skills["BaneAltX"] = { { "base_skill_effect_duration", 10 }, }, constantStats = { - { "dark_ritual_skill_effect_duration_+%_per_curse_applied", 100 }, { "base_skill_effect_duration", 1000 }, - { "active_skill_base_area_of_effect_radius", 8 }, - { "dark_ritual_damage_+%_final_per_curse_applied", 60 }, + { "active_skill_base_area_of_effect_radius", 12 }, + { "dark_ritual_damage_+%_final_per_curse_applied", 100 }, }, stats = { "base_chaos_damage_to_deal_per_minute", @@ -1854,46 +1852,46 @@ skills["BlazingSalvo"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, }, } skills["Blight"] = { @@ -1901,7 +1899,7 @@ skills["Blight"] = { baseTypeName = "Blight", color = 3, baseEffectiveness = 5.4704999923706, - incrementalEffectiveness = 0.033399999141693, + incrementalEffectiveness = 0.035000000149012, description = "Apply a debuff to enemies in front of you which deals chaos damage over time. Enemies who aren't already debuffed by Blight are also hindered for a shorter secondary duration, slowing their movement. Continued channelling adds layers of damage to the debuff, each with their own duration.", skillTypes = { [SkillType.Spell] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -1997,11 +1995,11 @@ skills["BlightAltX"] = { baseTypeName = "Blight of Contagion", color = 3, baseEffectiveness = 9.0200004577637, - incrementalEffectiveness = 0.036200001835823, + incrementalEffectiveness = 0.038100000470877, description = "Apply a debuff to enemies in front of you which deals chaos damage over time. Enemies who aren't already debuffed by Blight are also hindered for a shorter secondary duration, slowing their movement. Continued channelling adds layers of damage to the debuff, each with their own duration. The damaging debuff is spread by Contagion.", skillTypes = { [SkillType.Spell] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", - castTime = 0.25, + castTime = 0.2, parts = { { name = "Manual Stacks", @@ -2093,7 +2091,7 @@ skills["BlightAltY"] = { baseTypeName = "Blight of Atrophy", color = 3, baseEffectiveness = 5.4704999923706, - incrementalEffectiveness = 0.033399999141693, + incrementalEffectiveness = 0.035000000149012, description = "Apply a debuff to enemies in front of you which deals chaos damage over time. Enemies who aren't already debuffed by Blight are also hindered for a longer secondary duration, slowing their movement and reducing their life regeneration rate. Continued channelling adds layers of damage to the debuff, each with their own duration.", skillTypes = { [SkillType.Spell] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Channel] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -2190,11 +2188,11 @@ skills["VaalBlight"] = { baseTypeName = "Vaal Blight", color = 3, baseEffectiveness = 6.0170001983643, - incrementalEffectiveness = 0.041200000792742, + incrementalEffectiveness = 0.044399999082088, description = "Apply a powerful debuff to enemies around you which deals chaos damage over time. Then applies two additional layers in a larger area, growing greatly in size each time. Enemies are also substantially hindered for a shorter secondary duration, slowing their movement.", skillTypes = { [SkillType.Spell] = true, [SkillType.Chaos] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Vaal] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", - castTime = 0.6, + castTime = 0.5, statMap = { ["hinder_enemy_chaos_damage_taken_+%"] = { mod("ChaosDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff", effectName = "Hinder" }), @@ -2219,7 +2217,7 @@ skills["VaalBlight"] = { { "base_secondary_skill_effect_duration", 3000 }, { "base_movement_velocity_+%", -80 }, { "display_max_blight_stacks", 20 }, - { "hinder_enemy_chaos_damage_taken_+%", 20 }, + { "hinder_enemy_chaos_damage_taken_+%", 30 }, }, stats = { "base_chaos_damage_to_deal_per_minute", @@ -2233,46 +2231,46 @@ skills["VaalBlight"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 16.666667039196, 0, levelRequirement = 1, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [2] = { 16.666667039196, 0, levelRequirement = 2, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [3] = { 16.666667039196, 1, levelRequirement = 4, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [4] = { 16.666667039196, 1, levelRequirement = 7, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [5] = { 16.666667039196, 2, levelRequirement = 11, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [6] = { 16.666667039196, 2, levelRequirement = 16, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [7] = { 16.666667039196, 3, levelRequirement = 20, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [8] = { 16.666667039196, 3, levelRequirement = 24, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [9] = { 16.666667039196, 4, levelRequirement = 28, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [10] = { 16.666667039196, 4, levelRequirement = 32, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [11] = { 16.666667039196, 5, levelRequirement = 36, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [12] = { 16.666667039196, 5, levelRequirement = 40, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [13] = { 16.666667039196, 6, levelRequirement = 44, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [14] = { 16.666667039196, 6, levelRequirement = 48, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [15] = { 16.666667039196, 7, levelRequirement = 52, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [16] = { 16.666667039196, 7, levelRequirement = 56, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [17] = { 16.666667039196, 8, levelRequirement = 60, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [18] = { 16.666667039196, 8, levelRequirement = 64, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [19] = { 16.666667039196, 9, levelRequirement = 67, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [20] = { 16.666667039196, 9, levelRequirement = 70, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [21] = { 16.666667039196, 10, levelRequirement = 72, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [22] = { 16.666667039196, 10, levelRequirement = 74, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [23] = { 16.666667039196, 11, levelRequirement = 76, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [24] = { 16.666667039196, 11, levelRequirement = 78, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [25] = { 16.666667039196, 12, levelRequirement = 80, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [26] = { 16.666667039196, 12, levelRequirement = 82, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [27] = { 16.666667039196, 13, levelRequirement = 84, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [28] = { 16.666667039196, 13, levelRequirement = 86, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [29] = { 16.666667039196, 14, levelRequirement = 88, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [30] = { 16.666667039196, 14, levelRequirement = 90, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [31] = { 16.666667039196, 14, levelRequirement = 91, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [32] = { 16.666667039196, 15, levelRequirement = 92, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [33] = { 16.666667039196, 15, levelRequirement = 93, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [34] = { 16.666667039196, 15, levelRequirement = 94, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [35] = { 16.666667039196, 15, levelRequirement = 95, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [36] = { 16.666667039196, 16, levelRequirement = 96, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [37] = { 16.666667039196, 16, levelRequirement = 97, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [38] = { 16.666667039196, 16, levelRequirement = 98, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [39] = { 16.666667039196, 16, levelRequirement = 99, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, - [40] = { 16.666667039196, 17, levelRequirement = 100, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 1, }, cost = { Soul = 30, }, }, + [1] = { 16.666667039196, 0, levelRequirement = 1, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [2] = { 16.666667039196, 0, levelRequirement = 2, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [3] = { 16.666667039196, 1, levelRequirement = 4, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [4] = { 16.666667039196, 1, levelRequirement = 7, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [5] = { 16.666667039196, 2, levelRequirement = 11, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [6] = { 16.666667039196, 2, levelRequirement = 16, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [7] = { 16.666667039196, 3, levelRequirement = 20, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [8] = { 16.666667039196, 3, levelRequirement = 24, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [9] = { 16.666667039196, 4, levelRequirement = 28, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [10] = { 16.666667039196, 4, levelRequirement = 32, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [11] = { 16.666667039196, 5, levelRequirement = 36, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [12] = { 16.666667039196, 5, levelRequirement = 40, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [13] = { 16.666667039196, 6, levelRequirement = 44, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [14] = { 16.666667039196, 6, levelRequirement = 48, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [15] = { 16.666667039196, 7, levelRequirement = 52, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [16] = { 16.666667039196, 7, levelRequirement = 56, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [17] = { 16.666667039196, 8, levelRequirement = 60, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [18] = { 16.666667039196, 8, levelRequirement = 64, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [19] = { 16.666667039196, 9, levelRequirement = 67, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [20] = { 16.666667039196, 9, levelRequirement = 70, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [21] = { 16.666667039196, 10, levelRequirement = 72, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [22] = { 16.666667039196, 10, levelRequirement = 74, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [23] = { 16.666667039196, 11, levelRequirement = 76, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [24] = { 16.666667039196, 11, levelRequirement = 78, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [25] = { 16.666667039196, 12, levelRequirement = 80, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [26] = { 16.666667039196, 12, levelRequirement = 82, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [27] = { 16.666667039196, 13, levelRequirement = 84, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [28] = { 16.666667039196, 13, levelRequirement = 86, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [29] = { 16.666667039196, 14, levelRequirement = 88, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [30] = { 16.666667039196, 14, levelRequirement = 90, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [31] = { 16.666667039196, 14, levelRequirement = 91, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [32] = { 16.666667039196, 15, levelRequirement = 92, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [33] = { 16.666667039196, 15, levelRequirement = 93, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [34] = { 16.666667039196, 15, levelRequirement = 94, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [35] = { 16.666667039196, 15, levelRequirement = 95, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [36] = { 16.666667039196, 16, levelRequirement = 96, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [37] = { 16.666667039196, 16, levelRequirement = 97, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [38] = { 16.666667039196, 16, levelRequirement = 98, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [39] = { 16.666667039196, 16, levelRequirement = 99, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, + [40] = { 16.666667039196, 17, levelRequirement = 100, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 1, }, cost = { Soul = 25, }, }, }, } skills["Bodyswap"] = { @@ -2284,7 +2282,7 @@ skills["Bodyswap"] = { description = "Violently destroys your body and recreates it at the location of a targeted enemy or corpse, dealing spell damage in an area at both locations. If there is no specific target, it will prioritise corpses over enemies. If targeting a corpse, the corpse will also explode, dealing damage around it that is not affected by modifiers to spell damage, and cannot be reflected. This spell cannot be repeated.", skillTypes = { [SkillType.Movement] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.AreaSpell] = true, [SkillType.Travel] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.7, + castTime = 0.65, parts = { { name = "Self Explosion", @@ -2329,11 +2327,11 @@ skills["Bodyswap"] = { skill("radius", 14), }, qualityStats = { - { "spell_base_fire_damage_%_maximum_life", 0.2 }, + { "spell_base_fire_damage_%_maximum_life", 0.3 }, }, constantStats = { - { "spell_base_fire_damage_%_maximum_life", 4 }, - { "corpse_warp_area_of_effect_+%_final_when_consuming_corpse", 200 }, + { "spell_base_fire_damage_%_maximum_life", 6 }, + { "corpse_warp_area_of_effect_+%_final_when_consuming_corpse", 300 }, }, stats = { "spell_minimum_base_fire_damage", @@ -2399,7 +2397,7 @@ skills["BodyswapAltX"] = { description = "Violently destroys your body and recreates it at the location of a targeted enemy or damageable minion, dealing spell damage in an area at both locations. If there is no specific target, it will prioritise minions over enemies. If targeting a minion, the minion will also be destroyed in an explosion which deals damage around it that is not affected by modifiers to spell damage, and cannot be reflected. This spell cannot be repeated.", skillTypes = { [SkillType.Movement] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.AreaSpell] = true, [SkillType.Travel] = true, [SkillType.Minion] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.7, + castTime = 0.65, parts = { { name = "Self Explosion", @@ -2455,7 +2453,7 @@ skills["BodyswapAltX"] = { { "skill_minion_explosion_life_%", 0.25 }, }, constantStats = { - { "corpse_warp_area_of_effect_+%_final_when_consuming_minion", 200 }, + { "corpse_warp_area_of_effect_+%_final_when_consuming_minion", 300 }, { "active_skill_ailment_damage_+%_final", -50 }, { "spell_base_fire_damage_%_maximum_life", 4 }, }, @@ -2817,9 +2815,9 @@ skills["ColdSnap"] = { baseEffectiveness = 2.1164000034332, incrementalEffectiveness = 0.052999999374151, description = "Creates a sudden burst of cold in a targeted area, damaging enemies. Also creates an expanding area which is filled with chilled ground, and deals cold damage over time to enemies. Enemies that die while in the area have a chance to grant Frenzy Charges. The cooldown can be bypassed by expending a Frenzy Charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.85, + castTime = 0.8, baseFlags = { spell = true, area = true, @@ -2842,6 +2840,7 @@ skills["ColdSnap"] = { { "active_skill_tertiary_area_of_effect_description_mode", 2 }, { "base_skill_effect_duration", 5000 }, { "chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%", 25 }, + { "base_chance_to_freeze_%", 25 }, }, stats = { "spell_minimum_base_cold_damage", @@ -2856,46 +2855,46 @@ skills["ColdSnap"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 40.166668994973, cooldown = 3, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 41.666667597989, cooldown = 3, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 42.999999689559, cooldown = 3, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 44.333335754772, cooldown = 3, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 45.833334357788, cooldown = 3, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 47.166666449358, cooldown = 3, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 48.500002514571, cooldown = 3, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 49.833334606141, cooldown = 3, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 51.000000186265, cooldown = 3, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 43, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 52.166669740031, cooldown = 3, critChance = 6, damageEffectiveness = 3, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 53.166668808709, cooldown = 3, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 49, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 54.333334388832, cooldown = 3, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 55.33333345751, cooldown = 3, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 56.33333649983, cooldown = 3, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 57.500002079954, cooldown = 3, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 58.666667660077, cooldown = 3, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 59.833333240201, cooldown = 3, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 61.000002793968, cooldown = 3, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 62.000001862645, cooldown = 3, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 63.166667442769, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 64.166666511446, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 65.166669553767, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 66.166668622444, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 67.000001179675, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 68.000000248353, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 68.833336779227, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 69.666665362815, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 70.500001893689, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 71.333338424564, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 72.000004470348, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 73.166666076829, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 74.166665145506, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 35, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 75.500005184362, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 35, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 76.50000425304, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 35, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 77.66666585952, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 36, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 78.666664928198, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 36, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 79.666671944161, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 36, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 80.666671012839, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 37, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 81.833332619319, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 37, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 82.833331687997, cooldown = 3, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 37, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 48.666669026017, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.2, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 50.500000651926, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 51.999999254942, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 53.666668343047, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 55.499999968956, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.6, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 57.000002545615, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.6, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 58.666667660077, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.7, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 60.33333277454, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.8, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 61.666668839753, cooldown = 3, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 43, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 63.166667442769, cooldown = 3, critChance = 7.5, damageEffectiveness = 3, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 64.333333022892, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.1, levelRequirement = 49, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 65.666669088105, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 67.000001179675, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 68.166670733442, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 69.500002825012, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 71.000005401671, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 72.333337493241, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 73.833332122614, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 75.000001676381, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 76.50000425304, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 77.66666585952, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 78.833335413287, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 80.000004967054, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 81.000004035731, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 82.333336127301, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 83.333335195979, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 84.333334264656, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 85.333333333333, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 86.333332402011, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 87.166668932885, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 88.500001024455, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 89.666670578222, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 35, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 91.333335692684, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 35, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 92.500005246451, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 35, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 93.999999875824, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 36, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 95.16666942959, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 36, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 96.333338983357, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 36, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 97.666671074927, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 37, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 99.000003166497, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 37, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 100.16667272026, cooldown = 3, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Mana = 37, }, }, }, } skills["ColdSnapAltX"] = { @@ -2905,7 +2904,7 @@ skills["ColdSnapAltX"] = { baseEffectiveness = 2.1164000034332, incrementalEffectiveness = 0.052999999374151, description = "Creates a sudden burst of cold in a targeted area, damaging enemies. The cooldown can be bypassed by expending a Power Charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -2920,7 +2919,8 @@ skills["ColdSnapAltX"] = { { "active_skill_area_of_effect_description_mode", 2 }, { "active_skill_secondary_area_of_effect_description_mode", 2 }, { "active_skill_tertiary_area_of_effect_description_mode", 2 }, - { "add_power_charge_on_critical_strike_%", 30 }, + { "base_chance_to_freeze_%", 25 }, + { "add_power_charge_on_critical_strike_%", 50 }, }, stats = { "spell_minimum_base_cold_damage", @@ -2982,9 +2982,9 @@ skills["VaalColdSnap"] = { baseEffectiveness = 2.9800000190735, incrementalEffectiveness = 0.049100000411272, description = "Creates a sudden burst of cold around you, damaging enemies. This also creates a chilling area around you which expands and deals cold damage over time to surrounding enemies in addition to chilling them. Enemies that die while in the area grant Frenzy Charges, and you will passively gain Frenzy Charges while there are enemies in the area.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Cold] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Cold] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.85, + castTime = 0.8, baseFlags = { spell = true, area = true, @@ -3024,46 +3024,46 @@ skills["VaalColdSnap"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 39.666669460634, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 16, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 41.833334109435, critChance = 6, damageEffectiveness = 3, levelRequirement = 20, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 44.166669243326, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 24, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 46.833333426466, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 28, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 48.666669026017, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 31, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 51.166666697711, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 34, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 53.000002297262, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 37, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 54.833333923171, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 40, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 57.166669057061, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 43, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 59.00000068297, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 46, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 61.33333581686, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 49, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 63.000000931323, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 52, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 65.00000304232, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 55, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 67.000001179675, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 58, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 68.333333271245, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 60, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 69.999998385707, critChance = 6, damageEffectiveness = 4, levelRequirement = 62, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 71.000005401671, critChance = 6, damageEffectiveness = 4, levelRequirement = 64, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 72.500000031044, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 66, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 73.833332122614, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 68, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 70, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 76.000000745058, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 72, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 76.999999813735, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 74, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 77.83333634461, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 76, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 78.99999795109, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 78, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 79.500001459072, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 80, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 80.666671012839, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 82, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 81.499999596427, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 84, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 82.499998665104, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 86, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 83.333335195979, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 88, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 84.166671726853, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 90, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 84.666667287548, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 91, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 85.000000310441, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 92, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 85.500003818423, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 93, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 85.999999379118, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 94, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 86.333332402011, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 95, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 86.833335909993, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 96, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 87.333331470688, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 97, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 87.666672440867, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 98, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 88.166668001562, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 99, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 88.500001024455, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 100, soulPreventionDuration = 6, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 49.166668560356, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 16, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 51.833332743496, critChance = 7.5, damageEffectiveness = 3, levelRequirement = 20, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 54.833333923171, critChance = 7.5, damageEffectiveness = 3.1, levelRequirement = 24, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 58.000001614293, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 28, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 60.33333277454, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 31, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 63.500000465661, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 34, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 65.666669088105, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 37, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 68.000000248353, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 40, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 70.833334916582, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 43, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 73.166666076829, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 46, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 76.000000745058, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 49, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 78.166669367502, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 52, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 80.666671012839, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 55, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 83.000002173086, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 58, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 84.666667287548, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 60, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 86.833335909993, critChance = 7.5, damageEffectiveness = 4, levelRequirement = 62, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 88.000005463759, critChance = 7.5, damageEffectiveness = 4, levelRequirement = 64, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 89.833333116025, critChance = 7.5, damageEffectiveness = 4.1, levelRequirement = 66, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 91.499998230487, critChance = 7.5, damageEffectiveness = 4.1, levelRequirement = 68, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 93.000000807146, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 70, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 94.166670360913, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 72, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 95.500002452483, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 74, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 96.50000152116, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 76, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 98.000004097819, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 78, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 98.499999658515, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 80, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 100.00000223517, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 82, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 101.00000130385, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 84, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 102.33333339542, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 86, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 103.3333324641, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 88, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 104.33333948006, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 90, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 105.00000552585, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 91, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 105.33333854874, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 92, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 106.00000459452, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 93, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 106.66667064031, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 94, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 107.0000036632, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 95, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 107.66666970899, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 96, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 108.33333575477, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 97, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 108.66666877766, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 98, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 109.33333482345, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 99, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 109.66666784634, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 100, soulPreventionDuration = 5, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, }, } skills["Conductivity"] = { @@ -3161,7 +3161,7 @@ skills["Contagion"] = { baseTypeName = "Contagion", color = 3, baseEffectiveness = 2.1600000858307, - incrementalEffectiveness = 0.041299998760223, + incrementalEffectiveness = 0.043999999761581, description = "Unleashes a vile contagion on enemies, dealing chaos damage over time. If an enemy dies while affected by Contagion, the debuff spreads to other enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -3179,63 +3179,63 @@ skills["Contagion"] = { }, constantStats = { { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 17 }, }, stats = { "base_chaos_damage_to_deal_per_minute", + "active_skill_base_area_of_effect_radius", "is_area_damage", "spell_damage_modifiers_apply_to_skill_dot", "contagion_display_spread_on_death", }, levels = { - [1] = { 16.666667039196, levelRequirement = 4, statInterpolation = { 3, }, cost = { Mana = 5, }, }, - [2] = { 16.666667039196, levelRequirement = 6, statInterpolation = { 3, }, cost = { Mana = 6, }, }, - [3] = { 16.666667039196, levelRequirement = 9, statInterpolation = { 3, }, cost = { Mana = 6, }, }, - [4] = { 16.666667039196, levelRequirement = 12, statInterpolation = { 3, }, cost = { Mana = 7, }, }, - [5] = { 16.666667039196, levelRequirement = 16, statInterpolation = { 3, }, cost = { Mana = 8, }, }, - [6] = { 16.666667039196, levelRequirement = 20, statInterpolation = { 3, }, cost = { Mana = 9, }, }, - [7] = { 16.666667039196, levelRequirement = 24, statInterpolation = { 3, }, cost = { Mana = 10, }, }, - [8] = { 16.666667039196, levelRequirement = 28, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [9] = { 16.666667039196, levelRequirement = 32, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [10] = { 16.666667039196, levelRequirement = 36, statInterpolation = { 3, }, cost = { Mana = 12, }, }, - [11] = { 16.666667039196, levelRequirement = 40, statInterpolation = { 3, }, cost = { Mana = 13, }, }, - [12] = { 16.666667039196, levelRequirement = 44, statInterpolation = { 3, }, cost = { Mana = 14, }, }, - [13] = { 16.666667039196, levelRequirement = 48, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [14] = { 16.666667039196, levelRequirement = 52, statInterpolation = { 3, }, cost = { Mana = 16, }, }, - [15] = { 16.666667039196, levelRequirement = 55, statInterpolation = { 3, }, cost = { Mana = 16, }, }, - [16] = { 16.666667039196, levelRequirement = 58, statInterpolation = { 3, }, cost = { Mana = 17, }, }, - [17] = { 16.666667039196, levelRequirement = 61, statInterpolation = { 3, }, cost = { Mana = 18, }, }, - [18] = { 16.666667039196, levelRequirement = 64, statInterpolation = { 3, }, cost = { Mana = 18, }, }, - [19] = { 16.666667039196, levelRequirement = 67, statInterpolation = { 3, }, cost = { Mana = 19, }, }, - [20] = { 16.666667039196, levelRequirement = 70, statInterpolation = { 3, }, cost = { Mana = 20, }, }, - [21] = { 16.666667039196, levelRequirement = 72, statInterpolation = { 3, }, cost = { Mana = 20, }, }, - [22] = { 16.666667039196, levelRequirement = 74, statInterpolation = { 3, }, cost = { Mana = 21, }, }, - [23] = { 16.666667039196, levelRequirement = 76, statInterpolation = { 3, }, cost = { Mana = 21, }, }, - [24] = { 16.666667039196, levelRequirement = 78, statInterpolation = { 3, }, cost = { Mana = 21, }, }, - [25] = { 16.666667039196, levelRequirement = 80, statInterpolation = { 3, }, cost = { Mana = 22, }, }, - [26] = { 16.666667039196, levelRequirement = 82, statInterpolation = { 3, }, cost = { Mana = 22, }, }, - [27] = { 16.666667039196, levelRequirement = 84, statInterpolation = { 3, }, cost = { Mana = 23, }, }, - [28] = { 16.666667039196, levelRequirement = 86, statInterpolation = { 3, }, cost = { Mana = 23, }, }, - [29] = { 16.666667039196, levelRequirement = 88, statInterpolation = { 3, }, cost = { Mana = 24, }, }, - [30] = { 16.666667039196, levelRequirement = 90, statInterpolation = { 3, }, cost = { Mana = 24, }, }, - [31] = { 16.666667039196, levelRequirement = 91, statInterpolation = { 3, }, cost = { Mana = 24, }, }, - [32] = { 16.666667039196, levelRequirement = 92, statInterpolation = { 3, }, cost = { Mana = 25, }, }, - [33] = { 16.666667039196, levelRequirement = 93, statInterpolation = { 3, }, cost = { Mana = 25, }, }, - [34] = { 16.666667039196, levelRequirement = 94, statInterpolation = { 3, }, cost = { Mana = 25, }, }, - [35] = { 16.666667039196, levelRequirement = 95, statInterpolation = { 3, }, cost = { Mana = 25, }, }, - [36] = { 16.666667039196, levelRequirement = 96, statInterpolation = { 3, }, cost = { Mana = 25, }, }, - [37] = { 16.666667039196, levelRequirement = 97, statInterpolation = { 3, }, cost = { Mana = 26, }, }, - [38] = { 16.666667039196, levelRequirement = 98, statInterpolation = { 3, }, cost = { Mana = 26, }, }, - [39] = { 16.666667039196, levelRequirement = 99, statInterpolation = { 3, }, cost = { Mana = 26, }, }, - [40] = { 16.666667039196, levelRequirement = 100, statInterpolation = { 3, }, cost = { Mana = 26, }, }, + [1] = { 16.666667039196, 17, levelRequirement = 4, statInterpolation = { 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 16.666667039196, 17, levelRequirement = 6, statInterpolation = { 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 16.666667039196, 17, levelRequirement = 9, statInterpolation = { 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 16.666667039196, 18, levelRequirement = 12, statInterpolation = { 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 16.666667039196, 18, levelRequirement = 16, statInterpolation = { 3, 1, }, cost = { Mana = 8, }, }, + [6] = { 16.666667039196, 18, levelRequirement = 20, statInterpolation = { 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 16.666667039196, 18, levelRequirement = 24, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 16.666667039196, 18, levelRequirement = 28, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [9] = { 16.666667039196, 19, levelRequirement = 32, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 16.666667039196, 19, levelRequirement = 36, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, + [11] = { 16.666667039196, 19, levelRequirement = 40, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [12] = { 16.666667039196, 19, levelRequirement = 44, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [13] = { 16.666667039196, 20, levelRequirement = 48, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [14] = { 16.666667039196, 20, levelRequirement = 52, statInterpolation = { 3, 1, }, cost = { Mana = 16, }, }, + [15] = { 16.666667039196, 20, levelRequirement = 55, statInterpolation = { 3, 1, }, cost = { Mana = 16, }, }, + [16] = { 16.666667039196, 20, levelRequirement = 58, statInterpolation = { 3, 1, }, cost = { Mana = 17, }, }, + [17] = { 16.666667039196, 20, levelRequirement = 61, statInterpolation = { 3, 1, }, cost = { Mana = 18, }, }, + [18] = { 16.666667039196, 21, levelRequirement = 64, statInterpolation = { 3, 1, }, cost = { Mana = 18, }, }, + [19] = { 16.666667039196, 21, levelRequirement = 67, statInterpolation = { 3, 1, }, cost = { Mana = 19, }, }, + [20] = { 16.666667039196, 21, levelRequirement = 70, statInterpolation = { 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 16.666667039196, 21, levelRequirement = 72, statInterpolation = { 3, 1, }, cost = { Mana = 20, }, }, + [22] = { 16.666667039196, 21, levelRequirement = 74, statInterpolation = { 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 16.666667039196, 22, levelRequirement = 76, statInterpolation = { 3, 1, }, cost = { Mana = 21, }, }, + [24] = { 16.666667039196, 22, levelRequirement = 78, statInterpolation = { 3, 1, }, cost = { Mana = 21, }, }, + [25] = { 16.666667039196, 22, levelRequirement = 80, statInterpolation = { 3, 1, }, cost = { Mana = 22, }, }, + [26] = { 16.666667039196, 22, levelRequirement = 82, statInterpolation = { 3, 1, }, cost = { Mana = 22, }, }, + [27] = { 16.666667039196, 22, levelRequirement = 84, statInterpolation = { 3, 1, }, cost = { Mana = 23, }, }, + [28] = { 16.666667039196, 23, levelRequirement = 86, statInterpolation = { 3, 1, }, cost = { Mana = 23, }, }, + [29] = { 16.666667039196, 23, levelRequirement = 88, statInterpolation = { 3, 1, }, cost = { Mana = 24, }, }, + [30] = { 16.666667039196, 23, levelRequirement = 90, statInterpolation = { 3, 1, }, cost = { Mana = 24, }, }, + [31] = { 16.666667039196, 23, levelRequirement = 91, statInterpolation = { 3, 1, }, cost = { Mana = 24, }, }, + [32] = { 16.666667039196, 23, levelRequirement = 92, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 16.666667039196, 23, levelRequirement = 93, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, + [34] = { 16.666667039196, 24, levelRequirement = 94, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, + [35] = { 16.666667039196, 24, levelRequirement = 95, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, + [36] = { 16.666667039196, 24, levelRequirement = 96, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, + [37] = { 16.666667039196, 24, levelRequirement = 97, statInterpolation = { 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 16.666667039196, 24, levelRequirement = 98, statInterpolation = { 3, 1, }, cost = { Mana = 26, }, }, + [39] = { 16.666667039196, 24, levelRequirement = 99, statInterpolation = { 3, 1, }, cost = { Mana = 26, }, }, + [40] = { 16.666667039196, 24, levelRequirement = 100, statInterpolation = { 3, 1, }, cost = { Mana = 26, }, }, }, } skills["ContagionAltX"] = { name = "Contagion of Subsiding", baseTypeName = "Contagion of Subsiding", color = 3, - baseEffectiveness = 6.2800002098083, - incrementalEffectiveness = 0.050799999386072, + baseEffectiveness = 7.4000000953674, + incrementalEffectiveness = 0.052499998360872, description = "Unleashes a vile contagion on enemies, dealing chaos damage over time. If an enemy dies while affected by Contagion, the debuff spreads to other enemies, but each time it spreads, it only deals three quarters as much damage as before.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -3253,63 +3253,63 @@ skills["ContagionAltX"] = { }, constantStats = { { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 17 }, }, stats = { "base_chaos_damage_to_deal_per_minute", + "active_skill_base_area_of_effect_radius", "is_area_damage", "spell_damage_modifiers_apply_to_skill_dot", "contagion_display_spread_on_death", }, levels = { - [1] = { 16.666667039196, levelRequirement = 4, statInterpolation = { 3, }, cost = { Mana = 7, }, }, - [2] = { 16.666667039196, levelRequirement = 6, statInterpolation = { 3, }, cost = { Mana = 8, }, }, - [3] = { 16.666667039196, levelRequirement = 9, statInterpolation = { 3, }, cost = { Mana = 9, }, }, - [4] = { 16.666667039196, levelRequirement = 12, statInterpolation = { 3, }, cost = { Mana = 10, }, }, - [5] = { 16.666667039196, levelRequirement = 16, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [6] = { 16.666667039196, levelRequirement = 20, statInterpolation = { 3, }, cost = { Mana = 12, }, }, - [7] = { 16.666667039196, levelRequirement = 24, statInterpolation = { 3, }, cost = { Mana = 13, }, }, - [8] = { 16.666667039196, levelRequirement = 28, statInterpolation = { 3, }, cost = { Mana = 14, }, }, - [9] = { 16.666667039196, levelRequirement = 32, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [10] = { 16.666667039196, levelRequirement = 36, statInterpolation = { 3, }, cost = { Mana = 16, }, }, - [11] = { 16.666667039196, levelRequirement = 40, statInterpolation = { 3, }, cost = { Mana = 18, }, }, - [12] = { 16.666667039196, levelRequirement = 44, statInterpolation = { 3, }, cost = { Mana = 19, }, }, - [13] = { 16.666667039196, levelRequirement = 48, statInterpolation = { 3, }, cost = { Mana = 20, }, }, - [14] = { 16.666667039196, levelRequirement = 52, statInterpolation = { 3, }, cost = { Mana = 21, }, }, - [15] = { 16.666667039196, levelRequirement = 55, statInterpolation = { 3, }, cost = { Mana = 22, }, }, - [16] = { 16.666667039196, levelRequirement = 58, statInterpolation = { 3, }, cost = { Mana = 23, }, }, - [17] = { 16.666667039196, levelRequirement = 61, statInterpolation = { 3, }, cost = { Mana = 24, }, }, - [18] = { 16.666667039196, levelRequirement = 64, statInterpolation = { 3, }, cost = { Mana = 25, }, }, - [19] = { 16.666667039196, levelRequirement = 67, statInterpolation = { 3, }, cost = { Mana = 26, }, }, - [20] = { 16.666667039196, levelRequirement = 70, statInterpolation = { 3, }, cost = { Mana = 27, }, }, - [21] = { 16.666667039196, levelRequirement = 72, statInterpolation = { 3, }, cost = { Mana = 28, }, }, - [22] = { 16.666667039196, levelRequirement = 74, statInterpolation = { 3, }, cost = { Mana = 29, }, }, - [23] = { 16.666667039196, levelRequirement = 76, statInterpolation = { 3, }, cost = { Mana = 30, }, }, - [24] = { 16.666667039196, levelRequirement = 78, statInterpolation = { 3, }, cost = { Mana = 31, }, }, - [25] = { 16.666667039196, levelRequirement = 80, statInterpolation = { 3, }, cost = { Mana = 32, }, }, - [26] = { 16.666667039196, levelRequirement = 82, statInterpolation = { 3, }, cost = { Mana = 33, }, }, - [27] = { 16.666667039196, levelRequirement = 84, statInterpolation = { 3, }, cost = { Mana = 34, }, }, - [28] = { 16.666667039196, levelRequirement = 86, statInterpolation = { 3, }, cost = { Mana = 35, }, }, - [29] = { 16.666667039196, levelRequirement = 88, statInterpolation = { 3, }, cost = { Mana = 36, }, }, - [30] = { 16.666667039196, levelRequirement = 90, statInterpolation = { 3, }, cost = { Mana = 38, }, }, - [31] = { 16.666667039196, levelRequirement = 91, statInterpolation = { 3, }, cost = { Mana = 38, }, }, - [32] = { 16.666667039196, levelRequirement = 92, statInterpolation = { 3, }, cost = { Mana = 39, }, }, - [33] = { 16.666667039196, levelRequirement = 93, statInterpolation = { 3, }, cost = { Mana = 39, }, }, - [34] = { 16.666667039196, levelRequirement = 94, statInterpolation = { 3, }, cost = { Mana = 40, }, }, - [35] = { 16.666667039196, levelRequirement = 95, statInterpolation = { 3, }, cost = { Mana = 40, }, }, - [36] = { 16.666667039196, levelRequirement = 96, statInterpolation = { 3, }, cost = { Mana = 41, }, }, - [37] = { 16.666667039196, levelRequirement = 97, statInterpolation = { 3, }, cost = { Mana = 41, }, }, - [38] = { 16.666667039196, levelRequirement = 98, statInterpolation = { 3, }, cost = { Mana = 42, }, }, - [39] = { 16.666667039196, levelRequirement = 99, statInterpolation = { 3, }, cost = { Mana = 42, }, }, - [40] = { 16.666667039196, levelRequirement = 100, statInterpolation = { 3, }, cost = { Mana = 43, }, }, + [1] = { 16.666667039196, 17, levelRequirement = 4, statInterpolation = { 3, 1, }, cost = { Mana = 7, }, }, + [2] = { 16.666667039196, 17, levelRequirement = 6, statInterpolation = { 3, 1, }, cost = { Mana = 8, }, }, + [3] = { 16.666667039196, 17, levelRequirement = 9, statInterpolation = { 3, 1, }, cost = { Mana = 9, }, }, + [4] = { 16.666667039196, 18, levelRequirement = 12, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, + [5] = { 16.666667039196, 18, levelRequirement = 16, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [6] = { 16.666667039196, 18, levelRequirement = 20, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, + [7] = { 16.666667039196, 18, levelRequirement = 24, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [8] = { 16.666667039196, 18, levelRequirement = 28, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [9] = { 16.666667039196, 19, levelRequirement = 32, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [10] = { 16.666667039196, 19, levelRequirement = 36, statInterpolation = { 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 16.666667039196, 19, levelRequirement = 40, statInterpolation = { 3, 1, }, cost = { Mana = 18, }, }, + [12] = { 16.666667039196, 19, levelRequirement = 44, statInterpolation = { 3, 1, }, cost = { Mana = 19, }, }, + [13] = { 16.666667039196, 20, levelRequirement = 48, statInterpolation = { 3, 1, }, cost = { Mana = 20, }, }, + [14] = { 16.666667039196, 20, levelRequirement = 52, statInterpolation = { 3, 1, }, cost = { Mana = 21, }, }, + [15] = { 16.666667039196, 20, levelRequirement = 55, statInterpolation = { 3, 1, }, cost = { Mana = 22, }, }, + [16] = { 16.666667039196, 20, levelRequirement = 58, statInterpolation = { 3, 1, }, cost = { Mana = 23, }, }, + [17] = { 16.666667039196, 20, levelRequirement = 61, statInterpolation = { 3, 1, }, cost = { Mana = 24, }, }, + [18] = { 16.666667039196, 21, levelRequirement = 64, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 16.666667039196, 21, levelRequirement = 67, statInterpolation = { 3, 1, }, cost = { Mana = 26, }, }, + [20] = { 16.666667039196, 21, levelRequirement = 70, statInterpolation = { 3, 1, }, cost = { Mana = 27, }, }, + [21] = { 16.666667039196, 21, levelRequirement = 72, statInterpolation = { 3, 1, }, cost = { Mana = 28, }, }, + [22] = { 16.666667039196, 21, levelRequirement = 74, statInterpolation = { 3, 1, }, cost = { Mana = 29, }, }, + [23] = { 16.666667039196, 22, levelRequirement = 76, statInterpolation = { 3, 1, }, cost = { Mana = 30, }, }, + [24] = { 16.666667039196, 22, levelRequirement = 78, statInterpolation = { 3, 1, }, cost = { Mana = 31, }, }, + [25] = { 16.666667039196, 22, levelRequirement = 80, statInterpolation = { 3, 1, }, cost = { Mana = 32, }, }, + [26] = { 16.666667039196, 22, levelRequirement = 82, statInterpolation = { 3, 1, }, cost = { Mana = 33, }, }, + [27] = { 16.666667039196, 22, levelRequirement = 84, statInterpolation = { 3, 1, }, cost = { Mana = 34, }, }, + [28] = { 16.666667039196, 23, levelRequirement = 86, statInterpolation = { 3, 1, }, cost = { Mana = 35, }, }, + [29] = { 16.666667039196, 23, levelRequirement = 88, statInterpolation = { 3, 1, }, cost = { Mana = 36, }, }, + [30] = { 16.666667039196, 23, levelRequirement = 90, statInterpolation = { 3, 1, }, cost = { Mana = 38, }, }, + [31] = { 16.666667039196, 23, levelRequirement = 91, statInterpolation = { 3, 1, }, cost = { Mana = 38, }, }, + [32] = { 16.666667039196, 23, levelRequirement = 92, statInterpolation = { 3, 1, }, cost = { Mana = 39, }, }, + [33] = { 16.666667039196, 23, levelRequirement = 93, statInterpolation = { 3, 1, }, cost = { Mana = 39, }, }, + [34] = { 16.666667039196, 24, levelRequirement = 94, statInterpolation = { 3, 1, }, cost = { Mana = 40, }, }, + [35] = { 16.666667039196, 24, levelRequirement = 95, statInterpolation = { 3, 1, }, cost = { Mana = 40, }, }, + [36] = { 16.666667039196, 24, levelRequirement = 96, statInterpolation = { 3, 1, }, cost = { Mana = 41, }, }, + [37] = { 16.666667039196, 24, levelRequirement = 97, statInterpolation = { 3, 1, }, cost = { Mana = 41, }, }, + [38] = { 16.666667039196, 24, levelRequirement = 98, statInterpolation = { 3, 1, }, cost = { Mana = 42, }, }, + [39] = { 16.666667039196, 24, levelRequirement = 99, statInterpolation = { 3, 1, }, cost = { Mana = 42, }, }, + [40] = { 16.666667039196, 24, levelRequirement = 100, statInterpolation = { 3, 1, }, cost = { Mana = 43, }, }, }, } skills["ContagionAltY"] = { name = "Contagion of Transference", baseTypeName = "Contagion of Transference", color = 3, - baseEffectiveness = 3.3699998855591, - incrementalEffectiveness = 0.050799999386072, + baseEffectiveness = 4.0999999046326, + incrementalEffectiveness = 0.052499998360872, description = "Unleashes a vile contagion on enemies, dealing chaos damage over time. If an enemy is hit while affected by Contagion, the debuff spreads to other enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -3327,55 +3327,56 @@ skills["ContagionAltY"] = { }, constantStats = { { "base_skill_effect_duration", 5000 }, - { "active_skill_base_area_of_effect_radius", 20 }, + { "active_skill_base_area_of_effect_radius", 3 }, { "contagion_spread_on_hit_affected_enemy_%", 100 }, }, stats = { "base_chaos_damage_to_deal_per_minute", + "active_skill_base_area_of_effect_radius", "is_area_damage", "spell_damage_modifiers_apply_to_skill_dot", }, levels = { - [1] = { 16.666667039196, levelRequirement = 4, statInterpolation = { 3, }, cost = { Mana = 9, }, }, - [2] = { 16.666667039196, levelRequirement = 6, statInterpolation = { 3, }, cost = { Mana = 10, }, }, - [3] = { 16.666667039196, levelRequirement = 9, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [4] = { 16.666667039196, levelRequirement = 12, statInterpolation = { 3, }, cost = { Mana = 13, }, }, - [5] = { 16.666667039196, levelRequirement = 16, statInterpolation = { 3, }, cost = { Mana = 14, }, }, - [6] = { 16.666667039196, levelRequirement = 20, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [7] = { 16.666667039196, levelRequirement = 24, statInterpolation = { 3, }, cost = { Mana = 16, }, }, - [8] = { 16.666667039196, levelRequirement = 28, statInterpolation = { 3, }, cost = { Mana = 17, }, }, - [9] = { 16.666667039196, levelRequirement = 32, statInterpolation = { 3, }, cost = { Mana = 19, }, }, - [10] = { 16.666667039196, levelRequirement = 36, statInterpolation = { 3, }, cost = { Mana = 20, }, }, - [11] = { 16.666667039196, levelRequirement = 40, statInterpolation = { 3, }, cost = { Mana = 21, }, }, - [12] = { 16.666667039196, levelRequirement = 44, statInterpolation = { 3, }, cost = { Mana = 22, }, }, - [13] = { 16.666667039196, levelRequirement = 48, statInterpolation = { 3, }, cost = { Mana = 24, }, }, - [14] = { 16.666667039196, levelRequirement = 52, statInterpolation = { 3, }, cost = { Mana = 25, }, }, - [15] = { 16.666667039196, levelRequirement = 55, statInterpolation = { 3, }, cost = { Mana = 26, }, }, - [16] = { 16.666667039196, levelRequirement = 58, statInterpolation = { 3, }, cost = { Mana = 27, }, }, - [17] = { 16.666667039196, levelRequirement = 61, statInterpolation = { 3, }, cost = { Mana = 28, }, }, - [18] = { 16.666667039196, levelRequirement = 64, statInterpolation = { 3, }, cost = { Mana = 30, }, }, - [19] = { 16.666667039196, levelRequirement = 67, statInterpolation = { 3, }, cost = { Mana = 31, }, }, - [20] = { 16.666667039196, levelRequirement = 70, statInterpolation = { 3, }, cost = { Mana = 32, }, }, - [21] = { 16.666667039196, levelRequirement = 72, statInterpolation = { 3, }, cost = { Mana = 33, }, }, - [22] = { 16.666667039196, levelRequirement = 74, statInterpolation = { 3, }, cost = { Mana = 34, }, }, - [23] = { 16.666667039196, levelRequirement = 76, statInterpolation = { 3, }, cost = { Mana = 36, }, }, - [24] = { 16.666667039196, levelRequirement = 78, statInterpolation = { 3, }, cost = { Mana = 37, }, }, - [25] = { 16.666667039196, levelRequirement = 80, statInterpolation = { 3, }, cost = { Mana = 38, }, }, - [26] = { 16.666667039196, levelRequirement = 82, statInterpolation = { 3, }, cost = { Mana = 39, }, }, - [27] = { 16.666667039196, levelRequirement = 84, statInterpolation = { 3, }, cost = { Mana = 40, }, }, - [28] = { 16.666667039196, levelRequirement = 86, statInterpolation = { 3, }, cost = { Mana = 42, }, }, - [29] = { 16.666667039196, levelRequirement = 88, statInterpolation = { 3, }, cost = { Mana = 43, }, }, - [30] = { 16.666667039196, levelRequirement = 90, statInterpolation = { 3, }, cost = { Mana = 44, }, }, - [31] = { 16.666667039196, levelRequirement = 91, statInterpolation = { 3, }, cost = { Mana = 45, }, }, - [32] = { 16.666667039196, levelRequirement = 92, statInterpolation = { 3, }, cost = { Mana = 45, }, }, - [33] = { 16.666667039196, levelRequirement = 93, statInterpolation = { 3, }, cost = { Mana = 46, }, }, - [34] = { 16.666667039196, levelRequirement = 94, statInterpolation = { 3, }, cost = { Mana = 47, }, }, - [35] = { 16.666667039196, levelRequirement = 95, statInterpolation = { 3, }, cost = { Mana = 47, }, }, - [36] = { 16.666667039196, levelRequirement = 96, statInterpolation = { 3, }, cost = { Mana = 48, }, }, - [37] = { 16.666667039196, levelRequirement = 97, statInterpolation = { 3, }, cost = { Mana = 48, }, }, - [38] = { 16.666667039196, levelRequirement = 98, statInterpolation = { 3, }, cost = { Mana = 49, }, }, - [39] = { 16.666667039196, levelRequirement = 99, statInterpolation = { 3, }, cost = { Mana = 50, }, }, - [40] = { 16.666667039196, levelRequirement = 100, statInterpolation = { 3, }, cost = { Mana = 50, }, }, + [1] = { 16.666667039196, 17, levelRequirement = 4, statInterpolation = { 3, 1, }, cost = { Mana = 9, }, }, + [2] = { 16.666667039196, 17, levelRequirement = 6, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, + [3] = { 16.666667039196, 17, levelRequirement = 9, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [4] = { 16.666667039196, 18, levelRequirement = 12, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [5] = { 16.666667039196, 18, levelRequirement = 16, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [6] = { 16.666667039196, 18, levelRequirement = 20, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [7] = { 16.666667039196, 18, levelRequirement = 24, statInterpolation = { 3, 1, }, cost = { Mana = 16, }, }, + [8] = { 16.666667039196, 18, levelRequirement = 28, statInterpolation = { 3, 1, }, cost = { Mana = 17, }, }, + [9] = { 16.666667039196, 19, levelRequirement = 32, statInterpolation = { 3, 1, }, cost = { Mana = 19, }, }, + [10] = { 16.666667039196, 19, levelRequirement = 36, statInterpolation = { 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 16.666667039196, 19, levelRequirement = 40, statInterpolation = { 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 16.666667039196, 19, levelRequirement = 44, statInterpolation = { 3, 1, }, cost = { Mana = 22, }, }, + [13] = { 16.666667039196, 20, levelRequirement = 48, statInterpolation = { 3, 1, }, cost = { Mana = 24, }, }, + [14] = { 16.666667039196, 20, levelRequirement = 52, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, + [15] = { 16.666667039196, 20, levelRequirement = 55, statInterpolation = { 3, 1, }, cost = { Mana = 26, }, }, + [16] = { 16.666667039196, 20, levelRequirement = 58, statInterpolation = { 3, 1, }, cost = { Mana = 27, }, }, + [17] = { 16.666667039196, 20, levelRequirement = 61, statInterpolation = { 3, 1, }, cost = { Mana = 28, }, }, + [18] = { 16.666667039196, 21, levelRequirement = 64, statInterpolation = { 3, 1, }, cost = { Mana = 30, }, }, + [19] = { 16.666667039196, 21, levelRequirement = 67, statInterpolation = { 3, 1, }, cost = { Mana = 31, }, }, + [20] = { 16.666667039196, 21, levelRequirement = 70, statInterpolation = { 3, 1, }, cost = { Mana = 32, }, }, + [21] = { 16.666667039196, 21, levelRequirement = 72, statInterpolation = { 3, 1, }, cost = { Mana = 33, }, }, + [22] = { 16.666667039196, 21, levelRequirement = 74, statInterpolation = { 3, 1, }, cost = { Mana = 34, }, }, + [23] = { 16.666667039196, 22, levelRequirement = 76, statInterpolation = { 3, 1, }, cost = { Mana = 36, }, }, + [24] = { 16.666667039196, 22, levelRequirement = 78, statInterpolation = { 3, 1, }, cost = { Mana = 37, }, }, + [25] = { 16.666667039196, 22, levelRequirement = 80, statInterpolation = { 3, 1, }, cost = { Mana = 38, }, }, + [26] = { 16.666667039196, 22, levelRequirement = 82, statInterpolation = { 3, 1, }, cost = { Mana = 39, }, }, + [27] = { 16.666667039196, 22, levelRequirement = 84, statInterpolation = { 3, 1, }, cost = { Mana = 40, }, }, + [28] = { 16.666667039196, 23, levelRequirement = 86, statInterpolation = { 3, 1, }, cost = { Mana = 42, }, }, + [29] = { 16.666667039196, 23, levelRequirement = 88, statInterpolation = { 3, 1, }, cost = { Mana = 43, }, }, + [30] = { 16.666667039196, 23, levelRequirement = 90, statInterpolation = { 3, 1, }, cost = { Mana = 44, }, }, + [31] = { 16.666667039196, 23, levelRequirement = 91, statInterpolation = { 3, 1, }, cost = { Mana = 45, }, }, + [32] = { 16.666667039196, 23, levelRequirement = 92, statInterpolation = { 3, 1, }, cost = { Mana = 45, }, }, + [33] = { 16.666667039196, 23, levelRequirement = 93, statInterpolation = { 3, 1, }, cost = { Mana = 46, }, }, + [34] = { 16.666667039196, 24, levelRequirement = 94, statInterpolation = { 3, 1, }, cost = { Mana = 47, }, }, + [35] = { 16.666667039196, 24, levelRequirement = 95, statInterpolation = { 3, 1, }, cost = { Mana = 47, }, }, + [36] = { 16.666667039196, 24, levelRequirement = 96, statInterpolation = { 3, 1, }, cost = { Mana = 48, }, }, + [37] = { 16.666667039196, 24, levelRequirement = 97, statInterpolation = { 3, 1, }, cost = { Mana = 48, }, }, + [38] = { 16.666667039196, 24, levelRequirement = 98, statInterpolation = { 3, 1, }, cost = { Mana = 49, }, }, + [39] = { 16.666667039196, 24, levelRequirement = 99, statInterpolation = { 3, 1, }, cost = { Mana = 50, }, }, + [40] = { 16.666667039196, 24, levelRequirement = 100, statInterpolation = { 3, 1, }, cost = { Mana = 50, }, }, }, } skills["ConversionTrap"] = { @@ -3456,11 +3457,11 @@ skills["CracklingLance"] = { baseTypeName = "Crackling Lance", color = 3, baseEffectiveness = 1.1079000234604, - incrementalEffectiveness = 0.049899999052286, + incrementalEffectiveness = 0.052000001072884, description = "Release a beam which deals lightning damage to enemies in a long area in front of you, and has several smaller beams branch off from it at an angle, hitting more enemies to the sides.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.GainsIntensity] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.65, + castTime = 0.5, statMap = { ["disintegrate_damage_+%_final_per_intensity"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "Intensity", limitVar = "IntensityLimit" }), @@ -3499,46 +3500,46 @@ skills["CracklingLance"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [2] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [3] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [4] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [5] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [6] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [7] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [8] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [9] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [10] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [11] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [12] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [13] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [14] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [15] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [16] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [17] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [18] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [19] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [20] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [21] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [22] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [23] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [24] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [25] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [26] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [27] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [28] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [29] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [30] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [31] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [32] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [33] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [34] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [35] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [36] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [37] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [38] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [39] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [40] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.65, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [2] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [3] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [4] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [5] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [6] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [7] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [8] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [9] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [10] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [11] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [12] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [13] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [14] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [15] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [16] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [17] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [18] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [19] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [20] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [21] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [22] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [23] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [24] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [25] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [26] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [27] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [28] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [29] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [30] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [31] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [32] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [33] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [34] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [35] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [36] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [37] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [38] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [39] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [40] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, }, } skills["CracklingLanceAltX"] = { @@ -3546,11 +3547,11 @@ skills["CracklingLanceAltX"] = { baseTypeName = "Crackling Lance of Branching", color = 3, baseEffectiveness = 2.1875, - incrementalEffectiveness = 0.049899999052286, + incrementalEffectiveness = 0.052000001072884, description = "Release a beam which deals lightning damage to enemies in a long area in front of you, and has several smaller beams branch off from it at an angle, hitting more enemies to the sides.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.75, + castTime = 0.6, baseFlags = { spell = true, area = true, @@ -3574,46 +3575,46 @@ skills["CracklingLanceAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [4] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [12] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [14] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [2] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [3] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [4] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [5] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [6] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [7] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [8] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [9] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [10] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [11] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [12] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [13] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [14] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [15] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [16] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [17] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [18] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [19] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [20] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [21] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [22] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [23] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [24] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [25] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [26] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [27] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [28] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [29] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [30] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [31] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [32] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [33] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [34] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [35] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [36] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, + [37] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, + [38] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, + [39] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 41, }, }, + [40] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 41, }, }, }, } skills["CracklingLanceAltY"] = { @@ -3621,11 +3622,11 @@ skills["CracklingLanceAltY"] = { baseTypeName = "Crackling Lance of Disintegration", color = 3, baseEffectiveness = 2.2190999984741, - incrementalEffectiveness = 0.052000001072884, + incrementalEffectiveness = 0.052999999374151, description = "Release a concentrated beam which deals lightning damage to enemies in a long area in front of you.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.75, + castTime = 0.6, baseFlags = { spell = true, area = true, @@ -3650,56 +3651,56 @@ skills["CracklingLanceAltY"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [4] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [12] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [14] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [2] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [3] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [4] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [5] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [6] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [7] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [8] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [9] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [10] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [11] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [12] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [13] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [14] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [15] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [16] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [17] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [18] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [19] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [20] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [21] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [22] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [23] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [24] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [25] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [26] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [27] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [28] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [29] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [30] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [31] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [32] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [33] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [34] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [35] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [36] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, + [37] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, + [38] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, + [39] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 41, }, }, + [40] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 4, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 41, }, }, }, } skills["CreepingFrost"] = { name = "Creeping Frost", baseTypeName = "Creeping Frost", color = 3, - baseEffectiveness = 1.1953999996185, + baseEffectiveness = 0.75, incrementalEffectiveness = 0.047100000083447, description = "Fire an icy projectile that bursts on impact or when reaching the targeted area, dealing area damage and creating a chilling area that deals cold damage over time. This area will creep across the ground towards nearby enemies until its duration expires.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.ChillingArea] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.ChillingArea] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -3722,12 +3723,12 @@ skills["CreepingFrost"] = { { "active_skill_projectile_speed_+%_variation_final", 60 }, { "base_skill_effect_duration", 5000 }, { "active_skill_base_area_of_effect_radius", 15 }, - { "active_skill_base_secondary_area_of_effect_radius", 18 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", "base_cold_damage_to_deal_per_minute", + "active_skill_base_secondary_area_of_effect_radius", "spell_damage_modifiers_apply_to_skill_dot", "base_is_projectile", }, @@ -3736,56 +3737,56 @@ skills["CreepingFrost"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.68999999761581, 1.0299999713898, 70.833334916582, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 12, statInterpolation = { 3, 3, 3, }, cost = { Mana = 7, }, }, - [2] = { 0.68999999761581, 1.0299999713898, 76.166671230147, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 15, statInterpolation = { 3, 3, 3, }, cost = { Mana = 8, }, }, - [3] = { 0.68999999761581, 1.0299999713898, 81.333337058624, critChance = 6, levelRequirement = 19, statInterpolation = { 3, 3, 3, }, cost = { Mana = 9, }, }, - [4] = { 0.68999999761581, 1.0299999713898, 86.666665424903, critChance = 6, levelRequirement = 23, statInterpolation = { 3, 3, 3, }, cost = { Mana = 9, }, }, - [5] = { 0.68999999761581, 1.0299999713898, 91.666668715576, critChance = 6, levelRequirement = 27, statInterpolation = { 3, 3, 3, }, cost = { Mana = 10, }, }, - [6] = { 0.68999999761581, 1.0299999713898, 96.66667200625, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, - [7] = { 0.68999999761581, 1.0299999713898, 101.83333783473, critChance = 6, levelRequirement = 35, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, - [8] = { 0.68999999761581, 1.0299999713898, 106.83333317811, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 38, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, - [9] = { 0.68999999761581, 1.0299999713898, 111.6666659837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 41, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, - [10] = { 0.68999999761581, 1.0299999713898, 116.49999878928, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, - [11] = { 0.68999999761581, 1.0299999713898, 121.50000207995, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 47, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, - [12] = { 0.68999999761581, 1.0299999713898, 126.00000186265, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, - [13] = { 0.68999999761581, 1.0299999713898, 130.66667213043, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 53, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [14] = { 0.68999999761581, 1.0299999713898, 135.33333445092, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [15] = { 0.68999999761581, 1.0299999713898, 139.99999677141, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 59, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, - [16] = { 0.68999999761581, 1.0299999713898, 144.3333340163, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [17] = { 0.68999999761581, 1.0299999713898, 148.83334174628, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [18] = { 0.68999999761581, 1.0299999713898, 153.33333358169, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [19] = { 0.68999999761581, 1.0299999713898, 157.99999590218, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [20] = { 0.68999999761581, 1.0299999713898, 162.33333314707, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [21] = { 0.68999999761581, 1.0299999713898, 166.66667039196, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [22] = { 0.68999999761581, 1.0299999713898, 171.16667812193, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [23] = { 0.68999999761581, 1.0299999713898, 175.33334488173, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [24] = { 0.68999999761581, 1.0299999713898, 179.50001164153, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [25] = { 0.68999999761581, 1.0299999713898, 183.66667840133, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [26] = { 0.68999999761581, 1.0299999713898, 187.99999975165, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [27] = { 0.68999999761581, 1.0299999713898, 192.16666651145, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [28] = { 0.68999999761581, 1.0299999713898, 196.00000819564, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [29] = { 0.68999999761581, 1.0299999713898, 200.00000447035, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [30] = { 0.68999999761581, 1.0299999713898, 204.16667123015, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [31] = { 0.68999999761581, 1.0299999713898, 205.99999888241, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [32] = { 0.68999999761581, 1.0299999713898, 207.83334242925, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [33] = { 0.68999999761581, 1.0299999713898, 209.83334056661, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [34] = { 0.68999999761581, 1.0299999713898, 211.83333870396, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [35] = { 0.68999999761581, 1.0299999713898, 213.66666635623, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [36] = { 0.68999999761581, 1.0299999713898, 215.50000990306, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [37] = { 0.68999999761581, 1.0299999713898, 217.50000804042, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [38] = { 0.68999999761581, 1.0299999713898, 219.33333569268, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [39] = { 0.68999999761581, 1.0299999713898, 221.16667923952, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [40] = { 0.68999999761581, 1.0299999713898, 223.00000689179, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [1] = { 0.68999999761581, 1.0299999713898, 128.33333302289, 18, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [2] = { 0.68999999761581, 1.0299999713898, 137.99999863406, 18, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [3] = { 0.68999999761581, 1.0299999713898, 147.33333916962, 18, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [4] = { 0.68999999761581, 1.0299999713898, 157.00000478079, 19, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [5] = { 0.68999999761581, 1.0299999713898, 166.16667483126, 19, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [6] = { 0.68999999761581, 1.0299999713898, 175.16667439664, 19, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.68999999761581, 1.0299999713898, 184.66666952272, 19, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [8] = { 0.68999999761581, 1.0299999713898, 193.66666908811, 19, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [9] = { 0.68999999761581, 1.0299999713898, 202.33334357788, 20, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.68999999761581, 1.0299999713898, 211.00000217309, 20, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [11] = { 0.68999999761581, 1.0299999713898, 220.16667222356, 20, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, + [12] = { 0.68999999761581, 1.0299999713898, 228.33333525807, 20, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, + [13] = { 0.68999999761581, 1.0299999713898, 236.83333926275, 21, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, + [14] = { 0.68999999761581, 1.0299999713898, 245.16667278235, 21, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, + [15] = { 0.68999999761581, 1.0299999713898, 253.66667678704, 21, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, + [16] = { 0.68999999761581, 1.0299999713898, 261.66666933646, 21, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.68999999761581, 1.0299999713898, 269.66667778045, 21, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.68999999761581, 1.0299999713898, 277.83334081496, 22, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, + [19] = { 0.68999999761581, 1.0299999713898, 286.16667433456, 22, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, + [20] = { 0.68999999761581, 1.0299999713898, 294.16666688398, 22, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.68999999761581, 1.0299999713898, 302.00002073745, 22, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [22] = { 0.68999999761581, 1.0299999713898, 310.16668377196, 22, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.68999999761581, 1.0299999713898, 317.8333353512, 23, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.68999999761581, 1.0299999713898, 325.16667774941, 23, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [25] = { 0.68999999761581, 1.0299999713898, 332.83332932865, 23, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.68999999761581, 1.0299999713898, 340.66668318212, 23, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, + [27] = { 0.68999999761581, 1.0299999713898, 348.16666427627, 23, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, + [28] = { 0.68999999761581, 1.0299999713898, 355.1666657043, 24, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.68999999761581, 1.0299999713898, 362.33333761742, 24, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.68999999761581, 1.0299999713898, 370.0000209858, 24, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.68999999761581, 1.0299999713898, 373.16666483507, 24, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, + [32] = { 0.68999999761581, 1.0299999713898, 376.66668144365, 24, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.68999999761581, 1.0299999713898, 380.16666626309, 24, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.68999999761581, 1.0299999713898, 383.83335335677, 25, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, + [35] = { 0.68999999761581, 1.0299999713898, 387.16666769112, 25, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, + [36] = { 0.68999999761581, 1.0299999713898, 390.33334332953, 25, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, + [37] = { 0.68999999761581, 1.0299999713898, 394.16666911915, 25, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.68999999761581, 1.0299999713898, 397.33334475756, 25, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, + [39] = { 0.68999999761581, 1.0299999713898, 400.833329577, 25, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.68999999761581, 1.0299999713898, 404.00000521541, 25, critChance = 7.5, damageEffectiveness = 0.9, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, }, } skills["CreepingFrostAltX"] = { name = "Creeping Frost of Floes", baseTypeName = "Creeping Frost of Floes", color = 3, - baseEffectiveness = 1.1953999996185, + baseEffectiveness = 0.75, incrementalEffectiveness = 0.047100000083447, description = "Fire a single icy projectile that bursts on impact or when reaching the targeted area, dealing area damage and creating a chilling area that deals cold damage over time. This area will creep rapidly across the ground towards nearby enemies until its duration expires.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.ChillingArea] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.ChillingArea] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -3808,12 +3809,13 @@ skills["CreepingFrostAltX"] = { { "active_skill_projectile_speed_+%_variation_final", 60 }, { "base_skill_effect_duration", 5000 }, { "active_skill_base_area_of_effect_radius", 15 }, - { "active_skill_base_secondary_area_of_effect_radius", 22 }, + { "active_skill_base_secondary_area_of_effect_radius", 4 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", "base_cold_damage_to_deal_per_minute", + "active_skill_base_secondary_area_of_effect_radius", "chilling_area_movement_velocity_+%", "spell_damage_modifiers_apply_to_skill_dot", "base_is_projectile", @@ -3824,51 +3826,51 @@ skills["CreepingFrostAltX"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.47999998927116, 0.72000002861023, 85.000000310441, 62, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [2] = { 0.47999998927116, 0.72000002861023, 91.333335692684, 64, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [3] = { 0.47999998927116, 0.72000002861023, 97.500000589838, 66, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [4] = { 0.47999998927116, 0.72000002861023, 103.99999850988, 68, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [5] = { 0.47999998927116, 0.72000002861023, 110.00000086923, 70, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [6] = { 0.47999998927116, 0.72000002861023, 116.00000322859, 72, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [7] = { 0.47999998927116, 0.72000002861023, 122.16666812574, 74, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [8] = { 0.47999998927116, 0.72000002861023, 128.16667048509, 76, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [9] = { 0.47999998927116, 0.72000002861023, 134.00000235935, 78, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [10] = { 0.47999998927116, 0.72000002861023, 139.66667169581, 80, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.47999998927116, 0.72000002861023, 145.66666610787, 82, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.47999998927116, 0.72000002861023, 151.16666495924, 84, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, - [13] = { 0.47999998927116, 0.72000002861023, 156.66666381061, 86, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, - [14] = { 0.47999998927116, 0.72000002861023, 162.33333314707, 88, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, - [15] = { 0.47999998927116, 0.72000002861023, 168.00000248353, 90, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, - [16] = { 0.47999998927116, 0.72000002861023, 173.16667625929, 92, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, - [17] = { 0.47999998927116, 0.72000002861023, 178.50000462557, 94, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, - [18] = { 0.47999998927116, 0.72000002861023, 184.00000347694, 96, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, - [19] = { 0.47999998927116, 0.72000002861023, 189.50000232831, 98, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, - [20] = { 0.47999998927116, 0.72000002861023, 194.66667610407, 100, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, - [21] = { 0.47999998927116, 0.72000002861023, 200.00000447035, 102, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [22] = { 0.47999998927116, 0.72000002861023, 205.33333283663, 104, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [23] = { 0.47999998927116, 0.72000002861023, 210.3333361273, 106, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [24] = { 0.47999998927116, 0.72000002861023, 215.33333941797, 108, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [25] = { 0.47999998927116, 0.72000002861023, 220.33334270865, 110, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, - [26] = { 0.47999998927116, 0.72000002861023, 225.50000058984, 112, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, - [27] = { 0.47999998927116, 0.72000002861023, 230.50000388051, 114, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, - [28] = { 0.47999998927116, 0.72000002861023, 235.16666620101, 116, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, - [29] = { 0.47999998927116, 0.72000002861023, 239.99999900659, 118, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [30] = { 0.47999998927116, 0.72000002861023, 245.00000229726, 120, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [31] = { 0.47999998927116, 0.72000002861023, 247.16667091971, 122, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [32] = { 0.47999998927116, 0.72000002861023, 249.33333954215, 124, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [33] = { 0.47999998927116, 0.72000002861023, 251.66667864968, 126, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [34] = { 0.47999998927116, 0.72000002861023, 254.16667234773, 128, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [35] = { 0.47999998927116, 0.72000002861023, 256.33334097018, 130, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [36] = { 0.47999998927116, 0.72000002861023, 258.50000959262, 132, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [37] = { 0.47999998927116, 0.72000002861023, 261.00000329067, 134, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [38] = { 0.47999998927116, 0.72000002861023, 263.16667191312, 136, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [39] = { 0.47999998927116, 0.72000002861023, 265.33334053556, 138, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [40] = { 0.47999998927116, 0.72000002861023, 267.49999326343, 140, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, + [1] = { 0.47999998927116, 0.72000002861023, 153.99999962747, 18, 62, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [2] = { 0.47999998927116, 0.72000002861023, 165.33333830039, 18, 64, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [3] = { 0.47999998927116, 0.72000002861023, 176.6666769733, 18, 66, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [4] = { 0.47999998927116, 0.72000002861023, 188.33334072183, 19, 68, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [5] = { 0.47999998927116, 0.72000002861023, 199.33333842456, 19, 70, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [6] = { 0.47999998927116, 0.72000002861023, 210.16666564221, 19, 72, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.47999998927116, 0.72000002861023, 221.33333383004, 19, 74, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [8] = { 0.47999998927116, 0.72000002861023, 232.16667694226, 19, 76, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [9] = { 0.47999998927116, 0.72000002861023, 242.83333367482, 20, 78, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.47999998927116, 0.72000002861023, 253.00001074125, 20, 80, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [11] = { 0.47999998927116, 0.72000002861023, 264.00000844399, 20, 82, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [12] = { 0.47999998927116, 0.72000002861023, 274.00001502534, 20, 84, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [13] = { 0.47999998927116, 0.72000002861023, 283.83335112159, 21, 86, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [14] = { 0.47999998927116, 0.72000002861023, 294.16666688398, 21, 88, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [15] = { 0.47999998927116, 0.72000002861023, 304.33334395041, 21, 90, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 17, }, }, + [16] = { 0.47999998927116, 0.72000002861023, 313.83333907649, 21, 92, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.47999998927116, 0.72000002861023, 323.33333420257, 21, 94, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.47999998927116, 0.72000002861023, 333.33334078391, 22, 96, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 0.47999998927116, 0.72000002861023, 343.33334736526, 22, 98, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [20] = { 0.47999998927116, 0.72000002861023, 352.83334249134, 22, 100, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.47999998927116, 0.72000002861023, 362.33333761742, 22, 102, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [22] = { 0.47999998927116, 0.72000002861023, 372.00000322859, 22, 104, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.47999998927116, 0.72000002861023, 381.16668917363, 23, 106, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.47999998927116, 0.72000002861023, 390.16667284444, 23, 108, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [25] = { 0.47999998927116, 0.72000002861023, 399.16668830439, 23, 110, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.47999998927116, 0.72000002861023, 408.66668343047, 23, 112, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [27] = { 0.47999998927116, 0.72000002861023, 417.66666710128, 23, 114, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [28] = { 0.47999998927116, 0.72000002861023, 426.16667110597, 24, 116, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.47999998927116, 0.72000002861023, 434.83334559575, 24, 118, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.47999998927116, 0.72000002861023, 443.99999975165, 24, 120, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.47999998927116, 0.72000002861023, 447.83335733041, 24, 122, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [32] = { 0.47999998927116, 0.72000002861023, 451.83335360512, 24, 124, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.47999998927116, 0.72000002861023, 456.00002036492, 24, 126, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.47999998927116, 0.72000002861023, 460.66666679084, 25, 128, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [35] = { 0.47999998927116, 0.72000002861023, 464.33335388452, 25, 130, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [36] = { 0.47999998927116, 0.72000002861023, 468.33335015923, 25, 132, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [37] = { 0.47999998927116, 0.72000002861023, 472.99999658515, 25, 134, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.47999998927116, 0.72000002861023, 476.83335416392, 25, 136, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [39] = { 0.47999998927116, 0.72000002861023, 480.83335043863, 25, 138, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.47999998927116, 0.72000002861023, 484.83334671333, 25, 140, critChance = 7.5, damageEffectiveness = 0.65, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, 1, }, cost = { Mana = 27, }, }, }, } skills["DarkPact"] = { - name = "Dark Pact", - baseTypeName = "Dark Pact", + name = "Dark Bargain", + baseTypeName = "Dark Bargain", color = 3, baseEffectiveness = 0.80000001192093, incrementalEffectiveness = 0.037999998778105, @@ -3941,51 +3943,51 @@ skills["DarkPact"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 56, critChance = 7, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 60, critChance = 7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 64, critChance = 7, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 69, critChance = 7, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 73, critChance = 7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 77, critChance = 7, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 81, critChance = 7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 85, critChance = 7, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 90, critChance = 7, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 94, critChance = 7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 98, critChance = 7, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 102, critChance = 7, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 106, critChance = 7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 111, critChance = 7, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 115, critChance = 7, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 119, critChance = 7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 123, critChance = 7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 127, critChance = 7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 132, critChance = 7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 136, critChance = 7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 140, critChance = 7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 144, critChance = 7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 148, critChance = 7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 153, critChance = 7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 157, critChance = 7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 161, critChance = 7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 165, critChance = 7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 169, critChance = 7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 174, critChance = 7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 178, critChance = 7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 181, critChance = 7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 182, critChance = 7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 185, critChance = 7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 186, critChance = 7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 189, critChance = 7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 190, critChance = 7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 193, critChance = 7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 195, critChance = 7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 197, critChance = 7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 199, critChance = 7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 56, critChance = 10, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 60, critChance = 10, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 64, critChance = 10, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 69, critChance = 10, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 73, critChance = 10, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 77, critChance = 10, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 81, critChance = 10, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 85, critChance = 10, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 90, critChance = 10, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 94, critChance = 10, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 98, critChance = 10, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 102, critChance = 10, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 106, critChance = 10, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 111, critChance = 10, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 115, critChance = 10, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 119, critChance = 10, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 123, critChance = 10, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 127, critChance = 10, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 132, critChance = 10, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 136, critChance = 10, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 140, critChance = 10, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 144, critChance = 10, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 148, critChance = 10, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 153, critChance = 10, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 157, critChance = 10, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 161, critChance = 10, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 165, critChance = 10, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 169, critChance = 10, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 174, critChance = 10, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 178, critChance = 10, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 181, critChance = 10, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 182, critChance = 10, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 185, critChance = 10, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 186, critChance = 10, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 189, critChance = 10, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 190, critChance = 10, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 193, critChance = 10, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 195, critChance = 10, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 197, critChance = 10, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 199, critChance = 10, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, }, } skills["DarkPactAltX"] = { - name = "Dark Pact of Trarthus", - baseTypeName = "Dark Pact of Trarthus", + name = "Dark Bargain of Trarthus", + baseTypeName = "Dark Bargain of Trarthus", color = 3, baseEffectiveness = 0.80000001192093, incrementalEffectiveness = 0.037999998778105, @@ -4042,7 +4044,7 @@ skills["DarkPactAltX"] = { }, constantStats = { { "dark_pact_sacrifice_%_life_from_max_ruin", 50 }, - { "dark_pact_chaos_damage_added_from_sacrifice_+%", 500 }, + { "dark_pact_chaos_damage_added_from_sacrifice_+%", 600 }, { "active_skill_ailment_damage_+%_final", -50 }, }, stats = { @@ -4055,46 +4057,46 @@ skills["DarkPactAltX"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, }, } skills["Despair"] = { @@ -4266,7 +4268,7 @@ skills["Discharge"] = { name = "Discharge", baseTypeName = "Discharge", color = 3, - baseEffectiveness = 3.876699924469, + baseEffectiveness = 4.4580001831055, incrementalEffectiveness = 0.035999998450279, description = "Discharge all the character's charges to deal elemental damage to all nearby monsters.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Cooldown] = true, }, @@ -4303,53 +4305,53 @@ skills["Discharge"] = { "spell_maximum_base_cold_damage_per_removable_frenzy_charge", }, levels = { - [1] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 15, }, }, - [4] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 20, }, }, - [12] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 21, }, }, - [14] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 7, damageEffectiveness = 6, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 13, }, }, + [2] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 14, }, }, + [3] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 15, }, }, + [4] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 16, }, }, + [5] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 16, }, }, + [6] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 17, }, }, + [7] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 18, }, }, + [8] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 18, }, }, + [9] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 19, }, }, + [10] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 19, }, }, + [11] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 20, }, }, + [12] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 20, }, }, + [13] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 21, }, }, + [14] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 21, }, }, + [15] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 22, }, }, + [16] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 22, }, }, + [17] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [18] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 24, }, }, + [19] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 24, }, }, + [20] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 25, }, }, + [21] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 25, }, }, + [22] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 26, }, }, + [23] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 26, }, }, + [24] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 27, }, }, + [25] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 27, }, }, + [26] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 28, }, }, + [27] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 28, }, }, + [28] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 29, }, }, + [29] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 30, }, }, + [30] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 30, }, }, + [31] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 30, }, }, + [32] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 31, }, }, + [33] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 31, }, }, + [34] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 31, }, }, + [35] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 31, }, }, + [36] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 32, }, }, + [37] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 32, }, }, + [38] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 32, }, }, + [39] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 33, }, }, + [40] = { 0.5, 1.5, 0.80000001192093, 1.2000000476837, 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7, damageEffectiveness = 6, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 33, }, }, }, } skills["DischargeAltX"] = { name = "Discharge of Misery", baseTypeName = "Discharge of Misery", color = 3, - baseEffectiveness = 1.4160000085831, + baseEffectiveness = 1.6283999681473, incrementalEffectiveness = 0.035999998450279, description = "Discharge all the character's charges to deal elemental damage to all nearby monsters.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, }, @@ -4592,7 +4594,7 @@ skills["DivineIre"] = { baseTypeName = "Divine Ire", color = 3, baseEffectiveness = 0.55019998550415, - incrementalEffectiveness = 0.044399999082088, + incrementalEffectiveness = 0.048000000417233, description = "Channelling draws in energy around you to repeatedly build up stages, damaging a number of nearby enemies when you do so. Release to unleash this energy in a burst around you and a beam in front of you. Modifiers to area of effect do not affect the beam. Maximum of 10 Stages.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -4655,46 +4657,46 @@ skills["DivineIre"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, }, } skills["DivineIreAltX"] = { @@ -4702,7 +4704,7 @@ skills["DivineIreAltX"] = { baseTypeName = "Divine Ire of Holy Lightning", color = 3, baseEffectiveness = 0.76520001888275, - incrementalEffectiveness = 0.044399999082088, + incrementalEffectiveness = 0.048000000417233, description = "Channelling draws in energy around you to repeatedly build up stages, damaging a number of nearby enemies when you do so. Release to unleash this energy in a powerful burst around you. Maximum of 10 Stages.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -4766,46 +4768,46 @@ skills["DivineIreAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, }, } skills["DivineIreAltY"] = { @@ -4813,7 +4815,7 @@ skills["DivineIreAltY"] = { baseTypeName = "Divine Ire of Disintegration", color = 3, baseEffectiveness = 1.0657999515533, - incrementalEffectiveness = 0.044399999082088, + incrementalEffectiveness = 0.048000000417233, description = "Channelling draws in energy around you to repeatedly build up stages. Release to unleash this energy in a beam in front of you. Modifiers to area of effect do not affect this skill. Maximum of 10 Stages.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -4859,46 +4861,46 @@ skills["DivineIreAltY"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, 0, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, 1, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, 2, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, 3, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, 4, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, 5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, 6, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 2, 9, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, 10, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, 11, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, 12, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, 13, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, 14, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, 15, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 4, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 4, 18, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 4, 19, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, 21, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, 22, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, 23, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, 25, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, 26, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, 27, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 7, 28, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 7, 29, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 7, 29, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 7, 30, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 7, 30, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 7, 31, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 7, 31, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 8, 32, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 8, 32, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 8, 33, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 8, 33, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 8, 34, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, 0, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, 1, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, 2, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, 3, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, 4, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, 5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, 6, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, 7, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, 8, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, 9, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, 10, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, 11, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, 12, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, 13, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, 14, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, 15, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, 17, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, 18, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, 19, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, 22, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, 23, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, 25, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, 26, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, 27, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 7, 28, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 7, 29, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 7, 29, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 7, 30, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 7, 30, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, 31, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 7, 31, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 8, 32, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 8, 32, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 8, 33, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 8, 33, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, 34, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, }, } skills["DivineRetribution"] = { @@ -4906,7 +4908,7 @@ skills["DivineRetribution"] = { baseTypeName = "Divine Retribution", color = 3, baseEffectiveness = 4.0999999046326, - incrementalEffectiveness = 0.043200001120567, + incrementalEffectiveness = 0.048000000417233, description = "Retaliate against a blocked hit with a surge of divine power, causing multiple waves of lightning bursts to expand outward from a targeted location. This skill cannot be Triggered or used by Totems, Traps, or Mines.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.Cooldown] = true, [SkillType.Retaliation] = true, [SkillType.Cascadable] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -4940,46 +4942,46 @@ skills["DivineRetribution"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 43, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 49, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 5, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 4, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 4, critChance = 6, damageEffectiveness = 4, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 4, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 6, damageEffectiveness = 4.3, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 6, damageEffectiveness = 4.4, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 6, damageEffectiveness = 4.4, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 6, damageEffectiveness = 4.6, levelRequirement = 43, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 49, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 6, damageEffectiveness = 4.9, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 6, damageEffectiveness = 5, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 6, damageEffectiveness = 5.1, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 6, damageEffectiveness = 5.1, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 6, damageEffectiveness = 5.3, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 6, damageEffectiveness = 5.3, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 5.4, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["ElementalWeakness"] = { @@ -5073,21 +5075,12 @@ skills["EnergyBlade"] = { color = 3, baseEffectiveness = 1.088700056076, incrementalEffectiveness = 0.020099999383092, - description = "Grants a buff which significantly lowers your maximum Energy Shield to transform your equipped weapons into Swords formed from that energy. Casting the spell again removes the buff. Requires a Non-Bow weapon. This skill cannot be triggered.", + description = "Grants a buff which significantly lowers your maximum Energy Shield to transform your equipped swords into swords formed from that energy. Casting the spell again removes the buff. This skill cannot be triggered or used with non-sword weapons.", skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Lightning] = true, [SkillType.Cooldown] = true, }, weaponTypes = { - ["Claw"] = true, - ["Dagger"] = true, - ["One Handed Axe"] = true, - ["One Handed Mace"] = true, ["One Handed Sword"] = true, - ["Sceptre"] = true, - ["Staff"] = true, ["Thrusting One Handed Sword"] = true, - ["Two Handed Axe"] = true, - ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, - ["Wand"] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", castTime = 1, @@ -5268,7 +5261,7 @@ skills["EssenceDrain"] = { baseTypeName = "Essence Drain", color = 3, baseEffectiveness = 5.3800001144409, - incrementalEffectiveness = 0.053899999707937, + incrementalEffectiveness = 0.051399998366833, description = "Fires a projectile that applies a damage over time debuff when it hits. You are healed for a portion of the debuff damage. The debuff is spread by Contagion.", skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Multicastable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -5303,46 +5296,46 @@ skills["EssenceDrain"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 33.500000589838, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 12, statInterpolation = { 3, 3, 3, }, cost = { Mana = 8, }, }, - [2] = { 32.833334544053, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 15, statInterpolation = { 3, 3, 3, }, cost = { Mana = 9, }, }, - [3] = { 32, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, }, cost = { Mana = 10, }, }, - [4] = { 31.000000931323, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 23, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, - [5] = { 30.16666638727, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 27, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, - [6] = { 29.333333830039, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, - [7] = { 28.666667784254, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 35, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, - [8] = { 27.999999751647, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 38, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, - [9] = { 27.500000217309, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 41, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [10] = { 26.833334171524, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [11] = { 26.333334637185, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 47, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, - [12] = { 25.833333116025, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [13] = { 25.16666707024, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 53, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 24.666667535901, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [15] = { 24.166668001562, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 59, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 23.666666480402, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 23.33333345751, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 23.000000434617, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 22.666667411725, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 22.500000900279, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 22.166667877386, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 21.833332867672, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 21.49999984478, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 21.166666821887, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 21.000000310441, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 20.666667287548, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 20.333334264656, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 20.000001241763, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 19.833334730317, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 19.499999720603, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 19.333333209157, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 19.166666697711, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 19.166666697711, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 19.000000186265, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 18.833333674818, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 18.666667163372, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 18.500000651926, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 18.500000651926, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 18.33333414048, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 18.166667629033, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 12, statInterpolation = { 3, 3, 3, }, cost = { Mana = 8, }, }, + [2] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 15, statInterpolation = { 3, 3, 3, }, cost = { Mana = 9, }, }, + [3] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, }, cost = { Mana = 10, }, }, + [4] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 23, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, + [5] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 27, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, + [6] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, + [7] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 35, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 38, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, + [9] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 41, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [10] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [11] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 47, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [12] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, + [13] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 53, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [14] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [15] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 59, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [18] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [19] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [23] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [29] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [30] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [36] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [39] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [40] = { 33.333334078391, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, }, } skills["EssenceDrainAltX"] = { @@ -5350,7 +5343,7 @@ skills["EssenceDrainAltX"] = { baseTypeName = "Essence Drain of Desperation", color = 3, baseEffectiveness = 5.3800001144409, - incrementalEffectiveness = 0.053899999707937, + incrementalEffectiveness = 0.051399998366833, description = "Fires a projectile that applies a damage over time debuff when it hits. You lose Life and Energy Shield equal to a portion of the debuff damage. The debuff is spread by Contagion.", skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Multicastable] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -5386,46 +5379,46 @@ skills["EssenceDrainAltX"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 33.500000589838, 0.15999999642372, 0.23999999463558, 39.166665952653, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 8, }, }, - [2] = { 32.833334544053, 0.15999999642372, 0.23999999463558, 38.83333292976, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 9, }, }, - [3] = { 32, 0.15999999642372, 0.23999999463558, 37.333334326744, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 10, }, }, - [4] = { 31.000000931323, 0.15999999642372, 0.23999999463558, 36.333335258067, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 11, }, }, - [5] = { 30.16666638727, 0.15999999642372, 0.23999999463558, 35.1666657043, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 12, }, }, - [6] = { 29.333333830039, 0.15999999642372, 0.23999999463558, 34.499999658515, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 13, }, }, - [7] = { 28.666667784254, 0.15999999642372, 0.23999999463558, 33.500000589838, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 14, }, }, - [8] = { 27.999999751647, 0.15999999642372, 0.23999999463558, 33.000001055499, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 15, }, }, - [9] = { 27.500000217309, 0.15999999642372, 0.23999999463558, 32.166666511446, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 16, }, }, - [10] = { 26.833334171524, 0.15999999642372, 0.23999999463558, 31.333333954215, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 16, }, }, - [11] = { 26.333334637185, 0.15999999642372, 0.23999999463558, 30.833334419876, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 17, }, }, - [12] = { 25.833333116025, 0.15999999642372, 0.23999999463558, 30.333334885538, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 18, }, }, - [13] = { 25.16666707024, 0.15999999642372, 0.23999999463558, 29.500000341485, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 24.666667535901, 0.15999999642372, 0.23999999463558, 29.166667318592, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 19, }, }, - [15] = { 24.166668001562, 0.15999999642372, 0.23999999463558, 28.500001272808, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 23.666666480402, 0.15999999642372, 0.23999999463558, 27.666666728755, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 23.33333345751, 0.15999999642372, 0.23999999463558, 27.500000217309, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 23.000000434617, 0.15999999642372, 0.23999999463558, 27.00000068297, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 22.666667411725, 0.15999999642372, 0.23999999463558, 26.500001148631, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 22.500000900279, 0.15999999642372, 0.23999999463558, 26.500001148631, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 22.166667877386, 0.15999999642372, 0.23999999463558, 25.999999627471, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 21.833332867672, 0.15999999642372, 0.23999999463558, 25.833333116025, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 21.49999984478, 0.15999999642372, 0.23999999463558, 25.16666707024, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 21.166666821887, 0.15999999642372, 0.23999999463558, 24.833334047347, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 21.000000310441, 0.15999999642372, 0.23999999463558, 24.833334047347, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 20.666667287548, 0.15999999642372, 0.23999999463558, 24.333334513009, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 20.333334264656, 0.15999999642372, 0.23999999463558, 24.000001490116, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 20.000001241763, 0.15999999642372, 0.23999999463558, 23.33333345751, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 19.833334730317, 0.15999999642372, 0.23999999463558, 23.33333345751, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 19.499999720603, 0.15999999642372, 0.23999999463558, 23.166666946063, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 19.333333209157, 0.15999999642372, 0.23999999463558, 22.666667411725, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 19.166666697711, 0.15999999642372, 0.23999999463558, 22.666667411725, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 19.166666697711, 0.15999999642372, 0.23999999463558, 22.666667411725, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 19.000000186265, 0.15999999642372, 0.23999999463558, 22.166667877386, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 18.833333674818, 0.15999999642372, 0.23999999463558, 22.166667877386, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 18.666667163372, 0.15999999642372, 0.23999999463558, 21.666666356226, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 18.500000651926, 0.15999999642372, 0.23999999463558, 21.666666356226, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 18.500000651926, 0.15999999642372, 0.23999999463558, 21.666666356226, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 18.33333414048, 0.15999999642372, 0.23999999463558, 21.666666356226, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 18.166667629033, 0.15999999642372, 0.23999999463558, 21.49999984478, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 8, }, }, + [2] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 9, }, }, + [3] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 10, }, }, + [4] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 11, }, }, + [5] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 12, }, }, + [6] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 13, }, }, + [7] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 15, }, }, + [9] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 16, }, }, + [10] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 16, }, }, + [11] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 17, }, }, + [12] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 18, }, }, + [13] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 19, }, }, + [14] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 19, }, }, + [15] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 21, }, }, + [18] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 22, }, }, + [19] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, + [23] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 27, }, }, + [29] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 28, }, }, + [30] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, + [36] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, + [39] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, + [40] = { 33.333334078391, 0.15999999642372, 0.23999999463558, 31.666666977108, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 31, }, }, }, } skills["EssenceDrainAltY"] = { @@ -5459,6 +5452,7 @@ skills["EssenceDrainAltY"] = { "base_chaos_damage_to_deal_per_minute", "spell_minimum_base_chaos_damage", "spell_maximum_base_chaos_damage", + "base_number_of_projectiles", "spell_damage_modifiers_apply_to_skill_dot", "base_is_projectile", "quality_display_essence_drain_is_gem", @@ -5469,46 +5463,46 @@ skills["EssenceDrainAltY"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 25.16666707024, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 12, statInterpolation = { 3, 3, 3, }, cost = { Mana = 8, }, }, - [2] = { 24.666667535901, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 15, statInterpolation = { 3, 3, 3, }, cost = { Mana = 9, }, }, - [3] = { 24.000001490116, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 19, statInterpolation = { 3, 3, 3, }, cost = { Mana = 10, }, }, - [4] = { 23.33333345751, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 23, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, - [5] = { 22.666667411725, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 27, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, - [6] = { 22.00000136594, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, - [7] = { 21.49999984478, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 35, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, - [8] = { 21.000000310441, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 38, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, - [9] = { 20.666667287548, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 41, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [10] = { 20.16666775321, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [11] = { 19.833334730317, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 47, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, - [12] = { 19.333333209157, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [13] = { 18.833333674818, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 53, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 18.500000651926, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [15] = { 18.166667629033, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 59, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 17.833334606141, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 17.499999596427, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 17.333333084981, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 17.000000062088, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 16.833333550642, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 16.666667039196, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 16.333334016303, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 16.166667504857, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 15.833333488554, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 15.833333488554, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 15.500000465661, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 15.333333954215, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 14.999999937912, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 14.833333426466, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 14.666666915019, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 14.500000403573, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 14.333333892127, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 14.333333892127, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 14.333333892127, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 14.166667380681, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 13.999999875824, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 13.833333364377, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 13.833333364377, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 13.833333364377, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 13.666666852931, 0.34999999403954, 0.52999997138977, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 25.16666707024, 0.34999999403954, 0.52999997138977, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 24.666667535901, 0.34999999403954, 0.52999997138977, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 24.000001490116, 0.34999999403954, 0.52999997138977, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 23.33333345751, 0.34999999403954, 0.52999997138977, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 22.666667411725, 0.34999999403954, 0.52999997138977, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 22.00000136594, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 21.49999984478, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 21.000000310441, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 20.666667287548, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 20.16666775321, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 19.833334730317, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 19.333333209157, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 18.833333674818, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 18.500000651926, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 18.166667629033, 0.34999999403954, 0.52999997138977, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 17.833334606141, 0.34999999403954, 0.52999997138977, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 17.499999596427, 0.34999999403954, 0.52999997138977, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 17.333333084981, 0.34999999403954, 0.52999997138977, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 17.000000062088, 0.34999999403954, 0.52999997138977, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 16.833333550642, 0.34999999403954, 0.52999997138977, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 16.666667039196, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 16.333334016303, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 16.166667504857, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 15.833333488554, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 15.833333488554, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 15.500000465661, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 15.333333954215, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 14.999999937912, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 14.833333426466, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 14.666666915019, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 14.500000403573, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 14.333333892127, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 14.333333892127, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 14.333333892127, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 14.166667380681, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 13.999999875824, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 13.833333364377, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 13.833333364377, 0.34999999403954, 0.52999997138977, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 13.833333364377, 0.34999999403954, 0.52999997138977, 7, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 13.666666852931, 0.34999999403954, 0.52999997138977, 7, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["EyeOfWinter"] = { @@ -5562,46 +5556,46 @@ skills["EyeOfWinter"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.55, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, }, } skills["EyeOfWinterAltX"] = { @@ -5655,46 +5649,46 @@ skills["EyeOfWinterAltX"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, }, } skills["EyeOfWinterAltY"] = { @@ -5749,46 +5743,46 @@ skills["EyeOfWinterAltY"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 1.2, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, }, } skills["Fireball"] = { @@ -5796,7 +5790,7 @@ skills["Fireball"] = { baseTypeName = "Fireball", color = 3, baseEffectiveness = 2.9210000038147, - incrementalEffectiveness = 0.047400001436472, + incrementalEffectiveness = 0.049499999731779, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -5816,7 +5810,7 @@ skills["Fireball"] = { projectile = true, }, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.1 }, + { "active_skill_base_area_of_effect_radius", 0.15 }, }, constantStats = { { "base_chance_to_ignite_%", 25 }, @@ -5833,46 +5827,46 @@ skills["Fireball"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 9, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 9, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 10, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 10, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 10, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 11, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 11, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 11, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 11, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 12, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 12, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 12, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 12, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 13, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 13, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 13, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 13, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 14, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 14, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 14, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 14, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 15, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 15, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 15, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 15, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 15, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 10, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 10, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 11, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 11, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 12, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 12, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 13, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.4, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 13, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.5, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 13, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 14, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.7, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 14, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.8, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 15, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 3.9, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 15, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 15, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 16, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 17, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 18, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 18, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 20, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 21, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 21, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 21, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 21, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 21, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 22, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 22, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 22, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 22, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 22, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 23, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 23, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 23, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 23, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 23, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 24, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 24, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 24, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 24, PvPDamageMultiplier = -30, critChance = 5, damageEffectiveness = 4.8, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, }, } skills["VaalFireball"] = { @@ -5880,7 +5874,7 @@ skills["VaalFireball"] = { baseTypeName = "Vaal Fireball", color = 3, baseEffectiveness = 2.9384000301361, - incrementalEffectiveness = 0.041200000792742, + incrementalEffectiveness = 0.043499998748302, description = "Launches a series of fireballs in a spiral around the caster.", skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.ProjectileSpiral] = true, [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Vaal] = true, [SkillType.Fire] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -5900,7 +5894,7 @@ skills["VaalFireball"] = { projectile = true, }, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.1 }, + { "active_skill_base_area_of_effect_radius", 0.15 }, }, constantStats = { { "base_number_of_projectiles_in_spiral_nova", 32 }, @@ -5921,46 +5915,46 @@ skills["VaalFireball"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 1, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 2, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 4, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 7, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 11, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 16, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 20, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 24, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 28, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 32, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 36, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 40, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 44, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 48, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 52, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 56, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 60, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 64, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 67, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 70, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 72, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 74, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 76, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 78, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 80, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 82, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 84, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 86, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 88, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 90, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 91, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 92, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 93, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 94, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 95, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 96, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 97, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 98, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 99, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 100, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 10, critChance = 5, damageEffectiveness = 3, levelRequirement = 1, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 10, critChance = 5, damageEffectiveness = 3, levelRequirement = 2, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 11, critChance = 5, damageEffectiveness = 3, levelRequirement = 4, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 11, critChance = 5, damageEffectiveness = 3, levelRequirement = 7, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5, damageEffectiveness = 3, levelRequirement = 11, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5, damageEffectiveness = 3, levelRequirement = 16, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 13, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 20, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 13, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 24, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 13, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 28, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 14, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 32, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 14, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 36, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 40, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 44, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 48, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 52, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 56, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 17, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 60, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 17, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 64, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 18, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 67, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 18, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 70, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 20, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 72, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 21, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 74, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 21, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 76, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 21, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 78, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 21, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 80, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 21, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 82, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 22, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 84, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 22, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 86, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 22, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 88, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 22, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 90, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 22, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 91, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 23, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 92, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 23, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 93, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 23, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 94, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 23, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 95, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 23, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 96, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 24, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 97, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 24, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 98, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 24, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 99, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 24, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 100, soulPreventionDuration = 4, vaalStoredUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Soul = 30, }, }, }, } skills["Firestorm"] = { @@ -6023,46 +6017,46 @@ skills["Firestorm"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, }, } skills["FirestormAltX"] = { @@ -6070,7 +6064,7 @@ skills["FirestormAltX"] = { baseTypeName = "Firestorm of Meteors", color = 3, baseEffectiveness = 2.9809999465942, - incrementalEffectiveness = 0.048700001090765, + incrementalEffectiveness = 0.049800001084805, description = "A large flaming bolt falls towards the targeted area. The bolt explodes when landing, dealing damage to nearby enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -6080,10 +6074,11 @@ skills["FirestormAltX"] = { area = true, }, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.1 }, + { "active_skill_base_area_of_effect_radius", 0.15 }, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 23 }, + { "active_skill_base_area_of_effect_radius", 26 }, + { "additional_base_firestorm_drop_radius_+", 7 }, }, stats = { "spell_minimum_base_fire_damage", @@ -6095,46 +6090,46 @@ skills["FirestormAltX"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.3, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.3, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.4, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.6, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 4.9, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.1, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 5.2, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, }, } skills["FirestormAltY"] = { @@ -6178,46 +6173,46 @@ skills["FirestormAltY"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, }, } skills["VaalFirestorm"] = { @@ -6227,7 +6222,7 @@ skills["VaalFirestorm"] = { baseEffectiveness = 5.6999998092651, incrementalEffectiveness = 0.048700001090765, description = "A fixed number of flaming bolts rain down in a spiral, culminating in the central one impacting the targeted location. They explode when landing, dealing damage to nearby enemies and leaving burning ground, which deals fire damage over time.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.AreaSpell] = true, [SkillType.Vaal] = true, [SkillType.Multicastable] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.AreaSpell] = true, [SkillType.Vaal] = true, [SkillType.Multicastable] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, statMap = { @@ -6253,9 +6248,9 @@ skills["VaalFirestorm"] = { constantStats = { { "fire_storm_fireball_delay_ms", 500 }, { "vaal_firestorm_number_of_meteors", 16 }, - { "firestorm_drop_burning_ground_duration_ms", 4000 }, + { "firestorm_drop_burning_ground_duration_ms", 6000 }, { "vaal_firestorm_gem_explosion_area_of_effect_+%_final", 20 }, - { "active_skill_base_area_of_effect_radius", 13 }, + { "active_skill_base_area_of_effect_radius", 18 }, }, stats = { "spell_minimum_base_fire_damage", @@ -6274,46 +6269,46 @@ skills["VaalFirestorm"] = { "base_fire_damage_to_deal_per_minute", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6, levelRequirement = 28, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.1, levelRequirement = 31, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.2, levelRequirement = 34, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.3, levelRequirement = 37, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.5, levelRequirement = 40, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.5, levelRequirement = 42, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.6, levelRequirement = 44, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.7, levelRequirement = 46, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.8, levelRequirement = 48, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 6.9, levelRequirement = 50, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7, levelRequirement = 52, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.1, levelRequirement = 54, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.2, levelRequirement = 56, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.2, levelRequirement = 58, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.3, levelRequirement = 60, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.4, levelRequirement = 62, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.5, levelRequirement = 64, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 66, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.7, levelRequirement = 68, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 70, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 72, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 74, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 76, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 78, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 80, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 82, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 84, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 86, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 88, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 90, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 91, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 92, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 93, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 94, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 95, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 96, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 97, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 98, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 99, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 100, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.1, levelRequirement = 28, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.2, levelRequirement = 31, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.3, levelRequirement = 34, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.5, levelRequirement = 37, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.6, levelRequirement = 40, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.7, levelRequirement = 42, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.8, levelRequirement = 44, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 7.9, levelRequirement = 46, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8, levelRequirement = 48, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8.1, levelRequirement = 50, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8.2, levelRequirement = 52, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8.3, levelRequirement = 54, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8.4, levelRequirement = 56, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8.5, levelRequirement = 58, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8.7, levelRequirement = 60, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8.8, levelRequirement = 62, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 8.9, levelRequirement = 64, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9, levelRequirement = 66, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.1, levelRequirement = 68, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 70, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 72, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 74, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 76, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 78, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 80, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 82, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 84, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 86, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 88, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 90, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 91, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 92, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 93, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 94, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 95, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 96, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 97, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 98, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 99, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 55.000000434617, critChance = 6, damageEffectiveness = 9.2, levelRequirement = 100, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 35, }, }, }, } skills["FlameDash"] = { @@ -6356,53 +6351,53 @@ skills["FlameDash"] = { "base_cooldown_speed_+%", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 0, cooldown = 3.5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 10, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 1, cooldown = 3.5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 13, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 2, cooldown = 3.5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 17, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 3, cooldown = 3.5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 21, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4, cooldown = 3.5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 25, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 5, cooldown = 3.5, critChance = 6, levelRequirement = 29, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 6, cooldown = 3.5, critChance = 6, levelRequirement = 33, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 7, cooldown = 3.5, critChance = 6, levelRequirement = 36, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 8, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 39, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 9, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 42, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 10, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 45, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 11, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 48, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 12, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 51, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 13, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 54, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 14, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 57, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 15, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 60, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 16, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 63, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 17, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 66, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 18, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 68, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 19, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 70, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 20, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 72, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 21, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 74, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 22, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 76, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 23, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 78, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 24, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 80, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 25, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 82, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 26, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 84, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 27, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 86, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 28, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 88, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 29, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 90, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 29, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 91, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 30, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 92, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 30, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 93, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 31, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 94, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 31, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 95, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 32, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 96, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 32, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 97, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 33, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 98, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 33, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 99, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 34, cooldown = 3.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 100, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 0, cooldown = 3.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 10, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 1, cooldown = 3.5, critChance = 5, levelRequirement = 13, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 2, cooldown = 3.5, critChance = 5, levelRequirement = 17, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 3, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 21, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 4, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 25, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 5, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 29, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 6, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 33, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 7, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 36, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 8, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 39, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 9, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 42, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 10, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 45, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 11, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 48, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 12, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 51, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 13, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 54, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 14, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 57, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 15, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 60, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 16, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 63, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 17, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 66, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 18, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 68, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 19, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 70, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 20, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 72, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 21, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 74, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 22, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 76, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 23, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 78, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 24, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 80, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 25, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 82, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 26, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 84, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 27, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 86, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 28, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 88, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 29, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 90, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 29, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 91, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 30, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 92, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 30, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 93, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 31, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 94, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 31, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 95, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 32, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 96, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 32, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 97, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 33, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 98, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 33, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 99, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 145.66666610787, 34, cooldown = 3.5, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 100, storedUses = 3, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["FlameDashAltY"] = { name = "Flame Dash of Return", baseTypeName = "Flame Dash of Return", color = 3, - baseEffectiveness = 1.875, + baseEffectiveness = 2.1505000591278, incrementalEffectiveness = 0.052799999713898, description = "Teleport to a location, damaging enemies and leaving a trail of burning ground, then repeat the teleport in the other direction. Cannot be triggered, or used by a totem, trap or mine. Cannot be supported by Unleash.", skillTypes = { [SkillType.Spell] = true, [SkillType.Movement] = true, [SkillType.Damage] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.Multicastable] = true, }, @@ -6439,54 +6434,54 @@ skills["FlameDashAltY"] = { "base_fire_damage_to_deal_per_minute", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 0, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 10, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 1, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 13, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 2, critChance = 6, damageEffectiveness = 2, levelRequirement = 17, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 3, critChance = 6, damageEffectiveness = 2, levelRequirement = 21, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 4, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 25, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 5, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 29, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 6, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 33, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 7, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 36, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 8, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 39, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 42, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 10, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 45, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 48, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 12, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 51, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 13, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 54, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 14, critChance = 6, damageEffectiveness = 3, levelRequirement = 57, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 15, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 60, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 16, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 63, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 17, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 18, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 19, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 20, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 21, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 22, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 23, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 24, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 25, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 26, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 27, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 23, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 28, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 29, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 30, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 24, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 31, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 32, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 33, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 34, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 35, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 36, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 37, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 38, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 26, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 39, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 27, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 0, critChance = 5, damageEffectiveness = 2.3, levelRequirement = 10, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 1, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 13, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 2, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 17, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 3, critChance = 5, damageEffectiveness = 2.6, levelRequirement = 21, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 4, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 25, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 5, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 29, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 6, critChance = 5, damageEffectiveness = 3, levelRequirement = 33, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 7, critChance = 5, damageEffectiveness = 3, levelRequirement = 36, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 8, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 39, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 9, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 42, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 10, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 45, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 11, critChance = 5, damageEffectiveness = 3.4, levelRequirement = 48, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 12, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 51, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 13, critChance = 5, damageEffectiveness = 3.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 14, critChance = 5, damageEffectiveness = 3.8, levelRequirement = 57, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 15, critChance = 5, damageEffectiveness = 3.9, levelRequirement = 60, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 16, critChance = 5, damageEffectiveness = 4, levelRequirement = 63, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 17, critChance = 5, damageEffectiveness = 4.2, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 18, critChance = 5, damageEffectiveness = 4.2, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 15, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 19, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 16, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 20, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 21, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 22, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 23, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 17, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 24, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 25, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 26, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 27, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 18, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 28, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 29, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 30, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 19, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 31, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 32, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 33, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 34, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 20, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 35, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 36, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 37, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 38, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 21, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 29.999999875824, 39, critChance = 5, damageEffectiveness = 4.3, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 22, }, }, }, } skills["FlameWall"] = { name = "Flame Wall", baseTypeName = "Flame Wall", color = 3, - baseEffectiveness = 4.3292999267578, - incrementalEffectiveness = 0.0625, + baseEffectiveness = 4.8000001907349, + incrementalEffectiveness = 0.063000001013279, description = "Create a wall of fire for a duration, which deals burning damage to everything in its area. Each enemy that enters the wall also receives a secondary burning debuff which persists for a short duration after leaving the wall. Any projectiles fired through the wall by you and allies deal added fire damage and apply the wall's secondary debuff on hit.", skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.CanRapidFire] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CausesBurning] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -6537,7 +6532,7 @@ skills["FlameWall"] = { skill("buffAllies", true), }, qualityStats = { - { "number_of_allowed_firewalls", 0.05 }, + { "number_of_allowed_firewalls", 0.1 }, }, constantStats = { { "number_of_allowed_firewalls", 3 }, @@ -6610,7 +6605,7 @@ skills["FlameSurge"] = { baseTypeName = "Flame Surge", color = 3, baseEffectiveness = 2.7952001094818, - incrementalEffectiveness = 0.037799999117851, + incrementalEffectiveness = 0.041200000792742, description = "Strikes enemies in front of you with a surge of flame. Burning enemies are dealt more damage. If you hit an ignited enemy, will create burning ground under them. Your damage modifiers don't apply to this burning ground.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -6641,7 +6636,7 @@ skills["FlameSurge"] = { { "flame_whip_damage_+%_final_vs_burning_enemies", 1 }, }, constantStats = { - { "flame_surge_ignite_damage_as_burning_ground_damage_%", 25 }, + { "flame_surge_ignite_damage_as_burning_ground_damage_%", 30 }, { "flame_surge_burning_ground_creation_cooldown_ms", 2000 }, { "base_skill_effect_duration", 4000 }, }, @@ -6659,46 +6654,46 @@ skills["FlameSurge"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 50, 0, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 52, 0, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 54, 1, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 56, 1, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 58, 2, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 60, 2, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 62, 3, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 64, 3, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 66, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 68, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 70, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 72, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 74, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 76, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 78, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 80, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 82, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 84, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 86, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 88, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 90, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 92, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 94, 11, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 96, 11, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 98, 12, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 100, 12, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 102, 13, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 104, 13, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 106, 14, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 108, 14, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 108, 14, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 110, 15, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 110, 15, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 112, 15, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 112, 15, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 114, 16, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 114, 16, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 116, 16, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 116, 16, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 118, 17, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 50, 0, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 52, 0, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 54, 1, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 56, 1, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 58, 2, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 60, 2, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 62, 3, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 64, 3, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 66, 4, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 68, 4, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 70, 5, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 72, 5, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 74, 6, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 76, 6, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 78, 7, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 80, 7, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 82, 8, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 84, 8, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 86, 9, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 88, 9, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 90, 10, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 92, 10, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 94, 11, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 96, 11, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 98, 12, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 100, 12, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 102, 13, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 104, 13, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 106, 14, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 108, 14, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 108, 14, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 110, 15, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 110, 15, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 112, 15, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 112, 15, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 114, 16, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 114, 16, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 116, 16, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 116, 16, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 118, 17, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, }, } skills["FlameSurgeAltX"] = { @@ -6706,7 +6701,7 @@ skills["FlameSurgeAltX"] = { baseTypeName = "Flame Surge of Combusting", color = 3, baseEffectiveness = 4.6199998855591, - incrementalEffectiveness = 0.037799999117851, + incrementalEffectiveness = 0.040500000119209, description = "Strikes enemies in front of you with a surge of flame. If this ignites an enemy a large area of burning ground will be created under them. Your damage modifiers don't apply to this burning ground.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -6750,46 +6745,46 @@ skills["FlameSurgeAltX"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 17, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 10, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 10, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 11, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 11, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 13, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 13, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 14, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 14, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 14, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 17, critChance = 5, damageEffectiveness = 4.1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["Flameblast"] = { @@ -6797,7 +6792,7 @@ skills["Flameblast"] = { baseTypeName = "Flameblast", color = 3, baseEffectiveness = 0.86769998073578, - incrementalEffectiveness = 0.044599998742342, + incrementalEffectiveness = 0.047600001096725, description = "Channels to build up a large explosion, which is released when you stop using the skill. The longer you channel, the larger the area of effect and damage of the explosion.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -6840,7 +6835,7 @@ skills["Flameblast"] = { { "charged_blast_spell_damage_+%_final_per_stack", 165 }, { "flameblast_ailment_damage_+%_final_per_stack", 60 }, { "base_chance_to_ignite_%", 50 }, - { "vaal_flameblast_radius_+_per_stage", 3 }, + { "vaal_flameblast_radius_+_per_stage", 4 }, { "flameblast_maximum_stages", 10 }, }, stats = { @@ -6855,46 +6850,46 @@ skills["Flameblast"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, }, } skills["FlameblastAltX"] = { @@ -6902,7 +6897,7 @@ skills["FlameblastAltX"] = { baseTypeName = "Flameblast of Celerity", color = 3, baseEffectiveness = 0.94999998807907, - incrementalEffectiveness = 0.044599998742342, + incrementalEffectiveness = 0.047600001096725, description = "Channels to build up an explosion, which is released when you stop using the skill or automatically at maximum stages. The longer you channel, the larger the area of effect and damage of the explosion.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -6943,7 +6938,7 @@ skills["FlameblastAltX"] = { constantStats = { { "vaal_flameblast_radius_+_per_stage", 7 }, { "flameblast_maximum_stages", 3 }, - { "flameblast_base_radius_override", 8 }, + { "flameblast_base_radius_override", 10 }, { "charged_blast_spell_damage_+%_final_per_stack", 220 }, }, stats = { @@ -6958,46 +6953,46 @@ skills["FlameblastAltX"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, }, } skills["FlameblastAltY"] = { @@ -7005,7 +7000,7 @@ skills["FlameblastAltY"] = { baseTypeName = "Flameblast of Contraction", color = 3, baseEffectiveness = 0.30000001192093, - incrementalEffectiveness = 0.044599998742342, + incrementalEffectiveness = 0.047600001096725, description = "Channels to concentrate an explosion, which is released when you stop using the skill. The longer you channel, the larger the damage of the explosion, but the smaller the area.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -7050,7 +7045,7 @@ skills["FlameblastAltY"] = { { "base_chance_to_ignite_%", 50 }, { "vaal_flameblast_radius_+_per_stage", -2 }, { "flameblast_maximum_stages", 10 }, - { "flameblast_base_radius_override", 26 }, + { "flameblast_base_radius_override", 30 }, { "charged_blast_spell_damage_+%_final_per_stack", 600 }, { "flameblast_ailment_damage_+%_final_per_stack", 250 }, }, @@ -7066,46 +7061,46 @@ skills["FlameblastAltY"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.3, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, }, } skills["VaalFlameblast"] = { @@ -7113,7 +7108,7 @@ skills["VaalFlameblast"] = { baseTypeName = "Vaal Flameblast", color = 3, baseEffectiveness = 1.1175999641418, - incrementalEffectiveness = 0.035199999809265, + incrementalEffectiveness = 0.039000000804663, description = "Targets an area and builds up stages in that area based on cast speed. It explodes every 3 stages, until it reaches a maximum of 15. As it gains more stages, the area gets smaller but the damage gets higher.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Vaal] = true, [SkillType.Fire] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -7159,46 +7154,46 @@ skills["VaalFlameblast"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 28, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 31, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 34, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 37, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 40, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 42, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 44, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 46, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 48, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 50, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 52, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 54, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 56, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 58, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 60, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 62, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 64, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 66, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 68, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 70, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 72, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 74, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 76, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 78, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 80, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 82, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 84, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 86, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 88, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 90, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 91, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 92, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 93, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 94, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 95, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 96, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 97, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 98, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 99, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 100, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 28, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 31, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 34, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 37, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 40, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 42, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 44, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 46, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 48, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 50, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 52, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 54, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 56, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 58, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 60, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 62, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 64, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 66, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 68, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 70, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 72, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 74, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 76, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 78, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 80, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 82, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 84, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 86, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 88, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 90, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 91, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 92, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 93, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 94, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 95, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 96, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 97, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 98, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 99, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 100, soulPreventionDuration = 3, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, }, } skills["Flammability"] = { @@ -7471,7 +7466,7 @@ skills["ForbiddenRite"] = { }, constantStats = { { "soulfeast_take_%_maximum_life_as_chaos_damage", 40 }, - { "skill_base_chaos_damage_%_maximum_life", 12 }, + { "skill_base_chaos_damage_%_maximum_life", 14 }, { "skill_base_chaos_damage_%_maximum_energy_shield", 5 }, { "soulfeast_take_%_maximum_energy_shield_as_chaos_damage", 25 }, { "active_skill_projectile_speed_+%_variation_final", 20 }, @@ -7682,7 +7677,7 @@ skills["FreezingPulse"] = { name = "Freezing Pulse", baseTypeName = "Freezing Pulse", color = 3, - baseEffectiveness = 2.8482000827789, + baseEffectiveness = 3.2400000095367, incrementalEffectiveness = 0.046000000089407, description = "An icy projectile which has a chance to freeze enemies it passes through. The projectile fades quickly, reducing damage and freezing chance until it dissipates.", skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, }, @@ -7706,6 +7701,7 @@ skills["FreezingPulse"] = { stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", + "base_number_of_projectiles", "base_is_projectile", "always_pierce", "display_what_freezing_pulse_does", @@ -7715,54 +7711,54 @@ skills["FreezingPulse"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.69999998807907, 1.1000000238419, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 1, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [2] = { 0.75, 1.1499999761581, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 2, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [3] = { 0.75, 1.1499999761581, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 4, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 11, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 32, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 36, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 67, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [1] = { 0.69999998807907, 1.1000000238419, 1, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.75, 1.1499999761581, 1, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.75, 1.1499999761581, 1, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 3, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 3, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 3.1, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 3.1, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, }, } skills["FrostBomb"] = { name = "Frost Bomb", baseTypeName = "Frost Bomb", color = 3, - baseEffectiveness = 1.8422000408173, - incrementalEffectiveness = 0.051899999380112, + baseEffectiveness = 2.1099998950958, + incrementalEffectiveness = 0.052999999374151, description = "Creates a crystal that pulses with cold for a duration. Each pulse applies a debuff to nearby enemies for a secondary duration which reduces life regeneration rate, and also inflicts Cold Exposure. When the crystal's duration ends, it explodes, dealing heavy cold damage to enemies around it.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -7792,6 +7788,7 @@ skills["FrostBomb"] = { { "base_secondary_skill_effect_duration", 5000 }, { "base_cold_damage_resistance_%", -15 }, { "life_regeneration_rate_+%", -75 }, + { "base_chance_to_freeze_%", 25 }, }, stats = { "spell_minimum_base_cold_damage", @@ -7805,54 +7802,54 @@ skills["FrostBomb"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 2.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 2.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 2.5, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 2.5, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 2.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 2.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 2.5, critChance = 6, damageEffectiveness = 2, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 2.5, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 2.5, critChance = 6, damageEffectiveness = 3, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 9, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 9, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 13, cooldown = 2.5, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.2, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.6, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.7, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.8, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 9, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 9, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 13, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 3.8, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, }, } skills["FrostBombAltX"] = { name = "Frost Bomb of Instability", baseTypeName = "Frost Bomb of Instability", color = 3, - baseEffectiveness = 1.5599999427795, - incrementalEffectiveness = 0.051899999380112, + baseEffectiveness = 1.789999961853, + incrementalEffectiveness = 0.052999999374151, description = "Creates a crystal which lasts for a duration. When the crystal's duration ends, it explodes, dealing cold damage to enemies around it.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -7867,6 +7864,7 @@ skills["FrostBombAltX"] = { }, constantStats = { { "base_skill_effect_duration", 1500 }, + { "base_chance_to_freeze_%", 25 }, { "active_skill_base_area_of_effect_radius", 20 }, }, stats = { @@ -7880,54 +7878,54 @@ skills["FrostBombAltX"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 6, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 9, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 61, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 6, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 9, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 2.2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2.6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2.8, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 3, levelRequirement = 61, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, }, } skills["FrostBombAltY"] = { name = "Frost Bomb of Forthcoming", baseTypeName = "Frost Bomb of Forthcoming", color = 3, - baseEffectiveness = 2.0157999992371, - incrementalEffectiveness = 0.053300000727177, + baseEffectiveness = 2.3099999427795, + incrementalEffectiveness = 0.054499998688698, description = "Creates a crystal which lasts for a duration. When the crystal's duration ends, it explodes, dealing heavy cold damage to enemies around it.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Cold] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -7953,7 +7951,8 @@ skills["FrostBombAltY"] = { { "base_skill_effect_duration", 25 }, }, constantStats = { - { "base_skill_effect_duration", 2500 }, + { "base_skill_effect_duration", 2000 }, + { "base_chance_to_freeze_%", 25 }, { "active_skill_hit_damage_+%_final_per_100ms_duration", 10 }, { "active_skill_base_area_of_effect_radius", 26 }, { "active_skill_ailment_damage_+%_final_per_100ms_duration", 3 }, @@ -7970,46 +7969,46 @@ skills["FrostBombAltY"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 4, critChance = 6, damageEffectiveness = 2, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 4, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 6, damageEffectiveness = 3, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 4, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 9, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 9, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 13, cooldown = 4, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.2, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.2, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.6, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 2, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.7, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.8, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 3, cooldown = 4, critChance = 7.5, damageEffectiveness = 3.1, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 4, cooldown = 4, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 7.5, damageEffectiveness = 3.7, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 5, cooldown = 4, critChance = 7.5, damageEffectiveness = 3.9, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 7.5, damageEffectiveness = 4, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.2, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 6, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.3, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.5, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 7, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 8, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 9, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 9, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 10, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 11, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 12, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 13, cooldown = 4, critChance = 7.5, damageEffectiveness = 4.6, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, }, } skills["FrostShield"] = { @@ -8330,46 +8329,46 @@ skills["Frostblink"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 15, 80, 0, 0, cooldown = 3, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 15, 81, 2, 0, cooldown = 3, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 12, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 15, 82, 4, 0, cooldown = 2.95, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 13, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 15, 83, 6, 0, cooldown = 2.95, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 13, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 16, 84, 8, 0, cooldown = 2.9, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 16, 85, 10, 1, cooldown = 2.9, critChance = 5, damageEffectiveness = 2, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 16, 86, 12, 1, cooldown = 2.9, critChance = 5, damageEffectiveness = 2, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 16, 87, 14, 1, cooldown = 2.85, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 17, 88, 16, 1, cooldown = 2.85, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 17, 89, 18, 1, cooldown = 2.8, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 17, 90, 20, 2, cooldown = 2.8, critChance = 5, damageEffectiveness = 2.2, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 17, 91, 22, 2, cooldown = 2.8, critChance = 5, damageEffectiveness = 2.2, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 18, 92, 24, 2, cooldown = 2.75, critChance = 5, damageEffectiveness = 2.3, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 18, 93, 26, 2, cooldown = 2.75, critChance = 5, damageEffectiveness = 2.3, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 18, 94, 28, 2, cooldown = 2.7, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 18, 95, 30, 3, cooldown = 2.7, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 19, 96, 32, 3, cooldown = 2.7, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 19, 97, 34, 3, cooldown = 2.65, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 19, 98, 36, 3, cooldown = 2.65, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 19, 99, 38, 3, cooldown = 2.6, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 20, 100, 40, 4, cooldown = 2.6, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 20, 101, 42, 4, cooldown = 2.6, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 20, 102, 44, 4, cooldown = 2.55, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 20, 103, 46, 4, cooldown = 2.55, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 21, 104, 48, 4, cooldown = 2.5, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 21, 105, 50, 5, cooldown = 2.5, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 21, 106, 52, 5, cooldown = 2.5, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 21, 107, 54, 5, cooldown = 2.45, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 22, 108, 56, 5, cooldown = 2.45, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 22, 109, 58, 5, cooldown = 2.4, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 22, 109, 59, 5, cooldown = 2.4, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 22, 110, 60, 6, cooldown = 2.4, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 22, 110, 61, 6, cooldown = 2.4, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 22, 111, 62, 6, cooldown = 2.4, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 22, 111, 63, 6, cooldown = 2.35, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 23, 112, 64, 6, cooldown = 2.35, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 23, 112, 65, 6, cooldown = 2.35, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 23, 113, 66, 6, cooldown = 2.35, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 23, 113, 67, 6, cooldown = 2.3, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 23, 114, 68, 6, cooldown = 2.3, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 15, 80, 0, 0, cooldown = 3, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 15, 81, 2, 0, cooldown = 3, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 12, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 15, 82, 4, 0, cooldown = 2.95, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 15, 83, 6, 0, cooldown = 2.95, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 13, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 16, 84, 8, 0, cooldown = 2.9, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 14, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 16, 85, 10, 1, cooldown = 2.9, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 14, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 16, 86, 12, 1, cooldown = 2.9, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 16, 87, 14, 1, cooldown = 2.85, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 17, 88, 16, 1, cooldown = 2.85, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 17, 89, 18, 1, cooldown = 2.8, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 17, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 17, 90, 20, 2, cooldown = 2.8, critChance = 7.5, damageEffectiveness = 2.2, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 17, 91, 22, 2, cooldown = 2.8, critChance = 7.5, damageEffectiveness = 2.2, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 18, 92, 24, 2, cooldown = 2.75, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 18, 93, 26, 2, cooldown = 2.75, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 18, 94, 28, 2, cooldown = 2.7, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 18, 95, 30, 3, cooldown = 2.7, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 20, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 19, 96, 32, 3, cooldown = 2.7, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 19, 97, 34, 3, cooldown = 2.65, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 19, 98, 36, 3, cooldown = 2.65, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 19, 99, 38, 3, cooldown = 2.6, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 20, 100, 40, 4, cooldown = 2.6, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 20, 101, 42, 4, cooldown = 2.6, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 20, 102, 44, 4, cooldown = 2.55, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 20, 103, 46, 4, cooldown = 2.55, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 21, 104, 48, 4, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 21, 105, 50, 5, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 21, 106, 52, 5, cooldown = 2.5, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 21, 107, 54, 5, cooldown = 2.45, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 22, 108, 56, 5, cooldown = 2.45, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 22, 109, 58, 5, cooldown = 2.4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 22, 109, 59, 5, cooldown = 2.4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 22, 110, 60, 6, cooldown = 2.4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 22, 110, 61, 6, cooldown = 2.4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 22, 111, 62, 6, cooldown = 2.4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 22, 111, 63, 6, cooldown = 2.35, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 23, 112, 64, 6, cooldown = 2.35, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 23, 112, 65, 6, cooldown = 2.35, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 23, 113, 66, 6, cooldown = 2.35, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 23, 113, 67, 6, cooldown = 2.3, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 23, 114, 68, 6, cooldown = 2.3, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, }, cost = { Mana = 31, }, }, }, } skills["FrostblinkAltX"] = { @@ -8416,46 +8415,46 @@ skills["FrostblinkAltX"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 6, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 9, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 2, levelRequirement = 61, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 2, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 6, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 9, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 61, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, }, } skills["FrostBolt"] = { @@ -8475,6 +8474,9 @@ skills["FrostBolt"] = { qualityStats = { { "projectile_damage_+%_final_if_pierced_enemy", 1 }, }, + constantStats = { + { "base_chance_to_freeze_%", 25 }, + }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", @@ -8486,54 +8488,54 @@ skills["FrostBolt"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 1, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 2, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.6, levelRequirement = 4, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.6, levelRequirement = 7, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 11, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.9, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 2.9, levelRequirement = 32, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3, levelRequirement = 36, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.5, levelRequirement = 67, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, damageEffectiveness = 3.6, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 1, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 2, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.6, levelRequirement = 4, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.6, levelRequirement = 7, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.7, levelRequirement = 11, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.7, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.8, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.8, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 2.9, levelRequirement = 32, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3, levelRequirement = 36, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.1, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.1, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.2, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.5, levelRequirement = 67, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 7.5, damageEffectiveness = 3.6, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, }, } skills["GalvanicField"] = { name = "Galvanic Field", baseTypeName = "Galvanic Field", color = 3, - baseEffectiveness = 0.61500000953674, - incrementalEffectiveness = 0.051399998366833, + baseEffectiveness = 0.70700001716614, + incrementalEffectiveness = 0.052700001746416, description = "Applies a buff boosting chance to shock. When you shock an enemy while you have this buff, creates a spherical field of energy attached to the shocked enemy for a duration, which will damage it and other nearby enemies with beams of lightning. The strength of the field depends on the magnitude of shock affecting the enemy when it is created.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Orb] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", @@ -8586,7 +8588,7 @@ skills["GalvanicField"] = { }, constantStats = { { "base_skill_effect_duration", 6000 }, - { "base_chance_to_shock_%_from_skill", 20 }, + { "base_chance_to_shock_%_from_skill", 50 }, { "base_galvanic_field_beam_delay_ms", 100 }, { "galvanic_field_maximum_number_of_spheres", 1 }, { "galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock", 1 }, @@ -8606,54 +8608,54 @@ skills["GalvanicField"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 700, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 700, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 700, 10, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 700, 10, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 700, 11, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 700, 11, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 700, 11, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 700, 11, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 700, 12, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 43, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 700, 12, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 600, 12, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 49, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 600, 13, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 600, 13, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 55, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 600, 13, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 600, 14, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 600, 14, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 600, 14, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 600, 14, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 600, 15, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 500, 15, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 500, 15, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 500, 15, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 500, 15, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 500, 16, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 500, 16, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 500, 16, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 500, 16, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 500, 17, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 500, 10, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 500, 10, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 490, 10, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 490, 10, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 480, 11, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 480, 11, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 470, 11, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 470, 11, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 460, 12, critChance = 6, levelRequirement = 43, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 460, 12, critChance = 6, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 450, 12, critChance = 6, levelRequirement = 49, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 450, 13, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 440, 13, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 55, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 440, 13, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 430, 14, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 430, 14, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 420, 14, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 420, 14, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 410, 15, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 400, 15, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 400, 15, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 400, 15, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 400, 15, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 400, 16, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 400, 16, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 400, 16, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 400, 16, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 400, 17, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, }, } skills["GalvanicFieldAltX"] = { name = "Galvanic Field of Intensity", baseTypeName = "Galvanic Field of Intensity", color = 3, - baseEffectiveness = 2.0964999198914, - incrementalEffectiveness = 0.052299998700619, + baseEffectiveness = 2.4049999713898, + incrementalEffectiveness = 0.054099999368191, description = "Applies a buff boosting chance to shock. When you shock an enemy while you have this buff, creates a spherical field of energy attached to the shocked enemy for a duration, which will damage it and other nearby enemies with beams of lightning.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Orb] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", @@ -8700,14 +8702,14 @@ skills["GalvanicFieldAltX"] = { }, constantStats = { { "base_skill_effect_duration", 6000 }, - { "base_chance_to_shock_%_from_skill", 20 }, + { "base_chance_to_shock_%_from_skill", 50 }, { "galvanic_field_maximum_number_of_spheres", 1 }, - { "galvanic_field_retargeting_delay_ms", 700 }, { "base_galvanic_field_beam_delay_ms", 200 }, }, stats = { "spell_minimum_base_lightning_damage", "spell_maximum_base_lightning_damage", + "galvanic_field_retargeting_delay_ms", "never_shock", "skill_can_add_multiple_charges_per_action", "quality_display_shock_chance_from_skill_is_gem", @@ -8718,53 +8720,53 @@ skills["GalvanicFieldAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 16, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [2] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 20, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [3] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 24, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [4] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [5] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [6] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [7] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [8] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [9] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 43, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [10] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [11] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 49, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [12] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [13] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 55, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [14] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [15] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [16] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [17] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [18] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [19] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [20] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [21] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [22] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [23] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [24] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [25] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [26] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [27] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [28] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [29] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [30] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [31] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [32] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [33] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [34] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [35] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [36] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [37] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [38] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [39] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [40] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 650, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 650, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 640, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 640, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 630, critChance = 6, damageEffectiveness = 3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 630, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 620, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 620, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 610, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 610, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 600, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 600, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 590, critChance = 6, damageEffectiveness = 4, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 590, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 580, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 580, critChance = 6, damageEffectiveness = 4.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 570, critChance = 6, damageEffectiveness = 4.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 570, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 560, critChance = 6, damageEffectiveness = 4.6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 550, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, }, } skills["GlacialCascade"] = { name = "Glacial Cascade", baseTypeName = "Glacial Cascade", color = 3, - baseEffectiveness = 0.57099997997284, + baseEffectiveness = 0.64999997615814, incrementalEffectiveness = 0.046399999409914, description = "Icicles emerge from the ground in a series of small bursts, each damaging enemies caught in the area and knocking them back in the direction of the next burst.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Physical] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, @@ -8815,46 +8817,46 @@ skills["GlacialCascade"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [2] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [3] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [4] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [5] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [9] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [10] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [11] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [12] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [14] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [15] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [16] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [17] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [18] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [19] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [20] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [22] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [24] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [25] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [26] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [27] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [28] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [29] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [30] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [31] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [32] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [37] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [38] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [39] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [40] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [1] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [3] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [4] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [5] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [9] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [10] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [11] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [12] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [14] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [15] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [16] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [19] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [25] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [28] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -25, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, }, } skills["GlacialCascadeAltX"] = { @@ -9037,46 +9039,46 @@ skills["Hydrosphere"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 1500, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 1811, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 2228, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 2708, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 3276, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 3956, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 4758, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 5711, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 6846, critChance = 5, damageEffectiveness = 0.85, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 8178, critChance = 5, damageEffectiveness = 0.85, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 9720, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 11555, critChance = 5, damageEffectiveness = 0.95, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 13704, critChance = 5, damageEffectiveness = 0.95, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 17375, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 21981, critChance = 5, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 28534, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 39339, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 56804, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 81482, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 69, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 103048, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 117720, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 128197, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 139010, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 151382, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 164208, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 178841, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 193959, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 210689, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 227952, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 245233, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 260395, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 270000, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 279745, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 289629, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 299653, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 310830, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 322166, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 333662, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 345316, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 357494, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 1500, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 1811, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 2228, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 2708, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 3276, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 3956, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 4758, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 5711, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 6846, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 8178, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 9720, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 11555, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 13704, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 17375, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 21981, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 28534, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 39339, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 56804, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 81482, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 69, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 103048, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 117720, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 128197, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 139010, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 151382, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 164208, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 178841, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 193959, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 210689, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 227952, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 245233, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 260395, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 270000, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 279745, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 289629, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 299653, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 310830, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 322166, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 333662, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 345316, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 357494, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, }, } skills["Hexblast"] = { @@ -9088,7 +9090,7 @@ skills["Hexblast"] = { description = "Deals chaos damage to a single enemy, dealing more damage if they are Hexed, then removing the Hex. If the enemy was Hexed, also deals area damage to other enemies around the target, boosting damage and removing Hexes from those enemies in the same way.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Hex] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 1, + castTime = 0.85, parts = { { name = "Target", @@ -9140,46 +9142,46 @@ skills["Hexblast"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3, levelRequirement = 28, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [2] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3, levelRequirement = 31, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [3] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3, levelRequirement = 34, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [4] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3, levelRequirement = 37, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [5] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.1, levelRequirement = 40, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [6] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.1, levelRequirement = 42, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [7] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.1, levelRequirement = 44, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [8] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.1, levelRequirement = 46, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [9] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 48, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [10] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 50, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [11] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 52, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [12] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 54, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [13] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 56, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [14] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.3, levelRequirement = 58, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [15] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.3, levelRequirement = 60, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [16] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.3, levelRequirement = 62, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [17] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.3, levelRequirement = 64, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [18] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 66, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [19] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 68, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [20] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 70, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [21] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 72, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [22] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 74, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [23] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 76, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [24] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 78, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [25] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 80, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [26] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 82, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [27] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 84, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [28] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 86, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, - [29] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 88, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 37, }, }, - [30] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 90, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 37, }, }, - [31] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 91, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [32] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 92, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [33] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 93, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [34] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 94, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, - [35] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 95, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, - [36] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 96, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, - [37] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 97, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, - [38] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 98, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, - [39] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 99, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 41, }, }, - [40] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 100, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 41, }, }, + [1] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3, levelRequirement = 28, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [2] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3, levelRequirement = 31, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [3] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3, levelRequirement = 34, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3, levelRequirement = 37, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.1, levelRequirement = 40, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [6] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.1, levelRequirement = 42, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [7] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.1, levelRequirement = 44, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [8] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.1, levelRequirement = 46, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [9] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 48, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [10] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 50, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [11] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 52, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [12] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 54, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [13] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.2, levelRequirement = 56, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [14] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.3, levelRequirement = 58, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [15] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.3, levelRequirement = 60, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [16] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.3, levelRequirement = 62, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [17] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.3, levelRequirement = 64, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [18] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 66, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 68, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [20] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 70, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [21] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 72, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [22] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 74, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 76, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [24] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 78, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [25] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 80, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [26] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 82, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [27] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 84, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 86, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 88, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [30] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 90, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [31] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 91, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 92, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [33] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 93, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [34] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 94, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 95, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [36] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 96, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [37] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 97, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [38] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 98, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [39] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 99, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 4, damageEffectiveness = 3.4, levelRequirement = 100, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, }, } skills["HexblastAltX"] = { @@ -9191,7 +9193,7 @@ skills["HexblastAltX"] = { description = "Deals chaos damage to a single enemy, dealing more damage if they are Hexed, then removing the Hex. If the enemy was Hexed, also deals area damage to other enemies around the target, boosting damage and removing Hexes from those enemies in the same way.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Hex] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 1, + castTime = 0.85, parts = { { name = "Target", @@ -9243,46 +9245,46 @@ skills["HexblastAltX"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 28, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [2] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 31, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [3] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 34, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [4] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 37, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [5] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 40, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [6] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 42, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [7] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 44, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [8] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 46, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [9] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 48, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [10] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 50, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [11] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 52, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [12] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 54, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [13] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 56, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [14] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 58, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [15] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 60, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [16] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 62, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [17] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 64, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [18] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 66, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [19] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 68, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [20] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 70, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [21] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 72, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [22] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 74, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [23] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 76, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [24] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 78, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [25] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 80, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [26] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 82, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [27] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 84, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [28] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 86, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, - [29] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 88, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 37, }, }, - [30] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 90, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 37, }, }, - [31] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 91, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [32] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 92, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [33] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 93, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, - [34] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 94, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, - [35] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 95, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, - [36] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 96, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, - [37] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 97, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, - [38] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 98, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 40, }, }, - [39] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 99, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 41, }, }, - [40] = { 0.80000001192093, 1.2000000476837, cooldown = 2, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 100, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 41, }, }, + [1] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 28, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [2] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 31, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [3] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 34, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 37, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 40, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [6] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 42, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [7] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 44, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [8] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 46, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [9] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 48, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [10] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 50, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [11] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 52, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [12] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 54, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [13] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 56, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [14] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 58, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [15] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 60, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [16] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 62, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [17] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 64, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [18] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 66, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 68, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [20] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 70, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [21] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 72, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [22] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 74, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 76, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [24] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 78, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [25] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 80, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [26] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 82, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [27] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 84, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 86, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 88, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [30] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 90, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [31] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 91, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 92, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [33] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 93, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, + [34] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 94, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 95, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [36] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 96, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [37] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 97, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [38] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 98, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [39] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 99, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, cooldown = 1, critChance = 7.5, damageEffectiveness = 3.4, levelRequirement = 100, storedUses = 3, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, }, } skills["HexblastAltY"] = { @@ -9310,11 +9312,11 @@ skills["HexblastAltY"] = { area = true, }, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.1 }, + { "active_skill_base_area_of_effect_radius", 0.15 }, }, constantStats = { { "hexblast_%_chance_to_not_consume_hex", 100 }, - { "active_skill_base_area_of_effect_radius", 25 }, + { "active_skill_base_area_of_effect_radius", 28 }, }, stats = { "spell_minimum_base_chaos_damage", @@ -9326,46 +9328,46 @@ skills["HexblastAltY"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 3.7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, }, } skills["HeraldOfThunder"] = { @@ -9482,8 +9484,8 @@ skills["IceNova"] = { name = "Ice Nova", baseTypeName = "Ice Nova", color = 3, - baseEffectiveness = 2.2599999904633, - incrementalEffectiveness = 0.043600000441074, + baseEffectiveness = 2.5009999275208, + incrementalEffectiveness = 0.043999999761581, description = "A circle of ice expands from the caster.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -9497,6 +9499,7 @@ skills["IceNova"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 26 }, + { "base_chance_to_freeze_%", 25 }, }, stats = { "spell_minimum_base_cold_damage", @@ -9509,46 +9512,46 @@ skills["IceNova"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 2, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 2, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 2, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2.4, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["IceNovaAltX"] = { @@ -9575,6 +9578,7 @@ skills["IceNovaAltX"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 18 }, + { "base_chance_to_freeze_%", 25 }, { "ice_nova_number_of_frost_bolts_to_cast_on", 2 }, { "ice_nova_damage_when_cast_on_frostbolt_+%_final", 50 }, }, @@ -9589,54 +9593,54 @@ skills["IceNovaAltX"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["IceNovaAltY"] = { name = "Ice Nova of Deep Freeze", baseTypeName = "Ice Nova of Deep Freeze", color = 3, - baseEffectiveness = 1.4689999818802, - incrementalEffectiveness = 0.043600000441074, + baseEffectiveness = 1.8200000524521, + incrementalEffectiveness = 0.043999999761581, description = "A circle of ice expands from the caster.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -9654,7 +9658,7 @@ skills["IceNovaAltY"] = { { "ice_nova_freeze_as_though_damage_+%_final", 4 }, }, constantStats = { - { "base_chance_to_freeze_%", 50 }, + { "base_chance_to_freeze_%", 100 }, { "active_skill_base_area_of_effect_radius", 28 }, }, stats = { @@ -9669,54 +9673,54 @@ skills["IceNovaAltY"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 300, 0, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 310, 0, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 320, 0, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 330, 0, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 340, 1, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 350, 1, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 360, 1, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 370, 1, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 380, 2, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 390, 2, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 400, 2, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 410, 2, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 420, 3, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 430, 3, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 440, 3, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 450, 3, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 460, 4, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 470, 4, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 480, 4, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 490, 4, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 500, 5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 510, 5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 520, 5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 530, 5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 540, 6, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 550, 6, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 560, 6, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 570, 6, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 580, 7, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 590, 7, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 595, 7, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 600, 7, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 605, 7, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 610, 7, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 615, 8, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 620, 8, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 625, 8, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 630, 8, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 635, 8, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 640, 8, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 300, 0, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 310, 0, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 320, 0, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 330, 0, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 340, 1, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 350, 1, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 360, 1, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 370, 1, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 380, 2, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 390, 2, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 400, 2, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 410, 2, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 420, 3, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 430, 3, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 440, 3, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 450, 3, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 460, 4, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 470, 4, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 480, 4, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 490, 4, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 500, 5, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 510, 5, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 520, 5, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 530, 5, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 540, 6, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 550, 6, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 560, 6, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 570, 6, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 580, 7, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 590, 7, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 595, 7, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 600, 7, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 605, 7, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 610, 7, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 615, 8, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 620, 8, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 625, 8, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 630, 8, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 635, 8, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 640, 8, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, }, } skills["VaalIceNova"] = { name = "Vaal Ice Nova", baseTypeName = "Vaal Ice Nova", color = 3, - baseEffectiveness = 1.7986999750137, - incrementalEffectiveness = 0.036400001496077, + baseEffectiveness = 1.8700000047684, + incrementalEffectiveness = 0.043000001460314, description = "A chilling circle of ice expands from the caster, repeating from every enemy it hits.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Vaal] = true, [SkillType.Cold] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -9731,7 +9735,8 @@ skills["VaalIceNova"] = { constantStats = { { "active_skill_base_area_of_effect_radius", 26 }, { "ice_nova_number_of_repeats", 5 }, - { "ice_nova_radius_+%_per_repeat", -20 }, + { "ice_nova_radius_+%_per_repeat", -15 }, + { "base_chance_to_freeze_%", 25 }, }, stats = { "spell_minimum_base_cold_damage", @@ -9745,46 +9750,46 @@ skills["VaalIceNova"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 12, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [2] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 15, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [3] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 19, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [4] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 23, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [5] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 27, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [6] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 31, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [7] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 35, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [8] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 38, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [9] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 41, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [10] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 44, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [11] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 47, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [12] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 50, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [13] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 53, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [14] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 56, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [15] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 59, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [16] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 62, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [17] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 64, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [18] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 66, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [19] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 68, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [20] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 70, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [21] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 72, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [22] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 74, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [23] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 76, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [24] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 78, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [25] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 80, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [26] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 82, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [27] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 84, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [28] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 86, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [29] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 88, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [30] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 90, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [31] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 91, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [32] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 92, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [33] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 93, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [34] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 94, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [35] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 95, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [36] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 96, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [37] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 97, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [38] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 98, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [39] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 99, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, - [40] = { 0.85000002384186, 1.25, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 100, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [1] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 12, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [2] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 15, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [3] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 19, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [4] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 23, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [5] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 27, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [6] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 31, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [7] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 35, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [8] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 38, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [9] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 41, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [10] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 44, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [11] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 47, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [12] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 50, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [13] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 53, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [14] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 56, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [15] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 59, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [16] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 62, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [17] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 64, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [18] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 66, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [19] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 68, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [20] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 70, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [21] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 72, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [22] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 74, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [23] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 76, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [24] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 78, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [25] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 80, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [26] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 82, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [27] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 84, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [28] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 86, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [29] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 88, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [30] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 90, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [31] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 91, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [32] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 92, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [33] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 93, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [34] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 94, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [35] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 95, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [36] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 96, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [37] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 97, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [38] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 98, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [39] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 99, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, + [40] = { 0.85000002384186, 1.25, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 100, soulPreventionDuration = 2, vaalStoredUses = 2, statInterpolation = { 3, 3, }, cost = { Soul = 25, }, }, }, } skills["IceSpear"] = { @@ -9855,46 +9860,46 @@ skills["IceSpear"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 30, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 31, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 32, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 33, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 34, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 35, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 36, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 37, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 38, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 39, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 40, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 41, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 42, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 43, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 44, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 45, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 46, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 47, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 48, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 49, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 50, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 51, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 52, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 53, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 54, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 55, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 56, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 57, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 58, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 59, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 60, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 61, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 62, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 63, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 64, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 65, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 66, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 67, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 68, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 69, critChance = 7, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 30, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 31, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 32, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 33, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 34, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 35, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 36, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 37, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 38, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 39, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 40, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 41, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 42, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 43, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 44, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 45, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 46, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 47, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 48, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 49, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 50, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 51, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 52, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 53, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 54, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 55, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 56, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 57, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 58, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 59, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 60, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 61, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 62, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 63, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 64, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 65, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 66, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 67, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 68, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 69, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["IceSpearAltX"] = { @@ -9958,46 +9963,46 @@ skills["IceSpearAltX"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 2, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 6, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 7, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 8, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 9, critChance = 7.5, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["IcicleMine"] = { @@ -10270,12 +10275,12 @@ skills["Incinerate"] = { name = "Incinerate", baseTypeName = "Incinerate", color = 3, - baseEffectiveness = 0.28540000319481, - incrementalEffectiveness = 0.051300000399351, + baseEffectiveness = 0.31999999284744, + incrementalEffectiveness = 0.054000001400709, description = "Continuously launches a torrent of fire from your hand, repeatedly damaging enemies. As you channel this spell longer, the flames spread wider close to you and spread longer directly in front of you. When you stop channelling you release a wave of fire damage over a wide and long area that will apply a powerful Ignite.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.2, + castTime = 0.18, preDamageFunc = function(activeSkill, output) if activeSkill.skillPart == 2 then activeSkill.skillData.hitTimeMultiplier = math.max(activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "Multiplier:IncinerateStage") - activeSkill.skillModList:Sum("BASE", activeSkill.skillCfg, "Multiplier:IncinerateMinimumStage") - 0.4175, 0.5825) --First stage takes 0.5825x time to channel compared to subsequent stages @@ -10339,7 +10344,7 @@ skills["Incinerate"] = { { "expanding_fire_cone_maximum_number_of_stages", 0.1 }, }, constantStats = { - { "expanding_fire_cone_maximum_number_of_stages", 8 }, + { "expanding_fire_cone_maximum_number_of_stages", 10 }, { "grant_expanding_fire_cone_release_ignite_damage_+%_final", 250 }, { "expanding_fire_cone_release_hit_damage_+%_final", 500 }, { "flamethrower_damage_+%_per_stage_final", 25 }, @@ -10362,54 +10367,54 @@ skills["Incinerate"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, [6] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, [7] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, [8] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, [9] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, }, } skills["IncinerateAltX"] = { name = "Incinerate of Expanse", baseTypeName = "Incinerate of Expanse", color = 3, - baseEffectiveness = 0.28540000319481, - incrementalEffectiveness = 0.051300000399351, + baseEffectiveness = 0.31999999284744, + incrementalEffectiveness = 0.054000001400709, description = "Continuously launches a torrent of fire from your hand, repeatedly damaging enemies. As you channel this spell longer, the flames spread wider close to you and spread longer directly in front of you. When you stop channelling you release a slow-moving wave of fire damage over a very large area that will apply a powerful Ignite.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -10501,46 +10506,46 @@ skills["IncinerateAltX"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 4, 15, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, [6] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, [7] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, [8] = { 0.80000001192093, 1.2000000476837, 4, 16, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, [9] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 5, 17, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 5, 18, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 5, 19, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, 20, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, 21, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 6, 22, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 6, 23, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 6, 24, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, }, } skills["IncinerateAltY"] = { @@ -10548,7 +10553,7 @@ skills["IncinerateAltY"] = { baseTypeName = "Incinerate of Venting", color = 3, baseEffectiveness = 0.31389999389648, - incrementalEffectiveness = 0.051300000399351, + incrementalEffectiveness = 0.054000001400709, description = "Continuously launches a torrent of fire from your hand, repeatedly damaging enemies. As you channel this spell longer, the flames spread wider close to you and spread longer directly in front of you.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -10615,46 +10620,46 @@ skills["IncinerateAltY"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 4, 24, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 4, 24, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 4, 25, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 4, 25, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 4, 25, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 4, 26, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 4, 26, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 4, 26, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 5, 27, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 4, 24, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 12, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 4, 24, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 15, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 4, 25, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 19, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 4, 25, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 23, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 4, 25, critChance = 5, damageEffectiveness = 0.45, levelRequirement = 27, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 4, 26, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 4, 26, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 35, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 4, 26, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 38, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 5, 27, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 41, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 2, }, }, [10] = { 0.80000001192093, 1.2000000476837, 5, 27, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, [11] = { 0.80000001192093, 1.2000000476837, 5, 27, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 47, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, [12] = { 0.80000001192093, 1.2000000476837, 5, 27, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 5, 28, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 5, 28, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 5, 28, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 5, 29, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 5, 29, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 5, 29, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 5, 30, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 5, 30, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, 30, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, 31, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, 31, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, 31, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, 32, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, 32, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, 32, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 6, 35, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 6, 35, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 5, 28, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 5, 28, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 5, 28, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 5, 29, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 3, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 5, 29, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 5, 29, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 5, 30, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 5, 30, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, 30, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, 31, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, 31, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, 31, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, 32, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 4, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, 32, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, 32, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 6, 33, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 6, 34, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 6, 35, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 6, 35, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, }, } skills["KineticBlast"] = { @@ -10688,11 +10693,11 @@ skills["KineticBlast"] = { }, constantStats = { { "cluster_burst_spawn_amount", 4 }, - { "active_skill_area_damage_+%_final", -35 }, + { "active_skill_area_damage_+%_final", -40 }, { "active_skill_base_area_of_effect_radius", 14 }, { "active_skill_base_secondary_area_of_effect_radius", 20 }, { "active_skill_area_of_effect_description_mode", 1 }, - { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 200 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, }, stats = { "base_is_projectile", @@ -10785,7 +10790,7 @@ skills["KineticBlastAltX"] = { { "active_skill_base_area_of_effect_radius", 19 }, { "active_skill_base_secondary_area_of_effect_radius", 28 }, { "active_skill_area_of_effect_description_mode", 1 }, - { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 200 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, { "cluster_burst_spawn_amount", 3 }, }, stats = { @@ -10800,44 +10805,44 @@ skills["KineticBlastAltX"] = { levels = { [1] = { 10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 6, }, }, [2] = { 10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [3] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [3] = { 10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 7, }, }, [4] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [5] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [6] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [7] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [8] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [9] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [10] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [11] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [12] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [13] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [14] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [15] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [16] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [17] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [18] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [19] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [20] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [21] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [22] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [23] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [24] = { 19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [25] = { 19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [26] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [27] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [28] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [29] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [30] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [31] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [32] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [33] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [34] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [35] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [36] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [37] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [38] = { 23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [39] = { 23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [40] = { 23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [5] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [6] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [7] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [8] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [9] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [10] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [11] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [12] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [13] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [14] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [15] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [16] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [17] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [18] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [19] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [20] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [21] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [22] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [23] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [24] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [25] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [26] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [27] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [28] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [29] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [30] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [31] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [32] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [33] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [34] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [35] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [36] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [37] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [38] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [39] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [40] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 10, }, }, }, } skills["KineticBolt"] = { @@ -11141,7 +11146,7 @@ skills["KineticFusillade"] = { { "kinetic_fusillade_damage_+%_final_per_projectile_fired", 0.2 }, }, constantStats = { - { "base_skill_effect_duration", 700 }, + { "base_skill_effect_duration", 500 }, { "number_of_chains", 3 }, { "kinetic_fusillade_base_delay_between_projectiles_ms", 50 }, { "kinetic_fusillade_subsequent_targeting_radius", 30 }, @@ -11158,46 +11163,46 @@ skills["KineticFusillade"] = { "quality_display_kinetic_fusillade_is_gem", }, levels = { - [1] = { 3, attackSpeedMultiplier = 100, baseMultiplier = 0.935, damageEffectiveness = 0.935, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [2] = { 3, attackSpeedMultiplier = 100, baseMultiplier = 0.942, damageEffectiveness = 0.942, levelRequirement = 15, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [3] = { 3, attackSpeedMultiplier = 100, baseMultiplier = 0.949, damageEffectiveness = 0.949, levelRequirement = 19, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [4] = { 4, attackSpeedMultiplier = 100, baseMultiplier = 0.956, damageEffectiveness = 0.956, levelRequirement = 23, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [5] = { 4, attackSpeedMultiplier = 100, baseMultiplier = 0.963, damageEffectiveness = 0.963, levelRequirement = 27, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [6] = { 4, attackSpeedMultiplier = 100, baseMultiplier = 0.971, damageEffectiveness = 0.971, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [7] = { 4, attackSpeedMultiplier = 100, baseMultiplier = 0.978, damageEffectiveness = 0.978, levelRequirement = 35, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [8] = { 5, attackSpeedMultiplier = 100, baseMultiplier = 0.985, damageEffectiveness = 0.985, levelRequirement = 38, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [9] = { 5, attackSpeedMultiplier = 100, baseMultiplier = 0.992, damageEffectiveness = 0.992, levelRequirement = 41, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [10] = { 5, attackSpeedMultiplier = 100, baseMultiplier = 0.999, damageEffectiveness = 0.999, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [11] = { 5, attackSpeedMultiplier = 100, baseMultiplier = 1.006, damageEffectiveness = 1.006, levelRequirement = 47, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [12] = { 6, attackSpeedMultiplier = 100, baseMultiplier = 1.013, damageEffectiveness = 1.013, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [13] = { 6, attackSpeedMultiplier = 100, baseMultiplier = 1.02, damageEffectiveness = 1.02, levelRequirement = 53, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [14] = { 6, attackSpeedMultiplier = 100, baseMultiplier = 1.027, damageEffectiveness = 1.027, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [15] = { 6, attackSpeedMultiplier = 100, baseMultiplier = 1.034, damageEffectiveness = 1.034, levelRequirement = 59, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [16] = { 7, attackSpeedMultiplier = 100, baseMultiplier = 1.042, damageEffectiveness = 1.042, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [17] = { 7, attackSpeedMultiplier = 100, baseMultiplier = 1.049, damageEffectiveness = 1.049, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [18] = { 7, attackSpeedMultiplier = 100, baseMultiplier = 1.056, damageEffectiveness = 1.056, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [19] = { 7, attackSpeedMultiplier = 100, baseMultiplier = 1.063, damageEffectiveness = 1.063, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [20] = { 8, attackSpeedMultiplier = 100, baseMultiplier = 1.07, damageEffectiveness = 1.07, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [21] = { 8, attackSpeedMultiplier = 100, baseMultiplier = 1.077, damageEffectiveness = 1.077, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [22] = { 8, attackSpeedMultiplier = 100, baseMultiplier = 1.084, damageEffectiveness = 1.084, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [23] = { 8, attackSpeedMultiplier = 100, baseMultiplier = 1.091, damageEffectiveness = 1.091, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [24] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.098, damageEffectiveness = 1.098, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [25] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.106, damageEffectiveness = 1.106, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [26] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.113, damageEffectiveness = 1.113, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [27] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.12, damageEffectiveness = 1.12, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [28] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.127, damageEffectiveness = 1.127, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [29] = { 10, attackSpeedMultiplier = 100, baseMultiplier = 1.134, damageEffectiveness = 1.134, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [30] = { 10, attackSpeedMultiplier = 100, baseMultiplier = 1.141, damageEffectiveness = 1.141, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [31] = { 10, attackSpeedMultiplier = 100, baseMultiplier = 1.145, damageEffectiveness = 1.145, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [32] = { 10, attackSpeedMultiplier = 100, baseMultiplier = 1.148, damageEffectiveness = 1.148, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [33] = { 11, attackSpeedMultiplier = 100, baseMultiplier = 1.152, damageEffectiveness = 1.152, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [34] = { 11, attackSpeedMultiplier = 100, baseMultiplier = 1.155, damageEffectiveness = 1.155, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [35] = { 11, attackSpeedMultiplier = 100, baseMultiplier = 1.159, damageEffectiveness = 1.159, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [36] = { 11, attackSpeedMultiplier = 100, baseMultiplier = 1.162, damageEffectiveness = 1.162, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [37] = { 12, attackSpeedMultiplier = 100, baseMultiplier = 1.166, damageEffectiveness = 1.166, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [38] = { 12, attackSpeedMultiplier = 100, baseMultiplier = 1.169, damageEffectiveness = 1.169, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [39] = { 12, attackSpeedMultiplier = 100, baseMultiplier = 1.173, damageEffectiveness = 1.173, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [40] = { 12, attackSpeedMultiplier = 100, baseMultiplier = 1.177, damageEffectiveness = 1.177, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [1] = { 3, attackSpeedMultiplier = 25, baseMultiplier = 0.935, damageEffectiveness = 0.935, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [2] = { 3, attackSpeedMultiplier = 25, baseMultiplier = 0.942, damageEffectiveness = 0.942, levelRequirement = 15, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [3] = { 3, attackSpeedMultiplier = 25, baseMultiplier = 0.949, damageEffectiveness = 0.949, levelRequirement = 19, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [4] = { 4, attackSpeedMultiplier = 25, baseMultiplier = 0.956, damageEffectiveness = 0.956, levelRequirement = 23, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [5] = { 4, attackSpeedMultiplier = 25, baseMultiplier = 0.963, damageEffectiveness = 0.963, levelRequirement = 27, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [6] = { 4, attackSpeedMultiplier = 25, baseMultiplier = 0.971, damageEffectiveness = 0.971, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [7] = { 4, attackSpeedMultiplier = 25, baseMultiplier = 0.978, damageEffectiveness = 0.978, levelRequirement = 35, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [8] = { 5, attackSpeedMultiplier = 25, baseMultiplier = 0.985, damageEffectiveness = 0.985, levelRequirement = 38, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [9] = { 5, attackSpeedMultiplier = 25, baseMultiplier = 0.992, damageEffectiveness = 0.992, levelRequirement = 41, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [10] = { 5, attackSpeedMultiplier = 25, baseMultiplier = 0.999, damageEffectiveness = 0.999, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [11] = { 5, attackSpeedMultiplier = 25, baseMultiplier = 1.006, damageEffectiveness = 1.006, levelRequirement = 47, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [12] = { 6, attackSpeedMultiplier = 25, baseMultiplier = 1.013, damageEffectiveness = 1.013, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [13] = { 6, attackSpeedMultiplier = 25, baseMultiplier = 1.02, damageEffectiveness = 1.02, levelRequirement = 53, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [14] = { 6, attackSpeedMultiplier = 25, baseMultiplier = 1.027, damageEffectiveness = 1.027, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [15] = { 6, attackSpeedMultiplier = 25, baseMultiplier = 1.034, damageEffectiveness = 1.034, levelRequirement = 59, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [16] = { 7, attackSpeedMultiplier = 25, baseMultiplier = 1.042, damageEffectiveness = 1.042, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [17] = { 7, attackSpeedMultiplier = 25, baseMultiplier = 1.049, damageEffectiveness = 1.049, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [18] = { 7, attackSpeedMultiplier = 25, baseMultiplier = 1.056, damageEffectiveness = 1.056, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [19] = { 7, attackSpeedMultiplier = 25, baseMultiplier = 1.063, damageEffectiveness = 1.063, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [20] = { 8, attackSpeedMultiplier = 25, baseMultiplier = 1.07, damageEffectiveness = 1.07, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [21] = { 8, attackSpeedMultiplier = 25, baseMultiplier = 1.077, damageEffectiveness = 1.077, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [22] = { 8, attackSpeedMultiplier = 25, baseMultiplier = 1.084, damageEffectiveness = 1.084, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [23] = { 8, attackSpeedMultiplier = 25, baseMultiplier = 1.091, damageEffectiveness = 1.091, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [24] = { 9, attackSpeedMultiplier = 25, baseMultiplier = 1.098, damageEffectiveness = 1.098, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [25] = { 9, attackSpeedMultiplier = 25, baseMultiplier = 1.106, damageEffectiveness = 1.106, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [26] = { 9, attackSpeedMultiplier = 25, baseMultiplier = 1.113, damageEffectiveness = 1.113, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [27] = { 9, attackSpeedMultiplier = 25, baseMultiplier = 1.12, damageEffectiveness = 1.12, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [28] = { 9, attackSpeedMultiplier = 25, baseMultiplier = 1.127, damageEffectiveness = 1.127, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [29] = { 10, attackSpeedMultiplier = 25, baseMultiplier = 1.134, damageEffectiveness = 1.134, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [30] = { 10, attackSpeedMultiplier = 25, baseMultiplier = 1.141, damageEffectiveness = 1.141, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [31] = { 10, attackSpeedMultiplier = 25, baseMultiplier = 1.145, damageEffectiveness = 1.145, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [32] = { 10, attackSpeedMultiplier = 25, baseMultiplier = 1.148, damageEffectiveness = 1.148, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [33] = { 11, attackSpeedMultiplier = 25, baseMultiplier = 1.152, damageEffectiveness = 1.152, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [34] = { 11, attackSpeedMultiplier = 25, baseMultiplier = 1.155, damageEffectiveness = 1.155, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [35] = { 11, attackSpeedMultiplier = 25, baseMultiplier = 1.159, damageEffectiveness = 1.159, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [36] = { 11, attackSpeedMultiplier = 25, baseMultiplier = 1.162, damageEffectiveness = 1.162, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [37] = { 12, attackSpeedMultiplier = 25, baseMultiplier = 1.166, damageEffectiveness = 1.166, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [38] = { 12, attackSpeedMultiplier = 25, baseMultiplier = 1.169, damageEffectiveness = 1.169, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [39] = { 12, attackSpeedMultiplier = 25, baseMultiplier = 1.173, damageEffectiveness = 1.173, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [40] = { 12, attackSpeedMultiplier = 25, baseMultiplier = 1.177, damageEffectiveness = 1.177, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 14, }, }, }, } skills["KineticFusilladeAltX"] = { @@ -11445,7 +11450,7 @@ skills["KineticRain"] = { { "active_skill_secondary_area_of_effect_description_mode", 8 }, { "active_skill_base_tertiary_area_of_effect_radius", 12 }, { "active_skill_tertiary_area_of_effect_description_mode", 1 }, - { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 200 }, }, stats = { "base_number_of_projectiles", @@ -11519,7 +11524,7 @@ skills["KineticRainKineticInstability"] = { { "active_skill_area_of_effect_description_mode", 1 }, { "base_skill_effect_duration", 6000 }, { "kinetic_instability_maximum_number_of_instability_orbs_allowed", 30 }, - { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 200 }, }, stats = { "is_area_damage", @@ -11596,7 +11601,7 @@ skills["KineticRainAltX"] = { { "active_skill_secondary_area_of_effect_description_mode", 8 }, { "active_skill_base_tertiary_area_of_effect_radius", 12 }, { "active_skill_tertiary_area_of_effect_description_mode", 1 }, - { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 200 }, }, stats = { "base_number_of_projectiles", @@ -12368,8 +12373,8 @@ skills["LightningConduit"] = { name = "Lightning Conduit", baseTypeName = "Lightning Conduit", color = 3, - baseEffectiveness = 1.5749000310898, - incrementalEffectiveness = 0.041999999433756, + baseEffectiveness = 1.6100000143051, + incrementalEffectiveness = 0.045099999755621, description = "Lightning strikes all Shocked enemies around a targeted location, then removes Shock from those enemies. Shocks cannot expire on enemies in range while casting this spell. Cannot be supported by Spell Cascade or Unleash.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.DynamicCooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -12407,46 +12412,46 @@ skills["LightningConduit"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, 10, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.5, 1.5, 10, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.5, 1.5, 11, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.5, 1.5, 11, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.5, 1.5, 12, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.5, 1.5, 12, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.5, 1.5, 13, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.5, 1.5, 13, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.5, 1.5, 14, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.5, 1.5, 15, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.5, 1.5, 15, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.5, 1.5, 16, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.5, 1.5, 16, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [14] = { 0.5, 1.5, 17, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [15] = { 0.5, 1.5, 17, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.5, 1.5, 18, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [17] = { 0.5, 1.5, 18, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.5, 1.5, 19, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [19] = { 0.5, 1.5, 19, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.5, 1.5, 10, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.5, 1.5, 10, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [3] = { 0.5, 1.5, 11, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [4] = { 0.5, 1.5, 11, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [5] = { 0.5, 1.5, 12, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [6] = { 0.5, 1.5, 12, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.5, 1.5, 13, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [8] = { 0.5, 1.5, 13, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [9] = { 0.5, 1.5, 14, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.5, 1.5, 15, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [11] = { 0.5, 1.5, 15, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [12] = { 0.5, 1.5, 16, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [13] = { 0.5, 1.5, 16, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [14] = { 0.5, 1.5, 17, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [15] = { 0.5, 1.5, 17, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [16] = { 0.5, 1.5, 18, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [17] = { 0.5, 1.5, 18, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [18] = { 0.5, 1.5, 19, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [19] = { 0.5, 1.5, 19, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [20] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [22] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [24] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [25] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [26] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [27] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [28] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [29] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [30] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [31] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [32] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [34] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [35] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [36] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [37] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [39] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [40] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, }, } skills["LightningConduitAltX"] = { @@ -12458,7 +12463,7 @@ skills["LightningConduitAltX"] = { description = "Lightning strikes a number of enemies around a targeted location. Cannot be supported by Spell Cascade.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, baseFlags = { spell = true, }, @@ -12467,7 +12472,6 @@ skills["LightningConduitAltX"] = { }, constantStats = { { "active_skill_base_area_of_effect_radius", 40 }, - { "active_skill_shock_as_though_damage_+%_final", 20 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -12480,58 +12484,58 @@ skills["LightningConduitAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, 6, 0, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [2] = { 0.5, 1.5, 6, 1, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [3] = { 0.5, 1.5, 7, 2, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [4] = { 0.5, 1.5, 7, 3, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [5] = { 0.5, 1.5, 7, 4, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [6] = { 0.5, 1.5, 8, 5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [7] = { 0.5, 1.5, 8, 6, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [8] = { 0.5, 1.5, 8, 7, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [9] = { 0.5, 1.5, 9, 8, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [10] = { 0.5, 1.5, 9, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [11] = { 0.5, 1.5, 9, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [12] = { 0.5, 1.5, 9, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [13] = { 0.5, 1.5, 10, 12, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.5, 1.5, 10, 13, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [15] = { 0.5, 1.5, 10, 14, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.5, 1.5, 11, 15, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.5, 1.5, 11, 16, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.5, 1.5, 11, 17, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.5, 1.5, 12, 18, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.5, 1.5, 12, 19, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.5, 1.5, 12, 20, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.5, 1.5, 13, 21, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.5, 1.5, 13, 22, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.5, 1.5, 13, 23, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.5, 1.5, 14, 24, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.5, 1.5, 14, 25, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.5, 1.5, 14, 26, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.5, 1.5, 15, 27, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.5, 1.5, 15, 28, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.5, 1.5, 15, 29, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.5, 1.5, 15, 30, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.5, 1.5, 15, 31, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.5, 1.5, 16, 32, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.5, 1.5, 16, 33, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.5, 1.5, 16, 34, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.5, 1.5, 16, 35, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.5, 1.5, 16, 36, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.5, 1.5, 16, 37, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.5, 1.5, 17, 38, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.5, 1.5, 17, 39, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.5, 1.5, 8, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [2] = { 0.5, 1.5, 8, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [3] = { 0.5, 1.5, 9, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [4] = { 0.5, 1.5, 9, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [5] = { 0.5, 1.5, 9, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [6] = { 0.5, 1.5, 10, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [7] = { 0.5, 1.5, 10, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [8] = { 0.5, 1.5, 11, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [9] = { 0.5, 1.5, 11, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [10] = { 0.5, 1.5, 11, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [11] = { 0.5, 1.5, 12, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [12] = { 0.5, 1.5, 12, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [13] = { 0.5, 1.5, 12, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [14] = { 0.5, 1.5, 13, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [15] = { 0.5, 1.5, 13, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [16] = { 0.5, 1.5, 14, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [17] = { 0.5, 1.5, 14, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [18] = { 0.5, 1.5, 14, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [19] = { 0.5, 1.5, 15, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [20] = { 0.5, 1.5, 15, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [21] = { 0.5, 1.5, 17, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [22] = { 0.5, 1.5, 17, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [23] = { 0.5, 1.5, 17, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [24] = { 0.5, 1.5, 18, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [25] = { 0.5, 1.5, 18, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, + [26] = { 0.5, 1.5, 18, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, + [27] = { 0.5, 1.5, 18, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, + [28] = { 0.5, 1.5, 18, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, + [29] = { 0.5, 1.5, 19, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 35, }, }, + [30] = { 0.5, 1.5, 19, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 35, }, }, + [31] = { 0.5, 1.5, 19, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 35, }, }, + [32] = { 0.5, 1.5, 19, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 36, }, }, + [33] = { 0.5, 1.5, 19, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 36, }, }, + [34] = { 0.5, 1.5, 19, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 36, }, }, + [35] = { 0.5, 1.5, 20, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 36, }, }, + [36] = { 0.5, 1.5, 20, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 38, }, }, + [37] = { 0.5, 1.5, 20, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 38, }, }, + [38] = { 0.5, 1.5, 20, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 38, }, }, + [39] = { 0.5, 1.5, 20, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 38, }, }, + [40] = { 0.5, 1.5, 21, 200, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 39, }, }, }, } skills["LightningTendrils"] = { name = "Lightning Tendrils", baseTypeName = "Lightning Tendrils", color = 3, - baseEffectiveness = 0.83469998836517, - incrementalEffectiveness = 0.051100000739098, + baseEffectiveness = 0.91000002622604, + incrementalEffectiveness = 0.054900001734495, description = "While you channel this skill, it releases pulses of electrical energy, dealing lightning damage in a semicircular area in front of you.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Lightning] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.23, + castTime = 0.2, parts = { { name = "Average DPS", @@ -12567,7 +12571,7 @@ skills["LightningTendrils"] = { { "base_critical_strike_multiplier_+", 2 }, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 24 }, + { "active_skill_base_area_of_effect_radius", 26 }, { "lightning_tendrils_channelled_larger_pulse_interval", 3 }, }, stats = { @@ -12583,58 +12587,58 @@ skills["LightningTendrils"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.7000000476837, 0, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 0, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 0, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.10000000149012, 1.7000000476837, 0, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.1, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 14, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 14, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 15, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 15, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 18, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 18, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, }, } skills["LightningTendrilsAltX"] = { name = "Lightning Tendrils of Eccentricity", baseTypeName = "Lightning Tendrils of Eccentricity", color = 3, - baseEffectiveness = 0.37000000476837, - incrementalEffectiveness = 0.051100000739098, + baseEffectiveness = 0.41999998688698, + incrementalEffectiveness = 0.054900001734495, description = "While you channel this skill, it releases pulses of electrical energy, dealing lightning damage in a semicircular area in front of you.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Lightning] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.23, + castTime = 0.2, preDamageFunc = function(activeSkill, output, breakdown) -- DPS multiplier applied to the skills to reflect the DPS from each skill part local interval = activeSkill.skillData.pulseInterval @@ -12693,7 +12697,7 @@ skills["LightningTendrilsAltX"] = { { "base_critical_strike_multiplier_+", 2 }, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 24 }, + { "active_skill_base_area_of_effect_radius", 26 }, { "lightning_tendrils_channelled_larger_pulse_interval", 5 }, { "lightning_tendrils_channelled_larger_pulse_damage_+%_final", 500 }, { "lightning_tendrils_channelled_larger_pulse_area_of_effect_+%_final", 150 }, @@ -12711,58 +12715,58 @@ skills["LightningTendrilsAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.7000000476837, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 0, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 0.3, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.10000000149012, 1.7000000476837, 0, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 0.5, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 0.55, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 0.65, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 14, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 14, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 15, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 15, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 18, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 18, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, }, } skills["LightningTendrilsAltY"] = { name = "Lightning Tendrils of Escalation", baseTypeName = "Lightning Tendrils of Escalation", color = 3, - baseEffectiveness = 1.6799999475479, - incrementalEffectiveness = 0.051100000739098, + baseEffectiveness = 1.8099999427795, + incrementalEffectiveness = 0.054900001734495, description = "While you channel this skill, it releases pulses of electrical energy, dealing lightning damage in a growing semicircular area in front of you.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Lightning] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.35, + castTime = 0.3, statMap = { ["lightning_tendrils_channelled_base_radius_+_per_second_while_channelling"] = { skill("radiusExtra", nil, { type = "Multiplier", var = "ChannellingTime", limit = 2}) @@ -12774,10 +12778,10 @@ skills["LightningTendrilsAltY"] = { channelling = true, }, qualityStats = { - { "active_skill_base_area_of_effect_radius", 0.1 }, + { "shock_maximum_magnitude_+", 0.5 }, }, constantStats = { - { "active_skill_base_area_of_effect_radius", 24 }, + { "active_skill_base_area_of_effect_radius", 26 }, { "lightning_tendrils_channelled_base_radius_+_per_second_while_channelling", 10 }, }, stats = { @@ -12792,46 +12796,46 @@ skills["LightningTendrilsAltY"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.7000000476837, 0, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 0, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 0, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 1, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [1] = { 0.10000000149012, 1.7000000476837, 0, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 1, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 2, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 3, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 14, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 14, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 15, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 15, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 16, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 17, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 18, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 18, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, }, } skills["LightningTrap"] = { @@ -13104,7 +13108,7 @@ skills["LightningWarp"] = { description = "Waits for a duration before teleporting to a targeted destination, with the duration based on the distance and your movement speed. When the teleport occurs, lightning damage is dealt to the area around both where the player was and where they teleported to. Casting again will queue up multiple teleportations to occur in sequence.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Movement] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Travel] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "variable_duration_skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, baseFlags = { spell = true, area = true, @@ -13134,46 +13138,46 @@ skills["LightningWarp"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, -30, 0, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 10, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.10000000149012, 1.8999999761581, -31, 0, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 13, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [3] = { 0.10000000149012, 1.8999999761581, -32, 0, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 17, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [4] = { 0.10000000149012, 1.8999999761581, -33, 1, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 21, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [5] = { 0.10000000149012, 1.8999999761581, -34, 1, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 25, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [6] = { 0.10000000149012, 1.8999999761581, -35, 1, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 29, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [7] = { 0.10000000149012, 1.8999999761581, -36, 1, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 33, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [8] = { 0.10000000149012, 1.8999999761581, -37, 2, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [9] = { 0.10000000149012, 1.8999999761581, -38, 2, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 39, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [10] = { 0.10000000149012, 1.8999999761581, -39, 2, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [11] = { 0.10000000149012, 1.8999999761581, -40, 2, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 45, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [12] = { 0.10000000149012, 1.8999999761581, -41, 2, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [13] = { 0.10000000149012, 1.8999999761581, -42, 3, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 51, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [14] = { 0.10000000149012, 1.8999999761581, -43, 3, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [15] = { 0.10000000149012, 1.8999999761581, -44, 3, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 57, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [16] = { 0.10000000149012, 1.8999999761581, -45, 3, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [17] = { 0.10000000149012, 1.8999999761581, -46, 4, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 63, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [18] = { 0.10000000149012, 1.8999999761581, -47, 4, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [19] = { 0.10000000149012, 1.8999999761581, -48, 4, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [20] = { 0.10000000149012, 1.8999999761581, -49, 4, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [21] = { 0.10000000149012, 1.8999999761581, -50, 5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [22] = { 0.10000000149012, 1.8999999761581, -51, 5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [23] = { 0.10000000149012, 1.8999999761581, -52, 5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [24] = { 0.10000000149012, 1.8999999761581, -53, 5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [25] = { 0.10000000149012, 1.8999999761581, -54, 5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [26] = { 0.10000000149012, 1.8999999761581, -55, 6, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [27] = { 0.10000000149012, 1.8999999761581, -56, 6, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [28] = { 0.10000000149012, 1.8999999761581, -57, 6, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, - [29] = { 0.10000000149012, 1.8999999761581, -58, 6, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, - [30] = { 0.10000000149012, 1.8999999761581, -59, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, - [31] = { 0.10000000149012, 1.8999999761581, -60, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, - [32] = { 0.10000000149012, 1.8999999761581, -60, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, - [33] = { 0.10000000149012, 1.8999999761581, -61, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, - [34] = { 0.10000000149012, 1.8999999761581, -61, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, - [35] = { 0.10000000149012, 1.8999999761581, -62, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, - [36] = { 0.10000000149012, 1.8999999761581, -62, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, - [37] = { 0.10000000149012, 1.8999999761581, -63, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, - [38] = { 0.10000000149012, 1.8999999761581, -63, 7, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, - [39] = { 0.10000000149012, 1.8999999761581, -64, 8, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 35, }, }, - [40] = { 0.10000000149012, 1.8999999761581, -64, 8, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 35, }, }, + [1] = { 0.10000000149012, 1.8999999761581, -30, 0, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 10, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [2] = { 0.10000000149012, 1.8999999761581, -31, 0, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 13, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [3] = { 0.10000000149012, 1.8999999761581, -32, 0, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 17, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [4] = { 0.10000000149012, 1.8999999761581, -33, 1, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 21, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [5] = { 0.10000000149012, 1.8999999761581, -34, 1, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 25, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [6] = { 0.10000000149012, 1.8999999761581, -35, 1, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 29, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [7] = { 0.10000000149012, 1.8999999761581, -36, 1, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 33, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [8] = { 0.10000000149012, 1.8999999761581, -37, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [9] = { 0.10000000149012, 1.8999999761581, -38, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 39, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [10] = { 0.10000000149012, 1.8999999761581, -39, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [11] = { 0.10000000149012, 1.8999999761581, -40, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 45, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [12] = { 0.10000000149012, 1.8999999761581, -41, 2, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [13] = { 0.10000000149012, 1.8999999761581, -42, 3, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 51, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [14] = { 0.10000000149012, 1.8999999761581, -43, 3, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [15] = { 0.10000000149012, 1.8999999761581, -44, 3, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 57, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [16] = { 0.10000000149012, 1.8999999761581, -45, 3, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [17] = { 0.10000000149012, 1.8999999761581, -46, 4, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 63, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [18] = { 0.10000000149012, 1.8999999761581, -47, 4, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [19] = { 0.10000000149012, 1.8999999761581, -48, 4, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, + [20] = { 0.10000000149012, 1.8999999761581, -49, 4, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, + [21] = { 0.10000000149012, 1.8999999761581, -50, 5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, + [22] = { 0.10000000149012, 1.8999999761581, -51, 5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 34, }, }, + [23] = { 0.10000000149012, 1.8999999761581, -52, 5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 35, }, }, + [24] = { 0.10000000149012, 1.8999999761581, -53, 5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 36, }, }, + [25] = { 0.10000000149012, 1.8999999761581, -54, 5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 36, }, }, + [26] = { 0.10000000149012, 1.8999999761581, -55, 6, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 38, }, }, + [27] = { 0.10000000149012, 1.8999999761581, -56, 6, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 38, }, }, + [28] = { 0.10000000149012, 1.8999999761581, -57, 6, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 39, }, }, + [29] = { 0.10000000149012, 1.8999999761581, -58, 6, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 40, }, }, + [30] = { 0.10000000149012, 1.8999999761581, -59, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 40, }, }, + [31] = { 0.10000000149012, 1.8999999761581, -60, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 40, }, }, + [32] = { 0.10000000149012, 1.8999999761581, -60, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 41, }, }, + [33] = { 0.10000000149012, 1.8999999761581, -61, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 41, }, }, + [34] = { 0.10000000149012, 1.8999999761581, -61, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 41, }, }, + [35] = { 0.10000000149012, 1.8999999761581, -62, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 43, }, }, + [36] = { 0.10000000149012, 1.8999999761581, -62, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 43, }, }, + [37] = { 0.10000000149012, 1.8999999761581, -63, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 43, }, }, + [38] = { 0.10000000149012, 1.8999999761581, -63, 7, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 43, }, }, + [39] = { 0.10000000149012, 1.8999999761581, -64, 8, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 44, }, }, + [40] = { 0.10000000149012, 1.8999999761581, -64, 8, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 44, }, }, }, } skills["VaalLightningWarpInstant"] = { @@ -13258,8 +13262,8 @@ skills["RollingMagma"] = { name = "Rolling Magma", baseTypeName = "Rolling Magma", color = 3, - baseEffectiveness = 2.5980000495911, - incrementalEffectiveness = 0.045000001788139, + baseEffectiveness = 1.5070999860764, + incrementalEffectiveness = 0.05290000140667, description = "Lob a fiery orb that deals area damage as it hits the ground. The skill chains, bouncing forward to deal damage multiple times.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Multicastable] = true, [SkillType.Chains] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -13296,46 +13300,46 @@ skills["RollingMagma"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.89999997615814, 1.2000000476837, 2, 0, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.3, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.89999997615814, 1.2000000476837, 2, 0, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.3, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 2, 0, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.3, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 2, 0, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.3, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.6, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.6, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.6, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 3, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 4, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 4, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 4, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 4, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 2, 0, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.89999997615814, 1.2000000476837, 2, 0, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 2, 0, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 2, 0, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, 1, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.2, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.3, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.5, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, 2, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.6, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.8, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 2.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 3, 3, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.1, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 3, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 4, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 4, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 4, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 4, 4, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 4, 5, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 4, 6, PvPDamageMultiplier = -50, critChance = 5, damageEffectiveness = 3.2, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, }, } skills["Malevolence"] = { @@ -13419,6 +13423,97 @@ skills["Malevolence"] = { [40] = { 25, 34, 27, cooldown = 1.2, levelRequirement = 100, manaReservationPercent = 50, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, }, } +skills["ManaInfusedStaff"] = { + name = "Mana-Infused Staff", + baseTypeName = "Mana-Infused Staff", + color = 3, + description = "Infuses your staff with arcane energy, lowering your mana costs and increasing your chance to block. When you block, you release an arcane wave, damaging enemies in a ring-shaped area over a duration.", + skillTypes = { [SkillType.RequiresStaff] = true, [SkillType.Arcane] = true, [SkillType.TotemCastsAlone] = true, [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Instant] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.Cooldown] = true, [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, }, + statDescriptionScope = "buff_skill_stat_descriptions", + castTime = 0, + statMap = { + ["mana_infused_staff_base_trigger_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + ["active_skill_always_reserves_unmodifiable_X%_of_mana"] = { + skill("ManaReservationPercentForced", nil), + }, + ["active_skill_buff_mana_cost_+%_final_to_grant"] = { + mod("ManaCost", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + }, + ["active_skill_buff_block_chance_+%_final_to_grant"] = { + mod("BlockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("SpellBlockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + }, + ["skill_has_added_lightning_damage_equal_to_%_of_maximum_mana"] = { + mod("LightningMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Mana", percent = 1 }), + mod("LightningMax", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Mana", percent = 1 }), + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + qualityStats = { + { "base_skill_effect_duration", 2.5 }, + }, + constantStats = { + { "active_skill_always_reserves_unmodifiable_X%_of_mana", 30 }, + { "active_skill_buff_mana_cost_+%_final_to_grant", -30 }, + { "mana_infused_staff_base_trigger_interval_ms", 1000 }, + { "base_skill_effect_duration", 350 }, + }, + stats = { + "active_skill_buff_block_chance_+%_final_to_grant", + "skill_has_added_lightning_damage_equal_to_%_of_maximum_mana", + "is_area_damage", + "base_skill_show_average_damage_instead_of_dps", + }, + levels = { + [1] = { 20, 35, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 16, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [2] = { 20, 37, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 20, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [3] = { 20, 39, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 24, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [4] = { 20, 41, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 28, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [5] = { 21, 43, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 31, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [6] = { 21, 45, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 34, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [7] = { 21, 47, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 37, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [8] = { 21, 49, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 40, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [9] = { 22, 51, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 43, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [10] = { 22, 53, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 46, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [11] = { 22, 55, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 49, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [12] = { 22, 57, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 52, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [13] = { 23, 59, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 55, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [14] = { 23, 61, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 58, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [15] = { 23, 63, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 60, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [16] = { 23, 65, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 62, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [17] = { 24, 67, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 64, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [18] = { 24, 69, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 66, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [19] = { 24, 71, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 68, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [20] = { 24, 73, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 70, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [21] = { 25, 75, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 72, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [22] = { 25, 77, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 74, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [23] = { 25, 79, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 76, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [24] = { 25, 81, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 78, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [25] = { 26, 83, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 80, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [26] = { 26, 85, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 82, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [27] = { 26, 87, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 84, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [28] = { 26, 89, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 86, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [29] = { 27, 91, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 88, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [30] = { 27, 93, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 90, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [31] = { 27, 94, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 91, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [32] = { 27, 95, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 92, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [33] = { 27, 96, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 93, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [34] = { 27, 97, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 94, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [35] = { 27, 98, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 95, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [36] = { 28, 99, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 96, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [37] = { 28, 100, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 97, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [38] = { 28, 101, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 98, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [39] = { 28, 102, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 99, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + [40] = { 28, 103, cooldown = 1, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 100, manaReservationPercent = 30, storedUses = 1, statInterpolation = { 1, 1, }, }, + }, +} skills["Manabond"] = { name = "Manabond", baseTypeName = "Manabond", @@ -13428,7 +13523,7 @@ skills["Manabond"] = { description = "Deals lightning damage based upon your missing mana in a circular area around the targeted location, as well as in four rectangular extensions whose lengths depend upon your remaining mana.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.AreaSpell] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Cascadable] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Triggerable] = true, [SkillType.Arcane] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.8, + castTime = 0.6, preDamageFunc = function(activeSkill, output) local missingUnreservedManaPercentage = activeSkill.skillData.ManabondMissingUnreservedManaPercentage or 100 local manaGainedAsBaseLightningDamage = math.floor((activeSkill.skillData.ManabondMissingManaGainPercent / 100) * (missingUnreservedManaPercentage / 100) * (output.ManaUnreserved or 0)) @@ -13522,7 +13617,7 @@ skills["OrbOfStorms"] = { description = "Creates a stationary electrical orb that strikes enemies in its area of effect with beams of lightning that can then split to hit more enemies. Modifiers to cast speed will increase how frequently it does this. Casting this skill again will replace the previous orb.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", - castTime = 0.5, + castTime = 0.4, preDamageFunc = function(activeSkill, output) activeSkill.skillData.hitTimeOverride = activeSkill.skillData.hitFrequency / calcLib.mod(activeSkill.skillModList, activeSkill.skillCfg, "Speed") end, @@ -13563,46 +13658,46 @@ skills["OrbOfStorms"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, 10, 3500, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [2] = { 0.5, 1.5, 11, 3450, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.5, 1.5, 12, 3400, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, - [4] = { 0.5, 1.5, 13, 3350, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.5, 1.5, 14, 3300, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.5, 1.5, 15, 3250, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.5, 1.5, 16, 3200, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.5, 1.5, 17, 3150, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [9] = { 0.5, 1.5, 18, 3100, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [10] = { 0.5, 1.5, 19, 3050, cooldown = 0.5, critChance = 5, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [11] = { 0.5, 1.5, 20, 3000, cooldown = 0.5, critChance = 5, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [12] = { 0.5, 1.5, 21, 2950, cooldown = 0.5, critChance = 5, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [13] = { 0.5, 1.5, 22, 2900, cooldown = 0.5, critChance = 5, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [14] = { 0.5, 1.5, 23, 2850, cooldown = 0.5, critChance = 5, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [15] = { 0.5, 1.5, 24, 2800, cooldown = 0.5, critChance = 5, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.5, 1.5, 25, 2750, cooldown = 0.5, critChance = 5, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [17] = { 0.5, 1.5, 26, 2700, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.5, 1.5, 27, 2650, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [19] = { 0.5, 1.5, 28, 2600, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.5, 1.5, 29, 2550, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.5, 1.5, 30, 2500, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.5, 1.5, 31, 2450, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.5, 1.5, 32, 2400, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.5, 1.5, 33, 2350, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.5, 1.5, 34, 2300, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.5, 1.5, 35, 2250, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.5, 1.5, 36, 2200, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.5, 1.5, 37, 2150, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.5, 1.5, 38, 2100, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.5, 1.5, 39, 2050, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.5, 1.5, 39, 2000, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.5, 1.5, 40, 1950, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.5, 1.5, 40, 1900, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.5, 1.5, 41, 1850, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.5, 1.5, 41, 1800, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.5, 1.5, 42, 1750, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.5, 1.5, 42, 1700, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.5, 1.5, 43, 1650, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.5, 1.5, 43, 1600, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.5, 1.5, 44, 1550, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.5, 1.5, 10, 3500, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.5, 1.5, 11, 3450, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.8, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.5, 1.5, 12, 3400, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.5, 1.5, 13, 3350, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.5, 1.5, 14, 3300, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.5, 1.5, 15, 3250, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.5, 1.5, 16, 3200, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [8] = { 0.5, 1.5, 17, 3150, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [9] = { 0.5, 1.5, 18, 3100, cooldown = 0.5, critChance = 5, damageEffectiveness = 0.9, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [10] = { 0.5, 1.5, 19, 3050, cooldown = 0.5, critChance = 5, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [11] = { 0.5, 1.5, 20, 3000, cooldown = 0.5, critChance = 5, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [12] = { 0.5, 1.5, 21, 2950, cooldown = 0.5, critChance = 5, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [13] = { 0.5, 1.5, 22, 2900, cooldown = 0.5, critChance = 5, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [14] = { 0.5, 1.5, 23, 2850, cooldown = 0.5, critChance = 5, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [15] = { 0.5, 1.5, 24, 2800, cooldown = 0.5, critChance = 5, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [16] = { 0.5, 1.5, 25, 2750, cooldown = 0.5, critChance = 5, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.5, 1.5, 26, 2700, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [18] = { 0.5, 1.5, 27, 2650, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 0.5, 1.5, 28, 2600, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [20] = { 0.5, 1.5, 29, 2550, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.5, 1.5, 30, 2500, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [22] = { 0.5, 1.5, 31, 2450, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.5, 1.5, 32, 2400, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [24] = { 0.5, 1.5, 33, 2350, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [25] = { 0.5, 1.5, 34, 2300, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [26] = { 0.5, 1.5, 35, 2250, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [27] = { 0.5, 1.5, 36, 2200, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [28] = { 0.5, 1.5, 37, 2150, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [29] = { 0.5, 1.5, 38, 2100, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [30] = { 0.5, 1.5, 39, 2050, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [31] = { 0.5, 1.5, 39, 2000, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [32] = { 0.5, 1.5, 40, 1950, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.5, 1.5, 40, 1900, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [34] = { 0.5, 1.5, 41, 1850, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [35] = { 0.5, 1.5, 41, 1800, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [36] = { 0.5, 1.5, 42, 1750, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [37] = { 0.5, 1.5, 42, 1700, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.5, 1.5, 43, 1650, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [39] = { 0.5, 1.5, 43, 1600, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [40] = { 0.5, 1.5, 44, 1550, cooldown = 0.5, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, }, } skills["OrbOfStormsAltX"] = { @@ -13610,11 +13705,11 @@ skills["OrbOfStormsAltX"] = { baseTypeName = "Orb of Storms of Squalls", color = 3, baseEffectiveness = 1.2200000286102, - incrementalEffectiveness = 0.04619999974966, + incrementalEffectiveness = 0.050999999046326, description = "Creates an electrical orb that will strike enemies in its area of effect with beams of lightning when placed, as well as when you use a lightning skill while within its area. These beams of lightning can then split to hit more enemies. When striking enemies, this orb will teleport to a random enemy struck. Casting this skill again will replace the previous orb.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Chains] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Orb] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", - castTime = 0.5, + castTime = 0.4, parts = { { name = "Self Cast", @@ -13659,46 +13754,46 @@ skills["OrbOfStormsAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, 6, cooldown = 2, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [2] = { 0.5, 1.5, 6, cooldown = 2, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.5, 1.5, 6, cooldown = 2, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [4] = { 0.5, 1.5, 7, cooldown = 2, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.5, 1.5, 7, cooldown = 2, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.5, 1.5, 7, cooldown = 2, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.5, 1.5, 7, cooldown = 2, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.5, 1.5, 8, cooldown = 2, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [9] = { 0.5, 1.5, 8, cooldown = 2, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [10] = { 0.5, 1.5, 8, cooldown = 2, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [11] = { 0.5, 1.5, 8, cooldown = 2, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [12] = { 0.5, 1.5, 8, cooldown = 2, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [13] = { 0.5, 1.5, 9, cooldown = 2, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [14] = { 0.5, 1.5, 9, cooldown = 2, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [15] = { 0.5, 1.5, 9, cooldown = 2, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.5, 1.5, 9, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [17] = { 0.5, 1.5, 10, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.5, 1.5, 10, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [19] = { 0.5, 1.5, 10, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.5, 1.5, 10, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.5, 1.5, 10, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.5, 1.5, 11, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.5, 1.5, 11, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.5, 1.5, 11, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.5, 1.5, 11, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.5, 1.5, 12, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.5, 1.5, 12, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.5, 1.5, 12, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.5, 1.5, 12, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.5, 1.5, 12, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.5, 1.5, 13, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.5, 1.5, 13, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.5, 1.5, 13, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.5, 1.5, 13, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.5, 1.5, 13, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.5, 1.5, 14, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.5, 1.5, 14, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.5, 1.5, 14, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.5, 1.5, 14, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.5, 1.5, 15, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.5, 1.5, 8, cooldown = 2, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 4, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.5, 1.5, 8, cooldown = 2, critChance = 5, damageEffectiveness = 1.1, levelRequirement = 6, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.5, 1.5, 9, cooldown = 2, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 9, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.5, 1.5, 9, cooldown = 2, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 12, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.5, 1.5, 9, cooldown = 2, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 16, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.5, 1.5, 10, cooldown = 2, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.5, 1.5, 10, cooldown = 2, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 24, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 0.5, 1.5, 10, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [9] = { 0.5, 1.5, 11, cooldown = 2, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 32, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [10] = { 0.5, 1.5, 11, cooldown = 2, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [11] = { 0.5, 1.5, 11, cooldown = 2, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [12] = { 0.5, 1.5, 11, cooldown = 2, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [13] = { 0.5, 1.5, 12, cooldown = 2, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [14] = { 0.5, 1.5, 12, cooldown = 2, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [15] = { 0.5, 1.5, 12, cooldown = 2, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 55, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [16] = { 0.5, 1.5, 13, cooldown = 2, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [17] = { 0.5, 1.5, 13, cooldown = 2, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 61, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [18] = { 0.5, 1.5, 13, cooldown = 2, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [19] = { 0.5, 1.5, 14, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 67, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [20] = { 0.5, 1.5, 14, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.5, 1.5, 16, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [22] = { 0.5, 1.5, 16, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.5, 1.5, 16, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [24] = { 0.5, 1.5, 16, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [25] = { 0.5, 1.5, 16, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [26] = { 0.5, 1.5, 17, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [27] = { 0.5, 1.5, 17, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [28] = { 0.5, 1.5, 17, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [29] = { 0.5, 1.5, 17, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [30] = { 0.5, 1.5, 17, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [31] = { 0.5, 1.5, 17, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [32] = { 0.5, 1.5, 17, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.5, 1.5, 18, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [34] = { 0.5, 1.5, 18, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [35] = { 0.5, 1.5, 18, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [36] = { 0.5, 1.5, 18, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [37] = { 0.5, 1.5, 18, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.5, 1.5, 18, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [39] = { 0.5, 1.5, 19, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [40] = { 0.5, 1.5, 19, cooldown = 2, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, }, } skills["PenanceBrand"] = { @@ -14255,8 +14350,8 @@ skills["PurifyingFlame"] = { name = "Purifying Flame", baseTypeName = "Purifying Flame", color = 3, - baseEffectiveness = 2.4525001049042, - incrementalEffectiveness = 0.046799998730421, + baseEffectiveness = 2.539999961853, + incrementalEffectiveness = 0.047400001436472, description = "A wave of divine fire deals damage in a line, then creates Consecrated Ground and deals damage in an area around the targeted location. A larger shockwave then expands outwards, damaging enemies standing on Consecrated Ground that were not already hit.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -14313,54 +14408,54 @@ skills["PurifyingFlame"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, 0, critChance = 5.5, damageEffectiveness = 2.2, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, 0, critChance = 5.5, damageEffectiveness = 2.2, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, 1, critChance = 5.5, damageEffectiveness = 2.2, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, 1, critChance = 5.5, damageEffectiveness = 2.2, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 0, 1, critChance = 5.5, damageEffectiveness = 2.3, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 0, 2, critChance = 5.5, damageEffectiveness = 2.3, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, 2, critChance = 5.5, damageEffectiveness = 2.4, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, 2, critChance = 5.5, damageEffectiveness = 2.4, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 1, 3, critChance = 5.5, damageEffectiveness = 2.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 1, 3, critChance = 5.5, damageEffectiveness = 2.5, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 1, 3, critChance = 5.5, damageEffectiveness = 2.5, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 1, 4, critChance = 5.5, damageEffectiveness = 2.6, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 1, 4, critChance = 5.5, damageEffectiveness = 2.6, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 2, 4, critChance = 5.5, damageEffectiveness = 2.7, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 2, 5, critChance = 5.5, damageEffectiveness = 2.7, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 2, 5, critChance = 5.5, damageEffectiveness = 2.8, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 2, 5, critChance = 5.5, damageEffectiveness = 2.8, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 2, 6, critChance = 5.5, damageEffectiveness = 2.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 2, 6, critChance = 5.5, damageEffectiveness = 2.9, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 2, 6, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 3, 7, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 3, 7, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 3, 7, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 3, 8, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 3, 8, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 3, 8, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 3, 9, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 4, 9, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 4, 9, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 4, 10, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 4, 10, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 4, 10, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 4, 10, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 4, 10, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 4, 10, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 4, 11, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 4, 11, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 4, 11, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 4, 11, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 5, 11, critChance = 5.5, damageEffectiveness = 3, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, 0, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, 0, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, 1, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, 1, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, 1, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, 2, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, 2, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, 2, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, 3, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 13, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, 3, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, 3, critChance = 6, damageEffectiveness = 3, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, 4, critChance = 6, damageEffectiveness = 3, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 16, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, 4, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 18, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, 4, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 19, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, 5, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, 5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 4, 5, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 22, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, 6, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 23, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, 6, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 24, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, 6, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, 7, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, 7, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, 7, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 26, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, 8, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, 8, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 27, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, 8, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, 9, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 28, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, 9, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 29, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 7, 9, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 7, 10, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 7, 10, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 30, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 7, 10, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 7, 10, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, 10, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 7, 10, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 31, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 8, 11, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 8, 11, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 8, 11, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 32, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 8, 11, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, 11, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 33, }, }, }, } skills["PurifyingFlameAltX"] = { name = "Purifying Flame of Revelations", baseTypeName = "Purifying Flame of Revelations", color = 3, - baseEffectiveness = 1.5940999984741, - incrementalEffectiveness = 0.046799998730421, + baseEffectiveness = 1.6499999761581, + incrementalEffectiveness = 0.047400001436472, description = "A wave of divine fire deals damage in a line, then creates Consecrated Ground and deals damage in an area around the targeted location. A larger shockwave then expands outwards, damaging enemies standing on Consecrated Ground that were not already hit.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Fire] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -14414,46 +14509,46 @@ skills["PurifyingFlameAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5.5, damageEffectiveness = 1.4, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5.5, damageEffectiveness = 1.4, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5.5, damageEffectiveness = 1.4, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5.5, damageEffectiveness = 1.4, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5.5, damageEffectiveness = 1.5, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5.5, damageEffectiveness = 1.5, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5.5, damageEffectiveness = 1.5, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5.5, damageEffectiveness = 1.6, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5.5, damageEffectiveness = 1.6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5.5, damageEffectiveness = 1.6, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5.5, damageEffectiveness = 1.7, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5.5, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5.5, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5.5, damageEffectiveness = 1.7, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 10, critChance = 5.5, damageEffectiveness = 1.8, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 10, critChance = 5.5, damageEffectiveness = 1.8, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 10, critChance = 5.5, damageEffectiveness = 1.8, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 11, critChance = 5.5, damageEffectiveness = 1.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 11, critChance = 5.5, damageEffectiveness = 1.9, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 11, critChance = 5.5, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 12, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 13, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 13, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 13, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 14, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 14, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 14, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 15, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 16, critChance = 5.5, damageEffectiveness = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 10, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 11, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 12, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 13, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 14, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 15, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 16, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, }, } skills["PurityOfElements"] = { @@ -15619,11 +15714,11 @@ skills["ScorchingRay"] = { baseTypeName = "Scorching Ray", color = 3, baseEffectiveness = 3.6275000572205, - incrementalEffectiveness = 0.048900000751019, + incrementalEffectiveness = 0.051300000399351, description = "Unleash a beam of fire that burns enemies it touches. Remaining in the beam raises the burning, adding a portion of the beam's damage in stages. Inflicts Fire Exposure at maximum stages. Enemies who leave the beam continue to burn for a duration. Increasing cast speed also increases the rate at which the beam turns.", skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Fire] = true, [SkillType.CausesBurning] = true, [SkillType.Duration] = true, [SkillType.Channel] = true, [SkillType.DegenOnlySpellDamage] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", - castTime = 0.25, + castTime = 0.22, parts = { { name = "Manual Stages", @@ -15721,7 +15816,7 @@ skills["ScorchingRayAltX"] = { baseTypeName = "Scorching Ray of Immolation", color = 3, baseEffectiveness = 10.890000343323, - incrementalEffectiveness = 0.048900000751019, + incrementalEffectiveness = 0.051300000399351, description = "Unleash a beam of fire that burns enemies it touches. Remaining in the beam raises the burning, adding a portion of the beam's damage in stages. Enemies who leave the beam continue to burn for a duration. Increasing cast speed also increases the rate at which the beam turns.", skillTypes = { [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.DamageOverTime] = true, [SkillType.Fire] = true, [SkillType.CausesBurning] = true, [SkillType.Duration] = true, [SkillType.Channel] = true, [SkillType.DegenOnlySpellDamage] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -15759,7 +15854,7 @@ skills["ScorchingRayAltX"] = { { "fire_beam_additional_stack_damage_+%_final", 0.2 }, }, constantStats = { - { "base_skill_effect_duration", 3000 }, + { "base_skill_effect_duration", 4000 }, { "fire_beam_additional_stack_damage_+%_final", -90 }, { "display_max_fire_beam_stacks", 8 }, }, @@ -15818,12 +15913,12 @@ skills["ShockNova"] = { name = "Shock Nova", baseTypeName = "Shock Nova", color = 3, - baseEffectiveness = 1.3489999771118, + baseEffectiveness = 1.5199999809265, incrementalEffectiveness = 0.049300000071526, description = "Casts a ring of Lightning around you, followed by a larger Lightning nova. Each effect hits enemies caught in their area with Lightning Damage.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, parts = { { name = "Ring + Nova", @@ -15865,46 +15960,46 @@ skills["ShockNova"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [2] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [6] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [8] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [10] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [12] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [2] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [3] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [4] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [5] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [6] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [7] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [8] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [9] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [10] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [11] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [12] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [13] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [14] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [15] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [16] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [17] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [18] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [19] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [20] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [21] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [22] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [23] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [24] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [25] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [26] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [27] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [28] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [29] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [30] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [31] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [32] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [33] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [34] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [35] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [36] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [37] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [38] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [39] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [40] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, }, } skills["ShockNovaAltX"] = { @@ -15951,46 +16046,46 @@ skills["ShockNovaAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [2] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [6] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [8] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [10] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [12] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 0.5, 1.5, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [2] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [3] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [4] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [5] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [6] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.75, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [7] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [8] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [9] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [10] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [11] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [12] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [13] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [14] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.85, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [15] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [16] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [17] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [18] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.9, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [19] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [20] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [21] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [22] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [23] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [24] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [25] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [26] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, + [27] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [28] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, + [29] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [30] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [31] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [32] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [33] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [34] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [35] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 36, }, }, + [36] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [37] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [38] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [39] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 38, }, }, + [40] = { 0.20000000298023, 1.7999999523163, critChance = 6, damageEffectiveness = 0.95, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 39, }, }, }, } skills["SigilOfPower"] = { @@ -16197,8 +16292,8 @@ skills["SiphoningTrapAltX"] = { name = "Siphoning Trap of Pain", baseTypeName = "Siphoning Trap of Pain", color = 3, - baseEffectiveness = 7.4299998283386, - incrementalEffectiveness = 0.056000001728535, + baseEffectiveness = 7.9000000953674, + incrementalEffectiveness = 0.05799999833107, description = "Throws a trap that applies debuff beams to a number of nearby enemies for a duration. The beams chill enemies and deal cold damage over time.", skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Mineable] = true, [SkillType.Area] = true, [SkillType.Trapped] = true, [SkillType.Cold] = true, [SkillType.DamageOverTime] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.NonHitChill] = true, [SkillType.ElementalStatus] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", @@ -16217,12 +16312,12 @@ skills["SiphoningTrapAltX"] = { constantStats = { { "base_trap_duration", 4000 }, { "base_skill_effect_duration", 3000 }, - { "active_skill_base_area_of_effect_radius", 30 }, { "ice_siphon_trap_max_beam_targets", 10 }, }, stats = { "base_cold_damage_to_deal_per_minute", "ice_siphon_trap_max_beam_targets", + "active_skill_base_area_of_effect_radius", "base_skill_is_trapped", "is_trap", "spell_damage_modifiers_apply_to_skill_dot", @@ -16230,46 +16325,46 @@ skills["SiphoningTrapAltX"] = { "quality_display_trap_duration_is_gem", }, levels = { - [1] = { 16.666667039196, 1, levelRequirement = 10, statInterpolation = { 3, 1, }, cost = { Mana = 7, }, }, - [2] = { 16.666667039196, 1, levelRequirement = 13, statInterpolation = { 3, 1, }, cost = { Mana = 8, }, }, - [3] = { 16.666667039196, 1, levelRequirement = 17, statInterpolation = { 3, 1, }, cost = { Mana = 9, }, }, - [4] = { 16.666667039196, 1, levelRequirement = 21, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, - [5] = { 16.666667039196, 2, levelRequirement = 25, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, - [6] = { 16.666667039196, 2, levelRequirement = 29, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, - [7] = { 16.666667039196, 2, levelRequirement = 33, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, - [8] = { 16.666667039196, 2, levelRequirement = 36, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, - [9] = { 16.666667039196, 2, levelRequirement = 39, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, - [10] = { 16.666667039196, 3, levelRequirement = 42, statInterpolation = { 3, 1, }, cost = { Mana = 16, }, }, - [11] = { 16.666667039196, 3, levelRequirement = 45, statInterpolation = { 3, 1, }, cost = { Mana = 17, }, }, - [12] = { 16.666667039196, 3, levelRequirement = 48, statInterpolation = { 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 16.666667039196, 3, levelRequirement = 51, statInterpolation = { 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 16.666667039196, 3, levelRequirement = 54, statInterpolation = { 3, 1, }, cost = { Mana = 20, }, }, - [15] = { 16.666667039196, 4, levelRequirement = 57, statInterpolation = { 3, 1, }, cost = { Mana = 21, }, }, - [16] = { 16.666667039196, 4, levelRequirement = 60, statInterpolation = { 3, 1, }, cost = { Mana = 22, }, }, - [17] = { 16.666667039196, 4, levelRequirement = 63, statInterpolation = { 3, 1, }, cost = { Mana = 22, }, }, - [18] = { 16.666667039196, 4, levelRequirement = 66, statInterpolation = { 3, 1, }, cost = { Mana = 23, }, }, - [19] = { 16.666667039196, 4, levelRequirement = 68, statInterpolation = { 3, 1, }, cost = { Mana = 24, }, }, - [20] = { 16.666667039196, 5, levelRequirement = 70, statInterpolation = { 3, 1, }, cost = { Mana = 24, }, }, - [21] = { 16.666667039196, 5, levelRequirement = 72, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, - [22] = { 16.666667039196, 5, levelRequirement = 74, statInterpolation = { 3, 1, }, cost = { Mana = 26, }, }, - [23] = { 16.666667039196, 5, levelRequirement = 76, statInterpolation = { 3, 1, }, cost = { Mana = 26, }, }, - [24] = { 16.666667039196, 5, levelRequirement = 78, statInterpolation = { 3, 1, }, cost = { Mana = 27, }, }, - [25] = { 16.666667039196, 6, levelRequirement = 80, statInterpolation = { 3, 1, }, cost = { Mana = 27, }, }, - [26] = { 16.666667039196, 6, levelRequirement = 82, statInterpolation = { 3, 1, }, cost = { Mana = 28, }, }, - [27] = { 16.666667039196, 6, levelRequirement = 84, statInterpolation = { 3, 1, }, cost = { Mana = 29, }, }, - [28] = { 16.666667039196, 6, levelRequirement = 86, statInterpolation = { 3, 1, }, cost = { Mana = 30, }, }, - [29] = { 16.666667039196, 6, levelRequirement = 88, statInterpolation = { 3, 1, }, cost = { Mana = 30, }, }, - [30] = { 16.666667039196, 7, levelRequirement = 90, statInterpolation = { 3, 1, }, cost = { Mana = 30, }, }, - [31] = { 16.666667039196, 7, levelRequirement = 91, statInterpolation = { 3, 1, }, cost = { Mana = 31, }, }, - [32] = { 16.666667039196, 7, levelRequirement = 92, statInterpolation = { 3, 1, }, cost = { Mana = 32, }, }, - [33] = { 16.666667039196, 7, levelRequirement = 93, statInterpolation = { 3, 1, }, cost = { Mana = 32, }, }, - [34] = { 16.666667039196, 7, levelRequirement = 94, statInterpolation = { 3, 1, }, cost = { Mana = 33, }, }, - [35] = { 16.666667039196, 8, levelRequirement = 95, statInterpolation = { 3, 1, }, cost = { Mana = 34, }, }, - [36] = { 16.666667039196, 8, levelRequirement = 96, statInterpolation = { 3, 1, }, cost = { Mana = 34, }, }, - [37] = { 16.666667039196, 8, levelRequirement = 97, statInterpolation = { 3, 1, }, cost = { Mana = 35, }, }, - [38] = { 16.666667039196, 8, levelRequirement = 98, statInterpolation = { 3, 1, }, cost = { Mana = 36, }, }, - [39] = { 16.666667039196, 8, levelRequirement = 99, statInterpolation = { 3, 1, }, cost = { Mana = 36, }, }, - [40] = { 16.666667039196, 9, levelRequirement = 100, statInterpolation = { 3, 1, }, cost = { Mana = 37, }, }, + [1] = { 16.666667039196, 3, 30, levelRequirement = 10, statInterpolation = { 3, 1, 1, }, cost = { Mana = 7, }, }, + [2] = { 16.666667039196, 3, 30, levelRequirement = 13, statInterpolation = { 3, 1, 1, }, cost = { Mana = 8, }, }, + [3] = { 16.666667039196, 4, 31, levelRequirement = 17, statInterpolation = { 3, 1, 1, }, cost = { Mana = 9, }, }, + [4] = { 16.666667039196, 4, 31, levelRequirement = 21, statInterpolation = { 3, 1, 1, }, cost = { Mana = 10, }, }, + [5] = { 16.666667039196, 4, 31, levelRequirement = 25, statInterpolation = { 3, 1, 1, }, cost = { Mana = 11, }, }, + [6] = { 16.666667039196, 5, 31, levelRequirement = 29, statInterpolation = { 3, 1, 1, }, cost = { Mana = 12, }, }, + [7] = { 16.666667039196, 5, 32, levelRequirement = 33, statInterpolation = { 3, 1, 1, }, cost = { Mana = 13, }, }, + [8] = { 16.666667039196, 5, 32, levelRequirement = 36, statInterpolation = { 3, 1, 1, }, cost = { Mana = 14, }, }, + [9] = { 16.666667039196, 5, 32, levelRequirement = 39, statInterpolation = { 3, 1, 1, }, cost = { Mana = 14, }, }, + [10] = { 16.666667039196, 5, 32, levelRequirement = 42, statInterpolation = { 3, 1, 1, }, cost = { Mana = 16, }, }, + [11] = { 16.666667039196, 6, 33, levelRequirement = 45, statInterpolation = { 3, 1, 1, }, cost = { Mana = 17, }, }, + [12] = { 16.666667039196, 6, 33, levelRequirement = 48, statInterpolation = { 3, 1, 1, }, cost = { Mana = 18, }, }, + [13] = { 16.666667039196, 6, 33, levelRequirement = 51, statInterpolation = { 3, 1, 1, }, cost = { Mana = 19, }, }, + [14] = { 16.666667039196, 6, 33, levelRequirement = 54, statInterpolation = { 3, 1, 1, }, cost = { Mana = 20, }, }, + [15] = { 16.666667039196, 6, 34, levelRequirement = 57, statInterpolation = { 3, 1, 1, }, cost = { Mana = 21, }, }, + [16] = { 16.666667039196, 7, 34, levelRequirement = 60, statInterpolation = { 3, 1, 1, }, cost = { Mana = 22, }, }, + [17] = { 16.666667039196, 7, 34, levelRequirement = 63, statInterpolation = { 3, 1, 1, }, cost = { Mana = 22, }, }, + [18] = { 16.666667039196, 7, 34, levelRequirement = 66, statInterpolation = { 3, 1, 1, }, cost = { Mana = 23, }, }, + [19] = { 16.666667039196, 7, 35, levelRequirement = 68, statInterpolation = { 3, 1, 1, }, cost = { Mana = 24, }, }, + [20] = { 16.666667039196, 8, 35, levelRequirement = 70, statInterpolation = { 3, 1, 1, }, cost = { Mana = 24, }, }, + [21] = { 16.666667039196, 8, 35, levelRequirement = 72, statInterpolation = { 3, 1, 1, }, cost = { Mana = 25, }, }, + [22] = { 16.666667039196, 8, 36, levelRequirement = 74, statInterpolation = { 3, 1, 1, }, cost = { Mana = 26, }, }, + [23] = { 16.666667039196, 8, 36, levelRequirement = 76, statInterpolation = { 3, 1, 1, }, cost = { Mana = 26, }, }, + [24] = { 16.666667039196, 8, 36, levelRequirement = 78, statInterpolation = { 3, 1, 1, }, cost = { Mana = 27, }, }, + [25] = { 16.666667039196, 8, 36, levelRequirement = 80, statInterpolation = { 3, 1, 1, }, cost = { Mana = 27, }, }, + [26] = { 16.666667039196, 9, 37, levelRequirement = 82, statInterpolation = { 3, 1, 1, }, cost = { Mana = 28, }, }, + [27] = { 16.666667039196, 9, 37, levelRequirement = 84, statInterpolation = { 3, 1, 1, }, cost = { Mana = 29, }, }, + [28] = { 16.666667039196, 9, 37, levelRequirement = 86, statInterpolation = { 3, 1, 1, }, cost = { Mana = 30, }, }, + [29] = { 16.666667039196, 9, 37, levelRequirement = 88, statInterpolation = { 3, 1, 1, }, cost = { Mana = 30, }, }, + [30] = { 16.666667039196, 9, 38, levelRequirement = 90, statInterpolation = { 3, 1, 1, }, cost = { Mana = 30, }, }, + [31] = { 16.666667039196, 10, 38, levelRequirement = 91, statInterpolation = { 3, 1, 1, }, cost = { Mana = 31, }, }, + [32] = { 16.666667039196, 10, 38, levelRequirement = 92, statInterpolation = { 3, 1, 1, }, cost = { Mana = 32, }, }, + [33] = { 16.666667039196, 10, 38, levelRequirement = 93, statInterpolation = { 3, 1, 1, }, cost = { Mana = 32, }, }, + [34] = { 16.666667039196, 10, 38, levelRequirement = 94, statInterpolation = { 3, 1, 1, }, cost = { Mana = 33, }, }, + [35] = { 16.666667039196, 10, 38, levelRequirement = 95, statInterpolation = { 3, 1, 1, }, cost = { Mana = 34, }, }, + [36] = { 16.666667039196, 10, 38, levelRequirement = 96, statInterpolation = { 3, 1, 1, }, cost = { Mana = 34, }, }, + [37] = { 16.666667039196, 11, 39, levelRequirement = 97, statInterpolation = { 3, 1, 1, }, cost = { Mana = 35, }, }, + [38] = { 16.666667039196, 11, 39, levelRequirement = 98, statInterpolation = { 3, 1, 1, }, cost = { Mana = 36, }, }, + [39] = { 16.666667039196, 11, 39, levelRequirement = 99, statInterpolation = { 3, 1, 1, }, cost = { Mana = 36, }, }, + [40] = { 16.666667039196, 11, 39, levelRequirement = 100, statInterpolation = { 3, 1, 1, }, cost = { Mana = 37, }, }, }, } skills["SomaticShell"] = { @@ -16303,7 +16398,7 @@ skills["SomaticShell"] = { { "kinetic_shell_hit_damage_absorbed_%", 100 }, { "base_skill_effect_duration", 5000 }, { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, - { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_base_area_of_effect_radius", 18 }, { "active_skill_area_of_effect_description_mode", 1 }, { "kinetic_shell_immunity_after_explosion_ms", 200 }, { "kinetic_shell_transfer_to_X_targets_on_projectile_hit", 1 }, @@ -16320,46 +16415,46 @@ skills["SomaticShell"] = { "quality_display_spell_damage_to_attack_damage_is_gem", }, levels = { - [1] = { 168, 3, baseMultiplier = 0.2, damageEffectiveness = 0.2, levelRequirement = 28, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, - [2] = { 325, 3, baseMultiplier = 0.216, damageEffectiveness = 0.216, levelRequirement = 31, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [3] = { 500, 3, baseMultiplier = 0.232, damageEffectiveness = 0.232, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [4] = { 817, 4, baseMultiplier = 0.247, damageEffectiveness = 0.247, levelRequirement = 37, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [5] = { 1038, 4, baseMultiplier = 0.263, damageEffectiveness = 0.263, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [6] = { 1287, 4, baseMultiplier = 0.279, damageEffectiveness = 0.279, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [7] = { 1547, 4, baseMultiplier = 0.295, damageEffectiveness = 0.295, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [8] = { 1821, 4, baseMultiplier = 0.311, damageEffectiveness = 0.311, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, - [9] = { 2176, 4, baseMultiplier = 0.326, damageEffectiveness = 0.326, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, - [10] = { 2657, 5, baseMultiplier = 0.342, damageEffectiveness = 0.342, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, - [11] = { 2945, 5, baseMultiplier = 0.358, damageEffectiveness = 0.358, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, - [12] = { 3095, 5, baseMultiplier = 0.374, damageEffectiveness = 0.374, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, - [13] = { 3515, 5, baseMultiplier = 0.389, damageEffectiveness = 0.389, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, - [14] = { 3935, 5, baseMultiplier = 0.405, damageEffectiveness = 0.405, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, - [15] = { 4580, 6, baseMultiplier = 0.421, damageEffectiveness = 0.421, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, - [16] = { 4934, 6, baseMultiplier = 0.437, damageEffectiveness = 0.437, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [17] = { 5545, 6, baseMultiplier = 0.453, damageEffectiveness = 0.453, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [18] = { 5762, 6, baseMultiplier = 0.468, damageEffectiveness = 0.468, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [19] = { 5983, 6, baseMultiplier = 0.484, damageEffectiveness = 0.484, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [20] = { 6214, 6, baseMultiplier = 0.5, damageEffectiveness = 0.5, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [21] = { 6447, 7, baseMultiplier = 0.516, damageEffectiveness = 0.516, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [22] = { 6685, 7, baseMultiplier = 0.532, damageEffectiveness = 0.532, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [23] = { 6929, 7, baseMultiplier = 0.547, damageEffectiveness = 0.547, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, - [24] = { 7179, 7, baseMultiplier = 0.563, damageEffectiveness = 0.563, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [25] = { 7438, 7, baseMultiplier = 0.579, damageEffectiveness = 0.579, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [26] = { 7699, 8, baseMultiplier = 0.595, damageEffectiveness = 0.595, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [27] = { 7966, 8, baseMultiplier = 0.611, damageEffectiveness = 0.611, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [28] = { 8240, 8, baseMultiplier = 0.626, damageEffectiveness = 0.626, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [29] = { 8520, 8, baseMultiplier = 0.642, damageEffectiveness = 0.642, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [30] = { 8807, 8, baseMultiplier = 0.658, damageEffectiveness = 0.658, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [31] = { 9098, 8, baseMultiplier = 0.666, damageEffectiveness = 0.666, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [32] = { 9395, 9, baseMultiplier = 0.674, damageEffectiveness = 0.674, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, - [33] = { 9700, 9, baseMultiplier = 0.682, damageEffectiveness = 0.682, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [34] = { 10014, 9, baseMultiplier = 0.689, damageEffectiveness = 0.689, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [35] = { 10339, 9, baseMultiplier = 0.697, damageEffectiveness = 0.697, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [36] = { 10674, 9, baseMultiplier = 0.705, damageEffectiveness = 0.705, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [37] = { 11020, 9, baseMultiplier = 0.713, damageEffectiveness = 0.713, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [38] = { 11377, 10, baseMultiplier = 0.721, damageEffectiveness = 0.721, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [39] = { 11746, 10, baseMultiplier = 0.729, damageEffectiveness = 0.729, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, - [40] = { 12126, 10, baseMultiplier = 0.737, damageEffectiveness = 0.737, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + [1] = { 168, 3, attackSpeedMultiplier = 15, baseMultiplier = 0.35, damageEffectiveness = 0.35, levelRequirement = 28, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [2] = { 325, 3, attackSpeedMultiplier = 15, baseMultiplier = 0.363, damageEffectiveness = 0.363, levelRequirement = 31, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [3] = { 500, 3, attackSpeedMultiplier = 15, baseMultiplier = 0.376, damageEffectiveness = 0.376, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [4] = { 817, 4, attackSpeedMultiplier = 15, baseMultiplier = 0.389, damageEffectiveness = 0.389, levelRequirement = 37, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [5] = { 1038, 4, attackSpeedMultiplier = 15, baseMultiplier = 0.403, damageEffectiveness = 0.403, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [6] = { 1287, 4, attackSpeedMultiplier = 15, baseMultiplier = 0.416, damageEffectiveness = 0.416, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [7] = { 1547, 4, attackSpeedMultiplier = 15, baseMultiplier = 0.429, damageEffectiveness = 0.429, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [8] = { 1821, 4, attackSpeedMultiplier = 15, baseMultiplier = 0.442, damageEffectiveness = 0.442, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [9] = { 2176, 4, attackSpeedMultiplier = 15, baseMultiplier = 0.455, damageEffectiveness = 0.455, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [10] = { 2657, 5, attackSpeedMultiplier = 15, baseMultiplier = 0.468, damageEffectiveness = 0.468, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [11] = { 2945, 5, attackSpeedMultiplier = 15, baseMultiplier = 0.482, damageEffectiveness = 0.482, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [12] = { 3095, 5, attackSpeedMultiplier = 15, baseMultiplier = 0.495, damageEffectiveness = 0.495, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [13] = { 3515, 5, attackSpeedMultiplier = 15, baseMultiplier = 0.508, damageEffectiveness = 0.508, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [14] = { 3935, 5, attackSpeedMultiplier = 15, baseMultiplier = 0.521, damageEffectiveness = 0.521, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [15] = { 4580, 6, attackSpeedMultiplier = 15, baseMultiplier = 0.534, damageEffectiveness = 0.534, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [16] = { 4934, 6, attackSpeedMultiplier = 15, baseMultiplier = 0.547, damageEffectiveness = 0.547, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [17] = { 5545, 6, attackSpeedMultiplier = 15, baseMultiplier = 0.561, damageEffectiveness = 0.561, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [18] = { 5762, 6, attackSpeedMultiplier = 15, baseMultiplier = 0.574, damageEffectiveness = 0.574, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [19] = { 5983, 6, attackSpeedMultiplier = 15, baseMultiplier = 0.587, damageEffectiveness = 0.587, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [20] = { 6214, 6, attackSpeedMultiplier = 15, baseMultiplier = 0.6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [21] = { 6447, 7, attackSpeedMultiplier = 15, baseMultiplier = 0.613, damageEffectiveness = 0.613, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [22] = { 6685, 7, attackSpeedMultiplier = 15, baseMultiplier = 0.626, damageEffectiveness = 0.626, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [23] = { 6929, 7, attackSpeedMultiplier = 15, baseMultiplier = 0.639, damageEffectiveness = 0.639, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [24] = { 7179, 7, attackSpeedMultiplier = 15, baseMultiplier = 0.653, damageEffectiveness = 0.653, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [25] = { 7438, 7, attackSpeedMultiplier = 15, baseMultiplier = 0.666, damageEffectiveness = 0.666, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [26] = { 7699, 8, attackSpeedMultiplier = 15, baseMultiplier = 0.679, damageEffectiveness = 0.679, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [27] = { 7966, 8, attackSpeedMultiplier = 15, baseMultiplier = 0.692, damageEffectiveness = 0.692, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [28] = { 8240, 8, attackSpeedMultiplier = 15, baseMultiplier = 0.705, damageEffectiveness = 0.705, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [29] = { 8520, 8, attackSpeedMultiplier = 15, baseMultiplier = 0.718, damageEffectiveness = 0.718, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [30] = { 8807, 8, attackSpeedMultiplier = 15, baseMultiplier = 0.732, damageEffectiveness = 0.732, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [31] = { 9098, 8, attackSpeedMultiplier = 15, baseMultiplier = 0.738, damageEffectiveness = 0.738, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [32] = { 9395, 9, attackSpeedMultiplier = 15, baseMultiplier = 0.745, damageEffectiveness = 0.745, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [33] = { 9700, 9, attackSpeedMultiplier = 15, baseMultiplier = 0.751, damageEffectiveness = 0.751, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [34] = { 10014, 9, attackSpeedMultiplier = 15, baseMultiplier = 0.758, damageEffectiveness = 0.758, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [35] = { 10339, 9, attackSpeedMultiplier = 15, baseMultiplier = 0.764, damageEffectiveness = 0.764, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [36] = { 10674, 9, attackSpeedMultiplier = 15, baseMultiplier = 0.771, damageEffectiveness = 0.771, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [37] = { 11020, 9, attackSpeedMultiplier = 15, baseMultiplier = 0.778, damageEffectiveness = 0.778, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [38] = { 11377, 10, attackSpeedMultiplier = 15, baseMultiplier = 0.784, damageEffectiveness = 0.784, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [39] = { 11746, 10, attackSpeedMultiplier = 15, baseMultiplier = 0.791, damageEffectiveness = 0.791, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [40] = { 12126, 10, attackSpeedMultiplier = 15, baseMultiplier = 0.797, damageEffectiveness = 0.797, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, }, } skills["Soulrend"] = { @@ -16371,7 +16466,7 @@ skills["Soulrend"] = { description = "Fires a projectile that turns towards enemies in front of it, damaging and piercing through those it hits, and leeching some of that damage as energy shield. As the projectile travels, it repeatedly applies a short but powerful chaos damage over time debuff to each enemy in an area around it.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.DamageOverTime] = true, [SkillType.Damage] = true, [SkillType.Chaos] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.ProjectilesFromUser] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", - castTime = 0.8, + castTime = 0.7, baseFlags = { spell = true, projectile = true, @@ -16402,46 +16497,46 @@ skills["Soulrend"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 42.000000620882, 0.079999998211861, 0.11999999731779, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, - [2] = { 41.166668063651, 0.079999998211861, 0.12999999523163, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, - [3] = { 40.666668529312, 0.079999998211861, 0.12999999523163, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [4] = { 39.833335972081, 0.090000003576279, 0.14000000059605, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, - [5] = { 39.166665952653, 0.10000000149012, 0.15000000596046, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [6] = { 38.83333292976, 0.10000000149012, 0.15000000596046, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [7] = { 38.499999906868, 0.10999999940395, 0.15999999642372, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [8] = { 38.166666883975, 0.10999999940395, 0.15999999642372, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [9] = { 37.833333861083, 0.10999999940395, 0.17000000178814, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [10] = { 37.666667349637, 0.11999999731779, 0.18000000715256, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [11] = { 37.166667815298, 0.11999999731779, 0.18000000715256, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [12] = { 36.833334792405, 0.12999999523163, 0.18999999761581, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [13] = { 36.666668280959, 0.12999999523163, 0.20000000298023, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [14] = { 36.16666874662, 0.12999999523163, 0.20000000298023, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [15] = { 35.833335723728, 0.14000000059605, 0.20999999344349, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [16] = { 35.500002700836, 0.14000000059605, 0.20999999344349, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [17] = { 35.1666657043, 0.15000000596046, 0.21999999880791, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [18] = { 34.833332681408, 0.15000000596046, 0.23000000417233, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [19] = { 34.666666169961, 0.15999999642372, 0.23000000417233, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [20] = { 34.166666635623, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [21] = { 33.83333361273, 0.15999999642372, 0.25, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [22] = { 33.500000589838, 0.17000000178814, 0.25, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [23] = { 33.166667566945, 0.17000000178814, 0.25999999046326, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [24] = { 32.833334544053, 0.18000000715256, 0.27000001072884, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [25] = { 32.50000152116, 0.18000000715256, 0.27000001072884, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [26] = { 32.333335009714, 0.18999999761581, 0.28000000119209, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [27] = { 32, 0.18999999761581, 0.28000000119209, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [28] = { 31.500000465661, 0.18999999761581, 0.28999999165535, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, - [29] = { 31.166667442769, 0.20000000298023, 0.30000001192093, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, - [30] = { 31.000000931323, 0.20000000298023, 0.30000001192093, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, - [31] = { 31.000000931323, 0.20999999344349, 0.31000000238419, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, - [32] = { 30.833334419876, 0.20999999344349, 0.31999999284744, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, - [33] = { 30.833334419876, 0.20999999344349, 0.31999999284744, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, - [34] = { 30.833334419876, 0.21999999880791, 0.33000001311302, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, - [35] = { 30.66666790843, 0.21999999880791, 0.33000001311302, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, - [36] = { 30.66666790843, 0.23000000417233, 0.34000000357628, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, - [37] = { 30.66666790843, 0.23000000417233, 0.34999999403954, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, - [38] = { 30.66666790843, 0.23999999463558, 0.34999999403954, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, - [39] = { 30.66666790843, 0.23999999463558, 0.36000001430511, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 35, }, }, - [40] = { 30.333334885538, 0.23999999463558, 0.37000000476837, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 35, }, }, + [1] = { 41.666667597989, 0.079999998211861, 0.11999999731779, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, + [2] = { 41.666667597989, 0.079999998211861, 0.12999999523163, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, + [3] = { 41.666667597989, 0.079999998211861, 0.12999999523163, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 41.666667597989, 0.090000003576279, 0.14000000059605, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [5] = { 41.666667597989, 0.10000000149012, 0.15000000596046, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, + [6] = { 41.666667597989, 0.10000000149012, 0.15000000596046, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, + [7] = { 41.666667597989, 0.10999999940395, 0.15999999642372, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [8] = { 41.666667597989, 0.10999999940395, 0.15999999642372, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [9] = { 41.666667597989, 0.10999999940395, 0.17000000178814, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [10] = { 41.666667597989, 0.11999999731779, 0.18000000715256, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [11] = { 41.666667597989, 0.11999999731779, 0.18000000715256, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, + [12] = { 41.666667597989, 0.12999999523163, 0.18999999761581, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [13] = { 41.666667597989, 0.12999999523163, 0.20000000298023, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [14] = { 41.666667597989, 0.12999999523163, 0.20000000298023, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [15] = { 41.666667597989, 0.14000000059605, 0.20999999344349, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 41.666667597989, 0.14000000059605, 0.20999999344349, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [17] = { 41.666667597989, 0.15000000596046, 0.21999999880791, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [18] = { 41.666667597989, 0.15000000596046, 0.23000000417233, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [19] = { 41.666667597989, 0.15999999642372, 0.23000000417233, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 41.666667597989, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [21] = { 41.666667597989, 0.15999999642372, 0.25, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [22] = { 41.666667597989, 0.17000000178814, 0.25, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [23] = { 41.666667597989, 0.17000000178814, 0.25999999046326, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [24] = { 41.666667597989, 0.18000000715256, 0.27000001072884, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 41.666667597989, 0.18000000715256, 0.27000001072884, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [26] = { 41.666667597989, 0.18999999761581, 0.28000000119209, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 41.666667597989, 0.18999999761581, 0.28000000119209, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [28] = { 41.666667597989, 0.18999999761581, 0.28999999165535, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, + [29] = { 41.666667597989, 0.20000000298023, 0.30000001192093, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [30] = { 41.666667597989, 0.20000000298023, 0.30000001192093, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [31] = { 41.666667597989, 0.20999999344349, 0.31000000238419, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, + [32] = { 41.666667597989, 0.20999999344349, 0.31999999284744, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [33] = { 41.666667597989, 0.20999999344349, 0.31999999284744, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [34] = { 41.666667597989, 0.21999999880791, 0.33000001311302, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, + [35] = { 41.666667597989, 0.21999999880791, 0.33000001311302, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [36] = { 41.666667597989, 0.23000000417233, 0.34000000357628, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [37] = { 41.666667597989, 0.23000000417233, 0.34999999403954, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [38] = { 41.666667597989, 0.23999999463558, 0.34999999403954, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, + [39] = { 41.666667597989, 0.23999999463558, 0.36000001430511, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, + [40] = { 41.666667597989, 0.23999999463558, 0.37000000476837, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, }, } skills["SoulrendAltX"] = { @@ -16471,6 +16566,7 @@ skills["SoulrendAltX"] = { stats = { "spell_minimum_base_chaos_damage", "spell_maximum_base_chaos_damage", + "base_number_of_projectiles", "base_is_projectile", }, notMinionStat = { @@ -16478,46 +16574,46 @@ skills["SoulrendAltX"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0.079999998211861, 0.11999999731779, critChance = 7, damageEffectiveness = 4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [2] = { 0.079999998211861, 0.12999999523163, critChance = 7, damageEffectiveness = 4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [3] = { 0.079999998211861, 0.12999999523163, critChance = 7, damageEffectiveness = 4, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [4] = { 0.090000003576279, 0.14000000059605, critChance = 7, damageEffectiveness = 4, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [5] = { 0.10000000149012, 0.15000000596046, critChance = 7, damageEffectiveness = 4, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [6] = { 0.10000000149012, 0.15000000596046, critChance = 7, damageEffectiveness = 4, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [7] = { 0.10999999940395, 0.15999999642372, critChance = 7, damageEffectiveness = 4, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [8] = { 0.10999999940395, 0.15999999642372, critChance = 7, damageEffectiveness = 4, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [9] = { 0.10999999940395, 0.17000000178814, critChance = 7, damageEffectiveness = 4, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [10] = { 0.11999999731779, 0.18000000715256, critChance = 7, damageEffectiveness = 4, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [11] = { 0.11999999731779, 0.18000000715256, critChance = 7, damageEffectiveness = 4, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [12] = { 0.12999999523163, 0.18999999761581, critChance = 7, damageEffectiveness = 4, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [13] = { 0.12999999523163, 0.20000000298023, critChance = 7, damageEffectiveness = 4, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [14] = { 0.12999999523163, 0.20000000298023, critChance = 7, damageEffectiveness = 4, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [15] = { 0.14000000059605, 0.20999999344349, critChance = 7, damageEffectiveness = 4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [16] = { 0.14000000059605, 0.20999999344349, critChance = 7, damageEffectiveness = 4, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [17] = { 0.15000000596046, 0.21999999880791, critChance = 7, damageEffectiveness = 4, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [18] = { 0.15000000596046, 0.23000000417233, critChance = 7, damageEffectiveness = 4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [19] = { 0.15999999642372, 0.23000000417233, critChance = 7, damageEffectiveness = 4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [20] = { 0.15999999642372, 0.23999999463558, critChance = 7, damageEffectiveness = 4, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [21] = { 0.15999999642372, 0.25, critChance = 7, damageEffectiveness = 4, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [22] = { 0.17000000178814, 0.25, critChance = 7, damageEffectiveness = 4, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [23] = { 0.17000000178814, 0.25999999046326, critChance = 7, damageEffectiveness = 4, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [24] = { 0.18000000715256, 0.27000001072884, critChance = 7, damageEffectiveness = 4, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [25] = { 0.18000000715256, 0.27000001072884, critChance = 7, damageEffectiveness = 4, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [26] = { 0.18999999761581, 0.28000000119209, critChance = 7, damageEffectiveness = 4, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [27] = { 0.18999999761581, 0.28000000119209, critChance = 7, damageEffectiveness = 4, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [28] = { 0.18999999761581, 0.28999999165535, critChance = 7, damageEffectiveness = 4, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, - [29] = { 0.20000000298023, 0.30000001192093, critChance = 7, damageEffectiveness = 4, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [30] = { 0.20000000298023, 0.30000001192093, critChance = 7, damageEffectiveness = 4, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [31] = { 0.20999999344349, 0.31000000238419, critChance = 7, damageEffectiveness = 4, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 32, }, }, - [32] = { 0.20999999344349, 0.31999999284744, critChance = 7, damageEffectiveness = 4, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [33] = { 0.20999999344349, 0.31999999284744, critChance = 7, damageEffectiveness = 4, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [34] = { 0.21999999880791, 0.33000001311302, critChance = 7, damageEffectiveness = 4, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 33, }, }, - [35] = { 0.21999999880791, 0.33000001311302, critChance = 7, damageEffectiveness = 4, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [36] = { 0.23000000417233, 0.34000000357628, critChance = 7, damageEffectiveness = 4, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [37] = { 0.23000000417233, 0.34999999403954, critChance = 7, damageEffectiveness = 4, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [38] = { 0.23999999463558, 0.34999999403954, critChance = 7, damageEffectiveness = 4, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 34, }, }, - [39] = { 0.23999999463558, 0.36000001430511, critChance = 7, damageEffectiveness = 4, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, - [40] = { 0.23999999463558, 0.37000000476837, critChance = 7, damageEffectiveness = 4, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 35, }, }, + [1] = { 0.079999998211861, 0.11999999731779, 3, critChance = 10, damageEffectiveness = 4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [2] = { 0.079999998211861, 0.12999999523163, 3, critChance = 10, damageEffectiveness = 4, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [3] = { 0.079999998211861, 0.12999999523163, 3, critChance = 10, damageEffectiveness = 4, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [4] = { 0.090000003576279, 0.14000000059605, 3, critChance = 10, damageEffectiveness = 4, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [5] = { 0.10000000149012, 0.15000000596046, 3, critChance = 10, damageEffectiveness = 4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [6] = { 0.10000000149012, 0.15000000596046, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [7] = { 0.10999999940395, 0.15999999642372, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [8] = { 0.10999999940395, 0.15999999642372, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [9] = { 0.10999999940395, 0.17000000178814, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [10] = { 0.11999999731779, 0.18000000715256, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 0.11999999731779, 0.18000000715256, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 0.12999999523163, 0.18999999761581, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [13] = { 0.12999999523163, 0.20000000298023, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [14] = { 0.12999999523163, 0.20000000298023, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [15] = { 0.14000000059605, 0.20999999344349, 4, critChance = 10, damageEffectiveness = 4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [16] = { 0.14000000059605, 0.20999999344349, 5, critChance = 10, damageEffectiveness = 4, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [17] = { 0.15000000596046, 0.21999999880791, 5, critChance = 10, damageEffectiveness = 4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [18] = { 0.15000000596046, 0.23000000417233, 5, critChance = 10, damageEffectiveness = 4, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 0.15999999642372, 0.23000000417233, 5, critChance = 10, damageEffectiveness = 4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [20] = { 0.15999999642372, 0.23999999463558, 5, critChance = 10, damageEffectiveness = 4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [21] = { 0.15999999642372, 0.25, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [22] = { 0.17000000178814, 0.25, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [23] = { 0.17000000178814, 0.25999999046326, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [24] = { 0.18000000715256, 0.27000001072884, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [25] = { 0.18000000715256, 0.27000001072884, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [26] = { 0.18999999761581, 0.28000000119209, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [27] = { 0.18999999761581, 0.28000000119209, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [28] = { 0.18999999761581, 0.28999999165535, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.20000000298023, 0.30000001192093, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [30] = { 0.20000000298023, 0.30000001192093, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [31] = { 0.20999999344349, 0.31000000238419, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [32] = { 0.20999999344349, 0.31999999284744, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [33] = { 0.20999999344349, 0.31999999284744, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [34] = { 0.21999999880791, 0.33000001311302, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [35] = { 0.21999999880791, 0.33000001311302, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [36] = { 0.23000000417233, 0.34000000357628, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [37] = { 0.23000000417233, 0.34999999403954, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [38] = { 0.23999999463558, 0.34999999403954, 6, critChance = 10, damageEffectiveness = 4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [39] = { 0.23999999463558, 0.36000001430511, 7, critChance = 10, damageEffectiveness = 4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [40] = { 0.23999999463558, 0.37000000476837, 7, critChance = 10, damageEffectiveness = 4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, }, } skills["SoulrendAltY"] = { @@ -16562,46 +16658,46 @@ skills["SoulrendAltY"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 42.000000620882, 0.079999998211861, 0.11999999731779, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, - [2] = { 41.166668063651, 0.079999998211861, 0.12999999523163, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 36, }, }, - [3] = { 40.666668529312, 0.079999998211861, 0.12999999523163, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Mana = 37, }, }, - [4] = { 39.833335972081, 0.090000003576279, 0.14000000059605, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Mana = 39, }, }, - [5] = { 39.166665952653, 0.10000000149012, 0.15000000596046, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Mana = 40, }, }, - [6] = { 38.83333292976, 0.10000000149012, 0.15000000596046, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Mana = 42, }, }, - [7] = { 38.499999906868, 0.10999999940395, 0.15999999642372, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 43, }, }, - [8] = { 38.166666883975, 0.10999999940395, 0.15999999642372, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Mana = 45, }, }, - [9] = { 37.833333861083, 0.10999999940395, 0.17000000178814, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Mana = 47, }, }, - [10] = { 37.666667349637, 0.11999999731779, 0.18000000715256, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 48, }, }, - [11] = { 37.166667815298, 0.11999999731779, 0.18000000715256, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Mana = 50, }, }, - [12] = { 36.833334792405, 0.12999999523163, 0.18999999761581, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Mana = 51, }, }, - [13] = { 36.666668280959, 0.12999999523163, 0.20000000298023, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 53, }, }, - [14] = { 36.16666874662, 0.12999999523163, 0.20000000298023, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Mana = 55, }, }, - [15] = { 35.833335723728, 0.14000000059605, 0.20999999344349, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Mana = 56, }, }, - [16] = { 35.500002700836, 0.14000000059605, 0.20999999344349, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 58, }, }, - [17] = { 35.1666657043, 0.15000000596046, 0.21999999880791, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 59, }, }, - [18] = { 34.833332681408, 0.15000000596046, 0.23000000417233, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 61, }, }, - [19] = { 34.666666169961, 0.15999999642372, 0.23000000417233, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 62, }, }, - [20] = { 34.166666635623, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 64, }, }, - [21] = { 33.83333361273, 0.15999999642372, 0.25, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 66, }, }, - [22] = { 33.500000589838, 0.17000000178814, 0.25, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 67, }, }, - [23] = { 33.166667566945, 0.17000000178814, 0.25999999046326, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 69, }, }, - [24] = { 32.833334544053, 0.18000000715256, 0.27000001072884, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 70, }, }, - [25] = { 32.50000152116, 0.18000000715256, 0.27000001072884, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 72, }, }, - [26] = { 32.333335009714, 0.18999999761581, 0.28000000119209, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 73, }, }, - [27] = { 32, 0.18999999761581, 0.28000000119209, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 75, }, }, - [28] = { 31.500000465661, 0.18999999761581, 0.28999999165535, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 77, }, }, - [29] = { 31.166667442769, 0.20000000298023, 0.30000001192093, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 78, }, }, - [30] = { 31.000000931323, 0.20000000298023, 0.30000001192093, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 80, }, }, - [31] = { 31.000000931323, 0.20999999344349, 0.31000000238419, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 81, }, }, - [32] = { 30.833334419876, 0.20999999344349, 0.31999999284744, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 81, }, }, - [33] = { 30.833334419876, 0.20999999344349, 0.31999999284744, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 82, }, }, - [34] = { 30.833334419876, 0.21999999880791, 0.33000001311302, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 83, }, }, - [35] = { 30.66666790843, 0.21999999880791, 0.33000001311302, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 84, }, }, - [36] = { 30.66666790843, 0.23000000417233, 0.34000000357628, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 85, }, }, - [37] = { 30.66666790843, 0.23000000417233, 0.34999999403954, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 85, }, }, - [38] = { 30.66666790843, 0.23999999463558, 0.34999999403954, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 86, }, }, - [39] = { 30.66666790843, 0.23999999463558, 0.36000001430511, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 87, }, }, - [40] = { 30.333334885538, 0.23999999463558, 0.37000000476837, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 88, }, }, + [1] = { 41.666667597989, 0.079999998211861, 0.11999999731779, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Mana = 34, }, }, + [2] = { 41.666667597989, 0.079999998211861, 0.12999999523163, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 36, }, }, + [3] = { 41.666667597989, 0.079999998211861, 0.12999999523163, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Mana = 37, }, }, + [4] = { 41.666667597989, 0.090000003576279, 0.14000000059605, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Mana = 39, }, }, + [5] = { 41.666667597989, 0.10000000149012, 0.15000000596046, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Mana = 40, }, }, + [6] = { 41.666667597989, 0.10000000149012, 0.15000000596046, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Mana = 42, }, }, + [7] = { 41.666667597989, 0.10999999940395, 0.15999999642372, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 43, }, }, + [8] = { 41.666667597989, 0.10999999940395, 0.15999999642372, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Mana = 45, }, }, + [9] = { 41.666667597989, 0.10999999940395, 0.17000000178814, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Mana = 47, }, }, + [10] = { 41.666667597989, 0.11999999731779, 0.18000000715256, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 48, }, }, + [11] = { 41.666667597989, 0.11999999731779, 0.18000000715256, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Mana = 50, }, }, + [12] = { 41.666667597989, 0.12999999523163, 0.18999999761581, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Mana = 51, }, }, + [13] = { 41.666667597989, 0.12999999523163, 0.20000000298023, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 53, }, }, + [14] = { 41.666667597989, 0.12999999523163, 0.20000000298023, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Mana = 55, }, }, + [15] = { 41.666667597989, 0.14000000059605, 0.20999999344349, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Mana = 56, }, }, + [16] = { 41.666667597989, 0.14000000059605, 0.20999999344349, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 58, }, }, + [17] = { 41.666667597989, 0.15000000596046, 0.21999999880791, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 59, }, }, + [18] = { 41.666667597989, 0.15000000596046, 0.23000000417233, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 61, }, }, + [19] = { 41.666667597989, 0.15999999642372, 0.23000000417233, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 62, }, }, + [20] = { 41.666667597989, 0.15999999642372, 0.23999999463558, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 64, }, }, + [21] = { 41.666667597989, 0.15999999642372, 0.25, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 66, }, }, + [22] = { 41.666667597989, 0.17000000178814, 0.25, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 67, }, }, + [23] = { 41.666667597989, 0.17000000178814, 0.25999999046326, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 69, }, }, + [24] = { 41.666667597989, 0.18000000715256, 0.27000001072884, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 70, }, }, + [25] = { 41.666667597989, 0.18000000715256, 0.27000001072884, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 72, }, }, + [26] = { 41.666667597989, 0.18999999761581, 0.28000000119209, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 73, }, }, + [27] = { 41.666667597989, 0.18999999761581, 0.28000000119209, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 75, }, }, + [28] = { 41.666667597989, 0.18999999761581, 0.28999999165535, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 77, }, }, + [29] = { 41.666667597989, 0.20000000298023, 0.30000001192093, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 78, }, }, + [30] = { 41.666667597989, 0.20000000298023, 0.30000001192093, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 80, }, }, + [31] = { 41.666667597989, 0.20999999344349, 0.31000000238419, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 81, }, }, + [32] = { 41.666667597989, 0.20999999344349, 0.31999999284744, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 81, }, }, + [33] = { 41.666667597989, 0.20999999344349, 0.31999999284744, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 82, }, }, + [34] = { 41.666667597989, 0.21999999880791, 0.33000001311302, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 83, }, }, + [35] = { 41.666667597989, 0.21999999880791, 0.33000001311302, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 84, }, }, + [36] = { 41.666667597989, 0.23000000417233, 0.34000000357628, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 85, }, }, + [37] = { 41.666667597989, 0.23000000417233, 0.34999999403954, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 85, }, }, + [38] = { 41.666667597989, 0.23999999463558, 0.34999999403954, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 86, }, }, + [39] = { 41.666667597989, 0.23999999463558, 0.36000001430511, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 87, }, }, + [40] = { 41.666667597989, 0.23999999463558, 0.37000000476837, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 88, }, }, }, } skills["Spark"] = { @@ -16613,7 +16709,7 @@ skills["Spark"] = { description = "Launches unpredictable sparks that move randomly until they hit an enemy or expire.", skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.65, + castTime = 0.6, parts = { { name = "1 Hit", @@ -16652,46 +16748,46 @@ skills["Spark"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, }, } skills["SparkAltX"] = { @@ -16703,7 +16799,7 @@ skills["SparkAltX"] = { description = "Launches unpredictable sparks in all directions that move randomly until they hit an enemy or expire.", skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.75, + castTime = 0.7, parts = { { name = "1 Hit", @@ -16729,7 +16825,6 @@ skills["SparkAltX"] = { }, constantStats = { { "base_skill_effect_duration", 2000 }, - { "base_number_of_projectiles", 4 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -16744,46 +16839,46 @@ skills["SparkAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 2, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 2, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 2, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 2, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 2, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 2, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 2, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 10, critChance = 6, damageEffectiveness = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 11, critChance = 6, damageEffectiveness = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 12, critChance = 6, damageEffectiveness = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 13, critChance = 6, damageEffectiveness = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, }, } skills["SparkAltY"] = { @@ -16795,7 +16890,7 @@ skills["SparkAltY"] = { description = "Launches unpredictable sparks with that move randomly with large differences in speed and distance until they hit an enemy or expire.", skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.65, + castTime = 0.6, parts = { { name = "1 Hit", @@ -16834,58 +16929,58 @@ skills["SparkAltY"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 3, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 2, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 4, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 7, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 11, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 5, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 6, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 9, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, }, } skills["VaalSpark"] = { name = "Vaal Spark", baseTypeName = "Vaal Spark", color = 3, - baseEffectiveness = 1.4524999856949, - incrementalEffectiveness = 0.02559999935329, + baseEffectiveness = 1.6699999570847, + incrementalEffectiveness = 0.028000000864267, description = "Continuously launches unpredictable sparks in all directions that move randomly until they hit an enemy or expire.", skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.ProjectileSpiral] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Vaal] = true, [SkillType.Lightning] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.65, + castTime = 0.6, baseFlags = { spell = true, projectile = true, @@ -16895,7 +16990,7 @@ skills["VaalSpark"] = { { "base_number_of_projectiles", 0.1 }, }, constantStats = { - { "base_skill_effect_duration", 2000 }, + { "base_skill_effect_duration", 3000 }, { "base_number_of_projectiles_in_spiral_nova", 100 }, { "projectile_spiral_nova_time_ms", 3000 }, }, @@ -16912,46 +17007,46 @@ skills["VaalSpark"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 1, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [2] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 2, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [3] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 4, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [4] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 7, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [5] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 11, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [6] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 16, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [7] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 20, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [8] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 24, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [9] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 28, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [10] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 32, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [11] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 36, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [12] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 40, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [13] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 44, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [14] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 48, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [15] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 52, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [16] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 56, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [17] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 60, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [18] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 64, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [19] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 67, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [20] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 70, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [21] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 72, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [22] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 74, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [23] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 76, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [24] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 78, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [25] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 80, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [26] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 82, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [27] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 84, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [28] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 86, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [29] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 88, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [30] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 90, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [31] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 91, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [32] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 92, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [33] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 93, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [34] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 94, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [35] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 95, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [36] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 96, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [37] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 97, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [38] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 98, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [39] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 99, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [40] = { 0.10000000149012, 1.8999999761581, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 100, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [1] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 1, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [2] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 2, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [3] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 4, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [4] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 7, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [5] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 11, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [6] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 16, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [7] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 20, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [8] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 24, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [9] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 28, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [10] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 32, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [11] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 36, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [12] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 40, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [13] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [14] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 48, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [15] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 52, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [16] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [17] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 60, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [18] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [19] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 67, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [20] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [21] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [22] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [23] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [24] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [25] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [26] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [27] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [28] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [29] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [30] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [31] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [32] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [33] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [34] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [35] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [36] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [37] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [38] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [39] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [40] = { 0.10000000149012, 1.8999999761581, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, soulPreventionDuration = 5, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, }, } skills["Spellslinger"] = { @@ -17556,7 +17651,7 @@ skills["Stormbind"] = { baseTypeName = "Stormbind", color = 3, baseEffectiveness = 1.6692999601364, - incrementalEffectiveness = 0.043200001120567, + incrementalEffectiveness = 0.046500001102686, description = "Channel to spread runes on the ground in a growing pattern. The runes fade away after a duration, or will be immediately removed and deal damage in a circular area when detonated by Rune Blast. Enemies standing on the runes are Hindered, reducing their movement speed.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.AreaSpell] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, [SkillType.Duration] = true, [SkillType.Arcane] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -17632,46 +17727,46 @@ skills["Stormbind"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, 5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [2] = { 0.5, 1.5, 6, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [3] = { 0.5, 1.5, 7, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [4] = { 0.5, 1.5, 8, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [5] = { 0.5, 1.5, 9, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [6] = { 0.5, 1.5, 10, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [7] = { 0.5, 1.5, 11, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [8] = { 0.5, 1.5, 12, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [9] = { 0.5, 1.5, 13, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [10] = { 0.5, 1.5, 14, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [11] = { 0.5, 1.5, 15, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [12] = { 0.5, 1.5, 16, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [13] = { 0.5, 1.5, 17, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [14] = { 0.5, 1.5, 18, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.5, 1.5, 19, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.5, 1.5, 23, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [20] = { 0.5, 1.5, 24, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [21] = { 0.5, 1.5, 25, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [22] = { 0.5, 1.5, 26, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.5, 1.5, 27, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.5, 1.5, 28, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.5, 1.5, 29, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.5, 1.5, 30, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.5, 1.5, 31, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.5, 1.5, 32, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.5, 1.5, 33, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.5, 1.5, 34, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.5, 1.5, 35, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.5, 1.5, 35, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.5, 1.5, 36, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.5, 1.5, 36, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.5, 1.5, 37, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.5, 1.5, 37, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.5, 1.5, 38, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.5, 1.5, 38, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.5, 1.5, 39, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.5, 1.5, 39, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.5, 1.5, 5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [2] = { 0.5, 1.5, 6, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [3] = { 0.5, 1.5, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [4] = { 0.5, 1.5, 8, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [5] = { 0.5, 1.5, 9, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [6] = { 0.5, 1.5, 10, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [7] = { 0.5, 1.5, 11, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [8] = { 0.5, 1.5, 12, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [9] = { 0.5, 1.5, 13, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [10] = { 0.5, 1.5, 14, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [11] = { 0.5, 1.5, 15, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [12] = { 0.5, 1.5, 16, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [13] = { 0.5, 1.5, 17, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [14] = { 0.5, 1.5, 18, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [15] = { 0.5, 1.5, 19, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [16] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [17] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [18] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [19] = { 0.5, 1.5, 23, critChance = 6, damageEffectiveness = 2, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.5, 1.5, 24, critChance = 6, damageEffectiveness = 2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.5, 1.5, 25, critChance = 6, damageEffectiveness = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.5, 1.5, 26, critChance = 6, damageEffectiveness = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [23] = { 0.5, 1.5, 27, critChance = 6, damageEffectiveness = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [24] = { 0.5, 1.5, 28, critChance = 6, damageEffectiveness = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [25] = { 0.5, 1.5, 29, critChance = 6, damageEffectiveness = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [26] = { 0.5, 1.5, 30, critChance = 6, damageEffectiveness = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [27] = { 0.5, 1.5, 31, critChance = 6, damageEffectiveness = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [28] = { 0.5, 1.5, 32, critChance = 6, damageEffectiveness = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [29] = { 0.5, 1.5, 33, critChance = 6, damageEffectiveness = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [30] = { 0.5, 1.5, 34, critChance = 6, damageEffectiveness = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [31] = { 0.5, 1.5, 35, critChance = 6, damageEffectiveness = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [32] = { 0.5, 1.5, 35, critChance = 6, damageEffectiveness = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [33] = { 0.5, 1.5, 36, critChance = 6, damageEffectiveness = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [34] = { 0.5, 1.5, 36, critChance = 6, damageEffectiveness = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [35] = { 0.5, 1.5, 37, critChance = 6, damageEffectiveness = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [36] = { 0.5, 1.5, 37, critChance = 6, damageEffectiveness = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [37] = { 0.5, 1.5, 38, critChance = 6, damageEffectiveness = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [38] = { 0.5, 1.5, 38, critChance = 6, damageEffectiveness = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [39] = { 0.5, 1.5, 39, critChance = 6, damageEffectiveness = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [40] = { 0.5, 1.5, 39, critChance = 6, damageEffectiveness = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, }, } skills["RuneBlast"] = { @@ -17681,7 +17776,7 @@ skills["RuneBlast"] = { description = "Channel to improve runes placed by Stormbind based on the mana you spend channelling this skill. Release to detonate the targeted rune, which will cause other runes to detonate in a chain reaction.", skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Arcane] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.2, + castTime = 0.16, baseFlags = { spell = true, }, @@ -17691,46 +17786,46 @@ skills["RuneBlast"] = { stats = { }, levels = { - [1] = { levelRequirement = 28, cost = { Mana = 5, }, }, - [2] = { levelRequirement = 31, cost = { Mana = 5, }, }, - [3] = { levelRequirement = 34, cost = { Mana = 6, }, }, - [4] = { levelRequirement = 37, cost = { Mana = 6, }, }, - [5] = { levelRequirement = 40, cost = { Mana = 7, }, }, - [6] = { levelRequirement = 42, cost = { Mana = 7, }, }, - [7] = { levelRequirement = 44, cost = { Mana = 8, }, }, - [8] = { levelRequirement = 46, cost = { Mana = 8, }, }, - [9] = { levelRequirement = 48, cost = { Mana = 9, }, }, - [10] = { levelRequirement = 50, cost = { Mana = 9, }, }, - [11] = { levelRequirement = 52, cost = { Mana = 10, }, }, - [12] = { levelRequirement = 54, cost = { Mana = 10, }, }, - [13] = { levelRequirement = 56, cost = { Mana = 11, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 11, }, }, - [15] = { levelRequirement = 60, cost = { Mana = 12, }, }, - [16] = { levelRequirement = 62, cost = { Mana = 12, }, }, - [17] = { levelRequirement = 64, cost = { Mana = 13, }, }, - [18] = { levelRequirement = 66, cost = { Mana = 13, }, }, - [19] = { levelRequirement = 68, cost = { Mana = 14, }, }, - [20] = { levelRequirement = 70, cost = { Mana = 14, }, }, - [21] = { levelRequirement = 72, cost = { Mana = 14, }, }, - [22] = { levelRequirement = 74, cost = { Mana = 15, }, }, - [23] = { levelRequirement = 76, cost = { Mana = 15, }, }, - [24] = { levelRequirement = 78, cost = { Mana = 16, }, }, - [25] = { levelRequirement = 80, cost = { Mana = 16, }, }, - [26] = { levelRequirement = 82, cost = { Mana = 17, }, }, - [27] = { levelRequirement = 84, cost = { Mana = 17, }, }, - [28] = { levelRequirement = 86, cost = { Mana = 18, }, }, - [29] = { levelRequirement = 88, cost = { Mana = 18, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 19, }, }, - [31] = { levelRequirement = 91, cost = { Mana = 19, }, }, - [32] = { levelRequirement = 92, cost = { Mana = 19, }, }, - [33] = { levelRequirement = 93, cost = { Mana = 20, }, }, - [34] = { levelRequirement = 94, cost = { Mana = 20, }, }, - [35] = { levelRequirement = 95, cost = { Mana = 20, }, }, - [36] = { levelRequirement = 96, cost = { Mana = 20, }, }, - [37] = { levelRequirement = 97, cost = { Mana = 21, }, }, - [38] = { levelRequirement = 98, cost = { Mana = 21, }, }, - [39] = { levelRequirement = 99, cost = { Mana = 21, }, }, - [40] = { levelRequirement = 100, cost = { Mana = 21, }, }, + [1] = { levelRequirement = 28, cost = { Mana = 6, }, }, + [2] = { levelRequirement = 31, cost = { Mana = 6, }, }, + [3] = { levelRequirement = 34, cost = { Mana = 8, }, }, + [4] = { levelRequirement = 37, cost = { Mana = 8, }, }, + [5] = { levelRequirement = 40, cost = { Mana = 9, }, }, + [6] = { levelRequirement = 42, cost = { Mana = 9, }, }, + [7] = { levelRequirement = 44, cost = { Mana = 10, }, }, + [8] = { levelRequirement = 46, cost = { Mana = 10, }, }, + [9] = { levelRequirement = 48, cost = { Mana = 11, }, }, + [10] = { levelRequirement = 50, cost = { Mana = 11, }, }, + [11] = { levelRequirement = 52, cost = { Mana = 13, }, }, + [12] = { levelRequirement = 54, cost = { Mana = 13, }, }, + [13] = { levelRequirement = 56, cost = { Mana = 14, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 14, }, }, + [15] = { levelRequirement = 60, cost = { Mana = 15, }, }, + [16] = { levelRequirement = 62, cost = { Mana = 15, }, }, + [17] = { levelRequirement = 64, cost = { Mana = 16, }, }, + [18] = { levelRequirement = 66, cost = { Mana = 16, }, }, + [19] = { levelRequirement = 68, cost = { Mana = 18, }, }, + [20] = { levelRequirement = 70, cost = { Mana = 18, }, }, + [21] = { levelRequirement = 72, cost = { Mana = 18, }, }, + [22] = { levelRequirement = 74, cost = { Mana = 19, }, }, + [23] = { levelRequirement = 76, cost = { Mana = 19, }, }, + [24] = { levelRequirement = 78, cost = { Mana = 20, }, }, + [25] = { levelRequirement = 80, cost = { Mana = 20, }, }, + [26] = { levelRequirement = 82, cost = { Mana = 21, }, }, + [27] = { levelRequirement = 84, cost = { Mana = 21, }, }, + [28] = { levelRequirement = 86, cost = { Mana = 23, }, }, + [29] = { levelRequirement = 88, cost = { Mana = 23, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 24, }, }, + [31] = { levelRequirement = 91, cost = { Mana = 24, }, }, + [32] = { levelRequirement = 92, cost = { Mana = 24, }, }, + [33] = { levelRequirement = 93, cost = { Mana = 25, }, }, + [34] = { levelRequirement = 94, cost = { Mana = 25, }, }, + [35] = { levelRequirement = 95, cost = { Mana = 25, }, }, + [36] = { levelRequirement = 96, cost = { Mana = 25, }, }, + [37] = { levelRequirement = 97, cost = { Mana = 26, }, }, + [38] = { levelRequirement = 98, cost = { Mana = 26, }, }, + [39] = { levelRequirement = 99, cost = { Mana = 26, }, }, + [40] = { levelRequirement = 100, cost = { Mana = 26, }, }, }, } skills["StormbindAltX"] = { @@ -17738,7 +17833,7 @@ skills["StormbindAltX"] = { baseTypeName = "Stormbind of Teleportation", color = 3, baseEffectiveness = 1.6692999601364, - incrementalEffectiveness = 0.043200001120567, + incrementalEffectiveness = 0.046500001102686, description = "Channel to spread runes on the ground in a growing pattern. The runes fade away after a duration, or will be immediately removed and deal damage in a circular area when detonated by Rune Blast. Enemies standing on the runes are Hindered, reducing their movement speed.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.AreaSpell] = true, [SkillType.Channel] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, [SkillType.Duration] = true, [SkillType.Arcane] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -17814,46 +17909,46 @@ skills["StormbindAltX"] = { "spell_maximum_base_lightning_damage", }, levels = { - [1] = { 0.5, 1.5, 5, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [2] = { 0.5, 1.5, 6, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [3] = { 0.5, 1.5, 7, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [4] = { 0.5, 1.5, 8, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [5] = { 0.5, 1.5, 9, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [6] = { 0.5, 1.5, 10, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [7] = { 0.5, 1.5, 11, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [8] = { 0.5, 1.5, 12, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [9] = { 0.5, 1.5, 13, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [10] = { 0.5, 1.5, 14, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [11] = { 0.5, 1.5, 15, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [12] = { 0.5, 1.5, 16, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [13] = { 0.5, 1.5, 17, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [14] = { 0.5, 1.5, 18, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.5, 1.5, 19, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.5, 1.5, 23, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [20] = { 0.5, 1.5, 24, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [21] = { 0.5, 1.5, 25, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [22] = { 0.5, 1.5, 26, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.5, 1.5, 27, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.5, 1.5, 28, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.5, 1.5, 29, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.5, 1.5, 30, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.5, 1.5, 31, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.5, 1.5, 32, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [29] = { 0.5, 1.5, 33, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [30] = { 0.5, 1.5, 34, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.5, 1.5, 35, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.5, 1.5, 35, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.5, 1.5, 36, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.5, 1.5, 36, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.5, 1.5, 37, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.5, 1.5, 37, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.5, 1.5, 38, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.5, 1.5, 38, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.5, 1.5, 39, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.5, 1.5, 39, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.5, 1.5, 5, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [2] = { 0.5, 1.5, 6, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [3] = { 0.5, 1.5, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [4] = { 0.5, 1.5, 8, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [5] = { 0.5, 1.5, 9, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [6] = { 0.5, 1.5, 10, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [7] = { 0.5, 1.5, 11, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [8] = { 0.5, 1.5, 12, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [9] = { 0.5, 1.5, 13, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [10] = { 0.5, 1.5, 14, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [11] = { 0.5, 1.5, 15, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [12] = { 0.5, 1.5, 16, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [13] = { 0.5, 1.5, 17, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [14] = { 0.5, 1.5, 18, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [15] = { 0.5, 1.5, 19, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [16] = { 0.5, 1.5, 20, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [17] = { 0.5, 1.5, 21, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [18] = { 0.5, 1.5, 22, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [19] = { 0.5, 1.5, 23, critChance = 6, damageEffectiveness = 2, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [20] = { 0.5, 1.5, 24, critChance = 6, damageEffectiveness = 2, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [21] = { 0.5, 1.5, 25, critChance = 6, damageEffectiveness = 2, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [22] = { 0.5, 1.5, 26, critChance = 6, damageEffectiveness = 2, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [23] = { 0.5, 1.5, 27, critChance = 6, damageEffectiveness = 2, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [24] = { 0.5, 1.5, 28, critChance = 6, damageEffectiveness = 2, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [25] = { 0.5, 1.5, 29, critChance = 6, damageEffectiveness = 2, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [26] = { 0.5, 1.5, 30, critChance = 6, damageEffectiveness = 2, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [27] = { 0.5, 1.5, 31, critChance = 6, damageEffectiveness = 2, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [28] = { 0.5, 1.5, 32, critChance = 6, damageEffectiveness = 2, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [29] = { 0.5, 1.5, 33, critChance = 6, damageEffectiveness = 2, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [30] = { 0.5, 1.5, 34, critChance = 6, damageEffectiveness = 2, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [31] = { 0.5, 1.5, 35, critChance = 6, damageEffectiveness = 2, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [32] = { 0.5, 1.5, 35, critChance = 6, damageEffectiveness = 2, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [33] = { 0.5, 1.5, 36, critChance = 6, damageEffectiveness = 2, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [34] = { 0.5, 1.5, 36, critChance = 6, damageEffectiveness = 2, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [35] = { 0.5, 1.5, 37, critChance = 6, damageEffectiveness = 2, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [36] = { 0.5, 1.5, 37, critChance = 6, damageEffectiveness = 2, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [37] = { 0.5, 1.5, 38, critChance = 6, damageEffectiveness = 2, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [38] = { 0.5, 1.5, 38, critChance = 6, damageEffectiveness = 2, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [39] = { 0.5, 1.5, 39, critChance = 6, damageEffectiveness = 2, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [40] = { 0.5, 1.5, 39, critChance = 6, damageEffectiveness = 2, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, }, } skills["RuneBlastAltX"] = { @@ -17863,7 +17958,7 @@ skills["RuneBlastAltX"] = { description = "Channel to improve runes placed by Stormbind based on the mana you spend channelling this skill. Release to detonate the targeted rune, which will cause other runes to detonate in a chain reaction. Detonation can teleport you to the targeted Rune.", skillTypes = { [SkillType.Spell] = true, [SkillType.Channel] = true, [SkillType.Arcane] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Blink] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.2, + castTime = 0.16, baseFlags = { spell = true, }, @@ -17875,46 +17970,46 @@ skills["RuneBlastAltX"] = { "gem_display_rune_blast_is_gem", }, levels = { - [1] = { levelRequirement = 28, cost = { Mana = 5, }, }, - [2] = { levelRequirement = 31, cost = { Mana = 5, }, }, - [3] = { levelRequirement = 34, cost = { Mana = 6, }, }, - [4] = { levelRequirement = 37, cost = { Mana = 6, }, }, - [5] = { levelRequirement = 40, cost = { Mana = 7, }, }, - [6] = { levelRequirement = 42, cost = { Mana = 7, }, }, - [7] = { levelRequirement = 44, cost = { Mana = 8, }, }, - [8] = { levelRequirement = 46, cost = { Mana = 8, }, }, - [9] = { levelRequirement = 48, cost = { Mana = 9, }, }, - [10] = { levelRequirement = 50, cost = { Mana = 9, }, }, - [11] = { levelRequirement = 52, cost = { Mana = 10, }, }, - [12] = { levelRequirement = 54, cost = { Mana = 10, }, }, - [13] = { levelRequirement = 56, cost = { Mana = 11, }, }, - [14] = { levelRequirement = 58, cost = { Mana = 11, }, }, - [15] = { levelRequirement = 60, cost = { Mana = 12, }, }, - [16] = { levelRequirement = 62, cost = { Mana = 12, }, }, - [17] = { levelRequirement = 64, cost = { Mana = 13, }, }, - [18] = { levelRequirement = 66, cost = { Mana = 13, }, }, - [19] = { levelRequirement = 68, cost = { Mana = 14, }, }, - [20] = { levelRequirement = 70, cost = { Mana = 14, }, }, - [21] = { levelRequirement = 72, cost = { Mana = 14, }, }, - [22] = { levelRequirement = 74, cost = { Mana = 15, }, }, - [23] = { levelRequirement = 76, cost = { Mana = 15, }, }, - [24] = { levelRequirement = 78, cost = { Mana = 16, }, }, - [25] = { levelRequirement = 80, cost = { Mana = 16, }, }, - [26] = { levelRequirement = 82, cost = { Mana = 17, }, }, - [27] = { levelRequirement = 84, cost = { Mana = 17, }, }, - [28] = { levelRequirement = 86, cost = { Mana = 18, }, }, - [29] = { levelRequirement = 88, cost = { Mana = 18, }, }, - [30] = { levelRequirement = 90, cost = { Mana = 19, }, }, - [31] = { levelRequirement = 91, cost = { Mana = 19, }, }, - [32] = { levelRequirement = 92, cost = { Mana = 19, }, }, - [33] = { levelRequirement = 93, cost = { Mana = 20, }, }, - [34] = { levelRequirement = 94, cost = { Mana = 20, }, }, - [35] = { levelRequirement = 95, cost = { Mana = 20, }, }, - [36] = { levelRequirement = 96, cost = { Mana = 20, }, }, - [37] = { levelRequirement = 97, cost = { Mana = 21, }, }, - [38] = { levelRequirement = 98, cost = { Mana = 21, }, }, - [39] = { levelRequirement = 99, cost = { Mana = 21, }, }, - [40] = { levelRequirement = 100, cost = { Mana = 21, }, }, + [1] = { levelRequirement = 28, cost = { Mana = 6, }, }, + [2] = { levelRequirement = 31, cost = { Mana = 6, }, }, + [3] = { levelRequirement = 34, cost = { Mana = 8, }, }, + [4] = { levelRequirement = 37, cost = { Mana = 8, }, }, + [5] = { levelRequirement = 40, cost = { Mana = 9, }, }, + [6] = { levelRequirement = 42, cost = { Mana = 9, }, }, + [7] = { levelRequirement = 44, cost = { Mana = 10, }, }, + [8] = { levelRequirement = 46, cost = { Mana = 10, }, }, + [9] = { levelRequirement = 48, cost = { Mana = 11, }, }, + [10] = { levelRequirement = 50, cost = { Mana = 11, }, }, + [11] = { levelRequirement = 52, cost = { Mana = 13, }, }, + [12] = { levelRequirement = 54, cost = { Mana = 13, }, }, + [13] = { levelRequirement = 56, cost = { Mana = 14, }, }, + [14] = { levelRequirement = 58, cost = { Mana = 14, }, }, + [15] = { levelRequirement = 60, cost = { Mana = 15, }, }, + [16] = { levelRequirement = 62, cost = { Mana = 15, }, }, + [17] = { levelRequirement = 64, cost = { Mana = 16, }, }, + [18] = { levelRequirement = 66, cost = { Mana = 16, }, }, + [19] = { levelRequirement = 68, cost = { Mana = 18, }, }, + [20] = { levelRequirement = 70, cost = { Mana = 18, }, }, + [21] = { levelRequirement = 72, cost = { Mana = 18, }, }, + [22] = { levelRequirement = 74, cost = { Mana = 19, }, }, + [23] = { levelRequirement = 76, cost = { Mana = 19, }, }, + [24] = { levelRequirement = 78, cost = { Mana = 20, }, }, + [25] = { levelRequirement = 80, cost = { Mana = 20, }, }, + [26] = { levelRequirement = 82, cost = { Mana = 21, }, }, + [27] = { levelRequirement = 84, cost = { Mana = 21, }, }, + [28] = { levelRequirement = 86, cost = { Mana = 23, }, }, + [29] = { levelRequirement = 88, cost = { Mana = 23, }, }, + [30] = { levelRequirement = 90, cost = { Mana = 24, }, }, + [31] = { levelRequirement = 91, cost = { Mana = 24, }, }, + [32] = { levelRequirement = 92, cost = { Mana = 24, }, }, + [33] = { levelRequirement = 93, cost = { Mana = 25, }, }, + [34] = { levelRequirement = 94, cost = { Mana = 25, }, }, + [35] = { levelRequirement = 95, cost = { Mana = 25, }, }, + [36] = { levelRequirement = 96, cost = { Mana = 25, }, }, + [37] = { levelRequirement = 97, cost = { Mana = 26, }, }, + [38] = { levelRequirement = 98, cost = { Mana = 26, }, }, + [39] = { levelRequirement = 99, cost = { Mana = 26, }, }, + [40] = { levelRequirement = 100, cost = { Mana = 26, }, }, }, } skills["StormBurst"] = { @@ -17922,7 +18017,7 @@ skills["StormBurst"] = { baseTypeName = "Storm Burst", color = 3, baseEffectiveness = 0.58840000629425, - incrementalEffectiveness = 0.037200000137091, + incrementalEffectiveness = 0.039200000464916, description = "Unleash orbs of energy while you channel that repeatedly jump towards the targeted location until their duration expires, dealing damage in a small area after each jump. When you stop channelling, all remaining orbs explode, dealing higher damage in a larger area.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Lightning] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -17993,46 +18088,46 @@ skills["StormBurst"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.45, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, }, } skills["StormBurstAltX"] = { @@ -18040,7 +18135,7 @@ skills["StormBurstAltX"] = { baseTypeName = "Storm Burst of Repulsion", color = 3, baseEffectiveness = 1.0820000171661, - incrementalEffectiveness = 0.037200000137091, + incrementalEffectiveness = 0.039200000464916, description = "Unleash orbs of energy while you channel that repeatedly jump away from the targeted location until their duration expires, dealing damage in a small area after each jump. When you stop channelling, all remaining orbs explode, dealing higher damage in a larger area.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Totemable] = true, [SkillType.Lightning] = true, [SkillType.Channel] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -18102,58 +18197,58 @@ skills["StormBurstAltX"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, }, } skills["StormCall"] = { name = "Storm Call", baseTypeName = "Storm Call", color = 3, - baseEffectiveness = 2.4012999534607, - incrementalEffectiveness = 0.044100001454353, + baseEffectiveness = 2.5099999904633, + incrementalEffectiveness = 0.045299999415874, description = "Sets a marker at a location. After a short duration, lightning strikes the marker, dealing damage around it and causing lightning strikes at any other markers you've cast.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.5, + castTime = 0.4, statMap = { ["base_skill_show_average_damage_instead_of_dps"] = { }, @@ -18186,54 +18281,54 @@ skills["StormCall"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [14] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [15] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [17] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.69999998807907, 1.2999999523163, 6, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [19] = { 0.69999998807907, 1.2999999523163, 6, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.69999998807907, 1.2999999523163, 6, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.69999998807907, 1.2999999523163, 7, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.69999998807907, 1.2999999523163, 7, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.69999998807907, 1.2999999523163, 7, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.69999998807907, 1.2999999523163, 8, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.69999998807907, 1.2999999523163, 8, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.69999998807907, 1.2999999523163, 8, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.69999998807907, 1.2999999523163, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.69999998807907, 1.2999999523163, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.69999998807907, 1.2999999523163, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [2] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [3] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [4] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [5] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [6] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [7] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [8] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [9] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [10] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [11] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [12] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [13] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [14] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [15] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [16] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [17] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [18] = { 0.69999998807907, 1.2999999523163, 6, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [19] = { 0.69999998807907, 1.2999999523163, 6, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [20] = { 0.69999998807907, 1.2999999523163, 6, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [21] = { 0.69999998807907, 1.2999999523163, 7, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [22] = { 0.69999998807907, 1.2999999523163, 7, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [23] = { 0.69999998807907, 1.2999999523163, 7, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [24] = { 0.69999998807907, 1.2999999523163, 8, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [25] = { 0.69999998807907, 1.2999999523163, 8, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [26] = { 0.69999998807907, 1.2999999523163, 8, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [27] = { 0.69999998807907, 1.2999999523163, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [28] = { 0.69999998807907, 1.2999999523163, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [29] = { 0.69999998807907, 1.2999999523163, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [30] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [31] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [32] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [33] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [34] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [35] = { 0.69999998807907, 1.2999999523163, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [36] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [37] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [38] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [39] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [40] = { 0.69999998807907, 1.2999999523163, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, }, } skills["StormCallAltX"] = { name = "Storm Call of Trarthus", baseTypeName = "Storm Call of Trarthus", color = 3, - baseEffectiveness = 2.4012999534607, - incrementalEffectiveness = 0.044100001454353, + baseEffectiveness = 2.4000000953674, + incrementalEffectiveness = 0.045000001788139, description = "Sets a marker at a location. After a short duration, a bolt strikes the marker, dealing physical damage around it and causing bolts to strike at any other markers you've cast. Bolt impacts will leave behind a pool of boiling blood, which deals physical damage over time to enemies within it for a secondary duration.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -18256,6 +18351,7 @@ skills["StormCallAltX"] = { constantStats = { { "base_skill_effect_duration", 2000 }, { "base_secondary_skill_effect_duration", 4000 }, + { "active_skill_base_radius_+", 3 }, }, stats = { "spell_minimum_base_physical_damage", @@ -18273,58 +18369,58 @@ skills["StormCallAltX"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 115.76667090729, 0, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 113.27500596512, 0, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 14, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 110.97500572298, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 17, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 108.48333283352, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 18, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 106.18333259138, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 20, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 104.64999909662, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 21, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 103.11666560185, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 22, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 101.58333210709, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 24, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 100.24167125964, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 98.708337764877, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 97.366668970138, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 27, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 96.025000175399, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 28, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 94.683339327946, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 30, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 93.341670533208, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 31, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 92.000001738469, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 32, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 90.65833294373, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 89.124999448967, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 87.591665954205, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 35, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 86.824999206824, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 36, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 85.675003059395, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 37, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 84.52499896468, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 38, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 83.183338117227, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 38, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 82.033334022512, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 39, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 80.883337875083, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 40, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 79.733333780368, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 41, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 78.583337632939, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 77.433333538224, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 76.475002090819, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 43, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 75.324997996104, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 44, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 74.175001848675, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 45, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 73.599999801318, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 73.21667040127, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 72.641668353913, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 72.066666306555, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 71.683336906508, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 71.10833485915, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 70.533332811793, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 70.150003411745, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 69.575001364388, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 68.99999931703, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 0, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 13, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 0, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 14, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 1, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 17, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 1, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 18, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 1, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 20, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 2, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 21, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 2, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 22, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 2, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 24, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 3, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 3, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 3, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 27, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 4, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 28, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 4, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 30, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 4, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 31, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 5, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 32, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 5, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 5, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 6, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 35, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 6, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 36, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 6, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 37, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 7, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 38, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 7, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 38, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 7, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 39, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 8, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 40, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 8, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 41, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 8, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 43, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 44, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 45, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 10, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 96.66667200625, 11, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, }, } skills["VaalStormCall"] = { name = "Vaal Storm Call", baseTypeName = "Vaal Storm Call", color = 3, - baseEffectiveness = 2.6089999675751, - incrementalEffectiveness = 0.033500000834465, + baseEffectiveness = 2.7000000476837, + incrementalEffectiveness = 0.035199999809265, description = "Sets a marker at a location. Lightning strikes random enemies around the marker repeatedly over the skill's duration, dealing damage in an area around the strike. Modifiers to the skill's duration will also affect the delay between these strikes. When the duration ends, a large bolt of lightning strikes the marker, dealing damage around it.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Vaal] = true, [SkillType.Lightning] = true, [SkillType.AreaSpell] = true, [SkillType.Multicastable] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.5, + castTime = 0.4, baseFlags = { spell = true, area = true, @@ -18337,11 +18433,11 @@ skills["VaalStormCall"] = { skill("radiusSecondaryLabel", "Final Lightning Strike area:"), }, qualityStats = { - { "base_skill_area_of_effect_+%", 0.5 }, + { "base_skill_effect_duration", 50 }, }, constantStats = { { "base_skill_effect_duration", 6000 }, - { "vaal_storm_call_base_delay_ms", 250 }, + { "vaal_storm_call_base_delay_ms", 200 }, }, stats = { "spell_minimum_base_lightning_damage", @@ -18361,43 +18457,43 @@ skills["VaalStormCall"] = { [1] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 12, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, [2] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 15, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, [3] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 19, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [4] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 23, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [5] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 27, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [6] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 31, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [7] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 35, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [8] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 38, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [9] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 41, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [10] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 44, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [11] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 47, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [12] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 50, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [13] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 53, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [14] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 56, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [15] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 59, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [16] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 62, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [17] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 64, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [18] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 66, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [19] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 68, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [20] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 70, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [21] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 72, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [22] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 74, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [23] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 76, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [24] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 78, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [25] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 80, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [26] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 82, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [27] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 84, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [28] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 86, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [29] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 88, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [30] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 90, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [31] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 91, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [32] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 92, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [33] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 93, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [34] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 94, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [35] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 95, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [36] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 96, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [37] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 97, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [38] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 98, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [39] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 99, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, - [40] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 100, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [4] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 23, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [5] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 27, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [6] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 31, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [7] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 35, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [8] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 38, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [9] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 41, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [10] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 44, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [11] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 47, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [12] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 50, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [13] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 53, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [14] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 56, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [15] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 59, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [16] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 62, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [17] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 64, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [18] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 66, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [19] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 68, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [20] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 70, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [21] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 72, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [22] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 74, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [23] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 76, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [24] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 78, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [25] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 80, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [26] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 82, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [27] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 84, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [28] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 86, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [29] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 88, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [30] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 90, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [31] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 91, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [32] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 92, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [33] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 93, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [34] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 94, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [35] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 95, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [36] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 96, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [37] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 97, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [38] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 98, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [39] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 99, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, + [40] = { 0.69999998807907, 1.2999999523163, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 100, soulPreventionDuration = 7, vaalStoredUses = 1, statInterpolation = { 3, 3, }, cost = { Soul = 30, }, }, }, } skills["SummonCarrionGolem"] = { @@ -20162,8 +20258,8 @@ skills["VoidSphere"] = { name = "Void Sphere", baseTypeName = "Void Sphere", color = 3, - baseEffectiveness = 0.35989999771118, - incrementalEffectiveness = 0.055500000715256, + baseEffectiveness = 0.43999999761581, + incrementalEffectiveness = 0.057000000029802, description = "Creates a Void Sphere which Hinders enemies in an area around it, with the debuff being stronger on enemies closer to the sphere. It also regularly releases pulses of area damage. The Void Sphere will consume the corpses of any enemies which die in its area. Can only have one Void Sphere at a time.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Totemable] = true, [SkillType.Physical] = true, [SkillType.Damage] = true, [SkillType.Chaos] = true, [SkillType.Orb] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -20186,10 +20282,11 @@ skills["VoidSphere"] = { { "base_cooldown_speed_+%", 1 }, }, constantStats = { - { "skill_physical_damage_%_to_convert_to_chaos", 40 }, + { "skill_physical_damage_%_to_convert_to_chaos", 60 }, { "base_blackhole_tick_rate_ms", 400 }, { "base_skill_effect_duration", 5000 }, { "active_skill_base_area_of_effect_radius", 38 }, + { "black_hole_hinder_description_mode", 1 }, }, stats = { "spell_minimum_base_physical_damage", @@ -20204,54 +20301,54 @@ skills["VoidSphere"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, -30, cooldown = 10, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [2] = { 0.80000001192093, 1.2000000476837, -30, cooldown = 10, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [3] = { 0.80000001192093, 1.2000000476837, -31, cooldown = 10, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 38, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [4] = { 0.80000001192093, 1.2000000476837, -31, cooldown = 10, critChance = 5, damageEffectiveness = 0.5, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [5] = { 0.80000001192093, 1.2000000476837, -32, cooldown = 10, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, - [6] = { 0.80000001192093, 1.2000000476837, -32, cooldown = 10, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, - [7] = { 0.80000001192093, 1.2000000476837, -33, cooldown = 10, critChance = 5, damageEffectiveness = 0.55, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, - [8] = { 0.80000001192093, 1.2000000476837, -33, cooldown = 10, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, - [9] = { 0.80000001192093, 1.2000000476837, -34, cooldown = 10, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, - [10] = { 0.80000001192093, 1.2000000476837, -34, cooldown = 10, critChance = 5, damageEffectiveness = 0.6, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [11] = { 0.80000001192093, 1.2000000476837, -35, cooldown = 10, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [12] = { 0.80000001192093, 1.2000000476837, -35, cooldown = 10, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [13] = { 0.80000001192093, 1.2000000476837, -36, cooldown = 10, critChance = 5, damageEffectiveness = 0.65, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, - [14] = { 0.80000001192093, 1.2000000476837, -36, cooldown = 10, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, - [15] = { 0.80000001192093, 1.2000000476837, -37, cooldown = 10, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [16] = { 0.80000001192093, 1.2000000476837, -37, cooldown = 10, critChance = 5, damageEffectiveness = 0.7, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [17] = { 0.80000001192093, 1.2000000476837, -38, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [18] = { 0.80000001192093, 1.2000000476837, -38, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [19] = { 0.80000001192093, 1.2000000476837, -39, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 69, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 54, }, }, - [20] = { 0.80000001192093, 1.2000000476837, -39, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 54, }, }, - [21] = { 0.80000001192093, 1.2000000476837, -40, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 56, }, }, - [22] = { 0.80000001192093, 1.2000000476837, -40, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 56, }, }, - [23] = { 0.80000001192093, 1.2000000476837, -41, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 58, }, }, - [24] = { 0.80000001192093, 1.2000000476837, -41, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 58, }, }, - [25] = { 0.80000001192093, 1.2000000476837, -42, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, - [26] = { 0.80000001192093, 1.2000000476837, -42, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, - [27] = { 0.80000001192093, 1.2000000476837, -43, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, - [28] = { 0.80000001192093, 1.2000000476837, -43, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, - [29] = { 0.80000001192093, 1.2000000476837, -44, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, - [30] = { 0.80000001192093, 1.2000000476837, -44, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, - [31] = { 0.80000001192093, 1.2000000476837, -44, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, - [32] = { 0.80000001192093, 1.2000000476837, -45, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, - [33] = { 0.80000001192093, 1.2000000476837, -45, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, - [34] = { 0.80000001192093, 1.2000000476837, -45, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, - [35] = { 0.80000001192093, 1.2000000476837, -45, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, - [36] = { 0.80000001192093, 1.2000000476837, -46, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - [37] = { 0.80000001192093, 1.2000000476837, -46, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - [38] = { 0.80000001192093, 1.2000000476837, -46, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - [39] = { 0.80000001192093, 1.2000000476837, -46, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, - [40] = { 0.80000001192093, 1.2000000476837, -47, cooldown = 10, critChance = 5, damageEffectiveness = 0.75, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [1] = { 0.80000001192093, 1.2000000476837, -30, cooldown = 10, critChance = 7, damageEffectiveness = 0.65, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [2] = { 0.80000001192093, 1.2000000476837, -30, cooldown = 10, critChance = 7, damageEffectiveness = 0.65, levelRequirement = 36, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [3] = { 0.80000001192093, 1.2000000476837, -31, cooldown = 10, critChance = 7, damageEffectiveness = 0.7, levelRequirement = 38, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [4] = { 0.80000001192093, 1.2000000476837, -31, cooldown = 10, critChance = 7, damageEffectiveness = 0.7, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [5] = { 0.80000001192093, 1.2000000476837, -32, cooldown = 10, critChance = 7, damageEffectiveness = 0.75, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [6] = { 0.80000001192093, 1.2000000476837, -32, cooldown = 10, critChance = 7, damageEffectiveness = 0.75, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [7] = { 0.80000001192093, 1.2000000476837, -33, cooldown = 10, critChance = 7, damageEffectiveness = 0.8, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, + [8] = { 0.80000001192093, 1.2000000476837, -33, cooldown = 10, critChance = 7, damageEffectiveness = 0.8, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, + [9] = { 0.80000001192093, 1.2000000476837, -34, cooldown = 10, critChance = 7, damageEffectiveness = 0.85, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, + [10] = { 0.80000001192093, 1.2000000476837, -34, cooldown = 10, critChance = 7, damageEffectiveness = 0.85, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [11] = { 0.80000001192093, 1.2000000476837, -35, cooldown = 10, critChance = 7, damageEffectiveness = 0.85, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [12] = { 0.80000001192093, 1.2000000476837, -35, cooldown = 10, critChance = 7, damageEffectiveness = 0.9, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [13] = { 0.80000001192093, 1.2000000476837, -36, cooldown = 10, critChance = 7, damageEffectiveness = 0.9, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, + [14] = { 0.80000001192093, 1.2000000476837, -36, cooldown = 10, critChance = 7, damageEffectiveness = 0.9, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, + [15] = { 0.80000001192093, 1.2000000476837, -37, cooldown = 10, critChance = 7, damageEffectiveness = 0.9, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [16] = { 0.80000001192093, 1.2000000476837, -37, cooldown = 10, critChance = 7, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [17] = { 0.80000001192093, 1.2000000476837, -38, cooldown = 10, critChance = 7, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [18] = { 0.80000001192093, 1.2000000476837, -38, cooldown = 10, critChance = 7, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [19] = { 0.80000001192093, 1.2000000476837, -39, cooldown = 10, critChance = 7, levelRequirement = 69, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 54, }, }, + [20] = { 0.80000001192093, 1.2000000476837, -39, cooldown = 10, critChance = 7, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 54, }, }, + [21] = { 0.80000001192093, 1.2000000476837, -40, cooldown = 10, critChance = 7, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 56, }, }, + [22] = { 0.80000001192093, 1.2000000476837, -40, cooldown = 10, critChance = 7, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 56, }, }, + [23] = { 0.80000001192093, 1.2000000476837, -41, cooldown = 10, critChance = 7, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 58, }, }, + [24] = { 0.80000001192093, 1.2000000476837, -41, cooldown = 10, critChance = 7, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 58, }, }, + [25] = { 0.80000001192093, 1.2000000476837, -42, cooldown = 10, critChance = 7, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, + [26] = { 0.80000001192093, 1.2000000476837, -42, cooldown = 10, critChance = 7, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, + [27] = { 0.80000001192093, 1.2000000476837, -43, cooldown = 10, critChance = 7, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, + [28] = { 0.80000001192093, 1.2000000476837, -43, cooldown = 10, critChance = 7, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 60, }, }, + [29] = { 0.80000001192093, 1.2000000476837, -44, cooldown = 10, critChance = 7, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, + [30] = { 0.80000001192093, 1.2000000476837, -44, cooldown = 10, critChance = 7, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, + [31] = { 0.80000001192093, 1.2000000476837, -44, cooldown = 10, critChance = 7, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 62, }, }, + [32] = { 0.80000001192093, 1.2000000476837, -45, cooldown = 10, critChance = 7, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, + [33] = { 0.80000001192093, 1.2000000476837, -45, cooldown = 10, critChance = 7, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, + [34] = { 0.80000001192093, 1.2000000476837, -45, cooldown = 10, critChance = 7, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, + [35] = { 0.80000001192093, 1.2000000476837, -45, cooldown = 10, critChance = 7, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 63, }, }, + [36] = { 0.80000001192093, 1.2000000476837, -46, cooldown = 10, critChance = 7, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [37] = { 0.80000001192093, 1.2000000476837, -46, cooldown = 10, critChance = 7, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [38] = { 0.80000001192093, 1.2000000476837, -46, cooldown = 10, critChance = 7, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [39] = { 0.80000001192093, 1.2000000476837, -46, cooldown = 10, critChance = 7, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, + [40] = { 0.80000001192093, 1.2000000476837, -47, cooldown = 10, critChance = 7, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, 1, }, cost = { Mana = 64, }, }, }, } skills["VoidSphereAltX"] = { name = "Void Sphere of Rending", baseTypeName = "Void Sphere of Rending", color = 3, - baseEffectiveness = 0.89999997615814, - incrementalEffectiveness = 0.055500000715256, + baseEffectiveness = 1.0499999523163, + incrementalEffectiveness = 0.057000000029802, description = "Creates a Void Sphere which Hinders enemies in an area around it, with the debuff being stronger on enemies closer to the sphere. It also regularly releases pulses of area damage. The Void Sphere will consume the corpses of any enemies which die in its area. Can only have one Void Sphere at a time.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, [SkillType.Totemable] = true, [SkillType.Physical] = true, [SkillType.Damage] = true, [SkillType.Chaos] = true, [SkillType.Orb] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -20274,10 +20371,11 @@ skills["VoidSphereAltX"] = { { "base_skill_effect_duration", 25 }, }, constantStats = { - { "skill_physical_damage_%_to_convert_to_chaos", 40 }, + { "skill_physical_damage_%_to_convert_to_chaos", 60 }, { "base_blackhole_tick_rate_ms", 250 }, { "base_skill_effect_duration", 2000 }, - { "active_skill_base_area_of_effect_radius", 24 }, + { "active_skill_base_area_of_effect_radius", 28 }, + { "black_hole_hinder_description_mode", 1 }, }, stats = { "spell_minimum_base_physical_damage", @@ -20292,53 +20390,53 @@ skills["VoidSphereAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, -30, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [2] = { 0.80000001192093, 1.2000000476837, -30, critChance = 5, damageEffectiveness = 1.2, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [3] = { 0.80000001192093, 1.2000000476837, -31, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [4] = { 0.80000001192093, 1.2000000476837, -31, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [5] = { 0.80000001192093, 1.2000000476837, -32, critChance = 5, damageEffectiveness = 1.3, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [6] = { 0.80000001192093, 1.2000000476837, -32, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [7] = { 0.80000001192093, 1.2000000476837, -33, critChance = 5, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [8] = { 0.80000001192093, 1.2000000476837, -33, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [9] = { 0.80000001192093, 1.2000000476837, -34, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [10] = { 0.80000001192093, 1.2000000476837, -34, critChance = 5, damageEffectiveness = 1.5, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [11] = { 0.80000001192093, 1.2000000476837, -35, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [12] = { 0.80000001192093, 1.2000000476837, -35, critChance = 5, damageEffectiveness = 1.6, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [13] = { 0.80000001192093, 1.2000000476837, -36, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [14] = { 0.80000001192093, 1.2000000476837, -36, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [15] = { 0.80000001192093, 1.2000000476837, -37, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [16] = { 0.80000001192093, 1.2000000476837, -37, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [17] = { 0.80000001192093, 1.2000000476837, -38, critChance = 5, damageEffectiveness = 1.8, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [18] = { 0.80000001192093, 1.2000000476837, -38, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [19] = { 0.80000001192093, 1.2000000476837, -39, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 69, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [20] = { 0.80000001192093, 1.2000000476837, -39, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [21] = { 0.80000001192093, 1.2000000476837, -40, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [22] = { 0.80000001192093, 1.2000000476837, -40, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [23] = { 0.80000001192093, 1.2000000476837, -41, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [24] = { 0.80000001192093, 1.2000000476837, -41, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [25] = { 0.80000001192093, 1.2000000476837, -42, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [26] = { 0.80000001192093, 1.2000000476837, -42, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [27] = { 0.80000001192093, 1.2000000476837, -43, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, -43, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [29] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [30] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [31] = { 0.80000001192093, 1.2000000476837, -44, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [32] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [33] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [34] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [35] = { 0.80000001192093, 1.2000000476837, -45, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [36] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [37] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [38] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [39] = { 0.80000001192093, 1.2000000476837, -46, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [40] = { 0.80000001192093, 1.2000000476837, -47, critChance = 5, damageEffectiveness = 1.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [1] = { 0.80000001192093, 1.2000000476837, -30, critChance = 7, damageEffectiveness = 1.5, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [2] = { 0.80000001192093, 1.2000000476837, -30, critChance = 7, damageEffectiveness = 1.5, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [3] = { 0.80000001192093, 1.2000000476837, -31, critChance = 7, damageEffectiveness = 1.6, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [4] = { 0.80000001192093, 1.2000000476837, -31, critChance = 7, damageEffectiveness = 1.6, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [5] = { 0.80000001192093, 1.2000000476837, -32, critChance = 7, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [6] = { 0.80000001192093, 1.2000000476837, -32, critChance = 7, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [7] = { 0.80000001192093, 1.2000000476837, -33, critChance = 7, damageEffectiveness = 1.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [8] = { 0.80000001192093, 1.2000000476837, -33, critChance = 7, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [9] = { 0.80000001192093, 1.2000000476837, -34, critChance = 7, damageEffectiveness = 1.9, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [10] = { 0.80000001192093, 1.2000000476837, -34, critChance = 7, damageEffectiveness = 1.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 0.80000001192093, 1.2000000476837, -35, critChance = 7, damageEffectiveness = 2, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 0.80000001192093, 1.2000000476837, -35, critChance = 7, damageEffectiveness = 2, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [13] = { 0.80000001192093, 1.2000000476837, -36, critChance = 7, damageEffectiveness = 2.1, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [14] = { 0.80000001192093, 1.2000000476837, -36, critChance = 7, damageEffectiveness = 2.2, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [15] = { 0.80000001192093, 1.2000000476837, -37, critChance = 7, damageEffectiveness = 2.2, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [16] = { 0.80000001192093, 1.2000000476837, -37, critChance = 7, damageEffectiveness = 2.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [17] = { 0.80000001192093, 1.2000000476837, -38, critChance = 7, damageEffectiveness = 2.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [18] = { 0.80000001192093, 1.2000000476837, -38, critChance = 7, damageEffectiveness = 2.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, -39, critChance = 7, damageEffectiveness = 2.4, levelRequirement = 69, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [20] = { 0.80000001192093, 1.2000000476837, -39, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [21] = { 0.80000001192093, 1.2000000476837, -40, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [22] = { 0.80000001192093, 1.2000000476837, -40, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [23] = { 0.80000001192093, 1.2000000476837, -41, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [24] = { 0.80000001192093, 1.2000000476837, -41, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [25] = { 0.80000001192093, 1.2000000476837, -42, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [26] = { 0.80000001192093, 1.2000000476837, -42, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, -43, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, -43, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, -44, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [30] = { 0.80000001192093, 1.2000000476837, -44, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [31] = { 0.80000001192093, 1.2000000476837, -44, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, -45, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [33] = { 0.80000001192093, 1.2000000476837, -45, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [34] = { 0.80000001192093, 1.2000000476837, -45, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, -45, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [36] = { 0.80000001192093, 1.2000000476837, -46, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [37] = { 0.80000001192093, 1.2000000476837, -46, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [38] = { 0.80000001192093, 1.2000000476837, -46, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [39] = { 0.80000001192093, 1.2000000476837, -46, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, -47, critChance = 7, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, }, } skills["VoltaxicBurst"] = { name = "Voltaxic Burst", baseTypeName = "Voltaxic Burst", color = 3, - baseEffectiveness = 2.3076000213623, + baseEffectiveness = 2.5299999713898, incrementalEffectiveness = 0.043999999761581, description = "Each cast of this spell waits for a short duration, releasing a burst of lightning and chaos spell damage in an area around you when that duration ends. Enemies killed by this damage, or shortly after, will explode. The explosions of the corpses are not affected by modifiers to spell damage, and cannot be reflected.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Duration] = true, }, @@ -20369,8 +20467,8 @@ skills["VoltaxicBurst"] = { { "voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack", 0.05 }, }, constantStats = { - { "skill_lightning_damage_%_to_convert_to_chaos", 40 }, - { "corpse_explosion_monster_life_%_lightning", 6 }, + { "skill_lightning_damage_%_to_convert_to_chaos", 60 }, + { "corpse_explosion_monster_life_%_lightning", 10 }, { "voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack", 1 }, { "base_skill_effect_duration", 2500 }, { "base_from_skill_shock_art_variation", 1 }, @@ -20389,46 +20487,46 @@ skills["VoltaxicBurst"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [3] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [9] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [10] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [11] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [12] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [13] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [14] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [15] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [16] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [17] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [18] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [19] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [20] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [21] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [22] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [23] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [24] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [25] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [26] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [27] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [28] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [29] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [30] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [31] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [32] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [33] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [34] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [35] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [36] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [37] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [38] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [39] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [40] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [1] = { 0.69999998807907, 1.2999999523163, 0, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.69999998807907, 1.2999999523163, 0, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.69999998807907, 1.2999999523163, 0, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.69999998807907, 1.2999999523163, 0, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.69999998807907, 1.2999999523163, 0, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.69999998807907, 1.2999999523163, 0, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.69999998807907, 1.2999999523163, 1, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.69999998807907, 1.2999999523163, 1, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [9] = { 0.69999998807907, 1.2999999523163, 1, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [10] = { 0.69999998807907, 1.2999999523163, 1, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [11] = { 0.69999998807907, 1.2999999523163, 1, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [12] = { 0.69999998807907, 1.2999999523163, 1, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [13] = { 0.69999998807907, 1.2999999523163, 2, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [14] = { 0.69999998807907, 1.2999999523163, 2, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [15] = { 0.69999998807907, 1.2999999523163, 2, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [16] = { 0.69999998807907, 1.2999999523163, 2, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [17] = { 0.69999998807907, 1.2999999523163, 2, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [18] = { 0.69999998807907, 1.2999999523163, 2, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [19] = { 0.69999998807907, 1.2999999523163, 3, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [20] = { 0.69999998807907, 1.2999999523163, 3, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [21] = { 0.69999998807907, 1.2999999523163, 3, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [22] = { 0.69999998807907, 1.2999999523163, 3, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [23] = { 0.69999998807907, 1.2999999523163, 3, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [24] = { 0.69999998807907, 1.2999999523163, 3, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [25] = { 0.69999998807907, 1.2999999523163, 4, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [26] = { 0.69999998807907, 1.2999999523163, 4, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [27] = { 0.69999998807907, 1.2999999523163, 4, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [28] = { 0.69999998807907, 1.2999999523163, 4, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [29] = { 0.69999998807907, 1.2999999523163, 4, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [30] = { 0.69999998807907, 1.2999999523163, 4, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [31] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [32] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [33] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [34] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [35] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [36] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [37] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [38] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [39] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [40] = { 0.69999998807907, 1.2999999523163, 5, critChance = 10, damageEffectiveness = 2.5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, }, } skills["Vortex"] = { @@ -20438,9 +20536,9 @@ skills["Vortex"] = { baseEffectiveness = 1.0700000524521, incrementalEffectiveness = 0.054099999368191, description = "An icy blast explodes around the caster, dealing cold damage to enemies, and leaving behind a whirling vortex which deals cold damage over time and chills enemies caught in it.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.CanRapidFire] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.CanRapidFire] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.75, + castTime = 0.6, preDamageFunc = function(activeSkill, output) activeSkill.skillData.hitTimeOverride = output.Cooldown end, @@ -20460,8 +20558,9 @@ skills["Vortex"] = { }, constantStats = { { "base_skill_effect_duration", 3000 }, - { "active_skill_base_area_of_effect_radius", 20 }, - { "active_skill_base_secondary_area_of_effect_radius", 20 }, + { "active_skill_base_area_of_effect_radius", 23 }, + { "active_skill_base_secondary_area_of_effect_radius", 23 }, + { "base_chance_to_freeze_%", 25 }, }, stats = { "spell_minimum_base_cold_damage", @@ -20475,46 +20574,46 @@ skills["Vortex"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 114.83333367482, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 116.83333975946, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 118.50000487392, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 120.50000301128, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 122.33333861083, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 124.83333230888, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 126.16667234773, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 127.5000044393, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 128.83333653087, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 130.16666862244, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 131.50000071401, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 132.66667026778, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 133.83333187426, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 135.50000493601, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 136.66666654249, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 138.16666911915, critChance = 6, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 139.66667169581, critChance = 6, damageEffectiveness = 2, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 141.33332886298, critChance = 6, damageEffectiveness = 2, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 142.66667684913, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 144.16666353121, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 145.66666610787, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 146.99999819944, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 148.33333029101, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 150.16667383785, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 151.50000592942, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 153.33333358169, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 155.16667712852, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 156.16666824992, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 157.99999590218, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 158.83333243305, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 159.66666896393, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 160.5000054948, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 161.33334202568, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 162.16666266198, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 162.99999919285, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 163.83333572373, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 164.6666722546, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 165.50000878548, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 166.16667483126, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 134.33334332953, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 136.66666654249, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 138.66666467985, critChance = 7.5, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Mana = 11, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 141.00000378738, critChance = 7.5, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 143.16667240982, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 144.3333340163, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 146.00000707805, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 147.66666424523, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 149.16666682189, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 150.66666939855, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 152.33334246029, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 153.83332914238, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Mana = 15, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 155.16667712852, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 156.66666381061, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Mana = 16, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 158.50000735745, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 159.83333944902, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 161.66666710128, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Mana = 17, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 163.33334016303, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 165.33333830039, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Mana = 18, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 167.00001136214, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 168.66666852931, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Mana = 19, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 170.49999618158, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 171.99999875824, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 173.5000013349, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 175.66666995734, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Mana = 20, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 177.33334301909, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 179.33334115644, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Mana = 21, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 181.50000977889, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Mana = 22, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 182.66667138537, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 184.83334000781, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 185.8333311292, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 186.83333814517, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 187.83334516113, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 188.83333628252, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 189.6666728134, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Mana = 23, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 190.66666393479, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 191.66667095075, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 192.66667796671, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Mana = 24, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 193.66666908811, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 194.33333513389, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Mana = 25, }, }, }, } skills["VortexAltX"] = { @@ -20524,9 +20623,9 @@ skills["VortexAltX"] = { baseEffectiveness = 1.0700000524521, incrementalEffectiveness = 0.054099999368191, description = "An icy blast explodes around the caster, dealing cold damage to enemies, and leaving behind a whirling vortex which deals cold damage over time and chills enemies caught in it. If the caster targets near their Frostbolt projectiles, it will explode from a number of those projectiles instead, destroying them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.CanRapidFire] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Cold] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.CanRapidFire] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.75, + castTime = 0.6, preDamageFunc = function(activeSkill, output) activeSkill.skillData.hitTimeOverride = output.Cooldown end, @@ -20551,8 +20650,9 @@ skills["VortexAltX"] = { }, constantStats = { { "base_skill_effect_duration", 1500 }, - { "active_skill_base_area_of_effect_radius", 20 }, - { "active_skill_base_secondary_area_of_effect_radius", 20 }, + { "active_skill_base_area_of_effect_radius", 22 }, + { "active_skill_base_secondary_area_of_effect_radius", 22 }, + { "base_chance_to_freeze_%", 25 }, { "frost_bolt_nova_number_of_frost_bolts_to_detonate", 5 }, { "active_skill_area_of_effect_+%_final_when_cast_on_frostbolt", 50 }, { "active_skill_if_used_through_frostbolt_damage_+%_final", 50 }, @@ -20570,46 +20670,46 @@ skills["VortexAltX"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 114.83333367482, -57.500002079954, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 28, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 116.83333975946, -58.500001148631, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 14, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 118.50000487392, -59.333333705862, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 15, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 120.50000301128, -60.33333277454, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 16, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 122.33333861083, -61.166669305414, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 40, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 123.33333767951, -61.666668839753, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 42, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 17, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 124.83333230888, -62.500001396984, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 18, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 126.16667234773, -63.166667442769, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 46, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 18, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 127.5000044393, -63.833333488554, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 48, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 19, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 128.83333653087, -64.499999534339, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 19, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 130.16666862244, -65.166669553767, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 20, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 131.50000071401, -65.833335599552, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 132.66667026778, -66.33333513389, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 21, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 133.83333187426, -67.000001179675, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 58, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 21, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 135.50000493601, -67.83333771055, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 22, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 136.66666654249, -68.333333271245, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 22, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 138.16666911915, -69.166669802119, critChance = 6, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 139.66667169581, -69.833335847904, critChance = 6, damageEffectiveness = 2, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 141.33332886298, -70.666664431492, critChance = 6, damageEffectiveness = 2, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 142.66667684913, -71.333338424564, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 144.16666353121, -72.166667008152, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 145.66666610787, -72.833333053937, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 26, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 146.99999819944, -73.499999099721, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 26, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 148.33333029101, -74.166665145506, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 27, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 150.16667383785, -75.16667216147, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 27, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 151.50000592942, -75.833338207255, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 28, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 153.33333358169, -76.666666790843, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 28, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 155.16667712852, -77.66666585952, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 29, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 156.16666824992, -78.166669367502, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 157.99999590218, -78.99999795109, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 158.83333243305, -79.500001459072, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 30, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 159.66666896393, -79.833334481965, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 31, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 160.5000054948, -80.333337989946, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 31, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 161.33334202568, -80.666671012839, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 31, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 162.16666266198, -81.166666573534, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 31, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 162.99999919285, -81.499999596427, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 32, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 163.83333572373, -82.000003104409, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 32, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 164.6666722546, -82.333336127301, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 32, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 165.50000878548, -82.833331687997, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 33, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 166.16667483126, -83.166664710889, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 33, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 134.33334332953, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 28, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 136.66666654249, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 11, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 138.66666467985, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 11, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 141.00000378738, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 12, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 143.16667240982, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 40, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 12, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 144.3333340163, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.5, levelRequirement = 42, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 13, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 146.00000707805, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 14, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 147.66666424523, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 46, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 14, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 149.16666682189, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.6, levelRequirement = 48, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 14, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 150.66666939855, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 14, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 152.33334246029, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 52, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 15, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 153.83332914238, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.7, levelRequirement = 54, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 15, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 155.16667712852, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 16, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 156.66666381061, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.8, levelRequirement = 58, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 16, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 158.50000735745, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 60, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 17, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 159.83333944902, -58.333334637185, critChance = 7.5, damageEffectiveness = 1.9, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 17, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 161.66666710128, -58.333334637185, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 17, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 163.33334016303, -58.333334637185, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 18, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 165.33333830039, -58.333334637185, critChance = 7.5, damageEffectiveness = 2, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 18, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 167.00001136214, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 19, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 168.66666852931, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 19, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 170.49999618158, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 20, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 171.99999875824, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 20, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 173.5000013349, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 20, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 175.66666995734, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 20, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 177.33334301909, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 21, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 179.33334115644, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 21, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 181.50000977889, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 22, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 182.66667138537, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 184.83334000781, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 185.8333311292, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 186.83333814517, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 187.83334516113, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 188.83333628252, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 189.6666728134, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 23, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 190.66666393479, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 191.66667095075, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 192.66667796671, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 24, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 193.66666908811, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 25, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 194.33333513389, -58.333334637185, critChance = 7.5, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 25, }, }, }, } skills["WallOfForce"] = { @@ -20691,7 +20791,7 @@ skills["WaveOfConviction"] = { description = "An expanding wave of energy surges forward, damaging enemies in a cone-shaped area over a duration. Each enemy hit is inflicted with Exposure matching the element of which they took the highest damage. Only one Wave of Conviction can be active at a time", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.Multicastable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, preDamageFunc = function(activeSkill, output) if activeSkill.skillData.duration then local duration = math.floor(math.ceil(activeSkill.skillData.duration * data.misc.ServerTickRate) / data.misc.ServerTickRate * output.DurationMod * 10) @@ -20734,46 +20834,46 @@ skills["WaveOfConviction"] = { "base_skill_effect_duration", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 500, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 510, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 520, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 530, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 540, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 570, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 580, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 590, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 600, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 610, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 620, critChance = 6, damageEffectiveness = 3, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 630, critChance = 6, damageEffectiveness = 3, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 640, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 650, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 660, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 670, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 680, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 690, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 700, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 710, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 720, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 730, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 740, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 750, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 760, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 770, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 780, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 790, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 795, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 800, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 805, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 810, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 815, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 820, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 825, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 830, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 835, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 840, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 500, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 510, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 520, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 530, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 540, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 570, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 580, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 590, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 600, critChance = 6, damageEffectiveness = 2.8, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 610, critChance = 6, damageEffectiveness = 2.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 620, critChance = 6, damageEffectiveness = 3, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 630, critChance = 6, damageEffectiveness = 3, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 640, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 650, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 660, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 670, critChance = 6, damageEffectiveness = 3.2, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 680, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 690, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 700, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 710, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 720, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 730, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 740, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 750, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 760, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 770, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 780, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 790, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 795, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 800, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 805, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 810, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 815, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 820, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 825, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 830, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 835, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 840, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, }, } skills["WaveOfConvictionAltY"] = { @@ -20785,7 +20885,7 @@ skills["WaveOfConvictionAltY"] = { description = "An expanding wave of energy surges outwards from you, damaging enemies in a ring-shaped area over a duration. The ring then returns, damaging enemies again on the way back. Only one Wave of Conviction can be active at a time", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Multicastable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.Fire] = true, [SkillType.Nova] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, preDamageFunc = function(activeSkill, output) if activeSkill.skillData.duration then local duration = math.floor(math.ceil(activeSkill.skillData.duration * data.misc.ServerTickRate) / data.misc.ServerTickRate * output.DurationMod * 10) @@ -20818,46 +20918,46 @@ skills["WaveOfConvictionAltY"] = { "base_skill_effect_duration", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 400, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 410, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 410, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 420, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 420, critChance = 6, damageEffectiveness = 2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 430, critChance = 6, damageEffectiveness = 2, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 430, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 440, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 440, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 450, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 450, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 460, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 460, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 470, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 470, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 480, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 480, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 490, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 490, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 500, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 500, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 510, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 510, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 520, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 520, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 530, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 530, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 540, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 540, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 570, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 570, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 570, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 400, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 410, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 410, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 420, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 420, critChance = 6, damageEffectiveness = 2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 430, critChance = 6, damageEffectiveness = 2, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 430, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 440, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 440, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 43, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 450, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 450, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 49, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 460, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 460, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 470, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 470, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 480, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 480, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 490, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 490, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 500, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 500, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 510, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 510, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 520, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 520, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 530, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 530, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 540, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 540, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 550, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 560, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 570, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 570, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 570, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, }, } skills["WinterOrb"] = { @@ -20932,10 +21032,12 @@ skills["WinterOrb"] = { { "projectile_spread_radius", 100 }, { "frost_fury_fire_speed_+%_final_while_channelling", 80 }, { "base_skill_effect_duration", 1600 }, + { "base_chance_to_freeze_%", 25 }, }, stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", + "base_number_of_projectiles", "base_is_projectile", "is_area_damage", "projectile_remove_default_spread", @@ -20950,46 +21052,46 @@ skills["WinterOrb"] = { "spell_maximum_base_cold_damage", }, levels = { - [1] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 2, }, }, - [2] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 2, }, }, - [3] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 2, }, }, - [4] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [5] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [6] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [7] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [8] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [9] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [10] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [11] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [12] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [13] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 3, }, }, - [14] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [15] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [16] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [17] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [18] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [19] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [20] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [21] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [22] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [23] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [24] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, - [25] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [26] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [27] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [28] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [29] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [30] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [31] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [32] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [33] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [34] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [35] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [36] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [37] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [38] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [39] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, - [40] = { 0.80000001192093, 1, critChance = 6, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 2, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 2, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 3, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 3, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 4, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 4, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 5, critChance = 7.5, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, }, } skills["WintertideBrand"] = { @@ -20997,7 +21099,7 @@ skills["WintertideBrand"] = { baseTypeName = "Wintertide Brand", color = 3, baseEffectiveness = 4.1700000762939, - incrementalEffectiveness = 0.032299999147654, + incrementalEffectiveness = 0.036299999803305, description = "Creates a magical brand which can attach to a nearby enemy, dealing cold damage over time and chilling them. It periodically activates while attached, gaining stages that raise the damage. When removed, a short-duration debuff dealing the same damage over time and chill is applied to each nearby enemy. The brand keeps its charges while detached.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Cold] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Brand] = true, [SkillType.AreaSpell] = true, [SkillType.DamageOverTime] = true, [SkillType.NonHitChill] = true, [SkillType.ElementalStatus] = true, [SkillType.DegenOnlySpellDamage] = true, }, statDescriptionScope = "brand_skill_stat_descriptions", @@ -21058,7 +21160,7 @@ skills["WintertideBrand"] = { constantStats = { { "base_number_of_sigils_allowed_per_target", 1 }, { "base_secondary_skill_effect_duration", 6000 }, - { "base_tertiary_skill_effect_duration", 1000 }, + { "base_tertiary_skill_effect_duration", 2000 }, { "base_sigil_repeat_frequency_ms", 250 }, { "immolation_brand_burn_damage_+%_final_per_stage", 20 }, { "winter_brand_max_number_of_stages", 20 }, diff --git a/src/Data/Skills/act_str.lua b/src/Data/Skills/act_str.lua index b56fd04c71..ec933d4ab4 100644 --- a/src/Data/Skills/act_str.lua +++ b/src/Data/Skills/act_str.lua @@ -15,7 +15,7 @@ skills["Absolution"] = { description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the corpse will be consumed to summon a Sentinel of Absolution for a secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesSentinelMinion] = true, }, statDescriptionScope = "minion_spell_damage_skill_stat_descriptions", - castTime = 0.75, + castTime = 0.65, minionList = { "AbsolutionTemplarJudge", "AbsolutionTemplarJudgeVaal", @@ -111,7 +111,7 @@ skills["AbsolutionAltX"] = { description = "Damages enemies in an area, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the corpse will be consumed to summon a Sentinel of Absolution for a secondary duration, or to refresh the duration and life of an existing one instead if you have the maximum number of them.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.Lightning] = true, [SkillType.MinionsCanExplode] = true, [SkillType.CreatesMinion] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multicastable] = true, [SkillType.Cascadable] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesSentinelMinion] = true, }, statDescriptionScope = "minion_spell_damage_skill_stat_descriptions", - castTime = 0.75, + castTime = 0.65, minionList = { "AbsolutionTemplarJudge", "AbsolutionTemplarJudgeVaal", @@ -1815,7 +1815,7 @@ skills["Cleave"] = { skill("radius", 20), }, qualityStats = { - { "cleave_+1_base_radius_per_nearby_enemy_up_to_10", 1 }, + { "cleave_+1_base_radius_per_nearby_enemy_up_to_10", 0.05 }, }, constantStats = { { "active_skill_merged_damage_+%_final_while_dual_wielding", -40 }, @@ -1994,7 +1994,7 @@ skills["VaalCleave"] = { mod("CullPercent", "MAX", 10, 0, 0, { type = "SkillName", skillName = "Cleave", includeTransfigured = true }, { type = "GlobalEffect", effectType = "Buff", effectName = "Vaal Cleave", unscalable = true } ), }, qualityStats = { - { "cleave_+1_base_radius_per_nearby_enemy_up_to_10", 1 }, + { "cleave_+1_base_radius_per_nearby_enemy_up_to_10", 0.05 }, }, constantStats = { { "active_skill_merged_damage_+%_final_while_dual_wielding", -40 }, @@ -2258,7 +2258,7 @@ skills["CorruptingFever"] = { baseTypeName = "Corrupting Fever", color = 1, baseEffectiveness = 0.362399995327, - incrementalEffectiveness = 0.050000000745058, + incrementalEffectiveness = 0.053100001066923, description = "Draws out your own blood to power a buff for a duration, letting this skill inflict the Corrupting Blood debuff on enemies you hit, dealing physical damage over time for a short secondary duration. The buff's duration will be refreshed if you spend enough life before it expires.", skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.Physical] = true, [SkillType.Cooldown] = true, [SkillType.DamageOverTime] = true, [SkillType.Totemable] = true, }, statDescriptionScope = "secondary_debuff_skill_stat_descriptions", @@ -2277,7 +2277,7 @@ skills["CorruptingFever"] = { { "skill_effect_duration_+%", 1 }, }, constantStats = { - { "base_secondary_skill_effect_duration", 1000 }, + { "base_secondary_skill_effect_duration", 1500 }, { "base_skill_effect_duration", 6000 }, }, stats = { @@ -2739,7 +2739,7 @@ skills["DivineBlast"] = { name = "Divine Blast", baseTypeName = "Divine Blast", color = 1, - baseEffectiveness = 2.25, + baseEffectiveness = 2.4500000476837, incrementalEffectiveness = 0.017300000414252, description = "Project a beam of holy light from your shield to a targeted location, causing an implosion of holy energy. This energy then lingers for a short duration, before blasting outwards in a larger and more damaging explosion.", skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, }, @@ -2771,11 +2771,106 @@ skills["DivineBlast"] = { { "skill_physical_damage_%_to_convert_to_fire", 50 }, { "active_skill_base_area_of_effect_radius", 26 }, { "active_skill_base_secondary_area_of_effect_radius", 12 }, - { "base_skill_effect_duration", 1500 }, + { "base_skill_effect_duration", 1200 }, + { "attack_maximum_action_distance_+", 70 }, + { "off_hand_critical_strike_chance_+_per_10_es_on_shield", 10 }, + { "active_skill_area_of_effect_description_mode", 1 }, + { "active_skill_secondary_area_of_effect_description_mode", 11 }, + }, + stats = { + "off_hand_local_minimum_added_physical_damage", + "off_hand_local_maximum_added_physical_damage", + "off_hand_minimum_added_physical_damage_per_15_shield_armour", + "off_hand_maximum_added_physical_damage_per_15_shield_armour", + "is_area_damage", + "visual_hit_effect_elemental_is_holy", + "attack_is_not_melee_override", + "console_skill_dont_chase", + }, + notMinionStat = { + "off_hand_local_minimum_added_physical_damage", + "off_hand_local_maximum_added_physical_damage", + }, + levels = { + [1] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 5, 7, attackTime = 650, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 5, 7, attackTime = 650, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + }, +} +skills["DivineBlastAltX"] = { + name = "Divine Blast of Radiance", + baseTypeName = "Divine Blast of Radiance", + color = 1, + baseEffectiveness = 2.4500000476837, + incrementalEffectiveness = 0.017300000414252, + description = "Project a beam of holy light from your shield to a targeted location, causing an implosion of holy energy. This energy then lingers for a short duration as an orb, periodically releasing larger explosions. Increases and reductions to attack speed affect the rate at which explosions occur.", + skillTypes = { [SkillType.Area] = true, [SkillType.Attack] = true, [SkillType.Physical] = true, [SkillType.Duration] = true, [SkillType.Fire] = true, [SkillType.Orb] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + parts = { + { + name = "Beam Implosion", + }, + { + name = "Explosion", + }, + }, + baseFlags = { + attack = true, + area = true, + shieldAttack = true, + }, + qualityStats = { + { "active_skill_base_radius_+", 0.15 }, + }, + constantStats = { + { "skill_physical_damage_%_to_convert_to_fire", 50 }, + { "active_skill_base_area_of_effect_radius", 22 }, + { "active_skill_base_secondary_area_of_effect_radius", 12 }, { "attack_maximum_action_distance_+", 70 }, { "off_hand_critical_strike_chance_+_per_10_es_on_shield", 10 }, { "active_skill_area_of_effect_description_mode", 1 }, { "active_skill_secondary_area_of_effect_description_mode", 11 }, + { "discus_slam_maximum_orb_count_allowed", 3 }, + { "base_skill_effect_duration", 5000 }, + { "discus_slam_orb_activate_base_rate_ms", 1000 }, }, stats = { "off_hand_local_minimum_added_physical_damage", @@ -2786,52 +2881,53 @@ skills["DivineBlast"] = { "visual_hit_effect_elemental_is_holy", "attack_is_not_melee_override", "console_skill_dont_chase", + "skill_can_add_multiple_charges_per_action", }, notMinionStat = { "off_hand_local_minimum_added_physical_damage", "off_hand_local_maximum_added_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 2, 3, attackTime = 650, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 2, 3, attackTime = 650, critChance = 5, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 2, 3, attackTime = 650, critChance = 5, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 2, 3, attackTime = 650, critChance = 5, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 2, 3, attackTime = 650, critChance = 5, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 2, 4, attackTime = 650, critChance = 5, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 8, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, [10] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 2, 5, attackTime = 650, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 9, }, }, [16] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, [17] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, [18] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 3, 5, attackTime = 650, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 10, }, }, [24] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, [25] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 3, 6, attackTime = 650, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 3, 7, attackTime = 650, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 4, 7, attackTime = 650, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 11, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 5, 7, attackTime = 650, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 5, 7, attackTime = 650, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 5, 8, attackTime = 650, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, }, cost = { Mana = 12, }, }, }, } skills["DominatingBlow"] = { @@ -4048,46 +4144,46 @@ skills["Exsanguinate"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 77.238338925305, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 16, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 76.421667853482, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 18, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 75.086666831821, 7, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 21, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 73.768331269212, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 23, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 72.466669112941, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 25, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 71.185002328617, 7, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 69.916671090449, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 28, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 69.136668796912, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 30, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 68.360004363557, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 32, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 67.586669843098, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 33, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 66.816665235534, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 66.050002461796, 8, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 35, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 65.286669600954, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 37, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 64.526666653007, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 39, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 63.771666521691, 9, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 40, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 63.020000276913, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 62.700002800177, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 43, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 62.380001349797, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 44, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 62.053336099982, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 45, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 61.726666876525, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 61.396667740171, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 61.063334717279, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 60.730001694386, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 60.391669828507, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 50, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 60.053333988984, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 51, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 59.711668236566, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 52, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 59.370002484148, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 53, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 59.0233339151, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 54, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 58.678334276142, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 55, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 58.331669680737, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 56, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 58.380001101444, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 57, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 58.428336495794, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 58, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 58.471669073515, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 58, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 58.510002808248, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 59, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 58.548336542981, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 59, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 58.581667461085, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 58.611668466292, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 58.63666665487, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 58.661668817091, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 61, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 58.68500204922, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 61, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 16, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 18, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 7, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 21, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 23, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 25, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 7, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 28, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 30, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 32, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 33, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 8, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 35, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 37, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 39, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 9, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 40, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 43, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 44, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 45, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 50, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 51, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 52, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 53, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 54, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 55, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 56, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 57, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 58, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 58, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 59, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 59, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 61, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 76.666666790843, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 61, }, }, }, } skills["ExsanguinateAltX"] = { @@ -4142,46 +4238,46 @@ skills["ExsanguinateAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 77.238338925305, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 16, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 76.421667853482, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 18, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 75.086666831821, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 21, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 73.768331269212, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 23, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 72.466669112941, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 25, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 71.185002328617, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 26, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 69.916671090449, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 28, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 69.136668796912, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 30, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 68.360004363557, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 32, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 67.586669843098, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 33, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 66.816665235534, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 34, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 66.050002461796, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 35, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 65.286669600954, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 37, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 64.526666653007, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 39, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 63.771666521691, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 40, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 63.020000276913, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 42, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 62.700002800177, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 43, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 62.380001349797, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 44, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 62.053336099982, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 45, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 61.726666876525, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 61.396667740171, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 47, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 61.063334717279, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 60.730001694386, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 49, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 60.391669828507, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 50, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 60.053333988984, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 51, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 59.711668236566, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 52, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 59.370002484148, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 53, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 59.0233339151, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 54, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 58.678334276142, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 55, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 58.331669680737, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 56, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 58.380001101444, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 57, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 58.428336495794, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 58, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 58.471669073515, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 58, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 58.510002808248, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 59, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 58.548336542981, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 59, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 58.581667461085, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 58.611668466292, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 58.63666665487, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 58.661668817091, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 61, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 58.68500204922, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 61, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 16, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 18, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 21, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 23, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 25, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 26, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 28, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 30, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 32, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 33, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 34, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 35, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 37, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 39, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 40, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 42, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 43, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 44, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 45, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 47, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 49, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 50, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 51, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 52, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 53, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 54, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 55, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 56, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 57, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 58, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 58, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 59, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 59, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 61, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 76.666666790843, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 61, }, }, }, } skills["FlameLink"] = { @@ -4821,12 +4917,12 @@ skills["GeneralsCry"] = { } skills["GeneralsCrySupport"] = { name = "General's Cry", - description = "Supports melee attack skills. Those skills will be used by Mirage Warriors summoned by General's Cry. Supported skills cannot be supported by Multistrike.", + description = "Supports melee attack skills without a cooldown. Those skills will be used by Mirage Warriors summoned by General's Cry. Supported skills cannot be supported by Multistrike.", color = 1, support = true, requireSkillTypes = { SkillType.Melee, SkillType.Attack, SkillType.AND, }, addSkillTypes = { SkillType.NonRepeatable, SkillType.OtherThingUsesSkill, }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Spell, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.OwnerCannotUse, }, + excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Spell, SkillType.Triggered, SkillType.InbuiltTrigger, SkillType.OwnerCannotUse, SkillType.Cooldown, }, ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", addFlags = { @@ -5799,46 +5895,46 @@ skills["HolyFlameTotem"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.60000002384186, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [2] = { 0.60000002384186, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 6, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [3] = { 0.60000002384186, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 9, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [5] = { 0.69999998807907, 1.2000000476837, 3, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 4, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 5, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 61, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 6, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 7, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 47, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 8, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 51, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 51, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 9, critChance = 5, damageEffectiveness = 0.35, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [1] = { 0.60000002384186, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [2] = { 0.60000002384186, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 6, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [3] = { 0.60000002384186, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 9, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.69999998807907, 1.2000000476837, 3, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 4, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 5, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 61, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 6, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 7, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 47, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 8, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 51, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 51, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 9, critChance = 6, damageEffectiveness = 0.35, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, }, } skills["HolyFlameTotemAltX"] = { @@ -5885,46 +5981,46 @@ skills["HolyFlameTotemAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.60000002384186, 1.2000000476837, 90, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [2] = { 0.60000002384186, 1.2000000476837, 92, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 6, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [3] = { 0.60000002384186, 1.2000000476837, 94, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 9, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 96, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [5] = { 0.69999998807907, 1.2000000476837, 98, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 100, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 102, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 104, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 106, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 108, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 110, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 112, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 114, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 116, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 118, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 120, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 122, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 61, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 124, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 126, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 128, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 130, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 132, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 134, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 136, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 138, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 140, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 142, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 144, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 146, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 47, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 148, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 149, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 150, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 151, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 152, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 153, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 154, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 51, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 155, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 51, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 156, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 157, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 158, critChance = 5, damageEffectiveness = 0.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [1] = { 0.60000002384186, 1.2000000476837, 90, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 4, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [2] = { 0.60000002384186, 1.2000000476837, 92, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 6, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [3] = { 0.60000002384186, 1.2000000476837, 94, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 9, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 96, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [5] = { 0.69999998807907, 1.2000000476837, 98, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 16, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 100, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 20, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 102, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 24, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 104, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 106, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 32, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 108, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 36, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 110, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 112, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 114, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 116, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 118, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 55, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 120, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 122, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 61, statInterpolation = { 3, 3, 1, }, cost = { Mana = 36, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 124, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 37, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 126, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 67, statInterpolation = { 3, 3, 1, }, cost = { Mana = 38, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 128, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 39, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 130, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 40, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 132, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 41, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 134, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 42, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 136, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 43, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 138, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 44, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 140, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 45, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 142, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 144, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 46, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 146, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 47, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 148, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 48, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 149, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 150, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 151, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 49, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 152, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 153, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 50, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 154, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 51, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 155, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 51, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 156, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 157, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 158, critChance = 6, damageEffectiveness = 0.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 52, }, }, }, } skills["HolyHammers"] = { @@ -5969,59 +6065,143 @@ skills["HolyHammers"] = { { "holy_hammers_damage_+%_final_if_consuming_power_charge", 1 }, }, constantStats = { + { "holy_hammers_maximum_number_of_hammerslam_cascades", 2 }, { "holy_hammers_num_additional_hammerslams_if_consuming_power_charge", 2 }, { "skill_physical_damage_%_to_convert_to_lightning", 50 }, { "base_from_skill_shock_art_variation", 2 }, { "holy_hammers_damage_+%_final_for_initial_hammer_in_cascade", 100 }, - { "holy_hammers_maximum_number_of_hammerslam_cascades", 2 }, + { "active_skill_base_area_of_effect_radius", 18 }, }, stats = { - "active_skill_base_area_of_effect_radius", "is_area_damage", "visual_hit_effect_elemental_is_holy", "console_skill_dont_chase", }, levels = { - [1] = { 16, attackSpeedMultiplier = -15, baseMultiplier = 1.2, damageEffectiveness = 1.2, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [2] = { 16, attackSpeedMultiplier = -15, baseMultiplier = 1.253, damageEffectiveness = 1.253, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [3] = { 16, attackSpeedMultiplier = -15, baseMultiplier = 1.305, damageEffectiveness = 1.305, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [4] = { 16, attackSpeedMultiplier = -15, baseMultiplier = 1.358, damageEffectiveness = 1.358, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [5] = { 16, attackSpeedMultiplier = -15, baseMultiplier = 1.411, damageEffectiveness = 1.411, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [6] = { 16, attackSpeedMultiplier = -15, baseMultiplier = 1.463, damageEffectiveness = 1.463, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [7] = { 17, attackSpeedMultiplier = -15, baseMultiplier = 1.516, damageEffectiveness = 1.516, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [8] = { 17, attackSpeedMultiplier = -15, baseMultiplier = 1.568, damageEffectiveness = 1.568, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [9] = { 17, attackSpeedMultiplier = -15, baseMultiplier = 1.621, damageEffectiveness = 1.621, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [10] = { 17, attackSpeedMultiplier = -15, baseMultiplier = 1.674, damageEffectiveness = 1.674, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [11] = { 17, attackSpeedMultiplier = -15, baseMultiplier = 1.726, damageEffectiveness = 1.726, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [12] = { 17, attackSpeedMultiplier = -15, baseMultiplier = 1.779, damageEffectiveness = 1.779, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [13] = { 17, attackSpeedMultiplier = -15, baseMultiplier = 1.832, damageEffectiveness = 1.832, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [14] = { 17, attackSpeedMultiplier = -15, baseMultiplier = 1.884, damageEffectiveness = 1.884, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [15] = { 18, attackSpeedMultiplier = -15, baseMultiplier = 1.937, damageEffectiveness = 1.937, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [16] = { 18, attackSpeedMultiplier = -15, baseMultiplier = 1.989, damageEffectiveness = 1.989, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [17] = { 18, attackSpeedMultiplier = -15, baseMultiplier = 2.042, damageEffectiveness = 2.042, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [18] = { 18, attackSpeedMultiplier = -15, baseMultiplier = 2.095, damageEffectiveness = 2.095, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [19] = { 18, attackSpeedMultiplier = -15, baseMultiplier = 2.147, damageEffectiveness = 2.147, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [20] = { 18, attackSpeedMultiplier = -15, baseMultiplier = 2.2, damageEffectiveness = 2.2, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [21] = { 18, attackSpeedMultiplier = -15, baseMultiplier = 2.253, damageEffectiveness = 2.253, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [22] = { 18, attackSpeedMultiplier = -15, baseMultiplier = 2.305, damageEffectiveness = 2.305, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [23] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.358, damageEffectiveness = 2.358, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [24] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.411, damageEffectiveness = 2.411, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [25] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.463, damageEffectiveness = 2.463, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 13, }, }, - [26] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.516, damageEffectiveness = 2.516, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [27] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.568, damageEffectiveness = 2.568, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [28] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.621, damageEffectiveness = 2.621, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [29] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.674, damageEffectiveness = 2.674, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [30] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.726, damageEffectiveness = 2.726, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [31] = { 19, attackSpeedMultiplier = -15, baseMultiplier = 2.753, damageEffectiveness = 2.753, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [32] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.779, damageEffectiveness = 2.779, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [33] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.805, damageEffectiveness = 2.805, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 14, }, }, - [34] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.832, damageEffectiveness = 2.832, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 15, }, }, - [35] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.858, damageEffectiveness = 2.858, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 15, }, }, - [36] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.884, damageEffectiveness = 2.884, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 15, }, }, - [37] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.911, damageEffectiveness = 2.911, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 15, }, }, - [38] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.937, damageEffectiveness = 2.937, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 15, }, }, - [39] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.963, damageEffectiveness = 2.963, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 15, }, }, - [40] = { 20, attackSpeedMultiplier = -15, baseMultiplier = 2.989, damageEffectiveness = 2.989, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 15, }, }, + [1] = { attackSpeedMultiplier = -15, baseMultiplier = 1.2, damageEffectiveness = 1.2, levelRequirement = 28, cost = { Mana = 9, }, }, + [2] = { attackSpeedMultiplier = -15, baseMultiplier = 1.253, damageEffectiveness = 1.253, levelRequirement = 31, cost = { Mana = 9, }, }, + [3] = { attackSpeedMultiplier = -15, baseMultiplier = 1.305, damageEffectiveness = 1.305, levelRequirement = 34, cost = { Mana = 10, }, }, + [4] = { attackSpeedMultiplier = -15, baseMultiplier = 1.358, damageEffectiveness = 1.358, levelRequirement = 37, cost = { Mana = 10, }, }, + [5] = { attackSpeedMultiplier = -15, baseMultiplier = 1.411, damageEffectiveness = 1.411, levelRequirement = 40, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -15, baseMultiplier = 1.463, damageEffectiveness = 1.463, levelRequirement = 42, cost = { Mana = 10, }, }, + [7] = { attackSpeedMultiplier = -15, baseMultiplier = 1.516, damageEffectiveness = 1.516, levelRequirement = 44, cost = { Mana = 10, }, }, + [8] = { attackSpeedMultiplier = -15, baseMultiplier = 1.568, damageEffectiveness = 1.568, levelRequirement = 46, cost = { Mana = 11, }, }, + [9] = { attackSpeedMultiplier = -15, baseMultiplier = 1.621, damageEffectiveness = 1.621, levelRequirement = 48, cost = { Mana = 11, }, }, + [10] = { attackSpeedMultiplier = -15, baseMultiplier = 1.674, damageEffectiveness = 1.674, levelRequirement = 50, cost = { Mana = 11, }, }, + [11] = { attackSpeedMultiplier = -15, baseMultiplier = 1.726, damageEffectiveness = 1.726, levelRequirement = 52, cost = { Mana = 11, }, }, + [12] = { attackSpeedMultiplier = -15, baseMultiplier = 1.779, damageEffectiveness = 1.779, levelRequirement = 54, cost = { Mana = 11, }, }, + [13] = { attackSpeedMultiplier = -15, baseMultiplier = 1.832, damageEffectiveness = 1.832, levelRequirement = 56, cost = { Mana = 11, }, }, + [14] = { attackSpeedMultiplier = -15, baseMultiplier = 1.884, damageEffectiveness = 1.884, levelRequirement = 58, cost = { Mana = 12, }, }, + [15] = { attackSpeedMultiplier = -15, baseMultiplier = 1.937, damageEffectiveness = 1.937, levelRequirement = 60, cost = { Mana = 12, }, }, + [16] = { attackSpeedMultiplier = -15, baseMultiplier = 1.989, damageEffectiveness = 1.989, levelRequirement = 62, cost = { Mana = 12, }, }, + [17] = { attackSpeedMultiplier = -15, baseMultiplier = 2.042, damageEffectiveness = 2.042, levelRequirement = 64, cost = { Mana = 12, }, }, + [18] = { attackSpeedMultiplier = -15, baseMultiplier = 2.095, damageEffectiveness = 2.095, levelRequirement = 66, cost = { Mana = 12, }, }, + [19] = { attackSpeedMultiplier = -15, baseMultiplier = 2.147, damageEffectiveness = 2.147, levelRequirement = 68, cost = { Mana = 12, }, }, + [20] = { attackSpeedMultiplier = -15, baseMultiplier = 2.2, damageEffectiveness = 2.2, levelRequirement = 70, cost = { Mana = 13, }, }, + [21] = { attackSpeedMultiplier = -15, baseMultiplier = 2.253, damageEffectiveness = 2.253, levelRequirement = 72, cost = { Mana = 13, }, }, + [22] = { attackSpeedMultiplier = -15, baseMultiplier = 2.305, damageEffectiveness = 2.305, levelRequirement = 74, cost = { Mana = 13, }, }, + [23] = { attackSpeedMultiplier = -15, baseMultiplier = 2.358, damageEffectiveness = 2.358, levelRequirement = 76, cost = { Mana = 13, }, }, + [24] = { attackSpeedMultiplier = -15, baseMultiplier = 2.411, damageEffectiveness = 2.411, levelRequirement = 78, cost = { Mana = 13, }, }, + [25] = { attackSpeedMultiplier = -15, baseMultiplier = 2.463, damageEffectiveness = 2.463, levelRequirement = 80, cost = { Mana = 13, }, }, + [26] = { attackSpeedMultiplier = -15, baseMultiplier = 2.516, damageEffectiveness = 2.516, levelRequirement = 82, cost = { Mana = 14, }, }, + [27] = { attackSpeedMultiplier = -15, baseMultiplier = 2.568, damageEffectiveness = 2.568, levelRequirement = 84, cost = { Mana = 14, }, }, + [28] = { attackSpeedMultiplier = -15, baseMultiplier = 2.621, damageEffectiveness = 2.621, levelRequirement = 86, cost = { Mana = 14, }, }, + [29] = { attackSpeedMultiplier = -15, baseMultiplier = 2.674, damageEffectiveness = 2.674, levelRequirement = 88, cost = { Mana = 14, }, }, + [30] = { attackSpeedMultiplier = -15, baseMultiplier = 2.726, damageEffectiveness = 2.726, levelRequirement = 90, cost = { Mana = 14, }, }, + [31] = { attackSpeedMultiplier = -15, baseMultiplier = 2.753, damageEffectiveness = 2.753, levelRequirement = 91, cost = { Mana = 14, }, }, + [32] = { attackSpeedMultiplier = -15, baseMultiplier = 2.779, damageEffectiveness = 2.779, levelRequirement = 92, cost = { Mana = 14, }, }, + [33] = { attackSpeedMultiplier = -15, baseMultiplier = 2.805, damageEffectiveness = 2.805, levelRequirement = 93, cost = { Mana = 14, }, }, + [34] = { attackSpeedMultiplier = -15, baseMultiplier = 2.832, damageEffectiveness = 2.832, levelRequirement = 94, cost = { Mana = 15, }, }, + [35] = { attackSpeedMultiplier = -15, baseMultiplier = 2.858, damageEffectiveness = 2.858, levelRequirement = 95, cost = { Mana = 15, }, }, + [36] = { attackSpeedMultiplier = -15, baseMultiplier = 2.884, damageEffectiveness = 2.884, levelRequirement = 96, cost = { Mana = 15, }, }, + [37] = { attackSpeedMultiplier = -15, baseMultiplier = 2.911, damageEffectiveness = 2.911, levelRequirement = 97, cost = { Mana = 15, }, }, + [38] = { attackSpeedMultiplier = -15, baseMultiplier = 2.937, damageEffectiveness = 2.937, levelRequirement = 98, cost = { Mana = 15, }, }, + [39] = { attackSpeedMultiplier = -15, baseMultiplier = 2.963, damageEffectiveness = 2.963, levelRequirement = 99, cost = { Mana = 15, }, }, + [40] = { attackSpeedMultiplier = -15, baseMultiplier = 2.989, damageEffectiveness = 2.989, levelRequirement = 100, cost = { Mana = 15, }, }, + }, +} +skills["HolyHammersAltX"] = { + name = "Holy Hammers of Spirals", + baseTypeName = "Holy Hammers of Spirals", + color = 1, + description = "Slam the ground, consuming all Power Charges and calling down a cascade of holy hammers from above in an outward spiral. Further hammers are called down for each Power Charge consumed. Requires a Mace, Sceptre or Staff.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Slam] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Totemable] = true, [SkillType.Multistrikeable] = true, }, + weaponTypes = { + ["One Handed Mace"] = true, + ["Sceptre"] = true, + ["Staff"] = true, + ["Two Handed Mace"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + statMap = { + ["holy_hammers_damage_+%_final_per_power_charge_consumed"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge" }), + }, + }, + baseFlags = { + attack = true, + area = true, + melee = true, + }, + qualityStats = { + { "holy_hammers_damage_+%_final_per_power_charge_consumed", 0.25 }, + }, + constantStats = { + { "skill_physical_damage_%_to_convert_to_lightning", 50 }, + { "base_from_skill_shock_art_variation", 2 }, + { "holy_hammers_maximum_number_of_hammerslam_cascades", 6 }, + { "holy_hammers_damage_+%_final_per_power_charge_consumed", 15 }, + { "holy_hammers_num_additional_hammerslams_per_consumed_power_charge", 1 }, + { "active_skill_base_area_of_effect_radius", 12 }, + }, + stats = { + "is_area_damage", + "visual_hit_effect_elemental_is_holy", + "console_skill_dont_chase", + "skill_can_add_multiple_charges_per_action", + }, + levels = { + [1] = { attackSpeedMultiplier = -15, baseMultiplier = 2.444, damageEffectiveness = 2.444, levelRequirement = 28, cost = { Mana = 9, }, }, + [2] = { attackSpeedMultiplier = -15, baseMultiplier = 2.528, damageEffectiveness = 2.528, levelRequirement = 31, cost = { Mana = 9, }, }, + [3] = { attackSpeedMultiplier = -15, baseMultiplier = 2.613, damageEffectiveness = 2.613, levelRequirement = 34, cost = { Mana = 10, }, }, + [4] = { attackSpeedMultiplier = -15, baseMultiplier = 2.703, damageEffectiveness = 2.703, levelRequirement = 37, cost = { Mana = 10, }, }, + [5] = { attackSpeedMultiplier = -15, baseMultiplier = 2.795, damageEffectiveness = 2.795, levelRequirement = 40, cost = { Mana = 10, }, }, + [6] = { attackSpeedMultiplier = -15, baseMultiplier = 2.884, damageEffectiveness = 2.884, levelRequirement = 42, cost = { Mana = 10, }, }, + [7] = { attackSpeedMultiplier = -15, baseMultiplier = 2.977, damageEffectiveness = 2.977, levelRequirement = 44, cost = { Mana = 10, }, }, + [8] = { attackSpeedMultiplier = -15, baseMultiplier = 3.073, damageEffectiveness = 3.073, levelRequirement = 46, cost = { Mana = 11, }, }, + [9] = { attackSpeedMultiplier = -15, baseMultiplier = 3.172, damageEffectiveness = 3.172, levelRequirement = 48, cost = { Mana = 11, }, }, + [10] = { attackSpeedMultiplier = -15, baseMultiplier = 3.274, damageEffectiveness = 3.274, levelRequirement = 50, cost = { Mana = 11, }, }, + [11] = { attackSpeedMultiplier = -15, baseMultiplier = 3.38, damageEffectiveness = 3.38, levelRequirement = 52, cost = { Mana = 11, }, }, + [12] = { attackSpeedMultiplier = -15, baseMultiplier = 3.488, damageEffectiveness = 3.488, levelRequirement = 54, cost = { Mana = 11, }, }, + [13] = { attackSpeedMultiplier = -15, baseMultiplier = 3.601, damageEffectiveness = 3.601, levelRequirement = 56, cost = { Mana = 11, }, }, + [14] = { attackSpeedMultiplier = -15, baseMultiplier = 3.715, damageEffectiveness = 3.715, levelRequirement = 58, cost = { Mana = 12, }, }, + [15] = { attackSpeedMultiplier = -15, baseMultiplier = 3.834, damageEffectiveness = 3.834, levelRequirement = 60, cost = { Mana = 12, }, }, + [16] = { attackSpeedMultiplier = -15, baseMultiplier = 3.959, damageEffectiveness = 3.959, levelRequirement = 62, cost = { Mana = 12, }, }, + [17] = { attackSpeedMultiplier = -15, baseMultiplier = 4.085, damageEffectiveness = 4.085, levelRequirement = 64, cost = { Mana = 12, }, }, + [18] = { attackSpeedMultiplier = -15, baseMultiplier = 4.215, damageEffectiveness = 4.215, levelRequirement = 66, cost = { Mana = 12, }, }, + [19] = { attackSpeedMultiplier = -15, baseMultiplier = 4.351, damageEffectiveness = 4.351, levelRequirement = 68, cost = { Mana = 12, }, }, + [20] = { attackSpeedMultiplier = -15, baseMultiplier = 4.49, damageEffectiveness = 4.49, levelRequirement = 70, cost = { Mana = 13, }, }, + [21] = { attackSpeedMultiplier = -15, baseMultiplier = 4.634, damageEffectiveness = 4.634, levelRequirement = 72, cost = { Mana = 13, }, }, + [22] = { attackSpeedMultiplier = -15, baseMultiplier = 4.782, damageEffectiveness = 4.782, levelRequirement = 74, cost = { Mana = 13, }, }, + [23] = { attackSpeedMultiplier = -15, baseMultiplier = 4.935, damageEffectiveness = 4.935, levelRequirement = 76, cost = { Mana = 13, }, }, + [24] = { attackSpeedMultiplier = -15, baseMultiplier = 5.094, damageEffectiveness = 5.094, levelRequirement = 78, cost = { Mana = 13, }, }, + [25] = { attackSpeedMultiplier = -15, baseMultiplier = 5.255, damageEffectiveness = 5.255, levelRequirement = 80, cost = { Mana = 13, }, }, + [26] = { attackSpeedMultiplier = -15, baseMultiplier = 5.425, damageEffectiveness = 5.425, levelRequirement = 82, cost = { Mana = 14, }, }, + [27] = { attackSpeedMultiplier = -15, baseMultiplier = 5.597, damageEffectiveness = 5.597, levelRequirement = 84, cost = { Mana = 14, }, }, + [28] = { attackSpeedMultiplier = -15, baseMultiplier = 5.776, damageEffectiveness = 5.776, levelRequirement = 86, cost = { Mana = 14, }, }, + [29] = { attackSpeedMultiplier = -15, baseMultiplier = 5.961, damageEffectiveness = 5.961, levelRequirement = 88, cost = { Mana = 14, }, }, + [30] = { attackSpeedMultiplier = -15, baseMultiplier = 6.151, damageEffectiveness = 6.151, levelRequirement = 90, cost = { Mana = 14, }, }, + [31] = { attackSpeedMultiplier = -15, baseMultiplier = 6.429, damageEffectiveness = 6.429, levelRequirement = 91, cost = { Mana = 14, }, }, + [32] = { attackSpeedMultiplier = -15, baseMultiplier = 6.531, damageEffectiveness = 6.531, levelRequirement = 92, cost = { Mana = 14, }, }, + [33] = { attackSpeedMultiplier = -15, baseMultiplier = 6.635, damageEffectiveness = 6.635, levelRequirement = 93, cost = { Mana = 14, }, }, + [34] = { attackSpeedMultiplier = -15, baseMultiplier = 6.741, damageEffectiveness = 6.741, levelRequirement = 94, cost = { Mana = 15, }, }, + [35] = { attackSpeedMultiplier = -15, baseMultiplier = 6.848, damageEffectiveness = 6.848, levelRequirement = 95, cost = { Mana = 15, }, }, + [36] = { attackSpeedMultiplier = -15, baseMultiplier = 6.957, damageEffectiveness = 6.957, levelRequirement = 96, cost = { Mana = 15, }, }, + [37] = { attackSpeedMultiplier = -15, baseMultiplier = 7.068, damageEffectiveness = 7.068, levelRequirement = 97, cost = { Mana = 15, }, }, + [38] = { attackSpeedMultiplier = -15, baseMultiplier = 7.18, damageEffectiveness = 7.18, levelRequirement = 98, cost = { Mana = 15, }, }, + [39] = { attackSpeedMultiplier = -15, baseMultiplier = 7.294, damageEffectiveness = 7.294, levelRequirement = 99, cost = { Mana = 15, }, }, + [40] = { attackSpeedMultiplier = -15, baseMultiplier = 7.411, damageEffectiveness = 7.411, levelRequirement = 100, cost = { Mana = 15, }, }, }, } skills["HolyStrike"] = { @@ -6213,6 +6393,106 @@ skills["Sweep"] = { [40] = { 31, 8, attackSpeedMultiplier = -30, baseMultiplier = 6.192, damageEffectiveness = 6.192, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, }, } +skills["SweepAltX"] = { + name = "Holy Sweep of Hammerfalls", + baseTypeName = "Holy Sweep of Hammerfalls", + color = 1, + description = "Swings a two handed mace or a staff in a circle, calling down waves of holy hammers for a duration. Cannot be supported by Multistrike.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Lightning] = true, [SkillType.Cooldown] = true, [SkillType.Duration] = true, }, + weaponTypes = { + ["Staff"] = true, + ["Two Handed Mace"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1.15, + parts = { + { + name = "Melee Hit", + }, + { + name = "Holy Hammer", + }, + }, + statMap = { + ["holy_sweep_hammerfall_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), + }, + }, + baseFlags = { + attack = true, + melee = true, + area = true, + }, + baseMods = { + skill("radius", 24), + flag("CannotBeEvaded", { type = "SkillPart", skillPart = 2 }), + }, + qualityStats = { + { "base_skill_effect_duration", 25 }, + }, + constantStats = { + { "active_skill_base_secondary_area_of_effect_radius", 12 }, + { "skill_physical_damage_%_to_convert_to_lightning", 50 }, + { "active_skill_secondary_area_of_effect_description_mode", 9 }, + { "base_from_skill_shock_art_variation", 2 }, + { "base_skill_effect_duration", 3000 }, + { "holy_sweep_number_of_holy_bolts_to_create", 3 }, + { "active_skill_base_area_of_effect_radius", 5 }, + { "holy_sweep_hammerfall_description_mode", 1 }, + { "holy_sweep_hammerfall_damage_+%_final", -50 }, + { "holy_sweep_hammerfall_rate_ms", 700 }, + }, + stats = { + "active_skill_base_area_of_effect_radius", + "is_area_damage", + "console_skill_dont_chase", + "visual_hit_effect_elemental_is_holy", + "base_skill_show_average_damage_instead_of_dps", + "skill_can_add_multiple_charges_per_action", + }, + levels = { + [1] = { 24, attackSpeedMultiplier = -30, baseMultiplier = 1.7, cooldown = 5, damageEffectiveness = 1.7, levelRequirement = 12, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [2] = { 24, attackSpeedMultiplier = -30, baseMultiplier = 1.758, cooldown = 5, damageEffectiveness = 1.76, levelRequirement = 15, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [3] = { 24, attackSpeedMultiplier = -30, baseMultiplier = 1.817, cooldown = 5, damageEffectiveness = 1.82, levelRequirement = 19, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 13, }, }, + [4] = { 24, attackSpeedMultiplier = -30, baseMultiplier = 1.875, cooldown = 5, damageEffectiveness = 1.88, levelRequirement = 23, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 14, }, }, + [5] = { 25, attackSpeedMultiplier = -30, baseMultiplier = 1.934, cooldown = 5, damageEffectiveness = 1.93, levelRequirement = 27, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 14, }, }, + [6] = { 25, attackSpeedMultiplier = -30, baseMultiplier = 1.992, cooldown = 5, damageEffectiveness = 1.99, levelRequirement = 31, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 15, }, }, + [7] = { 25, attackSpeedMultiplier = -30, baseMultiplier = 2.051, cooldown = 5, damageEffectiveness = 2.05, levelRequirement = 35, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 15, }, }, + [8] = { 25, attackSpeedMultiplier = -30, baseMultiplier = 2.109, cooldown = 5, damageEffectiveness = 2.11, levelRequirement = 38, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 16, }, }, + [9] = { 25, attackSpeedMultiplier = -30, baseMultiplier = 2.167, cooldown = 5, damageEffectiveness = 2.17, levelRequirement = 41, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 17, }, }, + [10] = { 26, attackSpeedMultiplier = -30, baseMultiplier = 2.226, cooldown = 5, damageEffectiveness = 2.23, levelRequirement = 44, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 17, }, }, + [11] = { 26, attackSpeedMultiplier = -30, baseMultiplier = 2.284, cooldown = 5, damageEffectiveness = 2.28, levelRequirement = 47, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 18, }, }, + [12] = { 26, attackSpeedMultiplier = -30, baseMultiplier = 2.343, cooldown = 5, damageEffectiveness = 2.34, levelRequirement = 50, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 18, }, }, + [13] = { 26, attackSpeedMultiplier = -30, baseMultiplier = 2.401, cooldown = 5, damageEffectiveness = 2.4, levelRequirement = 53, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 19, }, }, + [14] = { 26, attackSpeedMultiplier = -30, baseMultiplier = 2.459, cooldown = 5, damageEffectiveness = 2.46, levelRequirement = 56, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 20, }, }, + [15] = { 27, attackSpeedMultiplier = -30, baseMultiplier = 2.518, cooldown = 5, damageEffectiveness = 2.52, levelRequirement = 59, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 20, }, }, + [16] = { 27, attackSpeedMultiplier = -30, baseMultiplier = 2.576, cooldown = 5, damageEffectiveness = 2.58, levelRequirement = 62, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 21, }, }, + [17] = { 27, attackSpeedMultiplier = -30, baseMultiplier = 2.635, cooldown = 5, damageEffectiveness = 2.63, levelRequirement = 64, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 21, }, }, + [18] = { 27, attackSpeedMultiplier = -30, baseMultiplier = 2.693, cooldown = 5, damageEffectiveness = 2.69, levelRequirement = 66, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 22, }, }, + [19] = { 27, attackSpeedMultiplier = -30, baseMultiplier = 2.752, cooldown = 5, damageEffectiveness = 2.75, levelRequirement = 68, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 22, }, }, + [20] = { 28, attackSpeedMultiplier = -30, baseMultiplier = 2.81, cooldown = 5, damageEffectiveness = 2.81, levelRequirement = 70, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 23, }, }, + [21] = { 28, attackSpeedMultiplier = -30, baseMultiplier = 2.868, cooldown = 5, damageEffectiveness = 2.87, levelRequirement = 72, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 24, }, }, + [22] = { 28, attackSpeedMultiplier = -30, baseMultiplier = 2.927, cooldown = 5, damageEffectiveness = 2.93, levelRequirement = 74, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 24, }, }, + [23] = { 28, attackSpeedMultiplier = -30, baseMultiplier = 2.985, cooldown = 5, damageEffectiveness = 2.99, levelRequirement = 76, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 25, }, }, + [24] = { 28, attackSpeedMultiplier = -30, baseMultiplier = 3.044, cooldown = 5, damageEffectiveness = 3.04, levelRequirement = 78, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 25, }, }, + [25] = { 29, attackSpeedMultiplier = -30, baseMultiplier = 3.102, cooldown = 5, damageEffectiveness = 3.1, levelRequirement = 80, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 26, }, }, + [26] = { 29, attackSpeedMultiplier = -30, baseMultiplier = 3.161, cooldown = 5, damageEffectiveness = 3.16, levelRequirement = 82, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 26, }, }, + [27] = { 29, attackSpeedMultiplier = -30, baseMultiplier = 3.219, cooldown = 5, damageEffectiveness = 3.22, levelRequirement = 84, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 27, }, }, + [28] = { 29, attackSpeedMultiplier = -30, baseMultiplier = 3.277, cooldown = 5, damageEffectiveness = 3.28, levelRequirement = 86, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 28, }, }, + [29] = { 29, attackSpeedMultiplier = -30, baseMultiplier = 3.336, cooldown = 5, damageEffectiveness = 3.34, levelRequirement = 88, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 28, }, }, + [30] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.394, cooldown = 5, damageEffectiveness = 3.39, levelRequirement = 90, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 29, }, }, + [31] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.423, cooldown = 5, damageEffectiveness = 3.42, levelRequirement = 91, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 29, }, }, + [32] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.453, cooldown = 5, damageEffectiveness = 3.45, levelRequirement = 92, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 29, }, }, + [33] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.482, cooldown = 5, damageEffectiveness = 3.48, levelRequirement = 93, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 30, }, }, + [34] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.511, cooldown = 5, damageEffectiveness = 3.51, levelRequirement = 94, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 30, }, }, + [35] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.54, cooldown = 5, damageEffectiveness = 3.54, levelRequirement = 95, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 30, }, }, + [36] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.569, cooldown = 5, damageEffectiveness = 3.57, levelRequirement = 96, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 31, }, }, + [37] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.599, cooldown = 5, damageEffectiveness = 3.6, levelRequirement = 97, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 31, }, }, + [38] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.628, cooldown = 5, damageEffectiveness = 3.63, levelRequirement = 98, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 31, }, }, + [39] = { 30, attackSpeedMultiplier = -30, baseMultiplier = 3.657, cooldown = 5, damageEffectiveness = 3.66, levelRequirement = 99, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 31, }, }, + [40] = { 31, attackSpeedMultiplier = -30, baseMultiplier = 3.686, cooldown = 5, damageEffectiveness = 3.69, levelRequirement = 100, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 32, }, }, + }, +} skills["IceCrash"] = { name = "Ice Crash", baseTypeName = "Ice Crash", @@ -9215,7 +9495,7 @@ skills["SearingBond"] = { name = "Searing Bond", baseTypeName = "Searing Bond", color = 1, - baseEffectiveness = 7.5956997871399, + baseEffectiveness = 8.6300001144409, incrementalEffectiveness = 0.062199998646975, description = "Summons a totem that casts a beam of fire at you and each other totem you control, dealing burning damage to enemies caught in the beam. Enemies near either end of a beam also suffer burning damage.", skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.TotemCastsAlone] = true, [SkillType.CausesBurning] = true, [SkillType.SummonsTotem] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.DegenOnlySpellDamage] = true, }, @@ -9233,7 +9513,7 @@ skills["SearingBond"] = { constantStats = { { "base_totem_duration", 8000 }, { "base_totem_range", 100 }, - { "number_of_additional_totems_allowed", 1 }, + { "number_of_additional_totems_allowed", 2 }, }, stats = { "base_fire_damage_to_deal_per_minute", @@ -9291,7 +9571,7 @@ skills["SearingBondAltX"] = { name = "Searing Bond of Detonation", baseTypeName = "Searing Bond of Detonation", color = 1, - baseEffectiveness = 4.8959999084473, + baseEffectiveness = 5.8000001907349, incrementalEffectiveness = 0.062199998646975, description = "Summons a totem that casts a beam of fire at you and each other totem you control, dealing burning damage to enemies caught in the beam. Enemies near either end of a beam also suffer burning damage. Reaching maximum active totem count will cause all totems from this skill to detonate, applying the same burning damage for a duration. ", skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.TotemCastsAlone] = true, [SkillType.CausesBurning] = true, [SkillType.SummonsTotem] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, }, @@ -9342,46 +9622,46 @@ skills["SearingBondAltX"] = { "base_fire_damage_to_deal_per_minute", }, levels = { - [1] = { 16.666667039196, 20, levelRequirement = 12, statInterpolation = { 3, 1, }, cost = { Mana = 18, }, }, - [2] = { 16.666667039196, 20, levelRequirement = 15, statInterpolation = { 3, 1, }, cost = { Mana = 19, }, }, - [3] = { 16.666667039196, 20, levelRequirement = 19, statInterpolation = { 3, 1, }, cost = { Mana = 20, }, }, - [4] = { 16.666667039196, 20, levelRequirement = 23, statInterpolation = { 3, 1, }, cost = { Mana = 21, }, }, - [5] = { 16.666667039196, 21, levelRequirement = 27, statInterpolation = { 3, 1, }, cost = { Mana = 23, }, }, - [6] = { 16.666667039196, 21, levelRequirement = 31, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, - [7] = { 16.666667039196, 21, levelRequirement = 35, statInterpolation = { 3, 1, }, cost = { Mana = 27, }, }, - [8] = { 16.666667039196, 21, levelRequirement = 38, statInterpolation = { 3, 1, }, cost = { Mana = 29, }, }, - [9] = { 16.666667039196, 22, levelRequirement = 41, statInterpolation = { 3, 1, }, cost = { Mana = 31, }, }, - [10] = { 16.666667039196, 22, levelRequirement = 44, statInterpolation = { 3, 1, }, cost = { Mana = 33, }, }, - [11] = { 16.666667039196, 22, levelRequirement = 47, statInterpolation = { 3, 1, }, cost = { Mana = 35, }, }, - [12] = { 16.666667039196, 22, levelRequirement = 50, statInterpolation = { 3, 1, }, cost = { Mana = 37, }, }, - [13] = { 16.666667039196, 23, levelRequirement = 53, statInterpolation = { 3, 1, }, cost = { Mana = 39, }, }, - [14] = { 16.666667039196, 23, levelRequirement = 56, statInterpolation = { 3, 1, }, cost = { Mana = 40, }, }, - [15] = { 16.666667039196, 23, levelRequirement = 59, statInterpolation = { 3, 1, }, cost = { Mana = 42, }, }, - [16] = { 16.666667039196, 23, levelRequirement = 62, statInterpolation = { 3, 1, }, cost = { Mana = 44, }, }, - [17] = { 16.666667039196, 24, levelRequirement = 64, statInterpolation = { 3, 1, }, cost = { Mana = 46, }, }, - [18] = { 16.666667039196, 24, levelRequirement = 66, statInterpolation = { 3, 1, }, cost = { Mana = 48, }, }, - [19] = { 16.666667039196, 24, levelRequirement = 68, statInterpolation = { 3, 1, }, cost = { Mana = 50, }, }, - [20] = { 16.666667039196, 24, levelRequirement = 70, statInterpolation = { 3, 1, }, cost = { Mana = 51, }, }, - [21] = { 16.666667039196, 25, levelRequirement = 72, statInterpolation = { 3, 1, }, cost = { Mana = 53, }, }, - [22] = { 16.666667039196, 25, levelRequirement = 74, statInterpolation = { 3, 1, }, cost = { Mana = 53, }, }, - [23] = { 16.666667039196, 25, levelRequirement = 76, statInterpolation = { 3, 1, }, cost = { Mana = 54, }, }, - [24] = { 16.666667039196, 25, levelRequirement = 78, statInterpolation = { 3, 1, }, cost = { Mana = 56, }, }, - [25] = { 16.666667039196, 26, levelRequirement = 80, statInterpolation = { 3, 1, }, cost = { Mana = 58, }, }, - [26] = { 16.666667039196, 26, levelRequirement = 82, statInterpolation = { 3, 1, }, cost = { Mana = 59, }, }, - [27] = { 16.666667039196, 26, levelRequirement = 84, statInterpolation = { 3, 1, }, cost = { Mana = 59, }, }, - [28] = { 16.666667039196, 26, levelRequirement = 86, statInterpolation = { 3, 1, }, cost = { Mana = 61, }, }, - [29] = { 16.666667039196, 27, levelRequirement = 88, statInterpolation = { 3, 1, }, cost = { Mana = 62, }, }, - [30] = { 16.666667039196, 27, levelRequirement = 90, statInterpolation = { 3, 1, }, cost = { Mana = 62, }, }, - [31] = { 16.666667039196, 27, levelRequirement = 91, statInterpolation = { 3, 1, }, cost = { Mana = 63, }, }, - [32] = { 16.666667039196, 27, levelRequirement = 92, statInterpolation = { 3, 1, }, cost = { Mana = 64, }, }, - [33] = { 16.666667039196, 27, levelRequirement = 93, statInterpolation = { 3, 1, }, cost = { Mana = 65, }, }, - [34] = { 16.666667039196, 27, levelRequirement = 94, statInterpolation = { 3, 1, }, cost = { Mana = 65, }, }, - [35] = { 16.666667039196, 27, levelRequirement = 95, statInterpolation = { 3, 1, }, cost = { Mana = 66, }, }, - [36] = { 16.666667039196, 28, levelRequirement = 96, statInterpolation = { 3, 1, }, cost = { Mana = 67, }, }, - [37] = { 16.666667039196, 28, levelRequirement = 97, statInterpolation = { 3, 1, }, cost = { Mana = 67, }, }, - [38] = { 16.666667039196, 28, levelRequirement = 98, statInterpolation = { 3, 1, }, cost = { Mana = 68, }, }, - [39] = { 16.666667039196, 28, levelRequirement = 99, statInterpolation = { 3, 1, }, cost = { Mana = 69, }, }, - [40] = { 16.666667039196, 28, levelRequirement = 100, statInterpolation = { 3, 1, }, cost = { Mana = 70, }, }, + [1] = { 16.666667039196, 23, levelRequirement = 12, statInterpolation = { 3, 1, }, cost = { Mana = 18, }, }, + [2] = { 16.666667039196, 23, levelRequirement = 15, statInterpolation = { 3, 1, }, cost = { Mana = 19, }, }, + [3] = { 16.666667039196, 23, levelRequirement = 19, statInterpolation = { 3, 1, }, cost = { Mana = 20, }, }, + [4] = { 16.666667039196, 24, levelRequirement = 23, statInterpolation = { 3, 1, }, cost = { Mana = 21, }, }, + [5] = { 16.666667039196, 24, levelRequirement = 27, statInterpolation = { 3, 1, }, cost = { Mana = 23, }, }, + [6] = { 16.666667039196, 24, levelRequirement = 31, statInterpolation = { 3, 1, }, cost = { Mana = 25, }, }, + [7] = { 16.666667039196, 24, levelRequirement = 35, statInterpolation = { 3, 1, }, cost = { Mana = 27, }, }, + [8] = { 16.666667039196, 24, levelRequirement = 38, statInterpolation = { 3, 1, }, cost = { Mana = 29, }, }, + [9] = { 16.666667039196, 25, levelRequirement = 41, statInterpolation = { 3, 1, }, cost = { Mana = 31, }, }, + [10] = { 16.666667039196, 25, levelRequirement = 44, statInterpolation = { 3, 1, }, cost = { Mana = 33, }, }, + [11] = { 16.666667039196, 25, levelRequirement = 47, statInterpolation = { 3, 1, }, cost = { Mana = 35, }, }, + [12] = { 16.666667039196, 25, levelRequirement = 50, statInterpolation = { 3, 1, }, cost = { Mana = 37, }, }, + [13] = { 16.666667039196, 26, levelRequirement = 53, statInterpolation = { 3, 1, }, cost = { Mana = 39, }, }, + [14] = { 16.666667039196, 26, levelRequirement = 56, statInterpolation = { 3, 1, }, cost = { Mana = 40, }, }, + [15] = { 16.666667039196, 26, levelRequirement = 59, statInterpolation = { 3, 1, }, cost = { Mana = 42, }, }, + [16] = { 16.666667039196, 26, levelRequirement = 62, statInterpolation = { 3, 1, }, cost = { Mana = 44, }, }, + [17] = { 16.666667039196, 26, levelRequirement = 64, statInterpolation = { 3, 1, }, cost = { Mana = 46, }, }, + [18] = { 16.666667039196, 27, levelRequirement = 66, statInterpolation = { 3, 1, }, cost = { Mana = 48, }, }, + [19] = { 16.666667039196, 27, levelRequirement = 68, statInterpolation = { 3, 1, }, cost = { Mana = 50, }, }, + [20] = { 16.666667039196, 27, levelRequirement = 70, statInterpolation = { 3, 1, }, cost = { Mana = 51, }, }, + [21] = { 16.666667039196, 27, levelRequirement = 72, statInterpolation = { 3, 1, }, cost = { Mana = 53, }, }, + [22] = { 16.666667039196, 27, levelRequirement = 74, statInterpolation = { 3, 1, }, cost = { Mana = 53, }, }, + [23] = { 16.666667039196, 28, levelRequirement = 76, statInterpolation = { 3, 1, }, cost = { Mana = 54, }, }, + [24] = { 16.666667039196, 28, levelRequirement = 78, statInterpolation = { 3, 1, }, cost = { Mana = 56, }, }, + [25] = { 16.666667039196, 28, levelRequirement = 80, statInterpolation = { 3, 1, }, cost = { Mana = 58, }, }, + [26] = { 16.666667039196, 28, levelRequirement = 82, statInterpolation = { 3, 1, }, cost = { Mana = 59, }, }, + [27] = { 16.666667039196, 28, levelRequirement = 84, statInterpolation = { 3, 1, }, cost = { Mana = 59, }, }, + [28] = { 16.666667039196, 29, levelRequirement = 86, statInterpolation = { 3, 1, }, cost = { Mana = 61, }, }, + [29] = { 16.666667039196, 29, levelRequirement = 88, statInterpolation = { 3, 1, }, cost = { Mana = 62, }, }, + [30] = { 16.666667039196, 29, levelRequirement = 90, statInterpolation = { 3, 1, }, cost = { Mana = 62, }, }, + [31] = { 16.666667039196, 29, levelRequirement = 91, statInterpolation = { 3, 1, }, cost = { Mana = 63, }, }, + [32] = { 16.666667039196, 29, levelRequirement = 92, statInterpolation = { 3, 1, }, cost = { Mana = 64, }, }, + [33] = { 16.666667039196, 29, levelRequirement = 93, statInterpolation = { 3, 1, }, cost = { Mana = 65, }, }, + [34] = { 16.666667039196, 30, levelRequirement = 94, statInterpolation = { 3, 1, }, cost = { Mana = 65, }, }, + [35] = { 16.666667039196, 30, levelRequirement = 95, statInterpolation = { 3, 1, }, cost = { Mana = 66, }, }, + [36] = { 16.666667039196, 30, levelRequirement = 96, statInterpolation = { 3, 1, }, cost = { Mana = 67, }, }, + [37] = { 16.666667039196, 30, levelRequirement = 97, statInterpolation = { 3, 1, }, cost = { Mana = 67, }, }, + [38] = { 16.666667039196, 30, levelRequirement = 98, statInterpolation = { 3, 1, }, cost = { Mana = 68, }, }, + [39] = { 16.666667039196, 30, levelRequirement = 99, statInterpolation = { 3, 1, }, cost = { Mana = 69, }, }, + [40] = { 16.666667039196, 30, levelRequirement = 100, statInterpolation = { 3, 1, }, cost = { Mana = 70, }, }, }, } skills["SeismicCry"] = { @@ -10781,6 +11061,107 @@ skills["Reap"] = { { "blood_scythe_damage_+%_final_per_charge", 15 }, { "blood_scythe_cost_+%_final_per_charge", 20 }, { "base_skill_effect_duration", 1000 }, + { "active_skill_base_area_of_effect_radius", 25 }, + }, + stats = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + "base_physical_damage_to_deal_per_minute", + "spell_damage_modifiers_apply_to_skill_dot", + "is_area_damage", + "lose_blood_scythe_charge_on_kill", + "quality_display_reap_is_gem", + }, + notMinionStat = { + "spell_minimum_base_physical_damage", + "spell_maximum_base_physical_damage", + }, + levels = { + [1] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Life = 25, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Life = 26, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Life = 28, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Life = 30, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Life = 31, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Life = 32, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Life = 33, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Life = 34, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Life = 35, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Life = 36, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Life = 37, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Life = 38, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Life = 39, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Life = 40, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Life = 41, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Life = 42, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Life = 43, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Life = 44, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Life = 45, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Life = 46, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Life = 47, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Life = 48, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Life = 49, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Life = 50, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Life = 51, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Life = 52, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Life = 53, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Life = 54, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Life = 55, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Life = 56, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Life = 57, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 123.33333767951, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, + }, +} +skills["ReapAltX"] = { + name = "Reap of Butchery", + baseTypeName = "Reap of Butchery", + color = 1, + baseEffectiveness = 1.6582000255585, + incrementalEffectiveness = 0.05009999871254, + description = "A bloody scythe swipes around you, applying a physical damage over time debuff and hitting enemies with physical damage. If any survive, you gain a blood charge which raises the damage and cost of the skill. Players can have 5 maximum blood charges.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Triggerable] = true, }, + statDescriptionScope = "debuff_skill_stat_descriptions", + castTime = 1, + statMap = { + ["blood_scythe_damage_+%_final_per_charge"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "BloodCharge" }), + }, + ["blood_scythe_cost_+%_final_per_charge"] = { + mod("LifeCost", "MORE", nil, 0, 0, { type = "Multiplier", var = "BloodCharge" }), + }, + ["base_physical_damage_to_deal_per_minute"] = { + skill("PhysicalDot", nil, { type = "Condition", var = "ReapDebuffIsFireDamage", neg = true }), + skill("FireDot", nil, { type = "Condition", var = "ReapDebuffIsFireDamage"}), + div = 60, + }, + ["quality_display_reap_is_gem"] = { + -- Display only + }, + }, + baseFlags = { + spell = true, + area = true, + duration = true, + }, + baseMods = { + skill("radius", 25), + skill("debuff", true), + }, + qualityStats = { + { "blood_scythe_damage_+%_final_per_charge", 0.25 }, + }, + constantStats = { + { "blood_scythe_damage_+%_final_per_charge", 25 }, + { "blood_scythe_cost_+%_final_per_charge", 20 }, + { "base_skill_effect_duration", 2000 }, + { "active_skill_base_area_of_effect_radius", 32 }, }, stats = { "spell_minimum_base_physical_damage", @@ -10796,46 +11177,46 @@ skills["Reap"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 115.76667090729, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Life = 25, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 114.4083366535, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Life = 26, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 113.19500063547, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Life = 28, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 111.73833461018, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Life = 30, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 110.43000468083, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Life = 31, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 109.88333470859, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Life = 32, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 109.30333381824, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Life = 33, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 108.69500085278, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Life = 34, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 108.26166712829, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Life = 35, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 107.59167116961, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Life = 36, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 107.10333427769, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Life = 37, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 106.58833424075, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Life = 38, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 106.04500212869, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Life = 39, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 105.47666785441, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Life = 40, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 104.88000150502, critChance = 6, damageEffectiveness = 2, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Life = 41, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 104.2566720106, critChance = 6, damageEffectiveness = 2, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Life = 42, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 103.38500571863, critChance = 6, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Life = 43, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 102.48166949137, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Life = 44, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 102.45333741625, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Life = 45, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 101.95333390827, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Life = 46, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 101.43000511544, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Life = 47, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 100.651671752, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Life = 48, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 100.07999961754, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Life = 49, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 99.486671128323, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Life = 50, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 98.870001459693, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Life = 51, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 98.229998558934, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Life = 52, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 97.566670373331, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Life = 53, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 97.123338962868, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Life = 54, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 96.416666278616, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Life = 55, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 95.684999379429, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Life = 56, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 95.680000536442, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Life = 57, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 95.913332857738, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 95.886669712712, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 95.848332004336, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 96.055001180607, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 95.996668100283, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 95.924999473803, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 96.105005505048, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 96.013333559334, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 95.910002944842, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, + [1] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Life = 31, }, }, + [2] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Life = 33, }, }, + [3] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Life = 35, }, }, + [4] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Life = 38, }, }, + [5] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Life = 39, }, }, + [6] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Life = 40, }, }, + [7] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Life = 41, }, }, + [8] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Life = 43, }, }, + [9] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Life = 44, }, }, + [10] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Life = 45, }, }, + [11] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Life = 46, }, }, + [12] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Life = 48, }, }, + [13] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Life = 49, }, }, + [14] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Life = 50, }, }, + [15] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Life = 51, }, }, + [16] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Life = 53, }, }, + [17] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Life = 54, }, }, + [18] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Life = 55, }, }, + [19] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Life = 56, }, }, + [20] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, + [21] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Life = 59, }, }, + [22] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [23] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, + [24] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Life = 63, }, }, + [25] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Life = 64, }, }, + [26] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Life = 65, }, }, + [27] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Life = 66, }, }, + [28] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Life = 68, }, }, + [29] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Life = 69, }, }, + [30] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Life = 70, }, }, + [31] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Life = 71, }, }, + [32] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Life = 73, }, }, + [33] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Life = 73, }, }, + [34] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Life = 73, }, }, + [35] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Life = 75, }, }, + [36] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Life = 75, }, }, + [37] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Life = 75, }, }, + [38] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Life = 75, }, }, + [39] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Life = 76, }, }, + [40] = { 0.40000000596046, 0.60000002384186, 123.33333767951, critChance = 6, damageEffectiveness = 1.3, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Life = 76, }, }, }, } skills["VaalReap"] = { @@ -10876,7 +11257,7 @@ skills["VaalReap"] = { constantStats = { { "base_skill_effect_duration", 5000 }, { "vaal_reap_additional_maximum_blood_charges", 4 }, - { "blood_ground_leaving_area_lasts_for_ms", 2000 }, + { "blood_ground_leaving_area_lasts_for_ms", 4000 }, { "base_secondary_skill_effect_duration", 8000 }, }, stats = { @@ -10895,46 +11276,46 @@ skills["VaalReap"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3, levelRequirement = 28, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 31, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 34, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 37, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 40, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 42, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 44, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 46, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 48, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 50, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4, levelRequirement = 52, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 54, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 56, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 58, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.3, levelRequirement = 60, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.4, levelRequirement = 62, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 64, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.6, levelRequirement = 66, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 68, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 70, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 72, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 74, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 76, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 78, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 80, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 82, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 84, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 86, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 88, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 90, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 91, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 92, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 93, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 94, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 95, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 96, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 97, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 98, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 99, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 100, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3, levelRequirement = 28, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 31, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 34, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 37, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 40, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 42, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 44, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 46, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 48, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 50, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4, levelRequirement = 52, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 54, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 56, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 58, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.3, levelRequirement = 60, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.4, levelRequirement = 62, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 64, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.6, levelRequirement = 66, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 68, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 70, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 72, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 74, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 76, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 78, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 80, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 82, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 84, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 86, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 88, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 90, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 91, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 92, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 93, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 94, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 95, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 96, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 97, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 98, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 99, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 110.00000086923, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 100, soulPreventionDuration = 6, vaalStoredUses = 2, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, }, } skills["SummonFlameGolem"] = { diff --git a/src/Data/Skills/minion.lua b/src/Data/Skills/minion.lua index 6db1515fd7..efede7be2b 100644 --- a/src/Data/Skills/minion.lua +++ b/src/Data/Skills/minion.lua @@ -777,7 +777,7 @@ skills["SummonedSpiderViperStrike"] = { baseEffectiveness = 0.64999997615814, incrementalEffectiveness = 0.025499999523163, description = "Hits enemies, converting some of your physical damage to chaos damage and inflicting poison which will be affected by modifiers to skill duration. If dual wielding, will strike with both weapons. Requires a claw, dagger or sword.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Chaos] = true, }, weaponTypes = { ["Claw"] = true, ["Dagger"] = true, @@ -1430,7 +1430,7 @@ skills["DropBearSummonedRallyingCry"] = { name = "[DNT] Old Rallying Cry", hidden = true, color = 1, - description = "[DNT] Unused (replaced)", + description = "DNT Unused (replaced)", skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, @@ -1778,7 +1778,6 @@ skills["SummonedReaperMelee"] = { }, stats = { "active_skill_damage_+%_final", - "action_attack_or_cast_time_uses_animation_length", }, notMinionStat = { "active_skill_damage_+%_final", @@ -2170,7 +2169,7 @@ skills["HolyStrikeMinionAttack"] = { [1] = { levelRequirement = 1, }, }, } -skills["MeleeAtAnimationSpeedComboCold"] = { +skills["MeleeComboCold"] = { name = "Default Attack", hidden = true, color = 4, @@ -2189,11 +2188,39 @@ skills["MeleeAtAnimationSpeedComboCold"] = { stats = { "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", - "action_attack_or_cast_time_uses_animation_length", "projectile_uses_contact_position", "use_scaled_contact_offset", }, levels = { [1] = { levelRequirement = 1, }, }, +} +skills["MeleePartialChaos"] = { + name = "Default Attack", + hidden = true, + color = 4, + baseEffectiveness = 0, + description = "Strike your foes down with a powerful blow.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.ProjectilesFromUser] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + melee = true, + }, + constantStats = { + { "skill_physical_damage_%_to_convert_to_chaos", 25 }, + }, + stats = { + "active_skill_damage_+%_final", + "skill_can_fire_arrows", + "skill_can_fire_wand_projectiles", + "visual_hit_effect_chaos_is_green", + }, + notMinionStat = { + "active_skill_damage_+%_final", + }, + levels = { + [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, + }, } \ No newline at end of file diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index fb75d03be5..16ea68e600 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -775,10 +775,9 @@ skills["UniqueEnchantmentOfInfernoOnCrit"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.InbuiltTrigger] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.InbuiltTrigger] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, - cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -908,7 +907,7 @@ skills["CorpseWalk"] = { hidden = true, color = 4, description = "Spawns corpses around you while you move, based on monsters in the current area. If you are using the Raise Spectre skill there is a chance to spawn spectral corpses matching your most recently raised Spectres. Spectral corpses cannot be interacted with except by Minion skills.", - skillTypes = { [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, }, + skillTypes = { [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.CreatesCorpse] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -993,7 +992,7 @@ skills["DeathAura"] = { skill("radius", 30), }, constantStats = { - { "base_chaos_damage_to_deal_per_minute", 75000 }, + { "base_chaos_damage_to_deal_per_minute", 96000 }, }, stats = { "cast_on_gain_skill", @@ -2155,7 +2154,7 @@ skills["Icestorm"] = { { "skill_override_pvp_scaling_time_ms", 450 }, { "firestorm_drop_ground_ice_duration_ms", 500 }, { "skill_effect_duration_per_100_int", 100 }, - { "firestorm_max_number_of_storms", 5 }, + { "firestorm_max_number_of_storms", 8 }, { "active_skill_base_area_of_effect_radius", 16 }, }, stats = { @@ -2164,7 +2163,7 @@ skills["Icestorm"] = { "skill_is_ice_storm", }, levels = { - [1] = { critChance = 6, levelRequirement = 1, cost = { Mana = 22, }, }, + [1] = { critChance = 7.5, levelRequirement = 1, cost = { Mana = 22, }, }, }, } skills["IcicleBurst"] = { @@ -2546,17 +2545,22 @@ skills["TriggeredMoltenStrike"] = { flag("CannotSplit"), }, constantStats = { + { "skill_physical_damage_%_to_convert_to_fire", 60 }, { "number_of_additional_projectiles", 3 }, - { "attack_trigger_on_melee_hit_%", 20 }, }, stats = { + "attack_trigger_on_melee_hit_%", "show_number_of_projectiles", "base_is_projectile", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", }, + notMinionStat = { + "attack_trigger_on_melee_hit_%", + }, levels = { - [16] = { baseMultiplier = 1.7, cooldown = 0.15, damageEffectiveness = 1.7, levelRequirement = 1, storedUses = 1, }, + [16] = { 20, baseMultiplier = 1.7, cooldown = 0.15, damageEffectiveness = 1.7, levelRequirement = 1, storedUses = 1, statInterpolation = { 1, }, }, + [20] = { 100, baseMultiplier = 2, cooldown = 0.15, damageEffectiveness = 2, levelRequirement = 70, storedUses = 1, statInterpolation = { 1, }, }, }, } skills["PenanceMark"] = { @@ -2588,7 +2592,7 @@ skills["PenanceMark"] = { }, constantStats = { { "base_skill_effect_duration", 3000 }, - { "penance_mark_summon_phantasms_when_hit", 3 }, + { "penance_mark_summon_phantasms_when_hit", 2 }, }, stats = { "base_deal_no_damage", @@ -2648,6 +2652,430 @@ skills["SupportTriggerSpellOnAttack"] = { [1] = { cooldown = 0.25, levelRequirement = 1, storedUses = 1, }, }, } +skills["PactOfBeidat"] = { + name = "Pact of Beidat", + baseTypeName = "Pact of Beidat", + flavourText = {"Wield the gifts of Beidat, luminary of the pale unseeing,", "whose honeyed words bore tunnels through pliant minds.", }, + color = 4, + description = "Cast a pact, Empowering non-channelling spells that either fire projectiles, apply an effect to an area around a targeted location or fire chaining beams, causing them to deal more damage and have enhanced coverage. However, using this skill also burdens you with an Affliction.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Pact] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Triggerable] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0.8, + baseFlags = { + }, + qualityStats = { + { "skill_empowers_next_x_spells_cast", 0.1 }, + }, + constantStats = { + { "skill_empowers_next_x_spells_cast", 6 }, + { "pact_empower_limitation_specifier_for_stat_description", 0 }, + }, + stats = { + "pact_skill_additional_beam_only_chains", + "pact_skill_grant_x_additional_projectiles_fired_in_nova", + "pact_skill_grant_x_cascades_to_do_in_spiral", + "pact_skill_damage_+%_final_with_hits_and_ailments_to_grant", + "base_deal_no_attack_damage", + "base_deal_no_spell_damage", + "base_deal_no_secondary_damage", + "cannot_cancel_skill_before_contact_point", + }, + levels = { + [1] = { 4, 4, 5, 16, cooldown = 4, levelRequirement = 24, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, + [2] = { 4, 4, 5, 17, cooldown = 4, levelRequirement = 27, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, + [3] = { 4, 4, 5, 18, cooldown = 4, levelRequirement = 30, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [4] = { 4, 4, 5, 19, cooldown = 4, levelRequirement = 33, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [5] = { 4, 4, 6, 20, cooldown = 4, levelRequirement = 36, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [6] = { 5, 4, 6, 21, cooldown = 4, levelRequirement = 39, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [7] = { 5, 5, 6, 22, cooldown = 4, levelRequirement = 42, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [8] = { 5, 5, 6, 23, cooldown = 4, levelRequirement = 45, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, + [9] = { 5, 5, 6, 24, cooldown = 4, levelRequirement = 48, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [10] = { 5, 5, 6, 25, cooldown = 4, levelRequirement = 50, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [11] = { 5, 5, 7, 26, cooldown = 4, levelRequirement = 52, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [12] = { 5, 5, 7, 27, cooldown = 4, levelRequirement = 54, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [13] = { 5, 5, 7, 28, cooldown = 4, levelRequirement = 56, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 28, }, }, + [14] = { 6, 5, 7, 29, cooldown = 4, levelRequirement = 58, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [15] = { 6, 6, 7, 30, cooldown = 4, levelRequirement = 60, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [16] = { 6, 6, 7, 31, cooldown = 4, levelRequirement = 62, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [17] = { 6, 6, 8, 32, cooldown = 4, levelRequirement = 64, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 31, }, }, + [18] = { 6, 6, 8, 33, cooldown = 4, levelRequirement = 66, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 31, }, }, + [19] = { 6, 6, 8, 34, cooldown = 4, levelRequirement = 68, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, + [20] = { 6, 6, 8, 35, cooldown = 4, levelRequirement = 70, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 33, }, }, + [21] = { 6, 6, 8, 36, cooldown = 4, levelRequirement = 72, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, + [22] = { 7, 6, 8, 37, cooldown = 4, levelRequirement = 74, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, + [23] = { 7, 7, 8, 38, cooldown = 4, levelRequirement = 76, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 35, }, }, + [24] = { 7, 7, 9, 39, cooldown = 4, levelRequirement = 78, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, + [25] = { 7, 7, 9, 40, cooldown = 4, levelRequirement = 80, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, + [26] = { 7, 7, 9, 41, cooldown = 4, levelRequirement = 82, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 37, }, }, + [27] = { 7, 7, 9, 42, cooldown = 4, levelRequirement = 84, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, + [28] = { 7, 7, 9, 43, cooldown = 4, levelRequirement = 86, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 39, }, }, + [29] = { 7, 7, 9, 44, cooldown = 4, levelRequirement = 88, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 39, }, }, + [30] = { 8, 7, 10, 44, cooldown = 4, levelRequirement = 90, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, + [31] = { 8, 7, 10, 45, cooldown = 4, levelRequirement = 91, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, + [32] = { 8, 8, 10, 45, cooldown = 4, levelRequirement = 92, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 41, }, }, + [33] = { 8, 8, 10, 46, cooldown = 4, levelRequirement = 93, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 41, }, }, + [34] = { 8, 8, 10, 46, cooldown = 4, levelRequirement = 94, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, + [35] = { 8, 8, 10, 47, cooldown = 4, levelRequirement = 95, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, + [36] = { 8, 8, 10, 47, cooldown = 4, levelRequirement = 96, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, + [37] = { 8, 8, 10, 48, cooldown = 4, levelRequirement = 97, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 43, }, }, + [38] = { 8, 8, 10, 48, cooldown = 4, levelRequirement = 98, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 43, }, }, + [39] = { 8, 8, 10, 49, cooldown = 4, levelRequirement = 99, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 43, }, }, + [40] = { 8, 8, 10, 49, cooldown = 4, levelRequirement = 100, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, + }, +} +skills["PactOfGhorr"] = { + name = "Pact of Ghorr", + baseTypeName = "Pact of Ghorr", + flavourText = {"Offer yourself to Ghorr, the gluttonous, the cage of", "flesh trapping souls in the cycle of consumption.", }, + color = 4, + description = "Cast a pact, Empowering your damage over time spells but burdening you with an Affliction. This skill also grants the Hunger of Ghorr buff for a duration causing Fleshrend to trigger periodically.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Pact] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Triggerable] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0.8, + baseFlags = { + }, + constantStats = { + { "skill_empowers_next_x_spells_cast", 3 }, + { "pact_empower_limitation_specifier_for_stat_description", 1 }, + { "pact_skill_grant_damage_over_time_+%_final_to_spells", 40 }, + { "skill_grants_bloodrite_for_base_X_ms_on_use", 6000 }, + { "bloodrite_base_trigger_frequency_ms", 2000 }, + { "bloodrite_trigger_frequency_+%_per_stage", 150 }, + }, + stats = { + "base_deal_no_attack_damage", + "base_deal_no_spell_damage", + "base_deal_no_secondary_damage", + "cannot_cancel_skill_before_contact_point", + }, + levels = { + [1] = { cooldown = 4, levelRequirement = 24, storedUses = 1, cost = { Mana = 16, }, }, + [2] = { cooldown = 4, levelRequirement = 27, storedUses = 1, cost = { Mana = 17, }, }, + [3] = { cooldown = 4, levelRequirement = 30, storedUses = 1, cost = { Mana = 18, }, }, + [4] = { cooldown = 4, levelRequirement = 33, storedUses = 1, cost = { Mana = 19, }, }, + [5] = { cooldown = 4, levelRequirement = 36, storedUses = 1, cost = { Mana = 21, }, }, + [6] = { cooldown = 4, levelRequirement = 39, storedUses = 1, cost = { Mana = 22, }, }, + [7] = { cooldown = 4, levelRequirement = 42, storedUses = 1, cost = { Mana = 23, }, }, + [8] = { cooldown = 4, levelRequirement = 45, storedUses = 1, cost = { Mana = 24, }, }, + [9] = { cooldown = 4, levelRequirement = 48, storedUses = 1, cost = { Mana = 25, }, }, + [10] = { cooldown = 4, levelRequirement = 50, storedUses = 1, cost = { Mana = 26, }, }, + [11] = { cooldown = 4, levelRequirement = 52, storedUses = 1, cost = { Mana = 26, }, }, + [12] = { cooldown = 4, levelRequirement = 54, storedUses = 1, cost = { Mana = 27, }, }, + [13] = { cooldown = 4, levelRequirement = 56, storedUses = 1, cost = { Mana = 28, }, }, + [14] = { cooldown = 4, levelRequirement = 58, storedUses = 1, cost = { Mana = 29, }, }, + [15] = { cooldown = 4, levelRequirement = 60, storedUses = 1, cost = { Mana = 29, }, }, + [16] = { cooldown = 4, levelRequirement = 62, storedUses = 1, cost = { Mana = 30, }, }, + [17] = { cooldown = 4, levelRequirement = 64, storedUses = 1, cost = { Mana = 31, }, }, + [18] = { cooldown = 4, levelRequirement = 66, storedUses = 1, cost = { Mana = 31, }, }, + [19] = { cooldown = 4, levelRequirement = 68, storedUses = 1, cost = { Mana = 32, }, }, + [20] = { cooldown = 4, levelRequirement = 70, storedUses = 1, cost = { Mana = 33, }, }, + [21] = { cooldown = 4, levelRequirement = 72, storedUses = 1, cost = { Mana = 34, }, }, + [22] = { cooldown = 4, levelRequirement = 74, storedUses = 1, cost = { Mana = 34, }, }, + [23] = { cooldown = 4, levelRequirement = 76, storedUses = 1, cost = { Mana = 35, }, }, + [24] = { cooldown = 4, levelRequirement = 78, storedUses = 1, cost = { Mana = 36, }, }, + [25] = { cooldown = 4, levelRequirement = 80, storedUses = 1, cost = { Mana = 36, }, }, + [26] = { cooldown = 4, levelRequirement = 82, storedUses = 1, cost = { Mana = 37, }, }, + [27] = { cooldown = 4, levelRequirement = 84, storedUses = 1, cost = { Mana = 38, }, }, + [28] = { cooldown = 4, levelRequirement = 86, storedUses = 1, cost = { Mana = 39, }, }, + [29] = { cooldown = 4, levelRequirement = 88, storedUses = 1, cost = { Mana = 39, }, }, + [30] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 40, }, }, + [31] = { cooldown = 4, levelRequirement = 91, storedUses = 1, cost = { Mana = 40, }, }, + [32] = { cooldown = 4, levelRequirement = 92, storedUses = 1, cost = { Mana = 41, }, }, + [33] = { cooldown = 4, levelRequirement = 93, storedUses = 1, cost = { Mana = 41, }, }, + [34] = { cooldown = 4, levelRequirement = 94, storedUses = 1, cost = { Mana = 42, }, }, + [35] = { cooldown = 4, levelRequirement = 95, storedUses = 1, cost = { Mana = 42, }, }, + [36] = { cooldown = 4, levelRequirement = 96, storedUses = 1, cost = { Mana = 42, }, }, + [37] = { cooldown = 4, levelRequirement = 97, storedUses = 1, cost = { Mana = 43, }, }, + [38] = { cooldown = 4, levelRequirement = 98, storedUses = 1, cost = { Mana = 43, }, }, + [39] = { cooldown = 4, levelRequirement = 99, storedUses = 1, cost = { Mana = 43, }, }, + [40] = { cooldown = 4, levelRequirement = 100, storedUses = 1, cost = { Mana = 44, }, }, + }, +} +skills["TriggeredBloodrend"] = { + name = "Fleshrend", + baseTypeName = "Fleshrend", + flavourText = {"Offer yourself to Ghorr, the gluttonous, the cage of", "flesh trapping souls in the cycle of consumption.", }, + color = 4, + baseEffectiveness = 5.4000000953674, + incrementalEffectiveness = 0.052999999374151, + description = "Fires a projectile that turns towards enemies in front of it. The projectile does not hit enemies, but as it travels it applies a short physical damage over time debuff to each enemy in an area around it, stacking up to 3 times. The debuff also increases the damage over time they take from all sources.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.DamageOverTime] = true, [SkillType.DegenOnlySpellDamage] = true, [SkillType.Physical] = true, [SkillType.AreaSpell] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, }, + statDescriptionScope = "debuff_skill_stat_descriptions", + castTime = 0, + baseFlags = { + }, + qualityStats = { + { "skill_effect_duration_+%", 1 }, + }, + constantStats = { + { "active_skill_projectile_speed_+%_variation_final", 25 }, + { "base_skill_effect_duration", 400 }, + { "bloodrend_debuff_damage_over_time_taken_+%_per_stack", 25 }, + { "base_number_of_projectiles", 3 }, + }, + stats = { + "base_physical_damage_to_deal_per_minute", + "spell_damage_modifiers_apply_to_skill_dot", + "base_is_projectile", + "always_pierce", + "triggered_by_pact_of_ghorr", + "projectiles_nova", + }, + levels = { + [1] = { 16.666667039196, levelRequirement = 24, statInterpolation = { 3, }, }, + [2] = { 16.666667039196, levelRequirement = 27, statInterpolation = { 3, }, }, + [3] = { 16.666667039196, levelRequirement = 30, statInterpolation = { 3, }, }, + [4] = { 16.666667039196, levelRequirement = 33, statInterpolation = { 3, }, }, + [5] = { 16.666667039196, levelRequirement = 36, statInterpolation = { 3, }, }, + [6] = { 16.666667039196, levelRequirement = 39, statInterpolation = { 3, }, }, + [7] = { 16.666667039196, levelRequirement = 42, statInterpolation = { 3, }, }, + [8] = { 16.666667039196, levelRequirement = 45, statInterpolation = { 3, }, }, + [9] = { 16.666667039196, levelRequirement = 48, statInterpolation = { 3, }, }, + [10] = { 16.666667039196, levelRequirement = 50, statInterpolation = { 3, }, }, + [11] = { 16.666667039196, levelRequirement = 52, statInterpolation = { 3, }, }, + [12] = { 16.666667039196, levelRequirement = 54, statInterpolation = { 3, }, }, + [13] = { 16.666667039196, levelRequirement = 56, statInterpolation = { 3, }, }, + [14] = { 16.666667039196, levelRequirement = 58, statInterpolation = { 3, }, }, + [15] = { 16.666667039196, levelRequirement = 60, statInterpolation = { 3, }, }, + [16] = { 16.666667039196, levelRequirement = 62, statInterpolation = { 3, }, }, + [17] = { 16.666667039196, levelRequirement = 64, statInterpolation = { 3, }, }, + [18] = { 16.666667039196, levelRequirement = 66, statInterpolation = { 3, }, }, + [19] = { 16.666667039196, levelRequirement = 68, statInterpolation = { 3, }, }, + [20] = { 16.666667039196, levelRequirement = 70, statInterpolation = { 3, }, }, + [21] = { 16.666667039196, levelRequirement = 72, statInterpolation = { 3, }, }, + [22] = { 16.666667039196, levelRequirement = 74, statInterpolation = { 3, }, }, + [23] = { 16.666667039196, levelRequirement = 76, statInterpolation = { 3, }, }, + [24] = { 16.666667039196, levelRequirement = 78, statInterpolation = { 3, }, }, + [25] = { 16.666667039196, levelRequirement = 80, statInterpolation = { 3, }, }, + [26] = { 16.666667039196, levelRequirement = 82, statInterpolation = { 3, }, }, + [27] = { 16.666667039196, levelRequirement = 84, statInterpolation = { 3, }, }, + [28] = { 16.666667039196, levelRequirement = 86, statInterpolation = { 3, }, }, + [29] = { 16.666667039196, levelRequirement = 88, statInterpolation = { 3, }, }, + [30] = { 16.666667039196, levelRequirement = 90, statInterpolation = { 3, }, }, + [31] = { 16.666667039196, levelRequirement = 91, statInterpolation = { 3, }, }, + [32] = { 16.666667039196, levelRequirement = 92, statInterpolation = { 3, }, }, + [33] = { 16.666667039196, levelRequirement = 93, statInterpolation = { 3, }, }, + [34] = { 16.666667039196, levelRequirement = 94, statInterpolation = { 3, }, }, + [35] = { 16.666667039196, levelRequirement = 95, statInterpolation = { 3, }, }, + [36] = { 16.666667039196, levelRequirement = 96, statInterpolation = { 3, }, }, + [37] = { 16.666667039196, levelRequirement = 97, statInterpolation = { 3, }, }, + [38] = { 16.666667039196, levelRequirement = 98, statInterpolation = { 3, }, }, + [39] = { 16.666667039196, levelRequirement = 99, statInterpolation = { 3, }, }, + [40] = { 16.666667039196, levelRequirement = 100, statInterpolation = { 3, }, }, + }, +} +skills["PactOfKtash"] = { + name = "Pact of K'Tash", + baseTypeName = "Pact of K'Tash", + flavourText = {"Unleash the fury of K'Tash, incarnation of hate.", "Endless bodies burn beneath the flames of his pursuit.", }, + color = 4, + description = "Cast a pact, Empowering your damaging Vaal spells but burdening you with an Affliction. Empowered Vaal spells deal more damage, have less soul gain prevention duration and regain consumed souls on use.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Pact] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Triggerable] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0.8, + baseFlags = { + }, + qualityStats = { + { "base_cooldown_speed_+%", 0.5 }, + }, + constantStats = { + { "skill_empowers_next_x_spells_cast", 1 }, + { "pact_empower_limitation_specifier_for_stat_description", 2 }, + { "active_skill_osm_vaal_skill_soul_refund_chance_%_to_grant", 100 }, + { "active_skill_osm_vaal_skill_soul_gain_prevention_+%_final_to_grant", -50 }, + }, + stats = { + "pact_skill_grant_damage_+%_final_to_exerted_skills", + "base_deal_no_attack_damage", + "base_deal_no_spell_damage", + "base_deal_no_secondary_damage", + "cannot_cancel_skill_before_contact_point", + }, + levels = { + [1] = { 10, cooldown = 6, levelRequirement = 24, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 16, }, }, + [2] = { 11, cooldown = 6, levelRequirement = 27, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 17, }, }, + [3] = { 12, cooldown = 6, levelRequirement = 30, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 18, }, }, + [4] = { 13, cooldown = 6, levelRequirement = 33, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 19, }, }, + [5] = { 14, cooldown = 6, levelRequirement = 36, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 21, }, }, + [6] = { 15, cooldown = 6, levelRequirement = 39, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 22, }, }, + [7] = { 16, cooldown = 6, levelRequirement = 42, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 23, }, }, + [8] = { 17, cooldown = 6, levelRequirement = 45, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 24, }, }, + [9] = { 18, cooldown = 6, levelRequirement = 48, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 25, }, }, + [10] = { 19, cooldown = 6, levelRequirement = 50, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 26, }, }, + [11] = { 20, cooldown = 6, levelRequirement = 52, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 26, }, }, + [12] = { 21, cooldown = 6, levelRequirement = 54, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 27, }, }, + [13] = { 22, cooldown = 6, levelRequirement = 56, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 28, }, }, + [14] = { 23, cooldown = 6, levelRequirement = 58, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 29, }, }, + [15] = { 24, cooldown = 6, levelRequirement = 60, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 29, }, }, + [16] = { 25, cooldown = 6, levelRequirement = 62, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 30, }, }, + [17] = { 26, cooldown = 6, levelRequirement = 64, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 31, }, }, + [18] = { 27, cooldown = 6, levelRequirement = 66, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 31, }, }, + [19] = { 28, cooldown = 6, levelRequirement = 68, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 32, }, }, + [20] = { 29, cooldown = 6, levelRequirement = 70, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 33, }, }, + [21] = { 30, cooldown = 6, levelRequirement = 72, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 34, }, }, + [22] = { 31, cooldown = 6, levelRequirement = 74, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 34, }, }, + [23] = { 32, cooldown = 6, levelRequirement = 76, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 35, }, }, + [24] = { 33, cooldown = 6, levelRequirement = 78, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 36, }, }, + [25] = { 34, cooldown = 6, levelRequirement = 80, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 36, }, }, + [26] = { 35, cooldown = 6, levelRequirement = 82, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 37, }, }, + [27] = { 36, cooldown = 6, levelRequirement = 84, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 38, }, }, + [28] = { 37, cooldown = 6, levelRequirement = 86, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 39, }, }, + [29] = { 38, cooldown = 6, levelRequirement = 88, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 39, }, }, + [30] = { 39, cooldown = 6, levelRequirement = 90, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 40, }, }, + [31] = { 39, cooldown = 6, levelRequirement = 91, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 40, }, }, + [32] = { 40, cooldown = 6, levelRequirement = 92, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 41, }, }, + [33] = { 40, cooldown = 6, levelRequirement = 93, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 41, }, }, + [34] = { 41, cooldown = 6, levelRequirement = 94, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 42, }, }, + [35] = { 41, cooldown = 6, levelRequirement = 95, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 42, }, }, + [36] = { 42, cooldown = 6, levelRequirement = 96, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 42, }, }, + [37] = { 42, cooldown = 6, levelRequirement = 97, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 43, }, }, + [38] = { 43, cooldown = 6, levelRequirement = 98, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 43, }, }, + [39] = { 43, cooldown = 6, levelRequirement = 99, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 43, }, }, + [40] = { 44, cooldown = 6, levelRequirement = 100, storedUses = 1, statInterpolation = { 1, }, cost = { Mana = 44, }, }, + }, +} +skills["PactOfLycia"] = { + name = "Pact of Lycia", + baseTypeName = "Pact of Lycia", + flavourText = {"Call upon Lycia, conduit of the Scourge. She forfeit", "her soul for the power to condemn lies told by bones.", }, + color = 4, + description = "Cast a pact, Empowering the next channelling spells you cast yourself but burdening you with an Affliction. Empowered spells deal more damage and periodically trigger lightning bolts while channelling.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Pact] = true, [SkillType.Buff] = true, [SkillType.Cooldown] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.Triggerable] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0.8, + baseFlags = { + }, + constantStats = { + { "skill_empowers_next_x_spells_cast", 3 }, + { "pact_empower_limitation_specifier_for_stat_description", 3 }, + { "pact_skill_grant_damage_+%_final_to_exerted_skills", 40 }, + }, + stats = { + "base_deal_no_attack_damage", + "base_deal_no_spell_damage", + "base_deal_no_secondary_damage", + "cannot_cancel_skill_before_contact_point", + }, + levels = { + [1] = { cooldown = 4, levelRequirement = 24, storedUses = 1, cost = { Mana = 16, }, }, + [2] = { cooldown = 4, levelRequirement = 27, storedUses = 1, cost = { Mana = 17, }, }, + [3] = { cooldown = 4, levelRequirement = 30, storedUses = 1, cost = { Mana = 18, }, }, + [4] = { cooldown = 4, levelRequirement = 33, storedUses = 1, cost = { Mana = 19, }, }, + [5] = { cooldown = 4, levelRequirement = 36, storedUses = 1, cost = { Mana = 21, }, }, + [6] = { cooldown = 4, levelRequirement = 39, storedUses = 1, cost = { Mana = 22, }, }, + [7] = { cooldown = 4, levelRequirement = 42, storedUses = 1, cost = { Mana = 23, }, }, + [8] = { cooldown = 4, levelRequirement = 45, storedUses = 1, cost = { Mana = 24, }, }, + [9] = { cooldown = 4, levelRequirement = 48, storedUses = 1, cost = { Mana = 25, }, }, + [10] = { cooldown = 4, levelRequirement = 50, storedUses = 1, cost = { Mana = 26, }, }, + [11] = { cooldown = 4, levelRequirement = 52, storedUses = 1, cost = { Mana = 26, }, }, + [12] = { cooldown = 4, levelRequirement = 54, storedUses = 1, cost = { Mana = 27, }, }, + [13] = { cooldown = 4, levelRequirement = 56, storedUses = 1, cost = { Mana = 28, }, }, + [14] = { cooldown = 4, levelRequirement = 58, storedUses = 1, cost = { Mana = 29, }, }, + [15] = { cooldown = 4, levelRequirement = 60, storedUses = 1, cost = { Mana = 29, }, }, + [16] = { cooldown = 4, levelRequirement = 62, storedUses = 1, cost = { Mana = 30, }, }, + [17] = { cooldown = 4, levelRequirement = 64, storedUses = 1, cost = { Mana = 31, }, }, + [18] = { cooldown = 4, levelRequirement = 66, storedUses = 1, cost = { Mana = 31, }, }, + [19] = { cooldown = 4, levelRequirement = 68, storedUses = 1, cost = { Mana = 32, }, }, + [20] = { cooldown = 4, levelRequirement = 70, storedUses = 1, cost = { Mana = 33, }, }, + [21] = { cooldown = 4, levelRequirement = 72, storedUses = 1, cost = { Mana = 34, }, }, + [22] = { cooldown = 4, levelRequirement = 74, storedUses = 1, cost = { Mana = 34, }, }, + [23] = { cooldown = 4, levelRequirement = 76, storedUses = 1, cost = { Mana = 35, }, }, + [24] = { cooldown = 4, levelRequirement = 78, storedUses = 1, cost = { Mana = 36, }, }, + [25] = { cooldown = 4, levelRequirement = 80, storedUses = 1, cost = { Mana = 36, }, }, + [26] = { cooldown = 4, levelRequirement = 82, storedUses = 1, cost = { Mana = 37, }, }, + [27] = { cooldown = 4, levelRequirement = 84, storedUses = 1, cost = { Mana = 38, }, }, + [28] = { cooldown = 4, levelRequirement = 86, storedUses = 1, cost = { Mana = 39, }, }, + [29] = { cooldown = 4, levelRequirement = 88, storedUses = 1, cost = { Mana = 39, }, }, + [30] = { cooldown = 4, levelRequirement = 90, storedUses = 1, cost = { Mana = 40, }, }, + [31] = { cooldown = 4, levelRequirement = 91, storedUses = 1, cost = { Mana = 40, }, }, + [32] = { cooldown = 4, levelRequirement = 92, storedUses = 1, cost = { Mana = 41, }, }, + [33] = { cooldown = 4, levelRequirement = 93, storedUses = 1, cost = { Mana = 41, }, }, + [34] = { cooldown = 4, levelRequirement = 94, storedUses = 1, cost = { Mana = 42, }, }, + [35] = { cooldown = 4, levelRequirement = 95, storedUses = 1, cost = { Mana = 42, }, }, + [36] = { cooldown = 4, levelRequirement = 96, storedUses = 1, cost = { Mana = 42, }, }, + [37] = { cooldown = 4, levelRequirement = 97, storedUses = 1, cost = { Mana = 43, }, }, + [38] = { cooldown = 4, levelRequirement = 98, storedUses = 1, cost = { Mana = 43, }, }, + [39] = { cooldown = 4, levelRequirement = 99, storedUses = 1, cost = { Mana = 43, }, }, + [40] = { cooldown = 4, levelRequirement = 100, storedUses = 1, cost = { Mana = 44, }, }, + }, +} +skills["TriggeredHeavensScourge"] = { + name = "Heaven's Scourge", + baseTypeName = "Heaven's Scourge", + flavourText = {"Call upon Lycia, conduit of the Scourge. She forfeit", "her soul for the power to condemn lies told by bones.", }, + color = 4, + baseEffectiveness = 2.2999999523163, + incrementalEffectiveness = 0.044100001454353, + description = "A bolt of Beidat's lightning strikes an area, dealing lightning damage.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggered] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AreaSpell] = true, [SkillType.Triggerable] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + }, + qualityStats = { + { "active_skill_base_area_of_effect_radius", 0.1 }, + }, + constantStats = { + { "heavens_scourge_channeling_trigger_interval_ms", 300 }, + { "heavens_scourge_unwinding_trigger_interval_ms", 50 }, + { "heavens_scourge_max_channelling_lightning_strikes", 10 }, + { "active_skill_base_area_of_effect_radius", 12 }, + { "active_skill_base_auto_targetting_radius", 70 }, + }, + stats = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + "is_area_damage", + "spell_uncastable_if_triggerable", + "skill_triggered_by_pact_of_lycia", + }, + notMinionStat = { + "spell_minimum_base_lightning_damage", + "spell_maximum_base_lightning_damage", + }, + levels = { + [1] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 24, statInterpolation = { 3, 3, }, }, + [2] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 27, statInterpolation = { 3, 3, }, }, + [3] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 30, statInterpolation = { 3, 3, }, }, + [4] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 33, statInterpolation = { 3, 3, }, }, + [5] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 36, statInterpolation = { 3, 3, }, }, + [6] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 39, statInterpolation = { 3, 3, }, }, + [7] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 42, statInterpolation = { 3, 3, }, }, + [8] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 45, statInterpolation = { 3, 3, }, }, + [9] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 48, statInterpolation = { 3, 3, }, }, + [10] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 50, statInterpolation = { 3, 3, }, }, + [11] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 52, statInterpolation = { 3, 3, }, }, + [12] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 54, statInterpolation = { 3, 3, }, }, + [13] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, }, }, + [14] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 58, statInterpolation = { 3, 3, }, }, + [15] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 60, statInterpolation = { 3, 3, }, }, + [16] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 62, statInterpolation = { 3, 3, }, }, + [17] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 64, statInterpolation = { 3, 3, }, }, + [18] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 66, statInterpolation = { 3, 3, }, }, + [19] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 68, statInterpolation = { 3, 3, }, }, + [20] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 70, statInterpolation = { 3, 3, }, }, + [21] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 72, statInterpolation = { 3, 3, }, }, + [22] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 74, statInterpolation = { 3, 3, }, }, + [23] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 76, statInterpolation = { 3, 3, }, }, + [24] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 78, statInterpolation = { 3, 3, }, }, + [25] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 80, statInterpolation = { 3, 3, }, }, + [26] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 82, statInterpolation = { 3, 3, }, }, + [27] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 84, statInterpolation = { 3, 3, }, }, + [28] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 86, statInterpolation = { 3, 3, }, }, + [29] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 88, statInterpolation = { 3, 3, }, }, + [30] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 90, statInterpolation = { 3, 3, }, }, + [31] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 91, statInterpolation = { 3, 3, }, }, + [32] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 92, statInterpolation = { 3, 3, }, }, + [33] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 93, statInterpolation = { 3, 3, }, }, + [34] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 94, statInterpolation = { 3, 3, }, }, + [35] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 95, statInterpolation = { 3, 3, }, }, + [36] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 96, statInterpolation = { 3, 3, }, }, + [37] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 97, statInterpolation = { 3, 3, }, }, + [38] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 98, statInterpolation = { 3, 3, }, }, + [39] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 99, statInterpolation = { 3, 3, }, }, + [40] = { 0.10000000149012, 1.8999999761581, critChance = 7.5, damageEffectiveness = 2.3, levelRequirement = 100, statInterpolation = { 3, 3, }, }, + }, +} skills["Portal"] = { name = "Portal", baseTypeName = "Portal", @@ -3091,6 +3519,7 @@ skills["ShieldShatter"] = { }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 1, 2, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 12, 16, levelRequirement = 55, statInterpolation = { 3, 3, 1, 1, }, }, [20] = { 0.80000001192093, 1.2000000476837, 15, 23, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, }, }, }, } @@ -3301,8 +3730,8 @@ skills["StormCascadeTriggered"] = { name = "Storm Cascade", hidden = true, color = 3, - baseEffectiveness = 1.7555999755859, - incrementalEffectiveness = 0.034600000828505, + baseEffectiveness = 1.3500000238419, + incrementalEffectiveness = 0.047400001436472, description = "Lightning crackles in a series of small bursts, each damaging enemies caught in the area.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.Physical] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -3313,7 +3742,7 @@ skills["StormCascadeTriggered"] = { area = true, }, constantStats = { - { "upheaval_number_of_spikes", 5 }, + { "upheaval_number_of_spikes", 6 }, { "skill_physical_damage_%_to_convert_to_lightning", 100 }, { "active_skill_base_radius_+", 3 }, { "cast_on_attack_use_%", 100 }, @@ -3329,36 +3758,36 @@ skills["StormCascadeTriggered"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, }, }, - [2] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, }, }, - [3] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, }, }, - [4] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, }, }, - [5] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, }, }, - [6] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, }, }, - [7] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, }, }, - [8] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, }, }, - [9] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, }, }, - [10] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, }, }, - [11] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, }, }, - [12] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, }, }, - [13] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, }, }, - [14] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, }, }, - [15] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, }, }, - [16] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, }, }, - [17] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, }, }, - [18] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, }, }, - [19] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, }, }, - [20] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, }, }, - [21] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, }, }, - [22] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, }, }, - [23] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, }, }, - [24] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, }, }, - [25] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, }, }, - [26] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, }, }, - [27] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, }, }, - [28] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, }, }, - [29] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, }, }, - [30] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 5, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, }, }, + [1] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, }, }, + [5] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, }, }, + [6] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, }, }, + [7] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, }, }, + [8] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, }, }, + [9] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, }, }, + [10] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, }, }, + [11] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, }, }, + [12] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, }, }, + [13] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, }, }, + [14] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, }, }, + [15] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, }, }, + [16] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, }, }, + [17] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, }, }, + [18] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, }, }, + [19] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, }, }, + [20] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, }, }, + [21] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, }, }, + [22] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, }, }, + [23] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, }, }, + [24] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, }, }, + [25] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, }, }, + [26] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, }, }, + [27] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, }, }, + [28] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, }, }, + [29] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, }, }, + [30] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -80, cooldown = 0.25, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, }, }, }, } skills["AtziriUniqueStaffStormCall"] = { @@ -4071,6 +4500,7 @@ skills["SummonSentinelOfRadiance"] = { stats = { "radiant_sentinel_minion_burning_effect_radius", "radiant_sentinel_minion_fire_%_of_life_to_deal_nearby_per_minute", + "infinite_minion_duration", }, levels = { [20] = { 40, 1200, damageEffectiveness = 2, levelRequirement = 12, statInterpolation = { 1, 1, }, cost = { Mana = 40, }, }, diff --git a/src/Data/Skills/spectre.lua b/src/Data/Skills/spectre.lua index 2428c4a053..320f36d7ba 100644 --- a/src/Data/Skills/spectre.lua +++ b/src/Data/Skills/spectre.lua @@ -1118,7 +1118,7 @@ skills["HalfSkeletonPuncture"] = { color = 2, baseEffectiveness = 0, description = "Punctures enemies, causing a bleeding debuff, which will be affected by modifiers to skill duration. Puncture works with bows, daggers, claws or swords.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.DamageOverTime] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, }, weaponTypes = { ["Bow"] = true, ["Claw"] = true, @@ -2578,7 +2578,7 @@ skills["MonsterPuncture"] = { color = 2, baseEffectiveness = 0, description = "Punctures enemies, causing a bleeding debuff, which will be affected by modifiers to skill duration. Puncture works with bows, daggers, claws or swords.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.DamageOverTime] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.Triggerable] = true, [SkillType.Physical] = true, }, weaponTypes = { ["Bow"] = true, ["Claw"] = true, @@ -2786,7 +2786,7 @@ skills["MonsterViperStrike"] = { baseEffectiveness = 0.64999997615814, incrementalEffectiveness = 0.025499999523163, description = "Hits enemies, converting some of your physical damage to chaos damage and inflicting poison which will be affected by modifiers to skill duration. If dual wielding, will strike with both weapons. Requires a claw, dagger or sword.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Chaos] = true, }, weaponTypes = { ["Claw"] = true, ["Dagger"] = true, @@ -3412,7 +3412,7 @@ skills["SkeletonBlackAbyssBoneLance"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.035000000149012, description = "Fires a projectile that will pierce through enemies to impact the ground at the targeted location, creating a Bone Archer corpse where it lands.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Trappable] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Multicastable] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.CreatesCorpse] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -6448,7 +6448,7 @@ skills["HellionRallyingCry"] = { name = "Rallying Cry", hidden = true, color = 1, - description = "[DNT] Unused (replaced)", + description = "DNT Unused (replaced)", skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, [SkillType.Cooldown] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, @@ -9893,7 +9893,7 @@ skills["MonsterViperStrikeAtAnimationSpeed"] = { baseEffectiveness = 0.64999997615814, incrementalEffectiveness = 0.025499999523163, description = "Hits enemies, converting some of your physical damage to chaos damage and inflicting poison which will be affected by modifiers to skill duration. If dual wielding, will strike with both weapons. Requires a claw, dagger or sword.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.DamageOverTime] = true, [SkillType.Chaos] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Chaos] = true, }, weaponTypes = { ["Claw"] = true, ["Dagger"] = true, @@ -10503,7 +10503,7 @@ skills["AzmeriOversoulColdSnapTriggered"] = { baseEffectiveness = 2.75, incrementalEffectiveness = 0.046000000089407, description = "Creates a sudden burst of cold in a targeted area, damaging enemies. Also creates an expanding area which is filled with chilled ground, and deals cold damage over time to enemies. Enemies that die while in the area have a chance to grant Frenzy Charges. The cooldown can be bypassed by expending a Frenzy Charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Cascadable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Cooldown] = true, [SkillType.DamageOverTime] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { diff --git a/src/Data/Skills/sup_dex.lua b/src/Data/Skills/sup_dex.lua index 39976cdd34..bc5e3edcd1 100644 --- a/src/Data/Skills/sup_dex.lua +++ b/src/Data/Skills/sup_dex.lua @@ -334,9 +334,9 @@ skills["SupportBarrage"] = { { "projectile_damage_+%", 0.5 }, }, constantStats = { - { "number_of_additional_projectiles", 3 }, - { "support_barrage_attack_time_+%_per_projectile_fired", 5 }, - { "support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired", 5 }, + { "number_of_additional_projectiles", 4 }, + { "support_barrage_attack_time_+%_per_projectile_fired", 10 }, + { "support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired", 10 }, }, stats = { "support_barrage_damage_+%_final", @@ -344,46 +344,46 @@ skills["SupportBarrage"] = { "skill_can_only_use_non_melee_weapons", }, levels = { - [1] = { -68, PvPDamageMultiplier = -20, levelRequirement = 38, manaMultiplier = 50, statInterpolation = { 1, }, }, - [2] = { -68, PvPDamageMultiplier = -20, levelRequirement = 40, manaMultiplier = 50, statInterpolation = { 1, }, }, - [3] = { -67, PvPDamageMultiplier = -20, levelRequirement = 42, manaMultiplier = 50, statInterpolation = { 1, }, }, - [4] = { -67, PvPDamageMultiplier = -20, levelRequirement = 44, manaMultiplier = 50, statInterpolation = { 1, }, }, - [5] = { -67, PvPDamageMultiplier = -20, levelRequirement = 46, manaMultiplier = 50, statInterpolation = { 1, }, }, - [6] = { -66, PvPDamageMultiplier = -20, levelRequirement = 48, manaMultiplier = 50, statInterpolation = { 1, }, }, - [7] = { -66, PvPDamageMultiplier = -20, levelRequirement = 50, manaMultiplier = 50, statInterpolation = { 1, }, }, - [8] = { -66, PvPDamageMultiplier = -20, levelRequirement = 52, manaMultiplier = 50, statInterpolation = { 1, }, }, - [9] = { -65, PvPDamageMultiplier = -20, levelRequirement = 54, manaMultiplier = 50, statInterpolation = { 1, }, }, - [10] = { -65, PvPDamageMultiplier = -20, levelRequirement = 56, manaMultiplier = 50, statInterpolation = { 1, }, }, - [11] = { -65, PvPDamageMultiplier = -20, levelRequirement = 58, manaMultiplier = 50, statInterpolation = { 1, }, }, - [12] = { -65, PvPDamageMultiplier = -20, levelRequirement = 60, manaMultiplier = 50, statInterpolation = { 1, }, }, - [13] = { -64, PvPDamageMultiplier = -20, levelRequirement = 62, manaMultiplier = 50, statInterpolation = { 1, }, }, - [14] = { -64, PvPDamageMultiplier = -20, levelRequirement = 64, manaMultiplier = 50, statInterpolation = { 1, }, }, - [15] = { -64, PvPDamageMultiplier = -20, levelRequirement = 65, manaMultiplier = 50, statInterpolation = { 1, }, }, - [16] = { -63, PvPDamageMultiplier = -20, levelRequirement = 66, manaMultiplier = 50, statInterpolation = { 1, }, }, - [17] = { -63, PvPDamageMultiplier = -20, levelRequirement = 67, manaMultiplier = 50, statInterpolation = { 1, }, }, - [18] = { -63, PvPDamageMultiplier = -20, levelRequirement = 68, manaMultiplier = 50, statInterpolation = { 1, }, }, - [19] = { -62, PvPDamageMultiplier = -20, levelRequirement = 69, manaMultiplier = 50, statInterpolation = { 1, }, }, - [20] = { -62, PvPDamageMultiplier = -20, levelRequirement = 70, manaMultiplier = 50, statInterpolation = { 1, }, }, - [21] = { -62, PvPDamageMultiplier = -20, levelRequirement = 72, manaMultiplier = 50, statInterpolation = { 1, }, }, - [22] = { -61, PvPDamageMultiplier = -20, levelRequirement = 74, manaMultiplier = 50, statInterpolation = { 1, }, }, - [23] = { -61, PvPDamageMultiplier = -20, levelRequirement = 76, manaMultiplier = 50, statInterpolation = { 1, }, }, - [24] = { -61, PvPDamageMultiplier = -20, levelRequirement = 78, manaMultiplier = 50, statInterpolation = { 1, }, }, - [25] = { -60, PvPDamageMultiplier = -20, levelRequirement = 80, manaMultiplier = 50, statInterpolation = { 1, }, }, - [26] = { -60, PvPDamageMultiplier = -20, levelRequirement = 82, manaMultiplier = 50, statInterpolation = { 1, }, }, - [27] = { -60, PvPDamageMultiplier = -20, levelRequirement = 84, manaMultiplier = 50, statInterpolation = { 1, }, }, - [28] = { -59, PvPDamageMultiplier = -20, levelRequirement = 86, manaMultiplier = 50, statInterpolation = { 1, }, }, - [29] = { -59, PvPDamageMultiplier = -20, levelRequirement = 88, manaMultiplier = 50, statInterpolation = { 1, }, }, - [30] = { -59, PvPDamageMultiplier = -20, levelRequirement = 90, manaMultiplier = 50, statInterpolation = { 1, }, }, - [31] = { -59, PvPDamageMultiplier = -20, levelRequirement = 91, manaMultiplier = 50, statInterpolation = { 1, }, }, - [32] = { -58, PvPDamageMultiplier = -20, levelRequirement = 92, manaMultiplier = 50, statInterpolation = { 1, }, }, - [33] = { -58, PvPDamageMultiplier = -20, levelRequirement = 93, manaMultiplier = 50, statInterpolation = { 1, }, }, - [34] = { -58, PvPDamageMultiplier = -20, levelRequirement = 94, manaMultiplier = 50, statInterpolation = { 1, }, }, - [35] = { -57, PvPDamageMultiplier = -20, levelRequirement = 95, manaMultiplier = 50, statInterpolation = { 1, }, }, - [36] = { -57, PvPDamageMultiplier = -20, levelRequirement = 96, manaMultiplier = 50, statInterpolation = { 1, }, }, - [37] = { -57, PvPDamageMultiplier = -20, levelRequirement = 97, manaMultiplier = 50, statInterpolation = { 1, }, }, - [38] = { -56, PvPDamageMultiplier = -20, levelRequirement = 98, manaMultiplier = 50, statInterpolation = { 1, }, }, - [39] = { -56, PvPDamageMultiplier = -20, levelRequirement = 99, manaMultiplier = 50, statInterpolation = { 1, }, }, - [40] = { -56, PvPDamageMultiplier = -20, levelRequirement = 100, manaMultiplier = 50, statInterpolation = { 1, }, }, + [1] = { -50, PvPDamageMultiplier = -20, levelRequirement = 38, manaMultiplier = 100, statInterpolation = { 1, }, }, + [2] = { -50, PvPDamageMultiplier = -20, levelRequirement = 40, manaMultiplier = 100, statInterpolation = { 1, }, }, + [3] = { -50, PvPDamageMultiplier = -20, levelRequirement = 42, manaMultiplier = 100, statInterpolation = { 1, }, }, + [4] = { -49, PvPDamageMultiplier = -20, levelRequirement = 44, manaMultiplier = 100, statInterpolation = { 1, }, }, + [5] = { -49, PvPDamageMultiplier = -20, levelRequirement = 46, manaMultiplier = 100, statInterpolation = { 1, }, }, + [6] = { -49, PvPDamageMultiplier = -20, levelRequirement = 48, manaMultiplier = 100, statInterpolation = { 1, }, }, + [7] = { -48, PvPDamageMultiplier = -20, levelRequirement = 50, manaMultiplier = 100, statInterpolation = { 1, }, }, + [8] = { -48, PvPDamageMultiplier = -20, levelRequirement = 52, manaMultiplier = 100, statInterpolation = { 1, }, }, + [9] = { -48, PvPDamageMultiplier = -20, levelRequirement = 54, manaMultiplier = 100, statInterpolation = { 1, }, }, + [10] = { -47, PvPDamageMultiplier = -20, levelRequirement = 56, manaMultiplier = 100, statInterpolation = { 1, }, }, + [11] = { -47, PvPDamageMultiplier = -20, levelRequirement = 58, manaMultiplier = 100, statInterpolation = { 1, }, }, + [12] = { -47, PvPDamageMultiplier = -20, levelRequirement = 60, manaMultiplier = 100, statInterpolation = { 1, }, }, + [13] = { -46, PvPDamageMultiplier = -20, levelRequirement = 62, manaMultiplier = 100, statInterpolation = { 1, }, }, + [14] = { -46, PvPDamageMultiplier = -20, levelRequirement = 64, manaMultiplier = 100, statInterpolation = { 1, }, }, + [15] = { -46, PvPDamageMultiplier = -20, levelRequirement = 65, manaMultiplier = 100, statInterpolation = { 1, }, }, + [16] = { -45, PvPDamageMultiplier = -20, levelRequirement = 66, manaMultiplier = 100, statInterpolation = { 1, }, }, + [17] = { -45, PvPDamageMultiplier = -20, levelRequirement = 67, manaMultiplier = 100, statInterpolation = { 1, }, }, + [18] = { -45, PvPDamageMultiplier = -20, levelRequirement = 68, manaMultiplier = 100, statInterpolation = { 1, }, }, + [19] = { -44, PvPDamageMultiplier = -20, levelRequirement = 69, manaMultiplier = 100, statInterpolation = { 1, }, }, + [20] = { -44, PvPDamageMultiplier = -20, levelRequirement = 70, manaMultiplier = 100, statInterpolation = { 1, }, }, + [21] = { -44, PvPDamageMultiplier = -20, levelRequirement = 72, manaMultiplier = 100, statInterpolation = { 1, }, }, + [22] = { -43, PvPDamageMultiplier = -20, levelRequirement = 74, manaMultiplier = 100, statInterpolation = { 1, }, }, + [23] = { -43, PvPDamageMultiplier = -20, levelRequirement = 76, manaMultiplier = 100, statInterpolation = { 1, }, }, + [24] = { -43, PvPDamageMultiplier = -20, levelRequirement = 78, manaMultiplier = 100, statInterpolation = { 1, }, }, + [25] = { -42, PvPDamageMultiplier = -20, levelRequirement = 80, manaMultiplier = 100, statInterpolation = { 1, }, }, + [26] = { -42, PvPDamageMultiplier = -20, levelRequirement = 82, manaMultiplier = 100, statInterpolation = { 1, }, }, + [27] = { -42, PvPDamageMultiplier = -20, levelRequirement = 84, manaMultiplier = 100, statInterpolation = { 1, }, }, + [28] = { -41, PvPDamageMultiplier = -20, levelRequirement = 86, manaMultiplier = 100, statInterpolation = { 1, }, }, + [29] = { -41, PvPDamageMultiplier = -20, levelRequirement = 88, manaMultiplier = 100, statInterpolation = { 1, }, }, + [30] = { -41, PvPDamageMultiplier = -20, levelRequirement = 90, manaMultiplier = 100, statInterpolation = { 1, }, }, + [31] = { -41, PvPDamageMultiplier = -20, levelRequirement = 91, manaMultiplier = 100, statInterpolation = { 1, }, }, + [32] = { -40, PvPDamageMultiplier = -20, levelRequirement = 92, manaMultiplier = 100, statInterpolation = { 1, }, }, + [33] = { -40, PvPDamageMultiplier = -20, levelRequirement = 93, manaMultiplier = 100, statInterpolation = { 1, }, }, + [34] = { -40, PvPDamageMultiplier = -20, levelRequirement = 94, manaMultiplier = 100, statInterpolation = { 1, }, }, + [35] = { -40, PvPDamageMultiplier = -20, levelRequirement = 95, manaMultiplier = 100, statInterpolation = { 1, }, }, + [36] = { -40, PvPDamageMultiplier = -20, levelRequirement = 96, manaMultiplier = 100, statInterpolation = { 1, }, }, + [37] = { -40, PvPDamageMultiplier = -20, levelRequirement = 97, manaMultiplier = 100, statInterpolation = { 1, }, }, + [38] = { -39, PvPDamageMultiplier = -20, levelRequirement = 98, manaMultiplier = 100, statInterpolation = { 1, }, }, + [39] = { -39, PvPDamageMultiplier = -20, levelRequirement = 99, manaMultiplier = 100, statInterpolation = { 1, }, }, + [40] = { -39, PvPDamageMultiplier = -20, levelRequirement = 100, manaMultiplier = 100, statInterpolation = { 1, }, }, }, } skills["SupportBlind"] = { @@ -642,7 +642,7 @@ skills["SupportCastOnCritTriggered"] = { [32] = { -4, cooldown = 0.15, levelRequirement = 92, manaMultiplier = 20, storedUses = 1, statInterpolation = { 1, }, }, [33] = { -4, cooldown = 0.15, levelRequirement = 93, manaMultiplier = 20, storedUses = 1, statInterpolation = { 1, }, }, [34] = { -4, cooldown = 0.15, levelRequirement = 94, manaMultiplier = 20, storedUses = 1, statInterpolation = { 1, }, }, - [35] = { -3, cooldown = 0.15, levelRequirement = 95, manaMultiplier = 20, storedUses = 1, statInterpolation = { 1, }, }, + [35] = { -4, cooldown = 0.15, levelRequirement = 95, manaMultiplier = 20, storedUses = 1, statInterpolation = { 1, }, }, [36] = { -3, cooldown = 0.15, levelRequirement = 96, manaMultiplier = 20, storedUses = 1, statInterpolation = { 1, }, }, [37] = { -3, cooldown = 0.15, levelRequirement = 97, manaMultiplier = 20, storedUses = 1, statInterpolation = { 1, }, }, [38] = { -3, cooldown = 0.15, levelRequirement = 98, manaMultiplier = 20, storedUses = 1, statInterpolation = { 1, }, }, @@ -1421,8 +1421,8 @@ skills["SupportCompanionship"] = { excludeSkillTypes = { SkillType.MinionsAreUndamagable, SkillType.Triggered, }, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_companionship_minion_maximum_life_+%_final_if_at_most_one_minion"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }, 0, 0, { type = "Condition", var = "OnlyMinion" }), + ["support_companionship_minion_damage_taken_+%_final_if_at_most_one_minion"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }, 0, 0, { type = "Condition", var = "OnlyMinion" }), }, ["damage_removed_from_minions_before_life_or_es_%_if_only_one_minion"] = { mod("takenFromMinionBeforeYou", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }, { type = "Condition", var = "OnlyMinion" }), @@ -1435,24 +1435,24 @@ skills["SupportCompanionship"] = { { "damage_removed_from_minions_before_life_or_es_%_if_only_one_minion", 15 }, }, stats = { - "support_companionship_minion_maximum_life_+%_final_if_at_most_one_minion", + "support_companionship_minion_damage_taken_+%_final_if_at_most_one_minion", }, levels = { - [1] = { 40, levelRequirement = 72, manaMultiplier = 40, statInterpolation = { 1, }, }, - [2] = { 50, levelRequirement = 74, manaMultiplier = 40, statInterpolation = { 1, }, }, - [3] = { 60, levelRequirement = 76, manaMultiplier = 40, statInterpolation = { 1, }, }, - [4] = { 70, levelRequirement = 78, manaMultiplier = 40, statInterpolation = { 1, }, }, - [5] = { 75, levelRequirement = 80, manaMultiplier = 40, statInterpolation = { 1, }, }, - [6] = { 80, levelRequirement = 82, manaMultiplier = 40, statInterpolation = { 1, }, }, - [7] = { 85, levelRequirement = 84, manaMultiplier = 40, statInterpolation = { 1, }, }, - [8] = { 90, levelRequirement = 86, manaMultiplier = 40, statInterpolation = { 1, }, }, - [9] = { 95, levelRequirement = 88, manaMultiplier = 40, statInterpolation = { 1, }, }, - [10] = { 100, levelRequirement = 90, manaMultiplier = 40, statInterpolation = { 1, }, }, - [11] = { 105, levelRequirement = 91, manaMultiplier = 40, statInterpolation = { 1, }, }, - [12] = { 110, levelRequirement = 92, manaMultiplier = 40, statInterpolation = { 1, }, }, - [13] = { 115, levelRequirement = 93, manaMultiplier = 40, statInterpolation = { 1, }, }, - [14] = { 120, levelRequirement = 94, manaMultiplier = 40, statInterpolation = { 1, }, }, - [15] = { 125, levelRequirement = 95, manaMultiplier = 40, statInterpolation = { 1, }, }, + [1] = { -24, levelRequirement = 72, manaMultiplier = 40, statInterpolation = { 1, }, }, + [2] = { -26, levelRequirement = 74, manaMultiplier = 40, statInterpolation = { 1, }, }, + [3] = { -28, levelRequirement = 76, manaMultiplier = 40, statInterpolation = { 1, }, }, + [4] = { -30, levelRequirement = 78, manaMultiplier = 40, statInterpolation = { 1, }, }, + [5] = { -31, levelRequirement = 80, manaMultiplier = 40, statInterpolation = { 1, }, }, + [6] = { -32, levelRequirement = 82, manaMultiplier = 40, statInterpolation = { 1, }, }, + [7] = { -33, levelRequirement = 84, manaMultiplier = 40, statInterpolation = { 1, }, }, + [8] = { -34, levelRequirement = 86, manaMultiplier = 40, statInterpolation = { 1, }, }, + [9] = { -35, levelRequirement = 88, manaMultiplier = 40, statInterpolation = { 1, }, }, + [10] = { -36, levelRequirement = 90, manaMultiplier = 40, statInterpolation = { 1, }, }, + [11] = { -37, levelRequirement = 91, manaMultiplier = 40, statInterpolation = { 1, }, }, + [12] = { -38, levelRequirement = 92, manaMultiplier = 40, statInterpolation = { 1, }, }, + [13] = { -39, levelRequirement = 93, manaMultiplier = 40, statInterpolation = { 1, }, }, + [14] = { -40, levelRequirement = 94, manaMultiplier = 40, statInterpolation = { 1, }, }, + [15] = { -41, levelRequirement = 95, manaMultiplier = 40, statInterpolation = { 1, }, }, }, } skills["SupportCriticalStrikeAffliction"] = { diff --git a/src/Data/Skills/sup_int.lua b/src/Data/Skills/sup_int.lua index 75b0920221..6b41387e98 100644 --- a/src/Data/Skills/sup_int.lua +++ b/src/Data/Skills/sup_int.lua @@ -320,46 +320,46 @@ skills["SupportArchmage"] = { "archmage_gain_lightning_damage_%_of_max_unreserved_mana", }, levels = { - [1] = { 10, levelRequirement = 31, statInterpolation = { 1, }, }, - [2] = { 10, levelRequirement = 34, statInterpolation = { 1, }, }, - [3] = { 10, levelRequirement = 36, statInterpolation = { 1, }, }, - [4] = { 11, levelRequirement = 38, statInterpolation = { 1, }, }, - [5] = { 11, levelRequirement = 40, statInterpolation = { 1, }, }, - [6] = { 11, levelRequirement = 42, statInterpolation = { 1, }, }, - [7] = { 12, levelRequirement = 44, statInterpolation = { 1, }, }, - [8] = { 12, levelRequirement = 46, statInterpolation = { 1, }, }, - [9] = { 12, levelRequirement = 48, statInterpolation = { 1, }, }, - [10] = { 13, levelRequirement = 50, statInterpolation = { 1, }, }, - [11] = { 13, levelRequirement = 52, statInterpolation = { 1, }, }, - [12] = { 13, levelRequirement = 54, statInterpolation = { 1, }, }, - [13] = { 14, levelRequirement = 56, statInterpolation = { 1, }, }, - [14] = { 14, levelRequirement = 58, statInterpolation = { 1, }, }, - [15] = { 14, levelRequirement = 60, statInterpolation = { 1, }, }, - [16] = { 15, levelRequirement = 62, statInterpolation = { 1, }, }, - [17] = { 15, levelRequirement = 64, statInterpolation = { 1, }, }, - [18] = { 15, levelRequirement = 66, statInterpolation = { 1, }, }, - [19] = { 16, levelRequirement = 68, statInterpolation = { 1, }, }, - [20] = { 16, levelRequirement = 70, statInterpolation = { 1, }, }, - [21] = { 16, levelRequirement = 72, statInterpolation = { 1, }, }, - [22] = { 17, levelRequirement = 74, statInterpolation = { 1, }, }, - [23] = { 17, levelRequirement = 76, statInterpolation = { 1, }, }, - [24] = { 17, levelRequirement = 78, statInterpolation = { 1, }, }, - [25] = { 18, levelRequirement = 80, statInterpolation = { 1, }, }, - [26] = { 18, levelRequirement = 82, statInterpolation = { 1, }, }, - [27] = { 18, levelRequirement = 84, statInterpolation = { 1, }, }, - [28] = { 19, levelRequirement = 86, statInterpolation = { 1, }, }, - [29] = { 19, levelRequirement = 88, statInterpolation = { 1, }, }, - [30] = { 19, levelRequirement = 90, statInterpolation = { 1, }, }, - [31] = { 19, levelRequirement = 91, statInterpolation = { 1, }, }, - [32] = { 20, levelRequirement = 92, statInterpolation = { 1, }, }, - [33] = { 20, levelRequirement = 93, statInterpolation = { 1, }, }, - [34] = { 20, levelRequirement = 94, statInterpolation = { 1, }, }, - [35] = { 20, levelRequirement = 95, statInterpolation = { 1, }, }, - [36] = { 20, levelRequirement = 96, statInterpolation = { 1, }, }, - [37] = { 20, levelRequirement = 97, statInterpolation = { 1, }, }, - [38] = { 21, levelRequirement = 98, statInterpolation = { 1, }, }, - [39] = { 21, levelRequirement = 99, statInterpolation = { 1, }, }, - [40] = { 21, levelRequirement = 100, statInterpolation = { 1, }, }, + [1] = { 8, levelRequirement = 31, statInterpolation = { 1, }, }, + [2] = { 8, levelRequirement = 34, statInterpolation = { 1, }, }, + [3] = { 9, levelRequirement = 36, statInterpolation = { 1, }, }, + [4] = { 9, levelRequirement = 38, statInterpolation = { 1, }, }, + [5] = { 9, levelRequirement = 40, statInterpolation = { 1, }, }, + [6] = { 10, levelRequirement = 42, statInterpolation = { 1, }, }, + [7] = { 10, levelRequirement = 44, statInterpolation = { 1, }, }, + [8] = { 10, levelRequirement = 46, statInterpolation = { 1, }, }, + [9] = { 11, levelRequirement = 48, statInterpolation = { 1, }, }, + [10] = { 11, levelRequirement = 50, statInterpolation = { 1, }, }, + [11] = { 11, levelRequirement = 52, statInterpolation = { 1, }, }, + [12] = { 12, levelRequirement = 54, statInterpolation = { 1, }, }, + [13] = { 12, levelRequirement = 56, statInterpolation = { 1, }, }, + [14] = { 12, levelRequirement = 58, statInterpolation = { 1, }, }, + [15] = { 13, levelRequirement = 60, statInterpolation = { 1, }, }, + [16] = { 13, levelRequirement = 62, statInterpolation = { 1, }, }, + [17] = { 13, levelRequirement = 64, statInterpolation = { 1, }, }, + [18] = { 14, levelRequirement = 66, statInterpolation = { 1, }, }, + [19] = { 14, levelRequirement = 68, statInterpolation = { 1, }, }, + [20] = { 14, levelRequirement = 70, statInterpolation = { 1, }, }, + [21] = { 15, levelRequirement = 72, statInterpolation = { 1, }, }, + [22] = { 15, levelRequirement = 74, statInterpolation = { 1, }, }, + [23] = { 15, levelRequirement = 76, statInterpolation = { 1, }, }, + [24] = { 16, levelRequirement = 78, statInterpolation = { 1, }, }, + [25] = { 16, levelRequirement = 80, statInterpolation = { 1, }, }, + [26] = { 16, levelRequirement = 82, statInterpolation = { 1, }, }, + [27] = { 17, levelRequirement = 84, statInterpolation = { 1, }, }, + [28] = { 17, levelRequirement = 86, statInterpolation = { 1, }, }, + [29] = { 17, levelRequirement = 88, statInterpolation = { 1, }, }, + [30] = { 18, levelRequirement = 90, statInterpolation = { 1, }, }, + [31] = { 18, levelRequirement = 91, statInterpolation = { 1, }, }, + [32] = { 18, levelRequirement = 92, statInterpolation = { 1, }, }, + [33] = { 18, levelRequirement = 93, statInterpolation = { 1, }, }, + [34] = { 18, levelRequirement = 94, statInterpolation = { 1, }, }, + [35] = { 18, levelRequirement = 95, statInterpolation = { 1, }, }, + [36] = { 19, levelRequirement = 96, statInterpolation = { 1, }, }, + [37] = { 19, levelRequirement = 97, statInterpolation = { 1, }, }, + [38] = { 19, levelRequirement = 98, statInterpolation = { 1, }, }, + [39] = { 19, levelRequirement = 99, statInterpolation = { 1, }, }, + [40] = { 19, levelRequirement = 100, statInterpolation = { 1, }, }, }, } skills["SupportBlasphemy"] = { @@ -703,46 +703,46 @@ skills["SupportCastWhileChannelling"] = { "cast_while_channelling_time_ms", }, levels = { - [1] = { 450, PvPDamageMultiplier = -80, levelRequirement = 38, manaMultiplier = 20, statInterpolation = { 1, }, }, - [2] = { 440, PvPDamageMultiplier = -80, levelRequirement = 40, manaMultiplier = 20, statInterpolation = { 1, }, }, - [3] = { 440, PvPDamageMultiplier = -80, levelRequirement = 42, manaMultiplier = 20, statInterpolation = { 1, }, }, - [4] = { 430, PvPDamageMultiplier = -80, levelRequirement = 44, manaMultiplier = 20, statInterpolation = { 1, }, }, - [5] = { 430, PvPDamageMultiplier = -80, levelRequirement = 46, manaMultiplier = 20, statInterpolation = { 1, }, }, - [6] = { 420, PvPDamageMultiplier = -80, levelRequirement = 48, manaMultiplier = 20, statInterpolation = { 1, }, }, - [7] = { 420, PvPDamageMultiplier = -80, levelRequirement = 50, manaMultiplier = 20, statInterpolation = { 1, }, }, - [8] = { 410, PvPDamageMultiplier = -80, levelRequirement = 52, manaMultiplier = 20, statInterpolation = { 1, }, }, - [9] = { 410, PvPDamageMultiplier = -80, levelRequirement = 54, manaMultiplier = 20, statInterpolation = { 1, }, }, - [10] = { 400, PvPDamageMultiplier = -80, levelRequirement = 56, manaMultiplier = 20, statInterpolation = { 1, }, }, - [11] = { 400, PvPDamageMultiplier = -80, levelRequirement = 58, manaMultiplier = 20, statInterpolation = { 1, }, }, - [12] = { 390, PvPDamageMultiplier = -80, levelRequirement = 60, manaMultiplier = 20, statInterpolation = { 1, }, }, - [13] = { 390, PvPDamageMultiplier = -80, levelRequirement = 62, manaMultiplier = 20, statInterpolation = { 1, }, }, - [14] = { 380, PvPDamageMultiplier = -80, levelRequirement = 64, manaMultiplier = 20, statInterpolation = { 1, }, }, - [15] = { 380, PvPDamageMultiplier = -80, levelRequirement = 65, manaMultiplier = 20, statInterpolation = { 1, }, }, - [16] = { 370, PvPDamageMultiplier = -80, levelRequirement = 66, manaMultiplier = 20, statInterpolation = { 1, }, }, - [17] = { 370, PvPDamageMultiplier = -80, levelRequirement = 67, manaMultiplier = 20, statInterpolation = { 1, }, }, - [18] = { 360, PvPDamageMultiplier = -80, levelRequirement = 68, manaMultiplier = 20, statInterpolation = { 1, }, }, - [19] = { 360, PvPDamageMultiplier = -80, levelRequirement = 69, manaMultiplier = 20, statInterpolation = { 1, }, }, - [20] = { 350, PvPDamageMultiplier = -80, levelRequirement = 70, manaMultiplier = 20, statInterpolation = { 1, }, }, - [21] = { 350, PvPDamageMultiplier = -80, levelRequirement = 72, manaMultiplier = 20, statInterpolation = { 1, }, }, - [22] = { 340, PvPDamageMultiplier = -80, levelRequirement = 74, manaMultiplier = 20, statInterpolation = { 1, }, }, - [23] = { 340, PvPDamageMultiplier = -80, levelRequirement = 76, manaMultiplier = 20, statInterpolation = { 1, }, }, - [24] = { 330, PvPDamageMultiplier = -80, levelRequirement = 78, manaMultiplier = 20, statInterpolation = { 1, }, }, - [25] = { 330, PvPDamageMultiplier = -80, levelRequirement = 80, manaMultiplier = 20, statInterpolation = { 1, }, }, - [26] = { 320, PvPDamageMultiplier = -80, levelRequirement = 82, manaMultiplier = 20, statInterpolation = { 1, }, }, - [27] = { 320, PvPDamageMultiplier = -80, levelRequirement = 84, manaMultiplier = 20, statInterpolation = { 1, }, }, - [28] = { 310, PvPDamageMultiplier = -80, levelRequirement = 86, manaMultiplier = 20, statInterpolation = { 1, }, }, - [29] = { 310, PvPDamageMultiplier = -80, levelRequirement = 88, manaMultiplier = 20, statInterpolation = { 1, }, }, - [30] = { 300, PvPDamageMultiplier = -80, levelRequirement = 90, manaMultiplier = 20, statInterpolation = { 1, }, }, - [31] = { 300, PvPDamageMultiplier = -80, levelRequirement = 91, manaMultiplier = 20, statInterpolation = { 1, }, }, - [32] = { 300, PvPDamageMultiplier = -80, levelRequirement = 92, manaMultiplier = 20, statInterpolation = { 1, }, }, - [33] = { 300, PvPDamageMultiplier = -80, levelRequirement = 93, manaMultiplier = 20, statInterpolation = { 1, }, }, - [34] = { 290, PvPDamageMultiplier = -80, levelRequirement = 94, manaMultiplier = 20, statInterpolation = { 1, }, }, - [35] = { 290, PvPDamageMultiplier = -80, levelRequirement = 95, manaMultiplier = 20, statInterpolation = { 1, }, }, - [36] = { 290, PvPDamageMultiplier = -80, levelRequirement = 96, manaMultiplier = 20, statInterpolation = { 1, }, }, - [37] = { 290, PvPDamageMultiplier = -80, levelRequirement = 97, manaMultiplier = 20, statInterpolation = { 1, }, }, - [38] = { 280, PvPDamageMultiplier = -80, levelRequirement = 98, manaMultiplier = 20, statInterpolation = { 1, }, }, - [39] = { 280, PvPDamageMultiplier = -80, levelRequirement = 99, manaMultiplier = 20, statInterpolation = { 1, }, }, - [40] = { 280, PvPDamageMultiplier = -80, levelRequirement = 100, manaMultiplier = 20, statInterpolation = { 1, }, }, + [1] = { 400, PvPDamageMultiplier = -80, levelRequirement = 38, manaMultiplier = 20, statInterpolation = { 1, }, }, + [2] = { 390, PvPDamageMultiplier = -80, levelRequirement = 40, manaMultiplier = 20, statInterpolation = { 1, }, }, + [3] = { 390, PvPDamageMultiplier = -80, levelRequirement = 42, manaMultiplier = 20, statInterpolation = { 1, }, }, + [4] = { 380, PvPDamageMultiplier = -80, levelRequirement = 44, manaMultiplier = 20, statInterpolation = { 1, }, }, + [5] = { 380, PvPDamageMultiplier = -80, levelRequirement = 46, manaMultiplier = 20, statInterpolation = { 1, }, }, + [6] = { 380, PvPDamageMultiplier = -80, levelRequirement = 48, manaMultiplier = 20, statInterpolation = { 1, }, }, + [7] = { 370, PvPDamageMultiplier = -80, levelRequirement = 50, manaMultiplier = 20, statInterpolation = { 1, }, }, + [8] = { 370, PvPDamageMultiplier = -80, levelRequirement = 52, manaMultiplier = 20, statInterpolation = { 1, }, }, + [9] = { 360, PvPDamageMultiplier = -80, levelRequirement = 54, manaMultiplier = 20, statInterpolation = { 1, }, }, + [10] = { 360, PvPDamageMultiplier = -80, levelRequirement = 56, manaMultiplier = 20, statInterpolation = { 1, }, }, + [11] = { 360, PvPDamageMultiplier = -80, levelRequirement = 58, manaMultiplier = 20, statInterpolation = { 1, }, }, + [12] = { 350, PvPDamageMultiplier = -80, levelRequirement = 60, manaMultiplier = 20, statInterpolation = { 1, }, }, + [13] = { 350, PvPDamageMultiplier = -80, levelRequirement = 62, manaMultiplier = 20, statInterpolation = { 1, }, }, + [14] = { 340, PvPDamageMultiplier = -80, levelRequirement = 64, manaMultiplier = 20, statInterpolation = { 1, }, }, + [15] = { 340, PvPDamageMultiplier = -80, levelRequirement = 65, manaMultiplier = 20, statInterpolation = { 1, }, }, + [16] = { 340, PvPDamageMultiplier = -80, levelRequirement = 66, manaMultiplier = 20, statInterpolation = { 1, }, }, + [17] = { 330, PvPDamageMultiplier = -80, levelRequirement = 67, manaMultiplier = 20, statInterpolation = { 1, }, }, + [18] = { 330, PvPDamageMultiplier = -80, levelRequirement = 68, manaMultiplier = 20, statInterpolation = { 1, }, }, + [19] = { 320, PvPDamageMultiplier = -80, levelRequirement = 69, manaMultiplier = 20, statInterpolation = { 1, }, }, + [20] = { 320, PvPDamageMultiplier = -80, levelRequirement = 70, manaMultiplier = 20, statInterpolation = { 1, }, }, + [21] = { 320, PvPDamageMultiplier = -80, levelRequirement = 72, manaMultiplier = 20, statInterpolation = { 1, }, }, + [22] = { 310, PvPDamageMultiplier = -80, levelRequirement = 74, manaMultiplier = 20, statInterpolation = { 1, }, }, + [23] = { 310, PvPDamageMultiplier = -80, levelRequirement = 76, manaMultiplier = 20, statInterpolation = { 1, }, }, + [24] = { 300, PvPDamageMultiplier = -80, levelRequirement = 78, manaMultiplier = 20, statInterpolation = { 1, }, }, + [25] = { 300, PvPDamageMultiplier = -80, levelRequirement = 80, manaMultiplier = 20, statInterpolation = { 1, }, }, + [26] = { 300, PvPDamageMultiplier = -80, levelRequirement = 82, manaMultiplier = 20, statInterpolation = { 1, }, }, + [27] = { 290, PvPDamageMultiplier = -80, levelRequirement = 84, manaMultiplier = 20, statInterpolation = { 1, }, }, + [28] = { 290, PvPDamageMultiplier = -80, levelRequirement = 86, manaMultiplier = 20, statInterpolation = { 1, }, }, + [29] = { 280, PvPDamageMultiplier = -80, levelRequirement = 88, manaMultiplier = 20, statInterpolation = { 1, }, }, + [30] = { 280, PvPDamageMultiplier = -80, levelRequirement = 90, manaMultiplier = 20, statInterpolation = { 1, }, }, + [31] = { 280, PvPDamageMultiplier = -80, levelRequirement = 91, manaMultiplier = 20, statInterpolation = { 1, }, }, + [32] = { 280, PvPDamageMultiplier = -80, levelRequirement = 92, manaMultiplier = 20, statInterpolation = { 1, }, }, + [33] = { 270, PvPDamageMultiplier = -80, levelRequirement = 93, manaMultiplier = 20, statInterpolation = { 1, }, }, + [34] = { 270, PvPDamageMultiplier = -80, levelRequirement = 94, manaMultiplier = 20, statInterpolation = { 1, }, }, + [35] = { 270, PvPDamageMultiplier = -80, levelRequirement = 95, manaMultiplier = 20, statInterpolation = { 1, }, }, + [36] = { 270, PvPDamageMultiplier = -80, levelRequirement = 96, manaMultiplier = 20, statInterpolation = { 1, }, }, + [37] = { 270, PvPDamageMultiplier = -80, levelRequirement = 97, manaMultiplier = 20, statInterpolation = { 1, }, }, + [38] = { 260, PvPDamageMultiplier = -80, levelRequirement = 98, manaMultiplier = 20, statInterpolation = { 1, }, }, + [39] = { 260, PvPDamageMultiplier = -80, levelRequirement = 99, manaMultiplier = 20, statInterpolation = { 1, }, }, + [40] = { 260, PvPDamageMultiplier = -80, levelRequirement = 100, manaMultiplier = 20, statInterpolation = { 1, }, }, }, } skills["SupportCastWhileChannellingTriggered"] = { @@ -764,7 +764,7 @@ skills["SupportCastWhileChannellingTriggered"] = { { "triggered_skill_damage_+%", 0.5 }, }, constantStats = { - { "support_cast_while_channelling_triggered_skill_damage_+%_final", -30 }, + { "support_cast_while_channelling_triggered_skill_damage_+%_final", -20 }, }, stats = { "spell_uncastable_if_triggerable", @@ -998,54 +998,54 @@ skills["SupportChargedMines"] = { { "mine_damage_+%", 0.5 }, }, constantStats = { - { "mine_throwing_speed_+%_per_frenzy_charge", 10 }, - { "mine_critical_strike_chance_+%_per_power_charge", 25 }, + { "mine_throwing_speed_+%_per_frenzy_charge", 8 }, + { "mine_critical_strike_chance_+%_per_power_charge", 20 }, }, stats = { "%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy", "%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy", }, levels = { - [1] = { 20, 20, levelRequirement = 31, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [2] = { 21, 21, levelRequirement = 34, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [3] = { 21, 21, levelRequirement = 36, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [4] = { 22, 22, levelRequirement = 38, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [5] = { 22, 22, levelRequirement = 40, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [6] = { 23, 23, levelRequirement = 42, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [7] = { 23, 23, levelRequirement = 44, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [8] = { 24, 24, levelRequirement = 46, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [9] = { 24, 24, levelRequirement = 48, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [10] = { 25, 25, levelRequirement = 50, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [11] = { 25, 25, levelRequirement = 52, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [12] = { 26, 26, levelRequirement = 54, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [13] = { 26, 26, levelRequirement = 56, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [14] = { 27, 27, levelRequirement = 58, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [15] = { 27, 27, levelRequirement = 60, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [16] = { 28, 28, levelRequirement = 62, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [17] = { 28, 28, levelRequirement = 64, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [18] = { 29, 29, levelRequirement = 66, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [19] = { 29, 29, levelRequirement = 68, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [20] = { 30, 30, levelRequirement = 70, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [21] = { 30, 30, levelRequirement = 72, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [22] = { 31, 31, levelRequirement = 74, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [23] = { 31, 31, levelRequirement = 76, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [24] = { 32, 32, levelRequirement = 78, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [25] = { 32, 32, levelRequirement = 80, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [26] = { 33, 33, levelRequirement = 82, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [27] = { 33, 33, levelRequirement = 84, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [28] = { 34, 34, levelRequirement = 86, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [29] = { 34, 34, levelRequirement = 88, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [30] = { 35, 35, levelRequirement = 90, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [31] = { 35, 35, levelRequirement = 91, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [32] = { 35, 35, levelRequirement = 92, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [33] = { 35, 35, levelRequirement = 93, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [34] = { 36, 36, levelRequirement = 94, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [35] = { 36, 36, levelRequirement = 95, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [36] = { 36, 36, levelRequirement = 96, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [37] = { 36, 36, levelRequirement = 97, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [38] = { 37, 37, levelRequirement = 98, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [39] = { 37, 37, levelRequirement = 99, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [40] = { 37, 37, levelRequirement = 100, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [1] = { 20, 20, levelRequirement = 31, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [2] = { 21, 21, levelRequirement = 34, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [3] = { 21, 21, levelRequirement = 36, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [4] = { 22, 22, levelRequirement = 38, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [5] = { 22, 22, levelRequirement = 40, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [6] = { 23, 23, levelRequirement = 42, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [7] = { 23, 23, levelRequirement = 44, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [8] = { 24, 24, levelRequirement = 46, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [9] = { 24, 24, levelRequirement = 48, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [10] = { 25, 25, levelRequirement = 50, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [11] = { 25, 25, levelRequirement = 52, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [12] = { 26, 26, levelRequirement = 54, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [13] = { 26, 26, levelRequirement = 56, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [14] = { 27, 27, levelRequirement = 58, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [15] = { 27, 27, levelRequirement = 60, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [16] = { 28, 28, levelRequirement = 62, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [17] = { 28, 28, levelRequirement = 64, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [18] = { 29, 29, levelRequirement = 66, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [19] = { 29, 29, levelRequirement = 68, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [20] = { 30, 30, levelRequirement = 70, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [21] = { 30, 30, levelRequirement = 72, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [22] = { 31, 31, levelRequirement = 74, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [23] = { 31, 31, levelRequirement = 76, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [24] = { 32, 32, levelRequirement = 78, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [25] = { 32, 32, levelRequirement = 80, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [26] = { 33, 33, levelRequirement = 82, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [27] = { 33, 33, levelRequirement = 84, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [28] = { 34, 34, levelRequirement = 86, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [29] = { 34, 34, levelRequirement = 88, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [30] = { 35, 35, levelRequirement = 90, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [31] = { 35, 35, levelRequirement = 91, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [32] = { 35, 35, levelRequirement = 92, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [33] = { 35, 35, levelRequirement = 93, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [34] = { 36, 36, levelRequirement = 94, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [35] = { 36, 36, levelRequirement = 95, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [36] = { 36, 36, levelRequirement = 96, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [37] = { 36, 36, levelRequirement = 97, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [38] = { 37, 37, levelRequirement = 98, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [39] = { 37, 37, levelRequirement = 99, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [40] = { 37, 37, levelRequirement = 100, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, }, } skills["SupportCongregation"] = { @@ -1316,6 +1316,44 @@ skills["SupportCooldownRecovery"] = { [15] = { 72, levelRequirement = 95, manaMultiplier = 50, statInterpolation = { 1, }, }, }, } +skills["SupportCrustaceousGrasp"] = { + name = "Coursing Current", + description = "Supports skills that hit enemies.", + flavourText = {"Velka reached out her hand. One touch and she", "folded, screaming, clawing desperately at her back", "as the crustaceous gift burst itself from her spine.", }, + color = 3, + support = true, + requireSkillTypes = { SkillType.Damage, }, + addSkillTypes = { }, + excludeSkillTypes = { }, + ignoreMinionTypes = true, + statDescriptionScope = "gem_stat_descriptions", + qualityStats = { + { "base_all_ailment_duration_+%", 0.5 }, + }, + stats = { + "chill_effect_+%", + "shock_effect_+%", + "inflict_equivalent_shock_on_inflicting_chill_with_hits", + "inflict_equivalent_chill_on_inflicting_shock_with_hits", + }, + levels = { + [1] = { 20, 20, levelRequirement = 72, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [2] = { 24, 24, levelRequirement = 74, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [3] = { 28, 28, levelRequirement = 76, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [4] = { 32, 32, levelRequirement = 78, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [5] = { 36, 36, levelRequirement = 80, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [6] = { 40, 40, levelRequirement = 82, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [7] = { 44, 44, levelRequirement = 84, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [8] = { 48, 48, levelRequirement = 86, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [9] = { 52, 52, levelRequirement = 88, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [10] = { 56, 56, levelRequirement = 90, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [11] = { 60, 60, levelRequirement = 91, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [12] = { 64, 64, levelRequirement = 92, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [13] = { 68, 68, levelRequirement = 93, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [14] = { 72, 72, levelRequirement = 94, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [15] = { 76, 76, levelRequirement = 95, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + }, +} skills["SupportCursedGround"] = { name = "Cursed Ground", description = "Supports non-aura hex curse skills.", @@ -2745,8 +2783,8 @@ skills["SupportFrigidBond"] = { name = "Frigid Bond", description = "Supports link skills.", color = 3, - baseEffectiveness = 9.3719997406006, - incrementalEffectiveness = 0.057599999010563, + baseEffectiveness = 10.39999961853, + incrementalEffectiveness = 0.059000000357628, support = true, requireSkillTypes = { SkillType.Link, }, addSkillTypes = { SkillType.DamageOverTime, SkillType.DegenOnlySpellDamage, SkillType.NonHitChill, SkillType.Duration, }, @@ -2764,7 +2802,7 @@ skills["SupportFrigidBond"] = { { "support_damaging_links_base_duration_ms", 100 }, }, constantStats = { - { "support_damaging_links_base_duration_ms", 2000 }, + { "support_damaging_links_base_duration_ms", 3000 }, }, stats = { "base_cold_damage_to_deal_per_minute", @@ -3155,46 +3193,46 @@ skills["SupportHighImpactMine"] = { "remote_mined_by_support", }, levels = { - [1] = { -56, levelRequirement = 31, manaMultiplier = -50, statInterpolation = { 1, }, }, - [2] = { -56, levelRequirement = 34, manaMultiplier = -50, statInterpolation = { 1, }, }, - [3] = { -56, levelRequirement = 36, manaMultiplier = -50, statInterpolation = { 1, }, }, - [4] = { -55, levelRequirement = 38, manaMultiplier = -50, statInterpolation = { 1, }, }, - [5] = { -55, levelRequirement = 40, manaMultiplier = -50, statInterpolation = { 1, }, }, - [6] = { -55, levelRequirement = 42, manaMultiplier = -50, statInterpolation = { 1, }, }, - [7] = { -54, levelRequirement = 44, manaMultiplier = -50, statInterpolation = { 1, }, }, - [8] = { -54, levelRequirement = 46, manaMultiplier = -50, statInterpolation = { 1, }, }, - [9] = { -54, levelRequirement = 48, manaMultiplier = -50, statInterpolation = { 1, }, }, - [10] = { -53, levelRequirement = 50, manaMultiplier = -50, statInterpolation = { 1, }, }, - [11] = { -53, levelRequirement = 52, manaMultiplier = -50, statInterpolation = { 1, }, }, - [12] = { -53, levelRequirement = 54, manaMultiplier = -50, statInterpolation = { 1, }, }, - [13] = { -52, levelRequirement = 56, manaMultiplier = -50, statInterpolation = { 1, }, }, - [14] = { -52, levelRequirement = 58, manaMultiplier = -50, statInterpolation = { 1, }, }, - [15] = { -52, levelRequirement = 60, manaMultiplier = -50, statInterpolation = { 1, }, }, - [16] = { -51, levelRequirement = 62, manaMultiplier = -50, statInterpolation = { 1, }, }, - [17] = { -51, levelRequirement = 64, manaMultiplier = -50, statInterpolation = { 1, }, }, - [18] = { -51, levelRequirement = 66, manaMultiplier = -50, statInterpolation = { 1, }, }, - [19] = { -50, levelRequirement = 68, manaMultiplier = -50, statInterpolation = { 1, }, }, - [20] = { -50, levelRequirement = 70, manaMultiplier = -50, statInterpolation = { 1, }, }, - [21] = { -50, levelRequirement = 72, manaMultiplier = -50, statInterpolation = { 1, }, }, - [22] = { -49, levelRequirement = 74, manaMultiplier = -50, statInterpolation = { 1, }, }, - [23] = { -49, levelRequirement = 76, manaMultiplier = -50, statInterpolation = { 1, }, }, - [24] = { -49, levelRequirement = 78, manaMultiplier = -50, statInterpolation = { 1, }, }, - [25] = { -48, levelRequirement = 80, manaMultiplier = -50, statInterpolation = { 1, }, }, - [26] = { -48, levelRequirement = 82, manaMultiplier = -50, statInterpolation = { 1, }, }, - [27] = { -48, levelRequirement = 84, manaMultiplier = -50, statInterpolation = { 1, }, }, - [28] = { -47, levelRequirement = 86, manaMultiplier = -50, statInterpolation = { 1, }, }, - [29] = { -47, levelRequirement = 88, manaMultiplier = -50, statInterpolation = { 1, }, }, - [30] = { -47, levelRequirement = 90, manaMultiplier = -50, statInterpolation = { 1, }, }, - [31] = { -46, levelRequirement = 91, manaMultiplier = -50, statInterpolation = { 1, }, }, - [32] = { -46, levelRequirement = 92, manaMultiplier = -50, statInterpolation = { 1, }, }, - [33] = { -46, levelRequirement = 93, manaMultiplier = -50, statInterpolation = { 1, }, }, - [34] = { -45, levelRequirement = 94, manaMultiplier = -50, statInterpolation = { 1, }, }, - [35] = { -45, levelRequirement = 95, manaMultiplier = -50, statInterpolation = { 1, }, }, - [36] = { -45, levelRequirement = 96, manaMultiplier = -50, statInterpolation = { 1, }, }, - [37] = { -44, levelRequirement = 97, manaMultiplier = -50, statInterpolation = { 1, }, }, - [38] = { -44, levelRequirement = 98, manaMultiplier = -50, statInterpolation = { 1, }, }, - [39] = { -44, levelRequirement = 99, manaMultiplier = -50, statInterpolation = { 1, }, }, - [40] = { -43, levelRequirement = 100, manaMultiplier = -50, statInterpolation = { 1, }, }, + [1] = { -60, levelRequirement = 31, manaMultiplier = -35, statInterpolation = { 1, }, }, + [2] = { -60, levelRequirement = 34, manaMultiplier = -35, statInterpolation = { 1, }, }, + [3] = { -60, levelRequirement = 36, manaMultiplier = -35, statInterpolation = { 1, }, }, + [4] = { -59, levelRequirement = 38, manaMultiplier = -35, statInterpolation = { 1, }, }, + [5] = { -59, levelRequirement = 40, manaMultiplier = -35, statInterpolation = { 1, }, }, + [6] = { -59, levelRequirement = 42, manaMultiplier = -35, statInterpolation = { 1, }, }, + [7] = { -59, levelRequirement = 44, manaMultiplier = -35, statInterpolation = { 1, }, }, + [8] = { -58, levelRequirement = 46, manaMultiplier = -35, statInterpolation = { 1, }, }, + [9] = { -58, levelRequirement = 48, manaMultiplier = -35, statInterpolation = { 1, }, }, + [10] = { -58, levelRequirement = 50, manaMultiplier = -35, statInterpolation = { 1, }, }, + [11] = { -58, levelRequirement = 52, manaMultiplier = -35, statInterpolation = { 1, }, }, + [12] = { -57, levelRequirement = 54, manaMultiplier = -35, statInterpolation = { 1, }, }, + [13] = { -57, levelRequirement = 56, manaMultiplier = -35, statInterpolation = { 1, }, }, + [14] = { -57, levelRequirement = 58, manaMultiplier = -35, statInterpolation = { 1, }, }, + [15] = { -57, levelRequirement = 60, manaMultiplier = -35, statInterpolation = { 1, }, }, + [16] = { -56, levelRequirement = 62, manaMultiplier = -35, statInterpolation = { 1, }, }, + [17] = { -56, levelRequirement = 64, manaMultiplier = -35, statInterpolation = { 1, }, }, + [18] = { -56, levelRequirement = 66, manaMultiplier = -35, statInterpolation = { 1, }, }, + [19] = { -56, levelRequirement = 68, manaMultiplier = -35, statInterpolation = { 1, }, }, + [20] = { -55, levelRequirement = 70, manaMultiplier = -35, statInterpolation = { 1, }, }, + [21] = { -55, levelRequirement = 72, manaMultiplier = -35, statInterpolation = { 1, }, }, + [22] = { -55, levelRequirement = 74, manaMultiplier = -35, statInterpolation = { 1, }, }, + [23] = { -55, levelRequirement = 76, manaMultiplier = -35, statInterpolation = { 1, }, }, + [24] = { -54, levelRequirement = 78, manaMultiplier = -35, statInterpolation = { 1, }, }, + [25] = { -54, levelRequirement = 80, manaMultiplier = -35, statInterpolation = { 1, }, }, + [26] = { -54, levelRequirement = 82, manaMultiplier = -35, statInterpolation = { 1, }, }, + [27] = { -54, levelRequirement = 84, manaMultiplier = -35, statInterpolation = { 1, }, }, + [28] = { -53, levelRequirement = 86, manaMultiplier = -35, statInterpolation = { 1, }, }, + [29] = { -53, levelRequirement = 88, manaMultiplier = -35, statInterpolation = { 1, }, }, + [30] = { -53, levelRequirement = 90, manaMultiplier = -35, statInterpolation = { 1, }, }, + [31] = { -53, levelRequirement = 91, manaMultiplier = -35, statInterpolation = { 1, }, }, + [32] = { -53, levelRequirement = 92, manaMultiplier = -35, statInterpolation = { 1, }, }, + [33] = { -53, levelRequirement = 93, manaMultiplier = -35, statInterpolation = { 1, }, }, + [34] = { -52, levelRequirement = 94, manaMultiplier = -35, statInterpolation = { 1, }, }, + [35] = { -52, levelRequirement = 95, manaMultiplier = -35, statInterpolation = { 1, }, }, + [36] = { -52, levelRequirement = 96, manaMultiplier = -35, statInterpolation = { 1, }, }, + [37] = { -52, levelRequirement = 97, manaMultiplier = -35, statInterpolation = { 1, }, }, + [38] = { -52, levelRequirement = 98, manaMultiplier = -35, statInterpolation = { 1, }, }, + [39] = { -52, levelRequirement = 99, manaMultiplier = -35, statInterpolation = { 1, }, }, + [40] = { -52, levelRequirement = 100, manaMultiplier = -35, statInterpolation = { 1, }, }, }, } skills["SupportHiveborn"] = { @@ -3770,8 +3808,8 @@ skills["SupportInfernalLegion"] = { name = "Infernal Legion", description = "Supports skills which create Minions.", color = 3, - baseEffectiveness = 5.9082999229431, - incrementalEffectiveness = 0.056499999016523, + baseEffectiveness = 6.3200001716614, + incrementalEffectiveness = 0.05799999833107, support = true, requireSkillTypes = { SkillType.CreatesMinion, }, addSkillTypes = { SkillType.CausesBurning, SkillType.DamageOverTime, }, @@ -4943,48 +4981,49 @@ skills["SupportMinionLife"] = { }, } skills["SupportMinionPact"] = { - name = "Minion Pact", - description = "Supports spell skills that hit enemies and have no reservation. Cannot support brand skills, orb skills, channelling skills, arcane skills, Vaal skills or skills used by traps or mines. Cannot modify the skills of minions.", - flavourText = {"Immortality could grant Catarina the time necessary to shape", "a better world... but building requires sacrifice, and the useless", "would be crushed into the foundation of her new utopia.", }, + name = "Communion", + description = "Supports spell skills that hit enemies. Cannot modify the skills of minions.", + flavourText = {"Catarina envisioned a Wraeclast of disparate societies united.", "That diversity would empower the Syndicate - and the increased", "number of dispensible bodies was a convenient coincidence.", }, color = 3, + baseEffectiveness = 0.081000000238419, + incrementalEffectiveness = 0.031199999153614, support = true, requireSkillTypes = { SkillType.Damage, SkillType.Spell, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.HasReservation, SkillType.Vaal, SkillType.Channel, SkillType.Trapped, SkillType.RemoteMined, SkillType.Orb, SkillType.Brand, SkillType.Arcane, }, + excludeSkillTypes = { }, ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { - ["support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage"] = { - mod("PhysicalMin", "BASE", nil, 0, 0, { type = "Multiplier", var = "MinionLife" }), - mod("PhysicalMax", "BASE", nil, 0, 0, { type = "Multiplier", var = "MinionLife" }), - div = 1000, + ["spell_minimum_added_physical_damage_per_active_permanent_minion"] = { + mod("PhysicalMin", "BASE", nil, 0, 0, { type = "Multiplier", var = "SummonedMinion" }), + }, + ["spell_maximum_added_physical_damage_per_active_permanent_minion"] = { + mod("PhysicalMax", "BASE", nil, 0, 0, { type = "Multiplier", var = "SummonedMinion" }), }, }, qualityStats = { { "spell_damage_+%", 0.5 }, }, stats = { - "support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage", - }, - notMinionStat = { - "support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage", + "spell_minimum_added_physical_damage_per_active_permanent_minion", + "spell_maximum_added_physical_damage_per_active_permanent_minion", }, levels = { - [1] = { 20, levelRequirement = 72, statInterpolation = { 1, }, }, - [2] = { 24, levelRequirement = 74, statInterpolation = { 1, }, }, - [3] = { 28, levelRequirement = 76, statInterpolation = { 1, }, }, - [4] = { 32, levelRequirement = 78, statInterpolation = { 1, }, }, - [5] = { 34, levelRequirement = 80, statInterpolation = { 1, }, }, - [6] = { 36, levelRequirement = 82, statInterpolation = { 1, }, }, - [7] = { 38, levelRequirement = 84, statInterpolation = { 1, }, }, - [8] = { 40, levelRequirement = 86, statInterpolation = { 1, }, }, - [9] = { 42, levelRequirement = 88, statInterpolation = { 1, }, }, - [10] = { 44, levelRequirement = 90, statInterpolation = { 1, }, }, - [11] = { 46, levelRequirement = 91, statInterpolation = { 1, }, }, - [12] = { 48, levelRequirement = 92, statInterpolation = { 1, }, }, - [13] = { 50, levelRequirement = 93, statInterpolation = { 1, }, }, - [14] = { 52, levelRequirement = 94, statInterpolation = { 1, }, }, - [15] = { 54, levelRequirement = 95, statInterpolation = { 1, }, }, + [1] = { 0.80000001192093, 1.2000000476837, levelRequirement = 72, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, levelRequirement = 74, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, levelRequirement = 76, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, levelRequirement = 78, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [5] = { 0.80000001192093, 1.2000000476837, levelRequirement = 80, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [6] = { 0.80000001192093, 1.2000000476837, levelRequirement = 82, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [7] = { 0.80000001192093, 1.2000000476837, levelRequirement = 84, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [8] = { 0.80000001192093, 1.2000000476837, levelRequirement = 86, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [9] = { 0.80000001192093, 1.2000000476837, levelRequirement = 88, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [10] = { 0.80000001192093, 1.2000000476837, levelRequirement = 90, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [11] = { 0.80000001192093, 1.2000000476837, levelRequirement = 91, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [12] = { 0.80000001192093, 1.2000000476837, levelRequirement = 92, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [13] = { 0.80000001192093, 1.2000000476837, levelRequirement = 93, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [14] = { 0.80000001192093, 1.2000000476837, levelRequirement = 94, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, + [15] = { 0.80000001192093, 1.2000000476837, levelRequirement = 95, manaMultiplier = 50, statInterpolation = { 3, 3, }, }, }, } skills["SupportMinionSpeed"] = { @@ -5658,46 +5697,46 @@ skills["SupportBlastchainMine"] = { "is_remote_mine", }, levels = { - [1] = { -59, levelRequirement = 8, manaMultiplier = -50, statInterpolation = { 1, }, }, - [2] = { -59, levelRequirement = 10, manaMultiplier = -50, statInterpolation = { 1, }, }, - [3] = { -59, levelRequirement = 13, manaMultiplier = -50, statInterpolation = { 1, }, }, - [4] = { -58, levelRequirement = 17, manaMultiplier = -50, statInterpolation = { 1, }, }, - [5] = { -58, levelRequirement = 21, manaMultiplier = -50, statInterpolation = { 1, }, }, - [6] = { -58, levelRequirement = 25, manaMultiplier = -50, statInterpolation = { 1, }, }, - [7] = { -57, levelRequirement = 29, manaMultiplier = -50, statInterpolation = { 1, }, }, - [8] = { -57, levelRequirement = 33, manaMultiplier = -50, statInterpolation = { 1, }, }, - [9] = { -57, levelRequirement = 37, manaMultiplier = -50, statInterpolation = { 1, }, }, - [10] = { -56, levelRequirement = 40, manaMultiplier = -50, statInterpolation = { 1, }, }, - [11] = { -56, levelRequirement = 43, manaMultiplier = -50, statInterpolation = { 1, }, }, - [12] = { -56, levelRequirement = 46, manaMultiplier = -50, statInterpolation = { 1, }, }, - [13] = { -55, levelRequirement = 49, manaMultiplier = -50, statInterpolation = { 1, }, }, - [14] = { -55, levelRequirement = 52, manaMultiplier = -50, statInterpolation = { 1, }, }, - [15] = { -55, levelRequirement = 55, manaMultiplier = -50, statInterpolation = { 1, }, }, - [16] = { -54, levelRequirement = 58, manaMultiplier = -50, statInterpolation = { 1, }, }, - [17] = { -54, levelRequirement = 61, manaMultiplier = -50, statInterpolation = { 1, }, }, - [18] = { -54, levelRequirement = 64, manaMultiplier = -50, statInterpolation = { 1, }, }, - [19] = { -53, levelRequirement = 67, manaMultiplier = -50, statInterpolation = { 1, }, }, - [20] = { -53, levelRequirement = 70, manaMultiplier = -50, statInterpolation = { 1, }, }, - [21] = { -53, levelRequirement = 72, manaMultiplier = -50, statInterpolation = { 1, }, }, - [22] = { -52, levelRequirement = 74, manaMultiplier = -50, statInterpolation = { 1, }, }, - [23] = { -52, levelRequirement = 76, manaMultiplier = -50, statInterpolation = { 1, }, }, - [24] = { -52, levelRequirement = 78, manaMultiplier = -50, statInterpolation = { 1, }, }, - [25] = { -51, levelRequirement = 80, manaMultiplier = -50, statInterpolation = { 1, }, }, - [26] = { -51, levelRequirement = 82, manaMultiplier = -50, statInterpolation = { 1, }, }, - [27] = { -51, levelRequirement = 84, manaMultiplier = -50, statInterpolation = { 1, }, }, - [28] = { -50, levelRequirement = 86, manaMultiplier = -50, statInterpolation = { 1, }, }, - [29] = { -50, levelRequirement = 88, manaMultiplier = -50, statInterpolation = { 1, }, }, - [30] = { -50, levelRequirement = 90, manaMultiplier = -50, statInterpolation = { 1, }, }, - [31] = { -49, levelRequirement = 91, manaMultiplier = -50, statInterpolation = { 1, }, }, - [32] = { -49, levelRequirement = 92, manaMultiplier = -50, statInterpolation = { 1, }, }, - [33] = { -49, levelRequirement = 93, manaMultiplier = -50, statInterpolation = { 1, }, }, - [34] = { -48, levelRequirement = 94, manaMultiplier = -50, statInterpolation = { 1, }, }, - [35] = { -48, levelRequirement = 95, manaMultiplier = -50, statInterpolation = { 1, }, }, - [36] = { -48, levelRequirement = 96, manaMultiplier = -50, statInterpolation = { 1, }, }, - [37] = { -47, levelRequirement = 97, manaMultiplier = -50, statInterpolation = { 1, }, }, - [38] = { -47, levelRequirement = 98, manaMultiplier = -50, statInterpolation = { 1, }, }, - [39] = { -47, levelRequirement = 99, manaMultiplier = -50, statInterpolation = { 1, }, }, - [40] = { -46, levelRequirement = 100, manaMultiplier = -50, statInterpolation = { 1, }, }, + [1] = { -60, levelRequirement = 8, manaMultiplier = -35, statInterpolation = { 1, }, }, + [2] = { -60, levelRequirement = 10, manaMultiplier = -35, statInterpolation = { 1, }, }, + [3] = { -60, levelRequirement = 13, manaMultiplier = -35, statInterpolation = { 1, }, }, + [4] = { -59, levelRequirement = 17, manaMultiplier = -35, statInterpolation = { 1, }, }, + [5] = { -59, levelRequirement = 21, manaMultiplier = -35, statInterpolation = { 1, }, }, + [6] = { -59, levelRequirement = 25, manaMultiplier = -35, statInterpolation = { 1, }, }, + [7] = { -59, levelRequirement = 29, manaMultiplier = -35, statInterpolation = { 1, }, }, + [8] = { -58, levelRequirement = 33, manaMultiplier = -35, statInterpolation = { 1, }, }, + [9] = { -58, levelRequirement = 37, manaMultiplier = -35, statInterpolation = { 1, }, }, + [10] = { -58, levelRequirement = 40, manaMultiplier = -35, statInterpolation = { 1, }, }, + [11] = { -58, levelRequirement = 43, manaMultiplier = -35, statInterpolation = { 1, }, }, + [12] = { -57, levelRequirement = 46, manaMultiplier = -35, statInterpolation = { 1, }, }, + [13] = { -57, levelRequirement = 49, manaMultiplier = -35, statInterpolation = { 1, }, }, + [14] = { -57, levelRequirement = 52, manaMultiplier = -35, statInterpolation = { 1, }, }, + [15] = { -57, levelRequirement = 55, manaMultiplier = -35, statInterpolation = { 1, }, }, + [16] = { -56, levelRequirement = 58, manaMultiplier = -35, statInterpolation = { 1, }, }, + [17] = { -56, levelRequirement = 61, manaMultiplier = -35, statInterpolation = { 1, }, }, + [18] = { -56, levelRequirement = 64, manaMultiplier = -35, statInterpolation = { 1, }, }, + [19] = { -56, levelRequirement = 67, manaMultiplier = -35, statInterpolation = { 1, }, }, + [20] = { -55, levelRequirement = 70, manaMultiplier = -35, statInterpolation = { 1, }, }, + [21] = { -55, levelRequirement = 72, manaMultiplier = -35, statInterpolation = { 1, }, }, + [22] = { -55, levelRequirement = 74, manaMultiplier = -35, statInterpolation = { 1, }, }, + [23] = { -55, levelRequirement = 76, manaMultiplier = -35, statInterpolation = { 1, }, }, + [24] = { -54, levelRequirement = 78, manaMultiplier = -35, statInterpolation = { 1, }, }, + [25] = { -54, levelRequirement = 80, manaMultiplier = -35, statInterpolation = { 1, }, }, + [26] = { -54, levelRequirement = 82, manaMultiplier = -35, statInterpolation = { 1, }, }, + [27] = { -54, levelRequirement = 84, manaMultiplier = -35, statInterpolation = { 1, }, }, + [28] = { -53, levelRequirement = 86, manaMultiplier = -35, statInterpolation = { 1, }, }, + [29] = { -53, levelRequirement = 88, manaMultiplier = -35, statInterpolation = { 1, }, }, + [30] = { -53, levelRequirement = 90, manaMultiplier = -35, statInterpolation = { 1, }, }, + [31] = { -53, levelRequirement = 91, manaMultiplier = -35, statInterpolation = { 1, }, }, + [32] = { -53, levelRequirement = 92, manaMultiplier = -35, statInterpolation = { 1, }, }, + [33] = { -53, levelRequirement = 93, manaMultiplier = -35, statInterpolation = { 1, }, }, + [34] = { -52, levelRequirement = 94, manaMultiplier = -35, statInterpolation = { 1, }, }, + [35] = { -52, levelRequirement = 95, manaMultiplier = -35, statInterpolation = { 1, }, }, + [36] = { -52, levelRequirement = 96, manaMultiplier = -35, statInterpolation = { 1, }, }, + [37] = { -52, levelRequirement = 97, manaMultiplier = -35, statInterpolation = { 1, }, }, + [38] = { -52, levelRequirement = 98, manaMultiplier = -35, statInterpolation = { 1, }, }, + [39] = { -52, levelRequirement = 99, manaMultiplier = -35, statInterpolation = { 1, }, }, + [40] = { -52, levelRequirement = 100, manaMultiplier = -35, statInterpolation = { 1, }, }, }, } skills["SupportSacredWisps"] = { @@ -6764,45 +6803,45 @@ skills["SupportUnleash"] = { }, levels = { [1] = { 900, -45, PvPDamageMultiplier = -40, levelRequirement = 38, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [2] = { 890, -45, PvPDamageMultiplier = -40, levelRequirement = 40, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [3] = { 880, -44, PvPDamageMultiplier = -40, levelRequirement = 42, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [4] = { 870, -44, PvPDamageMultiplier = -40, levelRequirement = 44, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [5] = { 860, -43, PvPDamageMultiplier = -40, levelRequirement = 46, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [6] = { 850, -43, PvPDamageMultiplier = -40, levelRequirement = 48, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [7] = { 840, -42, PvPDamageMultiplier = -40, levelRequirement = 50, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [8] = { 830, -42, PvPDamageMultiplier = -40, levelRequirement = 52, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [9] = { 820, -41, PvPDamageMultiplier = -40, levelRequirement = 54, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [10] = { 810, -41, PvPDamageMultiplier = -40, levelRequirement = 56, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [11] = { 800, -40, PvPDamageMultiplier = -40, levelRequirement = 58, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [12] = { 790, -40, PvPDamageMultiplier = -40, levelRequirement = 60, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [13] = { 780, -39, PvPDamageMultiplier = -40, levelRequirement = 62, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [14] = { 770, -39, PvPDamageMultiplier = -40, levelRequirement = 64, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [15] = { 760, -38, PvPDamageMultiplier = -40, levelRequirement = 65, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [16] = { 750, -38, PvPDamageMultiplier = -40, levelRequirement = 66, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [17] = { 740, -37, PvPDamageMultiplier = -40, levelRequirement = 67, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [18] = { 730, -37, PvPDamageMultiplier = -40, levelRequirement = 68, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [19] = { 720, -36, PvPDamageMultiplier = -40, levelRequirement = 69, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [20] = { 710, -36, PvPDamageMultiplier = -40, levelRequirement = 70, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [21] = { 700, -35, PvPDamageMultiplier = -40, levelRequirement = 72, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [22] = { 690, -35, PvPDamageMultiplier = -40, levelRequirement = 74, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [23] = { 680, -34, PvPDamageMultiplier = -40, levelRequirement = 76, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [24] = { 670, -34, PvPDamageMultiplier = -40, levelRequirement = 78, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [25] = { 660, -33, PvPDamageMultiplier = -40, levelRequirement = 80, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [26] = { 650, -33, PvPDamageMultiplier = -40, levelRequirement = 82, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [27] = { 640, -32, PvPDamageMultiplier = -40, levelRequirement = 84, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [28] = { 630, -32, PvPDamageMultiplier = -40, levelRequirement = 86, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [29] = { 620, -31, PvPDamageMultiplier = -40, levelRequirement = 88, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [30] = { 610, -31, PvPDamageMultiplier = -40, levelRequirement = 90, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [31] = { 600, -31, PvPDamageMultiplier = -40, levelRequirement = 91, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [32] = { 590, -30, PvPDamageMultiplier = -40, levelRequirement = 92, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [33] = { 580, -30, PvPDamageMultiplier = -40, levelRequirement = 93, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [34] = { 570, -30, PvPDamageMultiplier = -40, levelRequirement = 94, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [35] = { 560, -30, PvPDamageMultiplier = -40, levelRequirement = 95, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [36] = { 550, -29, PvPDamageMultiplier = -40, levelRequirement = 96, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [37] = { 540, -29, PvPDamageMultiplier = -40, levelRequirement = 97, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [38] = { 530, -29, PvPDamageMultiplier = -40, levelRequirement = 98, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [39] = { 520, -29, PvPDamageMultiplier = -40, levelRequirement = 99, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, - [40] = { 510, -28, PvPDamageMultiplier = -40, levelRequirement = 100, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [2] = { 890, -44, PvPDamageMultiplier = -40, levelRequirement = 40, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [3] = { 880, -43, PvPDamageMultiplier = -40, levelRequirement = 42, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [4] = { 870, -42, PvPDamageMultiplier = -40, levelRequirement = 44, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [5] = { 860, -41, PvPDamageMultiplier = -40, levelRequirement = 46, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [6] = { 850, -40, PvPDamageMultiplier = -40, levelRequirement = 48, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [7] = { 840, -39, PvPDamageMultiplier = -40, levelRequirement = 50, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [8] = { 830, -38, PvPDamageMultiplier = -40, levelRequirement = 52, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [9] = { 820, -37, PvPDamageMultiplier = -40, levelRequirement = 54, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [10] = { 810, -36, PvPDamageMultiplier = -40, levelRequirement = 56, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [11] = { 800, -35, PvPDamageMultiplier = -40, levelRequirement = 58, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [12] = { 790, -34, PvPDamageMultiplier = -40, levelRequirement = 60, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [13] = { 780, -33, PvPDamageMultiplier = -40, levelRequirement = 62, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [14] = { 770, -32, PvPDamageMultiplier = -40, levelRequirement = 64, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [15] = { 760, -31, PvPDamageMultiplier = -40, levelRequirement = 65, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [16] = { 750, -30, PvPDamageMultiplier = -40, levelRequirement = 66, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [17] = { 740, -29, PvPDamageMultiplier = -40, levelRequirement = 67, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [18] = { 730, -28, PvPDamageMultiplier = -40, levelRequirement = 68, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [19] = { 720, -27, PvPDamageMultiplier = -40, levelRequirement = 69, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [20] = { 710, -26, PvPDamageMultiplier = -40, levelRequirement = 70, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [21] = { 700, -25, PvPDamageMultiplier = -40, levelRequirement = 72, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [22] = { 690, -24, PvPDamageMultiplier = -40, levelRequirement = 74, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [23] = { 680, -23, PvPDamageMultiplier = -40, levelRequirement = 76, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [24] = { 670, -22, PvPDamageMultiplier = -40, levelRequirement = 78, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [25] = { 660, -21, PvPDamageMultiplier = -40, levelRequirement = 80, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [26] = { 650, -20, PvPDamageMultiplier = -40, levelRequirement = 82, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [27] = { 640, -19, PvPDamageMultiplier = -40, levelRequirement = 84, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [28] = { 630, -18, PvPDamageMultiplier = -40, levelRequirement = 86, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [29] = { 620, -17, PvPDamageMultiplier = -40, levelRequirement = 88, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [30] = { 610, -16, PvPDamageMultiplier = -40, levelRequirement = 90, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [31] = { 600, -16, PvPDamageMultiplier = -40, levelRequirement = 91, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [32] = { 590, -15, PvPDamageMultiplier = -40, levelRequirement = 92, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [33] = { 580, -15, PvPDamageMultiplier = -40, levelRequirement = 93, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [34] = { 570, -14, PvPDamageMultiplier = -40, levelRequirement = 94, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [35] = { 560, -14, PvPDamageMultiplier = -40, levelRequirement = 95, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [36] = { 550, -13, PvPDamageMultiplier = -40, levelRequirement = 96, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [37] = { 540, -13, PvPDamageMultiplier = -40, levelRequirement = 97, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [38] = { 530, -12, PvPDamageMultiplier = -40, levelRequirement = 98, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [39] = { 520, -12, PvPDamageMultiplier = -40, levelRequirement = 99, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, + [40] = { 510, -11, PvPDamageMultiplier = -40, levelRequirement = 100, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, }, } skills["SupportAwakenedUnleash"] = { @@ -6906,21 +6945,21 @@ skills["SupportGreaterUnleash"] = { "support_anticipation_charge_gain_interval_ms", }, levels = { - [1] = { 700, -35, PvPDamageMultiplier = -40, levelRequirement = 72, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [2] = { 680, -33, PvPDamageMultiplier = -40, levelRequirement = 74, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [3] = { 660, -31, PvPDamageMultiplier = -40, levelRequirement = 76, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [4] = { 640, -29, PvPDamageMultiplier = -40, levelRequirement = 78, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [5] = { 630, -28, PvPDamageMultiplier = -40, levelRequirement = 80, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [6] = { 620, -27, PvPDamageMultiplier = -40, levelRequirement = 82, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [7] = { 610, -26, PvPDamageMultiplier = -40, levelRequirement = 84, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [8] = { 600, -25, PvPDamageMultiplier = -40, levelRequirement = 86, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [9] = { 590, -24, PvPDamageMultiplier = -40, levelRequirement = 88, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [10] = { 580, -23, PvPDamageMultiplier = -40, levelRequirement = 90, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [11] = { 570, -22, PvPDamageMultiplier = -40, levelRequirement = 91, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [12] = { 560, -21, PvPDamageMultiplier = -40, levelRequirement = 92, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [13] = { 550, -20, PvPDamageMultiplier = -40, levelRequirement = 93, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [14] = { 540, -19, PvPDamageMultiplier = -40, levelRequirement = 94, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, - [15] = { 530, -18, PvPDamageMultiplier = -40, levelRequirement = 95, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [1] = { 700, -25, PvPDamageMultiplier = -40, levelRequirement = 72, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [2] = { 680, -24, PvPDamageMultiplier = -40, levelRequirement = 74, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [3] = { 660, -23, PvPDamageMultiplier = -40, levelRequirement = 76, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [4] = { 640, -22, PvPDamageMultiplier = -40, levelRequirement = 78, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [5] = { 630, -22, PvPDamageMultiplier = -40, levelRequirement = 80, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [6] = { 620, -21, PvPDamageMultiplier = -40, levelRequirement = 82, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [7] = { 610, -21, PvPDamageMultiplier = -40, levelRequirement = 84, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [8] = { 600, -20, PvPDamageMultiplier = -40, levelRequirement = 86, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [9] = { 590, -20, PvPDamageMultiplier = -40, levelRequirement = 88, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [10] = { 580, -19, PvPDamageMultiplier = -40, levelRequirement = 90, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [11] = { 570, -19, PvPDamageMultiplier = -40, levelRequirement = 91, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [12] = { 560, -18, PvPDamageMultiplier = -40, levelRequirement = 92, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [13] = { 550, -18, PvPDamageMultiplier = -40, levelRequirement = 93, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [14] = { 540, -17, PvPDamageMultiplier = -40, levelRequirement = 94, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, + [15] = { 530, -17, PvPDamageMultiplier = -40, levelRequirement = 95, manaMultiplier = 50, statInterpolation = { 1, 1, }, }, }, } skills["SupportVaalSacrifice"] = { diff --git a/src/Data/Skills/sup_str.lua b/src/Data/Skills/sup_str.lua index 5bdd88dfd1..3cc066b76a 100644 --- a/src/Data/Skills/sup_str.lua +++ b/src/Data/Skills/sup_str.lua @@ -1594,6 +1594,115 @@ skills["SupportCruelty"] = { [40] = { 34, 32, levelRequirement = 100, manaMultiplier = 40, statInterpolation = { 1, 1, }, }, }, } +skills["SupportCrystalfall"] = { + name = "Crystalfall", + description = "Supports Slam skills. Cannot support triggered skills or skills used by things other than you.", + flavourText = {"The ancient golem of bone climbs ever upward.", "Its body is an engine. Its eyes are fuel.", }, + color = 1, + support = true, + requireSkillTypes = { SkillType.Slam, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Triggered, SkillType.OtherThingUsesSkill, SkillType.DisallowTriggerSupports, SkillType.SummonsTotem, SkillType.CreatesMinion, }, + ignoreMinionTypes = true, + weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["None"] = true, + ["One Handed Axe"] = true, + ["One Handed Mace"] = true, + ["One Handed Sword"] = true, + ["Sceptre"] = true, + ["Staff"] = true, + ["Thrusting One Handed Sword"] = true, + ["Two Handed Axe"] = true, + ["Two Handed Mace"] = true, + ["Two Handed Sword"] = true, + }, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_crystalfall_chance_to_trigger_crystalfall_on_hit_%"] = { + }, + }, + qualityStats = { + { "melee_damage_+%", 0.5 }, + }, + constantStats = { + { "support_crystalfall_chance_to_trigger_crystalfall_on_hit_%", 100 }, + }, + stats = { + }, + levels = { + [1] = { levelRequirement = 72, manaMultiplier = 50, }, + [2] = { levelRequirement = 74, manaMultiplier = 50, }, + [3] = { levelRequirement = 76, manaMultiplier = 50, }, + [4] = { levelRequirement = 78, manaMultiplier = 50, }, + [5] = { levelRequirement = 80, manaMultiplier = 50, }, + [6] = { levelRequirement = 82, manaMultiplier = 50, }, + [7] = { levelRequirement = 84, manaMultiplier = 50, }, + [8] = { levelRequirement = 86, manaMultiplier = 50, }, + [9] = { levelRequirement = 88, manaMultiplier = 50, }, + [10] = { levelRequirement = 90, manaMultiplier = 50, }, + [11] = { levelRequirement = 91, manaMultiplier = 50, }, + [12] = { levelRequirement = 92, manaMultiplier = 50, }, + [13] = { levelRequirement = 93, manaMultiplier = 50, }, + [14] = { levelRequirement = 94, manaMultiplier = 50, }, + [15] = { levelRequirement = 95, manaMultiplier = 50, }, + }, +} +skills["TriggeredSupportCrystalfall"] = { + name = "Falling Crystal", + baseTypeName = "Falling Crystal", + flavourText = {"The ancient golem of bone climbs ever upward.", "Its body is an engine. Its eyes are fuel.", }, + color = 1, + description = "A giant crystal of abyssal soulstone is called from above, falling to slam down at the targeted location.", + skillTypes = { [SkillType.Slam] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Cooldown] = true, [SkillType.Melee] = true, [SkillType.Damage] = true, [SkillType.Attack] = true, }, + weaponTypes = { + ["Claw"] = true, + ["Dagger"] = true, + ["None"] = true, + ["One Handed Axe"] = true, + ["One Handed Mace"] = true, + ["One Handed Sword"] = true, + ["Sceptre"] = true, + ["Staff"] = true, + ["Thrusting One Handed Sword"] = true, + ["Two Handed Axe"] = true, + ["Two Handed Mace"] = true, + ["Two Handed Sword"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + area = true, + melee = true, + }, + qualityStats = { + { "melee_damage_+%", 0.5 }, + }, + stats = { + "active_skill_base_area_of_effect_radius", + "is_area_damage", + "triggered_by_crystalfall_support", + }, + levels = { + [1] = { 23, baseMultiplier = 6.16, cooldown = 1, damageEffectiveness = 6.16, levelRequirement = 72, storedUses = 3, statInterpolation = { 1, }, }, + [2] = { 24, baseMultiplier = 6.26, cooldown = 1, damageEffectiveness = 6.26, levelRequirement = 74, storedUses = 3, statInterpolation = { 1, }, }, + [3] = { 25, baseMultiplier = 6.37, cooldown = 1, damageEffectiveness = 6.37, levelRequirement = 76, storedUses = 3, statInterpolation = { 1, }, }, + [4] = { 26, baseMultiplier = 6.47, cooldown = 1, damageEffectiveness = 6.47, levelRequirement = 78, storedUses = 3, statInterpolation = { 1, }, }, + [5] = { 26, baseMultiplier = 6.57, cooldown = 1, damageEffectiveness = 6.57, levelRequirement = 80, storedUses = 3, statInterpolation = { 1, }, }, + [6] = { 27, baseMultiplier = 6.68, cooldown = 1, damageEffectiveness = 6.68, levelRequirement = 82, storedUses = 3, statInterpolation = { 1, }, }, + [7] = { 27, baseMultiplier = 6.78, cooldown = 1, damageEffectiveness = 6.78, levelRequirement = 84, storedUses = 3, statInterpolation = { 1, }, }, + [8] = { 28, baseMultiplier = 6.88, cooldown = 1, damageEffectiveness = 6.88, levelRequirement = 86, storedUses = 3, statInterpolation = { 1, }, }, + [9] = { 28, baseMultiplier = 6.98, cooldown = 1, damageEffectiveness = 6.98, levelRequirement = 88, storedUses = 3, statInterpolation = { 1, }, }, + [10] = { 29, baseMultiplier = 7.09, cooldown = 1, damageEffectiveness = 7.09, levelRequirement = 90, storedUses = 3, statInterpolation = { 1, }, }, + [11] = { 29, baseMultiplier = 7.19, cooldown = 1, damageEffectiveness = 7.19, levelRequirement = 91, storedUses = 3, statInterpolation = { 1, }, }, + [12] = { 30, baseMultiplier = 7.24, cooldown = 1, damageEffectiveness = 7.24, levelRequirement = 92, storedUses = 3, statInterpolation = { 1, }, }, + [13] = { 30, baseMultiplier = 7.3, cooldown = 1, damageEffectiveness = 7.3, levelRequirement = 93, storedUses = 3, statInterpolation = { 1, }, }, + [14] = { 31, baseMultiplier = 7.35, cooldown = 1, damageEffectiveness = 7.35, levelRequirement = 94, storedUses = 3, statInterpolation = { 1, }, }, + [15] = { 31, baseMultiplier = 7.4, cooldown = 1, damageEffectiveness = 7.4, levelRequirement = 95, storedUses = 3, statInterpolation = { 1, }, }, + }, +} skills["SupportDamageOnFullLife"] = { name = "Damage on Full Life", description = "Supports attack skills, providing a bonus to all damage dealt by those skills while your life is full.", @@ -4449,46 +4558,46 @@ skills["SupportBallistaTotem"] = { "totem_support_gem_level", }, levels = { - [1] = { -32, 8, levelRequirement = 8, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [2] = { -32, 10, levelRequirement = 10, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [3] = { -31, 13, levelRequirement = 13, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [4] = { -31, 17, levelRequirement = 17, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [5] = { -30, 21, levelRequirement = 21, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [6] = { -30, 25, levelRequirement = 25, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [7] = { -29, 29, levelRequirement = 29, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [8] = { -29, 33, levelRequirement = 33, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [9] = { -29, 37, levelRequirement = 37, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [10] = { -28, 40, levelRequirement = 40, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [11] = { -28, 43, levelRequirement = 43, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [12] = { -27, 46, levelRequirement = 46, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [13] = { -27, 49, levelRequirement = 49, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [14] = { -27, 52, levelRequirement = 52, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [15] = { -26, 55, levelRequirement = 55, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [16] = { -26, 58, levelRequirement = 58, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [17] = { -25, 61, levelRequirement = 61, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [18] = { -25, 64, levelRequirement = 64, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [19] = { -24, 67, levelRequirement = 67, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [20] = { -24, 70, levelRequirement = 70, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [21] = { -24, 72, levelRequirement = 72, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [22] = { -23, 74, levelRequirement = 74, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [23] = { -23, 76, levelRequirement = 76, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [24] = { -22, 78, levelRequirement = 78, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [25] = { -22, 80, levelRequirement = 80, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [26] = { -21, 82, levelRequirement = 82, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [27] = { -21, 84, levelRequirement = 84, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [28] = { -21, 86, levelRequirement = 86, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [29] = { -20, 88, levelRequirement = 88, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [30] = { -20, 90, levelRequirement = 90, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [31] = { -20, 91, levelRequirement = 91, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [32] = { -19, 92, levelRequirement = 92, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [33] = { -19, 93, levelRequirement = 93, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [34] = { -19, 94, levelRequirement = 94, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [35] = { -19, 95, levelRequirement = 95, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [36] = { -19, 96, levelRequirement = 96, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [37] = { -18, 97, levelRequirement = 97, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [38] = { -18, 98, levelRequirement = 98, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [39] = { -18, 99, levelRequirement = 99, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, - [40] = { -18, 100, levelRequirement = 100, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [1] = { -36, 8, levelRequirement = 8, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [2] = { -36, 10, levelRequirement = 10, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [3] = { -35, 13, levelRequirement = 13, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [4] = { -35, 17, levelRequirement = 17, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [5] = { -35, 21, levelRequirement = 21, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [6] = { -34, 25, levelRequirement = 25, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [7] = { -34, 29, levelRequirement = 29, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [8] = { -34, 33, levelRequirement = 33, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [9] = { -33, 37, levelRequirement = 37, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [10] = { -33, 40, levelRequirement = 40, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [11] = { -33, 43, levelRequirement = 43, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [12] = { -32, 46, levelRequirement = 46, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [13] = { -32, 49, levelRequirement = 49, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [14] = { -32, 52, levelRequirement = 52, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [15] = { -31, 55, levelRequirement = 55, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [16] = { -31, 58, levelRequirement = 58, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [17] = { -31, 61, levelRequirement = 61, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [18] = { -30, 64, levelRequirement = 64, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [19] = { -30, 67, levelRequirement = 67, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [20] = { -30, 70, levelRequirement = 70, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [21] = { -29, 72, levelRequirement = 72, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [22] = { -29, 74, levelRequirement = 74, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [23] = { -29, 76, levelRequirement = 76, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [24] = { -28, 78, levelRequirement = 78, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [25] = { -28, 80, levelRequirement = 80, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [26] = { -28, 82, levelRequirement = 82, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [27] = { -27, 84, levelRequirement = 84, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [28] = { -27, 86, levelRequirement = 86, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [29] = { -27, 88, levelRequirement = 88, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [30] = { -26, 90, levelRequirement = 90, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [31] = { -26, 91, levelRequirement = 91, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [32] = { -26, 92, levelRequirement = 92, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [33] = { -26, 93, levelRequirement = 93, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [34] = { -26, 94, levelRequirement = 94, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [35] = { -26, 95, levelRequirement = 95, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [36] = { -25, 96, levelRequirement = 96, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [37] = { -25, 97, levelRequirement = 97, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [38] = { -25, 98, levelRequirement = 98, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [39] = { -25, 99, levelRequirement = 99, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, + [40] = { -25, 100, levelRequirement = 100, manaMultiplier = 20, statInterpolation = { 1, 1, }, }, }, } skills["SupportInspiration"] = { @@ -4928,8 +5037,8 @@ skills["SupportSpellTotem"] = { color = 1, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Totemable, SkillType.AND, }, - addSkillTypes = { SkillType.Trappable, SkillType.Mineable, SkillType.SummonsTotem, SkillType.ReservationBecomesCost, }, - excludeSkillTypes = { SkillType.InbuiltTrigger, }, + addSkillTypes = { SkillType.Trappable, SkillType.Mineable, SkillType.SummonsTotem, SkillType.ReservationBecomesCost, SkillType.SupportedBySpellTotem, }, + excludeSkillTypes = { SkillType.InbuiltTrigger, SkillType.SupportedByCrabTotem, }, ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", addFlags = { @@ -4961,46 +5070,46 @@ skills["SupportSpellTotem"] = { "totem_support_gem_level", }, levels = { - [1] = { -49, 8, levelRequirement = 8, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [2] = { -49, 10, levelRequirement = 10, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [3] = { -48, 13, levelRequirement = 13, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [4] = { -48, 17, levelRequirement = 17, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [5] = { -47, 21, levelRequirement = 21, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [6] = { -47, 25, levelRequirement = 25, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [7] = { -46, 29, levelRequirement = 29, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [8] = { -46, 33, levelRequirement = 33, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [9] = { -45, 37, levelRequirement = 37, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [10] = { -45, 40, levelRequirement = 40, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [11] = { -44, 43, levelRequirement = 43, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [12] = { -44, 46, levelRequirement = 46, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [13] = { -43, 49, levelRequirement = 49, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [14] = { -43, 52, levelRequirement = 52, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [15] = { -42, 55, levelRequirement = 55, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [16] = { -42, 58, levelRequirement = 58, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [17] = { -41, 61, levelRequirement = 61, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [18] = { -41, 64, levelRequirement = 64, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [19] = { -40, 67, levelRequirement = 67, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [20] = { -40, 70, levelRequirement = 70, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [21] = { -39, 72, levelRequirement = 72, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [22] = { -39, 74, levelRequirement = 74, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [23] = { -38, 76, levelRequirement = 76, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [24] = { -38, 78, levelRequirement = 78, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [25] = { -37, 80, levelRequirement = 80, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [26] = { -37, 82, levelRequirement = 82, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [27] = { -36, 84, levelRequirement = 84, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [28] = { -36, 86, levelRequirement = 86, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [29] = { -35, 88, levelRequirement = 88, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [30] = { -35, 90, levelRequirement = 90, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [31] = { -34, 91, levelRequirement = 91, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [32] = { -34, 92, levelRequirement = 92, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [33] = { -33, 93, levelRequirement = 93, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [34] = { -33, 94, levelRequirement = 94, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [35] = { -32, 95, levelRequirement = 95, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [36] = { -32, 96, levelRequirement = 96, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [37] = { -31, 97, levelRequirement = 97, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [38] = { -31, 98, levelRequirement = 98, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [39] = { -30, 99, levelRequirement = 99, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, - [40] = { -30, 100, levelRequirement = 100, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [1] = { -55, 8, levelRequirement = 8, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [2] = { -55, 10, levelRequirement = 10, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [3] = { -55, 13, levelRequirement = 13, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [4] = { -54, 17, levelRequirement = 17, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [5] = { -54, 21, levelRequirement = 21, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [6] = { -54, 25, levelRequirement = 25, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [7] = { -54, 29, levelRequirement = 29, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [8] = { -53, 33, levelRequirement = 33, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [9] = { -53, 37, levelRequirement = 37, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [10] = { -53, 40, levelRequirement = 40, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [11] = { -53, 43, levelRequirement = 43, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [12] = { -52, 46, levelRequirement = 46, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [13] = { -52, 49, levelRequirement = 49, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [14] = { -52, 52, levelRequirement = 52, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [15] = { -52, 55, levelRequirement = 55, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [16] = { -51, 58, levelRequirement = 58, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [17] = { -51, 61, levelRequirement = 61, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [18] = { -51, 64, levelRequirement = 64, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [19] = { -51, 67, levelRequirement = 67, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [20] = { -50, 70, levelRequirement = 70, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [21] = { -50, 72, levelRequirement = 72, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [22] = { -50, 74, levelRequirement = 74, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [23] = { -50, 76, levelRequirement = 76, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [24] = { -49, 78, levelRequirement = 78, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [25] = { -49, 80, levelRequirement = 80, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [26] = { -49, 82, levelRequirement = 82, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [27] = { -49, 84, levelRequirement = 84, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [28] = { -48, 86, levelRequirement = 86, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [29] = { -48, 88, levelRequirement = 88, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [30] = { -48, 90, levelRequirement = 90, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [31] = { -48, 91, levelRequirement = 91, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [32] = { -48, 92, levelRequirement = 92, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [33] = { -48, 93, levelRequirement = 93, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [34] = { -47, 94, levelRequirement = 94, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [35] = { -47, 95, levelRequirement = 95, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [36] = { -47, 96, levelRequirement = 96, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [37] = { -47, 97, levelRequirement = 97, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [38] = { -47, 98, levelRequirement = 98, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [39] = { -47, 99, levelRequirement = 99, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, + [40] = { -47, 100, levelRequirement = 100, manaMultiplier = 100, statInterpolation = { 1, 1, }, }, }, } skills["SupportStun"] = { diff --git a/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua b/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua index 5cba897b1a..221392269f 100644 --- a/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua @@ -1537,6 +1537,22 @@ return { } }, [60]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Mana Reservation of this Skill is always {0}%" + } + }, + stats={ + [1]="active_skill_always_reserves_unmodifiable_X%_of_mana" + } + }, + [61]={ [1]={ [1]={ limit={ @@ -1565,7 +1581,7 @@ return { [1]="active_skill_attack_damage_+%_final_with_two_handed_weapon" } }, - [61]={ + [62]={ [1]={ [1]={ limit={ @@ -1594,7 +1610,7 @@ return { [1]="active_skill_attack_speed_+%_final_with_two_handed_weapon" } }, - [62]={ + [63]={ [1]={ [1]={ limit={ @@ -1619,7 +1635,7 @@ return { [1]="active_skill_brands_allowed_on_enemy_+" } }, - [63]={ + [64]={ [1]={ [1]={ limit={ @@ -1644,7 +1660,7 @@ return { [1]="active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value" } }, - [64]={ + [65]={ [1]={ [1]={ limit={ @@ -1673,7 +1689,7 @@ return { [1]="active_skill_cast_speed_+%_final" } }, - [65]={ + [66]={ [1]={ [1]={ limit={ @@ -1702,7 +1718,7 @@ return { [1]="active_skill_critical_strike_chance_+%_final" } }, - [66]={ + [67]={ [1]={ [1]={ limit={ @@ -1731,7 +1747,7 @@ return { [1]="active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds" } }, - [67]={ + [68]={ [1]={ [1]={ limit={ @@ -1764,7 +1780,7 @@ return { [1]="active_skill_poison_duration_+%_final" } }, - [68]={ + [69]={ [1]={ [1]={ limit={ @@ -1793,7 +1809,7 @@ return { [1]="active_skill_quality_damage_+%_final" } }, - [69]={ + [70]={ [1]={ [1]={ limit={ @@ -1822,7 +1838,7 @@ return { [1]="active_skill_quality_duration_+%_final" } }, - [70]={ + [71]={ [1]={ [1]={ limit={ @@ -1838,7 +1854,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [71]={ + [72]={ [1]={ [1]={ limit={ @@ -1854,7 +1870,7 @@ return { [1]="added_fire_damage_to_attacks_equal_to_%_maximum_life" } }, - [72]={ + [73]={ [1]={ [1]={ limit={ @@ -1870,7 +1886,7 @@ return { [1]="added_physical_damage_to_attacks_equal_to_%_maximum_mana" } }, - [73]={ + [74]={ [1]={ [1]={ [1]={ @@ -1890,7 +1906,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [74]={ + [75]={ [1]={ [1]={ [1]={ @@ -1910,7 +1926,7 @@ return { [1]="additional_weapon_base_attack_time_ms" } }, - [75]={ + [76]={ [1]={ [1]={ limit={ @@ -1926,7 +1942,7 @@ return { [1]="additive_mine_duration_modifiers_apply_to_buff_effect_duration" } }, - [76]={ + [77]={ [1]={ [1]={ limit={ @@ -1955,7 +1971,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [77]={ + [78]={ [1]={ [1]={ limit={ @@ -1984,7 +2000,7 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [78]={ + [79]={ [1]={ [1]={ limit={ @@ -2013,7 +2029,7 @@ return { [1]="area_damage_+%" } }, - [79]={ + [80]={ [1]={ [1]={ limit={ @@ -2042,7 +2058,7 @@ return { [1]="area_of_effect_+%_while_dead" } }, - [80]={ + [81]={ [1]={ [1]={ limit={ @@ -2051,14 +2067,14 @@ return { [2]="#" } }, - text="[DNT] Create a spectral arrow after spending {0} Mana on Bow Skills" + text="DNT Create a spectral arrow after spending {0} Mana on Bow Skills" } }, stats={ [1]="arrowswarm_mana_spent_to_generate_arrow" } }, - [81]={ + [82]={ [1]={ [1]={ limit={ @@ -2067,7 +2083,7 @@ return { [2]=1 } }, - text="[DNT] Maximum {0} spectral arrow" + text="DNT Maximum {0} spectral arrow" }, [2]={ limit={ @@ -2076,14 +2092,14 @@ return { [2]="#" } }, - text="[DNT] Maximum {0} spectral arrows" + text="DNT Maximum {0} spectral arrows" } }, stats={ [1]="arrowswarm_maximum_allowed_arrows" } }, - [82]={ + [83]={ [1]={ [1]={ limit={ @@ -2112,7 +2128,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [83]={ + [84]={ [1]={ [1]={ limit={ @@ -2141,7 +2157,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [84]={ + [85]={ [1]={ [1]={ limit={ @@ -2162,7 +2178,7 @@ return { [2]="attack_maximum_added_chaos_damage" } }, - [85]={ + [86]={ [1]={ [1]={ limit={ @@ -2183,7 +2199,7 @@ return { [2]="attack_maximum_added_cold_damage" } }, - [86]={ + [87]={ [1]={ [1]={ limit={ @@ -2204,7 +2220,7 @@ return { [2]="attack_maximum_added_cold_damage_for_elemental_hit" } }, - [87]={ + [88]={ [1]={ [1]={ limit={ @@ -2225,7 +2241,7 @@ return { [2]="attack_maximum_added_fire_damage" } }, - [88]={ + [89]={ [1]={ [1]={ limit={ @@ -2246,7 +2262,7 @@ return { [2]="attack_maximum_added_fire_damage_for_elemental_hit" } }, - [89]={ + [90]={ [1]={ [1]={ limit={ @@ -2267,7 +2283,7 @@ return { [2]="attack_maximum_added_lightning_damage" } }, - [90]={ + [91]={ [1]={ [1]={ limit={ @@ -2288,7 +2304,7 @@ return { [2]="attack_maximum_added_lightning_damage_for_elemental_hit" } }, - [91]={ + [92]={ [1]={ [1]={ limit={ @@ -2309,7 +2325,7 @@ return { [2]="attack_maximum_added_physical_damage" } }, - [92]={ + [93]={ [1]={ [1]={ limit={ @@ -2325,7 +2341,7 @@ return { [1]="attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana" } }, - [93]={ + [94]={ [1]={ [1]={ limit={ @@ -2354,7 +2370,7 @@ return { [1]="attack_speed_+%" } }, - [94]={ + [95]={ [1]={ [1]={ limit={ @@ -2383,7 +2399,7 @@ return { [1]="attack_speed_+%_granted_from_skill" } }, - [95]={ + [96]={ [1]={ [1]={ limit={ @@ -2408,7 +2424,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [96]={ + [97]={ [1]={ [1]={ limit={ @@ -2433,7 +2449,7 @@ return { [1]="base_added_cooldown_count" } }, - [97]={ + [98]={ [1]={ [1]={ [1]={ @@ -2470,7 +2486,7 @@ return { [1]="base_ailment_damage_+%" } }, - [98]={ + [99]={ [1]={ [1]={ limit={ @@ -2499,7 +2515,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [99]={ + [100]={ [1]={ [1]={ [1]={ @@ -2532,7 +2548,7 @@ return { [1]="base_blackhole_tick_rate_ms" } }, - [100]={ + [101]={ [1]={ [1]={ [1]={ @@ -2552,7 +2568,7 @@ return { [1]="base_blade_vortex_hit_rate_ms" } }, - [101]={ + [102]={ [1]={ [1]={ limit={ @@ -2581,7 +2597,7 @@ return { [1]="base_bleed_duration_+%" } }, - [102]={ + [103]={ [1]={ [1]={ limit={ @@ -2610,7 +2626,7 @@ return { [1]="base_cast_speed_+%" } }, - [103]={ + [104]={ [1]={ [1]={ [1]={ @@ -2669,7 +2685,7 @@ return { [2]="always_freeze" } }, - [104]={ + [105]={ [1]={ [1]={ [1]={ @@ -2702,7 +2718,7 @@ return { [1]="base_chance_to_ignite_%" } }, - [105]={ + [106]={ [1]={ [1]={ [1]={ @@ -2735,7 +2751,7 @@ return { [1]="base_chance_to_shock_%" } }, - [106]={ + [107]={ [1]={ [1]={ limit={ @@ -2751,7 +2767,7 @@ return { [1]="base_circle_of_power_mana_spend_per_upgrade" } }, - [107]={ + [108]={ [1]={ [1]={ limit={ @@ -2780,7 +2796,7 @@ return { [1]="base_cost_+%" } }, - [108]={ + [109]={ [1]={ [1]={ limit={ @@ -2796,7 +2812,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [109]={ + [110]={ [1]={ [1]={ limit={ @@ -2825,7 +2841,7 @@ return { [1]="base_curse_duration_+%" } }, - [110]={ + [111]={ [1]={ [1]={ [1]={ @@ -2858,7 +2874,7 @@ return { [1]="base_galvanic_field_beam_delay_ms" } }, - [111]={ + [112]={ [1]={ [1]={ [1]={ @@ -2878,7 +2894,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [112]={ + [113]={ [1]={ [1]={ limit={ @@ -2907,7 +2923,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [113]={ + [114]={ [1]={ [1]={ limit={ @@ -2936,7 +2952,7 @@ return { [1]="base_life_cost_+%" } }, - [114]={ + [115]={ [1]={ [1]={ limit={ @@ -2965,7 +2981,7 @@ return { [1]="base_life_gain_per_target" } }, - [115]={ + [116]={ [1]={ [1]={ [1]={ @@ -2989,7 +3005,7 @@ return { [1]="base_life_leech_from_attack_damage_permyriad" } }, - [116]={ + [117]={ [1]={ [1]={ limit={ @@ -3018,7 +3034,7 @@ return { [1]="base_life_reservation_+%" } }, - [117]={ + [118]={ [1]={ [1]={ limit={ @@ -3047,7 +3063,7 @@ return { [1]="base_mana_cost_-%" } }, - [118]={ + [119]={ [1]={ [1]={ limit={ @@ -3076,7 +3092,7 @@ return { [1]="base_mana_reservation_+%" } }, - [119]={ + [120]={ [1]={ [1]={ limit={ @@ -3092,7 +3108,7 @@ return { [1]="base_max_number_of_absolution_sentinels" } }, - [120]={ + [121]={ [1]={ [1]={ [1]={ @@ -3112,7 +3128,7 @@ return { [1]="base_mine_detonation_time_ms" } }, - [121]={ + [122]={ [1]={ [1]={ limit={ @@ -3257,7 +3273,7 @@ return { [3]="artillery_ballista_number_of_arrows_is_equal_to_number_of_nearby_targets" } }, - [122]={ + [123]={ [1]={ [1]={ limit={ @@ -3282,7 +3298,7 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [123]={ + [124]={ [1]={ [1]={ limit={ @@ -3298,7 +3314,7 @@ return { [1]="base_number_of_living_lightning_allowed" } }, - [124]={ + [125]={ [1]={ [1]={ ["gem_quality"]=true, @@ -3343,7 +3359,7 @@ return { [1]="base_number_of_projectiles" } }, - [125]={ + [126]={ [1]={ [1]={ limit={ @@ -3368,7 +3384,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [126]={ + [127]={ [1]={ [1]={ limit={ @@ -3384,7 +3400,7 @@ return { [1]="base_physical_damage_%_to_convert_to_lightning" } }, - [127]={ + [128]={ [1]={ [1]={ limit={ @@ -3413,7 +3429,7 @@ return { [1]="base_poison_duration_+%" } }, - [128]={ + [129]={ [1]={ [1]={ limit={ @@ -3442,7 +3458,7 @@ return { [1]="base_projectile_speed_+%" } }, - [129]={ + [130]={ [1]={ [1]={ limit={ @@ -3458,7 +3474,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [130]={ + [131]={ [1]={ [1]={ limit={ @@ -3474,7 +3490,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [131]={ + [132]={ [1]={ [1]={ limit={ @@ -3490,7 +3506,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [132]={ + [133]={ [1]={ [1]={ limit={ @@ -3519,7 +3535,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [133]={ + [134]={ [1]={ [1]={ limit={ @@ -3548,7 +3564,7 @@ return { [1]="base_reservation_+%" } }, - [134]={ + [135]={ [1]={ [1]={ limit={ @@ -3577,7 +3593,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [135]={ + [136]={ [1]={ [1]={ limit={ @@ -3606,7 +3622,7 @@ return { [1]="base_stun_duration_+%" } }, - [136]={ + [137]={ [1]={ [1]={ limit={ @@ -3622,7 +3638,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [137]={ + [138]={ [1]={ [1]={ limit={ @@ -3651,7 +3667,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [138]={ + [139]={ [1]={ [1]={ [1]={ @@ -3727,7 +3743,7 @@ return { [2]="quality_display_blade_trap_is_gem" } }, - [139]={ + [140]={ [1]={ [1]={ limit={ @@ -3743,7 +3759,7 @@ return { [1]="berserk_base_rage_loss_per_second" } }, - [140]={ + [141]={ [1]={ [1]={ [1]={ @@ -3776,7 +3792,7 @@ return { [1]="bladefall_base_volley_frequency_ms" } }, - [141]={ + [142]={ [1]={ [1]={ [1]={ @@ -3809,7 +3825,7 @@ return { [1]="bladefall_blade_left_in_ground_for_every_X_volleys" } }, - [142]={ + [143]={ [1]={ [1]={ [1]={ @@ -3842,7 +3858,7 @@ return { [1]="bladefall_create_X_lingering_blades_per_volley" } }, - [143]={ + [144]={ [1]={ [1]={ limit={ @@ -3902,7 +3918,7 @@ return { [2]="quality_display_bladefall_is_gem" } }, - [144]={ + [145]={ [1]={ [1]={ limit={ @@ -3918,7 +3934,7 @@ return { [1]="bladefall_volley_frequency_+%_per_100_maximum_mana" } }, - [145]={ + [146]={ [1]={ [1]={ limit={ @@ -3947,7 +3963,7 @@ return { [1]="blades_left_in_ground_+%_final_if_not_hand_cast" } }, - [146]={ + [147]={ [1]={ [1]={ limit={ @@ -3976,7 +3992,7 @@ return { [1]="blind_duration_+%" } }, - [147]={ + [148]={ [1]={ [1]={ [1]={ @@ -3996,7 +4012,7 @@ return { [1]="blood_spears_additional_number_of_spears_if_changed_stance_recently" } }, - [148]={ + [149]={ [1]={ [1]={ limit={ @@ -4060,7 +4076,7 @@ return { [2]="quality_display_perforate_is_gem" } }, - [149]={ + [150]={ [1]={ [1]={ limit={ @@ -4089,7 +4105,7 @@ return { [1]="blood_spears_damage_+%_final_in_blood_stance" } }, - [150]={ + [151]={ [1]={ [1]={ limit={ @@ -4105,7 +4121,7 @@ return { [1]="brands_reattach_on_activation" } }, - [151]={ + [152]={ [1]={ [1]={ limit={ @@ -4134,7 +4150,7 @@ return { [1]="burn_damage_+%" } }, - [152]={ + [153]={ [1]={ [1]={ limit={ @@ -4159,7 +4175,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [153]={ + [154]={ [1]={ [1]={ limit={ @@ -4175,7 +4191,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [154]={ + [155]={ [1]={ [1]={ limit={ @@ -4191,7 +4207,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [155]={ + [156]={ [1]={ [1]={ [1]={ @@ -4232,7 +4248,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [156]={ + [157]={ [1]={ [1]={ limit={ @@ -4257,7 +4273,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [157]={ + [158]={ [1]={ [1]={ [1]={ @@ -4277,7 +4293,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [158]={ + [159]={ [1]={ [1]={ [1]={ @@ -4310,7 +4326,7 @@ return { [1]="chance_to_scorch_%" } }, - [159]={ + [160]={ [1]={ [1]={ limit={ @@ -4339,7 +4355,7 @@ return { [1]="chaos_damage_+%" } }, - [160]={ + [161]={ [1]={ [1]={ limit={ @@ -4368,7 +4384,7 @@ return { [1]="chill_duration_+%" } }, - [161]={ + [162]={ [1]={ [1]={ limit={ @@ -4397,7 +4413,7 @@ return { [1]="chill_effect_+%" } }, - [162]={ + [163]={ [1]={ [1]={ limit={ @@ -4426,7 +4442,7 @@ return { [1]="circle_of_power_skill_cost_mana_cost_+%" } }, - [163]={ + [164]={ [1]={ [1]={ limit={ @@ -4455,7 +4471,7 @@ return { [1]="cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain" } }, - [164]={ + [165]={ [1]={ [1]={ [1]={ @@ -4492,7 +4508,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [165]={ + [166]={ [1]={ [1]={ limit={ @@ -4508,7 +4524,7 @@ return { [1]="cold_damage_%_to_add_as_fire" } }, - [166]={ + [167]={ [1]={ [1]={ limit={ @@ -4537,7 +4553,7 @@ return { [1]="cold_damage_+%" } }, - [167]={ + [168]={ [1]={ [1]={ limit={ @@ -4553,7 +4569,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [168]={ + [169]={ [1]={ [1]={ limit={ @@ -4582,7 +4598,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [169]={ + [170]={ [1]={ [1]={ limit={ @@ -4611,7 +4627,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [170]={ + [171]={ [1]={ [1]={ limit={ @@ -4640,7 +4656,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [171]={ + [172]={ [1]={ [1]={ limit={ @@ -4669,9 +4685,19 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [172]={ + [173]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maximum of {0:+d} Geysers at a time" + }, + [2]={ limit={ [1]={ [1]=1, @@ -4685,7 +4711,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [173]={ + [174]={ [1]={ [1]={ limit={ @@ -4714,7 +4740,7 @@ return { [1]="cremation_fires_projectiles_faster_+%_final" } }, - [174]={ + [175]={ [1]={ [1]={ limit={ @@ -4730,7 +4756,7 @@ return { [1]="critical_ailment_dot_multiplier_+" } }, - [175]={ + [176]={ [1]={ [1]={ limit={ @@ -4746,7 +4772,7 @@ return { [1]="critical_multiplier_+%_per_100_max_es_on_shield" } }, - [176]={ + [177]={ [1]={ [1]={ limit={ @@ -4775,7 +4801,7 @@ return { [1]="critical_strike_chance_+%" } }, - [177]={ + [178]={ [1]={ [1]={ limit={ @@ -4804,7 +4830,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [178]={ + [179]={ [1]={ [1]={ limit={ @@ -4833,7 +4859,7 @@ return { [1]="damage_over_time_+%" } }, - [179]={ + [180]={ [1]={ [1]={ limit={ @@ -4862,7 +4888,7 @@ return { [1]="damage_+%" } }, - [180]={ + [181]={ [1]={ [1]={ limit={ @@ -4891,7 +4917,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [181]={ + [182]={ [1]={ [1]={ limit={ @@ -4920,7 +4946,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [182]={ + [183]={ [1]={ [1]={ limit={ @@ -4949,7 +4975,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [183]={ + [184]={ [1]={ [1]={ limit={ @@ -4978,7 +5004,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [184]={ + [185]={ [1]={ [1]={ [1]={ @@ -5015,7 +5041,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [185]={ + [186]={ [1]={ [1]={ limit={ @@ -5044,7 +5070,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [186]={ + [187]={ [1]={ [1]={ limit={ @@ -5073,7 +5099,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [187]={ + [188]={ [1]={ [1]={ limit={ @@ -5102,7 +5128,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [188]={ + [189]={ [1]={ [1]={ [1]={ @@ -5139,7 +5165,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [189]={ + [190]={ [1]={ [1]={ limit={ @@ -5168,7 +5194,7 @@ return { [1]="damage_+%_with_hits_and_ailments" } }, - [190]={ + [191]={ [1]={ [1]={ [1]={ @@ -5205,7 +5231,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [191]={ + [192]={ [1]={ [1]={ limit={ @@ -5221,7 +5247,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [192]={ + [193]={ [1]={ [1]={ [1]={ @@ -5241,7 +5267,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [193]={ + [194]={ [1]={ [1]={ [1]={ @@ -5261,7 +5287,7 @@ return { [1]="display_base_intensity_loss" } }, - [194]={ + [195]={ [1]={ [1]={ limit={ @@ -5277,7 +5303,7 @@ return { [1]="display_fixed_area" } }, - [195]={ + [196]={ [1]={ [1]={ limit={ @@ -5293,7 +5319,7 @@ return { [1]="display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed" } }, - [196]={ + [197]={ [1]={ [1]={ limit={ @@ -5309,7 +5335,7 @@ return { [1]="divine_tempest_base_number_of_nearby_enemies_to_zap" } }, - [197]={ + [198]={ [1]={ [1]={ limit={ @@ -5325,7 +5351,7 @@ return { [1]="dot_multiplier_+" } }, - [198]={ + [199]={ [1]={ [1]={ limit={ @@ -5354,7 +5380,7 @@ return { [1]="elemental_damage_+%" } }, - [199]={ + [200]={ [1]={ [1]={ [1]={ @@ -5374,7 +5400,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [200]={ + [201]={ [1]={ [1]={ [1]={ @@ -5407,7 +5433,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [201]={ + [202]={ [1]={ [1]={ limit={ @@ -5432,7 +5458,7 @@ return { [1]="display_eye_of_winter_projectile_modifier" } }, - [202]={ + [203]={ [1]={ [1]={ [1]={ @@ -5452,7 +5478,7 @@ return { [1]="faster_bleed_%" } }, - [203]={ + [204]={ [1]={ [1]={ [1]={ @@ -5485,7 +5511,7 @@ return { [1]="faster_burn_%" } }, - [204]={ + [205]={ [1]={ [1]={ [1]={ @@ -5509,7 +5535,7 @@ return { [1]="faster_poison_%" } }, - [205]={ + [206]={ [1]={ [1]={ limit={ @@ -5538,7 +5564,7 @@ return { [1]="fire_damage_+%" } }, - [206]={ + [207]={ [1]={ [1]={ limit={ @@ -5567,7 +5593,7 @@ return { [1]="firestorm_explosion_area_of_effect_+%" } }, - [207]={ + [208]={ [1]={ [1]={ limit={ @@ -5588,7 +5614,7 @@ return { [2]="flame_link_maximum_fire_damage" } }, - [208]={ + [209]={ [1]={ [1]={ limit={ @@ -5604,7 +5630,7 @@ return { [1]="flame_link_added_fire_damage_from_life_%" } }, - [209]={ + [210]={ [1]={ [1]={ limit={ @@ -5633,7 +5659,7 @@ return { [1]="fortify_duration_+%" } }, - [210]={ + [211]={ [1]={ [1]={ limit={ @@ -5662,7 +5688,7 @@ return { [1]="freeze_duration_+%" } }, - [211]={ + [212]={ [1]={ [1]={ [1]={ @@ -5682,7 +5708,7 @@ return { [1]="gain_%_of_base_dagger_damage_as_added_spell_damage" } }, - [212]={ + [213]={ [1]={ [1]={ limit={ @@ -5707,7 +5733,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [213]={ + [214]={ [1]={ [1]={ [1]={ @@ -5727,7 +5753,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [214]={ + [215]={ [1]={ [1]={ limit={ @@ -5748,7 +5774,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [215]={ + [216]={ [1]={ [1]={ limit={ @@ -5769,7 +5795,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [216]={ + [217]={ [1]={ [1]={ limit={ @@ -5790,7 +5816,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [217]={ + [218]={ [1]={ [1]={ limit={ @@ -5811,7 +5837,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [218]={ + [219]={ [1]={ [1]={ limit={ @@ -5832,7 +5858,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [219]={ + [220]={ [1]={ [1]={ limit={ @@ -5848,7 +5874,7 @@ return { [1]="global_reduce_enemy_block_%" } }, - [220]={ + [221]={ [1]={ [1]={ limit={ @@ -5877,7 +5903,7 @@ return { [1]="golem_buff_effect_+%" } }, - [221]={ + [222]={ [1]={ [1]={ [1]={ @@ -5902,7 +5928,7 @@ return { [2]="graft_granted_maximum_base_lightning_damage" } }, - [222]={ + [223]={ [1]={ [1]={ limit={ @@ -5931,7 +5957,7 @@ return { [1]="graft_skill_esh_jolt_damage_taken_+%_to_grant" } }, - [223]={ + [224]={ [1]={ [1]={ limit={ @@ -5960,7 +5986,7 @@ return { [1]="graft_skill_esh_jolt_maximum_attack_damage_+%_final_to_grant" } }, - [224]={ + [225]={ [1]={ [1]={ limit={ @@ -5985,7 +6011,7 @@ return { [1]="graft_skill_esh_lightning_bolts_number_of_bolts" } }, - [225]={ + [226]={ [1]={ [1]={ limit={ @@ -6010,7 +6036,7 @@ return { [1]="graft_skill_esh_lightning_clones_number_of_clones_to_create" } }, - [226]={ + [227]={ [1]={ [1]={ limit={ @@ -6035,7 +6061,7 @@ return { [1]="graft_skill_esh_lightning_hands_maximum_hands" } }, - [227]={ + [228]={ [1]={ [1]={ limit={ @@ -6060,7 +6086,7 @@ return { [1]="graft_skill_esh_lightning_hands_number_of_hands_spawned" } }, - [228]={ + [229]={ [1]={ [1]={ limit={ @@ -6076,7 +6102,7 @@ return { [1]="graft_skill_tul_aegis_aegis_shield_amount_granted_on_applying_exposure" } }, - [229]={ + [230]={ [1]={ [1]={ limit={ @@ -6101,7 +6127,7 @@ return { [1]="graft_skill_tul_mortars_maximum_mortars_fired_per_volley" } }, - [230]={ + [231]={ [1]={ [1]={ ["gem_quality"]=true, @@ -6127,7 +6153,7 @@ return { [1]="base_graft_skill_tul_summon_maximum_allowed_demons" } }, - [231]={ + [232]={ [1]={ [1]={ limit={ @@ -6143,7 +6169,7 @@ return { [1]="graft_skill_tul_summon_number_of_demons_to_summon" } }, - [232]={ + [233]={ [1]={ [1]={ limit={ @@ -6168,7 +6194,7 @@ return { [1]="graft_skill_uulnet_bone_spires_max_spires_allowed" } }, - [233]={ + [234]={ [1]={ [1]={ limit={ @@ -6193,7 +6219,7 @@ return { [1]="graft_skill_uulnetol_bone_spires_num_of_spires_to_create" } }, - [234]={ + [235]={ [1]={ [1]={ limit={ @@ -6218,7 +6244,7 @@ return { [1]="graft_skill_uulnetol_hand_slam_number_of_hands_to_create" } }, - [235]={ + [236]={ [1]={ [1]={ [1]={ @@ -6238,7 +6264,7 @@ return { [1]="graft_skill_uulnetol_impale_buff_%_chance_for_additional_impale_to_grant" } }, - [236]={ + [237]={ [1]={ [1]={ limit={ @@ -6263,7 +6289,7 @@ return { [1]="graft_skill_uulnetol_impale_buff_additional_impales_to_grant" } }, - [237]={ + [238]={ [1]={ [1]={ [1]={ @@ -6283,7 +6309,7 @@ return { [1]="graft_skill_uulnetol_impale_buff_impale_effect_%_to_grant" } }, - [238]={ + [239]={ [1]={ [1]={ limit={ @@ -6299,7 +6325,7 @@ return { [1]="graft_skill_xoph_ailment_buff_%_of_physical_damage_gained_as_element_to_grant" } }, - [239]={ + [240]={ [1]={ [1]={ limit={ @@ -6324,7 +6350,7 @@ return { [1]="graft_skill_xoph_geyser_explosion_maximum_geysers" } }, - [240]={ + [241]={ [1]={ [1]={ limit={ @@ -6349,7 +6375,7 @@ return { [1]="graft_skill_xoph_geyser_explosion_number_of_geysers_to_spawn" } }, - [241]={ + [242]={ [1]={ [1]={ limit={ @@ -6365,7 +6391,7 @@ return { [1]="graft_skill_xoph_geyser_explosion_number_of_projectiles_to_erupt" } }, - [242]={ + [243]={ [1]={ [1]={ limit={ @@ -6394,7 +6420,7 @@ return { [1]="graft_uulnetol_life_recovery_rate_+%_final_to_grant_on_reaching_low_life" } }, - [243]={ + [244]={ [1]={ [1]={ limit={ @@ -6419,7 +6445,7 @@ return { [1]="graft_uulnetol_number_of_endurance_charges_to_grant_on_reaching_low_life" } }, - [244]={ + [245]={ [1]={ [1]={ [1]={ @@ -6439,7 +6465,7 @@ return { [1]="herald_of_thunder_bolt_base_frequency" } }, - [245]={ + [246]={ [1]={ [1]={ limit={ @@ -6464,7 +6490,7 @@ return { [1]="herald_of_thunder_bolt_frequency_+%" } }, - [246]={ + [247]={ [1]={ [1]={ limit={ @@ -6493,7 +6519,7 @@ return { [1]="hit_damage_+%" } }, - [247]={ + [248]={ [1]={ [1]={ limit={ @@ -6522,7 +6548,7 @@ return { [1]="holy_flame_totem_consecrated_ground_area_+%" } }, - [248]={ + [249]={ [1]={ [1]={ [1]={ @@ -6542,7 +6568,7 @@ return { [1]="hydro_sphere_base_pulse_frequency_ms" } }, - [249]={ + [250]={ [1]={ [1]={ limit={ @@ -6593,7 +6619,7 @@ return { [2]="quality_display_hydrosphere_is_gem" } }, - [250]={ + [251]={ [1]={ [1]={ limit={ @@ -6622,7 +6648,7 @@ return { [1]="ignite_duration_+%" } }, - [251]={ + [252]={ [1]={ [1]={ limit={ @@ -6651,7 +6677,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [252]={ + [253]={ [1]={ [1]={ limit={ @@ -6667,7 +6693,7 @@ return { [1]="kinetic_blast_modifiers_to_number_of_projectiles_instead_apply_to_number_of_clusters" } }, - [253]={ + [254]={ [1]={ [1]={ limit={ @@ -6683,7 +6709,7 @@ return { [1]="kinetic_wand_base_number_of_zig_zags" } }, - [254]={ + [255]={ [1]={ [1]={ limit={ @@ -6712,7 +6738,7 @@ return { [1]="knockback_distance_+%" } }, - [255]={ + [256]={ [1]={ [1]={ [1]={ @@ -6736,7 +6762,7 @@ return { [1]="life_leech_from_any_damage_permyriad" } }, - [256]={ + [257]={ [1]={ [1]={ [1]={ @@ -6773,7 +6799,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [257]={ + [258]={ [1]={ [1]={ limit={ @@ -6789,7 +6815,7 @@ return { [1]="lightning_damage_%_to_add_as_chaos" } }, - [258]={ + [259]={ [1]={ [1]={ limit={ @@ -6818,7 +6844,7 @@ return { [1]="lightning_damage_+%" } }, - [259]={ + [260]={ [1]={ [1]={ [1]={ @@ -6838,7 +6864,7 @@ return { [1]="lightning_tower_trap_base_interval_duration_ms" } }, - [260]={ + [261]={ [1]={ [1]={ limit={ @@ -6854,7 +6880,7 @@ return { [1]="magma_orb_%_chance_to_big_explode_instead_of_chaining" } }, - [261]={ + [262]={ [1]={ [1]={ limit={ @@ -6883,7 +6909,7 @@ return { [1]="maim_effect_+%" } }, - [262]={ + [263]={ [1]={ [1]={ limit={ @@ -6912,7 +6938,7 @@ return { [1]="mana_gain_per_target" } }, - [263]={ + [264]={ [1]={ [1]={ [1]={ @@ -6936,7 +6962,7 @@ return { [1]="mana_leech_from_any_damage_permyriad" } }, - [264]={ + [265]={ [1]={ [1]={ limit={ @@ -6961,7 +6987,7 @@ return { [1]="base_max_number_of_dominated_magic_monsters" } }, - [265]={ + [266]={ [1]={ [1]={ limit={ @@ -6986,7 +7012,7 @@ return { [1]="base_max_number_of_dominated_normal_monsters" } }, - [266]={ + [267]={ [1]={ [1]={ limit={ @@ -7011,7 +7037,7 @@ return { [1]="base_max_number_of_dominated_rare_monsters" } }, - [267]={ + [268]={ [1]={ [1]={ limit={ @@ -7040,7 +7066,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_+%" } }, - [268]={ + [269]={ [1]={ [1]={ limit={ @@ -7069,7 +7095,7 @@ return { [1]="maximum_life_leech_amount_per_leech_+%" } }, - [269]={ + [270]={ [1]={ [1]={ [1]={ @@ -7106,7 +7132,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [270]={ + [271]={ [1]={ [1]={ limit={ @@ -7131,7 +7157,7 @@ return { [1]="base_number_of_blink_mirror_arrow_elemental_hit_clones" } }, - [271]={ + [272]={ [1]={ [1]={ limit={ @@ -7156,7 +7182,7 @@ return { [1]="base_number_of_blink_mirror_arrow_rain_of_arrows_clones" } }, - [272]={ + [273]={ [1]={ [1]={ limit={ @@ -7181,7 +7207,7 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [273]={ + [274]={ [1]={ [1]={ limit={ @@ -7210,7 +7236,7 @@ return { [1]="melee_damage_+%" } }, - [274]={ + [275]={ [1]={ [1]={ limit={ @@ -7239,7 +7265,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [275]={ + [276]={ [1]={ [1]={ limit={ @@ -7268,7 +7294,7 @@ return { [1]="melee_physical_damage_+%" } }, - [276]={ + [277]={ [1]={ [1]={ limit={ @@ -7297,7 +7323,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [277]={ + [278]={ [1]={ [1]={ limit={ @@ -7326,7 +7352,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [278]={ + [279]={ [1]={ [1]={ limit={ @@ -7355,7 +7381,7 @@ return { [1]="mine_duration_+%" } }, - [279]={ + [280]={ [1]={ [1]={ limit={ @@ -7384,7 +7410,7 @@ return { [1]="mine_laying_speed_+%" } }, - [280]={ + [281]={ [1]={ [1]={ limit={ @@ -7400,7 +7426,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [281]={ + [282]={ [1]={ [1]={ limit={ @@ -7416,7 +7442,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [282]={ + [283]={ [1]={ [1]={ limit={ @@ -7432,7 +7458,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_chaining" } }, - [283]={ + [284]={ [1]={ [1]={ limit={ @@ -7448,7 +7474,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" } }, - [284]={ + [285]={ [1]={ [1]={ limit={ @@ -7464,7 +7490,7 @@ return { [1]="modifiers_to_projectile_count_do_not_apply" } }, - [285]={ + [286]={ [1]={ [1]={ limit={ @@ -7480,7 +7506,7 @@ return { [1]="modifiers_to_trap_throw_speed_apply_to_lightning_spire_trap_frequency" } }, - [286]={ + [287]={ [1]={ [1]={ limit={ @@ -7496,7 +7522,7 @@ return { [1]="modifiers_to_trap_throw_speed_apply_to_seismic_trap_frequency" } }, - [287]={ + [288]={ [1]={ [1]={ limit={ @@ -7525,7 +7551,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [288]={ + [289]={ [1]={ [1]={ limit={ @@ -7550,7 +7576,7 @@ return { [1]="number_of_additional_arrows" } }, - [289]={ + [290]={ [1]={ [1]={ limit={ @@ -7575,7 +7601,7 @@ return { [1]="number_of_additional_projectiles" } }, - [290]={ + [291]={ [1]={ [1]={ limit={ @@ -7591,7 +7617,7 @@ return { [1]="number_of_chains" } }, - [291]={ + [292]={ [1]={ [1]={ limit={ @@ -7616,7 +7642,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [292]={ + [293]={ [1]={ [1]={ limit={ @@ -7641,7 +7667,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [293]={ + [294]={ [1]={ [1]={ limit={ @@ -7666,7 +7692,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [294]={ + [295]={ [1]={ [1]={ limit={ @@ -7713,7 +7739,7 @@ return { [2]="quality_display_animate_weapon_is_gem" } }, - [295]={ + [296]={ [1]={ [1]={ limit={ @@ -7742,7 +7768,7 @@ return { [1]="number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed" } }, - [296]={ + [297]={ [1]={ [1]={ limit={ @@ -7767,7 +7793,7 @@ return { [1]="base_number_of_reapers_allowed" } }, - [297]={ + [298]={ [1]={ [1]={ limit={ @@ -7792,7 +7818,7 @@ return { [1]="base_number_of_void_spawns_allowed" } }, - [298]={ + [299]={ [1]={ [1]={ [1]={ @@ -7825,7 +7851,7 @@ return { [1]="orb_of_storms_base_bolt_frequency_ms" } }, - [299]={ + [300]={ [1]={ [1]={ [1]={ @@ -7858,7 +7884,7 @@ return { [1]="orb_of_storms_base_channelling_bolt_frequency_ms" } }, - [300]={ + [301]={ [1]={ [1]={ [1]={ @@ -7878,7 +7904,7 @@ return { [1]="phys_cascade_trap_base_interval_duration_ms" } }, - [301]={ + [302]={ [1]={ [1]={ limit={ @@ -7894,7 +7920,7 @@ return { [1]="physical_damage_%_to_add_as_fire" } }, - [302]={ + [303]={ [1]={ [1]={ limit={ @@ -7910,7 +7936,7 @@ return { [1]="physical_damage_%_to_add_as_lightning" } }, - [303]={ + [304]={ [1]={ [1]={ limit={ @@ -7939,7 +7965,7 @@ return { [1]="physical_damage_+%" } }, - [304]={ + [305]={ [1]={ [1]={ limit={ @@ -7968,7 +7994,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [305]={ + [306]={ [1]={ [1]={ limit={ @@ -7993,7 +8019,7 @@ return { [1]="power_siphon_base_fire_at_x_targets" } }, - [306]={ + [307]={ [1]={ [1]={ limit={ @@ -8022,7 +8048,7 @@ return { [1]="precision_grants_area_of_effect_+%_final" } }, - [307]={ + [308]={ [1]={ [1]={ limit={ @@ -8047,7 +8073,7 @@ return { [1]="primary_projectile_chains_+" } }, - [308]={ + [309]={ [1]={ [1]={ [1]={ @@ -8080,7 +8106,7 @@ return { [1]="prismatic_rain_beam_base_frequency_ms" } }, - [309]={ + [310]={ [1]={ [1]={ limit={ @@ -8105,7 +8131,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, - [310]={ + [311]={ [1]={ [1]={ limit={ @@ -8134,7 +8160,7 @@ return { [1]="projectile_damage_+%" } }, - [311]={ + [312]={ [1]={ [1]={ limit={ @@ -8150,7 +8176,7 @@ return { [1]="projectile_number_to_split" } }, - [312]={ + [313]={ [1]={ [1]={ limit={ @@ -8197,7 +8223,7 @@ return { [2]="projectile_return_%_chance" } }, - [313]={ + [314]={ [1]={ [1]={ limit={ @@ -8218,7 +8244,7 @@ return { [2]="quick_guard_damage_absorb_limit" } }, - [314]={ + [315]={ [1]={ [1]={ limit={ @@ -8243,7 +8269,7 @@ return { [1]="rain_of_arrows_additional_sequences" } }, - [315]={ + [316]={ [1]={ [1]={ limit={ @@ -8259,7 +8285,7 @@ return { [1]="raise_zombie_does_not_use_corpses" } }, - [316]={ + [317]={ [1]={ [1]={ limit={ @@ -8275,7 +8301,7 @@ return { [1]="reave_additional_max_stacks" } }, - [317]={ + [318]={ [1]={ [1]={ limit={ @@ -8291,7 +8317,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [318]={ + [319]={ [1]={ [1]={ limit={ @@ -8307,7 +8333,7 @@ return { [1]="reduce_enemy_dodge_%" } }, - [319]={ + [320]={ [1]={ [1]={ limit={ @@ -8323,7 +8349,7 @@ return { [1]="regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [320]={ + [321]={ [1]={ [1]={ limit={ @@ -8352,7 +8378,7 @@ return { [1]="retaliation_use_window_duration_+%" } }, - [321]={ + [322]={ [1]={ [1]={ limit={ @@ -8381,7 +8407,7 @@ return { [1]="secondary_skill_effect_duration_+%" } }, - [322]={ + [323]={ [1]={ [1]={ limit={ @@ -8410,7 +8436,7 @@ return { [1]="seismic_trap_frequency_+%" } }, - [323]={ + [324]={ [1]={ [1]={ limit={ @@ -8439,7 +8465,7 @@ return { [1]="shock_duration_+%" } }, - [324]={ + [325]={ [1]={ [1]={ limit={ @@ -8455,7 +8481,7 @@ return { [1]="skill_base_chaos_damage_%_maximum_energy_shield" } }, - [325]={ + [326]={ [1]={ [1]={ limit={ @@ -8471,7 +8497,7 @@ return { [1]="skill_base_chaos_damage_%_maximum_life" } }, - [326]={ + [327]={ [1]={ [1]={ limit={ @@ -8487,7 +8513,7 @@ return { [1]="skill_cold_damage_%_to_convert_to_fire" } }, - [327]={ + [328]={ [1]={ [1]={ limit={ @@ -8503,7 +8529,23 @@ return { [1]="skill_fire_damage_%_to_convert_to_chaos" } }, - [328]={ + [329]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deals base Lightning Damage equal to {0}% of Maximum Mana" + } + }, + stats={ + [1]="skill_has_added_lightning_damage_equal_to_%_of_maximum_mana" + } + }, + [330]={ [1]={ [1]={ limit={ @@ -8519,7 +8561,7 @@ return { [1]="skill_lightning_damage_%_to_convert_to_chaos" } }, - [329]={ + [331]={ [1]={ [1]={ limit={ @@ -8535,7 +8577,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_chaos" } }, - [330]={ + [332]={ [1]={ [1]={ limit={ @@ -8556,7 +8598,7 @@ return { [2]="active_skill_display_suppress_physical_to_cold_damage_conversion" } }, - [331]={ + [333]={ [1]={ [1]={ limit={ @@ -8572,7 +8614,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_fire" } }, - [332]={ + [334]={ [1]={ [1]={ limit={ @@ -8588,7 +8630,7 @@ return { [1]="snapping_adder_chance_to_release_projectile_when_hit_%" } }, - [333]={ + [335]={ [1]={ [1]={ limit={ @@ -8635,7 +8677,7 @@ return { [2]="soulfeast_take_%_maximum_energy_shield_as_chaos_damage" } }, - [334]={ + [336]={ [1]={ [1]={ limit={ @@ -8660,7 +8702,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [335]={ + [337]={ [1]={ [1]={ [1]={ @@ -8680,7 +8722,7 @@ return { [1]="spell_cast_time_added_to_cooldown_if_triggered" } }, - [336]={ + [338]={ [1]={ [1]={ limit={ @@ -8709,7 +8751,7 @@ return { [1]="spell_damage_+%" } }, - [337]={ + [339]={ [1]={ [1]={ limit={ @@ -8734,7 +8776,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [338]={ + [340]={ [1]={ [1]={ limit={ @@ -8765,7 +8807,7 @@ return { [4]="storm_blade_maximum_lightning_damage_from_es_%" } }, - [339]={ + [341]={ [1]={ [1]={ limit={ @@ -8781,7 +8823,7 @@ return { [1]="storm_blade_damage_+%_final_with_two_hand_weapon" } }, - [340]={ + [342]={ [1]={ [1]={ limit={ @@ -8797,7 +8839,7 @@ return { [1]="active_skill_display_does_intensity_stuff" } }, - [341]={ + [343]={ [1]={ [1]={ limit={ @@ -8826,7 +8868,7 @@ return { [1]="support_trap_damage_+%_final" } }, - [342]={ + [344]={ [1]={ [1]={ limit={ @@ -8855,7 +8897,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [343]={ + [345]={ [1]={ [1]={ limit={ @@ -8915,7 +8957,7 @@ return { [2]="quality_display_tornado_shot_is_gem" } }, - [344]={ + [346]={ [1]={ [1]={ limit={ @@ -8931,7 +8973,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [345]={ + [347]={ [1]={ [1]={ [1]={ @@ -8951,7 +8993,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [346]={ + [348]={ [1]={ [1]={ limit={ @@ -8980,7 +9022,7 @@ return { [1]="trap_damage_+%" } }, - [347]={ + [349]={ [1]={ [1]={ limit={ @@ -9009,7 +9051,7 @@ return { [1]="trap_duration_+%" } }, - [348]={ + [350]={ [1]={ [1]={ limit={ @@ -9038,7 +9080,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [349]={ + [351]={ [1]={ [1]={ limit={ @@ -9067,7 +9109,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [350]={ + [352]={ [1]={ [1]={ limit={ @@ -9083,7 +9125,7 @@ return { [1]="unearth_base_corpse_level" } }, - [351]={ + [353]={ [1]={ [1]={ limit={ @@ -9108,7 +9150,7 @@ return { [1]="vaal_lightning_arrow_number_of_redirects" } }, - [352]={ + [354]={ [1]={ [1]={ limit={ @@ -9124,7 +9166,7 @@ return { [1]="vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects" } }, - [353]={ + [355]={ [1]={ [1]={ [1]={ @@ -9157,7 +9199,7 @@ return { [1]="vaal_storm_call_base_delay_ms" } }, - [354]={ + [356]={ [1]={ [1]={ limit={ @@ -9182,7 +9224,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [355]={ + [357]={ [1]={ [1]={ limit={ @@ -9198,7 +9240,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [356]={ + [358]={ [1]={ [1]={ limit={ @@ -9227,7 +9269,7 @@ return { [1]="warcry_speed_+%" } }, - [357]={ + [359]={ [1]={ [1]={ limit={ @@ -9256,7 +9298,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [358]={ + [360]={ [1]={ [1]={ limit={ @@ -9285,7 +9327,7 @@ return { [1]="weapon_trap_rotation_speed_+%_if_dual_wielding" } }, - [359]={ + [361]={ [1]={ [1]={ [1]={ @@ -9310,296 +9352,297 @@ return { ["active_skill_additive_minion_damage_modifiers_apply_to_all_damage_at_%_value"]=58, ["active_skill_ailment_damage_+%_final"]=59, ["active_skill_ailment_damage_+%_final_per_100ms_duration"]=42, + ["active_skill_always_reserves_unmodifiable_X%_of_mana"]=60, ["active_skill_attack_damage_+%_final"]=16, - ["active_skill_attack_damage_+%_final_with_two_handed_weapon"]=60, + ["active_skill_attack_damage_+%_final_with_two_handed_weapon"]=61, ["active_skill_attack_damage_final_permyriad"]=18, - ["active_skill_attack_speed_+%_final_with_two_handed_weapon"]=61, - ["active_skill_brands_allowed_on_enemy_+"]=62, - ["active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=63, - ["active_skill_cast_speed_+%_final"]=64, - ["active_skill_critical_strike_chance_+%_final"]=65, + ["active_skill_attack_speed_+%_final_with_two_handed_weapon"]=62, + ["active_skill_brands_allowed_on_enemy_+"]=63, + ["active_skill_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=64, + ["active_skill_cast_speed_+%_final"]=65, + ["active_skill_critical_strike_chance_+%_final"]=66, ["active_skill_damage_+%_final"]=19, - ["active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds"]=66, - ["active_skill_display_does_intensity_stuff"]=340, - ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=330, + ["active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds"]=67, + ["active_skill_display_does_intensity_stuff"]=342, + ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=332, ["active_skill_hit_damage_+%_final_per_100ms_duration"]=40, ["active_skill_merged_damage_+%_final_while_dual_wielding"]=17, ["active_skill_minion_damage_+%_final"]=20, ["active_skill_minion_physical_damage_+%_final"]=21, ["active_skill_physical_damage_+%_final"]=22, - ["active_skill_poison_duration_+%_final"]=67, - ["active_skill_quality_damage_+%_final"]=68, - ["active_skill_quality_duration_+%_final"]=69, - ["add_power_charge_on_kill_%_chance"]=70, - ["added_fire_damage_to_attacks_equal_to_%_maximum_life"]=71, - ["added_physical_damage_to_attacks_equal_to_%_maximum_mana"]=72, - ["additional_base_critical_strike_chance"]=73, - ["additional_weapon_base_attack_time_ms"]=74, + ["active_skill_poison_duration_+%_final"]=68, + ["active_skill_quality_damage_+%_final"]=69, + ["active_skill_quality_duration_+%_final"]=70, + ["add_power_charge_on_kill_%_chance"]=71, + ["added_fire_damage_to_attacks_equal_to_%_maximum_life"]=72, + ["added_physical_damage_to_attacks_equal_to_%_maximum_mana"]=73, + ["additional_base_critical_strike_chance"]=74, + ["additional_weapon_base_attack_time_ms"]=75, ["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"]=51, - ["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=75, - ["always_freeze"]=103, - ["ancestor_totem_buff_effect_+%"]=76, - ["ancestor_totem_parent_activation_range_+%"]=77, + ["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=76, + ["always_freeze"]=104, + ["ancestor_totem_buff_effect_+%"]=77, + ["ancestor_totem_parent_activation_range_+%"]=78, ["animate_item_maximum_level_requirement"]=55, - ["area_damage_+%"]=78, - ["area_of_effect_+%_while_dead"]=79, - ["arrowswarm_mana_spent_to_generate_arrow"]=80, - ["arrowswarm_maximum_allowed_arrows"]=81, - ["artillery_ballista_number_of_arrows_is_equal_to_number_of_nearby_targets"]=121, - ["attack_and_cast_speed_+%"]=82, - ["attack_and_cast_speed_+%_during_onslaught"]=83, - ["attack_maximum_added_chaos_damage"]=84, - ["attack_maximum_added_cold_damage"]=85, - ["attack_maximum_added_cold_damage_for_elemental_hit"]=86, - ["attack_maximum_added_fire_damage"]=87, - ["attack_maximum_added_fire_damage_for_elemental_hit"]=88, - ["attack_maximum_added_lightning_damage"]=89, - ["attack_maximum_added_lightning_damage_for_elemental_hit"]=90, - ["attack_maximum_added_physical_damage"]=91, - ["attack_minimum_added_chaos_damage"]=84, - ["attack_minimum_added_cold_damage"]=85, - ["attack_minimum_added_cold_damage_for_elemental_hit"]=86, - ["attack_minimum_added_fire_damage"]=87, - ["attack_minimum_added_fire_damage_for_elemental_hit"]=88, - ["attack_minimum_added_lightning_damage"]=89, - ["attack_minimum_added_lightning_damage_for_elemental_hit"]=90, - ["attack_minimum_added_physical_damage"]=91, + ["area_damage_+%"]=79, + ["area_of_effect_+%_while_dead"]=80, + ["arrowswarm_mana_spent_to_generate_arrow"]=81, + ["arrowswarm_maximum_allowed_arrows"]=82, + ["artillery_ballista_number_of_arrows_is_equal_to_number_of_nearby_targets"]=122, + ["attack_and_cast_speed_+%"]=83, + ["attack_and_cast_speed_+%_during_onslaught"]=84, + ["attack_maximum_added_chaos_damage"]=85, + ["attack_maximum_added_cold_damage"]=86, + ["attack_maximum_added_cold_damage_for_elemental_hit"]=87, + ["attack_maximum_added_fire_damage"]=88, + ["attack_maximum_added_fire_damage_for_elemental_hit"]=89, + ["attack_maximum_added_lightning_damage"]=90, + ["attack_maximum_added_lightning_damage_for_elemental_hit"]=91, + ["attack_maximum_added_physical_damage"]=92, + ["attack_minimum_added_chaos_damage"]=85, + ["attack_minimum_added_cold_damage"]=86, + ["attack_minimum_added_cold_damage_for_elemental_hit"]=87, + ["attack_minimum_added_fire_damage"]=88, + ["attack_minimum_added_fire_damage_for_elemental_hit"]=89, + ["attack_minimum_added_lightning_damage"]=90, + ["attack_minimum_added_lightning_damage_for_elemental_hit"]=91, + ["attack_minimum_added_physical_damage"]=92, ["attack_skills_additional_ballista_totems_allowed"]=44, - ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=92, - ["attack_speed_+%"]=93, - ["attack_speed_+%_granted_from_skill"]=94, + ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=93, + ["attack_speed_+%"]=94, + ["attack_speed_+%_granted_from_skill"]=95, ["aura_effect_+%"]=29, - ["avoid_interruption_while_using_this_skill_%"]=95, - ["base_added_cooldown_count"]=96, - ["base_ailment_damage_+%"]=97, - ["base_aura_area_of_effect_+%"]=98, - ["base_blackhole_tick_rate_ms"]=99, - ["base_blade_vortex_hit_rate_ms"]=100, - ["base_bleed_duration_+%"]=101, + ["avoid_interruption_while_using_this_skill_%"]=96, + ["base_added_cooldown_count"]=97, + ["base_ailment_damage_+%"]=98, + ["base_aura_area_of_effect_+%"]=99, + ["base_blackhole_tick_rate_ms"]=100, + ["base_blade_vortex_hit_rate_ms"]=101, + ["base_bleed_duration_+%"]=102, ["base_buff_duration_ms_+_per_removable_endurance_charge"]=34, ["base_can_gain_banner_resource"]=1, - ["base_cast_speed_+%"]=102, - ["base_chance_to_freeze_%"]=103, - ["base_chance_to_ignite_%"]=104, - ["base_chance_to_shock_%"]=105, - ["base_circle_of_power_mana_spend_per_upgrade"]=106, + ["base_cast_speed_+%"]=103, + ["base_chance_to_freeze_%"]=104, + ["base_chance_to_ignite_%"]=105, + ["base_chance_to_shock_%"]=106, + ["base_circle_of_power_mana_spend_per_upgrade"]=107, ["base_cold_damage_to_deal_per_minute"]=53, - ["base_cost_+%"]=107, - ["base_critical_strike_multiplier_+"]=108, - ["base_curse_duration_+%"]=109, - ["base_galvanic_field_beam_delay_ms"]=110, - ["base_global_chance_to_knockback_%"]=111, - ["base_graft_skill_tul_summon_maximum_allowed_demons"]=230, - ["base_killed_monster_dropped_item_rarity_+%"]=112, - ["base_life_cost_+%"]=113, - ["base_life_gain_per_target"]=114, - ["base_life_leech_from_attack_damage_permyriad"]=115, - ["base_life_reservation_+%"]=116, - ["base_mana_cost_-%"]=117, - ["base_mana_reservation_+%"]=118, - ["base_max_number_of_absolution_sentinels"]=119, - ["base_max_number_of_dominated_magic_monsters"]=264, - ["base_max_number_of_dominated_normal_monsters"]=265, - ["base_max_number_of_dominated_rare_monsters"]=266, + ["base_cost_+%"]=108, + ["base_critical_strike_multiplier_+"]=109, + ["base_curse_duration_+%"]=110, + ["base_galvanic_field_beam_delay_ms"]=111, + ["base_global_chance_to_knockback_%"]=112, + ["base_graft_skill_tul_summon_maximum_allowed_demons"]=231, + ["base_killed_monster_dropped_item_rarity_+%"]=113, + ["base_life_cost_+%"]=114, + ["base_life_gain_per_target"]=115, + ["base_life_leech_from_attack_damage_permyriad"]=116, + ["base_life_reservation_+%"]=117, + ["base_mana_cost_-%"]=118, + ["base_mana_reservation_+%"]=119, + ["base_max_number_of_absolution_sentinels"]=120, + ["base_max_number_of_dominated_magic_monsters"]=265, + ["base_max_number_of_dominated_normal_monsters"]=266, + ["base_max_number_of_dominated_rare_monsters"]=267, ["base_melee_attack_repeat_count"]=52, - ["base_mine_detonation_time_ms"]=120, - ["base_number_of_animated_weapons_allowed"]=294, - ["base_number_of_arrows"]=121, - ["base_number_of_blink_mirror_arrow_elemental_hit_clones"]=270, - ["base_number_of_blink_mirror_arrow_rain_of_arrows_clones"]=271, - ["base_number_of_champions_of_light_allowed"]=122, + ["base_mine_detonation_time_ms"]=121, + ["base_number_of_animated_weapons_allowed"]=295, + ["base_number_of_arrows"]=122, + ["base_number_of_blink_mirror_arrow_elemental_hit_clones"]=271, + ["base_number_of_blink_mirror_arrow_rain_of_arrows_clones"]=272, + ["base_number_of_champions_of_light_allowed"]=123, ["base_number_of_golems_allowed"]=39, - ["base_number_of_living_lightning_allowed"]=123, - ["base_number_of_projectiles"]=124, + ["base_number_of_living_lightning_allowed"]=124, + ["base_number_of_projectiles"]=125, ["base_number_of_raging_spirits_allowed"]=27, - ["base_number_of_reapers_allowed"]=296, - ["base_number_of_relics_allowed"]=125, + ["base_number_of_reapers_allowed"]=297, + ["base_number_of_relics_allowed"]=126, ["base_number_of_skeletons_allowed"]=26, ["base_number_of_spectres_allowed"]=25, ["base_number_of_totems_allowed"]=45, - ["base_number_of_void_spawns_allowed"]=297, + ["base_number_of_void_spawns_allowed"]=298, ["base_number_of_zombies_allowed"]=24, - ["base_physical_damage_%_to_convert_to_lightning"]=126, - ["base_poison_duration_+%"]=127, - ["base_projectile_speed_+%"]=128, - ["base_reduce_enemy_cold_resistance_%"]=129, - ["base_reduce_enemy_fire_resistance_%"]=130, - ["base_reduce_enemy_lightning_resistance_%"]=131, - ["base_reservation_+%"]=133, - ["base_reservation_efficiency_+%"]=132, + ["base_physical_damage_%_to_convert_to_lightning"]=127, + ["base_poison_duration_+%"]=128, + ["base_projectile_speed_+%"]=129, + ["base_reduce_enemy_cold_resistance_%"]=130, + ["base_reduce_enemy_fire_resistance_%"]=131, + ["base_reduce_enemy_lightning_resistance_%"]=132, + ["base_reservation_+%"]=134, + ["base_reservation_efficiency_+%"]=133, ["base_secondary_skill_effect_duration"]=32, ["base_sigil_repeat_frequency_ms"]=47, - ["base_skill_area_of_effect_+%"]=134, + ["base_skill_area_of_effect_+%"]=135, ["base_skill_effect_duration"]=30, ["base_spell_repeat_count"]=38, - ["base_stun_duration_+%"]=135, - ["base_use_life_in_place_of_mana"]=136, - ["base_weapon_trap_rotation_speed_+%"]=137, - ["base_weapon_trap_total_rotation_%"]=138, - ["berserk_base_rage_loss_per_second"]=139, - ["bladefall_base_volley_frequency_ms"]=140, - ["bladefall_blade_left_in_ground_for_every_X_volleys"]=141, - ["bladefall_create_X_lingering_blades_per_volley"]=142, - ["bladefall_number_of_volleys"]=143, - ["bladefall_volley_frequency_+%_per_100_maximum_mana"]=144, - ["blades_left_in_ground_+%_final_if_not_hand_cast"]=145, - ["blind_duration_+%"]=146, - ["blood_spears_additional_number_of_spears_if_changed_stance_recently"]=147, - ["blood_spears_base_number_of_spears"]=148, - ["blood_spears_damage_+%_final_in_blood_stance"]=149, - ["brands_reattach_on_activation"]=150, + ["base_stun_duration_+%"]=136, + ["base_use_life_in_place_of_mana"]=137, + ["base_weapon_trap_rotation_speed_+%"]=138, + ["base_weapon_trap_total_rotation_%"]=139, + ["berserk_base_rage_loss_per_second"]=140, + ["bladefall_base_volley_frequency_ms"]=141, + ["bladefall_blade_left_in_ground_for_every_X_volleys"]=142, + ["bladefall_create_X_lingering_blades_per_volley"]=143, + ["bladefall_number_of_volleys"]=144, + ["bladefall_volley_frequency_+%_per_100_maximum_mana"]=145, + ["blades_left_in_ground_+%_final_if_not_hand_cast"]=146, + ["blind_duration_+%"]=147, + ["blood_spears_additional_number_of_spears_if_changed_stance_recently"]=148, + ["blood_spears_base_number_of_spears"]=149, + ["blood_spears_damage_+%_final_in_blood_stance"]=150, + ["brands_reattach_on_activation"]=151, ["buff_duration_+%"]=35, - ["burn_damage_+%"]=151, + ["burn_damage_+%"]=152, ["can_gain_banner_resource_while_banner_is_placed"]=1, - ["chance_%_when_poison_to_also_poison_another_enemy"]=152, - ["chance_to_double_stun_duration_%"]=153, - ["chance_to_fork_extra_projectile_%"]=154, - ["chance_to_fortify_on_melee_hit_+%"]=155, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=156, - ["chance_to_place_an_additional_mine_%"]=157, - ["chance_to_scorch_%"]=158, - ["chaos_damage_+%"]=159, - ["chill_duration_+%"]=160, - ["chill_effect_+%"]=161, - ["circle_of_power_skill_cost_mana_cost_+%"]=162, - ["cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain"]=163, - ["cold_ailment_effect_+%"]=164, - ["cold_damage_%_to_add_as_fire"]=165, - ["cold_damage_+%"]=166, - ["consecrated_ground_area_+%"]=169, - ["consecrated_ground_effect_+%"]=167, - ["consecrated_ground_enemy_damage_taken_+%"]=168, - ["conversation_trap_converted_enemy_damage_+%"]=170, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=171, - ["corpse_erruption_base_maximum_number_of_geyers"]=172, - ["cremation_fires_projectiles_faster_+%_final"]=173, - ["critical_ailment_dot_multiplier_+"]=174, - ["critical_multiplier_+%_per_100_max_es_on_shield"]=175, - ["critical_strike_chance_+%"]=176, - ["cyclone_max_stages_movement_speed_+%"]=177, - ["damage_+%"]=179, - ["damage_+%_on_full_energy_shield"]=186, - ["damage_+%_per_endurance_charge"]=180, - ["damage_+%_per_frenzy_charge"]=181, - ["damage_+%_per_power_charge"]=182, - ["damage_+%_vs_enemies_on_full_life"]=183, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=184, - ["damage_+%_vs_frozen_enemies"]=185, - ["damage_+%_when_on_full_life"]=187, - ["damage_+%_when_on_low_life"]=188, - ["damage_+%_with_hits_and_ailments"]=189, - ["damage_over_time_+%"]=178, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=190, - ["damage_vs_enemies_on_low_life_+%"]=191, - ["dash_grants_phasing_after_use_ms"]=192, - ["display_base_intensity_loss"]=193, - ["display_eye_of_winter_projectile_modifier"]=201, - ["display_fixed_area"]=194, - ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=195, + ["chance_%_when_poison_to_also_poison_another_enemy"]=153, + ["chance_to_double_stun_duration_%"]=154, + ["chance_to_fork_extra_projectile_%"]=155, + ["chance_to_fortify_on_melee_hit_+%"]=156, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=157, + ["chance_to_place_an_additional_mine_%"]=158, + ["chance_to_scorch_%"]=159, + ["chaos_damage_+%"]=160, + ["chill_duration_+%"]=161, + ["chill_effect_+%"]=162, + ["circle_of_power_skill_cost_mana_cost_+%"]=163, + ["cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain"]=164, + ["cold_ailment_effect_+%"]=165, + ["cold_damage_%_to_add_as_fire"]=166, + ["cold_damage_+%"]=167, + ["consecrated_ground_area_+%"]=170, + ["consecrated_ground_effect_+%"]=168, + ["consecrated_ground_enemy_damage_taken_+%"]=169, + ["conversation_trap_converted_enemy_damage_+%"]=171, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=172, + ["corpse_erruption_base_maximum_number_of_geyers"]=173, + ["cremation_fires_projectiles_faster_+%_final"]=174, + ["critical_ailment_dot_multiplier_+"]=175, + ["critical_multiplier_+%_per_100_max_es_on_shield"]=176, + ["critical_strike_chance_+%"]=177, + ["cyclone_max_stages_movement_speed_+%"]=178, + ["damage_+%"]=180, + ["damage_+%_on_full_energy_shield"]=187, + ["damage_+%_per_endurance_charge"]=181, + ["damage_+%_per_frenzy_charge"]=182, + ["damage_+%_per_power_charge"]=183, + ["damage_+%_vs_enemies_on_full_life"]=184, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=185, + ["damage_+%_vs_frozen_enemies"]=186, + ["damage_+%_when_on_full_life"]=188, + ["damage_+%_when_on_low_life"]=189, + ["damage_+%_with_hits_and_ailments"]=190, + ["damage_over_time_+%"]=179, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=191, + ["damage_vs_enemies_on_low_life_+%"]=192, + ["dash_grants_phasing_after_use_ms"]=193, + ["display_base_intensity_loss"]=194, + ["display_eye_of_winter_projectile_modifier"]=202, + ["display_fixed_area"]=195, + ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=196, ["display_minion_base_maximum_life"]=37, - ["divine_tempest_base_number_of_nearby_enemies_to_zap"]=196, - ["dot_multiplier_+"]=197, + ["divine_tempest_base_number_of_nearby_enemies_to_zap"]=197, + ["dot_multiplier_+"]=198, ["earthquake_skill_aftershock_ailment_damage_+%_final_per_100ms_duration"]=43, ["earthquake_skill_aftershock_area_of_effect_+%_final_per_100ms_duration"]=46, ["earthquake_skill_aftershock_hit_damage_+%_final_per_100ms_duration"]=41, - ["elemental_damage_+%"]=198, - ["enemy_phys_reduction_%_penalty_vs_hit"]=199, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=200, - ["faster_bleed_%"]=202, - ["faster_burn_%"]=203, - ["faster_poison_%"]=204, - ["fire_damage_+%"]=205, - ["firestorm_explosion_area_of_effect_+%"]=206, - ["flame_link_added_fire_damage_from_life_%"]=208, - ["flame_link_maximum_fire_damage"]=207, - ["flame_link_minimum_fire_damage"]=207, - ["fortify_duration_+%"]=209, - ["freeze_duration_+%"]=210, - ["gain_%_of_base_dagger_damage_as_added_spell_damage"]=211, - ["galvanic_field_beam_frequency_+%"]=212, - ["global_chance_to_blind_on_hit_%"]=213, - ["global_maximum_added_chaos_damage"]=214, - ["global_maximum_added_cold_damage"]=215, - ["global_maximum_added_fire_damage"]=216, - ["global_maximum_added_lightning_damage"]=217, - ["global_maximum_added_physical_damage"]=218, - ["global_minimum_added_chaos_damage"]=214, - ["global_minimum_added_cold_damage"]=215, - ["global_minimum_added_fire_damage"]=216, - ["global_minimum_added_lightning_damage"]=217, - ["global_minimum_added_physical_damage"]=218, - ["global_reduce_enemy_block_%"]=219, - ["golem_buff_effect_+%"]=220, - ["graft_granted_maximum_base_lightning_damage"]=221, - ["graft_granted_minimum_base_lightning_damage"]=221, - ["graft_skill_esh_jolt_damage_taken_+%_to_grant"]=222, - ["graft_skill_esh_jolt_maximum_attack_damage_+%_final_to_grant"]=223, - ["graft_skill_esh_lightning_bolts_number_of_bolts"]=224, - ["graft_skill_esh_lightning_clones_number_of_clones_to_create"]=225, - ["graft_skill_esh_lightning_hands_maximum_hands"]=226, - ["graft_skill_esh_lightning_hands_number_of_hands_spawned"]=227, - ["graft_skill_tul_aegis_aegis_shield_amount_granted_on_applying_exposure"]=228, - ["graft_skill_tul_mortars_maximum_mortars_fired_per_volley"]=229, - ["graft_skill_tul_summon_number_of_demons_to_summon"]=231, - ["graft_skill_uulnet_bone_spires_max_spires_allowed"]=232, - ["graft_skill_uulnetol_bone_spires_num_of_spires_to_create"]=233, - ["graft_skill_uulnetol_hand_slam_number_of_hands_to_create"]=234, - ["graft_skill_uulnetol_impale_buff_%_chance_for_additional_impale_to_grant"]=235, - ["graft_skill_uulnetol_impale_buff_additional_impales_to_grant"]=236, - ["graft_skill_uulnetol_impale_buff_impale_effect_%_to_grant"]=237, - ["graft_skill_xoph_ailment_buff_%_of_physical_damage_gained_as_element_to_grant"]=238, - ["graft_skill_xoph_geyser_explosion_maximum_geysers"]=239, - ["graft_skill_xoph_geyser_explosion_number_of_geysers_to_spawn"]=240, - ["graft_skill_xoph_geyser_explosion_number_of_projectiles_to_erupt"]=241, - ["graft_uulnetol_life_recovery_rate_+%_final_to_grant_on_reaching_low_life"]=242, - ["graft_uulnetol_number_of_endurance_charges_to_grant_on_reaching_low_life"]=243, - ["herald_of_thunder_bolt_base_frequency"]=244, - ["herald_of_thunder_bolt_frequency_+%"]=245, - ["hit_damage_+%"]=246, - ["holy_flame_totem_consecrated_ground_area_+%"]=247, - ["hydro_sphere_base_pulse_frequency_ms"]=248, - ["hydro_sphere_pulse_frequency_+%"]=249, - ["ignite_duration_+%"]=250, - ["intensity_loss_frequency_while_moving_+%"]=251, - ["kinetic_blast_modifiers_to_number_of_projectiles_instead_apply_to_number_of_clusters"]=252, - ["kinetic_wand_base_number_of_zig_zags"]=253, - ["knockback_distance_+%"]=254, - ["life_leech_from_any_damage_permyriad"]=255, - ["lightning_ailment_effect_+%"]=256, - ["lightning_damage_%_to_add_as_chaos"]=257, - ["lightning_damage_+%"]=258, - ["lightning_tower_trap_base_interval_duration_ms"]=259, - ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=260, - ["maim_effect_+%"]=261, - ["mana_gain_per_target"]=262, - ["mana_leech_from_any_damage_permyriad"]=263, - ["maximum_energy_shield_leech_amount_per_leech_+%"]=267, - ["maximum_life_+%_for_corpses_you_create"]=269, - ["maximum_life_leech_amount_per_leech_+%"]=268, - ["melee_attack_number_of_spirit_strikes"]=272, - ["melee_damage_+%"]=273, - ["melee_damage_vs_bleeding_enemies_+%"]=274, - ["melee_physical_damage_+%"]=275, - ["mine_detonation_radius_+%"]=276, - ["mine_detonation_speed_+%"]=277, - ["mine_duration_+%"]=278, - ["mine_laying_speed_+%"]=279, - ["minion_chance_to_deal_double_damage_%"]=280, - ["minion_elemental_resistance_%"]=281, - ["modifiers_to_number_of_projectiles_instead_apply_to_chaining"]=282, - ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=283, - ["modifiers_to_projectile_count_do_not_apply"]=284, - ["modifiers_to_trap_throw_speed_apply_to_lightning_spire_trap_frequency"]=285, - ["modifiers_to_trap_throw_speed_apply_to_seismic_trap_frequency"]=286, - ["non_curse_aura_effect_+%"]=287, - ["number_of_additional_arrows"]=288, + ["elemental_damage_+%"]=199, + ["enemy_phys_reduction_%_penalty_vs_hit"]=200, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=201, + ["faster_bleed_%"]=203, + ["faster_burn_%"]=204, + ["faster_poison_%"]=205, + ["fire_damage_+%"]=206, + ["firestorm_explosion_area_of_effect_+%"]=207, + ["flame_link_added_fire_damage_from_life_%"]=209, + ["flame_link_maximum_fire_damage"]=208, + ["flame_link_minimum_fire_damage"]=208, + ["fortify_duration_+%"]=210, + ["freeze_duration_+%"]=211, + ["gain_%_of_base_dagger_damage_as_added_spell_damage"]=212, + ["galvanic_field_beam_frequency_+%"]=213, + ["global_chance_to_blind_on_hit_%"]=214, + ["global_maximum_added_chaos_damage"]=215, + ["global_maximum_added_cold_damage"]=216, + ["global_maximum_added_fire_damage"]=217, + ["global_maximum_added_lightning_damage"]=218, + ["global_maximum_added_physical_damage"]=219, + ["global_minimum_added_chaos_damage"]=215, + ["global_minimum_added_cold_damage"]=216, + ["global_minimum_added_fire_damage"]=217, + ["global_minimum_added_lightning_damage"]=218, + ["global_minimum_added_physical_damage"]=219, + ["global_reduce_enemy_block_%"]=220, + ["golem_buff_effect_+%"]=221, + ["graft_granted_maximum_base_lightning_damage"]=222, + ["graft_granted_minimum_base_lightning_damage"]=222, + ["graft_skill_esh_jolt_damage_taken_+%_to_grant"]=223, + ["graft_skill_esh_jolt_maximum_attack_damage_+%_final_to_grant"]=224, + ["graft_skill_esh_lightning_bolts_number_of_bolts"]=225, + ["graft_skill_esh_lightning_clones_number_of_clones_to_create"]=226, + ["graft_skill_esh_lightning_hands_maximum_hands"]=227, + ["graft_skill_esh_lightning_hands_number_of_hands_spawned"]=228, + ["graft_skill_tul_aegis_aegis_shield_amount_granted_on_applying_exposure"]=229, + ["graft_skill_tul_mortars_maximum_mortars_fired_per_volley"]=230, + ["graft_skill_tul_summon_number_of_demons_to_summon"]=232, + ["graft_skill_uulnet_bone_spires_max_spires_allowed"]=233, + ["graft_skill_uulnetol_bone_spires_num_of_spires_to_create"]=234, + ["graft_skill_uulnetol_hand_slam_number_of_hands_to_create"]=235, + ["graft_skill_uulnetol_impale_buff_%_chance_for_additional_impale_to_grant"]=236, + ["graft_skill_uulnetol_impale_buff_additional_impales_to_grant"]=237, + ["graft_skill_uulnetol_impale_buff_impale_effect_%_to_grant"]=238, + ["graft_skill_xoph_ailment_buff_%_of_physical_damage_gained_as_element_to_grant"]=239, + ["graft_skill_xoph_geyser_explosion_maximum_geysers"]=240, + ["graft_skill_xoph_geyser_explosion_number_of_geysers_to_spawn"]=241, + ["graft_skill_xoph_geyser_explosion_number_of_projectiles_to_erupt"]=242, + ["graft_uulnetol_life_recovery_rate_+%_final_to_grant_on_reaching_low_life"]=243, + ["graft_uulnetol_number_of_endurance_charges_to_grant_on_reaching_low_life"]=244, + ["herald_of_thunder_bolt_base_frequency"]=245, + ["herald_of_thunder_bolt_frequency_+%"]=246, + ["hit_damage_+%"]=247, + ["holy_flame_totem_consecrated_ground_area_+%"]=248, + ["hydro_sphere_base_pulse_frequency_ms"]=249, + ["hydro_sphere_pulse_frequency_+%"]=250, + ["ignite_duration_+%"]=251, + ["intensity_loss_frequency_while_moving_+%"]=252, + ["kinetic_blast_modifiers_to_number_of_projectiles_instead_apply_to_number_of_clusters"]=253, + ["kinetic_wand_base_number_of_zig_zags"]=254, + ["knockback_distance_+%"]=255, + ["life_leech_from_any_damage_permyriad"]=256, + ["lightning_ailment_effect_+%"]=257, + ["lightning_damage_%_to_add_as_chaos"]=258, + ["lightning_damage_+%"]=259, + ["lightning_tower_trap_base_interval_duration_ms"]=260, + ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=261, + ["maim_effect_+%"]=262, + ["mana_gain_per_target"]=263, + ["mana_leech_from_any_damage_permyriad"]=264, + ["maximum_energy_shield_leech_amount_per_leech_+%"]=268, + ["maximum_life_+%_for_corpses_you_create"]=270, + ["maximum_life_leech_amount_per_leech_+%"]=269, + ["melee_attack_number_of_spirit_strikes"]=273, + ["melee_damage_+%"]=274, + ["melee_damage_vs_bleeding_enemies_+%"]=275, + ["melee_physical_damage_+%"]=276, + ["mine_detonation_radius_+%"]=277, + ["mine_detonation_speed_+%"]=278, + ["mine_duration_+%"]=279, + ["mine_laying_speed_+%"]=280, + ["minion_chance_to_deal_double_damage_%"]=281, + ["minion_elemental_resistance_%"]=282, + ["modifiers_to_number_of_projectiles_instead_apply_to_chaining"]=283, + ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=284, + ["modifiers_to_projectile_count_do_not_apply"]=285, + ["modifiers_to_trap_throw_speed_apply_to_lightning_spire_trap_frequency"]=286, + ["modifiers_to_trap_throw_speed_apply_to_seismic_trap_frequency"]=287, + ["non_curse_aura_effect_+%"]=288, + ["number_of_additional_arrows"]=289, ["number_of_additional_forks_base"]=49, - ["number_of_additional_projectiles"]=289, - ["number_of_additional_remote_mines_allowed"]=291, - ["number_of_additional_traps_allowed"]=292, - ["number_of_additional_traps_to_throw"]=293, - ["number_of_chains"]=290, - ["number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed"]=295, + ["number_of_additional_projectiles"]=290, + ["number_of_additional_remote_mines_allowed"]=292, + ["number_of_additional_traps_allowed"]=293, + ["number_of_additional_traps_to_throw"]=294, + ["number_of_chains"]=291, + ["number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed"]=296, ["off_hand_base_weapon_attack_duration_ms"]=9, ["off_hand_local_maximum_added_cold_damage"]=2, ["off_hand_local_maximum_added_fire_damage"]=3, @@ -9616,91 +9659,92 @@ return { ["off_hand_minimum_added_physical_damage_per_15_shield_armour"]=7, ["off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=8, ["offering_skill_effect_duration_per_corpse"]=33, - ["orb_of_storms_base_bolt_frequency_ms"]=298, - ["orb_of_storms_base_channelling_bolt_frequency_ms"]=299, + ["orb_of_storms_base_bolt_frequency_ms"]=299, + ["orb_of_storms_base_channelling_bolt_frequency_ms"]=300, parent="gem_stat_descriptions", - ["phys_cascade_trap_base_interval_duration_ms"]=300, - ["physical_damage_%_to_add_as_fire"]=301, - ["physical_damage_%_to_add_as_lightning"]=302, - ["physical_damage_+%"]=303, + ["phys_cascade_trap_base_interval_duration_ms"]=301, + ["physical_damage_%_to_add_as_fire"]=302, + ["physical_damage_%_to_add_as_lightning"]=303, + ["physical_damage_+%"]=304, ["physical_damage_+%_per_frenzy_charge"]=23, - ["placing_traps_cooldown_recovery_+%"]=304, - ["power_siphon_base_fire_at_x_targets"]=305, - ["precision_grants_area_of_effect_+%_final"]=306, - ["primary_projectile_chains_+"]=307, - ["prismatic_rain_beam_base_frequency_ms"]=308, - ["projectile_base_number_of_targets_to_pierce"]=309, - ["projectile_damage_+%"]=310, - ["projectile_number_to_split"]=311, - ["projectile_return_%_chance"]=312, + ["placing_traps_cooldown_recovery_+%"]=305, + ["power_siphon_base_fire_at_x_targets"]=306, + ["precision_grants_area_of_effect_+%_final"]=307, + ["primary_projectile_chains_+"]=308, + ["prismatic_rain_beam_base_frequency_ms"]=309, + ["projectile_base_number_of_targets_to_pierce"]=310, + ["projectile_damage_+%"]=311, + ["projectile_number_to_split"]=312, + ["projectile_return_%_chance"]=313, ["projectiles_fork"]=48, - ["projectiles_return"]=312, - ["quality_display_animate_weapon_is_gem"]=294, - ["quality_display_base_additional_arrows_is_gem"]=121, - ["quality_display_blade_trap_is_gem"]=138, - ["quality_display_bladefall_is_gem"]=143, - ["quality_display_hydrosphere_is_gem"]=249, - ["quality_display_perforate_is_gem"]=148, + ["projectiles_return"]=313, + ["quality_display_animate_weapon_is_gem"]=295, + ["quality_display_base_additional_arrows_is_gem"]=122, + ["quality_display_blade_trap_is_gem"]=139, + ["quality_display_bladefall_is_gem"]=144, + ["quality_display_hydrosphere_is_gem"]=250, + ["quality_display_perforate_is_gem"]=149, ["quality_display_raise_zombie_is_gem"]=24, ["quality_display_summon_skeleton_is_gem"]=26, - ["quality_display_tornado_shot_is_gem"]=343, - ["quick_guard_damage_absorb_limit"]=313, - ["quick_guard_damage_absorbed_%"]=313, - ["rain_of_arrows_additional_sequences"]=314, - ["raise_zombie_does_not_use_corpses"]=315, - ["reave_additional_max_stacks"]=316, - ["reduce_enemy_chaos_resistance_%"]=317, - ["reduce_enemy_dodge_%"]=318, - ["regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=319, - ["retaliation_use_window_duration_+%"]=320, - ["secondary_skill_effect_duration_+%"]=321, - ["seismic_trap_frequency_+%"]=322, - ["shock_duration_+%"]=323, + ["quality_display_tornado_shot_is_gem"]=345, + ["quick_guard_damage_absorb_limit"]=314, + ["quick_guard_damage_absorbed_%"]=314, + ["rain_of_arrows_additional_sequences"]=315, + ["raise_zombie_does_not_use_corpses"]=316, + ["reave_additional_max_stacks"]=317, + ["reduce_enemy_chaos_resistance_%"]=318, + ["reduce_enemy_dodge_%"]=319, + ["regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=320, + ["retaliation_use_window_duration_+%"]=321, + ["secondary_skill_effect_duration_+%"]=322, + ["seismic_trap_frequency_+%"]=323, + ["shock_duration_+%"]=324, ["sigil_repeat_frequency_+%"]=50, - ["skill_base_chaos_damage_%_maximum_energy_shield"]=324, - ["skill_base_chaos_damage_%_maximum_life"]=325, - ["skill_cold_damage_%_to_convert_to_fire"]=326, + ["skill_base_chaos_damage_%_maximum_energy_shield"]=325, + ["skill_base_chaos_damage_%_maximum_life"]=326, + ["skill_cold_damage_%_to_convert_to_fire"]=327, ["skill_effect_duration_+%"]=36, - ["skill_fire_damage_%_to_convert_to_chaos"]=327, - ["skill_lightning_damage_%_to_convert_to_chaos"]=328, - ["skill_physical_damage_%_to_convert_to_chaos"]=329, - ["skill_physical_damage_%_to_convert_to_cold"]=330, - ["skill_physical_damage_%_to_convert_to_fire"]=331, + ["skill_fire_damage_%_to_convert_to_chaos"]=328, + ["skill_has_added_lightning_damage_equal_to_%_of_maximum_mana"]=329, + ["skill_lightning_damage_%_to_convert_to_chaos"]=330, + ["skill_physical_damage_%_to_convert_to_chaos"]=331, + ["skill_physical_damage_%_to_convert_to_cold"]=332, + ["skill_physical_damage_%_to_convert_to_fire"]=333, ["skill_physical_damage_%_to_convert_to_lightning"]=15, - ["snapping_adder_chance_to_release_projectile_when_hit_%"]=332, - ["soulfeast_take_%_maximum_energy_shield_as_chaos_damage"]=333, - ["soulfeast_take_%_maximum_life_as_chaos_damage"]=333, - ["spectral_spiral_weapon_base_number_of_bounces"]=334, + ["snapping_adder_chance_to_release_projectile_when_hit_%"]=334, + ["soulfeast_take_%_maximum_energy_shield_as_chaos_damage"]=335, + ["soulfeast_take_%_maximum_life_as_chaos_damage"]=335, + ["spectral_spiral_weapon_base_number_of_bounces"]=336, ["spell_base_fire_damage_%_maximum_life"]=54, - ["spell_cast_time_added_to_cooldown_if_triggered"]=335, - ["spell_damage_+%"]=336, + ["spell_cast_time_added_to_cooldown_if_triggered"]=337, + ["spell_damage_+%"]=338, ["spell_maximum_base_fire_damage"]=54, ["spell_minimum_base_fire_damage"]=54, - ["static_strike_number_of_beam_targets"]=337, - ["storm_blade_damage_+%_final_with_two_hand_weapon"]=339, - ["storm_blade_maximum_lightning_damage"]=338, - ["storm_blade_maximum_lightning_damage_from_es_%"]=338, - ["storm_blade_minimum_lightning_damage"]=338, - ["storm_blade_minimum_lightning_damage_from_es_%"]=338, - ["support_trap_damage_+%_final"]=341, + ["static_strike_number_of_beam_targets"]=339, + ["storm_blade_damage_+%_final_with_two_hand_weapon"]=341, + ["storm_blade_maximum_lightning_damage"]=340, + ["storm_blade_maximum_lightning_damage_from_es_%"]=340, + ["storm_blade_minimum_lightning_damage"]=340, + ["storm_blade_minimum_lightning_damage_from_es_%"]=340, + ["support_trap_damage_+%_final"]=343, ["tornado_maximum_number_of_hits"]=31, - ["tornado_only_primary_duration_+%"]=342, - ["tornado_shot_num_of_secondary_projectiles"]=343, - ["totems_explode_on_death_for_%_life_as_physical"]=344, - ["totems_regenerate_%_life_per_minute"]=345, - ["trap_damage_+%"]=346, - ["trap_duration_+%"]=347, - ["trap_throwing_speed_+%"]=348, - ["trap_trigger_radius_+%"]=349, - ["unearth_base_corpse_level"]=350, + ["tornado_only_primary_duration_+%"]=344, + ["tornado_shot_num_of_secondary_projectiles"]=345, + ["totems_explode_on_death_for_%_life_as_physical"]=346, + ["totems_regenerate_%_life_per_minute"]=347, + ["trap_damage_+%"]=348, + ["trap_duration_+%"]=349, + ["trap_throwing_speed_+%"]=350, + ["trap_trigger_radius_+%"]=351, + ["unearth_base_corpse_level"]=352, ["vaal_animate_weapon_minimum_level_requirement"]=55, - ["vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects"]=352, - ["vaal_lightning_arrow_number_of_redirects"]=351, - ["vaal_storm_call_base_delay_ms"]=353, - ["volatile_dead_base_number_of_corpses_to_consume"]=354, - ["volatile_dead_max_cores_allowed"]=355, - ["warcry_speed_+%"]=356, - ["weapon_elemental_damage_+%"]=357, - ["weapon_trap_rotation_speed_+%_if_dual_wielding"]=358, - ["weapon_trap_total_rotation_%_if_dual_wielding"]=359 + ["vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects"]=354, + ["vaal_lightning_arrow_number_of_redirects"]=353, + ["vaal_storm_call_base_delay_ms"]=355, + ["volatile_dead_base_number_of_corpses_to_consume"]=356, + ["volatile_dead_max_cores_allowed"]=357, + ["warcry_speed_+%"]=358, + ["weapon_elemental_damage_+%"]=359, + ["weapon_trap_rotation_speed_+%_if_dual_wielding"]=360, + ["weapon_trap_total_rotation_%_if_dual_wielding"]=361 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/aura_skill_stat_descriptions.lua b/src/Data/StatDescriptions/aura_skill_stat_descriptions.lua index 91f661592d..0d1876b826 100644 --- a/src/Data/StatDescriptions/aura_skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/aura_skill_stat_descriptions.lua @@ -1198,6 +1198,23 @@ return { } }, [56]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Damage you Deal Penetrates {0}% Cold Resistance against Chilled Enemies" + } + }, + name="cold_pen_vs_chilled", + stats={ + [1]="cold_penetration_%_vs_chilled_enemies" + } + }, + [57]={ [1]={ [1]={ [1]={ @@ -1218,7 +1235,7 @@ return { [1]="create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy" } }, - [57]={ + [58]={ [1]={ [1]={ limit={ @@ -1248,7 +1265,7 @@ return { [1]="damage_+%_if_changed_stances_recently" } }, - [58]={ + [59]={ [1]={ [1]={ limit={ @@ -1278,7 +1295,7 @@ return { [1]="damage_+%_on_full_mana" } }, - [59]={ + [60]={ [1]={ [1]={ limit={ @@ -1308,7 +1325,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [60]={ + [61]={ [1]={ [1]={ limit={ @@ -1325,7 +1342,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [61]={ + [62]={ [1]={ [1]={ [1]={ @@ -1346,7 +1363,7 @@ return { [1]="damage_taken_from_suppressed_hits_is_unlucky" } }, - [62]={ + [63]={ [1]={ [1]={ limit={ @@ -1376,7 +1393,7 @@ return { [1]="delirium_aura_damage_over_time_+%_final" } }, - [63]={ + [64]={ [1]={ [1]={ limit={ @@ -1406,7 +1423,7 @@ return { [1]="delirium_skill_effect_duration_+%" } }, - [64]={ + [65]={ [1]={ [1]={ limit={ @@ -1436,7 +1453,7 @@ return { [1]="energy_shield_delay_-%" } }, - [65]={ + [66]={ [1]={ [1]={ limit={ @@ -1466,7 +1483,7 @@ return { [1]="energy_shield_recharge_rate_+%" } }, - [66]={ + [67]={ [1]={ [1]={ limit={ @@ -1483,7 +1500,7 @@ return { [1]="evasion_rating_%_to_add_as_armour" } }, - [67]={ + [68]={ [1]={ [1]={ limit={ @@ -1513,7 +1530,7 @@ return { [1]="fire_damage_taken_+%" } }, - [68]={ + [69]={ [1]={ [1]={ limit={ @@ -1530,7 +1547,7 @@ return { [1]="flask_mana_to_recover_+%" } }, - [69]={ + [70]={ [1]={ [1]={ limit={ @@ -1560,7 +1577,7 @@ return { [1]="hatred_aura_cold_damage_+%_final" } }, - [70]={ + [71]={ [1]={ [1]={ limit={ @@ -1577,7 +1594,7 @@ return { [1]="hits_ignore_my_cold_resistance" } }, - [71]={ + [72]={ [1]={ [1]={ limit={ @@ -1594,7 +1611,7 @@ return { [1]="hits_ignore_my_fire_resistance" } }, - [72]={ + [73]={ [1]={ [1]={ limit={ @@ -1611,7 +1628,7 @@ return { [1]="hits_ignore_my_lightning_resistance" } }, - [73]={ + [74]={ [1]={ [1]={ limit={ @@ -1628,7 +1645,7 @@ return { [1]="immune_to_curses" } }, - [74]={ + [75]={ [1]={ [1]={ [1]={ @@ -1649,7 +1666,7 @@ return { [1]="immune_to_status_ailments" } }, - [75]={ + [76]={ [1]={ [1]={ limit={ @@ -1679,7 +1696,7 @@ return { [1]="impale_debuff_effect_+%" } }, - [76]={ + [77]={ [1]={ [1]={ [1]={ @@ -1704,7 +1721,7 @@ return { [1]="life_leech_from_physical_attack_damage_permyriad" } }, - [77]={ + [78]={ [1]={ [1]={ limit={ @@ -1734,7 +1751,7 @@ return { [1]="lightning_damage_taken_+%" } }, - [78]={ + [79]={ [1]={ [1]={ limit={ @@ -1764,7 +1781,7 @@ return { [1]="movement_velocity_+%_on_chilled_ground" } }, - [79]={ + [80]={ [1]={ [1]={ limit={ @@ -1786,7 +1803,7 @@ return { [2]="physical_damage_aura_nearby_enemies_physical_damage_taken_+%_max" } }, - [80]={ + [81]={ [1]={ [1]={ limit={ @@ -1803,7 +1820,7 @@ return { [1]="physical_damage_taken_+%" } }, - [81]={ + [82]={ [1]={ [1]={ limit={ @@ -1833,7 +1850,7 @@ return { [1]="precision_grants_area_of_effect_+%_final" } }, - [82]={ + [83]={ [1]={ [1]={ limit={ @@ -1850,7 +1867,7 @@ return { [1]="receive_bleeding_chance_%_when_hit_by_attack" } }, - [83]={ + [84]={ [1]={ [1]={ limit={ @@ -1867,7 +1884,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [84]={ + [85]={ [1]={ [1]={ limit={ @@ -1884,7 +1901,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [85]={ + [86]={ [1]={ [1]={ limit={ @@ -1901,7 +1918,7 @@ return { [1]="skill_aura_also_disables_non_blessing_mana_reservation_skills" } }, - [86]={ + [87]={ [1]={ [1]={ limit={ @@ -1918,7 +1935,7 @@ return { [1]="skill_buff_grant_critical_strike_multiplier_+" } }, - [87]={ + [88]={ [1]={ [1]={ limit={ @@ -1948,7 +1965,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [88]={ + [89]={ [1]={ [1]={ limit={ @@ -1978,7 +1995,7 @@ return { [1]="spell_damage_aura_spell_damage_+%_final" } }, - [89]={ + [90]={ [1]={ [1]={ limit={ @@ -2000,7 +2017,7 @@ return { [2]="spell_maximum_added_chaos_damage" } }, - [90]={ + [91]={ [1]={ [1]={ limit={ @@ -2030,7 +2047,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [91]={ + [92]={ [1]={ [1]={ limit={ @@ -2095,54 +2112,55 @@ return { ["chance_to_evade_attacks_%"]=27, ["chill_and_freeze_duration_+%"]=54, ["cold_damage_taken_+%"]=55, - ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=56, - ["damage_+%_if_changed_stances_recently"]=57, - ["damage_+%_on_full_energy_shield"]=59, - ["damage_+%_on_full_mana"]=58, - ["damage_+%_when_on_full_life"]=60, - ["damage_taken_from_suppressed_hits_is_unlucky"]=61, - ["delirium_aura_damage_over_time_+%_final"]=62, - ["delirium_skill_effect_duration_+%"]=63, + ["cold_penetration_%_vs_chilled_enemies"]=56, + ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=57, + ["damage_+%_if_changed_stances_recently"]=58, + ["damage_+%_on_full_energy_shield"]=60, + ["damage_+%_on_full_mana"]=59, + ["damage_+%_when_on_full_life"]=61, + ["damage_taken_from_suppressed_hits_is_unlucky"]=62, + ["delirium_aura_damage_over_time_+%_final"]=63, + ["delirium_skill_effect_duration_+%"]=64, ["determination_aura_armour_+%_final"]=13, - ["energy_shield_delay_-%"]=64, + ["energy_shield_delay_-%"]=65, ["energy_shield_recharge_not_delayed_by_damage"]=25, - ["energy_shield_recharge_rate_+%"]=65, - ["evasion_rating_%_to_add_as_armour"]=66, - ["fire_damage_taken_+%"]=67, - ["flask_mana_to_recover_+%"]=68, + ["energy_shield_recharge_rate_+%"]=66, + ["evasion_rating_%_to_add_as_armour"]=67, + ["fire_damage_taken_+%"]=68, + ["flask_mana_to_recover_+%"]=69, ["grace_aura_evasion_rating_+%_final"]=11, - ["hatred_aura_cold_damage_+%_final"]=69, - ["hits_ignore_my_cold_resistance"]=70, - ["hits_ignore_my_fire_resistance"]=71, - ["hits_ignore_my_lightning_resistance"]=72, - ["immune_to_curses"]=73, - ["immune_to_status_ailments"]=74, - ["impale_debuff_effect_+%"]=75, - ["life_leech_from_physical_attack_damage_permyriad"]=76, + ["hatred_aura_cold_damage_+%_final"]=70, + ["hits_ignore_my_cold_resistance"]=71, + ["hits_ignore_my_fire_resistance"]=72, + ["hits_ignore_my_lightning_resistance"]=73, + ["immune_to_curses"]=74, + ["immune_to_status_ailments"]=75, + ["impale_debuff_effect_+%"]=76, + ["life_leech_from_physical_attack_damage_permyriad"]=77, ["life_regeneration_rate_per_minute_%"]=6, - ["lightning_damage_taken_+%"]=77, - ["movement_velocity_+%_on_chilled_ground"]=78, + ["lightning_damage_taken_+%"]=78, + ["movement_velocity_+%_on_chilled_ground"]=79, ["no_mana_cost"]=26, parent="skill_stat_descriptions", ["physical_damage_%_to_add_as_cold"]=23, ["physical_damage_+%"]=1, - ["physical_damage_aura_nearby_enemies_physical_damage_taken_+%"]=79, - ["physical_damage_aura_nearby_enemies_physical_damage_taken_+%_max"]=79, - ["physical_damage_taken_+%"]=80, - ["precision_grants_area_of_effect_+%_final"]=81, - ["receive_bleeding_chance_%_when_hit_by_attack"]=82, - ["reduce_enemy_chaos_resistance_%"]=83, - ["reduce_enemy_elemental_resistance_%"]=84, - ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=85, - ["skill_buff_grant_critical_strike_multiplier_+"]=86, + ["physical_damage_aura_nearby_enemies_physical_damage_taken_+%"]=80, + ["physical_damage_aura_nearby_enemies_physical_damage_taken_+%_max"]=80, + ["physical_damage_taken_+%"]=81, + ["precision_grants_area_of_effect_+%_final"]=82, + ["receive_bleeding_chance_%_when_hit_by_attack"]=83, + ["reduce_enemy_chaos_resistance_%"]=84, + ["reduce_enemy_elemental_resistance_%"]=85, + ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=86, + ["skill_buff_grant_critical_strike_multiplier_+"]=87, ["skill_buff_grants_critical_strike_chance_+%"]=9, - ["spell_critical_strike_chance_+%"]=87, - ["spell_damage_aura_spell_damage_+%_final"]=88, - ["spell_maximum_added_chaos_damage"]=89, + ["spell_critical_strike_chance_+%"]=88, + ["spell_damage_aura_spell_damage_+%_final"]=89, + ["spell_maximum_added_chaos_damage"]=90, ["spell_maximum_added_fire_damage"]=29, - ["spell_minimum_added_chaos_damage"]=89, + ["spell_minimum_added_chaos_damage"]=90, ["spell_minimum_added_fire_damage"]=29, - ["summon_totem_cast_speed_+%"]=90, - ["support_guardians_blessing_aura_only_enabled_while_support_minion_is_summoned"]=91, + ["summon_totem_cast_speed_+%"]=91, + ["support_guardians_blessing_aura_only_enabled_while_support_minion_is_summoned"]=92, ["wrath_aura_spell_lightning_damage_+%_final"]=30 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/buff_skill_stat_descriptions.lua b/src/Data/StatDescriptions/buff_skill_stat_descriptions.lua index 0d6fcc15e5..32994417f8 100644 --- a/src/Data/StatDescriptions/buff_skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/buff_skill_stat_descriptions.lua @@ -249,6 +249,36 @@ return { } }, [12]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% more Mana Cost of Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% less Mana Cost of Skills" + } + }, + name="mana_infused_staff_buff_mana_cost_final", + stats={ + [1]="active_skill_buff_mana_cost_+%_final_to_grant" + } + }, + [13]={ [1]={ [1]={ limit={ @@ -265,7 +295,37 @@ return { [1]="shield_spell_block_%" } }, - [13]={ + [14]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% more Chance to Block Attack and Spell Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buff grants {0}% less Chance to Block Attack and Spell Damage" + } + }, + name="mana_infused_staff_buff_block_chance_final", + stats={ + [1]="active_skill_buff_block_chance_+%_final_to_grant" + } + }, + [15]={ [1]={ [1]={ [1]={ @@ -286,7 +346,41 @@ return { [1]="phase_through_objects" } }, - [14]={ + [16]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0:+d}% increased effect of Chill" + } + }, + name="buff_chill_effect", + stats={ + [1]="active_skill_buff_chill_effect_+%_to_grant" + } + }, + [17]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff causes Damage to Penetrate {0}% of Cold Resistance against Chilled Enemies" + } + }, + name="buff_cold_pen_vs_chilled", + stats={ + [1]="active_skill_buff_cold_penetration_%_vs_chilled_enemies_to_grant" + } + }, + [18]={ [1]={ [1]={ limit={ @@ -325,7 +419,7 @@ return { [2]="quality_display_shock_chance_from_skill_is_gem" } }, - [15]={ + [19]={ [1]={ [1]={ limit={ @@ -355,7 +449,7 @@ return { [1]="base_damage_taken_+%" } }, - [16]={ + [20]={ [1]={ [1]={ limit={ @@ -372,7 +466,7 @@ return { [1]="base_immune_to_freeze" } }, - [17]={ + [21]={ [1]={ [1]={ limit={ @@ -402,7 +496,7 @@ return { [1]="base_movement_velocity_+%" } }, - [18]={ + [22]={ [1]={ [1]={ limit={ @@ -419,7 +513,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [19]={ + [23]={ [1]={ [1]={ [1]={ @@ -440,7 +534,7 @@ return { [1]="berserk_rage_effect_+%" } }, - [20]={ + [24]={ [1]={ [1]={ limit={ @@ -470,7 +564,7 @@ return { [1]="berserk_spell_damage_+%_final" } }, - [21]={ + [25]={ [1]={ [1]={ limit={ @@ -492,7 +586,7 @@ return { [2]="buff_added_spell_maximum_base_physical_damage_per_shield_quality" } }, - [22]={ + [26]={ [1]={ [1]={ limit={ @@ -509,7 +603,7 @@ return { [1]="bulwark_link_grants_recover_X_life_on_block" } }, - [23]={ + [27]={ [1]={ [1]={ limit={ @@ -539,7 +633,7 @@ return { [1]="bulwark_link_grants_stun_threshold_+%" } }, - [24]={ + [28]={ [1]={ [1]={ limit={ @@ -569,7 +663,7 @@ return { [1]="critical_link_grants_accuracy_rating_+%" } }, - [25]={ + [29]={ [1]={ [1]={ limit={ @@ -586,7 +680,7 @@ return { [1]="critical_link_grants_base_critical_strike_multiplier_+" } }, - [26]={ + [30]={ [1]={ [1]={ [1]={ @@ -607,7 +701,7 @@ return { [1]="damage_taken_goes_to_mana_%" } }, - [27]={ + [31]={ [1]={ [1]={ limit={ @@ -624,7 +718,7 @@ return { [1]="display_bulwark_link_overrides_attack_block_and_maximum_attack_block" } }, - [28]={ + [32]={ [1]={ [1]={ limit={ @@ -641,7 +735,7 @@ return { [1]="display_critical_link_overrides_main_hand_critical_strike_chance" } }, - [29]={ + [33]={ [1]={ [1]={ limit={ @@ -658,7 +752,7 @@ return { [1]="display_skill_buff_grants_bleeding_immunity" } }, - [30]={ + [34]={ [1]={ [1]={ [1]={ @@ -679,7 +773,7 @@ return { [1]="energy_shield_lost_per_minute" } }, - [31]={ + [35]={ [1]={ [1]={ [1]={ @@ -700,7 +794,7 @@ return { [1]="flame_link_grants_chance_to_ignite_%" } }, - [32]={ + [36]={ [1]={ [1]={ limit={ @@ -778,7 +872,7 @@ return { [3]="cannot_recover_above_low_life_except_flasks" } }, - [33]={ + [37]={ [1]={ [1]={ limit={ @@ -795,7 +889,7 @@ return { [1]="physical_damage_reduction_%_per_endurance_charge" } }, - [34]={ + [38]={ [1]={ [1]={ limit={ @@ -825,7 +919,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [35]={ + [39]={ [1]={ [1]={ limit={ @@ -842,7 +936,7 @@ return { [1]="life_leech_is_applied_to_remora_link_targets_instead" } }, - [36]={ + [40]={ [1]={ [1]={ limit={ @@ -872,7 +966,7 @@ return { [1]="remora_link_grants_damage_+%_when_on_full_life" } }, - [37]={ + [41]={ [1]={ [1]={ [1]={ @@ -893,7 +987,7 @@ return { [1]="remora_link_grants_maximum_life_leech_rate_%_per_minute" } }, - [38]={ + [42]={ [1]={ [1]={ limit={ @@ -910,7 +1004,7 @@ return { [1]="resist_all_elements_%_per_endurance_charge" } }, - [39]={ + [43]={ [1]={ [1]={ limit={ @@ -927,7 +1021,7 @@ return { [1]="resist_all_%" } }, - [40]={ + [44]={ [1]={ [1]={ limit={ @@ -957,7 +1051,7 @@ return { [1]="skill_buff_effect_+%" } }, - [41]={ + [45]={ [1]={ [1]={ limit={ @@ -987,7 +1081,7 @@ return { [1]="skill_buff_grants_attack_and_cast_speed_+%" } }, - [42]={ + [46]={ [1]={ [1]={ limit={ @@ -1004,7 +1098,7 @@ return { [1]="skill_buff_grants_chance_to_freeze_%" } }, - [43]={ + [47]={ [1]={ [1]={ limit={ @@ -1034,7 +1128,7 @@ return { [1]="skill_buff_grants_damage_+%" } }, - [44]={ + [48]={ [1]={ [1]={ limit={ @@ -1064,7 +1158,7 @@ return { [1]="skill_buff_grants_shock_duration_+%" } }, - [45]={ + [49]={ [1]={ [1]={ limit={ @@ -1081,7 +1175,7 @@ return { [1]="skill_display_buff_grants_shock_immunity" } }, - [46]={ + [50]={ [1]={ [1]={ [1]={ @@ -1102,7 +1196,7 @@ return { [1]="skill_grants_life_cost_%_mana_cost_while_not_on_low_life" } }, - [47]={ + [51]={ [1]={ [1]={ limit={ @@ -1132,7 +1226,7 @@ return { [1]="soul_link_grants_damage_taken_+%_final" } }, - [48]={ + [52]={ [1]={ [1]={ limit={ @@ -1162,7 +1256,7 @@ return { [1]="soul_link_grants_mana_regeneration_+%" } }, - [49]={ + [53]={ [1]={ [1]={ limit={ @@ -1179,7 +1273,7 @@ return { [1]="soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you" } }, - [50]={ + [54]={ [1]={ [1]={ limit={ @@ -1209,7 +1303,7 @@ return { [1]="spell_damage_+%" } }, - [51]={ + [55]={ [1]={ [1]={ limit={ @@ -1239,7 +1333,7 @@ return { [1]="storm_blade_energy_shield_+%_final" } }, - [52]={ + [56]={ [1]={ [1]={ limit={ @@ -1269,7 +1363,7 @@ return { [1]="storm_blade_global_attack_speed_+%" } }, - [53]={ + [57]={ [1]={ [1]={ [1]={ @@ -1290,7 +1384,7 @@ return { [1]="unaffected_by_temporal_chains" } }, - [54]={ + [58]={ [1]={ [1]={ limit={ @@ -1307,7 +1401,7 @@ return { [1]="vaal_molten_shall_armour_+%_final" } }, - [55]={ + [59]={ [1]={ [1]={ limit={ @@ -1329,7 +1423,7 @@ return { [2]="virtual_flame_link_maximum_fire_damage" } }, - [56]={ + [60]={ [1]={ [1]={ limit={ @@ -1351,7 +1445,7 @@ return { [2]="virtual_storm_blade_maximum_lightning_damage" } }, - [57]={ + [61]={ [1]={ [1]={ limit={ @@ -1386,74 +1480,78 @@ return { [2]="link_grace_period_8_second_override" } }, + ["active_skill_buff_block_chance_+%_final_to_grant"]=14, + ["active_skill_buff_chill_effect_+%_to_grant"]=16, + ["active_skill_buff_cold_penetration_%_vs_chilled_enemies_to_grant"]=17, + ["active_skill_buff_mana_cost_+%_final_to_grant"]=12, ["attack_maximum_added_cold_damage"]=2, ["attack_maximum_added_fire_damage"]=1, ["attack_maximum_added_lightning_damage"]=4, ["attack_minimum_added_cold_damage"]=2, ["attack_minimum_added_fire_damage"]=1, ["attack_minimum_added_lightning_damage"]=4, - ["base_chance_to_shock_%_from_skill"]=14, - ["base_damage_taken_+%"]=15, + ["base_chance_to_shock_%_from_skill"]=18, + ["base_damage_taken_+%"]=19, ["base_energy_shield_regeneration_rate_per_minute"]=11, - ["base_immune_to_freeze"]=16, + ["base_immune_to_freeze"]=20, ["base_mana_regeneration_rate_per_minute"]=10, - ["base_movement_velocity_+%"]=17, - ["base_physical_damage_reduction_rating"]=18, - ["berserk_rage_effect_+%"]=19, - ["berserk_spell_damage_+%_final"]=20, - ["buff_added_spell_maximum_base_physical_damage_per_shield_quality"]=21, - ["buff_added_spell_minimum_base_physical_damage_per_shield_quality"]=21, - ["bulwark_link_grants_recover_X_life_on_block"]=22, - ["bulwark_link_grants_stun_threshold_+%"]=23, - ["cannot_recover_above_low_life_except_flasks"]=32, - ["critical_link_grants_accuracy_rating_+%"]=24, - ["critical_link_grants_base_critical_strike_multiplier_+"]=25, - ["damage_taken_goes_to_mana_%"]=26, - ["display_bulwark_link_overrides_attack_block_and_maximum_attack_block"]=27, - ["display_critical_link_overrides_main_hand_critical_strike_chance"]=28, - ["display_link_stuff"]=57, - ["display_skill_buff_grants_bleeding_immunity"]=29, - ["energy_shield_lost_per_minute"]=30, - ["flame_link_grants_chance_to_ignite_%"]=31, + ["base_movement_velocity_+%"]=21, + ["base_physical_damage_reduction_rating"]=22, + ["berserk_rage_effect_+%"]=23, + ["berserk_spell_damage_+%_final"]=24, + ["buff_added_spell_maximum_base_physical_damage_per_shield_quality"]=25, + ["buff_added_spell_minimum_base_physical_damage_per_shield_quality"]=25, + ["bulwark_link_grants_recover_X_life_on_block"]=26, + ["bulwark_link_grants_stun_threshold_+%"]=27, + ["cannot_recover_above_low_life_except_flasks"]=36, + ["critical_link_grants_accuracy_rating_+%"]=28, + ["critical_link_grants_base_critical_strike_multiplier_+"]=29, + ["damage_taken_goes_to_mana_%"]=30, + ["display_bulwark_link_overrides_attack_block_and_maximum_attack_block"]=31, + ["display_critical_link_overrides_main_hand_critical_strike_chance"]=32, + ["display_link_stuff"]=61, + ["display_skill_buff_grants_bleeding_immunity"]=33, + ["energy_shield_lost_per_minute"]=34, + ["flame_link_grants_chance_to_ignite_%"]=35, ["herald_of_ice_cold_damage_+%"]=7, ["herald_of_thunder_lightning_damage_+%"]=8, - ["life_leech_is_applied_to_remora_link_targets_instead"]=35, - ["link_grace_period_8_second_override"]=57, + ["life_leech_is_applied_to_remora_link_targets_instead"]=39, + ["link_grace_period_8_second_override"]=61, parent="skill_stat_descriptions", - ["petrified_blood_%_life_loss_below_half_from_hit_to_prevent"]=32, - ["petrified_blood_%_prevented_life_loss_to_lose_over_time"]=32, - ["phase_through_objects"]=13, - ["physical_damage_reduction_%_per_endurance_charge"]=33, - ["physical_damage_reduction_rating_+%"]=34, - ["quality_display_shock_chance_from_skill_is_gem"]=14, - ["remora_link_grants_damage_+%_when_on_full_life"]=36, - ["remora_link_grants_maximum_life_leech_rate_%_per_minute"]=37, - ["resist_all_%"]=39, - ["resist_all_elements_%_per_endurance_charge"]=38, - ["shield_spell_block_%"]=12, - ["skill_buff_effect_+%"]=40, - ["skill_buff_grants_attack_and_cast_speed_+%"]=41, - ["skill_buff_grants_chance_to_freeze_%"]=42, + ["petrified_blood_%_life_loss_below_half_from_hit_to_prevent"]=36, + ["petrified_blood_%_prevented_life_loss_to_lose_over_time"]=36, + ["phase_through_objects"]=15, + ["physical_damage_reduction_%_per_endurance_charge"]=37, + ["physical_damage_reduction_rating_+%"]=38, + ["quality_display_shock_chance_from_skill_is_gem"]=18, + ["remora_link_grants_damage_+%_when_on_full_life"]=40, + ["remora_link_grants_maximum_life_leech_rate_%_per_minute"]=41, + ["resist_all_%"]=43, + ["resist_all_elements_%_per_endurance_charge"]=42, + ["shield_spell_block_%"]=13, + ["skill_buff_effect_+%"]=44, + ["skill_buff_grants_attack_and_cast_speed_+%"]=45, + ["skill_buff_grants_chance_to_freeze_%"]=46, ["skill_buff_grants_critical_strike_chance_+%"]=6, - ["skill_buff_grants_damage_+%"]=43, - ["skill_buff_grants_shock_duration_+%"]=44, - ["skill_display_buff_grants_shock_immunity"]=45, - ["skill_grants_life_cost_%_mana_cost_while_not_on_low_life"]=46, - ["soul_link_grants_damage_taken_+%_final"]=47, - ["soul_link_grants_mana_regeneration_+%"]=48, - ["soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you"]=49, - ["spell_damage_+%"]=50, + ["skill_buff_grants_damage_+%"]=47, + ["skill_buff_grants_shock_duration_+%"]=48, + ["skill_display_buff_grants_shock_immunity"]=49, + ["skill_grants_life_cost_%_mana_cost_while_not_on_low_life"]=50, + ["soul_link_grants_damage_taken_+%_final"]=51, + ["soul_link_grants_mana_regeneration_+%"]=52, + ["soul_link_grants_take_%_of_hit_damage_from_soul_link_source_energy_shield_before_you"]=53, + ["spell_damage_+%"]=54, ["spell_maximum_added_cold_damage"]=3, ["spell_maximum_added_lightning_damage"]=5, ["spell_minimum_added_cold_damage"]=3, ["spell_minimum_added_lightning_damage"]=5, ["stealth_+%"]=9, - ["storm_blade_energy_shield_+%_final"]=51, - ["storm_blade_global_attack_speed_+%"]=52, - ["unaffected_by_temporal_chains"]=53, - ["vaal_molten_shall_armour_+%_final"]=54, - ["virtual_flame_link_maximum_fire_damage"]=55, - ["virtual_flame_link_minimum_fire_damage"]=55, - ["virtual_storm_blade_maximum_lightning_damage"]=56, - ["virtual_storm_blade_minimum_lightning_damage"]=56 + ["storm_blade_energy_shield_+%_final"]=55, + ["storm_blade_global_attack_speed_+%"]=56, + ["unaffected_by_temporal_chains"]=57, + ["vaal_molten_shall_armour_+%_final"]=58, + ["virtual_flame_link_maximum_fire_damage"]=59, + ["virtual_flame_link_minimum_fire_damage"]=59, + ["virtual_storm_blade_maximum_lightning_damage"]=60, + ["virtual_storm_blade_minimum_lightning_damage"]=60 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/gem_stat_descriptions.lua b/src/Data/StatDescriptions/gem_stat_descriptions.lua index aaf1d80b84..9383d5ba1f 100644 --- a/src/Data/StatDescriptions/gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/gem_stat_descriptions.lua @@ -5151,6 +5151,35 @@ return { } }, [185]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Shock inflicted with Supported Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Shock inflicted with Supported Skills" + } + }, + stats={ + [1]="shock_effect_+%" + } + }, + [186]={ [1]={ [1]={ [1]={ @@ -5187,7 +5216,7 @@ return { [1]="support_chills_also_grant_cold_damage_taken_per_minute_+%" } }, - [186]={ + [187]={ [1]={ [1]={ limit={ @@ -5203,7 +5232,7 @@ return { [1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount" } }, - [187]={ + [188]={ [1]={ [1]={ [1]={ @@ -5240,7 +5269,7 @@ return { [1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%" } }, - [188]={ + [189]={ [1]={ [1]={ [1]={ @@ -5260,7 +5289,7 @@ return { [1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount" } }, - [189]={ + [190]={ [1]={ [1]={ limit={ @@ -5289,7 +5318,7 @@ return { [1]="mine_throwing_speed_+%_per_frenzy_charge" } }, - [190]={ + [191]={ [1]={ [1]={ limit={ @@ -5318,7 +5347,7 @@ return { [1]="mine_critical_strike_chance_+%_per_power_charge" } }, - [191]={ + [192]={ [1]={ [1]={ limit={ @@ -5334,7 +5363,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [192]={ + [193]={ [1]={ [1]={ [1]={ @@ -5354,7 +5383,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [193]={ + [194]={ [1]={ [1]={ [1]={ @@ -5374,7 +5403,7 @@ return { [1]="minion_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [194]={ + [195]={ [1]={ [1]={ limit={ @@ -5403,7 +5432,7 @@ return { [1]="minion_fire_damage_taken_+%" } }, - [195]={ + [196]={ [1]={ [1]={ [1]={ @@ -5423,7 +5452,7 @@ return { [1]="support_minion_instability_minion_base_fire_area_damage_per_minute" } }, - [196]={ + [197]={ [1]={ [1]={ [1]={ @@ -5456,7 +5485,7 @@ return { [1]="infernal_legion_minions_have_burning_effect_radius_+" } }, - [197]={ + [198]={ [1]={ [1]={ [1]={ @@ -5476,7 +5505,7 @@ return { [1]="ancestral_slam_interval_duration" } }, - [198]={ + [199]={ [1]={ [1]={ limit={ @@ -5505,7 +5534,7 @@ return { [1]="support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final" } }, - [199]={ + [200]={ [1]={ [1]={ limit={ @@ -5534,7 +5563,7 @@ return { [1]="support_ancestral_slam_big_hit_area_+%" } }, - [200]={ + [201]={ [1]={ [1]={ [1]={ @@ -5554,7 +5583,7 @@ return { [1]="gain_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [201]={ + [202]={ [1]={ [1]={ [1]={ @@ -5574,7 +5603,7 @@ return { [1]="gain_unholy_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [202]={ + [203]={ [1]={ [1]={ limit={ @@ -5603,7 +5632,7 @@ return { [1]="damage_+%_final_per_10_lowest_unholy_resonance" } }, - [203]={ + [204]={ [1]={ [1]={ limit={ @@ -5632,7 +5661,7 @@ return { [1]="elemental_damage_+%_final_per_5_lowest_resonance" } }, - [204]={ + [205]={ [1]={ [1]={ limit={ @@ -5648,7 +5677,7 @@ return { [1]="damage_penetrates_%_elemental_resistances_while_all_resonance_is_25" } }, - [205]={ + [206]={ [1]={ [1]={ limit={ @@ -5673,7 +5702,7 @@ return { [1]="hits_ignore_enemy_monster_lightning_and_chaos_resistance_%_chance_while_all_unholy_resonance_is_25" } }, - [206]={ + [207]={ [1]={ [1]={ limit={ @@ -5698,7 +5727,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_all_unholy_resonance_is_25" } }, - [207]={ + [208]={ [1]={ [1]={ limit={ @@ -5727,7 +5756,7 @@ return { [1]="attack_and_cast_speed_+%_while_all_resonance_is_at_least_25" } }, - [208]={ + [209]={ [1]={ [1]={ [1]={ @@ -5747,7 +5776,7 @@ return { [1]="hits_grant_cruelty" } }, - [209]={ + [210]={ [1]={ [1]={ limit={ @@ -5776,7 +5805,7 @@ return { [1]="totem_life_+%" } }, - [210]={ + [211]={ [1]={ [1]={ limit={ @@ -5792,7 +5821,7 @@ return { [1]="base_mana_cost_+" } }, - [211]={ + [212]={ [1]={ [1]={ limit={ @@ -5808,7 +5837,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [212]={ + [213]={ [1]={ [1]={ limit={ @@ -5824,7 +5853,7 @@ return { [1]="projectile_additional_return_chance_%" } }, - [213]={ + [214]={ [1]={ [1]={ limit={ @@ -5853,7 +5882,7 @@ return { [1]="maximum_attack_damage_+%_final_from_volatility_support" } }, - [214]={ + [215]={ [1]={ [1]={ limit={ @@ -5882,7 +5911,7 @@ return { [1]="minimum_attack_damage_+%_final_from_volatility_support" } }, - [215]={ + [216]={ [1]={ [1]={ limit={ @@ -5911,7 +5940,7 @@ return { [1]="mark_skills_curse_effect_+%" } }, - [216]={ + [217]={ [1]={ [1]={ [1]={ @@ -5931,7 +5960,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [217]={ + [218]={ [1]={ [1]={ [1]={ @@ -5955,7 +5984,7 @@ return { [1]="gain_overloaded_intensity_for_x_ms_after_losing_6_intensity" } }, - [218]={ + [219]={ [1]={ [1]={ limit={ @@ -5971,7 +6000,7 @@ return { [1]="accuracy_rating" } }, - [219]={ + [220]={ [1]={ [1]={ limit={ @@ -6000,9 +6029,13 @@ return { [1]="accuracy_rating_+%" } }, - [220]={ + [221]={ [1]={ [1]={ + [1]={ + k="reminderstring", + v="ReminderTextArcaneMight" + }, limit={ [1]={ [1]="#", @@ -6013,22 +6046,13 @@ return { [2]=0 } }, - text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill at {0:+d}% of their value" + text="{0:+d}% Arcane Might" }, [2]={ - limit={ - [1]={ - [1]=100, - [2]=100 - }, - [2]={ - [1]="#", - [2]="#" - } + [1]={ + k="reminderstring", + v="ReminderTextArcaneMight" }, - text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill" - }, - [3]={ limit={ [1]={ [1]="#", @@ -6039,7 +6063,7 @@ return { [2]="#" } }, - text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill at {0}% of their value" + text="{0}% Arcane Might" } }, stats={ @@ -6047,7 +6071,7 @@ return { [2]="quality_display_spell_damage_to_attack_damage_is_gem" } }, - [221]={ + [222]={ [1]={ [1]={ limit={ @@ -6072,7 +6096,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [222]={ + [223]={ [1]={ [1]={ limit={ @@ -6088,7 +6112,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [223]={ + [224]={ [1]={ [1]={ limit={ @@ -6117,7 +6141,7 @@ return { [1]="added_damage_+%_final" } }, - [224]={ + [225]={ [1]={ [1]={ [1]={ @@ -6137,7 +6161,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [225]={ + [226]={ [1]={ [1]={ [1]={ @@ -6157,7 +6181,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [226]={ + [227]={ [1]={ [1]={ [1]={ @@ -6177,7 +6201,7 @@ return { [1]="additional_critical_strike_chance_per_overloaded_intensity" } }, - [227]={ + [228]={ [1]={ [1]={ [1]={ @@ -6197,7 +6221,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [228]={ + [229]={ [1]={ [1]={ [1]={ @@ -6217,7 +6241,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [229]={ + [230]={ [1]={ [1]={ limit={ @@ -6264,7 +6288,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [230]={ + [231]={ [1]={ [1]={ limit={ @@ -6293,7 +6317,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [231]={ + [232]={ [1]={ [1]={ limit={ @@ -6322,7 +6346,7 @@ return { [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" } }, - [232]={ + [233]={ [1]={ [1]={ [1]={ @@ -6359,7 +6383,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [233]={ + [234]={ [1]={ [1]={ limit={ @@ -6375,7 +6399,7 @@ return { [1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%" } }, - [234]={ + [235]={ [1]={ [1]={ limit={ @@ -6404,7 +6428,7 @@ return { [1]="archmage_gain_lightning_damage_%_of_max_unreserved_mana" } }, - [235]={ + [236]={ [1]={ [1]={ limit={ @@ -6433,7 +6457,7 @@ return { [1]="area_damage_+%" } }, - [236]={ + [237]={ [1]={ [1]={ limit={ @@ -6462,7 +6486,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [237]={ + [238]={ [1]={ [1]={ limit={ @@ -6491,7 +6515,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [238]={ + [239]={ [1]={ [1]={ limit={ @@ -6520,7 +6544,7 @@ return { [1]="attack_critical_strike_chance_+%" } }, - [239]={ + [240]={ [1]={ [1]={ limit={ @@ -6549,7 +6573,7 @@ return { [1]="attack_damage_+%" } }, - [240]={ + [241]={ [1]={ [1]={ limit={ @@ -6578,7 +6602,7 @@ return { [1]="attack_damage_+%_per_1000_accuracy_rating" } }, - [241]={ + [242]={ [1]={ [1]={ limit={ @@ -6599,7 +6623,7 @@ return { [2]="attack_maximum_added_physical_damage_per_10_rage" } }, - [242]={ + [243]={ [1]={ [1]={ limit={ @@ -6620,7 +6644,7 @@ return { [2]="attack_maximum_added_physical_damage_with_at_least_10_rage" } }, - [243]={ + [244]={ [1]={ [1]={ limit={ @@ -6641,7 +6665,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons" } }, - [244]={ + [245]={ [1]={ [1]={ limit={ @@ -6662,7 +6686,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons_per_trauma" } }, - [245]={ + [246]={ [1]={ [1]={ [1]={ @@ -6686,7 +6710,7 @@ return { [1]="attack_skill_mana_leech_from_any_damage_permyriad" } }, - [246]={ + [247]={ [1]={ [1]={ limit={ @@ -6715,7 +6739,7 @@ return { [1]="attack_speed_+%" } }, - [247]={ + [248]={ [1]={ [1]={ [1]={ @@ -6752,7 +6776,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [248]={ + [249]={ [1]={ [1]={ limit={ @@ -6781,7 +6805,7 @@ return { [1]="attack_speed_+%_with_at_least_10_rage" } }, - [249]={ + [250]={ [1]={ [1]={ limit={ @@ -6810,7 +6834,7 @@ return { [1]="attack_speed_+%_with_atleast_20_rage" } }, - [250]={ + [251]={ [1]={ [1]={ [1]={ @@ -6843,7 +6867,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [251]={ + [252]={ [1]={ [1]={ limit={ @@ -6859,7 +6883,7 @@ return { [1]="aura_skill_no_reservation" } }, - [252]={ + [253]={ [1]={ [1]={ limit={ @@ -6884,7 +6908,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [253]={ + [254]={ [1]={ [1]={ limit={ @@ -6913,7 +6937,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [254]={ + [255]={ [1]={ [1]={ [1]={ @@ -6950,7 +6974,7 @@ return { [1]="base_ailment_damage_+%" } }, - [255]={ + [256]={ [1]={ [1]={ [1]={ @@ -6987,7 +7011,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [256]={ + [257]={ [1]={ [1]={ limit={ @@ -7016,7 +7040,7 @@ return { [1]="base_bleed_duration_+%" } }, - [257]={ + [258]={ [1]={ [1]={ limit={ @@ -7045,7 +7069,7 @@ return { [1]="base_cast_speed_+%" } }, - [258]={ + [259]={ [1]={ [1]={ limit={ @@ -7061,7 +7085,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [259]={ + [260]={ [1]={ [1]={ [1]={ @@ -7120,7 +7144,7 @@ return { [2]="always_freeze" } }, - [260]={ + [261]={ [1]={ [1]={ [1]={ @@ -7153,7 +7177,7 @@ return { [1]="base_chance_to_ignite_%" } }, - [261]={ + [262]={ [1]={ [1]={ [1]={ @@ -7186,7 +7210,7 @@ return { [1]="base_chance_to_shock_%" } }, - [262]={ + [263]={ [1]={ [1]={ [1]={ @@ -7206,7 +7230,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [263]={ + [264]={ [1]={ [1]={ ["gem_quality"]=true, @@ -7259,7 +7283,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [264]={ + [265]={ [1]={ [1]={ limit={ @@ -7288,7 +7312,7 @@ return { [1]="base_curse_duration_+%" } }, - [265]={ + [266]={ [1]={ [1]={ limit={ @@ -7317,7 +7341,7 @@ return { [1]="base_damage_+%_while_an_ailment_on_you" } }, - [266]={ + [267]={ [1]={ [1]={ limit={ @@ -7333,7 +7357,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [267]={ + [268]={ [1]={ [1]={ [1]={ @@ -7353,7 +7377,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [268]={ + [269]={ [1]={ [1]={ [1]={ @@ -7386,7 +7410,7 @@ return { [1]="base_hex_zone_skill_duration_ms" } }, - [269]={ + [270]={ [1]={ [1]={ [1]={ @@ -7419,7 +7443,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [270]={ + [271]={ [1]={ [1]={ [1]={ @@ -7452,7 +7476,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [271]={ + [272]={ [1]={ [1]={ [1]={ @@ -7485,7 +7509,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [272]={ + [273]={ [1]={ [1]={ limit={ @@ -7514,7 +7538,7 @@ return { [1]="base_killed_monster_dropped_item_quantity_+%" } }, - [273]={ + [274]={ [1]={ [1]={ limit={ @@ -7543,7 +7567,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [274]={ + [275]={ [1]={ [1]={ [1]={ @@ -7567,7 +7591,7 @@ return { [1]="base_life_leech_from_attack_damage_permyriad" } }, - [275]={ + [276]={ [1]={ [1]={ [1]={ @@ -7591,7 +7615,7 @@ return { [1]="base_life_leech_from_chaos_damage_permyriad" } }, - [276]={ + [277]={ [1]={ [1]={ limit={ @@ -7620,7 +7644,7 @@ return { [1]="base_life_reservation_efficiency_+%" } }, - [277]={ + [278]={ [1]={ [1]={ limit={ @@ -7649,7 +7673,7 @@ return { [1]="base_life_reservation_+%" } }, - [278]={ + [279]={ [1]={ [1]={ limit={ @@ -7678,7 +7702,7 @@ return { [1]="base_mana_reservation_+%" } }, - [279]={ + [280]={ [1]={ [1]={ [1]={ @@ -7698,7 +7722,7 @@ return { [1]="base_mine_detonation_time_ms" } }, - [280]={ + [281]={ [1]={ [1]={ limit={ @@ -7723,7 +7747,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [281]={ + [282]={ [1]={ [1]={ limit={ @@ -7739,7 +7763,7 @@ return { [1]="base_physical_damage_%_to_convert_to_lightning" } }, - [282]={ + [283]={ [1]={ [1]={ limit={ @@ -7768,7 +7792,7 @@ return { [1]="base_poison_damage_+%" } }, - [283]={ + [284]={ [1]={ [1]={ limit={ @@ -7797,7 +7821,7 @@ return { [1]="base_poison_duration_+%" } }, - [284]={ + [285]={ [1]={ [1]={ limit={ @@ -7826,7 +7850,7 @@ return { [1]="base_projectile_speed_+%" } }, - [285]={ + [286]={ [1]={ [1]={ limit={ @@ -7855,7 +7879,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [286]={ + [287]={ [1]={ [1]={ limit={ @@ -7884,7 +7908,7 @@ return { [1]="base_reservation_+%" } }, - [287]={ + [288]={ [1]={ [1]={ limit={ @@ -7900,7 +7924,7 @@ return { [1]="base_skill_cost_life_instead_of_mana_%" } }, - [288]={ + [289]={ [1]={ [1]={ limit={ @@ -7916,7 +7940,7 @@ return { [1]="base_skill_no_reservation" } }, - [289]={ + [290]={ [1]={ [1]={ limit={ @@ -7945,7 +7969,7 @@ return { [1]="base_spell_cooldown_speed_+%" } }, - [290]={ + [291]={ [1]={ [1]={ limit={ @@ -7974,7 +7998,7 @@ return { [1]="base_stun_duration_+%" } }, - [291]={ + [292]={ [1]={ [1]={ [1]={ @@ -8011,7 +8035,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [292]={ + [293]={ [1]={ [1]={ limit={ @@ -8036,7 +8060,7 @@ return { [1]="base_total_number_of_sigils_allowed" } }, - [293]={ + [294]={ [1]={ [1]={ limit={ @@ -8125,7 +8149,7 @@ return { [3]="cannot_cause_bleeding" } }, - [294]={ + [295]={ [1]={ [1]={ limit={ @@ -8154,7 +8178,7 @@ return { [1]="bleeding_damage_+%" } }, - [295]={ + [296]={ [1]={ [1]={ [1]={ @@ -8174,7 +8198,7 @@ return { [1]="blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life" } }, - [296]={ + [297]={ [1]={ [1]={ limit={ @@ -8203,7 +8227,7 @@ return { [1]="burn_damage_+%" } }, - [297]={ + [298]={ [1]={ [1]={ limit={ @@ -8232,7 +8256,7 @@ return { [1]="cast_on_ward_break_damage_+%_final" } }, - [298]={ + [299]={ [1]={ [1]={ limit={ @@ -8261,7 +8285,7 @@ return { [1]="cast_when_damage_taken_trigger_threshold_+%" } }, - [299]={ + [300]={ [1]={ [1]={ limit={ @@ -8290,7 +8314,7 @@ return { [1]="chaining_range_+%" } }, - [300]={ + [301]={ [1]={ [1]={ limit={ @@ -8306,7 +8330,7 @@ return { [1]="chance_for_coin_shower_on_kill_%" } }, - [301]={ + [302]={ [1]={ [1]={ [1]={ @@ -8339,7 +8363,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [302]={ + [303]={ [1]={ [1]={ [1]={ @@ -8359,7 +8383,7 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [303]={ + [304]={ [1]={ [1]={ [1]={ @@ -8392,7 +8416,7 @@ return { [1]="chance_to_crush_on_hit_%" } }, - [304]={ + [305]={ [1]={ [1]={ limit={ @@ -8408,7 +8432,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [305]={ + [306]={ [1]={ [1]={ limit={ @@ -8424,7 +8448,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [306]={ + [307]={ [1]={ [1]={ [1]={ @@ -8465,7 +8489,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [307]={ + [308]={ [1]={ [1]={ [1]={ @@ -8514,7 +8538,7 @@ return { [1]="chance_to_freeze_shock_ignite_%" } }, - [308]={ + [309]={ [1]={ [1]={ limit={ @@ -8539,7 +8563,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [309]={ + [310]={ [1]={ [1]={ limit={ @@ -8564,7 +8588,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [310]={ + [311]={ [1]={ [1]={ [1]={ @@ -8584,7 +8608,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [311]={ + [312]={ [1]={ [1]={ [1]={ @@ -8617,7 +8641,7 @@ return { [1]="chance_to_intimidate_on_hit_%" } }, - [312]={ + [313]={ [1]={ [1]={ [1]={ @@ -8637,7 +8661,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [313]={ + [314]={ [1]={ [1]={ limit={ @@ -8662,7 +8686,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [314]={ + [315]={ [1]={ [1]={ [1]={ @@ -8695,7 +8719,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [315]={ + [316]={ [1]={ [1]={ limit={ @@ -8724,7 +8748,7 @@ return { [1]="channelled_skill_damage_+%" } }, - [316]={ + [317]={ [1]={ [1]={ limit={ @@ -8753,23 +8777,40 @@ return { [1]="chaos_damage_+%" } }, - [317]={ + [318]={ [1]={ [1]={ + [1]={ + k="locations_to_metres", + v=1 + }, + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="+1 metre to radius per Nearby Enemy, up to a maximum of +1 metre" + }, + [2]={ + [1]={ + k="locations_to_metres", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="+0.1 metres to radius per Nearby Enemy, up to a maximum of +1 metre" + text="{0:+d} metres to radius per Nearby Enemy, up to a maximum of +1 metre" } }, stats={ [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [318]={ + [319]={ [1]={ [1]={ [1]={ @@ -8789,7 +8830,7 @@ return { [1]="close_combat_damage_to_close_range_+%" } }, - [319]={ + [320]={ [1]={ [1]={ [1]={ @@ -8826,7 +8867,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [320]={ + [321]={ [1]={ [1]={ limit={ @@ -8842,7 +8883,7 @@ return { [1]="cold_damage_%_to_add_as_fire" } }, - [321]={ + [322]={ [1]={ [1]={ limit={ @@ -8871,7 +8912,7 @@ return { [1]="cold_damage_+%" } }, - [322]={ + [323]={ [1]={ [1]={ limit={ @@ -8900,7 +8941,7 @@ return { [1]="combat_rush_effect_+%" } }, - [323]={ + [324]={ [1]={ [1]={ [1]={ @@ -8941,7 +8982,7 @@ return { [1]="consecrated_cry_consecrated_ground_duration_ms" } }, - [324]={ + [325]={ [1]={ [1]={ limit={ @@ -8970,7 +9011,7 @@ return { [1]="consecrated_cry_warcry_area_of_effect_+%_final" } }, - [325]={ + [326]={ [1]={ [1]={ limit={ @@ -8995,7 +9036,7 @@ return { [1]="cooldown_recovery_rate_+%_if_no_enemies_in_your_presence" } }, - [326]={ + [327]={ [1]={ [1]={ limit={ @@ -9004,7 +9045,7 @@ return { [2]="#" } }, - text="Supported Spells have {0}% increased Cooldown Recovery Rate per 100 Ward" + text="Supported Spells have {0}% increased Cooldown Recovery Rate per 100 Ward, up to 400%" }, [2]={ limit={ @@ -9013,14 +9054,14 @@ return { [2]=-1 } }, - text="Supported Spells have {0}% reduced Cooldown Recovery Rate per 100 Ward" + text="Supported Spells have {0}% reduced Cooldown Recovery Rate per 100 Ward, up to 400%" } }, stats={ [1]="cooldown_recovery_rate_+%_per_100_ward" } }, - [327]={ + [328]={ [1]={ [1]={ limit={ @@ -9045,7 +9086,7 @@ return { [1]="cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence" } }, - [328]={ + [329]={ [1]={ [1]={ [1]={ @@ -9078,7 +9119,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [329]={ + [330]={ [1]={ [1]={ limit={ @@ -9094,7 +9135,7 @@ return { [1]="critical_ailment_dot_multiplier_+" } }, - [330]={ + [331]={ [1]={ [1]={ limit={ @@ -9123,7 +9164,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [331]={ + [332]={ [1]={ [1]={ limit={ @@ -9139,7 +9180,7 @@ return { [1]="critical_strike_multiplier_+_per_overloaded_intensity" } }, - [332]={ + [333]={ [1]={ [1]={ limit={ @@ -9168,7 +9209,7 @@ return { [1]="cruelty_effect_+%" } }, - [333]={ + [334]={ [1]={ [1]={ [1]={ @@ -9201,7 +9242,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [334]={ + [335]={ [1]={ [1]={ limit={ @@ -9230,7 +9271,7 @@ return { [1]="curse_area_of_effect_+%" } }, - [335]={ + [336]={ [1]={ [1]={ [1]={ @@ -9267,7 +9308,7 @@ return { [1]="damage_+%_if_you_have_consumed_a_corpse_recently" } }, - [336]={ + [337]={ [1]={ [1]={ limit={ @@ -9296,7 +9337,7 @@ return { [1]="damage_over_time_+%" } }, - [337]={ + [338]={ [1]={ [1]={ limit={ @@ -9325,7 +9366,7 @@ return { [1]="damage_+%" } }, - [338]={ + [339]={ [1]={ [1]={ limit={ @@ -9354,7 +9395,7 @@ return { [1]="damage_+%_for_non_minions" } }, - [339]={ + [340]={ [1]={ [1]={ limit={ @@ -9383,7 +9424,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [340]={ + [341]={ [1]={ [1]={ limit={ @@ -9412,7 +9453,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [341]={ + [342]={ [1]={ [1]={ limit={ @@ -9441,7 +9482,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [342]={ + [343]={ [1]={ [1]={ limit={ @@ -9470,7 +9511,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [343]={ + [344]={ [1]={ [1]={ limit={ @@ -9499,7 +9540,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [344]={ + [345]={ [1]={ [1]={ limit={ @@ -9528,7 +9569,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [345]={ + [346]={ [1]={ [1]={ [1]={ @@ -9565,7 +9606,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [346]={ + [347]={ [1]={ [1]={ limit={ @@ -9594,7 +9635,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [347]={ + [348]={ [1]={ [1]={ limit={ @@ -9623,7 +9664,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [348]={ + [349]={ [1]={ [1]={ limit={ @@ -9652,7 +9693,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [349]={ + [350]={ [1]={ [1]={ [1]={ @@ -9689,7 +9730,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [350]={ + [351]={ [1]={ [1]={ [1]={ @@ -9726,7 +9767,7 @@ return { [1]="damage_+%_while_an_ailment_on_you" } }, - [351]={ + [352]={ [1]={ [1]={ limit={ @@ -9755,7 +9796,7 @@ return { [1]="damage_+%_while_es_leeching" } }, - [352]={ + [353]={ [1]={ [1]={ limit={ @@ -9784,7 +9825,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [353]={ + [354]={ [1]={ [1]={ limit={ @@ -9813,7 +9854,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [354]={ + [355]={ [1]={ [1]={ limit={ @@ -9829,7 +9870,7 @@ return { [1]="damage_removed_from_minions_before_life_or_es_%_if_only_one_minion" } }, - [355]={ + [356]={ [1]={ [1]={ [1]={ @@ -9866,7 +9907,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [356]={ + [357]={ [1]={ [1]={ limit={ @@ -9882,7 +9923,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [357]={ + [358]={ [1]={ [1]={ [1]={ @@ -9906,7 +9947,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [358]={ + [359]={ [1]={ [1]={ limit={ @@ -9922,7 +9963,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [359]={ + [360]={ [1]={ [1]={ limit={ @@ -9938,7 +9979,7 @@ return { [1]="deal_no_elemental_damage" } }, - [360]={ + [361]={ [1]={ [1]={ limit={ @@ -9967,7 +10008,7 @@ return { [1]="deathmark_minion_damage_+%_final" } }, - [361]={ + [362]={ [1]={ [1]={ limit={ @@ -9983,7 +10024,7 @@ return { [1]="detonate_dead_%_chance_to_detonate_additional_corpse" } }, - [362]={ + [363]={ [1]={ [1]={ [1]={ @@ -10003,7 +10044,7 @@ return { [1]="display_base_intensity_loss" } }, - [363]={ + [364]={ [1]={ [1]={ limit={ @@ -10019,7 +10060,7 @@ return { [1]="display_totems_no_infusion" } }, - [364]={ + [365]={ [1]={ [1]={ limit={ @@ -10035,7 +10076,7 @@ return { [1]="dot_multiplier_+" } }, - [365]={ + [366]={ [1]={ [1]={ limit={ @@ -10051,7 +10092,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [366]={ + [367]={ [1]={ [1]={ limit={ @@ -10080,7 +10121,7 @@ return { [1]="elemental_damage_+%" } }, - [367]={ + [368]={ [1]={ [1]={ [1]={ @@ -10117,7 +10158,7 @@ return { [1]="elusive_effect_+%" } }, - [368]={ + [369]={ [1]={ [1]={ limit={ @@ -10146,7 +10187,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [369]={ + [370]={ [1]={ [1]={ limit={ @@ -10179,7 +10220,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [370]={ + [371]={ [1]={ [1]={ limit={ @@ -10208,7 +10249,7 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [371]={ + [372]={ [1]={ [1]={ [1]={ @@ -10228,7 +10269,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [372]={ + [373]={ [1]={ [1]={ [1]={ @@ -10252,7 +10293,7 @@ return { [1]="energy_shield_leech_from_any_damage_permyriad" } }, - [373]={ + [374]={ [1]={ [1]={ [1]={ @@ -10293,7 +10334,7 @@ return { [1]="excommunicate_on_melee_attack_hit_for_X_ms" } }, - [374]={ + [375]={ [1]={ [1]={ ["gem_quality"]=true, @@ -10328,7 +10369,7 @@ return { [1]="explode_enemies_for_10%_life_as_random_element_on_killing_blow_chance_%" } }, - [375]={ + [376]={ [1]={ [1]={ [1]={ @@ -10348,7 +10389,7 @@ return { [1]="faster_bleed_%" } }, - [376]={ + [377]={ [1]={ [1]={ [1]={ @@ -10381,7 +10422,7 @@ return { [1]="faster_burn_%" } }, - [377]={ + [378]={ [1]={ [1]={ [1]={ @@ -10405,7 +10446,7 @@ return { [1]="faster_poison_%" } }, - [378]={ + [379]={ [1]={ [1]={ limit={ @@ -10434,7 +10475,7 @@ return { [1]="fire_damage_+%" } }, - [379]={ + [380]={ [1]={ [1]={ limit={ @@ -10450,7 +10491,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [380]={ + [381]={ [1]={ [1]={ [1]={ @@ -10470,7 +10511,7 @@ return { [1]="firestorm_drop_burning_ground_duration_ms" } }, - [381]={ + [382]={ [1]={ [1]={ limit={ @@ -10499,7 +10540,7 @@ return { [1]="fortify_duration_+%" } }, - [382]={ + [383]={ [1]={ [1]={ limit={ @@ -10515,7 +10556,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [383]={ + [384]={ [1]={ [1]={ limit={ @@ -10544,7 +10585,7 @@ return { [1]="freeze_duration_+%" } }, - [384]={ + [385]={ [1]={ [1]={ limit={ @@ -10560,7 +10601,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [385]={ + [386]={ [1]={ [1]={ limit={ @@ -10589,7 +10630,7 @@ return { [1]="frostmage_gain_cold_damage_%_of_max_reserved_mana" } }, - [386]={ + [387]={ [1]={ [1]={ limit={ @@ -10605,7 +10646,7 @@ return { [1]="frostmage_cost_equals_%_reserved_mana" } }, - [387]={ + [388]={ [1]={ [1]={ limit={ @@ -10639,7 +10680,7 @@ return { [2]="quality_display_wand_damage_as_added_spell_damage_is_gem" } }, - [388]={ + [389]={ [1]={ [1]={ [1]={ @@ -10659,7 +10700,7 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [389]={ + [390]={ [1]={ [1]={ limit={ @@ -10684,7 +10725,7 @@ return { [1]="gain_X_wildshard_stacks_on_cast" } }, - [390]={ + [391]={ [1]={ [1]={ limit={ @@ -10731,7 +10772,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [391]={ + [392]={ [1]={ [1]={ limit={ @@ -10747,7 +10788,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [392]={ + [393]={ [1]={ [1]={ limit={ @@ -10763,7 +10804,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [393]={ + [394]={ [1]={ [1]={ limit={ @@ -10779,7 +10820,7 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [394]={ + [395]={ [1]={ [1]={ [1]={ @@ -10812,7 +10853,7 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [395]={ + [396]={ [1]={ [1]={ [1]={ @@ -10832,7 +10873,7 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [396]={ + [397]={ [1]={ [1]={ limit={ @@ -10848,7 +10889,7 @@ return { [1]="gem_display_quality_has_no_effect" } }, - [397]={ + [398]={ [1]={ [1]={ [1]={ @@ -10882,7 +10923,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [398]={ + [399]={ [1]={ [1]={ limit={ @@ -10903,7 +10944,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [399]={ + [400]={ [1]={ [1]={ limit={ @@ -10924,7 +10965,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [400]={ + [401]={ [1]={ [1]={ limit={ @@ -10945,7 +10986,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [401]={ + [402]={ [1]={ [1]={ limit={ @@ -10966,7 +11007,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [402]={ + [403]={ [1]={ [1]={ limit={ @@ -10987,7 +11028,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [403]={ + [404]={ [1]={ [1]={ limit={ @@ -11003,7 +11044,7 @@ return { [1]="global_reduce_enemy_block_%" } }, - [404]={ + [405]={ [1]={ [1]={ limit={ @@ -11032,7 +11073,7 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [405]={ + [406]={ [1]={ [1]={ [1]={ @@ -11069,7 +11110,7 @@ return { [1]="hallowing_flame_magnitude_+%" } }, - [406]={ + [407]={ [1]={ [1]={ limit={ @@ -11085,7 +11126,7 @@ return { [1]="herald_no_buff_effect" } }, - [407]={ + [408]={ [1]={ [1]={ limit={ @@ -11114,7 +11155,7 @@ return { [1]="hex_transfer_on_death_range_+%" } }, - [408]={ + [409]={ [1]={ [1]={ [1]={ @@ -11147,7 +11188,7 @@ return { [1]="hex_zone_trigger_hextoad_every_x_ms" } }, - [409]={ + [410]={ [1]={ [1]={ limit={ @@ -11163,7 +11204,7 @@ return { [1]="hexed_enemies_cannot_deal_critical_strikes" } }, - [410]={ + [411]={ [1]={ [1]={ limit={ @@ -11192,7 +11233,7 @@ return { [1]="hextouch_support_curse_duration_+%_final" } }, - [411]={ + [412]={ [1]={ [1]={ limit={ @@ -11221,7 +11262,7 @@ return { [1]="hit_and_poison_damage_+%" } }, - [412]={ + [413]={ [1]={ [1]={ limit={ @@ -11250,7 +11291,7 @@ return { [1]="hit_and_poison_damage_+%_per_poison_on_enemy" } }, - [413]={ + [414]={ [1]={ [1]={ limit={ @@ -11279,7 +11320,7 @@ return { [1]="hit_damage_+%" } }, - [414]={ + [415]={ [1]={ [1]={ limit={ @@ -11295,7 +11336,7 @@ return { [1]="hits_cannot_kill_enemies" } }, - [415]={ + [416]={ [1]={ [1]={ limit={ @@ -11324,7 +11365,7 @@ return { [1]="ignite_duration_+%" } }, - [416]={ + [417]={ [1]={ [1]={ limit={ @@ -11340,7 +11381,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [417]={ + [418]={ [1]={ [1]={ limit={ @@ -11356,7 +11397,7 @@ return { [1]="ignore_self_damage_from_trauma_chance_%" } }, - [418]={ + [419]={ [1]={ [1]={ limit={ @@ -11385,7 +11426,7 @@ return { [1]="impale_debuff_effect_+%" } }, - [419]={ + [420]={ [1]={ [1]={ [1]={ @@ -11405,7 +11446,7 @@ return { [1]="impale_phys_reduction_%_penalty" } }, - [420]={ + [421]={ [1]={ [1]={ limit={ @@ -11421,7 +11462,7 @@ return { [1]="impale_support_physical_damage_+%_final" } }, - [421]={ + [422]={ [1]={ [1]={ limit={ @@ -11450,7 +11491,39 @@ return { [1]="inc_aoe_plus_more_area_damage_+%_final" } }, - [422]={ + [423]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chill enemies when they are Shocked by your Hits, reducing Action Speed by Shock Effect" + } + }, + stats={ + [1]="inflict_equivalent_chill_on_inflicting_shock_with_hits" + } + }, + [424]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shock enemies when they are Chilled by your Hits, increasing Damage taken by Chill Effect" + } + }, + stats={ + [1]="inflict_equivalent_shock_on_inflicting_chill_with_hits" + } + }, + [425]={ [1]={ [1]={ [1]={ @@ -11483,7 +11556,7 @@ return { [1]="inflict_hallowing_flame_on_melee_hit_chance_%" } }, - [423]={ + [426]={ [1]={ [1]={ [1]={ @@ -11503,7 +11576,7 @@ return { [1]="infusion_grants_life_regeneration_rate_per_minute_%" } }, - [424]={ + [427]={ [1]={ [1]={ limit={ @@ -11532,7 +11605,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [425]={ + [428]={ [1]={ [1]={ limit={ @@ -11561,7 +11634,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [426]={ + [429]={ [1]={ [1]={ limit={ @@ -11577,7 +11650,7 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [427]={ + [430]={ [1]={ [1]={ ["gem_quality"]=true, @@ -11603,7 +11676,7 @@ return { [1]="kill_normal_or_magic_enemy_on_hit_if_under_x%_life" } }, - [428]={ + [431]={ [1]={ [1]={ limit={ @@ -11650,7 +11723,7 @@ return { [2]="killing_blow_consumes_corpse_restore_x_mana" } }, - [429]={ + [432]={ [1]={ [1]={ [1]={ @@ -11670,7 +11743,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [430]={ + [433]={ [1]={ [1]={ limit={ @@ -11699,7 +11772,7 @@ return { [1]="knockback_distance_+%" } }, - [431]={ + [434]={ [1]={ [1]={ [1]={ @@ -11723,7 +11796,7 @@ return { [1]="life_leech_from_any_damage_permyriad" } }, - [432]={ + [435]={ [1]={ [1]={ [1]={ @@ -11760,7 +11833,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [433]={ + [436]={ [1]={ [1]={ limit={ @@ -11789,7 +11862,7 @@ return { [1]="lightning_damage_+%" } }, - [434]={ + [437]={ [1]={ [1]={ limit={ @@ -11818,7 +11891,7 @@ return { [1]="local_gem_dex_requirement_+%" } }, - [435]={ + [438]={ [1]={ [1]={ limit={ @@ -11847,7 +11920,7 @@ return { [1]="local_gem_int_requirement_+%" } }, - [436]={ + [439]={ [1]={ [1]={ limit={ @@ -11876,7 +11949,7 @@ return { [1]="local_gem_str_requirement_+%" } }, - [437]={ + [440]={ [1]={ [1]={ limit={ @@ -11905,7 +11978,7 @@ return { [1]="maim_effect_+%" } }, - [438]={ + [441]={ [1]={ [1]={ [1]={ @@ -11938,7 +12011,7 @@ return { [1]="maim_on_hit_%" } }, - [439]={ + [442]={ [1]={ [1]={ [1]={ @@ -11962,7 +12035,7 @@ return { [1]="mana_leech_from_any_damage_permyriad" } }, - [440]={ + [443]={ [1]={ [1]={ limit={ @@ -11978,7 +12051,7 @@ return { [1]="manaweave_cost_equals_%_unreserved_mana" } }, - [441]={ + [444]={ [1]={ [1]={ limit={ @@ -11994,7 +12067,7 @@ return { [1]="manaweave_added_cold_damage_%_cost_if_payable" } }, - [442]={ + [445]={ [1]={ [1]={ limit={ @@ -12023,7 +12096,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_+%" } }, - [443]={ + [446]={ [1]={ [1]={ limit={ @@ -12039,7 +12112,7 @@ return { [1]="maximum_intensify_stacks" } }, - [444]={ + [447]={ [1]={ [1]={ limit={ @@ -12068,7 +12141,7 @@ return { [1]="maximum_life_leech_amount_per_leech_+%" } }, - [445]={ + [448]={ [1]={ [1]={ limit={ @@ -12097,7 +12170,7 @@ return { [1]="melee_damage_+%" } }, - [446]={ + [449]={ [1]={ [1]={ limit={ @@ -12126,7 +12199,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [447]={ + [450]={ [1]={ [1]={ limit={ @@ -12155,7 +12228,7 @@ return { [1]="melee_physical_damage_+%" } }, - [448]={ + [451]={ [1]={ [1]={ [1]={ @@ -12196,7 +12269,7 @@ return { [1]="melee_range_+" } }, - [449]={ + [452]={ [1]={ [1]={ limit={ @@ -12225,7 +12298,7 @@ return { [1]="melee_splash_area_of_effect_+%_final" } }, - [450]={ + [453]={ [1]={ [1]={ limit={ @@ -12254,7 +12327,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [451]={ + [454]={ [1]={ [1]={ limit={ @@ -12283,7 +12356,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [452]={ + [455]={ [1]={ [1]={ limit={ @@ -12312,7 +12385,7 @@ return { [1]="mine_laying_speed_+%" } }, - [453]={ + [456]={ [1]={ [1]={ limit={ @@ -12341,7 +12414,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [454]={ + [457]={ [1]={ [1]={ limit={ @@ -12362,7 +12435,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [455]={ + [458]={ [1]={ [1]={ limit={ @@ -12378,7 +12451,7 @@ return { [1]="minimum_number_of_projectiles_to_fire_is_1" } }, - [456]={ + [459]={ [1]={ [1]={ [1]={ @@ -12398,7 +12471,7 @@ return { [1]="minimum_power_from_quality" } }, - [457]={ + [460]={ [1]={ [1]={ limit={ @@ -12414,7 +12487,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [458]={ + [461]={ [1]={ [1]={ limit={ @@ -12443,7 +12516,7 @@ return { [1]="minion_ailment_damage_+%" } }, - [459]={ + [462]={ [1]={ [1]={ limit={ @@ -12472,7 +12545,7 @@ return { [1]="minion_area_of_effect_+%" } }, - [460]={ + [463]={ [1]={ [1]={ limit={ @@ -12501,7 +12574,7 @@ return { [1]="minion_attack_speed_+%" } }, - [461]={ + [464]={ [1]={ [1]={ limit={ @@ -12517,7 +12590,7 @@ return { [1]="minion_block_%" } }, - [462]={ + [465]={ [1]={ [1]={ limit={ @@ -12546,7 +12619,7 @@ return { [1]="minion_burning_damage_+%" } }, - [463]={ + [466]={ [1]={ [1]={ limit={ @@ -12575,7 +12648,7 @@ return { [1]="minion_cast_speed_+%" } }, - [464]={ + [467]={ [1]={ [1]={ limit={ @@ -12591,7 +12664,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [465]={ + [468]={ [1]={ [1]={ limit={ @@ -12607,7 +12680,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [466]={ + [469]={ [1]={ [1]={ limit={ @@ -12636,7 +12709,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [467]={ + [470]={ [1]={ [1]={ limit={ @@ -12665,7 +12738,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [468]={ + [471]={ [1]={ [1]={ [1]={ @@ -12685,7 +12758,7 @@ return { [1]="minion_critical_strike_chance_+%_per_attack_crit_recently_up_to_100" } }, - [469]={ + [472]={ [1]={ [1]={ [1]={ @@ -12705,7 +12778,7 @@ return { [1]="minion_critical_strike_multiplier_+_per_attack_crit_recently_up_to_100" } }, - [470]={ + [473]={ [1]={ [1]={ limit={ @@ -12734,7 +12807,7 @@ return { [1]="minion_damage_+%" } }, - [471]={ + [474]={ [1]={ [1]={ limit={ @@ -12763,7 +12836,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [472]={ + [475]={ [1]={ [1]={ [1]={ @@ -12783,7 +12856,7 @@ return { [1]="minion_grant_puppet_master_buff_to_parent_on_hit_%" } }, - [473]={ + [476]={ [1]={ [1]={ [1]={ @@ -12807,7 +12880,7 @@ return { [1]="minion_life_leech_from_elemental_damage_permyriad" } }, - [474]={ + [477]={ [1]={ [1]={ limit={ @@ -12836,7 +12909,7 @@ return { [1]="minion_maximum_life_+%" } }, - [475]={ + [478]={ [1]={ [1]={ limit={ @@ -12865,7 +12938,7 @@ return { [1]="minion_movement_speed_+%" } }, - [476]={ + [479]={ [1]={ [1]={ limit={ @@ -12894,7 +12967,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [477]={ + [480]={ [1]={ [1]={ limit={ @@ -12910,7 +12983,7 @@ return { [1]="minion_recover_%_maximum_life_on_hit" } }, - [478]={ + [481]={ [1]={ [1]={ limit={ @@ -12935,7 +13008,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [479]={ + [482]={ [1]={ [1]={ limit={ @@ -12951,7 +13024,7 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [480]={ + [483]={ [1]={ [1]={ limit={ @@ -12980,7 +13053,7 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [481]={ + [484]={ [1]={ [1]={ limit={ @@ -13009,7 +13082,7 @@ return { [1]="multistrike_area_of_effect_+%_per_repeat" } }, - [482]={ + [485]={ [1]={ [1]={ limit={ @@ -13038,7 +13111,7 @@ return { [1]="multistrike_damage_+%_final_on_first_repeat" } }, - [483]={ + [486]={ [1]={ [1]={ limit={ @@ -13067,7 +13140,7 @@ return { [1]="multistrike_damage_+%_final_on_second_repeat" } }, - [484]={ + [487]={ [1]={ [1]={ limit={ @@ -13096,7 +13169,7 @@ return { [1]="multistrike_damage_+%_final_on_third_repeat" } }, - [485]={ + [488]={ [1]={ [1]={ limit={ @@ -13112,7 +13185,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [486]={ + [489]={ [1]={ [1]={ limit={ @@ -13128,7 +13201,7 @@ return { [1]="no_cost" } }, - [487]={ + [490]={ [1]={ [1]={ limit={ @@ -13157,7 +13230,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [488]={ + [491]={ [1]={ [1]={ [1]={ @@ -13194,7 +13267,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [489]={ + [492]={ [1]={ [1]={ limit={ @@ -13219,7 +13292,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [490]={ + [493]={ [1]={ [1]={ [1]={ @@ -13252,7 +13325,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [491]={ + [494]={ [1]={ [1]={ limit={ @@ -13277,7 +13350,7 @@ return { [1]="number_of_additional_projectiles" } }, - [492]={ + [495]={ [1]={ [1]={ limit={ @@ -13302,7 +13375,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [493]={ + [496]={ [1]={ [1]={ limit={ @@ -13327,7 +13400,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [494]={ + [497]={ [1]={ [1]={ limit={ @@ -13356,7 +13429,7 @@ return { [1]="number_of_projectiles_+%_final_from_locus_mine_support" } }, - [495]={ + [498]={ [1]={ [1]={ [1]={ @@ -13415,7 +13488,7 @@ return { [3]="support_gluttony_disgorge_buff_duration_ms" } }, - [496]={ + [499]={ [1]={ [1]={ [1]={ @@ -13439,7 +13512,7 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [497]={ + [500]={ [1]={ [1]={ [1]={ @@ -13476,7 +13549,7 @@ return { [1]="overpowered_effect_+%" } }, - [498]={ + [501]={ [1]={ [1]={ [1]={ @@ -13496,7 +13569,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [499]={ + [502]={ [1]={ [1]={ limit={ @@ -13525,7 +13598,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [500]={ + [503]={ [1]={ [1]={ limit={ @@ -13550,7 +13623,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [501]={ + [504]={ [1]={ [1]={ limit={ @@ -13575,7 +13648,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [502]={ + [505]={ [1]={ [1]={ limit={ @@ -13600,7 +13673,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [503]={ + [506]={ [1]={ [1]={ limit={ @@ -13625,7 +13698,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [504]={ + [507]={ [1]={ [1]={ limit={ @@ -13641,7 +13714,7 @@ return { [1]="physical_damage_%_to_add_as_chaos_per_keystone" } }, - [505]={ + [508]={ [1]={ [1]={ limit={ @@ -13657,7 +13730,7 @@ return { [1]="physical_damage_%_to_add_as_chaos" } }, - [506]={ + [509]={ [1]={ [1]={ limit={ @@ -13673,7 +13746,7 @@ return { [1]="physical_damage_%_to_add_as_fire" } }, - [507]={ + [510]={ [1]={ [1]={ limit={ @@ -13689,7 +13762,7 @@ return { [1]="physical_damage_%_to_add_as_lightning" } }, - [508]={ + [511]={ [1]={ [1]={ limit={ @@ -13718,7 +13791,7 @@ return { [1]="physical_damage_+%" } }, - [509]={ + [512]={ [1]={ [1]={ limit={ @@ -13747,7 +13820,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [510]={ + [513]={ [1]={ [1]={ limit={ @@ -13772,7 +13845,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [511]={ + [514]={ [1]={ [1]={ limit={ @@ -13801,7 +13874,7 @@ return { [1]="projectile_damage_+%" } }, - [512]={ + [515]={ [1]={ [1]={ limit={ @@ -13830,7 +13903,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [513]={ + [516]={ [1]={ [1]={ [1]={ @@ -13843,7 +13916,7 @@ return { [2]=10 } }, - text="Projectiles from Supported Skills have {0} metre maximum range" + text="Projectiles from Supported Skills have {0} metre maximum Direct Flight" }, [2]={ [1]={ @@ -13856,14 +13929,14 @@ return { [2]="#" } }, - text="Projectiles from Supported Skills have {0} metres maximum range" + text="Projectiles from Supported Skills have {0} metres maximum Direct Flight" } }, stats={ [1]="projectile_maximum_range_override" } }, - [514]={ + [517]={ [1]={ [1]={ limit={ @@ -13892,7 +13965,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [515]={ + [518]={ [1]={ [1]={ [1]={ @@ -13925,7 +13998,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [516]={ + [519]={ [1]={ [1]={ [1]={ @@ -13953,7 +14026,7 @@ return { [1]="random_nearby_minion_gain_a_soul_eater_soul_on_X_life_spent" } }, - [517]={ + [520]={ [1]={ [1]={ limit={ @@ -13969,7 +14042,7 @@ return { [1]="ranged_attack_totem_only_attacks_when_owner_attacks" } }, - [518]={ + [521]={ [1]={ [1]={ [1]={ @@ -13989,7 +14062,7 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [519]={ + [522]={ [1]={ [1]={ limit={ @@ -14005,7 +14078,7 @@ return { [1]="recover_%_maximum_life_on_cull" } }, - [520]={ + [523]={ [1]={ [1]={ [1]={ @@ -14025,7 +14098,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [521]={ + [524]={ [1]={ [1]={ limit={ @@ -14041,7 +14114,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [522]={ + [525]={ [1]={ [1]={ limit={ @@ -14057,7 +14130,7 @@ return { [1]="reduce_enemy_dodge_%" } }, - [523]={ + [526]={ [1]={ [1]={ limit={ @@ -14082,7 +14155,7 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [524]={ + [527]={ [1]={ [1]={ limit={ @@ -14098,7 +14171,7 @@ return { [1]="regenerate_%_life_over_1_second_on_skill_use" } }, - [525]={ + [528]={ [1]={ [1]={ limit={ @@ -14114,7 +14187,7 @@ return { [1]="remote_mined_by_support" } }, - [526]={ + [529]={ [1]={ [1]={ limit={ @@ -14143,7 +14216,7 @@ return { [1]="retaliation_use_window_duration_+%" } }, - [527]={ + [530]={ [1]={ [1]={ limit={ @@ -14172,7 +14245,7 @@ return { [1]="shock_duration_+%" } }, - [528]={ + [531]={ [1]={ [1]={ limit={ @@ -14201,7 +14274,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [529]={ + [532]={ [1]={ [1]={ limit={ @@ -14230,7 +14303,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [530]={ + [533]={ [1]={ [1]={ limit={ @@ -14246,7 +14319,7 @@ return { [1]="skill_is_blessing_skill" } }, - [531]={ + [534]={ [1]={ [1]={ limit={ @@ -14262,7 +14335,7 @@ return { [1]="skill_aura_also_disables_non_blessing_mana_reservation_skills" } }, - [532]={ + [535]={ [1]={ [1]={ limit={ @@ -14291,7 +14364,7 @@ return { [1]="skill_buff_effect_+%" } }, - [533]={ + [536]={ [1]={ [1]={ limit={ @@ -14307,7 +14380,7 @@ return { [1]="skill_can_own_mirage_archers" } }, - [534]={ + [537]={ [1]={ [1]={ limit={ @@ -14323,7 +14396,7 @@ return { [1]="skill_cold_damage_%_to_convert_to_fire" } }, - [535]={ + [538]={ [1]={ [1]={ limit={ @@ -14339,7 +14412,7 @@ return { [1]="skill_convert_%_physical_damage_to_random_element" } }, - [536]={ + [539]={ [1]={ [1]={ limit={ @@ -14368,7 +14441,7 @@ return { [1]="skill_cost_+%_per_keystone" } }, - [537]={ + [540]={ [1]={ [1]={ [1]={ @@ -14405,7 +14478,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [538]={ + [541]={ [1]={ [1]={ limit={ @@ -14434,7 +14507,7 @@ return { [1]="skill_effect_duration_+%" } }, - [539]={ + [542]={ [1]={ [1]={ limit={ @@ -14463,7 +14536,7 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [540]={ + [543]={ [1]={ [1]={ limit={ @@ -14479,7 +14552,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_chaos" } }, - [541]={ + [544]={ [1]={ [1]={ limit={ @@ -14500,7 +14573,7 @@ return { [2]="active_skill_display_suppress_physical_to_cold_damage_conversion" } }, - [542]={ + [545]={ [1]={ [1]={ limit={ @@ -14516,7 +14589,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_fire" } }, - [543]={ + [546]={ [1]={ [1]={ limit={ @@ -14532,7 +14605,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_lightning" } }, - [544]={ + [547]={ [1]={ [1]={ limit={ @@ -14561,7 +14634,7 @@ return { [1]="skill_used_by_sacred_wisp_damage_+%_final" } }, - [545]={ + [548]={ [1]={ [1]={ limit={ @@ -14577,7 +14650,7 @@ return { [1]="skills_sacrifice_all_but_one_life_and_energy_shield_on_use" } }, - [546]={ + [549]={ [1]={ [1]={ limit={ @@ -14606,7 +14679,7 @@ return { [1]="snipe_triggered_skill_damage_+%_final" } }, - [547]={ + [550]={ [1]={ [1]={ limit={ @@ -14674,7 +14747,7 @@ return { [2]="snipe_triggered_skill_hit_damage_+%_final_per_stage" } }, - [548]={ + [551]={ [1]={ [1]={ [1]={ @@ -14758,7 +14831,7 @@ return { [2]="snipe_triggered_skill_ailment_damage_+%_final_per_stage" } }, - [549]={ + [552]={ [1]={ [1]={ limit={ @@ -14787,7 +14860,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [550]={ + [553]={ [1]={ [1]={ limit={ @@ -14816,7 +14889,7 @@ return { [1]="spell_damage_+%" } }, - [551]={ + [554]={ [1]={ [1]={ limit={ @@ -14832,7 +14905,28 @@ return { [1]="spell_echo_plus_chance_double_damage_%_final" } }, - [552]={ + [555]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Supported Spells deal {0} to {1} added Physical Damage for each permanent Minion" + } + }, + stats={ + [1]="spell_minimum_added_physical_damage_per_active_permanent_minion", + [2]="spell_maximum_added_physical_damage_per_active_permanent_minion" + } + }, + [556]={ [1]={ [1]={ [1]={ @@ -14865,7 +14959,7 @@ return { [1]="static_strike_base_zap_frequency_ms" } }, - [553]={ + [557]={ [1]={ [1]={ limit={ @@ -14881,7 +14975,7 @@ return { [1]="static_strike_zap_speed_+%" } }, - [554]={ + [558]={ [1]={ [1]={ limit={ @@ -14897,7 +14991,7 @@ return { [1]="summon_living_lightning_on_lightning_hit" } }, - [555]={ + [559]={ [1]={ [1]={ limit={ @@ -14913,7 +15007,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [556]={ + [560]={ [1]={ [1]={ limit={ @@ -14929,7 +15023,7 @@ return { [1]="summon_sacred_wisps_on_hit" } }, - [557]={ + [561]={ [1]={ [1]={ limit={ @@ -14958,7 +15052,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [558]={ + [562]={ [1]={ [1]={ [1]={ @@ -14978,7 +15072,32 @@ return { [1]="summoned_sentinels_have_random_templar_aura" } }, - [559]={ + [563]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Supported Skills have a {0}% chance to Trigger Abyssal Maw when creating a Corpse" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Supported Skills will Trigger Abyssal Maw when creating a Corpse" + } + }, + stats={ + [1]="support_abyssal_well_chance_to_create_well_on_corpse_creation_%" + } + }, + [564]={ [1]={ [1]={ limit={ @@ -15003,7 +15122,7 @@ return { [1]="support_added_cooldown_count_if_not_instant" } }, - [560]={ + [565]={ [1]={ [1]={ limit={ @@ -15019,7 +15138,7 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [561]={ + [566]={ [1]={ [1]={ limit={ @@ -15048,7 +15167,7 @@ return { [1]="support_ancestor_slam_totem_attack_speed_+%_final" } }, - [562]={ + [567]={ [1]={ [1]={ limit={ @@ -15077,7 +15196,7 @@ return { [1]="support_anticipation_charge_gain_frequency_+%" } }, - [563]={ + [568]={ [1]={ [1]={ limit={ @@ -15106,7 +15225,7 @@ return { [1]="support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge" } }, - [564]={ + [569]={ [1]={ [1]={ [1]={ @@ -15126,7 +15245,7 @@ return { [1]="support_aura_duration_base_buff_duration" } }, - [565]={ + [570]={ [1]={ [1]={ limit={ @@ -15142,7 +15261,7 @@ return { [1]="support_autocast_instant_spells" } }, - [566]={ + [571]={ [1]={ [1]={ limit={ @@ -15158,7 +15277,7 @@ return { [1]="support_autocast_warcries" } }, - [567]={ + [572]={ [1]={ [1]={ limit={ @@ -15174,7 +15293,7 @@ return { [1]="support_autoexertion_base_mana_cost_override" } }, - [568]={ + [573]={ [1]={ [1]={ limit={ @@ -15203,7 +15322,7 @@ return { [1]="support_barrage_attack_time_+%_per_projectile_fired" } }, - [569]={ + [574]={ [1]={ [1]={ limit={ @@ -15232,7 +15351,7 @@ return { [1]="support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired" } }, - [570]={ + [575]={ [1]={ [1]={ [1]={ @@ -15265,7 +15384,7 @@ return { [1]="support_blasphemy_enemies_gain_malignant_madness_if_in_aura_for_x_seconds" } }, - [571]={ + [576]={ [1]={ [1]={ limit={ @@ -15294,7 +15413,7 @@ return { [1]="support_blood_thirst_damage_+%_final" } }, - [572]={ + [577]={ [1]={ [1]={ [1]={ @@ -15327,7 +15446,7 @@ return { [1]="support_bloodstained_banner_apply_corrupted_blood_every_x_ms" } }, - [573]={ + [578]={ [1]={ [1]={ [1]={ @@ -15347,7 +15466,7 @@ return { [1]="support_bloodstained_banner_corrupted_blood_base_physical_damage_to_deal_per_minute_per_valour" } }, - [574]={ + [579]={ [1]={ [1]={ [1]={ @@ -15367,7 +15486,7 @@ return { [1]="support_bloodstained_banner_apply_corrupted_blood_duration_ms" } }, - [575]={ + [580]={ [1]={ [1]={ limit={ @@ -15392,7 +15511,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [576]={ + [581]={ [1]={ [1]={ limit={ @@ -15421,7 +15540,7 @@ return { [1]="support_bonechill_cold_damage_+%_final" } }, - [577]={ + [582]={ [1]={ [1]={ limit={ @@ -15450,7 +15569,7 @@ return { [1]="support_brand_area_of_effect_+%_final" } }, - [578]={ + [583]={ [1]={ [1]={ limit={ @@ -15479,7 +15598,7 @@ return { [1]="support_brand_damage_+%_final" } }, - [579]={ + [584]={ [1]={ [1]={ limit={ @@ -15508,7 +15627,7 @@ return { [1]="support_burning_damage_+%_final" } }, - [580]={ + [585]={ [1]={ [1]={ limit={ @@ -15533,7 +15652,7 @@ return { [1]="support_call_the_pyre_chance_to_trigger_call_the_pyre_on_melee_hit_vs_ignited_enemies_%" } }, - [581]={ + [586]={ [1]={ [1]={ limit={ @@ -15562,7 +15681,7 @@ return { [1]="support_cast_on_crit_quality_attack_damage_+%_final" } }, - [582]={ + [587]={ [1]={ [1]={ [1]={ @@ -15599,7 +15718,7 @@ return { [1]="support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%" } }, - [583]={ + [588]={ [1]={ [1]={ limit={ @@ -15628,7 +15747,7 @@ return { [1]="support_chain_count_+%_final" } }, - [584]={ + [589]={ [1]={ [1]={ limit={ @@ -15657,7 +15776,7 @@ return { [1]="support_chance_to_bleed_bleeding_damage_+%_final" } }, - [585]={ + [590]={ [1]={ [1]={ limit={ @@ -15686,7 +15805,7 @@ return { [1]="support_chaos_attacks_damage_+%_final" } }, - [586]={ + [591]={ [1]={ [1]={ limit={ @@ -15715,7 +15834,7 @@ return { [1]="support_clustertrap_damage_+%_final" } }, - [587]={ + [592]={ [1]={ [1]={ limit={ @@ -15724,7 +15843,7 @@ return { [2]="#" } }, - text="Minions from Supported Skills have {0}% more maximum Life if they are your only Minion" + text="Minions from Supported Skills take {0}% more Damage if they are your only Minion" }, [2]={ [1]={ @@ -15737,14 +15856,14 @@ return { [2]=-1 } }, - text="Minions from Supported Skills have {0}% less maximum Life if they are your only Minion" + text="Minions from Supported Skills take {0}% less Damage if they are your only Minion" } }, stats={ - [1]="support_companionship_minion_maximum_life_+%_final_if_at_most_one_minion" + [1]="support_companionship_minion_damage_taken_+%_final_if_at_most_one_minion" } }, - [588]={ + [593]={ [1]={ [1]={ limit={ @@ -15753,14 +15872,14 @@ return { [2]="#" } }, - text="[DNT] Ignites from Stunning Melee Hits from Supported Skills count as coming from a Critical Strike" + text="DNT Ignites from Stunning Melee Hits from Supported Skills count as coming from a Critical Strike" } }, stats={ [1]="support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike" } }, - [589]={ + [594]={ [1]={ [1]={ limit={ @@ -15769,7 +15888,7 @@ return { [2]="#" } }, - text="[DNT] Ignites from Stunning Melee Hits from Supported Skills deal {0}% more Damage per 200ms of Stun duration" + text="DNT Ignites from Stunning Melee Hits from Supported Skills deal {0}% more Damage per 200ms of Stun duration" }, [2]={ [1]={ @@ -15782,14 +15901,14 @@ return { [2]=-1 } }, - text="[DNT] Ignites from Stunning Melee Hits from Supported Skills deal {0}% less Damage per 200ms of Stun duration" + text="DNT Ignites from Stunning Melee Hits from Supported Skills deal {0}% less Damage per 200ms of Stun duration" } }, stats={ [1]="support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun" } }, - [590]={ + [595]={ [1]={ [1]={ limit={ @@ -15798,7 +15917,7 @@ return { [2]="#" } }, - text="[DNT] Ignites from Stunning Melee Hits from Supported Skills have {0}% increased Duration" + text="DNT Ignites from Stunning Melee Hits from Supported Skills have {0}% increased Duration" }, [2]={ [1]={ @@ -15811,14 +15930,14 @@ return { [2]=-1 } }, - text="[DNT] Ignites from Stunning Melee Hits from Supported Skills have {0}% reduced Duration" + text="DNT Ignites from Stunning Melee Hits from Supported Skills have {0}% reduced Duration" } }, stats={ [1]="support_conflagration_ignites_from_stunning_melee_hits_duration_+%" } }, - [591]={ + [596]={ [1]={ [1]={ limit={ @@ -15847,7 +15966,7 @@ return { [1]="support_corrupting_cry_area_of_effect_+%_final" } }, - [592]={ + [597]={ [1]={ [1]={ [1]={ @@ -15867,7 +15986,7 @@ return { [1]="support_corrupting_cry_corrupted_blood_base_physical_damage_to_deal_per_minute" } }, - [593]={ + [598]={ [1]={ [1]={ limit={ @@ -15892,7 +16011,7 @@ return { [1]="support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit" } }, - [594]={ + [599]={ [1]={ [1]={ [1]={ @@ -15912,7 +16031,7 @@ return { [1]="support_corrupting_cry_warcry_and_first_exerted_attack_applies_corrupted_blood_for_X_ms" } }, - [595]={ + [600]={ [1]={ [1]={ limit={ @@ -15937,7 +16056,32 @@ return { [1]="support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood" } }, - [596]={ + [601]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Supported Skills have {0}% chance to Trigger Falling Crystal on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Supported Skills will Trigger Falling Crystal on Hit" + } + }, + stats={ + [1]="support_crystalfall_chance_to_trigger_crystalfall_on_hit_%" + } + }, + [602]={ [1]={ [1]={ limit={ @@ -15966,7 +16110,7 @@ return { [1]="support_divine_cry_damage_+%_final" } }, - [597]={ + [603]={ [1]={ [1]={ limit={ @@ -15995,7 +16139,7 @@ return { [1]="support_energy_shield_leech_damage_+%_on_full_energy_shield_final" } }, - [598]={ + [604]={ [1]={ [1]={ limit={ @@ -16024,7 +16168,7 @@ return { [1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final" } }, - [599]={ + [605]={ [1]={ [1]={ [1]={ @@ -16065,7 +16209,7 @@ return { [1]="support_excommunicate_on_melee_attack_hit_for_X_ms" } }, - [600]={ + [606]={ [1]={ [1]={ limit={ @@ -16094,7 +16238,7 @@ return { [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [601]={ + [607]={ [1]={ [1]={ [1]={ @@ -16114,7 +16258,7 @@ return { [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [602]={ + [608]={ [1]={ [1]={ limit={ @@ -16130,7 +16274,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [603]={ + [609]={ [1]={ [1]={ limit={ @@ -16159,7 +16303,7 @@ return { [1]="support_expert_retaliation_cooldown_speed_+%_final" } }, - [604]={ + [610]={ [1]={ [1]={ [1]={ @@ -16196,7 +16340,7 @@ return { [1]="support_faster_ailments_ailment_duration_+%_final" } }, - [605]={ + [611]={ [1]={ [1]={ limit={ @@ -16221,7 +16365,7 @@ return { [1]="support_fissure_trigger_fissure_on_slam_skill_impact_chance_%" } }, - [606]={ + [612]={ [1]={ [1]={ limit={ @@ -16237,7 +16381,7 @@ return { [1]="support_flamewood_totems_trigger_infernal_bolt_when_hit" } }, - [607]={ + [613]={ [1]={ [1]={ limit={ @@ -16253,7 +16397,7 @@ return { [1]="support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%" } }, - [608]={ + [614]={ [1]={ [1]={ limit={ @@ -16269,7 +16413,7 @@ return { [1]="support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%" } }, - [609]={ + [615]={ [1]={ [1]={ limit={ @@ -16298,7 +16442,7 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [610]={ + [616]={ [1]={ [1]={ limit={ @@ -16327,7 +16471,7 @@ return { [1]="support_focused_ballista_totem_damage_+%_final" } }, - [611]={ + [617]={ [1]={ [1]={ limit={ @@ -16356,7 +16500,7 @@ return { [1]="support_fortify_ailment_damage_+%_final_from_melee_hits" } }, - [612]={ + [618]={ [1]={ [1]={ limit={ @@ -16385,7 +16529,7 @@ return { [1]="support_fortify_melee_damage_+%_final" } }, - [613]={ + [619]={ [1]={ [1]={ [1]={ @@ -16405,7 +16549,7 @@ return { [1]="support_ghost_base_duration" } }, - [614]={ + [620]={ [1]={ [1]={ limit={ @@ -16430,7 +16574,7 @@ return { [1]="support_gluttony_fire_x_additional_projectiles_in_nova_while_affected_by_disgorge" } }, - [615]={ + [621]={ [1]={ [1]={ limit={ @@ -16459,7 +16603,7 @@ return { [1]="support_greater_projectile_intensity_projectile_damage_+%_final" } }, - [616]={ + [622]={ [1]={ [1]={ limit={ @@ -16488,7 +16632,7 @@ return { [1]="support_greater_spell_echo_area_of_effect_+%_per_repeat" } }, - [617]={ + [623]={ [1]={ [1]={ limit={ @@ -16517,7 +16661,7 @@ return { [1]="support_greater_spell_echo_spell_damage_+%_final_per_repeat" } }, - [618]={ + [624]={ [1]={ [1]={ limit={ @@ -16533,7 +16677,7 @@ return { [1]="support_guardians_blessing_aura_only_enabled_while_support_minion_is_summoned" } }, - [619]={ + [625]={ [1]={ [1]={ [1]={ @@ -16553,7 +16697,7 @@ return { [1]="support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute" } }, - [620]={ + [626]={ [1]={ [1]={ [1]={ @@ -16573,7 +16717,7 @@ return { [1]="support_hallow_inflict_hallowing_flame_on_melee_hit" } }, - [621]={ + [627]={ [1]={ [1]={ limit={ @@ -16602,7 +16746,7 @@ return { [1]="support_hypothermia_cold_damage_over_time_+%_final" } }, - [622]={ + [628]={ [1]={ [1]={ [1]={ @@ -16639,7 +16783,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [623]={ + [629]={ [1]={ [1]={ limit={ @@ -16664,7 +16808,7 @@ return { [1]="support_innervate_chance_to_gain_buff_on_shock_vs_unique_%" } }, - [624]={ + [630]={ [1]={ [1]={ limit={ @@ -16680,7 +16824,7 @@ return { [1]="support_invention_trap_and_mine_damage_+%_final_per_second_placed_up_to_100" } }, - [625]={ + [631]={ [1]={ [1]={ limit={ @@ -16705,7 +16849,7 @@ return { [1]="support_kinetic_instability_chance_to_create_instability_on_critical_strike_%" } }, - [626]={ + [632]={ [1]={ [1]={ limit={ @@ -16730,7 +16874,7 @@ return { [1]="support_kinetic_instability_chance_to_create_instability_on_kill_%" } }, - [627]={ + [633]={ [1]={ [1]={ [1]={ @@ -16754,7 +16898,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [628]={ + [634]={ [1]={ [1]={ limit={ @@ -16783,7 +16927,7 @@ return { [1]="support_lifetap_damage_+%_final_while_buffed" } }, - [629]={ + [635]={ [1]={ [1]={ [1]={ @@ -16842,7 +16986,7 @@ return { [2]="quality_display_lifetap_is_gem" } }, - [630]={ + [636]={ [1]={ [1]={ [1]={ @@ -16862,7 +17006,7 @@ return { [1]="support_locus_mine_base_mine_duration" } }, - [631]={ + [637]={ [1]={ [1]={ [1]={ @@ -16895,7 +17039,7 @@ return { [1]="support_locus_mine_cannot_detonate_mines_within_X_units" } }, - [632]={ + [638]={ [1]={ [1]={ limit={ @@ -16924,7 +17068,7 @@ return { [1]="support_locus_mine_damage_+%_final" } }, - [633]={ + [639]={ [1]={ [1]={ limit={ @@ -16940,7 +17084,7 @@ return { [1]="support_locus_mine_mines_always_target_your_location" } }, - [634]={ + [640]={ [1]={ [1]={ limit={ @@ -16956,7 +17100,7 @@ return { [1]="support_locus_mine_throw_mines_in_an_arc" } }, - [635]={ + [641]={ [1]={ [1]={ limit={ @@ -16985,7 +17129,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [636]={ + [642]={ [1]={ [1]={ limit={ @@ -17014,7 +17158,7 @@ return { [1]="support_manaforged_arrows_damage_+%_final" } }, - [637]={ + [643]={ [1]={ [1]={ limit={ @@ -17030,7 +17174,7 @@ return { [1]="support_manaforged_arrows_damage_+%_final_per_mana_spent" } }, - [638]={ + [644]={ [1]={ [1]={ limit={ @@ -17059,7 +17203,7 @@ return { [1]="support_melee_physical_damage_attack_speed_+%_final" } }, - [639]={ + [645]={ [1]={ [1]={ limit={ @@ -17088,7 +17232,7 @@ return { [1]="support_minefield_mine_damage_+%_final" } }, - [640]={ + [646]={ [1]={ [1]={ limit={ @@ -17117,7 +17261,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [641]={ + [647]={ [1]={ [1]={ limit={ @@ -17138,7 +17282,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [642]={ + [648]={ [1]={ [1]={ limit={ @@ -17167,7 +17311,7 @@ return { [1]="support_minion_damage_+%_final" } }, - [643]={ + [649]={ [1]={ [1]={ limit={ @@ -17196,7 +17340,7 @@ return { [1]="support_minion_damage_minion_life_+%_final" } }, - [644]={ + [650]={ [1]={ [1]={ limit={ @@ -17225,7 +17369,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [645]={ + [651]={ [1]={ [1]={ limit={ @@ -17254,7 +17398,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [646]={ + [652]={ [1]={ [1]={ limit={ @@ -17283,7 +17427,7 @@ return { [1]="support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target" } }, - [647]={ + [653]={ [1]={ [1]={ limit={ @@ -17299,7 +17443,7 @@ return { [1]="support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target" } }, - [648]={ + [654]={ [1]={ [1]={ limit={ @@ -17328,7 +17472,7 @@ return { [1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target" } }, - [649]={ + [655]={ [1]={ [1]={ limit={ @@ -17357,7 +17501,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [650]={ + [656]={ [1]={ [1]={ limit={ @@ -17386,7 +17530,7 @@ return { [1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master" } }, - [651]={ + [657]={ [1]={ [1]={ [1]={ @@ -17406,7 +17550,7 @@ return { [1]="support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage" } }, - [652]={ + [658]={ [1]={ [1]={ limit={ @@ -17435,7 +17579,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [653]={ + [659]={ [1]={ [1]={ limit={ @@ -17451,7 +17595,7 @@ return { [1]="support_minion_use_focussed_target" } }, - [654]={ + [660]={ [1]={ [1]={ limit={ @@ -17480,7 +17624,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [655]={ + [661]={ [1]={ [1]={ [1]={ @@ -17500,7 +17644,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [656]={ + [662]={ [1]={ [1]={ limit={ @@ -17529,7 +17673,7 @@ return { [1]="support_mirage_archer_damage_+%_final" } }, - [657]={ + [663]={ [1]={ [1]={ [1]={ @@ -17571,7 +17715,7 @@ return { [2]="support_momentum_stack_while_channelling_ms" } }, - [658]={ + [664]={ [1]={ [1]={ limit={ @@ -17600,7 +17744,7 @@ return { [1]="support_momentum_attack_speed_+%_per_stack" } }, - [659]={ + [665]={ [1]={ [1]={ [1]={ @@ -17668,7 +17812,7 @@ return { [3]="support_momentum_max_stacks" } }, - [660]={ + [666]={ [1]={ [1]={ limit={ @@ -17697,7 +17841,7 @@ return { [1]="support_momentum_movement_speed_+%_per_stack_removed" } }, - [661]={ + [667]={ [1]={ [1]={ [1]={ @@ -17734,7 +17878,7 @@ return { [1]="support_overheat_ailment_damage_+%_final_per_3_fortification_consumed" } }, - [662]={ + [668]={ [1]={ [1]={ [1]={ @@ -17758,7 +17902,7 @@ return { [1]="support_overpowered_base_duration_ms" } }, - [663]={ + [669]={ [1]={ [1]={ limit={ @@ -17783,7 +17927,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [664]={ + [670]={ [1]={ [1]={ limit={ @@ -17812,7 +17956,7 @@ return { [1]="support_parallel_projectiles_damage_+%_final" } }, - [665]={ + [671]={ [1]={ [1]={ limit={ @@ -17841,7 +17985,7 @@ return { [1]="support_phys_chaos_projectile_chaos_damage_over_time_+%_final" } }, - [666]={ + [672]={ [1]={ [1]={ limit={ @@ -17870,7 +18014,7 @@ return { [1]="support_phys_chaos_projectile_physical_damage_over_time_+%_final" } }, - [667]={ + [673]={ [1]={ [1]={ limit={ @@ -17899,7 +18043,7 @@ return { [1]="support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final" } }, - [668]={ + [674]={ [1]={ [1]={ limit={ @@ -17928,7 +18072,7 @@ return { [1]="support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits" } }, - [669]={ + [675]={ [1]={ [1]={ limit={ @@ -17957,7 +18101,7 @@ return { [1]="support_pierce_projectile_damage_+%_final" } }, - [670]={ + [676]={ [1]={ [1]={ limit={ @@ -17986,7 +18130,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [671]={ + [677]={ [1]={ [1]={ limit={ @@ -18015,7 +18159,7 @@ return { [1]="support_projectile_attack_physical_damage_+%_final" } }, - [672]={ + [678]={ [1]={ [1]={ limit={ @@ -18044,7 +18188,7 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [673]={ + [679]={ [1]={ [1]={ limit={ @@ -18073,7 +18217,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [674]={ + [680]={ [1]={ [1]={ limit={ @@ -18102,7 +18246,7 @@ return { [1]="support_pulverise_attack_speed_+%_final" } }, - [675]={ + [681]={ [1]={ [1]={ limit={ @@ -18131,7 +18275,7 @@ return { [1]="support_pulverise_melee_area_damage_+%_final" } }, - [676]={ + [682]={ [1]={ [1]={ limit={ @@ -18160,7 +18304,7 @@ return { [1]="support_pure_shock_damage_+%_final" } }, - [677]={ + [683]={ [1]={ [1]={ limit={ @@ -18189,7 +18333,7 @@ return { [1]="support_pure_shock_shock_as_though_damage_+%_final" } }, - [678]={ + [684]={ [1]={ [1]={ limit={ @@ -18218,7 +18362,7 @@ return { [1]="support_greater_volley_projectile_damage_+%_final" } }, - [679]={ + [685]={ [1]={ [1]={ [1]={ @@ -18242,7 +18386,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [680]={ + [686]={ [1]={ [1]={ limit={ @@ -18271,7 +18415,7 @@ return { [1]="support_rapid_activation_brand_activation_rate_+%_final" } }, - [681]={ + [687]={ [1]={ [1]={ [1]={ @@ -18317,7 +18461,7 @@ return { [2]="support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum" } }, - [682]={ + [688]={ [1]={ [1]={ [1]={ @@ -18367,7 +18511,7 @@ return { [2]="support_recent_ignites_damage_per_recent_ignite_+%_final_minimum" } }, - [683]={ + [689]={ [1]={ [1]={ [1]={ @@ -18387,7 +18531,7 @@ return { [1]="support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury" } }, - [684]={ + [690]={ [1]={ [1]={ [1]={ @@ -18440,7 +18584,7 @@ return { [6]="support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms" } }, - [685]={ + [691]={ [1]={ [1]={ limit={ @@ -18456,7 +18600,7 @@ return { [1]="support_reduce_enemy_block_and_spell_block_%" } }, - [686]={ + [692]={ [1]={ [1]={ limit={ @@ -18485,7 +18629,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [687]={ + [693]={ [1]={ [1]={ limit={ @@ -18514,7 +18658,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [688]={ + [694]={ [1]={ [1]={ [1]={ @@ -18534,7 +18678,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [689]={ + [695]={ [1]={ [1]={ [1]={ @@ -18554,7 +18698,7 @@ return { [1]="support_remote_mine_2_base_mine_detonation_time_ms" } }, - [690]={ + [696]={ [1]={ [1]={ limit={ @@ -18583,7 +18727,7 @@ return { [1]="support_remote_mine_2_damage_+%_final" } }, - [691]={ + [697]={ [1]={ [1]={ limit={ @@ -18612,7 +18756,7 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [692]={ + [698]={ [1]={ [1]={ limit={ @@ -18641,7 +18785,7 @@ return { [1]="support_remote_mine_hit_damage_+%_final" } }, - [693]={ + [699]={ [1]={ [1]={ [1]={ @@ -18661,7 +18805,7 @@ return { [1]="critical_strikes_that_inflict_bleeding_also_rupture" } }, - [694]={ + [700]={ [1]={ [1]={ limit={ @@ -18686,7 +18830,7 @@ return { [1]="support_rupture_bleeding_damage_taken_+%_final" } }, - [695]={ + [701]={ [1]={ [1]={ limit={ @@ -18711,7 +18855,7 @@ return { [1]="support_rupture_bleeding_time_passed_+%_final" } }, - [696]={ + [702]={ [1]={ [1]={ limit={ @@ -18745,7 +18889,7 @@ return { [2]="support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage" } }, - [697]={ + [703]={ [1]={ [1]={ [1]={ @@ -18782,7 +18926,7 @@ return { [1]="support_scion_onslaught_duration_+%" } }, - [698]={ + [704]={ [1]={ [1]={ [1]={ @@ -18807,7 +18951,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [699]={ + [705]={ [1]={ [1]={ [1]={ @@ -18841,7 +18985,7 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [700]={ + [706]={ [1]={ [1]={ [1]={ @@ -18874,7 +19018,7 @@ return { [1]="support_slashing_buff_base_duration_ms" } }, - [701]={ + [707]={ [1]={ [1]={ limit={ @@ -18903,7 +19047,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [702]={ + [708]={ [1]={ [1]={ limit={ @@ -18932,7 +19076,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [703]={ + [709]={ [1]={ [1]={ limit={ @@ -19008,7 +19152,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [704]={ + [710]={ [1]={ [1]={ limit={ @@ -19037,7 +19181,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [705]={ + [711]={ [1]={ [1]={ limit={ @@ -19066,7 +19210,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [706]={ + [712]={ [1]={ [1]={ limit={ @@ -19095,7 +19239,7 @@ return { [1]="support_spell_cascade_damage_+%_final" } }, - [707]={ + [713]={ [1]={ [1]={ limit={ @@ -19129,7 +19273,7 @@ return { [2]="support_spell_cascade_sideways" } }, - [708]={ + [714]={ [1]={ [1]={ limit={ @@ -19158,7 +19302,7 @@ return { [1]="support_spell_echo_final_repeat_damage_+%_final" } }, - [709]={ + [715]={ [1]={ [1]={ limit={ @@ -19174,7 +19318,7 @@ return { [1]="support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage" } }, - [710]={ + [716]={ [1]={ [1]={ limit={ @@ -19190,7 +19334,7 @@ return { [1]="support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types" } }, - [711]={ + [717]={ [1]={ [1]={ limit={ @@ -19219,7 +19363,7 @@ return { [1]="support_spellslinger_damage_+%_final" } }, - [712]={ + [718]={ [1]={ [1]={ limit={ @@ -19248,7 +19392,7 @@ return { [1]="support_spiritual_cry_damage_+%_final" } }, - [713]={ + [719]={ [1]={ [1]={ limit={ @@ -19277,7 +19421,7 @@ return { [1]="support_storm_barrier_damage_+%_final" } }, - [714]={ + [720]={ [1]={ [1]={ limit={ @@ -19306,7 +19450,7 @@ return { [1]="support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling" } }, - [715]={ + [721]={ [1]={ [1]={ [1]={ @@ -19343,7 +19487,7 @@ return { [1]="support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final" } }, - [716]={ + [722]={ [1]={ [1]={ limit={ @@ -19372,7 +19516,7 @@ return { [1]="support_trap_and_mine_damage_mine_throwing_speed_+%_final" } }, - [717]={ + [723]={ [1]={ [1]={ limit={ @@ -19401,7 +19545,7 @@ return { [1]="support_trap_and_mine_damage_trap_throwing_speed_+%_final" } }, - [718]={ + [724]={ [1]={ [1]={ limit={ @@ -19430,7 +19574,7 @@ return { [1]="support_trap_hit_damage_+%_final" } }, - [719]={ + [725]={ [1]={ [1]={ limit={ @@ -19459,7 +19603,7 @@ return { [1]="support_trauma_melee_damage_+%_final_per_trauma" } }, - [720]={ + [726]={ [1]={ [1]={ limit={ @@ -19488,7 +19632,7 @@ return { [1]="support_trauma_stun_duration_+%_per_trauma" } }, - [721]={ + [727]={ [1]={ [1]={ limit={ @@ -19513,7 +19657,7 @@ return { [1]="support_trigger_enervating_grasp_on_supported_brand_recall_chance_%" } }, - [722]={ + [728]={ [1]={ [1]={ limit={ @@ -19538,7 +19682,7 @@ return { [1]="support_trigger_great_avalanche_on_offering_chance_%" } }, - [723]={ + [729]={ [1]={ [1]={ limit={ @@ -19563,7 +19707,7 @@ return { [1]="support_trigger_seize_the_flesh_on_warcry_chance_%" } }, - [724]={ + [730]={ [1]={ [1]={ limit={ @@ -19588,7 +19732,7 @@ return { [1]="support_trigger_tornados_on_attack_hit_after_moving_X_metres" } }, - [725]={ + [731]={ [1]={ [1]={ [1]={ @@ -19625,7 +19769,7 @@ return { [1]="support_unbound_ailments_ailment_damage_+%_final" } }, - [726]={ + [732]={ [1]={ [1]={ limit={ @@ -19654,7 +19798,7 @@ return { [1]="support_undead_army_minion_maximum_count_+%_final" } }, - [727]={ + [733]={ [1]={ [1]={ [1]={ @@ -19678,7 +19822,7 @@ return { [1]="support_vaal_temptation_physical_damage_taken_per_minute_instead_of_soul_gain_prevention" } }, - [728]={ + [734]={ [1]={ [1]={ limit={ @@ -19707,7 +19851,7 @@ return { [1]="support_vicious_projectiles_physical_damage_+%_final" } }, - [729]={ + [735]={ [1]={ [1]={ limit={ @@ -19736,7 +19880,7 @@ return { [1]="support_vicious_projectiles_chaos_damage_+%_final" } }, - [730]={ + [736]={ [1]={ [1]={ limit={ @@ -19752,7 +19896,7 @@ return { [1]="support_voidstorm_trigger_voidstorm_on_rain_skill_impact" } }, - [731]={ + [737]={ [1]={ [1]={ limit={ @@ -19768,7 +19912,7 @@ return { [1]="supported_chaos_skill_gem_level_+" } }, - [732]={ + [738]={ [1]={ [1]={ limit={ @@ -19784,7 +19928,7 @@ return { [1]="supported_curse_skill_gem_level_+" } }, - [733]={ + [739]={ [1]={ [1]={ limit={ @@ -19800,7 +19944,7 @@ return { [1]="supported_elemental_skill_gem_level_+" } }, - [734]={ + [740]={ [1]={ [1]={ limit={ @@ -19816,7 +19960,7 @@ return { [1]="supported_minion_skill_gem_level_+" } }, - [735]={ + [741]={ [1]={ [1]={ limit={ @@ -19832,7 +19976,7 @@ return { [1]="supported_physical_skill_gem_level_+" } }, - [736]={ + [742]={ [1]={ [1]={ limit={ @@ -19848,7 +19992,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [737]={ + [743]={ [1]={ [1]={ limit={ @@ -19864,7 +20008,7 @@ return { [1]="skill_can_only_use_bow" } }, - [738]={ + [744]={ [1]={ [1]={ [1]={ @@ -19884,7 +20028,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [739]={ + [745]={ [1]={ [1]={ [1]={ @@ -19904,7 +20048,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [740]={ + [746]={ [1]={ [1]={ limit={ @@ -19920,7 +20064,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [741]={ + [747]={ [1]={ [1]={ limit={ @@ -19936,7 +20080,7 @@ return { [1]="supported_skill_can_only_use_wand" } }, - [742]={ + [748]={ [1]={ [1]={ limit={ @@ -19952,7 +20096,7 @@ return { [1]="supported_strike_skill_gem_level_+" } }, - [743]={ + [749]={ [1]={ [1]={ [1]={ @@ -19985,7 +20129,7 @@ return { [1]="tornado_base_damage_interval_ms" } }, - [744]={ + [750]={ [1]={ [1]={ [1]={ @@ -20005,7 +20149,7 @@ return { [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [745]={ + [751]={ [1]={ [1]={ limit={ @@ -20021,7 +20165,7 @@ return { [1]="trap_and_mine_area_of_effect_+%_per_second_placed_up_to_100" } }, - [746]={ + [752]={ [1]={ [1]={ limit={ @@ -20037,7 +20181,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [747]={ + [753]={ [1]={ [1]={ limit={ @@ -20066,7 +20210,7 @@ return { [1]="trap_damage_+%" } }, - [748]={ + [754]={ [1]={ [1]={ limit={ @@ -20095,7 +20239,7 @@ return { [1]="trap_spread_+%" } }, - [749]={ + [755]={ [1]={ [1]={ limit={ @@ -20124,7 +20268,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [750]={ + [756]={ [1]={ [1]={ limit={ @@ -20153,7 +20297,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [751]={ + [757]={ [1]={ [1]={ limit={ @@ -20182,7 +20326,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [752]={ + [758]={ [1]={ [1]={ limit={ @@ -20211,7 +20355,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [753]={ + [759]={ [1]={ [1]={ limit={ @@ -20240,7 +20384,7 @@ return { [1]="attack_speed_+%_per_trauma" } }, - [754]={ + [760]={ [1]={ [1]={ limit={ @@ -20421,7 +20565,7 @@ return { [4]="trauma_strike_self_damage_per_trauma" } }, - [755]={ + [761]={ [1]={ [1]={ limit={ @@ -20446,7 +20590,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [756]={ + [762]={ [1]={ [1]={ limit={ @@ -20475,7 +20619,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [757]={ + [763]={ [1]={ [1]={ limit={ @@ -20491,7 +20635,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [758]={ + [764]={ [1]={ [1]={ limit={ @@ -20507,7 +20651,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [759]={ + [765]={ [1]={ [1]={ limit={ @@ -20532,7 +20676,7 @@ return { [1]="trigger_on_ward_break_%_chance" } }, - [760]={ + [766]={ [1]={ [1]={ limit={ @@ -20557,7 +20701,7 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [761]={ + [767]={ [1]={ [1]={ limit={ @@ -20573,7 +20717,7 @@ return { [1]="trigger_rings_of_light_on_melee_hit" } }, - [762]={ + [768]={ [1]={ [1]={ limit={ @@ -20589,7 +20733,7 @@ return { [1]="triggered_by_brand_support" } }, - [763]={ + [769]={ [1]={ [1]={ limit={ @@ -20605,7 +20749,7 @@ return { [1]="triggered_by_divine_cry" } }, - [764]={ + [770]={ [1]={ [1]={ limit={ @@ -20639,7 +20783,7 @@ return { [2]="support_manaforged_arrows_mana_cost_%_threshold" } }, - [765]={ + [771]={ [1]={ [1]={ limit={ @@ -20655,7 +20799,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [766]={ + [772]={ [1]={ [1]={ limit={ @@ -20684,7 +20828,7 @@ return { [1]="triggered_skill_damage_+%" } }, - [767]={ + [773]={ [1]={ [1]={ limit={ @@ -20713,7 +20857,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_channelling" } }, - [768]={ + [774]={ [1]={ [1]={ limit={ @@ -20742,7 +20886,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_not_channelling" } }, - [769]={ + [775]={ [1]={ [1]={ limit={ @@ -20758,7 +20902,7 @@ return { [1]="warcries_do_not_apply_buffs_to_self_or_allies" } }, - [770]={ + [776]={ [1]={ [1]={ limit={ @@ -20787,7 +20931,7 @@ return { [1]="warcry_cooldown_speed_+%" } }, - [771]={ + [777]={ [1]={ [1]={ limit={ @@ -20803,7 +20947,7 @@ return { [1]="warcry_grant_damage_+%_to_exerted_attacks" } }, - [772]={ + [778]={ [1]={ [1]={ limit={ @@ -20832,7 +20976,7 @@ return { [1]="warcry_speed_+%" } }, - [773]={ + [779]={ [1]={ [1]={ limit={ @@ -20861,7 +21005,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [774]={ + [780]={ [1]={ [1]={ limit={ @@ -20877,7 +21021,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [775]={ + [781]={ [1]={ [1]={ limit={ @@ -20906,7 +21050,7 @@ return { [1]="you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted" } }, - [776]={ + [782]={ [1]={ [1]={ [1]={ @@ -20956,7 +21100,7 @@ return { [1]="killing_blow_consumes_corpse_chance_to_gain_soul_per_power_permillage" } }, - [777]={ + [783]={ [1]={ [1]={ [1]={ @@ -20995,7 +21139,7 @@ return { [4]="skill_max_unleash_seals" } }, - [778]={ + [784]={ [1]={ [1]={ limit={ @@ -21024,7 +21168,7 @@ return { [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [779]={ + [785]={ [1]={ [1]={ [1]={ @@ -21044,7 +21188,7 @@ return { [1]="supported_skill_can_only_use_axe_mace_and_staff" } }, - [780]={ + [786]={ [1]={ [1]={ limit={ @@ -21060,7 +21204,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [781]={ + [787]={ [1]={ [1]={ [1]={ @@ -21080,7 +21224,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [782]={ + [788]={ [1]={ [1]={ [1]={ @@ -21100,140 +21244,140 @@ return { [1]="minions_are_defensive" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=500, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=501, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=502, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=503, - ["accuracy_rating"]=218, - ["accuracy_rating_+%"]=219, - ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"]=220, - ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=541, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=503, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=504, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=505, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=506, + ["accuracy_rating"]=219, + ["accuracy_rating_+%"]=220, + ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"]=221, + ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=544, ["active_skill_summon_X_totems_in_ring_override"]=57, ["active_skill_withered_base_duration_ms"]=172, - ["add_power_charge_on_critical_strike_%"]=221, - ["add_power_charge_on_kill_%_chance"]=222, - ["added_damage_+%_final"]=223, - ["additional_base_critical_strike_chance"]=224, - ["additional_chance_to_freeze_chilled_enemies_%"]=225, - ["additional_critical_strike_chance_per_overloaded_intensity"]=226, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=228, - ["additional_critical_strike_chance_permyriad_while_dead"]=227, + ["add_power_charge_on_critical_strike_%"]=222, + ["add_power_charge_on_kill_%_chance"]=223, + ["added_damage_+%_final"]=224, + ["additional_base_critical_strike_chance"]=225, + ["additional_chance_to_freeze_chilled_enemies_%"]=226, + ["additional_critical_strike_chance_per_overloaded_intensity"]=227, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=229, + ["additional_critical_strike_chance_permyriad_while_dead"]=228, ["additional_poisons_+_to_apply_vs_non_poisoned_enemies"]=82, - ["additional_projectiles_per_intensity"]=229, - ["always_freeze"]=259, - ["ancestor_totem_buff_effect_+%"]=230, - ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=231, - ["ancestral_slam_interval_duration"]=197, - ["ancestral_slam_stun_threshold_reduction_+%"]=232, + ["additional_projectiles_per_intensity"]=230, + ["always_freeze"]=260, + ["ancestor_totem_buff_effect_+%"]=231, + ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=232, + ["ancestral_slam_interval_duration"]=198, + ["ancestral_slam_stun_threshold_reduction_+%"]=233, ["apply_linked_curses_on_hit_%"]=127, - ["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=233, - ["archmage_gain_lightning_damage_%_of_max_unreserved_mana"]=234, - ["area_damage_+%"]=235, + ["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=234, + ["archmage_gain_lightning_damage_%_of_max_unreserved_mana"]=235, + ["area_damage_+%"]=236, ["area_of_effect_+%_while_dead"]=35, - ["attack_and_cast_speed_+%"]=236, - ["attack_and_cast_speed_+%_during_onslaught"]=237, - ["attack_and_cast_speed_+%_while_all_resonance_is_at_least_25"]=207, - ["attack_critical_strike_chance_+%"]=238, - ["attack_damage_+%"]=239, - ["attack_damage_+%_per_1000_accuracy_rating"]=240, - ["attack_maximum_added_physical_damage_per_10_rage"]=241, - ["attack_maximum_added_physical_damage_with_at_least_10_rage"]=242, - ["attack_maximum_added_physical_damage_with_weapons"]=243, - ["attack_maximum_added_physical_damage_with_weapons_per_trauma"]=244, - ["attack_minimum_added_physical_damage_per_10_rage"]=241, - ["attack_minimum_added_physical_damage_with_at_least_10_rage"]=242, - ["attack_minimum_added_physical_damage_with_weapons"]=243, - ["attack_minimum_added_physical_damage_with_weapons_per_trauma"]=244, - ["attack_skill_mana_leech_from_any_damage_permyriad"]=245, + ["attack_and_cast_speed_+%"]=237, + ["attack_and_cast_speed_+%_during_onslaught"]=238, + ["attack_and_cast_speed_+%_while_all_resonance_is_at_least_25"]=208, + ["attack_critical_strike_chance_+%"]=239, + ["attack_damage_+%"]=240, + ["attack_damage_+%_per_1000_accuracy_rating"]=241, + ["attack_maximum_added_physical_damage_per_10_rage"]=242, + ["attack_maximum_added_physical_damage_with_at_least_10_rage"]=243, + ["attack_maximum_added_physical_damage_with_weapons"]=244, + ["attack_maximum_added_physical_damage_with_weapons_per_trauma"]=245, + ["attack_minimum_added_physical_damage_per_10_rage"]=242, + ["attack_minimum_added_physical_damage_with_at_least_10_rage"]=243, + ["attack_minimum_added_physical_damage_with_weapons"]=244, + ["attack_minimum_added_physical_damage_with_weapons_per_trauma"]=245, + ["attack_skill_mana_leech_from_any_damage_permyriad"]=246, ["attack_skills_additional_ballista_totems_allowed"]=63, - ["attack_speed_+%"]=246, - ["attack_speed_+%_per_trauma"]=753, - ["attack_speed_+%_when_on_low_life"]=247, - ["attack_speed_+%_with_at_least_10_rage"]=248, - ["attack_speed_+%_with_atleast_20_rage"]=249, - ["attacks_impale_on_hit_%_chance"]=250, + ["attack_speed_+%"]=247, + ["attack_speed_+%_per_trauma"]=759, + ["attack_speed_+%_when_on_low_life"]=248, + ["attack_speed_+%_with_at_least_10_rage"]=249, + ["attack_speed_+%_with_atleast_20_rage"]=250, + ["attacks_impale_on_hit_%_chance"]=251, ["aura_cannot_affect_self"]=151, ["aura_effect_+%"]=37, - ["aura_skill_no_reservation"]=251, - ["avoid_interruption_while_using_this_skill_%"]=252, - ["barrage_support_projectile_spread_+%"]=253, - ["base_ailment_damage_+%"]=254, - ["base_all_ailment_duration_+%"]=255, + ["aura_skill_no_reservation"]=252, + ["avoid_interruption_while_using_this_skill_%"]=253, + ["barrage_support_projectile_spread_+%"]=254, + ["base_ailment_damage_+%"]=255, + ["base_all_ailment_duration_+%"]=256, ["base_aura_area_of_effect_+%"]=36, - ["base_bleed_duration_+%"]=256, - ["base_cast_speed_+%"]=257, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=258, - ["base_chance_to_freeze_%"]=259, - ["base_chance_to_ignite_%"]=260, + ["base_bleed_duration_+%"]=257, + ["base_cast_speed_+%"]=258, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=259, + ["base_chance_to_freeze_%"]=260, + ["base_chance_to_ignite_%"]=261, ["base_chance_to_poison_on_hit_%"]=161, - ["base_chance_to_shock_%"]=261, + ["base_chance_to_shock_%"]=262, ["base_chaos_damage_to_deal_per_minute"]=137, ["base_cold_damage_to_deal_per_minute"]=141, - ["base_cooldown_modifier_ms"]=262, - ["base_cooldown_speed_+%"]=263, + ["base_cooldown_modifier_ms"]=263, + ["base_cooldown_speed_+%"]=264, ["base_cost_+%"]=26, ["base_critical_strike_multiplier_+"]=74, - ["base_curse_duration_+%"]=264, - ["base_damage_+%_while_an_ailment_on_you"]=265, - ["base_deal_no_chaos_damage"]=266, + ["base_curse_duration_+%"]=265, + ["base_damage_+%_while_an_ailment_on_you"]=266, + ["base_deal_no_chaos_damage"]=267, ["base_fire_damage_to_deal_per_minute"]=138, - ["base_global_chance_to_knockback_%"]=267, - ["base_hex_zone_skill_duration_ms"]=268, - ["base_inflict_cold_exposure_on_hit_%_chance"]=269, - ["base_inflict_fire_exposure_on_hit_%_chance"]=270, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=271, - ["base_killed_monster_dropped_item_quantity_+%"]=272, - ["base_killed_monster_dropped_item_rarity_+%"]=273, + ["base_global_chance_to_knockback_%"]=268, + ["base_hex_zone_skill_duration_ms"]=269, + ["base_inflict_cold_exposure_on_hit_%_chance"]=270, + ["base_inflict_fire_exposure_on_hit_%_chance"]=271, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=272, + ["base_killed_monster_dropped_item_quantity_+%"]=273, + ["base_killed_monster_dropped_item_rarity_+%"]=274, ["base_life_cost_+%"]=27, ["base_life_gain_per_target"]=110, - ["base_life_leech_from_attack_damage_permyriad"]=274, - ["base_life_leech_from_chaos_damage_permyriad"]=275, - ["base_life_reservation_+%"]=277, - ["base_life_reservation_efficiency_+%"]=276, - ["base_mana_cost_+"]=210, + ["base_life_leech_from_attack_damage_permyriad"]=275, + ["base_life_leech_from_chaos_damage_permyriad"]=276, + ["base_life_reservation_+%"]=278, + ["base_life_reservation_efficiency_+%"]=277, + ["base_mana_cost_+"]=211, ["base_mana_cost_-%"]=28, - ["base_mana_reservation_+%"]=278, + ["base_mana_reservation_+%"]=279, ["base_melee_attack_repeat_count"]=115, - ["base_mine_detonation_time_ms"]=279, + ["base_mine_detonation_time_ms"]=280, ["base_mine_duration"]=61, ["base_number_of_projectiles_in_spiral_nova"]=44, ["base_number_of_remote_mines_allowed"]=67, - ["base_number_of_support_ghosts_allowed"]=280, + ["base_number_of_support_ghosts_allowed"]=281, ["base_number_of_totems_allowed"]=64, ["base_number_of_traps_allowed"]=66, - ["base_physical_damage_%_to_convert_to_lightning"]=281, + ["base_physical_damage_%_to_convert_to_lightning"]=282, ["base_physical_damage_to_deal_per_minute"]=139, - ["base_poison_damage_+%"]=282, - ["base_poison_duration_+%"]=283, - ["base_projectile_speed_+%"]=284, + ["base_poison_damage_+%"]=283, + ["base_poison_duration_+%"]=284, + ["base_projectile_speed_+%"]=285, ["base_reduce_enemy_cold_resistance_%"]=76, ["base_reduce_enemy_fire_resistance_%"]=75, ["base_reduce_enemy_lightning_resistance_%"]=78, - ["base_reservation_+%"]=286, - ["base_reservation_efficiency_+%"]=285, + ["base_reservation_+%"]=287, + ["base_reservation_efficiency_+%"]=286, ["base_skill_area_of_effect_+%"]=33, ["base_skill_cost_life_instead_of_mana"]=39, - ["base_skill_cost_life_instead_of_mana_%"]=287, + ["base_skill_cost_life_instead_of_mana_%"]=288, ["base_skill_is_instant"]=8, - ["base_skill_no_reservation"]=288, + ["base_skill_no_reservation"]=289, ["base_skill_reserve_life_instead_of_mana"]=40, - ["base_spell_cooldown_speed_+%"]=289, + ["base_spell_cooldown_speed_+%"]=290, ["base_spell_repeat_count"]=116, - ["base_stun_duration_+%"]=290, - ["base_stun_threshold_reduction_+%"]=291, - ["base_total_number_of_sigils_allowed"]=292, + ["base_stun_duration_+%"]=291, + ["base_stun_threshold_reduction_+%"]=292, + ["base_total_number_of_sigils_allowed"]=293, ["base_totem_duration"]=58, ["base_trap_duration"]=60, ["base_use_life_in_place_of_mana"]=41, ["bleed_on_hit_base_duration"]=150, - ["bleed_on_hit_with_attacks_%"]=293, - ["bleeding_damage_+%"]=294, + ["bleed_on_hit_with_attacks_%"]=294, + ["bleeding_damage_+%"]=295, ["blind_duration_+%"]=71, - ["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"]=295, - ["boneshatter_trauma_base_duration_ms"]=754, - ["burn_damage_+%"]=296, + ["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"]=296, + ["boneshatter_trauma_base_duration_ms"]=760, + ["burn_damage_+%"]=297, ["cannot_cast_curses"]=128, - ["cannot_cause_bleeding"]=293, + ["cannot_cause_bleeding"]=294, ["cannot_inflict_status_ailments"]=163, ["cast_linked_spells_on_attack_crit_%"]=129, ["cast_linked_spells_on_melee_kill_%"]=130, @@ -21243,297 +21387,299 @@ return { ["cast_on_death_%"]=132, ["cast_on_death_damage_+%_final_while_dead"]=122, ["cast_on_stunned_%"]=133, - ["cast_on_ward_break_damage_+%_final"]=297, - ["cast_when_damage_taken_trigger_threshold_+%"]=298, + ["cast_on_ward_break_damage_+%_final"]=298, + ["cast_when_damage_taken_trigger_threshold_+%"]=299, ["cast_while_channelling_time_ms"]=136, - ["chaining_range_+%"]=299, - ["chance_for_coin_shower_on_kill_%"]=300, - ["chance_for_extra_damage_roll_%"]=301, - ["chance_to_bleed_on_hit_%_vs_maimed"]=302, - ["chance_to_crush_on_hit_%"]=303, - ["chance_to_double_stun_duration_%"]=304, - ["chance_to_fork_extra_projectile_%"]=305, - ["chance_to_fortify_on_melee_hit_+%"]=306, - ["chance_to_freeze_shock_ignite_%"]=307, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=308, - ["chance_to_ignore_hexproof_%"]=309, - ["chance_to_inflict_additional_impale_%"]=310, - ["chance_to_intimidate_on_hit_%"]=311, - ["chance_to_place_an_additional_mine_%"]=312, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=313, + ["chaining_range_+%"]=300, + ["chance_for_coin_shower_on_kill_%"]=301, + ["chance_for_extra_damage_roll_%"]=302, + ["chance_to_bleed_on_hit_%_vs_maimed"]=303, + ["chance_to_crush_on_hit_%"]=304, + ["chance_to_double_stun_duration_%"]=305, + ["chance_to_fork_extra_projectile_%"]=306, + ["chance_to_fortify_on_melee_hit_+%"]=307, + ["chance_to_freeze_shock_ignite_%"]=308, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=309, + ["chance_to_ignore_hexproof_%"]=310, + ["chance_to_inflict_additional_impale_%"]=311, + ["chance_to_intimidate_on_hit_%"]=312, + ["chance_to_place_an_additional_mine_%"]=313, + ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=314, ["chance_to_summon_support_ghost_on_killing_blow_%"]=182, - ["chance_to_unnerve_on_hit_%"]=314, - ["channelled_skill_damage_+%"]=315, - ["chaos_damage_+%"]=316, + ["chance_to_unnerve_on_hit_%"]=315, + ["channelled_skill_damage_+%"]=316, + ["chaos_damage_+%"]=317, ["chill_duration_+%"]=184, ["chill_effect_+%"]=183, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=317, - ["close_combat_damage_to_close_range_+%"]=318, - ["cold_ailment_effect_+%"]=319, - ["cold_damage_%_to_add_as_fire"]=320, - ["cold_damage_+%"]=321, - ["combat_rush_effect_+%"]=322, - ["consecrated_cry_consecrated_ground_duration_ms"]=323, - ["consecrated_cry_warcry_area_of_effect_+%_final"]=324, - ["cooldown_recovery_rate_+%_if_no_enemies_in_your_presence"]=325, - ["cooldown_recovery_rate_+%_per_100_ward"]=326, - ["cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence"]=327, - ["cover_in_ash_on_hit_%"]=328, - ["critical_ailment_dot_multiplier_+"]=329, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=318, + ["close_combat_damage_to_close_range_+%"]=319, + ["cold_ailment_effect_+%"]=320, + ["cold_damage_%_to_add_as_fire"]=321, + ["cold_damage_+%"]=322, + ["combat_rush_effect_+%"]=323, + ["consecrated_cry_consecrated_ground_duration_ms"]=324, + ["consecrated_cry_warcry_area_of_effect_+%_final"]=325, + ["cooldown_recovery_rate_+%_if_no_enemies_in_your_presence"]=326, + ["cooldown_recovery_rate_+%_per_100_ward"]=327, + ["cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence"]=328, + ["cover_in_ash_on_hit_%"]=329, + ["critical_ailment_dot_multiplier_+"]=330, ["critical_strike_chance_+%"]=72, - ["critical_strike_chance_+%_per_righteous_charge"]=686, - ["critical_strike_chance_+%_vs_blinded_enemies"]=330, - ["critical_strike_multiplier_+_per_overloaded_intensity"]=331, + ["critical_strike_chance_+%_per_righteous_charge"]=692, + ["critical_strike_chance_+%_vs_blinded_enemies"]=331, + ["critical_strike_multiplier_+_per_overloaded_intensity"]=332, ["critical_strike_multiplier_+_while_affected_by_elusive"]=165, - ["critical_strikes_that_inflict_bleeding_also_rupture"]=693, + ["critical_strikes_that_inflict_bleeding_also_rupture"]=699, ["cruelty_duration_+%"]=168, - ["cruelty_effect_+%"]=332, - ["crush_for_2_seconds_on_hit_%_chance"]=333, + ["cruelty_effect_+%"]=333, + ["crush_for_2_seconds_on_hit_%_chance"]=334, ["curse_apply_as_aura"]=4, - ["curse_area_of_effect_+%"]=334, + ["curse_area_of_effect_+%"]=335, ["curse_effect_+%"]=144, - ["damage_+%"]=337, - ["damage_+%_final_per_10_lowest_unholy_resonance"]=202, - ["damage_+%_for_non_minions"]=338, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=339, - ["damage_+%_if_you_have_consumed_a_corpse_recently"]=335, - ["damage_+%_on_full_energy_shield"]=347, - ["damage_+%_per_200_mana_spent_recently"]=340, - ["damage_+%_per_endurance_charge"]=341, - ["damage_+%_per_frenzy_charge"]=342, - ["damage_+%_per_power_charge"]=343, - ["damage_+%_vs_enemies_on_full_life"]=344, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=345, - ["damage_+%_vs_frozen_enemies"]=346, - ["damage_+%_when_on_full_life"]=348, - ["damage_+%_when_on_low_life"]=349, - ["damage_+%_while_an_ailment_on_you"]=350, - ["damage_+%_while_es_leeching"]=351, - ["damage_+%_while_life_leeching"]=352, - ["damage_+%_while_mana_leeching"]=353, - ["damage_over_time_+%"]=336, - ["damage_penetrates_%_elemental_resistances_while_all_resonance_is_25"]=204, - ["damage_removed_from_minions_before_life_or_es_%_if_only_one_minion"]=354, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=355, - ["damage_vs_enemies_on_low_life_+%"]=356, - ["damaging_ailments_deal_damage_+%_faster"]=357, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=358, - ["deal_no_elemental_damage"]=359, - ["deathmark_minion_damage_+%_final"]=360, - ["detonate_dead_%_chance_to_detonate_additional_corpse"]=361, - ["display_base_intensity_loss"]=362, - ["display_totems_no_infusion"]=363, - ["dot_multiplier_+"]=364, - ["elemental_damage_+%"]=366, - ["elemental_damage_+%_final_per_5_lowest_resonance"]=203, - ["elemental_damage_+%_final_per_righteous_charge"]=687, - ["elemental_damage_cannot_be_reflected"]=365, + ["damage_+%"]=338, + ["damage_+%_final_per_10_lowest_unholy_resonance"]=203, + ["damage_+%_for_non_minions"]=339, + ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=340, + ["damage_+%_if_you_have_consumed_a_corpse_recently"]=336, + ["damage_+%_on_full_energy_shield"]=348, + ["damage_+%_per_200_mana_spent_recently"]=341, + ["damage_+%_per_endurance_charge"]=342, + ["damage_+%_per_frenzy_charge"]=343, + ["damage_+%_per_power_charge"]=344, + ["damage_+%_vs_enemies_on_full_life"]=345, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=346, + ["damage_+%_vs_frozen_enemies"]=347, + ["damage_+%_when_on_full_life"]=349, + ["damage_+%_when_on_low_life"]=350, + ["damage_+%_while_an_ailment_on_you"]=351, + ["damage_+%_while_es_leeching"]=352, + ["damage_+%_while_life_leeching"]=353, + ["damage_+%_while_mana_leeching"]=354, + ["damage_over_time_+%"]=337, + ["damage_penetrates_%_elemental_resistances_while_all_resonance_is_25"]=205, + ["damage_removed_from_minions_before_life_or_es_%_if_only_one_minion"]=355, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=356, + ["damage_vs_enemies_on_low_life_+%"]=357, + ["damaging_ailments_deal_damage_+%_faster"]=358, + ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=359, + ["deal_no_elemental_damage"]=360, + ["deathmark_minion_damage_+%_final"]=361, + ["detonate_dead_%_chance_to_detonate_additional_corpse"]=362, + ["display_base_intensity_loss"]=363, + ["display_totems_no_infusion"]=364, + ["dot_multiplier_+"]=365, + ["elemental_damage_+%"]=367, + ["elemental_damage_+%_final_per_5_lowest_resonance"]=204, + ["elemental_damage_+%_final_per_righteous_charge"]=693, + ["elemental_damage_cannot_be_reflected"]=366, ["elemental_status_effect_aura_radius"]=45, - ["elusive_effect_+%"]=367, - ["empowered_attack_damage_+%"]=368, - ["enemies_you_shock_movement_speed_+%"]=369, - ["enemies_you_shock_take_%_increased_physical_damage"]=370, - ["enemy_phys_reduction_%_penalty_vs_hit"]=371, - ["energy_shield_leech_from_any_damage_permyriad"]=372, - ["excommunicate_on_melee_attack_hit_for_X_ms"]=373, - ["explode_enemies_for_10%_life_as_random_element_on_killing_blow_chance_%"]=374, + ["elusive_effect_+%"]=368, + ["empowered_attack_damage_+%"]=369, + ["enemies_you_shock_movement_speed_+%"]=370, + ["enemies_you_shock_take_%_increased_physical_damage"]=371, + ["enemy_phys_reduction_%_penalty_vs_hit"]=372, + ["energy_shield_leech_from_any_damage_permyriad"]=373, + ["excommunicate_on_melee_attack_hit_for_X_ms"]=374, + ["explode_enemies_for_10%_life_as_random_element_on_killing_blow_chance_%"]=375, ["extra_target_targeting_distance_+%"]=32, - ["faster_bleed_%"]=375, - ["faster_burn_%"]=376, - ["faster_poison_%"]=377, - ["fire_damage_+%"]=378, - ["fire_dot_multiplier_+"]=379, - ["firestorm_drop_burning_ground_duration_ms"]=380, - ["fortify_duration_+%"]=381, - ["freeze_applies_cold_resistance_+"]=382, - ["freeze_duration_+%"]=383, + ["faster_bleed_%"]=376, + ["faster_burn_%"]=377, + ["faster_poison_%"]=378, + ["fire_damage_+%"]=379, + ["fire_dot_multiplier_+"]=380, + ["firestorm_drop_burning_ground_duration_ms"]=381, + ["fortify_duration_+%"]=382, + ["freeze_applies_cold_resistance_+"]=383, + ["freeze_duration_+%"]=384, ["freeze_mine_cold_resistance_+_while_frozen"]=164, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=384, - ["frostmage_cost_equals_%_reserved_mana"]=386, - ["frostmage_gain_cold_damage_%_of_max_reserved_mana"]=385, - ["gain_%_of_base_wand_damage_as_added_spell_damage"]=387, - ["gain_1_rage_on_use_%_chance"]=388, - ["gain_X_wildshard_stacks_on_cast"]=389, + ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=385, + ["frostmage_cost_equals_%_reserved_mana"]=387, + ["frostmage_gain_cold_damage_%_of_max_reserved_mana"]=386, + ["gain_%_of_base_wand_damage_as_added_spell_damage"]=388, + ["gain_1_rage_on_use_%_chance"]=389, + ["gain_X_wildshard_stacks_on_cast"]=390, ["gain_elusive_on_crit_%_chance"]=159, - ["gain_endurance_charge_on_melee_stun"]=390, - ["gain_endurance_charge_on_melee_stun_%"]=390, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=391, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=392, - ["gain_overloaded_intensity_for_x_ms_after_losing_6_intensity"]=217, - ["gain_power_charge_on_kill_with_hit_%"]=393, - ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=200, - ["gain_righteous_charge_on_mana_spent_%"]=394, - ["gain_unholy_resonance_of_majority_damage_on_hit_for_2_seconds"]=201, - ["gain_vaal_soul_on_hit_cooldown_ms"]=395, - ["gem_display_quality_has_no_effect"]=396, - ["global_bleed_on_hit"]=293, + ["gain_endurance_charge_on_melee_stun"]=391, + ["gain_endurance_charge_on_melee_stun_%"]=391, + ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=392, + ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=393, + ["gain_overloaded_intensity_for_x_ms_after_losing_6_intensity"]=218, + ["gain_power_charge_on_kill_with_hit_%"]=394, + ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=201, + ["gain_righteous_charge_on_mana_spent_%"]=395, + ["gain_unholy_resonance_of_majority_damage_on_hit_for_2_seconds"]=202, + ["gain_vaal_soul_on_hit_cooldown_ms"]=396, + ["gem_display_quality_has_no_effect"]=397, + ["global_bleed_on_hit"]=294, ["global_chance_to_blind_on_hit_%"]=70, - ["global_hit_causes_monster_flee_%"]=397, - ["global_maximum_added_chaos_damage"]=398, - ["global_maximum_added_cold_damage"]=399, - ["global_maximum_added_fire_damage"]=400, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=641, - ["global_maximum_added_lightning_damage"]=401, - ["global_maximum_added_physical_damage"]=402, - ["global_minimum_added_chaos_damage"]=398, - ["global_minimum_added_cold_damage"]=399, - ["global_minimum_added_fire_damage"]=400, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=641, - ["global_minimum_added_lightning_damage"]=401, - ["global_minimum_added_physical_damage"]=402, + ["global_hit_causes_monster_flee_%"]=398, + ["global_maximum_added_chaos_damage"]=399, + ["global_maximum_added_cold_damage"]=400, + ["global_maximum_added_fire_damage"]=401, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=647, + ["global_maximum_added_lightning_damage"]=402, + ["global_maximum_added_physical_damage"]=403, + ["global_minimum_added_chaos_damage"]=399, + ["global_minimum_added_cold_damage"]=400, + ["global_minimum_added_fire_damage"]=401, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=647, + ["global_minimum_added_lightning_damage"]=402, + ["global_minimum_added_physical_damage"]=403, ["global_poison_on_hit"]=160, - ["global_reduce_enemy_block_%"]=403, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=404, - ["hallowing_flame_magnitude_+%"]=405, - ["herald_no_buff_effect"]=406, - ["hex_transfer_on_death_range_+%"]=407, - ["hex_zone_trigger_hextoad_every_x_ms"]=408, - ["hexed_enemies_cannot_deal_critical_strikes"]=409, - ["hextouch_support_curse_duration_+%_final"]=410, - ["hit_and_poison_damage_+%"]=411, - ["hit_and_poison_damage_+%_per_poison_on_enemy"]=412, - ["hit_damage_+%"]=413, - ["hits_cannot_kill_enemies"]=414, - ["hits_grant_cruelty"]=208, - ["hits_ignore_enemy_monster_lightning_and_chaos_resistance_%_chance_while_all_unholy_resonance_is_25"]=205, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_all_unholy_resonance_is_25"]=206, - ["ignite_duration_+%"]=415, - ["ignites_apply_fire_resistance_+"]=416, - ["ignore_self_damage_from_trauma_chance_%"]=417, - ["impale_debuff_effect_+%"]=418, - ["impale_phys_reduction_%_penalty"]=419, - ["impale_support_physical_damage_+%_final"]=420, - ["inc_aoe_plus_more_area_damage_+%_final"]=421, - ["infernal_legion_minions_have_burning_effect_radius_+"]=196, - ["inflict_hallowing_flame_on_melee_hit_chance_%"]=422, - ["infusion_grants_life_regeneration_rate_per_minute_%"]=423, - ["inspiration_charge_duration_+%"]=424, - ["intensity_loss_frequency_while_moving_+%"]=425, + ["global_reduce_enemy_block_%"]=404, + ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=405, + ["hallowing_flame_magnitude_+%"]=406, + ["herald_no_buff_effect"]=407, + ["hex_transfer_on_death_range_+%"]=408, + ["hex_zone_trigger_hextoad_every_x_ms"]=409, + ["hexed_enemies_cannot_deal_critical_strikes"]=410, + ["hextouch_support_curse_duration_+%_final"]=411, + ["hit_and_poison_damage_+%"]=412, + ["hit_and_poison_damage_+%_per_poison_on_enemy"]=413, + ["hit_damage_+%"]=414, + ["hits_cannot_kill_enemies"]=415, + ["hits_grant_cruelty"]=209, + ["hits_ignore_enemy_monster_lightning_and_chaos_resistance_%_chance_while_all_unholy_resonance_is_25"]=206, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_all_unholy_resonance_is_25"]=207, + ["ignite_duration_+%"]=416, + ["ignites_apply_fire_resistance_+"]=417, + ["ignore_self_damage_from_trauma_chance_%"]=418, + ["impale_debuff_effect_+%"]=419, + ["impale_phys_reduction_%_penalty"]=420, + ["impale_support_physical_damage_+%_final"]=421, + ["inc_aoe_plus_more_area_damage_+%_final"]=422, + ["infernal_legion_minions_have_burning_effect_radius_+"]=197, + ["inflict_equivalent_chill_on_inflicting_shock_with_hits"]=423, + ["inflict_equivalent_shock_on_inflicting_chill_with_hits"]=424, + ["inflict_hallowing_flame_on_melee_hit_chance_%"]=425, + ["infusion_grants_life_regeneration_rate_per_minute_%"]=426, + ["inspiration_charge_duration_+%"]=427, + ["intensity_loss_frequency_while_moving_+%"]=428, ["is_ranged_attack_totem"]=57, ["is_remote_mine"]=51, - ["is_snipe_default_projectile"]=547, - ["is_snipe_default_projectile_2"]=548, + ["is_snipe_default_projectile"]=550, + ["is_snipe_default_projectile_2"]=551, ["is_totem"]=57, ["keystone_point_blank"]=47, ["keystone_strong_bowman"]=49, ["kill_enemy_on_hit_if_under_10%_life"]=46, - ["kill_normal_or_magic_enemy_on_hit_if_under_x%_life"]=427, - ["killing_blow_consumes_corpse_chance_to_gain_soul_per_power_permillage"]=776, - ["killing_blow_consumes_corpse_restore_x_life"]=428, - ["killing_blow_consumes_corpse_restore_x_mana"]=428, - ["knockback_chance_%_at_close_range"]=429, - ["knockback_distance_+%"]=430, - ["life_leech_from_any_damage_permyriad"]=431, - ["lightning_ailment_effect_+%"]=432, - ["lightning_damage_+%"]=433, + ["kill_normal_or_magic_enemy_on_hit_if_under_x%_life"]=430, + ["killing_blow_consumes_corpse_chance_to_gain_soul_per_power_permillage"]=782, + ["killing_blow_consumes_corpse_restore_x_life"]=431, + ["killing_blow_consumes_corpse_restore_x_mana"]=431, + ["knockback_chance_%_at_close_range"]=432, + ["knockback_distance_+%"]=433, + ["life_leech_from_any_damage_permyriad"]=434, + ["lightning_ailment_effect_+%"]=435, + ["lightning_damage_+%"]=436, ["link_skills_deal_cold_dot_to_enemies_in_beam_aoe"]=48, - ["local_gem_dex_requirement_+%"]=434, - ["local_gem_int_requirement_+%"]=435, - ["local_gem_str_requirement_+%"]=436, - ["lose_all_righteous_charges_on_mana_use_threshold"]=688, - ["maim_effect_+%"]=437, - ["maim_on_hit_%"]=438, + ["local_gem_dex_requirement_+%"]=437, + ["local_gem_int_requirement_+%"]=438, + ["local_gem_str_requirement_+%"]=439, + ["lose_all_righteous_charges_on_mana_use_threshold"]=694, + ["maim_effect_+%"]=440, + ["maim_on_hit_%"]=441, ["mana_gain_per_target"]=111, - ["mana_leech_from_any_damage_permyriad"]=439, - ["manaweave_added_cold_damage_%_cost_if_payable"]=441, - ["manaweave_cost_equals_%_unreserved_mana"]=440, - ["mark_skills_curse_effect_+%"]=215, - ["maximum_added_cold_damage_per_frenzy_charge"]=454, - ["maximum_attack_damage_+%_final_from_volatility_support"]=213, - ["maximum_energy_shield_leech_amount_per_leech_+%"]=442, - ["maximum_intensify_stacks"]=443, - ["maximum_life_leech_amount_per_leech_+%"]=444, + ["mana_leech_from_any_damage_permyriad"]=442, + ["manaweave_added_cold_damage_%_cost_if_payable"]=444, + ["manaweave_cost_equals_%_unreserved_mana"]=443, + ["mark_skills_curse_effect_+%"]=216, + ["maximum_added_cold_damage_per_frenzy_charge"]=457, + ["maximum_attack_damage_+%_final_from_volatility_support"]=214, + ["maximum_energy_shield_leech_amount_per_leech_+%"]=445, + ["maximum_intensify_stacks"]=446, + ["maximum_life_leech_amount_per_leech_+%"]=447, ["melee_attack_number_of_spirit_strikes"]=30, - ["melee_damage_+%"]=445, - ["melee_damage_vs_bleeding_enemies_+%"]=446, - ["melee_physical_damage_+%"]=447, - ["melee_range_+"]=448, + ["melee_damage_+%"]=448, + ["melee_damage_vs_bleeding_enemies_+%"]=449, + ["melee_physical_damage_+%"]=450, + ["melee_range_+"]=451, ["melee_splash"]=113, - ["melee_splash_area_of_effect_+%_final"]=449, - ["mine_critical_strike_chance_+%_per_power_charge"]=190, - ["mine_detonation_radius_+%"]=450, - ["mine_detonation_speed_+%"]=451, + ["melee_splash_area_of_effect_+%_final"]=452, + ["mine_critical_strike_chance_+%_per_power_charge"]=191, + ["mine_detonation_radius_+%"]=453, + ["mine_detonation_speed_+%"]=454, ["mine_duration_+%"]=69, - ["mine_laying_speed_+%"]=452, - ["mine_projectile_speed_+%_per_frenzy_charge"]=453, - ["mine_throwing_speed_+%_per_frenzy_charge"]=189, - ["minimum_added_cold_damage_per_frenzy_charge"]=454, - ["minimum_attack_damage_+%_final_from_volatility_support"]=214, - ["minimum_number_of_projectiles_to_fire_is_1"]=455, - ["minimum_power_from_quality"]=456, - ["minion_additional_physical_damage_reduction_%"]=457, - ["minion_ailment_damage_+%"]=458, - ["minion_area_of_effect_+%"]=459, - ["minion_attack_speed_+%"]=460, - ["minion_block_%"]=461, - ["minion_burning_damage_+%"]=462, - ["minion_cast_speed_+%"]=463, - ["minion_chance_to_deal_double_damage_%"]=464, - ["minion_chance_to_taunt_on_hit_%"]=465, - ["minion_cooldown_recovery_+%"]=466, - ["minion_critical_strike_chance_+%"]=467, - ["minion_critical_strike_chance_+%_per_attack_crit_recently_up_to_100"]=468, - ["minion_critical_strike_multiplier_+_per_attack_crit_recently_up_to_100"]=469, - ["minion_damage_+%"]=470, - ["minion_damage_+%_on_full_life"]=471, - ["minion_elemental_resistance_%"]=191, - ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=193, - ["minion_fire_damage_taken_+%"]=194, - ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=472, - ["minion_larger_aggro_radius"]=781, - ["minion_life_leech_from_elemental_damage_permyriad"]=473, - ["minion_life_regeneration_rate_per_minute_%"]=216, - ["minion_maximum_all_elemental_resistances_%"]=192, - ["minion_maximum_life_+%"]=474, - ["minion_movement_speed_+%"]=475, - ["minion_projectile_speed_+%"]=476, - ["minion_recover_%_maximum_life_on_hit"]=477, - ["minions_are_defensive"]=782, - ["minions_inflict_exposure_on_hit_%_chance"]=478, - ["mirage_archer_number_of_additional_projectiles"]=479, - ["multiple_projectiles_projectile_spread_+%"]=480, - ["multistrike_area_of_effect_+%_per_repeat"]=481, - ["multistrike_damage_+%_final_on_first_repeat"]=482, - ["multistrike_damage_+%_final_on_second_repeat"]=483, - ["multistrike_damage_+%_final_on_third_repeat"]=484, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=485, - ["no_cost"]=486, + ["mine_laying_speed_+%"]=455, + ["mine_projectile_speed_+%_per_frenzy_charge"]=456, + ["mine_throwing_speed_+%_per_frenzy_charge"]=190, + ["minimum_added_cold_damage_per_frenzy_charge"]=457, + ["minimum_attack_damage_+%_final_from_volatility_support"]=215, + ["minimum_number_of_projectiles_to_fire_is_1"]=458, + ["minimum_power_from_quality"]=459, + ["minion_additional_physical_damage_reduction_%"]=460, + ["minion_ailment_damage_+%"]=461, + ["minion_area_of_effect_+%"]=462, + ["minion_attack_speed_+%"]=463, + ["minion_block_%"]=464, + ["minion_burning_damage_+%"]=465, + ["minion_cast_speed_+%"]=466, + ["minion_chance_to_deal_double_damage_%"]=467, + ["minion_chance_to_taunt_on_hit_%"]=468, + ["minion_cooldown_recovery_+%"]=469, + ["minion_critical_strike_chance_+%"]=470, + ["minion_critical_strike_chance_+%_per_attack_crit_recently_up_to_100"]=471, + ["minion_critical_strike_multiplier_+_per_attack_crit_recently_up_to_100"]=472, + ["minion_damage_+%"]=473, + ["minion_damage_+%_on_full_life"]=474, + ["minion_elemental_resistance_%"]=192, + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=194, + ["minion_fire_damage_taken_+%"]=195, + ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=475, + ["minion_larger_aggro_radius"]=787, + ["minion_life_leech_from_elemental_damage_permyriad"]=476, + ["minion_life_regeneration_rate_per_minute_%"]=217, + ["minion_maximum_all_elemental_resistances_%"]=193, + ["minion_maximum_life_+%"]=477, + ["minion_movement_speed_+%"]=478, + ["minion_projectile_speed_+%"]=479, + ["minion_recover_%_maximum_life_on_hit"]=480, + ["minions_are_defensive"]=788, + ["minions_inflict_exposure_on_hit_%_chance"]=481, + ["mirage_archer_number_of_additional_projectiles"]=482, + ["multiple_projectiles_projectile_spread_+%"]=483, + ["multistrike_area_of_effect_+%_per_repeat"]=484, + ["multistrike_damage_+%_final_on_first_repeat"]=485, + ["multistrike_damage_+%_final_on_second_repeat"]=486, + ["multistrike_damage_+%_final_on_third_repeat"]=487, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=488, + ["no_cost"]=489, ["no_spirit_strikes"]=31, - ["non_curse_aura_effect_+%"]=487, - ["non_damaging_ailment_effect_+%"]=488, - ["number_of_additional_curses_allowed"]=489, + ["non_curse_aura_effect_+%"]=490, + ["non_damaging_ailment_effect_+%"]=491, + ["number_of_additional_curses_allowed"]=492, ["number_of_additional_forks_base"]=83, - ["number_of_additional_mines_to_place"]=490, - ["number_of_additional_projectiles"]=491, - ["number_of_additional_remote_mines_allowed"]=492, - ["number_of_additional_traps_allowed"]=493, + ["number_of_additional_mines_to_place"]=493, + ["number_of_additional_projectiles"]=494, + ["number_of_additional_remote_mines_allowed"]=495, + ["number_of_additional_traps_allowed"]=496, ["number_of_additional_traps_to_throw"]=52, ["number_of_chains"]=79, ["number_of_mines_to_place"]=51, - ["number_of_projectiles_+%_final_from_locus_mine_support"]=494, + ["number_of_projectiles_+%_final_from_locus_mine_support"]=497, ["number_of_totems_to_summon"]=57, - ["number_of_warcries_exerting_this_action"]=426, - ["on_reaching_x_wildshard_stacks_gain_disgorge"]=495, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=496, - ["overpowered_effect_+%"]=497, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=498, - ["parallel_projectile_firing_point_x_dist_+%"]=499, + ["number_of_warcries_exerting_this_action"]=429, + ["on_reaching_x_wildshard_stacks_gain_disgorge"]=498, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=499, + ["overpowered_effect_+%"]=500, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=501, + ["parallel_projectile_firing_point_x_dist_+%"]=502, parent="stat_descriptions", - ["physical_damage_%_to_add_as_chaos"]=505, - ["physical_damage_%_to_add_as_chaos_per_keystone"]=504, - ["physical_damage_%_to_add_as_fire"]=506, - ["physical_damage_%_to_add_as_lightning"]=507, - ["physical_damage_+%"]=508, - ["placing_traps_cooldown_recovery_+%"]=509, + ["physical_damage_%_to_add_as_chaos"]=508, + ["physical_damage_%_to_add_as_chaos_per_keystone"]=507, + ["physical_damage_%_to_add_as_fire"]=509, + ["physical_damage_%_to_add_as_lightning"]=510, + ["physical_damage_+%"]=511, + ["placing_traps_cooldown_recovery_+%"]=512, ["power_siphon_fire_at_all_targets"]=44, - ["projectile_additional_return_chance_%"]=212, + ["projectile_additional_return_chance_%"]=213, ["projectile_base_number_of_targets_to_pierce"]=59, ["projectile_behaviour_only_explode"]=1, - ["projectile_chance_to_not_pierce_%"]=510, - ["projectile_damage_+%"]=511, - ["projectile_damage_+%_if_pierced_enemy"]=512, - ["projectile_damage_+%_vs_nearby_enemies"]=514, - ["projectile_maximum_range_override"]=513, + ["projectile_chance_to_not_pierce_%"]=513, + ["projectile_damage_+%"]=514, + ["projectile_damage_+%_if_pierced_enemy"]=515, + ["projectile_damage_+%_vs_nearby_enemies"]=517, + ["projectile_maximum_range_override"]=516, ["projectile_number_to_split"]=80, ["projectile_return_%_chance"]=84, ["projectile_spiral_nova_angle"]=44, @@ -21541,248 +21687,253 @@ return { ["projectiles_barrage"]=44, ["projectiles_fork"]=81, ["projectiles_nova"]=44, - ["projectiles_pierce_all_targets_in_x_range"]=515, + ["projectiles_pierce_all_targets_in_x_range"]=518, ["projectiles_rain"]=42, ["projectiles_return"]=84, - ["quality_display_lifetap_is_gem"]=629, + ["quality_display_lifetap_is_gem"]=635, ["quality_display_melee_splash_is_gem"]=114, - ["quality_display_spell_damage_to_attack_damage_is_gem"]=220, + ["quality_display_spell_damage_to_attack_damage_is_gem"]=221, ["quality_display_swiftbrand_is_gem"]=157, ["quality_display_trap_duration_is_gem"]=60, - ["quality_display_wand_damage_as_added_spell_damage_is_gem"]=387, + ["quality_display_wand_damage_as_added_spell_damage_is_gem"]=388, ["rain_of_arrows_sequences_to_fire"]=44, - ["random_nearby_minion_gain_a_soul_eater_soul_on_X_life_spent"]=516, - ["ranged_attack_totem_only_attacks_when_owner_attacks"]=517, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=518, - ["recover_%_maximum_life_on_cull"]=519, - ["recover_permyriad_life_on_skill_use"]=520, - ["reduce_enemy_chaos_resistance_%"]=521, - ["reduce_enemy_dodge_%"]=522, + ["random_nearby_minion_gain_a_soul_eater_soul_on_X_life_spent"]=519, + ["ranged_attack_totem_only_attacks_when_owner_attacks"]=520, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=521, + ["recover_%_maximum_life_on_cull"]=522, + ["recover_permyriad_life_on_skill_use"]=523, + ["reduce_enemy_chaos_resistance_%"]=524, + ["reduce_enemy_dodge_%"]=525, ["reduce_enemy_elemental_resistance_%"]=77, - ["refresh_bleeding_duration_on_hit_%_chance"]=523, - ["regenerate_%_life_over_1_second_on_skill_use"]=524, - ["remote_mined_by_support"]=525, - ["retaliation_use_window_duration_+%"]=526, - ["returning_projectiles_always_pierce"]=211, + ["refresh_bleeding_duration_on_hit_%_chance"]=526, + ["regenerate_%_life_over_1_second_on_skill_use"]=527, + ["remote_mined_by_support"]=528, + ["retaliation_use_window_duration_+%"]=529, + ["returning_projectiles_always_pierce"]=212, ["secondary_base_fire_damage_to_deal_per_minute"]=140, - ["shock_duration_+%"]=527, - ["shock_effect_+%_with_critical_strikes"]=528, - ["sigil_repeat_frequency_+%"]=529, - ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=531, - ["skill_buff_effect_+%"]=532, - ["skill_can_only_use_bow"]=737, - ["skill_can_only_use_non_melee_weapons"]=740, - ["skill_can_own_mirage_archers"]=533, - ["skill_cold_damage_%_to_convert_to_fire"]=534, - ["skill_convert_%_physical_damage_to_random_element"]=535, - ["skill_cost_+%_per_keystone"]=536, + ["shock_duration_+%"]=530, + ["shock_effect_+%"]=185, + ["shock_effect_+%_with_critical_strikes"]=531, + ["sigil_repeat_frequency_+%"]=532, + ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=534, + ["skill_buff_effect_+%"]=535, + ["skill_can_only_use_bow"]=743, + ["skill_can_only_use_non_melee_weapons"]=746, + ["skill_can_own_mirage_archers"]=536, + ["skill_cold_damage_%_to_convert_to_fire"]=537, + ["skill_convert_%_physical_damage_to_random_element"]=538, + ["skill_cost_+%_per_keystone"]=539, ["skill_display_single_base_projectile"]=44, - ["skill_effect_and_damaging_ailment_duration_+%"]=537, - ["skill_effect_duration_+%"]=538, - ["skill_effect_duration_+%_while_dead"]=539, - ["skill_is_blessing_skill"]=530, - ["skill_max_unleash_seals"]=777, - ["skill_physical_damage_%_to_convert_to_chaos"]=540, - ["skill_physical_damage_%_to_convert_to_cold"]=541, - ["skill_physical_damage_%_to_convert_to_fire"]=542, - ["skill_physical_damage_%_to_convert_to_lightning"]=543, - ["skill_used_by_sacred_wisp_damage_+%_final"]=544, - ["skills_sacrifice_all_but_one_life_and_energy_shield_on_use"]=545, - ["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=548, - ["snipe_triggered_skill_damage_+%_final"]=546, - ["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=547, - ["spell_critical_strike_chance_+%"]=549, - ["spell_damage_+%"]=550, + ["skill_effect_and_damaging_ailment_duration_+%"]=540, + ["skill_effect_duration_+%"]=541, + ["skill_effect_duration_+%_while_dead"]=542, + ["skill_is_blessing_skill"]=533, + ["skill_max_unleash_seals"]=783, + ["skill_physical_damage_%_to_convert_to_chaos"]=543, + ["skill_physical_damage_%_to_convert_to_cold"]=544, + ["skill_physical_damage_%_to_convert_to_fire"]=545, + ["skill_physical_damage_%_to_convert_to_lightning"]=546, + ["skill_used_by_sacred_wisp_damage_+%_final"]=547, + ["skills_sacrifice_all_but_one_life_and_energy_shield_on_use"]=548, + ["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=551, + ["snipe_triggered_skill_damage_+%_final"]=549, + ["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=550, + ["spell_critical_strike_chance_+%"]=552, + ["spell_damage_+%"]=553, ["spell_damage_modifiers_apply_to_skill_dot"]=143, - ["spell_echo_plus_chance_double_damage_%_final"]=551, + ["spell_echo_plus_chance_double_damage_%_final"]=554, + ["spell_maximum_added_physical_damage_per_active_permanent_minion"]=555, + ["spell_minimum_added_physical_damage_per_active_permanent_minion"]=555, ["spellslinger_trigger_on_wand_attack_%"]=134, - ["static_strike_base_zap_frequency_ms"]=552, - ["static_strike_zap_speed_+%"]=553, + ["static_strike_base_zap_frequency_ms"]=556, + ["static_strike_zap_speed_+%"]=557, ["strong_casting"]=50, ["summon_2_totems"]=65, ["summon_cold_resistance_+"]=125, ["summon_fire_resistance_+"]=124, ["summon_lightning_resistance_+"]=126, - ["summon_living_lightning_on_lightning_hit"]=554, - ["summon_mirage_archer_on_hit"]=555, - ["summon_sacred_wisps_on_hit"]=556, - ["summon_totem_cast_speed_+%"]=557, - ["summoned_sentinels_have_random_templar_aura"]=558, - ["support_added_cooldown_count_if_not_instant"]=559, + ["summon_living_lightning_on_lightning_hit"]=558, + ["summon_mirage_archer_on_hit"]=559, + ["summon_sacred_wisps_on_hit"]=560, + ["summon_totem_cast_speed_+%"]=561, + ["summoned_sentinels_have_random_templar_aura"]=562, + ["support_abyssal_well_chance_to_create_well_on_corpse_creation_%"]=563, + ["support_added_cooldown_count_if_not_instant"]=564, ["support_additional_totem_damage_+%_final"]=98, - ["support_additional_trap_%_chance_for_1_additional_trap"]=560, + ["support_additional_trap_%_chance_for_1_additional_trap"]=565, ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=53, ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=54, ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=55, - ["support_ancestor_slam_totem_attack_speed_+%_final"]=561, + ["support_ancestor_slam_totem_attack_speed_+%_final"]=566, ["support_ancestor_slam_totem_damage_+%_final"]=5, - ["support_ancestral_slam_big_hit_area_+%"]=199, - ["support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final"]=198, - ["support_anticipation_charge_gain_frequency_+%"]=562, - ["support_anticipation_charge_gain_interval_ms"]=777, - ["support_anticipation_rapid_fire_count"]=777, + ["support_ancestral_slam_big_hit_area_+%"]=200, + ["support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final"]=199, + ["support_anticipation_charge_gain_frequency_+%"]=567, + ["support_anticipation_charge_gain_interval_ms"]=783, + ["support_anticipation_rapid_fire_count"]=783, ["support_arcane_surge_base_duration_ms"]=169, ["support_arcane_surge_cast_speed_+%"]=167, ["support_arcane_surge_duration_ms"]=173, ["support_arcane_surge_gain_buff_on_mana_use_threshold"]=166, ["support_arcane_surge_mana_regeneration_rate_+%"]=167, - ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=563, + ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=568, ["support_area_concentrate_area_damage_+%_final"]=14, ["support_attack_skills_elemental_damage_+%_final"]=12, ["support_attack_totem_attack_speed_+%_final"]=149, - ["support_aura_duration_base_buff_duration"]=564, - ["support_autocast_instant_spells"]=565, - ["support_autocast_warcries"]=566, - ["support_autoexertion_base_mana_cost_override"]=567, + ["support_aura_duration_base_buff_duration"]=569, + ["support_autocast_instant_spells"]=570, + ["support_autocast_warcries"]=571, + ["support_autoexertion_base_mana_cost_override"]=572, ["support_bane_curse_effect_+%_final"]=145, - ["support_barrage_attack_time_+%_per_projectile_fired"]=568, + ["support_barrage_attack_time_+%_per_projectile_fired"]=573, ["support_barrage_damage_+%_final"]=15, - ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=569, + ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=574, ["support_base_cruelty_duration_ms"]=170, - ["support_base_lifetap_buff_duration"]=629, + ["support_base_lifetap_buff_duration"]=635, ["support_better_ailments_ailment_damage_+%_final"]=99, ["support_better_ailments_hit_damage_+%_final"]=100, ["support_blasphemy_curse_effect_+%_final"]=146, - ["support_blasphemy_enemies_gain_malignant_madness_if_in_aura_for_x_seconds"]=570, - ["support_blood_thirst_damage_+%_final"]=571, + ["support_blasphemy_enemies_gain_malignant_madness_if_in_aura_for_x_seconds"]=575, + ["support_blood_thirst_damage_+%_final"]=576, ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=152, - ["support_bloodstained_banner_apply_corrupted_blood_duration_ms"]=574, - ["support_bloodstained_banner_apply_corrupted_blood_every_x_ms"]=572, - ["support_bloodstained_banner_corrupted_blood_base_physical_damage_to_deal_per_minute_per_valour"]=573, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=575, - ["support_bonechill_cold_damage_+%_final"]=576, - ["support_brand_area_of_effect_+%_final"]=577, - ["support_brand_damage_+%_final"]=578, + ["support_bloodstained_banner_apply_corrupted_blood_duration_ms"]=579, + ["support_bloodstained_banner_apply_corrupted_blood_every_x_ms"]=577, + ["support_bloodstained_banner_corrupted_blood_base_physical_damage_to_deal_per_minute_per_valour"]=578, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=580, + ["support_bonechill_cold_damage_+%_final"]=581, + ["support_brand_area_of_effect_+%_final"]=582, + ["support_brand_damage_+%_final"]=583, ["support_brutality_physical_damage_+%_final"]=101, - ["support_burning_damage_+%_final"]=579, - ["support_call_the_pyre_chance_to_trigger_call_the_pyre_on_melee_hit_vs_ignited_enemies_%"]=580, - ["support_cast_on_crit_quality_attack_damage_+%_final"]=581, + ["support_burning_damage_+%_final"]=584, + ["support_call_the_pyre_chance_to_trigger_call_the_pyre_on_melee_hit_vs_ignited_enemies_%"]=585, + ["support_cast_on_crit_quality_attack_damage_+%_final"]=586, ["support_cast_on_crit_spell_damage_+%_final"]=22, ["support_cast_on_melee_kill_spell_damage_+%_final"]=23, ["support_cast_while_channelling_triggered_skill_damage_+%_final"]=24, - ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=582, - ["support_chain_count_+%_final"]=583, + ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=587, + ["support_chain_count_+%_final"]=588, ["support_chain_hit_damage_+%_final"]=85, - ["support_chance_to_bleed_bleeding_damage_+%_final"]=584, + ["support_chance_to_bleed_bleeding_damage_+%_final"]=589, ["support_chance_to_ignite_fire_damage_+%_final"]=102, - ["support_chaos_attacks_damage_+%_final"]=585, - ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=188, - ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=187, - ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=186, - ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=185, - ["support_clustertrap_damage_+%_final"]=586, - ["support_companionship_minion_maximum_life_+%_final_if_at_most_one_minion"]=587, + ["support_chaos_attacks_damage_+%_final"]=590, + ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=189, + ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=188, + ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=187, + ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=186, + ["support_clustertrap_damage_+%_final"]=591, + ["support_companionship_minion_damage_taken_+%_final_if_at_most_one_minion"]=592, ["support_concentrated_effect_skill_area_of_effect_+%_final"]=34, - ["support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike"]=588, - ["support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun"]=589, - ["support_conflagration_ignites_from_stunning_melee_hits_duration_+%"]=590, + ["support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike"]=593, + ["support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun"]=594, + ["support_conflagration_ignites_from_stunning_melee_hits_duration_+%"]=595, ["support_controlled_destruction_critical_strike_chance_+%_final"]=73, ["support_controlled_destruction_spell_damage_+%_final"]=94, - ["support_corrupting_cry_area_of_effect_+%_final"]=591, - ["support_corrupting_cry_corrupted_blood_base_physical_damage_to_deal_per_minute"]=592, - ["support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit"]=593, - ["support_corrupting_cry_warcry_and_first_exerted_attack_applies_corrupted_blood_for_X_ms"]=594, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"]=595, + ["support_corrupting_cry_area_of_effect_+%_final"]=596, + ["support_corrupting_cry_corrupted_blood_base_physical_damage_to_deal_per_minute"]=597, + ["support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit"]=598, + ["support_corrupting_cry_warcry_and_first_exerted_attack_applies_corrupted_blood_for_X_ms"]=599, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"]=600, ["support_cruelty_hit_damage_+%_final"]=103, + ["support_crystalfall_chance_to_trigger_crystalfall_on_hit_%"]=601, ["support_damage_while_on_full_life_+%_final"]=9, ["support_damaging_links_base_duration_is_gem"]=142, ["support_damaging_links_base_duration_ms"]=142, ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=89, ["support_debilitate_hit_damage_max_poison_stacks"]=89, ["support_debilitate_poison_damage_+%_final"]=90, - ["support_divine_cry_damage_+%_final"]=596, + ["support_divine_cry_damage_+%_final"]=602, ["support_echo_damage_+%_final"]=6, ["support_efficacy_damage_over_time_+%_final"]=97, ["support_efficacy_spell_damage_+%_final"]=95, ["support_elemental_proliferation_damage_+%_final"]=7, - ["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=597, - ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=598, - ["support_excommunicate_on_melee_attack_hit_for_X_ms"]=599, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=600, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=601, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=602, - ["support_expert_retaliation_cooldown_speed_+%_final"]=603, - ["support_faster_ailments_ailment_duration_+%_final"]=604, - ["support_fissure_trigger_fissure_on_slam_skill_impact_chance_%"]=605, - ["support_flamewood_totems_trigger_infernal_bolt_when_hit"]=606, - ["support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%"]=608, - ["support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%"]=607, - ["support_focused_ballista_totem_attack_speed_+%_final"]=609, - ["support_focused_ballista_totem_damage_+%_final"]=610, + ["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=603, + ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=604, + ["support_excommunicate_on_melee_attack_hit_for_X_ms"]=605, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=606, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=607, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=608, + ["support_expert_retaliation_cooldown_speed_+%_final"]=609, + ["support_faster_ailments_ailment_duration_+%_final"]=610, + ["support_fissure_trigger_fissure_on_slam_skill_impact_chance_%"]=611, + ["support_flamewood_totems_trigger_infernal_bolt_when_hit"]=612, + ["support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%"]=614, + ["support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%"]=613, + ["support_focused_ballista_totem_attack_speed_+%_final"]=615, + ["support_focused_ballista_totem_damage_+%_final"]=616, ["support_fork_projectile_damage_+%_final"]=88, - ["support_fortify_ailment_damage_+%_final_from_melee_hits"]=611, - ["support_fortify_melee_damage_+%_final"]=612, + ["support_fortify_ailment_damage_+%_final_from_melee_hits"]=617, + ["support_fortify_melee_damage_+%_final"]=618, ["support_gem_elemental_damage_+%_final"]=104, ["support_gem_mine_damage_+%_final"]=19, - ["support_ghost_base_duration"]=613, - ["support_gluttony_base_disgorge_buff_duration_ms"]=495, - ["support_gluttony_disgorge_buff_duration_ms"]=495, - ["support_gluttony_fire_x_additional_projectiles_in_nova_while_affected_by_disgorge"]=614, - ["support_greater_projectile_intensity_projectile_damage_+%_final"]=615, - ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=616, - ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=617, - ["support_greater_volley_projectile_damage_+%_final"]=678, - ["support_guardians_blessing_aura_only_enabled_while_support_minion_is_summoned"]=618, - ["support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute"]=619, - ["support_hallow_inflict_hallowing_flame_on_melee_hit"]=620, + ["support_ghost_base_duration"]=619, + ["support_gluttony_base_disgorge_buff_duration_ms"]=498, + ["support_gluttony_disgorge_buff_duration_ms"]=498, + ["support_gluttony_fire_x_additional_projectiles_in_nova_while_affected_by_disgorge"]=620, + ["support_greater_projectile_intensity_projectile_damage_+%_final"]=621, + ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=622, + ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=623, + ["support_greater_volley_projectile_damage_+%_final"]=684, + ["support_guardians_blessing_aura_only_enabled_while_support_minion_is_summoned"]=624, + ["support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute"]=625, + ["support_hallow_inflict_hallowing_flame_on_melee_hit"]=626, ["support_hextouch_curse_effect_+%_final"]=147, - ["support_hypothermia_cold_damage_over_time_+%_final"]=621, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=622, + ["support_hypothermia_cold_damage_over_time_+%_final"]=627, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=628, ["support_ignite_prolif_ignite_damage_+%_final"]=105, ["support_ignite_proliferation_radius"]=43, ["support_innervate_buff_base_duration_ms"]=177, - ["support_innervate_chance_to_gain_buff_on_shock_vs_unique_%"]=623, + ["support_innervate_chance_to_gain_buff_on_shock_vs_unique_%"]=629, ["support_innervate_gain_buff_on_killing_shocked_enemy"]=175, ["support_innervate_maximum_added_lightning_damage"]=176, ["support_innervate_minimum_added_lightning_damage"]=176, ["support_inspiration_mana_cost_+%_final"]=29, - ["support_invention_trap_and_mine_damage_+%_final_per_second_placed_up_to_100"]=624, - ["support_kinetic_instability_chance_to_create_instability_on_critical_strike_%"]=625, - ["support_kinetic_instability_chance_to_create_instability_on_kill_%"]=626, + ["support_invention_trap_and_mine_damage_+%_final_per_second_placed_up_to_100"]=630, + ["support_kinetic_instability_chance_to_create_instability_on_critical_strike_%"]=631, + ["support_kinetic_instability_chance_to_create_instability_on_kill_%"]=632, ["support_lesser_multiple_projectile_damage_+%_final"]=18, ["support_lethal_dose_poison_damage_+%_final"]=106, - ["support_lifetap_damage_+%_final_while_buffed"]=628, - ["support_lifetap_spent_life_threshold"]=627, - ["support_locus_mine_base_mine_duration"]=630, - ["support_locus_mine_cannot_detonate_mines_within_X_units"]=631, - ["support_locus_mine_damage_+%_final"]=632, - ["support_locus_mine_mines_always_target_your_location"]=633, - ["support_locus_mine_throw_mines_in_an_arc"]=634, + ["support_lifetap_damage_+%_final_while_buffed"]=634, + ["support_lifetap_spent_life_threshold"]=633, + ["support_locus_mine_base_mine_duration"]=636, + ["support_locus_mine_cannot_detonate_mines_within_X_units"]=637, + ["support_locus_mine_damage_+%_final"]=638, + ["support_locus_mine_mines_always_target_your_location"]=639, + ["support_locus_mine_throw_mines_in_an_arc"]=640, ["support_maim_chance_physical_damage_+%_final"]=107, - ["support_maimed_enemies_physical_damage_taken_+%"]=635, - ["support_manaforged_arrows_damage_+%_final"]=636, - ["support_manaforged_arrows_damage_+%_final_per_mana_spent"]=637, - ["support_manaforged_arrows_mana_cost_%_threshold"]=764, + ["support_maimed_enemies_physical_damage_taken_+%"]=641, + ["support_manaforged_arrows_damage_+%_final"]=642, + ["support_manaforged_arrows_damage_+%_final_per_mana_spent"]=643, + ["support_manaforged_arrows_mana_cost_%_threshold"]=770, ["support_melee_physical_damage_+%_final"]=2, - ["support_melee_physical_damage_attack_speed_+%_final"]=638, + ["support_melee_physical_damage_attack_speed_+%_final"]=644, ["support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"]=3, ["support_melee_splash_damage_+%_final"]=112, ["support_melee_splash_damage_+%_final_for_splash"]=114, - ["support_minefield_mine_damage_+%_final"]=639, - ["support_minefield_mine_throwing_speed_+%_final"]=640, - ["support_minion_damage_+%_final"]=642, - ["support_minion_damage_minion_life_+%_final"]=643, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=644, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=645, - ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=646, - ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=647, - ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=648, - ["support_minion_instability_minion_base_fire_area_damage_per_minute"]=195, - ["support_minion_maximum_life_+%_final"]=649, - ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=650, - ["support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage"]=651, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=652, - ["support_minion_use_focussed_target"]=653, - ["support_mirage_archer_attack_speed_+%_final"]=654, - ["support_mirage_archer_base_duration"]=655, - ["support_mirage_archer_damage_+%_final"]=656, - ["support_momentum_attack_speed_+%_per_stack"]=658, - ["support_momentum_base_buff_duration_ms"]=659, - ["support_momentum_buff_duration_ms"]=659, - ["support_momentum_max_stacks"]=659, - ["support_momentum_movement_speed_+%_per_stack_removed"]=660, - ["support_momentum_stack_while_channelling_base_ms"]=657, - ["support_momentum_stack_while_channelling_ms"]=657, + ["support_minefield_mine_damage_+%_final"]=645, + ["support_minefield_mine_throwing_speed_+%_final"]=646, + ["support_minion_damage_+%_final"]=648, + ["support_minion_damage_minion_life_+%_final"]=649, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=650, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=651, + ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=652, + ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=653, + ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=654, + ["support_minion_instability_minion_base_fire_area_damage_per_minute"]=196, + ["support_minion_maximum_life_+%_final"]=655, + ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=656, + ["support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage"]=657, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=658, + ["support_minion_use_focussed_target"]=659, + ["support_mirage_archer_attack_speed_+%_final"]=660, + ["support_mirage_archer_base_duration"]=661, + ["support_mirage_archer_damage_+%_final"]=662, + ["support_momentum_attack_speed_+%_per_stack"]=664, + ["support_momentum_base_buff_duration_ms"]=665, + ["support_momentum_buff_duration_ms"]=665, + ["support_momentum_max_stacks"]=665, + ["support_momentum_movement_speed_+%_per_stack_removed"]=666, + ["support_momentum_stack_while_channelling_base_ms"]=663, + ["support_momentum_stack_while_channelling_ms"]=663, ["support_more_duration_skill_effect_duration_+%_final"]=155, ["support_multicast_cast_speed_+%_final"]=117, ["support_multiple_attack_damage_+%_final"]=119, @@ -21792,164 +21943,164 @@ return { ["support_multithrow_damage_+%_final"]=121, ["support_overexertion_damage_+%_final_if_exerted"]=11, ["support_overexertion_damage_+%_final_per_warcry_exerting_action"]=10, - ["support_overheat_ailment_damage_+%_final_per_3_fortification_consumed"]=661, - ["support_overpowered_base_duration_ms"]=662, - ["support_parallel_projectile_number_of_points_per_side"]=663, - ["support_parallel_projectiles_damage_+%_final"]=664, - ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=665, - ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=666, - ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=667, - ["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=668, - ["support_pierce_projectile_damage_+%_final"]=669, + ["support_overheat_ailment_damage_+%_final_per_3_fortification_consumed"]=667, + ["support_overpowered_base_duration_ms"]=668, + ["support_parallel_projectile_number_of_points_per_side"]=669, + ["support_parallel_projectiles_damage_+%_final"]=670, + ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=671, + ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=672, + ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=673, + ["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=674, + ["support_pierce_projectile_damage_+%_final"]=675, ["support_poison_poison_damage_+%_final"]=91, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=670, - ["support_projectile_attack_physical_damage_+%_final"]=671, - ["support_projectile_attack_speed_+%_final"]=672, - ["support_pulverise_area_of_effect_+%_final"]=673, - ["support_pulverise_attack_speed_+%_final"]=674, - ["support_pulverise_melee_area_damage_+%_final"]=675, - ["support_pure_shock_damage_+%_final"]=676, - ["support_pure_shock_shock_as_though_damage_+%_final"]=677, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=679, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=676, + ["support_projectile_attack_physical_damage_+%_final"]=677, + ["support_projectile_attack_speed_+%_final"]=678, + ["support_pulverise_area_of_effect_+%_final"]=679, + ["support_pulverise_attack_speed_+%_final"]=680, + ["support_pulverise_melee_area_damage_+%_final"]=681, + ["support_pure_shock_damage_+%_final"]=682, + ["support_pure_shock_shock_as_though_damage_+%_final"]=683, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=685, ["support_rain_projectile_damage_+%_final"]=17, - ["support_rapid_activation_brand_activation_rate_+%_final"]=680, + ["support_rapid_activation_brand_activation_rate_+%_final"]=686, ["support_rapid_activation_brand_skill_only_primary_duration_+%_final"]=157, ["support_rapid_activation_brand_skill_only_secondary_duration_+%_final"]=158, ["support_rapid_decay_damage_over_time_+%_final"]=96, - ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=682, - ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=682, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=681, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=681, - ["support_recent_minions_additional_critical_strike_chance_from_wakened_fury"]=684, - ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"]=684, - ["support_recent_minions_effect_duration_is_%_summon_duration"]=684, - ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"]=683, - ["support_recent_minions_max_effect_duration_ms"]=684, - ["support_recent_minions_virtual_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=684, - ["support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=684, - ["support_reduce_enemy_block_and_spell_block_%"]=685, + ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=688, + ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=688, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=687, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=687, + ["support_recent_minions_additional_critical_strike_chance_from_wakened_fury"]=690, + ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"]=690, + ["support_recent_minions_effect_duration_is_%_summon_duration"]=690, + ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"]=689, + ["support_recent_minions_max_effect_duration_ms"]=690, + ["support_recent_minions_virtual_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=690, + ["support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=690, + ["support_reduce_enemy_block_and_spell_block_%"]=691, ["support_reduced_duration_damage_+%_final"]=154, ["support_reduced_duration_skill_effect_duration_+%_final"]=156, - ["support_remote_mine_2_base_mine_detonation_time_ms"]=689, + ["support_remote_mine_2_base_mine_detonation_time_ms"]=695, ["support_remote_mine_2_base_mine_duration"]=62, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=780, - ["support_remote_mine_2_damage_+%_final"]=690, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=691, - ["support_remote_mine_hit_damage_+%_final"]=692, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=786, + ["support_remote_mine_2_damage_+%_final"]=696, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=697, + ["support_remote_mine_hit_damage_+%_final"]=698, ["support_return_returning_projectiles_damage_+%_final"]=92, - ["support_rupture_bleeding_damage_taken_+%_final"]=694, - ["support_rupture_bleeding_time_passed_+%_final"]=695, + ["support_rupture_bleeding_damage_taken_+%_final"]=700, + ["support_rupture_bleeding_time_passed_+%_final"]=701, ["support_ruthless_big_hit_damage_+%_final"]=179, ["support_ruthless_big_hit_max_count"]=178, ["support_ruthless_big_hit_stun_base_duration_override_ms"]=181, ["support_ruthless_blow_ailment_damage_from_melee_hits_+%_final"]=180, - ["support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage"]=696, - ["support_sacrifice_sacrifice_%_of_current_life"]=696, - ["support_scion_onslaught_duration_+%"]=697, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=698, - ["support_scion_onslaught_on_killing_blow_%_chance"]=699, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=699, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=698, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=701, - ["support_slashing_buff_base_duration_ms"]=700, + ["support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage"]=702, + ["support_sacrifice_sacrifice_%_of_current_life"]=702, + ["support_scion_onslaught_duration_+%"]=703, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=704, + ["support_scion_onslaught_on_killing_blow_%_chance"]=705, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=705, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=704, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=707, + ["support_slashing_buff_base_duration_ms"]=706, ["support_slashing_damage_+%_final_from_distance"]=108, - ["support_slower_projectiles_damage_+%_final"]=702, + ["support_slower_projectiles_damage_+%_final"]=708, ["support_slower_projectiles_projectile_speed_+%_final"]=153, - ["support_spell_boost_area_damage_+%_final_per_charge"]=703, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=703, - ["support_spell_cascade_area_delay_+%"]=704, - ["support_spell_cascade_area_of_effect_+%_final"]=705, - ["support_spell_cascade_damage_+%_final"]=706, - ["support_spell_cascade_number_of_cascades_per_side"]=707, - ["support_spell_cascade_sideways"]=707, - ["support_spell_echo_final_repeat_damage_+%_final"]=708, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=778, + ["support_spell_boost_area_damage_+%_final_per_charge"]=709, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=709, + ["support_spell_cascade_area_delay_+%"]=710, + ["support_spell_cascade_area_of_effect_+%_final"]=711, + ["support_spell_cascade_damage_+%_final"]=712, + ["support_spell_cascade_number_of_cascades_per_side"]=713, + ["support_spell_cascade_sideways"]=713, + ["support_spell_echo_final_repeat_damage_+%_final"]=714, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=784, ["support_spell_totem_cast_speed_+%_final"]=148, - ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage"]=709, - ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types"]=710, - ["support_spellslinger_damage_+%_final"]=711, + ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage"]=715, + ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types"]=716, + ["support_spellslinger_damage_+%_final"]=717, ["support_spirit_strike_damage_+%_final"]=86, - ["support_spiritual_cry_damage_+%_final"]=712, + ["support_spiritual_cry_damage_+%_final"]=718, ["support_split_projectile_damage_+%_final"]=87, - ["support_storm_barrier_damage_+%_final"]=713, - ["support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling"]=714, - ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=715, + ["support_storm_barrier_damage_+%_final"]=719, + ["support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling"]=720, + ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=721, ["support_totem_damage_+%_final"]=20, ["support_trap_and_mine_damage_+%_final"]=109, - ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=716, - ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=717, + ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=722, + ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=723, ["support_trap_damage_+%_final"]=120, - ["support_trap_hit_damage_+%_final"]=718, - ["support_trauma_base_duration_ms"]=754, - ["support_trauma_melee_damage_+%_final_per_trauma"]=719, - ["support_trauma_stun_duration_+%_per_trauma"]=720, - ["support_trigger_enervating_grasp_on_supported_brand_recall_chance_%"]=721, - ["support_trigger_great_avalanche_on_offering_chance_%"]=722, + ["support_trap_hit_damage_+%_final"]=724, + ["support_trauma_base_duration_ms"]=760, + ["support_trauma_melee_damage_+%_final_per_trauma"]=725, + ["support_trauma_stun_duration_+%_per_trauma"]=726, + ["support_trigger_enervating_grasp_on_supported_brand_recall_chance_%"]=727, + ["support_trigger_great_avalanche_on_offering_chance_%"]=728, ["support_trigger_link_damage_+%_final"]=25, - ["support_trigger_seize_the_flesh_on_warcry_chance_%"]=723, - ["support_trigger_tornados_on_attack_hit_after_moving_X_metres"]=724, - ["support_unbound_ailments_ailment_damage_+%_final"]=725, - ["support_undead_army_minion_maximum_count_+%_final"]=726, - ["support_vaal_temptation_physical_damage_taken_per_minute_instead_of_soul_gain_prevention"]=727, - ["support_vicious_projectiles_chaos_damage_+%_final"]=729, - ["support_vicious_projectiles_physical_damage_+%_final"]=728, + ["support_trigger_seize_the_flesh_on_warcry_chance_%"]=729, + ["support_trigger_tornados_on_attack_hit_after_moving_X_metres"]=730, + ["support_unbound_ailments_ailment_damage_+%_final"]=731, + ["support_undead_army_minion_maximum_count_+%_final"]=732, + ["support_vaal_temptation_physical_damage_taken_per_minute_instead_of_soul_gain_prevention"]=733, + ["support_vicious_projectiles_chaos_damage_+%_final"]=735, + ["support_vicious_projectiles_physical_damage_+%_final"]=734, ["support_void_manipulation_chaos_damage_+%_final"]=93, - ["support_voidstorm_trigger_voidstorm_on_rain_skill_impact"]=730, + ["support_voidstorm_trigger_voidstorm_on_rain_skill_impact"]=736, ["support_weapon_elemental_damage_+%_final"]=13, ["support_withered_base_duration_ms"]=174, - ["supported_chaos_skill_gem_level_+"]=731, - ["supported_curse_skill_gem_level_+"]=732, - ["supported_elemental_skill_gem_level_+"]=733, - ["supported_minion_skill_gem_level_+"]=734, - ["supported_physical_skill_gem_level_+"]=735, - ["supported_skill_can_only_use_axe_and_sword"]=736, - ["supported_skill_can_only_use_axe_mace_and_staff"]=779, - ["supported_skill_can_only_use_dagger_and_claw"]=738, - ["supported_skill_can_only_use_mace_and_staff"]=739, - ["supported_skill_can_only_use_wand"]=741, - ["supported_strike_skill_gem_level_+"]=742, + ["supported_chaos_skill_gem_level_+"]=737, + ["supported_curse_skill_gem_level_+"]=738, + ["supported_elemental_skill_gem_level_+"]=739, + ["supported_minion_skill_gem_level_+"]=740, + ["supported_physical_skill_gem_level_+"]=741, + ["supported_skill_can_only_use_axe_and_sword"]=742, + ["supported_skill_can_only_use_axe_mace_and_staff"]=785, + ["supported_skill_can_only_use_dagger_and_claw"]=744, + ["supported_skill_can_only_use_mace_and_staff"]=745, + ["supported_skill_can_only_use_wand"]=747, + ["supported_strike_skill_gem_level_+"]=748, ["throw_traps_in_circle_radius"]=56, - ["tornado_base_damage_interval_ms"]=743, + ["tornado_base_damage_interval_ms"]=749, ["total_number_of_arrows_to_fire"]=44, ["total_number_of_projectiles_to_fire"]=44, - ["totem_life_+%"]=209, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=744, - ["trap_and_mine_area_of_effect_+%_per_second_placed_up_to_100"]=745, - ["trap_critical_strike_multiplier_+_per_power_charge"]=746, - ["trap_damage_+%"]=747, + ["totem_life_+%"]=210, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=750, + ["trap_and_mine_area_of_effect_+%_per_second_placed_up_to_100"]=751, + ["trap_critical_strike_multiplier_+_per_power_charge"]=752, + ["trap_damage_+%"]=753, ["trap_duration_+%"]=68, - ["trap_spread_+%"]=748, - ["trap_throwing_speed_+%"]=749, - ["trap_throwing_speed_+%_per_frenzy_charge"]=750, - ["trap_trigger_radius_+%"]=751, - ["trap_trigger_radius_+%_per_power_charge"]=752, - ["trauma_duration_ms"]=754, - ["trauma_strike_self_damage_per_trauma"]=754, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=755, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=756, - ["trigger_on_attack_hit_against_rare_or_unique"]=757, - ["trigger_on_trigger_link_target_hit"]=758, - ["trigger_on_ward_break_%_chance"]=759, - ["trigger_prismatic_burst_on_hit_%_chance"]=760, - ["trigger_rings_of_light_on_melee_hit"]=761, + ["trap_spread_+%"]=754, + ["trap_throwing_speed_+%"]=755, + ["trap_throwing_speed_+%_per_frenzy_charge"]=756, + ["trap_trigger_radius_+%"]=757, + ["trap_trigger_radius_+%_per_power_charge"]=758, + ["trauma_duration_ms"]=760, + ["trauma_strike_self_damage_per_trauma"]=760, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=761, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=762, + ["trigger_on_attack_hit_against_rare_or_unique"]=763, + ["trigger_on_trigger_link_target_hit"]=764, + ["trigger_on_ward_break_%_chance"]=765, + ["trigger_prismatic_burst_on_hit_%_chance"]=766, + ["trigger_rings_of_light_on_melee_hit"]=767, ["trigger_vicious_hex_explosion_when_curse_ends"]=131, - ["triggered_by_brand_support"]=762, - ["triggered_by_divine_cry"]=763, - ["triggered_by_manaforged_arrows_support_%_chance"]=764, - ["triggered_by_spiritual_cry"]=765, - ["triggered_skill_damage_+%"]=766, + ["triggered_by_brand_support"]=768, + ["triggered_by_divine_cry"]=769, + ["triggered_by_manaforged_arrows_support_%_chance"]=770, + ["triggered_by_spiritual_cry"]=771, + ["triggered_skill_damage_+%"]=772, ["triggered_spell_spell_damage_+%"]=21, - ["unleash_support_seal_gain_frequency_+%_while_channelling"]=767, - ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=768, + ["unleash_support_seal_gain_frequency_+%_while_channelling"]=773, + ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=774, ["virtual_cast_when_damage_taken_threshold"]=135, - ["virtual_support_anticipation_charge_gain_interval_ms"]=777, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=699, - ["warcries_do_not_apply_buffs_to_self_or_allies"]=769, - ["warcry_cooldown_speed_+%"]=770, - ["warcry_grant_damage_+%_to_exerted_attacks"]=771, - ["warcry_speed_+%"]=772, - ["weapon_elemental_damage_+%"]=773, - ["wither_applies_additional_wither_%"]=774, + ["virtual_support_anticipation_charge_gain_interval_ms"]=783, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=705, + ["warcries_do_not_apply_buffs_to_self_or_allies"]=775, + ["warcry_cooldown_speed_+%"]=776, + ["warcry_grant_damage_+%_to_exerted_attacks"]=777, + ["warcry_speed_+%"]=778, + ["weapon_elemental_damage_+%"]=779, + ["wither_applies_additional_wither_%"]=780, ["withered_on_hit_chance_%"]=162, - ["you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted"]=775 + ["you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted"]=781 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/skill_stat_descriptions.lua b/src/Data/StatDescriptions/skill_stat_descriptions.lua index 3fe2f1592d..32a0399937 100644 --- a/src/Data/StatDescriptions/skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/skill_stat_descriptions.lua @@ -411,6 +411,28 @@ return { } }, [8]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{0} to {1} Added Physical Damage per 15 Armour or Evasion Rating on Shield" + } + }, + name="granted_skill_off_hand_shield_physical_damage", + stats={ + [1]="off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating", + [2]="off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating" + } + }, + [9]={ [1]={ [1]={ limit={ @@ -432,7 +454,7 @@ return { [2]="0" } }, - [9]={ + [10]={ [1]={ [1]={ limit={ @@ -462,7 +484,7 @@ return { [1]="cast_speed_+%_granted_from_skill" } }, - [10]={ + [11]={ [1]={ [1]={ limit={ @@ -484,7 +506,7 @@ return { [2]="0" } }, - [11]={ + [12]={ [1]={ [1]={ limit={ @@ -506,7 +528,7 @@ return { [2]="0" } }, - [12]={ + [13]={ [1]={ [1]={ limit={ @@ -528,7 +550,7 @@ return { [2]="0" } }, - [13]={ + [14]={ [1]={ [1]={ limit={ @@ -558,7 +580,7 @@ return { [1]="support_overexertion_damage_+%_final_per_warcry_exerting_action" } }, - [14]={ + [15]={ [1]={ [1]={ limit={ @@ -588,7 +610,7 @@ return { [1]="support_overexertion_damage_+%_final_if_exerted" } }, - [15]={ + [16]={ [1]={ [1]={ limit={ @@ -610,7 +632,7 @@ return { [2]="0" } }, - [16]={ + [17]={ [1]={ [1]={ limit={ @@ -632,7 +654,7 @@ return { [2]="spell_maximum_physical_damage" } }, - [17]={ + [18]={ [1]={ [1]={ limit={ @@ -697,7 +719,7 @@ return { [3]="local_display_prismatic_burst_fire_permyriad_chance" } }, - [18]={ + [19]={ [1]={ [1]={ limit={ @@ -762,7 +784,7 @@ return { [3]="local_display_prismatic_burst_cold_permyriad_chance" } }, - [19]={ + [20]={ [1]={ [1]={ limit={ @@ -827,7 +849,7 @@ return { [3]="local_display_prismatic_burst_lightning_permyriad_chance" } }, - [20]={ + [21]={ [1]={ [1]={ limit={ @@ -849,7 +871,7 @@ return { [2]="spell_maximum_chaos_damage" } }, - [21]={ + [22]={ [1]={ [1]={ limit={ @@ -871,7 +893,7 @@ return { [2]="secondary_maximum_physical_damage" } }, - [22]={ + [23]={ [1]={ [1]={ limit={ @@ -893,7 +915,7 @@ return { [2]="secondary_maximum_fire_damage" } }, - [23]={ + [24]={ [1]={ [1]={ limit={ @@ -915,7 +937,7 @@ return { [2]="secondary_maximum_cold_damage" } }, - [24]={ + [25]={ [1]={ [1]={ limit={ @@ -941,7 +963,7 @@ return { [1]="maximum_number_of_blink_mirror_arrow_elemental_hit_clones" } }, - [25]={ + [26]={ [1]={ [1]={ limit={ @@ -967,7 +989,7 @@ return { [1]="maximum_number_of_blink_mirror_arrow_rain_of_arrows_clones" } }, - [26]={ + [27]={ [1]={ [1]={ limit={ @@ -989,7 +1011,7 @@ return { [2]="secondary_maximum_lightning_damage" } }, - [27]={ + [28]={ [1]={ [1]={ limit={ @@ -1011,7 +1033,7 @@ return { [2]="secondary_maximum_chaos_damage" } }, - [28]={ + [29]={ [1]={ [1]={ limit={ @@ -1033,7 +1055,7 @@ return { [2]="spell_maximum_base_lightning_damage_per_removable_power_charge" } }, - [29]={ + [30]={ [1]={ [1]={ limit={ @@ -1055,7 +1077,7 @@ return { [2]="spell_maximum_base_fire_damage_per_removable_endurance_charge" } }, - [30]={ + [31]={ [1]={ [1]={ limit={ @@ -1072,7 +1094,7 @@ return { [1]="damage_cannot_break_kinetic_shells" } }, - [31]={ + [32]={ [1]={ [1]={ [1]={ @@ -1093,7 +1115,7 @@ return { [1]="offering_skill_effect_duration_per_corpse" } }, - [32]={ + [33]={ [1]={ [1]={ limit={ @@ -1115,7 +1137,7 @@ return { [2]="spell_maximum_base_cold_damage_per_removable_frenzy_charge" } }, - [33]={ + [34]={ [1]={ [1]={ limit={ @@ -1137,7 +1159,7 @@ return { [2]="spell_maximum_base_cold_damage_+_per_10_intelligence" } }, - [34]={ + [35]={ [1]={ [1]={ limit={ @@ -1154,7 +1176,7 @@ return { [1]="corpse_explosion_monster_life_%" } }, - [35]={ + [36]={ [1]={ [1]={ limit={ @@ -1171,7 +1193,7 @@ return { [1]="corpse_explosion_monster_life_%_chaos" } }, - [36]={ + [37]={ [1]={ [1]={ limit={ @@ -1188,7 +1210,7 @@ return { [1]="corpse_explosion_monster_life_%_lightning" } }, - [37]={ + [38]={ [1]={ [1]={ [1]={ @@ -1209,7 +1231,7 @@ return { [1]="corpse_explosion_monster_life_permillage_fire" } }, - [38]={ + [39]={ [1]={ [1]={ limit={ @@ -1226,7 +1248,7 @@ return { [1]="skill_minion_explosion_life_%" } }, - [39]={ + [40]={ [1]={ [1]={ limit={ @@ -1243,7 +1265,7 @@ return { [1]="spell_damage_modifiers_apply_to_skill_dot" } }, - [40]={ + [41]={ [1]={ [1]={ limit={ @@ -1260,7 +1282,7 @@ return { [1]="projectile_damage_modifiers_apply_to_skill_dot" } }, - [41]={ + [42]={ [1]={ [1]={ limit={ @@ -1277,7 +1299,7 @@ return { [1]="light_radius_increases_apply_to_area_of_effect" } }, - [42]={ + [43]={ [1]={ [1]={ limit={ @@ -1294,7 +1316,7 @@ return { [1]="modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration" } }, - [43]={ + [44]={ [1]={ [1]={ limit={ @@ -1311,7 +1333,7 @@ return { [1]="modifiers_to_totem_duration_also_affect_soul_prevention_duration" } }, - [44]={ + [45]={ [1]={ [1]={ limit={ @@ -1328,7 +1350,7 @@ return { [1]="modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration" } }, - [45]={ + [46]={ [1]={ [1]={ limit={ @@ -1363,7 +1385,7 @@ return { [2]="number_of_mines_to_place" } }, - [46]={ + [47]={ [1]={ [1]={ limit={ @@ -1398,7 +1420,7 @@ return { [2]="number_of_traps_to_throw" } }, - [47]={ + [48]={ [1]={ [1]={ limit={ @@ -1415,7 +1437,7 @@ return { [1]="throw_traps_in_circle_radius" } }, - [48]={ + [49]={ [1]={ [1]={ limit={ @@ -1594,7 +1616,7 @@ return { [4]="number_of_totems_to_summon" } }, - [49]={ + [50]={ [1]={ [1]={ limit={ @@ -1624,7 +1646,7 @@ return { [1]="earthquake_aftershock_hit_damage_+%_final_from_skill_effect_duration" } }, - [50]={ + [51]={ [1]={ [1]={ limit={ @@ -1654,7 +1676,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [51]={ + [52]={ [1]={ [1]={ limit={ @@ -1684,7 +1706,7 @@ return { [1]="active_skill_ailment_damage_+%_final_from_skill_effect_duration" } }, - [52]={ + [53]={ [1]={ [1]={ limit={ @@ -1714,7 +1736,7 @@ return { [1]="earthquake_aftershock_ailment_damage_+%_final_from_skill_effect_duration" } }, - [53]={ + [54]={ [1]={ [1]={ limit={ @@ -1744,7 +1766,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [54]={ + [55]={ [1]={ [1]={ limit={ @@ -1761,7 +1783,7 @@ return { [1]="display_disable_melee_weapons" } }, - [55]={ + [56]={ [1]={ [1]={ limit={ @@ -1791,7 +1813,7 @@ return { [1]="earthquake_aftershock_area_of_effect_+%_final_from_skill_effect_duration" } }, - [56]={ + [57]={ [1]={ [1]={ limit={ @@ -1817,7 +1839,7 @@ return { [1]="spell_repeat_count" } }, - [57]={ + [58]={ [1]={ [1]={ limit={ @@ -1834,7 +1856,7 @@ return { [1]="damage_infusion_%" } }, - [58]={ + [59]={ [1]={ [1]={ limit={ @@ -1860,7 +1882,7 @@ return { [1]="display_fires_x_times" } }, - [59]={ + [60]={ [1]={ [1]={ limit={ @@ -3137,7 +3159,7 @@ return { [10]="skill_display_single_base_projectile" } }, - [60]={ + [61]={ [1]={ [1]={ limit={ @@ -3358,7 +3380,7 @@ return { [4]="quality_display_eye_of_winter_is_gem" } }, - [61]={ + [62]={ [1]={ [1]={ limit={ @@ -3388,7 +3410,7 @@ return { [1]="attack_speed_+%" } }, - [62]={ + [63]={ [1]={ [1]={ limit={ @@ -3418,7 +3440,7 @@ return { [1]="attack_speed_+%_granted_from_skill" } }, - [63]={ + [64]={ [1]={ [1]={ [1]={ @@ -3456,7 +3478,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [64]={ + [65]={ [1]={ [1]={ limit={ @@ -3486,7 +3508,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%_final" } }, - [65]={ + [66]={ [1]={ [1]={ limit={ @@ -3516,7 +3538,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%_final" } }, - [66]={ + [67]={ [1]={ [1]={ limit={ @@ -3546,7 +3568,7 @@ return { [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" } }, - [67]={ + [68]={ [1]={ [1]={ limit={ @@ -3563,7 +3585,7 @@ return { [1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%" } }, - [68]={ + [69]={ [1]={ [1]={ limit={ @@ -3593,7 +3615,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%" } }, - [69]={ + [70]={ [1]={ [1]={ limit={ @@ -3623,7 +3645,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%" } }, - [70]={ + [71]={ [1]={ [1]={ [1]={ @@ -3661,7 +3683,7 @@ return { [1]="cast_speed_+%_when_on_low_life" } }, - [71]={ + [72]={ [1]={ [1]={ limit={ @@ -3691,7 +3713,7 @@ return { [1]="base_cast_speed_+%" } }, - [72]={ + [73]={ [1]={ [1]={ limit={ @@ -3721,7 +3743,7 @@ return { [1]="support_multicast_cast_speed_+%_final" } }, - [73]={ + [74]={ [1]={ [1]={ [1]={ @@ -3746,7 +3768,7 @@ return { [1]="life_leech_from_any_damage_permyriad" } }, - [74]={ + [75]={ [1]={ [1]={ [1]={ @@ -3780,7 +3802,7 @@ return { [1]="additional_poisons_+_to_apply_vs_non_poisoned_enemies" } }, - [75]={ + [76]={ [1]={ [1]={ [1]={ @@ -3805,7 +3827,7 @@ return { [1]="life_leech_from_physical_attack_damage_permyriad" } }, - [76]={ + [77]={ [1]={ [1]={ [1]={ @@ -3830,7 +3852,7 @@ return { [1]="energy_shield_leech_from_any_damage_permyriad" } }, - [77]={ + [78]={ [1]={ [1]={ [1]={ @@ -3864,7 +3886,7 @@ return { [1]="global_chance_to_knockback_%" } }, - [78]={ + [79]={ [1]={ [1]={ limit={ @@ -3894,7 +3916,7 @@ return { [1]="knockback_distance_+%" } }, - [79]={ + [80]={ [1]={ [1]={ [1]={ @@ -3932,7 +3954,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [80]={ + [81]={ [1]={ [1]={ [1]={ @@ -3966,7 +3988,7 @@ return { [1]="active_skill_base_radius_+" } }, - [81]={ + [82]={ [1]={ [1]={ [1]={ @@ -4000,7 +4022,7 @@ return { [1]="active_skill_ground_consecration_radius_+" } }, - [82]={ + [83]={ [1]={ [1]={ limit={ @@ -4030,7 +4052,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [83]={ + [84]={ [1]={ [1]={ limit={ @@ -4060,7 +4082,7 @@ return { [1]="cyclone_area_of_effect_+%_per_additional_melee_range" } }, - [84]={ + [85]={ [1]={ [1]={ limit={ @@ -4090,7 +4112,7 @@ return { [1]="virtual_cyclone_skill_area_of_effect_+%_from_melee_range" } }, - [85]={ + [86]={ [1]={ [1]={ limit={ @@ -4120,7 +4142,7 @@ return { [1]="area_of_effect_+%_while_dead" } }, - [86]={ + [87]={ [1]={ [1]={ [1]={ @@ -4158,7 +4180,7 @@ return { [1]="support_lethal_dose_poison_damage_+%_final" } }, - [87]={ + [88]={ [1]={ [1]={ limit={ @@ -4188,7 +4210,7 @@ return { [1]="active_skill_area_of_effect_+%_final" } }, - [88]={ + [89]={ [1]={ [1]={ limit={ @@ -4218,7 +4240,7 @@ return { [1]="support_concentrated_effect_skill_area_of_effect_+%_final" } }, - [89]={ + [90]={ [1]={ [1]={ limit={ @@ -4248,7 +4270,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [90]={ + [91]={ [1]={ [1]={ limit={ @@ -4278,7 +4300,7 @@ return { [1]="aura_effect_+%" } }, - [91]={ + [92]={ [1]={ [1]={ limit={ @@ -4308,7 +4330,7 @@ return { [1]="base_attack_speed_+%_per_frenzy_charge" } }, - [92]={ + [93]={ [1]={ [1]={ limit={ @@ -4338,7 +4360,7 @@ return { [1]="curse_effect_duration" } }, - [93]={ + [94]={ [1]={ [1]={ [1]={ @@ -4359,7 +4381,7 @@ return { [1]="buff_effect_duration" } }, - [94]={ + [95]={ [1]={ [1]={ limit={ @@ -4389,7 +4411,7 @@ return { [1]="secondary_buff_effect_duration" } }, - [95]={ + [96]={ [1]={ [1]={ [1]={ @@ -4410,7 +4432,7 @@ return { [1]="skill_effect_duration" } }, - [96]={ + [97]={ [1]={ [1]={ limit={ @@ -4427,7 +4449,7 @@ return { [1]="tornado_maximum_number_of_hits" } }, - [97]={ + [98]={ [1]={ [1]={ [1]={ @@ -4448,7 +4470,7 @@ return { [1]="secondary_skill_effect_duration" } }, - [98]={ + [99]={ [1]={ [1]={ [1]={ @@ -4469,7 +4491,7 @@ return { [1]="projectile_ground_effect_duration" } }, - [99]={ + [100]={ [1]={ [1]={ [1]={ @@ -4494,7 +4516,7 @@ return { [1]="bleeding_skill_effect_duration" } }, - [100]={ + [101]={ [1]={ [1]={ [1]={ @@ -4519,7 +4541,7 @@ return { [1]="poison_skill_effect_duration" } }, - [101]={ + [102]={ [1]={ [1]={ [1]={ @@ -4540,7 +4562,7 @@ return { [1]="minion_duration" } }, - [102]={ + [103]={ [1]={ [1]={ [1]={ @@ -4561,7 +4583,7 @@ return { [1]="secondary_minion_duration" } }, - [103]={ + [104]={ [1]={ [1]={ [1]={ @@ -4582,7 +4604,7 @@ return { [1]="spectre_duration" } }, - [104]={ + [105]={ [1]={ [1]={ [1]={ @@ -4620,7 +4642,7 @@ return { [1]="shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range" } }, - [105]={ + [106]={ [1]={ [1]={ limit={ @@ -4650,7 +4672,7 @@ return { [1]="shield_charge_stun_duration_+%_maximum" } }, - [106]={ + [107]={ [1]={ [1]={ limit={ @@ -4680,7 +4702,7 @@ return { [1]="shield_charge_damage_+%_maximum" } }, - [107]={ + [108]={ [1]={ [1]={ limit={ @@ -4867,7 +4889,7 @@ return { [5]="arrows_always_pierce" } }, - [108]={ + [109]={ [1]={ [1]={ limit={ @@ -4893,7 +4915,7 @@ return { [1]="primary_projectile_display_targets_to_pierce" } }, - [109]={ + [110]={ [1]={ [1]={ limit={ @@ -4923,7 +4945,7 @@ return { [1]="base_projectile_speed_+%" } }, - [110]={ + [111]={ [1]={ [1]={ [1]={ @@ -4983,7 +5005,7 @@ return { [2]="always_freeze" } }, - [111]={ + [112]={ [1]={ [1]={ limit={ @@ -5000,7 +5022,7 @@ return { [1]="predict_totem_maximum_life" } }, - [112]={ + [113]={ [1]={ [1]={ [1]={ @@ -5021,7 +5043,7 @@ return { [1]="base_chance_to_shock_%" } }, - [113]={ + [114]={ [1]={ [1]={ [1]={ @@ -5042,7 +5064,7 @@ return { [1]="base_chance_to_ignite_%" } }, - [114]={ + [115]={ [1]={ [1]={ limit={ @@ -5072,7 +5094,7 @@ return { [1]="freeze_duration_+%" } }, - [115]={ + [116]={ [1]={ [1]={ limit={ @@ -5102,7 +5124,7 @@ return { [1]="chill_duration_+%" } }, - [116]={ + [117]={ [1]={ [1]={ limit={ @@ -5132,7 +5154,7 @@ return { [1]="active_skill_chill_effect_+%_final" } }, - [117]={ + [118]={ [1]={ [1]={ limit={ @@ -5162,7 +5184,7 @@ return { [1]="chill_effect_+%" } }, - [118]={ + [119]={ [1]={ [1]={ limit={ @@ -5192,7 +5214,7 @@ return { [1]="shock_duration_+%" } }, - [119]={ + [120]={ [1]={ [1]={ limit={ @@ -5222,7 +5244,7 @@ return { [1]="ignite_duration_+%" } }, - [120]={ + [121]={ [1]={ [1]={ limit={ @@ -5252,7 +5274,7 @@ return { [1]="burn_damage_+%" } }, - [121]={ + [122]={ [1]={ [1]={ limit={ @@ -5282,7 +5304,7 @@ return { [1]="base_movement_velocity_+%" } }, - [122]={ + [123]={ [1]={ [1]={ limit={ @@ -5299,7 +5321,7 @@ return { [1]="no_movement_speed" } }, - [123]={ + [124]={ [1]={ [1]={ limit={ @@ -5329,7 +5351,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%" } }, - [124]={ + [125]={ [1]={ [1]={ limit={ @@ -5359,7 +5381,7 @@ return { [1]="killed_monster_dropped_item_quantity_+%" } }, - [125]={ + [126]={ [1]={ [1]={ limit={ @@ -5389,7 +5411,7 @@ return { [1]="accuracy_rating" } }, - [126]={ + [127]={ [1]={ [1]={ limit={ @@ -5419,7 +5441,7 @@ return { [1]="accuracy_rating_+%" } }, - [127]={ + [128]={ [1]={ [1]={ [1]={ @@ -5440,7 +5462,7 @@ return { [1]="base_chaos_damage_%_of_maximum_life_to_deal_per_minute" } }, - [128]={ + [129]={ [1]={ [1]={ [1]={ @@ -5461,7 +5483,7 @@ return { [1]="base_physical_damage_%_of_maximum_life_to_deal_per_minute" } }, - [129]={ + [130]={ [1]={ [1]={ [1]={ @@ -5482,7 +5504,7 @@ return { [1]="base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute" } }, - [130]={ + [131]={ [1]={ [1]={ limit={ @@ -5499,7 +5521,7 @@ return { [1]="add_frenzy_charge_on_kill" } }, - [131]={ + [132]={ [1]={ [1]={ limit={ @@ -5525,7 +5547,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance" } }, - [132]={ + [133]={ [1]={ [1]={ limit={ @@ -5555,7 +5577,7 @@ return { [1]="critical_strike_chance_+%" } }, - [133]={ + [134]={ [1]={ [1]={ limit={ @@ -5585,7 +5607,7 @@ return { [1]="skill_buff_grants_critical_strike_chance_+%" } }, - [134]={ + [135]={ [1]={ [1]={ limit={ @@ -5615,7 +5637,7 @@ return { [1]="support_controlled_destruction_critical_strike_chance_+%_final" } }, - [135]={ + [136]={ [1]={ [1]={ [1]={ @@ -5636,7 +5658,7 @@ return { [1]="max_barkskin_stacks" } }, - [136]={ + [137]={ [1]={ [1]={ limit={ @@ -5653,7 +5675,7 @@ return { [1]="physical_attack_damage_taken_+_per_barkskin_stack" } }, - [137]={ + [138]={ [1]={ [1]={ limit={ @@ -5683,7 +5705,7 @@ return { [1]="support_multiple_projectiles_critical_strike_chance_+%_final" } }, - [138]={ + [139]={ [1]={ [1]={ limit={ @@ -5713,7 +5735,7 @@ return { [1]="armour_+%_per_barkskin_stack" } }, - [139]={ + [140]={ [1]={ [1]={ limit={ @@ -5743,7 +5765,7 @@ return { [1]="chance_to_evade_attacks_+%_final_per_missing_barkskin_stack" } }, - [140]={ + [141]={ [1]={ [1]={ limit={ @@ -5760,7 +5782,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [141]={ + [142]={ [1]={ [1]={ limit={ @@ -5777,7 +5799,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_elusive" } }, - [142]={ + [143]={ [1]={ [1]={ [1]={ @@ -5811,7 +5833,7 @@ return { [1]="skill_withered_duration_ms" } }, - [143]={ + [144]={ [1]={ [1]={ limit={ @@ -5841,7 +5863,7 @@ return { [1]="base_life_gain_per_target" } }, - [144]={ + [145]={ [1]={ [1]={ limit={ @@ -5871,7 +5893,7 @@ return { [1]="minion_damage_+%" } }, - [145]={ + [146]={ [1]={ [1]={ limit={ @@ -5901,7 +5923,7 @@ return { [1]="doubles_have_movement_speed_+%" } }, - [146]={ + [147]={ [1]={ [1]={ limit={ @@ -5931,7 +5953,7 @@ return { [1]="minion_attack_speed_+%" } }, - [147]={ + [148]={ [1]={ [1]={ limit={ @@ -5961,7 +5983,7 @@ return { [1]="minion_cast_speed_+%" } }, - [148]={ + [149]={ [1]={ [1]={ limit={ @@ -5991,7 +6013,7 @@ return { [1]="minion_movement_speed_+%" } }, - [149]={ + [150]={ [1]={ [1]={ limit={ @@ -6021,7 +6043,7 @@ return { [1]="active_skill_minion_movement_velocity_+%_final" } }, - [150]={ + [151]={ [1]={ [1]={ limit={ @@ -6167,7 +6189,7 @@ return { [3]="lightning_tendrils_channelled_larger_pulse_always_crit" } }, - [151]={ + [152]={ [1]={ [1]={ limit={ @@ -6184,7 +6206,7 @@ return { [1]="movement_velocity_cap" } }, - [152]={ + [153]={ [1]={ [1]={ limit={ @@ -6214,7 +6236,7 @@ return { [1]="active_skill_minion_life_+%_final" } }, - [153]={ + [154]={ [1]={ [1]={ limit={ @@ -6244,7 +6266,7 @@ return { [1]="active_skill_minion_energy_shield_+%_final" } }, - [154]={ + [155]={ [1]={ [1]={ limit={ @@ -6274,7 +6296,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [155]={ + [156]={ [1]={ [1]={ limit={ @@ -6291,7 +6313,7 @@ return { [1]="minion_maximum_life_+%" } }, - [156]={ + [157]={ [1]={ [1]={ [1]={ @@ -6312,7 +6334,7 @@ return { [1]="keystone_minion_instability" } }, - [157]={ + [158]={ [1]={ [1]={ limit={ @@ -6342,7 +6364,7 @@ return { [1]="base_stun_duration_+%" } }, - [158]={ + [159]={ [1]={ [1]={ limit={ @@ -6359,7 +6381,7 @@ return { [1]="always_stun" } }, - [159]={ + [160]={ [1]={ [1]={ limit={ @@ -6376,7 +6398,7 @@ return { [1]="backstab_damage_+%" } }, - [160]={ + [161]={ [1]={ [1]={ [1]={ @@ -6397,7 +6419,7 @@ return { [1]="wall_expand_delay_ms" } }, - [161]={ + [162]={ [1]={ [1]={ [1]={ @@ -6440,7 +6462,7 @@ return { [2]="quality_display_wall_length_is_gem" } }, - [162]={ + [163]={ [1]={ [1]={ [1]={ @@ -6461,7 +6483,7 @@ return { [1]="base_chaos_damage_taken_per_minute_per_viper_strike_orb" } }, - [163]={ + [164]={ [1]={ [1]={ [1]={ @@ -6482,7 +6504,7 @@ return { [1]="intermediary_chaos_area_damage_to_deal_per_minute" } }, - [164]={ + [165]={ [1]={ [1]={ [1]={ @@ -6503,7 +6525,7 @@ return { [1]="intermediary_chaos_damage_to_deal_per_minute" } }, - [165]={ + [166]={ [1]={ [1]={ [1]={ @@ -6524,7 +6546,7 @@ return { [1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute" } }, - [166]={ + [167]={ [1]={ [1]={ [1]={ @@ -6545,7 +6567,7 @@ return { [1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute" } }, - [167]={ + [168]={ [1]={ [1]={ [1]={ @@ -6566,7 +6588,7 @@ return { [1]="intermediary_physical_skill_dot_area_damage_to_deal_per_minute" } }, - [168]={ + [169]={ [1]={ [1]={ [1]={ @@ -6587,7 +6609,7 @@ return { [1]="intermediary_physical_skill_dot_damage_to_deal_per_minute" } }, - [169]={ + [170]={ [1]={ [1]={ [1]={ @@ -6608,7 +6630,7 @@ return { [1]="intermediary_fire_area_damage_to_deal_per_minute" } }, - [170]={ + [171]={ [1]={ [1]={ [1]={ @@ -6629,7 +6651,7 @@ return { [1]="intermediary_fire_damage_to_deal_per_minute" } }, - [171]={ + [172]={ [1]={ [1]={ [1]={ @@ -6650,7 +6672,7 @@ return { [1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute" } }, - [172]={ + [173]={ [1]={ [1]={ [1]={ @@ -6671,7 +6693,7 @@ return { [1]="intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [173]={ + [174]={ [1]={ [1]={ [1]={ @@ -6692,7 +6714,7 @@ return { [1]="secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [174]={ + [175]={ [1]={ [1]={ [1]={ @@ -6713,7 +6735,7 @@ return { [1]="intermediary_cold_area_damage_to_deal_per_minute" } }, - [175]={ + [176]={ [1]={ [1]={ [1]={ @@ -6734,7 +6756,7 @@ return { [1]="intermediary_cold_damage_to_deal_per_minute" } }, - [176]={ + [177]={ [1]={ [1]={ [1]={ @@ -6755,7 +6777,7 @@ return { [1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute" } }, - [177]={ + [178]={ [1]={ [1]={ [1]={ @@ -6776,7 +6798,7 @@ return { [1]="intermediary_cold_skill_dot_damage_to_deal_per_minute" } }, - [178]={ + [179]={ [1]={ [1]={ [1]={ @@ -6797,7 +6819,7 @@ return { [1]="intermediary_lightning_skill_dot_damage_to_deal_per_minute" } }, - [179]={ + [180]={ [1]={ [1]={ [1]={ @@ -6818,7 +6840,7 @@ return { [1]="monster_response_time_ms" } }, - [180]={ + [181]={ [1]={ [1]={ limit={ @@ -6848,7 +6870,7 @@ return { [1]="phase_run_melee_physical_damage_+%_final" } }, - [181]={ + [182]={ [1]={ [1]={ limit={ @@ -6878,7 +6900,7 @@ return { [1]="melee_physical_damage_+%" } }, - [182]={ + [183]={ [1]={ [1]={ [1]={ @@ -6912,7 +6934,7 @@ return { [1]="explosive_arrow_explosion_base_damage_+permyriad" } }, - [183]={ + [184]={ [1]={ [1]={ [1]={ @@ -6946,7 +6968,7 @@ return { [1]="oil_arrow_explosion_base_damage_+permyriad" } }, - [184]={ + [185]={ [1]={ [1]={ limit={ @@ -6968,7 +6990,7 @@ return { [2]="explosive_arrow_explosion_maximum_added_fire_damage" } }, - [185]={ + [186]={ [1]={ [1]={ limit={ @@ -6990,7 +7012,7 @@ return { [2]="oil_arrow_explosion_maximum_added_fire_damage" } }, - [186]={ + [187]={ [1]={ [1]={ limit={ @@ -7012,7 +7034,7 @@ return { [2]="maximum_fire_damage_per_fuse_arrow_orb" } }, - [187]={ + [188]={ [1]={ [1]={ [1]={ @@ -7139,7 +7161,7 @@ return { [2]="explosive_arrow_maximum_bonus_explosion_radius" } }, - [188]={ + [189]={ [1]={ [1]={ [1]={ @@ -7178,7 +7200,7 @@ return { [2]="vaal_firestorm_number_of_meteors" } }, - [189]={ + [190]={ [1]={ [1]={ limit={ @@ -7208,7 +7230,7 @@ return { [1]="base_stun_recovery_+%" } }, - [190]={ + [191]={ [1]={ [1]={ limit={ @@ -7238,7 +7260,7 @@ return { [1]="energy_shield_delay_-%" } }, - [191]={ + [192]={ [1]={ [1]={ limit={ @@ -7268,7 +7290,7 @@ return { [1]="energy_shield_recharge_rate_+%" } }, - [192]={ + [193]={ [1]={ [1]={ limit={ @@ -7285,7 +7307,7 @@ return { [1]="degen_effect_+%" } }, - [193]={ + [194]={ [1]={ [1]={ [1]={ @@ -7306,7 +7328,7 @@ return { [1]="base_buff_duration_ms_+_per_removable_endurance_charge" } }, - [194]={ + [195]={ [1]={ [1]={ limit={ @@ -7323,7 +7345,7 @@ return { [1]="buff_effect_duration_+%_per_removable_endurance_charge" } }, - [195]={ + [196]={ [1]={ [1]={ limit={ @@ -7340,7 +7362,7 @@ return { [1]="buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5" } }, - [196]={ + [197]={ [1]={ [1]={ limit={ @@ -7357,7 +7379,7 @@ return { [1]="skill_effect_duration_+%_per_removable_frenzy_charge" } }, - [197]={ + [198]={ [1]={ [1]={ limit={ @@ -7374,7 +7396,7 @@ return { [1]="shield_block_%" } }, - [198]={ + [199]={ [1]={ [1]={ limit={ @@ -7391,7 +7413,7 @@ return { [1]="shield_spell_block_%" } }, - [199]={ + [200]={ [1]={ [1]={ limit={ @@ -7408,7 +7430,7 @@ return { [1]="fire_shield_damage_threshold" } }, - [200]={ + [201]={ [1]={ [1]={ limit={ @@ -7438,7 +7460,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [201]={ + [202]={ [1]={ [1]={ limit={ @@ -7455,7 +7477,7 @@ return { [1]="base_resist_all_elements_%" } }, - [202]={ + [203]={ [1]={ [1]={ [1]={ @@ -7476,7 +7498,7 @@ return { [1]="base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute" } }, - [203]={ + [204]={ [1]={ [1]={ [1]={ @@ -7497,7 +7519,7 @@ return { [1]="base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute" } }, - [204]={ + [205]={ [1]={ [1]={ [1]={ @@ -7518,7 +7540,7 @@ return { [1]="base_righteous_fire_%_of_max_mana_to_deal_to_nearby_per_minute" } }, - [205]={ + [206]={ [1]={ [1]={ [1]={ @@ -7539,7 +7561,7 @@ return { [1]="base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [206]={ + [207]={ [1]={ [1]={ [1]={ @@ -7560,7 +7582,7 @@ return { [1]="base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute" } }, - [207]={ + [208]={ [1]={ [1]={ [1]={ @@ -7581,7 +7603,7 @@ return { [1]="base_nonlethal_fire_damage_%_of_maximum_mana_taken_per_minute" } }, - [208]={ + [209]={ [1]={ [1]={ limit={ @@ -7611,7 +7633,7 @@ return { [1]="righteous_fire_cast_speed_+%_final" } }, - [209]={ + [210]={ [1]={ [1]={ limit={ @@ -7641,7 +7663,7 @@ return { [1]="righteous_fire_spell_damage_+%_final" } }, - [210]={ + [211]={ [1]={ [1]={ limit={ @@ -7671,7 +7693,7 @@ return { [1]="vaal_righteous_fire_ignite_damage_+%_final" } }, - [211]={ + [212]={ [1]={ [1]={ limit={ @@ -7701,7 +7723,7 @@ return { [1]="vaal_righteous_fire_spell_damage_+%_final" } }, - [212]={ + [213]={ [1]={ [1]={ limit={ @@ -7731,7 +7753,7 @@ return { [1]="spell_damage_+%" } }, - [213]={ + [214]={ [1]={ [1]={ limit={ @@ -7748,7 +7770,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [214]={ + [215]={ [1]={ [1]={ limit={ @@ -7774,7 +7796,7 @@ return { [1]="lightning_arrow_maximum_number_of_extra_targets" } }, - [215]={ + [216]={ [1]={ [1]={ [1]={ @@ -7795,7 +7817,7 @@ return { [1]="elemental_status_effect_aura_radius" } }, - [216]={ + [217]={ [1]={ [1]={ limit={ @@ -7812,7 +7834,7 @@ return { [1]="support_ignite_proliferation_radius" } }, - [217]={ + [218]={ [1]={ [1]={ [1]={ @@ -7833,7 +7855,7 @@ return { [1]="cannot_inflict_status_ailments" } }, - [218]={ + [219]={ [1]={ [1]={ limit={ @@ -7850,7 +7872,7 @@ return { [1]="never_any_ailment" } }, - [219]={ + [220]={ [1]={ [1]={ limit={ @@ -7867,7 +7889,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [220]={ + [221]={ [1]={ [1]={ [1]={ @@ -7888,7 +7910,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [221]={ + [222]={ [1]={ [1]={ [1]={ @@ -7909,7 +7931,7 @@ return { [1]="keystone_point_blank" } }, - [222]={ + [223]={ [1]={ [1]={ limit={ @@ -7926,7 +7948,7 @@ return { [1]="virtual_skill_gains_intensity" } }, - [223]={ + [224]={ [1]={ [1]={ limit={ @@ -7943,7 +7965,7 @@ return { [1]="virtual_maximum_intensity" } }, - [224]={ + [225]={ [1]={ [1]={ [1]={ @@ -7969,7 +7991,7 @@ return { [2]="virtual_intensity_lost_on_teleport" } }, - [225]={ + [226]={ [1]={ [1]={ [1]={ @@ -7990,7 +8012,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [226]={ + [227]={ [1]={ [1]={ [1]={ @@ -8024,7 +8046,7 @@ return { [1]="totem_range" } }, - [227]={ + [228]={ [1]={ [1]={ limit={ @@ -8050,7 +8072,7 @@ return { [1]="skill_display_number_of_totems_allowed" } }, - [228]={ + [229]={ [1]={ [1]={ limit={ @@ -8076,7 +8098,7 @@ return { [1]="skill_display_number_of_traps_allowed" } }, - [229]={ + [230]={ [1]={ [1]={ limit={ @@ -8102,7 +8124,7 @@ return { [1]="skill_display_number_of_remote_mines_allowed" } }, - [230]={ + [231]={ [1]={ [1]={ limit={ @@ -8158,7 +8180,7 @@ return { [2]="totem_fire_in_formation" } }, - [231]={ + [232]={ [1]={ [1]={ limit={ @@ -8175,7 +8197,7 @@ return { [1]="totems_cannot_evade" } }, - [232]={ + [233]={ [1]={ [1]={ [1]={ @@ -8196,7 +8218,7 @@ return { [1]="trap_duration" } }, - [233]={ + [234]={ [1]={ [1]={ limit={ @@ -8226,7 +8248,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [234]={ + [235]={ [1]={ [1]={ limit={ @@ -8256,7 +8278,7 @@ return { [1]="mine_laying_speed_+%" } }, - [235]={ + [236]={ [1]={ [1]={ [1]={ @@ -8277,7 +8299,7 @@ return { [1]="mine_duration" } }, - [236]={ + [237]={ [1]={ [1]={ limit={ @@ -8294,7 +8316,7 @@ return { [1]="freeze_as_though_dealt_damage_+%" } }, - [237]={ + [238]={ [1]={ [1]={ limit={ @@ -8311,7 +8333,7 @@ return { [1]="glacial_hammer_third_hit_always_crits" } }, - [238]={ + [239]={ [1]={ [1]={ limit={ @@ -8328,7 +8350,7 @@ return { [1]="glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%" } }, - [239]={ + [240]={ [1]={ [1]={ [1]={ @@ -8349,7 +8371,7 @@ return { [1]="base_life_regeneration_rate_per_minute" } }, - [240]={ + [241]={ [1]={ [1]={ [1]={ @@ -8370,7 +8392,7 @@ return { [1]="life_regeneration_rate_per_minute_%" } }, - [241]={ + [242]={ [1]={ [1]={ limit={ @@ -8400,7 +8422,7 @@ return { [1]="life_regeneration_rate_+%" } }, - [242]={ + [243]={ [1]={ [1]={ limit={ @@ -8417,7 +8439,7 @@ return { [1]="base_cold_damage_resistance_%" } }, - [243]={ + [244]={ [1]={ [1]={ limit={ @@ -8447,7 +8469,7 @@ return { [1]="ice_spear_second_form_critical_strike_chance_+%" } }, - [244]={ + [245]={ [1]={ [1]={ limit={ @@ -8464,7 +8486,7 @@ return { [1]="ice_spear_second_form_critical_strike_multiplier_+" } }, - [245]={ + [246]={ [1]={ [1]={ limit={ @@ -8494,7 +8516,7 @@ return { [1]="ice_spear_second_form_projectile_speed_+%_final" } }, - [246]={ + [247]={ [1]={ [1]={ limit={ @@ -8511,7 +8533,7 @@ return { [1]="explosive_arrow_hit_damage_+%_final_per_stack" } }, - [247]={ + [248]={ [1]={ [1]={ [1]={ @@ -8545,7 +8567,7 @@ return { [1]="virtual_chance_to_blind_on_hit_%" } }, - [248]={ + [249]={ [1]={ [1]={ limit={ @@ -8562,7 +8584,7 @@ return { [1]="explosive_arrow_ailment_damage_+%_final_per_stack" } }, - [249]={ + [250]={ [1]={ [1]={ limit={ @@ -8592,7 +8614,7 @@ return { [1]="blind_duration_+%" } }, - [250]={ + [251]={ [1]={ [1]={ limit={ @@ -8609,7 +8631,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [251]={ + [252]={ [1]={ [1]={ limit={ @@ -8626,7 +8648,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [252]={ + [253]={ [1]={ [1]={ limit={ @@ -8643,7 +8665,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [253]={ + [254]={ [1]={ [1]={ [1]={ @@ -8664,7 +8686,7 @@ return { [1]="lightning_penetration_%_while_on_low_mana" } }, - [254]={ + [255]={ [1]={ [1]={ limit={ @@ -8681,7 +8703,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [255]={ + [256]={ [1]={ [1]={ limit={ @@ -8698,7 +8720,7 @@ return { [1]="skeletal_chains_no_minions_targets_self" } }, - [256]={ + [257]={ [1]={ [1]={ [1]={ @@ -8719,7 +8741,7 @@ return { [1]="skeletal_chains_no_minions_damage_+%_final" } }, - [257]={ + [258]={ [1]={ [1]={ [1]={ @@ -8753,7 +8775,7 @@ return { [1]="skeletal_chains_no_minions_radius_+" } }, - [258]={ + [259]={ [1]={ [1]={ limit={ @@ -8779,7 +8801,7 @@ return { [1]="virtual_number_of_chains" } }, - [259]={ + [260]={ [1]={ [1]={ limit={ @@ -8805,7 +8827,7 @@ return { [1]="virtual_number_of_chains_for_beams" } }, - [260]={ + [261]={ [1]={ [1]={ limit={ @@ -8822,7 +8844,7 @@ return { [1]="virtual_projectile_number_to_split" } }, - [261]={ + [262]={ [1]={ [1]={ limit={ @@ -8848,7 +8870,7 @@ return { [1]="virtual_number_of_forks_for_projectiles_final" } }, - [262]={ + [263]={ [1]={ [1]={ limit={ @@ -8896,7 +8918,7 @@ return { [2]="projectile_return_%_chance" } }, - [263]={ + [264]={ [1]={ [1]={ [1]={ @@ -8917,7 +8939,7 @@ return { [1]="corpse_consumption_life_to_gain" } }, - [264]={ + [265]={ [1]={ [1]={ [1]={ @@ -8938,7 +8960,7 @@ return { [1]="corpse_consumption_mana_to_gain" } }, - [265]={ + [266]={ [1]={ [1]={ [1]={ @@ -8976,7 +8998,7 @@ return { [1]="flamethrower_damage_+%_per_stage_final" } }, - [266]={ + [267]={ [1]={ [1]={ limit={ @@ -9006,7 +9028,7 @@ return { [1]="incinerate_damage_+%_per_stage" } }, - [267]={ + [268]={ [1]={ [1]={ limit={ @@ -9058,7 +9080,7 @@ return { [2]="quality_display_blade_vortex_is_gem" } }, - [268]={ + [269]={ [1]={ [1]={ limit={ @@ -9127,7 +9149,7 @@ return { [2]="damage_per_blade_vortex_blade_description_mode" } }, - [269]={ + [270]={ [1]={ [1]={ [1]={ @@ -9165,7 +9187,7 @@ return { [1]="blade_vortex_ailment_damage_+%_per_blade_final" } }, - [270]={ + [271]={ [1]={ [1]={ limit={ @@ -9195,7 +9217,7 @@ return { [1]="cyclone_movement_speed_+%_final" } }, - [271]={ + [272]={ [1]={ [1]={ [1]={ @@ -9216,7 +9238,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [272]={ + [273]={ [1]={ [1]={ [1]={ @@ -9237,7 +9259,7 @@ return { [1]="ice_shield_moving_mana_degeneration_per_minute" } }, - [273]={ + [274]={ [1]={ [1]={ limit={ @@ -9254,7 +9276,7 @@ return { [1]="physical_damage_taken_+" } }, - [274]={ + [275]={ [1]={ [1]={ limit={ @@ -9271,7 +9293,7 @@ return { [1]="fire_damage_taken_+" } }, - [275]={ + [276]={ [1]={ [1]={ limit={ @@ -9288,7 +9310,7 @@ return { [1]="virtual_melee_splash" } }, - [276]={ + [277]={ [1]={ [1]={ limit={ @@ -9305,7 +9327,7 @@ return { [1]="attack_repeat_count" } }, - [277]={ + [278]={ [1]={ [1]={ limit={ @@ -9331,7 +9353,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [278]={ + [279]={ [1]={ [1]={ limit={ @@ -9361,7 +9383,7 @@ return { [1]="support_multiple_attacks_melee_attack_speed_+%_final" } }, - [279]={ + [280]={ [1]={ [1]={ limit={ @@ -9378,7 +9400,7 @@ return { [1]="summon_fire_resistance_+" } }, - [280]={ + [281]={ [1]={ [1]={ limit={ @@ -9395,7 +9417,7 @@ return { [1]="summon_cold_resistance_+" } }, - [281]={ + [282]={ [1]={ [1]={ limit={ @@ -9412,7 +9434,7 @@ return { [1]="summon_lightning_resistance_+" } }, - [282]={ + [283]={ [1]={ [1]={ limit={ @@ -9429,7 +9451,7 @@ return { [1]="virtual_minion_elemental_resistance_%" } }, - [283]={ + [284]={ [1]={ [1]={ limit={ @@ -9455,7 +9477,7 @@ return { [1]="apply_linked_curses_on_hit_%" } }, - [284]={ + [285]={ [1]={ [1]={ limit={ @@ -9472,7 +9494,7 @@ return { [1]="reave_area_of_effect_+%_final_per_stage" } }, - [285]={ + [286]={ [1]={ [1]={ limit={ @@ -9520,7 +9542,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [286]={ + [287]={ [1]={ [1]={ [1]={ @@ -9541,7 +9563,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [287]={ + [288]={ [1]={ [1]={ limit={ @@ -9567,7 +9589,7 @@ return { [1]="cast_linked_spells_on_attack_crit_%" } }, - [288]={ + [289]={ [1]={ [1]={ limit={ @@ -9593,7 +9615,7 @@ return { [1]="cast_linked_spells_on_melee_kill_%" } }, - [289]={ + [290]={ [1]={ [1]={ limit={ @@ -9619,7 +9641,7 @@ return { [1]="melee_counterattack_trigger_on_hit_%" } }, - [290]={ + [291]={ [1]={ [1]={ limit={ @@ -9645,7 +9667,7 @@ return { [1]="attack_trigger_when_critically_hit_%" } }, - [291]={ + [292]={ [1]={ [1]={ limit={ @@ -9671,7 +9693,7 @@ return { [1]="melee_counterattack_trigger_on_block_%" } }, - [292]={ + [293]={ [1]={ [1]={ limit={ @@ -9706,7 +9728,7 @@ return { [2]="animate_item_maximum_level_requirement" } }, - [293]={ + [294]={ [1]={ [1]={ limit={ @@ -9732,7 +9754,7 @@ return { [1]="attack_trigger_on_kill_%" } }, - [294]={ + [295]={ [1]={ [1]={ limit={ @@ -9758,7 +9780,7 @@ return { [1]="cast_on_attack_use_%" } }, - [295]={ + [296]={ [1]={ [1]={ limit={ @@ -9784,7 +9806,7 @@ return { [1]="cast_on_skill_use_%" } }, - [296]={ + [297]={ [1]={ [1]={ limit={ @@ -9810,7 +9832,7 @@ return { [1]="chance_to_cast_on_kill_%" } }, - [297]={ + [298]={ [1]={ [1]={ limit={ @@ -9836,7 +9858,7 @@ return { [1]="chance_to_cast_on_kill_%_target_self" } }, - [298]={ + [299]={ [1]={ [1]={ limit={ @@ -9862,7 +9884,7 @@ return { [1]="enchantment_of_war_trigger_on_kill_%" } }, - [299]={ + [300]={ [1]={ [1]={ limit={ @@ -9888,7 +9910,7 @@ return { [1]="trigger_on_skill_use_from_chest_%" } }, - [300]={ + [301]={ [1]={ [1]={ limit={ @@ -9914,7 +9936,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_spirit_charge" } }, - [301]={ + [302]={ [1]={ [1]={ limit={ @@ -9940,7 +9962,7 @@ return { [1]="cast_on_any_damage_taken_%" } }, - [302]={ + [303]={ [1]={ [1]={ limit={ @@ -9966,7 +9988,7 @@ return { [1]="cast_when_hit_%" } }, - [303]={ + [304]={ [1]={ [1]={ limit={ @@ -9983,7 +10005,7 @@ return { [1]="cast_on_death_%" } }, - [304]={ + [305]={ [1]={ [1]={ limit={ @@ -10000,7 +10022,7 @@ return { [1]="chance_to_cast_on_rampage_tier_%" } }, - [305]={ + [306]={ [1]={ [1]={ limit={ @@ -10017,7 +10039,7 @@ return { [1]="cast_on_stunned_%" } }, - [306]={ + [307]={ [1]={ [1]={ limit={ @@ -10043,7 +10065,7 @@ return { [1]="spellslinger_trigger_on_wand_attack_%" } }, - [307]={ + [308]={ [1]={ [1]={ limit={ @@ -10069,7 +10091,7 @@ return { [1]="cast_on_gain_avians_flight_or_avians_might_%" } }, - [308]={ + [309]={ [1]={ [1]={ limit={ @@ -10095,7 +10117,7 @@ return { [1]="cast_on_hit_%" } }, - [309]={ + [310]={ [1]={ [1]={ limit={ @@ -10121,7 +10143,7 @@ return { [1]="cast_on_hit_if_cursed_%" } }, - [310]={ + [311]={ [1]={ [1]={ limit={ @@ -10138,7 +10160,7 @@ return { [1]="cast_on_lose_cats_stealth" } }, - [311]={ + [312]={ [1]={ [1]={ limit={ @@ -10164,7 +10186,7 @@ return { [1]="cast_on_melee_hit_if_cursed_%" } }, - [312]={ + [313]={ [1]={ [1]={ limit={ @@ -10190,7 +10212,7 @@ return { [1]="attack_trigger_on_hit_%" } }, - [313]={ + [314]={ [1]={ [1]={ limit={ @@ -10216,7 +10238,7 @@ return { [1]="attack_trigger_on_melee_critical_hit_%" } }, - [314]={ + [315]={ [1]={ [1]={ limit={ @@ -10242,7 +10264,7 @@ return { [1]="attack_trigger_on_melee_hit_%" } }, - [315]={ + [316]={ [1]={ [1]={ limit={ @@ -10286,7 +10308,7 @@ return { [3]="cast_on_damage_taken_threshold" } }, - [316]={ + [317]={ [1]={ [1]={ limit={ @@ -10312,7 +10334,7 @@ return { [1]="chance_to_cast_when_your_trap_is_triggered_%" } }, - [317]={ + [318]={ [1]={ [1]={ limit={ @@ -10342,7 +10364,7 @@ return { [1]="active_skill_attack_speed_+%_final" } }, - [318]={ + [319]={ [1]={ [1]={ limit={ @@ -10372,7 +10394,7 @@ return { [1]="charged_blast_spell_damage_+%_final_per_stack" } }, - [319]={ + [320]={ [1]={ [1]={ [1]={ @@ -10410,7 +10432,7 @@ return { [1]="flameblast_ailment_damage_+%_final_per_stack" } }, - [320]={ + [321]={ [1]={ [1]={ [1]={ @@ -10431,7 +10453,7 @@ return { [1]="cast_while_channelling_time_ms" } }, - [321]={ + [322]={ [1]={ [1]={ limit={ @@ -10461,7 +10483,7 @@ return { [1]="curse_effect_+%" } }, - [322]={ + [323]={ [1]={ [1]={ limit={ @@ -10491,7 +10513,7 @@ return { [1]="curse_effect_+%_vs_players" } }, - [323]={ + [324]={ [1]={ [1]={ limit={ @@ -10521,7 +10543,7 @@ return { [1]="curse_effect_+%_final_vs_players" } }, - [324]={ + [325]={ [1]={ [1]={ limit={ @@ -10551,7 +10573,7 @@ return { [1]="curse_pillar_curse_effect_+%_final" } }, - [325]={ + [326]={ [1]={ [1]={ limit={ @@ -10581,7 +10603,37 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [326]={ + [327]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spell has {0}% more Cast Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Spell has {0}% less Cast Speed" + } + }, + name="totem_crab_cast_speed", + stats={ + [1]="support_crab_totem_cast_speed_+%_final" + } + }, + [328]={ [1]={ [1]={ limit={ @@ -10611,7 +10663,7 @@ return { [1]="support_spell_totem_cast_speed_+%_final" } }, - [327]={ + [329]={ [1]={ [1]={ limit={ @@ -10641,7 +10693,7 @@ return { [1]="support_attack_totem_attack_speed_+%_final" } }, - [328]={ + [330]={ [1]={ [1]={ limit={ @@ -10658,7 +10710,7 @@ return { [1]="atziri_unique_staff_storm_call_number_of_markers_to_place" } }, - [329]={ + [331]={ [1]={ [1]={ limit={ @@ -10675,7 +10727,7 @@ return { [1]="desecrate_number_of_corpses_to_create" } }, - [330]={ + [332]={ [1]={ [1]={ limit={ @@ -10692,7 +10744,7 @@ return { [1]="desecrate_corpse_level" } }, - [331]={ + [333]={ [1]={ [1]={ limit={ @@ -10709,7 +10761,7 @@ return { [1]="unearth_corpse_level" } }, - [332]={ + [334]={ [1]={ [1]={ limit={ @@ -10726,7 +10778,7 @@ return { [1]="ice_nova_number_of_repeats" } }, - [333]={ + [335]={ [1]={ [1]={ limit={ @@ -10756,7 +10808,7 @@ return { [1]="ice_nova_radius_+%_per_repeat" } }, - [334]={ + [336]={ [1]={ [1]={ limit={ @@ -10786,7 +10838,7 @@ return { [1]="vaal_lightning_strike_beam_damage_+%_final" } }, - [335]={ + [337]={ [1]={ [1]={ limit={ @@ -10803,7 +10855,7 @@ return { [1]="global_always_hit" } }, - [336]={ + [338]={ [1]={ [1]={ limit={ @@ -10820,7 +10872,7 @@ return { [1]="global_reduce_enemy_block_%" } }, - [337]={ + [339]={ [1]={ [1]={ limit={ @@ -10837,7 +10889,7 @@ return { [1]="reduce_enemy_dodge_%" } }, - [338]={ + [340]={ [1]={ [1]={ limit={ @@ -10889,7 +10941,7 @@ return { [2]="quality_display_flame_whip_is_gem" } }, - [339]={ + [341]={ [1]={ [1]={ [1]={ @@ -10927,7 +10979,7 @@ return { [1]="damage_+%_vs_burning_enemies" } }, - [340]={ + [342]={ [1]={ [1]={ limit={ @@ -10944,7 +10996,7 @@ return { [1]="never_freeze" } }, - [341]={ + [343]={ [1]={ [1]={ limit={ @@ -10961,7 +11013,7 @@ return { [1]="never_ignite" } }, - [342]={ + [344]={ [1]={ [1]={ limit={ @@ -10978,7 +11030,7 @@ return { [1]="damage_cannot_be_reflected" } }, - [343]={ + [345]={ [1]={ [1]={ limit={ @@ -10995,7 +11047,7 @@ return { [1]="lightning_trap_projectiles_leave_shocking_ground" } }, - [344]={ + [346]={ [1]={ [1]={ limit={ @@ -11012,7 +11064,7 @@ return { [1]="physical_damage_%_to_add_as_fire" } }, - [345]={ + [347]={ [1]={ [1]={ limit={ @@ -11029,7 +11081,7 @@ return { [1]="gain_%_of_phys_as_extra_fire_per_red_socket_on_gloves" } }, - [346]={ + [348]={ [1]={ [1]={ limit={ @@ -11046,7 +11098,7 @@ return { [1]="gain_%_of_phys_as_extra_cold_per_green_socket_on_gloves" } }, - [347]={ + [349]={ [1]={ [1]={ limit={ @@ -11063,7 +11115,7 @@ return { [1]="gain_%_of_phys_as_extra_lightning_per_blue_socket_on_gloves" } }, - [348]={ + [350]={ [1]={ [1]={ limit={ @@ -11080,7 +11132,7 @@ return { [1]="gain_%_of_phys_as_extra_chaos_per_white_socket_on_gloves" } }, - [349]={ + [351]={ [1]={ [1]={ limit={ @@ -11097,7 +11149,7 @@ return { [1]="physical_damage_%_to_add_as_chaos" } }, - [350]={ + [352]={ [1]={ [1]={ limit={ @@ -11114,7 +11166,7 @@ return { [1]="fire_damage_+%" } }, - [351]={ + [353]={ [1]={ [1]={ limit={ @@ -11131,7 +11183,7 @@ return { [1]="cold_damage_+%" } }, - [352]={ + [354]={ [1]={ [1]={ limit={ @@ -11153,7 +11205,7 @@ return { [2]="spell_maximum_added_cold_damage" } }, - [353]={ + [355]={ [1]={ [1]={ limit={ @@ -11175,7 +11227,7 @@ return { [2]="spell_maximum_added_lightning_damage" } }, - [354]={ + [356]={ [1]={ [1]={ [1]={ @@ -11196,7 +11248,7 @@ return { [1]="elemental_hit_no_damage_of_unchosen_elemental_type" } }, - [355]={ + [357]={ [1]={ [1]={ [1]={ @@ -11217,7 +11269,7 @@ return { [1]="prismatic_burst_unchosen_type_damage_-100%_final" } }, - [356]={ + [358]={ [1]={ [1]={ [1]={ @@ -11255,7 +11307,7 @@ return { [1]="static_strike_explosion_damage_+%_final" } }, - [357]={ + [359]={ [1]={ [1]={ limit={ @@ -11285,7 +11337,7 @@ return { [1]="base_arrow_speed_+%" } }, - [358]={ + [360]={ [1]={ [1]={ limit={ @@ -11302,7 +11354,7 @@ return { [1]="virtual_kinectic_blast_number_of_clusters" } }, - [359]={ + [361]={ [1]={ [1]={ [1]={ @@ -11345,7 +11397,7 @@ return { [1]="abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies" } }, - [360]={ + [362]={ [1]={ [1]={ limit={ @@ -11375,7 +11427,7 @@ return { [1]="newshocknova_first_ring_damage_+%_final" } }, - [361]={ + [363]={ [1]={ [1]={ limit={ @@ -11392,7 +11444,7 @@ return { [1]="abyssal_cry_%_max_life_as_chaos_on_death" } }, - [362]={ + [364]={ [1]={ [1]={ [1]={ @@ -11434,7 +11486,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [363]={ + [365]={ [1]={ [1]={ limit={ @@ -11464,7 +11516,7 @@ return { [1]="fortify_duration_+%" } }, - [364]={ + [366]={ [1]={ [1]={ limit={ @@ -11481,7 +11533,7 @@ return { [1]="base_physical_damage_%_to_convert_to_cold" } }, - [365]={ + [367]={ [1]={ [1]={ limit={ @@ -11511,7 +11563,7 @@ return { [1]="ice_crash_second_hit_damage_+%_final" } }, - [366]={ + [368]={ [1]={ [1]={ limit={ @@ -11567,7 +11619,7 @@ return { [2]="quality_display_ice_crash_is_gem" } }, - [367]={ + [369]={ [1]={ [1]={ limit={ @@ -11597,7 +11649,7 @@ return { [1]="fire_golem_grants_damage_+%" } }, - [368]={ + [370]={ [1]={ [1]={ limit={ @@ -11627,7 +11679,7 @@ return { [1]="fire_golem_grants_area_of_effect_+%" } }, - [369]={ + [371]={ [1]={ [1]={ limit={ @@ -11657,7 +11709,7 @@ return { [1]="ice_golem_grants_critical_strike_chance_+%" } }, - [370]={ + [372]={ [1]={ [1]={ limit={ @@ -11687,7 +11739,7 @@ return { [1]="ice_golem_grants_accuracy_rating_+" } }, - [371]={ + [373]={ [1]={ [1]={ limit={ @@ -11704,7 +11756,7 @@ return { [1]="chaos_golem_grants_additional_physical_damage_reduction_%" } }, - [372]={ + [374]={ [1]={ [1]={ limit={ @@ -11721,7 +11773,7 @@ return { [1]="chaos_golem_grants_dot_multiplier_+" } }, - [373]={ + [375]={ [1]={ [1]={ [1]={ @@ -11742,7 +11794,7 @@ return { [1]="stone_golem_grants_base_life_regeneration_rate_per_minute" } }, - [374]={ + [376]={ [1]={ [1]={ limit={ @@ -11759,7 +11811,7 @@ return { [1]="stone_golem_grants_melee_damage_removed_from_stone_golem_before_life_or_es_%" } }, - [375]={ + [377]={ [1]={ [1]={ [1]={ @@ -11797,7 +11849,7 @@ return { [1]="stone_golem_grants_defences_+%" } }, - [376]={ + [378]={ [1]={ [1]={ limit={ @@ -11827,7 +11879,7 @@ return { [1]="lightning_golem_grants_attack_and_cast_speed_+%" } }, - [377]={ + [379]={ [1]={ [1]={ [1]={ @@ -11848,7 +11900,7 @@ return { [1]="lightning_golem_grants_base_mana_regeneration_rate_per_minute" } }, - [378]={ + [380]={ [1]={ [1]={ [1]={ @@ -11869,7 +11921,7 @@ return { [1]="virtual_firestorm_drop_burning_ground_duration_ms" } }, - [379]={ + [381]={ [1]={ [1]={ [1]={ @@ -11894,7 +11946,7 @@ return { [1]="virtual_firestorm_drop_chilled_ground_duration_ms" } }, - [380]={ + [382]={ [1]={ [1]={ limit={ @@ -11924,7 +11976,7 @@ return { [1]="inspiring_cry_damage_+%_per_one_hundred_nearby_enemies" } }, - [381]={ + [383]={ [1]={ [1]={ [1]={ @@ -11945,7 +11997,7 @@ return { [1]="base_mana_regeneration_rate_per_minute" } }, - [382]={ + [384]={ [1]={ [1]={ limit={ @@ -11962,7 +12014,7 @@ return { [1]="chaos_golem_grants_chaos_resistance_%" } }, - [383]={ + [385]={ [1]={ [1]={ limit={ @@ -11992,7 +12044,7 @@ return { [1]="damage_+%" } }, - [384]={ + [386]={ [1]={ [1]={ [1]={ @@ -12030,7 +12082,7 @@ return { [1]="fire_nova_damage_+%_per_repeat_final" } }, - [385]={ + [387]={ [1]={ [1]={ limit={ @@ -12060,7 +12112,7 @@ return { [1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies" } }, - [386]={ + [388]={ [1]={ [1]={ limit={ @@ -12090,7 +12142,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [387]={ + [389]={ [1]={ [1]={ limit={ @@ -12107,7 +12159,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [388]={ + [390]={ [1]={ [1]={ limit={ @@ -12137,7 +12189,7 @@ return { [1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final" } }, - [389]={ + [391]={ [1]={ [1]={ limit={ @@ -12167,7 +12219,7 @@ return { [1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final" } }, - [390]={ + [392]={ [1]={ [1]={ [1]={ @@ -12217,7 +12269,7 @@ return { [1]="chance_to_freeze_shock_ignite_%" } }, - [391]={ + [393]={ [1]={ [1]={ [1]={ @@ -12238,7 +12290,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [392]={ + [394]={ [1]={ [1]={ limit={ @@ -12255,7 +12307,7 @@ return { [1]="elemental_strike_physical_damage_%_to_convert" } }, - [393]={ + [395]={ [1]={ [1]={ [1]={ @@ -12297,7 +12349,7 @@ return { [1]="melee_weapon_range_+" } }, - [394]={ + [396]={ [1]={ [1]={ [1]={ @@ -12339,7 +12391,7 @@ return { [1]="melee_range_+" } }, - [395]={ + [397]={ [1]={ [1]={ [1]={ @@ -12377,7 +12429,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [396]={ + [398]={ [1]={ [1]={ [1]={ @@ -12398,7 +12450,7 @@ return { [1]="phase_through_objects" } }, - [397]={ + [399]={ [1]={ [1]={ [1]={ @@ -12436,7 +12488,7 @@ return { [1]="enemy_aggro_radius_+%" } }, - [398]={ + [400]={ [1]={ [1]={ limit={ @@ -12496,7 +12548,7 @@ return { [2]="quality_display_earthquake_is_gem" } }, - [399]={ + [401]={ [1]={ [1]={ [1]={ @@ -12539,7 +12591,7 @@ return { [2]="quality_display_essence_drain_is_gem" } }, - [400]={ + [402]={ [1]={ [1]={ limit={ @@ -12565,7 +12617,37 @@ return { [1]="maximum_number_of_spinning_blades" } }, - [401]={ + [403]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Damage over Time taken" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Damage over Time taken" + } + }, + name="bloodrend_dot_damage_taken_incr", + stats={ + [1]="bloodrend_debuff_damage_over_time_taken_+%_per_stack" + } + }, + [404]={ [1]={ [1]={ limit={ @@ -12595,7 +12677,7 @@ return { [1]="chaos_damage_taken_+%" } }, - [402]={ + [405]={ [1]={ [1]={ [1]={ @@ -12629,7 +12711,7 @@ return { [1]="base_chance_to_poison_on_hit_%" } }, - [403]={ + [406]={ [1]={ [1]={ [1]={ @@ -12663,7 +12745,7 @@ return { [1]="skill_buff_grants_chance_to_poison_%" } }, - [404]={ + [407]={ [1]={ [1]={ limit={ @@ -12693,7 +12775,7 @@ return { [1]="damage_over_time_+%" } }, - [405]={ + [408]={ [1]={ [1]={ limit={ @@ -12723,7 +12805,7 @@ return { [1]="bladefall_damage_per_stage_+%_final" } }, - [406]={ + [409]={ [1]={ [1]={ [1]={ @@ -12744,7 +12826,7 @@ return { [1]="global_poison_on_hit" } }, - [407]={ + [410]={ [1]={ [1]={ limit={ @@ -12774,7 +12856,7 @@ return { [1]="base_poison_damage_+%" } }, - [408]={ + [411]={ [1]={ [1]={ limit={ @@ -12804,7 +12886,7 @@ return { [1]="base_poison_duration_+%" } }, - [409]={ + [412]={ [1]={ [1]={ limit={ @@ -12834,7 +12916,7 @@ return { [1]="melee_splash_area_of_effect_+%_final" } }, - [410]={ + [413]={ [1]={ [1]={ limit={ @@ -12864,7 +12946,7 @@ return { [1]="cyclone_first_hit_damage_+%_final" } }, - [411]={ + [414]={ [1]={ [1]={ limit={ @@ -12894,7 +12976,7 @@ return { [1]="shockwave_slam_explosion_damage_+%_final" } }, - [412]={ + [415]={ [1]={ [1]={ [1]={ @@ -12915,7 +12997,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [413]={ + [416]={ [1]={ [1]={ limit={ @@ -12945,7 +13027,7 @@ return { [1]="shock_nova_ring_damage_+%" } }, - [414]={ + [417]={ [1]={ [1]={ limit={ @@ -12975,7 +13057,7 @@ return { [1]="skill_buff_effect_+%" } }, - [415]={ + [418]={ [1]={ [1]={ limit={ @@ -13005,7 +13087,7 @@ return { [1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance" } }, - [416]={ + [419]={ [1]={ [1]={ limit={ @@ -13035,7 +13117,7 @@ return { [1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance" } }, - [417]={ + [420]={ [1]={ [1]={ limit={ @@ -13065,7 +13147,7 @@ return { [1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance" } }, - [418]={ + [421]={ [1]={ [1]={ limit={ @@ -13095,7 +13177,7 @@ return { [1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance" } }, - [419]={ + [422]={ [1]={ [1]={ limit={ @@ -13121,7 +13203,7 @@ return { [1]="projectile_chain_from_terrain_chance_%" } }, - [420]={ + [423]={ [1]={ [1]={ limit={ @@ -13138,7 +13220,7 @@ return { [1]="minion_always_crit" } }, - [421]={ + [424]={ [1]={ [1]={ limit={ @@ -13168,7 +13250,7 @@ return { [1]="corrosive_shroud_poison_damage_+%_final_while_accumulating_poison" } }, - [422]={ + [425]={ [1]={ [1]={ [1]={ @@ -13189,7 +13271,7 @@ return { [1]="corrosive_shroud_gains_%_of_damage_from_inflicted_poisons" } }, - [423]={ + [426]={ [1]={ [1]={ limit={ @@ -13206,7 +13288,7 @@ return { [1]="virtual_plague_bearer_maximum_stored_poison_damage" } }, - [424]={ + [427]={ [1]={ [1]={ limit={ @@ -13241,7 +13323,7 @@ return { [2]="quality_display_plague_bearer_is_gem" } }, - [425]={ + [428]={ [1]={ [1]={ limit={ @@ -13258,7 +13340,7 @@ return { [1]="corrosive_shroud_poison_dot_multiplier_+_while_aura_active" } }, - [426]={ + [429]={ [1]={ [1]={ limit={ @@ -13288,7 +13370,7 @@ return { [1]="active_skill_projectile_damage_+%_final" } }, - [427]={ + [430]={ [1]={ [1]={ limit={ @@ -13344,7 +13426,7 @@ return { [2]="quality_display_active_skill_returning_damage_is_gem" } }, - [428]={ + [431]={ [1]={ [1]={ limit={ @@ -13396,7 +13478,7 @@ return { [2]="quality_display_groundslam_is_gem" } }, - [429]={ + [432]={ [1]={ [1]={ limit={ @@ -13426,7 +13508,7 @@ return { [1]="snapping_adder_released_projectile_damage_+%_final" } }, - [430]={ + [433]={ [1]={ [1]={ limit={ @@ -13443,7 +13525,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [431]={ + [434]={ [1]={ [1]={ limit={ @@ -13473,7 +13555,7 @@ return { [1]="active_skill_damage_over_time_from_projectile_hits_+%_final" } }, - [432]={ + [435]={ [1]={ [1]={ [1]={ @@ -13494,7 +13576,7 @@ return { [1]="support_arcane_surge_gain_buff_on_mana_use_threshold" } }, - [433]={ + [436]={ [1]={ [1]={ limit={ @@ -13516,7 +13598,7 @@ return { [2]="support_arcane_surge_mana_regeneration_rate_+%" } }, - [434]={ + [437]={ [1]={ [1]={ [1]={ @@ -13550,7 +13632,7 @@ return { [1]="support_arcane_surge_duration_ms" } }, - [435]={ + [438]={ [1]={ [1]={ [1]={ @@ -13584,7 +13666,7 @@ return { [1]="support_cruelty_duration_ms" } }, - [436]={ + [439]={ [1]={ [1]={ limit={ @@ -13601,7 +13683,7 @@ return { [1]="support_innervate_gain_buff_on_killing_shocked_enemy" } }, - [437]={ + [440]={ [1]={ [1]={ limit={ @@ -13623,7 +13705,7 @@ return { [2]="support_innervate_maximum_added_lightning_damage" } }, - [438]={ + [441]={ [1]={ [1]={ [1]={ @@ -13657,7 +13739,7 @@ return { [1]="support_innervate_buff_duration_ms" } }, - [439]={ + [442]={ [1]={ [1]={ limit={ @@ -13674,7 +13756,7 @@ return { [1]="support_ruthless_big_hit_max_count" } }, - [440]={ + [443]={ [1]={ [1]={ limit={ @@ -13691,7 +13773,7 @@ return { [1]="support_ruthless_big_hit_damage_+%_final" } }, - [441]={ + [444]={ [1]={ [1]={ limit={ @@ -13708,7 +13790,7 @@ return { [1]="support_ruthless_blow_ailment_damage_from_melee_hits_+%_final" } }, - [442]={ + [445]={ [1]={ [1]={ [1]={ @@ -13729,7 +13811,7 @@ return { [1]="support_ruthless_big_hit_stun_base_duration_override_ms" } }, - [443]={ + [446]={ [1]={ [1]={ limit={ @@ -13746,7 +13828,7 @@ return { [1]="berserk_minimum_rage" } }, - [444]={ + [447]={ [1]={ [1]={ limit={ @@ -13776,7 +13858,7 @@ return { [1]="berserk_attack_damage_+%_final" } }, - [445]={ + [448]={ [1]={ [1]={ [1]={ @@ -13797,7 +13879,7 @@ return { [1]="berserk_rage_effect_+%" } }, - [446]={ + [449]={ [1]={ [1]={ limit={ @@ -13827,7 +13909,7 @@ return { [1]="berserk_attack_speed_+%_final" } }, - [447]={ + [450]={ [1]={ [1]={ limit={ @@ -13857,7 +13939,7 @@ return { [1]="berserk_movement_speed_+%_final" } }, - [448]={ + [451]={ [1]={ [1]={ limit={ @@ -13887,7 +13969,7 @@ return { [1]="berserk_base_damage_taken_+%_final" } }, - [449]={ + [452]={ [1]={ [1]={ [1]={ @@ -13908,7 +13990,7 @@ return { [1]="virtual_berserk_hundred_times_rage_loss_per_second" } }, - [450]={ + [453]={ [1]={ [1]={ limit={ @@ -13925,7 +14007,7 @@ return { [1]="berserk_rage_loss_+%_per_second" } }, - [451]={ + [454]={ [1]={ [1]={ [1]={ @@ -13946,7 +14028,7 @@ return { [1]="ancestral_slam_interval_duration" } }, - [452]={ + [455]={ [1]={ [1]={ limit={ @@ -13976,7 +14058,7 @@ return { [1]="support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final" } }, - [453]={ + [456]={ [1]={ [1]={ limit={ @@ -14006,7 +14088,7 @@ return { [1]="support_ancestral_slam_big_hit_area_+%" } }, - [454]={ + [457]={ [1]={ [1]={ limit={ @@ -14023,7 +14105,7 @@ return { [1]="tornado_damage_absorbed_%" } }, - [455]={ + [458]={ [1]={ [1]={ limit={ @@ -14040,7 +14122,7 @@ return { [1]="never_chill" } }, - [456]={ + [459]={ [1]={ [1]={ limit={ @@ -14057,7 +14139,7 @@ return { [1]="no_critical_strike_multiplier" } }, - [457]={ + [460]={ [1]={ [1]={ limit={ @@ -14087,7 +14169,7 @@ return { [1]="critical_strike_chance_+%_vs_bleeding_enemies" } }, - [458]={ + [461]={ [1]={ [1]={ limit={ @@ -14113,7 +14195,7 @@ return { [1]="barrage_final_volley_fires_x_additional_projectiles_simultaneously" } }, - [459]={ + [462]={ [1]={ [1]={ limit={ @@ -14130,7 +14212,7 @@ return { [1]="static_strike_number_gathering_lightning_to_gain_on_hit" } }, - [460]={ + [463]={ [1]={ [1]={ limit={ @@ -14147,7 +14229,7 @@ return { [1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [461]={ + [464]={ [1]={ [1]={ limit={ @@ -14173,7 +14255,7 @@ return { [1]="trap_%_chance_to_trigger_twice" } }, - [462]={ + [465]={ [1]={ [1]={ limit={ @@ -14207,7 +14289,7 @@ return { [1]="spectral_throw_projectile_deceleration_+%" } }, - [463]={ + [466]={ [1]={ [1]={ limit={ @@ -14237,7 +14319,7 @@ return { [1]="vaal_firestorm_gem_explosion_area_of_effect_+%_final" } }, - [464]={ + [467]={ [1]={ [1]={ limit={ @@ -14254,7 +14336,7 @@ return { [1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration" } }, - [465]={ + [468]={ [1]={ [1]={ limit={ @@ -14289,7 +14371,7 @@ return { [2]="quality_display_static_strike_gathering_lightning_is_gem" } }, - [466]={ + [469]={ [1]={ [1]={ [1]={ @@ -14327,7 +14409,7 @@ return { [1]="hit_and_ailment_damage_+%_final_per_gathering_lightning" } }, - [467]={ + [470]={ [1]={ [1]={ limit={ @@ -14357,7 +14439,7 @@ return { [1]="active_skill_main_hand_weapon_damage_+%_final" } }, - [468]={ + [471]={ [1]={ [1]={ limit={ @@ -14374,7 +14456,37 @@ return { [1]="absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%" } }, - [469]={ + [472]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deals {0}% more Damage over Time per Corpse Consumed, up to 100%" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Deals {0}% less Damage over Time per Corpse Consumed, up to 100%" + } + }, + name="abyssal_well_damage_per_corpse_consumed", + stats={ + [1]="abyssal_well_damage_over_time_+%_final_per_corpse_consumed_by_well_up_to_100%" + } + }, + [473]={ [1]={ [1]={ limit={ @@ -14404,7 +14516,7 @@ return { [1]="active_skill_added_damage_+%_final" } }, - [470]={ + [474]={ [1]={ [1]={ [1]={ @@ -14425,7 +14537,7 @@ return { [1]="active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [471]={ + [475]={ [1]={ [1]={ [1]={ @@ -14463,7 +14575,7 @@ return { [1]="active_skill_ailment_damage_+%_final" } }, - [472]={ + [476]={ [1]={ [1]={ limit={ @@ -14587,7 +14699,7 @@ return { [3]="quality_display_active_skill_area_damage_quality_negated_from_gem" } }, - [473]={ + [477]={ [1]={ [1]={ limit={ @@ -14617,7 +14729,7 @@ return { [1]="active_skill_area_of_effect_+%_final_per_endurance_charge" } }, - [474]={ + [478]={ [1]={ [1]={ limit={ @@ -14647,7 +14759,7 @@ return { [1]="active_skill_area_of_effect_+%_final_when_cast_on_frostbolt" } }, - [475]={ + [479]={ [1]={ [1]={ [1]={ @@ -15488,6 +15600,90 @@ return { } }, text="First Ring explosion radius is {2} metres" + }, + [41]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]=10, + [2]=10 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Barnacle Snap base radius is {1} metre" + }, + [42]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Barnacle Snap base radius is {1} metres" + }, + [43]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=10, + [2]=10 + } + }, + text="Barnacle Snap radius is {2} metre" + }, + [44]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=1, + [2]="#" + } + }, + text="Barnacle Snap radius is {2} metres" } }, name="primary_radius", @@ -15497,7 +15693,7 @@ return { [3]="active_skill_area_of_effect_radius" } }, - [476]={ + [480]={ [1]={ [1]={ limit={ @@ -15527,7 +15723,7 @@ return { [1]="active_skill_attack_damage_+%_final_per_endurance_charge" } }, - [477]={ + [481]={ [1]={ [1]={ limit={ @@ -15544,7 +15740,7 @@ return { [1]="active_skill_base_area_length_+" } }, - [478]={ + [482]={ [1]={ [1]={ [1]={ @@ -15582,7 +15778,7 @@ return { [1]="active_skill_bleeding_damage_+%_final_in_blood_stance" } }, - [479]={ + [483]={ [1]={ [1]={ ["gem_quality"]=true, @@ -15636,7 +15832,71 @@ return { [1]="active_skill_bleeding_damage_+%_final" } }, - [480]={ + [484]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Life Recovery rate per Wither on you" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Life Recovery rate per Wither on you" + } + }, + name="arakaali_recovery_per_wither", + stats={ + [1]="active_skill_buff_life_recovery_rate_+%_per_wither_on_self_to_grant" + } + }, + [485]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextWithered" + }, + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to inflict Withered for 2 seconds on Hit" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextWithered" + }, + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Always inflict Withered for 2 seconds on Hit" + } + }, + name="arakaali_wither_on_hit", + stats={ + [1]="active_skill_buff_wither_on_hit_%_chance_to_grant" + } + }, + [486]={ [1]={ [1]={ limit={ @@ -15666,7 +15926,7 @@ return { [1]="active_skill_chill_as_though_damage_+%_final" } }, - [481]={ + [487]={ [1]={ [1]={ limit={ @@ -15696,7 +15956,7 @@ return { [1]="active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds" } }, - [482]={ + [488]={ [1]={ [1]={ limit={ @@ -15722,7 +15982,7 @@ return { [1]="active_skill_damage_+%_final_vs_stunned_enemies" } }, - [483]={ + [489]={ [1]={ [1]={ limit={ @@ -15752,7 +16012,7 @@ return { [1]="active_skill_damage_+%_when_cast_on_frostbolt" } }, - [484]={ + [490]={ [1]={ [1]={ limit={ @@ -15782,7 +16042,7 @@ return { [1]="active_skill_hit_ailment_damage_with_projectile_+%_final" } }, - [485]={ + [491]={ [1]={ [1]={ limit={ @@ -15799,7 +16059,7 @@ return { [1]="active_skill_hit_damage_+%_final_per_curse_on_target" } }, - [486]={ + [492]={ [1]={ [1]={ limit={ @@ -15829,7 +16089,7 @@ return { [1]="active_skill_if_used_through_frostbolt_damage_+%_final" } }, - [487]={ + [493]={ [1]={ [1]={ limit={ @@ -15881,7 +16141,7 @@ return { [2]="quality_display_active_skill_ignite_damage_is_gem" } }, - [488]={ + [494]={ [1]={ [1]={ limit={ @@ -15950,7 +16210,7 @@ return { [2]="quality_display_active_skill_poison_damage_final_is_gem" } }, - [489]={ + [495]={ [1]={ [1]={ limit={ @@ -15984,7 +16244,7 @@ return { [1]="active_skill_poison_duration_+%_final" } }, - [490]={ + [496]={ [1]={ [1]={ limit={ @@ -16014,7 +16274,7 @@ return { [1]="active_skill_projectile_damage_+%_final_for_each_remaining_chain" } }, - [491]={ + [497]={ [1]={ [1]={ limit={ @@ -16044,7 +16304,7 @@ return { [1]="active_skill_projectile_speed_+%_final" } }, - [492]={ + [498]={ [1]={ [1]={ [1]={ @@ -17230,7 +17490,7 @@ return { [3]="active_skill_secondary_area_of_effect_radius" } }, - [493]={ + [499]={ [1]={ [1]={ limit={ @@ -17260,7 +17520,7 @@ return { [1]="active_skill_shock_as_though_damage_+%_final" } }, - [494]={ + [500]={ [1]={ [1]={ [1]={ @@ -17774,7 +18034,7 @@ return { [3]="active_skill_tertiary_area_of_effect_radius" } }, - [495]={ + [501]={ [1]={ [1]={ limit={ @@ -17804,7 +18064,7 @@ return { [1]="active_skill_trap_throwing_speed_+%_final" } }, - [496]={ + [502]={ [1]={ [1]={ limit={ @@ -17830,7 +18090,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [497]={ + [503]={ [1]={ [1]={ limit={ @@ -17847,7 +18107,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [498]={ + [504]={ [1]={ [1]={ limit={ @@ -17864,7 +18124,7 @@ return { [1]="additional_block_chance_against_projectiles_%_per_steel_charge" } }, - [499]={ + [505]={ [1]={ [1]={ limit={ @@ -17881,7 +18141,7 @@ return { [1]="additional_chain_chance_%" } }, - [500]={ + [506]={ [1]={ [1]={ [1]={ @@ -17902,7 +18162,7 @@ return { [1]="additional_critical_strike_chance_per_overloaded_intensity" } }, - [501]={ + [507]={ [1]={ [1]={ [1]={ @@ -17923,7 +18183,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [502]={ + [508]={ [1]={ [1]={ [1]={ @@ -17944,7 +18204,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [503]={ + [509]={ [1]={ [1]={ limit={ @@ -17992,7 +18252,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [504]={ + [510]={ [1]={ [1]={ limit={ @@ -18009,7 +18269,7 @@ return { [1]="additive_arrow_speed_modifiers_apply_to_area_of_effect" } }, - [505]={ + [511]={ [1]={ [1]={ limit={ @@ -18070,7 +18330,7 @@ return { [2]="active_skill_display_aegis_variation" } }, - [506]={ + [512]={ [1]={ [1]={ limit={ @@ -18100,7 +18360,7 @@ return { [1]="ailment_damage_+%_per_frenzy_charge" } }, - [507]={ + [513]={ [1]={ [1]={ limit={ @@ -18122,7 +18382,7 @@ return { [2]="alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage" } }, - [508]={ + [514]={ [1]={ [1]={ [1]={ @@ -18151,7 +18411,7 @@ return { [1]="all_damage_can_ignite_freeze_shock" } }, - [509]={ + [515]={ [1]={ [1]={ limit={ @@ -18168,7 +18428,7 @@ return { [1]="all_damage_can_sap" } }, - [510]={ + [516]={ [1]={ [1]={ limit={ @@ -18185,7 +18445,7 @@ return { [1]="already_split_if_no_steel_shards" } }, - [511]={ + [517]={ [1]={ [1]={ limit={ @@ -18202,7 +18462,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [512]={ + [518]={ [1]={ [1]={ limit={ @@ -18232,7 +18492,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [513]={ + [519]={ [1]={ [1]={ limit={ @@ -18262,7 +18522,7 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [514]={ + [520]={ [1]={ [1]={ [1]={ @@ -18296,7 +18556,7 @@ return { [1]="ancestral_buff_action_speed_+%_minimum_value" } }, - [515]={ + [521]={ [1]={ [1]={ limit={ @@ -18313,7 +18573,7 @@ return { [1]="ancestral_buff_armour_%_applies_to_all_damage_from_hits" } }, - [516]={ + [522]={ [1]={ [1]={ [1]={ @@ -18334,7 +18594,7 @@ return { [1]="ancestral_buff_base_mana_regeneration_rate_per_minute" } }, - [517]={ + [523]={ [1]={ [1]={ [1]={ @@ -18355,7 +18615,7 @@ return { [1]="ancestral_buff_base_rage_regeneration_per_minute" } }, - [518]={ + [524]={ [1]={ [1]={ [1]={ @@ -18389,7 +18649,7 @@ return { [1]="ancestral_buff_base_spell_damage_%_suppressed" } }, - [519]={ + [525]={ [1]={ [1]={ limit={ @@ -18406,7 +18666,7 @@ return { [1]="ancestral_buff_damage_removed_from_your_nearest_totem_before_life_or_es_%" } }, - [520]={ + [526]={ [1]={ [1]={ limit={ @@ -18436,7 +18696,7 @@ return { [1]="ancestral_buff_flask_charges_recovered_per_3_seconds" } }, - [521]={ + [527]={ [1]={ [1]={ limit={ @@ -18453,7 +18713,7 @@ return { [1]="ancestral_buff_leech_%_is_instant" } }, - [522]={ + [528]={ [1]={ [1]={ limit={ @@ -18470,7 +18730,7 @@ return { [1]="ancestral_buff_recover_%_of_maximum_life_mana_energy_shield_on_block" } }, - [523]={ + [529]={ [1]={ [1]={ limit={ @@ -18500,7 +18760,7 @@ return { [1]="ancestral_buff_travel_skill_cooldown_speed_+%" } }, - [524]={ + [530]={ [1]={ [1]={ limit={ @@ -18530,7 +18790,7 @@ return { [1]="ancestral_embrace_effect_+%_per_arohongui_tattoo" } }, - [525]={ + [531]={ [1]={ [1]={ limit={ @@ -18560,7 +18820,7 @@ return { [1]="ancestral_embrace_effect_+%_per_hinekora_tattoo" } }, - [526]={ + [532]={ [1]={ [1]={ limit={ @@ -18590,7 +18850,7 @@ return { [1]="ancestral_embrace_effect_+%_per_kitava_tattoo" } }, - [527]={ + [533]={ [1]={ [1]={ limit={ @@ -18620,7 +18880,7 @@ return { [1]="ancestral_embrace_effect_+%_per_ngamahu_tattoo" } }, - [528]={ + [534]={ [1]={ [1]={ limit={ @@ -18650,7 +18910,7 @@ return { [1]="ancestral_embrace_effect_+%_per_ramako_tattoo" } }, - [529]={ + [535]={ [1]={ [1]={ limit={ @@ -18680,7 +18940,7 @@ return { [1]="ancestral_embrace_effect_+%_per_rongokurai_tattoo" } }, - [530]={ + [536]={ [1]={ [1]={ limit={ @@ -18710,7 +18970,7 @@ return { [1]="ancestral_embrace_effect_+%_per_tasalio_tattoo" } }, - [531]={ + [537]={ [1]={ [1]={ limit={ @@ -18740,7 +19000,7 @@ return { [1]="ancestral_embrace_effect_+%_per_tawhoa_tattoo" } }, - [532]={ + [538]={ [1]={ [1]={ limit={ @@ -18770,7 +19030,7 @@ return { [1]="ancestral_embrace_effect_+%_per_tukohama_tattoo" } }, - [533]={ + [539]={ [1]={ [1]={ limit={ @@ -18800,7 +19060,7 @@ return { [1]="ancestral_embrace_effect_+%_per_valako_tattoo" } }, - [534]={ + [540]={ [1]={ [1]={ [1]={ @@ -18838,7 +19098,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [535]={ + [541]={ [1]={ [1]={ limit={ @@ -18855,7 +19115,7 @@ return { [1]="animate_weapon_can_only_animate_range_weapons" } }, - [536]={ + [542]={ [1]={ [1]={ limit={ @@ -18872,7 +19132,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [537]={ + [543]={ [1]={ [1]={ [1]={ @@ -18893,7 +19153,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [538]={ + [544]={ [1]={ [1]={ limit={ @@ -18919,7 +19179,7 @@ return { [1]="apply_enemy_impale_damage_to_nearby_enemies_on_killing_blow_%_chance" } }, - [539]={ + [545]={ [1]={ [1]={ limit={ @@ -18936,7 +19196,7 @@ return { [1]="apply_linked_curses_with_dark_ritual" } }, - [540]={ + [546]={ [1]={ [1]={ limit={ @@ -18953,7 +19213,7 @@ return { [1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%" } }, - [541]={ + [547]={ [1]={ [1]={ limit={ @@ -18983,7 +19243,7 @@ return { [1]="arc_damage_+%_final_for_each_remaining_chain" } }, - [542]={ + [548]={ [1]={ [1]={ limit={ @@ -19013,7 +19273,7 @@ return { [1]="arc_damage_+%_final_per_chain" } }, - [543]={ + [549]={ [1]={ [1]={ limit={ @@ -19030,7 +19290,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [544]={ + [550]={ [1]={ [1]={ limit={ @@ -19047,7 +19307,7 @@ return { [1]="arcane_cloak_damage_absorbed_%" } }, - [545]={ + [551]={ [1]={ [1]={ [1]={ @@ -19068,7 +19328,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [546]={ + [552]={ [1]={ [1]={ limit={ @@ -19085,7 +19345,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage" } }, - [547]={ + [553]={ [1]={ [1]={ [1]={ @@ -19106,7 +19366,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [548]={ + [554]={ [1]={ [1]={ limit={ @@ -19123,7 +19383,7 @@ return { [1]="arctic_armour_freeze_enemies_when_you_are_hit_%_chance" } }, - [549]={ + [555]={ [1]={ [1]={ limit={ @@ -19149,7 +19409,7 @@ return { [1]="arctic_breath_maximum_number_of_skulls_allowed" } }, - [550]={ + [556]={ [1]={ [1]={ limit={ @@ -19179,7 +19439,7 @@ return { [1]="area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge" } }, - [551]={ + [557]={ [1]={ [1]={ limit={ @@ -19209,7 +19469,7 @@ return { [1]="area_of_effect_+%_per_frost_fury_stage" } }, - [552]={ + [558]={ [1]={ [1]={ limit={ @@ -19239,7 +19499,7 @@ return { [1]="area_of_effect_+%_when_cast_on_frostbolt" } }, - [553]={ + [559]={ [1]={ [1]={ limit={ @@ -19269,7 +19529,7 @@ return { [1]="area_of_effect_+%_while_not_dual_wielding" } }, - [554]={ + [560]={ [1]={ [1]={ limit={ @@ -19286,7 +19546,7 @@ return { [1]="artillery_ballista_cross_strafe_pattern" } }, - [555]={ + [561]={ [1]={ [1]={ limit={ @@ -19312,7 +19572,7 @@ return { [1]="artillery_ballista_number_of_arrow_targets" } }, - [556]={ + [562]={ [1]={ [1]={ limit={ @@ -19342,7 +19602,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [557]={ + [563]={ [1]={ [1]={ limit={ @@ -19372,7 +19632,7 @@ return { [1]="attack_damage_+%" } }, - [558]={ + [564]={ [1]={ [1]={ [1]={ @@ -19418,7 +19678,7 @@ return { [1]="attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour" } }, - [559]={ + [565]={ [1]={ [1]={ limit={ @@ -19440,7 +19700,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons_per_trauma" } }, - [560]={ + [566]={ [1]={ [1]={ [1]={ @@ -19465,7 +19725,7 @@ return { [1]="attack_skill_mana_leech_from_any_damage_permyriad" } }, - [561]={ + [567]={ [1]={ [1]={ limit={ @@ -19495,7 +19755,7 @@ return { [1]="attack_speed_+%_per_maximum_totem" } }, - [562]={ + [568]={ [1]={ [1]={ limit={ @@ -19521,7 +19781,7 @@ return { [1]="attack_trigger_on_hitting_bleeding_enemy_%" } }, - [563]={ + [569]={ [1]={ [1]={ [1]={ @@ -19555,7 +19815,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [564]={ + [570]={ [1]={ [1]={ limit={ @@ -19572,7 +19832,7 @@ return { [1]="automation_behaviour" } }, - [565]={ + [571]={ [1]={ [1]={ [1]={ @@ -19585,7 +19845,7 @@ return { [2]=99 } }, - text="{0}% chance to Avoid All Damage from Hits" + text="{0}% chance to Avoid Damage of each Type from Hits" }, [2]={ [1]={ @@ -19598,7 +19858,7 @@ return { [2]="#" } }, - text="Avoid All Damage from Hits" + text="Avoid Damage of each Type from Hits" } }, name="avoid_damage_chance", @@ -19606,7 +19866,7 @@ return { [1]="avoid_damage_%" } }, - [566]={ + [572]={ [1]={ [1]={ limit={ @@ -19632,7 +19892,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [567]={ + [573]={ [1]={ [1]={ [1]={ @@ -19653,7 +19913,37 @@ return { [1]="ball_lightning_superball_%_chance" } }, - [568]={ + [574]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Barnacles Snap once every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Barncales Snap once every {0} seconds" + } + }, + name="barnacle_rate_final", + stats={ + [1]="barnacle_snap_activate_rate_ms" + } + }, + [575]={ [1]={ [1]={ limit={ @@ -19683,7 +19973,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [569]={ + [576]={ [1]={ [1]={ [1]={ @@ -19721,7 +20011,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [570]={ + [577]={ [1]={ [1]={ limit={ @@ -19738,7 +20028,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [571]={ + [578]={ [1]={ [1]={ limit={ @@ -19755,7 +20045,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [572]={ + [579]={ [1]={ [1]={ [1]={ @@ -19776,7 +20066,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [573]={ + [580]={ [1]={ [1]={ limit={ @@ -19806,7 +20096,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [574]={ + [581]={ [1]={ [1]={ limit={ @@ -19836,7 +20126,7 @@ return { [1]="base_damage_taken_+%" } }, - [575]={ + [582]={ [1]={ [1]={ limit={ @@ -19853,7 +20143,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [576]={ + [583]={ [1]={ [1]={ [1]={ @@ -19878,7 +20168,7 @@ return { [1]="base_energy_shield_leech_from_spell_damage_permyriad" } }, - [577]={ + [584]={ [1]={ [1]={ limit={ @@ -19904,7 +20194,7 @@ return { [1]="base_extra_damage_rolls" } }, - [578]={ + [585]={ [1]={ [1]={ [1]={ @@ -19938,7 +20228,7 @@ return { [1]="galvanic_field_retargeting_delay_ms" } }, - [579]={ + [586]={ [1]={ [1]={ limit={ @@ -19964,7 +20254,7 @@ return { [1]="base_holy_strike_maximum_number_of_animated_weapons" } }, - [580]={ + [587]={ [1]={ [1]={ [1]={ @@ -19998,7 +20288,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [581]={ + [588]={ [1]={ [1]={ [1]={ @@ -20032,7 +20322,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [582]={ + [589]={ [1]={ [1]={ [1]={ @@ -20066,7 +20356,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [583]={ + [590]={ [1]={ [1]={ [1]={ @@ -20091,7 +20381,7 @@ return { [1]="base_life_leech_from_chaos_damage_permyriad" } }, - [584]={ + [591]={ [1]={ [1]={ limit={ @@ -20108,7 +20398,7 @@ return { [1]="base_number_of_living_lightning_allowed" } }, - [585]={ + [592]={ [1]={ [1]={ limit={ @@ -20134,7 +20424,7 @@ return { [1]="base_number_of_sacred_wisps_allowed" } }, - [586]={ + [593]={ [1]={ [1]={ limit={ @@ -20160,7 +20450,7 @@ return { [1]="number_of_support_ghosts_allowed" } }, - [587]={ + [594]={ [1]={ [1]={ [1]={ @@ -20271,7 +20561,7 @@ return { [2]="smite_lightning_target_range" } }, - [588]={ + [595]={ [1]={ [1]={ limit={ @@ -20288,7 +20578,7 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [589]={ + [596]={ [1]={ [1]={ limit={ @@ -20318,7 +20608,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [590]={ + [597]={ [1]={ [1]={ [1]={ @@ -20333,17 +20623,43 @@ return { [1]={ [1]="#", [2]=-1 + }, + [2]={ + [1]=1, + [2]=1 } }, text="Enemies in range are Hindered, with up to {0}% reduced Movement Speed, based on distance from the Void Sphere" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextHinderVariableEffectNoDuration" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + }, + [2]={ + [1]=2, + [2]=2 + } + }, + text="Enemies in range are Hindered, with up to {0}% reduced Movement Speed, based on distance from the Maw" } }, name="black_hole_hinder", stats={ - [1]="blackhole_hinder_%" + [1]="blackhole_hinder_%", + [2]="black_hole_hinder_description_mode" } }, - [591]={ + [598]={ [1]={ [1]={ [1]={ @@ -20377,7 +20693,33 @@ return { [1]="blackhole_tick_rate_ms" } }, - [592]={ + [599]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Consumes up to {0} Corpse on every Pulse" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Consumes up to {0} Corpses on every Pulse" + } + }, + name="abyssal_well_corpses_consumed", + stats={ + [1]="blackhole_well_max_corpses_consumed_per_tick" + } + }, + [600]={ [1]={ [1]={ limit={ @@ -20394,7 +20736,7 @@ return { [1]="blade_blast_detonated_blades_not_removed_%_chance" } }, - [593]={ + [601]={ [1]={ [1]={ limit={ @@ -20424,7 +20766,7 @@ return { [1]="blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated" } }, - [594]={ + [602]={ [1]={ [1]={ limit={ @@ -20454,7 +20796,7 @@ return { [1]="blade_flurry_critical_strike_chance_per_stage_+%_final" } }, - [595]={ + [603]={ [1]={ [1]={ limit={ @@ -20471,7 +20813,7 @@ return { [1]="blade_flurry_critical_strike_multiplier_+_while_at_max_stages" } }, - [596]={ + [604]={ [1]={ [1]={ limit={ @@ -20501,7 +20843,7 @@ return { [1]="blade_flurry_damage_+%_final_while_at_max_stages" } }, - [597]={ + [605]={ [1]={ [1]={ limit={ @@ -20531,7 +20873,7 @@ return { [1]="blade_flurry_elemental_damage_+%_while_channeling" } }, - [598]={ + [606]={ [1]={ [1]={ limit={ @@ -20561,7 +20903,7 @@ return { [1]="blade_flurry_final_flurry_area_of_effect_+%" } }, - [599]={ + [607]={ [1]={ [1]={ limit={ @@ -20578,7 +20920,7 @@ return { [1]="blade_vortex_additional_blade_chance_%" } }, - [600]={ + [608]={ [1]={ [1]={ limit={ @@ -20608,7 +20950,7 @@ return { [1]="blade_vortex_critical_strike_chance_+%_per_blade" } }, - [601]={ + [609]={ [1]={ [1]={ limit={ @@ -20638,7 +20980,7 @@ return { [1]="blade_vortex_damage_+%_with_5_or_fewer_blades" } }, - [602]={ + [610]={ [1]={ [1]={ [1]={ @@ -20668,7 +21010,7 @@ return { [1]="blade_vortex_hit_rate_ms" } }, - [603]={ + [611]={ [1]={ [1]={ [1]={ @@ -20702,7 +21044,7 @@ return { [1]="bladefall_create_X_lingering_blades_per_volley" } }, - [604]={ + [612]={ [1]={ [1]={ limit={ @@ -20732,7 +21074,7 @@ return { [1]="bladefall_critical_strike_chance_+%_per_stage" } }, - [605]={ + [613]={ [1]={ [1]={ [1]={ @@ -20766,7 +21108,7 @@ return { [1]="bladefall_volley_frequency_ms" } }, - [606]={ + [614]={ [1]={ [1]={ limit={ @@ -20796,7 +21138,7 @@ return { [1]="bladefall_volley_gap_distance_+%" } }, - [607]={ + [615]={ [1]={ [1]={ [1]={ @@ -20830,7 +21172,7 @@ return { [1]="bladefall_volleys_needed_per_vestige_blade" } }, - [608]={ + [616]={ [1]={ [1]={ limit={ @@ -20847,7 +21189,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [609]={ + [617]={ [1]={ [1]={ limit={ @@ -20877,7 +21219,7 @@ return { [1]="bladestorm_attack_speed_+%_final_while_in_bloodstorm" } }, - [610]={ + [618]={ [1]={ [1]={ limit={ @@ -20907,7 +21249,7 @@ return { [1]="bladestorm_blood_stance_ailment_damage_+%" } }, - [611]={ + [619]={ [1]={ [1]={ limit={ @@ -20942,7 +21284,7 @@ return { [2]="quality_display_bladestorm_is_gem" } }, - [612]={ + [620]={ [1]={ [1]={ limit={ @@ -20972,7 +21314,7 @@ return { [1]="bladestorm_movement_speed_+%_while_in_sandstorm" } }, - [613]={ + [621]={ [1]={ [1]={ limit={ @@ -21002,7 +21344,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [614]={ + [622]={ [1]={ [1]={ [1]={ @@ -21040,7 +21382,7 @@ return { [1]="bladestorm_storm_damage_+%_final" } }, - [615]={ + [623]={ [1]={ [1]={ limit={ @@ -21070,7 +21412,7 @@ return { [1]="blast_rain_area_of_effect_+%" } }, - [616]={ + [624]={ [1]={ [1]={ limit={ @@ -21100,7 +21442,7 @@ return { [1]="blast_rain_damage_+%_vs_distant_enemies" } }, - [617]={ + [625]={ [1]={ [1]={ limit={ @@ -21190,7 +21532,7 @@ return { [3]="cannot_cause_bleeding" } }, - [618]={ + [626]={ [1]={ [1]={ limit={ @@ -21207,7 +21549,7 @@ return { [1]="bleeding_damage_+100%_final_chance" } }, - [619]={ + [627]={ [1]={ [1]={ limit={ @@ -21237,7 +21579,7 @@ return { [1]="bleeding_damage_+%" } }, - [620]={ + [628]={ [1]={ [1]={ [1]={ @@ -21275,7 +21617,7 @@ return { [1]="blind_effect_+%" } }, - [621]={ + [629]={ [1]={ [1]={ [1]={ @@ -21313,7 +21655,7 @@ return { [1]="blood_ground_leaving_area_lasts_for_ms" } }, - [622]={ + [630]={ [1]={ [1]={ [1]={ @@ -21334,7 +21676,7 @@ return { [1]="blood_rage_life_leech_from_elemental_damage_permyriad" } }, - [623]={ + [631]={ [1]={ [1]={ limit={ @@ -21382,7 +21724,7 @@ return { [2]="reap_life_%_granted_on_death_with_debuff" } }, - [624]={ + [632]={ [1]={ [1]={ [1]={ @@ -21416,7 +21758,7 @@ return { [1]="blood_sand_triggered_blind_on_attack_chance_%" } }, - [625]={ + [633]={ [1]={ [1]={ [1]={ @@ -21450,7 +21792,7 @@ return { [1]="blood_sand_triggered_change_bleed_on_attack_chance_%" } }, - [626]={ + [634]={ [1]={ [1]={ limit={ @@ -21480,7 +21822,7 @@ return { [1]="blood_scythe_cost_+%_final_per_charge" } }, - [627]={ + [635]={ [1]={ [1]={ limit={ @@ -21532,7 +21874,7 @@ return { [2]="quality_display_reap_is_gem" } }, - [628]={ + [636]={ [1]={ [1]={ limit={ @@ -21549,7 +21891,7 @@ return { [1]="blood_surge_refresh_on_total_life_spent" } }, - [629]={ + [637]={ [1]={ [1]={ limit={ @@ -21610,7 +21952,7 @@ return { [2]="quality_display_exsanguinate_beam_targets_is_gem" } }, - [630]={ + [638]={ [1]={ [1]={ limit={ @@ -21640,7 +21982,7 @@ return { [1]="bodyswap_damage_+%_when_not_consuming_corpse" } }, - [631]={ + [639]={ [1]={ [1]={ limit={ @@ -21662,7 +22004,7 @@ return { [2]="bone_golem_damage_per_non_golem_minion_nearby_maximum_%" } }, - [632]={ + [640]={ [1]={ [1]={ limit={ @@ -21684,7 +22026,7 @@ return { [2]="bone_golem_grants_minion_maximum_added_physical_damage" } }, - [633]={ + [641]={ [1]={ [1]={ limit={ @@ -21701,7 +22043,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [634]={ + [642]={ [1]={ [1]={ limit={ @@ -21718,7 +22060,7 @@ return { [1]="brand_cannot_be_recalled" } }, - [635]={ + [643]={ [1]={ [1]={ limit={ @@ -21735,7 +22077,7 @@ return { [1]="brand_detonate_faster_activation_%_per_second" } }, - [636]={ + [644]={ [1]={ [1]={ limit={ @@ -21752,7 +22094,7 @@ return { [1]="brand_detonate_faster_duration_%_per_second" } }, - [637]={ + [645]={ [1]={ [1]={ limit={ @@ -21769,7 +22111,7 @@ return { [1]="brand_recall_spend_%_of_recalled_brands_cost" } }, - [638]={ + [646]={ [1]={ [1]={ limit={ @@ -21786,7 +22128,7 @@ return { [1]="branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [639]={ + [647]={ [1]={ [1]={ limit={ @@ -21812,7 +22154,7 @@ return { [1]="buff_grants_smite_additional_lightning_targets" } }, - [640]={ + [648]={ [1]={ [1]={ [1]={ @@ -21838,7 +22180,7 @@ return { [2]="call_of_steel_reload_time" } }, - [641]={ + [649]={ [1]={ [1]={ limit={ @@ -21855,7 +22197,7 @@ return { [1]="call_to_arms_behaviour" } }, - [642]={ + [650]={ [1]={ [1]={ limit={ @@ -21872,7 +22214,7 @@ return { [1]="cannot_inflict_additional_poisons" } }, - [643]={ + [651]={ [1]={ [1]={ limit={ @@ -21889,7 +22231,7 @@ return { [1]="cannot_knockback" } }, - [644]={ + [652]={ [1]={ [1]={ limit={ @@ -21906,7 +22248,7 @@ return { [1]="cannot_poison_poisoned_enemies" } }, - [645]={ + [653]={ [1]={ [1]={ limit={ @@ -21932,7 +22274,7 @@ return { [1]="cast_on_crit_%" } }, - [646]={ + [654]={ [1]={ [1]={ limit={ @@ -21958,7 +22300,7 @@ return { [1]="cast_on_flask_use_%" } }, - [647]={ + [655]={ [1]={ [1]={ limit={ @@ -21975,7 +22317,7 @@ return { [1]="cast_on_gain_skill" } }, - [648]={ + [656]={ [1]={ [1]={ limit={ @@ -21984,7 +22326,7 @@ return { [2]=1 } }, - text="Throws a chain at up to {0} Enemy" + text="Casts a Line to up to {0} Enemy" }, [2]={ limit={ @@ -21993,7 +22335,7 @@ return { [2]="#" } }, - text="Throws chains at up to {0} Enemies" + text="Casts Lines at up to {0} Enemies" } }, name="chain_strike_targets", @@ -22001,7 +22343,7 @@ return { [1]="chain_grab_number_of_targets" } }, - [649]={ + [657]={ [1]={ [1]={ limit={ @@ -22027,7 +22369,7 @@ return { [1]="chain_hook_attaches_to_X_targets" } }, - [650]={ + [658]={ [1]={ [1]={ limit={ @@ -22044,7 +22386,7 @@ return { [1]="chain_hook_attachment_rage_to_gain_per_hit" } }, - [651]={ + [659]={ [1]={ [1]={ [1]={ @@ -22078,7 +22420,7 @@ return { [1]="chain_hook_attachment_range" } }, - [652]={ + [660]={ [1]={ [1]={ limit={ @@ -22104,7 +22446,7 @@ return { [1]="chain_hook_max_attached_targets" } }, - [653]={ + [661]={ [1]={ [1]={ limit={ @@ -22134,7 +22476,7 @@ return { [1]="chain_hook_range_+%" } }, - [654]={ + [662]={ [1]={ [1]={ limit={ @@ -22151,7 +22493,7 @@ return { [1]="chain_strike_cone_radius_+_per_x_rage" } }, - [655]={ + [663]={ [1]={ [1]={ [1]={ @@ -22202,7 +22544,7 @@ return { [2]="quality_display_chain_hook_is_gem" } }, - [656]={ + [664]={ [1]={ [1]={ limit={ @@ -22232,7 +22574,7 @@ return { [1]="chaining_range_+%" } }, - [657]={ + [665]={ [1]={ [1]={ [1]={ @@ -22253,7 +22595,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [658]={ + [666]={ [1]={ [1]={ limit={ @@ -22270,7 +22612,7 @@ return { [1]="chance_for_melee_skeletons_to_summon_as_archer_skeletons_%" } }, - [659]={ + [667]={ [1]={ [1]={ limit={ @@ -22296,7 +22638,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [660]={ + [668]={ [1]={ [1]={ [1]={ @@ -22338,7 +22680,7 @@ return { [1]="chance_to_bleed_on_hit_%_chance_in_blood_stance" } }, - [661]={ + [669]={ [1]={ [1]={ [1]={ @@ -22359,7 +22701,7 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [662]={ + [670]={ [1]={ [1]={ limit={ @@ -22376,7 +22718,7 @@ return { [1]="chance_to_cast_a_stance_change_on_perforate_or_lacerate_%" } }, - [663]={ + [671]={ [1]={ [1]={ limit={ @@ -22393,7 +22735,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [664]={ + [672]={ [1]={ [1]={ limit={ @@ -22410,7 +22752,7 @@ return { [1]="chance_to_deal_double_damage_%_per_10_intelligence" } }, - [665]={ + [673]={ [1]={ [1]={ limit={ @@ -22427,7 +22769,7 @@ return { [1]="chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [666]={ + [674]={ [1]={ [1]={ limit={ @@ -22444,7 +22786,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [667]={ + [675]={ [1]={ [1]={ limit={ @@ -22461,7 +22803,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [668]={ + [676]={ [1]={ [1]={ limit={ @@ -22607,7 +22949,7 @@ return { [3]="active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [669]={ + [677]={ [1]={ [1]={ limit={ @@ -22633,7 +22975,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [670]={ + [678]={ [1]={ [1]={ limit={ @@ -22659,7 +23001,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [671]={ + [679]={ [1]={ [1]={ [1]={ @@ -22680,7 +23022,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [672]={ + [680]={ [1]={ [1]={ limit={ @@ -22706,7 +23048,7 @@ return { [1]="chance_to_inflict_scorch_brittle_sap_%" } }, - [673]={ + [681]={ [1]={ [1]={ [1]={ @@ -22752,7 +23094,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [674]={ + [682]={ [1]={ [1]={ [1]={ @@ -22786,7 +23128,7 @@ return { [1]="chance_to_scorch_%" } }, - [675]={ + [683]={ [1]={ [1]={ limit={ @@ -22812,7 +23154,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [676]={ + [684]={ [1]={ [1]={ limit={ @@ -22838,7 +23180,7 @@ return { [1]="chance_to_summon_support_ghost_on_killing_blow_%" } }, - [677]={ + [685]={ [1]={ [1]={ limit={ @@ -22855,7 +23197,7 @@ return { [1]="chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%" } }, - [678]={ + [686]={ [1]={ [1]={ limit={ @@ -22872,7 +23214,7 @@ return { [1]="chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%" } }, - [679]={ + [687]={ [1]={ [1]={ limit={ @@ -22889,7 +23231,7 @@ return { [1]="chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%" } }, - [680]={ + [688]={ [1]={ [1]={ limit={ @@ -22906,7 +23248,7 @@ return { [1]="chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%" } }, - [681]={ + [689]={ [1]={ [1]={ limit={ @@ -22923,7 +23265,7 @@ return { [1]="chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%" } }, - [682]={ + [690]={ [1]={ [1]={ limit={ @@ -22940,7 +23282,7 @@ return { [1]="chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%" } }, - [683]={ + [691]={ [1]={ [1]={ limit={ @@ -22957,7 +23299,7 @@ return { [1]="chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%" } }, - [684]={ + [692]={ [1]={ [1]={ limit={ @@ -22974,7 +23316,7 @@ return { [1]="chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%" } }, - [685]={ + [693]={ [1]={ [1]={ limit={ @@ -23000,7 +23342,7 @@ return { [1]="chance_to_trigger_on_animate_guardian_kill_%" } }, - [686]={ + [694]={ [1]={ [1]={ limit={ @@ -23026,7 +23368,7 @@ return { [1]="chance_to_trigger_on_animate_weapon_kill_%" } }, - [687]={ + [695]={ [1]={ [1]={ [1]={ @@ -23060,7 +23402,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [688]={ + [696]={ [1]={ [1]={ limit={ @@ -23077,7 +23419,7 @@ return { [1]="chaos_damage_resisted_by_highest_resistance" } }, - [689]={ + [697]={ [1]={ [1]={ limit={ @@ -23094,7 +23436,7 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [690]={ + [698]={ [1]={ [1]={ limit={ @@ -23154,7 +23496,7 @@ return { [2]="quality_display_charged_attack_is_gem" } }, - [691]={ + [699]={ [1]={ [1]={ limit={ @@ -23171,7 +23513,7 @@ return { [1]="charged_dash_channelling_damage_at_full_stacks_+%_final" } }, - [692]={ + [700]={ [1]={ [1]={ ["gem_quality"]=true, @@ -23198,7 +23540,7 @@ return { [1]="charged_dash_damage_+%_final_per_stack" } }, - [693]={ + [701]={ [1]={ [1]={ limit={ @@ -23237,7 +23579,7 @@ return { [2]="quality_display_chaged_dash_is_gem" } }, - [694]={ + [702]={ [1]={ [1]={ [1]={ @@ -23258,7 +23600,7 @@ return { [1]="chilled_ground_base_magnitude_override" } }, - [695]={ + [703]={ [1]={ [1]={ limit={ @@ -23288,7 +23630,7 @@ return { [1]="chilling_area_movement_velocity_+%" } }, - [696]={ + [704]={ [1]={ [1]={ limit={ @@ -23318,7 +23660,7 @@ return { [1]="chronomancer_buff_cooldown_speed_+%" } }, - [697]={ + [705]={ [1]={ [1]={ limit={ @@ -23348,7 +23690,7 @@ return { [1]="circle_of_power_critical_strike_chance_+%_per_stage" } }, - [698]={ + [706]={ [1]={ [1]={ limit={ @@ -23417,7 +23759,7 @@ return { [2]="quality_display_circle_of_power_damage_is_gem" } }, - [699]={ + [707]={ [1]={ [1]={ limit={ @@ -23434,7 +23776,7 @@ return { [1]="circle_of_power_mana_spend_per_upgrade" } }, - [700]={ + [708]={ [1]={ [1]={ limit={ @@ -23482,7 +23824,7 @@ return { [2]="quality_display_circle_of_power_is_gem" } }, - [701]={ + [709]={ [1]={ [1]={ limit={ @@ -23504,7 +23846,7 @@ return { [2]="circle_of_power_max_added_lightning_per_stage" } }, - [702]={ + [710]={ [1]={ [1]={ limit={ @@ -23534,7 +23876,7 @@ return { [1]="cleave_area_of_effect_+%_final_from_executioner" } }, - [703]={ + [711]={ [1]={ [1]={ [1]={ @@ -23572,9 +23914,22 @@ return { [1]="cleave_damage_against_enemies_on_low_life_+%_final_from_executioner" } }, - [704]={ + [712]={ [1]={ [1]={ + [1]={ + k="locations_to_metres", + v=1 + }, + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="+1 metre to radius per Nearby Enemy, up to a maximum of +1 metre" + }, + [2]={ [1]={ k="locations_to_metres", v=1 @@ -23585,7 +23940,7 @@ return { [2]="#" } }, - text="+0.1 metres to radius per Nearby Enemy, up to a maximum of +1 metre" + text="{0:+d} metres to radius per Nearby Enemy, up to a maximum of +1 metre" } }, name="cleave_radius_per_enemy", @@ -23593,7 +23948,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [705]={ + [713]={ [1]={ [1]={ [1]={ @@ -23631,7 +23986,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [706]={ + [714]={ [1]={ [1]={ [1]={ @@ -23669,7 +24024,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [707]={ + [715]={ [1]={ [1]={ limit={ @@ -23699,7 +24054,7 @@ return { [1]="combat_rush_effect_+%" } }, - [708]={ + [716]={ [1]={ [1]={ [1]={ @@ -23741,7 +24096,7 @@ return { [1]="consecrated_cry_consecrated_ground_duration_ms" } }, - [709]={ + [717]={ [1]={ [1]={ limit={ @@ -23771,7 +24126,7 @@ return { [1]="consecrated_cry_warcry_area_of_effect_+%_final" } }, - [710]={ + [718]={ [1]={ [1]={ limit={ @@ -23788,7 +24143,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [711]={ + [719]={ [1]={ [1]={ limit={ @@ -23818,7 +24173,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [712]={ + [720]={ [1]={ [1]={ limit={ @@ -23835,7 +24190,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [713]={ + [721]={ [1]={ [1]={ limit={ @@ -23865,7 +24220,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [714]={ + [722]={ [1]={ [1]={ limit={ @@ -23939,7 +24294,7 @@ return { [2]="contagion_spread_on_hit_affected_enemy_%" } }, - [715]={ + [723]={ [1]={ [1]={ limit={ @@ -23969,7 +24324,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [716]={ + [724]={ [1]={ [1]={ limit={ @@ -23999,9 +24354,19 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [717]={ + [725]={ [1]={ [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maximum of {0:+d} Geysers at a time" + }, + [2]={ limit={ [1]={ [1]=1, @@ -24016,7 +24381,7 @@ return { [1]="corpse_erruption_maximum_number_of_geyers" } }, - [718]={ + [726]={ [1]={ [1]={ limit={ @@ -24046,7 +24411,7 @@ return { [1]="corpse_warp_area_of_effect_+%_final_when_consuming_minion" } }, - [719]={ + [727]={ [1]={ [1]={ limit={ @@ -24076,7 +24441,7 @@ return { [1]="corpse_warp_area_of_effect_+%_final_when_consuming_corpse" } }, - [720]={ + [728]={ [1]={ [1]={ limit={ @@ -24093,7 +24458,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [721]={ + [729]={ [1]={ [1]={ [1]={ @@ -24127,7 +24492,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [722]={ + [730]={ [1]={ [1]={ [1]={ @@ -24161,7 +24526,59 @@ return { [1]="cover_in_frost_on_hit_%" } }, - [723]={ + [731]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to trigger on Killing Blow with your Offhand" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Triggers on Killing Blow with your Offhand" + } + }, + name="barnacle_on_kill", + stats={ + [1]="create_barnacle_on_killing_blow_with_offhand_%_chance" + } + }, + [732]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to trigger on Hit with Offhand vs Rare or Unique Enemies" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Triggers on Hit with Offhand vs Rare or Unique Enemies" + } + }, + name="barnacle_on_hit", + stats={ + [1]="create_barnacle_on_offhand_hit_vs_rare_unique_%_chance" + } + }, + [733]={ [1]={ [1]={ limit={ @@ -24196,7 +24613,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [724]={ + [734]={ [1]={ [1]={ limit={ @@ -24226,7 +24643,7 @@ return { [1]="created_slipstream_action_speed_+%" } }, - [725]={ + [735]={ [1]={ [1]={ limit={ @@ -24252,7 +24669,7 @@ return { [1]="cremation_chance_to_explode_nearby_corpse_when_firing_projectiles" } }, - [726]={ + [736]={ [1]={ [1]={ limit={ @@ -24282,7 +24699,7 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [727]={ + [737]={ [1]={ [1]={ limit={ @@ -24299,7 +24716,7 @@ return { [1]="critical_ailment_dot_multiplier_+" } }, - [728]={ + [738]={ [1]={ [1]={ limit={ @@ -24316,7 +24733,7 @@ return { [1]="critical_poison_dot_multiplier_+" } }, - [729]={ + [739]={ [1]={ [1]={ limit={ @@ -24346,7 +24763,7 @@ return { [1]="critical_strike_chance_+%_final_per_power_charge_from_power_siphon" } }, - [730]={ + [740]={ [1]={ [1]={ limit={ @@ -24376,7 +24793,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [731]={ + [741]={ [1]={ [1]={ limit={ @@ -24406,7 +24823,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [732]={ + [742]={ [1]={ [1]={ limit={ @@ -24436,7 +24853,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [733]={ + [743]={ [1]={ [1]={ limit={ @@ -24453,7 +24870,7 @@ return { [1]="critical_strike_multiplier_+_per_overloaded_intensity" } }, - [734]={ + [744]={ [1]={ [1]={ limit={ @@ -24470,7 +24887,7 @@ return { [1]="critical_strike_multiplier_+_per_blade" } }, - [735]={ + [745]={ [1]={ [1]={ limit={ @@ -24487,7 +24904,7 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [736]={ + [746]={ [1]={ [1]={ limit={ @@ -24517,7 +24934,7 @@ return { [1]="cruelty_effect_+%" } }, - [737]={ + [747]={ [1]={ [1]={ [1]={ @@ -24551,7 +24968,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [738]={ + [748]={ [1]={ [1]={ limit={ @@ -24568,7 +24985,7 @@ return { [1]="curse_pacifies_after_60%" } }, - [739]={ + [749]={ [1]={ [1]={ limit={ @@ -24598,7 +25015,7 @@ return { [1]="cyclone_attack_speed_+%_final_per_stage" } }, - [740]={ + [750]={ [1]={ [1]={ [1]={ @@ -24619,7 +25036,7 @@ return { [1]="cyclone_gain_stage_every_x_ms_while_channelling" } }, - [741]={ + [751]={ [1]={ [1]={ limit={ @@ -24636,7 +25053,7 @@ return { [1]="cyclone_max_number_of_stages" } }, - [742]={ + [752]={ [1]={ [1]={ [1]={ @@ -24670,7 +25087,7 @@ return { [1]="cyclone_melee_weapon_range_+_per_stage" } }, - [743]={ + [753]={ [1]={ [1]={ limit={ @@ -24700,7 +25117,7 @@ return { [1]="cyclone_movement_speed_+%_final_per_stage" } }, - [744]={ + [754]={ [1]={ [1]={ [1]={ @@ -24721,7 +25138,7 @@ return { [1]="cyclone_stage_decay_time_ms" } }, - [745]={ + [755]={ [1]={ [1]={ [1]={ @@ -24759,7 +25176,7 @@ return { [1]="damage_+%_if_you_have_consumed_a_corpse_recently" } }, - [746]={ + [756]={ [1]={ [1]={ limit={ @@ -24789,7 +25206,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [747]={ + [757]={ [1]={ [1]={ limit={ @@ -24819,7 +25236,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [748]={ + [758]={ [1]={ [1]={ limit={ @@ -24836,7 +25253,7 @@ return { [1]="damage_+%_per_chain" } }, - [749]={ + [759]={ [1]={ [1]={ limit={ @@ -24866,7 +25283,7 @@ return { [1]="damage_+%_vs_chilled_enemies" } }, - [750]={ + [760]={ [1]={ [1]={ limit={ @@ -24896,7 +25313,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [751]={ + [761]={ [1]={ [1]={ [1]={ @@ -24934,7 +25351,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [752]={ + [762]={ [1]={ [1]={ limit={ @@ -24964,7 +25381,7 @@ return { [1]="damage_+%_while_es_leeching" } }, - [753]={ + [763]={ [1]={ [1]={ limit={ @@ -24994,7 +25411,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [754]={ + [764]={ [1]={ [1]={ limit={ @@ -25024,7 +25441,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [755]={ + [765]={ [1]={ [1]={ limit={ @@ -25041,7 +25458,7 @@ return { [1]="damage_removed_from_minions_before_life_or_es_%_if_only_one_minion" } }, - [756]={ + [766]={ [1]={ [1]={ limit={ @@ -25058,7 +25475,7 @@ return { [1]="damage_removed_from_radiant_sentinel_before_life_or_es_%" } }, - [757]={ + [767]={ [1]={ [1]={ limit={ @@ -25075,7 +25492,7 @@ return { [1]="vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead" } }, - [758]={ + [768]={ [1]={ [1]={ [1]={ @@ -25113,7 +25530,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [759]={ + [769]={ [1]={ [1]={ limit={ @@ -25130,7 +25547,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [760]={ + [770]={ [1]={ [1]={ [1]={ @@ -25155,7 +25572,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [761]={ + [771]={ [1]={ [1]={ limit={ @@ -25181,7 +25598,7 @@ return { [1]="dark_pact_chance_to_gain_an_additional_ruin_%" } }, - [762]={ + [772]={ [1]={ [1]={ [1]={ @@ -25207,7 +25624,7 @@ return { [2]="dark_pact_chaos_damage_added_from_sacrifice_+%" } }, - [763]={ + [773]={ [1]={ [1]={ limit={ @@ -25224,7 +25641,7 @@ return { [1]="dark_ritual_damage_+%_final_per_curse_applied" } }, - [764]={ + [774]={ [1]={ [1]={ limit={ @@ -25241,7 +25658,7 @@ return { [1]="dark_ritual_skill_effect_duration_+%_per_curse_applied" } }, - [765]={ + [775]={ [1]={ [1]={ [1]={ @@ -25262,7 +25679,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [766]={ + [776]={ [1]={ [1]={ limit={ @@ -25279,7 +25696,7 @@ return { [1]="deal_no_elemental_damage" } }, - [767]={ + [777]={ [1]={ [1]={ limit={ @@ -25296,7 +25713,7 @@ return { [1]="deal_no_non_elemental_damage" } }, - [768]={ + [778]={ [1]={ [1]={ limit={ @@ -25326,7 +25743,7 @@ return { [1]="death_wish_attack_speed_+%" } }, - [769]={ + [779]={ [1]={ [1]={ limit={ @@ -25356,7 +25773,7 @@ return { [1]="death_wish_cast_speed_+%" } }, - [770]={ + [780]={ [1]={ [1]={ limit={ @@ -25386,7 +25803,7 @@ return { [1]="death_wish_hit_and_ailment_damage_+%_final_per_stage" } }, - [771]={ + [781]={ [1]={ [1]={ limit={ @@ -25403,7 +25820,7 @@ return { [1]="death_wish_max_stages" } }, - [772]={ + [782]={ [1]={ [1]={ limit={ @@ -25433,7 +25850,7 @@ return { [1]="death_wish_movement_speed_+%" } }, - [773]={ + [783]={ [1]={ [1]={ [1]={ @@ -25467,7 +25884,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [774]={ + [784]={ [1]={ [1]={ limit={ @@ -25501,7 +25918,7 @@ return { [1]="debuff_time_passed_+%" } }, - [775]={ + [785]={ [1]={ [1]={ limit={ @@ -25518,7 +25935,7 @@ return { [1]="desecrate_chance_for_additional_corpse_%" } }, - [776]={ + [786]={ [1]={ [1]={ limit={ @@ -25535,7 +25952,7 @@ return { [1]="desecrate_chance_for_special_corpse_%" } }, - [777]={ + [787]={ [1]={ [1]={ limit={ @@ -25552,7 +25969,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [778]={ + [788]={ [1]={ [1]={ limit={ @@ -25569,7 +25986,7 @@ return { [1]="destroy_corpses_on_kill_%_chance" } }, - [779]={ + [789]={ [1]={ [1]={ limit={ @@ -25599,7 +26016,7 @@ return { [1]="detonate_dead_damage_+%_if_corpse_ignited" } }, - [780]={ + [790]={ [1]={ [1]={ limit={ @@ -25616,7 +26033,7 @@ return { [1]="detonate_dead_%_chance_to_detonate_additional_corpse" } }, - [781]={ + [791]={ [1]={ [1]={ limit={ @@ -25633,7 +26050,7 @@ return { [1]="detonate_mines_is_triggered_while_moving" } }, - [782]={ + [792]={ [1]={ [1]={ [1]={ @@ -25654,7 +26071,7 @@ return { [1]="detonate_mines_recover_permyriad_of_life_per_mine_detonated" } }, - [783]={ + [793]={ [1]={ [1]={ limit={ @@ -25671,7 +26088,7 @@ return { [1]="disable_mine_detonation_cascade" } }, - [784]={ + [794]={ [1]={ [1]={ limit={ @@ -25697,7 +26114,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [785]={ + [795]={ [1]={ [1]={ limit={ @@ -25727,7 +26144,7 @@ return { [1]="discharge_damage_+%_if_3_charge_types_removed" } }, - [786]={ + [796]={ [1]={ [1]={ [1]={ @@ -25765,7 +26182,101 @@ return { [1]="discus_slam_damage_+%_final_for_shockwave" } }, - [787]={ + [797]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} orb" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} orbs" + } + }, + name="discus_slam_orb_count", + stats={ + [1]="discus_slam_maximum_orb_count_allowed" + } + }, + [798]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Orb base explosion rate is once per second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Orb base explosion rate is once every {0} seconds" + } + }, + name="discus_slam_activate_rate", + stats={ + [1]="discus_slam_orb_activate_base_rate_ms" + } + }, + [799]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Orbs explode once per second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Orbs explode once every {0} seconds" + } + }, + name="discus_slam_activate_rate_final", + stats={ + [1]="discus_slam_orb_activate_rate_ms" + } + }, + [800]={ [1]={ [1]={ [1]={ @@ -25799,7 +26310,7 @@ return { [1]="disintegrate_base_radius_+_per_intensify" } }, - [788]={ + [801]={ [1]={ [1]={ limit={ @@ -25851,7 +26362,7 @@ return { [2]="quality_display_disintegrate_is_gem" } }, - [789]={ + [802]={ [1]={ [1]={ limit={ @@ -25881,7 +26392,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [790]={ + [803]={ [1]={ [1]={ limit={ @@ -25898,7 +26409,7 @@ return { [1]="display_additional_projectile_per_2_mines_in_detonation_sequence" } }, - [791]={ + [804]={ [1]={ [1]={ limit={ @@ -25915,7 +26426,7 @@ return { [1]="display_additional_projectile_per_3_mines_in_detonation_sequence" } }, - [792]={ + [805]={ [1]={ [1]={ limit={ @@ -25932,7 +26443,7 @@ return { [1]="display_additional_projectile_per_mine_in_detonation_sequence" } }, - [793]={ + [806]={ [1]={ [1]={ [1]={ @@ -25957,7 +26468,7 @@ return { [1]="display_brand_deonate_tag_conversion" } }, - [794]={ + [807]={ [1]={ [1]={ limit={ @@ -25987,7 +26498,7 @@ return { [1]="display_linked_curse_effect_+%" } }, - [795]={ + [808]={ [1]={ [1]={ limit={ @@ -26017,7 +26528,7 @@ return { [1]="display_linked_curse_effect_+%_final" } }, - [796]={ + [809]={ [1]={ [1]={ limit={ @@ -26034,7 +26545,7 @@ return { [1]="display_max_ailment_bearer_charges" } }, - [797]={ + [810]={ [1]={ [1]={ limit={ @@ -26051,7 +26562,7 @@ return { [1]="display_max_blight_stacks" } }, - [798]={ + [811]={ [1]={ [1]={ limit={ @@ -26077,7 +26588,7 @@ return { [1]="display_max_charged_attack_stats" } }, - [799]={ + [812]={ [1]={ [1]={ limit={ @@ -26094,7 +26605,7 @@ return { [1]="display_max_fire_beam_stacks" } }, - [800]={ + [813]={ [1]={ [1]={ limit={ @@ -26120,7 +26631,7 @@ return { [1]="display_max_upgraded_sentinels_of_absolution" } }, - [801]={ + [814]={ [1]={ [1]={ limit={ @@ -26146,7 +26657,7 @@ return { [1]="display_max_upgraded_sentinels_of_dominance" } }, - [802]={ + [815]={ [1]={ [1]={ limit={ @@ -26176,7 +26687,7 @@ return { [1]="display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine" } }, - [803]={ + [816]={ [1]={ [1]={ limit={ @@ -26193,7 +26704,7 @@ return { [1]="display_mirage_warriors_no_spirit_strikes" } }, - [804]={ + [817]={ [1]={ [1]={ limit={ @@ -26210,7 +26721,7 @@ return { [1]="display_modifiers_to_melee_attack_range_apply_to_skill_radius" } }, - [805]={ + [818]={ [1]={ [1]={ limit={ @@ -26236,7 +26747,7 @@ return { [1]="display_projectiles_chain_when_impacting_ground" } }, - [806]={ + [819]={ [1]={ [1]={ limit={ @@ -26253,7 +26764,7 @@ return { [1]="queens_demand_effect" } }, - [807]={ + [820]={ [1]={ [1]={ [1]={ @@ -26274,7 +26785,7 @@ return { [1]="display_removes_and_grants_elusive_when_used" } }, - [808]={ + [821]={ [1]={ [1]={ limit={ @@ -26300,7 +26811,7 @@ return { [1]="display_shaper_memory_uses_skill_once" } }, - [809]={ + [822]={ [1]={ [1]={ limit={ @@ -26317,7 +26828,7 @@ return { [1]="display_sigil_of_power_stage_gain_delay" } }, - [810]={ + [823]={ [1]={ [1]={ limit={ @@ -26334,7 +26845,7 @@ return { [1]="display_skill_fixed_duration_buff" } }, - [811]={ + [824]={ [1]={ [1]={ [1]={ @@ -26355,7 +26866,7 @@ return { [1]="display_storm_burst_jump_time_ms" } }, - [812]={ + [825]={ [1]={ [1]={ limit={ @@ -26372,7 +26883,7 @@ return { [1]="display_this_skill_cooldown_does_not_recover_during_buff" } }, - [813]={ + [826]={ [1]={ [1]={ limit={ @@ -26389,7 +26900,7 @@ return { [1]="display_touch_of_fire" } }, - [814]={ + [827]={ [1]={ [1]={ limit={ @@ -26406,7 +26917,7 @@ return { [1]="display_trigger_link" } }, - [815]={ + [828]={ [1]={ [1]={ limit={ @@ -26423,7 +26934,7 @@ return { [1]="display_triggerbots_do_their_job" } }, - [816]={ + [829]={ [1]={ [1]={ limit={ @@ -26440,7 +26951,7 @@ return { [1]="display_unhinge_grant_insane" } }, - [817]={ + [830]={ [1]={ [1]={ limit={ @@ -26457,7 +26968,7 @@ return { [1]="display_vaal_breach_no_drops_xp" } }, - [818]={ + [831]={ [1]={ [1]={ limit={ @@ -26474,7 +26985,7 @@ return { [1]="display_wall_of_force_restrictions" } }, - [819]={ + [832]={ [1]={ [1]={ limit={ @@ -26500,7 +27011,7 @@ return { [1]="divine_retribution_blasts_per_wave" } }, - [820]={ + [833]={ [1]={ [1]={ limit={ @@ -26526,7 +27037,7 @@ return { [1]="divine_retribution_num_waves" } }, - [821]={ + [834]={ [1]={ [1]={ limit={ @@ -26556,7 +27067,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [822]={ + [835]={ [1]={ [1]={ limit={ @@ -26586,7 +27097,7 @@ return { [1]="divine_tempest_damage_+%_final_while_channelling" } }, - [823]={ + [836]={ [1]={ [1]={ limit={ @@ -26630,7 +27141,7 @@ return { [3]="divine_tempest_no_beam" } }, - [824]={ + [837]={ [1]={ [1]={ limit={ @@ -26647,7 +27158,7 @@ return { [1]="divine_tempest_stage_on_hitting_normal_magic_%_chance" } }, - [825]={ + [838]={ [1]={ [1]={ limit={ @@ -26664,7 +27175,7 @@ return { [1]="divine_tempest_stage_on_hitting_rare_unique" } }, - [826]={ + [839]={ [1]={ [1]={ [1]={ @@ -26698,7 +27209,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [827]={ + [840]={ [1]={ [1]={ limit={ @@ -26728,7 +27239,7 @@ return { [1]="double_strike_attack_speed_+%_final_per_stage" } }, - [828]={ + [841]={ [1]={ [1]={ limit={ @@ -26745,7 +27256,7 @@ return { [1]="double_strike_max_stages" } }, - [829]={ + [842]={ [1]={ [1]={ limit={ @@ -26762,7 +27273,7 @@ return { [1]="dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life" } }, - [830]={ + [843]={ [1]={ [1]={ limit={ @@ -26797,7 +27308,7 @@ return { [2]="quality_display_dual_strike_is_gem" } }, - [831]={ + [844]={ [1]={ [1]={ limit={ @@ -26814,7 +27325,7 @@ return { [1]="dual_strike_off_hand_weapon_determines_attack_time" } }, - [832]={ + [845]={ [1]={ [1]={ limit={ @@ -26836,7 +27347,7 @@ return { [2]="earthquake_aftershock_maximum_added_physical_damage" } }, - [833]={ + [846]={ [1]={ [1]={ limit={ @@ -26866,7 +27377,7 @@ return { [1]="earthquake_initial_slam_area_of_effect_+%" } }, - [834]={ + [847]={ [1]={ [1]={ limit={ @@ -26896,7 +27407,7 @@ return { [1]="earthshatter_spike_area_of_effect_+%_final" } }, - [835]={ + [848]={ [1]={ [1]={ limit={ @@ -26913,7 +27424,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [836]={ + [849]={ [1]={ [1]={ limit={ @@ -26943,7 +27454,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [837]={ + [850]={ [1]={ [1]={ limit={ @@ -26960,7 +27471,7 @@ return { [1]="elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment" } }, - [838]={ + [851]={ [1]={ [1]={ limit={ @@ -27008,7 +27519,7 @@ return { [2]="quality_display_elemental_hit_is_gem" } }, - [839]={ + [852]={ [1]={ [1]={ limit={ @@ -27025,7 +27536,7 @@ return { [1]="elemental_penetration_%_from_resonance" } }, - [840]={ + [853]={ [1]={ [1]={ [1]={ @@ -27063,7 +27574,7 @@ return { [1]="elusive_effect_+%" } }, - [841]={ + [854]={ [1]={ [1]={ [1]={ @@ -27084,7 +27595,7 @@ return { [1]="embrace_madness_amount_of_cooldown_to_gain_ms" } }, - [842]={ + [855]={ [1]={ [1]={ limit={ @@ -27114,7 +27625,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [843]={ + [856]={ [1]={ [1]={ limit={ @@ -27183,7 +27694,7 @@ return { [2]="quality_display_alternate_tectonic_slam_is_gem" } }, - [844]={ + [857]={ [1]={ [1]={ limit={ @@ -27209,7 +27720,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [845]={ + [858]={ [1]={ [1]={ [1]={ @@ -27230,7 +27741,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [846]={ + [859]={ [1]={ [1]={ [1]={ @@ -27251,7 +27762,7 @@ return { [1]="enemies_covered_in_frost_as_unfrozen" } }, - [847]={ + [860]={ [1]={ [1]={ [1]={ @@ -27272,7 +27783,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [848]={ + [861]={ [1]={ [1]={ limit={ @@ -27302,7 +27813,7 @@ return { [1]="enemies_you_hinder_have_life_regeneration_rate_+%" } }, - [849]={ + [862]={ [1]={ [1]={ limit={ @@ -27336,7 +27847,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [850]={ + [863]={ [1]={ [1]={ limit={ @@ -27366,7 +27877,7 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [851]={ + [864]={ [1]={ [1]={ [1]={ @@ -27387,7 +27898,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [852]={ + [865]={ [1]={ [1]={ limit={ @@ -27439,7 +27950,7 @@ return { [2]="quality_display_lightning_conduit_is_gem" } }, - [853]={ + [866]={ [1]={ [1]={ limit={ @@ -27469,7 +27980,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [854]={ + [867]={ [1]={ [1]={ limit={ @@ -27499,7 +28010,7 @@ return { [1]="ensnaring_arrow_enemy_spell_damage_taken_+%" } }, - [855]={ + [868]={ [1]={ [1]={ [1]={ @@ -27520,7 +28031,7 @@ return { [1]="essence_drain_lose_life_from_damage_permyriad" } }, - [856]={ + [869]={ [1]={ [1]={ [1]={ @@ -27554,7 +28065,7 @@ return { [1]="ethereal_knives_projectiles_needed_per_vestige_blade" } }, - [857]={ + [870]={ [1]={ [1]={ limit={ @@ -27584,7 +28095,7 @@ return { [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [858]={ + [871]={ [1]={ [1]={ [1]={ @@ -27626,7 +28137,7 @@ return { [1]="excommunicate_on_melee_attack_hit_for_X_ms" } }, - [859]={ + [872]={ [1]={ [1]={ limit={ @@ -27643,7 +28154,7 @@ return { [1]="expanding_fire_cone_angle_+%_per_stage" } }, - [860]={ + [873]={ [1]={ [1]={ limit={ @@ -27660,7 +28171,7 @@ return { [1]="expanding_fire_cone_final_wave_always_ignite" } }, - [861]={ + [874]={ [1]={ [1]={ limit={ @@ -27708,7 +28219,7 @@ return { [2]="quality_display_incinerate_is_gem_stages" } }, - [862]={ + [875]={ [1]={ [1]={ [1]={ @@ -27801,7 +28312,7 @@ return { [2]="expanding_fire_cone_radius_limit" } }, - [863]={ + [876]={ [1]={ [1]={ limit={ @@ -27853,7 +28364,7 @@ return { [2]="quality_display_incinerate_is_gem_hit" } }, - [864]={ + [877]={ [1]={ [1]={ limit={ @@ -27879,7 +28390,7 @@ return { [1]="explode_enemies_for_10%_life_as_random_element_on_killing_blow_chance_%" } }, - [865]={ + [878]={ [1]={ [1]={ limit={ @@ -27927,7 +28438,7 @@ return { [2]="quality_display_explosive_arrow_is_gem" } }, - [866]={ + [879]={ [1]={ [1]={ limit={ @@ -27944,7 +28455,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [867]={ + [880]={ [1]={ [1]={ limit={ @@ -27974,7 +28485,7 @@ return { [1]="eye_of_winter_spiral_angle_+%" } }, - [868]={ + [881]={ [1]={ [1]={ limit={ @@ -28004,7 +28515,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [869]={ + [882]={ [1]={ [1]={ [1]={ @@ -28029,7 +28540,7 @@ return { [1]="faster_bleed_%" } }, - [870]={ + [883]={ [1]={ [1]={ [1]={ @@ -28063,7 +28574,7 @@ return { [1]="faster_burn_%" } }, - [871]={ + [884]={ [1]={ [1]={ limit={ @@ -28090,7 +28601,7 @@ return { [3]="feast_of_flesh_gain_X_energy_shield_per_corpse_consumed" } }, - [872]={ + [885]={ [1]={ [1]={ limit={ @@ -28129,7 +28640,7 @@ return { [2]="quality_display_firebeam_is_gem" } }, - [873]={ + [886]={ [1]={ [1]={ limit={ @@ -28146,7 +28657,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_maximum" } }, - [874]={ + [887]={ [1]={ [1]={ limit={ @@ -28163,7 +28674,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [875]={ + [888]={ [1]={ [1]={ limit={ @@ -28193,7 +28704,7 @@ return { [1]="fire_beam_length_+%" } }, - [876]={ + [889]={ [1]={ [1]={ limit={ @@ -28210,7 +28721,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [877]={ + [890]={ [1]={ [1]={ [1]={ @@ -28244,7 +28755,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [878]={ + [891]={ [1]={ [1]={ limit={ @@ -28261,7 +28772,7 @@ return { [1]="fires_1_projectile_if_no_steel_ammo" } }, - [879]={ + [892]={ [1]={ [1]={ limit={ @@ -28278,7 +28789,7 @@ return { [1]="firestorm_and_bladefall_chance_to_replay_when_finished_%" } }, - [880]={ + [893]={ [1]={ [1]={ limit={ @@ -28308,7 +28819,7 @@ return { [1]="firestorm_final_impact_damage_+%_final" } }, - [881]={ + [894]={ [1]={ [1]={ limit={ @@ -28338,7 +28849,7 @@ return { [1]="firestorm_initial_impact_area_of_effect_+%_final" } }, - [882]={ + [895]={ [1]={ [1]={ limit={ @@ -28368,7 +28879,7 @@ return { [1]="firestorm_initial_impact_damage_+%_final" } }, - [883]={ + [896]={ [1]={ [1]={ limit={ @@ -28403,7 +28914,7 @@ return { [2]="skill_is_ice_storm" } }, - [884]={ + [897]={ [1]={ [1]={ limit={ @@ -28420,7 +28931,7 @@ return { [1]="firewall_applies_%_fire_exposure" } }, - [885]={ + [898]={ [1]={ [1]={ limit={ @@ -28437,7 +28948,7 @@ return { [1]="fixed_skill_effect_duration" } }, - [886]={ + [899]={ [1]={ [1]={ limit={ @@ -28467,7 +28978,7 @@ return { [1]="flame_dash_burning_damage_+%_final" } }, - [887]={ + [900]={ [1]={ [1]={ limit={ @@ -28484,7 +28995,7 @@ return { [1]="flame_dash_repeats_target_previous_location" } }, - [888]={ + [901]={ [1]={ [1]={ [1]={ @@ -28505,7 +29016,7 @@ return { [1]="flame_surge_burning_ground_creation_cooldown_ms" } }, - [889]={ + [902]={ [1]={ [1]={ limit={ @@ -28540,7 +29051,7 @@ return { [2]="quality_display_alt_flame_whip_is_gem" } }, - [890]={ + [903]={ [1]={ [1]={ limit={ @@ -28557,7 +29068,7 @@ return { [1]="flame_surge_ignite_damage_as_burning_ground_damage_%" } }, - [891]={ + [904]={ [1]={ [1]={ [1]={ @@ -28595,7 +29106,7 @@ return { [1]="flameblast_ailment_damage_+%_final_per_10_life_reserved" } }, - [892]={ + [905]={ [1]={ [1]={ limit={ @@ -28625,7 +29136,7 @@ return { [1]="flameblast_area_+%_final_per_stage" } }, - [893]={ + [906]={ [1]={ [1]={ [1]={ @@ -28659,7 +29170,7 @@ return { [1]="flameblast_base_radius_override" } }, - [894]={ + [907]={ [1]={ [1]={ limit={ @@ -28689,7 +29200,7 @@ return { [1]="flameblast_damage_+%_final_per_10_life_reserved" } }, - [895]={ + [908]={ [1]={ [1]={ [1]={ @@ -28710,7 +29221,7 @@ return { [1]="flameblast_hundred_times_radius_+_per_1%_life_reserved" } }, - [896]={ + [909]={ [1]={ [1]={ limit={ @@ -28727,7 +29238,7 @@ return { [1]="flameblast_ignite_chance_+%_per_stage" } }, - [897]={ + [910]={ [1]={ [1]={ limit={ @@ -28762,7 +29273,7 @@ return { [2]="quality_display_flameblast_is_gem" } }, - [898]={ + [911]={ [1]={ [1]={ limit={ @@ -28779,7 +29290,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [899]={ + [912]={ [1]={ [1]={ limit={ @@ -28796,7 +29307,7 @@ return { [1]="flamethrower_tower_trap_display_cast_speed_affects_rotation" } }, - [900]={ + [913]={ [1]={ [1]={ ["gem_quality"]=true, @@ -28842,7 +29353,7 @@ return { [1]="flamethrower_tower_trap_number_of_flamethrowers" } }, - [901]={ + [914]={ [1]={ [1]={ limit={ @@ -28872,7 +29383,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [902]={ + [915]={ [1]={ [1]={ limit={ @@ -28906,7 +29417,7 @@ return { [1]="flask_charges_used_+%" } }, - [903]={ + [916]={ [1]={ [1]={ limit={ @@ -29418,7 +29929,7 @@ return { [5]="flask_throw_charges_used_per_projectile" } }, - [904]={ + [917]={ [1]={ [1]={ limit={ @@ -29435,7 +29946,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [905]={ + [918]={ [1]={ [1]={ limit={ @@ -29452,7 +29963,7 @@ return { [1]="flask_throw_added_chaos_damage_%_of_flask_life_to_recover" } }, - [906]={ + [919]={ [1]={ [1]={ limit={ @@ -29474,7 +29985,7 @@ return { [2]="flask_throw_maximum_cold_damage_if_used_sapphire_flask" } }, - [907]={ + [920]={ [1]={ [1]={ limit={ @@ -29496,7 +30007,7 @@ return { [2]="flask_throw_maximum_lightning_damage_if_used_topaz_flask" } }, - [908]={ + [921]={ [1]={ [1]={ limit={ @@ -29513,7 +30024,7 @@ return { [1]="flask_throw_ruby_flask_critical_strike_multiplier_+" } }, - [909]={ + [922]={ [1]={ [1]={ limit={ @@ -29530,7 +30041,7 @@ return { [1]="flask_throw_ruby_flask_ignite_dot_multiplier_+" } }, - [910]={ + [923]={ [1]={ [1]={ limit={ @@ -29556,7 +30067,7 @@ return { [1]="flesh_stone_blood_stance_enemies_physical_damage_taken_when_hit_+%_final_from_player_distance" } }, - [911]={ + [924]={ [1]={ [1]={ limit={ @@ -29586,7 +30097,7 @@ return { [1]="flesh_stone_sand_stance_damage_taken_+%_final_from_distance_from_enemy_hits" } }, - [912]={ + [925]={ [1]={ [1]={ limit={ @@ -29616,7 +30127,7 @@ return { [1]="flicker_strike_buff_movement_speed_+%" } }, - [913]={ + [926]={ [1]={ [1]={ limit={ @@ -29633,7 +30144,7 @@ return { [1]="flicker_strike_teleport_range_+%" } }, - [914]={ + [927]={ [1]={ [1]={ [1]={ @@ -29658,7 +30169,7 @@ return { [1]="fortify_on_hit" } }, - [915]={ + [928]={ [1]={ [1]={ [1]={ @@ -29687,7 +30198,7 @@ return { [1]="fortify_on_hit_close_range" } }, - [916]={ + [929]={ [1]={ [1]={ limit={ @@ -29704,7 +30215,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [917]={ + [930]={ [1]={ [1]={ limit={ @@ -29773,7 +30284,7 @@ return { [2]="quality_display_freezing_pulse_damage_at_long_range_is_gem" } }, - [918]={ + [931]={ [1]={ [1]={ [1]={ @@ -29815,7 +30326,7 @@ return { [1]="frenzy_consume_charges_to_onslaught_for_ms_per_charge" } }, - [919]={ + [932]={ [1]={ [1]={ limit={ @@ -29867,7 +30378,7 @@ return { [2]="quality_display_frenzy_is_gem" } }, - [920]={ + [933]={ [1]={ [1]={ limit={ @@ -29919,7 +30430,7 @@ return { [2]="quality_display_active_skill_attack_speed_per_frenzy_is_gem" } }, - [921]={ + [934]={ [1]={ [1]={ limit={ @@ -29949,7 +30460,7 @@ return { [1]="from_code_active_skill_ailment_damage_+%_final" } }, - [922]={ + [935]={ [1]={ [1]={ limit={ @@ -29966,7 +30477,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [923]={ + [936]={ [1]={ [1]={ limit={ @@ -29992,7 +30503,7 @@ return { [1]="frost_bolt_nova_number_of_frost_bolts_to_detonate" } }, - [924]={ + [937]={ [1]={ [1]={ [1]={ @@ -30013,7 +30524,7 @@ return { [1]="frost_fury_added_duration_per_stage_ms" } }, - [925]={ + [938]={ [1]={ [1]={ [1]={ @@ -30034,7 +30545,7 @@ return { [1]="frost_fury_base_fire_interval_ms" } }, - [926]={ + [939]={ [1]={ [1]={ limit={ @@ -30051,7 +30562,7 @@ return { [1]="frost_fury_duration_+%_per_stage" } }, - [927]={ + [940]={ [1]={ [1]={ limit={ @@ -30068,7 +30579,7 @@ return { [1]="frost_fury_fire_speed_+%_final_while_channelling" } }, - [928]={ + [941]={ [1]={ [1]={ limit={ @@ -30085,7 +30596,7 @@ return { [1]="frost_fury_fire_speed_+%_per_stage" } }, - [929]={ + [942]={ [1]={ [1]={ limit={ @@ -30120,7 +30631,7 @@ return { [2]="quality_display_winter_orb_is_gem" } }, - [930]={ + [943]={ [1]={ [1]={ limit={ @@ -30137,7 +30648,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_in_bubble" } }, - [931]={ + [944]={ [1]={ [1]={ limit={ @@ -30154,7 +30665,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_outside_bubble" } }, - [932]={ + [945]={ [1]={ [1]={ [1]={ @@ -30175,7 +30686,7 @@ return { [1]="frost_globe_additional_spell_base_critical_strike_chance_per_stage" } }, - [933]={ + [946]={ [1]={ [1]={ limit={ @@ -30192,7 +30703,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [934]={ + [947]={ [1]={ [1]={ [1]={ @@ -30213,7 +30724,7 @@ return { [1]="frost_globe_life_regeneration_rate_per_minute_%" } }, - [935]={ + [948]={ [1]={ [1]={ limit={ @@ -30230,7 +30741,7 @@ return { [1]="frost_globe_max_stages" } }, - [936]={ + [949]={ [1]={ [1]={ [1]={ @@ -30251,7 +30762,7 @@ return { [1]="frost_globe_stage_gain_interval_ms" } }, - [937]={ + [950]={ [1]={ [1]={ limit={ @@ -30260,7 +30771,7 @@ return { [2]="#" } }, - text="[DNT] Deals {0}% more Damage per active wall" + text="DNT Deals {0}% more Damage per active wall" }, [2]={ [1]={ @@ -30273,7 +30784,7 @@ return { [2]=-1 } }, - text="[DNT] Deals {0}% less Damage per active wall" + text="DNT Deals {0}% less Damage per active wall" } }, name="frost_wall_damage_per_wall", @@ -30281,7 +30792,7 @@ return { [1]="frost_wall_damage_+%_final_per_active_wall" } }, - [938]={ + [951]={ [1]={ [1]={ limit={ @@ -30307,7 +30818,7 @@ return { [1]="frostblink_damage_+%_final_per_5%_chill_effect_on_target" } }, - [939]={ + [952]={ [1]={ [1]={ limit={ @@ -30337,7 +30848,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [940]={ + [953]={ [1]={ [1]={ limit={ @@ -30367,7 +30878,7 @@ return { [1]="frostbolt_projectile_speed_+%_final" } }, - [941]={ + [954]={ [1]={ [1]={ limit={ @@ -30384,7 +30895,7 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [942]={ + [955]={ [1]={ [1]={ [1]={ @@ -30405,7 +30916,7 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [943]={ + [956]={ [1]={ [1]={ limit={ @@ -30431,7 +30942,7 @@ return { [1]="gain_X_wildshard_stacks_on_cast" } }, - [944]={ + [957]={ [1]={ [1]={ [1]={ @@ -30465,7 +30976,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [945]={ + [958]={ [1]={ [1]={ [1]={ @@ -30494,7 +31005,7 @@ return { [1]="gain_fortify_on_melee_hit_ms" } }, - [946]={ + [959]={ [1]={ [1]={ limit={ @@ -30511,7 +31022,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [947]={ + [960]={ [1]={ [1]={ limit={ @@ -30528,7 +31039,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [948]={ + [961]={ [1]={ [1]={ limit={ @@ -30554,7 +31065,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [949]={ + [962]={ [1]={ [1]={ [1]={ @@ -30575,7 +31086,7 @@ return { [1]="gain_overloaded_intensity_for_x_ms_after_losing_6_intensity" } }, - [950]={ + [963]={ [1]={ [1]={ limit={ @@ -30592,7 +31103,7 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [951]={ + [964]={ [1]={ [1]={ [1]={ @@ -30617,7 +31128,7 @@ return { [1]="gain_rage_on_hit" } }, - [952]={ + [965]={ [1]={ [1]={ [1]={ @@ -30642,7 +31153,7 @@ return { [1]="gain_rage_on_hit_%_chance" } }, - [953]={ + [966]={ [1]={ [1]={ [1]={ @@ -30663,7 +31174,7 @@ return { [1]="gain_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [954]={ + [967]={ [1]={ [1]={ [1]={ @@ -30697,7 +31208,7 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [955]={ + [968]={ [1]={ [1]={ [1]={ @@ -30718,7 +31229,7 @@ return { [1]="gain_unholy_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [956]={ + [969]={ [1]={ [1]={ [1]={ @@ -30743,7 +31254,7 @@ return { [1]="gain_x_rage_on_attack_hit" } }, - [957]={ + [970]={ [1]={ [1]={ [1]={ @@ -30777,7 +31288,7 @@ return { [1]="galvanic_field_beam_delay_ms" } }, - [958]={ + [971]={ [1]={ [1]={ limit={ @@ -30807,7 +31318,7 @@ return { [1]="galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [959]={ + [972]={ [1]={ [1]={ [1]={ @@ -30841,7 +31352,24 @@ return { [1]="galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock" } }, - [960]={ + [973]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Fire Damage per second deals {0}% of Ignite's Damage per second" + } + }, + name="ghost_furnace_burning_damage_percent", + stats={ + [1]="ghost_furnace_ignite_damage_as_burning_damage_%" + } + }, + [974]={ [1]={ [1]={ limit={ @@ -30889,7 +31417,7 @@ return { [2]="quality_display_glacial_cascade_is_gem" } }, - [961]={ + [975]={ [1]={ [1]={ limit={ @@ -30919,7 +31447,7 @@ return { [1]="glacial_cascade_travel_speed_+%" } }, - [962]={ + [976]={ [1]={ [1]={ [1]={ @@ -30940,7 +31468,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [963]={ + [977]={ [1]={ [1]={ [1]={ @@ -30961,7 +31489,7 @@ return { [1]="global_maim_on_hit" } }, - [964]={ + [978]={ [1]={ [1]={ limit={ @@ -30983,7 +31511,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [965]={ + [979]={ [1]={ [1]={ [1]={ @@ -31017,7 +31545,7 @@ return { [1]="glorious_madness_timer_ms" } }, - [966]={ + [980]={ [1]={ [1]={ limit={ @@ -31047,7 +31575,7 @@ return { [1]="golem_buff_effect_+%" } }, - [967]={ + [981]={ [1]={ [1]={ limit={ @@ -31073,7 +31601,7 @@ return { [1]="graft_skill_esh_lightning_hands_maximum_hands" } }, - [968]={ + [982]={ [1]={ [1]={ limit={ @@ -31099,7 +31627,7 @@ return { [1]="graft_skill_esh_lightning_hands_number_of_additional_hands_spawned_per_brand" } }, - [969]={ + [983]={ [1]={ [1]={ limit={ @@ -31125,7 +31653,7 @@ return { [1]="graft_skill_esh_lightning_hands_number_of_hands_spawned" } }, - [970]={ + [984]={ [1]={ [1]={ limit={ @@ -31142,7 +31670,7 @@ return { [1]="graft_skill_tul_summon_number_of_demons_to_summon" } }, - [971]={ + [985]={ [1]={ [1]={ limit={ @@ -31168,7 +31696,7 @@ return { [1]="graft_skill_uulnet_bone_spires_max_spires_allowed" } }, - [972]={ + [986]={ [1]={ [1]={ ["gem_quality"]=true, @@ -31214,7 +31742,7 @@ return { [1]="graft_skill_uulnetol_bone_spires_num_of_spires_to_create" } }, - [973]={ + [987]={ [1]={ [1]={ ["gem_quality"]=true, @@ -31260,7 +31788,7 @@ return { [1]="graft_skill_xoph_flame_pillars_number_of_pillars" } }, - [974]={ + [988]={ [1]={ [1]={ limit={ @@ -31312,7 +31840,7 @@ return { [2]="quality_display_incinerate_is_gem_ingite" } }, - [975]={ + [989]={ [1]={ [1]={ limit={ @@ -31342,7 +31870,7 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [976]={ + [990]={ [1]={ [1]={ limit={ @@ -31372,7 +31900,7 @@ return { [1]="ground_slam_angle_+%" } }, - [977]={ + [991]={ [1]={ [1]={ [1]={ @@ -31410,7 +31938,67 @@ return { [1]="hallowing_flame_magnitude_+%" } }, - [978]={ + [992]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="This Skill Triggers every second while Channelling Empowered Spells,\nup to a maximum of {1} times" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="This Skill Triggers every {0} seconds while Channelling Empowered Spells,\nup to a maximum of {1} times" + } + }, + name="heavens_scourge_channeling_trigger_interval", + stats={ + [1]="heavens_scourge_channeling_trigger_interval_ms", + [2]="heavens_scourge_max_channelling_lightning_strikes" + } + }, + [993]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="When Channelling Empowered Spells ends, this Skill Triggers again for every\ntime it was Triggered while Channelling" + } + }, + name="heavens_scourge_unwinding", + stats={ + [1]="heavens_scourge_unwinding_trigger_interval_ms" + } + }, + [994]={ [1]={ [1]={ limit={ @@ -31427,7 +32015,7 @@ return { [1]="herald_no_buff_effect" } }, - [979]={ + [995]={ [1]={ [1]={ limit={ @@ -31444,7 +32032,7 @@ return { [1]="herald_of_agony_add_stack_on_poison" } }, - [980]={ + [996]={ [1]={ [1]={ limit={ @@ -31474,7 +32062,7 @@ return { [1]="herald_of_agony_poison_damage_+%_final" } }, - [981]={ + [997]={ [1]={ [1]={ [1]={ @@ -31517,7 +32105,7 @@ return { [2]="quality_display_herald_of_ash_is_gem" } }, - [982]={ + [998]={ [1]={ [1]={ limit={ @@ -31534,7 +32122,7 @@ return { [1]="herald_of_light_summon_champion_on_kill" } }, - [983]={ + [999]={ [1]={ [1]={ limit={ @@ -31560,7 +32148,7 @@ return { [1]="herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%" } }, - [984]={ + [1000]={ [1]={ [1]={ limit={ @@ -31590,7 +32178,7 @@ return { [1]="herald_of_purity_physical_damage_+%_final" } }, - [985]={ + [1001]={ [1]={ [1]={ limit={ @@ -31607,7 +32195,7 @@ return { [1]="maximum_otherwordly_pressure_stacks" } }, - [986]={ + [1002]={ [1]={ [1]={ limit={ @@ -31624,7 +32212,7 @@ return { [1]="herald_of_the_breach_add_stack_on_inflicting_ailment" } }, - [987]={ + [1003]={ [1]={ [1]={ [1]={ @@ -31645,7 +32233,7 @@ return { [1]="herald_of_the_breach_pulse_delay_ms" } }, - [988]={ + [1004]={ [1]={ [1]={ limit={ @@ -31662,7 +32250,7 @@ return { [1]="herald_of_the_breach_pulse_frequency_+%_per_otherworldly_pressure" } }, - [989]={ + [1005]={ [1]={ [1]={ [1]={ @@ -31704,7 +32292,7 @@ return { [1]="hex_transfer_on_death_total_range" } }, - [990]={ + [1006]={ [1]={ [1]={ [1]={ @@ -31738,7 +32326,7 @@ return { [1]="hex_zone_trigger_hextoad_every_x_ms" } }, - [991]={ + [1007]={ [1]={ [1]={ limit={ @@ -31755,7 +32343,7 @@ return { [1]="hexblast_ailment_damage_+%_final_if_hexed" } }, - [992]={ + [1008]={ [1]={ [1]={ limit={ @@ -31785,7 +32373,7 @@ return { [1]="hexblast_hit_damage_+%_final_if_hexed" } }, - [993]={ + [1009]={ [1]={ [1]={ [1]={ @@ -31828,7 +32416,7 @@ return { [2]="hexblast_%_chance_to_not_consume_hex" } }, - [994]={ + [1010]={ [1]={ [1]={ limit={ @@ -31845,7 +32433,7 @@ return { [1]="hexed_enemies_cannot_deal_critical_strikes" } }, - [995]={ + [1011]={ [1]={ [1]={ limit={ @@ -31875,7 +32463,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [996]={ + [1012]={ [1]={ [1]={ limit={ @@ -31892,7 +32480,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [997]={ + [1013]={ [1]={ [1]={ limit={ @@ -31909,7 +32497,7 @@ return { [1]="hits_cannot_kill_enemies" } }, - [998]={ + [1014]={ [1]={ [1]={ [1]={ @@ -31930,7 +32518,7 @@ return { [1]="hits_grant_cruelty" } }, - [999]={ + [1015]={ [1]={ [1]={ limit={ @@ -31947,7 +32535,7 @@ return { [1]="hits_ignore_all_enemy_monster_resistances" } }, - [1000]={ + [1016]={ [1]={ [1]={ limit={ @@ -31964,7 +32552,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction" } }, - [1001]={ + [1017]={ [1]={ [1]={ limit={ @@ -31981,7 +32569,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond" } }, - [1002]={ + [1018]={ [1]={ [1]={ limit={ @@ -32011,7 +32599,61 @@ return { [1]="holy_hammers_damage_+%_final_for_initial_hammer_in_cascade" } }, - [1003]={ + [1019]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d}% more Damage per Power Charge removed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + ["gem_quality"]=true, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0:+d}% less Damage per Power Charge removed" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage per Power Charge removed" + }, + [4]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Damage per Power Charge removed" + } + }, + name="holy_hammers_damage_more_per_power_consumed", + stats={ + [1]="holy_hammers_damage_+%_final_per_power_charge_consumed" + } + }, + [1020]={ [1]={ [1]={ limit={ @@ -32037,7 +32679,7 @@ return { [1]="holy_hammers_maximum_number_of_hammerslam_cascades" } }, - [1004]={ + [1021]={ [1]={ [1]={ limit={ @@ -32063,7 +32705,33 @@ return { [1]="holy_hammers_num_additional_hammerslams_if_consuming_power_charge" } }, - [1005]={ + [1022]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="{0:+d} cascade per Power Charge removed" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="{0:+d} cascades per Power Charge removed" + } + }, + name="num_additional_hammerslams_per_consumed_power_charge", + stats={ + [1]="holy_hammers_num_additional_hammerslams_per_consumed_power_charge" + } + }, + [1023]={ [1]={ [1]={ limit={ @@ -32089,7 +32757,7 @@ return { [1]="holy_hammers_number_of_additional_hammerslams_to_create" } }, - [1006]={ + [1024]={ [1]={ [1]={ limit={ @@ -32106,7 +32774,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [1007]={ + [1025]={ [1]={ [1]={ [1]={ @@ -32127,7 +32795,7 @@ return { [1]="holy_relic_nova_life_regeneration_rate_per_minute" } }, - [1008]={ + [1026]={ [1]={ [1]={ limit={ @@ -32144,7 +32812,7 @@ return { [1]="holy_relic_nova_minion_life_regeneration_rate_per_second" } }, - [1009]={ + [1027]={ [1]={ [1]={ limit={ @@ -32174,13 +32842,47 @@ return { [1]="holy_sweep_hammerfall_damage_+%_final" } }, - [1010]={ + [1028]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Hammerfalls occur once every second\nIncreases and reductions to Attack Speed affect Hammerfall rate" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hammerfalls occur once every {0} seconds\nIncreases and reductions to Attack Speed affect Hammerfall rate" + } + }, + name="hammerfall_rate", + stats={ + [1]="holy_sweep_hammerfall_rate_ms" + } + }, + [1029]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]=1 + }, + [2]={ + [1]=0, + [2]=0 } }, text="Call down Holy Hammers on up to {0} enemy struck" @@ -32190,17 +32892,48 @@ return { [1]={ [1]=2, [2]="#" + }, + [2]={ + [1]=0, + [2]=0 } }, text="Call down Holy Hammers on up to {0} enemies struck" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Call down {0} Holy Hammer per Hammerfall" + }, + [4]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Call down {0} Holy Hammers per Hammerfall" } }, name="holy_sweep_bolt_count", stats={ - [1]="holy_sweep_number_of_holy_bolts_to_create" + [1]="holy_sweep_number_of_holy_bolts_to_create", + [2]="holy_sweep_hammerfall_description_mode" } }, - [1011]={ + [1030]={ [1]={ [1]={ [1]={ @@ -32221,7 +32954,7 @@ return { [1]="hydro_sphere_pulse_frequency_ms" } }, - [1012]={ + [1031]={ [1]={ [1]={ [1]={ @@ -32255,7 +32988,7 @@ return { [1]="hydrosphere_hit_cooldown_ms" } }, - [1013]={ + [1032]={ [1]={ [1]={ limit={ @@ -32285,7 +33018,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [1014]={ + [1033]={ [1]={ [1]={ limit={ @@ -32328,7 +33061,7 @@ return { [2]="ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy" } }, - [1015]={ + [1034]={ [1]={ [1]={ limit={ @@ -32358,7 +33091,7 @@ return { [1]="ice_nova_damage_when_cast_on_frostbolt_+%_final" } }, - [1016]={ + [1035]={ [1]={ [1]={ limit={ @@ -32388,7 +33121,7 @@ return { [1]="ice_nova_freeze_as_though_damage_+%_final" } }, - [1017]={ + [1036]={ [1]={ [1]={ limit={ @@ -32414,7 +33147,7 @@ return { [1]="ice_nova_number_of_frost_bolts_to_cast_on" } }, - [1018]={ + [1037]={ [1]={ [1]={ limit={ @@ -32448,7 +33181,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [1019]={ + [1038]={ [1]={ [1]={ limit={ @@ -32465,7 +33198,7 @@ return { [1]="ignite_damage_+100%_final_chance" } }, - [1020]={ + [1039]={ [1]={ [1]={ limit={ @@ -32482,7 +33215,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [1021]={ + [1040]={ [1]={ [1]={ limit={ @@ -32499,7 +33232,7 @@ return { [1]="ignition_blast_%_max_life_as_fire_on_death" } }, - [1022]={ + [1041]={ [1]={ [1]={ limit={ @@ -32516,7 +33249,7 @@ return { [1]="ignore_self_damage_from_trauma_chance_%" } }, - [1023]={ + [1042]={ [1]={ [1]={ limit={ @@ -32551,7 +33284,7 @@ return { [2]="quality_display_wintertide_brand_is_gem" } }, - [1024]={ + [1043]={ [1]={ [1]={ [1]={ @@ -32585,7 +33318,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [1025]={ + [1044]={ [1]={ [1]={ limit={ @@ -32615,7 +33348,7 @@ return { [1]="impacting_steel_secondary_projectile_damage_+%_final" } }, - [1026]={ + [1045]={ [1]={ [1]={ limit={ @@ -32645,7 +33378,7 @@ return { [1]="impale_debuff_effect_+%" } }, - [1027]={ + [1046]={ [1]={ [1]={ limit={ @@ -32671,7 +33404,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [1028]={ + [1047]={ [1]={ [1]={ [1]={ @@ -32692,7 +33425,7 @@ return { [1]="impale_phys_reduction_%_penalty" } }, - [1029]={ + [1048]={ [1]={ [1]={ limit={ @@ -32722,7 +33455,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [1030]={ + [1049]={ [1]={ [1]={ limit={ @@ -32752,7 +33485,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [1031]={ + [1050]={ [1]={ [1]={ limit={ @@ -32782,7 +33515,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [1032]={ + [1051]={ [1]={ [1]={ limit={ @@ -32799,7 +33532,7 @@ return { [1]="incinerate_starts_with_X_additional_stages" } }, - [1033]={ + [1052]={ [1]={ [1]={ limit={ @@ -32825,7 +33558,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [1034]={ + [1053]={ [1]={ [1]={ limit={ @@ -32860,7 +33593,7 @@ return { [2]="quality_display_infernal_blow_is_gem" } }, - [1035]={ + [1054]={ [1]={ [1]={ limit={ @@ -32877,7 +33610,7 @@ return { [1]="infernal_bolt_base_fire_damage_%_maximum_life" } }, - [1036]={ + [1055]={ [1]={ [1]={ limit={ @@ -32894,7 +33627,7 @@ return { [1]="infernal_bolt_triggered_when_totem_with_this_skill_hit_by_enemy" } }, - [1037]={ + [1056]={ [1]={ [1]={ [1]={ @@ -32915,7 +33648,7 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [1038]={ + [1057]={ [1]={ [1]={ [1]={ @@ -32949,7 +33682,7 @@ return { [1]="inflict_hallowing_flame_on_melee_hit_chance_%" } }, - [1039]={ + [1058]={ [1]={ [1]={ [1]={ @@ -32970,7 +33703,7 @@ return { [1]="infusion_grants_life_regeneration_rate_per_minute_%" } }, - [1040]={ + [1059]={ [1]={ [1]={ limit={ @@ -33000,7 +33733,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [1041]={ + [1060]={ [1]={ [1]={ [1]={ @@ -33021,7 +33754,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [1042]={ + [1061]={ [1]={ [1]={ limit={ @@ -33038,7 +33771,7 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [1043]={ + [1062]={ [1]={ [1]={ limit={ @@ -33055,7 +33788,7 @@ return { [1]="kill_normal_or_magic_enemy_on_hit_if_under_x%_life" } }, - [1044]={ + [1063]={ [1]={ [1]={ [1]={ @@ -33084,7 +33817,7 @@ return { [1]="killing_blow_consumes_corpse_chance_to_gain_soul_per_power_permillage" } }, - [1045]={ + [1064]={ [1]={ [1]={ limit={ @@ -33101,7 +33834,7 @@ return { [1]="killing_blow_consumes_corpse_restore_%_life" } }, - [1046]={ + [1065]={ [1]={ [1]={ limit={ @@ -33149,7 +33882,7 @@ return { [2]="killing_blow_consumes_corpse_restore_x_mana" } }, - [1047]={ + [1066]={ [1]={ [1]={ limit={ @@ -33166,7 +33899,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [1048]={ + [1067]={ [1]={ [1]={ limit={ @@ -33183,7 +33916,7 @@ return { [1]="kinetic_bolt_forks_apply_to_zig_zags" } }, - [1049]={ + [1068]={ [1]={ [1]={ limit={ @@ -33235,7 +33968,7 @@ return { [2]="quality_display_kinetic_fusillade_is_gem" } }, - [1050]={ + [1069]={ [1]={ [1]={ limit={ @@ -33261,7 +33994,7 @@ return { [1]="kinetic_fusillade_maximum_floating_projectiles" } }, - [1051]={ + [1070]={ [1]={ [1]={ limit={ @@ -33287,7 +34020,7 @@ return { [1]="kinetic_instability_maximum_number_of_instability_orbs_allowed" } }, - [1052]={ + [1071]={ [1]={ [1]={ limit={ @@ -33322,7 +34055,7 @@ return { [2]="kinetic_shell_maximum_damage_absorbed_from_hits" } }, - [1053]={ + [1072]={ [1]={ [1]={ [1]={ @@ -33343,7 +34076,7 @@ return { [1]="kinetic_shell_immunity_after_explosion_ms" } }, - [1054]={ + [1073]={ [1]={ [1]={ limit={ @@ -33369,7 +34102,7 @@ return { [1]="kinetic_shell_number_of_active_buffs_allowed" } }, - [1055]={ + [1074]={ [1]={ [1]={ limit={ @@ -33395,7 +34128,7 @@ return { [1]="kinetic_shell_transfer_to_X_targets_on_projectile_hit" } }, - [1056]={ + [1075]={ [1]={ [1]={ limit={ @@ -33425,7 +34158,7 @@ return { [1]="kinetic_wall_damage_+%_final_for_projectiles_chaining_off_wall" } }, - [1057]={ + [1076]={ [1]={ [1]={ limit={ @@ -33451,7 +34184,7 @@ return { [1]="kinetic_wall_maximum_number_of_hits" } }, - [1058]={ + [1077]={ [1]={ [1]={ [1]={ @@ -33472,7 +34205,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [1059]={ + [1078]={ [1]={ [1]={ [1]={ @@ -33510,7 +34243,7 @@ return { [1]="lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies" } }, - [1060]={ + [1079]={ [1]={ [1]={ limit={ @@ -33540,7 +34273,7 @@ return { [1]="lancing_steel_damage_+%_at_close_range" } }, - [1061]={ + [1080]={ [1]={ [1]={ limit={ @@ -33570,7 +34303,7 @@ return { [1]="lancing_steel_damage_+%_final_after_first_hit_on_target" } }, - [1062]={ + [1081]={ [1]={ [1]={ limit={ @@ -33600,7 +34333,7 @@ return { [1]="lancing_steel_targeting_range_+%" } }, - [1063]={ + [1082]={ [1]={ [1]={ [1]={ @@ -33638,7 +34371,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [1064]={ + [1083]={ [1]={ [1]={ limit={ @@ -33664,7 +34397,7 @@ return { [1]="lightning_arrow_alt_additional_strikes" } }, - [1065]={ + [1084]={ [1]={ [1]={ [1]={ @@ -33685,7 +34418,7 @@ return { [1]="lightning_arrow_alt_strike_frequency_ms" } }, - [1066]={ + [1085]={ [1]={ [1]={ limit={ @@ -33711,7 +34444,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [1067]={ + [1086]={ [1]={ [1]={ limit={ @@ -33737,7 +34470,7 @@ return { [1]="lightning_arrow_stack_limit" } }, - [1068]={ + [1087]={ [1]={ [1]={ limit={ @@ -33763,7 +34496,7 @@ return { [1]="lightning_conduit_max_num_targets" } }, - [1069]={ + [1088]={ [1]={ [1]={ [1]={ @@ -33797,7 +34530,7 @@ return { [1]="lightning_tendrils_channelled_base_radius_+_per_second_while_channelling" } }, - [1070]={ + [1089]={ [1]={ [1]={ limit={ @@ -33827,7 +34560,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_area_of_effect_+%_final" } }, - [1071]={ + [1090]={ [1]={ [1]={ [1]={ @@ -33865,7 +34598,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_damage_+%_final" } }, - [1072]={ + [1091]={ [1]={ [1]={ [1]={ @@ -33899,7 +34632,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_radius_+" } }, - [1073]={ + [1092]={ [1]={ [1]={ limit={ @@ -33981,7 +34714,7 @@ return { [3]="quality_display_lightning_tower_trap_is_gem" } }, - [1074]={ + [1093]={ [1]={ [1]={ [1]={ @@ -34002,7 +34735,7 @@ return { [1]="link_skills_deal_cold_dot_to_enemies_in_beam_aoe" } }, - [1075]={ + [1094]={ [1]={ [1]={ limit={ @@ -34028,7 +34761,7 @@ return { [1]="living_lightning_number_of_minions_to_spawn" } }, - [1076]={ + [1095]={ [1]={ [1]={ limit={ @@ -34089,7 +34822,7 @@ return { [2]="quality_display_living_lightning_is_gem" } }, - [1077]={ + [1096]={ [1]={ [1]={ limit={ @@ -34106,7 +34839,7 @@ return { [1]="living_lightning_triggered_on_lightning_hit" } }, - [1078]={ + [1097]={ [1]={ [1]={ [1]={ @@ -34127,7 +34860,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [1079]={ + [1098]={ [1]={ [1]={ limit={ @@ -34144,7 +34877,97 @@ return { [1]="lose_all_trauma_at_X_trauma" } }, - [1080]={ + [1099]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Physical Damage per Lunar Protection" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Physical Damage per Lunar Protection" + } + }, + name="lunaris_aspect_phys", + stats={ + [1]="lunaris_aspect_physical_damage_taken_+%_final_per_phys_rebuff" + } + }, + [1100]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Elemental Damage per Lunar Resistance" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Elemental Damage per Lunar Resistance" + } + }, + name="lunaris_aspect_ele", + stats={ + [1]="lunaris_aspect_skill_elemental_damage_taken_+%_final_per_ele_rebuff" + } + }, + [1101]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Physical Damage per Lunar Protection" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Physical Damage per Lunar Protection" + } + }, + name="lunaris_aspect_phys", + stats={ + [1]="lunaris_aspect_skill_physical_damage_taken_+%_final_per_phys_rebuff" + } + }, + [1102]={ [1]={ [1]={ limit={ @@ -34174,7 +34997,7 @@ return { [1]="magma_brand_ailment_damage_+%_final_per_additional_pustule" } }, - [1081]={ + [1103]={ [1]={ [1]={ limit={ @@ -34204,7 +35027,7 @@ return { [1]="magma_brand_hit_damage_+%_final_per_additional_pustule" } }, - [1082]={ + [1104]={ [1]={ [1]={ limit={ @@ -34221,7 +35044,7 @@ return { [1]="magma_orb_%_chance_to_big_explode_instead_of_chaining" } }, - [1083]={ + [1105]={ [1]={ [1]={ limit={ @@ -34251,7 +35074,7 @@ return { [1]="maim_effect_+%" } }, - [1084]={ + [1106]={ [1]={ [1]={ [1]={ @@ -34285,7 +35108,7 @@ return { [1]="maim_on_hit_%" } }, - [1085]={ + [1107]={ [1]={ [1]={ [1]={ @@ -34310,7 +35133,7 @@ return { [1]="mamba_strike_deal_%_of_all_poison_total_damage_per_minute" } }, - [1086]={ + [1108]={ [1]={ [1]={ limit={ @@ -34340,7 +35163,41 @@ return { [1]="mana_gain_per_target" } }, - [1087]={ + [1109]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Releases an Arcane Wave on Block no more than once every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Releases an Arcane Wave on Block no more than once every {0} seconds" + } + }, + name="mana_infused_staff_trigger_interval", + stats={ + [1]="mana_infused_staff_base_trigger_interval_ms" + } + }, + [1110]={ [1]={ [1]={ limit={ @@ -34375,7 +35232,7 @@ return { [2]="quality_display_manabond_is_gem" } }, - [1088]={ + [1111]={ [1]={ [1]={ limit={ @@ -34392,7 +35249,7 @@ return { [1]="display_manabond_length" } }, - [1089]={ + [1112]={ [1]={ [1]={ limit={ @@ -34409,7 +35266,7 @@ return { [1]="manaforged_arrows_total_mana_threshold" } }, - [1090]={ + [1113]={ [1]={ [1]={ limit={ @@ -34426,7 +35283,7 @@ return { [1]="max_crab_aspect_stacks" } }, - [1091]={ + [1114]={ [1]={ [1]={ limit={ @@ -34443,7 +35300,7 @@ return { [1]="max_number_of_absolution_sentinels" } }, - [1092]={ + [1115]={ [1]={ [1]={ limit={ @@ -34460,7 +35317,7 @@ return { [1]="max_number_of_lightning_warp_markers" } }, - [1093]={ + [1116]={ [1]={ [1]={ limit={ @@ -34477,7 +35334,33 @@ return { [1]="max_steel_ammo" } }, - [1094]={ + [1117]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Barnacle" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} Barnacles" + } + }, + name="max_barnacles", + stats={ + [1]="maximum_barnacle_count_allowed" + } + }, + [1118]={ [1]={ [1]={ [1]={ @@ -34515,7 +35398,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [1095]={ + [1119]={ [1]={ [1]={ limit={ @@ -34576,7 +35459,7 @@ return { [2]="quality_display_shield_of_light_additional_waves_is_gem" } }, - [1096]={ + [1120]={ [1]={ [1]={ limit={ @@ -34593,7 +35476,7 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [1097]={ + [1121]={ [1]={ [1]={ limit={ @@ -34619,7 +35502,7 @@ return { [1]="galvanic_field_maximum_number_of_spheres" } }, - [1098]={ + [1122]={ [1]={ [1]={ limit={ @@ -34645,7 +35528,7 @@ return { [1]="maximum_number_of_mirage_warriors" } }, - [1099]={ + [1123]={ [1]={ [1]={ limit={ @@ -34761,7 +35644,7 @@ return { [4]="quality_display_venom_gyre_is_gem" } }, - [1100]={ + [1124]={ [1]={ [1]={ limit={ @@ -34809,7 +35692,7 @@ return { [2]="quality_display_generals_cry_is_gem" } }, - [1101]={ + [1125]={ [1]={ [1]={ limit={ @@ -34835,7 +35718,7 @@ return { [1]="maximum_number_of_summoned_doubles" } }, - [1102]={ + [1126]={ [1]={ [1]={ limit={ @@ -34861,7 +35744,7 @@ return { [1]="maximum_number_of_vaal_ice_shot_mirages" } }, - [1103]={ + [1127]={ [1]={ [1]={ limit={ @@ -34896,7 +35779,7 @@ return { [2]="quality_display_herald_of_agony_is_gem" } }, - [1104]={ + [1128]={ [1]={ [1]={ limit={ @@ -34922,7 +35805,7 @@ return { [1]="virtual_number_of_spirit_strikes" } }, - [1105]={ + [1129]={ [1]={ [1]={ limit={ @@ -34939,7 +35822,7 @@ return { [1]="mine_cannot_rearm" } }, - [1106]={ + [1130]={ [1]={ [1]={ limit={ @@ -34969,7 +35852,7 @@ return { [1]="mine_critical_strike_chance_+%_per_power_charge" } }, - [1107]={ + [1131]={ [1]={ [1]={ limit={ @@ -34986,7 +35869,7 @@ return { [1]="mine_detonates_instantly" } }, - [1108]={ + [1132]={ [1]={ [1]={ limit={ @@ -35016,7 +35899,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [1109]={ + [1133]={ [1]={ [1]={ limit={ @@ -35046,7 +35929,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [1110]={ + [1134]={ [1]={ [1]={ limit={ @@ -35076,7 +35959,7 @@ return { [1]="mine_throwing_speed_+%_per_frenzy_charge" } }, - [1111]={ + [1135]={ [1]={ [1]={ limit={ @@ -35098,7 +35981,7 @@ return { [2]="maximum_added_chaos_damage_per_level" } }, - [1112]={ + [1136]={ [1]={ [1]={ limit={ @@ -35120,7 +36003,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [1113]={ + [1137]={ [1]={ [1]={ limit={ @@ -35142,7 +36025,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [1114]={ + [1138]={ [1]={ [1]={ limit={ @@ -35164,7 +36047,7 @@ return { [2]="maximum_added_fire_damage_per_level" } }, - [1115]={ + [1139]={ [1]={ [1]={ limit={ @@ -35186,7 +36069,7 @@ return { [2]="maximum_added_lightning_damage_from_skill" } }, - [1116]={ + [1140]={ [1]={ [1]={ [1]={ @@ -35207,7 +36090,7 @@ return { [1]="minimum_power_from_quality" } }, - [1117]={ + [1141]={ [1]={ [1]={ limit={ @@ -35229,7 +36112,7 @@ return { [2]="maximum_secondary_physical_damage_per_15_strength" } }, - [1118]={ + [1142]={ [1]={ [1]={ limit={ @@ -35246,7 +36129,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [1119]={ + [1143]={ [1]={ [1]={ [1]={ @@ -35267,7 +36150,7 @@ return { [1]="minion_aggravate_bleeding_on_attack_hit_chance_%" } }, - [1120]={ + [1144]={ [1]={ [1]={ limit={ @@ -35297,7 +36180,7 @@ return { [1]="minion_ailment_damage_+%" } }, - [1121]={ + [1145]={ [1]={ [1]={ limit={ @@ -35327,7 +36210,7 @@ return { [1]="minion_area_of_effect_+%" } }, - [1122]={ + [1146]={ [1]={ [1]={ [1]={ @@ -35365,7 +36248,7 @@ return { [1]="minion_attack_speed_+%_when_on_low_life" } }, - [1123]={ + [1147]={ [1]={ [1]={ limit={ @@ -35382,7 +36265,7 @@ return { [1]="minion_block_%" } }, - [1124]={ + [1148]={ [1]={ [1]={ limit={ @@ -35412,7 +36295,7 @@ return { [1]="minion_burning_damage_+%" } }, - [1125]={ + [1149]={ [1]={ [1]={ limit={ @@ -35429,7 +36312,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [1126]={ + [1150]={ [1]={ [1]={ limit={ @@ -35446,7 +36329,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [1127]={ + [1151]={ [1]={ [1]={ limit={ @@ -35476,7 +36359,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [1128]={ + [1152]={ [1]={ [1]={ [1]={ @@ -35497,7 +36380,7 @@ return { [1]="minion_critical_strike_chance_+%_per_attack_crit_recently_up_to_100" } }, - [1129]={ + [1153]={ [1]={ [1]={ limit={ @@ -35527,7 +36410,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [1130]={ + [1154]={ [1]={ [1]={ [1]={ @@ -35548,7 +36431,7 @@ return { [1]="minion_critical_strike_multiplier_+_per_attack_crit_recently_up_to_100" } }, - [1131]={ + [1155]={ [1]={ [1]={ limit={ @@ -35565,7 +36448,7 @@ return { [1]="minion_critical_strike_multiplier_+" } }, - [1132]={ + [1156]={ [1]={ [1]={ limit={ @@ -35595,7 +36478,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [1133]={ + [1157]={ [1]={ [1]={ limit={ @@ -35625,7 +36508,7 @@ return { [1]="minion_fire_damage_taken_+%" } }, - [1134]={ + [1158]={ [1]={ [1]={ [1]={ @@ -35646,7 +36529,7 @@ return { [1]="minion_grant_puppet_master_buff_to_parent_on_hit_%" } }, - [1135]={ + [1159]={ [1]={ [1]={ [1]={ @@ -35667,7 +36550,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [1136]={ + [1160]={ [1]={ [1]={ [1]={ @@ -35688,7 +36571,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [1137]={ + [1161]={ [1]={ [1]={ [1]={ @@ -35709,7 +36592,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [1138]={ + [1162]={ [1]={ [1]={ limit={ @@ -35739,7 +36622,7 @@ return { [1]="minion_melee_damage_+%" } }, - [1139]={ + [1163]={ [1]={ [1]={ [1]={ @@ -35781,7 +36664,7 @@ return { [1]="minion_melee_range_+" } }, - [1140]={ + [1164]={ [1]={ [1]={ limit={ @@ -35807,7 +36690,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [1141]={ + [1165]={ [1]={ [1]={ limit={ @@ -35824,7 +36707,7 @@ return { [1]="minion_sacrifice_%_damage_to_regen" } }, - [1142]={ + [1166]={ [1]={ [1]={ limit={ @@ -35841,7 +36724,7 @@ return { [1]="minion_sacrifice_%_minion_life_explosion" } }, - [1143]={ + [1167]={ [1]={ [1]={ limit={ @@ -35858,7 +36741,7 @@ return { [1]="minion_sacrifice_%_minion_life_to_degen" } }, - [1144]={ + [1168]={ [1]={ [1]={ limit={ @@ -35888,7 +36771,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [1145]={ + [1169]={ [1]={ [1]={ limit={ @@ -35918,7 +36801,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [1146]={ + [1170]={ [1]={ [1]={ [1]={ @@ -35956,7 +36839,7 @@ return { [1]="minion_withered_effect_+%" } }, - [1147]={ + [1171]={ [1]={ [1]={ [1]={ @@ -35990,7 +36873,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [1148]={ + [1172]={ [1]={ [1]={ [1]={ @@ -36024,7 +36907,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [1149]={ + [1173]={ [1]={ [1]={ limit={ @@ -36041,7 +36924,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [1150]={ + [1174]={ [1]={ [1]={ limit={ @@ -36067,7 +36950,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [1151]={ + [1175]={ [1]={ [1]={ limit={ @@ -36084,7 +36967,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [1152]={ + [1176]={ [1]={ [1]={ limit={ @@ -36101,7 +36984,7 @@ return { [1]="minions_use_your_main_hand_base_attack_duration_from_weapon" } }, - [1153]={ + [1177]={ [1]={ [1]={ limit={ @@ -36118,7 +37001,7 @@ return { [1]="minions_use_your_main_hand_base_crit_chance_from_weapon" } }, - [1154]={ + [1178]={ [1]={ [1]={ limit={ @@ -36135,7 +37018,7 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [1155]={ + [1179]={ [1]={ [1]={ limit={ @@ -36152,7 +37035,24 @@ return { [1]="misty_reflection_clone_base_maximum_life_%_of_owner_maximum_life" } }, - [1156]={ + [1180]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="For each additional Projectile this skill would fire, create an additional Ghostly Cannon instead" + } + }, + name="ghost_cannon_proj", + stats={ + [1]="modifiers_to_number_of_projectiles_instead_apply_to_number_of_summoned_ghost_cannons" + } + }, + [1181]={ [1]={ [1]={ limit={ @@ -36226,7 +37126,7 @@ return { [4]="graft_skill_xoph_molten_shell_absorb_limit" } }, - [1157]={ + [1182]={ [1]={ [1]={ limit={ @@ -36261,7 +37161,7 @@ return { [2]="display_vaal_molten_shell_alternate_description" } }, - [1158]={ + [1183]={ [1]={ [1]={ limit={ @@ -36278,7 +37178,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [1159]={ + [1184]={ [1]={ [1]={ limit={ @@ -36304,7 +37204,7 @@ return { [1]="molten_strike_every_5th_attack_fire_X_additional_projectiles" } }, - [1160]={ + [1185]={ [1]={ [1]={ limit={ @@ -36334,7 +37234,7 @@ return { [1]="molten_strike_every_5th_attack_projectiles_damage_+%_final" } }, - [1161]={ + [1186]={ [1]={ [1]={ limit={ @@ -36351,7 +37251,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [1162]={ + [1187]={ [1]={ [1]={ limit={ @@ -36381,7 +37281,7 @@ return { [1]="mortal_call_elemental_damage_taken_+%_final" } }, - [1163]={ + [1188]={ [1]={ [1]={ limit={ @@ -36411,7 +37311,7 @@ return { [1]="mortal_call_physical_damage_taken_+%_final" } }, - [1164]={ + [1189]={ [1]={ [1]={ [1]={ @@ -36471,7 +37371,7 @@ return { [2]="quality_display_immortal_call_is_gem" } }, - [1165]={ + [1190]={ [1]={ [1]={ limit={ @@ -36501,7 +37401,7 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [1166]={ + [1191]={ [1]={ [1]={ limit={ @@ -36531,7 +37431,7 @@ return { [1]="multistrike_area_of_effect_+%_per_repeat" } }, - [1167]={ + [1192]={ [1]={ [1]={ limit={ @@ -36561,7 +37461,7 @@ return { [1]="multistrike_damage_+%_final_on_first_repeat" } }, - [1168]={ + [1193]={ [1]={ [1]={ limit={ @@ -36591,7 +37491,7 @@ return { [1]="multistrike_damage_+%_final_on_second_repeat" } }, - [1169]={ + [1194]={ [1]={ [1]={ limit={ @@ -36621,7 +37521,7 @@ return { [1]="multistrike_damage_+%_final_on_third_repeat" } }, - [1170]={ + [1195]={ [1]={ [1]={ limit={ @@ -36651,7 +37551,7 @@ return { [1]="napalm_arrow_detonation_hit_damage_+%_final" } }, - [1171]={ + [1196]={ [1]={ [1]={ limit={ @@ -36681,7 +37581,7 @@ return { [1]="napalm_arrow_ignite_damage_+%_final_with_detonation" } }, - [1172]={ + [1197]={ [1]={ [1]={ limit={ @@ -36707,7 +37607,7 @@ return { [1]="napalm_arrow_maximum_number_of_unprimed_arrows_allowed" } }, - [1173]={ + [1198]={ [1]={ [1]={ limit={ @@ -36724,7 +37624,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [1174]={ + [1199]={ [1]={ [1]={ limit={ @@ -36741,7 +37641,7 @@ return { [1]="no_cost" } }, - [1175]={ + [1200]={ [1]={ [1]={ [1]={ @@ -36779,7 +37679,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [1176]={ + [1201]={ [1]={ [1]={ limit={ @@ -36840,7 +37740,7 @@ return { [2]="quality_display_firewall_is_gem" } }, - [1177]={ + [1202]={ [1]={ [1]={ limit={ @@ -36857,7 +37757,7 @@ return { [1]="number_of_allowed_storm_arrows" } }, - [1178]={ + [1203]={ [1]={ [1]={ limit={ @@ -36883,7 +37783,7 @@ return { [1]="number_of_champions_of_light_allowed" } }, - [1179]={ + [1204]={ [1]={ [1]={ limit={ @@ -36909,7 +37809,7 @@ return { [1]="number_of_corpses_to_consume" } }, - [1180]={ + [1205]={ [1]={ [1]={ limit={ @@ -36935,7 +37835,7 @@ return { [1]="base_number_of_effigies_allowed" } }, - [1181]={ + [1206]={ [1]={ [1]={ limit={ @@ -36961,7 +37861,7 @@ return { [1]="number_of_herald_scorpions_allowed" } }, - [1182]={ + [1207]={ [1]={ [1]={ limit={ @@ -36987,7 +37887,7 @@ return { [1]="number_of_mirage_archers_allowed" } }, - [1183]={ + [1208]={ [1]={ [1]={ limit={ @@ -37013,7 +37913,7 @@ return { [1]="number_of_reapers_allowed" } }, - [1184]={ + [1209]={ [1]={ [1]={ limit={ @@ -37039,7 +37939,7 @@ return { [1]="number_of_relics_allowed" } }, - [1185]={ + [1210]={ [1]={ [1]={ limit={ @@ -37065,7 +37965,7 @@ return { [1]="number_of_void_spawns_allowed" } }, - [1186]={ + [1211]={ [1]={ [1]={ [1]={ @@ -37125,7 +38025,7 @@ return { [3]="support_gluttony_disgorge_buff_duration_ms" } }, - [1187]={ + [1212]={ [1]={ [1]={ [1]={ @@ -37159,7 +38059,7 @@ return { [1]="orb_of_storms_bolt_frequency_ms" } }, - [1188]={ + [1213]={ [1]={ [1]={ [1]={ @@ -37193,7 +38093,7 @@ return { [1]="orb_of_storms_channelling_bolt_frequency_ms" } }, - [1189]={ + [1214]={ [1]={ [1]={ limit={ @@ -37210,7 +38110,7 @@ return { [1]="orb_of_storms_maximum_number_of_hits" } }, - [1190]={ + [1215]={ [1]={ [1]={ limit={ @@ -37240,7 +38140,7 @@ return { [1]="overpowered_effect_+%" } }, - [1191]={ + [1216]={ [1]={ [1]={ [1]={ @@ -37261,7 +38161,498 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [1192]={ + [1217]={ + [1]={ + [1]={ + ["gem_quality"]=true, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Empowers the next {0:+d} Spells you Cast" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Empowers the next Spell you Cast" + }, + [3]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Empowers the next {0} Spells you Cast" + }, + [4]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=1, + [2]=1 + } + }, + text="Empowers the next non-Ailment Damage over Time Spell you Cast" + }, + [5]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=1, + [2]=1 + } + }, + text="Empowers the next {0} non-Ailment Damage over Time Spells you Cast" + }, + [6]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=2, + [2]=2 + } + }, + text="Empowers the next damaging Vaal Spell you Cast" + }, + [7]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=2, + [2]=2 + } + }, + text="Empowers the next {0} damaging Vaal Spells you Cast" + }, + [8]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=3, + [2]=3 + } + }, + text="Empowers the next Channelling Spell you Cast" + }, + [9]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=3, + [2]=3 + } + }, + text="Empowers the next {0} Channelling Spells you Cast" + } + }, + name="empowers_spells_cast", + stats={ + [1]="skill_empowers_next_x_spells_cast", + [2]="pact_empower_limitation_specifier_for_stat_description" + } + }, + [1218]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDamagingAilments" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Empowered Skills deal {0}% more Damage with Hits and Ailments" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextDamagingAilments" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Empowered Skills deal {0}% less Damage with Hits and Ailments" + } + }, + name="pact_empowered_spell_hit_ailment_damage", + stats={ + [1]="pact_skill_damage_+%_final_with_hits_and_ailments_to_grant" + } + }, + [1219]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Empowered Skills deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Empowered Skill deal {0}% less Damage" + } + }, + name="pact_empowered_spell_damage", + stats={ + [1]="pact_skill_grant_damage_+%_final_to_exerted_skills" + } + }, + [1220]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Empowered Skills deal {0}% more Damage over Time" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Empowered Skill deal {0}% less Damage over Time" + } + }, + name="pact_empowered_spell_damage_over_time", + stats={ + [1]="pact_skill_grant_damage_over_time_+%_final_to_spells" + } + }, + [1221]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Empowered Skills also affect an additional area in a spiral around the targeted area" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Empowered Skills also affect {0} additional areas in a spiral around the targeted area" + } + }, + name="pact_empowered_spell_cascades_to_do_in_spiral", + stats={ + [1]="pact_skill_grant_x_cascades_to_do_in_spiral" + } + }, + [1222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Beams from Empowered Skills Chain an additional time" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Beams from Empowered Skills Chain {0} additional times" + } + }, + name="pact_empowered_spell_beam_only_chains", + stats={ + [1]="pact_skill_additional_beam_only_chains" + } + }, + [1223]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Empowered Skills fire an additional Projectile\nEmpowered Skills fire Projectiles in a circle" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Empowered Skills fire {0} additional Projectiles\nEmpowered Skills fire Projectiles in a circle" + } + }, + name="pact_empowered_spell_projectiles_fired_in_nova", + stats={ + [1]="pact_skill_grant_x_additional_projectiles_fired_in_nova" + } + }, + [1224]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Hunger of Ghorr base duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hunger of Ghorr base duration is {0} seconds" + } + }, + name="bloodrite_base_duration", + stats={ + [1]="skill_grants_bloodrite_for_base_X_ms_on_use" + } + }, + [1225]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Hunger of Ghorr duration is {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hunger of Ghorr duration is {0} seconds" + } + }, + name="bloodrite_duration", + stats={ + [1]="virtual_skill_grants_bloodrite_for_X_ms_on_use" + } + }, + [1226]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Empowered skills have {0}% more Soul Gain Prevention Duration" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Empowered skills have {0}% less Soul Gain Prevention Duration" + } + }, + name="pact_vaal_skill_soul_gain_prevention_final", + stats={ + [1]="active_skill_osm_vaal_skill_soul_gain_prevention_+%_final_to_grant" + } + }, + [1227]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Hunger of Ghorr triggers Fleshrend every {0} second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hunger of Ghorr triggers Fleshrend every {0} seconds" + } + }, + name="bloodrite_base_trigger_frequency", + stats={ + [1]="bloodrite_base_trigger_frequency_ms" + } + }, + [1228]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Empowered skills have {0}% chance to regain consumed Souls when used" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Empowered skills regain consumed Souls when used" + } + }, + name="pact_refund_vaal_souls_chance", + stats={ + [1]="active_skill_osm_vaal_skill_soul_refund_chance_%_to_grant" + } + }, + [1229]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hunger of Ghorr triggers Fleshrend {0}% faster per Stage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Hunger of Ghorr triggers Fleshrend {0}% slower per Stage" + } + }, + name="bloodrite_trigger_frequency_per_stage", + stats={ + [1]="bloodrite_trigger_frequency_+%_per_stage" + } + }, + [1230]={ [1]={ [1]={ limit={ @@ -37291,7 +38682,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [1193]={ + [1231]={ [1]={ [1]={ limit={ @@ -37308,7 +38699,7 @@ return { [1]="penance_brand_additional_descriptions_boolean" } }, - [1194]={ + [1232]={ [1]={ [1]={ [1]={ @@ -37342,7 +38733,7 @@ return { [1]="penance_brand_base_spread_radius_+" } }, - [1195]={ + [1233]={ [1]={ [1]={ limit={ @@ -37359,7 +38750,7 @@ return { [1]="penance_brand_pulses_instead_of_explode" } }, - [1196]={ + [1234]={ [1]={ [1]={ limit={ @@ -37385,7 +38776,7 @@ return { [1]="penance_mark_summon_phantasms_when_hit" } }, - [1197]={ + [1235]={ [1]={ [1]={ [1]={ @@ -37406,7 +38797,7 @@ return { [1]="penance_mark_phantasm_duration_display" } }, - [1198]={ + [1236]={ [1]={ [1]={ limit={ @@ -37423,7 +38814,7 @@ return { [1]="penetrate_%_fire_resistance_per_100_dexterity" } }, - [1199]={ + [1237]={ [1]={ [1]={ limit={ @@ -37449,7 +38840,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [1200]={ + [1238]={ [1]={ [1]={ limit={ @@ -37475,7 +38866,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [1201]={ + [1239]={ [1]={ [1]={ limit={ @@ -37501,7 +38892,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [1202]={ + [1240]={ [1]={ [1]={ limit={ @@ -37527,7 +38918,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [1203]={ + [1241]={ [1]={ [1]={ limit={ @@ -37544,7 +38935,7 @@ return { [1]="petrification_statue_target_action_speed_-%" } }, - [1204]={ + [1242]={ [1]={ [1]={ limit={ @@ -37566,7 +38957,7 @@ return { [2]="phantasm_grant_buff_maximum_added_physical_damage" } }, - [1205]={ + [1243]={ [1]={ [1]={ limit={ @@ -37592,7 +38983,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [1206]={ + [1244]={ [1]={ [1]={ limit={ @@ -37674,7 +39065,7 @@ return { [3]="quality_display_phys_cascade_trap_is_gem" } }, - [1207]={ + [1245]={ [1]={ [1]={ limit={ @@ -37691,7 +39082,7 @@ return { [1]="physical_damage_reduction_%_per_crab_aspect_stack" } }, - [1208]={ + [1246]={ [1]={ [1]={ limit={ @@ -37721,7 +39112,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [1209]={ + [1247]={ [1]={ [1]={ limit={ @@ -37751,7 +39142,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [1210]={ + [1248]={ [1]={ [1]={ limit={ @@ -37768,7 +39159,7 @@ return { [1]="poison_damage_+100%_final_chance" } }, - [1211]={ + [1249]={ [1]={ [1]={ limit={ @@ -37785,7 +39176,7 @@ return { [1]="poison_dot_multiplier_+" } }, - [1212]={ + [1250]={ [1]={ [1]={ [1]={ @@ -37806,7 +39197,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [1213]={ + [1251]={ [1]={ [1]={ limit={ @@ -37832,7 +39223,7 @@ return { [1]="power_siphon_fire_at_x_targets" } }, - [1214]={ + [1252]={ [1]={ [1]={ limit={ @@ -37858,7 +39249,7 @@ return { [1]="primary_projectile_chain_num" } }, - [1215]={ + [1253]={ [1]={ [1]={ [1]={ @@ -37892,7 +39283,7 @@ return { [1]="primary_projectile_impale_chance_%" } }, - [1216]={ + [1254]={ [1]={ [1]={ [1]={ @@ -37926,7 +39317,7 @@ return { [1]="prismatic_rain_beam_frequency_ms" } }, - [1217]={ + [1255]={ [1]={ [1]={ limit={ @@ -37943,7 +39334,7 @@ return { [1]="projectile_additional_return_chance_%" } }, - [1218]={ + [1256]={ [1]={ [1]={ limit={ @@ -37973,7 +39364,7 @@ return { [1]="projectile_attack_damage_+%_in_blood_stance" } }, - [1219]={ + [1257]={ [1]={ [1]={ limit={ @@ -38021,7 +39412,7 @@ return { [2]="projectiles_can_split_from_terrain" } }, - [1220]={ + [1258]={ [1]={ [1]={ limit={ @@ -38047,7 +39438,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [1221]={ + [1259]={ [1]={ [1]={ limit={ @@ -38077,7 +39468,7 @@ return { [1]="projectile_damage_+%_final_if_pierced_enemy" } }, - [1222]={ + [1260]={ [1]={ [1]={ limit={ @@ -38107,7 +39498,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [1223]={ + [1261]={ [1]={ [1]={ limit={ @@ -38137,7 +39528,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [1224]={ + [1262]={ [1]={ [1]={ [1]={ @@ -38150,7 +39541,7 @@ return { [2]=10 } }, - text="Projectiles have {0} metre maximum range" + text="Projectiles have {0} metre maximum Direct Flight" }, [2]={ [1]={ @@ -38163,7 +39554,7 @@ return { [2]="#" } }, - text="Projectiles have {0} metres maximum range" + text="Projectiles have {0} metres maximum Direct Flight" } }, name="projectile_max_range_override", @@ -38171,7 +39562,7 @@ return { [1]="projectile_maximum_range_override" } }, - [1225]={ + [1263]={ [1]={ [1]={ limit={ @@ -38201,7 +39592,7 @@ return { [1]="projectile_speed_+%_in_sand_stance" } }, - [1226]={ + [1264]={ [1]={ [1]={ limit={ @@ -38218,7 +39609,7 @@ return { [1]="projectiles_cannot_split" } }, - [1227]={ + [1265]={ [1]={ [1]={ limit={ @@ -38248,7 +39639,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [1228]={ + [1266]={ [1]={ [1]={ limit={ @@ -38265,7 +39656,7 @@ return { [1]="projectiles_fork_when_passing_a_flame_wall" } }, - [1229]={ + [1267]={ [1]={ [1]={ [1]={ @@ -38299,7 +39690,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [1230]={ + [1268]={ [1]={ [1]={ limit={ @@ -38316,7 +39707,7 @@ return { [1]="projectiles_rain" } }, - [1231]={ + [1269]={ [1]={ [1]={ [1]={ @@ -38350,7 +39741,7 @@ return { [1]="puppet_master_duration_ms" } }, - [1232]={ + [1270]={ [1]={ [1]={ limit={ @@ -38367,7 +39758,7 @@ return { [1]="purge_dot_multiplier_+_per_100ms_duration_expired" } }, - [1233]={ + [1271]={ [1]={ [1]={ limit={ @@ -38384,7 +39775,7 @@ return { [1]="purge_expose_resist_%_matching_highest_element_damage" } }, - [1234]={ + [1272]={ [1]={ [1]={ limit={ @@ -38410,7 +39801,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [1235]={ + [1273]={ [1]={ [1]={ limit={ @@ -38427,7 +39818,7 @@ return { [1]="pyroclast_mine_aura_fire_exposure_%_to_apply" } }, - [1236]={ + [1274]={ [1]={ [1]={ limit={ @@ -38449,7 +39840,7 @@ return { [2]="quick_guard_damage_absorb_limit" } }, - [1237]={ + [1275]={ [1]={ [1]={ [1]={ @@ -38500,7 +39891,7 @@ return { [2]="radiant_sentinel_minion_burning_effect_radius" } }, - [1238]={ + [1276]={ [1]={ [1]={ limit={ @@ -38535,7 +39926,7 @@ return { [2]="quality_display_rage_vortex_is_gem" } }, - [1239]={ + [1277]={ [1]={ [1]={ limit={ @@ -38574,7 +39965,7 @@ return { [2]="rage_slash_rage_sacrifice_per_damage_bonus" } }, - [1240]={ + [1278]={ [1]={ [1]={ [1]={ @@ -38617,7 +40008,7 @@ return { [2]="rage_slash_rage_sacrifice_per_radius_bonus" } }, - [1241]={ + [1279]={ [1]={ [1]={ limit={ @@ -38647,7 +40038,7 @@ return { [1]="rage_slash_vortex_attack_speed_+%_final" } }, - [1242]={ + [1280]={ [1]={ [1]={ limit={ @@ -38673,7 +40064,7 @@ return { [1]="rage_slash_maximum_vortices" } }, - [1243]={ + [1281]={ [1]={ [1]={ [1]={ @@ -38694,7 +40085,7 @@ return { [1]="rage_storm_scaling_rage_hundred_times_base_cost" } }, - [1244]={ + [1282]={ [1]={ [1]={ limit={ @@ -38711,7 +40102,7 @@ return { [1]="rage_storm_scaling_rage_loss_+%_per_second" } }, - [1245]={ + [1283]={ [1]={ [1]={ limit={ @@ -38741,7 +40132,7 @@ return { [1]="ragestorm_movement_speed_+%" } }, - [1246]={ + [1284]={ [1]={ [1]={ limit={ @@ -38758,7 +40149,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [1247]={ + [1285]={ [1]={ [1]={ limit={ @@ -38775,7 +40166,7 @@ return { [1]="raised_spectre_level" } }, - [1248]={ + [1286]={ [1]={ [1]={ [1]={ @@ -38796,7 +40187,7 @@ return { [1]="random_nearby_minion_gain_a_soul_eater_soul_on_X_life_spent" } }, - [1249]={ + [1287]={ [1]={ [1]={ limit={ @@ -38813,7 +40204,7 @@ return { [1]="ranged_attack_totem_only_attacks_when_owner_attacks" } }, - [1250]={ + [1288]={ [1]={ [1]={ limit={ @@ -38822,7 +40213,7 @@ return { [2]="#" } }, - text="Buff grants {0}% more Damage against Enemies with\nthe same Monster Category\nBuff grants {0}% less Damage taken from Enemies with\nthe same Monster Category\nBuff lasts until you leave the area" + text="Buff grants {0}% more Damage against Enemies with\nthe same Monster Category\nBuff grants {0}% less Damage taken from Enemies with\nthe same Monster Category\nBuff lasts until you leave the area while you have this Skill" } }, name="ravenous_buff", @@ -38830,7 +40221,7 @@ return { [1]="ravenous_buff_magnitude" } }, - [1251]={ + [1289]={ [1]={ [1]={ limit={ @@ -38847,7 +40238,7 @@ return { [1]="reave_additional_max_stacks" } }, - [1252]={ + [1290]={ [1]={ [1]={ limit={ @@ -38877,7 +40268,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [1253]={ + [1291]={ [1]={ [1]={ [1]={ @@ -38898,7 +40289,7 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [1254]={ + [1292]={ [1]={ [1]={ limit={ @@ -38915,7 +40306,7 @@ return { [1]="recover_%_maximum_life_on_cull" } }, - [1255]={ + [1293]={ [1]={ [1]={ [1]={ @@ -38936,7 +40327,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [1256]={ + [1294]={ [1]={ [1]={ limit={ @@ -38953,7 +40344,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [1257]={ + [1295]={ [1]={ [1]={ limit={ @@ -38970,7 +40361,7 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [1258]={ + [1296]={ [1]={ [1]={ limit={ @@ -38987,7 +40378,7 @@ return { [1]="remove_chill_on_enemy_when_you_hit" } }, - [1259]={ + [1297]={ [1]={ [1]={ limit={ @@ -39004,7 +40395,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [1260]={ + [1298]={ [1]={ [1]={ limit={ @@ -39021,7 +40412,7 @@ return { [1]="ring_of_ice_placement_distance" } }, - [1261]={ + [1299]={ [1]={ [1]={ limit={ @@ -39030,7 +40421,7 @@ return { [2]=1 } }, - text="[DNT] {0:+d} Projectile per Ring of Light past the first" + text="DNT {0:+d} Projectile per Ring of Light past the first" }, [2]={ limit={ @@ -39039,7 +40430,7 @@ return { [2]="#" } }, - text="[DNT] {0:+d} Projectiles per Ring of Light past the first" + text="DNT {0:+d} Projectiles per Ring of Light past the first" } }, name="rings_of_light_additional_proj", @@ -39047,7 +40438,7 @@ return { [1]="rings_of_light_additional_projectiles_per_ring" } }, - [1262]={ + [1300]={ [1]={ [1]={ limit={ @@ -39073,7 +40464,7 @@ return { [1]="rings_of_light_maximum_rings_per_target" } }, - [1263]={ + [1301]={ [1]={ [1]={ limit={ @@ -39099,7 +40490,7 @@ return { [1]="rings_of_light_total_maximum_rings_allowed" } }, - [1264]={ + [1302]={ [1]={ [1]={ limit={ @@ -39151,7 +40542,7 @@ return { [2]="quality_display_rune_paint_area_is_gem" } }, - [1265]={ + [1303]={ [1]={ [1]={ limit={ @@ -39181,7 +40572,7 @@ return { [1]="rune_paint_area_of_effect_+%_per_rune_level" } }, - [1266]={ + [1304]={ [1]={ [1]={ [1]={ @@ -39245,7 +40636,7 @@ return { [2]="quality_display_rune_paint_is_gem" } }, - [1267]={ + [1305]={ [1]={ [1]={ limit={ @@ -39262,7 +40653,7 @@ return { [1]="rune_paint_mana_spend_per_rune_upgrade" } }, - [1268]={ + [1306]={ [1]={ [1]={ limit={ @@ -39288,7 +40679,7 @@ return { [1]="rune_paint_max_rune_level" } }, - [1269]={ + [1307]={ [1]={ [1]={ limit={ @@ -39340,7 +40731,7 @@ return { [2]="quality_display_sanctify_is_gem" } }, - [1270]={ + [1308]={ [1]={ [1]={ limit={ @@ -39370,7 +40761,7 @@ return { [1]="sand_mirage_triggered_skill_damage_+%_final" } }, - [1271]={ + [1309]={ [1]={ [1]={ limit={ @@ -39400,7 +40791,7 @@ return { [1]="scorpion_minion_attack_speed_+%" } }, - [1272]={ + [1310]={ [1]={ [1]={ limit={ @@ -39430,7 +40821,7 @@ return { [1]="scorpion_minion_physical_damage_+%" } }, - [1273]={ + [1311]={ [1]={ [1]={ limit={ @@ -39452,7 +40843,7 @@ return { [2]="scorpion_minion_maximum_added_physical_damage" } }, - [1274]={ + [1312]={ [1]={ [1]={ limit={ @@ -39478,7 +40869,7 @@ return { [1]="scourge_arrow_X_pods_per_projectile" } }, - [1275]={ + [1313]={ [1]={ [1]={ ["gem_quality"]=true, @@ -39532,7 +40923,7 @@ return { [1]="searing_bond_totems_detonation_damage_over_time_+%_final_per_active_totem" } }, - [1276]={ + [1314]={ [1]={ [1]={ limit={ @@ -39562,7 +40953,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [1277]={ + [1315]={ [1]={ [1]={ limit={ @@ -39588,7 +40979,7 @@ return { [1]="shaman_voodoo_pole_redirect_damage_to_player_at_%_value" } }, - [1278]={ + [1316]={ [1]={ [1]={ limit={ @@ -39614,7 +41005,7 @@ return { [1]="shaman_voodoo_pole_redirect_damage_to_pole_at_%_value" } }, - [1279]={ + [1317]={ [1]={ [1]={ limit={ @@ -39631,7 +41022,7 @@ return { [1]="shatter_on_killing_blow" } }, - [1280]={ + [1318]={ [1]={ [1]={ limit={ @@ -39657,7 +41048,7 @@ return { [1]="shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed" } }, - [1281]={ + [1319]={ [1]={ [1]={ limit={ @@ -39687,7 +41078,7 @@ return { [1]="shield_crush_damage_+%_final_from_distance" } }, - [1282]={ + [1320]={ [1]={ [1]={ limit={ @@ -39717,7 +41108,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [1283]={ + [1321]={ [1]={ [1]={ limit={ @@ -39747,7 +41138,7 @@ return { [1]="shock_effect_+%" } }, - [1284]={ + [1322]={ [1]={ [1]={ limit={ @@ -39777,7 +41168,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [1285]={ + [1323]={ [1]={ [1]={ [1]={ @@ -39798,7 +41189,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [1286]={ + [1324]={ [1]={ [1]={ limit={ @@ -39824,7 +41215,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [1287]={ + [1325]={ [1]={ [1]={ limit={ @@ -39854,7 +41245,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [1288]={ + [1326]={ [1]={ [1]={ limit={ @@ -39884,7 +41275,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [1289]={ + [1327]={ [1]={ [1]={ [1]={ @@ -39905,7 +41296,7 @@ return { [1]="shrapnel_shot_cone_placement_distance_+" } }, - [1290]={ + [1328]={ [1]={ [1]={ limit={ @@ -39953,7 +41344,7 @@ return { [2]="quality_display_explosive_trap_is_gem" } }, - [1291]={ + [1329]={ [1]={ [1]={ limit={ @@ -39970,7 +41361,7 @@ return { [1]="sigil_attached_target_fire_penetration_%" } }, - [1292]={ + [1330]={ [1]={ [1]={ limit={ @@ -39987,7 +41378,7 @@ return { [1]="sigil_attached_target_lightning_penetration_%" } }, - [1293]={ + [1331]={ [1]={ [1]={ [1]={ @@ -40008,7 +41399,7 @@ return { [1]="sigil_recall_extend_base_secondary_skill_effect_duration" } }, - [1294]={ + [1332]={ [1]={ [1]={ [1]={ @@ -40029,7 +41420,7 @@ return { [1]="sigil_recall_extend_base_skill_effect_duration" } }, - [1295]={ + [1333]={ [1]={ [1]={ limit={ @@ -40046,7 +41437,7 @@ return { [1]="sigils_can_target_reaper_minions" } }, - [1296]={ + [1334]={ [1]={ [1]={ [1]={ @@ -40085,7 +41476,7 @@ return { [2]="display_active_skill_forced_stance" } }, - [1297]={ + [1335]={ [1]={ [1]={ limit={ @@ -40115,7 +41506,7 @@ return { [1]="skill_area_angle_+%" } }, - [1298]={ + [1336]={ [1]={ [1]={ limit={ @@ -40141,7 +41532,7 @@ return { [1]="skill_area_of_effect_+%_final_in_sand_stance" } }, - [1299]={ + [1337]={ [1]={ [1]={ [1]={ @@ -40167,7 +41558,7 @@ return { [2]="quality_display_shock_chance_from_skill_is_gem" } }, - [1300]={ + [1338]={ [1]={ [1]={ limit={ @@ -40197,7 +41588,7 @@ return { [1]="skill_buff_grants_attack_and_cast_speed_+%" } }, - [1301]={ + [1339]={ [1]={ [1]={ limit={ @@ -40214,7 +41605,7 @@ return { [1]="skill_buff_grants_damage_+%_final_per_herald_skill_affecting_you" } }, - [1302]={ + [1340]={ [1]={ [1]={ limit={ @@ -40244,7 +41635,7 @@ return { [1]="skill_code_movement_speed_+%_final" } }, - [1303]={ + [1341]={ [1]={ [1]={ limit={ @@ -40261,7 +41652,7 @@ return { [1]="skill_convert_%_physical_damage_to_random_element" } }, - [1304]={ + [1342]={ [1]={ [1]={ limit={ @@ -40291,7 +41682,7 @@ return { [1]="skill_damage_+%_final_per_chain_from_skill_specific_stat" } }, - [1305]={ + [1343]={ [1]={ [1]={ [1]={ @@ -40329,7 +41720,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [1306]={ + [1344]={ [1]={ [1]={ [1]={ @@ -40350,7 +41741,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [1307]={ + [1345]={ [1]={ [1]={ limit={ @@ -40380,7 +41771,7 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [1308]={ + [1346]={ [1]={ [1]={ [1]={ @@ -40401,7 +41792,7 @@ return { [1]="skill_grant_elusive_when_used" } }, - [1309]={ + [1347]={ [1]={ [1]={ limit={ @@ -40418,7 +41809,7 @@ return { [1]="skill_has_trigger_from_unique_item" } }, - [1310]={ + [1348]={ [1]={ [1]={ limit={ @@ -40435,7 +41826,7 @@ return { [1]="skill_maximum_travel_distance_+%" } }, - [1311]={ + [1349]={ [1]={ [1]={ limit={ @@ -40461,7 +41852,7 @@ return { [1]="skill_number_of_triggers" } }, - [1312]={ + [1350]={ [1]={ [1]={ limit={ @@ -40478,7 +41869,7 @@ return { [1]="skill_travel_distance_+%" } }, - [1313]={ + [1351]={ [1]={ [1]={ limit={ @@ -40495,7 +41886,7 @@ return { [1]="skill_triggered_by_nearby_allies_kill_or_hit_rare_unique_%_chance" } }, - [1314]={ + [1352]={ [1]={ [1]={ limit={ @@ -40512,7 +41903,7 @@ return { [1]="skill_triggered_by_snipe" } }, - [1315]={ + [1353]={ [1]={ [1]={ limit={ @@ -40538,7 +41929,7 @@ return { [1]="skill_triggered_when_you_focus_chance_%" } }, - [1316]={ + [1354]={ [1]={ [1]={ limit={ @@ -40568,7 +41959,7 @@ return { [1]="skill_used_by_mirage_chieftain_damage_+%_final" } }, - [1317]={ + [1355]={ [1]={ [1]={ [1]={ @@ -40589,7 +41980,7 @@ return { [1]="skill_used_by_mirage_warrior_damage_+%_final" } }, - [1318]={ + [1356]={ [1]={ [1]={ limit={ @@ -40619,7 +42010,7 @@ return { [1]="skill_used_by_sacred_wisp_damage_+%_final" } }, - [1319]={ + [1357]={ [1]={ [1]={ limit={ @@ -40636,7 +42027,7 @@ return { [1]="skills_sacrifice_all_but_one_life_and_energy_shield_on_use" } }, - [1320]={ + [1358]={ [1]={ [1]={ limit={ @@ -40697,7 +42088,7 @@ return { [2]="quality_display_withering_step_is_gem" } }, - [1321]={ + [1359]={ [1]={ [1]={ limit={ @@ -40714,7 +42105,7 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [1322]={ + [1360]={ [1]={ [1]={ limit={ @@ -40762,7 +42153,7 @@ return { [2]="quality_display_snipe_is_gem" } }, - [1323]={ + [1361]={ [1]={ [1]={ [1]={ @@ -40847,7 +42238,7 @@ return { [2]="snipe_triggered_skill_ailment_damage_+%_final_per_stage" } }, - [1324]={ + [1362]={ [1]={ [1]={ limit={ @@ -40916,7 +42307,58 @@ return { [2]="snipe_triggered_skill_hit_damage_+%_final_per_stage" } }, - [1325]={ + [1363]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Sunscald causes {0}% increased effect of Exposure on affected enemies" + } + }, + name="solaris_debuff_effect", + stats={ + [1]="solaris_aspect_debuff_exposure_effect_+%_to_apply" + } + }, + [1364]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Inflicts Sunscald every second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Inflicts Sunscald every {0} seconds" + } + }, + name="solaris_interval", + stats={ + [1]="solaris_aspect_debuff_interval_ms" + } + }, + [1365]={ [1]={ [1]={ limit={ @@ -40933,7 +42375,7 @@ return { [1]="soulfeast_chaos_damage_to_self" } }, - [1326]={ + [1366]={ [1]={ [1]={ limit={ @@ -40981,7 +42423,7 @@ return { [2]="quality_display_forbidden_rite_is_gem" } }, - [1327]={ + [1367]={ [1]={ [1]={ [1]={ @@ -41002,7 +42444,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [1328]={ + [1368]={ [1]={ [1]={ limit={ @@ -41028,7 +42470,7 @@ return { [1]="spectral_spiral_weapon_number_of_bounces" } }, - [1329]={ + [1369]={ [1]={ [1]={ [1]={ @@ -41049,7 +42491,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [1330]={ + [1370]={ [1]={ [1]={ limit={ @@ -41079,7 +42521,7 @@ return { [1]="spell_area_damage_+%_in_blood_stance" } }, - [1331]={ + [1371]={ [1]={ [1]={ limit={ @@ -41109,7 +42551,7 @@ return { [1]="spell_area_of_effect_+%_in_sand_stance" } }, - [1332]={ + [1372]={ [1]={ [1]={ limit={ @@ -41126,7 +42568,7 @@ return { [1]="spell_cast_time_cannot_be_modified" } }, - [1333]={ + [1373]={ [1]={ [1]={ limit={ @@ -41143,7 +42585,7 @@ return { [1]="spell_echo_plus_chance_double_damage_%_final" } }, - [1334]={ + [1374]={ [1]={ [1]={ limit={ @@ -41160,7 +42602,7 @@ return { [1]="spell_has_trigger_from_crafted_item_mod" } }, - [1335]={ + [1375]={ [1]={ [1]={ [1]={ @@ -41194,7 +42636,7 @@ return { [1]="spell_impale_on_crit_%_chance" } }, - [1336]={ + [1376]={ [1]={ [1]={ limit={ @@ -41216,7 +42658,7 @@ return { [2]="spell_maximum_base_physical_damage_%_of_ward" } }, - [1337]={ + [1377]={ [1]={ [1]={ limit={ @@ -41238,7 +42680,7 @@ return { [2]="spell_maximum_base_physical_damage_per_shield_quality" } }, - [1338]={ + [1378]={ [1]={ [1]={ [1]={ @@ -41272,7 +42714,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [1339]={ + [1379]={ [1]={ [1]={ limit={ @@ -41289,7 +42731,7 @@ return { [1]="spellslinger_mana_reservation" } }, - [1340]={ + [1380]={ [1]={ [1]={ limit={ @@ -41315,7 +42757,7 @@ return { [1]="spider_aspect_max_web_count" } }, - [1341]={ + [1381]={ [1]={ [1]={ limit={ @@ -41332,7 +42774,7 @@ return { [1]="spike_slam_additional_spike_%_chance" } }, - [1342]={ + [1382]={ [1]={ [1]={ limit={ @@ -41401,7 +42843,7 @@ return { [2]="quality_display_earthshatter_spike_damage_is_gem" } }, - [1343]={ + [1383]={ [1]={ [1]={ limit={ @@ -41431,7 +42873,7 @@ return { [1]="spike_slam_fissure_damage_+%_final" } }, - [1344]={ + [1384]={ [1]={ [1]={ limit={ @@ -41461,7 +42903,7 @@ return { [1]="spike_slam_fissure_length_+%" } }, - [1345]={ + [1385]={ [1]={ [1]={ limit={ @@ -41522,7 +42964,7 @@ return { [2]="quality_display_max_spikes_is_gem" } }, - [1346]={ + [1386]={ [1]={ [1]={ limit={ @@ -41583,7 +43025,7 @@ return { [2]="quality_display_spike_slam_is_gem" } }, - [1347]={ + [1387]={ [1]={ [1]={ limit={ @@ -41613,7 +43055,7 @@ return { [1]="spike_slam_spike_damage_+%_final" } }, - [1348]={ + [1388]={ [1]={ [1]={ limit={ @@ -41643,7 +43085,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [1349]={ + [1389]={ [1]={ [1]={ limit={ @@ -41660,7 +43102,7 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [1350]={ + [1390]={ [1]={ [1]={ limit={ @@ -41690,7 +43132,7 @@ return { [1]="spiritual_cry_double_movement_velocity_+%" } }, - [1351]={ + [1391]={ [1]={ [1]={ limit={ @@ -41720,7 +43162,7 @@ return { [1]="splitting_steel_area_+%_final_after_splitting" } }, - [1352]={ + [1392]={ [1]={ [1]={ limit={ @@ -41750,7 +43192,7 @@ return { [1]="static_strike_beam_damage_+%_final" } }, - [1353]={ + [1393]={ [1]={ [1]={ limit={ @@ -41780,7 +43222,7 @@ return { [1]="static_strike_beam_damage_+%_final_while_moving" } }, - [1354]={ + [1394]={ [1]={ [1]={ limit={ @@ -41806,7 +43248,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [1355]={ + [1395]={ [1]={ [1]={ limit={ @@ -41832,7 +43274,7 @@ return { [1]="stationary_shield_throw_projectiles_per_interval" } }, - [1356]={ + [1396]={ [1]={ [1]={ limit={ @@ -41862,7 +43304,7 @@ return { [1]="stealth_+%" } }, - [1357]={ + [1397]={ [1]={ [1]={ limit={ @@ -41888,7 +43330,7 @@ return { [1]="steel_ammo_consumed_per_use" } }, - [1358]={ + [1398]={ [1]={ [1]={ limit={ @@ -41905,7 +43347,7 @@ return { [1]="steel_ammo_consumed_per_use_by_totem" } }, - [1359]={ + [1399]={ [1]={ [1]={ limit={ @@ -41931,7 +43373,7 @@ return { [1]="steel_skill_%_chance_to_not_consume_ammo" } }, - [1360]={ + [1400]={ [1]={ [1]={ limit={ @@ -41961,7 +43403,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [1361]={ + [1401]={ [1]={ [1]={ limit={ @@ -41991,7 +43433,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [1362]={ + [1402]={ [1]={ [1]={ limit={ @@ -42021,7 +43463,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [1363]={ + [1403]={ [1]={ [1]={ limit={ @@ -42038,7 +43480,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [1364]={ + [1404]={ [1]={ [1]={ limit={ @@ -42055,7 +43497,7 @@ return { [1]="storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos" } }, - [1365]={ + [1405]={ [1]={ [1]={ limit={ @@ -42072,7 +43514,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [1366]={ + [1406]={ [1]={ [1]={ limit={ @@ -42102,7 +43544,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [1367]={ + [1407]={ [1]={ [1]={ limit={ @@ -42132,7 +43574,7 @@ return { [1]="storm_burst_explosion_area_of_effect_+%" } }, - [1368]={ + [1408]={ [1]={ [1]={ limit={ @@ -42149,7 +43591,7 @@ return { [1]="storm_burst_new_damage_+%_final_per_remaining_teleport_zap" } }, - [1369]={ + [1409]={ [1]={ [1]={ limit={ @@ -42179,7 +43621,7 @@ return { [1]="storm_burst_zap_area_of_effect_+%" } }, - [1370]={ + [1410]={ [1]={ [1]={ limit={ @@ -42196,7 +43638,7 @@ return { [1]="storm_call_chance_to_strike_on_cast_%" } }, - [1371]={ + [1411]={ [1]={ [1]={ limit={ @@ -42257,7 +43699,7 @@ return { [2]="quality_display_storm_rain_is_gem" } }, - [1372]={ + [1412]={ [1]={ [1]={ limit={ @@ -42274,7 +43716,7 @@ return { [1]="summon_living_lightning_on_lightning_hit" } }, - [1373]={ + [1413]={ [1]={ [1]={ limit={ @@ -42291,7 +43733,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [1374]={ + [1414]={ [1]={ [1]={ limit={ @@ -42308,7 +43750,7 @@ return { [1]="summon_mirage_warrior_on_crit" } }, - [1375]={ + [1415]={ [1]={ [1]={ limit={ @@ -42325,7 +43767,7 @@ return { [1]="summon_sacred_wisps_on_hit" } }, - [1376]={ + [1416]={ [1]={ [1]={ limit={ @@ -42351,7 +43793,7 @@ return { [1]="summoned_raging_spirit_chance_to_spawn_additional_minion_%" } }, - [1377]={ + [1417]={ [1]={ [1]={ [1]={ @@ -42372,7 +43814,7 @@ return { [1]="summoned_sentinels_have_random_templar_aura" } }, - [1378]={ + [1418]={ [1]={ [1]={ limit={ @@ -42402,7 +43844,7 @@ return { [1]="summoned_spider_grants_attack_speed_+%" } }, - [1379]={ + [1419]={ [1]={ [1]={ limit={ @@ -42432,7 +43874,7 @@ return { [1]="summoned_spider_grants_poison_damage_+%" } }, - [1380]={ + [1420]={ [1]={ [1]={ limit={ @@ -42462,7 +43904,7 @@ return { [1]="sunder_shockwave_area_of_effect_+%" } }, - [1381]={ + [1421]={ [1]={ [1]={ limit={ @@ -42479,7 +43921,7 @@ return { [1]="sunder_shockwave_limit_per_cascade" } }, - [1382]={ + [1422]={ [1]={ [1]={ limit={ @@ -42509,7 +43951,7 @@ return { [1]="sunder_wave_area_of_effect_+%" } }, - [1383]={ + [1423]={ [1]={ [1]={ limit={ @@ -42539,7 +43981,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [1384]={ + [1424]={ [1]={ [1]={ limit={ @@ -42556,7 +43998,7 @@ return { [1]="sunder_wave_max_steps" } }, - [1385]={ + [1425]={ [1]={ [1]={ limit={ @@ -42573,7 +44015,7 @@ return { [1]="sunder_wave_min_steps" } }, - [1386]={ + [1426]={ [1]={ [1]={ [1]={ @@ -42684,7 +44126,33 @@ return { [2]="sunder_number_of_fake_chains" } }, - [1387]={ + [1427]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="This Skill has a {0}% chance to Trigger Abyssal Maw when creating a Corpse" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="This Skill will Trigger Abyssal Maw when creating a Corpse" + } + }, + name="trigger_abyssal_well_chance", + stats={ + [1]="support_abyssal_well_chance_to_create_well_on_corpse_creation_%" + } + }, + [1428]={ [1]={ [1]={ [1]={ @@ -42705,7 +44173,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [1388]={ + [1429]={ [1]={ [1]={ [1]={ @@ -42726,7 +44194,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine" } }, - [1389]={ + [1430]={ [1]={ [1]={ [1]={ @@ -42747,7 +44215,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine" } }, - [1390]={ + [1431]={ [1]={ [1]={ limit={ @@ -42764,7 +44232,7 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [1391]={ + [1432]={ [1]={ [1]={ [1]={ @@ -42785,7 +44253,7 @@ return { [1]="support_aura_duration_buff_duration" } }, - [1392]={ + [1433]={ [1]={ [1]={ limit={ @@ -42802,7 +44270,7 @@ return { [1]="support_autocast_instant_spells" } }, - [1393]={ + [1434]={ [1]={ [1]={ limit={ @@ -42819,7 +44287,7 @@ return { [1]="support_autocast_warcries" } }, - [1394]={ + [1435]={ [1]={ [1]={ [1]={ @@ -42857,7 +44325,7 @@ return { [1]="support_better_ailments_ailment_damage_+%_final" } }, - [1395]={ + [1436]={ [1]={ [1]={ [1]={ @@ -42891,7 +44359,7 @@ return { [1]="support_blasphemy_enemies_gain_malignant_madness_if_in_aura_for_x_seconds" } }, - [1396]={ + [1437]={ [1]={ [1]={ [1]={ @@ -42925,7 +44393,7 @@ return { [1]="support_bloodstained_banner_apply_corrupted_blood_duration" } }, - [1397]={ + [1438]={ [1]={ [1]={ [1]={ @@ -42959,7 +44427,7 @@ return { [1]="support_bloodstained_banner_apply_corrupted_blood_every_x_ms" } }, - [1398]={ + [1439]={ [1]={ [1]={ limit={ @@ -42985,7 +44453,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [1399]={ + [1440]={ [1]={ [1]={ limit={ @@ -43011,7 +44479,7 @@ return { [1]="support_call_the_pyre_chance_to_trigger_call_the_pyre_on_melee_hit_vs_ignited_enemies_%" } }, - [1400]={ + [1441]={ [1]={ [1]={ limit={ @@ -43041,7 +44509,7 @@ return { [1]="support_chance_to_bleed_bleeding_damage_+%_final" } }, - [1401]={ + [1442]={ [1]={ [1]={ [1]={ @@ -43079,7 +44547,7 @@ return { [1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%" } }, - [1402]={ + [1443]={ [1]={ [1]={ [1]={ @@ -43100,7 +44568,7 @@ return { [1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount" } }, - [1403]={ + [1444]={ [1]={ [1]={ limit={ @@ -43130,7 +44598,7 @@ return { [1]="support_chills_also_grant_cold_damage_taken_per_minute_+%" } }, - [1404]={ + [1445]={ [1]={ [1]={ limit={ @@ -43147,7 +44615,7 @@ return { [1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount" } }, - [1405]={ + [1446]={ [1]={ [1]={ limit={ @@ -43156,7 +44624,7 @@ return { [2]="#" } }, - text="Minions have {0}% more maximum Life if they are your only Minion" + text="Minions take {0}% more Damage if they are your only Minion" }, [2]={ [1]={ @@ -43169,15 +44637,15 @@ return { [2]=-1 } }, - text="Minions have {0}% less maximum Life if they are your only Minion" + text="Minions take {0}% less Damage if they are your only Minion" } }, name="companion_support_minion_life_incr_final", stats={ - [1]="support_companionship_minion_maximum_life_+%_final_if_at_most_one_minion" + [1]="support_companionship_minion_damage_taken_+%_final_if_at_most_one_minion" } }, - [1406]={ + [1447]={ [1]={ [1]={ limit={ @@ -43186,7 +44654,7 @@ return { [2]="#" } }, - text="[DNT] Ignites from Stunning Melee Hits count as coming from a Critical Strike" + text="DNT Ignites from Stunning Melee Hits count as coming from a Critical Strike" } }, name="support_conflagration_ignite_crits_from_stuns", @@ -43194,7 +44662,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike" } }, - [1407]={ + [1448]={ [1]={ [1]={ limit={ @@ -43203,7 +44671,7 @@ return { [2]="#" } }, - text="[DNT] Ignites from Stunning Melee Hits deal {0}% more Damage per 200ms of Stun duration" + text="DNT Ignites from Stunning Melee Hits deal {0}% more Damage per 200ms of Stun duration" }, [2]={ [1]={ @@ -43216,7 +44684,7 @@ return { [2]=-1 } }, - text="[DNT] Ignites from Stunning Melee Hits deal {0}% less Damage per 200ms of Stun duration" + text="DNT Ignites from Stunning Melee Hits deal {0}% less Damage per 200ms of Stun duration" } }, name="support_conflagration_ignite_damage_from_stuns", @@ -43224,7 +44692,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun" } }, - [1408]={ + [1449]={ [1]={ [1]={ limit={ @@ -43233,7 +44701,7 @@ return { [2]="#" } }, - text="[DNT] Ignites from Stunning Melee Hits have {0}% increased Duration" + text="DNT Ignites from Stunning Melee Hits have {0}% increased Duration" }, [2]={ [1]={ @@ -43246,7 +44714,7 @@ return { [2]=-1 } }, - text="[DNT] Ignites from Stunning Melee Hits have {0}% reduced Duration" + text="DNT Ignites from Stunning Melee Hits have {0}% reduced Duration" } }, name="support_conflagration_ignite_duration_from_stuns", @@ -43254,7 +44722,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_duration_+%" } }, - [1409]={ + [1450]={ [1]={ [1]={ limit={ @@ -43284,7 +44752,7 @@ return { [1]="support_corrupting_cry_area_of_effect_+%_final" } }, - [1410]={ + [1451]={ [1]={ [1]={ [1]={ @@ -43305,7 +44773,7 @@ return { [1]="support_corrupting_cry_corrupted_blood_duration_ms" } }, - [1411]={ + [1452]={ [1]={ [1]={ limit={ @@ -43331,7 +44799,7 @@ return { [1]="support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit" } }, - [1412]={ + [1453]={ [1]={ [1]={ [1]={ @@ -43352,7 +44820,7 @@ return { [1]="support_corrupting_cry_physical_damage_to_deal_per_minute" } }, - [1413]={ + [1454]={ [1]={ [1]={ limit={ @@ -43378,7 +44846,33 @@ return { [1]="support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood" } }, - [1414]={ + [1455]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="This Skill has {0}% chance to Trigger Falling Crystal on Hit" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="This Skill will Trigger Falling Crystal on Hit" + } + }, + name="trigger_crystalfall_chance", + stats={ + [1]="support_crystalfall_chance_to_trigger_crystalfall_on_hit_%" + } + }, + [1456]={ [1]={ [1]={ [1]={ @@ -43420,7 +44914,7 @@ return { [1]="support_damaging_links_duration_ms" } }, - [1415]={ + [1457]={ [1]={ [1]={ limit={ @@ -43459,7 +44953,7 @@ return { [2]="support_debilitate_hit_damage_max_poison_stacks" } }, - [1416]={ + [1458]={ [1]={ [1]={ limit={ @@ -43489,7 +44983,7 @@ return { [1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final" } }, - [1417]={ + [1459]={ [1]={ [1]={ [1]={ @@ -43510,7 +45004,7 @@ return { [1]="support_executioner_buff_duration_ms" } }, - [1418]={ + [1460]={ [1]={ [1]={ limit={ @@ -43540,7 +45034,7 @@ return { [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [1419]={ + [1461]={ [1]={ [1]={ limit={ @@ -43557,7 +45051,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [1420]={ + [1462]={ [1]={ [1]={ [1]={ @@ -43595,7 +45089,7 @@ return { [1]="support_faster_ailments_ailment_duration_+%_final" } }, - [1421]={ + [1463]={ [1]={ [1]={ limit={ @@ -43621,7 +45115,7 @@ return { [1]="support_fissure_trigger_fissure_on_slam_skill_impact_chance_%" } }, - [1422]={ + [1464]={ [1]={ [1]={ limit={ @@ -43638,7 +45132,7 @@ return { [1]="support_flamewood_totems_trigger_infernal_bolt_when_hit" } }, - [1423]={ + [1465]={ [1]={ [1]={ limit={ @@ -43655,7 +45149,7 @@ return { [1]="support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%" } }, - [1424]={ + [1466]={ [1]={ [1]={ limit={ @@ -43672,7 +45166,7 @@ return { [1]="support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%" } }, - [1425]={ + [1467]={ [1]={ [1]={ limit={ @@ -43702,7 +45196,7 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [1426]={ + [1468]={ [1]={ [1]={ [1]={ @@ -43723,7 +45217,7 @@ return { [1]="support_ghost_duration" } }, - [1427]={ + [1469]={ [1]={ [1]={ limit={ @@ -43749,7 +45243,7 @@ return { [1]="support_gluttony_fire_x_additional_projectiles_in_nova_while_affected_by_disgorge" } }, - [1428]={ + [1470]={ [1]={ [1]={ limit={ @@ -43779,7 +45273,7 @@ return { [1]="support_greater_spell_echo_area_of_effect_+%_per_repeat" } }, - [1429]={ + [1471]={ [1]={ [1]={ limit={ @@ -43809,7 +45303,7 @@ return { [1]="support_greater_spell_echo_spell_damage_+%_final_per_repeat" } }, - [1430]={ + [1472]={ [1]={ [1]={ [1]={ @@ -43830,7 +45324,7 @@ return { [1]="support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute" } }, - [1431]={ + [1473]={ [1]={ [1]={ [1]={ @@ -43851,7 +45345,7 @@ return { [1]="support_hallow_inflict_hallowing_flame_on_melee_hit" } }, - [1432]={ + [1474]={ [1]={ [1]={ limit={ @@ -43881,7 +45375,7 @@ return { [1]="support_ignite_prolif_ignite_damage_+%_final" } }, - [1433]={ + [1475]={ [1]={ [1]={ limit={ @@ -43907,7 +45401,7 @@ return { [1]="support_innervate_chance_to_gain_buff_on_shock_vs_unique_%" } }, - [1434]={ + [1476]={ [1]={ [1]={ limit={ @@ -43924,7 +45418,7 @@ return { [1]="support_invention_trap_and_mine_damage_+%_final_per_second_placed_up_to_100" } }, - [1435]={ + [1477]={ [1]={ [1]={ limit={ @@ -43950,7 +45444,7 @@ return { [1]="support_kinetic_instability_chance_to_create_instability_on_critical_strike_%" } }, - [1436]={ + [1478]={ [1]={ [1]={ limit={ @@ -43976,7 +45470,7 @@ return { [1]="support_kinetic_instability_chance_to_create_instability_on_kill_%" } }, - [1437]={ + [1479]={ [1]={ [1]={ [1]={ @@ -44010,7 +45504,7 @@ return { [1]="support_lifetap_buff_duration" } }, - [1438]={ + [1480]={ [1]={ [1]={ [1]={ @@ -44031,7 +45525,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [1439]={ + [1481]={ [1]={ [1]={ [1]={ @@ -44065,7 +45559,7 @@ return { [1]="support_locus_mine_cannot_detonate_mines_within_X_units" } }, - [1440]={ + [1482]={ [1]={ [1]={ limit={ @@ -44082,7 +45576,7 @@ return { [1]="support_locus_mine_mines_always_target_your_location" } }, - [1441]={ + [1483]={ [1]={ [1]={ limit={ @@ -44099,7 +45593,7 @@ return { [1]="support_locus_mine_throw_mines_in_an_arc" } }, - [1442]={ + [1484]={ [1]={ [1]={ limit={ @@ -44129,7 +45623,7 @@ return { [1]="support_maim_chance_physical_damage_+%_final" } }, - [1443]={ + [1485]={ [1]={ [1]={ limit={ @@ -44159,7 +45653,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [1444]={ + [1486]={ [1]={ [1]={ limit={ @@ -44189,7 +45683,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [1445]={ + [1487]={ [1]={ [1]={ limit={ @@ -44211,7 +45705,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [1446]={ + [1488]={ [1]={ [1]={ limit={ @@ -44241,7 +45735,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [1447]={ + [1489]={ [1]={ [1]={ limit={ @@ -44271,7 +45765,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [1448]={ + [1490]={ [1]={ [1]={ limit={ @@ -44301,7 +45795,7 @@ return { [1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master" } }, - [1449]={ + [1491]={ [1]={ [1]={ [1]={ @@ -44322,7 +45816,7 @@ return { [1]="support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage" } }, - [1450]={ + [1492]={ [1]={ [1]={ limit={ @@ -44352,7 +45846,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [1451]={ + [1493]={ [1]={ [1]={ limit={ @@ -44382,7 +45876,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [1452]={ + [1494]={ [1]={ [1]={ [1]={ @@ -44403,7 +45897,7 @@ return { [1]="support_mirage_archer_duration" } }, - [1453]={ + [1495]={ [1]={ [1]={ limit={ @@ -44433,7 +45927,7 @@ return { [1]="support_momentum_attack_speed_+%_per_stack" } }, - [1454]={ + [1496]={ [1]={ [1]={ limit={ @@ -44481,7 +45975,7 @@ return { [3]="support_momentum_max_stacks" } }, - [1455]={ + [1497]={ [1]={ [1]={ limit={ @@ -44511,7 +46005,7 @@ return { [1]="support_momentum_movement_speed_+%_per_stack_removed" } }, - [1456]={ + [1498]={ [1]={ [1]={ [1]={ @@ -44554,7 +46048,7 @@ return { [2]="support_momentum_stack_while_channelling_ms" } }, - [1457]={ + [1499]={ [1]={ [1]={ [1]={ @@ -44592,7 +46086,7 @@ return { [1]="support_overheat_ailment_damage_+%_final_per_3_fortification_consumed" } }, - [1458]={ + [1500]={ [1]={ [1]={ [1]={ @@ -44617,7 +46111,7 @@ return { [1]="support_overpowered_duration_ms" } }, - [1459]={ + [1501]={ [1]={ [1]={ limit={ @@ -44643,7 +46137,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [1460]={ + [1502]={ [1]={ [1]={ limit={ @@ -44673,7 +46167,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [1461]={ + [1503]={ [1]={ [1]={ limit={ @@ -44703,7 +46197,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [1462]={ + [1504]={ [1]={ [1]={ limit={ @@ -44733,7 +46227,7 @@ return { [1]="support_pure_shock_shock_as_though_damage_+%_final" } }, - [1463]={ + [1505]={ [1]={ [1]={ [1]={ @@ -44754,7 +46248,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [1464]={ + [1506]={ [1]={ [1]={ [1]={ @@ -44805,7 +46299,7 @@ return { [2]="support_recent_ignites_damage_per_recent_ignite_+%_final_minimum" } }, - [1465]={ + [1507]={ [1]={ [1]={ [1]={ @@ -44852,7 +46346,7 @@ return { [2]="support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum" } }, - [1466]={ + [1508]={ [1]={ [1]={ [1]={ @@ -44873,7 +46367,7 @@ return { [1]="support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury" } }, - [1467]={ + [1509]={ [1]={ [1]={ [1]={ @@ -45009,7 +46503,7 @@ return { [6]="support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms" } }, - [1468]={ + [1510]={ [1]={ [1]={ limit={ @@ -45026,7 +46520,7 @@ return { [1]="support_reduce_enemy_block_and_spell_block_%" } }, - [1469]={ + [1511]={ [1]={ [1]={ limit={ @@ -45056,7 +46550,7 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [1470]={ + [1512]={ [1]={ [1]={ limit={ @@ -45086,7 +46580,7 @@ return { [1]="support_return_returning_projectiles_damage_+%_final" } }, - [1471]={ + [1513]={ [1]={ [1]={ [1]={ @@ -45107,7 +46601,7 @@ return { [1]="critical_strikes_that_inflict_bleeding_also_rupture" } }, - [1472]={ + [1514]={ [1]={ [1]={ limit={ @@ -45133,7 +46627,7 @@ return { [1]="support_rupture_bleeding_damage_taken_+%_final" } }, - [1473]={ + [1515]={ [1]={ [1]={ limit={ @@ -45159,7 +46653,7 @@ return { [1]="support_rupture_bleeding_time_passed_+%_final" } }, - [1474]={ + [1516]={ [1]={ [1]={ limit={ @@ -45176,7 +46670,7 @@ return { [1]="support_sacred_wisps_wisp_%_chance_to_attack" } }, - [1475]={ + [1517]={ [1]={ [1]={ limit={ @@ -45193,7 +46687,7 @@ return { [1]="support_sacred_wisps_wisp_additional_%_chance_to_attack_when_rare_or_unique_enemy_in_presence" } }, - [1476]={ + [1518]={ [1]={ [1]={ limit={ @@ -45228,7 +46722,7 @@ return { [2]="support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage" } }, - [1477]={ + [1519]={ [1]={ [1]={ [1]={ @@ -45258,7 +46752,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [1478]={ + [1520]={ [1]={ [1]={ [1]={ @@ -45293,7 +46787,7 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [1479]={ + [1521]={ [1]={ [1]={ [1]={ @@ -45327,7 +46821,7 @@ return { [1]="support_slashing_buff_duration_ms" } }, - [1480]={ + [1522]={ [1]={ [1]={ limit={ @@ -45357,7 +46851,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [1481]={ + [1523]={ [1]={ [1]={ limit={ @@ -45374,7 +46868,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [1482]={ + [1524]={ [1]={ [1]={ limit={ @@ -45451,7 +46945,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [1483]={ + [1525]={ [1]={ [1]={ limit={ @@ -45481,7 +46975,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [1484]={ + [1526]={ [1]={ [1]={ limit={ @@ -45511,7 +47005,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [1485]={ + [1527]={ [1]={ [1]={ limit={ @@ -45546,7 +47040,7 @@ return { [2]="support_spell_cascade_sideways" } }, - [1486]={ + [1528]={ [1]={ [1]={ limit={ @@ -45576,7 +47070,7 @@ return { [1]="support_spell_echo_final_repeat_damage_+%_final" } }, - [1487]={ + [1529]={ [1]={ [1]={ limit={ @@ -45606,7 +47100,7 @@ return { [1]="support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling" } }, - [1488]={ + [1530]={ [1]={ [1]={ [1]={ @@ -45644,7 +47138,7 @@ return { [1]="support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final" } }, - [1489]={ + [1531]={ [1]={ [1]={ limit={ @@ -45674,7 +47168,7 @@ return { [1]="support_trauma_melee_damage_+%_final_per_trauma" } }, - [1490]={ + [1532]={ [1]={ [1]={ limit={ @@ -45704,7 +47198,7 @@ return { [1]="support_trauma_stun_duration_+%_per_trauma" } }, - [1491]={ + [1533]={ [1]={ [1]={ limit={ @@ -45730,7 +47224,7 @@ return { [1]="support_trigger_enervating_grasp_on_supported_brand_recall_chance_%" } }, - [1492]={ + [1534]={ [1]={ [1]={ limit={ @@ -45756,7 +47250,7 @@ return { [1]="support_trigger_great_avalanche_on_offering_chance_%" } }, - [1493]={ + [1535]={ [1]={ [1]={ limit={ @@ -45782,7 +47276,7 @@ return { [1]="support_trigger_rings_of_light_on_melee_hit_%" } }, - [1494]={ + [1536]={ [1]={ [1]={ limit={ @@ -45808,7 +47302,7 @@ return { [1]="support_trigger_seize_the_flesh_on_warcry_chance_%" } }, - [1495]={ + [1537]={ [1]={ [1]={ limit={ @@ -45834,7 +47328,7 @@ return { [1]="support_trigger_tornados_on_attack_hit_after_moving_X_metres" } }, - [1496]={ + [1538]={ [1]={ [1]={ [1]={ @@ -45872,7 +47366,7 @@ return { [1]="support_unbound_ailments_ailment_damage_+%_final" } }, - [1497]={ + [1539]={ [1]={ [1]={ [1]={ @@ -45897,7 +47391,7 @@ return { [1]="support_vaal_temptation_physical_damage_taken_per_minute_instead_of_soul_gain_prevention" } }, - [1498]={ + [1540]={ [1]={ [1]={ limit={ @@ -45914,7 +47408,7 @@ return { [1]="support_voidstorm_trigger_voidstorm_on_rain_skill_impact" } }, - [1499]={ + [1541]={ [1]={ [1]={ limit={ @@ -45931,7 +47425,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [1500]={ + [1542]={ [1]={ [1]={ [1]={ @@ -45952,7 +47446,7 @@ return { [1]="supported_skill_can_only_use_axe_mace_and_staff" } }, - [1501]={ + [1543]={ [1]={ [1]={ limit={ @@ -45969,7 +47463,7 @@ return { [1]="skill_can_only_use_bow" } }, - [1502]={ + [1544]={ [1]={ [1]={ [1]={ @@ -45990,7 +47484,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [1503]={ + [1545]={ [1]={ [1]={ [1]={ @@ -46011,7 +47505,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [1504]={ + [1546]={ [1]={ [1]={ limit={ @@ -46028,7 +47522,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [1505]={ + [1547]={ [1]={ [1]={ limit={ @@ -46045,7 +47539,7 @@ return { [1]="supported_skill_can_only_use_wand" } }, - [1506]={ + [1548]={ [1]={ [1]={ limit={ @@ -46071,7 +47565,7 @@ return { [1]="swordstorm_num_hits" } }, - [1507]={ + [1549]={ [1]={ [1]={ limit={ @@ -46101,7 +47595,7 @@ return { [1]="tectonic_slam_area_of_effect_+%_final_per_endurance_charge_consumed" } }, - [1508]={ + [1550]={ [1]={ [1]={ limit={ @@ -46118,7 +47612,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%_per_endurance_charge_consumed" } }, - [1509]={ + [1551]={ [1]={ [1]={ [1]={ @@ -46139,7 +47633,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [1510]={ + [1552]={ [1]={ [1]={ limit={ @@ -46174,7 +47668,7 @@ return { [2]="quality_display_tectonic_slam_is_gem" } }, - [1511]={ + [1553]={ [1]={ [1]={ limit={ @@ -46191,7 +47685,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%_per_endurance_charge" } }, - [1512]={ + [1554]={ [1]={ [1]={ limit={ @@ -46221,7 +47715,7 @@ return { [1]="tethered_enemies_take_attack_projectile_damage_taken_+%" } }, - [1513]={ + [1555]={ [1]={ [1]={ limit={ @@ -46251,7 +47745,7 @@ return { [1]="tethered_movement_speed_+%_final_per_rope" } }, - [1514]={ + [1556]={ [1]={ [1]={ limit={ @@ -46281,7 +47775,7 @@ return { [1]="tethered_movement_speed_+%_final_per_rope_vs_rare" } }, - [1515]={ + [1557]={ [1]={ [1]={ limit={ @@ -46311,7 +47805,7 @@ return { [1]="tethered_movement_speed_+%_final_per_rope_vs_unique" } }, - [1516]={ + [1558]={ [1]={ [1]={ limit={ @@ -46328,7 +47822,24 @@ return { [1]="tethering_arrow_display_rope_limit" } }, - [1517]={ + [1559]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot create Barnacles" + } + }, + name="cannot_create_barnacles", + stats={ + [1]="this_skill_cannot_create_barnacles" + } + }, + [1560]={ [1]={ [1]={ [1]={ @@ -46362,7 +47873,7 @@ return { [1]="tornado_damage_interval_ms" } }, - [1518]={ + [1561]={ [1]={ [1]={ [1]={ @@ -46387,7 +47898,7 @@ return { [1]="tornado_hinder" } }, - [1519]={ + [1562]={ [1]={ [1]={ limit={ @@ -46417,7 +47928,7 @@ return { [1]="tornado_movement_speed_+%" } }, - [1520]={ + [1563]={ [1]={ [1]={ limit={ @@ -46443,7 +47954,7 @@ return { [1]="number_of_tornados_allowed" } }, - [1521]={ + [1564]={ [1]={ [1]={ limit={ @@ -46473,7 +47984,7 @@ return { [1]="totem_life_+%_final" } }, - [1522]={ + [1565]={ [1]={ [1]={ limit={ @@ -46490,7 +48001,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [1523]={ + [1566]={ [1]={ [1]={ [1]={ @@ -46511,7 +48022,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [1524]={ + [1567]={ [1]={ [1]={ [1]={ @@ -46532,7 +48043,7 @@ return { [1]="toxic_rain_spores_apply_withered" } }, - [1525]={ + [1568]={ [1]={ [1]={ limit={ @@ -46549,7 +48060,7 @@ return { [1]="trap_and_mine_area_of_effect_+%_per_second_placed_up_to_100" } }, - [1526]={ + [1569]={ [1]={ [1]={ limit={ @@ -46566,7 +48077,7 @@ return { [1]="trap_can_be_triggered_by_warcries" } }, - [1527]={ + [1570]={ [1]={ [1]={ limit={ @@ -46583,7 +48094,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [1528]={ + [1571]={ [1]={ [1]={ limit={ @@ -46613,7 +48124,7 @@ return { [1]="trap_spread_+%" } }, - [1529]={ + [1572]={ [1]={ [1]={ limit={ @@ -46643,7 +48154,7 @@ return { [1]="trap_throwing_speed_+%_while_wielding_2hand" } }, - [1530]={ + [1573]={ [1]={ [1]={ limit={ @@ -46673,7 +48184,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [1531]={ + [1574]={ [1]={ [1]={ limit={ @@ -46703,7 +48214,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [1532]={ + [1575]={ [1]={ [1]={ limit={ @@ -46733,7 +48244,7 @@ return { [1]="attack_speed_+%_per_trauma" } }, - [1533]={ + [1576]={ [1]={ [1]={ limit={ @@ -46915,7 +48426,7 @@ return { [4]="trauma_strike_self_damage_per_trauma" } }, - [1534]={ + [1577]={ [1]={ [1]={ limit={ @@ -46967,7 +48478,7 @@ return { [2]="quality_display_boneshatter_is_gem" } }, - [1535]={ + [1578]={ [1]={ [1]={ limit={ @@ -46997,7 +48508,7 @@ return { [1]="trauma_strike_damage_+%_final_per_trauma_capped" } }, - [1536]={ + [1579]={ [1]={ [1]={ limit={ @@ -47027,7 +48538,7 @@ return { [1]="trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%" } }, - [1537]={ + [1580]={ [1]={ [1]={ limit={ @@ -47053,7 +48564,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [1538]={ + [1581]={ [1]={ [1]={ limit={ @@ -47079,7 +48590,7 @@ return { [1]="trigger_after_spending_200_mana_%_chance" } }, - [1539]={ + [1582]={ [1]={ [1]={ limit={ @@ -47109,7 +48620,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [1540]={ + [1583]={ [1]={ [1]={ limit={ @@ -47126,7 +48637,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [1541]={ + [1584]={ [1]={ [1]={ limit={ @@ -47143,7 +48654,7 @@ return { [1]="trigger_on_block_hit_from_unique" } }, - [1542]={ + [1585]={ [1]={ [1]={ limit={ @@ -47169,7 +48680,7 @@ return { [1]="trigger_on_block_%_chance" } }, - [1543]={ + [1586]={ [1]={ [1]={ limit={ @@ -47195,7 +48706,7 @@ return { [1]="trigger_on_bow_attack_%" } }, - [1544]={ + [1587]={ [1]={ [1]={ limit={ @@ -47221,7 +48732,7 @@ return { [1]="trigger_on_corpse_consume_%_chance" } }, - [1545]={ + [1588]={ [1]={ [1]={ limit={ @@ -47238,7 +48749,7 @@ return { [1]="trigger_on_crit_by_unique_enemy" } }, - [1546]={ + [1589]={ [1]={ [1]={ limit={ @@ -47255,7 +48766,7 @@ return { [1]="trigger_on_crit_vs_marked_unique" } }, - [1547]={ + [1590]={ [1]={ [1]={ limit={ @@ -47272,7 +48783,7 @@ return { [1]="trigger_on_critical_strike_against_rare_or_unique_if_no_marked_enemy" } }, - [1548]={ + [1591]={ [1]={ [1]={ limit={ @@ -47289,7 +48800,7 @@ return { [1]="trigger_on_es_recharge_in_presence_of_unique" } }, - [1549]={ + [1592]={ [1]={ [1]={ limit={ @@ -47306,7 +48817,7 @@ return { [1]="trigger_on_hit_against_rare_or_unique_if_no_marked_enemy" } }, - [1550]={ + [1593]={ [1]={ [1]={ limit={ @@ -47332,7 +48843,7 @@ return { [1]="trigger_on_hit_vs_frozen_enemy_%" } }, - [1551]={ + [1594]={ [1]={ [1]={ limit={ @@ -47349,7 +48860,7 @@ return { [1]="trigger_on_ignited_enemy_death" } }, - [1552]={ + [1595]={ [1]={ [1]={ limit={ @@ -47366,7 +48877,7 @@ return { [1]="trigger_on_reaching_low_life_in_presence_of_unique" } }, - [1553]={ + [1596]={ [1]={ [1]={ limit={ @@ -47383,7 +48894,7 @@ return { [1]="trigger_on_reaching_maximum_rage_in_presence_of_unique" } }, - [1554]={ + [1597]={ [1]={ [1]={ limit={ @@ -47409,7 +48920,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_void_arrow" } }, - [1555]={ + [1598]={ [1]={ [1]={ limit={ @@ -47435,7 +48946,7 @@ return { [1]="trigger_on_slam_or_strike_%_chance" } }, - [1556]={ + [1599]={ [1]={ [1]={ limit={ @@ -47452,7 +48963,7 @@ return { [1]="trigger_on_suppress_hit_from_unique" } }, - [1557]={ + [1600]={ [1]={ [1]={ limit={ @@ -47469,7 +48980,7 @@ return { [1]="trigger_on_taking_savage_hit_from_unique" } }, - [1558]={ + [1601]={ [1]={ [1]={ limit={ @@ -47486,7 +48997,7 @@ return { [1]="trigger_on_totem_death_in_presence_of_unique" } }, - [1559]={ + [1602]={ [1]={ [1]={ limit={ @@ -47503,7 +49014,7 @@ return { [1]="trigger_on_travel_skill_use_in_presence_of_unique" } }, - [1560]={ + [1603]={ [1]={ [1]={ limit={ @@ -47520,7 +49031,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [1561]={ + [1604]={ [1]={ [1]={ limit={ @@ -47546,7 +49057,7 @@ return { [1]="trigger_on_ward_break_%_chance" } }, - [1562]={ + [1605]={ [1]={ [1]={ limit={ @@ -47572,7 +49083,7 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [1563]={ + [1606]={ [1]={ [1]={ limit={ @@ -47589,7 +49100,7 @@ return { [1]="trigger_rings_of_light_on_melee_hit" } }, - [1564]={ + [1607]={ [1]={ [1]={ limit={ @@ -47606,7 +49117,7 @@ return { [1]="triggered_by_brand_support" } }, - [1565]={ + [1608]={ [1]={ [1]={ limit={ @@ -47623,7 +49134,7 @@ return { [1]="triggered_by_divine_cry" } }, - [1566]={ + [1609]={ [1]={ [1]={ limit={ @@ -47640,7 +49151,7 @@ return { [1]="triggered_by_infernal_cry" } }, - [1567]={ + [1610]={ [1]={ [1]={ limit={ @@ -47657,7 +49168,7 @@ return { [1]="triggered_by_item_buff" } }, - [1568]={ + [1611]={ [1]={ [1]={ limit={ @@ -47674,7 +49185,7 @@ return { [1]="triggered_by_kinetic_instability_support" } }, - [1569]={ + [1612]={ [1]={ [1]={ limit={ @@ -47691,7 +49202,7 @@ return { [1]="triggered_by_kinetic_rain" } }, - [1570]={ + [1613]={ [1]={ [1]={ limit={ @@ -47708,7 +49219,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [1571]={ + [1614]={ [1]={ [1]={ limit={ @@ -47725,7 +49236,33 @@ return { [1]="triggered_by_support_movement" } }, - [1572]={ + [1615]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Manifests {0} Ghost Cannon" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Manifests {0} Ghost Cannons" + } + }, + name="ghost_cannon_count", + stats={ + [1]="triggered_ghost_cannons_number_of_cannons_to_fire" + } + }, + [1616]={ [1]={ [1]={ limit={ @@ -47755,7 +49292,7 @@ return { [1]="triggered_rings_of_light_damage_+%_final_if_on_rare_unique_enemies" } }, - [1573]={ + [1617]={ [1]={ [1]={ limit={ @@ -47772,7 +49309,7 @@ return { [1]="triggered_vicious_hex_explosion" } }, - [1574]={ + [1618]={ [1]={ [1]={ limit={ @@ -47802,7 +49339,7 @@ return { [1]="unleash_power_movement_speed_+%_final" } }, - [1575]={ + [1619]={ [1]={ [1]={ limit={ @@ -47832,7 +49369,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_channelling" } }, - [1576]={ + [1620]={ [1]={ [1]={ limit={ @@ -47862,30 +49399,24 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_not_channelling" } }, - [1577]={ + [1621]={ [1]={ [1]={ + ["gem_quality"]=true, limit={ [1]={ [1]=1, [2]=1 - }, - [2]={ - [1]=0, - [2]=0 } }, text="Causes {0:+d} Burst" }, [2]={ + ["gem_quality"]=true, limit={ [1]={ [1]=2, [2]="#" - }, - [2]={ - [1]=0, - [2]=0 } }, text="Causes {0:+d} Bursts" @@ -47895,10 +49426,6 @@ return { [1]={ [1]=1, [2]=1 - }, - [2]={ - [1]="!", - [2]=0 } }, text="Causes {0} Burst" @@ -47908,10 +49435,6 @@ return { [1]={ [1]=2, [2]="#" - }, - [2]={ - [1]="!", - [2]=0 } }, text="Causes {0} Bursts" @@ -47919,11 +49442,10 @@ return { }, name="upheaval_num", stats={ - [1]="upheaval_number_of_spikes", - [2]="quality_display_glacial_cascade_num_spikes_is_gem" + [1]="upheaval_number_of_spikes" } }, - [1578]={ + [1622]={ [1]={ [1]={ limit={ @@ -47940,7 +49462,7 @@ return { [1]="vaal_animate_weapon_raise_up_to_X_weapons_as_uniques" } }, - [1579]={ + [1623]={ [1]={ [1]={ limit={ @@ -47970,7 +49492,7 @@ return { [1]="vaal_arctic_armour_damage_taken_+%_final_from_hits" } }, - [1580]={ + [1624]={ [1]={ [1]={ limit={ @@ -47996,7 +49518,7 @@ return { [1]="vaal_arctic_armour_number_of_hits_absorbed" } }, - [1581]={ + [1625]={ [1]={ [1]={ limit={ @@ -48013,7 +49535,7 @@ return { [1]="vaal_blade_vortex_has_10_spinning_blades" } }, - [1582]={ + [1626]={ [1]={ [1]={ limit={ @@ -48043,7 +49565,7 @@ return { [1]="vaal_charged_attack_damage_taken_+%_final" } }, - [1583]={ + [1627]={ [1]={ [1]={ [1]={ @@ -48077,7 +49599,7 @@ return { [1]="vaal_charged_attack_radius_+_per_stage" } }, - [1584]={ + [1628]={ [1]={ [1]={ [1]={ @@ -48103,7 +49625,7 @@ return { [2]="vaal_cleave_executioner_damage_against_enemies_on_low_life_+%" } }, - [1585]={ + [1629]={ [1]={ [1]={ limit={ @@ -48120,7 +49642,7 @@ return { [1]="vaal_earthquake_maximum_aftershocks" } }, - [1586]={ + [1630]={ [1]={ [1]={ [1]={ @@ -48154,7 +49676,7 @@ return { [1]="vaal_flameblast_radius_+_per_stage" } }, - [1587]={ + [1631]={ [1]={ [1]={ limit={ @@ -48171,7 +49693,7 @@ return { [1]="vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages" } }, - [1588]={ + [1632]={ [1]={ [1]={ limit={ @@ -48188,7 +49710,7 @@ return { [1]="vaal_reap_additional_maximum_blood_charges" } }, - [1589]={ + [1633]={ [1]={ [1]={ limit={ @@ -48205,7 +49727,7 @@ return { [1]="vaal_reap_gain_maximum_blood_charges_to_on_use" } }, - [1590]={ + [1634]={ [1]={ [1]={ limit={ @@ -48222,7 +49744,7 @@ return { [1]="vaal_skill_exertable" } }, - [1591]={ + [1635]={ [1]={ [1]={ [1]={ @@ -48256,7 +49778,7 @@ return { [1]="vaal_storm_call_delay_ms" } }, - [1592]={ + [1636]={ [1]={ [1]={ limit={ @@ -48286,7 +49808,7 @@ return { [1]="vaal_upgrade_minion_damage_+%_final" } }, - [1593]={ + [1637]={ [1]={ [1]={ limit={ @@ -48316,7 +49838,7 @@ return { [1]="vaal_upgrade_minion_damage_taken_+%_final" } }, - [1594]={ + [1638]={ [1]={ [1]={ limit={ @@ -48333,7 +49855,7 @@ return { [1]="vaal_volcanic_fissure_crack_repeat_count" } }, - [1595]={ + [1639]={ [1]={ [1]={ limit={ @@ -48363,7 +49885,7 @@ return { [1]="vampiric_icon_bleeding_damage_+%_final" } }, - [1596]={ + [1640]={ [1]={ [1]={ limit={ @@ -48389,7 +49911,7 @@ return { [1]="virtual_bladefall_number_of_volleys" } }, - [1597]={ + [1641]={ [1]={ [1]={ limit={ @@ -48406,7 +49928,7 @@ return { [1]="virtual_blood_spears_total_number_of_spears" } }, - [1598]={ + [1642]={ [1]={ [1]={ limit={ @@ -48423,7 +49945,7 @@ return { [1]="virtual_chill_minimum_slow_%" } }, - [1599]={ + [1643]={ [1]={ [1]={ limit={ @@ -48440,7 +49962,7 @@ return { [1]="virtual_divine_tempest_number_of_nearby_enemies_to_zap" } }, - [1600]={ + [1644]={ [1]={ [1]={ [1]={ @@ -48461,7 +49983,7 @@ return { [1]="virtual_herald_of_thunder_bolt_base_frequency" } }, - [1601]={ + [1645]={ [1]={ [1]={ [1]={ @@ -48495,7 +50017,7 @@ return { [1]="virtual_hex_zone_skill_duration_ms" } }, - [1602]={ + [1646]={ [1]={ [1]={ limit={ @@ -48521,7 +50043,7 @@ return { [1]="holy_strike_maximum_number_of_animated_weapons" } }, - [1603]={ + [1647]={ [1]={ [1]={ [1]={ @@ -48542,7 +50064,7 @@ return { [1]="virtual_mine_detonation_time_ms" } }, - [1604]={ + [1648]={ [1]={ [1]={ limit={ @@ -48568,7 +50090,7 @@ return { [1]="virtual_number_of_additional_curses_allowed" } }, - [1605]={ + [1649]={ [1]={ [1]={ limit={ @@ -48603,7 +50125,7 @@ return { [2]="display_hide_projectile_chain_num" } }, - [1606]={ + [1650]={ [1]={ [1]={ [1]={ @@ -48637,7 +50159,7 @@ return { [1]="virtual_onslaught_on_hit_%_chance" } }, - [1607]={ + [1651]={ [1]={ [1]={ limit={ @@ -48654,7 +50176,7 @@ return { [1]="virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [1608]={ + [1652]={ [1]={ [1]={ [1]={ @@ -48679,7 +50201,7 @@ return { [1]="virtual_spider_aspect_web_interval_ms" } }, - [1609]={ + [1653]={ [1]={ [1]={ [1]={ @@ -48713,7 +50235,7 @@ return { [1]="virtual_static_strike_base_zap_frequency_ms" } }, - [1610]={ + [1654]={ [1]={ [1]={ limit={ @@ -48735,7 +50257,7 @@ return { [2]="virtual_steelskin_damage_limit" } }, - [1611]={ + [1655]={ [1]={ [1]={ limit={ @@ -48752,7 +50274,7 @@ return { [1]="virtual_tectonic_slam_%_chance_to_do_charged_slam" } }, - [1612]={ + [1656]={ [1]={ [1]={ limit={ @@ -48782,7 +50304,7 @@ return { [1]="virtual_trap_and_mine_throwing_time_+%_final" } }, - [1613]={ + [1657]={ [1]={ [1]={ limit={ @@ -48808,7 +50330,7 @@ return { [1]="virtual_vaal_lightning_arrow_number_of_redirects" } }, - [1614]={ + [1658]={ [1]={ [1]={ limit={ @@ -48834,7 +50356,7 @@ return { [1]="virulent_arrow_additional_spores_at_max_stages" } }, - [1615]={ + [1659]={ [1]={ [1]={ [1]={ @@ -48872,7 +50394,7 @@ return { [1]="virulent_arrow_damage_+%_final_per_stage" } }, - [1616]={ + [1660]={ [1]={ [1]={ limit={ @@ -48889,7 +50411,7 @@ return { [1]="virulent_arrow_maximum_number_of_stacks" } }, - [1617]={ + [1661]={ [1]={ [1]={ limit={ @@ -48937,7 +50459,7 @@ return { [2]="quality_display_scourge_arrow_is_gem" } }, - [1618]={ + [1662]={ [1]={ [1]={ limit={ @@ -48967,7 +50489,7 @@ return { [1]="virulent_arrow_pod_projectile_damage_+%_final" } }, - [1619]={ + [1663]={ [1]={ [1]={ limit={ @@ -48993,7 +50515,7 @@ return { [1]="void_shockwave_chains_x_times" } }, - [1620]={ + [1664]={ [1]={ [1]={ limit={ @@ -49023,7 +50545,7 @@ return { [1]="volatile_dead_core_movement_speed_+%" } }, - [1621]={ + [1665]={ [1]={ [1]={ limit={ @@ -49040,7 +50562,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [1622]={ + [1666]={ [1]={ [1]={ limit={ @@ -49066,7 +50588,7 @@ return { [1]="volatile_dead_number_of_corpses_to_consume" } }, - [1623]={ + [1667]={ [1]={ [1]={ ["gem_quality"]=true, @@ -49112,7 +50634,7 @@ return { [1]="volcanic_fissure_number_of_simultaneous_crack_count" } }, - [1624]={ + [1668]={ [1]={ [1]={ limit={ @@ -49142,7 +50664,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [1625]={ + [1669]={ [1]={ [1]={ limit={ @@ -49202,7 +50724,7 @@ return { [2]="quality_display_voltaxic_burst_is_gem" } }, - [1626]={ + [1670]={ [1]={ [1]={ limit={ @@ -49219,7 +50741,7 @@ return { [1]="voodoo_pole_display_maximum_life" } }, - [1627]={ + [1671]={ [1]={ [1]={ limit={ @@ -49236,7 +50758,7 @@ return { [1]="warcries_do_not_apply_buffs_to_self_or_allies" } }, - [1628]={ + [1672]={ [1]={ [1]={ limit={ @@ -49253,7 +50775,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [1629]={ + [1673]={ [1]={ [1]={ [1]={ @@ -49389,7 +50911,7 @@ return { [4]="warcries_have_infinite_power" } }, - [1630]={ + [1674]={ [1]={ [1]={ limit={ @@ -49406,7 +50928,7 @@ return { [1]="infernal_cry_%_max_life_as_fire_on_death" } }, - [1631]={ + [1675]={ [1]={ [1]={ limit={ @@ -49423,7 +50945,7 @@ return { [1]="seismic_cry_armour_+%_final_per_5_power_up_to_cap" } }, - [1632]={ + [1676]={ [1]={ [1]={ [1]={ @@ -49444,7 +50966,7 @@ return { [1]="seismic_cry_stun_threshold_+%_per_5_power_up_to_cap" } }, - [1633]={ + [1677]={ [1]={ [1]={ limit={ @@ -49461,7 +50983,7 @@ return { [1]="intimidating_cry_movement_speed_+%_per_5_power_up_to_cap" } }, - [1634]={ + [1678]={ [1]={ [1]={ limit={ @@ -49478,7 +51000,7 @@ return { [1]="ancestral_cry_elemental_resist_%_per_5_power_up_to_cap" } }, - [1635]={ + [1679]={ [1]={ [1]={ limit={ @@ -49495,7 +51017,7 @@ return { [1]="ancestral_cry_maximum_elemental_resist_%_per_10_power_up_to_cap" } }, - [1636]={ + [1680]={ [1]={ [1]={ limit={ @@ -49512,7 +51034,7 @@ return { [1]="infernal_cry_physical_damage_%_to_add_as_fire_per_5_power_up_to_cap" } }, - [1637]={ + [1681]={ [1]={ [1]={ limit={ @@ -49529,7 +51051,7 @@ return { [1]="endurance_charge_granted_per_X_monster_power_during_endurance_warcry" } }, - [1638]={ + [1682]={ [1]={ [1]={ limit={ @@ -49546,7 +51068,7 @@ return { [1]="spiritual_cry_doubles_summoned_per_5_MP" } }, - [1639]={ + [1683]={ [1]={ [1]={ [1]={ @@ -49567,7 +51089,7 @@ return { [1]="divine_cry_additional_base_critical_strike_chance_per_5_power_up_to_cap" } }, - [1640]={ + [1684]={ [1]={ [1]={ [1]={ @@ -49588,7 +51110,7 @@ return { [1]="enduring_cry_life_regeneration_rate_per_minute_%_per_5_power_up_to_cap" } }, - [1641]={ + [1685]={ [1]={ [1]={ [1]={ @@ -49613,7 +51135,7 @@ return { [1]="rage_warcry_gain_X_rage_per_minute_per_5_monster_power_max_25_power" } }, - [1642]={ + [1686]={ [1]={ [1]={ limit={ @@ -49630,7 +51152,7 @@ return { [1]="rallying_cry_weapon_damage_%_for_allies_per_5_monster_power" } }, - [1643]={ + [1687]={ [1]={ [1]={ limit={ @@ -49660,7 +51182,7 @@ return { [1]="rallying_cry_buff_effect_on_minions_+%_final" } }, - [1644]={ + [1688]={ [1]={ [1]={ [1]={ @@ -49681,7 +51203,7 @@ return { [1]="rage_warcry_maximum_rage_+" } }, - [1645]={ + [1689]={ [1]={ [1]={ [1]={ @@ -49775,7 +51297,7 @@ return { [2]="skill_empower_limitation_specifier_for_stat_description" } }, - [1646]={ + [1690]={ [1]={ [1]={ limit={ @@ -49801,7 +51323,7 @@ return { [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" } }, - [1647]={ + [1691]={ [1]={ [1]={ limit={ @@ -49818,7 +51340,7 @@ return { [1]="rallying_cry_damage_+%_final_from_osm_per_nearby_ally" } }, - [1648]={ + [1692]={ [1]={ [1]={ limit={ @@ -49848,7 +51370,7 @@ return { [1]="seismic_cry_base_slam_skill_damage_+%_final" } }, - [1649]={ + [1693]={ [1]={ [1]={ limit={ @@ -49878,7 +51400,7 @@ return { [1]="seismic_cry_slam_skill_damage_+%_final_increase_per_repeat" } }, - [1650]={ + [1694]={ [1]={ [1]={ limit={ @@ -49908,7 +51430,7 @@ return { [1]="seismic_cry_base_slam_skill_area_+%" } }, - [1651]={ + [1695]={ [1]={ [1]={ limit={ @@ -49938,7 +51460,7 @@ return { [1]="seismic_cry_base_slam_skill_area_+%_final" } }, - [1652]={ + [1696]={ [1]={ [1]={ limit={ @@ -49968,7 +51490,7 @@ return { [1]="seismic_cry_slam_skill_area_+%_increase_per_repeat" } }, - [1653]={ + [1697]={ [1]={ [1]={ limit={ @@ -49985,7 +51507,7 @@ return { [1]="display_battlemage_cry_exerted_attacks_trigger_supported_spell" } }, - [1654]={ + [1698]={ [1]={ [1]={ limit={ @@ -50002,7 +51524,7 @@ return { [1]="infernal_cry_empowered_attacks_trigger_combust_display" } }, - [1655]={ + [1699]={ [1]={ [1]={ [1]={ @@ -50023,7 +51545,7 @@ return { [1]="ambush_additional_critical_strike_chance_permyriad" } }, - [1656]={ + [1700]={ [1]={ [1]={ limit={ @@ -50040,7 +51562,7 @@ return { [1]="vanishing_ambush_critical_strike_multiplier_+" } }, - [1657]={ + [1701]={ [1]={ [1]={ limit={ @@ -50057,7 +51579,7 @@ return { [1]="intimidating_cry_empowerd_attacks_deal_double_damage_display" } }, - [1658]={ + [1702]={ [1]={ [1]={ limit={ @@ -50074,7 +51596,7 @@ return { [1]="warcry_grant_damage_+%_to_exerted_attacks" } }, - [1659]={ + [1703]={ [1]={ [1]={ [1]={ @@ -50108,7 +51630,7 @@ return { [1]="warcry_grant_knockback_%_to_exerted_attacks" } }, - [1660]={ + [1704]={ [1]={ [1]={ [1]={ @@ -50129,7 +51651,7 @@ return { [1]="warcry_grant_overwhelm_%_to_exerted_attacks" } }, - [1661]={ + [1705]={ [1]={ [1]={ limit={ @@ -50146,7 +51668,7 @@ return { [1]="warcry_skills_share_cooldowns" } }, - [1662]={ + [1706]={ [1]={ [1]={ limit={ @@ -50163,7 +51685,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [1663]={ + [1707]={ [1]={ [1]={ [1]={ @@ -50184,7 +51706,7 @@ return { [1]="water_sphere_does_weird_conversion_stuff" } }, - [1664]={ + [1708]={ [1]={ [1]={ limit={ @@ -50214,7 +51736,7 @@ return { [1]="weapon_trap_rotation_speed_+%" } }, - [1665]={ + [1709]={ [1]={ [1]={ [1]={ @@ -50248,7 +51770,7 @@ return { [1]="weapon_trap_total_rotation_%" } }, - [1666]={ + [1710]={ [1]={ [1]={ limit={ @@ -50278,7 +51800,7 @@ return { [1]="whirling_blades_evasion_rating_+%_while_moving" } }, - [1667]={ + [1711]={ [1]={ [1]={ limit={ @@ -50304,7 +51826,7 @@ return { [1]="windstorm_storm_limit" } }, - [1668]={ + [1712]={ [1]={ [1]={ [1]={ @@ -50515,7 +52037,7 @@ return { [4]="triggered_by_voidstorm_support" } }, - [1669]={ + [1713]={ [1]={ [1]={ limit={ @@ -50545,7 +52067,7 @@ return { [1]="windstorm_storm_area_of_effect_+%_final_per_stage" } }, - [1670]={ + [1714]={ [1]={ [1]={ [1]={ @@ -50579,7 +52101,7 @@ return { [1]="windstorm_storm_perfect_timing_window_escape_time_ms" } }, - [1671]={ + [1715]={ [1]={ [1]={ limit={ @@ -50609,7 +52131,7 @@ return { [1]="windstorm_storm_hit_damage_+%_final_on_detonation" } }, - [1672]={ + [1716]={ [1]={ [1]={ limit={ @@ -50639,7 +52161,7 @@ return { [1]="windstorm_storm_hit_damage_+%_final_on_detonation_per_stage" } }, - [1673]={ + [1717]={ [1]={ [1]={ limit={ @@ -50656,7 +52178,7 @@ return { [1]="winter_brand_max_number_of_stages" } }, - [1674]={ + [1718]={ [1]={ [1]={ limit={ @@ -50673,7 +52195,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [1675]={ + [1719]={ [1]={ [1]={ limit={ @@ -50690,7 +52212,7 @@ return { [1]="wither_chance_to_apply_another_stack_if_hand_cast_%" } }, - [1676]={ + [1720]={ [1]={ [1]={ [1]={ @@ -50724,7 +52246,7 @@ return { [1]="withered_on_hit_chance_%" } }, - [1677]={ + [1721]={ [1]={ [1]={ [1]={ @@ -50758,7 +52280,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [1678]={ + [1722]={ [1]={ [1]={ limit={ @@ -50784,7 +52306,7 @@ return { [1]="withering_step_chance_to_not_remove_on_skill_use_%" } }, - [1679]={ + [1723]={ [1]={ [1]={ limit={ @@ -50814,7 +52336,7 @@ return { [1]="you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted" } }, - [1680]={ + [1724]={ [1]={ [1]={ [1]={ @@ -50852,7 +52374,7 @@ return { [1]="shockwave_chained_damage_+%_final" } }, - [1681]={ + [1725]={ [1]={ [1]={ [1]={ @@ -50892,7 +52414,7 @@ return { [4]="skill_max_unleash_seals" } }, - [1682]={ + [1726]={ [1]={ [1]={ limit={ @@ -50922,7 +52444,7 @@ return { [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1683]={ + [1727]={ [1]={ [1]={ limit={ @@ -50939,7 +52461,7 @@ return { [1]="kinetic_bolt_number_of_zig_zags" } }, - [1684]={ + [1728]={ [1]={ [1]={ limit={ @@ -50969,7 +52491,7 @@ return { [1]="cold_projectile_mine_enemy_critical_strike_chance_+%_against_self" } }, - [1685]={ + [1729]={ [1]={ [1]={ limit={ @@ -51021,7 +52543,7 @@ return { [2]="quality_display_stormblast_mine_is_gem" } }, - [1686]={ + [1730]={ [1]={ [1]={ limit={ @@ -51053,7 +52575,7 @@ return { [4]="mortar_barrage_mine_maximum_added_fire_damage_taken_limit" } }, - [1687]={ + [1731]={ [1]={ [1]={ limit={ @@ -51070,7 +52592,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [1688]={ + [1732]={ [1]={ [1]={ limit={ @@ -51100,7 +52622,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [1689]={ + [1733]={ [1]={ [1]={ limit={ @@ -51117,7 +52639,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [1690]={ + [1734]={ [1]={ [1]={ [1]={ @@ -51138,7 +52660,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [1691]={ + [1735]={ [1]={ [1]={ [1]={ @@ -51159,1933 +52681,1981 @@ return { [1]="minions_are_defensive" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1199, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1200, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1201, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1202, - ["0"]=15, - ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=468, - ["abyssal_cry_%_max_life_as_chaos_on_death"]=361, - ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=359, - ["accuracy_rating"]=125, - ["accuracy_rating_+%"]=126, - ["active_skill_added_damage_+%_final"]=469, - ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=470, - ["active_skill_ailment_damage_+%_final"]=471, - ["active_skill_ailment_damage_+%_final_from_skill_effect_duration"]=51, - ["active_skill_area_damage_+%_final"]=472, - ["active_skill_area_of_effect_+%_final"]=87, - ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=473, - ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=474, - ["active_skill_area_of_effect_description_mode"]=475, - ["active_skill_area_of_effect_radius"]=475, - ["active_skill_attack_damage_+%_final_per_endurance_charge"]=476, - ["active_skill_attack_speed_+%_final"]=317, - ["active_skill_base_area_length_+"]=477, - ["active_skill_base_area_of_effect_radius"]=475, - ["active_skill_base_radius_+"]=80, - ["active_skill_base_secondary_area_of_effect_radius"]=492, - ["active_skill_base_tertiary_area_of_effect_radius"]=494, - ["active_skill_bleeding_damage_+%_final"]=479, - ["active_skill_bleeding_damage_+%_final_in_blood_stance"]=478, - ["active_skill_chill_as_though_damage_+%_final"]=480, - ["active_skill_chill_effect_+%_final"]=116, - ["active_skill_cooldown_bypass_type_override_to_power_charge"]=668, - ["active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds"]=481, - ["active_skill_damage_+%_final_vs_stunned_enemies"]=482, - ["active_skill_damage_+%_when_cast_on_frostbolt"]=483, - ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=431, - ["active_skill_display_aegis_variation"]=505, - ["active_skill_ground_consecration_radius_+"]=81, - ["active_skill_hit_ailment_damage_with_projectile_+%_final"]=484, - ["active_skill_hit_damage_+%_final_per_curse_on_target"]=485, - ["active_skill_if_used_through_frostbolt_damage_+%_final"]=486, - ["active_skill_ignite_damage_+%_final"]=487, - ["active_skill_main_hand_weapon_damage_+%_final"]=467, - ["active_skill_minion_energy_shield_+%_final"]=153, - ["active_skill_minion_life_+%_final"]=152, - ["active_skill_minion_movement_velocity_+%_final"]=149, - ["active_skill_poison_damage_+%_final"]=488, - ["active_skill_poison_duration_+%_final"]=489, - ["active_skill_projectile_damage_+%_final"]=426, - ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=490, - ["active_skill_projectile_speed_+%_final"]=491, - ["active_skill_returning_projectile_damage_+%_final"]=427, - ["active_skill_secondary_area_of_effect_description_mode"]=492, - ["active_skill_secondary_area_of_effect_radius"]=492, - ["active_skill_shock_as_though_damage_+%_final"]=493, - ["active_skill_summon_X_totems_in_ring_override"]=48, - ["active_skill_tertiary_area_of_effect_description_mode"]=494, - ["active_skill_tertiary_area_of_effect_radius"]=494, - ["active_skill_trap_throwing_speed_+%_final"]=495, - ["add_endurance_charge_on_skill_hit_%"]=496, - ["add_frenzy_charge_on_kill"]=130, - ["add_frenzy_charge_on_kill_%_chance"]=131, - ["add_frenzy_charge_on_skill_hit_%"]=497, - ["add_power_charge_on_critical_strike_%"]=277, - ["additional_base_critical_strike_chance"]=412, - ["additional_block_chance_against_projectiles_%_per_steel_charge"]=498, - ["additional_chain_chance_%"]=499, - ["additional_chance_to_freeze_chilled_enemies_%"]=391, - ["additional_critical_strike_chance_per_overloaded_intensity"]=500, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=502, - ["additional_critical_strike_chance_permyriad_while_dead"]=501, - ["additional_poisons_+_to_apply_vs_non_poisoned_enemies"]=74, - ["additional_projectiles_per_intensity"]=503, - ["additive_arrow_speed_modifiers_apply_to_area_of_effect"]=504, - ["ailment_damage_+%_per_frenzy_charge"]=506, - ["alchemists_mark_igniter_creates_burning_ground_%_ignite_damage"]=507, - ["alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage"]=507, - ["all_damage_can_ignite_freeze_shock"]=508, - ["all_damage_can_sap"]=509, - ["already_split_if_no_steel_shards"]=510, - ["always_freeze"]=110, - ["always_stun"]=158, - ["always_stun_enemies_that_are_on_full_life"]=511, - ["ambush_additional_critical_strike_chance_permyriad"]=1655, - ["ancestor_totem_buff_effect_+%"]=512, - ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=66, - ["ancestor_totem_parent_activation_range_+%"]=513, - ["ancestral_buff_action_speed_+%_minimum_value"]=514, - ["ancestral_buff_armour_%_applies_to_all_damage_from_hits"]=515, - ["ancestral_buff_base_mana_regeneration_rate_per_minute"]=516, - ["ancestral_buff_base_rage_regeneration_per_minute"]=517, - ["ancestral_buff_base_spell_damage_%_suppressed"]=518, - ["ancestral_buff_damage_removed_from_your_nearest_totem_before_life_or_es_%"]=519, - ["ancestral_buff_flask_charges_recovered_per_3_seconds"]=520, - ["ancestral_buff_leech_%_is_instant"]=521, - ["ancestral_buff_recover_%_of_maximum_life_mana_energy_shield_on_block"]=522, - ["ancestral_buff_travel_skill_cooldown_speed_+%"]=523, - ["ancestral_cry_elemental_resist_%_per_5_power_up_to_cap"]=1634, - ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1646, - ["ancestral_cry_maximum_elemental_resist_%_per_10_power_up_to_cap"]=1635, - ["ancestral_embrace_effect_+%_per_arohongui_tattoo"]=524, - ["ancestral_embrace_effect_+%_per_hinekora_tattoo"]=525, - ["ancestral_embrace_effect_+%_per_kitava_tattoo"]=526, - ["ancestral_embrace_effect_+%_per_ngamahu_tattoo"]=527, - ["ancestral_embrace_effect_+%_per_ramako_tattoo"]=528, - ["ancestral_embrace_effect_+%_per_rongokurai_tattoo"]=529, - ["ancestral_embrace_effect_+%_per_tasalio_tattoo"]=530, - ["ancestral_embrace_effect_+%_per_tawhoa_tattoo"]=531, - ["ancestral_embrace_effect_+%_per_tukohama_tattoo"]=532, - ["ancestral_embrace_effect_+%_per_valako_tattoo"]=533, - ["ancestral_slam_interval_duration"]=451, - ["ancestral_slam_stun_threshold_reduction_+%"]=534, - ["animate_item_maximum_level_requirement"]=292, - ["animate_weapon_can_only_animate_range_weapons"]=535, - ["animate_weapon_chance_to_create_additional_copy_%"]=536, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=537, - ["apply_enemy_impale_damage_to_nearby_enemies_on_killing_blow_%_chance"]=538, - ["apply_linked_curses_on_hit_%"]=283, - ["apply_linked_curses_with_dark_ritual"]=539, - ["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=540, - ["arc_damage_+%_final_for_each_remaining_chain"]=541, - ["arc_damage_+%_final_per_chain"]=542, - ["arcane_cloak_consume_%_of_mana"]=543, - ["arcane_cloak_damage_absorbed_%"]=544, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=545, - ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=546, - ["arctic_armour_chill_when_hit_duration"]=547, - ["arctic_armour_freeze_enemies_when_you_are_hit_%_chance"]=548, - ["arctic_breath_maximum_number_of_skulls_allowed"]=549, - ["area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge"]=550, - ["area_of_effect_+%_per_frost_fury_stage"]=551, - ["area_of_effect_+%_when_cast_on_frostbolt"]=552, - ["area_of_effect_+%_while_dead"]=85, - ["area_of_effect_+%_while_not_dual_wielding"]=553, - ["armour_+%_per_barkskin_stack"]=138, - ["arrow_number_of_targets_to_pierce"]=107, - ["arrows_always_pierce"]=107, - ["artillery_ballista_cross_strafe_pattern"]=554, - ["artillery_ballista_number_of_arrow_targets"]=555, - ["attack_and_cast_speed_+%"]=556, - ["attack_damage_+%"]=557, - ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=558, - ["attack_maximum_added_physical_damage_with_weapons_per_trauma"]=559, - ["attack_minimum_added_physical_damage_with_weapons_per_trauma"]=559, - ["attack_repeat_count"]=276, - ["attack_skill_mana_leech_from_any_damage_permyriad"]=560, - ["attack_speed_+%"]=61, - ["attack_speed_+%_granted_from_skill"]=62, - ["attack_speed_+%_per_maximum_totem"]=561, - ["attack_speed_+%_per_trauma"]=1532, - ["attack_speed_+%_when_on_low_life"]=63, - ["attack_trigger_on_hit_%"]=312, - ["attack_trigger_on_hitting_bleeding_enemy_%"]=562, - ["attack_trigger_on_kill_%"]=293, - ["attack_trigger_on_melee_critical_hit_%"]=313, - ["attack_trigger_on_melee_hit_%"]=314, - ["attack_trigger_when_critically_hit_%"]=290, - ["attacks_impale_on_hit_%_chance"]=563, - ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=328, - ["aura_effect_+%"]=90, - ["automation_behaviour"]=564, - ["avoid_damage_%"]=565, - ["avoid_interruption_while_using_this_skill_%"]=566, - ["backstab_damage_+%"]=159, - ["ball_lightning_superball_%_chance"]=567, - ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=458, - ["barrage_support_projectile_spread_+%"]=568, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1237, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1238, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1239, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1240, + ["0"]=16, + ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=471, + ["abyssal_cry_%_max_life_as_chaos_on_death"]=363, + ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=361, + ["abyssal_well_damage_over_time_+%_final_per_corpse_consumed_by_well_up_to_100%"]=472, + ["accuracy_rating"]=126, + ["accuracy_rating_+%"]=127, + ["active_skill_added_damage_+%_final"]=473, + ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=474, + ["active_skill_ailment_damage_+%_final"]=475, + ["active_skill_ailment_damage_+%_final_from_skill_effect_duration"]=52, + ["active_skill_area_damage_+%_final"]=476, + ["active_skill_area_of_effect_+%_final"]=88, + ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=477, + ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=478, + ["active_skill_area_of_effect_description_mode"]=479, + ["active_skill_area_of_effect_radius"]=479, + ["active_skill_attack_damage_+%_final_per_endurance_charge"]=480, + ["active_skill_attack_speed_+%_final"]=318, + ["active_skill_base_area_length_+"]=481, + ["active_skill_base_area_of_effect_radius"]=479, + ["active_skill_base_radius_+"]=81, + ["active_skill_base_secondary_area_of_effect_radius"]=498, + ["active_skill_base_tertiary_area_of_effect_radius"]=500, + ["active_skill_bleeding_damage_+%_final"]=483, + ["active_skill_bleeding_damage_+%_final_in_blood_stance"]=482, + ["active_skill_buff_life_recovery_rate_+%_per_wither_on_self_to_grant"]=484, + ["active_skill_buff_wither_on_hit_%_chance_to_grant"]=485, + ["active_skill_chill_as_though_damage_+%_final"]=486, + ["active_skill_chill_effect_+%_final"]=117, + ["active_skill_cooldown_bypass_type_override_to_power_charge"]=676, + ["active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds"]=487, + ["active_skill_damage_+%_final_vs_stunned_enemies"]=488, + ["active_skill_damage_+%_when_cast_on_frostbolt"]=489, + ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=434, + ["active_skill_display_aegis_variation"]=511, + ["active_skill_ground_consecration_radius_+"]=82, + ["active_skill_hit_ailment_damage_with_projectile_+%_final"]=490, + ["active_skill_hit_damage_+%_final_per_curse_on_target"]=491, + ["active_skill_if_used_through_frostbolt_damage_+%_final"]=492, + ["active_skill_ignite_damage_+%_final"]=493, + ["active_skill_main_hand_weapon_damage_+%_final"]=470, + ["active_skill_minion_energy_shield_+%_final"]=154, + ["active_skill_minion_life_+%_final"]=153, + ["active_skill_minion_movement_velocity_+%_final"]=150, + ["active_skill_osm_vaal_skill_soul_gain_prevention_+%_final_to_grant"]=1226, + ["active_skill_osm_vaal_skill_soul_refund_chance_%_to_grant"]=1228, + ["active_skill_poison_damage_+%_final"]=494, + ["active_skill_poison_duration_+%_final"]=495, + ["active_skill_projectile_damage_+%_final"]=429, + ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=496, + ["active_skill_projectile_speed_+%_final"]=497, + ["active_skill_returning_projectile_damage_+%_final"]=430, + ["active_skill_secondary_area_of_effect_description_mode"]=498, + ["active_skill_secondary_area_of_effect_radius"]=498, + ["active_skill_shock_as_though_damage_+%_final"]=499, + ["active_skill_summon_X_totems_in_ring_override"]=49, + ["active_skill_tertiary_area_of_effect_description_mode"]=500, + ["active_skill_tertiary_area_of_effect_radius"]=500, + ["active_skill_trap_throwing_speed_+%_final"]=501, + ["add_endurance_charge_on_skill_hit_%"]=502, + ["add_frenzy_charge_on_kill"]=131, + ["add_frenzy_charge_on_kill_%_chance"]=132, + ["add_frenzy_charge_on_skill_hit_%"]=503, + ["add_power_charge_on_critical_strike_%"]=278, + ["additional_base_critical_strike_chance"]=415, + ["additional_block_chance_against_projectiles_%_per_steel_charge"]=504, + ["additional_chain_chance_%"]=505, + ["additional_chance_to_freeze_chilled_enemies_%"]=393, + ["additional_critical_strike_chance_per_overloaded_intensity"]=506, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=508, + ["additional_critical_strike_chance_permyriad_while_dead"]=507, + ["additional_poisons_+_to_apply_vs_non_poisoned_enemies"]=75, + ["additional_projectiles_per_intensity"]=509, + ["additive_arrow_speed_modifiers_apply_to_area_of_effect"]=510, + ["ailment_damage_+%_per_frenzy_charge"]=512, + ["alchemists_mark_igniter_creates_burning_ground_%_ignite_damage"]=513, + ["alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage"]=513, + ["all_damage_can_ignite_freeze_shock"]=514, + ["all_damage_can_sap"]=515, + ["already_split_if_no_steel_shards"]=516, + ["always_freeze"]=111, + ["always_stun"]=159, + ["always_stun_enemies_that_are_on_full_life"]=517, + ["ambush_additional_critical_strike_chance_permyriad"]=1699, + ["ancestor_totem_buff_effect_+%"]=518, + ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=67, + ["ancestor_totem_parent_activation_range_+%"]=519, + ["ancestral_buff_action_speed_+%_minimum_value"]=520, + ["ancestral_buff_armour_%_applies_to_all_damage_from_hits"]=521, + ["ancestral_buff_base_mana_regeneration_rate_per_minute"]=522, + ["ancestral_buff_base_rage_regeneration_per_minute"]=523, + ["ancestral_buff_base_spell_damage_%_suppressed"]=524, + ["ancestral_buff_damage_removed_from_your_nearest_totem_before_life_or_es_%"]=525, + ["ancestral_buff_flask_charges_recovered_per_3_seconds"]=526, + ["ancestral_buff_leech_%_is_instant"]=527, + ["ancestral_buff_recover_%_of_maximum_life_mana_energy_shield_on_block"]=528, + ["ancestral_buff_travel_skill_cooldown_speed_+%"]=529, + ["ancestral_cry_elemental_resist_%_per_5_power_up_to_cap"]=1678, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1690, + ["ancestral_cry_maximum_elemental_resist_%_per_10_power_up_to_cap"]=1679, + ["ancestral_embrace_effect_+%_per_arohongui_tattoo"]=530, + ["ancestral_embrace_effect_+%_per_hinekora_tattoo"]=531, + ["ancestral_embrace_effect_+%_per_kitava_tattoo"]=532, + ["ancestral_embrace_effect_+%_per_ngamahu_tattoo"]=533, + ["ancestral_embrace_effect_+%_per_ramako_tattoo"]=534, + ["ancestral_embrace_effect_+%_per_rongokurai_tattoo"]=535, + ["ancestral_embrace_effect_+%_per_tasalio_tattoo"]=536, + ["ancestral_embrace_effect_+%_per_tawhoa_tattoo"]=537, + ["ancestral_embrace_effect_+%_per_tukohama_tattoo"]=538, + ["ancestral_embrace_effect_+%_per_valako_tattoo"]=539, + ["ancestral_slam_interval_duration"]=454, + ["ancestral_slam_stun_threshold_reduction_+%"]=540, + ["animate_item_maximum_level_requirement"]=293, + ["animate_weapon_can_only_animate_range_weapons"]=541, + ["animate_weapon_chance_to_create_additional_copy_%"]=542, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=543, + ["apply_enemy_impale_damage_to_nearby_enemies_on_killing_blow_%_chance"]=544, + ["apply_linked_curses_on_hit_%"]=284, + ["apply_linked_curses_with_dark_ritual"]=545, + ["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=546, + ["arc_damage_+%_final_for_each_remaining_chain"]=547, + ["arc_damage_+%_final_per_chain"]=548, + ["arcane_cloak_consume_%_of_mana"]=549, + ["arcane_cloak_damage_absorbed_%"]=550, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=551, + ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=552, + ["arctic_armour_chill_when_hit_duration"]=553, + ["arctic_armour_freeze_enemies_when_you_are_hit_%_chance"]=554, + ["arctic_breath_maximum_number_of_skulls_allowed"]=555, + ["area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge"]=556, + ["area_of_effect_+%_per_frost_fury_stage"]=557, + ["area_of_effect_+%_when_cast_on_frostbolt"]=558, + ["area_of_effect_+%_while_dead"]=86, + ["area_of_effect_+%_while_not_dual_wielding"]=559, + ["armour_+%_per_barkskin_stack"]=139, + ["arrow_number_of_targets_to_pierce"]=108, + ["arrows_always_pierce"]=108, + ["artillery_ballista_cross_strafe_pattern"]=560, + ["artillery_ballista_number_of_arrow_targets"]=561, + ["attack_and_cast_speed_+%"]=562, + ["attack_damage_+%"]=563, + ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=564, + ["attack_maximum_added_physical_damage_with_weapons_per_trauma"]=565, + ["attack_minimum_added_physical_damage_with_weapons_per_trauma"]=565, + ["attack_repeat_count"]=277, + ["attack_skill_mana_leech_from_any_damage_permyriad"]=566, + ["attack_speed_+%"]=62, + ["attack_speed_+%_granted_from_skill"]=63, + ["attack_speed_+%_per_maximum_totem"]=567, + ["attack_speed_+%_per_trauma"]=1575, + ["attack_speed_+%_when_on_low_life"]=64, + ["attack_trigger_on_hit_%"]=313, + ["attack_trigger_on_hitting_bleeding_enemy_%"]=568, + ["attack_trigger_on_kill_%"]=294, + ["attack_trigger_on_melee_critical_hit_%"]=314, + ["attack_trigger_on_melee_hit_%"]=315, + ["attack_trigger_when_critically_hit_%"]=291, + ["attacks_impale_on_hit_%_chance"]=569, + ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=330, + ["aura_effect_+%"]=91, + ["automation_behaviour"]=570, + ["avoid_damage_%"]=571, + ["avoid_interruption_while_using_this_skill_%"]=572, + ["backstab_damage_+%"]=160, + ["ball_lightning_superball_%_chance"]=573, + ["barnacle_snap_activate_rate_ms"]=574, + ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=461, + ["barrage_support_projectile_spread_+%"]=575, ["base_actor_scale_+%"]=1, - ["base_all_ailment_duration_+%"]=569, - ["base_arrow_speed_+%"]=357, - ["base_attack_speed_+%_per_frenzy_charge"]=91, - ["base_aura_area_of_effect_+%"]=89, - ["base_buff_duration_ms_+_per_removable_endurance_charge"]=193, - ["base_cast_speed_+%"]=71, - ["base_chance_to_deal_triple_damage_%"]=570, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=571, - ["base_chance_to_freeze_%"]=110, - ["base_chance_to_ignite_%"]=113, - ["base_chance_to_poison_on_hit_%"]=402, - ["base_chance_to_shock_%"]=112, - ["base_chance_to_shock_%_from_skill"]=1299, - ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=127, - ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=162, - ["base_cold_damage_resistance_%"]=242, - ["base_cooldown_modifier_ms"]=572, - ["base_cooldown_speed_+%"]=573, - ["base_critical_strike_multiplier_+"]=140, - ["base_damage_taken_+%"]=574, - ["base_deal_no_chaos_damage"]=575, - ["base_energy_shield_leech_from_spell_damage_permyriad"]=576, - ["base_extra_damage_rolls"]=577, - ["base_holy_strike_maximum_number_of_animated_weapons"]=579, - ["base_inflict_cold_exposure_on_hit_%_chance"]=580, - ["base_inflict_fire_exposure_on_hit_%_chance"]=581, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=582, - ["base_life_gain_per_target"]=143, - ["base_life_leech_from_chaos_damage_permyriad"]=583, - ["base_life_regeneration_rate_per_minute"]=239, - ["base_mana_regeneration_rate_per_minute"]=381, - ["base_movement_velocity_+%"]=121, - ["base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=206, - ["base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=205, - ["base_nonlethal_fire_damage_%_of_maximum_mana_taken_per_minute"]=207, - ["base_number_of_effigies_allowed"]=1180, - ["base_number_of_living_lightning_allowed"]=584, - ["base_number_of_projectiles_in_spiral_nova"]=59, - ["base_number_of_sacred_wisps_allowed"]=585, - ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=129, - ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=128, - ["base_physical_damage_%_to_convert_to_cold"]=364, - ["base_physical_damage_reduction_rating"]=213, - ["base_poison_damage_+%"]=407, - ["base_poison_duration_+%"]=408, - ["base_projectile_speed_+%"]=109, - ["base_reduce_enemy_cold_resistance_%"]=251, - ["base_reduce_enemy_fire_resistance_%"]=250, - ["base_reduce_enemy_lightning_resistance_%"]=252, - ["base_resist_all_elements_%"]=201, - ["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=203, - ["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=202, - ["base_righteous_fire_%_of_max_mana_to_deal_to_nearby_per_minute"]=204, - ["base_skill_area_of_effect_+%"]=82, - ["base_smite_number_of_targets"]=587, - ["base_stun_duration_+%"]=157, - ["base_stun_recovery_+%"]=189, - ["base_stun_threshold_reduction_+%"]=79, - ["base_use_life_in_place_of_mana"]=219, - ["base_windstorm_storm_stage_gained_per_X_ms"]=1668, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=588, - ["berserk_attack_damage_+%_final"]=444, - ["berserk_attack_speed_+%_final"]=446, - ["berserk_base_damage_taken_+%_final"]=448, - ["berserk_minimum_rage"]=443, - ["berserk_movement_speed_+%_final"]=447, - ["berserk_rage_effect_+%"]=445, - ["berserk_rage_loss_+%_per_second"]=450, - ["blackhole_damage_taken_+%"]=589, - ["blackhole_hinder_%"]=590, - ["blackhole_tick_rate_ms"]=591, - ["blade_blast_detonated_blades_not_removed_%_chance"]=592, - ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=593, - ["blade_flurry_critical_strike_chance_per_stage_+%_final"]=594, - ["blade_flurry_critical_strike_multiplier_+_while_at_max_stages"]=595, - ["blade_flurry_damage_+%_final_while_at_max_stages"]=596, - ["blade_flurry_elemental_damage_+%_while_channeling"]=597, - ["blade_flurry_final_flurry_area_of_effect_+%"]=598, - ["blade_vortex_additional_blade_chance_%"]=599, - ["blade_vortex_ailment_damage_+%_per_blade_final"]=269, - ["blade_vortex_critical_strike_chance_+%_per_blade"]=600, - ["blade_vortex_damage_+%_per_blade_final"]=268, - ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=601, - ["blade_vortex_hit_rate_+%_per_blade"]=267, - ["blade_vortex_hit_rate_ms"]=602, - ["bladefall_create_X_lingering_blades_per_volley"]=603, - ["bladefall_critical_strike_chance_+%_per_stage"]=604, - ["bladefall_damage_per_stage_+%_final"]=405, - ["bladefall_volley_frequency_ms"]=605, - ["bladefall_volley_gap_distance_+%"]=606, - ["bladefall_volleys_needed_per_vestige_blade"]=607, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=608, - ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=609, - ["bladestorm_blood_stance_ailment_damage_+%"]=610, - ["bladestorm_maximum_number_of_storms_allowed"]=611, - ["bladestorm_movement_speed_+%_while_in_sandstorm"]=612, - ["bladestorm_sandstorm_movement_speed_+%"]=613, - ["bladestorm_storm_damage_+%_final"]=614, - ["blast_rain_area_of_effect_+%"]=615, - ["blast_rain_damage_+%_vs_distant_enemies"]=616, - ["bleed_on_hit_with_attacks_%"]=617, - ["bleeding_damage_+%"]=619, - ["bleeding_damage_+100%_final_chance"]=618, - ["bleeding_skill_effect_duration"]=99, - ["blind_duration_+%"]=249, - ["blind_effect_+%"]=620, - ["blood_ground_leaving_area_lasts_for_ms"]=621, - ["blood_rage_life_leech_from_elemental_damage_permyriad"]=622, - ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=415, - ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=418, - ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=416, - ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=417, - ["blood_sand_triggered_blind_on_attack_chance_%"]=624, - ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=625, - ["blood_scythe_cost_+%_final_per_charge"]=626, - ["blood_scythe_damage_+%_final_per_charge"]=627, - ["blood_surge_refresh_on_total_life_spent"]=628, - ["blood_tendrils_beam_count"]=629, - ["bodyswap_damage_+%_when_not_consuming_corpse"]=630, - ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=631, - ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=631, - ["bone_golem_grants_minion_maximum_added_physical_damage"]=632, - ["bone_golem_grants_minion_minimum_added_physical_damage"]=632, - ["boneshatter_chance_to_gain_+1_trauma"]=633, - ["boneshatter_trauma_base_duration_ms"]=1533, - ["brand_cannot_be_recalled"]=634, - ["brand_detonate_faster_activation_%_per_second"]=635, - ["brand_detonate_faster_duration_%_per_second"]=636, - ["brand_recall_spend_%_of_recalled_brands_cost"]=637, - ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=638, - ["buff_effect_duration"]=93, - ["buff_effect_duration_+%_per_removable_endurance_charge"]=194, - ["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=195, - ["buff_grants_smite_additional_lightning_targets"]=639, - ["burn_damage_+%"]=120, - ["call_of_steel_reload_amount"]=640, - ["call_of_steel_reload_time"]=640, - ["call_to_arms_behaviour"]=641, - ["cannot_cause_bleeding"]=617, - ["cannot_inflict_additional_poisons"]=642, - ["cannot_inflict_status_ailments"]=217, - ["cannot_knockback"]=643, - ["cannot_poison_poisoned_enemies"]=644, - ["cast_linked_spells_on_attack_crit_%"]=287, - ["cast_linked_spells_on_melee_kill_%"]=288, - ["cast_on_any_damage_taken_%"]=301, - ["cast_on_attack_use_%"]=294, - ["cast_on_crit_%"]=645, - ["cast_on_damage_taken_%"]=315, - ["cast_on_damage_taken_threshold"]=315, - ["cast_on_death_%"]=303, - ["cast_on_flask_use_%"]=646, - ["cast_on_gain_avians_flight_or_avians_might_%"]=307, - ["cast_on_gain_skill"]=647, - ["cast_on_hit_%"]=308, - ["cast_on_hit_if_cursed_%"]=309, - ["cast_on_lose_cats_stealth"]=310, - ["cast_on_melee_hit_if_cursed_%"]=311, - ["cast_on_skill_use_%"]=295, - ["cast_on_stunned_%"]=305, - ["cast_speed_+%_granted_from_skill"]=9, - ["cast_speed_+%_when_on_low_life"]=70, - ["cast_when_hit_%"]=302, - ["cast_while_channelling_time_ms"]=320, - ["chain_grab_number_of_targets"]=648, - ["chain_hook_attaches_to_X_targets"]=649, - ["chain_hook_attachment_rage_to_gain_per_hit"]=650, - ["chain_hook_attachment_range"]=651, - ["chain_hook_max_attached_targets"]=652, - ["chain_hook_range_+%"]=653, - ["chain_strike_cone_radius_+_per_x_rage"]=654, - ["chain_strike_gain_x_rage_if_attack_hits"]=655, - ["chaining_range_+%"]=656, - ["chance_%_when_poison_to_also_poison_another_enemy"]=659, - ["chance_for_extra_damage_roll_%"]=657, - ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=658, - ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=660, - ["chance_to_bleed_on_hit_%_vs_maimed"]=661, - ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=662, - ["chance_to_cast_on_kill_%"]=296, - ["chance_to_cast_on_kill_%_target_self"]=297, - ["chance_to_cast_on_rampage_tier_%"]=304, - ["chance_to_cast_when_your_trap_is_triggered_%"]=316, - ["chance_to_deal_double_damage_%"]=663, - ["chance_to_deal_double_damage_%_per_10_intelligence"]=664, - ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=665, - ["chance_to_double_stun_duration_%"]=666, - ["chance_to_evade_attacks_+%_final_per_missing_barkskin_stack"]=139, - ["chance_to_fork_extra_projectile_%"]=667, - ["chance_to_fortify_on_melee_hit_+%"]=362, - ["chance_to_freeze_shock_ignite_%"]=390, - ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=668, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=669, - ["chance_to_ignore_hexproof_%"]=670, - ["chance_to_inflict_additional_impale_%"]=671, - ["chance_to_inflict_scorch_brittle_sap_%"]=672, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=673, - ["chance_to_scorch_%"]=674, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=675, - ["chance_to_summon_support_ghost_on_killing_blow_%"]=676, - ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=677, - ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=678, - ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=679, - ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=680, - ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=681, - ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=682, - ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=683, - ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=684, - ["chance_to_trigger_on_animate_guardian_kill_%"]=685, - ["chance_to_trigger_on_animate_weapon_kill_%"]=686, - ["chance_to_unnerve_on_hit_%"]=687, - ["chaos_damage_resisted_by_highest_resistance"]=688, - ["chaos_damage_resisted_by_lowest_resistance"]=689, - ["chaos_damage_taken_+%"]=401, - ["chaos_golem_grants_additional_physical_damage_reduction_%"]=371, - ["chaos_golem_grants_chaos_resistance_%"]=382, - ["chaos_golem_grants_dot_multiplier_+"]=372, - ["charged_attack_damage_per_stack_+%_final"]=690, - ["charged_blast_spell_damage_+%_final_per_stack"]=318, - ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=691, - ["charged_dash_damage_+%_final_per_stack"]=692, - ["charged_dash_skill_inherent_movement_speed_+%_final"]=693, - ["chill_duration_+%"]=115, - ["chill_effect_+%"]=117, - ["chilled_ground_base_magnitude_override"]=694, - ["chilling_area_movement_velocity_+%"]=695, - ["chronomancer_buff_cooldown_speed_+%"]=696, - ["circle_of_power_critical_strike_chance_+%_per_stage"]=697, - ["circle_of_power_enemy_damage_+%_final_at_max_stages"]=698, - ["circle_of_power_mana_spend_per_upgrade"]=699, - ["circle_of_power_max_added_lightning_per_stage"]=701, - ["circle_of_power_max_stages"]=700, - ["circle_of_power_min_added_lightning_per_stage"]=701, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=704, - ["cleave_area_of_effect_+%_final_from_executioner"]=702, - ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=703, - ["cold_ailment_duration_+%"]=705, - ["cold_ailment_effect_+%"]=706, - ["cold_damage_+%"]=351, - ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1684, - ["combat_rush_effect_+%"]=707, - ["consecrated_cry_consecrated_ground_duration_ms"]=708, - ["consecrated_cry_warcry_area_of_effect_+%_final"]=709, - ["consecrated_ground_area_+%"]=713, - ["consecrated_ground_effect_+%"]=710, - ["consecrated_ground_enemy_damage_taken_+%"]=711, - ["consecrated_ground_immune_to_curses"]=712, - ["contagion_display_spread_on_death"]=714, - ["contagion_spread_on_hit_affected_enemy_%"]=714, - ["conversation_trap_converted_enemy_damage_+%"]=715, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=716, - ["corpse_consumption_life_to_gain"]=263, - ["corpse_consumption_mana_to_gain"]=264, - ["corpse_erruption_maximum_number_of_geyers"]=717, - ["corpse_explosion_monster_life_%"]=34, - ["corpse_explosion_monster_life_%_chaos"]=35, - ["corpse_explosion_monster_life_%_lightning"]=36, - ["corpse_explosion_monster_life_permillage_fire"]=37, - ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=719, - ["corpse_warp_area_of_effect_+%_final_when_consuming_minion"]=718, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=424, - ["corrosive_shroud_gains_%_of_damage_from_inflicted_poisons"]=422, - ["corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"]=421, - ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=425, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=720, - ["cover_in_ash_on_hit_%"]=721, - ["cover_in_frost_on_hit_%"]=722, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=723, - ["created_slipstream_action_speed_+%"]=724, - ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=725, - ["critical_ailment_dot_multiplier_+"]=727, - ["critical_poison_dot_multiplier_+"]=728, - ["critical_strike_chance_+%"]=132, - ["critical_strike_chance_+%_final_per_power_charge_from_power_siphon"]=729, - ["critical_strike_chance_+%_per_power_charge"]=730, - ["critical_strike_chance_+%_per_righteous_charge"]=731, - ["critical_strike_chance_+%_vs_bleeding_enemies"]=457, - ["critical_strike_chance_+%_vs_blinded_enemies"]=732, - ["critical_strike_chance_+%_vs_shocked_enemies"]=726, - ["critical_strike_multiplier_+_per_blade"]=734, - ["critical_strike_multiplier_+_per_overloaded_intensity"]=733, - ["critical_strike_multiplier_+_per_power_charge"]=735, - ["critical_strike_multiplier_+_while_affected_by_elusive"]=141, - ["critical_strikes_that_inflict_bleeding_also_rupture"]=1471, - ["cruelty_effect_+%"]=736, - ["crush_for_2_seconds_on_hit_%_chance"]=737, - ["curse_effect_+%"]=321, - ["curse_effect_+%_final_vs_players"]=323, - ["curse_effect_+%_vs_players"]=322, - ["curse_effect_duration"]=92, - ["curse_pacifies_after_60%"]=738, - ["curse_pillar_curse_effect_+%_final"]=324, - ["cyclone_area_of_effect_+%_per_additional_melee_range"]=83, - ["cyclone_attack_speed_+%_final_per_stage"]=739, - ["cyclone_first_hit_damage_+%_final"]=410, - ["cyclone_gain_stage_every_x_ms_while_channelling"]=740, - ["cyclone_max_number_of_stages"]=741, - ["cyclone_melee_weapon_range_+_per_stage"]=742, - ["cyclone_movement_speed_+%_final"]=270, - ["cyclone_movement_speed_+%_final_per_stage"]=743, - ["cyclone_stage_decay_time_ms"]=744, - ["damage_+%"]=383, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=746, - ["damage_+%_if_you_have_consumed_a_corpse_recently"]=745, - ["damage_+%_per_200_mana_spent_recently"]=747, - ["damage_+%_per_chain"]=748, - ["damage_+%_vs_burning_enemies"]=339, - ["damage_+%_vs_chilled_enemies"]=749, - ["damage_+%_vs_enemies_on_full_life"]=750, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=751, - ["damage_+%_while_es_leeching"]=752, - ["damage_+%_while_life_leeching"]=753, - ["damage_+%_while_mana_leeching"]=754, - ["damage_cannot_be_reflected"]=342, - ["damage_cannot_break_kinetic_shells"]=30, - ["damage_infusion_%"]=57, - ["damage_over_time_+%"]=404, - ["damage_per_blade_vortex_blade_description_mode"]=268, - ["damage_removed_from_minions_before_life_or_es_%_if_only_one_minion"]=755, - ["damage_removed_from_radiant_sentinel_before_life_or_es_%"]=756, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=758, - ["damage_vs_enemies_on_low_life_+%"]=759, - ["damaging_ailments_deal_damage_+%_faster"]=760, - ["dark_pact_chance_to_gain_an_additional_ruin_%"]=761, - ["dark_pact_chaos_damage_added_from_sacrifice_+%"]=762, - ["dark_pact_sacrifice_%_life_from_max_ruin"]=762, - ["dark_ritual_damage_+%_final_per_curse_applied"]=763, - ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=764, - ["dash_grants_phasing_after_use_ms"]=765, - ["deal_no_elemental_damage"]=766, - ["deal_no_non_elemental_damage"]=767, - ["death_wish_attack_speed_+%"]=768, - ["death_wish_cast_speed_+%"]=769, - ["death_wish_hit_and_ailment_damage_+%_final_per_stage"]=770, - ["death_wish_max_stages"]=771, - ["death_wish_movement_speed_+%"]=772, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=773, - ["debuff_time_passed_+%"]=774, - ["degen_effect_+%"]=192, - ["desecrate_chance_for_additional_corpse_%"]=775, - ["desecrate_chance_for_special_corpse_%"]=776, - ["desecrate_corpse_level"]=330, - ["desecrate_maximum_number_of_corpses"]=777, - ["desecrate_number_of_corpses_to_create"]=329, - ["destroy_corpses_on_kill_%_chance"]=778, - ["detonate_dead_%_chance_to_detonate_additional_corpse"]=780, - ["detonate_dead_damage_+%_if_corpse_ignited"]=779, - ["detonate_mines_is_triggered_while_moving"]=781, - ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=782, - ["disable_mine_detonation_cascade"]=783, - ["discharge_chance_not_to_consume_charges_%"]=784, - ["discharge_damage_+%_if_3_charge_types_removed"]=785, - ["discus_slam_damage_+%_final_for_shockwave"]=786, - ["disintegrate_base_radius_+_per_intensify"]=787, - ["disintegrate_damage_+%_final_per_intensity"]=788, - ["disintegrate_secondary_beam_angle_+%"]=789, - ["display_active_skill_forced_stance"]=1296, - ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=790, - ["display_additional_projectile_per_3_mines_in_detonation_sequence"]=791, - ["display_additional_projectile_per_mine_in_detonation_sequence"]=792, - ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1653, - ["display_brand_deonate_tag_conversion"]=793, - ["display_disable_melee_weapons"]=54, - ["display_fires_x_times"]=58, - ["display_flask_throw_allowed_flask_types"]=903, - ["display_herald_of_thunder_storm"]=723, - ["display_hide_projectile_chain_num"]=1605, - ["display_linked_curse_effect_+%"]=794, - ["display_linked_curse_effect_+%_final"]=795, - ["display_manabond_length"]=1088, - ["display_max_ailment_bearer_charges"]=796, - ["display_max_blight_stacks"]=797, - ["display_max_charged_attack_stats"]=798, - ["display_max_fire_beam_stacks"]=799, - ["display_max_upgraded_sentinels_of_absolution"]=800, - ["display_max_upgraded_sentinels_of_dominance"]=801, - ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=802, - ["display_mirage_warriors_no_spirit_strikes"]=803, - ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=804, - ["display_projectiles_chain_when_impacting_ground"]=805, - ["display_removes_and_grants_elusive_when_used"]=807, + ["base_all_ailment_duration_+%"]=576, + ["base_arrow_speed_+%"]=359, + ["base_attack_speed_+%_per_frenzy_charge"]=92, + ["base_aura_area_of_effect_+%"]=90, + ["base_buff_duration_ms_+_per_removable_endurance_charge"]=194, + ["base_cast_speed_+%"]=72, + ["base_chance_to_deal_triple_damage_%"]=577, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=578, + ["base_chance_to_freeze_%"]=111, + ["base_chance_to_ignite_%"]=114, + ["base_chance_to_poison_on_hit_%"]=405, + ["base_chance_to_shock_%"]=113, + ["base_chance_to_shock_%_from_skill"]=1337, + ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=128, + ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=163, + ["base_cold_damage_resistance_%"]=243, + ["base_cooldown_modifier_ms"]=579, + ["base_cooldown_speed_+%"]=580, + ["base_critical_strike_multiplier_+"]=141, + ["base_damage_taken_+%"]=581, + ["base_deal_no_chaos_damage"]=582, + ["base_energy_shield_leech_from_spell_damage_permyriad"]=583, + ["base_extra_damage_rolls"]=584, + ["base_holy_strike_maximum_number_of_animated_weapons"]=586, + ["base_inflict_cold_exposure_on_hit_%_chance"]=587, + ["base_inflict_fire_exposure_on_hit_%_chance"]=588, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=589, + ["base_life_gain_per_target"]=144, + ["base_life_leech_from_chaos_damage_permyriad"]=590, + ["base_life_regeneration_rate_per_minute"]=240, + ["base_mana_regeneration_rate_per_minute"]=383, + ["base_movement_velocity_+%"]=122, + ["base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=207, + ["base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=206, + ["base_nonlethal_fire_damage_%_of_maximum_mana_taken_per_minute"]=208, + ["base_number_of_effigies_allowed"]=1205, + ["base_number_of_living_lightning_allowed"]=591, + ["base_number_of_projectiles_in_spiral_nova"]=60, + ["base_number_of_sacred_wisps_allowed"]=592, + ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=130, + ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=129, + ["base_physical_damage_%_to_convert_to_cold"]=366, + ["base_physical_damage_reduction_rating"]=214, + ["base_poison_damage_+%"]=410, + ["base_poison_duration_+%"]=411, + ["base_projectile_speed_+%"]=110, + ["base_reduce_enemy_cold_resistance_%"]=252, + ["base_reduce_enemy_fire_resistance_%"]=251, + ["base_reduce_enemy_lightning_resistance_%"]=253, + ["base_resist_all_elements_%"]=202, + ["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=204, + ["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=203, + ["base_righteous_fire_%_of_max_mana_to_deal_to_nearby_per_minute"]=205, + ["base_skill_area_of_effect_+%"]=83, + ["base_smite_number_of_targets"]=594, + ["base_stun_duration_+%"]=158, + ["base_stun_recovery_+%"]=190, + ["base_stun_threshold_reduction_+%"]=80, + ["base_use_life_in_place_of_mana"]=220, + ["base_windstorm_storm_stage_gained_per_X_ms"]=1712, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=595, + ["berserk_attack_damage_+%_final"]=447, + ["berserk_attack_speed_+%_final"]=449, + ["berserk_base_damage_taken_+%_final"]=451, + ["berserk_minimum_rage"]=446, + ["berserk_movement_speed_+%_final"]=450, + ["berserk_rage_effect_+%"]=448, + ["berserk_rage_loss_+%_per_second"]=453, + ["black_hole_hinder_description_mode"]=597, + ["blackhole_damage_taken_+%"]=596, + ["blackhole_hinder_%"]=597, + ["blackhole_tick_rate_ms"]=598, + ["blackhole_well_max_corpses_consumed_per_tick"]=599, + ["blade_blast_detonated_blades_not_removed_%_chance"]=600, + ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=601, + ["blade_flurry_critical_strike_chance_per_stage_+%_final"]=602, + ["blade_flurry_critical_strike_multiplier_+_while_at_max_stages"]=603, + ["blade_flurry_damage_+%_final_while_at_max_stages"]=604, + ["blade_flurry_elemental_damage_+%_while_channeling"]=605, + ["blade_flurry_final_flurry_area_of_effect_+%"]=606, + ["blade_vortex_additional_blade_chance_%"]=607, + ["blade_vortex_ailment_damage_+%_per_blade_final"]=270, + ["blade_vortex_critical_strike_chance_+%_per_blade"]=608, + ["blade_vortex_damage_+%_per_blade_final"]=269, + ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=609, + ["blade_vortex_hit_rate_+%_per_blade"]=268, + ["blade_vortex_hit_rate_ms"]=610, + ["bladefall_create_X_lingering_blades_per_volley"]=611, + ["bladefall_critical_strike_chance_+%_per_stage"]=612, + ["bladefall_damage_per_stage_+%_final"]=408, + ["bladefall_volley_frequency_ms"]=613, + ["bladefall_volley_gap_distance_+%"]=614, + ["bladefall_volleys_needed_per_vestige_blade"]=615, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=616, + ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=617, + ["bladestorm_blood_stance_ailment_damage_+%"]=618, + ["bladestorm_maximum_number_of_storms_allowed"]=619, + ["bladestorm_movement_speed_+%_while_in_sandstorm"]=620, + ["bladestorm_sandstorm_movement_speed_+%"]=621, + ["bladestorm_storm_damage_+%_final"]=622, + ["blast_rain_area_of_effect_+%"]=623, + ["blast_rain_damage_+%_vs_distant_enemies"]=624, + ["bleed_on_hit_with_attacks_%"]=625, + ["bleeding_damage_+%"]=627, + ["bleeding_damage_+100%_final_chance"]=626, + ["bleeding_skill_effect_duration"]=100, + ["blind_duration_+%"]=250, + ["blind_effect_+%"]=628, + ["blood_ground_leaving_area_lasts_for_ms"]=629, + ["blood_rage_life_leech_from_elemental_damage_permyriad"]=630, + ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=418, + ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=421, + ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=419, + ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=420, + ["blood_sand_triggered_blind_on_attack_chance_%"]=632, + ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=633, + ["blood_scythe_cost_+%_final_per_charge"]=634, + ["blood_scythe_damage_+%_final_per_charge"]=635, + ["blood_surge_refresh_on_total_life_spent"]=636, + ["blood_tendrils_beam_count"]=637, + ["bloodrend_debuff_damage_over_time_taken_+%_per_stack"]=403, + ["bloodrite_base_trigger_frequency_ms"]=1227, + ["bloodrite_trigger_frequency_+%_per_stage"]=1229, + ["bodyswap_damage_+%_when_not_consuming_corpse"]=638, + ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=639, + ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=639, + ["bone_golem_grants_minion_maximum_added_physical_damage"]=640, + ["bone_golem_grants_minion_minimum_added_physical_damage"]=640, + ["boneshatter_chance_to_gain_+1_trauma"]=641, + ["boneshatter_trauma_base_duration_ms"]=1576, + ["brand_cannot_be_recalled"]=642, + ["brand_detonate_faster_activation_%_per_second"]=643, + ["brand_detonate_faster_duration_%_per_second"]=644, + ["brand_recall_spend_%_of_recalled_brands_cost"]=645, + ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=646, + ["buff_effect_duration"]=94, + ["buff_effect_duration_+%_per_removable_endurance_charge"]=195, + ["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=196, + ["buff_grants_smite_additional_lightning_targets"]=647, + ["burn_damage_+%"]=121, + ["call_of_steel_reload_amount"]=648, + ["call_of_steel_reload_time"]=648, + ["call_to_arms_behaviour"]=649, + ["cannot_cause_bleeding"]=625, + ["cannot_inflict_additional_poisons"]=650, + ["cannot_inflict_status_ailments"]=218, + ["cannot_knockback"]=651, + ["cannot_poison_poisoned_enemies"]=652, + ["cast_linked_spells_on_attack_crit_%"]=288, + ["cast_linked_spells_on_melee_kill_%"]=289, + ["cast_on_any_damage_taken_%"]=302, + ["cast_on_attack_use_%"]=295, + ["cast_on_crit_%"]=653, + ["cast_on_damage_taken_%"]=316, + ["cast_on_damage_taken_threshold"]=316, + ["cast_on_death_%"]=304, + ["cast_on_flask_use_%"]=654, + ["cast_on_gain_avians_flight_or_avians_might_%"]=308, + ["cast_on_gain_skill"]=655, + ["cast_on_hit_%"]=309, + ["cast_on_hit_if_cursed_%"]=310, + ["cast_on_lose_cats_stealth"]=311, + ["cast_on_melee_hit_if_cursed_%"]=312, + ["cast_on_skill_use_%"]=296, + ["cast_on_stunned_%"]=306, + ["cast_speed_+%_granted_from_skill"]=10, + ["cast_speed_+%_when_on_low_life"]=71, + ["cast_when_hit_%"]=303, + ["cast_while_channelling_time_ms"]=321, + ["chain_grab_number_of_targets"]=656, + ["chain_hook_attaches_to_X_targets"]=657, + ["chain_hook_attachment_rage_to_gain_per_hit"]=658, + ["chain_hook_attachment_range"]=659, + ["chain_hook_max_attached_targets"]=660, + ["chain_hook_range_+%"]=661, + ["chain_strike_cone_radius_+_per_x_rage"]=662, + ["chain_strike_gain_x_rage_if_attack_hits"]=663, + ["chaining_range_+%"]=664, + ["chance_%_when_poison_to_also_poison_another_enemy"]=667, + ["chance_for_extra_damage_roll_%"]=665, + ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=666, + ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=668, + ["chance_to_bleed_on_hit_%_vs_maimed"]=669, + ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=670, + ["chance_to_cast_on_kill_%"]=297, + ["chance_to_cast_on_kill_%_target_self"]=298, + ["chance_to_cast_on_rampage_tier_%"]=305, + ["chance_to_cast_when_your_trap_is_triggered_%"]=317, + ["chance_to_deal_double_damage_%"]=671, + ["chance_to_deal_double_damage_%_per_10_intelligence"]=672, + ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=673, + ["chance_to_double_stun_duration_%"]=674, + ["chance_to_evade_attacks_+%_final_per_missing_barkskin_stack"]=140, + ["chance_to_fork_extra_projectile_%"]=675, + ["chance_to_fortify_on_melee_hit_+%"]=364, + ["chance_to_freeze_shock_ignite_%"]=392, + ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=676, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=677, + ["chance_to_ignore_hexproof_%"]=678, + ["chance_to_inflict_additional_impale_%"]=679, + ["chance_to_inflict_scorch_brittle_sap_%"]=680, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=681, + ["chance_to_scorch_%"]=682, + ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=683, + ["chance_to_summon_support_ghost_on_killing_blow_%"]=684, + ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=685, + ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=686, + ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=687, + ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=688, + ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=689, + ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=690, + ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=691, + ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=692, + ["chance_to_trigger_on_animate_guardian_kill_%"]=693, + ["chance_to_trigger_on_animate_weapon_kill_%"]=694, + ["chance_to_unnerve_on_hit_%"]=695, + ["chaos_damage_resisted_by_highest_resistance"]=696, + ["chaos_damage_resisted_by_lowest_resistance"]=697, + ["chaos_damage_taken_+%"]=404, + ["chaos_golem_grants_additional_physical_damage_reduction_%"]=373, + ["chaos_golem_grants_chaos_resistance_%"]=384, + ["chaos_golem_grants_dot_multiplier_+"]=374, + ["charged_attack_damage_per_stack_+%_final"]=698, + ["charged_blast_spell_damage_+%_final_per_stack"]=319, + ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=699, + ["charged_dash_damage_+%_final_per_stack"]=700, + ["charged_dash_skill_inherent_movement_speed_+%_final"]=701, + ["chill_duration_+%"]=116, + ["chill_effect_+%"]=118, + ["chilled_ground_base_magnitude_override"]=702, + ["chilling_area_movement_velocity_+%"]=703, + ["chronomancer_buff_cooldown_speed_+%"]=704, + ["circle_of_power_critical_strike_chance_+%_per_stage"]=705, + ["circle_of_power_enemy_damage_+%_final_at_max_stages"]=706, + ["circle_of_power_mana_spend_per_upgrade"]=707, + ["circle_of_power_max_added_lightning_per_stage"]=709, + ["circle_of_power_max_stages"]=708, + ["circle_of_power_min_added_lightning_per_stage"]=709, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=712, + ["cleave_area_of_effect_+%_final_from_executioner"]=710, + ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=711, + ["cold_ailment_duration_+%"]=713, + ["cold_ailment_effect_+%"]=714, + ["cold_damage_+%"]=353, + ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1728, + ["combat_rush_effect_+%"]=715, + ["consecrated_cry_consecrated_ground_duration_ms"]=716, + ["consecrated_cry_warcry_area_of_effect_+%_final"]=717, + ["consecrated_ground_area_+%"]=721, + ["consecrated_ground_effect_+%"]=718, + ["consecrated_ground_enemy_damage_taken_+%"]=719, + ["consecrated_ground_immune_to_curses"]=720, + ["contagion_display_spread_on_death"]=722, + ["contagion_spread_on_hit_affected_enemy_%"]=722, + ["conversation_trap_converted_enemy_damage_+%"]=723, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=724, + ["corpse_consumption_life_to_gain"]=264, + ["corpse_consumption_mana_to_gain"]=265, + ["corpse_erruption_maximum_number_of_geyers"]=725, + ["corpse_explosion_monster_life_%"]=35, + ["corpse_explosion_monster_life_%_chaos"]=36, + ["corpse_explosion_monster_life_%_lightning"]=37, + ["corpse_explosion_monster_life_permillage_fire"]=38, + ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=727, + ["corpse_warp_area_of_effect_+%_final_when_consuming_minion"]=726, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=427, + ["corrosive_shroud_gains_%_of_damage_from_inflicted_poisons"]=425, + ["corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"]=424, + ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=428, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=728, + ["cover_in_ash_on_hit_%"]=729, + ["cover_in_frost_on_hit_%"]=730, + ["create_barnacle_on_killing_blow_with_offhand_%_chance"]=731, + ["create_barnacle_on_offhand_hit_vs_rare_unique_%_chance"]=732, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=733, + ["created_slipstream_action_speed_+%"]=734, + ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=735, + ["critical_ailment_dot_multiplier_+"]=737, + ["critical_poison_dot_multiplier_+"]=738, + ["critical_strike_chance_+%"]=133, + ["critical_strike_chance_+%_final_per_power_charge_from_power_siphon"]=739, + ["critical_strike_chance_+%_per_power_charge"]=740, + ["critical_strike_chance_+%_per_righteous_charge"]=741, + ["critical_strike_chance_+%_vs_bleeding_enemies"]=460, + ["critical_strike_chance_+%_vs_blinded_enemies"]=742, + ["critical_strike_chance_+%_vs_shocked_enemies"]=736, + ["critical_strike_multiplier_+_per_blade"]=744, + ["critical_strike_multiplier_+_per_overloaded_intensity"]=743, + ["critical_strike_multiplier_+_per_power_charge"]=745, + ["critical_strike_multiplier_+_while_affected_by_elusive"]=142, + ["critical_strikes_that_inflict_bleeding_also_rupture"]=1513, + ["cruelty_effect_+%"]=746, + ["crush_for_2_seconds_on_hit_%_chance"]=747, + ["curse_effect_+%"]=322, + ["curse_effect_+%_final_vs_players"]=324, + ["curse_effect_+%_vs_players"]=323, + ["curse_effect_duration"]=93, + ["curse_pacifies_after_60%"]=748, + ["curse_pillar_curse_effect_+%_final"]=325, + ["cyclone_area_of_effect_+%_per_additional_melee_range"]=84, + ["cyclone_attack_speed_+%_final_per_stage"]=749, + ["cyclone_first_hit_damage_+%_final"]=413, + ["cyclone_gain_stage_every_x_ms_while_channelling"]=750, + ["cyclone_max_number_of_stages"]=751, + ["cyclone_melee_weapon_range_+_per_stage"]=752, + ["cyclone_movement_speed_+%_final"]=271, + ["cyclone_movement_speed_+%_final_per_stage"]=753, + ["cyclone_stage_decay_time_ms"]=754, + ["damage_+%"]=385, + ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=756, + ["damage_+%_if_you_have_consumed_a_corpse_recently"]=755, + ["damage_+%_per_200_mana_spent_recently"]=757, + ["damage_+%_per_chain"]=758, + ["damage_+%_vs_burning_enemies"]=341, + ["damage_+%_vs_chilled_enemies"]=759, + ["damage_+%_vs_enemies_on_full_life"]=760, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=761, + ["damage_+%_while_es_leeching"]=762, + ["damage_+%_while_life_leeching"]=763, + ["damage_+%_while_mana_leeching"]=764, + ["damage_cannot_be_reflected"]=344, + ["damage_cannot_break_kinetic_shells"]=31, + ["damage_infusion_%"]=58, + ["damage_over_time_+%"]=407, + ["damage_per_blade_vortex_blade_description_mode"]=269, + ["damage_removed_from_minions_before_life_or_es_%_if_only_one_minion"]=765, + ["damage_removed_from_radiant_sentinel_before_life_or_es_%"]=766, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=768, + ["damage_vs_enemies_on_low_life_+%"]=769, + ["damaging_ailments_deal_damage_+%_faster"]=770, + ["dark_pact_chance_to_gain_an_additional_ruin_%"]=771, + ["dark_pact_chaos_damage_added_from_sacrifice_+%"]=772, + ["dark_pact_sacrifice_%_life_from_max_ruin"]=772, + ["dark_ritual_damage_+%_final_per_curse_applied"]=773, + ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=774, + ["dash_grants_phasing_after_use_ms"]=775, + ["deal_no_elemental_damage"]=776, + ["deal_no_non_elemental_damage"]=777, + ["death_wish_attack_speed_+%"]=778, + ["death_wish_cast_speed_+%"]=779, + ["death_wish_hit_and_ailment_damage_+%_final_per_stage"]=780, + ["death_wish_max_stages"]=781, + ["death_wish_movement_speed_+%"]=782, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=783, + ["debuff_time_passed_+%"]=784, + ["degen_effect_+%"]=193, + ["desecrate_chance_for_additional_corpse_%"]=785, + ["desecrate_chance_for_special_corpse_%"]=786, + ["desecrate_corpse_level"]=332, + ["desecrate_maximum_number_of_corpses"]=787, + ["desecrate_number_of_corpses_to_create"]=331, + ["destroy_corpses_on_kill_%_chance"]=788, + ["detonate_dead_%_chance_to_detonate_additional_corpse"]=790, + ["detonate_dead_damage_+%_if_corpse_ignited"]=789, + ["detonate_mines_is_triggered_while_moving"]=791, + ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=792, + ["disable_mine_detonation_cascade"]=793, + ["discharge_chance_not_to_consume_charges_%"]=794, + ["discharge_damage_+%_if_3_charge_types_removed"]=795, + ["discus_slam_damage_+%_final_for_shockwave"]=796, + ["discus_slam_maximum_orb_count_allowed"]=797, + ["discus_slam_orb_activate_base_rate_ms"]=798, + ["discus_slam_orb_activate_rate_ms"]=799, + ["disintegrate_base_radius_+_per_intensify"]=800, + ["disintegrate_damage_+%_final_per_intensity"]=801, + ["disintegrate_secondary_beam_angle_+%"]=802, + ["display_active_skill_forced_stance"]=1334, + ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=803, + ["display_additional_projectile_per_3_mines_in_detonation_sequence"]=804, + ["display_additional_projectile_per_mine_in_detonation_sequence"]=805, + ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1697, + ["display_brand_deonate_tag_conversion"]=806, + ["display_disable_melee_weapons"]=55, + ["display_fires_x_times"]=59, + ["display_flask_throw_allowed_flask_types"]=916, + ["display_herald_of_thunder_storm"]=733, + ["display_hide_projectile_chain_num"]=1649, + ["display_linked_curse_effect_+%"]=807, + ["display_linked_curse_effect_+%_final"]=808, + ["display_manabond_length"]=1111, + ["display_max_ailment_bearer_charges"]=809, + ["display_max_blight_stacks"]=810, + ["display_max_charged_attack_stats"]=811, + ["display_max_fire_beam_stacks"]=812, + ["display_max_upgraded_sentinels_of_absolution"]=813, + ["display_max_upgraded_sentinels_of_dominance"]=814, + ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=815, + ["display_mirage_warriors_no_spirit_strikes"]=816, + ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=817, + ["display_projectiles_chain_when_impacting_ground"]=818, + ["display_removes_and_grants_elusive_when_used"]=820, ["display_retaliation_skill_override_to_six_hits"]=2, ["display_retaliation_use_requirement_variation"]=2, - ["display_shaper_memory_uses_skill_once"]=808, - ["display_sigil_of_power_stage_gain_delay"]=809, - ["display_skill_fixed_duration_buff"]=810, - ["display_storm_burst_jump_time_ms"]=811, - ["display_this_skill_cooldown_does_not_recover_during_buff"]=812, - ["display_touch_of_fire"]=813, - ["display_trigger_link"]=814, - ["display_triggerbots_do_their_job"]=815, - ["display_unhinge_grant_insane"]=816, - ["display_vaal_breach_no_drops_xp"]=817, - ["display_vaal_molten_shell_alternate_description"]=1157, - ["display_wall_of_force_restrictions"]=818, + ["display_shaper_memory_uses_skill_once"]=821, + ["display_sigil_of_power_stage_gain_delay"]=822, + ["display_skill_fixed_duration_buff"]=823, + ["display_storm_burst_jump_time_ms"]=824, + ["display_this_skill_cooldown_does_not_recover_during_buff"]=825, + ["display_touch_of_fire"]=826, + ["display_trigger_link"]=827, + ["display_triggerbots_do_their_job"]=828, + ["display_unhinge_grant_insane"]=829, + ["display_vaal_breach_no_drops_xp"]=830, + ["display_vaal_molten_shell_alternate_description"]=1182, + ["display_wall_of_force_restrictions"]=831, ["display_what_freezing_pulse_does"]=7, - ["divine_cry_additional_base_critical_strike_chance_per_5_power_up_to_cap"]=1639, - ["divine_retribution_blasts_per_wave"]=819, - ["divine_retribution_num_waves"]=820, - ["divine_tempest_ailment_damage_+%_final_per_stage"]=823, - ["divine_tempest_beam_width_+%"]=821, - ["divine_tempest_damage_+%_final_while_channelling"]=822, - ["divine_tempest_hit_damage_+%_final_per_stage"]=823, - ["divine_tempest_no_beam"]=823, - ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=824, - ["divine_tempest_stage_on_hitting_rare_unique"]=825, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=826, - ["double_strike_attack_speed_+%_final_per_stage"]=827, - ["double_strike_max_stages"]=828, - ["doubles_have_movement_speed_+%"]=145, - ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=829, - ["dual_strike_damage_+%_final_against_enemies_on_full_life"]=830, - ["dual_strike_off_hand_weapon_determines_attack_time"]=831, - ["earthquake_aftershock_ailment_damage_+%_final_from_skill_effect_duration"]=52, - ["earthquake_aftershock_area_of_effect_+%_final_from_skill_effect_duration"]=55, - ["earthquake_aftershock_hit_damage_+%_final_from_skill_effect_duration"]=49, - ["earthquake_aftershock_maximum_added_physical_damage"]=832, - ["earthquake_aftershock_minimum_added_physical_damage"]=832, - ["earthquake_initial_slam_area_of_effect_+%"]=833, - ["earthshatter_spike_area_of_effect_+%_final"]=834, - ["elemental_damage_+%_final_per_righteous_charge"]=836, - ["elemental_damage_cannot_be_reflected"]=835, - ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=837, - ["elemental_hit_damage_+%_final_per_enemy_elemental_ailment"]=838, - ["elemental_hit_no_damage_of_unchosen_elemental_type"]=354, - ["elemental_penetration_%_from_resonance"]=839, - ["elemental_status_effect_aura_radius"]=215, - ["elemental_strike_physical_damage_%_to_convert"]=392, - ["elusive_effect_+%"]=840, - ["embrace_madness_amount_of_cooldown_to_gain_ms"]=841, - ["empowered_attack_damage_+%"]=842, - ["enchantment_of_war_trigger_on_kill_%"]=298, - ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1637, - ["endurance_charge_slam_damage_+%_final_per_endurance_charge_consumed"]=843, - ["enduring_cry_grants_x_additional_endurance_charges"]=844, - ["enduring_cry_life_regeneration_rate_per_minute_%_per_5_power_up_to_cap"]=1640, - ["enemies_chilled_by_bane_and_contagion"]=845, - ["enemies_covered_in_frost_as_unfrozen"]=846, - ["enemies_taunted_by_your_warcies_are_intimidated"]=847, - ["enemies_you_hinder_have_life_regeneration_rate_+%"]=848, - ["enemies_you_shock_movement_speed_+%"]=849, - ["enemies_you_shock_take_%_increased_physical_damage"]=850, - ["enemy_aggro_radius_+%"]=397, - ["enemy_phys_reduction_%_penalty_vs_hit"]=851, - ["energy_release_damage_+%_final_per_5%_increased_damage_taken_from_shock_on_target"]=852, - ["energy_shield_delay_-%"]=190, - ["energy_shield_leech_from_any_damage_permyriad"]=76, - ["energy_shield_recharge_rate_+%"]=191, - ["energy_shield_regeneration_rate_+%"]=853, - ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=854, - ["essence_drain_lose_life_from_damage_permyriad"]=855, - ["ethereal_knives_projectiles_needed_per_vestige_blade"]=856, - ["evasion_and_physical_damage_reduction_rating_+%"]=857, - ["excommunicate_on_melee_attack_hit_for_X_ms"]=858, - ["expanding_fire_cone_angle_+%_per_stage"]=859, - ["expanding_fire_cone_final_wave_always_ignite"]=860, - ["expanding_fire_cone_maximum_number_of_stages"]=861, - ["expanding_fire_cone_radius_+_per_stage"]=862, - ["expanding_fire_cone_radius_limit"]=862, - ["expanding_fire_cone_release_hit_damage_+%_final"]=863, - ["explode_enemies_for_10%_life_as_random_element_on_killing_blow_chance_%"]=864, - ["explosive_arrow_ailment_damage_+%_final_per_stack"]=248, - ["explosive_arrow_explosion_base_damage_+permyriad"]=182, - ["explosive_arrow_explosion_maximum_added_fire_damage"]=184, - ["explosive_arrow_explosion_minimum_added_fire_damage"]=184, - ["explosive_arrow_hit_damage_+%_final_per_stack"]=246, - ["explosive_arrow_maximum_bonus_explosion_radius"]=187, - ["explosive_arrow_stack_limit"]=865, - ["extra_target_targeting_distance_+%"]=866, - ["eye_of_winter_base_explosion_shards"]=60, - ["eye_of_winter_count_shards_while_flying_instead"]=60, - ["eye_of_winter_display_number_of_explosion_shards"]=60, - ["eye_of_winter_spiral_angle_+%"]=867, - ["eye_of_winter_spiral_fire_frequency_+%"]=868, - ["faster_bleed_%"]=869, - ["faster_burn_%"]=870, - ["feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"]=871, - ["feast_of_flesh_gain_X_life_per_corpse_consumed"]=871, - ["feast_of_flesh_gain_X_mana_per_corpse_consumed"]=871, - ["fire_beam_additional_stack_damage_+%_final"]=872, - ["fire_beam_enemy_fire_resistance_%_maximum"]=873, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=874, - ["fire_beam_length_+%"]=875, - ["fire_damage_+%"]=350, - ["fire_damage_taken_+"]=274, - ["fire_dot_multiplier_+"]=876, - ["fire_golem_grants_area_of_effect_+%"]=368, - ["fire_golem_grants_damage_+%"]=367, - ["fire_nova_damage_+%_per_repeat_final"]=384, - ["fire_shield_damage_threshold"]=199, - ["fire_storm_fireball_delay_ms"]=188, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=877, - ["fires_1_projectile_if_no_steel_ammo"]=878, - ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=879, - ["firestorm_final_impact_damage_+%_final"]=880, - ["firestorm_initial_impact_area_of_effect_+%_final"]=881, - ["firestorm_initial_impact_damage_+%_final"]=882, - ["firestorm_max_number_of_storms"]=883, - ["firewall_applies_%_fire_exposure"]=884, - ["fixed_skill_effect_duration"]=885, - ["flame_dash_burning_damage_+%_final"]=886, - ["flame_dash_repeats_target_previous_location"]=887, - ["flame_surge_burning_ground_creation_cooldown_ms"]=888, - ["flame_surge_burning_ground_on_ignite_damage_%"]=889, - ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=890, - ["flame_whip_damage_+%_final_vs_burning_enemies"]=338, - ["flameblast_ailment_damage_+%_final_per_10_life_reserved"]=891, - ["flameblast_ailment_damage_+%_final_per_stack"]=319, - ["flameblast_area_+%_final_per_stage"]=892, - ["flameblast_base_radius_override"]=893, - ["flameblast_damage_+%_final_per_10_life_reserved"]=894, - ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=895, - ["flameblast_ignite_chance_+%_per_stage"]=896, - ["flameblast_maximum_stages"]=897, - ["flameblast_starts_with_X_additional_stages"]=898, - ["flamethrower_damage_+%_per_stage_final"]=265, - ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=899, - ["flamethrower_tower_trap_number_of_flamethrowers"]=900, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=901, - ["flask_charges_used_+%"]=902, - ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=905, - ["flask_throw_base_charges_used"]=903, - ["flask_throw_charges_used_per_projectile"]=903, - ["flask_throw_display_also_sulphur_flask"]=903, - ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=906, - ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=907, - ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=906, - ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=907, - ["flask_throw_ruby_flask_critical_strike_multiplier_+"]=908, - ["flask_throw_ruby_flask_ignite_dot_multiplier_+"]=909, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=904, - ["flask_throw_total_charges_used"]=903, - ["flesh_stone_blood_stance_enemies_physical_damage_taken_when_hit_+%_final_from_player_distance"]=910, - ["flesh_stone_sand_stance_damage_taken_+%_final_from_distance_from_enemy_hits"]=911, - ["flicker_strike_buff_movement_speed_+%"]=912, - ["flicker_strike_teleport_range_+%"]=913, - ["fortify_duration_+%"]=363, - ["fortify_on_hit"]=914, - ["fortify_on_hit_close_range"]=915, - ["freeze_applies_cold_resistance_+"]=916, - ["freeze_as_though_dealt_damage_+%"]=236, - ["freeze_duration_+%"]=114, - ["freeze_mine_cold_resistance_+_while_frozen"]=286, - ["freezing_pulse_damage_+%_final_at_long_range"]=917, - ["frenzy_consume_charges_to_onslaught_for_ms_per_charge"]=918, - ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=919, - ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=920, - ["from_code_active_skill_ailment_damage_+%_final"]=921, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=922, - ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=923, - ["frost_fury_added_duration_per_stage_ms"]=924, - ["frost_fury_base_fire_interval_ms"]=925, - ["frost_fury_duration_+%_per_stage"]=926, - ["frost_fury_fire_speed_+%_final_while_channelling"]=927, - ["frost_fury_fire_speed_+%_per_stage"]=928, - ["frost_fury_max_number_of_stages"]=929, - ["frost_globe_absorb_damage_%_enemy_in_bubble"]=930, - ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=931, - ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=932, - ["frost_globe_health_per_stage"]=933, - ["frost_globe_life_regeneration_rate_per_minute_%"]=934, - ["frost_globe_max_stages"]=935, - ["frost_globe_stage_gain_interval_ms"]=936, - ["frost_wall_damage_+%_final_per_active_wall"]=937, - ["frostblink_damage_+%_final_per_5%_chill_effect_on_target"]=938, - ["frostbolt_projectile_acceleration"]=939, - ["frostbolt_projectile_speed_+%_final"]=940, - ["frozen_legion_%_chance_to_summon_additional_statue"]=941, - ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=187, - ["gain_%_of_phys_as_extra_chaos_per_white_socket_on_gloves"]=348, - ["gain_%_of_phys_as_extra_cold_per_green_socket_on_gloves"]=346, - ["gain_%_of_phys_as_extra_fire_per_red_socket_on_gloves"]=345, - ["gain_%_of_phys_as_extra_lightning_per_blue_socket_on_gloves"]=347, - ["gain_1_rage_on_use_%_chance"]=942, - ["gain_X_wildshard_stacks_on_cast"]=943, - ["gain_elusive_on_crit_%_chance"]=944, - ["gain_endurance_charge_on_melee_stun"]=285, - ["gain_endurance_charge_on_melee_stun_%"]=285, - ["gain_fortify_on_melee_hit_ms"]=945, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=946, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=947, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=948, - ["gain_overloaded_intensity_for_x_ms_after_losing_6_intensity"]=949, - ["gain_power_charge_on_kill_with_hit_%"]=950, - ["gain_rage_on_hit"]=951, - ["gain_rage_on_hit_%_chance"]=952, - ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=953, - ["gain_righteous_charge_on_mana_spent_%"]=954, - ["gain_unholy_resonance_of_majority_damage_on_hit_for_2_seconds"]=955, - ["gain_x_rage_on_attack_hit"]=956, - ["galvanic_field_beam_delay_ms"]=957, - ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=958, - ["galvanic_field_maximum_number_of_spheres"]=1097, - ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=959, - ["galvanic_field_retargeting_delay_ms"]=578, - ["glacial_cascade_final_spike_damage_+%_final"]=960, - ["glacial_cascade_travel_speed_+%"]=961, - ["glacial_hammer_third_hit_always_crits"]=237, - ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=238, - ["global_always_hit"]=335, - ["global_bleed_on_hit"]=617, - ["global_chance_to_blind_on_hit_%"]=962, - ["global_chance_to_knockback_%"]=77, - ["global_hit_causes_monster_flee_%"]=225, - ["global_maim_on_hit"]=963, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=1445, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=964, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=1445, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=964, - ["global_poison_on_hit"]=406, - ["global_reduce_enemy_block_%"]=336, - ["glorious_madness_timer_ms"]=965, - ["golem_buff_effect_+%"]=966, - ["graft_skill_esh_lightning_hands_maximum_hands"]=967, - ["graft_skill_esh_lightning_hands_number_of_additional_hands_spawned_per_brand"]=968, - ["graft_skill_esh_lightning_hands_number_of_hands_spawned"]=969, - ["graft_skill_tul_summon_number_of_demons_to_summon"]=970, - ["graft_skill_uulnet_bone_spires_max_spires_allowed"]=971, - ["graft_skill_uulnetol_bone_spires_num_of_spires_to_create"]=972, - ["graft_skill_xoph_flame_pillars_number_of_pillars"]=973, - ["graft_skill_xoph_molten_shell_absorb_limit"]=1156, - ["grant_expanding_fire_cone_release_ignite_damage_+%_final"]=974, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=975, - ["ground_slam_angle_+%"]=976, - ["groundslam_damage_to_close_targets_+%_final"]=428, - ["hallowing_flame_magnitude_+%"]=977, - ["herald_no_buff_effect"]=978, - ["herald_of_agony_add_stack_on_poison"]=979, - ["herald_of_agony_poison_damage_+%_final"]=980, - ["herald_of_ash_burning_%_overkill_damage_per_minute"]=981, - ["herald_of_light_summon_champion_on_kill"]=982, - ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=983, - ["herald_of_purity_physical_damage_+%_final"]=984, - ["herald_of_the_breach_add_stack_on_inflicting_ailment"]=986, - ["herald_of_the_breach_pulse_delay_ms"]=987, - ["herald_of_the_breach_pulse_frequency_+%_per_otherworldly_pressure"]=988, - ["hex_transfer_on_death_total_range"]=989, - ["hex_zone_trigger_hextoad_every_x_ms"]=990, - ["hexblast_%_chance_to_not_consume_hex"]=993, - ["hexblast_ailment_damage_+%_final_if_hexed"]=991, - ["hexblast_display_innate_remove_hex_100%_chance"]=993, - ["hexblast_hit_damage_+%_final_if_hexed"]=992, - ["hexed_enemies_cannot_deal_critical_strikes"]=994, - ["hinder_enemy_chaos_damage_+%"]=995, - ["hinder_enemy_chaos_damage_taken_+%"]=996, - ["hit_and_ailment_damage_+%_final_per_gathering_lightning"]=466, - ["hits_cannot_kill_enemies"]=997, - ["hits_grant_cruelty"]=998, - ["hits_ignore_all_enemy_monster_resistances"]=999, - ["hits_ignore_enemy_monster_physical_damage_reduction"]=1000, - ["holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond"]=1001, - ["holy_hammers_damage_+%_final_for_initial_hammer_in_cascade"]=1002, - ["holy_hammers_maximum_number_of_hammerslam_cascades"]=1003, - ["holy_hammers_num_additional_hammerslams_if_consuming_power_charge"]=1004, - ["holy_hammers_number_of_additional_hammerslams_to_create"]=1005, - ["holy_path_teleport_range_+%"]=1006, - ["holy_relic_nova_life_regeneration_rate_per_minute"]=1007, - ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=1008, - ["holy_strike_maximum_number_of_animated_weapons"]=1602, - ["holy_sweep_hammerfall_damage_+%_final"]=1009, - ["holy_sweep_number_of_holy_bolts_to_create"]=1010, - ["hydro_sphere_pulse_frequency_ms"]=1011, - ["hydrosphere_hit_cooldown_ms"]=1012, - ["ice_crash_first_stage_damage_+%_final"]=1013, - ["ice_crash_second_hit_damage_+%_final"]=365, - ["ice_crash_third_hit_damage_+%_final"]=366, - ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=1014, - ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=1014, - ["ice_golem_grants_accuracy_rating_+"]=370, - ["ice_golem_grants_critical_strike_chance_+%"]=369, - ["ice_nova_damage_when_cast_on_frostbolt_+%_final"]=1015, - ["ice_nova_freeze_as_though_damage_+%_final"]=1016, - ["ice_nova_number_of_frost_bolts_to_cast_on"]=1017, - ["ice_nova_number_of_repeats"]=332, - ["ice_nova_radius_+%_per_repeat"]=333, - ["ice_shield_moving_mana_degeneration_per_minute"]=272, - ["ice_spear_distance_before_form_change_+%"]=1018, - ["ice_spear_second_form_critical_strike_chance_+%"]=243, - ["ice_spear_second_form_critical_strike_multiplier_+"]=244, - ["ice_spear_second_form_projectile_speed_+%_final"]=245, - ["ignite_damage_+100%_final_chance"]=1019, - ["ignite_duration_+%"]=119, - ["ignites_apply_fire_resistance_+"]=1020, - ["ignition_blast_%_max_life_as_fire_on_death"]=1021, - ["ignore_self_damage_from_trauma_chance_%"]=1022, - ["immolation_brand_burn_damage_+%_final_per_stage"]=1023, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=1024, - ["impacting_steel_secondary_projectile_damage_+%_final"]=1025, - ["impale_debuff_effect_+%"]=1026, - ["impale_on_hit_%_chance"]=1027, - ["impale_phys_reduction_%_penalty"]=1028, - ["impurity_cold_damage_taken_+%_final"]=1029, - ["impurity_fire_damage_taken_+%_final"]=1030, - ["impurity_lightning_damage_taken_+%_final"]=1031, - ["incinerate_damage_+%_per_stage"]=266, - ["incinerate_starts_with_X_additional_stages"]=1032, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=1033, - ["infernal_blow_explosion_damage_%_of_total_per_stack"]=1034, - ["infernal_bolt_base_fire_damage_%_maximum_life"]=1035, - ["infernal_bolt_triggered_when_totem_with_this_skill_hit_by_enemy"]=1036, - ["infernal_cry_%_max_life_as_fire_on_death"]=1630, - ["infernal_cry_empowered_attacks_trigger_combust_display"]=1654, - ["infernal_cry_physical_damage_%_to_add_as_fire_per_5_power_up_to_cap"]=1636, - ["inflict_all_exposure_on_hit"]=1037, - ["inflict_hallowing_flame_on_melee_hit_chance_%"]=1038, - ["infusion_grants_life_regeneration_rate_per_minute_%"]=1039, - ["inspiration_charge_duration_+%"]=1040, - ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=380, - ["intermediary_chaos_area_damage_to_deal_per_minute"]=163, - ["intermediary_chaos_damage_to_deal_per_minute"]=164, - ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=165, - ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=166, - ["intermediary_cold_area_damage_to_deal_per_minute"]=174, - ["intermediary_cold_damage_to_deal_per_minute"]=175, - ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=176, - ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=177, - ["intermediary_fire_area_damage_to_deal_per_minute"]=169, - ["intermediary_fire_damage_to_deal_per_minute"]=170, - ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=171, - ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=172, - ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=178, - ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=167, - ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=168, - ["intimidate_nearby_enemies_on_use_for_ms"]=1041, - ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1657, - ["intimidating_cry_movement_speed_+%_per_5_power_up_to_cap"]=1633, - ["is_ranged_attack_totem"]=48, - ["is_remote_mine"]=45, - ["is_snipe_default_projectile"]=1324, - ["is_snipe_default_projectile_2"]=1323, - ["is_totem"]=48, - ["is_trap"]=46, - ["keystone_minion_instability"]=156, - ["keystone_point_blank"]=221, - ["kill_enemy_on_hit_if_under_10%_life"]=220, - ["kill_normal_or_magic_enemy_on_hit_if_under_x%_life"]=1043, - ["killed_monster_dropped_item_quantity_+%"]=124, - ["killed_monster_dropped_item_rarity_+%"]=123, - ["killing_blow_consumes_corpse_chance_to_gain_soul_per_power_permillage"]=1044, - ["killing_blow_consumes_corpse_restore_%_life"]=1045, - ["killing_blow_consumes_corpse_restore_x_life"]=1046, - ["killing_blow_consumes_corpse_restore_x_mana"]=1046, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1047, - ["kinetic_bolt_forks_apply_to_zig_zags"]=1048, - ["kinetic_bolt_number_of_zig_zags"]=1683, - ["kinetic_fusillade_damage_+%_final_per_projectile_fired"]=1049, - ["kinetic_fusillade_maximum_floating_projectiles"]=1050, - ["kinetic_instability_maximum_number_of_instability_orbs_allowed"]=1051, - ["kinetic_shell_hit_damage_absorbed_%"]=1052, - ["kinetic_shell_immunity_after_explosion_ms"]=1053, - ["kinetic_shell_maximum_damage_absorbed_from_hits"]=1052, - ["kinetic_shell_number_of_active_buffs_allowed"]=1054, - ["kinetic_shell_transfer_to_X_targets_on_projectile_hit"]=1055, - ["kinetic_wall_damage_+%_final_for_projectiles_chaining_off_wall"]=1056, - ["kinetic_wall_maximum_number_of_hits"]=1057, - ["knockback_chance_%_at_close_range"]=1058, - ["knockback_distance_+%"]=78, - ["lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies"]=1059, - ["lancing_steel_damage_+%_at_close_range"]=1060, - ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1061, - ["lancing_steel_targeting_range_+%"]=1062, - ["life_leech_from_any_damage_permyriad"]=73, - ["life_leech_from_physical_attack_damage_permyriad"]=75, - ["life_regeneration_rate_+%"]=241, - ["life_regeneration_rate_per_minute_%"]=240, - ["light_radius_increases_apply_to_area_of_effect"]=41, - ["lightning_ailment_effect_+%"]=1063, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1066, - ["lightning_arrow_alt_additional_strikes"]=1064, - ["lightning_arrow_alt_strike_frequency_ms"]=1065, - ["lightning_arrow_maximum_number_of_extra_targets"]=214, - ["lightning_arrow_stack_limit"]=1067, - ["lightning_conduit_max_num_targets"]=1068, - ["lightning_explosion_mine_aura_damage_taken_+%"]=1685, - ["lightning_golem_grants_attack_and_cast_speed_+%"]=376, - ["lightning_golem_grants_base_mana_regeneration_rate_per_minute"]=377, - ["lightning_penetration_%_while_on_low_mana"]=253, - ["lightning_tendrils_channelled_base_radius_+_per_second_while_channelling"]=1069, - ["lightning_tendrils_channelled_larger_pulse_always_crit"]=150, - ["lightning_tendrils_channelled_larger_pulse_area_of_effect_+%_final"]=1070, - ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1071, - ["lightning_tendrils_channelled_larger_pulse_interval"]=150, - ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1072, - ["lightning_tower_trap_interval_duration_ms"]=1073, - ["lightning_tower_trap_number_of_beams"]=1073, - ["lightning_trap_projectiles_leave_shocking_ground"]=343, - ["link_skills_deal_cold_dot_to_enemies_in_beam_aoe"]=1074, - ["living_lightning_number_of_attacks"]=1076, - ["living_lightning_number_of_minions_to_spawn"]=1075, - ["living_lightning_triggered_on_lightning_hit"]=1077, - ["local_display_prismatic_burst_cold_permyriad_chance"]=18, - ["local_display_prismatic_burst_fire_permyriad_chance"]=17, - ["local_display_prismatic_burst_lightning_permyriad_chance"]=19, - ["lose_all_righteous_charges_on_mana_use_threshold"]=1078, - ["lose_all_trauma_at_X_trauma"]=1079, - ["lose_blood_scythe_charge_on_kill"]=623, - ["magma_brand_ailment_damage_+%_final_per_additional_pustule"]=1080, - ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1081, - ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1082, - ["maim_effect_+%"]=1083, - ["maim_on_hit_%"]=1084, - ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1085, - ["mana_degeneration_per_minute"]=271, - ["mana_gain_per_target"]=1086, - ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1087, - ["manaforged_arrows_total_mana_threshold"]=1089, - ["max_barkskin_stacks"]=135, - ["max_crab_aspect_stacks"]=1090, - ["max_number_of_absolution_sentinels"]=1091, - ["max_number_of_lightning_warp_markers"]=1092, - ["max_steel_ammo"]=1093, - ["maximum_added_chaos_damage_per_level"]=1111, - ["maximum_added_cold_damage_per_frenzy_charge"]=1112, - ["maximum_added_cold_damage_vs_chilled_enemies"]=1113, - ["maximum_added_fire_damage_per_level"]=1114, - ["maximum_added_lightning_damage_from_skill"]=1115, - ["maximum_fire_damage_per_fuse_arrow_orb"]=186, - ["maximum_life_+%_for_corpses_you_create"]=1094, - ["maximum_number_of_additional_shields_of_light"]=1095, - ["maximum_number_of_blades_left_in_ground"]=1096, - ["maximum_number_of_blink_mirror_arrow_elemental_hit_clones"]=24, - ["maximum_number_of_blink_mirror_arrow_rain_of_arrows_clones"]=25, - ["maximum_number_of_mirage_warriors"]=1098, - ["maximum_number_of_snapping_adder_projectiles"]=1099, - ["maximum_number_of_spinning_blades"]=400, - ["maximum_number_of_spiritual_cry_warriors"]=1100, - ["maximum_number_of_summoned_doubles"]=1101, - ["maximum_number_of_vaal_ice_shot_mirages"]=1102, - ["maximum_otherwordly_pressure_stacks"]=985, - ["maximum_secondary_physical_damage_per_15_strength"]=1117, - ["maximum_virulence_stacks"]=1103, - ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=68, - ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=64, - ["melee_counterattack_trigger_on_block_%"]=291, - ["melee_counterattack_trigger_on_hit_%"]=289, - ["melee_damage_vs_bleeding_enemies_+%"]=386, - ["melee_physical_damage_+%"]=181, - ["melee_range_+"]=394, - ["melee_splash_area_of_effect_+%_final"]=409, - ["melee_weapon_range_+"]=393, - ["mine_cannot_rearm"]=1105, - ["mine_critical_strike_chance_+%_per_power_charge"]=1106, - ["mine_detonates_instantly"]=1107, - ["mine_detonation_radius_+%"]=53, - ["mine_detonation_speed_+%"]=1108, - ["mine_duration"]=235, - ["mine_laying_speed_+%"]=234, - ["mine_projectile_speed_+%_per_frenzy_charge"]=1109, - ["mine_throwing_speed_+%_per_frenzy_charge"]=1110, - ["minimum_added_chaos_damage_per_level"]=1111, - ["minimum_added_cold_damage_per_frenzy_charge"]=1112, - ["minimum_added_cold_damage_vs_chilled_enemies"]=1113, - ["minimum_added_fire_damage_per_level"]=1114, - ["minimum_added_lightning_damage_from_skill"]=1115, - ["minimum_fire_damage_per_fuse_arrow_orb"]=186, - ["minimum_power_from_quality"]=1116, - ["minimum_secondary_physical_damage_per_15_strength"]=1117, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1140, - ["minion_additional_physical_damage_reduction_%"]=1118, - ["minion_aggravate_bleeding_on_attack_hit_chance_%"]=1119, - ["minion_ailment_damage_+%"]=1120, - ["minion_always_crit"]=420, - ["minion_area_of_effect_+%"]=1121, - ["minion_attack_speed_+%"]=146, - ["minion_attack_speed_+%_when_on_low_life"]=1122, - ["minion_block_%"]=1123, - ["minion_burning_damage_+%"]=1124, - ["minion_cast_speed_+%"]=147, - ["minion_chance_to_deal_double_damage_%"]=1125, - ["minion_chance_to_taunt_on_hit_%"]=1126, - ["minion_cooldown_recovery_+%"]=1127, - ["minion_critical_strike_chance_+%"]=1129, - ["minion_critical_strike_chance_+%_per_attack_crit_recently_up_to_100"]=1128, - ["minion_critical_strike_multiplier_+"]=1131, - ["minion_critical_strike_multiplier_+_per_attack_crit_recently_up_to_100"]=1130, - ["minion_damage_+%"]=144, - ["minion_damage_+%_on_full_life"]=1132, - ["minion_duration"]=101, - ["minion_fire_damage_taken_+%"]=1133, - ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=1134, - ["minion_larger_aggro_radius"]=1690, - ["minion_life_regeneration_rate_per_minute_%"]=1135, - ["minion_maim_on_hit_%"]=1136, - ["minion_maximum_all_elemental_resistances_%"]=1137, - ["minion_maximum_life_+%"]=155, - ["minion_melee_damage_+%"]=1138, - ["minion_melee_range_+"]=1139, - ["minion_movement_speed_+%"]=148, - ["minion_sacrifice_%_damage_to_regen"]=1141, - ["minion_sacrifice_%_minion_life_explosion"]=1142, - ["minion_sacrifice_%_minion_life_to_degen"]=1143, - ["minion_skill_area_of_effect_+%"]=1144, - ["minion_stun_threshold_reduction_+%"]=1145, - ["minion_withered_effect_+%"]=1146, - ["minions_are_defensive"]=1691, - ["minions_cannot_be_damaged_after_summoned_ms"]=1147, - ["minions_chance_to_intimidate_on_hit_%"]=1148, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1149, - ["minions_inflict_exposure_on_hit_%_chance"]=1150, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1151, - ["minions_use_your_main_hand_base_attack_duration_from_weapon"]=1152, - ["minions_use_your_main_hand_base_crit_chance_from_weapon"]=1153, - ["mirage_archer_number_of_additional_projectiles"]=1154, - ["misty_reflection_clone_base_maximum_life_%_of_owner_maximum_life"]=1155, - ["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=44, - ["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=42, - ["modifiers_to_totem_duration_also_affect_soul_prevention_duration"]=43, - ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1157, - ["molten_shell_damage_absorb_limit_%_of_armour"]=1156, - ["molten_shell_damage_absorbed_%"]=1156, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1158, - ["molten_shell_max_damage_absorbed"]=1156, - ["molten_strike_every_5th_attack_fire_X_additional_projectiles"]=1159, - ["molten_strike_every_5th_attack_projectiles_damage_+%_final"]=1160, - ["molten_strike_projectiles_chain_when_impacting_ground"]=1161, - ["monster_response_time_ms"]=179, - ["mortal_call_elemental_damage_taken_+%_final"]=1162, - ["mortal_call_physical_damage_taken_+%_final"]=1163, - ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1164, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1686, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1686, - ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1686, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1686, - ["movement_velocity_cap"]=151, - ["multiple_projectiles_projectile_spread_+%"]=1165, - ["multistrike_area_of_effect_+%_per_repeat"]=1166, - ["multistrike_damage_+%_final_on_first_repeat"]=1167, - ["multistrike_damage_+%_final_on_second_repeat"]=1168, - ["multistrike_damage_+%_final_on_third_repeat"]=1169, - ["napalm_arrow_detonation_hit_damage_+%_final"]=1170, - ["napalm_arrow_ignite_damage_+%_final_with_detonation"]=1171, - ["napalm_arrow_maximum_number_of_unprimed_arrows_allowed"]=1172, - ["never_any_ailment"]=218, - ["never_chill"]=455, - ["never_freeze"]=340, - ["never_ignite"]=341, - ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=389, - ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=388, - ["newshocknova_first_ring_damage_+%_final"]=360, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1173, - ["no_cost"]=1174, - ["no_critical_strike_multiplier"]=456, - ["no_movement_speed"]=122, - ["non_damaging_ailment_effect_+%"]=1175, - ["number_of_allowed_firewalls"]=1176, - ["number_of_allowed_storm_arrows"]=1177, - ["number_of_champions_of_light_allowed"]=1178, - ["number_of_corpses_to_consume"]=1179, - ["number_of_herald_scorpions_allowed"]=1181, - ["number_of_mines_to_place"]=45, - ["number_of_mirage_archers_allowed"]=1182, - ["number_of_reapers_allowed"]=1183, - ["number_of_relics_allowed"]=1184, - ["number_of_support_ghosts_allowed"]=586, - ["number_of_tornados_allowed"]=1520, - ["number_of_totems_to_summon"]=48, - ["number_of_traps_to_throw"]=46, - ["number_of_void_spawns_allowed"]=1185, - ["number_of_warcries_exerting_this_action"]=1042, - ["offering_skill_effect_duration_per_corpse"]=31, - ["oil_arrow_explosion_base_damage_+permyriad"]=183, - ["oil_arrow_explosion_maximum_added_fire_damage"]=185, - ["oil_arrow_explosion_minimum_added_fire_damage"]=185, - ["on_reaching_x_wildshard_stacks_gain_disgorge"]=1186, - ["orb_of_storms_bolt_frequency_ms"]=1187, - ["orb_of_storms_channelling_bolt_frequency_ms"]=1188, - ["orb_of_storms_maximum_number_of_hits"]=1189, - ["overpowered_effect_+%"]=1190, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1191, - ["parallel_projectile_firing_point_x_dist_+%"]=1192, + ["divine_cry_additional_base_critical_strike_chance_per_5_power_up_to_cap"]=1683, + ["divine_retribution_blasts_per_wave"]=832, + ["divine_retribution_num_waves"]=833, + ["divine_tempest_ailment_damage_+%_final_per_stage"]=836, + ["divine_tempest_beam_width_+%"]=834, + ["divine_tempest_damage_+%_final_while_channelling"]=835, + ["divine_tempest_hit_damage_+%_final_per_stage"]=836, + ["divine_tempest_no_beam"]=836, + ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=837, + ["divine_tempest_stage_on_hitting_rare_unique"]=838, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=839, + ["double_strike_attack_speed_+%_final_per_stage"]=840, + ["double_strike_max_stages"]=841, + ["doubles_have_movement_speed_+%"]=146, + ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=842, + ["dual_strike_damage_+%_final_against_enemies_on_full_life"]=843, + ["dual_strike_off_hand_weapon_determines_attack_time"]=844, + ["earthquake_aftershock_ailment_damage_+%_final_from_skill_effect_duration"]=53, + ["earthquake_aftershock_area_of_effect_+%_final_from_skill_effect_duration"]=56, + ["earthquake_aftershock_hit_damage_+%_final_from_skill_effect_duration"]=50, + ["earthquake_aftershock_maximum_added_physical_damage"]=845, + ["earthquake_aftershock_minimum_added_physical_damage"]=845, + ["earthquake_initial_slam_area_of_effect_+%"]=846, + ["earthshatter_spike_area_of_effect_+%_final"]=847, + ["elemental_damage_+%_final_per_righteous_charge"]=849, + ["elemental_damage_cannot_be_reflected"]=848, + ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=850, + ["elemental_hit_damage_+%_final_per_enemy_elemental_ailment"]=851, + ["elemental_hit_no_damage_of_unchosen_elemental_type"]=356, + ["elemental_penetration_%_from_resonance"]=852, + ["elemental_status_effect_aura_radius"]=216, + ["elemental_strike_physical_damage_%_to_convert"]=394, + ["elusive_effect_+%"]=853, + ["embrace_madness_amount_of_cooldown_to_gain_ms"]=854, + ["empowered_attack_damage_+%"]=855, + ["enchantment_of_war_trigger_on_kill_%"]=299, + ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1681, + ["endurance_charge_slam_damage_+%_final_per_endurance_charge_consumed"]=856, + ["enduring_cry_grants_x_additional_endurance_charges"]=857, + ["enduring_cry_life_regeneration_rate_per_minute_%_per_5_power_up_to_cap"]=1684, + ["enemies_chilled_by_bane_and_contagion"]=858, + ["enemies_covered_in_frost_as_unfrozen"]=859, + ["enemies_taunted_by_your_warcies_are_intimidated"]=860, + ["enemies_you_hinder_have_life_regeneration_rate_+%"]=861, + ["enemies_you_shock_movement_speed_+%"]=862, + ["enemies_you_shock_take_%_increased_physical_damage"]=863, + ["enemy_aggro_radius_+%"]=399, + ["enemy_phys_reduction_%_penalty_vs_hit"]=864, + ["energy_release_damage_+%_final_per_5%_increased_damage_taken_from_shock_on_target"]=865, + ["energy_shield_delay_-%"]=191, + ["energy_shield_leech_from_any_damage_permyriad"]=77, + ["energy_shield_recharge_rate_+%"]=192, + ["energy_shield_regeneration_rate_+%"]=866, + ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=867, + ["essence_drain_lose_life_from_damage_permyriad"]=868, + ["ethereal_knives_projectiles_needed_per_vestige_blade"]=869, + ["evasion_and_physical_damage_reduction_rating_+%"]=870, + ["excommunicate_on_melee_attack_hit_for_X_ms"]=871, + ["expanding_fire_cone_angle_+%_per_stage"]=872, + ["expanding_fire_cone_final_wave_always_ignite"]=873, + ["expanding_fire_cone_maximum_number_of_stages"]=874, + ["expanding_fire_cone_radius_+_per_stage"]=875, + ["expanding_fire_cone_radius_limit"]=875, + ["expanding_fire_cone_release_hit_damage_+%_final"]=876, + ["explode_enemies_for_10%_life_as_random_element_on_killing_blow_chance_%"]=877, + ["explosive_arrow_ailment_damage_+%_final_per_stack"]=249, + ["explosive_arrow_explosion_base_damage_+permyriad"]=183, + ["explosive_arrow_explosion_maximum_added_fire_damage"]=185, + ["explosive_arrow_explosion_minimum_added_fire_damage"]=185, + ["explosive_arrow_hit_damage_+%_final_per_stack"]=247, + ["explosive_arrow_maximum_bonus_explosion_radius"]=188, + ["explosive_arrow_stack_limit"]=878, + ["extra_target_targeting_distance_+%"]=879, + ["eye_of_winter_base_explosion_shards"]=61, + ["eye_of_winter_count_shards_while_flying_instead"]=61, + ["eye_of_winter_display_number_of_explosion_shards"]=61, + ["eye_of_winter_spiral_angle_+%"]=880, + ["eye_of_winter_spiral_fire_frequency_+%"]=881, + ["faster_bleed_%"]=882, + ["faster_burn_%"]=883, + ["feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"]=884, + ["feast_of_flesh_gain_X_life_per_corpse_consumed"]=884, + ["feast_of_flesh_gain_X_mana_per_corpse_consumed"]=884, + ["fire_beam_additional_stack_damage_+%_final"]=885, + ["fire_beam_enemy_fire_resistance_%_maximum"]=886, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=887, + ["fire_beam_length_+%"]=888, + ["fire_damage_+%"]=352, + ["fire_damage_taken_+"]=275, + ["fire_dot_multiplier_+"]=889, + ["fire_golem_grants_area_of_effect_+%"]=370, + ["fire_golem_grants_damage_+%"]=369, + ["fire_nova_damage_+%_per_repeat_final"]=386, + ["fire_shield_damage_threshold"]=200, + ["fire_storm_fireball_delay_ms"]=189, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=890, + ["fires_1_projectile_if_no_steel_ammo"]=891, + ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=892, + ["firestorm_final_impact_damage_+%_final"]=893, + ["firestorm_initial_impact_area_of_effect_+%_final"]=894, + ["firestorm_initial_impact_damage_+%_final"]=895, + ["firestorm_max_number_of_storms"]=896, + ["firewall_applies_%_fire_exposure"]=897, + ["fixed_skill_effect_duration"]=898, + ["flame_dash_burning_damage_+%_final"]=899, + ["flame_dash_repeats_target_previous_location"]=900, + ["flame_surge_burning_ground_creation_cooldown_ms"]=901, + ["flame_surge_burning_ground_on_ignite_damage_%"]=902, + ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=903, + ["flame_whip_damage_+%_final_vs_burning_enemies"]=340, + ["flameblast_ailment_damage_+%_final_per_10_life_reserved"]=904, + ["flameblast_ailment_damage_+%_final_per_stack"]=320, + ["flameblast_area_+%_final_per_stage"]=905, + ["flameblast_base_radius_override"]=906, + ["flameblast_damage_+%_final_per_10_life_reserved"]=907, + ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=908, + ["flameblast_ignite_chance_+%_per_stage"]=909, + ["flameblast_maximum_stages"]=910, + ["flameblast_starts_with_X_additional_stages"]=911, + ["flamethrower_damage_+%_per_stage_final"]=266, + ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=912, + ["flamethrower_tower_trap_number_of_flamethrowers"]=913, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=914, + ["flask_charges_used_+%"]=915, + ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=918, + ["flask_throw_base_charges_used"]=916, + ["flask_throw_charges_used_per_projectile"]=916, + ["flask_throw_display_also_sulphur_flask"]=916, + ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=919, + ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=920, + ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=919, + ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=920, + ["flask_throw_ruby_flask_critical_strike_multiplier_+"]=921, + ["flask_throw_ruby_flask_ignite_dot_multiplier_+"]=922, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=917, + ["flask_throw_total_charges_used"]=916, + ["flesh_stone_blood_stance_enemies_physical_damage_taken_when_hit_+%_final_from_player_distance"]=923, + ["flesh_stone_sand_stance_damage_taken_+%_final_from_distance_from_enemy_hits"]=924, + ["flicker_strike_buff_movement_speed_+%"]=925, + ["flicker_strike_teleport_range_+%"]=926, + ["fortify_duration_+%"]=365, + ["fortify_on_hit"]=927, + ["fortify_on_hit_close_range"]=928, + ["freeze_applies_cold_resistance_+"]=929, + ["freeze_as_though_dealt_damage_+%"]=237, + ["freeze_duration_+%"]=115, + ["freeze_mine_cold_resistance_+_while_frozen"]=287, + ["freezing_pulse_damage_+%_final_at_long_range"]=930, + ["frenzy_consume_charges_to_onslaught_for_ms_per_charge"]=931, + ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=932, + ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=933, + ["from_code_active_skill_ailment_damage_+%_final"]=934, + ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=935, + ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=936, + ["frost_fury_added_duration_per_stage_ms"]=937, + ["frost_fury_base_fire_interval_ms"]=938, + ["frost_fury_duration_+%_per_stage"]=939, + ["frost_fury_fire_speed_+%_final_while_channelling"]=940, + ["frost_fury_fire_speed_+%_per_stage"]=941, + ["frost_fury_max_number_of_stages"]=942, + ["frost_globe_absorb_damage_%_enemy_in_bubble"]=943, + ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=944, + ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=945, + ["frost_globe_health_per_stage"]=946, + ["frost_globe_life_regeneration_rate_per_minute_%"]=947, + ["frost_globe_max_stages"]=948, + ["frost_globe_stage_gain_interval_ms"]=949, + ["frost_wall_damage_+%_final_per_active_wall"]=950, + ["frostblink_damage_+%_final_per_5%_chill_effect_on_target"]=951, + ["frostbolt_projectile_acceleration"]=952, + ["frostbolt_projectile_speed_+%_final"]=953, + ["frozen_legion_%_chance_to_summon_additional_statue"]=954, + ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=188, + ["gain_%_of_phys_as_extra_chaos_per_white_socket_on_gloves"]=350, + ["gain_%_of_phys_as_extra_cold_per_green_socket_on_gloves"]=348, + ["gain_%_of_phys_as_extra_fire_per_red_socket_on_gloves"]=347, + ["gain_%_of_phys_as_extra_lightning_per_blue_socket_on_gloves"]=349, + ["gain_1_rage_on_use_%_chance"]=955, + ["gain_X_wildshard_stacks_on_cast"]=956, + ["gain_elusive_on_crit_%_chance"]=957, + ["gain_endurance_charge_on_melee_stun"]=286, + ["gain_endurance_charge_on_melee_stun_%"]=286, + ["gain_fortify_on_melee_hit_ms"]=958, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=959, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=960, + ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=961, + ["gain_overloaded_intensity_for_x_ms_after_losing_6_intensity"]=962, + ["gain_power_charge_on_kill_with_hit_%"]=963, + ["gain_rage_on_hit"]=964, + ["gain_rage_on_hit_%_chance"]=965, + ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=966, + ["gain_righteous_charge_on_mana_spent_%"]=967, + ["gain_unholy_resonance_of_majority_damage_on_hit_for_2_seconds"]=968, + ["gain_x_rage_on_attack_hit"]=969, + ["galvanic_field_beam_delay_ms"]=970, + ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=971, + ["galvanic_field_maximum_number_of_spheres"]=1121, + ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=972, + ["galvanic_field_retargeting_delay_ms"]=585, + ["ghost_furnace_ignite_damage_as_burning_damage_%"]=973, + ["glacial_cascade_final_spike_damage_+%_final"]=974, + ["glacial_cascade_travel_speed_+%"]=975, + ["glacial_hammer_third_hit_always_crits"]=238, + ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=239, + ["global_always_hit"]=337, + ["global_bleed_on_hit"]=625, + ["global_chance_to_blind_on_hit_%"]=976, + ["global_chance_to_knockback_%"]=78, + ["global_hit_causes_monster_flee_%"]=226, + ["global_maim_on_hit"]=977, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=1487, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=978, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=1487, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=978, + ["global_poison_on_hit"]=409, + ["global_reduce_enemy_block_%"]=338, + ["glorious_madness_timer_ms"]=979, + ["golem_buff_effect_+%"]=980, + ["graft_skill_esh_lightning_hands_maximum_hands"]=981, + ["graft_skill_esh_lightning_hands_number_of_additional_hands_spawned_per_brand"]=982, + ["graft_skill_esh_lightning_hands_number_of_hands_spawned"]=983, + ["graft_skill_tul_summon_number_of_demons_to_summon"]=984, + ["graft_skill_uulnet_bone_spires_max_spires_allowed"]=985, + ["graft_skill_uulnetol_bone_spires_num_of_spires_to_create"]=986, + ["graft_skill_xoph_flame_pillars_number_of_pillars"]=987, + ["graft_skill_xoph_molten_shell_absorb_limit"]=1181, + ["grant_expanding_fire_cone_release_ignite_damage_+%_final"]=988, + ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=989, + ["ground_slam_angle_+%"]=990, + ["groundslam_damage_to_close_targets_+%_final"]=431, + ["hallowing_flame_magnitude_+%"]=991, + ["heavens_scourge_channeling_trigger_interval_ms"]=992, + ["heavens_scourge_max_channelling_lightning_strikes"]=992, + ["heavens_scourge_unwinding_trigger_interval_ms"]=993, + ["herald_no_buff_effect"]=994, + ["herald_of_agony_add_stack_on_poison"]=995, + ["herald_of_agony_poison_damage_+%_final"]=996, + ["herald_of_ash_burning_%_overkill_damage_per_minute"]=997, + ["herald_of_light_summon_champion_on_kill"]=998, + ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=999, + ["herald_of_purity_physical_damage_+%_final"]=1000, + ["herald_of_the_breach_add_stack_on_inflicting_ailment"]=1002, + ["herald_of_the_breach_pulse_delay_ms"]=1003, + ["herald_of_the_breach_pulse_frequency_+%_per_otherworldly_pressure"]=1004, + ["hex_transfer_on_death_total_range"]=1005, + ["hex_zone_trigger_hextoad_every_x_ms"]=1006, + ["hexblast_%_chance_to_not_consume_hex"]=1009, + ["hexblast_ailment_damage_+%_final_if_hexed"]=1007, + ["hexblast_display_innate_remove_hex_100%_chance"]=1009, + ["hexblast_hit_damage_+%_final_if_hexed"]=1008, + ["hexed_enemies_cannot_deal_critical_strikes"]=1010, + ["hinder_enemy_chaos_damage_+%"]=1011, + ["hinder_enemy_chaos_damage_taken_+%"]=1012, + ["hit_and_ailment_damage_+%_final_per_gathering_lightning"]=469, + ["hits_cannot_kill_enemies"]=1013, + ["hits_grant_cruelty"]=1014, + ["hits_ignore_all_enemy_monster_resistances"]=1015, + ["hits_ignore_enemy_monster_physical_damage_reduction"]=1016, + ["holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond"]=1017, + ["holy_hammers_damage_+%_final_for_initial_hammer_in_cascade"]=1018, + ["holy_hammers_damage_+%_final_per_power_charge_consumed"]=1019, + ["holy_hammers_maximum_number_of_hammerslam_cascades"]=1020, + ["holy_hammers_num_additional_hammerslams_if_consuming_power_charge"]=1021, + ["holy_hammers_num_additional_hammerslams_per_consumed_power_charge"]=1022, + ["holy_hammers_number_of_additional_hammerslams_to_create"]=1023, + ["holy_path_teleport_range_+%"]=1024, + ["holy_relic_nova_life_regeneration_rate_per_minute"]=1025, + ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=1026, + ["holy_strike_maximum_number_of_animated_weapons"]=1646, + ["holy_sweep_hammerfall_damage_+%_final"]=1027, + ["holy_sweep_hammerfall_description_mode"]=1029, + ["holy_sweep_hammerfall_rate_ms"]=1028, + ["holy_sweep_number_of_holy_bolts_to_create"]=1029, + ["hydro_sphere_pulse_frequency_ms"]=1030, + ["hydrosphere_hit_cooldown_ms"]=1031, + ["ice_crash_first_stage_damage_+%_final"]=1032, + ["ice_crash_second_hit_damage_+%_final"]=367, + ["ice_crash_third_hit_damage_+%_final"]=368, + ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=1033, + ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=1033, + ["ice_golem_grants_accuracy_rating_+"]=372, + ["ice_golem_grants_critical_strike_chance_+%"]=371, + ["ice_nova_damage_when_cast_on_frostbolt_+%_final"]=1034, + ["ice_nova_freeze_as_though_damage_+%_final"]=1035, + ["ice_nova_number_of_frost_bolts_to_cast_on"]=1036, + ["ice_nova_number_of_repeats"]=334, + ["ice_nova_radius_+%_per_repeat"]=335, + ["ice_shield_moving_mana_degeneration_per_minute"]=273, + ["ice_spear_distance_before_form_change_+%"]=1037, + ["ice_spear_second_form_critical_strike_chance_+%"]=244, + ["ice_spear_second_form_critical_strike_multiplier_+"]=245, + ["ice_spear_second_form_projectile_speed_+%_final"]=246, + ["ignite_damage_+100%_final_chance"]=1038, + ["ignite_duration_+%"]=120, + ["ignites_apply_fire_resistance_+"]=1039, + ["ignition_blast_%_max_life_as_fire_on_death"]=1040, + ["ignore_self_damage_from_trauma_chance_%"]=1041, + ["immolation_brand_burn_damage_+%_final_per_stage"]=1042, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=1043, + ["impacting_steel_secondary_projectile_damage_+%_final"]=1044, + ["impale_debuff_effect_+%"]=1045, + ["impale_on_hit_%_chance"]=1046, + ["impale_phys_reduction_%_penalty"]=1047, + ["impurity_cold_damage_taken_+%_final"]=1048, + ["impurity_fire_damage_taken_+%_final"]=1049, + ["impurity_lightning_damage_taken_+%_final"]=1050, + ["incinerate_damage_+%_per_stage"]=267, + ["incinerate_starts_with_X_additional_stages"]=1051, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=1052, + ["infernal_blow_explosion_damage_%_of_total_per_stack"]=1053, + ["infernal_bolt_base_fire_damage_%_maximum_life"]=1054, + ["infernal_bolt_triggered_when_totem_with_this_skill_hit_by_enemy"]=1055, + ["infernal_cry_%_max_life_as_fire_on_death"]=1674, + ["infernal_cry_empowered_attacks_trigger_combust_display"]=1698, + ["infernal_cry_physical_damage_%_to_add_as_fire_per_5_power_up_to_cap"]=1680, + ["inflict_all_exposure_on_hit"]=1056, + ["inflict_hallowing_flame_on_melee_hit_chance_%"]=1057, + ["infusion_grants_life_regeneration_rate_per_minute_%"]=1058, + ["inspiration_charge_duration_+%"]=1059, + ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=382, + ["intermediary_chaos_area_damage_to_deal_per_minute"]=164, + ["intermediary_chaos_damage_to_deal_per_minute"]=165, + ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=166, + ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=167, + ["intermediary_cold_area_damage_to_deal_per_minute"]=175, + ["intermediary_cold_damage_to_deal_per_minute"]=176, + ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=177, + ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=178, + ["intermediary_fire_area_damage_to_deal_per_minute"]=170, + ["intermediary_fire_damage_to_deal_per_minute"]=171, + ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=172, + ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=173, + ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=179, + ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=168, + ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=169, + ["intimidate_nearby_enemies_on_use_for_ms"]=1060, + ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1701, + ["intimidating_cry_movement_speed_+%_per_5_power_up_to_cap"]=1677, + ["is_ranged_attack_totem"]=49, + ["is_remote_mine"]=46, + ["is_snipe_default_projectile"]=1362, + ["is_snipe_default_projectile_2"]=1361, + ["is_totem"]=49, + ["is_trap"]=47, + ["keystone_minion_instability"]=157, + ["keystone_point_blank"]=222, + ["kill_enemy_on_hit_if_under_10%_life"]=221, + ["kill_normal_or_magic_enemy_on_hit_if_under_x%_life"]=1062, + ["killed_monster_dropped_item_quantity_+%"]=125, + ["killed_monster_dropped_item_rarity_+%"]=124, + ["killing_blow_consumes_corpse_chance_to_gain_soul_per_power_permillage"]=1063, + ["killing_blow_consumes_corpse_restore_%_life"]=1064, + ["killing_blow_consumes_corpse_restore_x_life"]=1065, + ["killing_blow_consumes_corpse_restore_x_mana"]=1065, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1066, + ["kinetic_bolt_forks_apply_to_zig_zags"]=1067, + ["kinetic_bolt_number_of_zig_zags"]=1727, + ["kinetic_fusillade_damage_+%_final_per_projectile_fired"]=1068, + ["kinetic_fusillade_maximum_floating_projectiles"]=1069, + ["kinetic_instability_maximum_number_of_instability_orbs_allowed"]=1070, + ["kinetic_shell_hit_damage_absorbed_%"]=1071, + ["kinetic_shell_immunity_after_explosion_ms"]=1072, + ["kinetic_shell_maximum_damage_absorbed_from_hits"]=1071, + ["kinetic_shell_number_of_active_buffs_allowed"]=1073, + ["kinetic_shell_transfer_to_X_targets_on_projectile_hit"]=1074, + ["kinetic_wall_damage_+%_final_for_projectiles_chaining_off_wall"]=1075, + ["kinetic_wall_maximum_number_of_hits"]=1076, + ["knockback_chance_%_at_close_range"]=1077, + ["knockback_distance_+%"]=79, + ["lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies"]=1078, + ["lancing_steel_damage_+%_at_close_range"]=1079, + ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1080, + ["lancing_steel_targeting_range_+%"]=1081, + ["life_leech_from_any_damage_permyriad"]=74, + ["life_leech_from_physical_attack_damage_permyriad"]=76, + ["life_regeneration_rate_+%"]=242, + ["life_regeneration_rate_per_minute_%"]=241, + ["light_radius_increases_apply_to_area_of_effect"]=42, + ["lightning_ailment_effect_+%"]=1082, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1085, + ["lightning_arrow_alt_additional_strikes"]=1083, + ["lightning_arrow_alt_strike_frequency_ms"]=1084, + ["lightning_arrow_maximum_number_of_extra_targets"]=215, + ["lightning_arrow_stack_limit"]=1086, + ["lightning_conduit_max_num_targets"]=1087, + ["lightning_explosion_mine_aura_damage_taken_+%"]=1729, + ["lightning_golem_grants_attack_and_cast_speed_+%"]=378, + ["lightning_golem_grants_base_mana_regeneration_rate_per_minute"]=379, + ["lightning_penetration_%_while_on_low_mana"]=254, + ["lightning_tendrils_channelled_base_radius_+_per_second_while_channelling"]=1088, + ["lightning_tendrils_channelled_larger_pulse_always_crit"]=151, + ["lightning_tendrils_channelled_larger_pulse_area_of_effect_+%_final"]=1089, + ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1090, + ["lightning_tendrils_channelled_larger_pulse_interval"]=151, + ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1091, + ["lightning_tower_trap_interval_duration_ms"]=1092, + ["lightning_tower_trap_number_of_beams"]=1092, + ["lightning_trap_projectiles_leave_shocking_ground"]=345, + ["link_skills_deal_cold_dot_to_enemies_in_beam_aoe"]=1093, + ["living_lightning_number_of_attacks"]=1095, + ["living_lightning_number_of_minions_to_spawn"]=1094, + ["living_lightning_triggered_on_lightning_hit"]=1096, + ["local_display_prismatic_burst_cold_permyriad_chance"]=19, + ["local_display_prismatic_burst_fire_permyriad_chance"]=18, + ["local_display_prismatic_burst_lightning_permyriad_chance"]=20, + ["lose_all_righteous_charges_on_mana_use_threshold"]=1097, + ["lose_all_trauma_at_X_trauma"]=1098, + ["lose_blood_scythe_charge_on_kill"]=631, + ["lunaris_aspect_physical_damage_taken_+%_final_per_phys_rebuff"]=1099, + ["lunaris_aspect_skill_elemental_damage_taken_+%_final_per_ele_rebuff"]=1100, + ["lunaris_aspect_skill_physical_damage_taken_+%_final_per_phys_rebuff"]=1101, + ["magma_brand_ailment_damage_+%_final_per_additional_pustule"]=1102, + ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1103, + ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1104, + ["maim_effect_+%"]=1105, + ["maim_on_hit_%"]=1106, + ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1107, + ["mana_degeneration_per_minute"]=272, + ["mana_gain_per_target"]=1108, + ["mana_infused_staff_base_trigger_interval_ms"]=1109, + ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1110, + ["manaforged_arrows_total_mana_threshold"]=1112, + ["max_barkskin_stacks"]=136, + ["max_crab_aspect_stacks"]=1113, + ["max_number_of_absolution_sentinels"]=1114, + ["max_number_of_lightning_warp_markers"]=1115, + ["max_steel_ammo"]=1116, + ["maximum_added_chaos_damage_per_level"]=1135, + ["maximum_added_cold_damage_per_frenzy_charge"]=1136, + ["maximum_added_cold_damage_vs_chilled_enemies"]=1137, + ["maximum_added_fire_damage_per_level"]=1138, + ["maximum_added_lightning_damage_from_skill"]=1139, + ["maximum_barnacle_count_allowed"]=1117, + ["maximum_fire_damage_per_fuse_arrow_orb"]=187, + ["maximum_life_+%_for_corpses_you_create"]=1118, + ["maximum_number_of_additional_shields_of_light"]=1119, + ["maximum_number_of_blades_left_in_ground"]=1120, + ["maximum_number_of_blink_mirror_arrow_elemental_hit_clones"]=25, + ["maximum_number_of_blink_mirror_arrow_rain_of_arrows_clones"]=26, + ["maximum_number_of_mirage_warriors"]=1122, + ["maximum_number_of_snapping_adder_projectiles"]=1123, + ["maximum_number_of_spinning_blades"]=402, + ["maximum_number_of_spiritual_cry_warriors"]=1124, + ["maximum_number_of_summoned_doubles"]=1125, + ["maximum_number_of_vaal_ice_shot_mirages"]=1126, + ["maximum_otherwordly_pressure_stacks"]=1001, + ["maximum_secondary_physical_damage_per_15_strength"]=1141, + ["maximum_virulence_stacks"]=1127, + ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=69, + ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=65, + ["melee_counterattack_trigger_on_block_%"]=292, + ["melee_counterattack_trigger_on_hit_%"]=290, + ["melee_damage_vs_bleeding_enemies_+%"]=388, + ["melee_physical_damage_+%"]=182, + ["melee_range_+"]=396, + ["melee_splash_area_of_effect_+%_final"]=412, + ["melee_weapon_range_+"]=395, + ["mine_cannot_rearm"]=1129, + ["mine_critical_strike_chance_+%_per_power_charge"]=1130, + ["mine_detonates_instantly"]=1131, + ["mine_detonation_radius_+%"]=54, + ["mine_detonation_speed_+%"]=1132, + ["mine_duration"]=236, + ["mine_laying_speed_+%"]=235, + ["mine_projectile_speed_+%_per_frenzy_charge"]=1133, + ["mine_throwing_speed_+%_per_frenzy_charge"]=1134, + ["minimum_added_chaos_damage_per_level"]=1135, + ["minimum_added_cold_damage_per_frenzy_charge"]=1136, + ["minimum_added_cold_damage_vs_chilled_enemies"]=1137, + ["minimum_added_fire_damage_per_level"]=1138, + ["minimum_added_lightning_damage_from_skill"]=1139, + ["minimum_fire_damage_per_fuse_arrow_orb"]=187, + ["minimum_power_from_quality"]=1140, + ["minimum_secondary_physical_damage_per_15_strength"]=1141, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1164, + ["minion_additional_physical_damage_reduction_%"]=1142, + ["minion_aggravate_bleeding_on_attack_hit_chance_%"]=1143, + ["minion_ailment_damage_+%"]=1144, + ["minion_always_crit"]=423, + ["minion_area_of_effect_+%"]=1145, + ["minion_attack_speed_+%"]=147, + ["minion_attack_speed_+%_when_on_low_life"]=1146, + ["minion_block_%"]=1147, + ["minion_burning_damage_+%"]=1148, + ["minion_cast_speed_+%"]=148, + ["minion_chance_to_deal_double_damage_%"]=1149, + ["minion_chance_to_taunt_on_hit_%"]=1150, + ["minion_cooldown_recovery_+%"]=1151, + ["minion_critical_strike_chance_+%"]=1153, + ["minion_critical_strike_chance_+%_per_attack_crit_recently_up_to_100"]=1152, + ["minion_critical_strike_multiplier_+"]=1155, + ["minion_critical_strike_multiplier_+_per_attack_crit_recently_up_to_100"]=1154, + ["minion_damage_+%"]=145, + ["minion_damage_+%_on_full_life"]=1156, + ["minion_duration"]=102, + ["minion_fire_damage_taken_+%"]=1157, + ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=1158, + ["minion_larger_aggro_radius"]=1734, + ["minion_life_regeneration_rate_per_minute_%"]=1159, + ["minion_maim_on_hit_%"]=1160, + ["minion_maximum_all_elemental_resistances_%"]=1161, + ["minion_maximum_life_+%"]=156, + ["minion_melee_damage_+%"]=1162, + ["minion_melee_range_+"]=1163, + ["minion_movement_speed_+%"]=149, + ["minion_sacrifice_%_damage_to_regen"]=1165, + ["minion_sacrifice_%_minion_life_explosion"]=1166, + ["minion_sacrifice_%_minion_life_to_degen"]=1167, + ["minion_skill_area_of_effect_+%"]=1168, + ["minion_stun_threshold_reduction_+%"]=1169, + ["minion_withered_effect_+%"]=1170, + ["minions_are_defensive"]=1735, + ["minions_cannot_be_damaged_after_summoned_ms"]=1171, + ["minions_chance_to_intimidate_on_hit_%"]=1172, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1173, + ["minions_inflict_exposure_on_hit_%_chance"]=1174, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1175, + ["minions_use_your_main_hand_base_attack_duration_from_weapon"]=1176, + ["minions_use_your_main_hand_base_crit_chance_from_weapon"]=1177, + ["mirage_archer_number_of_additional_projectiles"]=1178, + ["misty_reflection_clone_base_maximum_life_%_of_owner_maximum_life"]=1179, + ["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=45, + ["modifiers_to_number_of_projectiles_instead_apply_to_number_of_summoned_ghost_cannons"]=1180, + ["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=43, + ["modifiers_to_totem_duration_also_affect_soul_prevention_duration"]=44, + ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1182, + ["molten_shell_damage_absorb_limit_%_of_armour"]=1181, + ["molten_shell_damage_absorbed_%"]=1181, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1183, + ["molten_shell_max_damage_absorbed"]=1181, + ["molten_strike_every_5th_attack_fire_X_additional_projectiles"]=1184, + ["molten_strike_every_5th_attack_projectiles_damage_+%_final"]=1185, + ["molten_strike_projectiles_chain_when_impacting_ground"]=1186, + ["monster_response_time_ms"]=180, + ["mortal_call_elemental_damage_taken_+%_final"]=1187, + ["mortal_call_physical_damage_taken_+%_final"]=1188, + ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1189, + ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1730, + ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1730, + ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1730, + ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1730, + ["movement_velocity_cap"]=152, + ["multiple_projectiles_projectile_spread_+%"]=1190, + ["multistrike_area_of_effect_+%_per_repeat"]=1191, + ["multistrike_damage_+%_final_on_first_repeat"]=1192, + ["multistrike_damage_+%_final_on_second_repeat"]=1193, + ["multistrike_damage_+%_final_on_third_repeat"]=1194, + ["napalm_arrow_detonation_hit_damage_+%_final"]=1195, + ["napalm_arrow_ignite_damage_+%_final_with_detonation"]=1196, + ["napalm_arrow_maximum_number_of_unprimed_arrows_allowed"]=1197, + ["never_any_ailment"]=219, + ["never_chill"]=458, + ["never_freeze"]=342, + ["never_ignite"]=343, + ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=391, + ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=390, + ["newshocknova_first_ring_damage_+%_final"]=362, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1198, + ["no_cost"]=1199, + ["no_critical_strike_multiplier"]=459, + ["no_movement_speed"]=123, + ["non_damaging_ailment_effect_+%"]=1200, + ["number_of_allowed_firewalls"]=1201, + ["number_of_allowed_storm_arrows"]=1202, + ["number_of_champions_of_light_allowed"]=1203, + ["number_of_corpses_to_consume"]=1204, + ["number_of_herald_scorpions_allowed"]=1206, + ["number_of_mines_to_place"]=46, + ["number_of_mirage_archers_allowed"]=1207, + ["number_of_reapers_allowed"]=1208, + ["number_of_relics_allowed"]=1209, + ["number_of_support_ghosts_allowed"]=593, + ["number_of_tornados_allowed"]=1563, + ["number_of_totems_to_summon"]=49, + ["number_of_traps_to_throw"]=47, + ["number_of_void_spawns_allowed"]=1210, + ["number_of_warcries_exerting_this_action"]=1061, + ["off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=8, + ["off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=8, + ["offering_skill_effect_duration_per_corpse"]=32, + ["oil_arrow_explosion_base_damage_+permyriad"]=184, + ["oil_arrow_explosion_maximum_added_fire_damage"]=186, + ["oil_arrow_explosion_minimum_added_fire_damage"]=186, + ["on_reaching_x_wildshard_stacks_gain_disgorge"]=1211, + ["orb_of_storms_bolt_frequency_ms"]=1212, + ["orb_of_storms_channelling_bolt_frequency_ms"]=1213, + ["orb_of_storms_maximum_number_of_hits"]=1214, + ["overpowered_effect_+%"]=1215, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1216, + ["pact_empower_limitation_specifier_for_stat_description"]=1217, + ["pact_skill_additional_beam_only_chains"]=1222, + ["pact_skill_damage_+%_final_with_hits_and_ailments_to_grant"]=1218, + ["pact_skill_grant_damage_+%_final_to_exerted_skills"]=1219, + ["pact_skill_grant_damage_over_time_+%_final_to_spells"]=1220, + ["pact_skill_grant_x_additional_projectiles_fired_in_nova"]=1223, + ["pact_skill_grant_x_cascades_to_do_in_spiral"]=1221, + ["parallel_projectile_firing_point_x_dist_+%"]=1230, parent="active_skill_gem_stat_descriptions", - ["penance_brand_additional_descriptions_boolean"]=1193, - ["penance_brand_base_spread_radius_+"]=1194, - ["penance_brand_pulses_instead_of_explode"]=1195, - ["penance_mark_phantasm_duration_display"]=1197, - ["penance_mark_summon_phantasms_when_hit"]=1196, - ["penetrate_%_fire_resistance_per_100_dexterity"]=1198, - ["petrification_statue_target_action_speed_-%"]=1203, - ["phantasm_grant_buff_maximum_added_physical_damage"]=1204, - ["phantasm_grant_buff_minimum_added_physical_damage"]=1204, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1205, - ["phase_run_melee_physical_damage_+%_final"]=180, - ["phase_through_objects"]=396, - ["phys_cascade_trap_interval_duration_ms"]=1206, - ["phys_cascade_trap_number_of_cascades"]=1206, - ["physical_attack_damage_taken_+_per_barkskin_stack"]=136, - ["physical_damage_%_to_add_as_chaos"]=349, - ["physical_damage_%_to_add_as_fire"]=344, - ["physical_damage_reduction_%_per_crab_aspect_stack"]=1207, - ["physical_damage_reduction_rating_+%"]=200, - ["physical_damage_taken_+"]=273, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1208, - ["plague_bearer_movement_speed_+%_while_infecting"]=1209, - ["poison_damage_+100%_final_chance"]=1210, - ["poison_dot_multiplier_+"]=1211, - ["poison_skill_effect_duration"]=100, - ["portal_alternate_destination_chance_permyriad"]=1212, - ["power_siphon_fire_at_all_targets"]=59, - ["power_siphon_fire_at_x_targets"]=1213, - ["predict_totem_maximum_life"]=111, - ["primary_projectile_chain_num"]=1214, - ["primary_projectile_display_targets_to_pierce"]=108, - ["primary_projectile_impale_chance_%"]=1215, - ["prismatic_burst_unchosen_type_damage_-100%_final"]=355, - ["prismatic_rain_beam_frequency_ms"]=1216, - ["projectile_additional_return_chance_%"]=1217, - ["projectile_attack_damage_+%_in_blood_stance"]=1218, - ["projectile_chain_from_terrain_chance_%"]=419, - ["projectile_chance_to_not_pierce_%"]=1220, - ["projectile_damage_+%_final_if_pierced_enemy"]=1221, - ["projectile_damage_+%_if_pierced_enemy"]=1222, - ["projectile_damage_+%_per_remaining_chain"]=1223, - ["projectile_damage_+%_vs_nearby_enemies"]=1227, - ["projectile_damage_modifiers_apply_to_skill_dot"]=40, - ["projectile_ground_effect_duration"]=98, - ["projectile_maximum_range_override"]=1224, - ["projectile_number_of_targets_to_pierce"]=107, - ["projectile_return_%_chance"]=262, - ["projectile_speed_+%_in_sand_stance"]=1225, - ["projectile_spiral_nova_angle"]=59, - ["projectile_spiral_nova_both_directions"]=59, - ["projectiles_barrage"]=59, - ["projectiles_can_split_at_end_of_range"]=1219, - ["projectiles_can_split_from_terrain"]=1219, - ["projectiles_cannot_split"]=1226, - ["projectiles_fork_when_passing_a_flame_wall"]=1228, - ["projectiles_nova"]=59, - ["projectiles_pierce_all_targets_in_x_range"]=1229, - ["projectiles_rain"]=1230, - ["projectiles_return"]=262, - ["puppet_master_duration_ms"]=1231, - ["purge_dot_multiplier_+_per_100ms_duration_expired"]=1232, - ["purge_expose_resist_%_matching_highest_element_damage"]=1233, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1234, - ["pyroclast_mine_aura_fire_exposure_%_to_apply"]=1235, - ["quake_slam_fully_charged_explosion_damage_+%_final"]=398, - ["quality_display_active_skill_area_damage_is_gem"]=472, - ["quality_display_active_skill_area_damage_quality_negated_from_gem"]=472, - ["quality_display_active_skill_attack_speed_per_frenzy_is_gem"]=920, - ["quality_display_active_skill_ignite_damage_is_gem"]=487, - ["quality_display_active_skill_poison_damage_final_is_gem"]=488, - ["quality_display_active_skill_returning_damage_is_gem"]=427, - ["quality_display_alt_flame_whip_is_gem"]=889, - ["quality_display_alternate_tectonic_slam_is_gem"]=843, - ["quality_display_blade_vortex_is_gem"]=267, - ["quality_display_bladestorm_is_gem"]=611, - ["quality_display_boneshatter_is_gem"]=1534, - ["quality_display_chaged_dash_is_gem"]=693, - ["quality_display_chain_hook_is_gem"]=655, - ["quality_display_charged_attack_is_gem"]=690, - ["quality_display_circle_of_power_damage_is_gem"]=698, - ["quality_display_circle_of_power_is_gem"]=700, + ["penance_brand_additional_descriptions_boolean"]=1231, + ["penance_brand_base_spread_radius_+"]=1232, + ["penance_brand_pulses_instead_of_explode"]=1233, + ["penance_mark_phantasm_duration_display"]=1235, + ["penance_mark_summon_phantasms_when_hit"]=1234, + ["penetrate_%_fire_resistance_per_100_dexterity"]=1236, + ["petrification_statue_target_action_speed_-%"]=1241, + ["phantasm_grant_buff_maximum_added_physical_damage"]=1242, + ["phantasm_grant_buff_minimum_added_physical_damage"]=1242, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1243, + ["phase_run_melee_physical_damage_+%_final"]=181, + ["phase_through_objects"]=398, + ["phys_cascade_trap_interval_duration_ms"]=1244, + ["phys_cascade_trap_number_of_cascades"]=1244, + ["physical_attack_damage_taken_+_per_barkskin_stack"]=137, + ["physical_damage_%_to_add_as_chaos"]=351, + ["physical_damage_%_to_add_as_fire"]=346, + ["physical_damage_reduction_%_per_crab_aspect_stack"]=1245, + ["physical_damage_reduction_rating_+%"]=201, + ["physical_damage_taken_+"]=274, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1246, + ["plague_bearer_movement_speed_+%_while_infecting"]=1247, + ["poison_damage_+100%_final_chance"]=1248, + ["poison_dot_multiplier_+"]=1249, + ["poison_skill_effect_duration"]=101, + ["portal_alternate_destination_chance_permyriad"]=1250, + ["power_siphon_fire_at_all_targets"]=60, + ["power_siphon_fire_at_x_targets"]=1251, + ["predict_totem_maximum_life"]=112, + ["primary_projectile_chain_num"]=1252, + ["primary_projectile_display_targets_to_pierce"]=109, + ["primary_projectile_impale_chance_%"]=1253, + ["prismatic_burst_unchosen_type_damage_-100%_final"]=357, + ["prismatic_rain_beam_frequency_ms"]=1254, + ["projectile_additional_return_chance_%"]=1255, + ["projectile_attack_damage_+%_in_blood_stance"]=1256, + ["projectile_chain_from_terrain_chance_%"]=422, + ["projectile_chance_to_not_pierce_%"]=1258, + ["projectile_damage_+%_final_if_pierced_enemy"]=1259, + ["projectile_damage_+%_if_pierced_enemy"]=1260, + ["projectile_damage_+%_per_remaining_chain"]=1261, + ["projectile_damage_+%_vs_nearby_enemies"]=1265, + ["projectile_damage_modifiers_apply_to_skill_dot"]=41, + ["projectile_ground_effect_duration"]=99, + ["projectile_maximum_range_override"]=1262, + ["projectile_number_of_targets_to_pierce"]=108, + ["projectile_return_%_chance"]=263, + ["projectile_speed_+%_in_sand_stance"]=1263, + ["projectile_spiral_nova_angle"]=60, + ["projectile_spiral_nova_both_directions"]=60, + ["projectiles_barrage"]=60, + ["projectiles_can_split_at_end_of_range"]=1257, + ["projectiles_can_split_from_terrain"]=1257, + ["projectiles_cannot_split"]=1264, + ["projectiles_fork_when_passing_a_flame_wall"]=1266, + ["projectiles_nova"]=60, + ["projectiles_pierce_all_targets_in_x_range"]=1267, + ["projectiles_rain"]=1268, + ["projectiles_return"]=263, + ["puppet_master_duration_ms"]=1269, + ["purge_dot_multiplier_+_per_100ms_duration_expired"]=1270, + ["purge_expose_resist_%_matching_highest_element_damage"]=1271, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1272, + ["pyroclast_mine_aura_fire_exposure_%_to_apply"]=1273, + ["quake_slam_fully_charged_explosion_damage_+%_final"]=400, + ["quality_display_active_skill_area_damage_is_gem"]=476, + ["quality_display_active_skill_area_damage_quality_negated_from_gem"]=476, + ["quality_display_active_skill_attack_speed_per_frenzy_is_gem"]=933, + ["quality_display_active_skill_ignite_damage_is_gem"]=493, + ["quality_display_active_skill_poison_damage_final_is_gem"]=494, + ["quality_display_active_skill_returning_damage_is_gem"]=430, + ["quality_display_alt_flame_whip_is_gem"]=902, + ["quality_display_alternate_tectonic_slam_is_gem"]=856, + ["quality_display_blade_vortex_is_gem"]=268, + ["quality_display_bladestorm_is_gem"]=619, + ["quality_display_boneshatter_is_gem"]=1577, + ["quality_display_chaged_dash_is_gem"]=701, + ["quality_display_chain_hook_is_gem"]=663, + ["quality_display_charged_attack_is_gem"]=698, + ["quality_display_circle_of_power_damage_is_gem"]=706, + ["quality_display_circle_of_power_is_gem"]=708, ["quality_display_dark_pact_is_gem"]=3, - ["quality_display_disintegrate_is_gem"]=788, - ["quality_display_dual_strike_is_gem"]=830, - ["quality_display_earthquake_is_gem"]=398, - ["quality_display_earthshatter_spike_damage_is_gem"]=1342, - ["quality_display_elemental_hit_is_gem"]=838, - ["quality_display_essence_drain_is_gem"]=399, - ["quality_display_explosive_arrow_is_gem"]=865, - ["quality_display_explosive_trap_is_gem"]=1290, - ["quality_display_exsanguinate_beam_targets_is_gem"]=629, - ["quality_display_eye_of_winter_is_gem"]=60, - ["quality_display_firebeam_is_gem"]=872, - ["quality_display_firewall_is_gem"]=1176, - ["quality_display_flame_whip_is_gem"]=338, - ["quality_display_flameblast_is_gem"]=897, - ["quality_display_forbidden_rite_is_gem"]=1326, - ["quality_display_freezing_pulse_damage_at_long_range_is_gem"]=917, - ["quality_display_frenzy_is_gem"]=919, - ["quality_display_generals_cry_is_gem"]=1100, - ["quality_display_glacial_cascade_is_gem"]=960, - ["quality_display_glacial_cascade_num_spikes_is_gem"]=1577, - ["quality_display_groundslam_is_gem"]=428, - ["quality_display_herald_of_agony_is_gem"]=1103, - ["quality_display_herald_of_ash_is_gem"]=981, - ["quality_display_ice_crash_is_gem"]=366, - ["quality_display_immortal_call_is_gem"]=1164, - ["quality_display_incinerate_is_gem_hit"]=863, - ["quality_display_incinerate_is_gem_ingite"]=974, - ["quality_display_incinerate_is_gem_stages"]=861, - ["quality_display_infernal_blow_is_gem"]=1034, - ["quality_display_kinetic_fusillade_is_gem"]=1049, - ["quality_display_lightning_conduit_is_gem"]=852, - ["quality_display_lightning_tower_trap_is_gem"]=1073, - ["quality_display_living_lightning_is_gem"]=1076, - ["quality_display_manabond_is_gem"]=1087, - ["quality_display_max_spikes_is_gem"]=1345, - ["quality_display_phys_cascade_trap_is_gem"]=1206, - ["quality_display_plague_bearer_is_gem"]=424, - ["quality_display_rage_vortex_is_gem"]=1238, - ["quality_display_reap_is_gem"]=627, - ["quality_display_rune_paint_area_is_gem"]=1264, - ["quality_display_rune_paint_is_gem"]=1266, - ["quality_display_sanctify_is_gem"]=1269, - ["quality_display_scourge_arrow_is_gem"]=1617, - ["quality_display_shield_of_light_additional_waves_is_gem"]=1095, - ["quality_display_shock_chance_from_skill_is_gem"]=1299, - ["quality_display_snipe_is_gem"]=1322, - ["quality_display_spike_slam_is_gem"]=1346, - ["quality_display_static_strike_gathering_lightning_is_gem"]=465, - ["quality_display_storm_rain_is_gem"]=1371, - ["quality_display_stormblast_mine_is_gem"]=1685, - ["quality_display_tectonic_slam_is_gem"]=1510, - ["quality_display_venom_gyre_is_gem"]=1099, - ["quality_display_voltaxic_burst_is_gem"]=1625, - ["quality_display_wall_length_is_gem"]=161, - ["quality_display_winter_orb_is_gem"]=929, - ["quality_display_wintertide_brand_is_gem"]=1023, - ["quality_display_withering_step_is_gem"]=1320, - ["queens_demand_effect"]=806, - ["quick_guard_damage_absorb_limit"]=1236, - ["quick_guard_damage_absorbed_%"]=1236, - ["radiant_sentinel_minion_burning_effect_radius"]=1237, - ["radiant_sentinel_minion_fire_%_of_life_to_deal_nearby_per_minute"]=1237, - ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1239, - ["rage_slash_maximum_vortices"]=1242, - ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1240, - ["rage_slash_rage_sacrifice_per_damage_bonus"]=1239, - ["rage_slash_rage_sacrifice_per_radius_bonus"]=1240, - ["rage_slash_sacrifice_rage_%"]=1238, - ["rage_slash_vortex_attack_speed_+%_final"]=1241, - ["rage_storm_scaling_rage_hundred_times_base_cost"]=1243, - ["rage_storm_scaling_rage_loss_+%_per_second"]=1244, - ["rage_warcry_gain_X_rage_per_minute_per_5_monster_power_max_25_power"]=1641, - ["rage_warcry_maximum_rage_+"]=1644, - ["ragestorm_movement_speed_+%"]=1245, - ["rain_of_arrows_additional_sequence_chance_%"]=1246, - ["rain_of_arrows_sequences_to_fire"]=59, - ["raised_spectre_level"]=1247, - ["rallying_cry_buff_effect_on_minions_+%_final"]=1643, - ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1647, - ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1642, - ["random_nearby_minion_gain_a_soul_eater_soul_on_X_life_spent"]=1248, - ["ranged_attack_totem_only_attacks_when_owner_attacks"]=1249, - ["ravenous_buff_magnitude"]=1250, - ["reap_life_%_granted_on_death_with_debuff"]=623, - ["reave_additional_max_stacks"]=1251, - ["reave_area_of_effect_+%_final_per_stage"]=284, - ["recall_sigil_target_search_range_+%"]=1252, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=1253, - ["recover_%_maximum_life_on_cull"]=1254, - ["recover_permyriad_life_on_skill_use"]=1255, - ["reduce_enemy_chaos_resistance_%"]=1256, - ["reduce_enemy_dodge_%"]=337, - ["reduce_enemy_elemental_resistance_%"]=254, - ["refresh_bleeding_duration_on_hit_%_chance"]=1257, - ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=464, - ["remove_chill_on_enemy_when_you_hit"]=1258, + ["quality_display_disintegrate_is_gem"]=801, + ["quality_display_dual_strike_is_gem"]=843, + ["quality_display_earthquake_is_gem"]=400, + ["quality_display_earthshatter_spike_damage_is_gem"]=1382, + ["quality_display_elemental_hit_is_gem"]=851, + ["quality_display_essence_drain_is_gem"]=401, + ["quality_display_explosive_arrow_is_gem"]=878, + ["quality_display_explosive_trap_is_gem"]=1328, + ["quality_display_exsanguinate_beam_targets_is_gem"]=637, + ["quality_display_eye_of_winter_is_gem"]=61, + ["quality_display_firebeam_is_gem"]=885, + ["quality_display_firewall_is_gem"]=1201, + ["quality_display_flame_whip_is_gem"]=340, + ["quality_display_flameblast_is_gem"]=910, + ["quality_display_forbidden_rite_is_gem"]=1366, + ["quality_display_freezing_pulse_damage_at_long_range_is_gem"]=930, + ["quality_display_frenzy_is_gem"]=932, + ["quality_display_generals_cry_is_gem"]=1124, + ["quality_display_glacial_cascade_is_gem"]=974, + ["quality_display_groundslam_is_gem"]=431, + ["quality_display_herald_of_agony_is_gem"]=1127, + ["quality_display_herald_of_ash_is_gem"]=997, + ["quality_display_ice_crash_is_gem"]=368, + ["quality_display_immortal_call_is_gem"]=1189, + ["quality_display_incinerate_is_gem_hit"]=876, + ["quality_display_incinerate_is_gem_ingite"]=988, + ["quality_display_incinerate_is_gem_stages"]=874, + ["quality_display_infernal_blow_is_gem"]=1053, + ["quality_display_kinetic_fusillade_is_gem"]=1068, + ["quality_display_lightning_conduit_is_gem"]=865, + ["quality_display_lightning_tower_trap_is_gem"]=1092, + ["quality_display_living_lightning_is_gem"]=1095, + ["quality_display_manabond_is_gem"]=1110, + ["quality_display_max_spikes_is_gem"]=1385, + ["quality_display_phys_cascade_trap_is_gem"]=1244, + ["quality_display_plague_bearer_is_gem"]=427, + ["quality_display_rage_vortex_is_gem"]=1276, + ["quality_display_reap_is_gem"]=635, + ["quality_display_rune_paint_area_is_gem"]=1302, + ["quality_display_rune_paint_is_gem"]=1304, + ["quality_display_sanctify_is_gem"]=1307, + ["quality_display_scourge_arrow_is_gem"]=1661, + ["quality_display_shield_of_light_additional_waves_is_gem"]=1119, + ["quality_display_shock_chance_from_skill_is_gem"]=1337, + ["quality_display_snipe_is_gem"]=1360, + ["quality_display_spike_slam_is_gem"]=1386, + ["quality_display_static_strike_gathering_lightning_is_gem"]=468, + ["quality_display_storm_rain_is_gem"]=1411, + ["quality_display_stormblast_mine_is_gem"]=1729, + ["quality_display_tectonic_slam_is_gem"]=1552, + ["quality_display_venom_gyre_is_gem"]=1123, + ["quality_display_voltaxic_burst_is_gem"]=1669, + ["quality_display_wall_length_is_gem"]=162, + ["quality_display_winter_orb_is_gem"]=942, + ["quality_display_wintertide_brand_is_gem"]=1042, + ["quality_display_withering_step_is_gem"]=1358, + ["queens_demand_effect"]=819, + ["quick_guard_damage_absorb_limit"]=1274, + ["quick_guard_damage_absorbed_%"]=1274, + ["radiant_sentinel_minion_burning_effect_radius"]=1275, + ["radiant_sentinel_minion_fire_%_of_life_to_deal_nearby_per_minute"]=1275, + ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1277, + ["rage_slash_maximum_vortices"]=1280, + ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1278, + ["rage_slash_rage_sacrifice_per_damage_bonus"]=1277, + ["rage_slash_rage_sacrifice_per_radius_bonus"]=1278, + ["rage_slash_sacrifice_rage_%"]=1276, + ["rage_slash_vortex_attack_speed_+%_final"]=1279, + ["rage_storm_scaling_rage_hundred_times_base_cost"]=1281, + ["rage_storm_scaling_rage_loss_+%_per_second"]=1282, + ["rage_warcry_gain_X_rage_per_minute_per_5_monster_power_max_25_power"]=1685, + ["rage_warcry_maximum_rage_+"]=1688, + ["ragestorm_movement_speed_+%"]=1283, + ["rain_of_arrows_additional_sequence_chance_%"]=1284, + ["rain_of_arrows_sequences_to_fire"]=60, + ["raised_spectre_level"]=1285, + ["rallying_cry_buff_effect_on_minions_+%_final"]=1687, + ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1691, + ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1686, + ["random_nearby_minion_gain_a_soul_eater_soul_on_X_life_spent"]=1286, + ["ranged_attack_totem_only_attacks_when_owner_attacks"]=1287, + ["ravenous_buff_magnitude"]=1288, + ["reap_life_%_granted_on_death_with_debuff"]=631, + ["reave_additional_max_stacks"]=1289, + ["reave_area_of_effect_+%_final_per_stage"]=285, + ["recall_sigil_target_search_range_+%"]=1290, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=1291, + ["recover_%_maximum_life_on_cull"]=1292, + ["recover_permyriad_life_on_skill_use"]=1293, + ["reduce_enemy_chaos_resistance_%"]=1294, + ["reduce_enemy_dodge_%"]=339, + ["reduce_enemy_elemental_resistance_%"]=255, + ["refresh_bleeding_duration_on_hit_%_chance"]=1295, + ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=467, + ["remove_chill_on_enemy_when_you_hit"]=1296, ["retaliation_base_use_window_duration_ms"]=2, ["retaliation_use_window_duration"]=2, - ["returning_projectiles_always_pierce"]=430, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1259, - ["righteous_fire_cast_speed_+%_final"]=208, - ["righteous_fire_spell_damage_+%_final"]=209, - ["ring_of_ice_placement_distance"]=1260, - ["rings_of_light_additional_projectiles_per_ring"]=1261, - ["rings_of_light_maximum_rings_per_target"]=1262, - ["rings_of_light_total_maximum_rings_allowed"]=1263, - ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1264, - ["rune_paint_area_of_effect_+%_per_rune_level"]=1265, - ["rune_paint_damage_+%_final_per_rune_level"]=1266, - ["rune_paint_mana_spend_per_rune_upgrade"]=1267, - ["rune_paint_max_rune_level"]=1268, - ["sanctify_wave_damage_+%_final"]=1269, - ["sand_mirage_triggered_skill_damage_+%_final"]=1270, - ["scorpion_minion_attack_speed_+%"]=1271, - ["scorpion_minion_maximum_added_physical_damage"]=1273, - ["scorpion_minion_minimum_added_physical_damage"]=1273, - ["scorpion_minion_physical_damage_+%"]=1272, - ["scourge_arrow_X_pods_per_projectile"]=1274, - ["searing_bond_totems_detonation_damage_over_time_+%_final_per_active_totem"]=1275, - ["secondary_buff_effect_duration"]=94, - ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=173, - ["secondary_maximum_chaos_damage"]=27, - ["secondary_maximum_cold_damage"]=23, - ["secondary_maximum_fire_damage"]=22, - ["secondary_maximum_lightning_damage"]=26, - ["secondary_maximum_physical_damage"]=21, - ["secondary_minimum_chaos_damage"]=27, - ["secondary_minimum_cold_damage"]=23, - ["secondary_minimum_fire_damage"]=22, - ["secondary_minimum_lightning_damage"]=26, - ["secondary_minimum_physical_damage"]=21, - ["secondary_minion_duration"]=102, - ["secondary_skill_effect_duration"]=97, - ["seismic_cry_armour_+%_final_per_5_power_up_to_cap"]=1631, - ["seismic_cry_base_slam_skill_area_+%"]=1650, - ["seismic_cry_base_slam_skill_area_+%_final"]=1651, - ["seismic_cry_base_slam_skill_damage_+%_final"]=1648, - ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1652, - ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1649, - ["seismic_cry_stun_threshold_+%_per_5_power_up_to_cap"]=1632, - ["sentinel_minion_cooldown_speed_+%"]=1276, - ["shaman_voodoo_pole_redirect_damage_to_player_at_%_value"]=1277, - ["shaman_voodoo_pole_redirect_damage_to_pole_at_%_value"]=1278, - ["shatter_on_killing_blow"]=1279, - ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1280, - ["shield_block_%"]=197, - ["shield_charge_damage_+%_maximum"]=106, - ["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=104, - ["shield_charge_stun_duration_+%_maximum"]=105, - ["shield_crush_damage_+%_final_from_distance"]=1281, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=1282, - ["shield_spell_block_%"]=198, - ["shock_duration_+%"]=118, - ["shock_effect_+%"]=1283, - ["shock_effect_+%_with_critical_strikes"]=1284, - ["shock_maximum_magnitude_+"]=1285, - ["shock_nova_ring_chance_to_shock_+%"]=1286, - ["shock_nova_ring_damage_+%"]=413, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1287, - ["shocked_ground_base_magnitude_override"]=1288, - ["shockwave_chained_damage_+%_final"]=1680, - ["shockwave_slam_explosion_damage_+%_final"]=411, - ["shrapnel_shot_cone_placement_distance_+"]=1289, - ["shrapnel_trap_number_of_secondary_explosions"]=1290, - ["sigil_attached_target_fire_penetration_%"]=1291, - ["sigil_attached_target_lightning_penetration_%"]=1292, - ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1293, - ["sigil_recall_extend_base_skill_effect_duration"]=1294, - ["sigils_can_target_reaper_minions"]=1295, - ["siphon_life_leech_from_damage_permyriad"]=399, + ["returning_projectiles_always_pierce"]=433, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1297, + ["righteous_fire_cast_speed_+%_final"]=209, + ["righteous_fire_spell_damage_+%_final"]=210, + ["ring_of_ice_placement_distance"]=1298, + ["rings_of_light_additional_projectiles_per_ring"]=1299, + ["rings_of_light_maximum_rings_per_target"]=1300, + ["rings_of_light_total_maximum_rings_allowed"]=1301, + ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1302, + ["rune_paint_area_of_effect_+%_per_rune_level"]=1303, + ["rune_paint_damage_+%_final_per_rune_level"]=1304, + ["rune_paint_mana_spend_per_rune_upgrade"]=1305, + ["rune_paint_max_rune_level"]=1306, + ["sanctify_wave_damage_+%_final"]=1307, + ["sand_mirage_triggered_skill_damage_+%_final"]=1308, + ["scorpion_minion_attack_speed_+%"]=1309, + ["scorpion_minion_maximum_added_physical_damage"]=1311, + ["scorpion_minion_minimum_added_physical_damage"]=1311, + ["scorpion_minion_physical_damage_+%"]=1310, + ["scourge_arrow_X_pods_per_projectile"]=1312, + ["searing_bond_totems_detonation_damage_over_time_+%_final_per_active_totem"]=1313, + ["secondary_buff_effect_duration"]=95, + ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=174, + ["secondary_maximum_chaos_damage"]=28, + ["secondary_maximum_cold_damage"]=24, + ["secondary_maximum_fire_damage"]=23, + ["secondary_maximum_lightning_damage"]=27, + ["secondary_maximum_physical_damage"]=22, + ["secondary_minimum_chaos_damage"]=28, + ["secondary_minimum_cold_damage"]=24, + ["secondary_minimum_fire_damage"]=23, + ["secondary_minimum_lightning_damage"]=27, + ["secondary_minimum_physical_damage"]=22, + ["secondary_minion_duration"]=103, + ["secondary_skill_effect_duration"]=98, + ["seismic_cry_armour_+%_final_per_5_power_up_to_cap"]=1675, + ["seismic_cry_base_slam_skill_area_+%"]=1694, + ["seismic_cry_base_slam_skill_area_+%_final"]=1695, + ["seismic_cry_base_slam_skill_damage_+%_final"]=1692, + ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1696, + ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1693, + ["seismic_cry_stun_threshold_+%_per_5_power_up_to_cap"]=1676, + ["sentinel_minion_cooldown_speed_+%"]=1314, + ["shaman_voodoo_pole_redirect_damage_to_player_at_%_value"]=1315, + ["shaman_voodoo_pole_redirect_damage_to_pole_at_%_value"]=1316, + ["shatter_on_killing_blow"]=1317, + ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1318, + ["shield_block_%"]=198, + ["shield_charge_damage_+%_maximum"]=107, + ["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=105, + ["shield_charge_stun_duration_+%_maximum"]=106, + ["shield_crush_damage_+%_final_from_distance"]=1319, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=1320, + ["shield_spell_block_%"]=199, + ["shock_duration_+%"]=119, + ["shock_effect_+%"]=1321, + ["shock_effect_+%_with_critical_strikes"]=1322, + ["shock_maximum_magnitude_+"]=1323, + ["shock_nova_ring_chance_to_shock_+%"]=1324, + ["shock_nova_ring_damage_+%"]=416, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1325, + ["shocked_ground_base_magnitude_override"]=1326, + ["shockwave_chained_damage_+%_final"]=1724, + ["shockwave_slam_explosion_damage_+%_final"]=414, + ["shrapnel_shot_cone_placement_distance_+"]=1327, + ["shrapnel_trap_number_of_secondary_explosions"]=1328, + ["sigil_attached_target_fire_penetration_%"]=1329, + ["sigil_attached_target_lightning_penetration_%"]=1330, + ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1331, + ["sigil_recall_extend_base_skill_effect_duration"]=1332, + ["sigils_can_target_reaper_minions"]=1333, + ["siphon_life_leech_from_damage_permyriad"]=401, ["skeletal_chains_aoe_%_health_dealt_as_chaos_damage"]=3, - ["skeletal_chains_no_minions_damage_+%_final"]=256, - ["skeletal_chains_no_minions_radius_+"]=257, - ["skeletal_chains_no_minions_targets_self"]=255, - ["skill_angle_+%_in_sand_stance"]=1296, - ["skill_area_angle_+%"]=1297, - ["skill_area_of_effect_+%_final_in_sand_stance"]=1298, - ["skill_buff_effect_+%"]=414, - ["skill_buff_grants_attack_and_cast_speed_+%"]=1300, - ["skill_buff_grants_chance_to_poison_%"]=403, - ["skill_buff_grants_critical_strike_chance_+%"]=133, - ["skill_buff_grants_damage_+%_final_per_herald_skill_affecting_you"]=1301, - ["skill_can_only_use_bow"]=1501, - ["skill_can_only_use_non_melee_weapons"]=1504, - ["skill_code_movement_speed_+%_final"]=1302, - ["skill_convert_%_physical_damage_to_random_element"]=1303, - ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1304, + ["skeletal_chains_no_minions_damage_+%_final"]=257, + ["skeletal_chains_no_minions_radius_+"]=258, + ["skeletal_chains_no_minions_targets_self"]=256, + ["skill_angle_+%_in_sand_stance"]=1334, + ["skill_area_angle_+%"]=1335, + ["skill_area_of_effect_+%_final_in_sand_stance"]=1336, + ["skill_buff_effect_+%"]=417, + ["skill_buff_grants_attack_and_cast_speed_+%"]=1338, + ["skill_buff_grants_chance_to_poison_%"]=406, + ["skill_buff_grants_critical_strike_chance_+%"]=134, + ["skill_buff_grants_damage_+%_final_per_herald_skill_affecting_you"]=1339, + ["skill_can_only_use_bow"]=1543, + ["skill_can_only_use_non_melee_weapons"]=1546, + ["skill_code_movement_speed_+%_final"]=1340, + ["skill_convert_%_physical_damage_to_random_element"]=1341, + ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1342, ["skill_disabled_unless_cloned"]=4, - ["skill_display_number_of_remote_mines_allowed"]=229, - ["skill_display_number_of_totems_allowed"]=227, - ["skill_display_number_of_traps_allowed"]=228, - ["skill_display_single_base_projectile"]=59, - ["skill_effect_and_damaging_ailment_duration_+%"]=1305, - ["skill_effect_duration"]=95, - ["skill_effect_duration_+%_per_removable_frenzy_charge"]=196, - ["skill_effect_duration_+%_while_dead"]=1307, - ["skill_effect_duration_per_100_int"]=1306, - ["skill_empower_limitation_specifier_for_stat_description"]=1645, - ["skill_empowers_next_x_melee_attacks"]=1645, - ["skill_grant_elusive_when_used"]=1308, - ["skill_has_trigger_from_unique_item"]=1309, - ["skill_is_ice_storm"]=883, + ["skill_display_number_of_remote_mines_allowed"]=230, + ["skill_display_number_of_totems_allowed"]=228, + ["skill_display_number_of_traps_allowed"]=229, + ["skill_display_single_base_projectile"]=60, + ["skill_effect_and_damaging_ailment_duration_+%"]=1343, + ["skill_effect_duration"]=96, + ["skill_effect_duration_+%_per_removable_frenzy_charge"]=197, + ["skill_effect_duration_+%_while_dead"]=1345, + ["skill_effect_duration_per_100_int"]=1344, + ["skill_empower_limitation_specifier_for_stat_description"]=1689, + ["skill_empowers_next_x_melee_attacks"]=1689, + ["skill_empowers_next_x_spells_cast"]=1217, + ["skill_grant_elusive_when_used"]=1346, + ["skill_grants_bloodrite_for_base_X_ms_on_use"]=1224, + ["skill_has_trigger_from_unique_item"]=1347, + ["skill_is_ice_storm"]=896, ["skill_is_steel_skill_reload"]=5, - ["skill_max_unleash_seals"]=1681, - ["skill_maximum_travel_distance_+%"]=1310, - ["skill_minion_explosion_life_%"]=38, - ["skill_number_of_triggers"]=1311, - ["skill_travel_distance_+%"]=1312, - ["skill_triggered_by_nearby_allies_kill_or_hit_rare_unique_%_chance"]=1313, - ["skill_triggered_by_snipe"]=1314, - ["skill_triggered_when_you_focus_chance_%"]=1315, - ["skill_used_by_mirage_chieftain_damage_+%_final"]=1316, - ["skill_used_by_mirage_warrior_damage_+%_final"]=1317, - ["skill_used_by_sacred_wisp_damage_+%_final"]=1318, - ["skill_withered_duration_ms"]=142, - ["skills_sacrifice_all_but_one_life_and_energy_shield_on_use"]=1319, - ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=69, - ["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=65, - ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=67, - ["slither_wither_stacks"]=1320, - ["smite_lightning_target_range"]=587, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1321, - ["snapping_adder_released_projectile_damage_+%_final"]=429, - ["snipe_max_stacks"]=1322, - ["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=1323, - ["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=1324, - ["soulfeast_chaos_damage_to_self"]=1325, - ["soulfeast_number_of_secondary_projectiles"]=1326, - ["spectral_helix_rotations_%"]=1327, - ["spectral_spiral_weapon_number_of_bounces"]=1328, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1329, - ["spectral_throw_projectile_deceleration_+%"]=462, - ["spectre_duration"]=103, - ["spell_area_damage_+%_in_blood_stance"]=1330, - ["spell_area_of_effect_+%_in_sand_stance"]=1331, - ["spell_cast_time_cannot_be_modified"]=1332, - ["spell_damage_+%"]=212, - ["spell_damage_modifiers_apply_to_skill_dot"]=39, - ["spell_echo_plus_chance_double_damage_%_final"]=1333, - ["spell_has_trigger_from_crafted_item_mod"]=1334, - ["spell_impale_on_crit_%_chance"]=1335, - ["spell_maximum_added_cold_damage"]=352, - ["spell_maximum_added_lightning_damage"]=353, - ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=33, - ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=32, - ["spell_maximum_base_fire_damage_per_removable_endurance_charge"]=29, - ["spell_maximum_base_lightning_damage_per_removable_power_charge"]=28, - ["spell_maximum_base_physical_damage_%_of_ward"]=1336, - ["spell_maximum_base_physical_damage_per_shield_quality"]=1337, - ["spell_maximum_chaos_damage"]=20, - ["spell_maximum_cold_damage"]=18, - ["spell_maximum_fire_damage"]=17, - ["spell_maximum_lightning_damage"]=19, - ["spell_maximum_physical_damage"]=16, - ["spell_minimum_added_cold_damage"]=352, - ["spell_minimum_added_lightning_damage"]=353, - ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=33, - ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=32, - ["spell_minimum_base_fire_damage_per_removable_endurance_charge"]=29, - ["spell_minimum_base_lightning_damage_per_removable_power_charge"]=28, - ["spell_minimum_base_physical_damage_%_of_ward"]=1336, - ["spell_minimum_base_physical_damage_per_shield_quality"]=1337, - ["spell_minimum_chaos_damage"]=20, - ["spell_minimum_cold_damage"]=18, - ["spell_minimum_fire_damage"]=17, - ["spell_minimum_lightning_damage"]=19, - ["spell_minimum_physical_damage"]=16, - ["spell_repeat_count"]=56, - ["spells_chance_to_hinder_on_hit_%"]=1338, - ["spellslinger_mana_reservation"]=1339, - ["spellslinger_trigger_on_wand_attack_%"]=306, - ["spider_aspect_max_web_count"]=1340, - ["spike_slam_additional_spike_%_chance"]=1341, - ["spike_slam_explosion_damage_+%_final"]=1342, - ["spike_slam_fissure_damage_+%_final"]=1343, - ["spike_slam_fissure_length_+%"]=1344, - ["spike_slam_max_spikes"]=1345, - ["spike_slam_num_spikes"]=1346, - ["spike_slam_spike_damage_+%_final"]=1347, - ["spirit_offering_critical_strike_chance_+%"]=1348, - ["spirit_offering_critical_strike_multiplier_+"]=1349, - ["spiritual_cry_double_movement_velocity_+%"]=1350, - ["spiritual_cry_doubles_summoned_per_5_MP"]=1638, - ["splitting_steel_area_+%_final_after_splitting"]=1351, - ["static_strike_beam_damage_+%_final"]=1352, - ["static_strike_beam_damage_+%_final_while_moving"]=1353, - ["static_strike_explosion_damage_+%_final"]=356, - ["static_strike_maximum_gathering_lightning_stacks"]=465, - ["static_strike_number_gathering_lightning_to_gain_on_hit"]=459, - ["static_strike_number_of_beam_targets"]=1354, - ["stationary_shield_throw_projectiles_per_interval"]=1355, - ["stealth_+%"]=1356, - ["steel_ammo_consumed_per_use"]=1357, - ["steel_ammo_consumed_per_use_by_totem"]=1358, - ["steel_skill_%_chance_to_not_consume_ammo"]=1359, - ["steel_steal_area_of_effect_+%"]=1360, - ["steel_steal_reflect_damage_+%"]=1361, - ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=373, - ["stone_golem_grants_defences_+%"]=375, - ["stone_golem_grants_melee_damage_removed_from_stone_golem_before_life_or_es_%"]=374, - ["storm_blade_has_local_attack_speed_+%"]=1362, - ["storm_blade_has_local_lightning_penetration_%"]=1363, - ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"]=1364, - ["storm_blade_quality_chance_to_shock_%"]=1365, - ["storm_blade_quality_local_critical_strike_chance_+%"]=1366, - ["storm_burst_explosion_area_of_effect_+%"]=1367, - ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1368, - ["storm_burst_zap_area_of_effect_+%"]=1369, - ["storm_call_chance_to_strike_on_cast_%"]=1370, - ["storm_rain_pulse_count"]=1371, - ["summon_cold_resistance_+"]=280, - ["summon_fire_resistance_+"]=279, - ["summon_lightning_resistance_+"]=281, - ["summon_living_lightning_on_lightning_hit"]=1372, - ["summon_mirage_archer_on_hit"]=1373, - ["summon_mirage_warrior_on_crit"]=1374, - ["summon_sacred_wisps_on_hit"]=1375, - ["summon_totem_cast_speed_+%"]=387, - ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=1376, - ["summoned_sentinels_have_random_templar_aura"]=1377, - ["summoned_spider_grants_attack_speed_+%"]=1378, - ["summoned_spider_grants_poison_damage_+%"]=1379, - ["sunder_number_of_fake_chains"]=1386, - ["sunder_shockwave_area_of_effect_+%"]=1380, - ["sunder_shockwave_limit_per_cascade"]=1381, - ["sunder_wave_area_of_effect_+%"]=1382, - ["sunder_wave_delay_+%"]=1383, - ["sunder_wave_max_steps"]=1384, - ["sunder_wave_min_steps"]=1385, - ["sunder_wave_radius_+_per_step"]=1386, - ["support_additional_trap_%_chance_for_1_additional_trap"]=1390, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1387, - ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1388, - ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1389, - ["support_ancestral_slam_big_hit_area_+%"]=453, - ["support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final"]=452, - ["support_anticipation_charge_gain_interval_ms"]=1681, - ["support_anticipation_rapid_fire_count"]=1681, - ["support_arcane_surge_cast_speed_+%"]=433, - ["support_arcane_surge_duration_ms"]=434, - ["support_arcane_surge_gain_buff_on_mana_use_threshold"]=432, - ["support_arcane_surge_mana_regeneration_rate_+%"]=433, - ["support_attack_totem_attack_speed_+%_final"]=327, - ["support_aura_duration_buff_duration"]=1391, - ["support_autocast_instant_spells"]=1392, - ["support_autocast_warcries"]=1393, - ["support_better_ailments_ailment_damage_+%_final"]=1394, - ["support_blasphemy_enemies_gain_malignant_madness_if_in_aura_for_x_seconds"]=1395, - ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=385, - ["support_bloodstained_banner_apply_corrupted_blood_duration"]=1396, - ["support_bloodstained_banner_apply_corrupted_blood_every_x_ms"]=1397, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1398, - ["support_call_the_pyre_chance_to_trigger_call_the_pyre_on_melee_hit_vs_ignited_enemies_%"]=1399, - ["support_chance_to_bleed_bleeding_damage_+%_final"]=1400, - ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=1402, - ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=1401, - ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=1404, - ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=1403, - ["support_companionship_minion_maximum_life_+%_final_if_at_most_one_minion"]=1405, - ["support_concentrated_effect_skill_area_of_effect_+%_final"]=88, - ["support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike"]=1406, - ["support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun"]=1407, - ["support_conflagration_ignites_from_stunning_melee_hits_duration_+%"]=1408, - ["support_controlled_destruction_critical_strike_chance_+%_final"]=134, - ["support_corrupting_cry_area_of_effect_+%_final"]=1409, - ["support_corrupting_cry_corrupted_blood_duration_ms"]=1410, - ["support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit"]=1411, - ["support_corrupting_cry_physical_damage_to_deal_per_minute"]=1412, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"]=1413, - ["support_cruelty_duration_ms"]=435, - ["support_damaging_links_duration_ms"]=1414, - ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1415, - ["support_debilitate_hit_damage_max_poison_stacks"]=1415, - ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=1416, - ["support_executioner_buff_duration_ms"]=1417, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1418, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1419, - ["support_faster_ailments_ailment_duration_+%_final"]=1420, - ["support_fissure_trigger_fissure_on_slam_skill_impact_chance_%"]=1421, - ["support_flamewood_totems_trigger_infernal_bolt_when_hit"]=1422, - ["support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%"]=1424, - ["support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%"]=1423, - ["support_focused_ballista_totem_attack_speed_+%_final"]=1425, - ["support_ghost_duration"]=1426, - ["support_gluttony_base_disgorge_buff_duration_ms"]=1186, - ["support_gluttony_disgorge_buff_duration_ms"]=1186, - ["support_gluttony_fire_x_additional_projectiles_in_nova_while_affected_by_disgorge"]=1427, - ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=1428, - ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=1429, - ["support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute"]=1430, - ["support_hallow_inflict_hallowing_flame_on_melee_hit"]=1431, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=395, - ["support_ignite_prolif_ignite_damage_+%_final"]=1432, - ["support_ignite_proliferation_radius"]=216, - ["support_innervate_buff_duration_ms"]=438, - ["support_innervate_chance_to_gain_buff_on_shock_vs_unique_%"]=1433, - ["support_innervate_gain_buff_on_killing_shocked_enemy"]=436, - ["support_innervate_maximum_added_lightning_damage"]=437, - ["support_innervate_minimum_added_lightning_damage"]=437, - ["support_invention_trap_and_mine_damage_+%_final_per_second_placed_up_to_100"]=1434, - ["support_kinetic_instability_chance_to_create_instability_on_critical_strike_%"]=1435, - ["support_kinetic_instability_chance_to_create_instability_on_kill_%"]=1436, - ["support_lethal_dose_poison_damage_+%_final"]=86, - ["support_lifetap_buff_duration"]=1437, - ["support_lifetap_spent_life_threshold"]=1438, - ["support_locus_mine_cannot_detonate_mines_within_X_units"]=1439, - ["support_locus_mine_mines_always_target_your_location"]=1440, - ["support_locus_mine_throw_mines_in_an_arc"]=1441, - ["support_maim_chance_physical_damage_+%_final"]=1442, - ["support_maimed_enemies_physical_damage_taken_+%"]=1443, - ["support_minefield_mine_throwing_speed_+%_final"]=1444, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1446, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1447, - ["support_minion_maximum_life_+%_final"]=154, - ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=1448, - ["support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage"]=1449, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=1450, - ["support_mirage_archer_attack_speed_+%_final"]=1451, - ["support_mirage_archer_duration"]=1452, - ["support_momentum_attack_speed_+%_per_stack"]=1453, - ["support_momentum_base_buff_duration_ms"]=1454, - ["support_momentum_buff_duration_ms"]=1454, - ["support_momentum_max_stacks"]=1454, - ["support_momentum_movement_speed_+%_per_stack_removed"]=1455, - ["support_momentum_stack_while_channelling_base_ms"]=1456, - ["support_momentum_stack_while_channelling_ms"]=1456, - ["support_multicast_cast_speed_+%_final"]=72, - ["support_multiple_attacks_melee_attack_speed_+%_final"]=278, - ["support_multiple_projectiles_critical_strike_chance_+%_final"]=137, - ["support_overexertion_damage_+%_final_if_exerted"]=14, - ["support_overexertion_damage_+%_final_per_warcry_exerting_action"]=13, - ["support_overheat_ailment_damage_+%_final_per_3_fortification_consumed"]=1457, - ["support_overpowered_duration_ms"]=1458, - ["support_parallel_projectile_number_of_points_per_side"]=1459, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1460, - ["support_projectile_attack_speed_+%_final"]=325, - ["support_pulverise_area_of_effect_+%_final"]=1461, - ["support_pure_shock_shock_as_though_damage_+%_final"]=1462, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1463, - ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=1464, - ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=1464, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=1465, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=1465, - ["support_recent_minions_additional_critical_strike_chance_from_wakened_fury"]=1467, - ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"]=1467, - ["support_recent_minions_effect_duration_is_%_summon_duration"]=1467, - ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"]=1466, - ["support_recent_minions_max_effect_duration_ms"]=1467, - ["support_recent_minions_virtual_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=1467, - ["support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=1467, - ["support_reduce_enemy_block_and_spell_block_%"]=1468, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1687, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1469, - ["support_return_returning_projectiles_damage_+%_final"]=1470, - ["support_rupture_bleeding_damage_taken_+%_final"]=1472, - ["support_rupture_bleeding_time_passed_+%_final"]=1473, - ["support_ruthless_big_hit_damage_+%_final"]=440, - ["support_ruthless_big_hit_max_count"]=439, - ["support_ruthless_big_hit_stun_base_duration_override_ms"]=442, - ["support_ruthless_blow_ailment_damage_from_melee_hits_+%_final"]=441, - ["support_sacred_wisps_wisp_%_chance_to_attack"]=1474, - ["support_sacred_wisps_wisp_additional_%_chance_to_attack_when_rare_or_unique_enemy_in_presence"]=1475, - ["support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage"]=1476, - ["support_sacrifice_sacrifice_%_of_current_life"]=1476, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1477, - ["support_scion_onslaught_on_killing_blow_%_chance"]=1478, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=1478, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=1477, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1480, - ["support_slashing_buff_duration_ms"]=1479, - ["support_slashing_damage_+%_final_from_distance"]=1481, - ["support_spell_boost_area_damage_+%_final_per_charge"]=1482, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1482, - ["support_spell_cascade_area_delay_+%"]=1483, - ["support_spell_cascade_area_of_effect_+%_final"]=1484, - ["support_spell_cascade_number_of_cascades_per_side"]=1485, - ["support_spell_cascade_sideways"]=1485, - ["support_spell_echo_final_repeat_damage_+%_final"]=1486, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1682, - ["support_spell_totem_cast_speed_+%_final"]=326, - ["support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling"]=1487, - ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1488, - ["support_trauma_base_duration_ms"]=1533, - ["support_trauma_melee_damage_+%_final_per_trauma"]=1489, - ["support_trauma_stun_duration_+%_per_trauma"]=1490, - ["support_trigger_enervating_grasp_on_supported_brand_recall_chance_%"]=1491, - ["support_trigger_great_avalanche_on_offering_chance_%"]=1492, - ["support_trigger_rings_of_light_on_melee_hit_%"]=1493, - ["support_trigger_seize_the_flesh_on_warcry_chance_%"]=1494, - ["support_trigger_tornados_on_attack_hit_after_moving_X_metres"]=1495, - ["support_unbound_ailments_ailment_damage_+%_final"]=1496, - ["support_vaal_temptation_physical_damage_taken_per_minute_instead_of_soul_gain_prevention"]=1497, - ["support_voidstorm_trigger_voidstorm_on_rain_skill_impact"]=1498, - ["supported_skill_can_only_use_axe_and_sword"]=1499, - ["supported_skill_can_only_use_axe_mace_and_staff"]=1500, - ["supported_skill_can_only_use_dagger_and_claw"]=1502, - ["supported_skill_can_only_use_mace_and_staff"]=1503, - ["supported_skill_can_only_use_wand"]=1505, - ["swordstorm_num_hits"]=1506, - ["tectonic_slam_area_of_effect_+%_final_per_endurance_charge_consumed"]=1507, - ["tectonic_slam_side_crack_additional_chance_%"]=1510, - ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1511, - ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge_consumed"]=1508, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1509, - ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1512, - ["tethered_movement_speed_+%_final_per_rope"]=1513, - ["tethered_movement_speed_+%_final_per_rope_vs_rare"]=1514, - ["tethered_movement_speed_+%_final_per_rope_vs_unique"]=1515, - ["tethering_arrow_display_rope_limit"]=1516, - ["throw_traps_in_circle_radius"]=47, - ["tornado_damage_absorbed_%"]=454, - ["tornado_damage_interval_ms"]=1517, - ["tornado_hinder"]=1518, - ["tornado_maximum_number_of_hits"]=96, - ["tornado_movement_speed_+%"]=1519, - ["total_number_of_arrows_to_fire"]=59, - ["total_number_of_projectiles_to_fire"]=59, - ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=460, - ["totem_duration"]=230, - ["totem_fire_in_formation"]=230, - ["totem_life_+%_final"]=1521, - ["totem_range"]=226, - ["totems_cannot_evade"]=231, - ["totems_explode_on_death_for_%_life_as_physical"]=1522, - ["totems_regenerate_%_life_per_minute"]=1523, - ["toxic_rain_spores_apply_withered"]=1524, - ["trap_%_chance_to_trigger_twice"]=461, - ["trap_and_mine_area_of_effect_+%_per_second_placed_up_to_100"]=1525, - ["trap_can_be_triggered_by_warcries"]=1526, - ["trap_critical_strike_multiplier_+_per_power_charge"]=1527, - ["trap_duration"]=232, - ["trap_spread_+%"]=1528, - ["trap_throwing_speed_+%"]=233, - ["trap_throwing_speed_+%_per_frenzy_charge"]=1530, - ["trap_throwing_speed_+%_while_wielding_2hand"]=1529, - ["trap_trigger_radius_+%"]=50, - ["trap_trigger_radius_+%_per_power_charge"]=1531, - ["trauma_duration_ms"]=1533, - ["trauma_strike_damage_+%_final_per_trauma"]=1534, - ["trauma_strike_damage_+%_final_per_trauma_capped"]=1535, - ["trauma_strike_self_damage_per_trauma"]=1533, - ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1536, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1537, - ["trigger_after_spending_200_mana_%_chance"]=1538, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1539, - ["trigger_on_attack_hit_against_rare_or_unique"]=1540, - ["trigger_on_block_%_chance"]=1542, - ["trigger_on_block_hit_from_unique"]=1541, - ["trigger_on_bow_attack_%"]=1543, - ["trigger_on_corpse_consume_%_chance"]=1544, - ["trigger_on_crit_by_unique_enemy"]=1545, - ["trigger_on_crit_vs_marked_unique"]=1546, - ["trigger_on_critical_strike_against_rare_or_unique_if_no_marked_enemy"]=1547, - ["trigger_on_es_recharge_in_presence_of_unique"]=1548, - ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1549, - ["trigger_on_hit_vs_frozen_enemy_%"]=1550, - ["trigger_on_ignited_enemy_death"]=1551, - ["trigger_on_reaching_low_life_in_presence_of_unique"]=1552, - ["trigger_on_reaching_maximum_rage_in_presence_of_unique"]=1553, - ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=300, - ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1554, - ["trigger_on_skill_use_from_chest_%"]=299, - ["trigger_on_slam_or_strike_%_chance"]=1555, - ["trigger_on_suppress_hit_from_unique"]=1556, - ["trigger_on_taking_savage_hit_from_unique"]=1557, - ["trigger_on_totem_death_in_presence_of_unique"]=1558, - ["trigger_on_travel_skill_use_in_presence_of_unique"]=1559, - ["trigger_on_trigger_link_target_hit"]=1560, - ["trigger_on_ward_break_%_chance"]=1561, - ["trigger_prismatic_burst_on_hit_%_chance"]=1562, - ["trigger_rings_of_light_on_melee_hit"]=1563, - ["triggered_by_brand_support"]=1564, - ["triggered_by_divine_cry"]=1565, - ["triggered_by_infernal_cry"]=1566, - ["triggered_by_item_buff"]=1567, - ["triggered_by_kinetic_instability_support"]=1568, - ["triggered_by_kinetic_rain"]=1569, - ["triggered_by_spiritual_cry"]=1570, - ["triggered_by_support_movement"]=1571, - ["triggered_by_voidstorm_support"]=1668, - ["triggered_rings_of_light_damage_+%_final_if_on_rare_unique_enemies"]=1572, - ["triggered_vicious_hex_explosion"]=1573, - ["unearth_corpse_level"]=331, - ["unleash_power_movement_speed_+%_final"]=1574, - ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1575, - ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1576, - ["upheaval_number_of_spikes"]=1577, - ["vaal_animate_weapon_minimum_level_requirement"]=292, - ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1578, - ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1579, - ["vaal_arctic_armour_number_of_hits_absorbed"]=1580, - ["vaal_blade_vortex_has_10_spinning_blades"]=1581, - ["vaal_charged_attack_damage_taken_+%_final"]=1582, - ["vaal_charged_attack_radius_+_per_stage"]=1583, - ["vaal_cleave_executioner_area_of_effect_+%"]=1584, - ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1584, - ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=668, - ["vaal_earthquake_maximum_aftershocks"]=1585, - ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=463, - ["vaal_firestorm_number_of_meteors"]=188, - ["vaal_flameblast_radius_+_per_stage"]=1586, - ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1587, - ["vaal_lightning_strike_beam_damage_+%_final"]=334, - ["vaal_reap_additional_maximum_blood_charges"]=1588, - ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1589, - ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=757, - ["vaal_righteous_fire_ignite_damage_+%_final"]=210, + ["skill_max_unleash_seals"]=1725, + ["skill_maximum_travel_distance_+%"]=1348, + ["skill_minion_explosion_life_%"]=39, + ["skill_number_of_triggers"]=1349, + ["skill_travel_distance_+%"]=1350, + ["skill_triggered_by_nearby_allies_kill_or_hit_rare_unique_%_chance"]=1351, + ["skill_triggered_by_snipe"]=1352, + ["skill_triggered_when_you_focus_chance_%"]=1353, + ["skill_used_by_mirage_chieftain_damage_+%_final"]=1354, + ["skill_used_by_mirage_warrior_damage_+%_final"]=1355, + ["skill_used_by_sacred_wisp_damage_+%_final"]=1356, + ["skill_withered_duration_ms"]=143, + ["skills_sacrifice_all_but_one_life_and_energy_shield_on_use"]=1357, + ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=70, + ["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=66, + ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=68, + ["slither_wither_stacks"]=1358, + ["smite_lightning_target_range"]=594, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1359, + ["snapping_adder_released_projectile_damage_+%_final"]=432, + ["snipe_max_stacks"]=1360, + ["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=1361, + ["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=1362, + ["solaris_aspect_debuff_exposure_effect_+%_to_apply"]=1363, + ["solaris_aspect_debuff_interval_ms"]=1364, + ["soulfeast_chaos_damage_to_self"]=1365, + ["soulfeast_number_of_secondary_projectiles"]=1366, + ["spectral_helix_rotations_%"]=1367, + ["spectral_spiral_weapon_number_of_bounces"]=1368, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1369, + ["spectral_throw_projectile_deceleration_+%"]=465, + ["spectre_duration"]=104, + ["spell_area_damage_+%_in_blood_stance"]=1370, + ["spell_area_of_effect_+%_in_sand_stance"]=1371, + ["spell_cast_time_cannot_be_modified"]=1372, + ["spell_damage_+%"]=213, + ["spell_damage_modifiers_apply_to_skill_dot"]=40, + ["spell_echo_plus_chance_double_damage_%_final"]=1373, + ["spell_has_trigger_from_crafted_item_mod"]=1374, + ["spell_impale_on_crit_%_chance"]=1375, + ["spell_maximum_added_cold_damage"]=354, + ["spell_maximum_added_lightning_damage"]=355, + ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=34, + ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=33, + ["spell_maximum_base_fire_damage_per_removable_endurance_charge"]=30, + ["spell_maximum_base_lightning_damage_per_removable_power_charge"]=29, + ["spell_maximum_base_physical_damage_%_of_ward"]=1376, + ["spell_maximum_base_physical_damage_per_shield_quality"]=1377, + ["spell_maximum_chaos_damage"]=21, + ["spell_maximum_cold_damage"]=19, + ["spell_maximum_fire_damage"]=18, + ["spell_maximum_lightning_damage"]=20, + ["spell_maximum_physical_damage"]=17, + ["spell_minimum_added_cold_damage"]=354, + ["spell_minimum_added_lightning_damage"]=355, + ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=34, + ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=33, + ["spell_minimum_base_fire_damage_per_removable_endurance_charge"]=30, + ["spell_minimum_base_lightning_damage_per_removable_power_charge"]=29, + ["spell_minimum_base_physical_damage_%_of_ward"]=1376, + ["spell_minimum_base_physical_damage_per_shield_quality"]=1377, + ["spell_minimum_chaos_damage"]=21, + ["spell_minimum_cold_damage"]=19, + ["spell_minimum_fire_damage"]=18, + ["spell_minimum_lightning_damage"]=20, + ["spell_minimum_physical_damage"]=17, + ["spell_repeat_count"]=57, + ["spells_chance_to_hinder_on_hit_%"]=1378, + ["spellslinger_mana_reservation"]=1379, + ["spellslinger_trigger_on_wand_attack_%"]=307, + ["spider_aspect_max_web_count"]=1380, + ["spike_slam_additional_spike_%_chance"]=1381, + ["spike_slam_explosion_damage_+%_final"]=1382, + ["spike_slam_fissure_damage_+%_final"]=1383, + ["spike_slam_fissure_length_+%"]=1384, + ["spike_slam_max_spikes"]=1385, + ["spike_slam_num_spikes"]=1386, + ["spike_slam_spike_damage_+%_final"]=1387, + ["spirit_offering_critical_strike_chance_+%"]=1388, + ["spirit_offering_critical_strike_multiplier_+"]=1389, + ["spiritual_cry_double_movement_velocity_+%"]=1390, + ["spiritual_cry_doubles_summoned_per_5_MP"]=1682, + ["splitting_steel_area_+%_final_after_splitting"]=1391, + ["static_strike_beam_damage_+%_final"]=1392, + ["static_strike_beam_damage_+%_final_while_moving"]=1393, + ["static_strike_explosion_damage_+%_final"]=358, + ["static_strike_maximum_gathering_lightning_stacks"]=468, + ["static_strike_number_gathering_lightning_to_gain_on_hit"]=462, + ["static_strike_number_of_beam_targets"]=1394, + ["stationary_shield_throw_projectiles_per_interval"]=1395, + ["stealth_+%"]=1396, + ["steel_ammo_consumed_per_use"]=1397, + ["steel_ammo_consumed_per_use_by_totem"]=1398, + ["steel_skill_%_chance_to_not_consume_ammo"]=1399, + ["steel_steal_area_of_effect_+%"]=1400, + ["steel_steal_reflect_damage_+%"]=1401, + ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=375, + ["stone_golem_grants_defences_+%"]=377, + ["stone_golem_grants_melee_damage_removed_from_stone_golem_before_life_or_es_%"]=376, + ["storm_blade_has_local_attack_speed_+%"]=1402, + ["storm_blade_has_local_lightning_penetration_%"]=1403, + ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"]=1404, + ["storm_blade_quality_chance_to_shock_%"]=1405, + ["storm_blade_quality_local_critical_strike_chance_+%"]=1406, + ["storm_burst_explosion_area_of_effect_+%"]=1407, + ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1408, + ["storm_burst_zap_area_of_effect_+%"]=1409, + ["storm_call_chance_to_strike_on_cast_%"]=1410, + ["storm_rain_pulse_count"]=1411, + ["summon_cold_resistance_+"]=281, + ["summon_fire_resistance_+"]=280, + ["summon_lightning_resistance_+"]=282, + ["summon_living_lightning_on_lightning_hit"]=1412, + ["summon_mirage_archer_on_hit"]=1413, + ["summon_mirage_warrior_on_crit"]=1414, + ["summon_sacred_wisps_on_hit"]=1415, + ["summon_totem_cast_speed_+%"]=389, + ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=1416, + ["summoned_sentinels_have_random_templar_aura"]=1417, + ["summoned_spider_grants_attack_speed_+%"]=1418, + ["summoned_spider_grants_poison_damage_+%"]=1419, + ["sunder_number_of_fake_chains"]=1426, + ["sunder_shockwave_area_of_effect_+%"]=1420, + ["sunder_shockwave_limit_per_cascade"]=1421, + ["sunder_wave_area_of_effect_+%"]=1422, + ["sunder_wave_delay_+%"]=1423, + ["sunder_wave_max_steps"]=1424, + ["sunder_wave_min_steps"]=1425, + ["sunder_wave_radius_+_per_step"]=1426, + ["support_abyssal_well_chance_to_create_well_on_corpse_creation_%"]=1427, + ["support_additional_trap_%_chance_for_1_additional_trap"]=1431, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1428, + ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1429, + ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1430, + ["support_ancestral_slam_big_hit_area_+%"]=456, + ["support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final"]=455, + ["support_anticipation_charge_gain_interval_ms"]=1725, + ["support_anticipation_rapid_fire_count"]=1725, + ["support_arcane_surge_cast_speed_+%"]=436, + ["support_arcane_surge_duration_ms"]=437, + ["support_arcane_surge_gain_buff_on_mana_use_threshold"]=435, + ["support_arcane_surge_mana_regeneration_rate_+%"]=436, + ["support_attack_totem_attack_speed_+%_final"]=329, + ["support_aura_duration_buff_duration"]=1432, + ["support_autocast_instant_spells"]=1433, + ["support_autocast_warcries"]=1434, + ["support_better_ailments_ailment_damage_+%_final"]=1435, + ["support_blasphemy_enemies_gain_malignant_madness_if_in_aura_for_x_seconds"]=1436, + ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=387, + ["support_bloodstained_banner_apply_corrupted_blood_duration"]=1437, + ["support_bloodstained_banner_apply_corrupted_blood_every_x_ms"]=1438, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1439, + ["support_call_the_pyre_chance_to_trigger_call_the_pyre_on_melee_hit_vs_ignited_enemies_%"]=1440, + ["support_chance_to_bleed_bleeding_damage_+%_final"]=1441, + ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=1443, + ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=1442, + ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=1445, + ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=1444, + ["support_companionship_minion_damage_taken_+%_final_if_at_most_one_minion"]=1446, + ["support_concentrated_effect_skill_area_of_effect_+%_final"]=89, + ["support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike"]=1447, + ["support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun"]=1448, + ["support_conflagration_ignites_from_stunning_melee_hits_duration_+%"]=1449, + ["support_controlled_destruction_critical_strike_chance_+%_final"]=135, + ["support_corrupting_cry_area_of_effect_+%_final"]=1450, + ["support_corrupting_cry_corrupted_blood_duration_ms"]=1451, + ["support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit"]=1452, + ["support_corrupting_cry_physical_damage_to_deal_per_minute"]=1453, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"]=1454, + ["support_crab_totem_cast_speed_+%_final"]=327, + ["support_cruelty_duration_ms"]=438, + ["support_crystalfall_chance_to_trigger_crystalfall_on_hit_%"]=1455, + ["support_damaging_links_duration_ms"]=1456, + ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1457, + ["support_debilitate_hit_damage_max_poison_stacks"]=1457, + ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=1458, + ["support_executioner_buff_duration_ms"]=1459, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1460, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1461, + ["support_faster_ailments_ailment_duration_+%_final"]=1462, + ["support_fissure_trigger_fissure_on_slam_skill_impact_chance_%"]=1463, + ["support_flamewood_totems_trigger_infernal_bolt_when_hit"]=1464, + ["support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%"]=1466, + ["support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%"]=1465, + ["support_focused_ballista_totem_attack_speed_+%_final"]=1467, + ["support_ghost_duration"]=1468, + ["support_gluttony_base_disgorge_buff_duration_ms"]=1211, + ["support_gluttony_disgorge_buff_duration_ms"]=1211, + ["support_gluttony_fire_x_additional_projectiles_in_nova_while_affected_by_disgorge"]=1469, + ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=1470, + ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=1471, + ["support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute"]=1472, + ["support_hallow_inflict_hallowing_flame_on_melee_hit"]=1473, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=397, + ["support_ignite_prolif_ignite_damage_+%_final"]=1474, + ["support_ignite_proliferation_radius"]=217, + ["support_innervate_buff_duration_ms"]=441, + ["support_innervate_chance_to_gain_buff_on_shock_vs_unique_%"]=1475, + ["support_innervate_gain_buff_on_killing_shocked_enemy"]=439, + ["support_innervate_maximum_added_lightning_damage"]=440, + ["support_innervate_minimum_added_lightning_damage"]=440, + ["support_invention_trap_and_mine_damage_+%_final_per_second_placed_up_to_100"]=1476, + ["support_kinetic_instability_chance_to_create_instability_on_critical_strike_%"]=1477, + ["support_kinetic_instability_chance_to_create_instability_on_kill_%"]=1478, + ["support_lethal_dose_poison_damage_+%_final"]=87, + ["support_lifetap_buff_duration"]=1479, + ["support_lifetap_spent_life_threshold"]=1480, + ["support_locus_mine_cannot_detonate_mines_within_X_units"]=1481, + ["support_locus_mine_mines_always_target_your_location"]=1482, + ["support_locus_mine_throw_mines_in_an_arc"]=1483, + ["support_maim_chance_physical_damage_+%_final"]=1484, + ["support_maimed_enemies_physical_damage_taken_+%"]=1485, + ["support_minefield_mine_throwing_speed_+%_final"]=1486, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1488, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1489, + ["support_minion_maximum_life_+%_final"]=155, + ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=1490, + ["support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage"]=1491, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=1492, + ["support_mirage_archer_attack_speed_+%_final"]=1493, + ["support_mirage_archer_duration"]=1494, + ["support_momentum_attack_speed_+%_per_stack"]=1495, + ["support_momentum_base_buff_duration_ms"]=1496, + ["support_momentum_buff_duration_ms"]=1496, + ["support_momentum_max_stacks"]=1496, + ["support_momentum_movement_speed_+%_per_stack_removed"]=1497, + ["support_momentum_stack_while_channelling_base_ms"]=1498, + ["support_momentum_stack_while_channelling_ms"]=1498, + ["support_multicast_cast_speed_+%_final"]=73, + ["support_multiple_attacks_melee_attack_speed_+%_final"]=279, + ["support_multiple_projectiles_critical_strike_chance_+%_final"]=138, + ["support_overexertion_damage_+%_final_if_exerted"]=15, + ["support_overexertion_damage_+%_final_per_warcry_exerting_action"]=14, + ["support_overheat_ailment_damage_+%_final_per_3_fortification_consumed"]=1499, + ["support_overpowered_duration_ms"]=1500, + ["support_parallel_projectile_number_of_points_per_side"]=1501, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1502, + ["support_projectile_attack_speed_+%_final"]=326, + ["support_pulverise_area_of_effect_+%_final"]=1503, + ["support_pure_shock_shock_as_though_damage_+%_final"]=1504, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1505, + ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=1506, + ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=1506, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=1507, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=1507, + ["support_recent_minions_additional_critical_strike_chance_from_wakened_fury"]=1509, + ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"]=1509, + ["support_recent_minions_effect_duration_is_%_summon_duration"]=1509, + ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"]=1508, + ["support_recent_minions_max_effect_duration_ms"]=1509, + ["support_recent_minions_virtual_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=1509, + ["support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=1509, + ["support_reduce_enemy_block_and_spell_block_%"]=1510, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1731, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1511, + ["support_return_returning_projectiles_damage_+%_final"]=1512, + ["support_rupture_bleeding_damage_taken_+%_final"]=1514, + ["support_rupture_bleeding_time_passed_+%_final"]=1515, + ["support_ruthless_big_hit_damage_+%_final"]=443, + ["support_ruthless_big_hit_max_count"]=442, + ["support_ruthless_big_hit_stun_base_duration_override_ms"]=445, + ["support_ruthless_blow_ailment_damage_from_melee_hits_+%_final"]=444, + ["support_sacred_wisps_wisp_%_chance_to_attack"]=1516, + ["support_sacred_wisps_wisp_additional_%_chance_to_attack_when_rare_or_unique_enemy_in_presence"]=1517, + ["support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage"]=1518, + ["support_sacrifice_sacrifice_%_of_current_life"]=1518, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1519, + ["support_scion_onslaught_on_killing_blow_%_chance"]=1520, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=1520, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=1519, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1522, + ["support_slashing_buff_duration_ms"]=1521, + ["support_slashing_damage_+%_final_from_distance"]=1523, + ["support_spell_boost_area_damage_+%_final_per_charge"]=1524, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1524, + ["support_spell_cascade_area_delay_+%"]=1525, + ["support_spell_cascade_area_of_effect_+%_final"]=1526, + ["support_spell_cascade_number_of_cascades_per_side"]=1527, + ["support_spell_cascade_sideways"]=1527, + ["support_spell_echo_final_repeat_damage_+%_final"]=1528, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1726, + ["support_spell_totem_cast_speed_+%_final"]=328, + ["support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling"]=1529, + ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1530, + ["support_trauma_base_duration_ms"]=1576, + ["support_trauma_melee_damage_+%_final_per_trauma"]=1531, + ["support_trauma_stun_duration_+%_per_trauma"]=1532, + ["support_trigger_enervating_grasp_on_supported_brand_recall_chance_%"]=1533, + ["support_trigger_great_avalanche_on_offering_chance_%"]=1534, + ["support_trigger_rings_of_light_on_melee_hit_%"]=1535, + ["support_trigger_seize_the_flesh_on_warcry_chance_%"]=1536, + ["support_trigger_tornados_on_attack_hit_after_moving_X_metres"]=1537, + ["support_unbound_ailments_ailment_damage_+%_final"]=1538, + ["support_vaal_temptation_physical_damage_taken_per_minute_instead_of_soul_gain_prevention"]=1539, + ["support_voidstorm_trigger_voidstorm_on_rain_skill_impact"]=1540, + ["supported_skill_can_only_use_axe_and_sword"]=1541, + ["supported_skill_can_only_use_axe_mace_and_staff"]=1542, + ["supported_skill_can_only_use_dagger_and_claw"]=1544, + ["supported_skill_can_only_use_mace_and_staff"]=1545, + ["supported_skill_can_only_use_wand"]=1547, + ["swordstorm_num_hits"]=1548, + ["tectonic_slam_area_of_effect_+%_final_per_endurance_charge_consumed"]=1549, + ["tectonic_slam_side_crack_additional_chance_%"]=1552, + ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1553, + ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge_consumed"]=1550, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1551, + ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1554, + ["tethered_movement_speed_+%_final_per_rope"]=1555, + ["tethered_movement_speed_+%_final_per_rope_vs_rare"]=1556, + ["tethered_movement_speed_+%_final_per_rope_vs_unique"]=1557, + ["tethering_arrow_display_rope_limit"]=1558, + ["this_skill_cannot_create_barnacles"]=1559, + ["throw_traps_in_circle_radius"]=48, + ["tornado_damage_absorbed_%"]=457, + ["tornado_damage_interval_ms"]=1560, + ["tornado_hinder"]=1561, + ["tornado_maximum_number_of_hits"]=97, + ["tornado_movement_speed_+%"]=1562, + ["total_number_of_arrows_to_fire"]=60, + ["total_number_of_projectiles_to_fire"]=60, + ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=463, + ["totem_duration"]=231, + ["totem_fire_in_formation"]=231, + ["totem_life_+%_final"]=1564, + ["totem_range"]=227, + ["totems_cannot_evade"]=232, + ["totems_explode_on_death_for_%_life_as_physical"]=1565, + ["totems_regenerate_%_life_per_minute"]=1566, + ["toxic_rain_spores_apply_withered"]=1567, + ["trap_%_chance_to_trigger_twice"]=464, + ["trap_and_mine_area_of_effect_+%_per_second_placed_up_to_100"]=1568, + ["trap_can_be_triggered_by_warcries"]=1569, + ["trap_critical_strike_multiplier_+_per_power_charge"]=1570, + ["trap_duration"]=233, + ["trap_spread_+%"]=1571, + ["trap_throwing_speed_+%"]=234, + ["trap_throwing_speed_+%_per_frenzy_charge"]=1573, + ["trap_throwing_speed_+%_while_wielding_2hand"]=1572, + ["trap_trigger_radius_+%"]=51, + ["trap_trigger_radius_+%_per_power_charge"]=1574, + ["trauma_duration_ms"]=1576, + ["trauma_strike_damage_+%_final_per_trauma"]=1577, + ["trauma_strike_damage_+%_final_per_trauma_capped"]=1578, + ["trauma_strike_self_damage_per_trauma"]=1576, + ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1579, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1580, + ["trigger_after_spending_200_mana_%_chance"]=1581, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1582, + ["trigger_on_attack_hit_against_rare_or_unique"]=1583, + ["trigger_on_block_%_chance"]=1585, + ["trigger_on_block_hit_from_unique"]=1584, + ["trigger_on_bow_attack_%"]=1586, + ["trigger_on_corpse_consume_%_chance"]=1587, + ["trigger_on_crit_by_unique_enemy"]=1588, + ["trigger_on_crit_vs_marked_unique"]=1589, + ["trigger_on_critical_strike_against_rare_or_unique_if_no_marked_enemy"]=1590, + ["trigger_on_es_recharge_in_presence_of_unique"]=1591, + ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1592, + ["trigger_on_hit_vs_frozen_enemy_%"]=1593, + ["trigger_on_ignited_enemy_death"]=1594, + ["trigger_on_reaching_low_life_in_presence_of_unique"]=1595, + ["trigger_on_reaching_maximum_rage_in_presence_of_unique"]=1596, + ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=301, + ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1597, + ["trigger_on_skill_use_from_chest_%"]=300, + ["trigger_on_slam_or_strike_%_chance"]=1598, + ["trigger_on_suppress_hit_from_unique"]=1599, + ["trigger_on_taking_savage_hit_from_unique"]=1600, + ["trigger_on_totem_death_in_presence_of_unique"]=1601, + ["trigger_on_travel_skill_use_in_presence_of_unique"]=1602, + ["trigger_on_trigger_link_target_hit"]=1603, + ["trigger_on_ward_break_%_chance"]=1604, + ["trigger_prismatic_burst_on_hit_%_chance"]=1605, + ["trigger_rings_of_light_on_melee_hit"]=1606, + ["triggered_by_brand_support"]=1607, + ["triggered_by_divine_cry"]=1608, + ["triggered_by_infernal_cry"]=1609, + ["triggered_by_item_buff"]=1610, + ["triggered_by_kinetic_instability_support"]=1611, + ["triggered_by_kinetic_rain"]=1612, + ["triggered_by_spiritual_cry"]=1613, + ["triggered_by_support_movement"]=1614, + ["triggered_by_voidstorm_support"]=1712, + ["triggered_ghost_cannons_number_of_cannons_to_fire"]=1615, + ["triggered_rings_of_light_damage_+%_final_if_on_rare_unique_enemies"]=1616, + ["triggered_vicious_hex_explosion"]=1617, + ["unearth_corpse_level"]=333, + ["unleash_power_movement_speed_+%_final"]=1618, + ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1619, + ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1620, + ["upheaval_number_of_spikes"]=1621, + ["vaal_animate_weapon_minimum_level_requirement"]=293, + ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1622, + ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1623, + ["vaal_arctic_armour_number_of_hits_absorbed"]=1624, + ["vaal_blade_vortex_has_10_spinning_blades"]=1625, + ["vaal_charged_attack_damage_taken_+%_final"]=1626, + ["vaal_charged_attack_radius_+_per_stage"]=1627, + ["vaal_cleave_executioner_area_of_effect_+%"]=1628, + ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1628, + ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=676, + ["vaal_earthquake_maximum_aftershocks"]=1629, + ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=466, + ["vaal_firestorm_number_of_meteors"]=189, + ["vaal_flameblast_radius_+_per_stage"]=1630, + ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1631, + ["vaal_lightning_strike_beam_damage_+%_final"]=336, + ["vaal_reap_additional_maximum_blood_charges"]=1632, + ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1633, + ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=767, + ["vaal_righteous_fire_ignite_damage_+%_final"]=211, ["vaal_righteous_fire_life_and_es_%_as_damage_per_second"]=6, ["vaal_righteous_fire_life_and_es_%_to_lose_on_use"]=6, - ["vaal_righteous_fire_spell_damage_+%_final"]=211, - ["vaal_skill_exertable"]=1590, - ["vaal_storm_call_delay_ms"]=1591, - ["vaal_upgrade_minion_damage_+%_final"]=1592, - ["vaal_upgrade_minion_damage_taken_+%_final"]=1593, - ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1099, - ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1099, - ["vaal_volcanic_fissure_crack_repeat_count"]=1594, - ["vampiric_icon_bleeding_damage_+%_final"]=1595, - ["vanishing_ambush_critical_strike_multiplier_+"]=1656, - ["virtual_aegis_unique_shield_max_value"]=505, - ["virtual_always_pierce"]=107, - ["virtual_berserk_hundred_times_rage_loss_per_second"]=449, - ["virtual_bladefall_number_of_volleys"]=1596, - ["virtual_blood_spears_total_number_of_spears"]=1597, - ["virtual_cast_when_damage_taken_threshold"]=315, - ["virtual_chance_to_blind_on_hit_%"]=247, - ["virtual_chill_minimum_slow_%"]=1598, - ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=84, - ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1599, - ["virtual_firestorm_drop_burning_ground_duration_ms"]=378, - ["virtual_firestorm_drop_chilled_ground_duration_ms"]=379, - ["virtual_herald_of_thunder_bolt_base_frequency"]=1600, - ["virtual_hex_zone_skill_duration_ms"]=1601, - ["virtual_intensity_loss_ms_while_moving_interval"]=224, - ["virtual_intensity_lost_on_teleport"]=224, - ["virtual_kinectic_blast_number_of_clusters"]=358, - ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=150, - ["virtual_maximum_intensity"]=223, - ["virtual_melee_splash"]=275, - ["virtual_mine_detonation_time_ms"]=1603, - ["virtual_minion_elemental_resistance_%"]=282, - ["virtual_number_of_additional_curses_allowed"]=1604, - ["virtual_number_of_chains"]=258, - ["virtual_number_of_chains_for_beams"]=259, - ["virtual_number_of_chains_for_projectiles"]=1605, - ["virtual_number_of_forks_for_projectiles_final"]=261, - ["virtual_number_of_spirit_strikes"]=1104, - ["virtual_onslaught_on_hit_%_chance"]=1606, - ["virtual_plague_bearer_maximum_stored_poison_damage"]=423, - ["virtual_projectile_number_to_split"]=260, - ["virtual_projectiles_cannot_pierce"]=107, - ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1607, - ["virtual_skill_gains_intensity"]=222, - ["virtual_spider_aspect_web_interval_ms"]=1608, - ["virtual_static_strike_base_zap_frequency_ms"]=1609, - ["virtual_steelskin_damage_%_taken_to_buff"]=1610, - ["virtual_steelskin_damage_limit"]=1610, - ["virtual_support_anticipation_charge_gain_interval_ms"]=1681, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1478, - ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1611, - ["virtual_trap_and_mine_throwing_time_+%_final"]=1612, - ["virtual_vaal_lightning_arrow_number_of_redirects"]=1613, - ["virulent_arrow_additional_spores_at_max_stages"]=1614, - ["virulent_arrow_damage_+%_final_per_stage"]=1615, - ["virulent_arrow_maximum_number_of_stacks"]=1616, - ["virulent_arrow_number_of_pod_projectiles"]=1617, - ["virulent_arrow_pod_projectile_damage_+%_final"]=1618, - ["void_shockwave_chains_x_times"]=1619, - ["volatile_dead_core_movement_speed_+%"]=1620, - ["volatile_dead_max_cores_allowed"]=1621, - ["volatile_dead_number_of_corpses_to_consume"]=1622, - ["volcanic_fissure_number_of_simultaneous_crack_count"]=1623, - ["volcanic_fissure_speed_+%"]=1624, - ["voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack"]=1625, - ["voodoo_pole_display_maximum_life"]=1626, - ["wall_expand_delay_ms"]=160, - ["wall_maximum_length"]=161, - ["warcries_do_not_apply_buffs_to_self_or_allies"]=1627, - ["warcries_have_infinite_power"]=1629, - ["warcries_knock_back_enemies"]=1628, - ["warcry_count_power_from_enemies"]=1629, - ["warcry_gain_mp_from_allies"]=1629, - ["warcry_gain_mp_from_corpses"]=1629, - ["warcry_grant_damage_+%_to_exerted_attacks"]=1658, - ["warcry_grant_knockback_%_to_exerted_attacks"]=1659, - ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1660, - ["warcry_skills_share_cooldowns"]=1661, - ["water_sphere_cold_lightning_exposure_%"]=1662, - ["water_sphere_does_weird_conversion_stuff"]=1663, - ["weapon_trap_rotation_speed_+%"]=1664, - ["weapon_trap_total_rotation_%"]=1665, - ["whirling_blades_evasion_rating_+%_while_moving"]=1666, - ["windstorm_storm_area_of_effect_+%_final_per_stage"]=1669, - ["windstorm_storm_hit_damage_+%_final_on_detonation"]=1671, - ["windstorm_storm_hit_damage_+%_final_on_detonation_per_stage"]=1672, - ["windstorm_storm_limit"]=1667, - ["windstorm_storm_maximum_stages"]=1668, - ["windstorm_storm_perfect_timing_window_escape_time_ms"]=1670, - ["windstorm_storm_stage_gained_per_X_ms"]=1668, - ["winter_brand_max_number_of_stages"]=1673, - ["wither_applies_additional_wither_%"]=1674, - ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1675, - ["withered_on_hit_chance_%"]=1676, - ["withered_on_hit_for_2_seconds_%_chance"]=1677, - ["withering_step_chance_to_not_remove_on_skill_use_%"]=1678, - ["you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted"]=1679, - ["zombie_slam_area_of_effect_+%"]=1688, - ["zombie_slam_cooldown_speed_+%"]=1689 + ["vaal_righteous_fire_spell_damage_+%_final"]=212, + ["vaal_skill_exertable"]=1634, + ["vaal_storm_call_delay_ms"]=1635, + ["vaal_upgrade_minion_damage_+%_final"]=1636, + ["vaal_upgrade_minion_damage_taken_+%_final"]=1637, + ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1123, + ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1123, + ["vaal_volcanic_fissure_crack_repeat_count"]=1638, + ["vampiric_icon_bleeding_damage_+%_final"]=1639, + ["vanishing_ambush_critical_strike_multiplier_+"]=1700, + ["virtual_aegis_unique_shield_max_value"]=511, + ["virtual_always_pierce"]=108, + ["virtual_berserk_hundred_times_rage_loss_per_second"]=452, + ["virtual_bladefall_number_of_volleys"]=1640, + ["virtual_blood_spears_total_number_of_spears"]=1641, + ["virtual_cast_when_damage_taken_threshold"]=316, + ["virtual_chance_to_blind_on_hit_%"]=248, + ["virtual_chill_minimum_slow_%"]=1642, + ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=85, + ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1643, + ["virtual_firestorm_drop_burning_ground_duration_ms"]=380, + ["virtual_firestorm_drop_chilled_ground_duration_ms"]=381, + ["virtual_herald_of_thunder_bolt_base_frequency"]=1644, + ["virtual_hex_zone_skill_duration_ms"]=1645, + ["virtual_intensity_loss_ms_while_moving_interval"]=225, + ["virtual_intensity_lost_on_teleport"]=225, + ["virtual_kinectic_blast_number_of_clusters"]=360, + ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=151, + ["virtual_maximum_intensity"]=224, + ["virtual_melee_splash"]=276, + ["virtual_mine_detonation_time_ms"]=1647, + ["virtual_minion_elemental_resistance_%"]=283, + ["virtual_number_of_additional_curses_allowed"]=1648, + ["virtual_number_of_chains"]=259, + ["virtual_number_of_chains_for_beams"]=260, + ["virtual_number_of_chains_for_projectiles"]=1649, + ["virtual_number_of_forks_for_projectiles_final"]=262, + ["virtual_number_of_spirit_strikes"]=1128, + ["virtual_onslaught_on_hit_%_chance"]=1650, + ["virtual_plague_bearer_maximum_stored_poison_damage"]=426, + ["virtual_projectile_number_to_split"]=261, + ["virtual_projectiles_cannot_pierce"]=108, + ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1651, + ["virtual_skill_gains_intensity"]=223, + ["virtual_skill_grants_bloodrite_for_X_ms_on_use"]=1225, + ["virtual_spider_aspect_web_interval_ms"]=1652, + ["virtual_static_strike_base_zap_frequency_ms"]=1653, + ["virtual_steelskin_damage_%_taken_to_buff"]=1654, + ["virtual_steelskin_damage_limit"]=1654, + ["virtual_support_anticipation_charge_gain_interval_ms"]=1725, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1520, + ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1655, + ["virtual_trap_and_mine_throwing_time_+%_final"]=1656, + ["virtual_vaal_lightning_arrow_number_of_redirects"]=1657, + ["virulent_arrow_additional_spores_at_max_stages"]=1658, + ["virulent_arrow_damage_+%_final_per_stage"]=1659, + ["virulent_arrow_maximum_number_of_stacks"]=1660, + ["virulent_arrow_number_of_pod_projectiles"]=1661, + ["virulent_arrow_pod_projectile_damage_+%_final"]=1662, + ["void_shockwave_chains_x_times"]=1663, + ["volatile_dead_core_movement_speed_+%"]=1664, + ["volatile_dead_max_cores_allowed"]=1665, + ["volatile_dead_number_of_corpses_to_consume"]=1666, + ["volcanic_fissure_number_of_simultaneous_crack_count"]=1667, + ["volcanic_fissure_speed_+%"]=1668, + ["voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack"]=1669, + ["voodoo_pole_display_maximum_life"]=1670, + ["wall_expand_delay_ms"]=161, + ["wall_maximum_length"]=162, + ["warcries_do_not_apply_buffs_to_self_or_allies"]=1671, + ["warcries_have_infinite_power"]=1673, + ["warcries_knock_back_enemies"]=1672, + ["warcry_count_power_from_enemies"]=1673, + ["warcry_gain_mp_from_allies"]=1673, + ["warcry_gain_mp_from_corpses"]=1673, + ["warcry_grant_damage_+%_to_exerted_attacks"]=1702, + ["warcry_grant_knockback_%_to_exerted_attacks"]=1703, + ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1704, + ["warcry_skills_share_cooldowns"]=1705, + ["water_sphere_cold_lightning_exposure_%"]=1706, + ["water_sphere_does_weird_conversion_stuff"]=1707, + ["weapon_trap_rotation_speed_+%"]=1708, + ["weapon_trap_total_rotation_%"]=1709, + ["whirling_blades_evasion_rating_+%_while_moving"]=1710, + ["windstorm_storm_area_of_effect_+%_final_per_stage"]=1713, + ["windstorm_storm_hit_damage_+%_final_on_detonation"]=1715, + ["windstorm_storm_hit_damage_+%_final_on_detonation_per_stage"]=1716, + ["windstorm_storm_limit"]=1711, + ["windstorm_storm_maximum_stages"]=1712, + ["windstorm_storm_perfect_timing_window_escape_time_ms"]=1714, + ["windstorm_storm_stage_gained_per_X_ms"]=1712, + ["winter_brand_max_number_of_stages"]=1717, + ["wither_applies_additional_wither_%"]=1718, + ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1719, + ["withered_on_hit_chance_%"]=1720, + ["withered_on_hit_for_2_seconds_%_chance"]=1721, + ["withering_step_chance_to_not_remove_on_skill_use_%"]=1722, + ["you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted"]=1723, + ["zombie_slam_area_of_effect_+%"]=1732, + ["zombie_slam_cooldown_speed_+%"]=1733 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/stat_descriptions.lua b/src/Data/StatDescriptions/stat_descriptions.lua index 6899ae5af0..29a2de4b29 100644 --- a/src/Data/StatDescriptions/stat_descriptions.lua +++ b/src/Data/StatDescriptions/stat_descriptions.lua @@ -11,7 +11,7 @@ return { [2]="#" } }, - text="{0}% of Hit Damage from you and your Minions cannot be Reflected" + text="You and your Minions prevent {0:+d}% of Reflected Damage" } }, stats={ @@ -27,7 +27,7 @@ return { [2]="#" } }, - text="{0}% of Elemental Hit Damage from you and your Minions cannot be Reflected" + text="You and your Minions prevent {0:+d}% of Reflected Elemental Damage" } }, stats={ @@ -43,7 +43,7 @@ return { [2]="#" } }, - text="{0}% of Physical Hit Damage from you and your Minions cannot be Reflected" + text="You and your Minions prevent {0:+d}% of Reflected Physical Damage" } }, stats={ @@ -59,7 +59,7 @@ return { [2]="#" } }, - text="{0}% of Damage from your Hits cannot be Reflected" + text="Prevent {0:+d}% of Reflected Damage" } }, stats={ @@ -75,7 +75,7 @@ return { [2]="#" } }, - text="{0}% of Elemental Damage from your Hits cannot be Reflected" + text="Prevent {0:+d}% of Reflected Elemental Damage" } }, stats={ @@ -91,7 +91,7 @@ return { [2]="#" } }, - text="{0}% of Physical Damage from your Hits cannot be Reflected" + text="Prevent {0:+d}% of Reflected Physical Damage" } }, stats={ @@ -115,7 +115,7 @@ return { [2]=-1 } }, - text="{0}% of Damage from your Hits cannot be Reflected" + text="Prevent {0:+d}% of Reflected Damage" } }, stats={ @@ -883,6 +883,131 @@ return { } }, text="Remembrancing {1} songworthy deeds by the line of Medved\nPassives in radius are Conquered by the Kalguur" + }, + [24]={ + [1]={ + k="reminderstring", + v="ReminderTextConqueredPassives" + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Subjugating {1} souls in the thrall of Tecrod\nPassives affected are Conquered by the Abyssal" + }, + [25]={ + [1]={ + k="reminderstring", + v="ReminderTextConqueredPassives" + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Subjugating {1} souls in the thrall of Ulaman\nPassives affected are Conquered by the Abyssal" + }, + [26]={ + [1]={ + k="reminderstring", + v="ReminderTextConqueredPassives" + }, + limit={ + [1]={ + [1]=9, + [2]=9 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Subjugating {1} souls in the thrall of Kurgal\nPassives affected are Conquered by the Abyssal" + }, + [27]={ + [1]={ + k="reminderstring", + v="ReminderTextConqueredPassives" + }, + limit={ + [1]={ + [1]=10, + [2]=10 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Subjugating {1} souls in the thrall of Amanamu\nPassives affected are Conquered by the Abyssal" + }, + [28]={ + [1]={ + k="reminderstring", + v="ReminderTextConqueredPassives" + }, + limit={ + [1]={ + [1]=11, + [2]=11 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]=1, + [2]=1 + }, + [4]={ + [1]="#", + [2]="#" + } + }, + text="Binding {1} souls to phylacteries to sustain Zorath\nPassives affected are Conquered by the Abyssal" } }, stats={ @@ -1976,6 +2101,35 @@ return { } }, [81]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Enchantment Modifier magnitudes" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Enchantment Modifier magnitudes" + } + }, + stats={ + [1]="local_enchant_stat_magnitude_+%" + } + }, + [82]={ [1]={ [1]={ limit={ @@ -2004,7 +2158,7 @@ return { [1]="local_explicit_mod_effect_+%" } }, - [82]={ + [83]={ [1]={ [1]={ [1]={ @@ -2041,7 +2195,7 @@ return { [1]="local_implicit_stat_magnitude_+%" } }, - [83]={ + [84]={ [1]={ [1]={ limit={ @@ -2057,7 +2211,7 @@ return { [1]="local_display_grant_level_x_snipe_skill" } }, - [84]={ + [85]={ [1]={ [1]={ limit={ @@ -2073,7 +2227,7 @@ return { [1]="local_display_grants_level_X_affliction" } }, - [85]={ + [86]={ [1]={ [1]={ limit={ @@ -2089,7 +2243,7 @@ return { [1]="local_display_grants_level_X_pacify" } }, - [86]={ + [87]={ [1]={ [1]={ limit={ @@ -2105,7 +2259,7 @@ return { [1]="local_display_grants_level_X_penance_mark" } }, - [87]={ + [88]={ [1]={ [1]={ [1]={ @@ -2125,7 +2279,7 @@ return { [1]="local_inflict_hallowing_flame_on_hit" } }, - [88]={ + [89]={ [1]={ [1]={ limit={ @@ -2141,7 +2295,7 @@ return { [1]="local_cannot_have_blue_sockets" } }, - [89]={ + [90]={ [1]={ [1]={ limit={ @@ -2157,7 +2311,7 @@ return { [1]="local_cannot_have_green_sockets" } }, - [90]={ + [91]={ [1]={ [1]={ limit={ @@ -2173,7 +2327,7 @@ return { [1]="local_cannot_have_red_sockets" } }, - [91]={ + [92]={ [1]={ [1]={ limit={ @@ -2189,7 +2343,7 @@ return { [1]="local_has_no_sockets" } }, - [92]={ + [93]={ [1]={ [1]={ [1]={ @@ -2226,7 +2380,7 @@ return { [1]="local_has_X_abyss_sockets" } }, - [93]={ + [94]={ [1]={ [1]={ limit={ @@ -2251,7 +2405,7 @@ return { [1]="local_has_X_sockets" } }, - [94]={ + [95]={ [1]={ [1]={ limit={ @@ -2267,7 +2421,7 @@ return { [1]="local_six_linked_random_sockets" } }, - [95]={ + [96]={ [1]={ [1]={ limit={ @@ -2283,7 +2437,55 @@ return { [1]="local_all_sockets_linked" } }, - [96]={ + [97]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="While you have at least {0} Hypnotic Eye Jewels socketed:" + } + }, + stats={ + [1]="abyssal_gaze_caster_abyss_jewels_needed" + } + }, + [98]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="While you have at least {0} Ghastly Eye Jewels socketed:" + } + }, + stats={ + [1]="abyssal_gaze_minion_abyss_jewels_needed" + } + }, + [99]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="While you have at least {0} Searching Eye Jewels socketed:" + } + }, + stats={ + [1]="abyssal_gaze_ranged_abyss_jewels_needed" + } + }, + [100]={ [1]={ [1]={ limit={ @@ -2299,7 +2501,7 @@ return { [1]="cannot_use_life_flasks" } }, - [97]={ + [101]={ [1]={ [1]={ limit={ @@ -2315,7 +2517,7 @@ return { [1]="local_all_sockets_are_blue" } }, - [98]={ + [102]={ [1]={ [1]={ limit={ @@ -2331,7 +2533,7 @@ return { [1]="local_all_sockets_are_green" } }, - [99]={ + [103]={ [1]={ [1]={ limit={ @@ -2347,7 +2549,7 @@ return { [1]="local_all_sockets_are_red" } }, - [100]={ + [104]={ [1]={ [1]={ limit={ @@ -2363,7 +2565,7 @@ return { [1]="local_all_sockets_are_white" } }, - [101]={ + [105]={ [1]={ [1]={ limit={ @@ -2392,7 +2594,7 @@ return { [1]="local_has_X_white_sockets" } }, - [102]={ + [106]={ [1]={ [1]={ limit={ @@ -2417,7 +2619,7 @@ return { [1]="local_maximum_sockets_+" } }, - [103]={ + [107]={ [1]={ [1]={ limit={ @@ -2433,7 +2635,7 @@ return { [1]="local_one_socket_each_colour_only" } }, - [104]={ + [108]={ [1]={ [1]={ limit={ @@ -2449,7 +2651,7 @@ return { [1]="map_number_of_harbinger_portals" } }, - [105]={ + [109]={ [1]={ [1]={ limit={ @@ -2465,7 +2667,7 @@ return { [1]="memory_line_breach_covers_map" } }, - [106]={ + [110]={ [1]={ [1]={ limit={ @@ -2525,7 +2727,7 @@ return { [2]="memory_line_maximum_possessions_of_rare_unique_monsters" } }, - [107]={ + [111]={ [1]={ [1]={ limit={ @@ -2541,7 +2743,7 @@ return { [1]="memory_line_num_harvest_plots" } }, - [108]={ + [112]={ [1]={ [1]={ limit={ @@ -2557,7 +2759,7 @@ return { [1]="memory_line_number_of_abyss_scourge_cracks" } }, - [109]={ + [113]={ [1]={ [1]={ limit={ @@ -2582,7 +2784,7 @@ return { [1]="memory_line_number_of_breaches" } }, - [110]={ + [114]={ [1]={ [1]={ limit={ @@ -2598,7 +2800,7 @@ return { [1]="memory_line_number_of_essences" } }, - [111]={ + [115]={ [1]={ [1]={ limit={ @@ -2614,7 +2816,7 @@ return { [1]="memory_line_number_of_excursions" } }, - [112]={ + [116]={ [1]={ [1]={ limit={ @@ -2643,7 +2845,7 @@ return { [1]="memory_line_number_of_strongboxes" } }, - [113]={ + [117]={ [1]={ [1]={ limit={ @@ -2659,7 +2861,7 @@ return { [1]="memory_line_player_is_harbinger" } }, - [114]={ + [118]={ [1]={ [1]={ limit={ @@ -2688,23 +2890,7 @@ return { [1]="local_block_chance_+%" } }, - [115]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gems can be Socketed in this Item ignoring Socket Colour" - } - }, - stats={ - [1]="local_can_socket_gems_ignoring_colour" - } - }, - [116]={ + [119]={ [1]={ [1]={ limit={ @@ -2729,7 +2915,7 @@ return { [1]="map_incursion_architects_are_possessed_chance_%" } }, - [117]={ + [120]={ [1]={ [1]={ limit={ @@ -2799,7 +2985,7 @@ return { [1]="display_map_mission_id" } }, - [118]={ + [121]={ [1]={ [1]={ limit={ @@ -2815,7 +3001,7 @@ return { [1]="map_reliquary_must_complete_incursions" } }, - [119]={ + [122]={ [1]={ [1]={ limit={ @@ -2831,7 +3017,7 @@ return { [1]="map_breach_hands_are_small" } }, - [120]={ + [123]={ [1]={ [1]={ limit={ @@ -2860,7 +3046,7 @@ return { [1]="map_harbinger_cooldown_speed_+%" } }, - [121]={ + [124]={ [1]={ [1]={ limit={ @@ -2885,7 +3071,7 @@ return { [1]="map_incursion_architects_drop_incursion_rare_chance_%" } }, - [122]={ + [125]={ [1]={ [1]={ limit={ @@ -2901,7 +3087,7 @@ return { [1]="map_strongbox_chain_length" } }, - [123]={ + [126]={ [1]={ [1]={ limit={ @@ -2926,7 +3112,7 @@ return { [1]="memory_line_abyss_scourge_spawn_boss_chance_%" } }, - [124]={ + [127]={ [1]={ [1]={ limit={ @@ -2942,7 +3128,7 @@ return { [1]="memory_line_big_harvest" } }, - [125]={ + [128]={ [1]={ [1]={ limit={ @@ -2958,7 +3144,7 @@ return { [1]="memory_line_essence_monster_number_of_essences" } }, - [126]={ + [129]={ [1]={ [1]={ limit={ @@ -2974,7 +3160,7 @@ return { [1]="memory_line_number_of_large_breach_chests" } }, - [127]={ + [130]={ [1]={ [1]={ limit={ @@ -2999,7 +3185,7 @@ return { [1]="player_is_harbinger_spawn_pack_on_kill_chance" } }, - [128]={ + [131]={ [1]={ [1]={ limit={ @@ -3080,7 +3266,7 @@ return { [2]="local_unique_hungry_loop_has_consumed_gem" } }, - [129]={ + [132]={ [1]={ [1]={ limit={ @@ -3105,7 +3291,7 @@ return { [1]="map_num_extra_abysses" } }, - [130]={ + [133]={ [1]={ [1]={ limit={ @@ -3134,7 +3320,7 @@ return { [1]="map_abyss_monster_spawn_amount_+%" } }, - [131]={ + [134]={ [1]={ [1]={ limit={ @@ -3150,7 +3336,7 @@ return { [1]="map_reliquary_must_complete_abysses" } }, - [132]={ + [135]={ [1]={ [1]={ limit={ @@ -3175,7 +3361,7 @@ return { [1]="map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods" } }, - [133]={ + [136]={ [1]={ [1]={ limit={ @@ -3204,7 +3390,7 @@ return { [1]="map_breach_monster_count_and_speed_+%_per_breach_opened" } }, - [134]={ + [137]={ [1]={ [1]={ limit={ @@ -3233,7 +3419,7 @@ return { [1]="map_breach_time_passed_+%" } }, - [135]={ + [138]={ [1]={ [1]={ limit={ @@ -3258,7 +3444,7 @@ return { [1]="map_crucible_contains_forge_that_can_apply_weapon_tree_to_unique" } }, - [136]={ + [139]={ [1]={ [1]={ limit={ @@ -3274,7 +3460,7 @@ return { [1]="map_crucible_contains_forge_that_can_remove_weapon_tree" } }, - [137]={ + [140]={ [1]={ [1]={ limit={ @@ -3290,7 +3476,7 @@ return { [1]="map_crucible_forge_display" } }, - [138]={ + [141]={ [1]={ [1]={ limit={ @@ -3306,7 +3492,7 @@ return { [1]="map_crucible_forge_display_uber" } }, - [139]={ + [142]={ [1]={ [1]={ limit={ @@ -3322,7 +3508,7 @@ return { [1]="map_essences_contains_rogue_exiles" } }, - [140]={ + [143]={ [1]={ [1]={ limit={ @@ -3338,7 +3524,7 @@ return { [1]="map_harvest_seeds_are_at_least_t2" } }, - [141]={ + [144]={ [1]={ [1]={ limit={ @@ -3354,7 +3540,7 @@ return { [1]="memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete" } }, - [142]={ + [145]={ [1]={ [1]={ limit={ @@ -3370,7 +3556,7 @@ return { [1]="memory_line_breach_boss_spawn_chance_%" } }, - [143]={ + [146]={ [1]={ [1]={ limit={ @@ -3386,7 +3572,7 @@ return { [1]="memory_line_strongboxes_chance_to_be_operatives_%" } }, - [144]={ + [147]={ [1]={ [1]={ limit={ @@ -3402,7 +3588,7 @@ return { [1]="map_breach_size_+%" } }, - [145]={ + [148]={ [1]={ [1]={ [1]={ @@ -3422,7 +3608,7 @@ return { [1]="map_breach_splinters_drop_as_stones_permyriad" } }, - [146]={ + [149]={ [1]={ [1]={ limit={ @@ -3438,7 +3624,7 @@ return { [1]="map_chance_for_breach_bosses_to_drop_breachstone_%" } }, - [147]={ + [150]={ [1]={ [1]={ limit={ @@ -3454,7 +3640,7 @@ return { [1]="map_crucible_combining_+_chance_%_for_upgraded_tiers" } }, - [148]={ + [151]={ [1]={ [1]={ limit={ @@ -3470,7 +3656,7 @@ return { [1]="map_crucible_combining_additional_sell_node" } }, - [149]={ + [152]={ [1]={ [1]={ limit={ @@ -3486,7 +3672,7 @@ return { [1]="map_crucible_combining_item_has_30_quality" } }, - [150]={ + [153]={ [1]={ [1]={ limit={ @@ -3502,7 +3688,7 @@ return { [1]="map_crucible_combining_item_has_corruption_implicit" } }, - [151]={ + [154]={ [1]={ [1]={ limit={ @@ -3518,7 +3704,7 @@ return { [1]="map_crucible_combining_item_has_mod_values_rerolled" } }, - [152]={ + [155]={ [1]={ [1]={ limit={ @@ -3534,7 +3720,7 @@ return { [1]="map_crucible_combining_item_is_fully_linked" } }, - [153]={ + [156]={ [1]={ [1]={ limit={ @@ -3550,7 +3736,7 @@ return { [1]="map_crucible_combining_more_likely_skills_are_kept" } }, - [154]={ + [157]={ [1]={ [1]={ limit={ @@ -3566,7 +3752,7 @@ return { [1]="map_crucible_combining_tiers_cannot_be_downgraded" } }, - [155]={ + [158]={ [1]={ [1]={ limit={ @@ -3591,7 +3777,7 @@ return { [1]="map_crucible_rare_unique_monster_drop_itemised_weapon_tree_experience_%_chance" } }, - [156]={ + [159]={ [1]={ [1]={ limit={ @@ -3616,7 +3802,7 @@ return { [1]="map_crucible_rare_unique_monster_drop_melee_weapon_with_tree_%_chance" } }, - [157]={ + [160]={ [1]={ [1]={ limit={ @@ -3641,7 +3827,7 @@ return { [1]="map_crucible_rare_unique_monster_drop_ranged_weapon_with_tree_%_chance" } }, - [158]={ + [161]={ [1]={ [1]={ limit={ @@ -3666,7 +3852,7 @@ return { [1]="map_crucible_rare_unique_monster_drop_shield_with_tree_%_chance" } }, - [159]={ + [162]={ [1]={ [1]={ limit={ @@ -3691,7 +3877,7 @@ return { [1]="map_crucible_rare_unique_monster_drop_unique_weapon_divination_cards_%_chance" } }, - [160]={ + [163]={ [1]={ [1]={ limit={ @@ -3716,7 +3902,7 @@ return { [1]="map_crucible_unique_monster_drop_unique_with_weapon_tree_%_chance" } }, - [161]={ + [164]={ [1]={ [1]={ limit={ @@ -3741,7 +3927,7 @@ return { [1]="map_essence_releasing_imprisoned_monsters_grants_random_essence_to_other_imprisoned_monsters_chance_%" } }, - [162]={ + [165]={ [1]={ [1]={ limit={ @@ -3766,7 +3952,7 @@ return { [1]="map_essences_are_1_tier_higher_chance_%" } }, - [163]={ + [166]={ [1]={ [1]={ limit={ @@ -3782,7 +3968,7 @@ return { [1]="map_harvest_seed_t2_upgrade_%_chance" } }, - [164]={ + [167]={ [1]={ [1]={ limit={ @@ -3798,7 +3984,7 @@ return { [1]="map_strongboxes_additional_pack_chance_%" } }, - [165]={ + [168]={ [1]={ [1]={ limit={ @@ -3827,7 +4013,7 @@ return { [1]="map_breach_monsters_life_+%" } }, - [166]={ + [169]={ [1]={ [1]={ limit={ @@ -3852,7 +4038,7 @@ return { [1]="map_crucible_unique_monster_drop_unique_melee_weapon_%_chance" } }, - [167]={ + [170]={ [1]={ [1]={ limit={ @@ -3877,7 +4063,7 @@ return { [1]="map_crucible_unique_monster_drop_unique_ranged_weapon_%_chance" } }, - [168]={ + [171]={ [1]={ [1]={ limit={ @@ -3902,7 +4088,7 @@ return { [1]="map_crucible_unique_monster_drop_unique_shield_%_chance" } }, - [169]={ + [172]={ [1]={ [1]={ limit={ @@ -3918,7 +4104,7 @@ return { [1]="map_essence_corruption_cannot_release_monsters" } }, - [170]={ + [173]={ [1]={ [1]={ limit={ @@ -3934,7 +4120,7 @@ return { [1]="map_harvest_seed_t3_upgrade_%_chance" } }, - [171]={ + [174]={ [1]={ [1]={ limit={ @@ -3950,7 +4136,7 @@ return { [1]="map_strongbox_monsters_life_+%" } }, - [172]={ + [175]={ [1]={ [1]={ limit={ @@ -3966,7 +4152,7 @@ return { [1]="map_weapon_and_shields_drop_corrupted_with_implicit_%_chance" } }, - [173]={ + [176]={ [1]={ [1]={ limit={ @@ -3982,7 +4168,7 @@ return { [1]="map_weapon_and_shields_drop_fractured_%_chance" } }, - [174]={ + [177]={ [1]={ [1]={ limit={ @@ -3998,7 +4184,7 @@ return { [1]="map_weapon_and_shields_drop_fully_linked_%_chance" } }, - [175]={ + [178]={ [1]={ [1]={ limit={ @@ -4014,7 +4200,7 @@ return { [1]="map_weapon_and_shields_drop_fully_socketed_%_chance" } }, - [176]={ + [179]={ [1]={ [1]={ limit={ @@ -4043,7 +4229,7 @@ return { [1]="map_breach_monsters_damage_+%" } }, - [177]={ + [180]={ [1]={ [1]={ limit={ @@ -4059,7 +4245,7 @@ return { [1]="map_duplicate_essence_monsters_with_shrieking_essence" } }, - [178]={ + [181]={ [1]={ [1]={ limit={ @@ -4075,7 +4261,7 @@ return { [1]="map_strongbox_monsters_damage_+%" } }, - [179]={ + [182]={ [1]={ [1]={ limit={ @@ -4100,7 +4286,7 @@ return { [1]="map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance" } }, - [180]={ + [183]={ [1]={ [1]={ limit={ @@ -4125,7 +4311,7 @@ return { [1]="trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance" } }, - [181]={ + [184]={ [1]={ [1]={ limit={ @@ -4141,7 +4327,7 @@ return { [1]="local_gem_level_+" } }, - [182]={ + [185]={ [1]={ [1]={ limit={ @@ -4157,7 +4343,7 @@ return { [1]="local_socketed_strength_gem_level_+" } }, - [183]={ + [186]={ [1]={ [1]={ limit={ @@ -4173,7 +4359,7 @@ return { [1]="maximum_number_of_projectiles_to_fire_is_1" } }, - [184]={ + [187]={ [1]={ [1]={ limit={ @@ -4189,7 +4375,7 @@ return { [1]="local_socketed_dexterity_gem_level_+" } }, - [185]={ + [188]={ [1]={ [1]={ limit={ @@ -4205,7 +4391,7 @@ return { [1]="local_socketed_intelligence_gem_level_+" } }, - [186]={ + [189]={ [1]={ [1]={ limit={ @@ -4221,7 +4407,7 @@ return { [1]="local_socketed_gem_level_+" } }, - [187]={ + [190]={ [1]={ [1]={ limit={ @@ -4237,7 +4423,7 @@ return { [1]="local_socketed_skill_gem_level_+1_per_x_player_levels" } }, - [188]={ + [191]={ [1]={ [1]={ limit={ @@ -4253,7 +4439,7 @@ return { [1]="local_socketed_gems_in_red_sockets_get_level_+" } }, - [189]={ + [192]={ [1]={ [1]={ limit={ @@ -4269,7 +4455,7 @@ return { [1]="local_socketed_gems_in_green_sockets_get_quality_%" } }, - [190]={ + [193]={ [1]={ [1]={ limit={ @@ -4285,7 +4471,43 @@ return { [1]="local_socketed_gems_in_blue_sockets_experience_gained_+%" } }, - [191]={ + [194]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextSocketColourQualityBonus" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gems Socketed always have the Quality bonus from Socket Colour" + } + }, + stats={ + [1]="local_can_socket_gems_ignoring_colour" + } + }, + [195]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Trigger Level {0} Molten Burst on Melee Hit" + } + }, + stats={ + [1]="local_display_trigger_level_x_molten_burst_on_melee_hit" + } + }, + [196]={ [1]={ [1]={ limit={ @@ -4301,7 +4523,7 @@ return { [1]="local_socketed_fire_gem_level_+" } }, - [192]={ + [197]={ [1]={ [1]={ limit={ @@ -4317,7 +4539,7 @@ return { [1]="local_socketed_cold_gem_level_+" } }, - [193]={ + [198]={ [1]={ [1]={ limit={ @@ -4333,7 +4555,23 @@ return { [1]="local_socketed_lightning_gem_level_+" } }, - [194]={ + [199]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of Socketed Physical Gems" + } + }, + stats={ + [1]="local_socketed_physical_gem_level_+" + } + }, + [200]={ [1]={ [1]={ limit={ @@ -4349,7 +4587,7 @@ return { [1]="local_socketed_chaos_gem_level_+" } }, - [195]={ + [201]={ [1]={ [1]={ limit={ @@ -4365,7 +4603,7 @@ return { [1]="action_speed_is_at_least_90%" } }, - [196]={ + [202]={ [1]={ [1]={ limit={ @@ -4381,7 +4619,7 @@ return { [1]="base_skill_cost_life_instead_of_mana" } }, - [197]={ + [203]={ [1]={ [1]={ limit={ @@ -4397,7 +4635,7 @@ return { [1]="base_skill_reserve_life_instead_of_mana" } }, - [198]={ + [204]={ [1]={ [1]={ limit={ @@ -4413,7 +4651,7 @@ return { [1]="local_socketed_spell_gem_level_+" } }, - [199]={ + [205]={ [1]={ [1]={ limit={ @@ -4429,7 +4667,7 @@ return { [1]="local_socketed_duration_gem_level_+" } }, - [200]={ + [206]={ [1]={ [1]={ limit={ @@ -4445,7 +4683,7 @@ return { [1]="local_socketed_area_of_effect_gem_level_+" } }, - [201]={ + [207]={ [1]={ [1]={ limit={ @@ -4461,7 +4699,7 @@ return { [1]="local_socketed_projectile_gem_level_+" } }, - [202]={ + [208]={ [1]={ [1]={ limit={ @@ -4477,7 +4715,7 @@ return { [1]="local_socketed_bow_gem_level_+" } }, - [203]={ + [209]={ [1]={ [1]={ limit={ @@ -4493,7 +4731,7 @@ return { [1]="local_socketed_melee_gem_level_+" } }, - [204]={ + [210]={ [1]={ [1]={ limit={ @@ -4509,7 +4747,7 @@ return { [1]="local_socketed_minion_gem_level_+" } }, - [205]={ + [211]={ [1]={ [1]={ limit={ @@ -4525,7 +4763,7 @@ return { [1]="local_socketed_aura_gem_level_+" } }, - [206]={ + [212]={ [1]={ [1]={ limit={ @@ -4541,7 +4779,7 @@ return { [1]="local_socketed_herald_gem_level_+" } }, - [207]={ + [213]={ [1]={ [1]={ limit={ @@ -4557,7 +4795,7 @@ return { [1]="local_socketed_movement_gem_level_+" } }, - [208]={ + [214]={ [1]={ [1]={ limit={ @@ -4573,7 +4811,7 @@ return { [1]="local_socketed_curse_gem_level_+" } }, - [209]={ + [215]={ [1]={ [1]={ limit={ @@ -4589,7 +4827,7 @@ return { [1]="local_socketed_hex_gem_level_+" } }, - [210]={ + [216]={ [1]={ [1]={ limit={ @@ -4605,7 +4843,7 @@ return { [1]="local_socketed_trap_gem_level_+" } }, - [211]={ + [217]={ [1]={ [1]={ limit={ @@ -4621,7 +4859,7 @@ return { [1]="local_socketed_trap_and_mine_gem_level_+" } }, - [212]={ + [218]={ [1]={ [1]={ limit={ @@ -4637,7 +4875,7 @@ return { [1]="local_socketed_vaal_gem_level_+" } }, - [213]={ + [219]={ [1]={ [1]={ limit={ @@ -4653,7 +4891,7 @@ return { [1]="local_socketed_support_gem_level_+" } }, - [214]={ + [220]={ [1]={ [1]={ limit={ @@ -4669,7 +4907,7 @@ return { [1]="local_socketed_active_skill_gem_level_+" } }, - [215]={ + [221]={ [1]={ [1]={ limit={ @@ -4685,7 +4923,23 @@ return { [1]="create_sand_mirage_on_contact_for_damaging_non_channel_spells" } }, - [216]={ + [222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Trigger level {0} Suspend in Time on Casting a Spell" + } + }, + stats={ + [1]="local_display_trigger_level_x_sands_of_time_on_casting_spell" + } + }, + [223]={ [1]={ [1]={ limit={ @@ -4701,7 +4955,7 @@ return { [1]="local_socketed_non_vaal_gem_level_+" } }, - [217]={ + [224]={ [1]={ [1]={ limit={ @@ -4717,7 +4971,7 @@ return { [1]="local_socketed_warcry_gem_level_+" } }, - [218]={ + [225]={ [1]={ [1]={ limit={ @@ -4733,7 +4987,7 @@ return { [1]="map_spawn_heist_smugglers_cache" } }, - [219]={ + [226]={ [1]={ [1]={ limit={ @@ -4749,7 +5003,7 @@ return { [1]="map_supporter_heist_cache" } }, - [220]={ + [227]={ [1]={ [1]={ limit={ @@ -4765,7 +5019,7 @@ return { [1]="map_reliquary_must_open_heist_caches" } }, - [221]={ + [228]={ [1]={ [1]={ limit={ @@ -4781,7 +5035,7 @@ return { [1]="local_display_socketed_golem_attack_and_cast_speed_+%" } }, - [222]={ + [229]={ [1]={ [1]={ limit={ @@ -4797,7 +5051,7 @@ return { [1]="local_display_socketed_golem_buff_effect_+%" } }, - [223]={ + [230]={ [1]={ [1]={ limit={ @@ -4813,7 +5067,7 @@ return { [1]="local_display_socketed_golem_chance_to_taunt_%" } }, - [224]={ + [231]={ [1]={ [1]={ [1]={ @@ -4833,7 +5087,7 @@ return { [1]="local_display_socketed_golem_life_regeneration_rate_per_minute_%" } }, - [225]={ + [232]={ [1]={ [1]={ [1]={ @@ -4857,7 +5111,7 @@ return { [1]="local_display_socketed_golem_skill_grants_onslaught_when_summoned" } }, - [226]={ + [233]={ [1]={ [1]={ limit={ @@ -4873,7 +5127,23 @@ return { [1]="local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield" } }, - [227]={ + [234]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Socketed Spells are Supported by level {0} Crab Totem" + } + }, + stats={ + [1]="local_display_supported_by_crab_totem" + } + }, + [235]={ [1]={ [1]={ limit={ @@ -4889,7 +5159,36 @@ return { [1]="local_socketed_golem_gem_level_+" } }, - [228]={ + [236]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Totems have {0}% increased Movement Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Totems have {0}% reduced Movement Speed" + } + }, + stats={ + [1]="totem_movement_speed_+%" + } + }, + [237]={ [1]={ [1]={ limit={ @@ -4905,7 +5204,7 @@ return { [1]="local_socketed_gem_quality_+" } }, - [229]={ + [238]={ [1]={ [1]={ limit={ @@ -4921,7 +5220,7 @@ return { [1]="local_socketed_support_gem_quality_+" } }, - [230]={ + [239]={ [1]={ [1]={ limit={ @@ -4937,7 +5236,7 @@ return { [1]="local_socketed_active_skill_gem_quality_+" } }, - [231]={ + [240]={ [1]={ [1]={ limit={ @@ -4953,7 +5252,7 @@ return { [1]="local_socketed_area_of_effect_gem_quality_+" } }, - [232]={ + [241]={ [1]={ [1]={ limit={ @@ -4969,7 +5268,7 @@ return { [1]="local_socketed_aura_gem_quality_+" } }, - [233]={ + [242]={ [1]={ [1]={ limit={ @@ -4985,7 +5284,7 @@ return { [1]="local_socketed_bow_gem_quality_+" } }, - [234]={ + [243]={ [1]={ [1]={ limit={ @@ -5001,7 +5300,7 @@ return { [1]="local_socketed_chaos_gem_quality_+" } }, - [235]={ + [244]={ [1]={ [1]={ limit={ @@ -5017,7 +5316,7 @@ return { [1]="local_socketed_cold_gem_quality_+" } }, - [236]={ + [245]={ [1]={ [1]={ limit={ @@ -5033,7 +5332,7 @@ return { [1]="local_socketed_dexterity_gem_quality_+" } }, - [237]={ + [246]={ [1]={ [1]={ limit={ @@ -5049,7 +5348,7 @@ return { [1]="local_socketed_elemental_gem_level_+" } }, - [238]={ + [247]={ [1]={ [1]={ limit={ @@ -5065,7 +5364,7 @@ return { [1]="local_socketed_fire_gem_quality_+" } }, - [239]={ + [248]={ [1]={ [1]={ limit={ @@ -5081,7 +5380,7 @@ return { [1]="local_socketed_intelligence_gem_quality_+" } }, - [240]={ + [249]={ [1]={ [1]={ limit={ @@ -5097,7 +5396,7 @@ return { [1]="local_socketed_lightning_gem_quality_+" } }, - [241]={ + [250]={ [1]={ [1]={ limit={ @@ -5113,7 +5412,7 @@ return { [1]="local_socketed_melee_gem_quality_+" } }, - [242]={ + [251]={ [1]={ [1]={ limit={ @@ -5129,7 +5428,7 @@ return { [1]="local_socketed_minion_gem_quality_+" } }, - [243]={ + [252]={ [1]={ [1]={ limit={ @@ -5145,7 +5444,7 @@ return { [1]="local_socketed_projectile_gem_quality_+" } }, - [244]={ + [253]={ [1]={ [1]={ limit={ @@ -5161,7 +5460,7 @@ return { [1]="local_socketed_strength_gem_quality_+" } }, - [245]={ + [254]={ [1]={ [1]={ limit={ @@ -5190,7 +5489,7 @@ return { [1]="local_socketed_abyss_jewel_effect_+%" } }, - [246]={ + [255]={ [1]={ [1]={ limit={ @@ -5206,7 +5505,7 @@ return { [1]="support_gems_socketed_in_amulet_also_support_body_skills" } }, - [247]={ + [256]={ [1]={ [1]={ limit={ @@ -5222,7 +5521,7 @@ return { [1]="support_gems_socketed_in_off_hand_also_support_main_hand_skills" } }, - [248]={ + [257]={ [1]={ [1]={ limit={ @@ -5238,7 +5537,7 @@ return { [1]="local_display_socketed_gems_get_increased_area_level" } }, - [249]={ + [258]={ [1]={ [1]={ limit={ @@ -5254,7 +5553,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_1_greater_spell_echo" } }, - [250]={ + [259]={ [1]={ [1]={ limit={ @@ -5270,7 +5569,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_arcane_surge" } }, - [251]={ + [260]={ [1]={ [1]={ limit={ @@ -5286,7 +5585,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_archmage" } }, - [252]={ + [261]={ [1]={ [1]={ limit={ @@ -5302,7 +5601,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_aura_duration" } }, - [253]={ + [262]={ [1]={ [1]={ limit={ @@ -5318,7 +5617,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_automation" } }, - [254]={ + [263]={ [1]={ [1]={ limit={ @@ -5334,7 +5633,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_barrage" } }, - [255]={ + [264]={ [1]={ [1]={ limit={ @@ -5350,7 +5649,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_behead" } }, - [256]={ + [265]={ [1]={ [1]={ limit={ @@ -5366,7 +5665,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodlust" } }, - [257]={ + [266]={ [1]={ [1]={ limit={ @@ -5382,7 +5681,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodsoaked_banner" } }, - [258]={ + [267]={ [1]={ [1]={ limit={ @@ -5398,7 +5697,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodthirst" } }, - [259]={ + [268]={ [1]={ [1]={ limit={ @@ -5414,7 +5713,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bonechill" } }, - [260]={ + [269]={ [1]={ [1]={ limit={ @@ -5430,7 +5729,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bonespire" } }, - [261]={ + [270]={ [1]={ [1]={ limit={ @@ -5446,7 +5745,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_brutality" } }, - [262]={ + [271]={ [1]={ [1]={ limit={ @@ -5462,7 +5761,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_call_to_arms" } }, - [263]={ + [272]={ [1]={ [1]={ limit={ @@ -5478,7 +5777,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken" } }, - [264]={ + [273]={ [1]={ [1]={ limit={ @@ -5494,7 +5793,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_kill" } }, - [265]={ + [274]={ [1]={ [1]={ limit={ @@ -5510,7 +5809,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_ward_break" } }, - [266]={ + [275]={ [1]={ [1]={ limit={ @@ -5526,7 +5825,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_while_channelling" } }, - [267]={ + [276]={ [1]={ [1]={ limit={ @@ -5542,7 +5841,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chain" } }, - [268]={ + [277]={ [1]={ [1]={ limit={ @@ -5558,7 +5857,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chance_to_bleed" } }, - [269]={ + [278]={ [1]={ [1]={ limit={ @@ -5574,7 +5873,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chance_to_ignite" } }, - [270]={ + [279]={ [1]={ [1]={ limit={ @@ -5590,7 +5889,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_charged_mines" } }, - [271]={ + [280]={ [1]={ [1]={ limit={ @@ -5606,7 +5905,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_close_combat" } }, - [272]={ + [281]={ [1]={ [1]={ limit={ @@ -5622,7 +5921,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_companionship" } }, - [273]={ + [282]={ [1]={ [1]={ limit={ @@ -5638,7 +5937,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_consecrated_cry" } }, - [274]={ + [283]={ [1]={ [1]={ limit={ @@ -5654,7 +5953,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_controlled_blaze" } }, - [275]={ + [284]={ [1]={ [1]={ limit={ @@ -5670,7 +5969,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cooldown_recovery" } }, - [276]={ + [285]={ [1]={ [1]={ limit={ @@ -5686,7 +5985,23 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_corrupting_cry" } }, - [277]={ + [286]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Crystalfall" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_level_x_crystalfall" + } + }, + [287]={ [1]={ [1]={ limit={ @@ -5702,7 +6017,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cull_the_weak" } }, - [278]={ + [288]={ [1]={ [1]={ limit={ @@ -5718,7 +6033,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_culling_strike" } }, - [279]={ + [289]={ [1]={ [1]={ limit={ @@ -5734,7 +6049,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_curse_on_hit" } }, - [280]={ + [290]={ [1]={ [1]={ limit={ @@ -5750,7 +6065,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cursed_ground" } }, - [281]={ + [291]={ [1]={ [1]={ limit={ @@ -5766,7 +6081,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_deadly_ailments" } }, - [282]={ + [292]={ [1]={ [1]={ limit={ @@ -5782,7 +6097,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_deathmark" } }, - [283]={ + [293]={ [1]={ [1]={ limit={ @@ -5798,7 +6113,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_decay" } }, - [284]={ + [294]={ [1]={ [1]={ limit={ @@ -5814,7 +6129,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_devour" } }, - [285]={ + [295]={ [1]={ [1]={ limit={ @@ -5830,7 +6145,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_divine_sentinel" } }, - [286]={ + [296]={ [1]={ [1]={ limit={ @@ -5855,7 +6170,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_earthbreaker" } }, - [287]={ + [297]={ [1]={ [1]={ limit={ @@ -5871,7 +6186,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_eclipse" } }, - [288]={ + [298]={ [1]={ [1]={ limit={ @@ -5887,7 +6202,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_edify" } }, - [289]={ + [299]={ [1]={ [1]={ limit={ @@ -5903,7 +6218,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_efficacy" } }, - [290]={ + [300]={ [1]={ [1]={ limit={ @@ -5919,7 +6234,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_eldritch_blasphemy" } }, - [291]={ + [301]={ [1]={ [1]={ limit={ @@ -5935,7 +6250,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_elemental_focus" } }, - [292]={ + [302]={ [1]={ [1]={ limit={ @@ -5951,7 +6266,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_elemental_penetration" } }, - [293]={ + [303]={ [1]={ [1]={ limit={ @@ -5967,7 +6282,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_empower" } }, - [294]={ + [304]={ [1]={ [1]={ limit={ @@ -5983,7 +6298,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_energy_leech" } }, - [295]={ + [305]={ [1]={ [1]={ limit={ @@ -5999,7 +6314,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_enhance" } }, - [296]={ + [306]={ [1]={ [1]={ limit={ @@ -6015,7 +6330,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_enlighten" } }, - [297]={ + [307]={ [1]={ [1]={ limit={ @@ -6031,7 +6346,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_eternal_blessing" } }, - [298]={ + [308]={ [1]={ [1]={ limit={ @@ -6047,7 +6362,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_excommunicate" } }, - [299]={ + [309]={ [1]={ [1]={ limit={ @@ -6063,7 +6378,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_expert_retaliation" } }, - [300]={ + [310]={ [1]={ [1]={ limit={ @@ -6079,7 +6394,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_feeding_frenzy" } }, - [301]={ + [311]={ [1]={ [1]={ limit={ @@ -6095,7 +6410,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fire_penetration" } }, - [302]={ + [312]={ [1]={ [1]={ limit={ @@ -6111,7 +6426,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fissure" } }, - [303]={ + [313]={ [1]={ [1]={ limit={ @@ -6127,7 +6442,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fist_of_war" } }, - [304]={ + [314]={ [1]={ [1]={ limit={ @@ -6143,7 +6458,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_flamewood" } }, - [305]={ + [315]={ [1]={ [1]={ limit={ @@ -6159,7 +6474,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_focused_channelling" } }, - [306]={ + [316]={ [1]={ [1]={ limit={ @@ -6175,7 +6490,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_focussed_ballista" } }, - [307]={ + [317]={ [1]={ [1]={ limit={ @@ -6191,7 +6506,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_foulgrasp" } }, - [308]={ + [318]={ [1]={ [1]={ limit={ @@ -6207,7 +6522,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fragility" } }, - [309]={ + [319]={ [1]={ [1]={ limit={ @@ -6223,7 +6538,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger" } }, - [310]={ + [320]={ [1]={ [1]={ limit={ @@ -6239,7 +6554,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fresh_meat" } }, - [311]={ + [321]={ [1]={ [1]={ limit={ @@ -6255,7 +6570,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_frigid_bond" } }, - [312]={ + [322]={ [1]={ [1]={ limit={ @@ -6271,7 +6586,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_frostmage" } }, - [313]={ + [323]={ [1]={ [1]={ limit={ @@ -6287,7 +6602,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_gluttony" } }, - [314]={ + [324]={ [1]={ [1]={ limit={ @@ -6303,7 +6618,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_ancestral_call" } }, - [315]={ + [325]={ [1]={ [1]={ limit={ @@ -6319,7 +6634,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_chain" } }, - [316]={ + [326]={ [1]={ [1]={ limit={ @@ -6335,7 +6650,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_devour" } }, - [317]={ + [327]={ [1]={ [1]={ limit={ @@ -6351,7 +6666,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_fork" } }, - [318]={ + [328]={ [1]={ [1]={ limit={ @@ -6367,7 +6682,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_kinetic_instability" } }, - [319]={ + [329]={ [1]={ [1]={ limit={ @@ -6383,7 +6698,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles" } }, - [320]={ + [330]={ [1]={ [1]={ limit={ @@ -6399,7 +6714,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_multistrike" } }, - [321]={ + [331]={ [1]={ [1]={ limit={ @@ -6415,7 +6730,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_spell_cascade" } }, - [322]={ + [332]={ [1]={ [1]={ limit={ @@ -6431,7 +6746,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_spell_echo" } }, - [323]={ + [333]={ [1]={ [1]={ limit={ @@ -6447,7 +6762,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_unleash" } }, - [324]={ + [334]={ [1]={ [1]={ limit={ @@ -6463,7 +6778,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_volley" } }, - [325]={ + [335]={ [1]={ [1]={ limit={ @@ -6479,7 +6794,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_guardians_blessing" } }, - [326]={ + [336]={ [1]={ [1]={ limit={ @@ -6495,7 +6810,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_hallow" } }, - [327]={ + [337]={ [1]={ [1]={ limit={ @@ -6511,7 +6826,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_harrowing_throng" } }, - [328]={ + [338]={ [1]={ [1]={ limit={ @@ -6527,7 +6842,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_hex_bloom" } }, - [329]={ + [339]={ [1]={ [1]={ limit={ @@ -6543,7 +6858,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_hexpass" } }, - [330]={ + [340]={ [1]={ [1]={ limit={ @@ -6559,7 +6874,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_hextoad" } }, - [331]={ + [341]={ [1]={ [1]={ limit={ @@ -6575,7 +6890,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_hiveborn" } }, - [332]={ + [342]={ [1]={ [1]={ limit={ @@ -6591,7 +6906,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ignite_proliferation" } }, - [333]={ + [343]={ [1]={ [1]={ limit={ @@ -6607,7 +6922,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_immolate" } }, - [334]={ + [344]={ [1]={ [1]={ limit={ @@ -6623,7 +6938,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_impale" } }, - [335]={ + [345]={ [1]={ [1]={ limit={ @@ -6639,7 +6954,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_impending_doom" } }, - [336]={ + [346]={ [1]={ [1]={ limit={ @@ -6655,7 +6970,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_burning_damage" } }, - [337]={ + [347]={ [1]={ [1]={ limit={ @@ -6671,7 +6986,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_critical_strikes" } }, - [338]={ + [348]={ [1]={ [1]={ limit={ @@ -6687,7 +7002,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_duration" } }, - [339]={ + [349]={ [1]={ [1]={ limit={ @@ -6703,7 +7018,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_infernal_legion" } }, - [340]={ + [350]={ [1]={ [1]={ limit={ @@ -6719,7 +7034,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_intensify" } }, - [341]={ + [351]={ [1]={ [1]={ limit={ @@ -6735,7 +7050,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_invention" } }, - [342]={ + [352]={ [1]={ [1]={ limit={ @@ -6751,7 +7066,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_invert_the_rules" } }, - [343]={ + [353]={ [1]={ [1]={ limit={ @@ -6767,7 +7082,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_iron_grip" } }, - [344]={ + [354]={ [1]={ [1]={ limit={ @@ -6783,7 +7098,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_item_quantity" } }, - [345]={ + [355]={ [1]={ [1]={ limit={ @@ -6799,7 +7114,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_item_rarity" } }, - [346]={ + [356]={ [1]={ [1]={ limit={ @@ -6815,7 +7130,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_kinetic_instability" } }, - [347]={ + [357]={ [1]={ [1]={ limit={ @@ -6831,7 +7146,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lethal_dose" } }, - [348]={ + [358]={ [1]={ [1]={ limit={ @@ -6847,7 +7162,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_life_gain_on_hit" } }, - [349]={ + [359]={ [1]={ [1]={ limit={ @@ -6863,7 +7178,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lifetap" } }, - [350]={ + [360]={ [1]={ [1]={ limit={ @@ -6879,7 +7194,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lightning_penetration" } }, - [351]={ + [361]={ [1]={ [1]={ limit={ @@ -6895,7 +7210,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_living_lightning" } }, - [352]={ + [362]={ [1]={ [1]={ limit={ @@ -6911,7 +7226,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_locus_mine" } }, - [353]={ + [363]={ [1]={ [1]={ limit={ @@ -6927,7 +7242,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_machinations" } }, - [354]={ + [364]={ [1]={ [1]={ limit={ @@ -6943,7 +7258,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_magnetism" } }, - [355]={ + [365]={ [1]={ [1]={ limit={ @@ -6959,7 +7274,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_maim" } }, - [356]={ + [366]={ [1]={ [1]={ limit={ @@ -6975,7 +7290,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_manaforged_arrows" } }, - [357]={ + [367]={ [1]={ [1]={ limit={ @@ -6991,7 +7306,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_mark_on_hit" } }, - [358]={ + [368]={ [1]={ [1]={ limit={ @@ -7007,7 +7322,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_meat_shield" } }, - [359]={ + [369]={ [1]={ [1]={ limit={ @@ -7023,7 +7338,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_melee_crit_minion" } }, - [360]={ + [370]={ [1]={ [1]={ limit={ @@ -7039,7 +7354,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life" } }, - [361]={ + [371]={ [1]={ [1]={ limit={ @@ -7055,7 +7370,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_minefield" } }, - [362]={ + [372]={ [1]={ [1]={ limit={ @@ -7064,14 +7379,14 @@ return { [2]="#" } }, - text="Socketed Gems are Supported by Level {0} Minion Pact" + text="Socketed Gems are Supported by Level {0} Communion" } }, stats={ [1]="local_display_socketed_gems_supported_by_level_x_minion_pact" } }, - [363]={ + [373]={ [1]={ [1]={ limit={ @@ -7087,7 +7402,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_mirage_archer" } }, - [364]={ + [374]={ [1]={ [1]={ limit={ @@ -7103,7 +7418,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multi_totem" } }, - [365]={ + [375]={ [1]={ [1]={ limit={ @@ -7119,7 +7434,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multicast" } }, - [366]={ + [376]={ [1]={ [1]={ limit={ @@ -7135,7 +7450,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_nightblade" } }, - [367]={ + [377]={ [1]={ [1]={ limit={ @@ -7151,7 +7466,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_obliteration" } }, - [368]={ + [378]={ [1]={ [1]={ limit={ @@ -7167,7 +7482,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_onslaught" } }, - [369]={ + [379]={ [1]={ [1]={ limit={ @@ -7183,7 +7498,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_overcharge" } }, - [370]={ + [380]={ [1]={ [1]={ limit={ @@ -7199,7 +7514,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_overexertion" } }, - [371]={ + [381]={ [1]={ [1]={ limit={ @@ -7215,7 +7530,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_overheat" } }, - [372]={ + [382]={ [1]={ [1]={ limit={ @@ -7231,7 +7546,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_overloaded_intensity" } }, - [373]={ + [383]={ [1]={ [1]={ limit={ @@ -7247,7 +7562,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pacifism" } }, - [374]={ + [384]={ [1]={ [1]={ limit={ @@ -7263,7 +7578,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_parallel_projectiles" } }, - [375]={ + [385]={ [1]={ [1]={ limit={ @@ -7279,7 +7594,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage" } }, - [376]={ + [386]={ [1]={ [1]={ limit={ @@ -7295,7 +7610,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_physical_to_lightning" } }, - [377]={ + [387]={ [1]={ [1]={ limit={ @@ -7311,7 +7626,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pinpoint" } }, - [378]={ + [388]={ [1]={ [1]={ limit={ @@ -7327,7 +7642,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_point_blank" } }, - [379]={ + [389]={ [1]={ [1]={ limit={ @@ -7343,7 +7658,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_poison" } }, - [380]={ + [390]={ [1]={ [1]={ limit={ @@ -7359,7 +7674,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_power_charge_on_crit" } }, - [381]={ + [391]={ [1]={ [1]={ limit={ @@ -7375,7 +7690,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_prismatic_burst" } }, - [382]={ + [392]={ [1]={ [1]={ limit={ @@ -7391,7 +7706,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pulverise" } }, - [383]={ + [393]={ [1]={ [1]={ limit={ @@ -7407,7 +7722,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pyre" } }, - [384]={ + [394]={ [1]={ [1]={ limit={ @@ -7423,7 +7738,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rage" } }, - [385]={ + [395]={ [1]={ [1]={ limit={ @@ -7439,7 +7754,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rain" } }, - [386]={ + [396]={ [1]={ [1]={ limit={ @@ -7455,7 +7770,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ranged_attack_totem" } }, - [387]={ + [397]={ [1]={ [1]={ limit={ @@ -7471,7 +7786,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rapid_decay" } }, - [388]={ + [398]={ [1]={ [1]={ limit={ @@ -7487,7 +7802,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_reduced_block_chance" } }, - [389]={ + [399]={ [1]={ [1]={ limit={ @@ -7503,7 +7818,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_reduced_duration" } }, - [390]={ + [400]={ [1]={ [1]={ limit={ @@ -7519,7 +7834,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_remote_mine_2" } }, - [391]={ + [401]={ [1]={ [1]={ limit={ @@ -7535,7 +7850,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_returning_projectiles" } }, - [392]={ + [402]={ [1]={ [1]={ limit={ @@ -7544,14 +7859,14 @@ return { [2]="#" } }, - text="[DNT] Socketed Gems are Supported by Level {0} Rings of Light" + text="DNT Socketed Gems are Supported by Level {0} Rings of Light" } }, stats={ [1]="local_display_socketed_gems_supported_by_level_x_rings_of_light" } }, - [393]={ + [403]={ [1]={ [1]={ limit={ @@ -7567,7 +7882,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rupture" } }, - [394]={ + [404]={ [1]={ [1]={ limit={ @@ -7583,7 +7898,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ruthless" } }, - [395]={ + [405]={ [1]={ [1]={ limit={ @@ -7599,7 +7914,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_sacred_wisps" } }, - [396]={ + [406]={ [1]={ [1]={ limit={ @@ -7615,7 +7930,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_sacrifice" } }, - [397]={ + [407]={ [1]={ [1]={ limit={ @@ -7631,7 +7946,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_sadism" } }, - [398]={ + [408]={ [1]={ [1]={ limit={ @@ -7647,7 +7962,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_scornful_herald" } }, - [399]={ + [409]={ [1]={ [1]={ limit={ @@ -7663,7 +7978,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_second_wind" } }, - [400]={ + [410]={ [1]={ [1]={ limit={ @@ -7679,7 +7994,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_shockwave" } }, - [401]={ + [411]={ [1]={ [1]={ limit={ @@ -7695,7 +8010,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_slower_projectiles" } }, - [402]={ + [412]={ [1]={ [1]={ limit={ @@ -7711,7 +8026,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_snipe" } }, - [403]={ + [413]={ [1]={ [1]={ limit={ @@ -7727,7 +8042,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spell_cascade" } }, - [404]={ + [414]={ [1]={ [1]={ limit={ @@ -7743,7 +8058,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spell_focus" } }, - [405]={ + [415]={ [1]={ [1]={ limit={ @@ -7759,7 +8074,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spellblade" } }, - [406]={ + [416]={ [1]={ [1]={ limit={ @@ -7775,7 +8090,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spirit_strike" } }, - [407]={ + [417]={ [1]={ [1]={ limit={ @@ -7791,7 +8106,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_storm_barrier" } }, - [408]={ + [418]={ [1]={ [1]={ limit={ @@ -7807,7 +8122,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance" } }, - [409]={ + [419]={ [1]={ [1]={ limit={ @@ -7823,7 +8138,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill" } }, - [410]={ + [420]={ [1]={ [1]={ limit={ @@ -7839,7 +8154,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_swift_assembly" } }, - [411]={ + [421]={ [1]={ [1]={ limit={ @@ -7855,7 +8170,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_swiftbrand" } }, - [412]={ + [422]={ [1]={ [1]={ limit={ @@ -7871,7 +8186,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_tornados" } }, - [413]={ + [423]={ [1]={ [1]={ limit={ @@ -7887,7 +8202,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_transfusion" } }, - [414]={ + [424]={ [1]={ [1]={ limit={ @@ -7903,7 +8218,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trap_cooldown" } }, - [415]={ + [425]={ [1]={ [1]={ limit={ @@ -7919,7 +8234,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trauma" } }, - [416]={ + [426]={ [1]={ [1]={ limit={ @@ -7935,7 +8250,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trinity" } }, - [417]={ + [427]={ [1]={ [1]={ limit={ @@ -7951,7 +8266,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unbound_ailments" } }, - [418]={ + [428]={ [1]={ [1]={ limit={ @@ -7967,7 +8282,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_undead_army" } }, - [419]={ + [429]={ [1]={ [1]={ limit={ @@ -7983,7 +8298,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unholy_trinity" } }, - [420]={ + [430]={ [1]={ [1]={ limit={ @@ -7999,7 +8314,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unleash" } }, - [421]={ + [431]={ [1]={ [1]={ limit={ @@ -8015,7 +8330,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_urgent_orders" } }, - [422]={ + [432]={ [1]={ [1]={ limit={ @@ -8031,7 +8346,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_vaal_sacrifice" } }, - [423]={ + [433]={ [1]={ [1]={ limit={ @@ -8047,7 +8362,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_vaal_temptation" } }, - [424]={ + [434]={ [1]={ [1]={ limit={ @@ -8063,7 +8378,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_void_manipulation" } }, - [425]={ + [435]={ [1]={ [1]={ limit={ @@ -8079,7 +8394,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_void_shockwave" } }, - [426]={ + [436]={ [1]={ [1]={ limit={ @@ -8095,7 +8410,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_voidstorm" } }, - [427]={ + [437]={ [1]={ [1]={ limit={ @@ -8111,7 +8426,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_volatility" } }, - [428]={ + [438]={ [1]={ [1]={ limit={ @@ -8127,7 +8442,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ward" } }, - [429]={ + [439]={ [1]={ [1]={ limit={ @@ -8143,7 +8458,23 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chaos_attacks" } }, - [430]={ + [440]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Combustion" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_x_combustion_level" + } + }, + [441]={ [1]={ [1]={ limit={ @@ -8159,7 +8490,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_intensify_level" } }, - [431]={ + [442]={ [1]={ [1]={ limit={ @@ -8175,7 +8506,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_returning_projectiles_level" } }, - [432]={ + [443]={ [1]={ [1]={ limit={ @@ -8191,7 +8522,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_summon_phantasm_level" } }, - [433]={ + [444]={ [1]={ [1]={ limit={ @@ -8207,7 +8538,7 @@ return { [1]="local_display_socketed_triggered_skills_deal_double_damage" } }, - [434]={ + [445]={ [1]={ [1]={ limit={ @@ -8223,7 +8554,7 @@ return { [1]="local_display_supported_by_level_10_controlled_destruction" } }, - [435]={ + [446]={ [1]={ [1]={ limit={ @@ -8239,7 +8570,7 @@ return { [1]="local_display_supported_by_level_10_intensify" } }, - [436]={ + [447]={ [1]={ [1]={ limit={ @@ -8255,7 +8586,7 @@ return { [1]="local_display_supported_by_level_10_spell_echo" } }, - [437]={ + [448]={ [1]={ [1]={ limit={ @@ -8271,7 +8602,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_chaos_damage" } }, - [438]={ + [449]={ [1]={ [1]={ limit={ @@ -8287,7 +8618,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_cold_damage" } }, - [439]={ + [450]={ [1]={ [1]={ limit={ @@ -8303,7 +8634,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_fire_damage" } }, - [440]={ + [451]={ [1]={ [1]={ limit={ @@ -8319,7 +8650,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_lightning_damage" } }, - [441]={ + [452]={ [1]={ [1]={ limit={ @@ -8335,7 +8666,7 @@ return { [1]="local_display_supported_by_level_x_awakened_ancestral_call" } }, - [442]={ + [453]={ [1]={ [1]={ limit={ @@ -8351,7 +8682,7 @@ return { [1]="local_display_supported_by_level_x_awakened_arrow_nova" } }, - [443]={ + [454]={ [1]={ [1]={ limit={ @@ -8367,7 +8698,7 @@ return { [1]="local_display_supported_by_level_x_awakened_blasphemy" } }, - [444]={ + [455]={ [1]={ [1]={ limit={ @@ -8383,7 +8714,7 @@ return { [1]="local_display_supported_by_level_x_awakened_brutality" } }, - [445]={ + [456]={ [1]={ [1]={ limit={ @@ -8399,7 +8730,7 @@ return { [1]="local_display_supported_by_level_x_awakened_burning_damage" } }, - [446]={ + [457]={ [1]={ [1]={ limit={ @@ -8415,7 +8746,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cast_on_crit" } }, - [447]={ + [458]={ [1]={ [1]={ limit={ @@ -8431,7 +8762,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cast_while_channelling" } }, - [448]={ + [459]={ [1]={ [1]={ limit={ @@ -8447,7 +8778,7 @@ return { [1]="local_display_supported_by_level_x_awakened_chain" } }, - [449]={ + [460]={ [1]={ [1]={ limit={ @@ -8463,7 +8794,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cold_penetration" } }, - [450]={ + [461]={ [1]={ [1]={ limit={ @@ -8479,7 +8810,7 @@ return { [1]="local_display_supported_by_level_x_awakened_controlled_destruction" } }, - [451]={ + [462]={ [1]={ [1]={ limit={ @@ -8495,7 +8826,7 @@ return { [1]="local_display_supported_by_level_x_awakened_curse_on_hit" } }, - [452]={ + [463]={ [1]={ [1]={ limit={ @@ -8511,7 +8842,7 @@ return { [1]="local_display_supported_by_level_x_awakened_deadly_ailments" } }, - [453]={ + [464]={ [1]={ [1]={ limit={ @@ -8527,7 +8858,7 @@ return { [1]="local_display_supported_by_level_x_awakened_elemental_focus" } }, - [454]={ + [465]={ [1]={ [1]={ limit={ @@ -8543,7 +8874,7 @@ return { [1]="local_display_supported_by_level_x_awakened_empower" } }, - [455]={ + [466]={ [1]={ [1]={ limit={ @@ -8559,7 +8890,7 @@ return { [1]="local_display_supported_by_level_x_awakened_enhance" } }, - [456]={ + [467]={ [1]={ [1]={ limit={ @@ -8575,7 +8906,7 @@ return { [1]="local_display_supported_by_level_x_awakened_enlighten" } }, - [457]={ + [468]={ [1]={ [1]={ limit={ @@ -8591,7 +8922,7 @@ return { [1]="local_display_supported_by_level_x_awakened_fire_penetration" } }, - [458]={ + [469]={ [1]={ [1]={ limit={ @@ -8607,7 +8938,7 @@ return { [1]="local_display_supported_by_level_x_awakened_fork" } }, - [459]={ + [470]={ [1]={ [1]={ limit={ @@ -8623,7 +8954,7 @@ return { [1]="local_display_supported_by_level_x_awakened_generosity" } }, - [460]={ + [471]={ [1]={ [1]={ limit={ @@ -8639,7 +8970,7 @@ return { [1]="local_display_supported_by_level_x_awakened_greater_multiple_projectiles" } }, - [461]={ + [472]={ [1]={ [1]={ limit={ @@ -8655,7 +8986,7 @@ return { [1]="local_display_supported_by_level_x_awakened_increased_area_of_effect" } }, - [462]={ + [473]={ [1]={ [1]={ limit={ @@ -8671,7 +9002,7 @@ return { [1]="local_display_supported_by_level_x_awakened_lightning_penetration" } }, - [463]={ + [474]={ [1]={ [1]={ limit={ @@ -8687,7 +9018,7 @@ return { [1]="local_display_supported_by_level_x_awakened_melee_physical_damage" } }, - [464]={ + [475]={ [1]={ [1]={ limit={ @@ -8703,7 +9034,7 @@ return { [1]="local_display_supported_by_level_x_awakened_melee_splash" } }, - [465]={ + [476]={ [1]={ [1]={ limit={ @@ -8719,7 +9050,7 @@ return { [1]="local_display_supported_by_level_x_awakened_minion_damage" } }, - [466]={ + [477]={ [1]={ [1]={ limit={ @@ -8735,7 +9066,7 @@ return { [1]="local_display_supported_by_level_x_awakened_multistrike" } }, - [467]={ + [478]={ [1]={ [1]={ limit={ @@ -8751,7 +9082,7 @@ return { [1]="local_display_supported_by_level_x_awakened_spell_cascade" } }, - [468]={ + [479]={ [1]={ [1]={ limit={ @@ -8767,7 +9098,7 @@ return { [1]="local_display_supported_by_level_x_awakened_spell_echo" } }, - [469]={ + [480]={ [1]={ [1]={ limit={ @@ -8783,7 +9114,7 @@ return { [1]="local_display_supported_by_level_x_awakened_swift_affliction" } }, - [470]={ + [481]={ [1]={ [1]={ limit={ @@ -8799,7 +9130,7 @@ return { [1]="local_display_supported_by_level_x_awakened_unbound_ailments" } }, - [471]={ + [482]={ [1]={ [1]={ limit={ @@ -8815,7 +9146,7 @@ return { [1]="local_display_supported_by_level_x_awakened_unleash" } }, - [472]={ + [483]={ [1]={ [1]={ limit={ @@ -8831,7 +9162,7 @@ return { [1]="local_display_supported_by_level_x_awakened_vicious_projectiles" } }, - [473]={ + [484]={ [1]={ [1]={ limit={ @@ -8847,7 +9178,7 @@ return { [1]="local_display_supported_by_level_x_awakened_void_manipulation" } }, - [474]={ + [485]={ [1]={ [1]={ limit={ @@ -8863,7 +9194,7 @@ return { [1]="local_display_supported_by_level_x_awakened_weapon_elemental_damage" } }, - [475]={ + [486]={ [1]={ [1]={ [1]={ @@ -8888,7 +9219,7 @@ return { [2]="local_random_support_gem_index" } }, - [476]={ + [487]={ [1]={ [1]={ [1]={ @@ -8913,7 +9244,7 @@ return { [2]="local_random_support_gem_index_1" } }, - [477]={ + [488]={ [1]={ [1]={ limit={ @@ -8929,7 +9260,7 @@ return { [1]="local_display_socketed_gems_get_concentrated_area_level" } }, - [478]={ + [489]={ [1]={ [1]={ limit={ @@ -8945,7 +9276,7 @@ return { [1]="local_display_socketed_gems_get_trap_level" } }, - [479]={ + [490]={ [1]={ [1]={ limit={ @@ -8961,7 +9292,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cluster_trap" } }, - [480]={ + [491]={ [1]={ [1]={ limit={ @@ -8977,7 +9308,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multi_trap" } }, - [481]={ + [492]={ [1]={ [1]={ limit={ @@ -8993,7 +9324,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage" } }, - [482]={ + [493]={ [1]={ [1]={ limit={ @@ -9009,7 +9340,7 @@ return { [1]="local_display_socketed_gems_get_added_chaos_damage_level" } }, - [483]={ + [494]={ [1]={ [1]={ limit={ @@ -9025,7 +9356,7 @@ return { [1]="local_display_socketed_gems_get_blood_magic_level" } }, - [484]={ + [495]={ [1]={ [1]={ limit={ @@ -9041,7 +9372,7 @@ return { [1]="local_display_socketed_gems_get_increased_duration_level" } }, - [485]={ + [496]={ [1]={ [1]={ limit={ @@ -9057,7 +9388,7 @@ return { [1]="base_strength_and_intelligence" } }, - [486]={ + [497]={ [1]={ [1]={ limit={ @@ -9073,7 +9404,7 @@ return { [1]="local_display_socketed_gems_get_added_fire_damage_level" } }, - [487]={ + [498]={ [1]={ [1]={ limit={ @@ -9089,7 +9420,7 @@ return { [1]="local_display_socketed_gems_get_cold_to_fire_level" } }, - [488]={ + [499]={ [1]={ [1]={ limit={ @@ -9105,7 +9436,7 @@ return { [1]="local_display_socketed_gems_get_spell_totem_level" } }, - [489]={ + [500]={ [1]={ [1]={ limit={ @@ -9121,7 +9452,7 @@ return { [1]="local_display_socketed_gems_get_fire_penetration_level" } }, - [490]={ + [501]={ [1]={ [1]={ limit={ @@ -9137,7 +9468,7 @@ return { [1]="local_display_socketed_gems_get_elemental_proliferation_level" } }, - [491]={ + [502]={ [1]={ [1]={ limit={ @@ -9153,7 +9484,7 @@ return { [1]="local_display_socketed_gems_get_added_lightning_damage_level" } }, - [492]={ + [503]={ [1]={ [1]={ limit={ @@ -9169,7 +9500,7 @@ return { [1]="local_display_socketed_gems_get_melee_physical_damage_level" } }, - [493]={ + [504]={ [1]={ [1]={ limit={ @@ -9185,7 +9516,7 @@ return { [1]="local_display_socketed_gems_get_faster_attacks_level" } }, - [494]={ + [505]={ [1]={ [1]={ limit={ @@ -9201,7 +9532,7 @@ return { [1]="local_display_socketed_gems_get_blind_level" } }, - [495]={ + [506]={ [1]={ [1]={ limit={ @@ -9217,7 +9548,7 @@ return { [1]="local_display_socketed_gems_get_melee_splash_level" } }, - [496]={ + [507]={ [1]={ [1]={ limit={ @@ -9233,7 +9564,7 @@ return { [1]="local_display_socketed_gems_get_cast_on_crit_level" } }, - [497]={ + [508]={ [1]={ [1]={ limit={ @@ -9249,7 +9580,7 @@ return { [1]="map_expedition_league" } }, - [498]={ + [509]={ [1]={ [1]={ limit={ @@ -9278,7 +9609,7 @@ return { [1]="map_runic_monster_life_+%_final" } }, - [499]={ + [510]={ [1]={ [1]={ limit={ @@ -9307,7 +9638,7 @@ return { [1]="map_runic_monster_damage_+%_final" } }, - [500]={ + [511]={ [1]={ [1]={ limit={ @@ -9323,7 +9654,7 @@ return { [1]="map_reliquary_must_complete_expedition" } }, - [501]={ + [512]={ [1]={ [1]={ limit={ @@ -9339,7 +9670,7 @@ return { [1]="local_display_socketed_gems_get_cast_when_stunned_level" } }, - [502]={ + [513]={ [1]={ [1]={ limit={ @@ -9355,7 +9686,7 @@ return { [1]="local_display_socketed_gems_get_cast_on_death_level" } }, - [503]={ + [514]={ [1]={ [1]={ limit={ @@ -9371,7 +9702,7 @@ return { [1]="local_display_socketed_gems_get_stun_level" } }, - [504]={ + [515]={ [1]={ [1]={ limit={ @@ -9387,7 +9718,7 @@ return { [1]="local_display_socketed_gems_get_additional_accuracy_level" } }, - [505]={ + [516]={ [1]={ [1]={ limit={ @@ -9403,7 +9734,7 @@ return { [1]="local_display_socketed_gems_get_multistrike_level" } }, - [506]={ + [517]={ [1]={ [1]={ limit={ @@ -9419,7 +9750,7 @@ return { [1]="local_display_socketed_gems_get_faster_projectiles_level" } }, - [507]={ + [518]={ [1]={ [1]={ limit={ @@ -9435,7 +9766,7 @@ return { [1]="local_display_socketed_gems_get_life_leech_level" } }, - [508]={ + [519]={ [1]={ [1]={ limit={ @@ -9451,7 +9782,7 @@ return { [1]="local_display_socketed_gems_get_chance_to_bleed_level" } }, - [509]={ + [520]={ [1]={ [1]={ limit={ @@ -9467,7 +9798,7 @@ return { [1]="local_display_socketed_gems_get_increased_critical_damage_level" } }, - [510]={ + [521]={ [1]={ [1]={ limit={ @@ -9483,7 +9814,7 @@ return { [1]="local_display_socketed_gems_get_fork_level" } }, - [511]={ + [522]={ [1]={ [1]={ limit={ @@ -9499,7 +9830,7 @@ return { [1]="local_display_socketed_gems_get_weapon_elemental_damage_level" } }, - [512]={ + [523]={ [1]={ [1]={ limit={ @@ -9515,7 +9846,7 @@ return { [1]="map_supporter_ruin_ghost_daemon_spawn" } }, - [513]={ + [524]={ [1]={ [1]={ limit={ @@ -9531,7 +9862,7 @@ return { [1]="map_disable_ultimatum_from_chance" } }, - [514]={ + [525]={ [1]={ [1]={ limit={ @@ -9547,7 +9878,7 @@ return { [1]="map_area_contains_ultimatum" } }, - [515]={ + [526]={ [1]={ [1]={ limit={ @@ -9563,7 +9894,7 @@ return { [1]="map_ultimatum_modifiers_are_chosen_for_you" } }, - [516]={ + [527]={ [1]={ [1]={ limit={ @@ -9579,7 +9910,7 @@ return { [1]="map_reliquary_must_complete_ultimatum" } }, - [517]={ + [528]={ [1]={ [1]={ limit={ @@ -9595,7 +9926,7 @@ return { [1]="local_display_socketed_gems_get_echo_level" } }, - [518]={ + [529]={ [1]={ [1]={ limit={ @@ -9611,7 +9942,7 @@ return { [1]="local_display_socketed_gems_get_reduced_mana_cost_level" } }, - [519]={ + [530]={ [1]={ [1]={ limit={ @@ -9627,7 +9958,7 @@ return { [1]="local_display_socketed_gems_get_generosity_level" } }, - [520]={ + [531]={ [1]={ [1]={ limit={ @@ -9643,7 +9974,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fortify" } }, - [521]={ + [532]={ [1]={ [1]={ limit={ @@ -9659,7 +9990,7 @@ return { [1]="local_display_socketed_gems_get_remote_mine_level" } }, - [522]={ + [533]={ [1]={ [1]={ limit={ @@ -9675,7 +10006,7 @@ return { [1]="local_display_socketed_gems_get_flee_level" } }, - [523]={ + [534]={ [1]={ [1]={ [1]={ @@ -9695,7 +10026,7 @@ return { [1]="detect_player_has_foolishly_drawn_attention" } }, - [524]={ + [535]={ [1]={ [1]={ limit={ @@ -9711,7 +10042,7 @@ return { [1]="local_display_socketed_gems_get_faster_cast_level" } }, - [525]={ + [536]={ [1]={ [1]={ limit={ @@ -9727,7 +10058,7 @@ return { [1]="local_display_socketed_gems_get_iron_will_level" } }, - [526]={ + [537]={ [1]={ [1]={ limit={ @@ -9743,7 +10074,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_knockback_level" } }, - [527]={ + [538]={ [1]={ [1]={ limit={ @@ -9759,7 +10090,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_focused_channelling_level" } }, - [528]={ + [539]={ [1]={ [1]={ limit={ @@ -9775,7 +10106,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_life_level" } }, - [529]={ + [540]={ [1]={ [1]={ limit={ @@ -9791,7 +10122,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level" } }, - [530]={ + [541]={ [1]={ [1]={ limit={ @@ -9807,7 +10138,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_damage_level" } }, - [531]={ + [542]={ [1]={ [1]={ limit={ @@ -9823,7 +10154,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_critical_damage_level" } }, - [532]={ + [543]={ [1]={ [1]={ limit={ @@ -9839,7 +10170,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_speed_level" } }, - [533]={ + [544]={ [1]={ [1]={ limit={ @@ -9855,7 +10186,7 @@ return { [1]="local_display_socketed_gems_supported_by_pierce_level" } }, - [534]={ + [545]={ [1]={ [1]={ limit={ @@ -9871,7 +10202,7 @@ return { [1]="local_display_socketed_gems_get_pierce_level" } }, - [535]={ + [546]={ [1]={ [1]={ limit={ @@ -9887,7 +10218,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_hypothermia" } }, - [536]={ + [547]={ [1]={ [1]={ limit={ @@ -9903,7 +10234,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_ice_bite" } }, - [537]={ + [548]={ [1]={ [1]={ limit={ @@ -9919,7 +10250,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_cold_penetration" } }, - [538]={ + [549]={ [1]={ [1]={ limit={ @@ -9935,7 +10266,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_mana_leech" } }, - [539]={ + [550]={ [1]={ [1]={ limit={ @@ -9951,7 +10282,7 @@ return { [1]="map_area_contains_rituals" } }, - [540]={ + [551]={ [1]={ [1]={ limit={ @@ -9967,7 +10298,7 @@ return { [1]="map_ritual_cannot_recover_life_or_energy_shield_above_X_%" } }, - [541]={ + [552]={ [1]={ [1]={ limit={ @@ -9983,7 +10314,7 @@ return { [1]="map_reliquary_must_complete_rituals" } }, - [542]={ + [553]={ [1]={ [1]={ limit={ @@ -9999,7 +10330,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_added_cold_damage" } }, - [543]={ + [554]={ [1]={ [1]={ limit={ @@ -10015,7 +10346,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_reduced_mana_cost" } }, - [544]={ + [555]={ [1]={ [1]={ limit={ @@ -10031,7 +10362,7 @@ return { [1]="local_display_socketed_curse_gems_supported_by_level_x_blasphemy" } }, - [545]={ + [556]={ [1]={ [1]={ limit={ @@ -10047,7 +10378,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_innervate_level" } }, - [546]={ + [557]={ [1]={ [1]={ limit={ @@ -10063,7 +10394,7 @@ return { [1]="local_display_socketed_gems_supported_by_X_vile_toxins" } }, - [547]={ + [558]={ [1]={ [1]={ limit={ @@ -10079,7 +10410,7 @@ return { [1]="local_display_socketed_gems_supported_by_X_lesser_poison" } }, - [548]={ + [559]={ [1]={ [1]={ limit={ @@ -10095,7 +10426,7 @@ return { [1]="display_socketed_minion_gems_supported_by_level_X_life_leech" } }, - [549]={ + [560]={ [1]={ [1]={ limit={ @@ -10111,7 +10442,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_controlled_destruction" } }, - [550]={ + [561]={ [1]={ [1]={ limit={ @@ -10127,7 +10458,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun" } }, - [551]={ + [562]={ [1]={ [1]={ limit={ @@ -10143,7 +10474,7 @@ return { [1]="local_display_socketed_gems_have_blood_magic" } }, - [552]={ + [563]={ [1]={ [1]={ [1]={ @@ -10172,7 +10503,7 @@ return { [1]="local_display_socketed_gems_have_mana_reservation_+%" } }, - [553]={ + [564]={ [1]={ [1]={ limit={ @@ -10188,7 +10519,7 @@ return { [1]="disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana" } }, - [554]={ + [565]={ [1]={ [1]={ limit={ @@ -10204,7 +10535,7 @@ return { [1]="local_display_socketed_gems_get_mana_multplier_%" } }, - [555]={ + [566]={ [1]={ [1]={ limit={ @@ -10233,7 +10564,7 @@ return { [1]="local_display_socketed_melee_gems_have_area_radius_+%" } }, - [556]={ + [567]={ [1]={ [1]={ limit={ @@ -10249,7 +10580,7 @@ return { [1]="local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire" } }, - [557]={ + [568]={ [1]={ [1]={ limit={ @@ -10265,7 +10596,7 @@ return { [1]="local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation" } }, - [558]={ + [569]={ [1]={ [1]={ limit={ @@ -10290,7 +10621,7 @@ return { [1]="local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage" } }, - [559]={ + [570]={ [1]={ [1]={ limit={ @@ -10306,7 +10637,7 @@ return { [1]="local_display_socketed_gems_have_chance_to_flee_%" } }, - [560]={ + [571]={ [1]={ [1]={ limit={ @@ -10335,7 +10666,7 @@ return { [1]="local_display_socketed_gems_get_item_quantity_+%" } }, - [561]={ + [572]={ [1]={ [1]={ [1]={ @@ -10355,7 +10686,7 @@ return { [1]="spell_damage_taken_+_per_barkskin_stack" } }, - [562]={ + [573]={ [1]={ [1]={ limit={ @@ -10371,7 +10702,7 @@ return { [1]="local_display_socketed_gems_get_curse_reflection" } }, - [563]={ + [574]={ [1]={ [1]={ limit={ @@ -10387,7 +10718,7 @@ return { [1]="local_display_socketed_gems_have_iron_will" } }, - [564]={ + [575]={ [1]={ [1]={ limit={ @@ -10403,7 +10734,7 @@ return { [1]="local_display_socketed_gems_chain_X_additional_times" } }, - [565]={ + [576]={ [1]={ [1]={ limit={ @@ -10436,7 +10767,7 @@ return { [1]="local_display_socketed_gems_additional_critical_strike_chance_%" } }, - [566]={ + [577]={ [1]={ [1]={ limit={ @@ -10461,7 +10792,7 @@ return { [1]="local_display_socketed_spells_repeat_count" } }, - [567]={ + [578]={ [1]={ [1]={ limit={ @@ -10477,7 +10808,7 @@ return { [1]="apply_hex_on_enemy_that_triggers_traps" } }, - [568]={ + [579]={ [1]={ [1]={ limit={ @@ -10502,7 +10833,7 @@ return { [1]="chance_to_trigger_socketed_spell_on_bow_attack_%" } }, - [569]={ + [580]={ [1]={ [1]={ limit={ @@ -10527,7 +10858,7 @@ return { [1]="local_display_avoid_interruption_%_while_using_socketed_attack_skills" } }, - [570]={ + [581]={ [1]={ [1]={ limit={ @@ -10556,7 +10887,7 @@ return { [1]="local_display_socketed_attack_damage_+%_final" } }, - [571]={ + [582]={ [1]={ [1]={ [1]={ @@ -10576,7 +10907,7 @@ return { [1]="local_display_socketed_attacks_additional_critical_strike_chance" } }, - [572]={ + [583]={ [1]={ [1]={ limit={ @@ -10592,7 +10923,7 @@ return { [1]="local_display_socketed_attacks_critical_strike_multiplier_+" } }, - [573]={ + [584]={ [1]={ [1]={ limit={ @@ -10608,7 +10939,7 @@ return { [1]="local_display_socketed_attacks_mana_cost_+" } }, - [574]={ + [585]={ [1]={ [1]={ limit={ @@ -10624,7 +10955,7 @@ return { [1]="local_display_socketed_gems_attack_and_cast_speed_+%_final" } }, - [575]={ + [586]={ [1]={ [1]={ limit={ @@ -10640,7 +10971,7 @@ return { [1]="local_display_socketed_gems_curse_auras_also_affect_you" } }, - [576]={ + [587]={ [1]={ [1]={ [1]={ @@ -10660,7 +10991,7 @@ return { [1]="local_display_socketed_gems_damage_+%_final_while_on_low_life" } }, - [577]={ + [588]={ [1]={ [1]={ limit={ @@ -10676,7 +11007,7 @@ return { [1]="local_display_socketed_gems_elemental_damage_+%_final" } }, - [578]={ + [589]={ [1]={ [1]={ [1]={ @@ -10696,7 +11027,7 @@ return { [1]="local_display_socketed_gems_exposure_on_hit" } }, - [579]={ + [590]={ [1]={ [1]={ limit={ @@ -10705,7 +11036,7 @@ return { [2]="#" } }, - text="Socketed Gems have {0}% reduced Mana Cost" + text="Socketed Gems have {0}% less Mana Cost" }, [2]={ [1]={ @@ -10718,14 +11049,14 @@ return { [2]=-1 } }, - text="Socketed Gems have {0}% increased Mana Cost" + text="Socketed Gems have {0}% more Mana Cost" } }, stats={ [1]="local_display_socketed_gems_mana_cost_-%" } }, - [580]={ + [591]={ [1]={ [1]={ limit={ @@ -10746,7 +11077,7 @@ return { [2]="local_display_socketed_gems_maximum_added_fire_damage" } }, - [581]={ + [592]={ [1]={ [1]={ limit={ @@ -10762,7 +11093,7 @@ return { [1]="local_display_socketed_gems_physical_damage_%_to_add_as_lightning" } }, - [582]={ + [593]={ [1]={ [1]={ limit={ @@ -10787,7 +11118,7 @@ return { [1]="local_display_socketed_gems_projectile_damage_+%_final" } }, - [583]={ + [594]={ [1]={ [1]={ [1]={ @@ -10807,7 +11138,7 @@ return { [1]="local_display_socketed_gems_projectile_spells_cooldown_modifier_ms" } }, - [584]={ + [595]={ [1]={ [1]={ limit={ @@ -10823,7 +11154,7 @@ return { [1]="local_display_socketed_movement_skills_have_no_mana_cost" } }, - [585]={ + [596]={ [1]={ [1]={ limit={ @@ -10852,7 +11183,7 @@ return { [1]="local_display_socketed_skills_attack_speed_+%" } }, - [586]={ + [597]={ [1]={ [1]={ limit={ @@ -10881,7 +11212,7 @@ return { [1]="local_display_socketed_skills_cast_speed_+%" } }, - [587]={ + [598]={ [1]={ [1]={ limit={ @@ -10897,7 +11228,7 @@ return { [1]="local_display_socketed_skills_deal_double_damage" } }, - [588]={ + [599]={ [1]={ [1]={ limit={ @@ -10913,7 +11244,7 @@ return { [1]="local_display_socketed_skills_fork" } }, - [589]={ + [600]={ [1]={ [1]={ limit={ @@ -10942,7 +11273,7 @@ return { [1]="local_display_socketed_spell_damage_+%_final" } }, - [590]={ + [601]={ [1]={ [1]={ [1]={ @@ -10962,7 +11293,7 @@ return { [1]="local_display_socketed_spells_additional_critical_strike_chance" } }, - [591]={ + [602]={ [1]={ [1]={ limit={ @@ -10978,7 +11309,7 @@ return { [1]="local_display_socketed_spells_critical_strike_multiplier_+" } }, - [592]={ + [603]={ [1]={ [1]={ limit={ @@ -11011,7 +11342,7 @@ return { [1]="local_display_socketed_spells_mana_cost_+%" } }, - [593]={ + [604]={ [1]={ [1]={ limit={ @@ -11040,7 +11371,7 @@ return { [1]="local_display_socketed_travel_skills_damage_+%_final" } }, - [594]={ + [605]={ [1]={ [1]={ limit={ @@ -11069,7 +11400,7 @@ return { [1]="local_display_socketed_vaal_skills_area_of_effect_+%" } }, - [595]={ + [606]={ [1]={ [1]={ limit={ @@ -11098,7 +11429,7 @@ return { [1]="local_display_socketed_vaal_skills_aura_effect_+%" } }, - [596]={ + [607]={ [1]={ [1]={ limit={ @@ -11127,7 +11458,7 @@ return { [1]="local_display_socketed_vaal_skills_damage_+%_final" } }, - [597]={ + [608]={ [1]={ [1]={ limit={ @@ -11156,7 +11487,7 @@ return { [1]="local_display_socketed_vaal_skills_effect_duration_+%" } }, - [598]={ + [609]={ [1]={ [1]={ [1]={ @@ -11176,7 +11507,7 @@ return { [1]="local_display_socketed_vaal_skills_elusive_on_use" } }, - [599]={ + [610]={ [1]={ [1]={ limit={ @@ -11201,7 +11532,7 @@ return { [1]="local_display_socketed_vaal_skills_extra_damage_rolls" } }, - [600]={ + [611]={ [1]={ [1]={ limit={ @@ -11217,7 +11548,7 @@ return { [1]="local_display_socketed_vaal_skills_ignore_monster_phys_reduction" } }, - [601]={ + [612]={ [1]={ [1]={ limit={ @@ -11233,7 +11564,7 @@ return { [1]="local_display_socketed_vaal_skills_ignore_monster_resistances" } }, - [602]={ + [613]={ [1]={ [1]={ limit={ @@ -11249,7 +11580,7 @@ return { [1]="local_display_socketed_vaal_skills_no_soul_gain_prevention_duration" } }, - [603]={ + [614]={ [1]={ [1]={ limit={ @@ -11278,7 +11609,7 @@ return { [1]="local_display_socketed_vaal_skills_projectile_speed_+%" } }, - [604]={ + [615]={ [1]={ [1]={ limit={ @@ -11307,7 +11638,7 @@ return { [1]="local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%" } }, - [605]={ + [616]={ [1]={ [1]={ limit={ @@ -11336,7 +11667,7 @@ return { [1]="local_display_socketed_vaal_skills_soul_requirement_+%_final" } }, - [606]={ + [617]={ [1]={ [1]={ limit={ @@ -11352,7 +11683,7 @@ return { [1]="local_display_socketed_vaal_skills_store_uses_+" } }, - [607]={ + [618]={ [1]={ [1]={ limit={ @@ -11377,7 +11708,7 @@ return { [1]="local_display_socketed_warcry_skills_cooldown_use_+" } }, - [608]={ + [619]={ [1]={ [1]={ limit={ @@ -11393,7 +11724,7 @@ return { [1]="local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills" } }, - [609]={ + [620]={ [1]={ [1]={ [1]={ @@ -11413,7 +11744,7 @@ return { [1]="local_display_tailwind_if_socketed_vaal_skill_used_recently" } }, - [610]={ + [621]={ [1]={ [1]={ limit={ @@ -11429,7 +11760,7 @@ return { [1]="map_num_extra_blights_" } }, - [611]={ + [622]={ [1]={ [1]={ limit={ @@ -11445,7 +11776,7 @@ return { [1]="map_ichor_pump_one_durability" } }, - [612]={ + [623]={ [1]={ [1]={ limit={ @@ -11461,7 +11792,7 @@ return { [1]="map_reliquary_must_complete_blights" } }, - [613]={ + [624]={ [1]={ [1]={ limit={ @@ -11477,7 +11808,7 @@ return { [1]="soulcord_have_acceleration_shrine_effect_if_affected_by_no_flasks" } }, - [614]={ + [625]={ [1]={ [1]={ limit={ @@ -11493,7 +11824,7 @@ return { [1]="soulcord_have_brutal_shrine_effect_if_affected_by_no_flasks" } }, - [615]={ + [626]={ [1]={ [1]={ limit={ @@ -11509,7 +11840,7 @@ return { [1]="soulcord_have_chilling_shrine_effect_if_affected_by_no_flasks" } }, - [616]={ + [627]={ [1]={ [1]={ limit={ @@ -11525,7 +11856,7 @@ return { [1]="soulcord_have_diamond_shrine_effect_if_affected_by_no_flasks" } }, - [617]={ + [628]={ [1]={ [1]={ limit={ @@ -11541,7 +11872,7 @@ return { [1]="soulcord_have_echoing_shrine_effect_if_affected_by_no_flasks" } }, - [618]={ + [629]={ [1]={ [1]={ limit={ @@ -11557,7 +11888,7 @@ return { [1]="soulcord_have_gloom_shrine_effect_if_affected_by_no_flasks" } }, - [619]={ + [630]={ [1]={ [1]={ limit={ @@ -11573,7 +11904,7 @@ return { [1]="soulcord_have_impenetrable_shrine_effect_if_affected_by_no_flasks" } }, - [620]={ + [631]={ [1]={ [1]={ limit={ @@ -11589,7 +11920,7 @@ return { [1]="soulcord_have_massive_shrine_effect_if_affected_by_no_flasks" } }, - [621]={ + [632]={ [1]={ [1]={ limit={ @@ -11605,7 +11936,7 @@ return { [1]="soulcord_have_replenishing_shrine_effect_if_affected_by_no_flasks" } }, - [622]={ + [633]={ [1]={ [1]={ limit={ @@ -11621,7 +11952,7 @@ return { [1]="soulcord_have_resistance_shrine_effect_if_affected_by_no_flasks" } }, - [623]={ + [634]={ [1]={ [1]={ limit={ @@ -11637,7 +11968,7 @@ return { [1]="soulcord_have_resonating_shrine_effect_if_affected_by_no_flasks" } }, - [624]={ + [635]={ [1]={ [1]={ limit={ @@ -11653,7 +11984,7 @@ return { [1]="soulcord_have_shocking_shrine_effect_if_affected_by_no_flasks" } }, - [625]={ + [636]={ [1]={ [1]={ limit={ @@ -11669,7 +12000,7 @@ return { [1]="soulcord_have_skeleton_shrine_effect_if_affected_by_no_flasks" } }, - [626]={ + [637]={ [1]={ [1]={ limit={ @@ -11698,7 +12029,7 @@ return { [1]="local_display_socketed_gems_damage_over_time_+%_final" } }, - [627]={ + [638]={ [1]={ [1]={ [1]={ @@ -11718,7 +12049,7 @@ return { [1]="local_display_socketed_gems_have_elemental_equilibrium" } }, - [628]={ + [639]={ [1]={ [1]={ limit={ @@ -11747,7 +12078,7 @@ return { [1]="local_display_socketed_non_curse_aura_gems_effect_+%" } }, - [629]={ + [640]={ [1]={ [1]={ [1]={ @@ -11767,7 +12098,7 @@ return { [1]="local_display_socketed_gems_have_secrets_of_suffering" } }, - [630]={ + [641]={ [1]={ [1]={ [1]={ @@ -11808,7 +12139,7 @@ return { [1]="local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent" } }, - [631]={ + [642]={ [1]={ [1]={ limit={ @@ -11833,7 +12164,7 @@ return { [1]="local_display_socketed_gems_have_number_of_additional_projectiles" } }, - [632]={ + [643]={ [1]={ [1]={ limit={ @@ -11858,7 +12189,7 @@ return { [1]="local_display_socketed_spells_additional_projectiles" } }, - [633]={ + [644]={ [1]={ [1]={ limit={ @@ -11874,7 +12205,7 @@ return { [1]="local_display_socketed_gems_projectiles_nova" } }, - [634]={ + [645]={ [1]={ [1]={ limit={ @@ -11890,7 +12221,7 @@ return { [1]="local_display_socketed_spells_projectiles_circle" } }, - [635]={ + [646]={ [1]={ [1]={ limit={ @@ -11919,7 +12250,7 @@ return { [1]="local_display_socketed_gems_skill_effect_duration_+%" } }, - [636]={ + [647]={ [1]={ [1]={ limit={ @@ -11948,7 +12279,7 @@ return { [1]="local_display_socketed_projectile_spells_duration_+%_final" } }, - [637]={ + [648]={ [1]={ [1]={ [1]={ @@ -11968,7 +12299,7 @@ return { [1]="local_display_socketed_trap_skills_create_smoke_cloud" } }, - [638]={ + [649]={ [1]={ [1]={ [1]={ @@ -11997,7 +12328,7 @@ return { [1]="local_display_socketed_curse_gems_have_mana_reservation_+%" } }, - [639]={ + [650]={ [1]={ [1]={ limit={ @@ -12013,7 +12344,7 @@ return { [1]="hierophant_helmet_supported_by_elemental_penetration" } }, - [640]={ + [651]={ [1]={ [1]={ limit={ @@ -12029,7 +12360,7 @@ return { [1]="hierophant_gloves_supported_by_increased_area_of_effect" } }, - [641]={ + [652]={ [1]={ [1]={ limit={ @@ -12045,7 +12376,7 @@ return { [1]="hierophant_boots_supported_by_life_leech" } }, - [642]={ + [653]={ [1]={ [1]={ limit={ @@ -12061,7 +12392,7 @@ return { [1]="chieftain_body_armour_supported_by_level_x_ancestral_call" } }, - [643]={ + [654]={ [1]={ [1]={ limit={ @@ -12077,7 +12408,7 @@ return { [1]="chieftain_body_armour_supported_by_level_x_fist_of_war" } }, - [644]={ + [655]={ [1]={ [1]={ limit={ @@ -12093,7 +12424,7 @@ return { [1]="local_display_summon_writhing_worm_every_2000_ms" } }, - [645]={ + [656]={ [1]={ [1]={ limit={ @@ -12118,7 +12449,7 @@ return { [1]="scion_helmet_skill_maximum_totems_+" } }, - [646]={ + [657]={ [1]={ [1]={ limit={ @@ -12134,7 +12465,7 @@ return { [1]="local_display_grants_skill_frostblink_level" } }, - [647]={ + [658]={ [1]={ [1]={ limit={ @@ -12150,7 +12481,7 @@ return { [1]="local_display_grants_skill_purity_of_fire_level" } }, - [648]={ + [659]={ [1]={ [1]={ limit={ @@ -12166,7 +12497,7 @@ return { [1]="local_display_illusory_warp_level" } }, - [649]={ + [660]={ [1]={ [1]={ limit={ @@ -12182,7 +12513,7 @@ return { [1]="local_display_grants_skill_bear_trap_level" } }, - [650]={ + [661]={ [1]={ [1]={ limit={ @@ -12198,7 +12529,7 @@ return { [1]="local_display_grants_level_x_summon_stone_golem" } }, - [651]={ + [662]={ [1]={ [1]={ limit={ @@ -12214,7 +12545,7 @@ return { [1]="local_display_grants_level_X_vengeance" } }, - [652]={ + [663]={ [1]={ [1]={ limit={ @@ -12230,7 +12561,7 @@ return { [1]="local_display_grants_level_x_despair" } }, - [653]={ + [664]={ [1]={ [1]={ limit={ @@ -12246,7 +12577,7 @@ return { [1]="local_display_grants_skill_purity_of_cold_level" } }, - [654]={ + [665]={ [1]={ [1]={ limit={ @@ -12280,7 +12611,7 @@ return { [1]="local_display_grants_summon_beast_companion" } }, - [655]={ + [666]={ [1]={ [1]={ limit={ @@ -12296,7 +12627,7 @@ return { [1]="local_display_grants_skill_purity_of_lightning_level" } }, - [656]={ + [667]={ [1]={ [1]={ limit={ @@ -12312,7 +12643,7 @@ return { [1]="local_display_grants_skill_flammability_level" } }, - [657]={ + [668]={ [1]={ [1]={ limit={ @@ -12454,7 +12785,7 @@ return { [1]="local_display_summon_harbinger_x_on_equip" } }, - [658]={ + [669]={ [1]={ [1]={ limit={ @@ -12470,7 +12801,7 @@ return { [1]="display_monster_has_chilled_ground_trail_daemon" } }, - [659]={ + [670]={ [1]={ [1]={ limit={ @@ -12486,7 +12817,7 @@ return { [1]="display_monster_has_proximity_shield_daemon" } }, - [660]={ + [671]={ [1]={ [1]={ limit={ @@ -12502,7 +12833,7 @@ return { [1]="local_display_grants_skill_conductivity_level" } }, - [661]={ + [672]={ [1]={ [1]={ limit={ @@ -12518,7 +12849,7 @@ return { [1]="local_display_grants_skill_frostbite_level" } }, - [662]={ + [673]={ [1]={ [1]={ limit={ @@ -12534,7 +12865,7 @@ return { [1]="local_display_grants_skill_temporal_chains_level" } }, - [663]={ + [674]={ [1]={ [1]={ limit={ @@ -12550,7 +12881,7 @@ return { [1]="local_display_grants_skill_haste_level" } }, - [664]={ + [675]={ [1]={ [1]={ limit={ @@ -12566,7 +12897,23 @@ return { [1]="local_display_has_additional_implicit_mod" } }, - [665]={ + [676]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Trigger level {0} Ghostly Artillery when you Attack with this Weapon" + } + }, + stats={ + [1]="local_display_grants_level_X_ghost_cannons" + } + }, + [677]={ [1]={ [1]={ limit={ @@ -12582,7 +12929,7 @@ return { [1]="local_display_grants_skill_clarity_level" } }, - [666]={ + [678]={ [1]={ [1]={ limit={ @@ -12598,7 +12945,7 @@ return { [1]="local_display_grants_skill_blood_sacrament_level" } }, - [667]={ + [679]={ [1]={ [1]={ limit={ @@ -12614,7 +12961,7 @@ return { [1]="local_display_grants_skill_vitality_level" } }, - [668]={ + [680]={ [1]={ [1]={ limit={ @@ -12630,7 +12977,7 @@ return { [1]="base_non_chaos_damage_bypass_energy_shield_%" } }, - [669]={ + [681]={ [1]={ [1]={ limit={ @@ -12646,7 +12993,7 @@ return { [1]="local_display_grants_skill_purity_level" } }, - [670]={ + [682]={ [1]={ [1]={ limit={ @@ -12662,7 +13009,7 @@ return { [1]="local_display_grants_skill_gluttony_of_elements_level" } }, - [671]={ + [683]={ [1]={ [1]={ limit={ @@ -12678,7 +13025,7 @@ return { [1]="local_display_grants_skill_critical_weakness_level" } }, - [672]={ + [684]={ [1]={ [1]={ limit={ @@ -12694,7 +13041,7 @@ return { [1]="local_display_grants_skill_wrath_level" } }, - [673]={ + [685]={ [1]={ [1]={ limit={ @@ -12710,7 +13057,7 @@ return { [1]="local_display_grants_skill_hatred_level" } }, - [674]={ + [686]={ [1]={ [1]={ limit={ @@ -12726,7 +13073,7 @@ return { [1]="local_display_grants_skill_anger_level" } }, - [675]={ + [687]={ [1]={ [1]={ limit={ @@ -12742,7 +13089,7 @@ return { [1]="local_display_grants_skill_determination_level" } }, - [676]={ + [688]={ [1]={ [1]={ limit={ @@ -12758,7 +13105,7 @@ return { [1]="local_display_grants_skill_grace_level" } }, - [677]={ + [689]={ [1]={ [1]={ limit={ @@ -12774,7 +13121,7 @@ return { [1]="local_display_grants_skill_scorching_ray_level" } }, - [678]={ + [690]={ [1]={ [1]={ limit={ @@ -12790,7 +13137,7 @@ return { [1]="local_display_grants_skill_discipline_level" } }, - [679]={ + [691]={ [1]={ [1]={ limit={ @@ -12806,7 +13153,7 @@ return { [1]="local_display_grants_level_X_envy" } }, - [680]={ + [692]={ [1]={ [1]={ limit={ @@ -12822,7 +13169,7 @@ return { [1]="local_display_grants_level_X_reckoning" } }, - [681]={ + [693]={ [1]={ [1]={ limit={ @@ -12838,7 +13185,7 @@ return { [1]="local_display_grants_skill_blight_level" } }, - [682]={ + [694]={ [1]={ [1]={ limit={ @@ -12854,7 +13201,7 @@ return { [1]="local_display_grants_skill_projectile_weakness_level" } }, - [683]={ + [695]={ [1]={ [1]={ limit={ @@ -12870,7 +13217,7 @@ return { [1]="local_display_grants_skill_elemental_weakness_level" } }, - [684]={ + [696]={ [1]={ [1]={ limit={ @@ -12886,7 +13233,7 @@ return { [1]="local_display_grants_skill_doryanis_touch_level" } }, - [685]={ + [697]={ [1]={ [1]={ limit={ @@ -12902,7 +13249,7 @@ return { [1]="local_display_grants_skill_vulnerability_level" } }, - [686]={ + [698]={ [1]={ [1]={ limit={ @@ -12918,7 +13265,7 @@ return { [1]="local_display_grants_skill_death_aura_level" } }, - [687]={ + [699]={ [1]={ [1]={ limit={ @@ -12934,7 +13281,7 @@ return { [1]="local_display_grants_skill_icestorm_level" } }, - [688]={ + [700]={ [1]={ [1]={ limit={ @@ -12950,7 +13297,7 @@ return { [1]="chance_to_gain_arohonguis_embrace_%_on_kill" } }, - [689]={ + [701]={ [1]={ [1]={ limit={ @@ -12966,7 +13313,7 @@ return { [1]="chance_to_gain_hinekoras_embrace_%_on_kill" } }, - [690]={ + [702]={ [1]={ [1]={ limit={ @@ -12982,7 +13329,7 @@ return { [1]="chance_to_gain_kitavas_embrace_%_on_kill" } }, - [691]={ + [703]={ [1]={ [1]={ limit={ @@ -12998,7 +13345,7 @@ return { [1]="chance_to_gain_ngamahus_embrace_%_on_kill" } }, - [692]={ + [704]={ [1]={ [1]={ limit={ @@ -13014,7 +13361,7 @@ return { [1]="chance_to_gain_ramakos_embrace_%_on_kill" } }, - [693]={ + [705]={ [1]={ [1]={ limit={ @@ -13030,7 +13377,7 @@ return { [1]="chance_to_gain_rongokurais_embrace_%_on_kill" } }, - [694]={ + [706]={ [1]={ [1]={ limit={ @@ -13046,7 +13393,7 @@ return { [1]="chance_to_gain_tasalios_embrace_%_on_kill" } }, - [695]={ + [707]={ [1]={ [1]={ limit={ @@ -13062,7 +13409,7 @@ return { [1]="chance_to_gain_tawhoas_embrace_%_on_kill" } }, - [696]={ + [708]={ [1]={ [1]={ limit={ @@ -13078,7 +13425,7 @@ return { [1]="chance_to_gain_tukohamas_embrace_%_on_kill" } }, - [697]={ + [709]={ [1]={ [1]={ limit={ @@ -13094,7 +13441,7 @@ return { [1]="chance_to_gain_valakos_embrace_%_on_kill" } }, - [698]={ + [710]={ [1]={ [1]={ [1]={ @@ -13140,7 +13487,7 @@ return { [1]="local_display_cast_level_1_summon_lesser_shrine_on_kill_%" } }, - [699]={ + [711]={ [1]={ [1]={ limit={ @@ -13156,7 +13503,7 @@ return { [1]="local_display_cast_level_X_consecrate_on_crit" } }, - [700]={ + [712]={ [1]={ [1]={ limit={ @@ -13172,7 +13519,7 @@ return { [1]="local_display_cast_level_x_shock_ground_when_hit" } }, - [701]={ + [713]={ [1]={ [1]={ limit={ @@ -13188,7 +13535,7 @@ return { [1]="local_display_grant_level_x_petrification_statue" } }, - [702]={ + [714]={ [1]={ [1]={ limit={ @@ -13204,7 +13551,7 @@ return { [1]="local_display_trigger_level_X_blinding_aura_skill_on_equip" } }, - [703]={ + [715]={ [1]={ [1]={ limit={ @@ -13220,7 +13567,7 @@ return { [1]="local_display_grants_level_x_blood_offering_skill" } }, - [704]={ + [716]={ [1]={ [1]={ limit={ @@ -13236,7 +13583,7 @@ return { [1]="local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect" } }, - [705]={ + [717]={ [1]={ [1]={ limit={ @@ -13252,7 +13599,7 @@ return { [1]="local_display_grants_level_x_curse_pillar_skill" } }, - [706]={ + [718]={ [1]={ [1]={ [1]={ @@ -13272,7 +13619,7 @@ return { [1]="local_display_grants_level_x_misty_reflection" } }, - [707]={ + [719]={ [1]={ [1]={ limit={ @@ -13288,7 +13635,7 @@ return { [1]="local_display_grants_level_x_wintertide_brand" } }, - [708]={ + [720]={ [1]={ [1]={ limit={ @@ -13304,7 +13651,7 @@ return { [1]="local_display_grants_skil_convocation_level" } }, - [709]={ + [721]={ [1]={ [1]={ limit={ @@ -13320,7 +13667,7 @@ return { [1]="local_display_grants_skill_abyssal_cry_level" } }, - [710]={ + [722]={ [1]={ [1]={ limit={ @@ -13336,7 +13683,7 @@ return { [1]="local_display_grants_skill_accuracy_crits_aura_level" } }, - [711]={ + [723]={ [1]={ [1]={ limit={ @@ -13352,7 +13699,23 @@ return { [1]="local_display_grants_skill_ailment_bearer" } }, - [712]={ + [724]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Aspect of Arakaali Skill" + } + }, + stats={ + [1]="local_display_grants_skill_arakaali_aspect_level" + } + }, + [725]={ [1]={ [1]={ limit={ @@ -13368,7 +13731,7 @@ return { [1]="local_display_grants_skill_barkskin" } }, - [713]={ + [726]={ [1]={ [1]={ limit={ @@ -13384,7 +13747,7 @@ return { [1]="local_display_grants_skill_battlemages_cry_level" } }, - [714]={ + [727]={ [1]={ [1]={ limit={ @@ -13400,7 +13763,7 @@ return { [1]="local_display_grants_skill_bird_aspect_level" } }, - [715]={ + [728]={ [1]={ [1]={ limit={ @@ -13416,7 +13779,7 @@ return { [1]="local_display_grants_skill_bone_armour" } }, - [716]={ + [729]={ [1]={ [1]={ limit={ @@ -13432,7 +13795,7 @@ return { [1]="local_display_grants_skill_brand_detonate_level" } }, - [717]={ + [730]={ [1]={ [1]={ limit={ @@ -13448,7 +13811,23 @@ return { [1]="local_display_grants_skill_breach_hand_trap_level" } }, - [718]={ + [731]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Aspect of the Brine King Skill" + } + }, + stats={ + [1]="local_display_grants_skill_brine_king_aspect_level" + } + }, + [732]={ [1]={ [1]={ limit={ @@ -13464,7 +13843,7 @@ return { [1]="local_display_grants_skill_call_of_steel" } }, - [719]={ + [733]={ [1]={ [1]={ limit={ @@ -13480,7 +13859,7 @@ return { [1]="local_display_grants_skill_cat_aspect_level" } }, - [720]={ + [734]={ [1]={ [1]={ limit={ @@ -13496,7 +13875,7 @@ return { [1]="local_display_grants_skill_corpse_sacrifice" } }, - [721]={ + [735]={ [1]={ [1]={ limit={ @@ -13512,7 +13891,23 @@ return { [1]="local_display_grants_skill_crab_aspect_level" } }, - [722]={ + [736]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Savage Barnacle" + } + }, + stats={ + [1]="local_display_grants_skill_create_barnacle_level" + } + }, + [737]={ [1]={ [1]={ limit={ @@ -13528,7 +13923,7 @@ return { [1]="local_display_grants_skill_dash_level" } }, - [723]={ + [738]={ [1]={ [1]={ limit={ @@ -13544,7 +13939,7 @@ return { [1]="local_display_grants_skill_death_wish_level" } }, - [724]={ + [739]={ [1]={ [1]={ limit={ @@ -13560,7 +13955,7 @@ return { [1]="local_display_grants_skill_decoy_totem_level" } }, - [725]={ + [740]={ [1]={ [1]={ [1]={ @@ -13580,7 +13975,7 @@ return { [1]="local_display_grants_skill_embrace_madness_level" } }, - [726]={ + [741]={ [1]={ [1]={ limit={ @@ -13596,7 +13991,7 @@ return { [1]="local_display_grants_skill_enduring_cry_level" } }, - [727]={ + [742]={ [1]={ [1]={ limit={ @@ -13612,7 +14007,23 @@ return { [1]="local_display_grants_skill_evisceration" } }, - [728]={ + [743]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Trigger Ghost Furnace when you Ignite an Enemy" + } + }, + stats={ + [1]="local_display_grants_skill_ghost_furnace_level" + } + }, + [744]={ [1]={ [1]={ limit={ @@ -13628,7 +14039,7 @@ return { [1]="local_display_grants_skill_herald_of_agony_level" } }, - [729]={ + [745]={ [1]={ [1]={ limit={ @@ -13644,7 +14055,7 @@ return { [1]="local_display_grants_skill_herald_of_ash_level" } }, - [730]={ + [746]={ [1]={ [1]={ limit={ @@ -13660,7 +14071,7 @@ return { [1]="local_display_grants_skill_herald_of_ice_level" } }, - [731]={ + [747]={ [1]={ [1]={ limit={ @@ -13676,7 +14087,7 @@ return { [1]="local_display_grants_skill_herald_of_purity_level" } }, - [732]={ + [748]={ [1]={ [1]={ limit={ @@ -13692,7 +14103,7 @@ return { [1]="local_display_grants_skill_herald_of_the_breach_level" } }, - [733]={ + [749]={ [1]={ [1]={ limit={ @@ -13708,7 +14119,7 @@ return { [1]="local_display_grants_skill_herald_of_thunder_level" } }, - [734]={ + [750]={ [1]={ [1]={ limit={ @@ -13724,7 +14135,7 @@ return { [1]="local_display_grants_skill_intimidating_cry_level" } }, - [735]={ + [751]={ [1]={ [1]={ limit={ @@ -13740,7 +14151,23 @@ return { [1]="local_display_grants_skill_lightning_warp_level" } }, - [736]={ + [752]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Aspect of Lunaris Skill" + } + }, + stats={ + [1]="local_display_grants_skill_lunaris_aspect_level" + } + }, + [753]={ [1]={ [1]={ limit={ @@ -13756,7 +14183,7 @@ return { [1]="local_display_grants_skill_malevolence_level" } }, - [737]={ + [754]={ [1]={ [1]={ limit={ @@ -13772,7 +14199,7 @@ return { [1]="local_display_grants_skill_minion_sacrifice" } }, - [738]={ + [755]={ [1]={ [1]={ limit={ @@ -13788,7 +14215,7 @@ return { [1]="local_display_grants_skill_mirage_chieftain" } }, - [739]={ + [756]={ [1]={ [1]={ limit={ @@ -13804,7 +14231,7 @@ return { [1]="local_display_grants_skill_penance" } }, - [740]={ + [757]={ [1]={ [1]={ limit={ @@ -13820,7 +14247,7 @@ return { [1]="local_display_grants_skill_pride_level" } }, - [741]={ + [758]={ [1]={ [1]={ limit={ @@ -13836,7 +14263,7 @@ return { [1]="local_display_grants_skill_quieten" } }, - [742]={ + [759]={ [1]={ [1]={ limit={ @@ -13852,7 +14279,7 @@ return { [1]="local_display_grants_skill_rallying_cry_level" } }, - [743]={ + [760]={ [1]={ [1]={ limit={ @@ -13868,7 +14295,23 @@ return { [1]="local_display_grants_skill_smite_level" } }, - [744]={ + [761]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Aspect of Solaris Skill" + } + }, + stats={ + [1]="local_display_grants_skill_solaris_aspect_level" + } + }, + [762]={ [1]={ [1]={ limit={ @@ -13884,7 +14327,7 @@ return { [1]="local_display_grants_skill_spider_aspect_level" } }, - [745]={ + [763]={ [1]={ [1]={ limit={ @@ -13900,7 +14343,7 @@ return { [1]="local_display_grants_skill_summon_radiant_sentinel" } }, - [746]={ + [764]={ [1]={ [1]={ limit={ @@ -13916,7 +14359,7 @@ return { [1]="local_display_grants_skill_touch_of_fire_level" } }, - [747]={ + [765]={ [1]={ [1]={ limit={ @@ -13932,7 +14375,7 @@ return { [1]="local_display_grants_skill_unhinge_level" } }, - [748]={ + [766]={ [1]={ [1]={ limit={ @@ -13948,7 +14391,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_fire_level" } }, - [749]={ + [767]={ [1]={ [1]={ limit={ @@ -13964,7 +14407,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_ice_level" } }, - [750]={ + [768]={ [1]={ [1]={ limit={ @@ -13980,7 +14423,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_lightning_level" } }, - [751]={ + [769]={ [1]={ [1]={ limit={ @@ -13996,7 +14439,7 @@ return { [1]="local_display_grants_skill_vampiric_icon_level" } }, - [752]={ + [770]={ [1]={ [1]={ [1]={ @@ -14016,7 +14459,7 @@ return { [1]="local_display_grants_skill_voodoo_doll" } }, - [753]={ + [771]={ [1]={ [1]={ limit={ @@ -14032,7 +14475,7 @@ return { [1]="local_display_grants_skill_weapon_storm" } }, - [754]={ + [772]={ [1]={ [1]={ limit={ @@ -14048,7 +14491,7 @@ return { [1]="local_display_grants_skill_zealotry_level" } }, - [755]={ + [773]={ [1]={ [1]={ limit={ @@ -14064,7 +14507,7 @@ return { [1]="local_display_grants_summon_void_spawn" } }, - [756]={ + [774]={ [1]={ [1]={ limit={ @@ -14073,14 +14516,34 @@ return { [2]="#" } }, - text="[DNT] Grants Level {0} Unleash Power" + text="DNT Grants Level {0} Unleash Power" } }, stats={ [1]="local_display_grants_unleash_power" } }, - [757]={ + [775]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextBarnacleDebuff" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Inflict Barnacles on nearby Enemies every second" + } + }, + stats={ + [1]="local_display_inflict_barnacles_on_nearby_enemies_every_second" + } + }, + [776]={ [1]={ [1]={ limit={ @@ -14096,7 +14559,7 @@ return { [1]="local_display_tattoo_trigger_level_x_ahuana" } }, - [758]={ + [777]={ [1]={ [1]={ limit={ @@ -14112,7 +14575,7 @@ return { [1]="local_display_tattoo_trigger_level_x_akoya" } }, - [759]={ + [778]={ [1]={ [1]={ limit={ @@ -14128,7 +14591,7 @@ return { [1]="local_display_tattoo_trigger_level_x_ikiaho" } }, - [760]={ + [779]={ [1]={ [1]={ limit={ @@ -14144,7 +14607,7 @@ return { [1]="local_display_tattoo_trigger_level_x_kahuturoa" } }, - [761]={ + [780]={ [1]={ [1]={ limit={ @@ -14160,7 +14623,7 @@ return { [1]="local_display_tattoo_trigger_level_x_kaom" } }, - [762]={ + [781]={ [1]={ [1]={ limit={ @@ -14176,7 +14639,7 @@ return { [1]="local_display_tattoo_trigger_level_x_kiloava" } }, - [763]={ + [782]={ [1]={ [1]={ [1]={ @@ -14196,7 +14659,7 @@ return { [1]="local_display_tattoo_trigger_level_x_maata" } }, - [764]={ + [783]={ [1]={ [1]={ limit={ @@ -14212,7 +14675,7 @@ return { [1]="local_display_tattoo_trigger_level_x_rakiata" } }, - [765]={ + [784]={ [1]={ [1]={ limit={ @@ -14228,7 +14691,7 @@ return { [1]="local_display_tattoo_trigger_level_x_tawhanuku" } }, - [766]={ + [785]={ [1]={ [1]={ [1]={ @@ -14248,7 +14711,51 @@ return { [1]="local_display_tattoo_trigger_level_x_utula" } }, - [767]={ + [786]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextBrineRotAura" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Triggers Drowning Domain when Allocated" + } + }, + stats={ + [1]="local_display_trigger_brine_rot_aura_on_gain_skill" + } + }, + [787]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextBrineTorrent" + }, + [2]={ + k="reminderstring", + v="ReminderTextBrineGround" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Trigger Level 20 Surging Torrent when you cast an Elemental Spell" + } + }, + stats={ + [1]="local_display_trigger_brine_torrent" + } + }, + [788]={ [1]={ [1]={ limit={ @@ -14282,7 +14789,7 @@ return { [1]="shaper_apparition_ability" } }, - [768]={ + [789]={ [1]={ [1]={ limit={ @@ -14298,7 +14805,7 @@ return { [1]="can_see_corpse_types" } }, - [769]={ + [790]={ [1]={ [1]={ limit={ @@ -14323,7 +14830,7 @@ return { [1]="local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance" } }, - [770]={ + [791]={ [1]={ [1]={ limit={ @@ -14339,7 +14846,7 @@ return { [1]="local_display_trigger_level_X_darktongue_kiss_on_curse" } }, - [771]={ + [792]={ [1]={ [1]={ limit={ @@ -14355,7 +14862,7 @@ return { [1]="local_display_trigger_level_X_void_gaze_on_skill_use" } }, - [772]={ + [793]={ [1]={ [1]={ limit={ @@ -14371,7 +14878,7 @@ return { [1]="local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon" } }, - [773]={ + [794]={ [1]={ [1]={ limit={ @@ -14387,7 +14894,7 @@ return { [1]="local_display_trigger_level_x_storm_cascade_on_attack" } }, - [774]={ + [795]={ [1]={ [1]={ limit={ @@ -14403,7 +14910,7 @@ return { [1]="local_display_grants_level_X_queens_demand_skill" } }, - [775]={ + [796]={ [1]={ [1]={ limit={ @@ -14419,7 +14926,7 @@ return { [1]="base_number_of_essence_spirits_allowed" } }, - [776]={ + [797]={ [1]={ [1]={ [1]={ @@ -14439,7 +14946,7 @@ return { [1]="body_armour_trigger_socketed_spell_on_unarmed_melee_critical_hit_cooldown" } }, - [777]={ + [798]={ [1]={ [1]={ limit={ @@ -14455,7 +14962,7 @@ return { [1]="cast_linked_spells_on_shocked_enemy_kill_%" } }, - [778]={ + [799]={ [1]={ [1]={ limit={ @@ -14480,7 +14987,7 @@ return { [1]="cast_socketed_minion_skills_on_bow_kill_%" } }, - [779]={ + [800]={ [1]={ [1]={ [1]={ @@ -14530,7 +15037,7 @@ return { [2]="cast_socketed_spells_on_life_spent_%_chance" } }, - [780]={ + [801]={ [1]={ [1]={ [1]={ @@ -14580,7 +15087,7 @@ return { [2]="cast_socketed_spells_on_mana_spent_%_chance" } }, - [781]={ + [802]={ [1]={ [1]={ limit={ @@ -14605,7 +15112,7 @@ return { [1]="chance_to_trigger_socketed_bow_skill_on_bow_attack_%" } }, - [782]={ + [803]={ [1]={ [1]={ limit={ @@ -14621,7 +15128,7 @@ return { [1]="curse_on_hit_level_assassins_mark" } }, - [783]={ + [804]={ [1]={ [1]={ limit={ @@ -14637,7 +15144,7 @@ return { [1]="curse_on_hit_level_poachers_mark" } }, - [784]={ + [805]={ [1]={ [1]={ limit={ @@ -14653,7 +15160,7 @@ return { [1]="curse_on_hit_level_poachers_mark_bypass_hexproof" } }, - [785]={ + [806]={ [1]={ [1]={ limit={ @@ -14669,7 +15176,7 @@ return { [1]="curse_on_hit_level_warlords_mark" } }, - [786]={ + [807]={ [1]={ [1]={ limit={ @@ -14685,7 +15192,7 @@ return { [1]="display_abberaths_hooves_skill_level" } }, - [787]={ + [808]={ [1]={ [1]={ limit={ @@ -14701,7 +15208,7 @@ return { [1]="display_cast_fire_burst_on_kill" } }, - [788]={ + [809]={ [1]={ [1]={ limit={ @@ -14726,7 +15233,7 @@ return { [1]="display_trigger_arcane_wake_after_spending_200_mana_%_chance" } }, - [789]={ + [810]={ [1]={ [1]={ limit={ @@ -14742,7 +15249,7 @@ return { [1]="local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill" } }, - [790]={ + [811]={ [1]={ [1]={ limit={ @@ -14758,7 +15265,7 @@ return { [1]="local_display_cast_animate_weapon_on_kill_%_chance" } }, - [791]={ + [812]={ [1]={ [1]={ limit={ @@ -14774,7 +15281,7 @@ return { [1]="local_display_cast_cold_aegis_on_gain_skill" } }, - [792]={ + [813]={ [1]={ [1]={ limit={ @@ -14790,7 +15297,7 @@ return { [1]="local_display_cast_elemental_aegis_on_gain_skill" } }, - [793]={ + [814]={ [1]={ [1]={ limit={ @@ -14806,7 +15313,7 @@ return { [1]="local_display_cast_fire_aegis_on_gain_skill" } }, - [794]={ + [815]={ [1]={ [1]={ limit={ @@ -14822,7 +15329,7 @@ return { [1]="local_display_cast_level_x_shock_ground_on_hit" } }, - [795]={ + [816]={ [1]={ [1]={ limit={ @@ -14838,7 +15345,7 @@ return { [1]="local_display_cast_lightning_aegis_on_gain_skill" } }, - [796]={ + [817]={ [1]={ [1]={ limit={ @@ -14854,7 +15361,7 @@ return { [1]="local_display_cast_lightning_on_critical_strike" } }, - [797]={ + [818]={ [1]={ [1]={ limit={ @@ -14870,7 +15377,7 @@ return { [1]="local_display_cast_lightning_on_melee_hit_with_this_weapon" } }, - [798]={ + [819]={ [1]={ [1]={ limit={ @@ -14886,7 +15393,7 @@ return { [1]="local_display_cast_physical_aegis_on_gain_skill" } }, - [799]={ + [820]={ [1]={ [1]={ limit={ @@ -14902,7 +15409,7 @@ return { [1]="local_display_cast_primal_aegis_on_gain_skill" } }, - [800]={ + [821]={ [1]={ [1]={ limit={ @@ -14918,7 +15425,7 @@ return { [1]="local_display_cast_summon_arbalists_on_gain_skill" } }, - [801]={ + [822]={ [1]={ [1]={ limit={ @@ -14934,7 +15441,7 @@ return { [1]="local_display_cast_triggerbots_on_gain_skill" } }, - [802]={ + [823]={ [1]={ [1]={ limit={ @@ -14959,7 +15466,7 @@ return { [1]="local_display_chance_to_trigger_socketed_spell_on_kill_%" } }, - [803]={ + [824]={ [1]={ [1]={ limit={ @@ -14975,7 +15482,7 @@ return { [1]="local_display_fire_burst_on_hit_%" } }, - [804]={ + [825]={ [1]={ [1]={ limit={ @@ -14991,7 +15498,7 @@ return { [1]="local_display_grants_level_x_hidden_blade" } }, - [805]={ + [826]={ [1]={ [1]={ limit={ @@ -15007,7 +15514,7 @@ return { [1]="local_display_molten_burst_on_melee_hit_%" } }, - [806]={ + [827]={ [1]={ [1]={ limit={ @@ -15032,7 +15539,7 @@ return { [1]="local_display_raise_spider_on_kill_%_chance" } }, - [807]={ + [828]={ [1]={ [1]={ limit={ @@ -15057,7 +15564,7 @@ return { [1]="local_display_starfall_on_melee_critical_hit_%" } }, - [808]={ + [829]={ [1]={ [1]={ limit={ @@ -15082,7 +15589,7 @@ return { [1]="local_display_summon_raging_spirit_on_kill_%" } }, - [809]={ + [830]={ [1]={ [1]={ limit={ @@ -15107,7 +15614,7 @@ return { [1]="local_display_summon_wolf_on_kill_%" } }, - [810]={ + [831]={ [1]={ [1]={ limit={ @@ -15132,7 +15639,7 @@ return { [1]="local_display_trigger_commandment_of_inferno_on_crit_%" } }, - [811]={ + [832]={ [1]={ [1]={ limit={ @@ -15148,7 +15655,7 @@ return { [1]="local_display_trigger_corpse_walk_on_equip_level" } }, - [812]={ + [833]={ [1]={ [1]={ limit={ @@ -15164,7 +15671,7 @@ return { [1]="local_display_trigger_level_x_create_fungal_ground_on_kill" } }, - [813]={ + [834]={ [1]={ [1]={ limit={ @@ -15180,7 +15687,7 @@ return { [1]="local_display_trigger_death_walk_on_equip_level" } }, - [814]={ + [835]={ [1]={ [1]={ limit={ @@ -15196,7 +15703,7 @@ return { [1]="local_display_trigger_ignition_blast_on_ignited_enemy_death" } }, - [815]={ + [836]={ [1]={ [1]={ limit={ @@ -15212,7 +15719,7 @@ return { [1]="local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance" } }, - [816]={ + [837]={ [1]={ [1]={ limit={ @@ -15237,7 +15744,7 @@ return { [1]="local_display_trigger_level_1_blood_rage_on_kill_chance_%" } }, - [817]={ + [838]={ [1]={ [1]={ limit={ @@ -15262,7 +15769,7 @@ return { [1]="local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance" } }, - [818]={ + [839]={ [1]={ [1]={ limit={ @@ -15287,7 +15794,7 @@ return { [1]="local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance" } }, - [819]={ + [840]={ [1]={ [1]={ limit={ @@ -15303,7 +15810,7 @@ return { [1]="local_display_trigger_level_20_shade_form_on_skill_use_%" } }, - [820]={ + [841]={ [1]={ [1]={ limit={ @@ -15337,7 +15844,7 @@ return { [1]="local_display_trigger_level_20_shade_form_when_hit_%" } }, - [821]={ + [842]={ [1]={ [1]={ limit={ @@ -15353,7 +15860,7 @@ return { [1]="local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%" } }, - [822]={ + [843]={ [1]={ [1]={ limit={ @@ -15369,7 +15876,7 @@ return { [1]="local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy" } }, - [823]={ + [844]={ [1]={ [1]={ limit={ @@ -15385,7 +15892,7 @@ return { [1]="local_display_trigger_level_X_atziri_flameblast" } }, - [824]={ + [845]={ [1]={ [1]={ limit={ @@ -15401,7 +15908,7 @@ return { [1]="local_display_trigger_level_X_atziri_storm_call" } }, - [825]={ + [846]={ [1]={ [1]={ limit={ @@ -15417,7 +15924,7 @@ return { [1]="local_display_trigger_level_X_feast_of_flesh_every_5_seconds" } }, - [826]={ + [847]={ [1]={ [1]={ limit={ @@ -15433,7 +15940,7 @@ return { [1]="local_display_trigger_level_X_offering_every_5_seconds" } }, - [827]={ + [848]={ [1]={ [1]={ limit={ @@ -15449,7 +15956,7 @@ return { [1]="local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy" } }, - [828]={ + [849]={ [1]={ [1]={ limit={ @@ -15465,7 +15972,7 @@ return { [1]="local_display_trigger_level_X_shield_shatter_on_block" } }, - [829]={ + [850]={ [1]={ [1]={ [1]={ @@ -15485,7 +15992,7 @@ return { [1]="local_display_trigger_level_X_ward_shatter_on_ward_break" } }, - [830]={ + [851]={ [1]={ [1]={ limit={ @@ -15501,7 +16008,7 @@ return { [1]="local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy" } }, - [831]={ + [852]={ [1]={ [1]={ limit={ @@ -15517,7 +16024,7 @@ return { [1]="local_display_trigger_level_x_curse_nova_on_hit_while_cursed" } }, - [832]={ + [853]={ [1]={ [1]={ limit={ @@ -15533,7 +16040,7 @@ return { [1]="local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon" } }, - [833]={ + [854]={ [1]={ [1]={ limit={ @@ -15549,7 +16056,7 @@ return { [1]="local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill" } }, - [834]={ + [855]={ [1]={ [1]={ limit={ @@ -15565,7 +16072,7 @@ return { [1]="local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength" } }, - [835]={ + [856]={ [1]={ [1]={ limit={ @@ -15581,7 +16088,7 @@ return { [1]="local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy" } }, - [836]={ + [857]={ [1]={ [1]={ limit={ @@ -15597,7 +16104,7 @@ return { [1]="local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth" } }, - [837]={ + [858]={ [1]={ [1]={ limit={ @@ -15613,7 +16120,7 @@ return { [1]="local_display_trigger_level_x_rain_of_arrows_on_bow_attack" } }, - [838]={ + [859]={ [1]={ [1]={ limit={ @@ -15629,7 +16136,7 @@ return { [1]="local_display_trigger_level_x_reflection_skill_on_equip" } }, - [839]={ + [860]={ [1]={ [1]={ limit={ @@ -15645,7 +16152,7 @@ return { [1]="local_display_trigger_level_x_smoke_cloud_on_trap_triggered" } }, - [840]={ + [861]={ [1]={ [1]={ limit={ @@ -15661,7 +16168,7 @@ return { [1]="local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge" } }, - [841]={ + [862]={ [1]={ [1]={ limit={ @@ -15677,7 +16184,7 @@ return { [1]="local_display_trigger_level_x_stalking_pustule_on_kill" } }, - [842]={ + [863]={ [1]={ [1]={ limit={ @@ -15693,7 +16200,7 @@ return { [1]="local_display_trigger_level_x_summon_phantasm_on_corpse_consume" } }, - [843]={ + [864]={ [1]={ [1]={ limit={ @@ -15709,7 +16216,7 @@ return { [1]="local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow" } }, - [844]={ + [865]={ [1]={ [1]={ limit={ @@ -15725,7 +16232,7 @@ return { [1]="local_display_trigger_summon_taunting_contraption_on_flask_use" } }, - [845]={ + [866]={ [1]={ [1]={ limit={ @@ -15750,7 +16257,7 @@ return { [1]="local_display_trigger_socketed_curses_on_casting_curse_%_chance" } }, - [846]={ + [867]={ [1]={ [1]={ limit={ @@ -15775,7 +16282,7 @@ return { [1]="local_display_trigger_temporal_anomaly_when_hit_%_chance" } }, - [847]={ + [868]={ [1]={ [1]={ limit={ @@ -15791,7 +16298,7 @@ return { [1]="local_display_trigger_tentacle_smash_on_kill_%_chance" } }, - [848]={ + [869]={ [1]={ [1]={ limit={ @@ -15807,7 +16314,7 @@ return { [1]="local_display_trigger_void_sphere_on_kill_%_chance" } }, - [849]={ + [870]={ [1]={ [1]={ limit={ @@ -15823,7 +16330,7 @@ return { [1]="local_display_use_level_X_abyssal_cry_on_hit" } }, - [850]={ + [871]={ [1]={ [1]={ limit={ @@ -15848,7 +16355,7 @@ return { [1]="local_unique_attacks_cast_socketed_lightning_spells_%" } }, - [851]={ + [872]={ [1]={ [1]={ limit={ @@ -15864,7 +16371,7 @@ return { [1]="local_unique_cast_socketed_cold_skills_on_melee_critical_strike" } }, - [852]={ + [873]={ [1]={ [1]={ limit={ @@ -15880,7 +16387,7 @@ return { [1]="local_unique_cast_socketed_spell_on_block" } }, - [853]={ + [874]={ [1]={ [1]={ limit={ @@ -15896,7 +16403,7 @@ return { [1]="main_hand_trigger_socketed_spell_on_freezing_hit" } }, - [854]={ + [875]={ [1]={ [1]={ limit={ @@ -15921,7 +16428,7 @@ return { [1]="trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%" } }, - [855]={ + [876]={ [1]={ [1]={ limit={ @@ -15946,7 +16453,7 @@ return { [1]="trigger_socketed_spell_on_attack_%" } }, - [856]={ + [877]={ [1]={ [1]={ [1]={ @@ -15966,7 +16473,7 @@ return { [1]="local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms" } }, - [857]={ + [878]={ [1]={ [1]={ limit={ @@ -15991,7 +16498,7 @@ return { [1]="trigger_socketed_spell_on_skill_use_%" } }, - [858]={ + [879]={ [1]={ [1]={ limit={ @@ -16016,7 +16523,7 @@ return { [1]="trigger_socketed_spells_when_you_focus_%" } }, - [859]={ + [880]={ [1]={ [1]={ limit={ @@ -16032,7 +16539,7 @@ return { [1]="local_display_trigger_level_x_toxic_rain_on_bow_attack" } }, - [860]={ + [881]={ [1]={ [1]={ limit={ @@ -16048,7 +16555,7 @@ return { [1]="your_aegis_skills_except_primal_are_disabled" } }, - [861]={ + [882]={ [1]={ [1]={ limit={ @@ -16082,7 +16589,7 @@ return { [2]="local_flask_consume_extra_max_charges_when_used" } }, - [862]={ + [883]={ [1]={ [1]={ limit={ @@ -16098,7 +16605,7 @@ return { [1]="local_max_charges_+%" } }, - [863]={ + [884]={ [1]={ [1]={ limit={ @@ -16123,7 +16630,7 @@ return { [1]="local_flask_gain_X_charges_on_consuming_ignited_corpse" } }, - [864]={ + [885]={ [1]={ [1]={ limit={ @@ -16148,7 +16655,7 @@ return { [1]="local_flask_gain_X_charges_when_hit" } }, - [865]={ + [886]={ [1]={ [1]={ limit={ @@ -16173,7 +16680,7 @@ return { [1]="local_recharge_on_crit" } }, - [866]={ + [887]={ [1]={ [1]={ limit={ @@ -16198,7 +16705,7 @@ return { [1]="local_recharge_on_crit_%" } }, - [867]={ + [888]={ [1]={ [1]={ limit={ @@ -16223,7 +16730,7 @@ return { [1]="local_recharge_on_demon_killed" } }, - [868]={ + [889]={ [1]={ [1]={ limit={ @@ -16248,7 +16755,7 @@ return { [1]="local_recharge_on_take_crit" } }, - [869]={ + [890]={ [1]={ [1]={ [1]={ @@ -16281,7 +16788,7 @@ return { [1]="local_charges_added_+%" } }, - [870]={ + [891]={ [1]={ [1]={ limit={ @@ -16349,7 +16856,7 @@ return { [2]="local_flask_consume_charges_used_+%_when_used" } }, - [871]={ + [892]={ [1]={ [1]={ limit={ @@ -16365,7 +16872,7 @@ return { [1]="local_flask_lose_all_charges_on_entering_new_area" } }, - [872]={ + [893]={ [1]={ [1]={ limit={ @@ -16381,7 +16888,7 @@ return { [1]="local_flask_life_to_recover" } }, - [873]={ + [894]={ [1]={ [1]={ limit={ @@ -16410,7 +16917,7 @@ return { [1]="local_flask_life_to_recover_+%" } }, - [874]={ + [895]={ [1]={ [1]={ limit={ @@ -16426,7 +16933,7 @@ return { [1]="local_flask_minion_heal_%" } }, - [875]={ + [896]={ [1]={ [1]={ [1]={ @@ -16446,7 +16953,7 @@ return { [1]="local_flask_life_recovery_from_flasks_also_recovers_energy_shield" } }, - [876]={ + [897]={ [1]={ [1]={ limit={ @@ -16462,7 +16969,7 @@ return { [1]="local_flask_mana_to_recover" } }, - [877]={ + [898]={ [1]={ [1]={ limit={ @@ -16491,7 +16998,7 @@ return { [1]="local_flask_mana_to_recover_+%" } }, - [878]={ + [899]={ [1]={ [1]={ limit={ @@ -16520,7 +17027,7 @@ return { [1]="local_flask_amount_to_recover_+%" } }, - [879]={ + [900]={ [1]={ [1]={ limit={ @@ -16549,7 +17056,7 @@ return { [1]="local_flask_recovery_speed_+%" } }, - [880]={ + [901]={ [1]={ [1]={ [1]={ @@ -16569,7 +17076,62 @@ return { [1]="local_flask_deciseconds_to_recover" } }, - [881]={ + [902]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextColdAilmentsWithChance" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="All Damage from Critical Strikes can apply Cold Ailments during effect" + } + }, + stats={ + [1]="local_unique_flask_all_damage_from_critical_strikes_can_chill_during_effect", + [2]="local_unique_flask_all_damage_from_critical_strikes_can_freeze_during_effect", + [3]="local_unique_flask_all_damage_from_critical_strikes_can_inflict_brittle_during_effect" + } + }, + [903]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLightningAilmentsWithChance" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="All Damage from Critical Strikes can apply Lightning Ailments during effect" + } + }, + stats={ + [1]="local_unique_flask_all_damage_from_critical_strikes_can_shock_during_effect", + [2]="local_unique_flask_all_damage_from_critical_strikes_can_sap_during_effect" + } + }, + [904]={ [1]={ [1]={ limit={ @@ -16637,7 +17199,7 @@ return { [2]="local_flask_consume_flask_duration_+%_when_used" } }, - [882]={ + [905]={ [1]={ [1]={ limit={ @@ -16666,7 +17228,7 @@ return { [1]="local_flask_duration_+%_final" } }, - [883]={ + [906]={ [1]={ [1]={ [1]={ @@ -16686,7 +17248,7 @@ return { [1]="local_flask_amount_to_recover_+%_when_on_low_life" } }, - [884]={ + [907]={ [1]={ [1]={ [1]={ @@ -16706,7 +17268,7 @@ return { [1]="local_flask_recover_instantly_when_on_low_life" } }, - [885]={ + [908]={ [1]={ [1]={ limit={ @@ -16731,7 +17293,7 @@ return { [1]="local_flask_recovery_amount_%_to_recover_instantly" } }, - [886]={ + [909]={ [1]={ [1]={ [1]={ @@ -16751,7 +17313,7 @@ return { [1]="local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends" } }, - [887]={ + [910]={ [1]={ [1]={ limit={ @@ -16767,7 +17329,7 @@ return { [1]="local_flask_effect_ends_when_hit_by_player" } }, - [888]={ + [911]={ [1]={ [1]={ [1]={ @@ -16787,7 +17349,7 @@ return { [1]="local_flask_effect_not_removed_at_full_mana" } }, - [889]={ + [912]={ [1]={ [1]={ limit={ @@ -16803,7 +17365,7 @@ return { [1]="local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect" } }, - [890]={ + [913]={ [1]={ [1]={ limit={ @@ -16819,7 +17381,7 @@ return { [1]="local_flask_recovers_instantly" } }, - [891]={ + [914]={ [1]={ [1]={ limit={ @@ -16835,7 +17397,7 @@ return { [1]="local_flask_remove_effect_when_ward_breaks" } }, - [892]={ + [915]={ [1]={ [1]={ limit={ @@ -16860,7 +17422,7 @@ return { [1]="local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration" } }, - [893]={ + [916]={ [1]={ [1]={ limit={ @@ -16876,7 +17438,7 @@ return { [1]="local_flask_removes_%_of_mana_recovery_from_life_on_use" } }, - [894]={ + [917]={ [1]={ [1]={ limit={ @@ -16892,7 +17454,7 @@ return { [1]="local_flask_removes_%_of_life_recovery_from_life_on_use" } }, - [895]={ + [918]={ [1]={ [1]={ limit={ @@ -16908,7 +17470,7 @@ return { [1]="local_flask_removes_%_of_life_recovery_from_mana_on_use" } }, - [896]={ + [919]={ [1]={ [1]={ limit={ @@ -16924,7 +17486,7 @@ return { [1]="local_unique_flask_instantly_removes_%_maximum_life" } }, - [897]={ + [920]={ [1]={ [1]={ limit={ @@ -16940,7 +17502,7 @@ return { [1]="local_unique_flask_start_energy_shield_recharge" } }, - [898]={ + [921]={ [1]={ [1]={ limit={ @@ -16956,7 +17518,7 @@ return { [1]="local_flask_removes_%_maximum_energy_shield_on_use" } }, - [899]={ + [922]={ [1]={ [1]={ limit={ @@ -16972,7 +17534,7 @@ return { [1]="local_flask_deals_%_maximum_life_as_chaos_damage_on_use" } }, - [900]={ + [923]={ [1]={ [1]={ limit={ @@ -16997,7 +17559,7 @@ return { [1]="local_unique_flask_instantly_recovers_%_maximum_life" } }, - [901]={ + [924]={ [1]={ [1]={ [1]={ @@ -17017,7 +17579,7 @@ return { [1]="local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing" } }, - [902]={ + [925]={ [1]={ [1]={ [1]={ @@ -17037,7 +17599,7 @@ return { [1]="local_consecrate_ground_on_flask_use_radius" } }, - [903]={ + [926]={ [1]={ [1]={ [1]={ @@ -17057,7 +17619,7 @@ return { [1]="local_flask_chilled_ground_on_flask_use_radius" } }, - [904]={ + [927]={ [1]={ [1]={ limit={ @@ -17091,7 +17653,7 @@ return { [1]="local_flask_area_of_consecrated_ground_+%" } }, - [905]={ + [928]={ [1]={ [1]={ limit={ @@ -17107,7 +17669,7 @@ return { [1]="local_flask_consumes_max_charges_on_use" } }, - [906]={ + [929]={ [1]={ [1]={ limit={ @@ -17141,7 +17703,7 @@ return { [1]="local_flask_consumes_x_endurance_charges_on_use" } }, - [907]={ + [930]={ [1]={ [1]={ limit={ @@ -17175,7 +17737,7 @@ return { [1]="local_flask_consumes_x_frenzy_charges_on_use" } }, - [908]={ + [931]={ [1]={ [1]={ limit={ @@ -17209,7 +17771,7 @@ return { [1]="local_flask_consumes_x_power_charges_on_use" } }, - [909]={ + [932]={ [1]={ [1]={ limit={ @@ -17225,7 +17787,7 @@ return { [1]="local_flask_gain_charges_consumed_as_vaal_souls_on_use" } }, - [910]={ + [933]={ [1]={ [1]={ limit={ @@ -17250,7 +17812,7 @@ return { [1]="local_flask_gain_endurance_charges_on_use" } }, - [911]={ + [934]={ [1]={ [1]={ limit={ @@ -17275,7 +17837,7 @@ return { [1]="local_flask_gain_frenzy_charges_on_use" } }, - [912]={ + [935]={ [1]={ [1]={ limit={ @@ -17300,7 +17862,7 @@ return { [1]="local_flask_gain_power_charges_on_use" } }, - [913]={ + [936]={ [1]={ [1]={ [1]={ @@ -17333,7 +17895,7 @@ return { [1]="local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge_consumed" } }, - [914]={ + [937]={ [1]={ [1]={ limit={ @@ -17349,7 +17911,7 @@ return { [1]="local_flask_gain_x_vaal_souls_on_use" } }, - [915]={ + [938]={ [1]={ [1]={ [1]={ @@ -17369,7 +17931,7 @@ return { [1]="local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use" } }, - [916]={ + [939]={ [1]={ [1]={ limit={ @@ -17385,7 +17947,7 @@ return { [1]="local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use" } }, - [917]={ + [940]={ [1]={ [1]={ [1]={ @@ -17405,7 +17967,7 @@ return { [1]="local_flask_taunt_enemies_on_use_radius" } }, - [918]={ + [941]={ [1]={ [1]={ [1]={ @@ -17425,7 +17987,7 @@ return { [1]="local_flask_use_causes_area_knockback" } }, - [919]={ + [942]={ [1]={ [1]={ [1]={ @@ -17445,7 +18007,36 @@ return { [1]="local_flask_use_causes_monster_flee_chance_%" } }, - [920]={ + [943]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Melee Damage while Burning" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Melee Damage while Burning" + } + }, + stats={ + [1]="ghost_cutlass_melee_damage_+%_final_while_burning" + } + }, + [944]={ [1]={ [1]={ [1]={ @@ -17465,7 +18056,7 @@ return { [1]="local_smoke_ground_on_flask_use_radius" } }, - [921]={ + [945]={ [1]={ [1]={ limit={ @@ -17481,7 +18072,7 @@ return { [1]="local_flask_remove_curses_on_use" } }, - [922]={ + [946]={ [1]={ [1]={ [1]={ @@ -17505,7 +18096,7 @@ return { [1]="divination_buff_on_flask_used_duration_cs" } }, - [923]={ + [947]={ [1]={ [1]={ limit={ @@ -17521,7 +18112,7 @@ return { [1]="local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life" } }, - [924]={ + [948]={ [1]={ [1]={ limit={ @@ -17537,7 +18128,7 @@ return { [1]="local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood" } }, - [925]={ + [949]={ [1]={ [1]={ limit={ @@ -17553,7 +18144,7 @@ return { [1]="local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s" } }, - [926]={ + [950]={ [1]={ [1]={ limit={ @@ -17569,7 +18160,7 @@ return { [1]="local_flask_chill_or_freeze_immunity_if_chilled_or_frozen" } }, - [927]={ + [951]={ [1]={ [1]={ limit={ @@ -17585,7 +18176,7 @@ return { [1]="local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s" } }, - [928]={ + [952]={ [1]={ [1]={ limit={ @@ -17601,7 +18192,7 @@ return { [1]="local_flask_ignite_immunity_if_ignited_and_remove_burning" } }, - [929]={ + [953]={ [1]={ [1]={ limit={ @@ -17617,7 +18208,7 @@ return { [1]="local_flask_ignite_immunity_if_ignited_and_remove_burning_s" } }, - [930]={ + [954]={ [1]={ [1]={ limit={ @@ -17633,7 +18224,7 @@ return { [1]="local_flask_immune_to_hinder_for_x_seconds_if_hindered" } }, - [931]={ + [955]={ [1]={ [1]={ limit={ @@ -17649,7 +18240,7 @@ return { [1]="local_flask_immune_to_maim_for_x_seconds_if_maimed" } }, - [932]={ + [956]={ [1]={ [1]={ limit={ @@ -17665,7 +18256,7 @@ return { [1]="local_flask_poison_immunity_if_poisoned" } }, - [933]={ + [957]={ [1]={ [1]={ limit={ @@ -17681,7 +18272,7 @@ return { [1]="local_flask_poison_immunity_if_poisoned_s" } }, - [934]={ + [958]={ [1]={ [1]={ limit={ @@ -17697,7 +18288,7 @@ return { [1]="local_flask_shock_immunity_if_shocked" } }, - [935]={ + [959]={ [1]={ [1]={ limit={ @@ -17713,7 +18304,7 @@ return { [1]="local_flask_shock_immunity_if_shocked_s" } }, - [936]={ + [960]={ [1]={ [1]={ [1]={ @@ -17733,7 +18324,7 @@ return { [1]="local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life" } }, - [937]={ + [961]={ [1]={ [1]={ [1]={ @@ -17753,7 +18344,7 @@ return { [1]="local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana" } }, - [938]={ + [962]={ [1]={ [1]={ limit={ @@ -17769,7 +18360,7 @@ return { [1]="local_flask_dispels_freeze_and_chill" } }, - [939]={ + [963]={ [1]={ [1]={ limit={ @@ -17785,7 +18376,7 @@ return { [1]="local_flask_adapt_each_element" } }, - [940]={ + [964]={ [1]={ [1]={ limit={ @@ -17801,7 +18392,7 @@ return { [1]="local_flask_dispels_burning_and_ignite_immunity_during_effect" } }, - [941]={ + [965]={ [1]={ [1]={ limit={ @@ -17817,7 +18408,7 @@ return { [1]="local_flask_restore_ward" } }, - [942]={ + [966]={ [1]={ [1]={ limit={ @@ -17842,7 +18433,7 @@ return { [1]="local_number_of_bloodworms_to_spawn_on_flask_use" } }, - [943]={ + [967]={ [1]={ [1]={ limit={ @@ -17858,7 +18449,7 @@ return { [1]="local_flask_use_on_adjacent_flask_use" } }, - [944]={ + [968]={ [1]={ [1]={ limit={ @@ -17874,7 +18465,7 @@ return { [1]="local_flask_use_on_affected_by_bleed" } }, - [945]={ + [969]={ [1]={ [1]={ limit={ @@ -17890,7 +18481,7 @@ return { [1]="local_flask_use_on_affected_by_chill" } }, - [946]={ + [970]={ [1]={ [1]={ limit={ @@ -17906,7 +18497,7 @@ return { [1]="local_flask_use_on_affected_by_freeze" } }, - [947]={ + [971]={ [1]={ [1]={ limit={ @@ -17922,7 +18513,7 @@ return { [1]="local_flask_use_on_affected_by_ignite" } }, - [948]={ + [972]={ [1]={ [1]={ limit={ @@ -17938,7 +18529,7 @@ return { [1]="local_flask_use_on_affected_by_poison" } }, - [949]={ + [973]={ [1]={ [1]={ limit={ @@ -17954,7 +18545,7 @@ return { [1]="local_flask_use_on_affected_by_shock" } }, - [950]={ + [974]={ [1]={ [1]={ limit={ @@ -17970,7 +18561,7 @@ return { [1]="local_flask_use_on_damage_blocked" } }, - [951]={ + [975]={ [1]={ [1]={ limit={ @@ -17986,7 +18577,7 @@ return { [1]="local_flask_use_on_flask_effect_ended" } }, - [952]={ + [976]={ [1]={ [1]={ limit={ @@ -18002,7 +18593,7 @@ return { [1]="local_flask_use_on_full_charges" } }, - [953]={ + [977]={ [1]={ [1]={ limit={ @@ -18018,7 +18609,7 @@ return { [1]="local_flask_use_on_guard_skill_expired" } }, - [954]={ + [978]={ [1]={ [1]={ limit={ @@ -18034,7 +18625,7 @@ return { [1]="local_flask_use_on_guard_skill_used" } }, - [955]={ + [979]={ [1]={ [1]={ limit={ @@ -18050,7 +18641,7 @@ return { [1]="local_flask_use_on_hitting_rare_unique_enemy_while_inactive" } }, - [956]={ + [980]={ [1]={ [1]={ [1]={ @@ -18070,7 +18661,7 @@ return { [1]="local_flask_use_on_taking_savage_hit" } }, - [957]={ + [981]={ [1]={ [1]={ limit={ @@ -18086,7 +18677,7 @@ return { [1]="local_flask_use_on_travel_skill_used" } }, - [958]={ + [982]={ [1]={ [1]={ limit={ @@ -18102,7 +18693,7 @@ return { [1]="local_flask_use_on_using_a_life_flask" } }, - [959]={ + [983]={ [1]={ [1]={ limit={ @@ -18170,7 +18761,7 @@ return { [2]="local_flask_consume_flask_effect_+%_when_used" } }, - [960]={ + [984]={ [1]={ [1]={ limit={ @@ -18186,7 +18777,7 @@ return { [1]="local_flask_armour_+%_while_healing" } }, - [961]={ + [985]={ [1]={ [1]={ limit={ @@ -18202,7 +18793,7 @@ return { [1]="local_flask_evasion_+%_while_healing" } }, - [962]={ + [986]={ [1]={ [1]={ limit={ @@ -18218,7 +18809,7 @@ return { [1]="local_flask_energy_shield_+%_while_healing" } }, - [963]={ + [987]={ [1]={ [1]={ limit={ @@ -18247,7 +18838,7 @@ return { [1]="local_flask_ward_+%_during_effect" } }, - [964]={ + [988]={ [1]={ [1]={ limit={ @@ -18263,7 +18854,7 @@ return { [1]="local_flask_ward_does_not_break_during_effect" } }, - [965]={ + [989]={ [1]={ [1]={ limit={ @@ -18292,7 +18883,7 @@ return { [1]="local_flask_adaptation_rating_+%_during_effect" } }, - [966]={ + [990]={ [1]={ [1]={ limit={ @@ -18308,7 +18899,7 @@ return { [1]="local_flask_adaptations_apply_to_all_elements_during_effect" } }, - [967]={ + [991]={ [1]={ [1]={ limit={ @@ -18324,7 +18915,7 @@ return { [1]="local_flask_accuracy_rating_+%_during_effect" } }, - [968]={ + [992]={ [1]={ [1]={ limit={ @@ -18353,7 +18944,7 @@ return { [1]="local_flask_attack_speed_+%_while_healing" } }, - [969]={ + [993]={ [1]={ [1]={ limit={ @@ -18382,7 +18973,7 @@ return { [1]="local_flask_cast_speed_+%_while_healing" } }, - [970]={ + [994]={ [1]={ [1]={ limit={ @@ -18398,7 +18989,7 @@ return { [1]="local_flask_movement_speed_+%_while_healing" } }, - [971]={ + [995]={ [1]={ [1]={ limit={ @@ -18414,7 +19005,7 @@ return { [1]="local_flask_stun_recovery_+%_while_healing" } }, - [972]={ + [996]={ [1]={ [1]={ limit={ @@ -18430,7 +19021,7 @@ return { [1]="local_flask_resistances_+%_while_healing" } }, - [973]={ + [997]={ [1]={ [1]={ [1]={ @@ -18454,7 +19045,7 @@ return { [1]="old_do_not_use_local_flask_life_leech_%_while_healing" } }, - [974]={ + [998]={ [1]={ [1]={ [1]={ @@ -18478,7 +19069,7 @@ return { [1]="local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing" } }, - [975]={ + [999]={ [1]={ [1]={ [1]={ @@ -18502,7 +19093,7 @@ return { [1]="local_flask_life_leech_from_attack_damage_permyriad_while_healing" } }, - [976]={ + [1000]={ [1]={ [1]={ [1]={ @@ -18526,7 +19117,7 @@ return { [1]="local_flask_life_leech_permyriad_while_healing" } }, - [977]={ + [1001]={ [1]={ [1]={ [1]={ @@ -18550,7 +19141,7 @@ return { [1]="old_do_not_use_local_flask_mana_leech_%_while_healing" } }, - [978]={ + [1002]={ [1]={ [1]={ [1]={ @@ -18574,7 +19165,7 @@ return { [1]="local_flask_mana_leech_permyriad_while_healing" } }, - [979]={ + [1003]={ [1]={ [1]={ [1]={ @@ -18594,7 +19185,7 @@ return { [1]="local_flask_adds_knockback_while_healing" } }, - [980]={ + [1004]={ [1]={ [1]={ limit={ @@ -18610,7 +19201,7 @@ return { [1]="local_fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_during_effect" } }, - [981]={ + [1005]={ [1]={ [1]={ limit={ @@ -18626,7 +19217,7 @@ return { [1]="local_unique_flask_physical_damage_taken_%_as_cold_while_healing" } }, - [982]={ + [1006]={ [1]={ [1]={ limit={ @@ -18642,7 +19233,7 @@ return { [1]="local_unique_flask_physical_damage_%_to_add_as_cold_while_healing" } }, - [983]={ + [1007]={ [1]={ [1]={ limit={ @@ -18658,7 +19249,7 @@ return { [1]="local_unique_flask_avoid_chill_%_while_healing" } }, - [984]={ + [1008]={ [1]={ [1]={ limit={ @@ -18674,7 +19265,7 @@ return { [1]="local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect" } }, - [985]={ + [1009]={ [1]={ [1]={ limit={ @@ -18690,7 +19281,7 @@ return { [1]="local_unique_flask_avoid_freeze_%_while_healing" } }, - [986]={ + [1010]={ [1]={ [1]={ [1]={ @@ -18710,7 +19301,7 @@ return { [1]="local_flask_life_gain_on_skill_use_%_mana_cost" } }, - [987]={ + [1011]={ [1]={ [1]={ limit={ @@ -18726,7 +19317,7 @@ return { [1]="local_avoid_chill_%_during_flask_effect" } }, - [988]={ + [1012]={ [1]={ [1]={ limit={ @@ -18742,7 +19333,7 @@ return { [1]="local_avoid_freeze_%_during_flask_effect" } }, - [989]={ + [1013]={ [1]={ [1]={ limit={ @@ -18758,7 +19349,7 @@ return { [1]="local_avoid_ignite_%_during_flask_effect" } }, - [990]={ + [1014]={ [1]={ [1]={ limit={ @@ -18774,7 +19365,7 @@ return { [1]="local_avoid_shock_%_during_flask_effect" } }, - [991]={ + [1015]={ [1]={ [1]={ [1]={ @@ -18794,7 +19385,7 @@ return { [1]="local_chance_to_poison_on_hit_%_during_flask_effect" } }, - [992]={ + [1016]={ [1]={ [1]={ [1]={ @@ -18811,14 +19402,14 @@ return { [2]=-1 } }, - text="{0}% of Damage from your Hits cannot be Reflected during Effect" + text="Prevent {0:+d}% of Reflected Damage during Effect" } }, stats={ [1]="local_flask_-%_of_your_damage_cannot_be_reflected" } }, - [993]={ + [1017]={ [1]={ [1]={ limit={ @@ -18834,7 +19425,7 @@ return { [1]="local_flask_additional_physical_damage_reduction_%" } }, - [994]={ + [1018]={ [1]={ [1]={ [1]={ @@ -18854,7 +19445,7 @@ return { [1]="local_flask_adds_knockback_during_flask_effect" } }, - [995]={ + [1019]={ [1]={ [1]={ limit={ @@ -18870,7 +19461,7 @@ return { [1]="local_flask_area_of_effect_+%_during_flask_effect" } }, - [996]={ + [1020]={ [1]={ [1]={ limit={ @@ -18886,7 +19477,7 @@ return { [1]="local_flask_avoid_stun_chance_%_during_flask_effect" } }, - [997]={ + [1021]={ [1]={ [1]={ limit={ @@ -18902,7 +19493,7 @@ return { [1]="local_flask_cannot_be_stunned_during_flask_effect" } }, - [998]={ + [1022]={ [1]={ [1]={ limit={ @@ -18918,7 +19509,7 @@ return { [1]="local_flask_chance_to_freeze_shock_ignite_%_while_healing" } }, - [999]={ + [1023]={ [1]={ [1]={ [1]={ @@ -18938,7 +19529,7 @@ return { [1]="local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect" } }, - [1000]={ + [1024]={ [1]={ [1]={ limit={ @@ -18967,7 +19558,7 @@ return { [1]="local_flask_critical_strike_chance_+%_during_flask_effect" } }, - [1001]={ + [1025]={ [1]={ [1]={ [1]={ @@ -18987,7 +19578,7 @@ return { [1]="local_flask_culling_strike_during_flask_effect" } }, - [1002]={ + [1026]={ [1]={ [1]={ limit={ @@ -19003,7 +19594,7 @@ return { [1]="local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground" } }, - [1003]={ + [1027]={ [1]={ [1]={ limit={ @@ -19019,7 +19610,7 @@ return { [1]="local_flask_energy_shield_recharge_not_delayed_by_damage_during_effect" } }, - [1004]={ + [1028]={ [1]={ [1]={ limit={ @@ -19035,7 +19626,7 @@ return { [1]="local_flask_gain_endurance_charge_per_second_during_flask_effect" } }, - [1005]={ + [1029]={ [1]={ [1]={ [1]={ @@ -19068,7 +19659,7 @@ return { [1]="local_flask_ignite_proliferation_radius_during_effect" } }, - [1006]={ + [1030]={ [1]={ [1]={ [1]={ @@ -19088,7 +19679,7 @@ return { [1]="local_flask_ignited_enemies_during_effect_have_malediction" } }, - [1007]={ + [1031]={ [1]={ [1]={ limit={ @@ -19104,7 +19695,7 @@ return { [1]="local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect" } }, - [1008]={ + [1032]={ [1]={ [1]={ limit={ @@ -19120,7 +19711,7 @@ return { [1]="local_flask_immune_to_damage" } }, - [1009]={ + [1033]={ [1]={ [1]={ limit={ @@ -19136,7 +19727,7 @@ return { [1]="local_flask_immune_to_freeze_and_chill_during_flask_effect" } }, - [1010]={ + [1034]={ [1]={ [1]={ limit={ @@ -19152,7 +19743,7 @@ return { [1]="local_flask_immune_to_poison_during_flask_effect" } }, - [1011]={ + [1035]={ [1]={ [1]={ limit={ @@ -19168,7 +19759,7 @@ return { [1]="local_flask_immune_to_shock_during_flask_effect" } }, - [1012]={ + [1036]={ [1]={ [1]={ limit={ @@ -19184,7 +19775,7 @@ return { [1]="local_flask_is_petrified" } }, - [1013]={ + [1037]={ [1]={ [1]={ limit={ @@ -19213,7 +19804,7 @@ return { [1]="local_flask_item_found_rarity_+%_during_flask_effect" } }, - [1014]={ + [1038]={ [1]={ [1]={ [1]={ @@ -19241,7 +19832,7 @@ return { [1]="local_flask_life_leech_expected_ignite_damage_permyriad_during_effect" } }, - [1015]={ + [1039]={ [1]={ [1]={ limit={ @@ -19257,7 +19848,7 @@ return { [1]="local_flask_life_leech_is_instant_during_flask_effect" } }, - [1016]={ + [1040]={ [1]={ [1]={ [1]={ @@ -19281,7 +19872,7 @@ return { [1]="local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect" } }, - [1017]={ + [1041]={ [1]={ [1]={ [1]={ @@ -19301,7 +19892,7 @@ return { [1]="local_flask_life_regeneration_per_minute_%_during_flask_effect" } }, - [1018]={ + [1042]={ [1]={ [1]={ limit={ @@ -19317,7 +19908,7 @@ return { [1]="local_flask_no_mana_recovery_during_effect" } }, - [1019]={ + [1043]={ [1]={ [1]={ [1]={ @@ -19350,7 +19941,7 @@ return { [1]="local_flask_non_damaging_ailment_effect_+%_during_flask_effect" } }, - [1020]={ + [1044]={ [1]={ [1]={ limit={ @@ -19388,7 +19979,7 @@ return { [1]="local_flask_number_of_additional_curses_allowed_during_effect" } }, - [1021]={ + [1045]={ [1]={ [1]={ limit={ @@ -19413,7 +20004,7 @@ return { [1]="local_flask_number_of_additional_projectiles_during_flask_effect" } }, - [1022]={ + [1046]={ [1]={ [1]={ limit={ @@ -19429,7 +20020,7 @@ return { [1]="local_flask_physical_damage_can_ignite_during_effect" } }, - [1023]={ + [1047]={ [1]={ [1]={ limit={ @@ -19458,7 +20049,7 @@ return { [1]="local_flask_skill_mana_cost_+%_during_flask_effect" } }, - [1024]={ + [1048]={ [1]={ [1]={ [1]={ @@ -19491,7 +20082,7 @@ return { [1]="local_flask_vaal_souls_gained_per_minute_during_effect" } }, - [1025]={ + [1049]={ [1]={ [1]={ limit={ @@ -19507,7 +20098,7 @@ return { [1]="local_no_critical_strike_multiplier_during_flask_effect" } }, - [1026]={ + [1050]={ [1]={ [1]={ limit={ @@ -19536,7 +20127,7 @@ return { [1]="local_poison_duration_+%_during_flask_effect" } }, - [1027]={ + [1051]={ [1]={ [1]={ limit={ @@ -19565,7 +20156,7 @@ return { [1]="local_self_bleed_duration_+%_during_flask_effect" } }, - [1028]={ + [1052]={ [1]={ [1]={ limit={ @@ -19598,7 +20189,7 @@ return { [1]="local_self_chill_effect_+%_during_flask_effect" } }, - [1029]={ + [1053]={ [1]={ [1]={ limit={ @@ -19631,7 +20222,7 @@ return { [1]="local_self_curse_effect_+%_during_flask_effect" } }, - [1030]={ + [1054]={ [1]={ [1]={ limit={ @@ -19660,7 +20251,7 @@ return { [1]="local_self_freeze_duration_+%_during_flask_effect" } }, - [1031]={ + [1055]={ [1]={ [1]={ limit={ @@ -19689,7 +20280,7 @@ return { [1]="local_self_ignite_duration_+%_during_flask_effect" } }, - [1032]={ + [1056]={ [1]={ [1]={ limit={ @@ -19718,7 +20309,7 @@ return { [1]="local_self_poison_duration_+%_during_flask_effect" } }, - [1033]={ + [1057]={ [1]={ [1]={ limit={ @@ -19747,7 +20338,7 @@ return { [1]="local_self_shock_effect_+%_during_flask_effect" } }, - [1034]={ + [1058]={ [1]={ [1]={ limit={ @@ -19776,7 +20367,7 @@ return { [1]="local_unique_expedition_flask_ward_+%_final_during_flask_effect" } }, - [1035]={ + [1059]={ [1]={ [1]={ [1]={ @@ -19796,7 +20387,7 @@ return { [1]="local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing" } }, - [1036]={ + [1060]={ [1]={ [1]={ limit={ @@ -19812,7 +20403,7 @@ return { [1]="local_unique_flask_block_%_while_healing" } }, - [1037]={ + [1061]={ [1]={ [1]={ limit={ @@ -19828,7 +20419,7 @@ return { [1]="local_unique_flask_cannot_recover_life_while_healing" } }, - [1038]={ + [1062]={ [1]={ [1]={ limit={ @@ -19844,7 +20435,7 @@ return { [1]="local_unique_flask_charges_gained_+%_during_flask_effect" } }, - [1039]={ + [1063]={ [1]={ [1]={ limit={ @@ -19860,7 +20451,7 @@ return { [1]="local_unique_flask_critical_poison_dot_multiplier_+_during_flask_effect" } }, - [1040]={ + [1064]={ [1]={ [1]={ limit={ @@ -19889,7 +20480,7 @@ return { [1]="local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect" } }, - [1041]={ + [1065]={ [1]={ [1]={ limit={ @@ -19918,7 +20509,7 @@ return { [1]="local_unique_flask_damage_over_time_+%_during_flask_effect" } }, - [1042]={ + [1066]={ [1]={ [1]={ limit={ @@ -19947,7 +20538,7 @@ return { [1]="local_unique_flask_damage_+%_vs_demons_while_healing" } }, - [1043]={ + [1067]={ [1]={ [1]={ limit={ @@ -19976,7 +20567,7 @@ return { [1]="local_unique_flask_damage_taken_+%_vs_demons_while_healing" } }, - [1044]={ + [1068]={ [1]={ [1]={ limit={ @@ -19992,7 +20583,7 @@ return { [1]="local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing" } }, - [1045]={ + [1069]={ [1]={ [1]={ limit={ @@ -20008,7 +20599,7 @@ return { [1]="local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect" } }, - [1046]={ + [1070]={ [1]={ [1]={ limit={ @@ -20024,7 +20615,7 @@ return { [1]="local_unique_flask_item_quantity_+%_while_healing" } }, - [1047]={ + [1071]={ [1]={ [1]={ limit={ @@ -20040,7 +20631,7 @@ return { [1]="local_unique_flask_item_rarity_+%_while_healing" } }, - [1048]={ + [1072]={ [1]={ [1]={ limit={ @@ -20056,7 +20647,7 @@ return { [1]="local_unique_flask_kiaras_determination" } }, - [1049]={ + [1073]={ [1]={ [1]={ [1]={ @@ -20080,7 +20671,7 @@ return { [1]="local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing" } }, - [1050]={ + [1074]={ [1]={ [1]={ limit={ @@ -20096,7 +20687,7 @@ return { [1]="local_unique_flask_light_radius_+%_while_healing" } }, - [1051]={ + [1075]={ [1]={ [1]={ limit={ @@ -20112,7 +20703,7 @@ return { [1]="local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect" } }, - [1052]={ + [1076]={ [1]={ [1]={ limit={ @@ -20128,7 +20719,7 @@ return { [1]="local_unique_flask_nearby_enemies_cursed_with_level_x_vulnerability_during_flask_effect" } }, - [1053]={ + [1077]={ [1]={ [1]={ limit={ @@ -20144,7 +20735,7 @@ return { [1]="local_unique_flask_no_mana_cost_while_healing" } }, - [1054]={ + [1078]={ [1]={ [1]={ limit={ @@ -20160,7 +20751,7 @@ return { [1]="local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing" } }, - [1055]={ + [1079]={ [1]={ [1]={ limit={ @@ -20176,7 +20767,7 @@ return { [1]="local_unique_flask_resist_all_elements_%_during_flask_effect" } }, - [1056]={ + [1080]={ [1]={ [1]={ limit={ @@ -20192,7 +20783,7 @@ return { [1]="local_unique_flask_spell_block_%_while_healing" } }, - [1057]={ + [1081]={ [1]={ [1]={ limit={ @@ -20221,7 +20812,7 @@ return { [1]="local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect" } }, - [1058]={ + [1082]={ [1]={ [1]={ limit={ @@ -20250,7 +20841,7 @@ return { [1]="local_unique_flask_vaal_skill_damage_+%_during_flask_effect" } }, - [1059]={ + [1083]={ [1]={ [1]={ limit={ @@ -20279,7 +20870,7 @@ return { [1]="local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect" } }, - [1060]={ + [1084]={ [1]={ [1]={ limit={ @@ -20295,7 +20886,7 @@ return { [1]="local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect" } }, - [1061]={ + [1085]={ [1]={ [1]={ limit={ @@ -20328,7 +20919,7 @@ return { [1]="local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect" } }, - [1062]={ + [1086]={ [1]={ [1]={ limit={ @@ -20361,7 +20952,7 @@ return { [1]="local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect" } }, - [1063]={ + [1087]={ [1]={ [1]={ limit={ @@ -20377,7 +20968,7 @@ return { [1]="local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect" } }, - [1064]={ + [1088]={ [1]={ [1]={ [1]={ @@ -20401,7 +20992,7 @@ return { [1]="old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing" } }, - [1065]={ + [1089]={ [1]={ [1]={ limit={ @@ -20417,7 +21008,7 @@ return { [1]="spread_poison_to_nearby_enemies_on_kill" } }, - [1066]={ + [1090]={ [1]={ [1]={ limit={ @@ -20433,7 +21024,7 @@ return { [1]="unique_spread_poison_to_nearby_enemies_during_flask_effect" } }, - [1067]={ + [1091]={ [1]={ [1]={ [1]={ @@ -20453,7 +21044,7 @@ return { [1]="local_chaos_damage_taken_per_minute_during_flask_effect" } }, - [1068]={ + [1092]={ [1]={ [1]={ limit={ @@ -20482,7 +21073,7 @@ return { [1]="local_flask_enemies_ignited_during_flask_effect_damage_taken_+%" } }, - [1069]={ + [1093]={ [1]={ [1]={ limit={ @@ -20498,7 +21089,7 @@ return { [1]="local_flask_recover_%_maximum_life_on_kill_during_flask_effect" } }, - [1070]={ + [1094]={ [1]={ [1]={ limit={ @@ -20514,7 +21105,7 @@ return { [1]="local_flask_recover_%_maximum_mana_on_kill_during_flask_effect" } }, - [1071]={ + [1095]={ [1]={ [1]={ limit={ @@ -20530,7 +21121,7 @@ return { [1]="local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect" } }, - [1072]={ + [1096]={ [1]={ [1]={ limit={ @@ -20559,7 +21150,7 @@ return { [1]="local_attack_cast_movement_speed_+%_during_flask_effect" } }, - [1073]={ + [1097]={ [1]={ [1]={ limit={ @@ -20588,7 +21179,7 @@ return { [1]="local_attack_cast_movement_speed_+%_per_second_during_flask_effect" } }, - [1074]={ + [1098]={ [1]={ [1]={ [1]={ @@ -20608,7 +21199,7 @@ return { [1]="local_flask_unholy_might_during_flask_effect" } }, - [1075]={ + [1099]={ [1]={ [1]={ limit={ @@ -20624,7 +21215,7 @@ return { [1]="local_flask_prevents_death_while_healing" } }, - [1076]={ + [1100]={ [1]={ [1]={ [1]={ @@ -20665,7 +21256,7 @@ return { [1]="local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type" } }, - [1077]={ + [1101]={ [1]={ [1]={ [1]={ @@ -20685,7 +21276,7 @@ return { [1]="local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type" } }, - [1078]={ + [1102]={ [1]={ [1]={ limit={ @@ -20701,7 +21292,7 @@ return { [1]="local_unique_flask_shock_nearby_enemies_during_flask_effect" } }, - [1079]={ + [1103]={ [1]={ [1]={ limit={ @@ -20717,7 +21308,7 @@ return { [1]="local_unique_flask_shocked_during_flask_effect" } }, - [1080]={ + [1104]={ [1]={ [1]={ limit={ @@ -20733,7 +21324,7 @@ return { [1]="local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect" } }, - [1081]={ + [1105]={ [1]={ [1]={ limit={ @@ -20749,7 +21340,7 @@ return { [1]="local_unique_flask_lightning_resistance_penetration_%_during_flask_effect" } }, - [1082]={ + [1106]={ [1]={ [1]={ limit={ @@ -20778,7 +21369,7 @@ return { [1]="local_unique_vinktars_flask_shock_effect_+%_during_flask_effect" } }, - [1083]={ + [1107]={ [1]={ [1]={ [1]={ @@ -20811,7 +21402,7 @@ return { [1]="local_unique_vinktars_flask_shock_proliferation_radius_during_flask_effect" } }, - [1084]={ + [1108]={ [1]={ [1]={ limit={ @@ -20832,7 +21423,7 @@ return { [2]="local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect" } }, - [1085]={ + [1109]={ [1]={ [1]={ limit={ @@ -20853,7 +21444,7 @@ return { [2]="local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect" } }, - [1086]={ + [1110]={ [1]={ [1]={ [1]={ @@ -20877,7 +21468,7 @@ return { [1]="local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect" } }, - [1087]={ + [1111]={ [1]={ [1]={ [1]={ @@ -20901,7 +21492,7 @@ return { [1]="local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect" } }, - [1088]={ + [1112]={ [1]={ [1]={ limit={ @@ -20917,7 +21508,7 @@ return { [1]="local_unique_flask_leech_is_instant_during_flask_effect" } }, - [1089]={ + [1113]={ [1]={ [1]={ limit={ @@ -20933,7 +21524,7 @@ return { [1]="local_flask_cannot_gain_charges_during_flask_effect" } }, - [1090]={ + [1114]={ [1]={ [1]={ limit={ @@ -20949,7 +21540,7 @@ return { [1]="local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect" } }, - [1091]={ + [1115]={ [1]={ [1]={ limit={ @@ -20965,7 +21556,7 @@ return { [1]="local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect" } }, - [1092]={ + [1116]={ [1]={ [1]={ [1]={ @@ -20985,7 +21576,7 @@ return { [1]="local_flask_ghost_reaver" } }, - [1093]={ + [1117]={ [1]={ [1]={ [1]={ @@ -21005,7 +21596,7 @@ return { [1]="local_flask_zealots_oath" } }, - [1094]={ + [1118]={ [1]={ [1]={ [1]={ @@ -21025,7 +21616,7 @@ return { [1]="local_grant_eldritch_battery_during_flask_effect" } }, - [1095]={ + [1119]={ [1]={ [1]={ [1]={ @@ -21045,7 +21636,7 @@ return { [1]="local_grant_perfect_agony_during_flask_effect" } }, - [1096]={ + [1120]={ [1]={ [1]={ limit={ @@ -21061,7 +21652,7 @@ return { [1]="map_experience_gain_+%" } }, - [1097]={ + [1121]={ [1]={ [1]={ limit={ @@ -21077,7 +21668,7 @@ return { [1]="map_item_level_override" } }, - [1098]={ + [1122]={ [1]={ [1]={ limit={ @@ -21093,7 +21684,7 @@ return { [1]="local_weapon_uses_both_hands" } }, - [1099]={ + [1123]={ [1]={ [1]={ [1]={ @@ -21130,7 +21721,7 @@ return { [1]="local_attribute_requirements_+%" } }, - [1100]={ + [1124]={ [1]={ [1]={ limit={ @@ -21146,7 +21737,7 @@ return { [1]="local_cannot_be_used_with_chaos_innoculation" } }, - [1101]={ + [1125]={ [1]={ [1]={ limit={ @@ -21162,7 +21753,7 @@ return { [1]="local_dexterity_requirement_+" } }, - [1102]={ + [1126]={ [1]={ [1]={ limit={ @@ -21200,7 +21791,7 @@ return { [1]="local_dexterity_requirement_+%" } }, - [1103]={ + [1127]={ [1]={ [1]={ limit={ @@ -21216,7 +21807,7 @@ return { [1]="local_intelligence_requirement_+" } }, - [1104]={ + [1128]={ [1]={ [1]={ limit={ @@ -21254,7 +21845,7 @@ return { [1]="local_intelligence_requirement_+%" } }, - [1105]={ + [1129]={ [1]={ [1]={ limit={ @@ -21270,7 +21861,7 @@ return { [1]="local_level_requirement_-" } }, - [1106]={ + [1130]={ [1]={ [1]={ [1]={ @@ -21290,7 +21881,7 @@ return { [1]="local_no_attribute_requirements" } }, - [1107]={ + [1131]={ [1]={ [1]={ limit={ @@ -21306,7 +21897,7 @@ return { [1]="local_no_energy_shield" } }, - [1108]={ + [1132]={ [1]={ [1]={ limit={ @@ -21322,7 +21913,7 @@ return { [1]="local_strength_and_intelligence_requirement_+" } }, - [1109]={ + [1133]={ [1]={ [1]={ limit={ @@ -21338,7 +21929,7 @@ return { [1]="local_strength_requirement_+" } }, - [1110]={ + [1134]={ [1]={ [1]={ limit={ @@ -21376,7 +21967,7 @@ return { [1]="local_strength_requirement_+%" } }, - [1111]={ + [1135]={ [1]={ [1]={ limit={ @@ -21405,7 +21996,7 @@ return { [1]="map_hellscape_blood_consumed_+%_final" } }, - [1112]={ + [1136]={ [1]={ [1]={ limit={ @@ -21421,7 +22012,7 @@ return { [1]="map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time" } }, - [1113]={ + [1137]={ [1]={ [1]={ [1]={ @@ -21441,7 +22032,7 @@ return { [1]="map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated" } }, - [1114]={ + [1138]={ [1]={ [1]={ limit={ @@ -21457,7 +22048,7 @@ return { [1]="map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource" } }, - [1115]={ + [1139]={ [1]={ [1]={ limit={ @@ -21473,7 +22064,7 @@ return { [1]="map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource" } }, - [1116]={ + [1140]={ [1]={ [1]={ limit={ @@ -21489,7 +22080,7 @@ return { [1]="map_hellscape_gimmick_shift_randomly" } }, - [1117]={ + [1141]={ [1]={ [1]={ limit={ @@ -21505,7 +22096,7 @@ return { [1]="map_hellscape_fire_damage_taken_when_switching" } }, - [1118]={ + [1142]={ [1]={ [1]={ limit={ @@ -21521,7 +22112,7 @@ return { [1]="map_hellscape_lightning_damage_taken_when_switching" } }, - [1119]={ + [1143]={ [1]={ [1]={ limit={ @@ -21550,7 +22141,7 @@ return { [1]="map_hellscape_monster_damage_+%_final" } }, - [1120]={ + [1144]={ [1]={ [1]={ limit={ @@ -21579,7 +22170,7 @@ return { [1]="map_hellscape_monster_damage_taken_+%_final" } }, - [1121]={ + [1145]={ [1]={ [1]={ limit={ @@ -21608,7 +22199,7 @@ return { [1]="map_hellscape_monster_life_+%_final" } }, - [1122]={ + [1146]={ [1]={ [1]={ [1]={ @@ -21628,7 +22219,7 @@ return { [1]="map_hellscape_monster_life_regeneration_rate_per_minute_%" } }, - [1123]={ + [1147]={ [1]={ [1]={ limit={ @@ -21644,7 +22235,7 @@ return { [1]="map_hellscape_physical_damage_taken_when_switching" } }, - [1124]={ + [1148]={ [1]={ [1]={ limit={ @@ -21669,7 +22260,7 @@ return { [1]="map_player_additional_physical_damage_reduction_%_in_hellscape" } }, - [1125]={ + [1149]={ [1]={ [1]={ limit={ @@ -21685,7 +22276,7 @@ return { [1]="map_player_block_chance_%_in_hellscape" } }, - [1126]={ + [1150]={ [1]={ [1]={ limit={ @@ -21701,7 +22292,7 @@ return { [1]="map_player_chance_to_evade_attacks_%_in_hellscape" } }, - [1127]={ + [1151]={ [1]={ [1]={ limit={ @@ -21717,7 +22308,7 @@ return { [1]="map_player_es_loss_per_second_in_hellscape" } }, - [1128]={ + [1152]={ [1]={ [1]={ limit={ @@ -21733,7 +22324,7 @@ return { [1]="map_player_life_loss_per_second_in_hellscape" } }, - [1129]={ + [1153]={ [1]={ [1]={ limit={ @@ -21762,7 +22353,7 @@ return { [1]="map_player_movement_speed_+%_final_in_hellscape" } }, - [1130]={ + [1154]={ [1]={ [1]={ limit={ @@ -21778,7 +22369,7 @@ return { [1]="map_player_spell_suppression_chance_%_in_hellscape" } }, - [1131]={ + [1155]={ [1]={ [1]={ limit={ @@ -21794,7 +22385,7 @@ return { [1]="map_supporter_volatile_on_death_chance_legion" } }, - [1132]={ + [1156]={ [1]={ [1]={ limit={ @@ -21819,7 +22410,7 @@ return { [1]="map_legion_league_extra_spawns" } }, - [1133]={ + [1157]={ [1]={ [1]={ limit={ @@ -21835,7 +22426,7 @@ return { [1]="map_reliquary_must_complete_legions" } }, - [1134]={ + [1158]={ [1]={ [1]={ limit={ @@ -21860,7 +22451,7 @@ return { [1]="map_hellscape_additional_boss" } }, - [1135]={ + [1159]={ [1]={ [1]={ limit={ @@ -21889,7 +22480,7 @@ return { [1]="map_hellscape_item_drop_quantity_+%" } }, - [1136]={ + [1160]={ [1]={ [1]={ limit={ @@ -21918,7 +22509,7 @@ return { [1]="map_hellscape_item_drop_rarity_+%" } }, - [1137]={ + [1161]={ [1]={ [1]={ limit={ @@ -21947,7 +22538,7 @@ return { [1]="map_hellscape_monster_slain_experience_+%_final" } }, - [1138]={ + [1162]={ [1]={ [1]={ limit={ @@ -21976,7 +22567,7 @@ return { [1]="map_hellscape_pack_size_+%" } }, - [1139]={ + [1163]={ [1]={ [1]={ limit={ @@ -22001,7 +22592,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_abyss_jewel" } }, - [1140]={ + [1164]={ [1]={ [1]={ limit={ @@ -22026,7 +22617,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_basic_currency_item" } }, - [1141]={ + [1165]={ [1]={ [1]={ limit={ @@ -22051,7 +22642,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_blight_oil" } }, - [1142]={ + [1166]={ [1]={ [1]={ limit={ @@ -22076,7 +22667,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_breach_splinters" } }, - [1143]={ + [1167]={ [1]={ [1]={ limit={ @@ -22101,7 +22692,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_delirium_splinters" } }, - [1144]={ + [1168]={ [1]={ [1]={ limit={ @@ -22126,7 +22717,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_delve_fossil" } }, - [1145]={ + [1169]={ [1]={ [1]={ limit={ @@ -22151,7 +22742,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_enchanted_item" } }, - [1146]={ + [1170]={ [1]={ [1]={ limit={ @@ -22176,7 +22767,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_essence" } }, - [1147]={ + [1171]={ [1]={ [1]={ limit={ @@ -22201,7 +22792,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_expedition_currency" } }, - [1148]={ + [1172]={ [1]={ [1]={ limit={ @@ -22226,7 +22817,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_fractured_item" } }, - [1149]={ + [1173]={ [1]={ [1]={ limit={ @@ -22251,7 +22842,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_gem" } }, - [1150]={ + [1174]={ [1]={ [1]={ limit={ @@ -22276,7 +22867,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_incubator" } }, - [1151]={ + [1175]={ [1]={ [1]={ limit={ @@ -22301,7 +22892,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_influence_item" } }, - [1152]={ + [1176]={ [1]={ [1]={ limit={ @@ -22326,7 +22917,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_legion_splinters" } }, - [1153]={ + [1177]={ [1]={ [1]={ limit={ @@ -22351,7 +22942,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_map_item" } }, - [1154]={ + [1178]={ [1]={ [1]={ limit={ @@ -22376,7 +22967,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_metamorph_catalyst" } }, - [1155]={ + [1179]={ [1]={ [1]={ limit={ @@ -22401,7 +22992,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_scarab" } }, - [1156]={ + [1180]={ [1]={ [1]={ limit={ @@ -22426,7 +23017,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_scourged_item" } }, - [1157]={ + [1181]={ [1]={ [1]={ limit={ @@ -22451,7 +23042,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_stacked_decks" } }, - [1158]={ + [1182]={ [1]={ [1]={ limit={ @@ -22476,7 +23067,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_tainted_currency" } }, - [1159]={ + [1183]={ [1]={ [1]={ limit={ @@ -22501,7 +23092,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_unique_item" } }, - [1160]={ + [1184]={ [1]={ [1]={ limit={ @@ -22526,7 +23117,7 @@ return { [1]="map_hellscape_rare_monster_drop_items_X_levels_higher" } }, - [1161]={ + [1185]={ [1]={ [1]={ limit={ @@ -22547,7 +23138,7 @@ return { [2]="can_gain_banner_resource_while_banner_is_placed" } }, - [1162]={ + [1186]={ [1]={ [1]={ limit={ @@ -22563,7 +23154,7 @@ return { [1]="monster_base_block_%" } }, - [1163]={ + [1187]={ [1]={ [1]={ limit={ @@ -22579,7 +23170,7 @@ return { [1]="shield_block_%" } }, - [1164]={ + [1188]={ [1]={ [1]={ limit={ @@ -22595,7 +23186,7 @@ return { [1]="shield_spell_block_%" } }, - [1165]={ + [1189]={ [1]={ [1]={ [1]={ @@ -22628,7 +23219,7 @@ return { [1]="base_spell_damage_%_suppressed" } }, - [1166]={ + [1190]={ [1]={ [1]={ [1]={ @@ -22652,7 +23243,7 @@ return { [1]="base_spell_suppression_chance_150%_of_value" } }, - [1167]={ + [1191]={ [1]={ [1]={ [1]={ @@ -22672,7 +23263,7 @@ return { [1]="base_spell_suppression_chance_%" } }, - [1168]={ + [1192]={ [1]={ [1]={ limit={ @@ -22688,7 +23279,7 @@ return { [1]="spell_block_while_dual_wielding_%" } }, - [1169]={ + [1193]={ [1]={ [1]={ limit={ @@ -22704,7 +23295,7 @@ return { [1]="spell_block_%_while_on_low_life" } }, - [1170]={ + [1194]={ [1]={ [1]={ [1]={ @@ -22737,7 +23328,7 @@ return { [1]="spell_damage_%_suppressed_while_on_full_energy_shield" } }, - [1171]={ + [1195]={ [1]={ [1]={ limit={ @@ -22762,7 +23353,7 @@ return { [1]="suppressed_spell_damage_bypass_energy_shield_%" } }, - [1172]={ + [1196]={ [1]={ [1]={ [1]={ @@ -22795,7 +23386,7 @@ return { [1]="suppressed_spell_damage_taken_%_recouped_as_es" } }, - [1173]={ + [1197]={ [1]={ [1]={ limit={ @@ -22811,7 +23402,7 @@ return { [1]="spell_block_with_bow_%" } }, - [1174]={ + [1198]={ [1]={ [1]={ [1]={ @@ -22831,7 +23422,7 @@ return { [1]="spell_block_with_staff_%" } }, - [1175]={ + [1199]={ [1]={ [1]={ [1]={ @@ -22851,7 +23442,7 @@ return { [1]="staff_block_%" } }, - [1176]={ + [1200]={ [1]={ [1]={ limit={ @@ -22867,7 +23458,7 @@ return { [1]="block_chance_%_per_50_strength" } }, - [1177]={ + [1201]={ [1]={ [1]={ limit={ @@ -22883,7 +23474,7 @@ return { [1]="spell_block_chance_%_per_50_strength" } }, - [1178]={ + [1202]={ [1]={ [1]={ [1]={ @@ -22903,7 +23494,7 @@ return { [1]="additional_staff_block_%" } }, - [1179]={ + [1203]={ [1]={ [1]={ [1]={ @@ -22923,7 +23514,7 @@ return { [1]="old_do_not_use_spell_block_%_from_assumed_block_value" } }, - [1180]={ + [1204]={ [1]={ [1]={ [1]={ @@ -22947,7 +23538,7 @@ return { [1]="old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value" } }, - [1181]={ + [1205]={ [1]={ [1]={ limit={ @@ -22963,23 +23554,7 @@ return { [1]="spell_block_equals_attack_block" } }, - [1182]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Chance to Block Spell Damage" - } - }, - stats={ - [1]="additional_spell_block_%" - } - }, - [1183]={ + [1206]={ [1]={ [1]={ [1]={ @@ -23016,7 +23591,7 @@ return { [1]="base_spell_block_luck" } }, - [1184]={ + [1207]={ [1]={ [1]={ limit={ @@ -23032,7 +23607,7 @@ return { [1]="base_spell_block_%" } }, - [1185]={ + [1208]={ [1]={ [1]={ limit={ @@ -23048,7 +23623,7 @@ return { [1]="unique_spell_block_%_when_in_off_hand" } }, - [1186]={ + [1209]={ [1]={ [1]={ limit={ @@ -23064,7 +23639,7 @@ return { [1]="block_while_dual_wielding_%" } }, - [1187]={ + [1210]={ [1]={ [1]={ limit={ @@ -23080,7 +23655,7 @@ return { [1]="block_while_dual_wielding_claws_%" } }, - [1188]={ + [1211]={ [1]={ [1]={ limit={ @@ -23096,7 +23671,7 @@ return { [1]="block_chance_%_while_holding_shield" } }, - [1189]={ + [1212]={ [1]={ [1]={ limit={ @@ -23112,7 +23687,7 @@ return { [1]="dual_wield_or_shield_block_%" } }, - [1190]={ + [1213]={ [1]={ [1]={ limit={ @@ -23145,7 +23720,7 @@ return { [1]="block_chance_+%" } }, - [1191]={ + [1214]={ [1]={ [1]={ limit={ @@ -23174,7 +23749,7 @@ return { [1]="block_recovery_+%" } }, - [1192]={ + [1215]={ [1]={ [1]={ limit={ @@ -23190,7 +23765,7 @@ return { [1]="melee_splash" } }, - [1193]={ + [1216]={ [1]={ [1]={ limit={ @@ -23206,7 +23781,7 @@ return { [1]="offerings_also_buff_you" } }, - [1194]={ + [1217]={ [1]={ [1]={ limit={ @@ -23235,7 +23810,7 @@ return { [1]="self_offering_effect_+%" } }, - [1195]={ + [1218]={ [1]={ [1]={ limit={ @@ -23264,7 +23839,7 @@ return { [1]="offering_spells_effect_+%" } }, - [1196]={ + [1219]={ [1]={ [1]={ limit={ @@ -23293,7 +23868,7 @@ return { [1]="bone_offering_effect_+%" } }, - [1197]={ + [1220]={ [1]={ [1]={ limit={ @@ -23322,7 +23897,7 @@ return { [1]="flesh_offering_effect_+%" } }, - [1198]={ + [1221]={ [1]={ [1]={ limit={ @@ -23351,7 +23926,7 @@ return { [1]="spirit_offering_effect_+%" } }, - [1199]={ + [1222]={ [1]={ [1]={ limit={ @@ -23380,7 +23955,7 @@ return { [1]="slayer_ascendancy_melee_splash_damage_+%_final_for_splash" } }, - [1200]={ + [1223]={ [1]={ [1]={ [1]={ @@ -23400,7 +23975,7 @@ return { [1]="additional_all_attributes" } }, - [1201]={ + [1224]={ [1]={ [1]={ limit={ @@ -23416,7 +23991,7 @@ return { [1]="additional_strength" } }, - [1202]={ + [1225]={ [1]={ [1]={ limit={ @@ -23432,7 +24007,7 @@ return { [1]="additional_dexterity" } }, - [1203]={ + [1226]={ [1]={ [1]={ limit={ @@ -23448,7 +24023,7 @@ return { [1]="additional_intelligence" } }, - [1204]={ + [1227]={ [1]={ [1]={ limit={ @@ -23464,7 +24039,7 @@ return { [1]="additional_strength_and_dexterity" } }, - [1205]={ + [1228]={ [1]={ [1]={ limit={ @@ -23480,7 +24055,7 @@ return { [1]="additional_strength_and_intelligence" } }, - [1206]={ + [1229]={ [1]={ [1]={ limit={ @@ -23496,7 +24071,7 @@ return { [1]="additional_dexterity_and_intelligence" } }, - [1207]={ + [1230]={ [1]={ [1]={ [1]={ @@ -23533,7 +24108,7 @@ return { [1]="all_attributes_+%" } }, - [1208]={ + [1231]={ [1]={ [1]={ limit={ @@ -23562,7 +24137,7 @@ return { [1]="strength_+%" } }, - [1209]={ + [1232]={ [1]={ [1]={ limit={ @@ -23591,7 +24166,7 @@ return { [1]="dexterity_+%" } }, - [1210]={ + [1233]={ [1]={ [1]={ limit={ @@ -23620,7 +24195,7 @@ return { [1]="intelligence_+%" } }, - [1211]={ + [1234]={ [1]={ [1]={ limit={ @@ -23636,7 +24211,7 @@ return { [1]="modifiers_to_attributes_instead_apply_to_ascendance" } }, - [1212]={ + [1235]={ [1]={ [1]={ limit={ @@ -23652,7 +24227,7 @@ return { [1]="elemental_resistance_+%_per_15_ascendance" } }, - [1213]={ + [1236]={ [1]={ [1]={ limit={ @@ -23668,7 +24243,7 @@ return { [1]="penetrate_elemental_resistance_%_per_15_ascendance" } }, - [1214]={ + [1237]={ [1]={ [1]={ limit={ @@ -23684,7 +24259,7 @@ return { [1]="attribute_requirements_can_be_satisfied_by_%_of_ascendance" } }, - [1215]={ + [1238]={ [1]={ [1]={ limit={ @@ -23713,7 +24288,7 @@ return { [1]="damage_+%" } }, - [1216]={ + [1239]={ [1]={ [1]={ limit={ @@ -23742,7 +24317,7 @@ return { [1]="on_weapon_global_damage_+%" } }, - [1217]={ + [1240]={ [1]={ [1]={ limit={ @@ -23771,7 +24346,7 @@ return { [1]="totem_damage_+%" } }, - [1218]={ + [1241]={ [1]={ [1]={ limit={ @@ -23800,7 +24375,7 @@ return { [1]="trap_damage_+%" } }, - [1219]={ + [1242]={ [1]={ [1]={ limit={ @@ -23829,7 +24404,7 @@ return { [1]="trap_or_mine_damage_+%" } }, - [1220]={ + [1243]={ [1]={ [1]={ limit={ @@ -23858,7 +24433,7 @@ return { [1]="mine_damage_+%" } }, - [1221]={ + [1244]={ [1]={ [1]={ limit={ @@ -23891,7 +24466,7 @@ return { [1]="unique_mine_damage_+%_final" } }, - [1222]={ + [1245]={ [1]={ [1]={ limit={ @@ -23920,7 +24495,7 @@ return { [1]="attack_damage_+%" } }, - [1223]={ + [1246]={ [1]={ [1]={ limit={ @@ -23949,7 +24524,7 @@ return { [1]="unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final" } }, - [1224]={ + [1247]={ [1]={ [1]={ limit={ @@ -23982,7 +24557,7 @@ return { [1]="unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final" } }, - [1225]={ + [1248]={ [1]={ [1]={ limit={ @@ -24011,7 +24586,7 @@ return { [1]="cold_attack_damage_+%" } }, - [1226]={ + [1249]={ [1]={ [1]={ limit={ @@ -24040,7 +24615,7 @@ return { [1]="fire_attack_damage_+%" } }, - [1227]={ + [1250]={ [1]={ [1]={ limit={ @@ -24069,7 +24644,7 @@ return { [1]="physical_attack_damage_+%" } }, - [1228]={ + [1251]={ [1]={ [1]={ limit={ @@ -24098,7 +24673,7 @@ return { [1]="cold_attack_damage_+%_while_holding_a_shield" } }, - [1229]={ + [1252]={ [1]={ [1]={ limit={ @@ -24127,7 +24702,7 @@ return { [1]="fire_attack_damage_+%_while_holding_a_shield" } }, - [1230]={ + [1253]={ [1]={ [1]={ limit={ @@ -24156,7 +24731,7 @@ return { [1]="attack_damage_+%_while_holding_a_shield" } }, - [1231]={ + [1254]={ [1]={ [1]={ limit={ @@ -24185,7 +24760,7 @@ return { [1]="attack_skills_damage_+%_while_holding_shield" } }, - [1232]={ + [1255]={ [1]={ [1]={ limit={ @@ -24214,7 +24789,7 @@ return { [1]="physical_attack_damage_+%_while_holding_a_shield" } }, - [1233]={ + [1256]={ [1]={ [1]={ [1]={ @@ -24251,7 +24826,7 @@ return { [1]="attack_ailment_damage_+%_while_holding_shield" } }, - [1234]={ + [1257]={ [1]={ [1]={ limit={ @@ -24280,7 +24855,7 @@ return { [1]="damage_over_time_+%" } }, - [1235]={ + [1258]={ [1]={ [1]={ limit={ @@ -24309,7 +24884,7 @@ return { [1]="physical_damage_over_time_+%" } }, - [1236]={ + [1259]={ [1]={ [1]={ limit={ @@ -24338,7 +24913,7 @@ return { [1]="fire_damage_over_time_+%" } }, - [1237]={ + [1260]={ [1]={ [1]={ limit={ @@ -24367,7 +24942,7 @@ return { [1]="cold_damage_over_time_+%" } }, - [1238]={ + [1261]={ [1]={ [1]={ limit={ @@ -24396,7 +24971,7 @@ return { [1]="chaos_damage_over_time_+%" } }, - [1239]={ + [1262]={ [1]={ [1]={ [1]={ @@ -24433,7 +25008,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [1240]={ + [1263]={ [1]={ [1]={ limit={ @@ -24462,7 +25037,7 @@ return { [1]="damage_+%_per_active_curse_on_self" } }, - [1241]={ + [1264]={ [1]={ [1]={ limit={ @@ -24491,7 +25066,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [1242]={ + [1265]={ [1]={ [1]={ limit={ @@ -24520,7 +25095,7 @@ return { [1]="physical_damage_+%_while_life_leeching" } }, - [1243]={ + [1266]={ [1]={ [1]={ limit={ @@ -24549,7 +25124,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [1244]={ + [1267]={ [1]={ [1]={ limit={ @@ -24578,7 +25153,7 @@ return { [1]="damage_+%_while_es_leeching" } }, - [1245]={ + [1268]={ [1]={ [1]={ [1]={ @@ -24615,7 +25190,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [1246]={ + [1269]={ [1]={ [1]={ limit={ @@ -24644,7 +25219,7 @@ return { [1]="attack_speed_+%_when_on_full_life" } }, - [1247]={ + [1270]={ [1]={ [1]={ limit={ @@ -24673,7 +25248,7 @@ return { [1]="spell_damage_+%" } }, - [1248]={ + [1271]={ [1]={ [1]={ limit={ @@ -24702,7 +25277,7 @@ return { [1]="damage_over_time_+%_with_spells" } }, - [1249]={ + [1272]={ [1]={ [1]={ limit={ @@ -24731,7 +25306,7 @@ return { [1]="spell_fire_damage_+%" } }, - [1250]={ + [1273]={ [1]={ [1]={ limit={ @@ -24760,7 +25335,7 @@ return { [1]="spell_cold_damage_+%" } }, - [1251]={ + [1274]={ [1]={ [1]={ [1]={ @@ -24797,7 +25372,7 @@ return { [1]="spell_staff_damage_+%" } }, - [1252]={ + [1275]={ [1]={ [1]={ limit={ @@ -24826,7 +25401,7 @@ return { [1]="spell_bow_damage_+%" } }, - [1253]={ + [1276]={ [1]={ [1]={ limit={ @@ -24855,7 +25430,7 @@ return { [1]="spell_damage_+%_while_holding_shield" } }, - [1254]={ + [1277]={ [1]={ [1]={ limit={ @@ -24884,7 +25459,7 @@ return { [1]="spell_damage_+%_while_dual_wielding" } }, - [1255]={ + [1278]={ [1]={ [1]={ limit={ @@ -24913,7 +25488,7 @@ return { [1]="physical_damage_+%" } }, - [1256]={ + [1279]={ [1]={ [1]={ limit={ @@ -24994,7 +25569,7 @@ return { [2]="local_weapon_no_physical_damage" } }, - [1257]={ + [1280]={ [1]={ [1]={ [1]={ @@ -25014,7 +25589,7 @@ return { [1]="local_weapon_enemy_phys_reduction_%_penalty" } }, - [1258]={ + [1281]={ [1]={ [1]={ limit={ @@ -25043,7 +25618,7 @@ return { [1]="melee_damage_+%" } }, - [1259]={ + [1282]={ [1]={ [1]={ limit={ @@ -25072,7 +25647,7 @@ return { [1]="melee_damage_+%_vs_frozen_enemies" } }, - [1260]={ + [1283]={ [1]={ [1]={ limit={ @@ -25101,7 +25676,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [1261]={ + [1284]={ [1]={ [1]={ limit={ @@ -25130,7 +25705,7 @@ return { [1]="melee_damage_+%_vs_shocked_enemies" } }, - [1262]={ + [1285]={ [1]={ [1]={ limit={ @@ -25159,7 +25734,7 @@ return { [1]="damage_vs_shocked_enemies_+%" } }, - [1263]={ + [1286]={ [1]={ [1]={ limit={ @@ -25188,7 +25763,7 @@ return { [1]="melee_damage_+%_vs_burning_enemies" } }, - [1264]={ + [1287]={ [1]={ [1]={ [1]={ @@ -25225,7 +25800,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [1265]={ + [1288]={ [1]={ [1]={ limit={ @@ -25254,7 +25829,7 @@ return { [1]="damage_+%_vs_frozen_shocked_ignited_enemies" } }, - [1266]={ + [1289]={ [1]={ [1]={ limit={ @@ -25270,7 +25845,23 @@ return { [1]="dot_multiplier_+" } }, - [1267]={ + [1290]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions have {0:+d}% to Damage over Time Multiplier" + } + }, + stats={ + [1]="base_minion_dot_multiplier_+" + } + }, + [1291]={ [1]={ [1]={ limit={ @@ -25286,7 +25877,7 @@ return { [1]="ailment_dot_multiplier_+" } }, - [1268]={ + [1292]={ [1]={ [1]={ limit={ @@ -25302,7 +25893,7 @@ return { [1]="critical_ailment_dot_multiplier_+" } }, - [1269]={ + [1293]={ [1]={ [1]={ limit={ @@ -25318,7 +25909,7 @@ return { [1]="damage_over_time_multiplier_+_with_spells" } }, - [1270]={ + [1294]={ [1]={ [1]={ limit={ @@ -25334,7 +25925,7 @@ return { [1]="damage_over_time_multiplier_+_with_attacks" } }, - [1271]={ + [1295]={ [1]={ [1]={ limit={ @@ -25350,7 +25941,7 @@ return { [1]="physical_dot_multiplier_+" } }, - [1272]={ + [1296]={ [1]={ [1]={ limit={ @@ -25366,7 +25957,7 @@ return { [1]="bleeding_dot_multiplier_+" } }, - [1273]={ + [1297]={ [1]={ [1]={ limit={ @@ -25382,7 +25973,7 @@ return { [1]="critical_bleeding_dot_multiplier_+" } }, - [1274]={ + [1298]={ [1]={ [1]={ limit={ @@ -25398,7 +25989,7 @@ return { [1]="physical_damage_over_time_multiplier_+_with_attacks" } }, - [1275]={ + [1299]={ [1]={ [1]={ limit={ @@ -25414,7 +26005,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [1276]={ + [1300]={ [1]={ [1]={ limit={ @@ -25430,7 +26021,7 @@ return { [1]="critical_ignite_dot_multiplier_+" } }, - [1277]={ + [1301]={ [1]={ [1]={ limit={ @@ -25446,7 +26037,7 @@ return { [1]="fire_damage_over_time_multiplier_+_with_attacks" } }, - [1278]={ + [1302]={ [1]={ [1]={ limit={ @@ -25462,7 +26053,7 @@ return { [1]="ignite_dot_multiplier_+" } }, - [1279]={ + [1303]={ [1]={ [1]={ limit={ @@ -25478,7 +26069,7 @@ return { [1]="cold_damage_over_time_multiplier_+_while_affected_by_malevolence" } }, - [1280]={ + [1304]={ [1]={ [1]={ limit={ @@ -25494,7 +26085,7 @@ return { [1]="cold_dot_multiplier_+" } }, - [1281]={ + [1305]={ [1]={ [1]={ limit={ @@ -25510,7 +26101,7 @@ return { [1]="lightning_dot_multiplier_+" } }, - [1282]={ + [1306]={ [1]={ [1]={ limit={ @@ -25526,7 +26117,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_while_affected_by_malevolence" } }, - [1283]={ + [1307]={ [1]={ [1]={ limit={ @@ -25542,7 +26133,7 @@ return { [1]="chaos_dot_multiplier_+" } }, - [1284]={ + [1308]={ [1]={ [1]={ limit={ @@ -25558,7 +26149,7 @@ return { [1]="chaos_non_ailment_damage_over_time_multiplier_+" } }, - [1285]={ + [1309]={ [1]={ [1]={ limit={ @@ -25574,7 +26165,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_with_attacks" } }, - [1286]={ + [1310]={ [1]={ [1]={ limit={ @@ -25590,7 +26181,7 @@ return { [1]="critical_poison_dot_multiplier_+" } }, - [1287]={ + [1311]={ [1]={ [1]={ limit={ @@ -25606,7 +26197,7 @@ return { [1]="poison_dot_multiplier_+" } }, - [1288]={ + [1312]={ [1]={ [1]={ limit={ @@ -25622,7 +26213,7 @@ return { [1]="local_poison_dot_multiplier_+" } }, - [1289]={ + [1313]={ [1]={ [1]={ limit={ @@ -25643,7 +26234,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [1290]={ + [1314]={ [1]={ [1]={ limit={ @@ -25664,7 +26255,7 @@ return { [2]="attack_maximum_added_physical_damage" } }, - [1291]={ + [1315]={ [1]={ [1]={ limit={ @@ -25685,7 +26276,7 @@ return { [2]="from_self_maximum_added_attack_physical_damage_taken" } }, - [1292]={ + [1316]={ [1]={ [1]={ limit={ @@ -25706,7 +26297,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons" } }, - [1293]={ + [1317]={ [1]={ [1]={ limit={ @@ -25727,7 +26318,7 @@ return { [2]="local_attack_maximum_added_physical_damage_per_3_levels" } }, - [1294]={ + [1318]={ [1]={ [1]={ limit={ @@ -25748,7 +26339,7 @@ return { [2]="spell_maximum_added_physical_damage_per_3_levels" } }, - [1295]={ + [1319]={ [1]={ [1]={ limit={ @@ -25769,7 +26360,7 @@ return { [2]="maximum_added_physical_damage_vs_frozen_enemies" } }, - [1296]={ + [1320]={ [1]={ [1]={ limit={ @@ -25790,7 +26381,7 @@ return { [2]="maximum_added_fire_damage_vs_ignited_enemies" } }, - [1297]={ + [1321]={ [1]={ [1]={ limit={ @@ -25811,7 +26402,7 @@ return { [2]="maximum_added_fire_attack_damage_per_active_buff" } }, - [1298]={ + [1322]={ [1]={ [1]={ limit={ @@ -25832,7 +26423,7 @@ return { [2]="maximum_added_fire_spell_damage_per_active_buff" } }, - [1299]={ + [1323]={ [1]={ [1]={ limit={ @@ -25853,7 +26444,7 @@ return { [2]="maximum_added_fire_damage_per_active_buff" } }, - [1300]={ + [1324]={ [1]={ [1]={ limit={ @@ -25874,7 +26465,7 @@ return { [2]="local_maximum_added_physical_damage" } }, - [1301]={ + [1325]={ [1]={ [1]={ limit={ @@ -25903,7 +26494,7 @@ return { [1]="attack_skills_damage_+%_while_dual_wielding" } }, - [1302]={ + [1326]={ [1]={ [1]={ limit={ @@ -25932,7 +26523,7 @@ return { [1]="damage_while_dual_wielding_+%" } }, - [1303]={ + [1327]={ [1]={ [1]={ limit={ @@ -25961,7 +26552,7 @@ return { [1]="physical_damage_while_dual_wielding_+%" } }, - [1304]={ + [1328]={ [1]={ [1]={ limit={ @@ -25990,7 +26581,7 @@ return { [1]="fire_damage_while_dual_wielding_+%" } }, - [1305]={ + [1329]={ [1]={ [1]={ limit={ @@ -26019,7 +26610,7 @@ return { [1]="cold_damage_while_dual_wielding_+%" } }, - [1306]={ + [1330]={ [1]={ [1]={ limit={ @@ -26048,7 +26639,7 @@ return { [1]="base_main_hand_damage_+%" } }, - [1307]={ + [1331]={ [1]={ [1]={ limit={ @@ -26077,7 +26668,7 @@ return { [1]="base_off_hand_damage_+%" } }, - [1308]={ + [1332]={ [1]={ [1]={ [1]={ @@ -26114,7 +26705,7 @@ return { [1]="melee_weapon_hit_and_ailment_damage_+%" } }, - [1309]={ + [1333]={ [1]={ [1]={ limit={ @@ -26143,7 +26734,7 @@ return { [1]="one_handed_melee_physical_damage_+%" } }, - [1310]={ + [1334]={ [1]={ [1]={ [1]={ @@ -26180,7 +26771,7 @@ return { [1]="one_handed_melee_weapon_hit_and_ailment_damage_+%" } }, - [1311]={ + [1335]={ [1]={ [1]={ [1]={ @@ -26217,7 +26808,7 @@ return { [1]="one_handed_weapon_hit_and_ailment_damage_+%" } }, - [1312]={ + [1336]={ [1]={ [1]={ [1]={ @@ -26254,7 +26845,7 @@ return { [1]="melee_weapon_ailment_damage_+%" } }, - [1313]={ + [1337]={ [1]={ [1]={ [1]={ @@ -26291,7 +26882,7 @@ return { [1]="one_handed_melee_weapon_ailment_damage_+%" } }, - [1314]={ + [1338]={ [1]={ [1]={ [1]={ @@ -26328,7 +26919,7 @@ return { [1]="one_handed_weapon_ailment_damage_+%" } }, - [1315]={ + [1339]={ [1]={ [1]={ limit={ @@ -26357,7 +26948,7 @@ return { [1]="one_handed_melee_fire_damage_+%" } }, - [1316]={ + [1340]={ [1]={ [1]={ limit={ @@ -26386,7 +26977,7 @@ return { [1]="one_handed_melee_cold_damage_+%" } }, - [1317]={ + [1341]={ [1]={ [1]={ limit={ @@ -26415,7 +27006,7 @@ return { [1]="two_handed_melee_physical_damage_+%" } }, - [1318]={ + [1342]={ [1]={ [1]={ [1]={ @@ -26452,7 +27043,7 @@ return { [1]="two_handed_melee_weapon_hit_and_ailment_damage_+%" } }, - [1319]={ + [1343]={ [1]={ [1]={ [1]={ @@ -26489,7 +27080,7 @@ return { [1]="two_handed_weapon_hit_and_ailment_damage_+%" } }, - [1320]={ + [1344]={ [1]={ [1]={ [1]={ @@ -26526,7 +27117,7 @@ return { [1]="two_handed_melee_weapon_ailment_damage_+%" } }, - [1321]={ + [1345]={ [1]={ [1]={ [1]={ @@ -26563,7 +27154,7 @@ return { [1]="two_handed_weapon_ailment_damage_+%" } }, - [1322]={ + [1346]={ [1]={ [1]={ limit={ @@ -26592,7 +27183,7 @@ return { [1]="two_handed_melee_fire_damage_+%" } }, - [1323]={ + [1347]={ [1]={ [1]={ limit={ @@ -26621,7 +27212,7 @@ return { [1]="two_handed_melee_cold_damage_+%" } }, - [1324]={ + [1348]={ [1]={ [1]={ [1]={ @@ -26658,7 +27249,7 @@ return { [1]="unarmed_melee_physical_damage_+%" } }, - [1325]={ + [1349]={ [1]={ [1]={ limit={ @@ -26687,7 +27278,7 @@ return { [1]="axe_damage_+%" } }, - [1326]={ + [1350]={ [1]={ [1]={ [1]={ @@ -26724,7 +27315,7 @@ return { [1]="axe_hit_and_ailment_damage_+%" } }, - [1327]={ + [1351]={ [1]={ [1]={ limit={ @@ -26753,7 +27344,7 @@ return { [1]="physical_axe_damage_+%" } }, - [1328]={ + [1352]={ [1]={ [1]={ [1]={ @@ -26790,7 +27381,7 @@ return { [1]="axe_ailment_damage_+%" } }, - [1329]={ + [1353]={ [1]={ [1]={ limit={ @@ -26819,7 +27410,7 @@ return { [1]="fire_axe_damage_+%" } }, - [1330]={ + [1354]={ [1]={ [1]={ limit={ @@ -26848,7 +27439,7 @@ return { [1]="cold_axe_damage_+%" } }, - [1331]={ + [1355]={ [1]={ [1]={ [1]={ @@ -26885,7 +27476,7 @@ return { [1]="physical_staff_damage_+%" } }, - [1332]={ + [1356]={ [1]={ [1]={ [1]={ @@ -26922,7 +27513,7 @@ return { [1]="staff_damage_+%" } }, - [1333]={ + [1357]={ [1]={ [1]={ [1]={ @@ -26967,7 +27558,7 @@ return { [1]="staff_hit_and_ailment_damage_+%" } }, - [1334]={ + [1358]={ [1]={ [1]={ [1]={ @@ -27012,7 +27603,7 @@ return { [1]="staff_ailment_damage_+%" } }, - [1335]={ + [1359]={ [1]={ [1]={ [1]={ @@ -27049,7 +27640,7 @@ return { [1]="fire_staff_damage_+%" } }, - [1336]={ + [1360]={ [1]={ [1]={ [1]={ @@ -27086,7 +27677,7 @@ return { [1]="cold_staff_damage_+%" } }, - [1337]={ + [1361]={ [1]={ [1]={ limit={ @@ -27115,7 +27706,7 @@ return { [1]="claw_damage_+%" } }, - [1338]={ + [1362]={ [1]={ [1]={ [1]={ @@ -27152,7 +27743,7 @@ return { [1]="claw_hit_and_ailment_damage_+%" } }, - [1339]={ + [1363]={ [1]={ [1]={ limit={ @@ -27181,7 +27772,7 @@ return { [1]="physical_claw_damage_+%" } }, - [1340]={ + [1364]={ [1]={ [1]={ [1]={ @@ -27218,7 +27809,7 @@ return { [1]="claw_ailment_damage_+%" } }, - [1341]={ + [1365]={ [1]={ [1]={ limit={ @@ -27247,7 +27838,7 @@ return { [1]="fire_claw_damage_+%" } }, - [1342]={ + [1366]={ [1]={ [1]={ limit={ @@ -27276,7 +27867,7 @@ return { [1]="cold_claw_damage_+%" } }, - [1343]={ + [1367]={ [1]={ [1]={ [1]={ @@ -27313,7 +27904,7 @@ return { [1]="dagger_damage_+%" } }, - [1344]={ + [1368]={ [1]={ [1]={ [1]={ @@ -27358,7 +27949,7 @@ return { [1]="dagger_hit_and_ailment_damage_+%" } }, - [1345]={ + [1369]={ [1]={ [1]={ [1]={ @@ -27395,7 +27986,7 @@ return { [1]="physical_dagger_damage_+%" } }, - [1346]={ + [1370]={ [1]={ [1]={ [1]={ @@ -27440,7 +28031,7 @@ return { [1]="dagger_ailment_damage_+%" } }, - [1347]={ + [1371]={ [1]={ [1]={ [1]={ @@ -27477,7 +28068,7 @@ return { [1]="fire_dagger_damage_+%" } }, - [1348]={ + [1372]={ [1]={ [1]={ [1]={ @@ -27514,7 +28105,7 @@ return { [1]="cold_dagger_damage_+%" } }, - [1349]={ + [1373]={ [1]={ [1]={ limit={ @@ -27543,7 +28134,7 @@ return { [1]="mace_damage_+%" } }, - [1350]={ + [1374]={ [1]={ [1]={ [1]={ @@ -27580,7 +28171,7 @@ return { [1]="mace_hit_and_ailment_damage_+%" } }, - [1351]={ + [1375]={ [1]={ [1]={ limit={ @@ -27609,7 +28200,7 @@ return { [1]="physical_mace_damage_+%" } }, - [1352]={ + [1376]={ [1]={ [1]={ [1]={ @@ -27646,7 +28237,7 @@ return { [1]="mace_ailment_damage_+%" } }, - [1353]={ + [1377]={ [1]={ [1]={ limit={ @@ -27675,7 +28266,7 @@ return { [1]="fire_mace_damage_+%" } }, - [1354]={ + [1378]={ [1]={ [1]={ limit={ @@ -27704,7 +28295,7 @@ return { [1]="cold_mace_damage_+%" } }, - [1355]={ + [1379]={ [1]={ [1]={ limit={ @@ -27733,7 +28324,7 @@ return { [1]="bow_damage_+%" } }, - [1356]={ + [1380]={ [1]={ [1]={ [1]={ @@ -27770,7 +28361,7 @@ return { [1]="bow_hit_and_ailment_damage_+%" } }, - [1357]={ + [1381]={ [1]={ [1]={ limit={ @@ -27799,7 +28390,7 @@ return { [1]="physical_bow_damage_+%" } }, - [1358]={ + [1382]={ [1]={ [1]={ [1]={ @@ -27836,7 +28427,7 @@ return { [1]="bow_ailment_damage_+%" } }, - [1359]={ + [1383]={ [1]={ [1]={ limit={ @@ -27865,7 +28456,7 @@ return { [1]="fire_bow_damage_+%" } }, - [1360]={ + [1384]={ [1]={ [1]={ limit={ @@ -27894,7 +28485,7 @@ return { [1]="cold_bow_damage_+%" } }, - [1361]={ + [1385]={ [1]={ [1]={ limit={ @@ -27923,7 +28514,7 @@ return { [1]="bow_elemental_damage_+%" } }, - [1362]={ + [1386]={ [1]={ [1]={ limit={ @@ -27952,7 +28543,7 @@ return { [1]="physical_sword_damage_+%" } }, - [1363]={ + [1387]={ [1]={ [1]={ limit={ @@ -27981,7 +28572,7 @@ return { [1]="sword_damage_+%" } }, - [1364]={ + [1388]={ [1]={ [1]={ [1]={ @@ -28018,7 +28609,7 @@ return { [1]="sword_hit_and_ailment_damage_+%" } }, - [1365]={ + [1389]={ [1]={ [1]={ [1]={ @@ -28055,7 +28646,7 @@ return { [1]="sword_ailment_damage_+%" } }, - [1366]={ + [1390]={ [1]={ [1]={ limit={ @@ -28084,7 +28675,7 @@ return { [1]="fire_sword_damage_+%" } }, - [1367]={ + [1391]={ [1]={ [1]={ limit={ @@ -28113,7 +28704,7 @@ return { [1]="cold_sword_damage_+%" } }, - [1368]={ + [1392]={ [1]={ [1]={ limit={ @@ -28142,7 +28733,7 @@ return { [1]="damage_+%_while_wielding_wand" } }, - [1369]={ + [1393]={ [1]={ [1]={ limit={ @@ -28171,7 +28762,7 @@ return { [1]="physical_wand_damage_+%" } }, - [1370]={ + [1394]={ [1]={ [1]={ [1]={ @@ -28208,7 +28799,7 @@ return { [1]="wand_hit_and_ailment_damage_+%" } }, - [1371]={ + [1395]={ [1]={ [1]={ [1]={ @@ -28245,7 +28836,7 @@ return { [1]="wand_ailment_damage_+%" } }, - [1372]={ + [1396]={ [1]={ [1]={ limit={ @@ -28274,7 +28865,7 @@ return { [1]="fire_wand_damage_+%" } }, - [1373]={ + [1397]={ [1]={ [1]={ limit={ @@ -28303,7 +28894,7 @@ return { [1]="cold_wand_damage_+%" } }, - [1374]={ + [1398]={ [1]={ [1]={ [1]={ @@ -28340,7 +28931,7 @@ return { [1]="axe_or_sword_hit_and_ailment_damage_+%" } }, - [1375]={ + [1399]={ [1]={ [1]={ [1]={ @@ -28377,7 +28968,7 @@ return { [1]="axe_or_sword_ailment_damage_+%" } }, - [1376]={ + [1400]={ [1]={ [1]={ [1]={ @@ -28422,7 +29013,7 @@ return { [1]="claw_or_dagger_hit_and_ailment_damage_+%" } }, - [1377]={ + [1401]={ [1]={ [1]={ [1]={ @@ -28467,7 +29058,7 @@ return { [1]="claw_or_dagger_ailment_damage_+%" } }, - [1378]={ + [1402]={ [1]={ [1]={ [1]={ @@ -28512,7 +29103,7 @@ return { [1]="mace_or_staff_hit_and_ailment_damage_+%" } }, - [1379]={ + [1403]={ [1]={ [1]={ [1]={ @@ -28557,7 +29148,7 @@ return { [1]="mace_or_staff_ailment_damage_+%" } }, - [1380]={ + [1404]={ [1]={ [1]={ limit={ @@ -28586,7 +29177,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [1381]={ + [1405]={ [1]={ [1]={ limit={ @@ -28615,7 +29206,7 @@ return { [1]="fire_damage_+%" } }, - [1382]={ + [1406]={ [1]={ [1]={ limit={ @@ -28636,7 +29227,7 @@ return { [2]="from_self_maximum_added_fire_damage_taken" } }, - [1383]={ + [1407]={ [1]={ [1]={ limit={ @@ -28657,7 +29248,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [1384]={ + [1408]={ [1]={ [1]={ limit={ @@ -28678,7 +29269,7 @@ return { [2]="attack_maximum_added_fire_damage" } }, - [1385]={ + [1409]={ [1]={ [1]={ limit={ @@ -28699,7 +29290,7 @@ return { [2]="from_self_maximum_added_attack_fire_damage_taken" } }, - [1386]={ + [1410]={ [1]={ [1]={ limit={ @@ -28720,7 +29311,7 @@ return { [2]="local_maximum_added_fire_damage" } }, - [1387]={ + [1411]={ [1]={ [1]={ limit={ @@ -28741,7 +29332,7 @@ return { [2]="unique_local_maximum_added_fire_damage_when_in_main_hand" } }, - [1388]={ + [1412]={ [1]={ [1]={ limit={ @@ -28770,7 +29361,7 @@ return { [1]="damage_with_fire_skills_+%" } }, - [1389]={ + [1413]={ [1]={ [1]={ limit={ @@ -28799,7 +29390,7 @@ return { [1]="cast_speed_for_fire_skills_+%" } }, - [1390]={ + [1414]={ [1]={ [1]={ limit={ @@ -28828,7 +29419,7 @@ return { [1]="cold_damage_+%" } }, - [1391]={ + [1415]={ [1]={ [1]={ limit={ @@ -28849,7 +29440,7 @@ return { [2]="from_self_maximum_added_cold_damage_taken" } }, - [1392]={ + [1416]={ [1]={ [1]={ limit={ @@ -28870,7 +29461,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [1393]={ + [1417]={ [1]={ [1]={ limit={ @@ -28891,7 +29482,7 @@ return { [2]="attack_maximum_added_cold_damage" } }, - [1394]={ + [1418]={ [1]={ [1]={ limit={ @@ -28912,7 +29503,7 @@ return { [2]="from_self_maximum_added_attack_cold_damage_taken" } }, - [1395]={ + [1419]={ [1]={ [1]={ limit={ @@ -28933,7 +29524,7 @@ return { [2]="local_maximum_added_cold_damage" } }, - [1396]={ + [1420]={ [1]={ [1]={ limit={ @@ -28954,7 +29545,7 @@ return { [2]="unique_local_maximum_added_cold_damage_when_in_off_hand" } }, - [1397]={ + [1421]={ [1]={ [1]={ limit={ @@ -28975,7 +29566,7 @@ return { [2]="spell_and_attack_maximum_added_fire_damage" } }, - [1398]={ + [1422]={ [1]={ [1]={ limit={ @@ -28996,7 +29587,7 @@ return { [2]="spell_and_attack_maximum_added_cold_damage" } }, - [1399]={ + [1423]={ [1]={ [1]={ limit={ @@ -29025,7 +29616,7 @@ return { [1]="damage_with_cold_skills_+%" } }, - [1400]={ + [1424]={ [1]={ [1]={ limit={ @@ -29054,7 +29645,7 @@ return { [1]="cast_speed_for_cold_skills_+%" } }, - [1401]={ + [1425]={ [1]={ [1]={ limit={ @@ -29083,7 +29674,7 @@ return { [1]="lightning_damage_+%" } }, - [1402]={ + [1426]={ [1]={ [1]={ limit={ @@ -29104,7 +29695,7 @@ return { [2]="from_self_maximum_added_lightning_damage_taken" } }, - [1403]={ + [1427]={ [1]={ [1]={ limit={ @@ -29125,7 +29716,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [1404]={ + [1428]={ [1]={ [1]={ limit={ @@ -29146,7 +29737,7 @@ return { [2]="attack_maximum_added_lightning_damage" } }, - [1405]={ + [1429]={ [1]={ [1]={ limit={ @@ -29167,7 +29758,7 @@ return { [2]="from_self_maximum_added_attack_lightning_damage_taken" } }, - [1406]={ + [1430]={ [1]={ [1]={ limit={ @@ -29188,7 +29779,7 @@ return { [2]="local_maximum_added_lightning_damage" } }, - [1407]={ + [1431]={ [1]={ [1]={ limit={ @@ -29217,7 +29808,7 @@ return { [1]="damage_with_lightning_skills_+%" } }, - [1408]={ + [1432]={ [1]={ [1]={ limit={ @@ -29246,7 +29837,7 @@ return { [1]="cast_speed_for_lightning_skills_+%" } }, - [1409]={ + [1433]={ [1]={ [1]={ limit={ @@ -29275,7 +29866,7 @@ return { [1]="chaos_damage_+%" } }, - [1410]={ + [1434]={ [1]={ [1]={ limit={ @@ -29296,7 +29887,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [1411]={ + [1435]={ [1]={ [1]={ limit={ @@ -29317,7 +29908,7 @@ return { [2]="attack_maximum_added_chaos_damage" } }, - [1412]={ + [1436]={ [1]={ [1]={ limit={ @@ -29338,7 +29929,7 @@ return { [2]="from_self_maximum_added_attack_chaos_damage_taken" } }, - [1413]={ + [1437]={ [1]={ [1]={ limit={ @@ -29359,7 +29950,7 @@ return { [2]="max_attack_added_chaos_damage_per_100_mana" } }, - [1414]={ + [1438]={ [1]={ [1]={ limit={ @@ -29380,7 +29971,7 @@ return { [2]="local_maximum_added_chaos_damage" } }, - [1415]={ + [1439]={ [1]={ [1]={ limit={ @@ -29401,7 +29992,7 @@ return { [2]="unique_local_maximum_added_chaos_damage_when_in_off_hand" } }, - [1416]={ + [1440]={ [1]={ [1]={ limit={ @@ -29430,7 +30021,7 @@ return { [1]="cast_speed_for_chaos_skills_+%" } }, - [1417]={ + [1441]={ [1]={ [1]={ limit={ @@ -29451,7 +30042,7 @@ return { [2]="spell_maximum_base_physical_damage" } }, - [1418]={ + [1442]={ [1]={ [1]={ limit={ @@ -29511,7 +30102,7 @@ return { [3]="spell_base_fire_damage_%_maximum_life" } }, - [1419]={ + [1443]={ [1]={ [1]={ limit={ @@ -29532,7 +30123,7 @@ return { [2]="spell_maximum_base_cold_damage" } }, - [1420]={ + [1444]={ [1]={ [1]={ limit={ @@ -29553,7 +30144,7 @@ return { [2]="spell_maximum_base_lightning_damage" } }, - [1421]={ + [1445]={ [1]={ [1]={ limit={ @@ -29574,7 +30165,7 @@ return { [2]="spell_maximum_base_chaos_damage" } }, - [1422]={ + [1446]={ [1]={ [1]={ limit={ @@ -29595,7 +30186,7 @@ return { [2]="secondary_maximum_base_physical_damage" } }, - [1423]={ + [1447]={ [1]={ [1]={ limit={ @@ -29616,7 +30207,7 @@ return { [2]="secondary_maximum_base_fire_damage" } }, - [1424]={ + [1448]={ [1]={ [1]={ limit={ @@ -29637,7 +30228,7 @@ return { [2]="secondary_maximum_base_cold_damage" } }, - [1425]={ + [1449]={ [1]={ [1]={ limit={ @@ -29658,7 +30249,7 @@ return { [2]="secondary_maximum_base_lightning_damage" } }, - [1426]={ + [1450]={ [1]={ [1]={ limit={ @@ -29679,7 +30270,7 @@ return { [2]="secondary_maximum_base_chaos_damage" } }, - [1427]={ + [1451]={ [1]={ [1]={ limit={ @@ -29700,7 +30291,7 @@ return { [2]="spell_maximum_added_physical_damage" } }, - [1428]={ + [1452]={ [1]={ [1]={ limit={ @@ -29721,7 +30312,7 @@ return { [2]="spell_maximum_added_fire_damage" } }, - [1429]={ + [1453]={ [1]={ [1]={ limit={ @@ -29742,7 +30333,7 @@ return { [2]="spell_maximum_added_cold_damage" } }, - [1430]={ + [1454]={ [1]={ [1]={ limit={ @@ -29763,7 +30354,7 @@ return { [2]="spell_maximum_added_lightning_damage" } }, - [1431]={ + [1455]={ [1]={ [1]={ limit={ @@ -29784,7 +30375,7 @@ return { [2]="spell_maximum_added_chaos_damage" } }, - [1432]={ + [1456]={ [1]={ [1]={ limit={ @@ -29805,7 +30396,7 @@ return { [2]="spell_maximum_base_cold_damage_+_per_10_intelligence" } }, - [1433]={ + [1457]={ [1]={ [1]={ limit={ @@ -29826,7 +30417,7 @@ return { [2]="spell_and_attack_maximum_added_lightning_damage" } }, - [1434]={ + [1458]={ [1]={ [1]={ limit={ @@ -29855,7 +30446,7 @@ return { [1]="attack_speed_+%" } }, - [1435]={ + [1459]={ [1]={ [1]={ limit={ @@ -29884,7 +30475,7 @@ return { [1]="active_skill_attack_speed_+%_final" } }, - [1436]={ + [1460]={ [1]={ [1]={ limit={ @@ -29913,7 +30504,7 @@ return { [1]="flicker_strike_more_attack_speed_+%_final" } }, - [1437]={ + [1461]={ [1]={ [1]={ limit={ @@ -29942,7 +30533,7 @@ return { [1]="local_attack_speed_+%" } }, - [1438]={ + [1462]={ [1]={ [1]={ limit={ @@ -29971,7 +30562,7 @@ return { [1]="melee_attack_speed_+%" } }, - [1439]={ + [1463]={ [1]={ [1]={ limit={ @@ -30000,7 +30591,7 @@ return { [1]="attack_speed_while_dual_wielding_+%" } }, - [1440]={ + [1464]={ [1]={ [1]={ limit={ @@ -30016,7 +30607,7 @@ return { [1]="base_off_hand_attack_speed_+%" } }, - [1441]={ + [1465]={ [1]={ [1]={ limit={ @@ -30045,7 +30636,7 @@ return { [1]="attack_speed_+%_while_holding_shield" } }, - [1442]={ + [1466]={ [1]={ [1]={ limit={ @@ -30074,7 +30665,7 @@ return { [1]="two_handed_melee_attack_speed_+%" } }, - [1443]={ + [1467]={ [1]={ [1]={ limit={ @@ -30103,7 +30694,7 @@ return { [1]="one_handed_melee_attack_speed_+%" } }, - [1444]={ + [1468]={ [1]={ [1]={ limit={ @@ -30132,7 +30723,7 @@ return { [1]="axe_attack_speed_+%" } }, - [1445]={ + [1469]={ [1]={ [1]={ [1]={ @@ -30169,7 +30760,7 @@ return { [1]="staff_attack_speed_+%" } }, - [1446]={ + [1470]={ [1]={ [1]={ limit={ @@ -30198,7 +30789,7 @@ return { [1]="claw_attack_speed_+%" } }, - [1447]={ + [1471]={ [1]={ [1]={ [1]={ @@ -30235,7 +30826,7 @@ return { [1]="dagger_attack_speed_+%" } }, - [1448]={ + [1472]={ [1]={ [1]={ limit={ @@ -30264,7 +30855,7 @@ return { [1]="mace_attack_speed_+%" } }, - [1449]={ + [1473]={ [1]={ [1]={ limit={ @@ -30293,7 +30884,7 @@ return { [1]="bow_attack_speed_+%" } }, - [1450]={ + [1474]={ [1]={ [1]={ limit={ @@ -30322,7 +30913,7 @@ return { [1]="sword_attack_speed_+%" } }, - [1451]={ + [1475]={ [1]={ [1]={ limit={ @@ -30351,7 +30942,7 @@ return { [1]="wand_attack_speed_+%" } }, - [1452]={ + [1476]={ [1]={ [1]={ limit={ @@ -30380,7 +30971,7 @@ return { [1]="shield_attack_speed_+%" } }, - [1453]={ + [1477]={ [1]={ [1]={ [1]={ @@ -30417,7 +31008,7 @@ return { [1]="unarmed_melee_attack_speed_+%" } }, - [1454]={ + [1478]={ [1]={ [1]={ limit={ @@ -30446,7 +31037,7 @@ return { [1]="unique_body_armour_unarmed_melee_attack_speed_+%_final" } }, - [1455]={ + [1479]={ [1]={ [1]={ limit={ @@ -30475,7 +31066,7 @@ return { [1]="damage_+%_with_movement_skills" } }, - [1456]={ + [1480]={ [1]={ [1]={ limit={ @@ -30504,7 +31095,7 @@ return { [1]="attack_speed_+%_with_movement_skills" } }, - [1457]={ + [1481]={ [1]={ [1]={ limit={ @@ -30520,7 +31111,7 @@ return { [1]="accuracy_rating" } }, - [1458]={ + [1482]={ [1]={ [1]={ limit={ @@ -30549,7 +31140,7 @@ return { [1]="accuracy_rating_+%" } }, - [1459]={ + [1483]={ [1]={ [1]={ limit={ @@ -30578,7 +31169,7 @@ return { [1]="accuracy_rating_while_dual_wielding_+%" } }, - [1460]={ + [1484]={ [1]={ [1]={ limit={ @@ -30607,7 +31198,7 @@ return { [1]="one_handed_melee_accuracy_rating_+%" } }, - [1461]={ + [1485]={ [1]={ [1]={ limit={ @@ -30636,7 +31227,7 @@ return { [1]="two_handed_melee_accuracy_rating_+%" } }, - [1462]={ + [1486]={ [1]={ [1]={ limit={ @@ -30665,7 +31256,7 @@ return { [1]="axe_accuracy_rating_+%" } }, - [1463]={ + [1487]={ [1]={ [1]={ [1]={ @@ -30702,7 +31293,7 @@ return { [1]="staff_accuracy_rating_+%" } }, - [1464]={ + [1488]={ [1]={ [1]={ limit={ @@ -30731,7 +31322,7 @@ return { [1]="claw_accuracy_rating_+%" } }, - [1465]={ + [1489]={ [1]={ [1]={ [1]={ @@ -30768,7 +31359,7 @@ return { [1]="dagger_accuracy_rating_+%" } }, - [1466]={ + [1490]={ [1]={ [1]={ limit={ @@ -30797,7 +31388,7 @@ return { [1]="mace_accuracy_rating_+%" } }, - [1467]={ + [1491]={ [1]={ [1]={ limit={ @@ -30826,7 +31417,7 @@ return { [1]="bow_accuracy_rating_+%" } }, - [1468]={ + [1492]={ [1]={ [1]={ limit={ @@ -30855,7 +31446,7 @@ return { [1]="sword_accuracy_rating_+%" } }, - [1469]={ + [1493]={ [1]={ [1]={ limit={ @@ -30884,7 +31475,7 @@ return { [1]="wand_accuracy_rating_+%" } }, - [1470]={ + [1494]={ [1]={ [1]={ limit={ @@ -30913,7 +31504,7 @@ return { [1]="base_cast_speed_+%" } }, - [1471]={ + [1495]={ [1]={ [1]={ limit={ @@ -30942,7 +31533,7 @@ return { [1]="cast_speed_while_dual_wielding_+%" } }, - [1472]={ + [1496]={ [1]={ [1]={ limit={ @@ -30971,7 +31562,7 @@ return { [1]="cast_speed_+%_while_holding_shield" } }, - [1473]={ + [1497]={ [1]={ [1]={ [1]={ @@ -31008,7 +31599,7 @@ return { [1]="cast_speed_+%_while_holding_staff" } }, - [1474]={ + [1498]={ [1]={ [1]={ limit={ @@ -31037,23 +31628,7 @@ return { [1]="cast_speed_+%_while_holding_bow" } }, - [1475]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased Cast Speed per Power Charge" - } - }, - stats={ - [1]="cast_speed_+%_per_power_charge" - } - }, - [1476]={ + [1499]={ [1]={ [1]={ [1]={ @@ -31077,7 +31652,7 @@ return { [1]="poison_on_critical_strike_with_dagger" } }, - [1477]={ + [1500]={ [1]={ [1]={ [1]={ @@ -31110,7 +31685,7 @@ return { [1]="chance_to_poison_on_critical_strike_with_bow_%" } }, - [1478]={ + [1501]={ [1]={ [1]={ [1]={ @@ -31151,7 +31726,7 @@ return { [1]="chance_to_poison_on_critical_strike_with_dagger_%" } }, - [1479]={ + [1502]={ [1]={ [1]={ [1]={ @@ -31171,7 +31746,7 @@ return { [1]="poison_on_critical_strike_with_bow" } }, - [1480]={ + [1503]={ [1]={ [1]={ [1]={ @@ -31191,7 +31766,7 @@ return { [1]="base_spell_critical_strike_chance" } }, - [1481]={ + [1504]={ [1]={ [1]={ [1]={ @@ -31211,7 +31786,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [1482]={ + [1505]={ [1]={ [1]={ limit={ @@ -31240,7 +31815,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [1483]={ + [1506]={ [1]={ [1]={ limit={ @@ -31269,7 +31844,7 @@ return { [1]="critical_strike_chance_+%" } }, - [1484]={ + [1507]={ [1]={ [1]={ limit={ @@ -31285,7 +31860,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+30%" } }, - [1485]={ + [1508]={ [1]={ [1]={ limit={ @@ -31301,7 +31876,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+40%" } }, - [1486]={ + [1509]={ [1]={ [1]={ limit={ @@ -31317,7 +31892,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+50%" } }, - [1487]={ + [1510]={ [1]={ [1]={ [1]={ @@ -31337,7 +31912,7 @@ return { [1]="local_critical_strike_chance" } }, - [1488]={ + [1511]={ [1]={ [1]={ limit={ @@ -31366,7 +31941,7 @@ return { [1]="local_critical_strike_chance_+%" } }, - [1489]={ + [1512]={ [1]={ [1]={ limit={ @@ -31395,7 +31970,7 @@ return { [1]="bow_critical_strike_chance_+%" } }, - [1490]={ + [1513]={ [1]={ [1]={ limit={ @@ -31424,7 +31999,7 @@ return { [1]="claw_critical_strike_chance_+%" } }, - [1491]={ + [1514]={ [1]={ [1]={ [1]={ @@ -31461,7 +32036,7 @@ return { [1]="dagger_critical_strike_chance_+%" } }, - [1492]={ + [1515]={ [1]={ [1]={ limit={ @@ -31490,7 +32065,7 @@ return { [1]="sword_critical_strike_chance_+%" } }, - [1493]={ + [1516]={ [1]={ [1]={ limit={ @@ -31519,7 +32094,7 @@ return { [1]="mace_critical_strike_chance_+%" } }, - [1494]={ + [1517]={ [1]={ [1]={ [1]={ @@ -31556,7 +32131,7 @@ return { [1]="staff_critical_strike_chance_+%" } }, - [1495]={ + [1518]={ [1]={ [1]={ limit={ @@ -31585,7 +32160,7 @@ return { [1]="wand_critical_strike_chance_+%" } }, - [1496]={ + [1519]={ [1]={ [1]={ limit={ @@ -31614,7 +32189,7 @@ return { [1]="axe_critical_strike_chance_+%" } }, - [1497]={ + [1520]={ [1]={ [1]={ limit={ @@ -31643,7 +32218,7 @@ return { [1]="critical_strike_chance_while_wielding_shield_+%" } }, - [1498]={ + [1521]={ [1]={ [1]={ limit={ @@ -31672,7 +32247,7 @@ return { [1]="trap_critical_strike_chance_+%" } }, - [1499]={ + [1522]={ [1]={ [1]={ limit={ @@ -31701,7 +32276,7 @@ return { [1]="mine_critical_strike_chance_+%" } }, - [1500]={ + [1523]={ [1]={ [1]={ limit={ @@ -31730,7 +32305,7 @@ return { [1]="two_handed_melee_critical_strike_chance_+%" } }, - [1501]={ + [1524]={ [1]={ [1]={ limit={ @@ -31746,7 +32321,7 @@ return { [1]="two_handed_melee_critical_strike_multiplier_+" } }, - [1502]={ + [1525]={ [1]={ [1]={ limit={ @@ -31775,7 +32350,7 @@ return { [1]="one_handed_melee_critical_strike_chance_+%" } }, - [1503]={ + [1526]={ [1]={ [1]={ limit={ @@ -31804,7 +32379,7 @@ return { [1]="melee_critical_strike_chance_+%" } }, - [1504]={ + [1527]={ [1]={ [1]={ limit={ @@ -31833,7 +32408,7 @@ return { [1]="critical_strike_chance_while_dual_wielding_+%" } }, - [1505]={ + [1528]={ [1]={ [1]={ limit={ @@ -31862,7 +32437,7 @@ return { [1]="fire_critical_strike_chance_+%" } }, - [1506]={ + [1529]={ [1]={ [1]={ limit={ @@ -31891,7 +32466,7 @@ return { [1]="lightning_critical_strike_chance_+%" } }, - [1507]={ + [1530]={ [1]={ [1]={ limit={ @@ -31920,7 +32495,7 @@ return { [1]="cold_critical_strike_chance_+%" } }, - [1508]={ + [1531]={ [1]={ [1]={ limit={ @@ -31949,7 +32524,7 @@ return { [1]="elemental_critical_strike_chance_+%" } }, - [1509]={ + [1532]={ [1]={ [1]={ limit={ @@ -31978,7 +32553,7 @@ return { [1]="chaos_critical_strike_chance_+%" } }, - [1510]={ + [1533]={ [1]={ [1]={ limit={ @@ -32007,7 +32582,7 @@ return { [1]="totem_critical_strike_chance_+%" } }, - [1511]={ + [1534]={ [1]={ [1]={ [1]={ @@ -32020,7 +32595,7 @@ return { [2]=4000 } }, - text="60% increased Global Critical Strike Chance if you've Summoned a Totem Recently" + text="40% increased Critical Strike Chance if you've Summoned a Totem Recently" }, [2]={ [1]={ @@ -32037,14 +32612,14 @@ return { [2]="#" } }, - text="60% increased Global Critical Strike Chance if you've Summoned a Totem in the past {0} seconds" + text="40% increased Critical Strike Chance if you've Summoned a Totem in the past {0} seconds" } }, stats={ [1]="increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem" } }, - [1512]={ + [1535]={ [1]={ [1]={ limit={ @@ -32060,7 +32635,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [1513]={ + [1536]={ [1]={ [1]={ limit={ @@ -32076,7 +32651,7 @@ return { [1]="local_critical_strike_multiplier_+" } }, - [1514]={ + [1537]={ [1]={ [1]={ limit={ @@ -32092,7 +32667,7 @@ return { [1]="local_no_critical_strike_multiplier" } }, - [1515]={ + [1538]={ [1]={ [1]={ limit={ @@ -32108,7 +32683,7 @@ return { [1]="attack_critical_strike_multiplier_+" } }, - [1516]={ + [1539]={ [1]={ [1]={ limit={ @@ -32124,7 +32699,7 @@ return { [1]="base_spell_critical_strike_multiplier_+" } }, - [1517]={ + [1540]={ [1]={ [1]={ [1]={ @@ -32144,7 +32719,7 @@ return { [1]="critical_strike_multiplier_with_dagger_+" } }, - [1518]={ + [1541]={ [1]={ [1]={ limit={ @@ -32160,7 +32735,7 @@ return { [1]="mace_critical_strike_multiplier_+" } }, - [1519]={ + [1542]={ [1]={ [1]={ limit={ @@ -32176,7 +32751,7 @@ return { [1]="axe_critical_strike_multiplier_+" } }, - [1520]={ + [1543]={ [1]={ [1]={ limit={ @@ -32192,7 +32767,7 @@ return { [1]="bow_critical_strike_multiplier_+" } }, - [1521]={ + [1544]={ [1]={ [1]={ limit={ @@ -32208,7 +32783,7 @@ return { [1]="sword_critical_strike_multiplier_+" } }, - [1522]={ + [1545]={ [1]={ [1]={ limit={ @@ -32224,7 +32799,7 @@ return { [1]="wand_critical_strike_multiplier_+" } }, - [1523]={ + [1546]={ [1]={ [1]={ limit={ @@ -32240,7 +32815,7 @@ return { [1]="claw_critical_strike_multiplier_+" } }, - [1524]={ + [1547]={ [1]={ [1]={ [1]={ @@ -32260,7 +32835,7 @@ return { [1]="staff_critical_strike_multiplier_+" } }, - [1525]={ + [1548]={ [1]={ [1]={ limit={ @@ -32276,7 +32851,7 @@ return { [1]="one_handed_melee_critical_strike_multiplier_+" } }, - [1526]={ + [1549]={ [1]={ [1]={ limit={ @@ -32292,7 +32867,7 @@ return { [1]="melee_weapon_critical_strike_multiplier_+" } }, - [1527]={ + [1550]={ [1]={ [1]={ limit={ @@ -32308,7 +32883,7 @@ return { [1]="critical_strike_multiplier_while_dual_wielding_+" } }, - [1528]={ + [1551]={ [1]={ [1]={ limit={ @@ -32324,7 +32899,7 @@ return { [1]="melee_critical_strike_multiplier_+_while_wielding_shield" } }, - [1529]={ + [1552]={ [1]={ [1]={ limit={ @@ -32340,7 +32915,7 @@ return { [1]="trap_critical_strike_multiplier_+" } }, - [1530]={ + [1553]={ [1]={ [1]={ limit={ @@ -32356,7 +32931,7 @@ return { [1]="mine_critical_strike_multiplier_+" } }, - [1531]={ + [1554]={ [1]={ [1]={ limit={ @@ -32372,7 +32947,7 @@ return { [1]="fire_critical_strike_multiplier_+" } }, - [1532]={ + [1555]={ [1]={ [1]={ limit={ @@ -32388,7 +32963,7 @@ return { [1]="lightning_critical_strike_multiplier_+" } }, - [1533]={ + [1556]={ [1]={ [1]={ limit={ @@ -32404,7 +32979,7 @@ return { [1]="cold_critical_strike_multiplier_+" } }, - [1534]={ + [1557]={ [1]={ [1]={ limit={ @@ -32420,7 +32995,7 @@ return { [1]="elemental_critical_strike_multiplier_+" } }, - [1535]={ + [1558]={ [1]={ [1]={ limit={ @@ -32436,7 +33011,7 @@ return { [1]="chaos_critical_strike_multiplier_+" } }, - [1536]={ + [1559]={ [1]={ [1]={ limit={ @@ -32465,7 +33040,7 @@ return { [1]="base_self_critical_strike_multiplier_-%" } }, - [1537]={ + [1560]={ [1]={ [1]={ limit={ @@ -32494,7 +33069,7 @@ return { [1]="mastery_extra_damage_taken_from_suppressed_crit_+%_final" } }, - [1538]={ + [1561]={ [1]={ [1]={ limit={ @@ -32523,7 +33098,7 @@ return { [1]="self_critical_strike_multiplier_-%_per_endurance_charge" } }, - [1539]={ + [1562]={ [1]={ [1]={ limit={ @@ -32539,7 +33114,7 @@ return { [1]="critical_strike_multiplier_is_100" } }, - [1540]={ + [1563]={ [1]={ [1]={ limit={ @@ -32555,7 +33130,7 @@ return { [1]="totem_critical_strike_multiplier_+" } }, - [1541]={ + [1564]={ [1]={ [1]={ [1]={ @@ -32592,7 +33167,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [1542]={ + [1565]={ [1]={ [1]={ [1]={ @@ -32612,7 +33187,7 @@ return { [1]="while_using_mace_stun_threshold_reduction_+%" } }, - [1543]={ + [1566]={ [1]={ [1]={ [1]={ @@ -32632,7 +33207,7 @@ return { [1]="bow_stun_threshold_reduction_+%" } }, - [1544]={ + [1567]={ [1]={ [1]={ [1]={ @@ -32652,23 +33227,7 @@ return { [1]="global_knockback" } }, - [1545]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Cannot be Knocked Back" - } - }, - stats={ - [1]="cannot_be_knocked_back" - } - }, - [1546]={ + [1568]={ [1]={ [1]={ limit={ @@ -32693,7 +33252,7 @@ return { [1]="avoid_knockback_%" } }, - [1547]={ + [1569]={ [1]={ [1]={ [1]={ @@ -32713,7 +33272,7 @@ return { [1]="knockback_with_bow" } }, - [1548]={ + [1570]={ [1]={ [1]={ [1]={ @@ -32737,7 +33296,7 @@ return { [1]="knockback_with_staff" } }, - [1549]={ + [1571]={ [1]={ [1]={ [1]={ @@ -32757,7 +33316,7 @@ return { [1]="knockback_with_wand" } }, - [1550]={ + [1572]={ [1]={ [1]={ [1]={ @@ -32777,7 +33336,7 @@ return { [1]="local_knockback" } }, - [1551]={ + [1573]={ [1]={ [1]={ limit={ @@ -32793,7 +33352,7 @@ return { [1]="base_ward" } }, - [1552]={ + [1574]={ [1]={ [1]={ limit={ @@ -32809,7 +33368,7 @@ return { [1]="local_ward" } }, - [1553]={ + [1575]={ [1]={ [1]={ limit={ @@ -32838,7 +33397,7 @@ return { [1]="ward_+%" } }, - [1554]={ + [1576]={ [1]={ [1]={ limit={ @@ -32867,7 +33426,7 @@ return { [1]="local_ward_+%" } }, - [1555]={ + [1577]={ [1]={ [1]={ limit={ @@ -32896,7 +33455,7 @@ return { [1]="ward_delay_recovery_+%" } }, - [1556]={ + [1578]={ [1]={ [1]={ limit={ @@ -32912,7 +33471,7 @@ return { [1]="base_adaptation_rating" } }, - [1557]={ + [1579]={ [1]={ [1]={ limit={ @@ -32928,7 +33487,7 @@ return { [1]="local_adaptation_rating" } }, - [1558]={ + [1580]={ [1]={ [1]={ limit={ @@ -32957,7 +33516,7 @@ return { [1]="adaptation_rating_+%" } }, - [1559]={ + [1581]={ [1]={ [1]={ limit={ @@ -32986,7 +33545,7 @@ return { [1]="local_adaptation_rating_+%" } }, - [1560]={ + [1582]={ [1]={ [1]={ limit={ @@ -33002,7 +33561,7 @@ return { [1]="max_adaptations_+" } }, - [1561]={ + [1583]={ [1]={ [1]={ limit={ @@ -33031,7 +33590,7 @@ return { [1]="adaptation_duration_+%" } }, - [1562]={ + [1584]={ [1]={ [1]={ limit={ @@ -33047,7 +33606,7 @@ return { [1]="maximum_physical_damage_reduction_%" } }, - [1563]={ + [1585]={ [1]={ [1]={ limit={ @@ -33063,7 +33622,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [1564]={ + [1586]={ [1]={ [1]={ limit={ @@ -33079,7 +33638,7 @@ return { [1]="local_base_physical_damage_reduction_rating" } }, - [1565]={ + [1587]={ [1]={ [1]={ limit={ @@ -33108,7 +33667,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [1566]={ + [1588]={ [1]={ [1]={ limit={ @@ -33137,7 +33696,7 @@ return { [1]="local_physical_damage_reduction_rating_+%" } }, - [1567]={ + [1589]={ [1]={ [1]={ limit={ @@ -33166,7 +33725,7 @@ return { [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [1568]={ + [1590]={ [1]={ [1]={ limit={ @@ -33182,7 +33741,7 @@ return { [1]="base_evasion_rating" } }, - [1569]={ + [1591]={ [1]={ [1]={ [1]={ @@ -33202,7 +33761,7 @@ return { [1]="evasion_rating_+_when_on_low_life" } }, - [1570]={ + [1592]={ [1]={ [1]={ limit={ @@ -33218,7 +33777,7 @@ return { [1]="evasion_rating_+_when_on_full_life" } }, - [1571]={ + [1593]={ [1]={ [1]={ limit={ @@ -33234,7 +33793,7 @@ return { [1]="evasion_rating_+_per_1_helmet_energy_shield" } }, - [1572]={ + [1594]={ [1]={ [1]={ limit={ @@ -33250,7 +33809,7 @@ return { [1]="local_base_evasion_rating" } }, - [1573]={ + [1595]={ [1]={ [1]={ limit={ @@ -33279,7 +33838,7 @@ return { [1]="evasion_rating_+%" } }, - [1574]={ + [1596]={ [1]={ [1]={ limit={ @@ -33308,7 +33867,7 @@ return { [1]="local_evasion_rating_+%" } }, - [1575]={ + [1597]={ [1]={ [1]={ limit={ @@ -33337,7 +33896,7 @@ return { [1]="evasion_rating_+%_while_onslaught_is_active" } }, - [1576]={ + [1598]={ [1]={ [1]={ limit={ @@ -33366,7 +33925,7 @@ return { [1]="local_armour_and_energy_shield_+%" } }, - [1577]={ + [1599]={ [1]={ [1]={ limit={ @@ -33395,7 +33954,7 @@ return { [1]="local_armour_and_evasion_+%" } }, - [1578]={ + [1600]={ [1]={ [1]={ limit={ @@ -33424,7 +33983,7 @@ return { [1]="local_evasion_and_energy_shield_+%" } }, - [1579]={ + [1601]={ [1]={ [1]={ limit={ @@ -33453,7 +34012,7 @@ return { [1]="local_armour_and_evasion_and_energy_shield_+%" } }, - [1580]={ + [1602]={ [1]={ [1]={ limit={ @@ -33482,7 +34041,7 @@ return { [1]="evasion_rating_+%_per_frenzy_charge" } }, - [1581]={ + [1603]={ [1]={ [1]={ limit={ @@ -33511,7 +34070,7 @@ return { [1]="physical_damage_reduction_rating_+%_per_frenzy_charge" } }, - [1582]={ + [1604]={ [1]={ [1]={ limit={ @@ -33527,7 +34086,7 @@ return { [1]="base_maximum_energy_shield" } }, - [1583]={ + [1605]={ [1]={ [1]={ limit={ @@ -33543,7 +34102,7 @@ return { [1]="local_energy_shield" } }, - [1584]={ + [1606]={ [1]={ [1]={ limit={ @@ -33572,7 +34131,7 @@ return { [1]="local_energy_shield_+%" } }, - [1585]={ + [1607]={ [1]={ [1]={ limit={ @@ -33601,7 +34160,7 @@ return { [1]="maximum_energy_shield_+%" } }, - [1586]={ + [1608]={ [1]={ [1]={ limit={ @@ -33630,7 +34189,7 @@ return { [1]="energy_shield_delay_-%" } }, - [1587]={ + [1609]={ [1]={ [1]={ limit={ @@ -33646,7 +34205,7 @@ return { [1]="energy_shield_recharge_not_delayed_by_damage" } }, - [1588]={ + [1610]={ [1]={ [1]={ [1]={ @@ -33679,7 +34238,7 @@ return { [1]="energy_shield_recharge_rate_per_minute_%" } }, - [1589]={ + [1611]={ [1]={ [1]={ limit={ @@ -33708,7 +34267,7 @@ return { [1]="energy_shield_recharge_rate_+%" } }, - [1590]={ + [1612]={ [1]={ [1]={ limit={ @@ -33724,7 +34283,7 @@ return { [1]="maximum_energy_shield_+_per_100_life_reserved" } }, - [1591]={ + [1613]={ [1]={ [1]={ limit={ @@ -33740,7 +34299,7 @@ return { [1]="maximum_energy_shield_+_per_X_body_armour_evasion_rating" } }, - [1592]={ + [1614]={ [1]={ [1]={ limit={ @@ -33769,7 +34328,7 @@ return { [1]="energy_shield_recovery_rate_+%" } }, - [1593]={ + [1615]={ [1]={ [1]={ limit={ @@ -33785,7 +34344,7 @@ return { [1]="base_maximum_life" } }, - [1594]={ + [1616]={ [1]={ [1]={ limit={ @@ -33814,7 +34373,7 @@ return { [1]="maximum_life_mana_and_energy_shield_+%" } }, - [1595]={ + [1617]={ [1]={ [1]={ limit={ @@ -33843,7 +34402,7 @@ return { [1]="maximum_life_+%" } }, - [1596]={ + [1618]={ [1]={ [1]={ limit={ @@ -33872,7 +34431,7 @@ return { [1]="monster_life_+%_final_from_rarity" } }, - [1597]={ + [1619]={ [1]={ [1]={ limit={ @@ -33901,7 +34460,7 @@ return { [1]="monster_life_+%_final_from_map" } }, - [1598]={ + [1620]={ [1]={ [1]={ [1]={ @@ -33921,7 +34480,27 @@ return { [1]="base_life_regeneration_rate_per_minute" } }, - [1599]={ + [1621]={ + [1]={ + [1]={ + [1]={ + k="deciseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Lose {0} Life per second" + } + }, + stats={ + [1]="life_degeneration_per_10_seconds_not_in_grace" + } + }, + [1622]={ [1]={ [1]={ [1]={ @@ -33941,7 +34520,7 @@ return { [1]="life_degeneration_per_minute_not_in_grace" } }, - [1600]={ + [1623]={ [1]={ [1]={ [1]={ @@ -33961,7 +34540,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_endurance_charge" } }, - [1601]={ + [1624]={ [1]={ [1]={ limit={ @@ -33990,7 +34569,7 @@ return { [1]="life_regeneration_rate_+%" } }, - [1602]={ + [1625]={ [1]={ [1]={ limit={ @@ -34019,7 +34598,7 @@ return { [1]="life_recovery_rate_+%" } }, - [1603]={ + [1626]={ [1]={ [1]={ limit={ @@ -34035,7 +34614,7 @@ return { [1]="base_maximum_mana" } }, - [1604]={ + [1627]={ [1]={ [1]={ limit={ @@ -34064,7 +34643,7 @@ return { [1]="maximum_mana_+%" } }, - [1605]={ + [1628]={ [1]={ [1]={ [1]={ @@ -34084,7 +34663,7 @@ return { [1]="mana_regeneration_rate_per_minute_%" } }, - [1606]={ + [1629]={ [1]={ [1]={ [1]={ @@ -34104,7 +34683,7 @@ return { [1]="base_mana_regeneration_rate_per_minute" } }, - [1607]={ + [1630]={ [1]={ [1]={ [1]={ @@ -34124,7 +34703,7 @@ return { [1]="mana_degeneration_per_minute_not_in_grace" } }, - [1608]={ + [1631]={ [1]={ [1]={ limit={ @@ -34153,7 +34732,7 @@ return { [1]="mana_regeneration_rate_+%" } }, - [1609]={ + [1632]={ [1]={ [1]={ [1]={ @@ -34173,7 +34752,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_power_charge" } }, - [1610]={ + [1633]={ [1]={ [1]={ limit={ @@ -34202,7 +34781,7 @@ return { [1]="mana_recovery_rate_+%" } }, - [1611]={ + [1634]={ [1]={ [1]={ limit={ @@ -34231,7 +34810,7 @@ return { [1]="maximum_life_+%_and_fire_resistance_-%" } }, - [1612]={ + [1635]={ [1]={ [1]={ limit={ @@ -34260,7 +34839,7 @@ return { [1]="maximum_mana_+%_and_cold_resistance_-%" } }, - [1613]={ + [1636]={ [1]={ [1]={ limit={ @@ -34289,7 +34868,7 @@ return { [1]="maximum_energy_shield_+%_and_lightning_resistance_-%" } }, - [1614]={ + [1637]={ [1]={ [1]={ limit={ @@ -34305,7 +34884,7 @@ return { [1]="base_cannot_be_damaged" } }, - [1615]={ + [1638]={ [1]={ [1]={ limit={ @@ -34334,7 +34913,7 @@ return { [1]="item_found_quantity_+%" } }, - [1616]={ + [1639]={ [1]={ [1]={ limit={ @@ -34363,7 +34942,7 @@ return { [1]="base_item_found_quantity_+%" } }, - [1617]={ + [1640]={ [1]={ [1]={ [1]={ @@ -34400,7 +34979,7 @@ return { [1]="item_found_quantity_+%_when_on_low_life" } }, - [1618]={ + [1641]={ [1]={ [1]={ limit={ @@ -34429,7 +35008,7 @@ return { [1]="chest_item_quantity_+%" } }, - [1619]={ + [1642]={ [1]={ [1]={ limit={ @@ -34458,7 +35037,7 @@ return { [1]="item_found_rarity_+%" } }, - [1620]={ + [1643]={ [1]={ [1]={ limit={ @@ -34487,7 +35066,7 @@ return { [1]="base_item_found_rarity_+%" } }, - [1621]={ + [1644]={ [1]={ [1]={ limit={ @@ -34516,7 +35095,7 @@ return { [1]="local_display_aura_allies_have_increased_item_rarity_+%" } }, - [1622]={ + [1645]={ [1]={ [1]={ limit={ @@ -34545,7 +35124,7 @@ return { [1]="local_display_item_found_rarity_+%_for_you_and_nearby_allies" } }, - [1623]={ + [1646]={ [1]={ [1]={ [1]={ @@ -34582,7 +35161,7 @@ return { [1]="item_found_rarity_+%_when_on_low_life" } }, - [1624]={ + [1647]={ [1]={ [1]={ limit={ @@ -34611,7 +35190,7 @@ return { [1]="chest_item_rarity_+%" } }, - [1625]={ + [1648]={ [1]={ [1]={ limit={ @@ -34640,7 +35219,7 @@ return { [1]="item_found_quality_+%" } }, - [1626]={ + [1649]={ [1]={ [1]={ limit={ @@ -34669,7 +35248,7 @@ return { [1]="item_found_relevancy_+%" } }, - [1627]={ + [1650]={ [1]={ [1]={ limit={ @@ -34698,7 +35277,7 @@ return { [1]="experience_gain_+%" } }, - [1628]={ + [1651]={ [1]={ [1]={ limit={ @@ -34727,7 +35306,7 @@ return { [1]="experience_loss_on_death_-%" } }, - [1629]={ + [1652]={ [1]={ [1]={ limit={ @@ -34743,7 +35322,7 @@ return { [1]="local_ring_disable_other_ring" } }, - [1630]={ + [1653]={ [1]={ [1]={ limit={ @@ -34759,7 +35338,7 @@ return { [1]="base_fire_immunity" } }, - [1631]={ + [1654]={ [1]={ [1]={ limit={ @@ -34775,7 +35354,7 @@ return { [1]="totem_fire_immunity" } }, - [1632]={ + [1655]={ [1]={ [1]={ limit={ @@ -34791,7 +35370,7 @@ return { [1]="spell_skill_gem_level_+" } }, - [1633]={ + [1656]={ [1]={ [1]={ limit={ @@ -34807,7 +35386,7 @@ return { [1]="physical_spell_skill_gem_level_+" } }, - [1634]={ + [1657]={ [1]={ [1]={ limit={ @@ -34823,7 +35402,7 @@ return { [1]="fire_spell_skill_gem_level_+" } }, - [1635]={ + [1658]={ [1]={ [1]={ limit={ @@ -34839,7 +35418,7 @@ return { [1]="cold_spell_skill_gem_level_+" } }, - [1636]={ + [1659]={ [1]={ [1]={ limit={ @@ -34855,7 +35434,7 @@ return { [1]="lightning_spell_skill_gem_level_+" } }, - [1637]={ + [1660]={ [1]={ [1]={ limit={ @@ -34871,7 +35450,7 @@ return { [1]="chaos_spell_skill_gem_level_+" } }, - [1638]={ + [1661]={ [1]={ [1]={ limit={ @@ -34887,7 +35466,7 @@ return { [1]="minion_skill_gem_level_+" } }, - [1639]={ + [1662]={ [1]={ [1]={ limit={ @@ -34903,7 +35482,7 @@ return { [1]="raise_zombie_gem_level_+" } }, - [1640]={ + [1663]={ [1]={ [1]={ limit={ @@ -34919,7 +35498,7 @@ return { [1]="raise_spectre_gem_level_+" } }, - [1641]={ + [1664]={ [1]={ [1]={ limit={ @@ -34935,7 +35514,7 @@ return { [1]="summon_skeleton_gem_level_+" } }, - [1642]={ + [1665]={ [1]={ [1]={ [1]={ @@ -34977,7 +35556,7 @@ return { [2]="random_skill_gem_level_+_index" } }, - [1643]={ + [1666]={ [1]={ [1]={ limit={ @@ -34993,7 +35572,7 @@ return { [1]="base_resist_all_elements_%" } }, - [1644]={ + [1667]={ [1]={ [1]={ limit={ @@ -35009,7 +35588,7 @@ return { [1]="resist_all_elements_%_per_endurance_charge" } }, - [1645]={ + [1668]={ [1]={ [1]={ limit={ @@ -35025,7 +35604,7 @@ return { [1]="resist_all_elements_+%_while_holding_shield" } }, - [1646]={ + [1669]={ [1]={ [1]={ [1]={ @@ -35045,7 +35624,7 @@ return { [1]="elemental_resistance_%_when_on_low_life" } }, - [1647]={ + [1670]={ [1]={ [1]={ [1]={ @@ -35065,7 +35644,7 @@ return { [1]="base_maximum_fire_damage_resistance_%" } }, - [1648]={ + [1671]={ [1]={ [1]={ limit={ @@ -35081,7 +35660,7 @@ return { [1]="fire_damage_resistance_is_%" } }, - [1649]={ + [1672]={ [1]={ [1]={ limit={ @@ -35097,7 +35676,7 @@ return { [1]="base_fire_damage_resistance_%" } }, - [1650]={ + [1673]={ [1]={ [1]={ limit={ @@ -35113,7 +35692,7 @@ return { [1]="unique_fire_damage_resistance_%_when_red_gem_socketed" } }, - [1651]={ + [1674]={ [1]={ [1]={ [1]={ @@ -35150,7 +35729,7 @@ return { [1]="fire_damage_resistance_%_when_on_low_life" } }, - [1652]={ + [1675]={ [1]={ [1]={ limit={ @@ -35179,7 +35758,7 @@ return { [1]="fire_damage_resistance_+%" } }, - [1653]={ + [1676]={ [1]={ [1]={ [1]={ @@ -35199,7 +35778,7 @@ return { [1]="base_maximum_cold_damage_resistance_%" } }, - [1654]={ + [1677]={ [1]={ [1]={ limit={ @@ -35215,7 +35794,7 @@ return { [1]="cold_damage_resistance_is_%" } }, - [1655]={ + [1678]={ [1]={ [1]={ limit={ @@ -35231,7 +35810,7 @@ return { [1]="base_cold_damage_resistance_%" } }, - [1656]={ + [1679]={ [1]={ [1]={ limit={ @@ -35247,7 +35826,7 @@ return { [1]="unique_cold_damage_resistance_%_when_green_gem_socketed" } }, - [1657]={ + [1680]={ [1]={ [1]={ limit={ @@ -35276,7 +35855,7 @@ return { [1]="cold_damage_resistance_+%" } }, - [1658]={ + [1681]={ [1]={ [1]={ [1]={ @@ -35296,7 +35875,7 @@ return { [1]="base_maximum_lightning_damage_resistance_%" } }, - [1659]={ + [1682]={ [1]={ [1]={ limit={ @@ -35312,7 +35891,7 @@ return { [1]="lightning_damage_resistance_is_%" } }, - [1660]={ + [1683]={ [1]={ [1]={ limit={ @@ -35328,7 +35907,7 @@ return { [1]="base_lightning_damage_resistance_%" } }, - [1661]={ + [1684]={ [1]={ [1]={ limit={ @@ -35344,7 +35923,7 @@ return { [1]="all_resistances_%_per_active_minion_not_from_vaal_skills" } }, - [1662]={ + [1685]={ [1]={ [1]={ limit={ @@ -35360,7 +35939,7 @@ return { [1]="unique_lightning_damage_resistance_%_when_blue_gem_socketed" } }, - [1663]={ + [1686]={ [1]={ [1]={ limit={ @@ -35389,7 +35968,7 @@ return { [1]="lightning_damage_resistance_+%" } }, - [1664]={ + [1687]={ [1]={ [1]={ [1]={ @@ -35409,7 +35988,7 @@ return { [1]="base_maximum_chaos_damage_resistance_%" } }, - [1665]={ + [1688]={ [1]={ [1]={ limit={ @@ -35425,7 +36004,7 @@ return { [1]="base_chaos_damage_resistance_%" } }, - [1666]={ + [1689]={ [1]={ [1]={ [1]={ @@ -35445,7 +36024,7 @@ return { [1]="additional_maximum_all_resistances_%" } }, - [1667]={ + [1690]={ [1]={ [1]={ [1]={ @@ -35465,7 +36044,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%" } }, - [1668]={ + [1691]={ [1]={ [1]={ limit={ @@ -35498,7 +36077,7 @@ return { [1]="temporal_chains_effeciveness_+%" } }, - [1669]={ + [1692]={ [1]={ [1]={ [1]={ @@ -35539,7 +36118,7 @@ return { [1]="chill_effectiveness_on_self_+%" } }, - [1670]={ + [1693]={ [1]={ [1]={ limit={ @@ -35568,7 +36147,7 @@ return { [1]="trickster_damage_+%_final_per_different_mastery" } }, - [1671]={ + [1694]={ [1]={ [1]={ [1]={ @@ -35592,7 +36171,7 @@ return { [1]="old_do_not_use_life_leech_from_physical_damage_%" } }, - [1672]={ + [1695]={ [1]={ [1]={ [1]={ @@ -35616,7 +36195,7 @@ return { [1]="enemy_life_leech_from_physical_attack_damage_permyriad" } }, - [1673]={ + [1696]={ [1]={ [1]={ [1]={ @@ -35640,7 +36219,7 @@ return { [1]="life_leech_from_physical_attack_damage_permyriad" } }, - [1674]={ + [1697]={ [1]={ [1]={ [1]={ @@ -35664,7 +36243,7 @@ return { [1]="old_do_not_use_local_life_leech_from_physical_damage_%" } }, - [1675]={ + [1698]={ [1]={ [1]={ [1]={ @@ -35688,7 +36267,7 @@ return { [1]="local_life_leech_from_physical_damage_permyriad" } }, - [1676]={ + [1699]={ [1]={ [1]={ [1]={ @@ -35712,7 +36291,7 @@ return { [1]="old_do_not_use_life_leech_from_physical_damage_with_claw_%" } }, - [1677]={ + [1700]={ [1]={ [1]={ [1]={ @@ -35736,7 +36315,7 @@ return { [1]="life_leech_from_physical_damage_with_claw_permyriad" } }, - [1678]={ + [1701]={ [1]={ [1]={ [1]={ @@ -35760,7 +36339,7 @@ return { [1]="life_leech_from_physical_damage_with_bow_permyriad" } }, - [1679]={ + [1702]={ [1]={ [1]={ [1]={ @@ -35788,7 +36367,7 @@ return { [1]="life_and_mana_leech_from_physical_damage_permyriad" } }, - [1680]={ + [1703]={ [1]={ [1]={ [1]={ @@ -35816,7 +36395,7 @@ return { [1]="local_life_and_mana_leech_from_physical_damage_permyriad" } }, - [1681]={ + [1704]={ [1]={ [1]={ [1]={ @@ -35840,7 +36419,7 @@ return { [1]="old_do_not_use_mana_leech_from_physical_damage_with_claw_%" } }, - [1682]={ + [1705]={ [1]={ [1]={ limit={ @@ -35856,7 +36435,7 @@ return { [1]="recover_%_life_on_kill_per_different_mastery" } }, - [1683]={ + [1706]={ [1]={ [1]={ [1]={ @@ -35880,7 +36459,7 @@ return { [1]="mana_leech_from_physical_damage_with_claw_permyriad" } }, - [1684]={ + [1707]={ [1]={ [1]={ [1]={ @@ -35904,7 +36483,7 @@ return { [1]="mana_leech_from_physical_damage_with_bow_permyriad" } }, - [1685]={ + [1708]={ [1]={ [1]={ [1]={ @@ -35928,7 +36507,7 @@ return { [1]="life_leech_from_any_damage_permyriad" } }, - [1686]={ + [1709]={ [1]={ [1]={ [1]={ @@ -35952,7 +36531,7 @@ return { [1]="old_do_not_use_life_leech_from_spell_damage_%" } }, - [1687]={ + [1710]={ [1]={ [1]={ [1]={ @@ -35976,7 +36555,7 @@ return { [1]="base_life_leech_from_spell_damage_permyriad" } }, - [1688]={ + [1711]={ [1]={ [1]={ [1]={ @@ -36000,7 +36579,7 @@ return { [1]="base_life_leech_from_attack_damage_permyriad" } }, - [1689]={ + [1712]={ [1]={ [1]={ [1]={ @@ -36024,7 +36603,7 @@ return { [1]="old_do_not_use_base_life_leech_from_physical_damage_permyriad" } }, - [1690]={ + [1713]={ [1]={ [1]={ [1]={ @@ -36048,7 +36627,7 @@ return { [1]="base_life_leech_from_physical_damage_permyriad" } }, - [1691]={ + [1714]={ [1]={ [1]={ [1]={ @@ -36072,7 +36651,7 @@ return { [1]="enemy_life_leech_from_physical_damage_permyriad" } }, - [1692]={ + [1715]={ [1]={ [1]={ [1]={ @@ -36096,7 +36675,7 @@ return { [1]="horrible_ugly_life_leech_from_physical_damage_perhundredthousand" } }, - [1693]={ + [1716]={ [1]={ [1]={ [1]={ @@ -36120,7 +36699,7 @@ return { [1]="old_do_not_use_base_life_leech_from_fire_damage_permyriad" } }, - [1694]={ + [1717]={ [1]={ [1]={ [1]={ @@ -36144,7 +36723,7 @@ return { [1]="base_life_leech_from_fire_damage_permyriad" } }, - [1695]={ + [1718]={ [1]={ [1]={ [1]={ @@ -36168,7 +36747,7 @@ return { [1]="enemy_life_leech_from_fire_damage_permyriad" } }, - [1696]={ + [1719]={ [1]={ [1]={ [1]={ @@ -36192,7 +36771,7 @@ return { [1]="horrible_ugly_life_leech_from_fire_damage_perhundredthousand" } }, - [1697]={ + [1720]={ [1]={ [1]={ limit={ @@ -36208,7 +36787,7 @@ return { [1]="recover_%_es_on_kill_per_different_mastery" } }, - [1698]={ + [1721]={ [1]={ [1]={ [1]={ @@ -36232,7 +36811,7 @@ return { [1]="old_do_not_use_base_life_leech_from_cold_damage_permyriad" } }, - [1699]={ + [1722]={ [1]={ [1]={ [1]={ @@ -36256,7 +36835,7 @@ return { [1]="base_life_leech_from_cold_damage_permyriad" } }, - [1700]={ + [1723]={ [1]={ [1]={ [1]={ @@ -36280,7 +36859,7 @@ return { [1]="enemy_life_leech_from_cold_damage_permyriad" } }, - [1701]={ + [1724]={ [1]={ [1]={ [1]={ @@ -36304,7 +36883,7 @@ return { [1]="horrible_ugly_life_leech_from_cold_damage_perhundredthousand" } }, - [1702]={ + [1725]={ [1]={ [1]={ [1]={ @@ -36328,7 +36907,7 @@ return { [1]="old_do_not_use_base_life_leech_from_lightning_damage_permyriad" } }, - [1703]={ + [1726]={ [1]={ [1]={ [1]={ @@ -36352,7 +36931,7 @@ return { [1]="base_life_leech_from_lightning_damage_permyriad" } }, - [1704]={ + [1727]={ [1]={ [1]={ [1]={ @@ -36376,7 +36955,7 @@ return { [1]="enemy_life_leech_from_lightning_damage_permyriad" } }, - [1705]={ + [1728]={ [1]={ [1]={ [1]={ @@ -36400,7 +36979,7 @@ return { [1]="horrible_ugly_life_leech_from_lightning_damage_perhundredthousand" } }, - [1706]={ + [1729]={ [1]={ [1]={ [1]={ @@ -36424,7 +37003,7 @@ return { [1]="base_life_leech_from_chaos_damage_permyriad" } }, - [1707]={ + [1730]={ [1]={ [1]={ [1]={ @@ -36448,7 +37027,7 @@ return { [1]="enemy_life_leech_from_chaos_damage_permyriad" } }, - [1708]={ + [1731]={ [1]={ [1]={ [1]={ @@ -36472,7 +37051,7 @@ return { [1]="horrible_ugly_life_leech_from_chaos_damage_perhundredthousand" } }, - [1709]={ + [1732]={ [1]={ [1]={ [1]={ @@ -36496,7 +37075,7 @@ return { [1]="old_do_not_use_base_life_leech_from_elemental_damage_permyriad" } }, - [1710]={ + [1733]={ [1]={ [1]={ [1]={ @@ -36520,7 +37099,7 @@ return { [1]="base_life_leech_from_elemental_damage_permyriad" } }, - [1711]={ + [1734]={ [1]={ [1]={ [1]={ @@ -36544,7 +37123,7 @@ return { [1]="old_do_not_use_life_leech_permyriad_vs_shocked_enemies" } }, - [1712]={ + [1735]={ [1]={ [1]={ [1]={ @@ -36568,7 +37147,7 @@ return { [1]="base_life_leech_permyriad_vs_shocked_enemies" } }, - [1713]={ + [1736]={ [1]={ [1]={ [1]={ @@ -36592,7 +37171,7 @@ return { [1]="old_do_not_use_life_leech_%_vs_frozen_enemies" } }, - [1714]={ + [1737]={ [1]={ [1]={ limit={ @@ -36608,7 +37187,7 @@ return { [1]="recover_%_mana_on_kill_per_different_mastery" } }, - [1715]={ + [1738]={ [1]={ [1]={ [1]={ @@ -36632,7 +37211,7 @@ return { [1]="base_life_leech_permyriad_vs_frozen_enemies" } }, - [1716]={ + [1739]={ [1]={ [1]={ [1]={ @@ -36656,7 +37235,7 @@ return { [1]="old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies" } }, - [1717]={ + [1740]={ [1]={ [1]={ [1]={ @@ -36680,7 +37259,7 @@ return { [1]="base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies" } }, - [1718]={ + [1741]={ [1]={ [1]={ [1]={ @@ -36704,7 +37283,7 @@ return { [1]="old_do_not_use_life_leech_permyriad_on_crit" } }, - [1719]={ + [1742]={ [1]={ [1]={ [1]={ @@ -36728,7 +37307,7 @@ return { [1]="life_leech_permyriad_on_crit" } }, - [1720]={ + [1743]={ [1]={ [1]={ [1]={ @@ -36752,7 +37331,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_vs_bleeding_enemies" } }, - [1721]={ + [1744]={ [1]={ [1]={ [1]={ @@ -36776,7 +37355,7 @@ return { [1]="old_do_not_use_mana_leech_from_physical_damage_%" } }, - [1722]={ + [1745]={ [1]={ [1]={ [1]={ @@ -36800,7 +37379,7 @@ return { [1]="enemy_mana_leech_from_physical_attack_damage_permyriad" } }, - [1723]={ + [1746]={ [1]={ [1]={ [1]={ @@ -36824,7 +37403,7 @@ return { [1]="mana_leech_from_physical_attack_damage_permyriad" } }, - [1724]={ + [1747]={ [1]={ [1]={ [1]={ @@ -36848,7 +37427,7 @@ return { [1]="old_do_not_use_local_mana_leech_from_physical_damage_%" } }, - [1725]={ + [1748]={ [1]={ [1]={ [1]={ @@ -36872,7 +37451,7 @@ return { [1]="local_mana_leech_from_physical_damage_permyriad" } }, - [1726]={ + [1749]={ [1]={ [1]={ [1]={ @@ -36896,7 +37475,7 @@ return { [1]="mana_leech_from_any_damage_permyriad" } }, - [1727]={ + [1750]={ [1]={ [1]={ [1]={ @@ -36920,7 +37499,7 @@ return { [1]="old_do_not_use_mana_leech_from_spell_damage_%" } }, - [1728]={ + [1751]={ [1]={ [1]={ [1]={ @@ -36944,7 +37523,7 @@ return { [1]="base_mana_leech_from_spell_damage_permyriad" } }, - [1729]={ + [1752]={ [1]={ [1]={ [1]={ @@ -36968,7 +37547,7 @@ return { [1]="base_mana_leech_from_attack_damage_permyriad" } }, - [1730]={ + [1753]={ [1]={ [1]={ [1]={ @@ -36992,7 +37571,7 @@ return { [1]="base_mana_leech_from_physical_damage_permyriad" } }, - [1731]={ + [1754]={ [1]={ [1]={ [1]={ @@ -37016,7 +37595,7 @@ return { [1]="enemy_mana_leech_from_physical_damage_permyriad" } }, - [1732]={ + [1755]={ [1]={ [1]={ [1]={ @@ -37040,7 +37619,7 @@ return { [1]="base_mana_leech_from_fire_damage_permyriad" } }, - [1733]={ + [1756]={ [1]={ [1]={ [1]={ @@ -37064,7 +37643,7 @@ return { [1]="enemy_mana_leech_from_fire_damage_permyriad" } }, - [1734]={ + [1757]={ [1]={ [1]={ [1]={ @@ -37088,7 +37667,7 @@ return { [1]="base_mana_leech_from_cold_damage_permyriad" } }, - [1735]={ + [1758]={ [1]={ [1]={ [1]={ @@ -37112,7 +37691,7 @@ return { [1]="old_do_not_use_base_mana_leech_from_lightning_damage_permyriad" } }, - [1736]={ + [1759]={ [1]={ [1]={ [1]={ @@ -37136,7 +37715,7 @@ return { [1]="base_mana_leech_from_lightning_damage_permyriad" } }, - [1737]={ + [1760]={ [1]={ [1]={ [1]={ @@ -37160,7 +37739,7 @@ return { [1]="enemy_mana_leech_from_lightning_damage_permyriad" } }, - [1738]={ + [1761]={ [1]={ [1]={ [1]={ @@ -37184,7 +37763,7 @@ return { [1]="base_mana_leech_from_chaos_damage_permyriad" } }, - [1739]={ + [1762]={ [1]={ [1]={ [1]={ @@ -37208,7 +37787,7 @@ return { [1]="enemy_mana_leech_from_chaos_damage_permyriad" } }, - [1740]={ + [1763]={ [1]={ [1]={ [1]={ @@ -37232,7 +37811,7 @@ return { [1]="base_mana_leech_from_elemental_damage_permyriad" } }, - [1741]={ + [1764]={ [1]={ [1]={ [1]={ @@ -37256,7 +37835,7 @@ return { [1]="old_do_not_use_mana_leech_%_vs_shocked_enemies" } }, - [1742]={ + [1765]={ [1]={ [1]={ [1]={ @@ -37280,7 +37859,7 @@ return { [1]="base_mana_leech_permyriad_vs_shocked_enemies" } }, - [1743]={ + [1766]={ [1]={ [1]={ [1]={ @@ -37304,7 +37883,7 @@ return { [1]="old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge" } }, - [1744]={ + [1767]={ [1]={ [1]={ [1]={ @@ -37328,7 +37907,7 @@ return { [1]="mana_leech_from_physical_damage_permyriad_per_power_charge" } }, - [1745]={ + [1768]={ [1]={ [1]={ [1]={ @@ -37352,7 +37931,7 @@ return { [1]="energy_shield_leech_from_any_damage_permyriad" } }, - [1746]={ + [1769]={ [1]={ [1]={ [1]={ @@ -37376,7 +37955,7 @@ return { [1]="base_energy_shield_leech_from_spell_damage_permyriad" } }, - [1747]={ + [1770]={ [1]={ [1]={ [1]={ @@ -37400,7 +37979,7 @@ return { [1]="energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy" } }, - [1748]={ + [1771]={ [1]={ [1]={ limit={ @@ -37429,7 +38008,7 @@ return { [1]="maximum_life_leech_amount_per_leech_+%" } }, - [1749]={ + [1772]={ [1]={ [1]={ limit={ @@ -37458,7 +38037,7 @@ return { [1]="maximum_mana_leech_amount_per_leech_+%" } }, - [1750]={ + [1773]={ [1]={ [1]={ limit={ @@ -37487,7 +38066,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_+%" } }, - [1751]={ + [1774]={ [1]={ [1]={ [1]={ @@ -37507,7 +38086,7 @@ return { [1]="maximum_life_leech_rate_%_per_minute" } }, - [1752]={ + [1775]={ [1]={ [1]={ [1]={ @@ -37527,7 +38106,7 @@ return { [1]="maximum_energy_shield_leech_rate_%_per_minute" } }, - [1753]={ + [1776]={ [1]={ [1]={ limit={ @@ -37543,7 +38122,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield" } }, - [1754]={ + [1777]={ [1]={ [1]={ [1]={ @@ -37563,7 +38142,7 @@ return { [1]="maximum_mana_leech_rate_%_per_minute" } }, - [1755]={ + [1778]={ [1]={ [1]={ limit={ @@ -37592,7 +38171,7 @@ return { [1]="maximum_life_leech_rate_+%" } }, - [1756]={ + [1779]={ [1]={ [1]={ [1]={ @@ -37629,7 +38208,7 @@ return { [1]="maximum_life_leech_rate_+1%_per_12_stat_value" } }, - [1757]={ + [1780]={ [1]={ [1]={ limit={ @@ -37658,7 +38237,7 @@ return { [1]="maximum_mana_leech_rate_+%" } }, - [1758]={ + [1781]={ [1]={ [1]={ limit={ @@ -37687,7 +38266,7 @@ return { [1]="maximum_energy_shield_leech_rate_+%" } }, - [1759]={ + [1782]={ [1]={ [1]={ limit={ @@ -37716,7 +38295,7 @@ return { [1]="maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry" } }, - [1760]={ + [1783]={ [1]={ [1]={ [1]={ @@ -37736,7 +38315,7 @@ return { [1]="maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry" } }, - [1761]={ + [1784]={ [1]={ [1]={ limit={ @@ -37765,7 +38344,7 @@ return { [1]="life_gain_per_target" } }, - [1762]={ + [1785]={ [1]={ [1]={ limit={ @@ -37794,7 +38373,7 @@ return { [1]="local_life_gain_per_target" } }, - [1763]={ + [1786]={ [1]={ [1]={ limit={ @@ -37823,7 +38402,7 @@ return { [1]="base_life_gained_on_spell_hit" } }, - [1764]={ + [1787]={ [1]={ [1]={ limit={ @@ -37852,7 +38431,7 @@ return { [1]="base_life_gain_per_target" } }, - [1765]={ + [1788]={ [1]={ [1]={ limit={ @@ -37881,7 +38460,7 @@ return { [1]="life_and_mana_gain_per_hit" } }, - [1766]={ + [1789]={ [1]={ [1]={ limit={ @@ -37910,7 +38489,7 @@ return { [1]="local_life_and_mana_gain_per_target" } }, - [1767]={ + [1790]={ [1]={ [1]={ limit={ @@ -37939,7 +38518,7 @@ return { [1]="life_gain_on_ignited_enemy_hit" } }, - [1768]={ + [1791]={ [1]={ [1]={ limit={ @@ -37968,7 +38547,7 @@ return { [1]="mana_gain_per_target" } }, - [1769]={ + [1792]={ [1]={ [1]={ limit={ @@ -37997,7 +38576,7 @@ return { [1]="local_mana_gain_per_target" } }, - [1770]={ + [1793]={ [1]={ [1]={ limit={ @@ -38026,7 +38605,7 @@ return { [1]="virtual_mana_gain_per_target" } }, - [1771]={ + [1794]={ [1]={ [1]={ limit={ @@ -38055,7 +38634,7 @@ return { [1]="energy_shield_gain_per_target" } }, - [1772]={ + [1795]={ [1]={ [1]={ limit={ @@ -38084,7 +38663,7 @@ return { [1]="base_life_gained_on_enemy_death" } }, - [1773]={ + [1796]={ [1]={ [1]={ limit={ @@ -38113,7 +38692,7 @@ return { [1]="recover_%_maximum_life_on_kill" } }, - [1774]={ + [1797]={ [1]={ [1]={ limit={ @@ -38142,7 +38721,7 @@ return { [1]="recover_energy_shield_%_on_kill" } }, - [1775]={ + [1798]={ [1]={ [1]={ limit={ @@ -38171,7 +38750,7 @@ return { [1]="recover_%_maximum_mana_on_kill" } }, - [1776]={ + [1799]={ [1]={ [1]={ limit={ @@ -38187,7 +38766,7 @@ return { [1]="recover_%_maximum_mana_on_killing_cursed_enemy" } }, - [1777]={ + [1800]={ [1]={ [1]={ limit={ @@ -38216,7 +38795,7 @@ return { [1]="life_gained_on_killing_ignited_enemies" } }, - [1778]={ + [1801]={ [1]={ [1]={ limit={ @@ -38232,7 +38811,7 @@ return { [1]="maximum_life_%_lost_on_kill" } }, - [1779]={ + [1802]={ [1]={ [1]={ limit={ @@ -38248,7 +38827,7 @@ return { [1]="maximum_mana_%_gained_on_kill" } }, - [1780]={ + [1803]={ [1]={ [1]={ limit={ @@ -38264,7 +38843,7 @@ return { [1]="maximum_energy_shield_%_lost_on_kill" } }, - [1781]={ + [1804]={ [1]={ [1]={ limit={ @@ -38293,7 +38872,7 @@ return { [1]="life_gained_on_block" } }, - [1782]={ + [1805]={ [1]={ [1]={ limit={ @@ -38322,7 +38901,7 @@ return { [1]="mana_gained_on_block" } }, - [1783]={ + [1806]={ [1]={ [1]={ limit={ @@ -38351,7 +38930,7 @@ return { [1]="energy_shield_gained_on_block" } }, - [1784]={ + [1807]={ [1]={ [1]={ limit={ @@ -38367,7 +38946,7 @@ return { [1]="recover_X_life_on_block" } }, - [1785]={ + [1808]={ [1]={ [1]={ limit={ @@ -38383,7 +38962,7 @@ return { [1]="spell_block_%_per_5_attack_block" } }, - [1786]={ + [1809]={ [1]={ [1]={ limit={ @@ -38399,7 +38978,7 @@ return { [1]="minion_recover_X_life_on_block" } }, - [1787]={ + [1810]={ [1]={ [1]={ limit={ @@ -38428,7 +39007,7 @@ return { [1]="base_mana_gained_on_enemy_death" } }, - [1788]={ + [1811]={ [1]={ [1]={ limit={ @@ -38457,7 +39036,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [1789]={ + [1812]={ [1]={ [1]={ limit={ @@ -38486,7 +39065,7 @@ return { [1]="minion_life_recovery_rate_+%" } }, - [1790]={ + [1813]={ [1]={ [1]={ limit={ @@ -38515,7 +39094,7 @@ return { [1]="minion_maximum_life_+%" } }, - [1791]={ + [1814]={ [1]={ [1]={ limit={ @@ -38544,7 +39123,7 @@ return { [1]="minion_maximum_mana_+%" } }, - [1792]={ + [1815]={ [1]={ [1]={ limit={ @@ -38573,7 +39152,7 @@ return { [1]="minion_maximum_energy_shield_+%" } }, - [1793]={ + [1816]={ [1]={ [1]={ limit={ @@ -38602,7 +39181,7 @@ return { [1]="minion_movement_speed_+%" } }, - [1794]={ + [1817]={ [1]={ [1]={ limit={ @@ -38631,7 +39210,7 @@ return { [1]="base_spectre_maximum_life_+%" } }, - [1795]={ + [1818]={ [1]={ [1]={ limit={ @@ -38660,7 +39239,7 @@ return { [1]="base_zombie_maximum_life_+%" } }, - [1796]={ + [1819]={ [1]={ [1]={ limit={ @@ -38689,7 +39268,7 @@ return { [1]="base_fire_elemental_maximum_life_+%" } }, - [1797]={ + [1820]={ [1]={ [1]={ limit={ @@ -38718,7 +39297,7 @@ return { [1]="base_raven_maximum_life_+%" } }, - [1798]={ + [1821]={ [1]={ [1]={ limit={ @@ -38747,7 +39326,7 @@ return { [1]="totem_life_+%" } }, - [1799]={ + [1822]={ [1]={ [1]={ limit={ @@ -38776,7 +39355,7 @@ return { [1]="totem_mana_+%" } }, - [1800]={ + [1823]={ [1]={ [1]={ limit={ @@ -38805,7 +39384,7 @@ return { [1]="totem_energy_shield_+%" } }, - [1801]={ + [1824]={ [1]={ [1]={ limit={ @@ -38834,7 +39413,7 @@ return { [1]="totem_range_+%" } }, - [1802]={ + [1825]={ [1]={ [1]={ limit={ @@ -38863,7 +39442,7 @@ return { [1]="totem_duration_+%" } }, - [1803]={ + [1826]={ [1]={ [1]={ limit={ @@ -38892,7 +39471,7 @@ return { [1]="skeleton_duration_+%" } }, - [1804]={ + [1827]={ [1]={ [1]={ limit={ @@ -38921,7 +39500,7 @@ return { [1]="buff_duration_+%" } }, - [1805]={ + [1828]={ [1]={ [1]={ limit={ @@ -38950,7 +39529,7 @@ return { [1]="base_curse_duration_+%" } }, - [1806]={ + [1829]={ [1]={ [1]={ [1]={ @@ -38987,7 +39566,7 @@ return { [1]="taunt_duration_+%" } }, - [1807]={ + [1830]={ [1]={ [1]={ limit={ @@ -39003,7 +39582,7 @@ return { [1]="life_gained_on_taunting_enemy" } }, - [1808]={ + [1831]={ [1]={ [1]={ limit={ @@ -39032,7 +39611,7 @@ return { [1]="mana_gained_on_hitting_taunted_enemy" } }, - [1809]={ + [1832]={ [1]={ [1]={ limit={ @@ -39048,7 +39627,7 @@ return { [1]="buff_affects_party" } }, - [1810]={ + [1833]={ [1]={ [1]={ limit={ @@ -39077,7 +39656,7 @@ return { [1]="buff_party_effect_radius_+%" } }, - [1811]={ + [1834]={ [1]={ [1]={ limit={ @@ -39093,7 +39672,7 @@ return { [1]="do_not_chain" } }, - [1812]={ + [1835]={ [1]={ [1]={ limit={ @@ -39109,7 +39688,7 @@ return { [1]="arrow_chains_+" } }, - [1813]={ + [1836]={ [1]={ [1]={ limit={ @@ -39125,7 +39704,7 @@ return { [1]="number_of_chains" } }, - [1814]={ + [1837]={ [1]={ [1]={ limit={ @@ -39154,7 +39733,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, - [1815]={ + [1838]={ [1]={ [1]={ limit={ @@ -39179,7 +39758,7 @@ return { [1]="arrow_base_number_of_targets_to_pierce" } }, - [1816]={ + [1839]={ [1]={ [1]={ limit={ @@ -39204,7 +39783,7 @@ return { [1]="number_of_additional_projectiles" } }, - [1817]={ + [1840]={ [1]={ [1]={ limit={ @@ -39220,7 +39799,7 @@ return { [1]="bow_attacks_turn_frenzy_charges_into_additional_arrows" } }, - [1818]={ + [1841]={ [1]={ [1]={ limit={ @@ -39249,7 +39828,7 @@ return { [1]="number_of_additional_arrows" } }, - [1819]={ + [1842]={ [1]={ [1]={ [1]={ @@ -39269,7 +39848,7 @@ return { [1]="number_of_additional_arrows_if_havent_cast_dash_recently" } }, - [1820]={ + [1843]={ [1]={ [1]={ limit={ @@ -39298,7 +39877,7 @@ return { [1]="base_projectile_speed_+%" } }, - [1821]={ + [1844]={ [1]={ [1]={ limit={ @@ -39327,7 +39906,7 @@ return { [1]="base_arrow_speed_+%" } }, - [1822]={ + [1845]={ [1]={ [1]={ limit={ @@ -39356,7 +39935,7 @@ return { [1]="base_movement_velocity_+%" } }, - [1823]={ + [1846]={ [1]={ [1]={ [1]={ @@ -39393,7 +39972,7 @@ return { [1]="movement_velocity_+%_when_on_low_life" } }, - [1824]={ + [1847]={ [1]={ [1]={ limit={ @@ -39422,7 +40001,7 @@ return { [1]="movement_velocity_+%_when_on_full_life" } }, - [1825]={ + [1848]={ [1]={ [1]={ [1]={ @@ -39446,7 +40025,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_on_low_life" } }, - [1826]={ + [1849]={ [1]={ [1]={ limit={ @@ -39462,7 +40041,7 @@ return { [1]="movement_velocity_+%_per_frenzy_charge" } }, - [1827]={ + [1850]={ [1]={ [1]={ limit={ @@ -39478,7 +40057,7 @@ return { [1]="base_minimum_endurance_charges" } }, - [1828]={ + [1851]={ [1]={ [1]={ limit={ @@ -39494,7 +40073,7 @@ return { [1]="max_endurance_charges" } }, - [1829]={ + [1852]={ [1]={ [1]={ limit={ @@ -39510,7 +40089,7 @@ return { [1]="maximum_endurance_charges_is_equal_to_maximum_frenzy_charges" } }, - [1830]={ + [1853]={ [1]={ [1]={ limit={ @@ -39526,7 +40105,7 @@ return { [1]="modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges" } }, - [1831]={ + [1854]={ [1]={ [1]={ limit={ @@ -39542,7 +40121,7 @@ return { [1]="maximum_brutal_charges_is_equal_to_maximum_endurance_charges" } }, - [1832]={ + [1855]={ [1]={ [1]={ limit={ @@ -39558,7 +40137,7 @@ return { [1]="base_minimum_frenzy_charges" } }, - [1833]={ + [1856]={ [1]={ [1]={ limit={ @@ -39574,7 +40153,7 @@ return { [1]="max_frenzy_charges" } }, - [1834]={ + [1857]={ [1]={ [1]={ limit={ @@ -39590,7 +40169,7 @@ return { [1]="maximum_frenzy_charges_is_equal_to_maximum_power_charges" } }, - [1835]={ + [1858]={ [1]={ [1]={ limit={ @@ -39606,7 +40185,7 @@ return { [1]="modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges" } }, - [1836]={ + [1859]={ [1]={ [1]={ limit={ @@ -39622,7 +40201,7 @@ return { [1]="maximum_affliction_charges_is_equal_to_maximum_frenzy_charges" } }, - [1837]={ + [1860]={ [1]={ [1]={ limit={ @@ -39638,7 +40217,7 @@ return { [1]="base_minimum_power_charges" } }, - [1838]={ + [1861]={ [1]={ [1]={ limit={ @@ -39654,7 +40233,7 @@ return { [1]="max_power_charges" } }, - [1839]={ + [1862]={ [1]={ [1]={ limit={ @@ -39670,7 +40249,7 @@ return { [1]="maximum_power_and_frenzy_charges_+" } }, - [1840]={ + [1863]={ [1]={ [1]={ limit={ @@ -39686,7 +40265,7 @@ return { [1]="modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges" } }, - [1841]={ + [1864]={ [1]={ [1]={ limit={ @@ -39702,7 +40281,7 @@ return { [1]="maximum_absorption_charges_is_equal_to_maximum_power_charges" } }, - [1842]={ + [1865]={ [1]={ [1]={ limit={ @@ -39718,7 +40297,7 @@ return { [1]="add_endurance_charge_on_critical_strike" } }, - [1843]={ + [1866]={ [1]={ [1]={ limit={ @@ -39743,7 +40322,7 @@ return { [1]="chance_to_gain_endurance_charge_on_crit_%" } }, - [1844]={ + [1867]={ [1]={ [1]={ limit={ @@ -39768,7 +40347,7 @@ return { [1]="chance_to_gain_endurance_charge_on_melee_crit_%" } }, - [1845]={ + [1868]={ [1]={ [1]={ limit={ @@ -39784,7 +40363,7 @@ return { [1]="gain_endurance_charge_%_chance_on_using_fire_skill" } }, - [1846]={ + [1869]={ [1]={ [1]={ limit={ @@ -39809,7 +40388,7 @@ return { [1]="chance_to_gain_endurance_charge_on_bow_crit_%" } }, - [1847]={ + [1870]={ [1]={ [1]={ limit={ @@ -39834,7 +40413,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [1848]={ + [1871]={ [1]={ [1]={ limit={ @@ -39859,7 +40438,7 @@ return { [1]="chance_to_gain_power_charge_on_killing_frozen_enemy_%" } }, - [1849]={ + [1872]={ [1]={ [1]={ limit={ @@ -39906,7 +40485,7 @@ return { [2]="spell_maximum_added_cold_damage_per_power_charge" } }, - [1850]={ + [1873]={ [1]={ [1]={ limit={ @@ -39931,7 +40510,7 @@ return { [1]="num_of_additional_chains_at_max_frenzy_charges" } }, - [1851]={ + [1874]={ [1]={ [1]={ limit={ @@ -39956,7 +40535,7 @@ return { [1]="projectile_chain_from_terrain_chance_%" } }, - [1852]={ + [1875]={ [1]={ [1]={ limit={ @@ -39972,7 +40551,7 @@ return { [1]="add_frenzy_charge_on_critical_strike" } }, - [1853]={ + [1876]={ [1]={ [1]={ limit={ @@ -39988,7 +40567,7 @@ return { [1]="add_power_charge_on_critical_strike" } }, - [1854]={ + [1877]={ [1]={ [1]={ limit={ @@ -40013,7 +40592,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [1855]={ + [1878]={ [1]={ [1]={ limit={ @@ -40029,7 +40608,7 @@ return { [1]="add_power_charge_on_melee_critical_strike" } }, - [1856]={ + [1879]={ [1]={ [1]={ limit={ @@ -40045,7 +40624,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [1857]={ + [1880]={ [1]={ [1]={ limit={ @@ -40061,7 +40640,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [1858]={ + [1881]={ [1]={ [1]={ limit={ @@ -40077,7 +40656,7 @@ return { [1]="add_power_charge_on_skill_hit_%" } }, - [1859]={ + [1882]={ [1]={ [1]={ limit={ @@ -40093,7 +40672,7 @@ return { [1]="add_endurance_charge_on_enemy_critical_strike" } }, - [1860]={ + [1883]={ [1]={ [1]={ [1]={ @@ -40113,7 +40692,7 @@ return { [1]="add_endurance_charge_on_status_ailment" } }, - [1861]={ + [1884]={ [1]={ [1]={ limit={ @@ -40129,7 +40708,7 @@ return { [1]="base_cannot_be_chilled" } }, - [1862]={ + [1885]={ [1]={ [1]={ limit={ @@ -40145,7 +40724,7 @@ return { [1]="base_cannot_be_frozen" } }, - [1863]={ + [1886]={ [1]={ [1]={ limit={ @@ -40161,7 +40740,7 @@ return { [1]="base_cannot_be_ignited" } }, - [1864]={ + [1887]={ [1]={ [1]={ limit={ @@ -40177,7 +40756,7 @@ return { [1]="cannot_be_poisoned" } }, - [1865]={ + [1888]={ [1]={ [1]={ limit={ @@ -40193,7 +40772,7 @@ return { [1]="base_cannot_be_shocked" } }, - [1866]={ + [1889]={ [1]={ [1]={ limit={ @@ -40209,7 +40788,7 @@ return { [1]="base_cannot_gain_bleeding" } }, - [1867]={ + [1890]={ [1]={ [1]={ [1]={ @@ -40229,7 +40808,7 @@ return { [1]="avoid_all_elemental_status_%" } }, - [1868]={ + [1891]={ [1]={ [1]={ limit={ @@ -40245,7 +40824,7 @@ return { [1]="base_avoid_chill_%" } }, - [1869]={ + [1892]={ [1]={ [1]={ limit={ @@ -40261,7 +40840,7 @@ return { [1]="base_avoid_freeze_%" } }, - [1870]={ + [1893]={ [1]={ [1]={ limit={ @@ -40277,7 +40856,7 @@ return { [1]="base_avoid_ignite_%" } }, - [1871]={ + [1894]={ [1]={ [1]={ [1]={ @@ -40297,7 +40876,7 @@ return { [1]="avoid_ignite_%_when_on_low_life" } }, - [1872]={ + [1895]={ [1]={ [1]={ limit={ @@ -40313,7 +40892,7 @@ return { [1]="base_avoid_shock_%" } }, - [1873]={ + [1896]={ [1]={ [1]={ limit={ @@ -40329,7 +40908,7 @@ return { [1]="base_avoid_poison_%" } }, - [1874]={ + [1897]={ [1]={ [1]={ limit={ @@ -40345,7 +40924,7 @@ return { [1]="avoid_stun_%" } }, - [1875]={ + [1898]={ [1]={ [1]={ limit={ @@ -40361,7 +40940,7 @@ return { [1]="base_avoid_stun_%" } }, - [1876]={ + [1899]={ [1]={ [1]={ [1]={ @@ -40381,7 +40960,7 @@ return { [1]="always_ignite" } }, - [1877]={ + [1900]={ [1]={ [1]={ [1]={ @@ -40401,7 +40980,7 @@ return { [1]="always_shock" } }, - [1878]={ + [1901]={ [1]={ [1]={ limit={ @@ -40417,7 +40996,7 @@ return { [1]="always_stun" } }, - [1879]={ + [1902]={ [1]={ [1]={ limit={ @@ -40433,7 +41012,7 @@ return { [1]="cannot_stun" } }, - [1880]={ + [1903]={ [1]={ [1]={ limit={ @@ -40462,7 +41041,7 @@ return { [1]="chill_duration_+%" } }, - [1881]={ + [1904]={ [1]={ [1]={ limit={ @@ -40491,7 +41070,7 @@ return { [1]="shock_duration_+%" } }, - [1882]={ + [1905]={ [1]={ [1]={ limit={ @@ -40520,7 +41099,7 @@ return { [1]="freeze_duration_+%" } }, - [1883]={ + [1906]={ [1]={ [1]={ limit={ @@ -40549,7 +41128,7 @@ return { [1]="ignite_duration_+%" } }, - [1884]={ + [1907]={ [1]={ [1]={ [1]={ @@ -40586,7 +41165,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [1885]={ + [1908]={ [1]={ [1]={ [1]={ @@ -40623,7 +41202,7 @@ return { [1]="base_elemental_status_ailment_duration_+%" } }, - [1886]={ + [1909]={ [1]={ [1]={ [1]={ @@ -40643,7 +41222,7 @@ return { [1]="cannot_inflict_status_ailments" } }, - [1887]={ + [1910]={ [1]={ [1]={ limit={ @@ -40672,7 +41251,7 @@ return { [1]="base_stun_duration_+%" } }, - [1888]={ + [1911]={ [1]={ [1]={ limit={ @@ -40701,7 +41280,7 @@ return { [1]="two_handed_melee_stun_duration_+%" } }, - [1889]={ + [1912]={ [1]={ [1]={ limit={ @@ -40730,7 +41309,7 @@ return { [1]="bow_stun_duration_+%" } }, - [1890]={ + [1913]={ [1]={ [1]={ [1]={ @@ -40767,7 +41346,7 @@ return { [1]="staff_stun_duration_+%" } }, - [1891]={ + [1914]={ [1]={ [1]={ [1]={ @@ -40804,7 +41383,7 @@ return { [1]="self_elemental_status_duration_-%" } }, - [1892]={ + [1915]={ [1]={ [1]={ limit={ @@ -40833,7 +41412,7 @@ return { [1]="self_chill_duration_-%" } }, - [1893]={ + [1916]={ [1]={ [1]={ limit={ @@ -40862,7 +41441,7 @@ return { [1]="self_shock_duration_-%" } }, - [1894]={ + [1917]={ [1]={ [1]={ limit={ @@ -40891,7 +41470,7 @@ return { [1]="self_freeze_duration_-%" } }, - [1895]={ + [1918]={ [1]={ [1]={ limit={ @@ -40920,7 +41499,7 @@ return { [1]="self_ignite_duration_-%" } }, - [1896]={ + [1919]={ [1]={ [1]={ limit={ @@ -40949,7 +41528,7 @@ return { [1]="base_self_chill_duration_-%" } }, - [1897]={ + [1920]={ [1]={ [1]={ limit={ @@ -40978,7 +41557,7 @@ return { [1]="base_self_shock_duration_-%" } }, - [1898]={ + [1921]={ [1]={ [1]={ limit={ @@ -41007,7 +41586,7 @@ return { [1]="base_self_freeze_duration_-%" } }, - [1899]={ + [1922]={ [1]={ [1]={ limit={ @@ -41036,7 +41615,7 @@ return { [1]="base_self_ignite_duration_-%" } }, - [1900]={ + [1923]={ [1]={ [1]={ limit={ @@ -41065,7 +41644,7 @@ return { [1]="chance_per_second_of_fire_spreading_between_enemies_%" } }, - [1901]={ + [1924]={ [1]={ [1]={ limit={ @@ -41094,7 +41673,7 @@ return { [1]="burn_damage_+%" } }, - [1902]={ + [1925]={ [1]={ [1]={ limit={ @@ -41110,7 +41689,7 @@ return { [1]="active_skill_level_+" } }, - [1903]={ + [1926]={ [1]={ [1]={ limit={ @@ -41139,7 +41718,7 @@ return { [1]="gem_experience_gain_+%" } }, - [1904]={ + [1927]={ [1]={ [1]={ limit={ @@ -41168,7 +41747,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [1905]={ + [1928]={ [1]={ [1]={ limit={ @@ -41197,7 +41776,7 @@ return { [1]="base_cost_+%" } }, - [1906]={ + [1929]={ [1]={ [1]={ limit={ @@ -41226,7 +41805,7 @@ return { [1]="base_life_cost_+%" } }, - [1907]={ + [1930]={ [1]={ [1]={ limit={ @@ -41255,7 +41834,7 @@ return { [1]="base_mana_cost_-%" } }, - [1908]={ + [1931]={ [1]={ [1]={ limit={ @@ -41284,7 +41863,7 @@ return { [1]="base_rage_cost_+%" } }, - [1909]={ + [1932]={ [1]={ [1]={ limit={ @@ -41313,7 +41892,7 @@ return { [1]="mana_cost_+%_while_on_full_energy_shield" } }, - [1910]={ + [1933]={ [1]={ [1]={ [1]={ @@ -41354,7 +41933,7 @@ return { [1]="mana_cost_+%_when_on_low_life" } }, - [1911]={ + [1934]={ [1]={ [1]={ limit={ @@ -41370,7 +41949,7 @@ return { [1]="base_es_cost_+" } }, - [1912]={ + [1935]={ [1]={ [1]={ limit={ @@ -41386,7 +41965,7 @@ return { [1]="base_life_cost_+" } }, - [1913]={ + [1936]={ [1]={ [1]={ limit={ @@ -41402,7 +41981,7 @@ return { [1]="base_mana_cost_+" } }, - [1914]={ + [1937]={ [1]={ [1]={ limit={ @@ -41418,7 +41997,7 @@ return { [1]="skill_life_cost_+" } }, - [1915]={ + [1938]={ [1]={ [1]={ limit={ @@ -41434,7 +42013,7 @@ return { [1]="skill_mana_cost_+" } }, - [1916]={ + [1939]={ [1]={ [1]={ limit={ @@ -41450,7 +42029,7 @@ return { [1]="attacks_do_not_cost_mana" } }, - [1917]={ + [1940]={ [1]={ [1]={ limit={ @@ -41475,7 +42054,7 @@ return { [1]="skill_repeat_count" } }, - [1918]={ + [1941]={ [1]={ [1]={ limit={ @@ -41500,7 +42079,7 @@ return { [1]="spell_repeat_count" } }, - [1919]={ + [1942]={ [1]={ [1]={ limit={ @@ -41529,7 +42108,7 @@ return { [1]="skill_effect_duration_+%" } }, - [1920]={ + [1943]={ [1]={ [1]={ limit={ @@ -41558,7 +42137,7 @@ return { [1]="chaos_skill_effect_duration_+%" } }, - [1921]={ + [1944]={ [1]={ [1]={ limit={ @@ -41587,7 +42166,7 @@ return { [1]="skill_cooldown_-%" } }, - [1922]={ + [1945]={ [1]={ [1]={ limit={ @@ -41612,7 +42191,7 @@ return { [1]="avoid_interruption_while_casting_%" } }, - [1923]={ + [1946]={ [1]={ [1]={ limit={ @@ -41637,7 +42216,7 @@ return { [1]="attack_repeat_count" } }, - [1924]={ + [1947]={ [1]={ [1]={ [1]={ @@ -41670,7 +42249,7 @@ return { [1]="attacks_you_use_yourself_repeat_count" } }, - [1925]={ + [1948]={ [1]={ [1]={ limit={ @@ -41699,7 +42278,7 @@ return { [1]="attacks_you_use_yourself_attack_speed_+%_final_from_lioneye_glare" } }, - [1926]={ + [1949]={ [1]={ [1]={ limit={ @@ -41728,7 +42307,7 @@ return { [1]="base_stun_recovery_+%" } }, - [1927]={ + [1950]={ [1]={ [1]={ limit={ @@ -41757,7 +42336,7 @@ return { [1]="stun_recovery_+%_per_frenzy_charge" } }, - [1928]={ + [1951]={ [1]={ [1]={ limit={ @@ -41773,7 +42352,7 @@ return { [1]="while_using_sword_reduce_enemy_block_%" } }, - [1929]={ + [1952]={ [1]={ [1]={ limit={ @@ -41789,7 +42368,7 @@ return { [1]="bow_enemy_block_-%" } }, - [1930]={ + [1953]={ [1]={ [1]={ limit={ @@ -41805,7 +42384,7 @@ return { [1]="global_reduce_enemy_block_%" } }, - [1931]={ + [1954]={ [1]={ [1]={ limit={ @@ -41821,7 +42400,7 @@ return { [1]="reduce_enemy_dodge_%" } }, - [1932]={ + [1955]={ [1]={ [1]={ limit={ @@ -41837,7 +42416,7 @@ return { [1]="prevent_monster_heal" } }, - [1933]={ + [1956]={ [1]={ [1]={ limit={ @@ -41866,7 +42445,7 @@ return { [1]="prevent_monster_heal_duration_+%" } }, - [1934]={ + [1957]={ [1]={ [1]={ limit={ @@ -41895,7 +42474,7 @@ return { [1]="chest_trap_defuse_%" } }, - [1935]={ + [1958]={ [1]={ [1]={ [1]={ @@ -41915,7 +42494,7 @@ return { [1]="enemies_chill_as_unfrozen" } }, - [1936]={ + [1959]={ [1]={ [1]={ [1]={ @@ -41935,7 +42514,7 @@ return { [1]="enemy_shock_on_kill" } }, - [1937]={ + [1960]={ [1]={ [1]={ [1]={ @@ -41955,7 +42534,7 @@ return { [1]="shocks_enemies_that_hit_actor_while_actor_is_casting" } }, - [1938]={ + [1961]={ [1]={ [1]={ limit={ @@ -41971,7 +42550,7 @@ return { [1]="local_is_max_quality" } }, - [1939]={ + [1962]={ [1]={ [1]={ [1]={ @@ -41991,7 +42570,7 @@ return { [1]="local_quality_does_not_increase_defences" } }, - [1940]={ + [1963]={ [1]={ [1]={ limit={ @@ -42007,7 +42586,7 @@ return { [1]="local_quality_does_not_increase_physical_damage" } }, - [1941]={ + [1964]={ [1]={ [1]={ limit={ @@ -42023,7 +42602,7 @@ return { [1]="local_extra_socket" } }, - [1942]={ + [1965]={ [1]={ [1]={ limit={ @@ -42039,7 +42618,7 @@ return { [1]="base_cannot_evade" } }, - [1943]={ + [1966]={ [1]={ [1]={ limit={ @@ -42055,7 +42634,7 @@ return { [1]="local_disable_gem_experience_gain" } }, - [1944]={ + [1967]={ [1]={ [1]={ limit={ @@ -42084,7 +42663,7 @@ return { [1]="local_gem_experience_gain_+%" } }, - [1945]={ + [1968]={ [1]={ [1]={ limit={ @@ -42113,7 +42692,7 @@ return { [1]="local_quantity_of_sockets_+%" } }, - [1946]={ + [1969]={ [1]={ [1]={ limit={ @@ -42142,7 +42721,7 @@ return { [1]="local_connectivity_of_sockets_+%" } }, - [1947]={ + [1970]={ [1]={ [1]={ limit={ @@ -42171,7 +42750,7 @@ return { [1]="trap_duration_+%" } }, - [1948]={ + [1971]={ [1]={ [1]={ limit={ @@ -42200,7 +42779,7 @@ return { [1]="mine_duration_+%" } }, - [1949]={ + [1972]={ [1]={ [1]={ limit={ @@ -42229,7 +42808,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [1950]={ + [1973]={ [1]={ [1]={ limit={ @@ -42258,7 +42837,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [1951]={ + [1974]={ [1]={ [1]={ limit={ @@ -42287,7 +42866,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [1952]={ + [1975]={ [1]={ [1]={ limit={ @@ -42316,7 +42895,7 @@ return { [1]="mine_laying_speed_+%" } }, - [1953]={ + [1976]={ [1]={ [1]={ limit={ @@ -42345,7 +42924,7 @@ return { [1]="skill_internal_monster_responsiveness_+%" } }, - [1954]={ + [1977]={ [1]={ [1]={ limit={ @@ -42374,7 +42953,7 @@ return { [1]="skill_range_+%" } }, - [1955]={ + [1978]={ [1]={ [1]={ limit={ @@ -42390,7 +42969,7 @@ return { [1]="enemy_physical_damage_%_as_extra_fire_vs_you" } }, - [1956]={ + [1979]={ [1]={ [1]={ limit={ @@ -42406,7 +42985,7 @@ return { [1]="physical_damage_%_to_add_as_fire" } }, - [1957]={ + [1980]={ [1]={ [1]={ limit={ @@ -42422,7 +43001,7 @@ return { [1]="physical_damage_%_to_add_as_cold" } }, - [1958]={ + [1981]={ [1]={ [1]={ limit={ @@ -42438,7 +43017,7 @@ return { [1]="physical_damage_%_to_add_as_lightning" } }, - [1959]={ + [1982]={ [1]={ [1]={ limit={ @@ -42454,7 +43033,7 @@ return { [1]="physical_damage_%_to_add_as_chaos" } }, - [1960]={ + [1983]={ [1]={ [1]={ limit={ @@ -42470,7 +43049,7 @@ return { [1]="lightning_damage_%_to_add_as_fire" } }, - [1961]={ + [1984]={ [1]={ [1]={ limit={ @@ -42486,7 +43065,7 @@ return { [1]="lightning_damage_%_to_add_as_cold" } }, - [1962]={ + [1985]={ [1]={ [1]={ limit={ @@ -42502,7 +43081,7 @@ return { [1]="lightning_damage_%_to_add_as_chaos" } }, - [1963]={ + [1986]={ [1]={ [1]={ limit={ @@ -42518,7 +43097,7 @@ return { [1]="cold_damage_%_to_add_as_fire" } }, - [1964]={ + [1987]={ [1]={ [1]={ limit={ @@ -42534,7 +43113,7 @@ return { [1]="cold_damage_%_to_add_as_chaos" } }, - [1965]={ + [1988]={ [1]={ [1]={ limit={ @@ -42550,7 +43129,7 @@ return { [1]="fire_damage_%_to_add_as_chaos" } }, - [1966]={ + [1989]={ [1]={ [1]={ limit={ @@ -42566,7 +43145,7 @@ return { [1]="elemental_damage_%_to_add_as_chaos" } }, - [1967]={ + [1990]={ [1]={ [1]={ [1]={ @@ -42586,7 +43165,7 @@ return { [1]="life_degeneration_%_per_minute_not_in_grace" } }, - [1968]={ + [1991]={ [1]={ [1]={ [1]={ @@ -42619,7 +43198,7 @@ return { [1]="life_regeneration_rate_per_minute_%" } }, - [1969]={ + [1992]={ [1]={ [1]={ [1]={ @@ -42643,7 +43222,7 @@ return { [1]="life_regeneration_rate_per_minute_%_when_on_low_life" } }, - [1970]={ + [1993]={ [1]={ [1]={ [1]={ @@ -42663,7 +43242,7 @@ return { [1]="base_chaos_damage_%_of_maximum_life_taken_per_minute" } }, - [1971]={ + [1994]={ [1]={ [1]={ [1]={ @@ -42683,7 +43262,7 @@ return { [1]="base_chaos_damage_taken_per_minute" } }, - [1972]={ + [1995]={ [1]={ [1]={ limit={ @@ -42716,7 +43295,7 @@ return { [1]="chaos_damage_taken_over_time_+%" } }, - [1973]={ + [1996]={ [1]={ [1]={ limit={ @@ -42732,7 +43311,7 @@ return { [1]="display_mana_cost_reduction_%" } }, - [1974]={ + [1997]={ [1]={ [1]={ limit={ @@ -42748,7 +43327,7 @@ return { [1]="display_minion_maximum_life" } }, - [1975]={ + [1998]={ [1]={ [1]={ [1]={ @@ -42768,7 +43347,7 @@ return { [1]="global_knockback_on_crit" } }, - [1976]={ + [1999]={ [1]={ [1]={ [1]={ @@ -42788,7 +43367,7 @@ return { [1]="knockback_on_crit_with_bow" } }, - [1977]={ + [2000]={ [1]={ [1]={ [1]={ @@ -42812,7 +43391,7 @@ return { [1]="knockback_on_crit_with_staff" } }, - [1978]={ + [2001]={ [1]={ [1]={ [1]={ @@ -42832,7 +43411,7 @@ return { [1]="knockback_on_crit_with_wand" } }, - [1979]={ + [2002]={ [1]={ [1]={ limit={ @@ -42848,7 +43427,7 @@ return { [1]="base_physical_damage_%_to_convert_to_fire" } }, - [1980]={ + [2003]={ [1]={ [1]={ limit={ @@ -42864,7 +43443,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_fire" } }, - [1981]={ + [2004]={ [1]={ [1]={ limit={ @@ -42880,7 +43459,7 @@ return { [1]="base_physical_damage_%_to_convert_to_cold" } }, - [1982]={ + [2005]={ [1]={ [1]={ limit={ @@ -42896,7 +43475,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_cold" } }, - [1983]={ + [2006]={ [1]={ [1]={ limit={ @@ -42912,7 +43491,7 @@ return { [1]="base_physical_damage_%_to_convert_to_lightning" } }, - [1984]={ + [2007]={ [1]={ [1]={ limit={ @@ -42928,7 +43507,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_lightning" } }, - [1985]={ + [2008]={ [1]={ [1]={ limit={ @@ -42944,7 +43523,7 @@ return { [1]="base_convert_%_physical_damage_to_random_element" } }, - [1986]={ + [2009]={ [1]={ [1]={ limit={ @@ -42960,7 +43539,7 @@ return { [1]="base_physical_damage_%_to_convert_to_chaos" } }, - [1987]={ + [2010]={ [1]={ [1]={ limit={ @@ -42976,7 +43555,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_chaos" } }, - [1988]={ + [2011]={ [1]={ [1]={ limit={ @@ -42992,7 +43571,7 @@ return { [1]="base_lightning_damage_%_to_convert_to_fire" } }, - [1989]={ + [2012]={ [1]={ [1]={ limit={ @@ -43008,7 +43587,7 @@ return { [1]="base_lightning_damage_%_to_convert_to_cold" } }, - [1990]={ + [2013]={ [1]={ [1]={ limit={ @@ -43024,7 +43603,7 @@ return { [1]="base_lightning_damage_%_to_convert_to_chaos" } }, - [1991]={ + [2014]={ [1]={ [1]={ [1]={ @@ -43044,7 +43623,7 @@ return { [1]="base_lightning_damage_%_to_convert_to_chaos_60%_value" } }, - [1992]={ + [2015]={ [1]={ [1]={ limit={ @@ -43060,7 +43639,7 @@ return { [1]="base_cold_damage_%_to_convert_to_fire" } }, - [1993]={ + [2016]={ [1]={ [1]={ limit={ @@ -43076,7 +43655,7 @@ return { [1]="base_cold_damage_%_to_convert_to_chaos" } }, - [1994]={ + [2017]={ [1]={ [1]={ limit={ @@ -43092,7 +43671,7 @@ return { [1]="base_fire_damage_%_to_convert_to_chaos" } }, - [1995]={ + [2018]={ [1]={ [1]={ [1]={ @@ -43112,7 +43691,7 @@ return { [1]="base_fire_damage_%_to_convert_to_chaos_60%_value" } }, - [1996]={ + [2019]={ [1]={ [1]={ limit={ @@ -43141,7 +43720,7 @@ return { [1]="shield_maximum_energy_shield_+%" } }, - [1997]={ + [2020]={ [1]={ [1]={ limit={ @@ -43170,7 +43749,7 @@ return { [1]="minion_damage_+%" } }, - [1998]={ + [2021]={ [1]={ [1]={ [1]={ @@ -43207,7 +43786,7 @@ return { [1]="minion_damage_+%_if_have_used_a_minion_skill_recently" } }, - [1999]={ + [2022]={ [1]={ [1]={ limit={ @@ -43236,7 +43815,7 @@ return { [1]="virtual_minion_damage_+%" } }, - [2000]={ + [2023]={ [1]={ [1]={ limit={ @@ -43252,7 +43831,7 @@ return { [1]="minion_chance_to_deal_double_damage_%_per_fortification" } }, - [2001]={ + [2024]={ [1]={ [1]={ limit={ @@ -43281,7 +43860,7 @@ return { [1]="minion_damage_+%_per_fortification" } }, - [2002]={ + [2025]={ [1]={ [1]={ limit={ @@ -43310,7 +43889,7 @@ return { [1]="minion_damage_+%_per_5_dex" } }, - [2003]={ + [2026]={ [1]={ [1]={ limit={ @@ -43339,7 +43918,7 @@ return { [1]="mana_regeneration_rate_+%_per_power_charge" } }, - [2004]={ + [2027]={ [1]={ [1]={ limit={ @@ -43368,7 +43947,7 @@ return { [1]="elemental_damage_+%" } }, - [2005]={ + [2028]={ [1]={ [1]={ limit={ @@ -43397,7 +43976,7 @@ return { [1]="melee_physical_damage_+%" } }, - [2006]={ + [2029]={ [1]={ [1]={ limit={ @@ -43426,7 +44005,7 @@ return { [1]="melee_fire_damage_+%" } }, - [2007]={ + [2030]={ [1]={ [1]={ limit={ @@ -43455,7 +44034,7 @@ return { [1]="melee_cold_damage_+%" } }, - [2008]={ + [2031]={ [1]={ [1]={ limit={ @@ -43484,7 +44063,7 @@ return { [1]="melee_physical_damage_+%_while_holding_shield" } }, - [2009]={ + [2032]={ [1]={ [1]={ limit={ @@ -43513,7 +44092,7 @@ return { [1]="melee_fire_damage_+%_while_holding_shield" } }, - [2010]={ + [2033]={ [1]={ [1]={ limit={ @@ -43542,7 +44121,7 @@ return { [1]="melee_cold_damage_+%_while_holding_shield" } }, - [2011]={ + [2034]={ [1]={ [1]={ limit={ @@ -43571,7 +44150,7 @@ return { [1]="bow_physical_damage_+%_while_holding_shield" } }, - [2012]={ + [2035]={ [1]={ [1]={ [1]={ @@ -43591,7 +44170,7 @@ return { [1]="maximum_block_%" } }, - [2013]={ + [2036]={ [1]={ [1]={ [1]={ @@ -43611,7 +44190,7 @@ return { [1]="base_maximum_spell_block_%" } }, - [2014]={ + [2037]={ [1]={ [1]={ [1]={ @@ -43631,7 +44210,7 @@ return { [1]="maximum_spell_block_chance_per_50_strength" } }, - [2015]={ + [2038]={ [1]={ [1]={ limit={ @@ -43660,7 +44239,7 @@ return { [1]="shield_evasion_rating_+%" } }, - [2016]={ + [2039]={ [1]={ [1]={ limit={ @@ -43689,7 +44268,7 @@ return { [1]="shield_physical_damage_reduction_rating_+%" } }, - [2017]={ + [2040]={ [1]={ [1]={ limit={ @@ -43705,7 +44284,7 @@ return { [1]="armour_from_shield_doubled" } }, - [2018]={ + [2041]={ [1]={ [1]={ [1]={ @@ -43742,7 +44321,7 @@ return { [1]="shield_armour_+%" } }, - [2019]={ + [2042]={ [1]={ [1]={ [1]={ @@ -43775,7 +44354,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [2020]={ + [2043]={ [1]={ [1]={ limit={ @@ -43804,7 +44383,7 @@ return { [1]="projectile_damage_+%" } }, - [2021]={ + [2044]={ [1]={ [1]={ limit={ @@ -43833,7 +44412,7 @@ return { [1]="projectile_attack_damage_+%" } }, - [2022]={ + [2045]={ [1]={ [1]={ limit={ @@ -43862,7 +44441,7 @@ return { [1]="ranged_weapon_physical_damage_+%" } }, - [2023]={ + [2046]={ [1]={ [1]={ [1]={ @@ -43899,7 +44478,7 @@ return { [1]="cast_speed_+%_when_on_low_life" } }, - [2024]={ + [2047]={ [1]={ [1]={ limit={ @@ -43928,7 +44507,7 @@ return { [1]="cast_speed_+%_when_on_full_life" } }, - [2025]={ + [2048]={ [1]={ [1]={ limit={ @@ -43957,7 +44536,7 @@ return { [1]="cast_speed_+%_per_frenzy_charge" } }, - [2026]={ + [2049]={ [1]={ [1]={ limit={ @@ -43986,7 +44565,7 @@ return { [1]="knockback_distance_+%" } }, - [2027]={ + [2050]={ [1]={ [1]={ limit={ @@ -44015,7 +44594,7 @@ return { [1]="stun_duration_+%" } }, - [2028]={ + [2051]={ [1]={ [1]={ limit={ @@ -44031,7 +44610,7 @@ return { [1]="sword_accuracy_rating" } }, - [2029]={ + [2052]={ [1]={ [1]={ limit={ @@ -44047,7 +44626,7 @@ return { [1]="bow_accuracy_rating" } }, - [2030]={ + [2053]={ [1]={ [1]={ [1]={ @@ -44067,7 +44646,7 @@ return { [1]="dagger_accuracy_rating" } }, - [2031]={ + [2054]={ [1]={ [1]={ limit={ @@ -44083,7 +44662,7 @@ return { [1]="axe_accuracy_rating" } }, - [2032]={ + [2055]={ [1]={ [1]={ limit={ @@ -44099,7 +44678,7 @@ return { [1]="claw_accuracy_rating" } }, - [2033]={ + [2056]={ [1]={ [1]={ [1]={ @@ -44119,7 +44698,7 @@ return { [1]="staff_accuracy_rating" } }, - [2034]={ + [2057]={ [1]={ [1]={ limit={ @@ -44135,7 +44714,7 @@ return { [1]="mace_accuracy_rating" } }, - [2035]={ + [2058]={ [1]={ [1]={ limit={ @@ -44151,7 +44730,7 @@ return { [1]="wand_accuracy_rating" } }, - [2036]={ + [2059]={ [1]={ [1]={ limit={ @@ -44180,7 +44759,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [2037]={ + [2060]={ [1]={ [1]={ limit={ @@ -44209,7 +44788,7 @@ return { [1]="base_killed_monster_dropped_item_quantity_+%" } }, - [2038]={ + [2061]={ [1]={ [1]={ limit={ @@ -44225,7 +44804,7 @@ return { [1]="skill_effect_duration_+%_per_10_strength" } }, - [2039]={ + [2062]={ [1]={ [1]={ limit={ @@ -44241,7 +44820,7 @@ return { [1]="gain_no_inherent_bonus_from_dexterity" } }, - [2040]={ + [2063]={ [1]={ [1]={ limit={ @@ -44257,7 +44836,7 @@ return { [1]="gain_no_inherent_bonus_from_intelligence" } }, - [2041]={ + [2064]={ [1]={ [1]={ limit={ @@ -44273,7 +44852,7 @@ return { [1]="gain_no_inherent_bonus_from_strength" } }, - [2042]={ + [2065]={ [1]={ [1]={ limit={ @@ -44289,7 +44868,7 @@ return { [1]="gain_no_maximum_life_from_strength" } }, - [2043]={ + [2066]={ [1]={ [1]={ limit={ @@ -44305,7 +44884,7 @@ return { [1]="gain_no_maximum_mana_from_intelligence" } }, - [2044]={ + [2067]={ [1]={ [1]={ limit={ @@ -44321,7 +44900,7 @@ return { [1]="X_accuracy_per_2_intelligence" } }, - [2045]={ + [2068]={ [1]={ [1]={ limit={ @@ -44337,7 +44916,7 @@ return { [1]="X_life_per_4_dexterity" } }, - [2046]={ + [2069]={ [1]={ [1]={ limit={ @@ -44353,7 +44932,7 @@ return { [1]="X_mana_per_4_strength" } }, - [2047]={ + [2070]={ [1]={ [1]={ limit={ @@ -44369,7 +44948,7 @@ return { [1]="x_to_maximum_life_per_2_intelligence" } }, - [2048]={ + [2071]={ [1]={ [1]={ limit={ @@ -44385,7 +44964,7 @@ return { [1]="local_accuracy_rating" } }, - [2049]={ + [2072]={ [1]={ [1]={ limit={ @@ -44414,7 +44993,7 @@ return { [1]="local_accuracy_rating_+%" } }, - [2050]={ + [2073]={ [1]={ [1]={ [1]={ @@ -44447,7 +45026,7 @@ return { [1]="base_chance_to_ignite_%" } }, - [2051]={ + [2074]={ [1]={ [1]={ [1]={ @@ -44480,7 +45059,7 @@ return { [1]="chance_to_scorch_%" } }, - [2052]={ + [2075]={ [1]={ [1]={ limit={ @@ -44509,7 +45088,7 @@ return { [1]="chieftain_burning_damage_+%_final" } }, - [2053]={ + [2076]={ [1]={ [1]={ [1]={ @@ -44576,7 +45155,7 @@ return { [2]="always_freeze" } }, - [2054]={ + [2077]={ [1]={ [1]={ [1]={ @@ -44609,7 +45188,7 @@ return { [1]="chance_to_inflict_frostburn_%" } }, - [2055]={ + [2078]={ [1]={ [1]={ limit={ @@ -44625,7 +45204,7 @@ return { [1]="critical_strikes_do_not_always_freeze" } }, - [2056]={ + [2079]={ [1]={ [1]={ [1]={ @@ -44645,7 +45224,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [2057]={ + [2080]={ [1]={ [1]={ [1]={ @@ -44678,7 +45257,7 @@ return { [1]="base_chance_to_shock_%" } }, - [2058]={ + [2081]={ [1]={ [1]={ [1]={ @@ -44711,7 +45290,7 @@ return { [1]="chance_to_inflict_sapped_%" } }, - [2059]={ + [2082]={ [1]={ [1]={ limit={ @@ -44740,7 +45319,7 @@ return { [1]="area_damage_+%" } }, - [2060]={ + [2083]={ [1]={ [1]={ limit={ @@ -44756,7 +45335,7 @@ return { [1]="wand_physical_damage_%_to_add_as_fire" } }, - [2061]={ + [2084]={ [1]={ [1]={ limit={ @@ -44772,7 +45351,7 @@ return { [1]="wand_physical_damage_%_to_add_as_cold" } }, - [2062]={ + [2085]={ [1]={ [1]={ limit={ @@ -44788,7 +45367,7 @@ return { [1]="wand_physical_damage_%_to_add_as_lightning" } }, - [2063]={ + [2086]={ [1]={ [1]={ [1]={ @@ -44808,7 +45387,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [2064]={ + [2087]={ [1]={ [1]={ [1]={ @@ -44828,7 +45407,7 @@ return { [1]="stuns_have_culling_strike" } }, - [2065]={ + [2088]={ [1]={ [1]={ [1]={ @@ -44848,7 +45427,7 @@ return { [1]="local_hit_causes_monster_flee_%" } }, - [2066]={ + [2089]={ [1]={ [1]={ [1]={ @@ -44868,7 +45447,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [2067]={ + [2090]={ [1]={ [1]={ limit={ @@ -44884,7 +45463,7 @@ return { [1]="local_always_hit" } }, - [2068]={ + [2091]={ [1]={ [1]={ limit={ @@ -44900,7 +45479,7 @@ return { [1]="global_always_hit" } }, - [2069]={ + [2092]={ [1]={ [1]={ limit={ @@ -44916,7 +45495,7 @@ return { [1]="always_crit" } }, - [2070]={ + [2093]={ [1]={ [1]={ limit={ @@ -44945,7 +45524,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [2071]={ + [2094]={ [1]={ [1]={ limit={ @@ -44974,7 +45553,7 @@ return { [1]="attack_speed_+%_per_frenzy_charge" } }, - [2072]={ + [2095]={ [1]={ [1]={ limit={ @@ -45007,7 +45586,7 @@ return { [1]="attack_and_cast_speed_+%_per_frenzy_charge" } }, - [2073]={ + [2096]={ [1]={ [1]={ limit={ @@ -45036,7 +45615,7 @@ return { [1]="base_attack_speed_+%_per_frenzy_charge" } }, - [2074]={ + [2097]={ [1]={ [1]={ limit={ @@ -45065,7 +45644,7 @@ return { [1]="accuracy_rating_+%_per_frenzy_charge" } }, - [2075]={ + [2098]={ [1]={ [1]={ limit={ @@ -45098,7 +45677,7 @@ return { [1]="frenzy_charge_duration_+%_per_frenzy_charge" } }, - [2076]={ + [2099]={ [1]={ [1]={ [1]={ @@ -45118,7 +45697,7 @@ return { [1]="attacks_poison_while_at_max_frenzy_charges" } }, - [2077]={ + [2100]={ [1]={ [1]={ [1]={ @@ -45151,7 +45730,7 @@ return { [1]="attacks_chance_to_poison_%_on_max_frenzy_charges" } }, - [2078]={ + [2101]={ [1]={ [1]={ limit={ @@ -45167,7 +45746,7 @@ return { [1]="critical_strike_multiplier_+_while_have_any_frenzy_charges" } }, - [2079]={ + [2102]={ [1]={ [1]={ limit={ @@ -45183,7 +45762,7 @@ return { [1]="global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges" } }, - [2080]={ + [2103]={ [1]={ [1]={ limit={ @@ -45212,7 +45791,7 @@ return { [1]="skill_area_of_effect_+%_while_no_frenzy_charges" } }, - [2081]={ + [2104]={ [1]={ [1]={ limit={ @@ -45241,7 +45820,7 @@ return { [1]="base_actor_scale_+%" } }, - [2082]={ + [2105]={ [1]={ [1]={ limit={ @@ -45257,7 +45836,7 @@ return { [1]="add_power_charge_on_minion_death" } }, - [2083]={ + [2106]={ [1]={ [1]={ limit={ @@ -45286,7 +45865,7 @@ return { [1]="flask_life_to_recover_+%" } }, - [2084]={ + [2107]={ [1]={ [1]={ limit={ @@ -45315,7 +45894,7 @@ return { [1]="flask_mana_to_recover_+%" } }, - [2085]={ + [2108]={ [1]={ [1]={ limit={ @@ -45331,7 +45910,7 @@ return { [1]="flask_recovery_speed_+%" } }, - [2086]={ + [2109]={ [1]={ [1]={ limit={ @@ -45399,7 +45978,7 @@ return { [2]="gain_flask_charge_when_crit_amount" } }, - [2087]={ + [2110]={ [1]={ [1]={ limit={ @@ -45428,7 +46007,7 @@ return { [1]="weapon_fire_damage_+%" } }, - [2088]={ + [2111]={ [1]={ [1]={ limit={ @@ -45457,7 +46036,7 @@ return { [1]="weapon_cold_damage_+%" } }, - [2089]={ + [2112]={ [1]={ [1]={ limit={ @@ -45486,7 +46065,7 @@ return { [1]="weapon_lightning_damage_+%" } }, - [2090]={ + [2113]={ [1]={ [1]={ limit={ @@ -45515,7 +46094,7 @@ return { [1]="weapon_chaos_damage_+%" } }, - [2091]={ + [2114]={ [1]={ [1]={ limit={ @@ -45531,7 +46110,7 @@ return { [1]="spell_elemental_damage_+%" } }, - [2092]={ + [2115]={ [1]={ [1]={ limit={ @@ -45547,7 +46126,7 @@ return { [1]="global_added_chaos_damage_%_of_ward" } }, - [2093]={ + [2116]={ [1]={ [1]={ limit={ @@ -45568,7 +46147,7 @@ return { [2]="attack_maximum_added_physical_damage_with_axes" } }, - [2094]={ + [2117]={ [1]={ [1]={ limit={ @@ -45589,7 +46168,7 @@ return { [2]="attack_maximum_added_physical_damage_with_bow" } }, - [2095]={ + [2118]={ [1]={ [1]={ limit={ @@ -45610,7 +46189,7 @@ return { [2]="attack_maximum_added_physical_damage_with_claws" } }, - [2096]={ + [2119]={ [1]={ [1]={ [1]={ @@ -45635,7 +46214,7 @@ return { [2]="attack_maximum_added_physical_damage_with_daggers" } }, - [2097]={ + [2120]={ [1]={ [1]={ limit={ @@ -45656,7 +46235,7 @@ return { [2]="attack_maximum_added_physical_damage_with_maces" } }, - [2098]={ + [2121]={ [1]={ [1]={ [1]={ @@ -45681,7 +46260,7 @@ return { [2]="attack_maximum_added_physical_damage_with_staves" } }, - [2099]={ + [2122]={ [1]={ [1]={ limit={ @@ -45702,7 +46281,7 @@ return { [2]="attack_maximum_added_physical_damage_with_swords" } }, - [2100]={ + [2123]={ [1]={ [1]={ limit={ @@ -45723,7 +46302,7 @@ return { [2]="attack_maximum_added_physical_damage_with_wands" } }, - [2101]={ + [2124]={ [1]={ [1]={ [1]={ @@ -45748,7 +46327,7 @@ return { [2]="attack_maximum_added_physical_damage_while_unarmed" } }, - [2102]={ + [2125]={ [1]={ [1]={ limit={ @@ -45769,7 +46348,7 @@ return { [2]="attack_maximum_added_physical_damage_while_holding_a_shield" } }, - [2103]={ + [2126]={ [1]={ [1]={ limit={ @@ -45790,7 +46369,7 @@ return { [2]="attack_maximum_added_fire_damage_with_axes" } }, - [2104]={ + [2127]={ [1]={ [1]={ limit={ @@ -45811,7 +46390,7 @@ return { [2]="attack_maximum_added_fire_damage_with_bow" } }, - [2105]={ + [2128]={ [1]={ [1]={ limit={ @@ -45832,7 +46411,7 @@ return { [2]="attack_maximum_added_fire_damage_with_claws" } }, - [2106]={ + [2129]={ [1]={ [1]={ [1]={ @@ -45857,7 +46436,7 @@ return { [2]="attack_maximum_added_fire_damage_with_daggers" } }, - [2107]={ + [2130]={ [1]={ [1]={ limit={ @@ -45878,7 +46457,7 @@ return { [2]="attack_maximum_added_fire_damage_with_maces" } }, - [2108]={ + [2131]={ [1]={ [1]={ [1]={ @@ -45903,7 +46482,7 @@ return { [2]="attack_maximum_added_fire_damage_with_staves" } }, - [2109]={ + [2132]={ [1]={ [1]={ limit={ @@ -45924,7 +46503,7 @@ return { [2]="attack_maximum_added_fire_damage_with_swords" } }, - [2110]={ + [2133]={ [1]={ [1]={ limit={ @@ -45945,7 +46524,7 @@ return { [2]="attack_maximum_added_fire_damage_with_wand" } }, - [2111]={ + [2134]={ [1]={ [1]={ limit={ @@ -45966,7 +46545,7 @@ return { [2]="attack_maximum_added_cold_damage_with_axes" } }, - [2112]={ + [2135]={ [1]={ [1]={ limit={ @@ -45987,7 +46566,7 @@ return { [2]="attack_maximum_added_cold_damage_with_bows" } }, - [2113]={ + [2136]={ [1]={ [1]={ limit={ @@ -46008,7 +46587,7 @@ return { [2]="attack_maximum_added_cold_damage_with_claws" } }, - [2114]={ + [2137]={ [1]={ [1]={ [1]={ @@ -46033,7 +46612,7 @@ return { [2]="attack_maximum_added_cold_damage_with_daggers" } }, - [2115]={ + [2138]={ [1]={ [1]={ limit={ @@ -46054,7 +46633,7 @@ return { [2]="attack_maximum_added_cold_damage_with_maces" } }, - [2116]={ + [2139]={ [1]={ [1]={ [1]={ @@ -46079,7 +46658,7 @@ return { [2]="attack_maximum_added_cold_damage_with_staves" } }, - [2117]={ + [2140]={ [1]={ [1]={ limit={ @@ -46100,7 +46679,7 @@ return { [2]="attack_maximum_added_cold_damage_with_swords" } }, - [2118]={ + [2141]={ [1]={ [1]={ limit={ @@ -46121,7 +46700,7 @@ return { [2]="attack_maximum_added_cold_damage_with_wand" } }, - [2119]={ + [2142]={ [1]={ [1]={ limit={ @@ -46142,7 +46721,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_axes" } }, - [2120]={ + [2143]={ [1]={ [1]={ limit={ @@ -46163,7 +46742,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_bows" } }, - [2121]={ + [2144]={ [1]={ [1]={ limit={ @@ -46184,7 +46763,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_claws" } }, - [2122]={ + [2145]={ [1]={ [1]={ [1]={ @@ -46209,7 +46788,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_daggers" } }, - [2123]={ + [2146]={ [1]={ [1]={ limit={ @@ -46230,7 +46809,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_maces" } }, - [2124]={ + [2147]={ [1]={ [1]={ [1]={ @@ -46255,7 +46834,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_staves" } }, - [2125]={ + [2148]={ [1]={ [1]={ limit={ @@ -46276,7 +46855,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_swords" } }, - [2126]={ + [2149]={ [1]={ [1]={ limit={ @@ -46297,7 +46876,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_wand" } }, - [2127]={ + [2150]={ [1]={ [1]={ limit={ @@ -46318,7 +46897,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_bows" } }, - [2128]={ + [2151]={ [1]={ [1]={ limit={ @@ -46339,7 +46918,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_claws" } }, - [2129]={ + [2152]={ [1]={ [1]={ [1]={ @@ -46364,7 +46943,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_daggers" } }, - [2130]={ + [2153]={ [1]={ [1]={ limit={ @@ -46385,7 +46964,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_dual_wielding" } }, - [2131]={ + [2154]={ [1]={ [1]={ limit={ @@ -46406,7 +46985,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_holding_a_shield" } }, - [2132]={ + [2155]={ [1]={ [1]={ limit={ @@ -46427,7 +47006,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon" } }, - [2133]={ + [2156]={ [1]={ [1]={ limit={ @@ -46448,7 +47027,7 @@ return { [2]="spell_maximum_added_cold_damage_while_dual_wielding" } }, - [2134]={ + [2157]={ [1]={ [1]={ limit={ @@ -46469,7 +47048,7 @@ return { [2]="spell_maximum_added_cold_damage_while_holding_a_shield" } }, - [2135]={ + [2158]={ [1]={ [1]={ limit={ @@ -46490,7 +47069,7 @@ return { [2]="spell_maximum_added_cold_damage_while_wielding_two_handed_weapon" } }, - [2136]={ + [2159]={ [1]={ [1]={ limit={ @@ -46511,7 +47090,7 @@ return { [2]="spell_maximum_added_fire_damage_while_dual_wielding" } }, - [2137]={ + [2160]={ [1]={ [1]={ limit={ @@ -46532,7 +47111,7 @@ return { [2]="spell_maximum_added_fire_damage_while_holding_a_shield" } }, - [2138]={ + [2161]={ [1]={ [1]={ limit={ @@ -46553,7 +47132,7 @@ return { [2]="spell_maximum_added_fire_damage_while_wielding_two_handed_weapon" } }, - [2139]={ + [2162]={ [1]={ [1]={ limit={ @@ -46574,7 +47153,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_dual_wielding" } }, - [2140]={ + [2163]={ [1]={ [1]={ limit={ @@ -46595,7 +47174,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_holding_a_shield" } }, - [2141]={ + [2164]={ [1]={ [1]={ limit={ @@ -46616,7 +47195,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon" } }, - [2142]={ + [2165]={ [1]={ [1]={ limit={ @@ -46637,7 +47216,7 @@ return { [2]="spell_maximum_added_physical_damage_while_dual_wielding" } }, - [2143]={ + [2166]={ [1]={ [1]={ limit={ @@ -46658,7 +47237,7 @@ return { [2]="spell_maximum_added_physical_damage_while_holding_a_shield" } }, - [2144]={ + [2167]={ [1]={ [1]={ limit={ @@ -46679,7 +47258,7 @@ return { [2]="spell_maximum_added_physical_damage_while_wielding_two_handed_weapon" } }, - [2145]={ + [2168]={ [1]={ [1]={ limit={ @@ -46708,7 +47287,7 @@ return { [1]="wand_elemental_damage_+%" } }, - [2146]={ + [2169]={ [1]={ [1]={ [1]={ @@ -46745,7 +47324,7 @@ return { [1]="staff_elemental_damage_+%" } }, - [2147]={ + [2170]={ [1]={ [1]={ limit={ @@ -46774,7 +47353,7 @@ return { [1]="mace_elemental_damage_+%" } }, - [2148]={ + [2171]={ [1]={ [1]={ limit={ @@ -46799,7 +47378,7 @@ return { [1]="chance_to_gain_endurance_charge_on_block_%" } }, - [2149]={ + [2172]={ [1]={ [1]={ limit={ @@ -46828,7 +47407,7 @@ return { [1]="endurance_charge_duration_+%" } }, - [2150]={ + [2173]={ [1]={ [1]={ limit={ @@ -46844,7 +47423,7 @@ return { [1]="add_frenzy_charge_on_enemy_block" } }, - [2151]={ + [2174]={ [1]={ [1]={ limit={ @@ -46873,7 +47452,7 @@ return { [1]="base_frenzy_charge_duration_+%" } }, - [2152]={ + [2175]={ [1]={ [1]={ limit={ @@ -46898,7 +47477,7 @@ return { [1]="chance_to_gain_power_charge_when_block_%" } }, - [2153]={ + [2176]={ [1]={ [1]={ limit={ @@ -46914,7 +47493,7 @@ return { [1]="skill_area_of_effect_+%_per_power_charge" } }, - [2154]={ + [2177]={ [1]={ [1]={ limit={ @@ -46930,7 +47509,7 @@ return { [1]="skill_area_of_effect_+%_per_power_charge_up_to_50%" } }, - [2155]={ + [2178]={ [1]={ [1]={ limit={ @@ -46955,7 +47534,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [2156]={ + [2179]={ [1]={ [1]={ limit={ @@ -46980,7 +47559,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [2157]={ + [2180]={ [1]={ [1]={ limit={ @@ -46996,7 +47575,7 @@ return { [1]="damage_over_time_+%_per_frenzy_charge" } }, - [2158]={ + [2181]={ [1]={ [1]={ limit={ @@ -47012,7 +47591,7 @@ return { [1]="damage_over_time_+%_per_power_charge" } }, - [2159]={ + [2182]={ [1]={ [1]={ limit={ @@ -47028,7 +47607,7 @@ return { [1]="damage_over_time_+%_while_dual_wielding" } }, - [2160]={ + [2183]={ [1]={ [1]={ limit={ @@ -47044,7 +47623,7 @@ return { [1]="damage_over_time_+%_while_holding_a_shield" } }, - [2161]={ + [2184]={ [1]={ [1]={ limit={ @@ -47060,7 +47639,7 @@ return { [1]="damage_over_time_+%_while_wielding_two_handed_weapon" } }, - [2162]={ + [2185]={ [1]={ [1]={ limit={ @@ -47076,7 +47655,7 @@ return { [1]="elemental_damage_+%_per_frenzy_charge" } }, - [2163]={ + [2186]={ [1]={ [1]={ limit={ @@ -47105,7 +47684,7 @@ return { [1]="physical_damage_per_endurance_charge_+%" } }, - [2164]={ + [2187]={ [1]={ [1]={ limit={ @@ -47121,7 +47700,7 @@ return { [1]="spell_damage_+%_per_power_charge" } }, - [2165]={ + [2188]={ [1]={ [1]={ limit={ @@ -47137,7 +47716,7 @@ return { [1]="wand_damage_+%_per_power_charge" } }, - [2166]={ + [2189]={ [1]={ [1]={ limit={ @@ -47166,7 +47745,7 @@ return { [1]="power_charge_duration_+%" } }, - [2167]={ + [2190]={ [1]={ [1]={ limit={ @@ -47182,7 +47761,7 @@ return { [1]="add_power_charge_when_kill_shocked_enemy" } }, - [2168]={ + [2191]={ [1]={ [1]={ limit={ @@ -47198,7 +47777,7 @@ return { [1]="buff_effect_on_self_+%" } }, - [2169]={ + [2192]={ [1]={ [1]={ limit={ @@ -47227,7 +47806,7 @@ return { [1]="minions_have_non_curse_aura_effect_+%_from_parent_skills" } }, - [2170]={ + [2193]={ [1]={ [1]={ limit={ @@ -47243,7 +47822,7 @@ return { [1]="movement_velocity_+%_when_on_shocked_ground" } }, - [2171]={ + [2194]={ [1]={ [1]={ limit={ @@ -47259,7 +47838,7 @@ return { [1]="damage_+%_when_on_burning_ground" } }, - [2172]={ + [2195]={ [1]={ [1]={ [1]={ @@ -47279,7 +47858,7 @@ return { [1]="life_regeneration_rate_per_minute_%_when_on_chilled_ground" } }, - [2173]={ + [2196]={ [1]={ [1]={ [1]={ @@ -47316,7 +47895,7 @@ return { [1]="chilled_ground_effect_on_self_+%" } }, - [2174]={ + [2197]={ [1]={ [1]={ limit={ @@ -47345,7 +47924,7 @@ return { [1]="burning_ground_effect_on_self_+%" } }, - [2175]={ + [2198]={ [1]={ [1]={ limit={ @@ -47374,7 +47953,7 @@ return { [1]="shocked_ground_effect_on_self_+%" } }, - [2176]={ + [2199]={ [1]={ [1]={ limit={ @@ -47403,7 +47982,7 @@ return { [1]="desecrated_ground_effect_on_self_+%" } }, - [2177]={ + [2200]={ [1]={ [1]={ limit={ @@ -47419,7 +47998,7 @@ return { [1]="add_power_charge_when_interrupted_while_casting" } }, - [2178]={ + [2201]={ [1]={ [1]={ limit={ @@ -47435,7 +48014,7 @@ return { [1]="share_endurance_charges_with_party_within_distance" } }, - [2179]={ + [2202]={ [1]={ [1]={ limit={ @@ -47451,7 +48030,7 @@ return { [1]="share_frenzy_charges_with_party_within_distance" } }, - [2180]={ + [2203]={ [1]={ [1]={ limit={ @@ -47467,7 +48046,7 @@ return { [1]="share_power_charges_with_party_within_distance" } }, - [2181]={ + [2204]={ [1]={ [1]={ limit={ @@ -47496,7 +48075,7 @@ return { [1]="life_leech_speed_+%" } }, - [2182]={ + [2205]={ [1]={ [1]={ limit={ @@ -47525,7 +48104,7 @@ return { [1]="mana_leech_speed_+%" } }, - [2183]={ + [2206]={ [1]={ [1]={ limit={ @@ -47554,7 +48133,7 @@ return { [1]="energy_shield_leech_speed_+%" } }, - [2184]={ + [2207]={ [1]={ [1]={ limit={ @@ -47575,7 +48154,7 @@ return { [2]="quality_display_raise_zombie_is_gem" } }, - [2185]={ + [2208]={ [1]={ [1]={ limit={ @@ -47591,7 +48170,7 @@ return { [1]="base_number_of_spectres_allowed" } }, - [2186]={ + [2209]={ [1]={ [1]={ limit={ @@ -47612,7 +48191,7 @@ return { [2]="quality_display_summon_skeleton_is_gem" } }, - [2187]={ + [2210]={ [1]={ [1]={ limit={ @@ -47628,7 +48207,7 @@ return { [1]="base_number_of_raging_spirits_allowed" } }, - [2188]={ + [2211]={ [1]={ [1]={ limit={ @@ -47644,7 +48223,7 @@ return { [1]="curses_never_expire" } }, - [2189]={ + [2212]={ [1]={ [1]={ limit={ @@ -47660,7 +48239,7 @@ return { [1]="no_physical_damage_reduction_rating" } }, - [2190]={ + [2213]={ [1]={ [1]={ limit={ @@ -47676,7 +48255,7 @@ return { [1]="no_energy_shield" } }, - [2191]={ + [2214]={ [1]={ [1]={ limit={ @@ -47692,7 +48271,7 @@ return { [1]="chaos_immunity" } }, - [2192]={ + [2215]={ [1]={ [1]={ limit={ @@ -47730,7 +48309,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [2193]={ + [2216]={ [1]={ [1]={ limit={ @@ -47755,7 +48334,7 @@ return { [1]="number_of_additional_curses_allowed_on_self" } }, - [2194]={ + [2217]={ [1]={ [1]={ limit={ @@ -47788,7 +48367,7 @@ return { [1]="curse_effect_on_self_+%" } }, - [2195]={ + [2218]={ [1]={ [1]={ limit={ @@ -47817,7 +48396,7 @@ return { [1]="self_curse_duration_+%" } }, - [2196]={ + [2219]={ [1]={ [1]={ limit={ @@ -47833,7 +48412,7 @@ return { [1]="cannot_be_stunned" } }, - [2197]={ + [2220]={ [1]={ [1]={ limit={ @@ -47849,7 +48428,7 @@ return { [1]="base_cannot_be_stunned" } }, - [2198]={ + [2221]={ [1]={ [1]={ [1]={ @@ -47869,7 +48448,7 @@ return { [1]="cannot_be_stunned_when_on_low_life" } }, - [2199]={ + [2222]={ [1]={ [1]={ limit={ @@ -47885,7 +48464,7 @@ return { [1]="mana_%_to_add_as_energy_shield" } }, - [2200]={ + [2223]={ [1]={ [1]={ limit={ @@ -47901,7 +48480,7 @@ return { [1]="convert_all_physical_damage_to_fire" } }, - [2201]={ + [2224]={ [1]={ [1]={ limit={ @@ -47917,7 +48496,7 @@ return { [1]="physical_damage_as_fire_damage_vs_ignited_enemies_%" } }, - [2202]={ + [2225]={ [1]={ [1]={ limit={ @@ -47933,7 +48512,7 @@ return { [1]="global_cannot_crit" } }, - [2203]={ + [2226]={ [1]={ [1]={ limit={ @@ -47949,7 +48528,7 @@ return { [1]="base_no_mana" } }, - [2204]={ + [2227]={ [1]={ [1]={ limit={ @@ -47965,7 +48544,7 @@ return { [1]="no_mana" } }, - [2205]={ + [2228]={ [1]={ [1]={ limit={ @@ -47981,7 +48560,7 @@ return { [1]="ignore_armour_movement_penalties" } }, - [2206]={ + [2229]={ [1]={ [1]={ limit={ @@ -47997,7 +48576,7 @@ return { [1]="minions_use_parents_flasks_on_summon" } }, - [2207]={ + [2230]={ [1]={ [1]={ limit={ @@ -48026,7 +48605,7 @@ return { [1]="charges_gained_+%" } }, - [2208]={ + [2231]={ [1]={ [1]={ limit={ @@ -48059,7 +48638,7 @@ return { [1]="flask_charges_used_+%" } }, - [2209]={ + [2232]={ [1]={ [1]={ limit={ @@ -48092,7 +48671,7 @@ return { [1]="flask_mana_charges_used_+%" } }, - [2210]={ + [2233]={ [1]={ [1]={ limit={ @@ -48125,7 +48704,7 @@ return { [1]="minion_flask_charges_used_+%" } }, - [2211]={ + [2234]={ [1]={ [1]={ limit={ @@ -48154,7 +48733,7 @@ return { [1]="flask_duration_+%" } }, - [2212]={ + [2235]={ [1]={ [1]={ limit={ @@ -48183,7 +48762,7 @@ return { [1]="flask_duration_on_minions_+%" } }, - [2213]={ + [2236]={ [1]={ [1]={ limit={ @@ -48212,7 +48791,7 @@ return { [1]="flask_life_recovery_rate_+%" } }, - [2214]={ + [2237]={ [1]={ [1]={ limit={ @@ -48241,7 +48820,7 @@ return { [1]="flask_mana_recovery_rate_+%" } }, - [2215]={ + [2238]={ [1]={ [1]={ limit={ @@ -48257,7 +48836,7 @@ return { [1]="cannot_resist_cold_damage" } }, - [2216]={ + [2239]={ [1]={ [1]={ limit={ @@ -48273,7 +48852,7 @@ return { [1]="minions_get_shield_stats_instead_of_you" } }, - [2217]={ + [2240]={ [1]={ [1]={ limit={ @@ -48302,7 +48881,7 @@ return { [1]="chaos_inoculation_keystone_energy_shield_+%_final" } }, - [2218]={ + [2241]={ [1]={ [1]={ limit={ @@ -48331,7 +48910,7 @@ return { [1]="pain_attunement_keystone_spell_damage_+%_final" } }, - [2219]={ + [2242]={ [1]={ [1]={ limit={ @@ -48360,7 +48939,7 @@ return { [1]="elemental_equilibrium_effect_+%" } }, - [2220]={ + [2243]={ [1]={ [1]={ limit={ @@ -48394,7 +48973,7 @@ return { [2]="maximum_physical_damage_to_reflect_to_self_on_attack" } }, - [2221]={ + [2244]={ [1]={ [1]={ limit={ @@ -48415,7 +48994,7 @@ return { [2]="maximum_physical_damage_to_return_to_melee_attacker" } }, - [2222]={ + [2245]={ [1]={ [1]={ limit={ @@ -48436,7 +49015,7 @@ return { [2]="maximum_fire_damage_to_return_to_melee_attacker" } }, - [2223]={ + [2246]={ [1]={ [1]={ limit={ @@ -48457,7 +49036,7 @@ return { [2]="maximum_cold_damage_to_return_to_melee_attacker" } }, - [2224]={ + [2247]={ [1]={ [1]={ limit={ @@ -48478,7 +49057,7 @@ return { [2]="maximum_lightning_damage_to_return_to_melee_attacker" } }, - [2225]={ + [2248]={ [1]={ [1]={ limit={ @@ -48499,7 +49078,7 @@ return { [2]="maximum_chaos_damage_to_return_to_melee_attacker" } }, - [2226]={ + [2249]={ [1]={ [1]={ limit={ @@ -48515,7 +49094,7 @@ return { [1]="physical_damage_to_return_to_melee_attacker" } }, - [2227]={ + [2250]={ [1]={ [1]={ limit={ @@ -48531,7 +49110,7 @@ return { [1]="cold_damage_to_return_to_melee_attacker" } }, - [2228]={ + [2251]={ [1]={ [1]={ limit={ @@ -48547,7 +49126,7 @@ return { [1]="fire_damage_to_return_to_melee_attacker" } }, - [2229]={ + [2252]={ [1]={ [1]={ limit={ @@ -48563,7 +49142,7 @@ return { [1]="lightning_damage_to_return_to_melee_attacker" } }, - [2230]={ + [2253]={ [1]={ [1]={ limit={ @@ -48579,7 +49158,7 @@ return { [1]="chaos_damage_to_return_to_melee_attacker" } }, - [2231]={ + [2254]={ [1]={ [1]={ limit={ @@ -48595,7 +49174,7 @@ return { [1]="physical_damage_to_return_when_hit" } }, - [2232]={ + [2255]={ [1]={ [1]={ limit={ @@ -48611,7 +49190,7 @@ return { [1]="fire_damage_to_return_when_hit" } }, - [2233]={ + [2256]={ [1]={ [1]={ limit={ @@ -48627,7 +49206,7 @@ return { [1]="cold_damage_to_return_when_hit" } }, - [2234]={ + [2257]={ [1]={ [1]={ limit={ @@ -48643,7 +49222,7 @@ return { [1]="lightning_damage_to_return_when_hit" } }, - [2235]={ + [2258]={ [1]={ [1]={ limit={ @@ -48659,7 +49238,7 @@ return { [1]="chaos_damage_to_return_when_hit" } }, - [2236]={ + [2259]={ [1]={ [1]={ limit={ @@ -48675,7 +49254,7 @@ return { [1]="self_fire_damage_on_skill_use" } }, - [2237]={ + [2260]={ [1]={ [1]={ [1]={ @@ -48695,7 +49274,7 @@ return { [1]="self_physical_damage_on_skill_use_%_mana_cost" } }, - [2238]={ + [2261]={ [1]={ [1]={ limit={ @@ -48724,7 +49303,7 @@ return { [1]="curse_cast_speed_+%" } }, - [2239]={ + [2262]={ [1]={ [1]={ limit={ @@ -48753,7 +49332,7 @@ return { [1]="hex_skill_cast_speed_+%" } }, - [2240]={ + [2263]={ [1]={ [1]={ limit={ @@ -48782,7 +49361,7 @@ return { [1]="mark_skill_cast_speed_+%" } }, - [2241]={ + [2264]={ [1]={ [1]={ [1]={ @@ -48802,7 +49381,7 @@ return { [1]="elemental_status_effect_aura_radius" } }, - [2242]={ + [2265]={ [1]={ [1]={ [1]={ @@ -48835,7 +49414,7 @@ return { [1]="gloves_ignite_proliferation_radius" } }, - [2243]={ + [2266]={ [1]={ [1]={ [1]={ @@ -48868,7 +49447,7 @@ return { [1]="passive_notable_ignite_proliferation_radius" } }, - [2244]={ + [2267]={ [1]={ [1]={ [1]={ @@ -48901,7 +49480,7 @@ return { [1]="amulet_freeze_proliferation_radius" } }, - [2245]={ + [2268]={ [1]={ [1]={ [1]={ @@ -48934,7 +49513,7 @@ return { [1]="gloves_freeze_proliferation_radius" } }, - [2246]={ + [2269]={ [1]={ [1]={ [1]={ @@ -48967,7 +49546,7 @@ return { [1]="gloves_shock_proliferation_radius" } }, - [2247]={ + [2270]={ [1]={ [1]={ limit={ @@ -48983,7 +49562,7 @@ return { [1]="shock_proliferation_radius_is_at_least_15" } }, - [2248]={ + [2271]={ [1]={ [1]={ limit={ @@ -49012,7 +49591,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [2249]={ + [2272]={ [1]={ [1]={ limit={ @@ -49041,7 +49620,7 @@ return { [1]="curse_area_of_effect_+%" } }, - [2250]={ + [2273]={ [1]={ [1]={ limit={ @@ -49070,7 +49649,7 @@ return { [1]="base_life_reservation_efficiency_+%" } }, - [2251]={ + [2274]={ [1]={ [1]={ limit={ @@ -49099,7 +49678,7 @@ return { [1]="base_life_reservation_+%" } }, - [2252]={ + [2275]={ [1]={ [1]={ limit={ @@ -49128,7 +49707,7 @@ return { [1]="base_mana_reservation_efficiency_+%" } }, - [2253]={ + [2276]={ [1]={ [1]={ limit={ @@ -49157,7 +49736,7 @@ return { [1]="base_mana_reservation_+%" } }, - [2254]={ + [2277]={ [1]={ [1]={ limit={ @@ -49186,7 +49765,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [2255]={ + [2278]={ [1]={ [1]={ limit={ @@ -49215,7 +49794,7 @@ return { [1]="base_reservation_+%" } }, - [2256]={ + [2279]={ [1]={ [1]={ [1]={ @@ -49252,7 +49831,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1" } }, - [2257]={ + [2280]={ [1]={ [1]={ [1]={ @@ -49289,7 +49868,7 @@ return { [1]="reservation_efficiency_-2%_per_1" } }, - [2258]={ + [2281]={ [1]={ [1]={ limit={ @@ -49305,7 +49884,7 @@ return { [1]="physical_attack_damage_taken_+" } }, - [2259]={ + [2282]={ [1]={ [1]={ limit={ @@ -49321,7 +49900,7 @@ return { [1]="physical_damage_taken_+" } }, - [2260]={ + [2283]={ [1]={ [1]={ limit={ @@ -49337,7 +49916,7 @@ return { [1]="physical_damage_taken_+_per_level" } }, - [2261]={ + [2284]={ [1]={ [1]={ limit={ @@ -49353,7 +49932,7 @@ return { [1]="fire_damage_taken_+" } }, - [2262]={ + [2285]={ [1]={ [1]={ limit={ @@ -49382,7 +49961,7 @@ return { [1]="base_damage_taken_+%" } }, - [2263]={ + [2286]={ [1]={ [1]={ limit={ @@ -49415,7 +49994,7 @@ return { [1]="area_damage_taken_from_hits_+%" } }, - [2264]={ + [2287]={ [1]={ [1]={ limit={ @@ -49444,7 +50023,7 @@ return { [1]="damage_taken_+%_from_hits" } }, - [2265]={ + [2288]={ [1]={ [1]={ limit={ @@ -49473,7 +50052,7 @@ return { [1]="physical_damage_taken_+%" } }, - [2266]={ + [2289]={ [1]={ [1]={ limit={ @@ -49502,7 +50081,7 @@ return { [1]="fire_damage_taken_+%" } }, - [2267]={ + [2290]={ [1]={ [1]={ limit={ @@ -49535,7 +50114,7 @@ return { [1]="chaos_damage_taken_+%" } }, - [2268]={ + [2291]={ [1]={ [1]={ limit={ @@ -49564,7 +50143,7 @@ return { [1]="damage_taken_+%_while_es_full" } }, - [2269]={ + [2292]={ [1]={ [1]={ limit={ @@ -49597,7 +50176,7 @@ return { [1]="degen_effect_+%" } }, - [2270]={ + [2293]={ [1]={ [1]={ limit={ @@ -49613,7 +50192,7 @@ return { [1]="physical_ranged_attack_damage_taken_+" } }, - [2271]={ + [2294]={ [1]={ [1]={ limit={ @@ -49642,7 +50221,7 @@ return { [1]="damage_taken_+%_from_skeletons" } }, - [2272]={ + [2295]={ [1]={ [1]={ limit={ @@ -49671,7 +50250,7 @@ return { [1]="damage_taken_+%_from_ghosts" } }, - [2273]={ + [2296]={ [1]={ [1]={ limit={ @@ -49687,7 +50266,7 @@ return { [1]="local_additional_block_chance_%" } }, - [2274]={ + [2297]={ [1]={ [1]={ limit={ @@ -49703,7 +50282,7 @@ return { [1]="deal_no_damage_yourself" } }, - [2275]={ + [2298]={ [1]={ [1]={ limit={ @@ -49719,7 +50298,7 @@ return { [1]="base_number_of_totems_allowed" } }, - [2276]={ + [2299]={ [1]={ [1]={ limit={ @@ -49744,7 +50323,7 @@ return { [1]="base_number_of_traps_allowed" } }, - [2277]={ + [2300]={ [1]={ [1]={ limit={ @@ -49769,7 +50348,7 @@ return { [1]="base_number_of_remote_mines_allowed" } }, - [2278]={ + [2301]={ [1]={ [1]={ limit={ @@ -49785,7 +50364,7 @@ return { [1]="number_of_additional_totems_allowed" } }, - [2279]={ + [2302]={ [1]={ [1]={ limit={ @@ -49836,7 +50415,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [2280]={ + [2303]={ [1]={ [1]={ limit={ @@ -49887,7 +50466,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [2281]={ + [2304]={ [1]={ [1]={ limit={ @@ -49903,7 +50482,7 @@ return { [1]="maximum_2_of_same_totem" } }, - [2282]={ + [2305]={ [1]={ [1]={ limit={ @@ -49919,7 +50498,7 @@ return { [1]="cannot_block_attacks" } }, - [2283]={ + [2306]={ [1]={ [1]={ [1]={ @@ -49939,7 +50518,7 @@ return { [1]="additional_physical_damage_reduction_%_when_on_low_life" } }, - [2284]={ + [2307]={ [1]={ [1]={ limit={ @@ -49955,7 +50534,7 @@ return { [1]="endurance_only_conduit" } }, - [2285]={ + [2308]={ [1]={ [1]={ limit={ @@ -49971,7 +50550,7 @@ return { [1]="frenzy_only_conduit" } }, - [2286]={ + [2309]={ [1]={ [1]={ limit={ @@ -49987,7 +50566,7 @@ return { [1]="power_only_conduit" } }, - [2287]={ + [2310]={ [1]={ [1]={ [1]={ @@ -50007,7 +50586,7 @@ return { [1]="local_chance_to_blind_on_hit_%" } }, - [2288]={ + [2311]={ [1]={ [1]={ [1]={ @@ -50048,7 +50627,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [2289]={ + [2312]={ [1]={ [1]={ limit={ @@ -50077,7 +50656,7 @@ return { [1]="fortify_duration_+%" } }, - [2290]={ + [2313]={ [1]={ [1]={ limit={ @@ -50093,7 +50672,7 @@ return { [1]="should_use_alternate_fortify" } }, - [2291]={ + [2314]={ [1]={ [1]={ [1]={ @@ -50113,7 +50692,7 @@ return { [1]="spell_suppression_chance_%_per_fortification" } }, - [2292]={ + [2315]={ [1]={ [1]={ limit={ @@ -50142,7 +50721,7 @@ return { [1]="attack_and_cast_speed_+%_while_you_have_fortify" } }, - [2293]={ + [2316]={ [1]={ [1]={ limit={ @@ -50171,7 +50750,7 @@ return { [1]="melee_cold_damage_+%_while_fortify_is_active" } }, - [2294]={ + [2317]={ [1]={ [1]={ limit={ @@ -50200,7 +50779,7 @@ return { [1]="melee_physical_damage_+%_while_fortify_is_active" } }, - [2295]={ + [2318]={ [1]={ [1]={ limit={ @@ -50216,7 +50795,7 @@ return { [1]="no_life_regeneration" } }, - [2296]={ + [2319]={ [1]={ [1]={ limit={ @@ -50232,7 +50811,7 @@ return { [1]="no_mana_regeneration" } }, - [2297]={ + [2320]={ [1]={ [1]={ limit={ @@ -50248,7 +50827,7 @@ return { [1]="base_additional_physical_damage_reduction_%" } }, - [2298]={ + [2321]={ [1]={ [1]={ limit={ @@ -50264,7 +50843,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [2299]={ + [2322]={ [1]={ [1]={ limit={ @@ -50280,7 +50859,7 @@ return { [1]="elemental_damage_reduction_%_per_endurance_charge" } }, - [2300]={ + [2323]={ [1]={ [1]={ limit={ @@ -50296,7 +50875,7 @@ return { [1]="physical_damage_reduction_%_per_endurance_charge" } }, - [2301]={ + [2324]={ [1]={ [1]={ limit={ @@ -50312,7 +50891,7 @@ return { [1]="map_size_+%" } }, - [2302]={ + [2325]={ [1]={ [1]={ limit={ @@ -50328,7 +50907,7 @@ return { [1]="delve_biome_contains_delve_boss" } }, - [2303]={ + [2326]={ [1]={ [1]={ limit={ @@ -50344,7 +50923,7 @@ return { [1]="delve_biome_boss_drops_additional_unique_item" } }, - [2304]={ + [2327]={ [1]={ [1]={ limit={ @@ -50360,7 +50939,7 @@ return { [1]="delve_biome_boss_drops_extra_precursor_component_ring" } }, - [2305]={ + [2328]={ [1]={ [1]={ limit={ @@ -50376,7 +50955,7 @@ return { [1]="delve_biome_boss_drops_x_additional_fossils" } }, - [2306]={ + [2329]={ [1]={ [1]={ limit={ @@ -50392,7 +50971,7 @@ return { [1]="delve_biome_boss_hits_always_crit" } }, - [2307]={ + [2330]={ [1]={ [1]={ limit={ @@ -50408,7 +50987,7 @@ return { [1]="delve_biome_boss_life_+%_final" } }, - [2308]={ + [2331]={ [1]={ [1]={ limit={ @@ -50424,7 +51003,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_add_as_cold" } }, - [2309]={ + [2332]={ [1]={ [1]={ limit={ @@ -50440,7 +51019,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_add_as_fire" } }, - [2310]={ + [2333]={ [1]={ [1]={ limit={ @@ -50456,7 +51035,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_add_as_lightning" } }, - [2311]={ + [2334]={ [1]={ [1]={ limit={ @@ -50472,7 +51051,7 @@ return { [1]="map_is_branchy" } }, - [2312]={ + [2335]={ [1]={ [1]={ limit={ @@ -50501,7 +51080,7 @@ return { [1]="delve_biome_azurite_collected_+%" } }, - [2313]={ + [2336]={ [1]={ [1]={ limit={ @@ -50530,7 +51109,7 @@ return { [1]="delve_biome_sulphite_cost_+%_final" } }, - [2314]={ + [2337]={ [1]={ [1]={ limit={ @@ -50546,7 +51125,7 @@ return { [1]="delve_biome_city_chambers_can_contain_special_delve_chest" } }, - [2315]={ + [2338]={ [1]={ [1]={ limit={ @@ -50562,7 +51141,7 @@ return { [1]="delve_biome_encounters_extra_reward_chest_%_chance" } }, - [2316]={ + [2339]={ [1]={ [1]={ limit={ @@ -50578,7 +51157,7 @@ return { [1]="delve_biome_monster_drop_fossil_chance_%" } }, - [2317]={ + [2340]={ [1]={ [1]={ limit={ @@ -50594,7 +51173,7 @@ return { [1]="map_display_area_contains_unbridged_gaps_to_cross" } }, - [2318]={ + [2341]={ [1]={ [1]={ limit={ @@ -50610,7 +51189,7 @@ return { [1]="delve_biome_node_tier_upgrade_+%" } }, - [2319]={ + [2342]={ [1]={ [1]={ limit={ @@ -50626,7 +51205,7 @@ return { [1]="map_additional_number_of_packs_to_choose" } }, - [2320]={ + [2343]={ [1]={ [1]={ limit={ @@ -50642,7 +51221,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_azurite" } }, - [2321]={ + [2344]={ [1]={ [1]={ limit={ @@ -50658,7 +51237,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_currency" } }, - [2322]={ + [2345]={ [1]={ [1]={ limit={ @@ -50674,7 +51253,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_fossils" } }, - [2323]={ + [2346]={ [1]={ [1]={ limit={ @@ -50690,7 +51269,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_resonators" } }, - [2324]={ + [2347]={ [1]={ [1]={ limit={ @@ -50706,7 +51285,7 @@ return { [1]="delve_biome_off_path_reward_chests_azurite_chance_+%_final" } }, - [2325]={ + [2348]={ [1]={ [1]={ limit={ @@ -50722,7 +51301,7 @@ return { [1]="delve_biome_off_path_reward_chests_currency_chance_+%_final" } }, - [2326]={ + [2349]={ [1]={ [1]={ limit={ @@ -50738,7 +51317,7 @@ return { [1]="delve_biome_off_path_reward_chests_fossil_chance_+%_final" } }, - [2327]={ + [2350]={ [1]={ [1]={ limit={ @@ -50754,7 +51333,7 @@ return { [1]="delve_biome_off_path_reward_chests_resonator_chance_+%_final" } }, - [2328]={ + [2351]={ [1]={ [1]={ limit={ @@ -50770,7 +51349,7 @@ return { [1]="map_base_ground_fire_damage_to_deal_per_minute" } }, - [2329]={ + [2352]={ [1]={ [1]={ limit={ @@ -50786,7 +51365,7 @@ return { [1]="map_base_ground_fire_damage_to_deal_per_10_seconds" } }, - [2330]={ + [2353]={ [1]={ [1]={ [1]={ @@ -50806,7 +51385,7 @@ return { [1]="map_ground_ice" } }, - [2331]={ + [2354]={ [1]={ [1]={ [1]={ @@ -50826,7 +51405,7 @@ return { [1]="map_ground_ice_base_magnitude" } }, - [2332]={ + [2355]={ [1]={ [1]={ [1]={ @@ -50846,7 +51425,7 @@ return { [1]="map_ground_lightning" } }, - [2333]={ + [2356]={ [1]={ [1]={ limit={ @@ -50862,7 +51441,7 @@ return { [1]="map_ground_lightning_base_magnitude" } }, - [2334]={ + [2357]={ [1]={ [1]={ limit={ @@ -50878,7 +51457,7 @@ return { [1]="map_ground_tar_movement_speed_+%" } }, - [2335]={ + [2358]={ [1]={ [1]={ limit={ @@ -50894,7 +51473,7 @@ return { [1]="map_base_ground_desecration_damage_to_deal_per_minute" } }, - [2336]={ + [2359]={ [1]={ [1]={ limit={ @@ -50910,7 +51489,7 @@ return { [1]="map_tempest_base_ground_fire_damage_to_deal_per_minute" } }, - [2337]={ + [2360]={ [1]={ [1]={ [1]={ @@ -50930,7 +51509,7 @@ return { [1]="map_tempest_ground_ice" } }, - [2338]={ + [2361]={ [1]={ [1]={ [1]={ @@ -50950,7 +51529,7 @@ return { [1]="map_tempest_ground_lightning" } }, - [2339]={ + [2362]={ [1]={ [1]={ limit={ @@ -50966,7 +51545,7 @@ return { [1]="map_tempest_ground_tar_movement_speed_+%" } }, - [2340]={ + [2363]={ [1]={ [1]={ limit={ @@ -50982,7 +51561,7 @@ return { [1]="map_tempest_base_ground_desecration_damage_to_deal_per_minute" } }, - [2341]={ + [2364]={ [1]={ [1]={ limit={ @@ -50998,7 +51577,7 @@ return { [1]="map_fixed_seed" } }, - [2342]={ + [2365]={ [1]={ [1]={ limit={ @@ -51014,7 +51593,7 @@ return { [1]="map_minimap_revealed" } }, - [2343]={ + [2366]={ [1]={ [1]={ limit={ @@ -51030,7 +51609,7 @@ return { [1]="map_no_refills_in_town" } }, - [2344]={ + [2367]={ [1]={ [1]={ limit={ @@ -51046,7 +51625,7 @@ return { [1]="map_packs_are_totems" } }, - [2345]={ + [2368]={ [1]={ [1]={ limit={ @@ -51062,7 +51641,7 @@ return { [1]="map_packs_are_str_mission_totems" } }, - [2346]={ + [2369]={ [1]={ [1]={ limit={ @@ -51078,7 +51657,7 @@ return { [1]="map_packs_are_skeletons" } }, - [2347]={ + [2370]={ [1]={ [1]={ limit={ @@ -51094,7 +51673,7 @@ return { [1]="map_packs_are_bandits" } }, - [2348]={ + [2371]={ [1]={ [1]={ limit={ @@ -51110,7 +51689,7 @@ return { [1]="map_packs_are_goatmen" } }, - [2349]={ + [2372]={ [1]={ [1]={ limit={ @@ -51126,7 +51705,7 @@ return { [1]="map_packs_are_animals" } }, - [2350]={ + [2373]={ [1]={ [1]={ limit={ @@ -51142,7 +51721,7 @@ return { [1]="map_packs_are_demons" } }, - [2351]={ + [2374]={ [1]={ [1]={ limit={ @@ -51158,7 +51737,7 @@ return { [1]="map_packs_are_humanoids" } }, - [2352]={ + [2375]={ [1]={ [1]={ limit={ @@ -51174,7 +51753,7 @@ return { [1]="map_packs_are_sea_witches_and_spawn" } }, - [2353]={ + [2376]={ [1]={ [1]={ limit={ @@ -51190,7 +51769,7 @@ return { [1]="map_packs_are_undead_and_necromancers" } }, - [2354]={ + [2377]={ [1]={ [1]={ limit={ @@ -51206,7 +51785,7 @@ return { [1]="map_packs_fire_projectiles" } }, - [2355]={ + [2378]={ [1]={ [1]={ limit={ @@ -51222,7 +51801,7 @@ return { [1]="display_map_inhabited_by_wild_beasts" } }, - [2356]={ + [2379]={ [1]={ [1]={ limit={ @@ -51247,7 +51826,7 @@ return { [1]="map_display_unique_boss_drops_X_maps" } }, - [2357]={ + [2380]={ [1]={ [1]={ limit={ @@ -51272,7 +51851,7 @@ return { [1]="map_spawn_extra_exiles" } }, - [2358]={ + [2381]={ [1]={ [1]={ limit={ @@ -51297,7 +51876,7 @@ return { [1]="map_spawn_extra_warbands" } }, - [2359]={ + [2382]={ [1]={ [1]={ limit={ @@ -51322,7 +51901,7 @@ return { [1]="map_num_extra_shrines" } }, - [2360]={ + [2383]={ [1]={ [1]={ limit={ @@ -51338,7 +51917,7 @@ return { [1]="map_shrines_are_darkshrines" } }, - [2361]={ + [2384]={ [1]={ [1]={ limit={ @@ -51354,7 +51933,7 @@ return { [1]="map_spawn_harbingers" } }, - [2362]={ + [2385]={ [1]={ [1]={ limit={ @@ -51370,7 +51949,7 @@ return { [1]="map_spawn_talismans" } }, - [2363]={ + [2386]={ [1]={ [1]={ limit={ @@ -51386,7 +51965,7 @@ return { [1]="map_spawn_perandus_chests" } }, - [2364]={ + [2387]={ [1]={ [1]={ limit={ @@ -51411,7 +51990,7 @@ return { [1]="map_spawn_extra_talismans" } }, - [2365]={ + [2388]={ [1]={ [1]={ limit={ @@ -51427,7 +52006,7 @@ return { [1]="map_force_stone_circle" } }, - [2366]={ + [2389]={ [1]={ [1]={ limit={ @@ -51452,7 +52031,7 @@ return { [1]="map_spawn_extra_torment_spirits" } }, - [2367]={ + [2390]={ [1]={ [1]={ limit={ @@ -51477,39 +52056,49 @@ return { [1]="map_num_extra_strongboxes" } }, - [2368]={ + [2391]={ [1]={ [1]={ limit={ [1]={ [1]="#", [2]="#" + }, + [2]={ + [1]="#", + [2]="#" } }, text="{0}% increased Magic Monsters" } }, stats={ - [1]="map_number_of_magic_packs_+%" + [1]="map_number_of_magic_packs_+%", + [2]="chart_magic_monsters_voyage_display_stat" } }, - [2369]={ + [2392]={ [1]={ [1]={ limit={ [1]={ [1]="#", [2]="#" + }, + [2]={ + [1]="#", + [2]="#" } }, text="{0}% increased number of Rare Monsters" } }, stats={ - [1]="map_number_of_rare_packs_+%" + [1]="map_number_of_rare_packs_+%", + [2]="chart_rare_monsters_voyage_display_stat" } }, - [2370]={ + [2393]={ [1]={ [1]={ limit={ @@ -51525,7 +52114,7 @@ return { [1]="map_non_unique_monsters_spawn_X_monsters_on_death" } }, - [2371]={ + [2394]={ [1]={ [1]={ [1]={ @@ -51545,7 +52134,7 @@ return { [1]="map_player_base_chaos_damage_taken_per_minute" } }, - [2372]={ + [2395]={ [1]={ [1]={ [1]={ @@ -51565,7 +52154,7 @@ return { [1]="map_player_has_blood_magic_keystone" } }, - [2373]={ + [2396]={ [1]={ [1]={ limit={ @@ -51581,7 +52170,7 @@ return { [1]="map_player_cannot_expose" } }, - [2374]={ + [2397]={ [1]={ [1]={ limit={ @@ -51597,7 +52186,7 @@ return { [1]="map_player_has_chaos_inoculation_keystone" } }, - [2375]={ + [2398]={ [1]={ [1]={ [1]={ @@ -51617,7 +52206,7 @@ return { [1]="map_player_has_level_X_vulnerability" } }, - [2376]={ + [2399]={ [1]={ [1]={ [1]={ @@ -51637,7 +52226,7 @@ return { [1]="map_player_has_level_X_enfeeble" } }, - [2377]={ + [2400]={ [1]={ [1]={ [1]={ @@ -51657,7 +52246,7 @@ return { [1]="map_player_has_level_X_temporal_chains" } }, - [2378]={ + [2401]={ [1]={ [1]={ [1]={ @@ -51677,7 +52266,7 @@ return { [1]="map_player_has_level_X_elemental_weakness" } }, - [2379]={ + [2402]={ [1]={ [1]={ [1]={ @@ -51697,7 +52286,7 @@ return { [1]="map_player_has_level_X_punishment" } }, - [2380]={ + [2403]={ [1]={ [1]={ [1]={ @@ -51717,7 +52306,7 @@ return { [1]="map_player_has_level_X_flammability" } }, - [2381]={ + [2404]={ [1]={ [1]={ [1]={ @@ -51737,7 +52326,7 @@ return { [1]="map_player_has_level_X_frostbite" } }, - [2382]={ + [2405]={ [1]={ [1]={ [1]={ @@ -51757,7 +52346,7 @@ return { [1]="map_player_has_level_X_conductivity" } }, - [2383]={ + [2406]={ [1]={ [1]={ [1]={ @@ -51777,7 +52366,7 @@ return { [1]="map_player_has_level_X_despair" } }, - [2384]={ + [2407]={ [1]={ [1]={ [1]={ @@ -51797,7 +52386,7 @@ return { [1]="map_player_has_level_X_silence" } }, - [2385]={ + [2408]={ [1]={ [1]={ limit={ @@ -51813,7 +52402,7 @@ return { [1]="map_player_no_regeneration" } }, - [2386]={ + [2409]={ [1]={ [1]={ limit={ @@ -51829,7 +52418,7 @@ return { [1]="map_additional_player_maximum_resistances_%" } }, - [2387]={ + [2410]={ [1]={ [1]={ limit={ @@ -51858,7 +52447,7 @@ return { [1]="map_player_status_recovery_speed_+%" } }, - [2388]={ + [2411]={ [1]={ [1]={ limit={ @@ -51887,7 +52476,7 @@ return { [1]="map_player_projectile_damage_+%_final" } }, - [2389]={ + [2412]={ [1]={ [1]={ limit={ @@ -51903,7 +52492,7 @@ return { [1]="map_players_convert_all_physical_damage_to_fire" } }, - [2390]={ + [2413]={ [1]={ [1]={ limit={ @@ -51932,7 +52521,7 @@ return { [1]="map_projectile_speed_+%" } }, - [2391]={ + [2414]={ [1]={ [1]={ limit={ @@ -51961,7 +52550,7 @@ return { [1]="map_monsters_life_+%" } }, - [2392]={ + [2415]={ [1]={ [1]={ limit={ @@ -51990,7 +52579,7 @@ return { [1]="map_monsters_area_of_effect_+%" } }, - [2393]={ + [2416]={ [1]={ [1]={ limit={ @@ -52006,7 +52595,7 @@ return { [1]="map_monsters_avoid_freeze_and_chill_%" } }, - [2394]={ + [2417]={ [1]={ [1]={ limit={ @@ -52022,7 +52611,7 @@ return { [1]="map_monsters_avoid_ignite_%" } }, - [2395]={ + [2418]={ [1]={ [1]={ limit={ @@ -52038,7 +52627,7 @@ return { [1]="map_monsters_avoid_shock_%" } }, - [2396]={ + [2419]={ [1]={ [1]={ [1]={ @@ -52058,7 +52647,7 @@ return { [1]="map_monster_unaffected_by_shock" } }, - [2397]={ + [2420]={ [1]={ [1]={ [1]={ @@ -52078,7 +52667,7 @@ return { [1]="map_monsters_avoid_ailments_%" } }, - [2398]={ + [2421]={ [1]={ [1]={ [1]={ @@ -52098,7 +52687,7 @@ return { [1]="map_monsters_avoid_elemental_ailments_%" } }, - [2399]={ + [2422]={ [1]={ [1]={ limit={ @@ -52127,7 +52716,7 @@ return { [1]="map_monsters_critical_strike_chance_+%" } }, - [2400]={ + [2423]={ [1]={ [1]={ limit={ @@ -52143,7 +52732,7 @@ return { [1]="map_monsters_critical_strike_multiplier_+" } }, - [2401]={ + [2424]={ [1]={ [1]={ [1]={ @@ -52163,7 +52752,7 @@ return { [1]="map_monsters_cannot_be_leeched_from" } }, - [2402]={ + [2425]={ [1]={ [1]={ limit={ @@ -52192,7 +52781,7 @@ return { [1]="map_monsters_life_leech_resistance_%" } }, - [2403]={ + [2426]={ [1]={ [1]={ limit={ @@ -52217,7 +52806,7 @@ return { [1]="map_monsters_mana_leech_resistance_%" } }, - [2404]={ + [2427]={ [1]={ [1]={ limit={ @@ -52233,7 +52822,7 @@ return { [1]="map_monsters_damage_+%" } }, - [2405]={ + [2428]={ [1]={ [1]={ [1]={ @@ -52253,7 +52842,7 @@ return { [1]="map_monsters_have_onslaught" } }, - [2406]={ + [2429]={ [1]={ [1]={ limit={ @@ -52282,7 +52871,7 @@ return { [1]="map_monsters_movement_speed_+%" } }, - [2407]={ + [2430]={ [1]={ [1]={ limit={ @@ -52298,7 +52887,7 @@ return { [1]="map_monsters_attack_speed_+%" } }, - [2408]={ + [2431]={ [1]={ [1]={ limit={ @@ -52314,7 +52903,7 @@ return { [1]="map_monsters_cast_speed_+%" } }, - [2409]={ + [2432]={ [1]={ [1]={ limit={ @@ -52330,7 +52919,23 @@ return { [1]="map_monsters_reflect_%_physical_damage" } }, - [2410]={ + [2433]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rare Monsters have Physical Thorns reflecting {0} Physical Damage" + } + }, + stats={ + [1]="map_rare_monsters_physical_thorns_for_x_damage" + } + }, + [2434]={ [1]={ [1]={ limit={ @@ -52346,7 +52951,23 @@ return { [1]="map_monsters_reflect_%_elemental_damage" } }, - [2411]={ + [2435]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rare Monsters have Elemental Thorns reflecting {0} Elemental Damage" + } + }, + stats={ + [1]="map_rare_monsters_elemental_thorns_for_x_damage" + } + }, + [2436]={ [1]={ [1]={ limit={ @@ -52393,7 +53014,7 @@ return { [2]="map_players_additional_number_of_projectiles" } }, - [2412]={ + [2437]={ [1]={ [1]={ limit={ @@ -52409,7 +53030,7 @@ return { [1]="map_monsters_additional_fire_resistance" } }, - [2413]={ + [2438]={ [1]={ [1]={ limit={ @@ -52425,7 +53046,7 @@ return { [1]="map_monsters_additional_cold_resistance" } }, - [2414]={ + [2439]={ [1]={ [1]={ limit={ @@ -52441,7 +53062,7 @@ return { [1]="map_monsters_additional_lightning_resistance" } }, - [2415]={ + [2440]={ [1]={ [1]={ limit={ @@ -52457,7 +53078,7 @@ return { [1]="map_monsters_additional_physical_damage_reduction" } }, - [2416]={ + [2441]={ [1]={ [1]={ limit={ @@ -52473,7 +53094,7 @@ return { [1]="map_monsters_cannot_be_stunned" } }, - [2417]={ + [2442]={ [1]={ [1]={ [1]={ @@ -52493,7 +53114,7 @@ return { [1]="map_monsters_poison_on_hit" } }, - [2418]={ + [2443]={ [1]={ [1]={ limit={ @@ -52509,7 +53130,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_fire" } }, - [2419]={ + [2444]={ [1]={ [1]={ limit={ @@ -52525,7 +53146,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_cold" } }, - [2420]={ + [2445]={ [1]={ [1]={ limit={ @@ -52541,7 +53162,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_lightning" } }, - [2421]={ + [2446]={ [1]={ [1]={ limit={ @@ -52557,7 +53178,7 @@ return { [1]="map_monsters_%_physical_damage_to_add_as_fire" } }, - [2422]={ + [2447]={ [1]={ [1]={ limit={ @@ -52573,7 +53194,7 @@ return { [1]="map_monsters_%_physical_damage_to_add_as_cold" } }, - [2423]={ + [2448]={ [1]={ [1]={ limit={ @@ -52589,7 +53210,7 @@ return { [1]="map_monsters_%_physical_damage_to_add_as_lightning" } }, - [2424]={ + [2449]={ [1]={ [1]={ limit={ @@ -52605,7 +53226,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_chaos" } }, - [2425]={ + [2450]={ [1]={ [1]={ limit={ @@ -52630,7 +53251,7 @@ return { [1]="map_monsters_gain_x_frenzy_charges_every_20_seconds" } }, - [2426]={ + [2451]={ [1]={ [1]={ limit={ @@ -52646,7 +53267,7 @@ return { [1]="map_monster_maximum_frenzy_charges" } }, - [2427]={ + [2452]={ [1]={ [1]={ limit={ @@ -52671,7 +53292,7 @@ return { [1]="map_monsters_add_frenzy_charge_on_hit_%" } }, - [2428]={ + [2453]={ [1]={ [1]={ limit={ @@ -52696,7 +53317,7 @@ return { [1]="map_monsters_gain_x_endurance_charges_every_20_seconds" } }, - [2429]={ + [2454]={ [1]={ [1]={ limit={ @@ -52712,7 +53333,7 @@ return { [1]="map_monster_maximum_endurance_charges" } }, - [2430]={ + [2455]={ [1]={ [1]={ limit={ @@ -52737,7 +53358,7 @@ return { [1]="map_monsters_add_endurance_charge_on_hit_%" } }, - [2431]={ + [2456]={ [1]={ [1]={ limit={ @@ -52762,7 +53383,7 @@ return { [1]="map_monsters_gain_x_power_charges_every_20_seconds" } }, - [2432]={ + [2457]={ [1]={ [1]={ limit={ @@ -52778,7 +53399,7 @@ return { [1]="map_monster_maximum_power_charges" } }, - [2433]={ + [2458]={ [1]={ [1]={ limit={ @@ -52803,7 +53424,7 @@ return { [1]="map_monsters_add_power_charge_on_hit_%" } }, - [2434]={ + [2459]={ [1]={ [1]={ [1]={ @@ -52823,7 +53444,7 @@ return { [1]="map_monsters_immune_to_a_random_status_ailment_or_stun" } }, - [2435]={ + [2460]={ [1]={ [1]={ limit={ @@ -52839,7 +53460,7 @@ return { [1]="map_monster_melee_attacks_apply_random_curses" } }, - [2436]={ + [2461]={ [1]={ [1]={ limit={ @@ -52864,7 +53485,7 @@ return { [1]="map_monster_melee_attacks_apply_random_curses_%_chance" } }, - [2437]={ + [2462]={ [1]={ [1]={ limit={ @@ -52880,7 +53501,7 @@ return { [1]="map_monsters_reflect_curses" } }, - [2438]={ + [2463]={ [1]={ [1]={ limit={ @@ -52896,7 +53517,7 @@ return { [1]="map_monster_skills_chain_X_additional_times" } }, - [2439]={ + [2464]={ [1]={ [1]={ limit={ @@ -52912,7 +53533,7 @@ return { [1]="map_monsters_convert_all_physical_damage_to_fire" } }, - [2440]={ + [2465]={ [1]={ [1]={ limit={ @@ -52928,7 +53549,7 @@ return { [1]="map_monsters_drop_ground_fire_on_death_base_radius" } }, - [2441]={ + [2466]={ [1]={ [1]={ limit={ @@ -52944,7 +53565,7 @@ return { [1]="map_monsters_are_immune_to_curses" } }, - [2442]={ + [2467]={ [1]={ [1]={ limit={ @@ -52960,7 +53581,7 @@ return { [1]="map_monsters_are_hexproof" } }, - [2443]={ + [2468]={ [1]={ [1]={ limit={ @@ -52993,7 +53614,7 @@ return { [1]="map_monsters_curse_effect_+%" } }, - [2444]={ + [2469]={ [1]={ [1]={ limit={ @@ -53009,7 +53630,7 @@ return { [1]="map_monster_no_drops" } }, - [2445]={ + [2470]={ [1]={ [1]={ limit={ @@ -53025,7 +53646,7 @@ return { [1]="map_spawn_two_bosses" } }, - [2446]={ + [2471]={ [1]={ [1]={ limit={ @@ -53041,7 +53662,7 @@ return { [1]="map_boss_damage_+%" } }, - [2447]={ + [2472]={ [1]={ [1]={ limit={ @@ -53070,7 +53691,7 @@ return { [1]="map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant" } }, - [2448]={ + [2473]={ [1]={ [1]={ limit={ @@ -53099,7 +53720,7 @@ return { [1]="map_boss_life_+%_final_from_boss_drops_guardian_map_sextant" } }, - [2449]={ + [2474]={ [1]={ [1]={ limit={ @@ -53115,7 +53736,7 @@ return { [1]="map_on_complete_drop_additional_conqueror_map" } }, - [2450]={ + [2475]={ [1]={ [1]={ limit={ @@ -53131,7 +53752,7 @@ return { [1]="map_on_complete_drop_additional_elder_guardian_map" } }, - [2451]={ + [2476]={ [1]={ [1]={ limit={ @@ -53147,7 +53768,7 @@ return { [1]="map_on_complete_drop_additional_shaper_guardian_map" } }, - [2452]={ + [2477]={ [1]={ [1]={ limit={ @@ -53163,7 +53784,7 @@ return { [1]="map_boss_attack_and_cast_speed_+%" } }, - [2453]={ + [2478]={ [1]={ [1]={ limit={ @@ -53192,7 +53813,7 @@ return { [1]="map_boss_maximum_life_+%" } }, - [2454]={ + [2479]={ [1]={ [1]={ limit={ @@ -53221,7 +53842,7 @@ return { [1]="map_boss_area_of_effect_+%" } }, - [2455]={ + [2480]={ [1]={ [1]={ limit={ @@ -53250,7 +53871,7 @@ return { [1]="map_chest_item_quantity_+%" } }, - [2456]={ + [2481]={ [1]={ [1]={ limit={ @@ -53279,7 +53900,7 @@ return { [1]="map_chest_item_rarity_+%" } }, - [2457]={ + [2482]={ [1]={ [1]={ limit={ @@ -53295,7 +53916,7 @@ return { [1]="map_has_X_waves_of_monsters" } }, - [2458]={ + [2483]={ [1]={ [1]={ limit={ @@ -53311,7 +53932,7 @@ return { [1]="map_has_X_seconds_between_waves" } }, - [2459]={ + [2484]={ [1]={ [1]={ limit={ @@ -53327,7 +53948,7 @@ return { [1]="display_map_no_monsters" } }, - [2460]={ + [2485]={ [1]={ [1]={ [1]={ @@ -53364,7 +53985,7 @@ return { [1]="unique_facebreaker_unarmed_melee_physical_damage_+%_final" } }, - [2461]={ + [2486]={ [1]={ [1]={ [1]={ @@ -53389,7 +54010,7 @@ return { [2]="attack_maximum_added_melee_lightning_damage_while_unarmed" } }, - [2462]={ + [2487]={ [1]={ [1]={ [1]={ @@ -53414,7 +54035,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_unarmed" } }, - [2463]={ + [2488]={ [1]={ [1]={ limit={ @@ -53430,7 +54051,7 @@ return { [1]="life_reserved_by_stat_%" } }, - [2464]={ + [2489]={ [1]={ [1]={ limit={ @@ -53446,7 +54067,7 @@ return { [1]="cannot_have_life_leeched_from" } }, - [2465]={ + [2490]={ [1]={ [1]={ limit={ @@ -53462,7 +54083,7 @@ return { [1]="cannot_have_mana_leeched_from" } }, - [2466]={ + [2491]={ [1]={ [1]={ [1]={ @@ -53482,7 +54103,7 @@ return { [1]="unique_chin_sol_close_range_bow_damage_+%_final" } }, - [2467]={ + [2492]={ [1]={ [1]={ [1]={ @@ -53502,7 +54123,7 @@ return { [1]="unique_foulborn_chin_sol_not_close_range_bow_damage_+%_final" } }, - [2468]={ + [2493]={ [1]={ [1]={ [1]={ @@ -53526,7 +54147,7 @@ return { [1]="unique_chin_sol_close_range_knockback" } }, - [2469]={ + [2494]={ [1]={ [1]={ limit={ @@ -53542,7 +54163,7 @@ return { [1]="base_fire_hit_damage_taken_%_as_physical" } }, - [2470]={ + [2495]={ [1]={ [1]={ [1]={ @@ -53562,7 +54183,7 @@ return { [1]="base_fire_hit_damage_taken_%_as_physical_value_negated" } }, - [2471]={ + [2496]={ [1]={ [1]={ limit={ @@ -53578,7 +54199,7 @@ return { [1]="physical_damage_taken_%_as_fire" } }, - [2472]={ + [2497]={ [1]={ [1]={ limit={ @@ -53594,7 +54215,7 @@ return { [1]="physical_damage_taken_%_as_cold" } }, - [2473]={ + [2498]={ [1]={ [1]={ limit={ @@ -53610,7 +54231,7 @@ return { [1]="physical_damage_taken_%_as_lightning" } }, - [2474]={ + [2499]={ [1]={ [1]={ limit={ @@ -53626,7 +54247,7 @@ return { [1]="bleeding_damage_on_self_converted_to_chaos" } }, - [2475]={ + [2500]={ [1]={ [1]={ limit={ @@ -53642,7 +54263,7 @@ return { [1]="physical_damage_taken_%_as_chaos" } }, - [2476]={ + [2501]={ [1]={ [1]={ limit={ @@ -53658,7 +54279,7 @@ return { [1]="take_chaos_damage_from_ignite_instead" } }, - [2477]={ + [2502]={ [1]={ [1]={ limit={ @@ -53674,7 +54295,7 @@ return { [1]="elemental_damage_taken_%_as_chaos" } }, - [2478]={ + [2503]={ [1]={ [1]={ limit={ @@ -53690,7 +54311,7 @@ return { [1]="fire_damage_taken_%_causes_additional_physical_damage" } }, - [2479]={ + [2504]={ [1]={ [1]={ [1]={ @@ -53723,7 +54344,7 @@ return { [1]="damage_taken_goes_to_mana_%" } }, - [2480]={ + [2505]={ [1]={ [1]={ limit={ @@ -53752,7 +54373,7 @@ return { [1]="unique_quill_rain_damage_+%_final" } }, - [2481]={ + [2506]={ [1]={ [1]={ limit={ @@ -53768,7 +54389,7 @@ return { [1]="melee_physical_damage_taken_%_to_deal_to_attacker" } }, - [2482]={ + [2507]={ [1]={ [1]={ limit={ @@ -53784,7 +54405,23 @@ return { [1]="additional_block_%" } }, - [2483]={ + [2508]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% Chance to Block Spell Damage" + } + }, + stats={ + [1]="additional_spell_block_%" + } + }, + [2509]={ [1]={ [1]={ limit={ @@ -53800,7 +54437,7 @@ return { [1]="additional_block_chance_%_for_1_second_every_5_seconds" } }, - [2484]={ + [2510]={ [1]={ [1]={ limit={ @@ -53816,7 +54453,7 @@ return { [1]="with_bow_additional_block_%" } }, - [2485]={ + [2511]={ [1]={ [1]={ limit={ @@ -53832,7 +54469,7 @@ return { [1]="frozen_monsters_take_increased_damage" } }, - [2486]={ + [2512]={ [1]={ [1]={ [1]={ @@ -53869,7 +54506,7 @@ return { [1]="ailment_types_apply_damage_taken_+%" } }, - [2487]={ + [2513]={ [1]={ [1]={ limit={ @@ -53898,7 +54535,7 @@ return { [1]="physical_damage_reduction_rating_+%_against_projectiles" } }, - [2488]={ + [2514]={ [1]={ [1]={ limit={ @@ -53914,7 +54551,7 @@ return { [1]="additional_block_chance_against_projectiles_%" } }, - [2489]={ + [2515]={ [1]={ [1]={ limit={ @@ -53930,7 +54567,7 @@ return { [1]="base_cannot_leech" } }, - [2490]={ + [2516]={ [1]={ [1]={ [1]={ @@ -53950,7 +54587,7 @@ return { [1]="unique_dewaths_hide_physical_attack_damage_dealt_-" } }, - [2491]={ + [2517]={ [1]={ [1]={ limit={ @@ -53966,7 +54603,7 @@ return { [1]="energy_shield_%_gained_on_block" } }, - [2492]={ + [2518]={ [1]={ [1]={ limit={ @@ -53982,7 +54619,7 @@ return { [1]="energy_shield_%_of_armour_rating_gained_on_block" } }, - [2493]={ + [2519]={ [1]={ [1]={ [1]={ @@ -54002,7 +54639,7 @@ return { [1]="local_poison_on_hit" } }, - [2494]={ + [2520]={ [1]={ [1]={ limit={ @@ -54018,7 +54655,7 @@ return { [1]="local_all_damage_can_poison" } }, - [2495]={ + [2521]={ [1]={ [1]={ [1]={ @@ -54055,7 +54692,7 @@ return { [1]="spell_damage_taken_+%_when_on_low_mana" } }, - [2496]={ + [2522]={ [1]={ [1]={ [1]={ @@ -54068,7 +54705,7 @@ return { [2]="#" } }, - text="{0}% increased Global Critical Strike Chance while wielding a Staff" + text="{0}% increased Critical Strike Chance while wielding a Staff" }, [2]={ [1]={ @@ -54085,14 +54722,14 @@ return { [2]=-1 } }, - text="{0}% reduced Global Critical Strike Chance while wielding a Staff" + text="{0}% reduced Critical Strike Chance while wielding a Staff" } }, stats={ [1]="global_critical_strike_chance_+%_while_holding_staff" } }, - [2497]={ + [2523]={ [1]={ [1]={ [1]={ @@ -54105,14 +54742,14 @@ return { [2]="#" } }, - text="{0:+d}% to Global Critical Strike Multiplier while wielding a Staff" + text="{0:+d}% to Critical Strike Multiplier while wielding a Staff" } }, stats={ [1]="global_critical_strike_multiplier_+_while_holding_staff" } }, - [2498]={ + [2524]={ [1]={ [1]={ limit={ @@ -54141,7 +54778,7 @@ return { [1]="global_critical_strike_chance_+%_while_holding_bow" } }, - [2499]={ + [2525]={ [1]={ [1]={ limit={ @@ -54157,7 +54794,7 @@ return { [1]="global_critical_strike_multiplier_+_while_holding_bow" } }, - [2500]={ + [2526]={ [1]={ [1]={ limit={ @@ -54173,7 +54810,7 @@ return { [1]="reflect_curses" } }, - [2501]={ + [2527]={ [1]={ [1]={ limit={ @@ -54189,7 +54826,7 @@ return { [1]="reflect_hexes_chance_%" } }, - [2502]={ + [2528]={ [1]={ [1]={ [1]={ @@ -54209,7 +54846,7 @@ return { [1]="unaffected_by_curses" } }, - [2503]={ + [2529]={ [1]={ [1]={ limit={ @@ -54225,7 +54862,7 @@ return { [1]="attacks_deal_no_physical_damage" } }, - [2504]={ + [2530]={ [1]={ [1]={ [1]={ @@ -54245,7 +54882,7 @@ return { [1]="local_bleed_on_hit" } }, - [2505]={ + [2531]={ [1]={ [1]={ [1]={ @@ -54265,7 +54902,7 @@ return { [1]="local_chance_to_bleed_on_hit_25%" } }, - [2506]={ + [2532]={ [1]={ [1]={ [1]={ @@ -54285,7 +54922,7 @@ return { [1]="local_chance_to_bleed_on_hit_50%" } }, - [2507]={ + [2533]={ [1]={ [1]={ [1]={ @@ -54305,7 +54942,7 @@ return { [1]="local_chance_to_bleed_on_hit_%" } }, - [2508]={ + [2534]={ [1]={ [1]={ [1]={ @@ -54325,7 +54962,7 @@ return { [1]="attacks_bleed_on_stun" } }, - [2509]={ + [2535]={ [1]={ [1]={ [1]={ @@ -54345,7 +54982,7 @@ return { [1]="bleed_on_crit_%_with_attacks" } }, - [2510]={ + [2536]={ [1]={ [1]={ [1]={ @@ -54378,7 +55015,7 @@ return { [1]="bleed_on_melee_crit_chance_%" } }, - [2511]={ + [2537]={ [1]={ [1]={ [1]={ @@ -54411,7 +55048,7 @@ return { [1]="bleed_on_melee_attack_chance_%" } }, - [2512]={ + [2538]={ [1]={ [1]={ [1]={ @@ -54444,7 +55081,7 @@ return { [1]="bleed_on_bow_attack_chance_%" } }, - [2513]={ + [2539]={ [1]={ [1]={ limit={ @@ -54537,7 +55174,7 @@ return { [3]="cannot_cause_bleeding" } }, - [2514]={ + [2540]={ [1]={ [1]={ [1]={ @@ -54570,7 +55207,7 @@ return { [1]="minion_bleed_on_hit_with_attacks_%" } }, - [2515]={ + [2541]={ [1]={ [1]={ limit={ @@ -54599,7 +55236,7 @@ return { [1]="attack_damage_vs_bleeding_enemies_+%" } }, - [2516]={ + [2542]={ [1]={ [1]={ limit={ @@ -54628,7 +55265,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [2517]={ + [2543]={ [1]={ [1]={ limit={ @@ -54657,7 +55294,7 @@ return { [1]="enemies_you_bleed_grant_flask_charges_+%" } }, - [2518]={ + [2544]={ [1]={ [1]={ limit={ @@ -54678,7 +55315,7 @@ return { [2]="maximum_added_physical_damage_vs_bleeding_enemies" } }, - [2519]={ + [2545]={ [1]={ [1]={ limit={ @@ -54694,7 +55331,7 @@ return { [1]="display_golden_radiance" } }, - [2520]={ + [2546]={ [1]={ [1]={ limit={ @@ -54710,7 +55347,7 @@ return { [1]="disable_skill_if_melee_attack" } }, - [2521]={ + [2547]={ [1]={ [1]={ [1]={ @@ -54747,7 +55384,7 @@ return { [1]="local_stun_threshold_reduction_+%" } }, - [2522]={ + [2548]={ [1]={ [1]={ limit={ @@ -54763,7 +55400,7 @@ return { [1]="light_radius_additive_modifiers_apply_to_area_%_value" } }, - [2523]={ + [2549]={ [1]={ [1]={ limit={ @@ -54779,7 +55416,7 @@ return { [1]="light_radius_additive_modifiers_apply_to_damage" } }, - [2524]={ + [2550]={ [1]={ [1]={ limit={ @@ -54808,7 +55445,7 @@ return { [1]="light_radius_+%" } }, - [2525]={ + [2551]={ [1]={ [1]={ limit={ @@ -54837,7 +55474,7 @@ return { [1]="virtual_light_radius_+%" } }, - [2526]={ + [2552]={ [1]={ [1]={ [1]={ @@ -54857,7 +55494,7 @@ return { [1]="gain_phasing_while_at_maximum_frenzy_charges" } }, - [2527]={ + [2553]={ [1]={ [1]={ [1]={ @@ -54877,7 +55514,7 @@ return { [1]="gain_phasing_while_you_have_onslaught" } }, - [2528]={ + [2554]={ [1]={ [1]={ [1]={ @@ -54901,7 +55538,7 @@ return { [1]="gain_phasing_for_4_seconds_on_begin_es_recharge" } }, - [2529]={ + [2555]={ [1]={ [1]={ limit={ @@ -54917,7 +55554,7 @@ return { [1]="evasion_rating_+%_while_phasing" } }, - [2530]={ + [2556]={ [1]={ [1]={ limit={ @@ -54933,7 +55570,7 @@ return { [1]="item_found_rarity_+%_while_phasing" } }, - [2531]={ + [2557]={ [1]={ [1]={ limit={ @@ -54962,7 +55599,7 @@ return { [1]="mana_regeneration_rate_+%_while_phasing" } }, - [2532]={ + [2558]={ [1]={ [1]={ limit={ @@ -54991,7 +55628,7 @@ return { [1]="mana_regeneration_rate_+%_while_shocked" } }, - [2533]={ + [2559]={ [1]={ [1]={ limit={ @@ -55020,7 +55657,7 @@ return { [1]="light_radius_+%_while_phased" } }, - [2534]={ + [2560]={ [1]={ [1]={ limit={ @@ -55036,7 +55673,7 @@ return { [1]="chaos_damage_does_not_bypass_energy_shield" } }, - [2535]={ + [2561]={ [1]={ [1]={ [1]={ @@ -55056,7 +55693,7 @@ return { [1]="ground_tar_on_take_crit_base_area_of_effect_radius" } }, - [2536]={ + [2562]={ [1]={ [1]={ limit={ @@ -55072,7 +55709,7 @@ return { [1]="random_curse_on_hit_%" } }, - [2537]={ + [2563]={ [1]={ [1]={ [1]={ @@ -55105,7 +55742,7 @@ return { [1]="curse_on_hit_%_enfeeble" } }, - [2538]={ + [2564]={ [1]={ [1]={ [1]={ @@ -55138,7 +55775,7 @@ return { [1]="curse_on_hit_%_conductivity" } }, - [2539]={ + [2565]={ [1]={ [1]={ [1]={ @@ -55171,7 +55808,7 @@ return { [1]="curse_on_hit_%_despair" } }, - [2540]={ + [2566]={ [1]={ [1]={ [1]={ @@ -55204,7 +55841,7 @@ return { [1]="curse_on_hit_%_elemental_weakness" } }, - [2541]={ + [2567]={ [1]={ [1]={ [1]={ @@ -55237,7 +55874,7 @@ return { [1]="curse_on_hit_%_flammability" } }, - [2542]={ + [2568]={ [1]={ [1]={ [1]={ @@ -55270,7 +55907,7 @@ return { [1]="curse_on_hit_%_frostbite" } }, - [2543]={ + [2569]={ [1]={ [1]={ [1]={ @@ -55303,7 +55940,7 @@ return { [1]="curse_on_hit_%_temporal_chains" } }, - [2544]={ + [2570]={ [1]={ [1]={ [1]={ @@ -55336,7 +55973,7 @@ return { [1]="curse_on_hit_%_vulnerability" } }, - [2545]={ + [2571]={ [1]={ [1]={ [1]={ @@ -55369,7 +56006,7 @@ return { [1]="curse_with_enfeeble_on_hit_%_against_uncursed_enemies" } }, - [2546]={ + [2572]={ [1]={ [1]={ [1]={ @@ -55389,7 +56026,7 @@ return { [1]="curse_on_hit_level_temporal_chains" } }, - [2547]={ + [2573]={ [1]={ [1]={ [1]={ @@ -55409,7 +56046,7 @@ return { [1]="curse_on_hit_level_vulnerability" } }, - [2548]={ + [2574]={ [1]={ [1]={ [1]={ @@ -55442,7 +56079,7 @@ return { [1]="curse_on_hit_level_10_vulnerability_%" } }, - [2549]={ + [2575]={ [1]={ [1]={ [1]={ @@ -55462,7 +56099,7 @@ return { [1]="curse_on_hit_level_elemental_weakness" } }, - [2550]={ + [2576]={ [1]={ [1]={ [1]={ @@ -55482,7 +56119,7 @@ return { [1]="curse_on_hit_level_cold_weakness" } }, - [2551]={ + [2577]={ [1]={ [1]={ [1]={ @@ -55502,7 +56139,7 @@ return { [1]="curse_on_hit_level_conductivity" } }, - [2552]={ + [2578]={ [1]={ [1]={ [1]={ @@ -55522,7 +56159,7 @@ return { [1]="curse_on_hit_level_despair" } }, - [2553]={ + [2579]={ [1]={ [1]={ [1]={ @@ -55542,7 +56179,7 @@ return { [1]="curse_on_hit_level_enfeeble" } }, - [2554]={ + [2580]={ [1]={ [1]={ [1]={ @@ -55562,7 +56199,7 @@ return { [1]="curse_on_hit_level_flammability" } }, - [2555]={ + [2581]={ [1]={ [1]={ [1]={ @@ -55582,7 +56219,7 @@ return { [1]="curse_on_hit_level_frostbite" } }, - [2556]={ + [2582]={ [1]={ [1]={ [1]={ @@ -55602,7 +56239,7 @@ return { [1]="spells_have_culling_strike" } }, - [2557]={ + [2583]={ [1]={ [1]={ [1]={ @@ -55622,7 +56259,7 @@ return { [1]="local_display_aura_allies_have_culling_strike" } }, - [2558]={ + [2584]={ [1]={ [1]={ [1]={ @@ -55646,7 +56283,7 @@ return { [1]="melee_range_+" } }, - [2559]={ + [2585]={ [1]={ [1]={ [1]={ @@ -55683,7 +56320,7 @@ return { [1]="evasion_rating_+%_when_on_low_life" } }, - [2560]={ + [2586]={ [1]={ [1]={ limit={ @@ -55699,7 +56336,7 @@ return { [1]="base_life_leech_is_instant" } }, - [2561]={ + [2587]={ [1]={ [1]={ limit={ @@ -55715,7 +56352,7 @@ return { [1]="local_life_leech_is_instant" } }, - [2562]={ + [2588]={ [1]={ [1]={ limit={ @@ -55731,7 +56368,7 @@ return { [1]="base_leech_is_instant_on_critical" } }, - [2563]={ + [2589]={ [1]={ [1]={ [1]={ @@ -55751,7 +56388,7 @@ return { [1]="unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit" } }, - [2564]={ + [2590]={ [1]={ [1]={ limit={ @@ -55767,7 +56404,7 @@ return { [1]="display_map_restless_dead" } }, - [2565]={ + [2591]={ [1]={ [1]={ limit={ @@ -55783,7 +56420,7 @@ return { [1]="display_map_larger_maze" } }, - [2566]={ + [2592]={ [1]={ [1]={ limit={ @@ -55799,7 +56436,7 @@ return { [1]="display_map_large_chest" } }, - [2567]={ + [2593]={ [1]={ [1]={ limit={ @@ -55828,7 +56465,7 @@ return { [1]="area_of_effect_+%_per_20_int" } }, - [2568]={ + [2594]={ [1]={ [1]={ limit={ @@ -55857,7 +56494,7 @@ return { [1]="attack_speed_+%_per_10_dex" } }, - [2569]={ + [2595]={ [1]={ [1]={ limit={ @@ -55886,7 +56523,7 @@ return { [1]="physical_weapon_damage_+%_per_10_str" } }, - [2570]={ + [2596]={ [1]={ [1]={ [1]={ @@ -55906,7 +56543,7 @@ return { [1]="spell_suppression_chance_%_per_frenzy_charge" } }, - [2571]={ + [2597]={ [1]={ [1]={ limit={ @@ -55922,7 +56559,7 @@ return { [1]="gain_power_charge_per_enemy_you_crit" } }, - [2572]={ + [2598]={ [1]={ [1]={ limit={ @@ -55951,7 +56588,7 @@ return { [1]="burning_damage_taken_+%" } }, - [2573]={ + [2599]={ [1]={ [1]={ limit={ @@ -55967,7 +56604,7 @@ return { [1]="cannot_increase_rarity_of_dropped_items" } }, - [2574]={ + [2600]={ [1]={ [1]={ limit={ @@ -55983,7 +56620,7 @@ return { [1]="cannot_increase_quantity_of_dropped_items" } }, - [2575]={ + [2601]={ [1]={ [1]={ limit={ @@ -55999,7 +56636,7 @@ return { [1]="randomly_cursed_when_totems_die_curse_level" } }, - [2576]={ + [2602]={ [1]={ [1]={ [1]={ @@ -56036,7 +56673,7 @@ return { [1]="global_item_attribute_requirements_+%" } }, - [2577]={ + [2603]={ [1]={ [1]={ limit={ @@ -56052,7 +56689,7 @@ return { [1]="enemy_hits_roll_low_damage" } }, - [2578]={ + [2604]={ [1]={ [1]={ limit={ @@ -56068,7 +56705,7 @@ return { [1]="unique_loris_lantern_golden_light" } }, - [2579]={ + [2605]={ [1]={ [1]={ [1]={ @@ -56088,7 +56725,7 @@ return { [1]="chaos_damage_resistance_%_when_on_low_life" } }, - [2580]={ + [2606]={ [1]={ [1]={ [1]={ @@ -56133,7 +56770,7 @@ return { [1]="enemy_extra_damage_rolls_when_on_low_life" } }, - [2581]={ + [2607]={ [1]={ [1]={ limit={ @@ -56154,7 +56791,7 @@ return { [2]="base_maximum_lightning_damage_on_charge_expiry" } }, - [2582]={ + [2608]={ [1]={ [1]={ limit={ @@ -56170,7 +56807,7 @@ return { [1]="item_drops_on_death" } }, - [2583]={ + [2609]={ [1]={ [1]={ limit={ @@ -56186,7 +56823,7 @@ return { [1]="local_item_drops_on_death_if_equipped_by_animate_armour" } }, - [2584]={ + [2610]={ [1]={ [1]={ limit={ @@ -56202,7 +56839,7 @@ return { [1]="never_ignite" } }, - [2585]={ + [2611]={ [1]={ [1]={ limit={ @@ -56218,7 +56855,7 @@ return { [1]="never_freeze" } }, - [2586]={ + [2612]={ [1]={ [1]={ limit={ @@ -56234,7 +56871,7 @@ return { [1]="never_freeze_or_chill" } }, - [2587]={ + [2613]={ [1]={ [1]={ limit={ @@ -56250,7 +56887,7 @@ return { [1]="never_shock" } }, - [2588]={ + [2614]={ [1]={ [1]={ [1]={ @@ -56270,7 +56907,7 @@ return { [1]="faster_burn_%" } }, - [2589]={ + [2615]={ [1]={ [1]={ limit={ @@ -56286,7 +56923,7 @@ return { [1]="ignite_slower_burn_%" } }, - [2590]={ + [2616]={ [1]={ [1]={ [1]={ @@ -56306,7 +56943,7 @@ return { [1]="faster_burn_from_attacks_%" } }, - [2591]={ + [2617]={ [1]={ [1]={ limit={ @@ -56322,7 +56959,7 @@ return { [1]="base_cannot_leech_life" } }, - [2592]={ + [2618]={ [1]={ [1]={ limit={ @@ -56338,7 +56975,7 @@ return { [1]="base_cannot_leech_mana" } }, - [2593]={ + [2619]={ [1]={ [1]={ limit={ @@ -56354,7 +56991,7 @@ return { [1]="cannot_leech_or_regenerate_mana" } }, - [2594]={ + [2620]={ [1]={ [1]={ [1]={ @@ -56378,7 +57015,7 @@ return { [1]="cannot_leech_when_on_low_life" } }, - [2595]={ + [2621]={ [1]={ [1]={ limit={ @@ -56403,7 +57040,7 @@ return { [1]="base_energy_shield_gained_on_enemy_death" } }, - [2596]={ + [2622]={ [1]={ [1]={ limit={ @@ -56419,7 +57056,7 @@ return { [1]="gain_X_energy_shield_on_killing_shocked_enemy" } }, - [2597]={ + [2623]={ [1]={ [1]={ [1]={ @@ -56439,7 +57076,7 @@ return { [1]="consecrate_on_block_%_chance_to_create" } }, - [2598]={ + [2624]={ [1]={ [1]={ [1]={ @@ -56459,7 +57096,7 @@ return { [1]="desecrate_on_block_%_chance_to_create" } }, - [2599]={ + [2625]={ [1]={ [1]={ limit={ @@ -56475,7 +57112,7 @@ return { [1]="avoid_blind_%" } }, - [2600]={ + [2626]={ [1]={ [1]={ [1]={ @@ -56508,7 +57145,7 @@ return { [1]="ground_smoke_when_hit_%" } }, - [2601]={ + [2627]={ [1]={ [1]={ limit={ @@ -56533,7 +57170,7 @@ return { [1]="shocked_ground_when_hit_%" } }, - [2602]={ + [2628]={ [1]={ [1]={ limit={ @@ -56562,7 +57199,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [2603]={ + [2629]={ [1]={ [1]={ limit={ @@ -56578,7 +57215,7 @@ return { [1]="totem_skill_cast_speed_+%" } }, - [2604]={ + [2630]={ [1]={ [1]={ limit={ @@ -56594,7 +57231,7 @@ return { [1]="totem_skill_attack_speed_+%" } }, - [2605]={ + [2631]={ [1]={ [1]={ limit={ @@ -56610,7 +57247,7 @@ return { [1]="totem_skill_area_of_effect_+%" } }, - [2606]={ + [2632]={ [1]={ [1]={ [1]={ @@ -56634,7 +57271,7 @@ return { [1]="life_leech_from_skills_used_by_totems_permyriad" } }, - [2607]={ + [2633]={ [1]={ [1]={ limit={ @@ -56650,7 +57287,7 @@ return { [1]="disable_chest_slot" } }, - [2608]={ + [2634]={ [1]={ [1]={ [1]={ @@ -56687,7 +57324,7 @@ return { [1]="physical_claw_damage_+%_when_on_low_life" } }, - [2609]={ + [2635]={ [1]={ [1]={ [1]={ @@ -56724,7 +57361,7 @@ return { [1]="accuracy_rating_+%_when_on_low_life" } }, - [2610]={ + [2636]={ [1]={ [1]={ limit={ @@ -56762,7 +57399,7 @@ return { [2]="maximum_physical_damage_to_return_on_block" } }, - [2611]={ + [2637]={ [1]={ [1]={ limit={ @@ -56796,7 +57433,7 @@ return { [2]="maximum_lightning_damage_to_return_on_block" } }, - [2612]={ + [2638]={ [1]={ [1]={ limit={ @@ -56829,7 +57466,7 @@ return { [1]="number_of_zombies_allowed_+%" } }, - [2613]={ + [2639]={ [1]={ [1]={ limit={ @@ -56845,7 +57482,7 @@ return { [1]="zombie_maximum_life_+" } }, - [2614]={ + [2640]={ [1]={ [1]={ limit={ @@ -56861,7 +57498,7 @@ return { [1]="zombie_chaos_elemental_damage_resistance_%" } }, - [2615]={ + [2641]={ [1]={ [1]={ limit={ @@ -56877,7 +57514,7 @@ return { [1]="chill_and_freeze_duration_based_on_%_energy_shield" } }, - [2616]={ + [2642]={ [1]={ [1]={ [1]={ @@ -56897,7 +57534,7 @@ return { [1]="intelligence_+%_per_equipped_unique" } }, - [2617]={ + [2643]={ [1]={ [1]={ limit={ @@ -56913,7 +57550,7 @@ return { [1]="ignited_enemies_explode_on_kill" } }, - [2618]={ + [2644]={ [1]={ [1]={ limit={ @@ -56929,7 +57566,7 @@ return { [1]="can_inflict_multiple_ignites" } }, - [2619]={ + [2645]={ [1]={ [1]={ limit={ @@ -56945,7 +57582,7 @@ return { [1]="additional_scroll_of_wisdom_drop_chance_%" } }, - [2620]={ + [2646]={ [1]={ [1]={ limit={ @@ -56974,7 +57611,7 @@ return { [1]="curse_effect_+%" } }, - [2621]={ + [2647]={ [1]={ [1]={ limit={ @@ -57003,7 +57640,7 @@ return { [1]="curse_pillar_curse_effect_+%_final" } }, - [2622]={ + [2648]={ [1]={ [1]={ limit={ @@ -57032,7 +57669,7 @@ return { [1]="mark_skills_curse_effect_+%" } }, - [2623]={ + [2649]={ [1]={ [1]={ limit={ @@ -57048,7 +57685,7 @@ return { [1]="targets_are_unaffected_by_your_hexes" } }, - [2624]={ + [2650]={ [1]={ [1]={ limit={ @@ -57064,7 +57701,7 @@ return { [1]="ignore_hexproof" } }, - [2625]={ + [2651]={ [1]={ [1]={ limit={ @@ -57080,7 +57717,7 @@ return { [1]="chaos_weakness_ignores_hexproof" } }, - [2626]={ + [2652]={ [1]={ [1]={ limit={ @@ -57096,7 +57733,7 @@ return { [1]="cold_weakness_ignores_hexproof" } }, - [2627]={ + [2653]={ [1]={ [1]={ limit={ @@ -57112,7 +57749,7 @@ return { [1]="elemental_weakness_ignores_hexproof" } }, - [2628]={ + [2654]={ [1]={ [1]={ limit={ @@ -57128,7 +57765,7 @@ return { [1]="enfeeble_ignores_hexproof" } }, - [2629]={ + [2655]={ [1]={ [1]={ limit={ @@ -57144,7 +57781,7 @@ return { [1]="fire_weakness_ignores_hexproof" } }, - [2630]={ + [2656]={ [1]={ [1]={ limit={ @@ -57160,7 +57797,7 @@ return { [1]="lightning_weakness_ignores_hexproof" } }, - [2631]={ + [2657]={ [1]={ [1]={ limit={ @@ -57176,7 +57813,7 @@ return { [1]="punishment_ignores_hexproof" } }, - [2632]={ + [2658]={ [1]={ [1]={ limit={ @@ -57192,7 +57829,7 @@ return { [1]="temporal_chains_ignores_hexproof" } }, - [2633]={ + [2659]={ [1]={ [1]={ limit={ @@ -57208,7 +57845,7 @@ return { [1]="vulnerability_ignores_hexproof" } }, - [2634]={ + [2660]={ [1]={ [1]={ limit={ @@ -57237,7 +57874,7 @@ return { [1]="movement_velocity_+%_while_phasing" } }, - [2635]={ + [2661]={ [1]={ [1]={ limit={ @@ -57253,7 +57890,7 @@ return { [1]="map_spawn_exile_per_area_%" } }, - [2636]={ + [2662]={ [1]={ [1]={ limit={ @@ -57269,7 +57906,7 @@ return { [1]="map_ambush_chests" } }, - [2637]={ + [2663]={ [1]={ [1]={ limit={ @@ -57285,7 +57922,7 @@ return { [1]="map_breach_rules" } }, - [2638]={ + [2664]={ [1]={ [1]={ limit={ @@ -57301,7 +57938,7 @@ return { [1]="map_spawn_betrayals" } }, - [2639]={ + [2665]={ [1]={ [1]={ limit={ @@ -57317,7 +57954,7 @@ return { [1]="map_breach_has_boss" } }, - [2640]={ + [2666]={ [1]={ [1]={ limit={ @@ -57342,7 +57979,7 @@ return { [1]="map_contains_an_unspecified_breach" } }, - [2641]={ + [2667]={ [1]={ [1]={ limit={ @@ -57358,7 +57995,7 @@ return { [1]="map_reliquary_must_complete_unstable_breaches" } }, - [2642]={ + [2668]={ [1]={ [1]={ limit={ @@ -57374,7 +58011,7 @@ return { [1]="map_unstable_breach_spawns_boss" } }, - [2643]={ + [2669]={ [1]={ [1]={ limit={ @@ -57390,7 +58027,7 @@ return { [1]="map_invasion_monster_packs" } }, - [2644]={ + [2670]={ [1]={ [1]={ limit={ @@ -57415,7 +58052,7 @@ return { [1]="map_num_extra_invasion_bosses" } }, - [2645]={ + [2671]={ [1]={ [1]={ limit={ @@ -57431,7 +58068,7 @@ return { [1]="map_spawn_tormented_spirits" } }, - [2646]={ + [2672]={ [1]={ [1]={ limit={ @@ -57447,7 +58084,7 @@ return { [1]="map_always_has_weather" } }, - [2647]={ + [2673]={ [1]={ [1]={ limit={ @@ -57463,7 +58100,7 @@ return { [1]="map_allow_shrines" } }, - [2648]={ + [2674]={ [1]={ [1]={ [1]={ @@ -57483,7 +58120,7 @@ return { [1]="map_players_gain_rampage_stacks" } }, - [2649]={ + [2675]={ [1]={ [1]={ limit={ @@ -57499,7 +58136,7 @@ return { [1]="map_beyond_demon_desecrate_on_spawn_damage_per_second" } }, - [2650]={ + [2676]={ [1]={ [1]={ limit={ @@ -57515,7 +58152,7 @@ return { [1]="map_beyond_rules" } }, - [2651]={ + [2677]={ [1]={ [1]={ limit={ @@ -57544,7 +58181,7 @@ return { [1]="movement_velocity_+%_while_cursed" } }, - [2652]={ + [2678]={ [1]={ [1]={ [1]={ @@ -57564,7 +58201,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_frenzy_charge" } }, - [2653]={ + [2679]={ [1]={ [1]={ limit={ @@ -57589,7 +58226,7 @@ return { [1]="endurance_charge_on_kill_%" } }, - [2654]={ + [2680]={ [1]={ [1]={ limit={ @@ -57614,7 +58251,7 @@ return { [1]="lose_endurance_charge_on_kill_%" } }, - [2655]={ + [2681]={ [1]={ [1]={ limit={ @@ -57639,7 +58276,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance" } }, - [2656]={ + [2682]={ [1]={ [1]={ limit={ @@ -57655,7 +58292,7 @@ return { [1]="lose_frenzy_charge_on_kill_%" } }, - [2657]={ + [2683]={ [1]={ [1]={ limit={ @@ -57680,7 +58317,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [2658]={ + [2684]={ [1]={ [1]={ limit={ @@ -57696,7 +58333,7 @@ return { [1]="lose_power_charge_on_kill_%" } }, - [2659]={ + [2685]={ [1]={ [1]={ limit={ @@ -57712,7 +58349,7 @@ return { [1]="gain_frenzy_and_power_charge_on_kill_%" } }, - [2660]={ + [2686]={ [1]={ [1]={ limit={ @@ -57728,7 +58365,7 @@ return { [1]="gain_endurance_charge_on_power_charge_expiry" } }, - [2661]={ + [2687]={ [1]={ [1]={ limit={ @@ -57744,7 +58381,7 @@ return { [1]="enemy_on_low_life_damage_taken_+%_per_frenzy_charge" } }, - [2662]={ + [2688]={ [1]={ [1]={ limit={ @@ -57773,7 +58410,7 @@ return { [1]="melee_damage_+%_when_on_full_life" } }, - [2663]={ + [2689]={ [1]={ [1]={ [1]={ @@ -57806,7 +58443,7 @@ return { [1]="consecrate_on_crit_%_chance_to_create" } }, - [2664]={ + [2690]={ [1]={ [1]={ limit={ @@ -57822,7 +58459,7 @@ return { [1]="projectile_speed_+%_per_frenzy_charge" } }, - [2665]={ + [2691]={ [1]={ [1]={ limit={ @@ -57838,7 +58475,7 @@ return { [1]="projectile_damage_+%_per_power_charge" } }, - [2666]={ + [2692]={ [1]={ [1]={ limit={ @@ -57867,7 +58504,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_on_crit" } }, - [2667]={ + [2693]={ [1]={ [1]={ [1]={ @@ -57891,7 +58528,7 @@ return { [1]="onslaught_buff_duration_on_kill_ms" } }, - [2668]={ + [2694]={ [1]={ [1]={ [1]={ @@ -57915,7 +58552,7 @@ return { [1]="onslaught_buff_duration_on_killing_taunted_enemy_ms" } }, - [2669]={ + [2695]={ [1]={ [1]={ [1]={ @@ -57935,7 +58572,7 @@ return { [1]="base_energy_shield_regeneration_rate_per_minute" } }, - [2670]={ + [2696]={ [1]={ [1]={ [1]={ @@ -57955,7 +58592,7 @@ return { [1]="base_energy_shield_regeneration_rate_per_minute_%" } }, - [2671]={ + [2697]={ [1]={ [1]={ [1]={ @@ -57975,7 +58612,7 @@ return { [1]="energy_shield_degeneration_%_per_minute_not_in_grace" } }, - [2672]={ + [2698]={ [1]={ [1]={ limit={ @@ -57991,7 +58628,7 @@ return { [1]="local_right_ring_slot_no_mana_regeneration" } }, - [2673]={ + [2699]={ [1]={ [1]={ [1]={ @@ -58011,7 +58648,7 @@ return { [1]="local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%" } }, - [2674]={ + [2700]={ [1]={ [1]={ limit={ @@ -58027,7 +58664,7 @@ return { [1]="local_right_ring_slot_maximum_mana" } }, - [2675]={ + [2701]={ [1]={ [1]={ limit={ @@ -58043,7 +58680,7 @@ return { [1]="local_right_ring_slot_physical_damage_reduction_rating" } }, - [2676]={ + [2702]={ [1]={ [1]={ limit={ @@ -58059,7 +58696,7 @@ return { [1]="local_right_ring_slot_energy_shield" } }, - [2677]={ + [2703]={ [1]={ [1]={ limit={ @@ -58075,7 +58712,7 @@ return { [1]="local_left_ring_slot_no_energy_shield_recharge_or_regeneration" } }, - [2678]={ + [2704]={ [1]={ [1]={ [1]={ @@ -58112,7 +58749,7 @@ return { [1]="local_left_ring_slot_base_all_ailment_duration_on_self_+%" } }, - [2679]={ + [2705]={ [1]={ [1]={ limit={ @@ -58128,7 +58765,7 @@ return { [1]="local_left_ring_slot_cold_damage_taken_%_as_fire" } }, - [2680]={ + [2706]={ [1]={ [1]={ limit={ @@ -58157,7 +58794,7 @@ return { [1]="local_left_ring_slot_curse_effect_on_self_+%" } }, - [2681]={ + [2707]={ [1]={ [1]={ limit={ @@ -58173,7 +58810,7 @@ return { [1]="local_left_ring_slot_fire_damage_taken_%_as_lightning" } }, - [2682]={ + [2708]={ [1]={ [1]={ limit={ @@ -58189,7 +58826,7 @@ return { [1]="local_left_ring_slot_lightning_damage_taken_%_as_cold" } }, - [2683]={ + [2709]={ [1]={ [1]={ [1]={ @@ -58209,7 +58846,7 @@ return { [1]="local_left_ring_slot_mana_regeneration_rate_per_minute" } }, - [2684]={ + [2710]={ [1]={ [1]={ limit={ @@ -58225,7 +58862,7 @@ return { [1]="local_left_ring_slot_mana_regeneration_rate_+%" } }, - [2685]={ + [2711]={ [1]={ [1]={ limit={ @@ -58254,7 +58891,7 @@ return { [1]="local_left_ring_slot_minion_damage_taken_+%" } }, - [2686]={ + [2712]={ [1]={ [1]={ limit={ @@ -58283,7 +58920,7 @@ return { [1]="local_left_ring_slot_skill_effect_duration_+%" } }, - [2687]={ + [2713]={ [1]={ [1]={ [1]={ @@ -58320,7 +58957,7 @@ return { [1]="local_right_ring_slot_base_all_ailment_duration_on_self_+%" } }, - [2688]={ + [2714]={ [1]={ [1]={ limit={ @@ -58336,7 +58973,7 @@ return { [1]="local_right_ring_slot_cold_damage_taken_%_as_lightning" } }, - [2689]={ + [2715]={ [1]={ [1]={ limit={ @@ -58365,7 +59002,7 @@ return { [1]="local_right_ring_slot_curse_effect_on_self_+%" } }, - [2690]={ + [2716]={ [1]={ [1]={ limit={ @@ -58381,7 +59018,7 @@ return { [1]="local_right_ring_slot_fire_damage_taken_%_as_cold" } }, - [2691]={ + [2717]={ [1]={ [1]={ limit={ @@ -58397,7 +59034,7 @@ return { [1]="local_right_ring_slot_lightning_damage_taken_%_as_fire" } }, - [2692]={ + [2718]={ [1]={ [1]={ limit={ @@ -58426,7 +59063,7 @@ return { [1]="local_right_ring_slot_minion_damage_taken_+%" } }, - [2693]={ + [2719]={ [1]={ [1]={ limit={ @@ -58455,7 +59092,7 @@ return { [1]="local_right_ring_slot_skill_effect_duration_+%" } }, - [2694]={ + [2720]={ [1]={ [1]={ limit={ @@ -58471,7 +59108,7 @@ return { [1]="local_left_ring_slot_maximum_mana" } }, - [2695]={ + [2721]={ [1]={ [1]={ limit={ @@ -58487,7 +59124,7 @@ return { [1]="local_left_ring_slot_energy_shield" } }, - [2696]={ + [2722]={ [1]={ [1]={ limit={ @@ -58503,7 +59140,7 @@ return { [1]="local_left_ring_slot_evasion_rating" } }, - [2697]={ + [2723]={ [1]={ [1]={ limit={ @@ -58519,7 +59156,7 @@ return { [1]="no_energy_shield_recharge_or_regeneration" } }, - [2698]={ + [2724]={ [1]={ [1]={ [1]={ @@ -58552,7 +59189,23 @@ return { [1]="extra_critical_rolls" } }, - [2699]={ + [2725]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Movement Speed per 1800 Evasion Rating, up to 25%" + } + }, + stats={ + [1]="movement_velocity_+x%_per_1800_evasion_rating_up_to_25%" + } + }, + [2726]={ [1]={ [1]={ limit={ @@ -58568,7 +59221,7 @@ return { [1]="movement_velocity_+1%_per_X_evasion_rating" } }, - [2700]={ + [2727]={ [1]={ [1]={ limit={ @@ -58584,7 +59237,7 @@ return { [1]="cannot_be_killed_by_elemental_reflect" } }, - [2701]={ + [2728]={ [1]={ [1]={ limit={ @@ -58600,7 +59253,7 @@ return { [1]="cannot_freeze_shock_ignite_on_critical" } }, - [2702]={ + [2729]={ [1]={ [1]={ limit={ @@ -58616,7 +59269,7 @@ return { [1]="no_critical_strike_multiplier" } }, - [2703]={ + [2730]={ [1]={ [1]={ [1]={ @@ -58640,7 +59293,7 @@ return { [1]="onslaught_on_crit_duration_ms" } }, - [2704]={ + [2731]={ [1]={ [1]={ limit={ @@ -58669,7 +59322,7 @@ return { [1]="zombie_scale_+%" } }, - [2705]={ + [2732]={ [1]={ [1]={ limit={ @@ -58698,7 +59351,7 @@ return { [1]="zombie_physical_damage_+%" } }, - [2706]={ + [2733]={ [1]={ [1]={ limit={ @@ -58714,7 +59367,7 @@ return { [1]="zombie_explode_on_kill_%_fire_damage_to_deal" } }, - [2707]={ + [2734]={ [1]={ [1]={ limit={ @@ -58743,7 +59396,7 @@ return { [1]="weapon_elemental_damage_+%_per_power_charge" } }, - [2708]={ + [2735]={ [1]={ [1]={ limit={ @@ -58759,7 +59412,7 @@ return { [1]="cannot_cast_curses" } }, - [2709]={ + [2736]={ [1]={ [1]={ limit={ @@ -58775,89 +59428,87 @@ return { [1]="spell_damage_modifiers_apply_to_attack_damage" } }, - [2710]={ + [2737]={ [1]={ [1]={ + [1]={ + k="reminderstring", + v="ReminderTextArcaneMight" + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Increases and Reductions to Spell Damage also apply to Attacks" + text="Attacks have 100% Arcane Might" } }, stats={ [1]="additive_spell_damage_modifiers_apply_to_attack_damage" } }, - [2711]={ + [2738]={ [1]={ [1]={ + [1]={ + k="reminderstring", + v="ReminderTextArcaneMight" + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value" + text="Attacks have 150% Arcane Might" } }, stats={ [1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value" } }, - [2712]={ + [2739]={ [1]={ [1]={ - limit={ - [1]={ - [1]=100, - [2]=100 - } + [1]={ + k="reminderstring", + v="ReminderTextArcaneMight" }, - text="Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand" - }, - [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Increases and Reductions to Spell Damage also apply to Attacks at {0}% of their value while wielding a Wand" + text="Attacks have {0}% Arcane Might while wielding a Wand" } }, stats={ [1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand" } }, - [2713]={ + [2740]={ [1]={ [1]={ - limit={ - [1]={ - [1]=100, - [2]=100 - } + [1]={ + k="reminderstring", + v="ReminderTextArcaneMight" }, - text="Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills" - }, - [2]={ limit={ [1]={ [1]="#", [2]="#" } }, - text="Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at {0}% of their value" + text="Retaliation Skills have {0}% Arcane Might" } }, stats={ [1]="additive_spell_damage_modifiers_apply_to_retaliation_attack_damage_at_%_value" } }, - [2714]={ + [2741]={ [1]={ [1]={ limit={ @@ -58873,7 +59524,7 @@ return { [1]="additive_vaal_skill_damage_modifiers_apply_to_all_skills" } }, - [2715]={ + [2742]={ [1]={ [1]={ limit={ @@ -58889,7 +59540,7 @@ return { [1]="vaal_attack_rage_cost_instead_of_souls_per_use" } }, - [2716]={ + [2743]={ [1]={ [1]={ [1]={ @@ -58909,7 +59560,7 @@ return { [1]="local_display_aura_base_chaos_damage_to_deal_per_minute" } }, - [2717]={ + [2744]={ [1]={ [1]={ [1]={ @@ -58938,7 +59589,7 @@ return { [2]="deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute" } }, - [2718]={ + [2745]={ [1]={ [1]={ limit={ @@ -58967,7 +59618,7 @@ return { [1]="killed_monster_dropped_item_quantity_+%_when_frozen" } }, - [2719]={ + [2746]={ [1]={ [1]={ limit={ @@ -58996,7 +59647,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked" } }, - [2720]={ + [2747]={ [1]={ [1]={ limit={ @@ -59025,7 +59676,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_shocked" } }, - [2721]={ + [2748]={ [1]={ [1]={ limit={ @@ -59041,7 +59692,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_frozen" } }, - [2722]={ + [2749]={ [1]={ [1]={ limit={ @@ -59057,7 +59708,7 @@ return { [1]="local_unique_counts_as_dual_wielding" } }, - [2723]={ + [2750]={ [1]={ [1]={ limit={ @@ -59073,7 +59724,7 @@ return { [1]="base_damage_removed_from_mana_before_life_%" } }, - [2724]={ + [2751]={ [1]={ [1]={ limit={ @@ -59089,7 +59740,7 @@ return { [1]="local_display_aura_damage_+%" } }, - [2725]={ + [2752]={ [1]={ [1]={ limit={ @@ -59105,7 +59756,7 @@ return { [1]="local_display_aura_curse_effect_on_self_+%" } }, - [2726]={ + [2753]={ [1]={ [1]={ [1]={ @@ -59138,7 +59789,7 @@ return { [1]="attack_ignite_chance_%" } }, - [2727]={ + [2754]={ [1]={ [1]={ [1]={ @@ -59171,7 +59822,7 @@ return { [1]="projectile_ignite_chance_%" } }, - [2728]={ + [2755]={ [1]={ [1]={ [1]={ @@ -59204,7 +59855,7 @@ return { [1]="projectile_freeze_chance_%" } }, - [2729]={ + [2756]={ [1]={ [1]={ limit={ @@ -59229,7 +59880,7 @@ return { [1]="projectile_shock_chance_%" } }, - [2730]={ + [2757]={ [1]={ [1]={ limit={ @@ -59245,7 +59896,7 @@ return { [1]="explode_on_kill_%_fire_damage_to_deal" } }, - [2731]={ + [2758]={ [1]={ [1]={ limit={ @@ -59261,7 +59912,7 @@ return { [1]="melee_damage_taken_%_to_deal_to_attacker" } }, - [2732]={ + [2759]={ [1]={ [1]={ limit={ @@ -59277,7 +59928,7 @@ return { [1]="mana_gained_when_hit" } }, - [2733]={ + [2760]={ [1]={ [1]={ limit={ @@ -59310,7 +59961,7 @@ return { [1]="elemental_reflect_damage_taken_+%" } }, - [2734]={ + [2761]={ [1]={ [1]={ limit={ @@ -59343,7 +59994,7 @@ return { [1]="physical_reflect_damage_taken_+%" } }, - [2735]={ + [2762]={ [1]={ [1]={ limit={ @@ -59359,7 +60010,7 @@ return { [1]="damage_reflected_to_enemies_%_gained_as_life" } }, - [2736]={ + [2763]={ [1]={ [1]={ limit={ @@ -59375,7 +60026,7 @@ return { [1]="local_can_only_deal_damage_with_this_weapon" } }, - [2737]={ + [2764]={ [1]={ [1]={ limit={ @@ -59404,7 +60055,7 @@ return { [1]="non_critical_damage_multiplier_+%" } }, - [2738]={ + [2765]={ [1]={ [1]={ [1]={ @@ -59429,7 +60080,7 @@ return { [2]="unique_map_boss_class_of_rare_items_to_drop" } }, - [2739]={ + [2766]={ [1]={ [1]={ limit={ @@ -59445,7 +60096,7 @@ return { [1]="attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem" } }, - [2740]={ + [2767]={ [1]={ [1]={ limit={ @@ -59461,7 +60112,7 @@ return { [1]="base_maximum_life_per_red_socket_on_item" } }, - [2741]={ + [2768]={ [1]={ [1]={ [1]={ @@ -59485,7 +60136,23 @@ return { [1]="global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad" } }, - [2742]={ + [2769]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Area of Effect per Red Socket" + } + }, + stats={ + [1]="base_skill_area_of_effect_+%_per_red_socket_on_item" + } + }, + [2770]={ [1]={ [1]={ limit={ @@ -59494,14 +60161,30 @@ return { [2]="#" } }, - text="{0}% increased Global Physical Damage with Weapons per Red Socket" + text="{0}% increased Global Physical Damage per Red Socket" } }, stats={ [1]="global_weapon_physical_damage_+%_per_red_socket_on_item" } }, - [2743]={ + [2771]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions convert {0}% of Physical Damage to Fire Damage per Socketed Red Gem" + } + }, + stats={ + [1]="minion_base_physical_damage_%_to_convert_to_fire_per_socketed_red_gem" + } + }, + [2772]={ [1]={ [1]={ limit={ @@ -59517,7 +60200,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item" } }, - [2744]={ + [2773]={ [1]={ [1]={ limit={ @@ -59533,7 +60216,7 @@ return { [1]="base_maximum_mana_per_green_socket_on_item" } }, - [2745]={ + [2774]={ [1]={ [1]={ limit={ @@ -59549,7 +60232,7 @@ return { [1]="global_attack_speed_+%_per_green_socket_on_item" } }, - [2746]={ + [2775]={ [1]={ [1]={ limit={ @@ -59565,7 +60248,23 @@ return { [1]="global_critical_strike_mulitplier_+_per_green_socket_on_item" } }, - [2747]={ + [2776]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions convert {0}% of Physical Damage to Cold Damage per Socketed Green Gem" + } + }, + stats={ + [1]="minion_base_physical_damage_%_to_convert_to_cold_per_socketed_green_gem" + } + }, + [2777]={ [1]={ [1]={ limit={ @@ -59581,7 +60280,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item" } }, - [2748]={ + [2778]={ [1]={ [1]={ limit={ @@ -59597,7 +60296,39 @@ return { [1]="base_maximum_energy_shield_per_blue_socket_on_item" } }, - [2749]={ + [2779]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Global Critical Strike Chance per Blue Socket" + } + }, + stats={ + [1]="global_critical_strike_chance_+%_per_blue_socket_on_item" + } + }, + [2780]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions convert {0}% of Physical Damage to Lightning Damage per Socketed Blue Gem" + } + }, + stats={ + [1]="minion_base_physical_damage_%_to_convert_to_lightning_per_socketed_blue_gem" + } + }, + [2781]={ [1]={ [1]={ limit={ @@ -59613,7 +60344,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item" } }, - [2750]={ + [2782]={ [1]={ [1]={ [1]={ @@ -59637,7 +60368,7 @@ return { [1]="old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item" } }, - [2751]={ + [2783]={ [1]={ [1]={ [1]={ @@ -59661,7 +60392,7 @@ return { [1]="global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item" } }, - [2752]={ + [2784]={ [1]={ [1]={ limit={ @@ -59677,7 +60408,23 @@ return { [1]="item_found_quantity_+%_per_white_socket_on_item" } }, - [2753]={ + [2785]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions convert {0}% of Physical Damage to Chaos Damage per Empty Socket" + } + }, + stats={ + [1]="minion_base_physical_damage_%_to_convert_to_chaos_per_empty_gem_socket" + } + }, + [2786]={ [1]={ [1]={ limit={ @@ -59693,7 +60440,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item" } }, - [2754]={ + [2787]={ [1]={ [1]={ limit={ @@ -59709,7 +60456,44 @@ return { [1]="item_found_rarity_+%_per_white_socket_on_item" } }, - [2755]={ + [2788]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDefences" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Global Defences per Empty Socket" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextDefences" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Global Defences per Empty Socket" + } + }, + stats={ + [1]="global_defences_+%_per_empty_gem_socket_on_item" + } + }, + [2789]={ [1]={ [1]={ [1]={ @@ -59746,7 +60530,7 @@ return { [1]="global_defences_+%_per_white_socket_on_item" } }, - [2756]={ + [2790]={ [1]={ [1]={ [1]={ @@ -59787,7 +60571,7 @@ return { [1]="global_melee_range_+_per_white_socket_on_item" } }, - [2757]={ + [2791]={ [1]={ [1]={ limit={ @@ -59803,7 +60587,7 @@ return { [1]="cannot_block_while_no_energy_shield" } }, - [2758]={ + [2792]={ [1]={ [1]={ limit={ @@ -59819,7 +60603,7 @@ return { [1]="damage_+%_when_currently_has_no_energy_shield" } }, - [2759]={ + [2793]={ [1]={ [1]={ limit={ @@ -59848,7 +60632,7 @@ return { [1]="armour_+%_while_no_energy_shield" } }, - [2760]={ + [2794]={ [1]={ [1]={ [1]={ @@ -59868,7 +60652,7 @@ return { [1]="unholy_might_while_you_have_no_energy_shield" } }, - [2761]={ + [2795]={ [1]={ [1]={ limit={ @@ -59884,7 +60668,7 @@ return { [1]="spell_damage_+%_per_5%_block_chance" } }, - [2762]={ + [2796]={ [1]={ [1]={ limit={ @@ -59913,7 +60697,7 @@ return { [1]="spell_damage_+%_per_10_int" } }, - [2763]={ + [2797]={ [1]={ [1]={ limit={ @@ -59929,7 +60713,7 @@ return { [1]="energy_shield_%_to_lose_on_block" } }, - [2764]={ + [2798]={ [1]={ [1]={ [1]={ @@ -59949,7 +60733,7 @@ return { [1]="armour_%_to_leech_as_life_on_block" } }, - [2765]={ + [2799]={ [1]={ [1]={ limit={ @@ -59965,7 +60749,7 @@ return { [1]="light_radius_scales_with_energy_shield" } }, - [2766]={ + [2800]={ [1]={ [1]={ limit={ @@ -59994,7 +60778,7 @@ return { [1]="flask_effect_+%" } }, - [2767]={ + [2801]={ [1]={ [1]={ limit={ @@ -60023,7 +60807,7 @@ return { [1]="magic_utility_flask_effect_+%" } }, - [2768]={ + [2802]={ [1]={ [1]={ limit={ @@ -60052,7 +60836,7 @@ return { [1]="non_unique_flask_effect_+%" } }, - [2769]={ + [2803]={ [1]={ [1]={ [1]={ @@ -60093,7 +60877,7 @@ return { [1]="local_weapon_range_+" } }, - [2770]={ + [2804]={ [1]={ [1]={ limit={ @@ -60122,7 +60906,7 @@ return { [1]="weapon_physical_damage_+%" } }, - [2771]={ + [2805]={ [1]={ [1]={ [1]={ @@ -60142,7 +60926,7 @@ return { [1]="maximum_critical_strike_chance" } }, - [2772]={ + [2806]={ [1]={ [1]={ limit={ @@ -60171,7 +60955,7 @@ return { [1]="melee_damage_taken_+%" } }, - [2773]={ + [2807]={ [1]={ [1]={ limit={ @@ -60204,7 +60988,7 @@ return { [1]="projectile_damage_taken_+%" } }, - [2774]={ + [2808]={ [1]={ [1]={ [1]={ @@ -60228,7 +61012,7 @@ return { [1]="gain_onslaught_on_stun_duration_ms" } }, - [2775]={ + [2809]={ [1]={ [1]={ limit={ @@ -60253,7 +61037,7 @@ return { [1]="chance_to_gain_endurance_charge_when_hit_%" } }, - [2776]={ + [2810]={ [1]={ [1]={ limit={ @@ -60269,7 +61053,7 @@ return { [1]="lose_all_endurance_charges_when_reaching_maximum" } }, - [2777]={ + [2811]={ [1]={ [1]={ [1]={ @@ -60293,7 +61077,7 @@ return { [1]="gain_onslaught_ms_when_reaching_maximum_endurance_charges" } }, - [2778]={ + [2812]={ [1]={ [1]={ limit={ @@ -60309,7 +61093,7 @@ return { [1]="cannot_gain_endurance_charges_while_have_onslaught" } }, - [2779]={ + [2813]={ [1]={ [1]={ limit={ @@ -60325,7 +61109,7 @@ return { [1]="flasks_dispel_burning" } }, - [2780]={ + [2814]={ [1]={ [1]={ limit={ @@ -60354,7 +61138,7 @@ return { [1]="item_rarity_+%_while_using_flask" } }, - [2781]={ + [2815]={ [1]={ [1]={ limit={ @@ -60383,7 +61167,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_while_using_flask" } }, - [2782]={ + [2816]={ [1]={ [1]={ limit={ @@ -60412,7 +61196,7 @@ return { [1]="weapon_elemental_damage_+%_while_using_flask" } }, - [2783]={ + [2817]={ [1]={ [1]={ limit={ @@ -60428,7 +61212,7 @@ return { [1]="supported_active_skill_gem_level_+" } }, - [2784]={ + [2818]={ [1]={ [1]={ limit={ @@ -60444,7 +61228,7 @@ return { [1]="physical_damage_reduction_rating_per_level" } }, - [2785]={ + [2819]={ [1]={ [1]={ limit={ @@ -60460,7 +61244,7 @@ return { [1]="maximum_life_per_10_levels" } }, - [2786]={ + [2820]={ [1]={ [1]={ limit={ @@ -60476,7 +61260,7 @@ return { [1]="resist_all_elements_%_per_10_levels" } }, - [2787]={ + [2821]={ [1]={ [1]={ limit={ @@ -60492,7 +61276,7 @@ return { [1]="chance_to_gain_random_curse_when_hit_%_per_10_levels" } }, - [2788]={ + [2822]={ [1]={ [1]={ limit={ @@ -60521,7 +61305,7 @@ return { [1]="damage_taken_+%_vs_demons" } }, - [2789]={ + [2823]={ [1]={ [1]={ limit={ @@ -60550,7 +61334,7 @@ return { [1]="damage_+%_vs_demons" } }, - [2790]={ + [2824]={ [1]={ [1]={ limit={ @@ -60566,7 +61350,7 @@ return { [1]="chilled_monsters_take_+%_burning_damage" } }, - [2791]={ + [2825]={ [1]={ [1]={ [1]={ @@ -60599,7 +61383,7 @@ return { [1]="unique_ignite_chance_%_when_in_main_hand" } }, - [2792]={ + [2826]={ [1]={ [1]={ limit={ @@ -60628,7 +61412,7 @@ return { [1]="unique_chill_duration_+%_when_in_off_hand" } }, - [2793]={ + [2827]={ [1]={ [1]={ limit={ @@ -60675,7 +61459,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [2794]={ + [2828]={ [1]={ [1]={ limit={ @@ -60691,7 +61475,7 @@ return { [1]="chance_to_gain_power_charge_on_melee_stun_%" } }, - [2795]={ + [2829]={ [1]={ [1]={ limit={ @@ -60707,7 +61491,7 @@ return { [1]="chance_to_gain_power_charge_on_stun_%" } }, - [2796]={ + [2830]={ [1]={ [1]={ [1]={ @@ -60757,7 +61541,7 @@ return { [2]="movement_speed_+%_on_throwing_trap" } }, - [2797]={ + [2831]={ [1]={ [1]={ [1]={ @@ -60790,7 +61574,7 @@ return { [1]="poison_on_melee_critical_strike_%" } }, - [2798]={ + [2832]={ [1]={ [1]={ [1]={ @@ -60810,7 +61594,7 @@ return { [1]="shocks_reflected_to_self" } }, - [2799]={ + [2833]={ [1]={ [1]={ limit={ @@ -60839,7 +61623,7 @@ return { [1]="damage_+%_per_shock" } }, - [2800]={ + [2834]={ [1]={ [1]={ limit={ @@ -60855,7 +61639,7 @@ return { [1]="damage_+1%_per_X_strength_when_in_main_hand" } }, - [2801]={ + [2835]={ [1]={ [1]={ limit={ @@ -60871,7 +61655,7 @@ return { [1]="physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand" } }, - [2802]={ + [2836]={ [1]={ [1]={ [1]={ @@ -60891,7 +61675,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [2803]={ + [2837]={ [1]={ [1]={ limit={ @@ -60907,7 +61691,7 @@ return { [1]="traps_do_not_explode_on_timeout" } }, - [2804]={ + [2838]={ [1]={ [1]={ limit={ @@ -60923,7 +61707,7 @@ return { [1]="traps_explode_on_timeout" } }, - [2805]={ + [2839]={ [1]={ [1]={ limit={ @@ -60939,7 +61723,7 @@ return { [1]="mine_detonation_is_instant" } }, - [2806]={ + [2840]={ [1]={ [1]={ limit={ @@ -60955,7 +61739,7 @@ return { [1]="trap_damage_penetrates_%_elemental_resistance" } }, - [2807]={ + [2841]={ [1]={ [1]={ limit={ @@ -60971,7 +61755,7 @@ return { [1]="mine_damage_penetrates_%_elemental_resistance" } }, - [2808]={ + [2842]={ [1]={ [1]={ limit={ @@ -60987,7 +61771,7 @@ return { [1]="trap_and_mine_damage_penetrates_%_elemental_resistance" } }, - [2809]={ + [2843]={ [1]={ [1]={ [1]={ @@ -61007,7 +61791,7 @@ return { [1]="traps_invulnerable_for_duration_ms" } }, - [2810]={ + [2844]={ [1]={ [1]={ [1]={ @@ -61027,7 +61811,7 @@ return { [1]="mines_invulnerable_for_duration_ms" } }, - [2811]={ + [2845]={ [1]={ [1]={ limit={ @@ -61043,7 +61827,7 @@ return { [1]="totem_elemental_resistance_%" } }, - [2812]={ + [2846]={ [1]={ [1]={ limit={ @@ -61059,7 +61843,7 @@ return { [1]="slash_ancestor_totem_elemental_resistance_%" } }, - [2813]={ + [2847]={ [1]={ [1]={ limit={ @@ -61075,7 +61859,7 @@ return { [1]="totem_additional_physical_damage_reduction_%" } }, - [2814]={ + [2848]={ [1]={ [1]={ limit={ @@ -61091,7 +61875,7 @@ return { [1]="base_deal_no_physical_damage" } }, - [2815]={ + [2849]={ [1]={ [1]={ limit={ @@ -61107,7 +61891,7 @@ return { [1]="deal_no_non_physical_damage" } }, - [2816]={ + [2850]={ [1]={ [1]={ limit={ @@ -61123,7 +61907,7 @@ return { [1]="base_deal_no_cold_damage" } }, - [2817]={ + [2851]={ [1]={ [1]={ limit={ @@ -61139,7 +61923,7 @@ return { [1]="deal_no_non_fire_damage" } }, - [2818]={ + [2852]={ [1]={ [1]={ limit={ @@ -61155,7 +61939,7 @@ return { [1]="deal_no_non_lightning_damage" } }, - [2819]={ + [2853]={ [1]={ [1]={ limit={ @@ -61188,7 +61972,7 @@ return { [1]="jorrhasts_blacksteel_animate_weapon_duration_+%_final" } }, - [2820]={ + [2854]={ [1]={ [1]={ limit={ @@ -61217,7 +62001,7 @@ return { [1]="animate_weapon_duration_+%" } }, - [2821]={ + [2855]={ [1]={ [1]={ limit={ @@ -61242,7 +62026,7 @@ return { [1]="animate_weapon_number_of_additional_copies" } }, - [2822]={ + [2856]={ [1]={ [1]={ limit={ @@ -61258,7 +62042,7 @@ return { [1]="fire_and_cold_damage_resistance_%" } }, - [2823]={ + [2857]={ [1]={ [1]={ limit={ @@ -61274,7 +62058,7 @@ return { [1]="fire_and_lightning_damage_resistance_%" } }, - [2824]={ + [2858]={ [1]={ [1]={ limit={ @@ -61290,7 +62074,7 @@ return { [1]="cold_and_lightning_damage_resistance_%" } }, - [2825]={ + [2859]={ [1]={ [1]={ [1]={ @@ -61339,7 +62123,7 @@ return { [1]="chance_to_freeze_shock_ignite_%" } }, - [2826]={ + [2860]={ [1]={ [1]={ limit={ @@ -61368,7 +62152,7 @@ return { [1]="damage_+%_while_ignited" } }, - [2827]={ + [2861]={ [1]={ [1]={ limit={ @@ -61384,7 +62168,7 @@ return { [1]="physical_damage_reduction_rating_while_frozen" } }, - [2828]={ + [2862]={ [1]={ [1]={ limit={ @@ -61413,7 +62197,7 @@ return { [1]="physical_damage_taken_+%_while_frozen" } }, - [2829]={ + [2863]={ [1]={ [1]={ limit={ @@ -61442,7 +62226,7 @@ return { [1]="movement_velocity_+%_while_ignited" } }, - [2830]={ + [2864]={ [1]={ [1]={ limit={ @@ -61471,7 +62255,7 @@ return { [1]="movement_velocity_+%_per_shock" } }, - [2831]={ + [2865]={ [1]={ [1]={ limit={ @@ -61500,7 +62284,7 @@ return { [1]="damage_+%_vs_rare_monsters" } }, - [2832]={ + [2866]={ [1]={ [1]={ limit={ @@ -61516,7 +62300,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [2833]={ + [2867]={ [1]={ [1]={ [1]={ @@ -61536,7 +62320,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%_final" } }, - [2834]={ + [2868]={ [1]={ [1]={ limit={ @@ -61565,7 +62349,7 @@ return { [1]="damage_+%_vs_enemies_on_low_life_per_frenzy_charge" } }, - [2835]={ + [2869]={ [1]={ [1]={ [1]={ @@ -61602,7 +62386,7 @@ return { [1]="damage_+%_vs_blinded_enemies" } }, - [2836]={ + [2870]={ [1]={ [1]={ limit={ @@ -61631,7 +62415,7 @@ return { [1]="shrine_buff_effect_on_self_+%" } }, - [2837]={ + [2871]={ [1]={ [1]={ limit={ @@ -61660,7 +62444,7 @@ return { [1]="shrine_effect_duration_+%" } }, - [2838]={ + [2872]={ [1]={ [1]={ [1]={ @@ -61680,7 +62464,7 @@ return { [1]="shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy" } }, - [2839]={ + [2873]={ [1]={ [1]={ [1]={ @@ -61700,7 +62484,7 @@ return { [1]="ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy" } }, - [2840]={ + [2874]={ [1]={ [1]={ limit={ @@ -61716,7 +62500,7 @@ return { [1]="local_treat_treat_enemy_chaos_resistances_as_negated_on_hit" } }, - [2841]={ + [2875]={ [1]={ [1]={ limit={ @@ -61732,7 +62516,7 @@ return { [1]="gain_rare_monster_mods_on_kill_ms" } }, - [2842]={ + [2876]={ [1]={ [1]={ limit={ @@ -61761,7 +62545,7 @@ return { [1]="physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked" } }, - [2843]={ + [2877]={ [1]={ [1]={ limit={ @@ -61790,7 +62574,7 @@ return { [1]="aura_effect_+%" } }, - [2844]={ + [2878]={ [1]={ [1]={ limit={ @@ -61806,7 +62590,7 @@ return { [1]="supported_active_skill_gem_quality_%" } }, - [2845]={ + [2879]={ [1]={ [1]={ [1]={ @@ -61826,7 +62610,7 @@ return { [1]="phase_through_objects" } }, - [2846]={ + [2880]={ [1]={ [1]={ limit={ @@ -61842,7 +62626,7 @@ return { [1]="local_support_gem_max_skill_level_requirement_to_support" } }, - [2847]={ + [2881]={ [1]={ [1]={ limit={ @@ -61889,7 +62673,7 @@ return { [2]="projectile_return_%_chance" } }, - [2848]={ + [2882]={ [1]={ [1]={ limit={ @@ -61905,7 +62689,7 @@ return { [1]="attack_projectiles_return" } }, - [2849]={ + [2883]={ [1]={ [1]={ limit={ @@ -61938,7 +62722,7 @@ return { [1]="unique_critical_strike_chance_+%_final" } }, - [2850]={ + [2884]={ [1]={ [1]={ limit={ @@ -61954,7 +62738,7 @@ return { [1]="unique_lose_all_endurance_charges_when_hit" } }, - [2851]={ + [2885]={ [1]={ [1]={ [1]={ @@ -61978,7 +62762,7 @@ return { [1]="unique_gain_onslaught_when_hit_duration_ms" } }, - [2852]={ + [2886]={ [1]={ [1]={ limit={ @@ -61994,7 +62778,7 @@ return { [1]="add_endurance_charge_on_kill" } }, - [2853]={ + [2887]={ [1]={ [1]={ limit={ @@ -62010,7 +62794,7 @@ return { [1]="chance_to_counter_strike_when_hit_%" } }, - [2854]={ + [2888]={ [1]={ [1]={ [1]={ @@ -62030,7 +62814,7 @@ return { [1]="leech_X_life_per_spell_cast" } }, - [2855]={ + [2889]={ [1]={ [1]={ limit={ @@ -62046,7 +62830,7 @@ return { [1]="regenerate_X_life_over_1_second_on_cast" } }, - [2856]={ + [2890]={ [1]={ [1]={ limit={ @@ -62062,7 +62846,7 @@ return { [1]="regenerate_%_armour_as_life_over_1_second_on_block" } }, - [2857]={ + [2891]={ [1]={ [1]={ [1]={ @@ -62099,7 +62883,7 @@ return { [1]="global_defences_+%" } }, - [2858]={ + [2892]={ [1]={ [1]={ [1]={ @@ -62136,7 +62920,7 @@ return { [1]="global_defences_+%_per_active_minion_not_from_vaal_skills" } }, - [2859]={ + [2893]={ [1]={ [1]={ limit={ @@ -62152,7 +62936,7 @@ return { [1]="zero_elemental_resistance" } }, - [2860]={ + [2894]={ [1]={ [1]={ [1]={ @@ -62172,7 +62956,7 @@ return { [1]="culling_strike_on_burning_enemies" } }, - [2861]={ + [2895]={ [1]={ [1]={ limit={ @@ -62188,7 +62972,7 @@ return { [1]="gain_frenzy_charge_if_attack_ignites" } }, - [2862]={ + [2896]={ [1]={ [1]={ limit={ @@ -62217,7 +63001,7 @@ return { [1]="damage_+%_per_10_levels" } }, - [2863]={ + [2897]={ [1]={ [1]={ limit={ @@ -62233,7 +63017,7 @@ return { [1]="chaos_damage_taken_+" } }, - [2864]={ + [2898]={ [1]={ [1]={ limit={ @@ -62249,7 +63033,7 @@ return { [1]="display_map_final_boss_drops_higher_level_gear" } }, - [2865]={ + [2899]={ [1]={ [1]={ limit={ @@ -62265,7 +63049,7 @@ return { [1]="display_map_boss_gives_experience_+%" } }, - [2866]={ + [2900]={ [1]={ [1]={ [1]={ @@ -62306,7 +63090,7 @@ return { [1]="unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge" } }, - [2867]={ + [2901]={ [1]={ [1]={ limit={ @@ -62335,7 +63119,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [2868]={ + [2902]={ [1]={ [1]={ limit={ @@ -62364,7 +63148,7 @@ return { [1]="fishing_line_strength_+%" } }, - [2869]={ + [2903]={ [1]={ [1]={ limit={ @@ -62397,7 +63181,7 @@ return { [1]="fishing_pool_consumption_+%" } }, - [2870]={ + [2904]={ [1]={ [1]={ limit={ @@ -62452,13 +63236,22 @@ return { } }, text="Otherworldly Lure" + }, + [7]={ + limit={ + [1]={ + [1]=7, + [2]=7 + } + }, + text="Kulemak's Corpsebait" } }, stats={ [1]="fishing_lure_type" } }, - [2871]={ + [2905]={ [1]={ [1]={ limit={ @@ -62501,7 +63294,7 @@ return { [1]="fishing_hook_type" } }, - [2872]={ + [2906]={ [1]={ [1]={ limit={ @@ -62530,7 +63323,7 @@ return { [1]="fishing_range_+%" } }, - [2873]={ + [2907]={ [1]={ [1]={ limit={ @@ -62559,7 +63352,7 @@ return { [1]="fish_quantity_+%" } }, - [2874]={ + [2908]={ [1]={ [1]={ limit={ @@ -62588,7 +63381,7 @@ return { [1]="fish_rarity_+%" } }, - [2875]={ + [2909]={ [1]={ [1]={ limit={ @@ -62604,7 +63397,7 @@ return { [1]="unique_spread_poison_to_nearby_enemies_on_kill" } }, - [2876]={ + [2910]={ [1]={ [1]={ limit={ @@ -62620,7 +63413,7 @@ return { [1]="unique_spread_poison_to_nearby_allies_as_regeneration_on_kill" } }, - [2877]={ + [2911]={ [1]={ [1]={ limit={ @@ -62636,7 +63429,7 @@ return { [1]="local_ring_duplicate_other_ring" } }, - [2878]={ + [2912]={ [1]={ [1]={ limit={ @@ -62652,7 +63445,7 @@ return { [1]="can_catch_exotic_fish" } }, - [2879]={ + [2913]={ [1]={ [1]={ limit={ @@ -62668,7 +63461,7 @@ return { [1]="can_catch_corrupted_fish" } }, - [2880]={ + [2914]={ [1]={ [1]={ [1]={ @@ -62688,7 +63481,7 @@ return { [1]="unique_fire_damage_shocks" } }, - [2881]={ + [2915]={ [1]={ [1]={ [1]={ @@ -62708,7 +63501,7 @@ return { [1]="unique_cold_damage_ignites" } }, - [2882]={ + [2916]={ [1]={ [1]={ [1]={ @@ -62728,7 +63521,7 @@ return { [1]="unique_lightning_damage_freezes" } }, - [2883]={ + [2917]={ [1]={ [1]={ [1]={ @@ -62748,7 +63541,7 @@ return { [1]="all_damage_can_ignite" } }, - [2884]={ + [2918]={ [1]={ [1]={ [1]={ @@ -62768,7 +63561,7 @@ return { [1]="all_damage_can_chill" } }, - [2885]={ + [2919]={ [1]={ [1]={ [1]={ @@ -62788,7 +63581,7 @@ return { [1]="all_damage_can_freeze" } }, - [2886]={ + [2920]={ [1]={ [1]={ [1]={ @@ -62808,7 +63601,7 @@ return { [1]="all_damage_can_shock" } }, - [2887]={ + [2921]={ [1]={ [1]={ [1]={ @@ -62828,7 +63621,7 @@ return { [1]="all_damage_taken_can_chill" } }, - [2888]={ + [2922]={ [1]={ [1]={ [1]={ @@ -62848,7 +63641,7 @@ return { [1]="base_all_damage_can_cause_elemental_ailments_you_are_suffering_from" } }, - [2889]={ + [2923]={ [1]={ [1]={ [1]={ @@ -62868,7 +63661,7 @@ return { [1]="base_cold_damage_can_poison" } }, - [2890]={ + [2924]={ [1]={ [1]={ [1]={ @@ -62888,7 +63681,7 @@ return { [1]="base_fire_damage_can_poison" } }, - [2891]={ + [2925]={ [1]={ [1]={ [1]={ @@ -62908,7 +63701,7 @@ return { [1]="base_lightning_damage_can_poison" } }, - [2892]={ + [2926]={ [1]={ [1]={ [1]={ @@ -62928,7 +63721,7 @@ return { [1]="chaos_damage_can_chill" } }, - [2893]={ + [2927]={ [1]={ [1]={ [1]={ @@ -62948,7 +63741,7 @@ return { [1]="chaos_damage_can_freeze" } }, - [2894]={ + [2928]={ [1]={ [1]={ [1]={ @@ -62968,7 +63761,7 @@ return { [1]="chaos_damage_can_shock" } }, - [2895]={ + [2929]={ [1]={ [1]={ [1]={ @@ -62988,7 +63781,7 @@ return { [1]="cold_damage_can_ignite" } }, - [2896]={ + [2930]={ [1]={ [1]={ [1]={ @@ -63008,7 +63801,7 @@ return { [1]="cold_damage_can_shock" } }, - [2897]={ + [2931]={ [1]={ [1]={ [1]={ @@ -63028,7 +63821,7 @@ return { [1]="elemental_damage_can_shock" } }, - [2898]={ + [2932]={ [1]={ [1]={ [1]={ @@ -63048,7 +63841,7 @@ return { [1]="fire_damage_can_chill" } }, - [2899]={ + [2933]={ [1]={ [1]={ [1]={ @@ -63068,7 +63861,7 @@ return { [1]="fire_damage_can_freeze" } }, - [2900]={ + [2934]={ [1]={ [1]={ [1]={ @@ -63088,7 +63881,7 @@ return { [1]="fire_damage_can_shock" } }, - [2901]={ + [2935]={ [1]={ [1]={ [1]={ @@ -63108,7 +63901,7 @@ return { [1]="lightning_damage_can_chill" } }, - [2902]={ + [2936]={ [1]={ [1]={ limit={ @@ -63124,7 +63917,7 @@ return { [1]="lightning_damage_can_ignite" } }, - [2903]={ + [2937]={ [1]={ [1]={ [1]={ @@ -63144,7 +63937,7 @@ return { [1]="physical_damage_can_chill" } }, - [2904]={ + [2938]={ [1]={ [1]={ [1]={ @@ -63164,7 +63957,7 @@ return { [1]="physical_damage_can_freeze" } }, - [2905]={ + [2939]={ [1]={ [1]={ [1]={ @@ -63184,7 +63977,7 @@ return { [1]="physical_damage_can_shock" } }, - [2906]={ + [2940]={ [1]={ [1]={ [1]={ @@ -63204,7 +63997,7 @@ return { [1]="unique_cold_damage_can_also_ignite" } }, - [2907]={ + [2941]={ [1]={ [1]={ [1]={ @@ -63224,7 +64017,7 @@ return { [1]="lightning_damage_can_freeze" } }, - [2908]={ + [2942]={ [1]={ [1]={ limit={ @@ -63240,7 +64033,7 @@ return { [1]="fire_damage_cannot_ignite" } }, - [2909]={ + [2943]={ [1]={ [1]={ limit={ @@ -63256,7 +64049,7 @@ return { [1]="cold_damage_cannot_freeze" } }, - [2910]={ + [2944]={ [1]={ [1]={ limit={ @@ -63272,7 +64065,7 @@ return { [1]="cold_damage_cannot_chill" } }, - [2911]={ + [2945]={ [1]={ [1]={ limit={ @@ -63288,7 +64081,7 @@ return { [1]="chaos_damage_can_ignite_chill_and_shock" } }, - [2912]={ + [2946]={ [1]={ [1]={ limit={ @@ -63304,7 +64097,7 @@ return { [1]="chaos_damage_cannot_poison" } }, - [2913]={ + [2947]={ [1]={ [1]={ limit={ @@ -63320,7 +64113,7 @@ return { [1]="lightning_damage_cannot_shock" } }, - [2914]={ + [2948]={ [1]={ [1]={ limit={ @@ -63336,7 +64129,7 @@ return { [1]="physical_damage_cannot_poison" } }, - [2915]={ + [2949]={ [1]={ [1]={ limit={ @@ -63365,7 +64158,7 @@ return { [1]="supported_active_skill_gem_expereince_gained_+%" } }, - [2916]={ + [2950]={ [1]={ [1]={ limit={ @@ -63394,7 +64187,7 @@ return { [1]="freeze_as_though_dealt_damage_+%" } }, - [2917]={ + [2951]={ [1]={ [1]={ [1]={ @@ -63427,7 +64220,7 @@ return { [1]="chill_prevention_ms_when_chilled" } }, - [2918]={ + [2952]={ [1]={ [1]={ limit={ @@ -63443,7 +64236,7 @@ return { [1]="base_immune_to_chill" } }, - [2919]={ + [2953]={ [1]={ [1]={ [1]={ @@ -63476,7 +64269,7 @@ return { [1]="freeze_prevention_ms_when_frozen" } }, - [2920]={ + [2954]={ [1]={ [1]={ [1]={ @@ -63509,7 +64302,7 @@ return { [1]="ignite_prevention_ms_when_ignited" } }, - [2921]={ + [2955]={ [1]={ [1]={ [1]={ @@ -63542,7 +64335,7 @@ return { [1]="shock_prevention_ms_when_shocked" } }, - [2922]={ + [2956]={ [1]={ [1]={ limit={ @@ -63558,7 +64351,7 @@ return { [1]="cannot_be_shocked_while_frozen" } }, - [2923]={ + [2957]={ [1]={ [1]={ limit={ @@ -63574,7 +64367,7 @@ return { [1]="grant_X_frenzy_charges_to_nearby_allies_on_death" } }, - [2924]={ + [2958]={ [1]={ [1]={ limit={ @@ -63590,7 +64383,7 @@ return { [1]="unique_gain_power_charge_on_non_crit" } }, - [2925]={ + [2959]={ [1]={ [1]={ limit={ @@ -63606,7 +64399,7 @@ return { [1]="unique_lose_all_power_charges_on_crit" } }, - [2926]={ + [2960]={ [1]={ [1]={ limit={ @@ -63622,7 +64415,7 @@ return { [1]="flask_minion_heal_%" } }, - [2927]={ + [2961]={ [1]={ [1]={ limit={ @@ -63638,7 +64431,7 @@ return { [1]="minion_block_%" } }, - [2928]={ + [2962]={ [1]={ [1]={ limit={ @@ -63654,7 +64447,7 @@ return { [1]="minion_additional_spell_block_%" } }, - [2929]={ + [2963]={ [1]={ [1]={ limit={ @@ -63670,7 +64463,7 @@ return { [1]="minion_physical_damage_reduction_rating" } }, - [2930]={ + [2964]={ [1]={ [1]={ limit={ @@ -63686,7 +64479,7 @@ return { [1]="local_display_aura_damage_+%_allies_only" } }, - [2931]={ + [2965]={ [1]={ [1]={ limit={ @@ -63715,7 +64508,7 @@ return { [1]="minion_attack_speed_+%" } }, - [2932]={ + [2966]={ [1]={ [1]={ limit={ @@ -63744,7 +64537,7 @@ return { [1]="minion_cast_speed_+%" } }, - [2933]={ + [2967]={ [1]={ [1]={ [1]={ @@ -63768,7 +64561,7 @@ return { [1]="old_do_not_use_minion_life_leech_from_any_damage_permyriad" } }, - [2934]={ + [2968]={ [1]={ [1]={ [1]={ @@ -63792,7 +64585,7 @@ return { [1]="minion_life_leech_from_any_damage_permyriad" } }, - [2935]={ + [2969]={ [1]={ [1]={ [1]={ @@ -63812,7 +64605,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [2936]={ + [2970]={ [1]={ [1]={ limit={ @@ -63828,7 +64621,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [2937]={ + [2971]={ [1]={ [1]={ limit={ @@ -63844,7 +64637,7 @@ return { [1]="minion_chaos_resistance_%" } }, - [2938]={ + [2972]={ [1]={ [1]={ [1]={ @@ -63864,7 +64657,7 @@ return { [1]="local_display_grants_unholy_might" } }, - [2939]={ + [2973]={ [1]={ [1]={ [1]={ @@ -63884,7 +64677,7 @@ return { [1]="gain_unholy_might_for_2_seconds_on_melee_crit" } }, - [2940]={ + [2974]={ [1]={ [1]={ [1]={ @@ -63904,7 +64697,7 @@ return { [1]="gain_unholy_might_for_2_seconds_on_crit" } }, - [2941]={ + [2975]={ [1]={ [1]={ [1]={ @@ -63924,7 +64717,7 @@ return { [1]="gain_unholy_might_for_4_seconds_on_crit" } }, - [2942]={ + [2976]={ [1]={ [1]={ [1]={ @@ -63948,7 +64741,7 @@ return { [1]="minion_unholy_might_on_kill_duration_ms" } }, - [2943]={ + [2977]={ [1]={ [1]={ [1]={ @@ -63989,7 +64782,7 @@ return { [1]="adrenaline_on_vaal_skill_use_duration_ms" } }, - [2944]={ + [2978]={ [1]={ [1]={ [1]={ @@ -64013,7 +64806,7 @@ return { [1]="onslaught_on_vaal_skill_use_duration_ms" } }, - [2945]={ + [2979]={ [1]={ [1]={ [1]={ @@ -64037,7 +64830,7 @@ return { [1]="phase_on_vaal_skill_use_duration_ms" } }, - [2946]={ + [2980]={ [1]={ [1]={ [1]={ @@ -64057,7 +64850,7 @@ return { [1]="chance_to_ignite_%_while_using_flask" } }, - [2947]={ + [2981]={ [1]={ [1]={ [1]={ @@ -64077,7 +64870,7 @@ return { [1]="chance_to_freeze_%_while_using_flask" } }, - [2948]={ + [2982]={ [1]={ [1]={ [1]={ @@ -64097,7 +64890,7 @@ return { [1]="chance_to_shock_%_while_using_flask" } }, - [2949]={ + [2983]={ [1]={ [1]={ limit={ @@ -64126,7 +64919,7 @@ return { [1]="unique_voltaxic_rift_shock_as_though_damage_+%_final" } }, - [2950]={ + [2984]={ [1]={ [1]={ [1]={ @@ -64146,7 +64939,7 @@ return { [1]="spell_chance_to_shock_frozen_enemies_%" } }, - [2951]={ + [2985]={ [1]={ [1]={ [1]={ @@ -64166,7 +64959,7 @@ return { [1]="stun_threshold_reduction_+%_while_using_flask" } }, - [2952]={ + [2986]={ [1]={ [1]={ limit={ @@ -64182,7 +64975,7 @@ return { [1]="physical_damage_taken_+_vs_beasts" } }, - [2953]={ + [2987]={ [1]={ [1]={ limit={ @@ -64211,7 +65004,7 @@ return { [1]="local_attacks_with_this_weapon_elemental_damage_+%" } }, - [2954]={ + [2988]={ [1]={ [1]={ limit={ @@ -64240,7 +65033,7 @@ return { [1]="damage_taken_+%_per_frenzy_charge" } }, - [2955]={ + [2989]={ [1]={ [1]={ limit={ @@ -64269,7 +65062,7 @@ return { [1]="lightning_damage_+%_per_frenzy_charge" } }, - [2956]={ + [2990]={ [1]={ [1]={ limit={ @@ -64285,7 +65078,7 @@ return { [1]="life_gained_on_enemy_death_per_frenzy_charge" } }, - [2957]={ + [2991]={ [1]={ [1]={ [1]={ @@ -64305,7 +65098,7 @@ return { [1]="life_%_gained_on_kill_if_spent_life_recently" } }, - [2958]={ + [2992]={ [1]={ [1]={ [1]={ @@ -64325,7 +65118,7 @@ return { [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [2959]={ + [2993]={ [1]={ [1]={ limit={ @@ -64341,7 +65134,7 @@ return { [1]="weapon_physical_damage_%_to_add_as_random_element" } }, - [2960]={ + [2994]={ [1]={ [1]={ limit={ @@ -64357,7 +65150,7 @@ return { [1]="physical_damage_%_to_add_as_random_element" } }, - [2961]={ + [2995]={ [1]={ [1]={ limit={ @@ -64382,7 +65175,7 @@ return { [1]="unique_add_power_charge_on_melee_knockback_%" } }, - [2962]={ + [2996]={ [1]={ [1]={ limit={ @@ -64407,7 +65200,7 @@ return { [1]="gain_power_charge_when_throwing_trap_%" } }, - [2963]={ + [2997]={ [1]={ [1]={ limit={ @@ -64423,7 +65216,7 @@ return { [1]="critical_strike_chance_+%_per_8_strength" } }, - [2964]={ + [2998]={ [1]={ [1]={ limit={ @@ -64452,7 +65245,7 @@ return { [1]="attack_speed_+%_while_ignited" } }, - [2965]={ + [2999]={ [1]={ [1]={ limit={ @@ -64481,7 +65274,7 @@ return { [1]="cast_speed_+%_while_ignited" } }, - [2966]={ + [3000]={ [1]={ [1]={ [1]={ @@ -64514,7 +65307,7 @@ return { [1]="chance_to_ignite_%_while_ignited" } }, - [2967]={ + [3001]={ [1]={ [1]={ limit={ @@ -64543,7 +65336,7 @@ return { [1]="wand_damage_+%" } }, - [2968]={ + [3002]={ [1]={ [1]={ limit={ @@ -64572,7 +65365,7 @@ return { [1]="local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion" } }, - [2969]={ + [3003]={ [1]={ [1]={ limit={ @@ -64588,7 +65381,7 @@ return { [1]="local_fire_damage_from_life_%" } }, - [2970]={ + [3004]={ [1]={ [1]={ limit={ @@ -64617,7 +65410,7 @@ return { [1]="attack_damage_+%_per_450_evasion" } }, - [2971]={ + [3005]={ [1]={ [1]={ [1]={ @@ -64637,7 +65430,7 @@ return { [1]="chance_to_be_frozen_%" } }, - [2972]={ + [3006]={ [1]={ [1]={ [1]={ @@ -64657,7 +65450,7 @@ return { [1]="chance_to_be_ignited_%" } }, - [2973]={ + [3007]={ [1]={ [1]={ [1]={ @@ -64677,7 +65470,7 @@ return { [1]="chance_to_be_shocked_%" } }, - [2974]={ + [3008]={ [1]={ [1]={ limit={ @@ -64693,7 +65486,7 @@ return { [1]="chance_to_be_frozen_shocked_ignited_%" } }, - [2975]={ + [3009]={ [1]={ [1]={ limit={ @@ -64718,7 +65511,7 @@ return { [1]="claw_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2976]={ + [3010]={ [1]={ [1]={ limit={ @@ -64743,7 +65536,7 @@ return { [1]="bow_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2977]={ + [3011]={ [1]={ [1]={ limit={ @@ -64772,7 +65565,7 @@ return { [1]="damage_+%_vs_ignited_enemies" } }, - [2978]={ + [3012]={ [1]={ [1]={ limit={ @@ -64788,7 +65581,7 @@ return { [1]="recover_%_maximum_life_on_rampage_threshold" } }, - [2979]={ + [3013]={ [1]={ [1]={ [1]={ @@ -64808,7 +65601,7 @@ return { [1]="dispel_status_ailments_on_rampage_threshold" } }, - [2980]={ + [3014]={ [1]={ [1]={ [1]={ @@ -64841,7 +65634,7 @@ return { [1]="gain_physical_damage_immunity_on_rampage_threshold_ms" } }, - [2981]={ + [3015]={ [1]={ [1]={ [1]={ @@ -64861,7 +65654,7 @@ return { [1]="gain_X_vaal_souls_on_rampage_threshold" } }, - [2982]={ + [3016]={ [1]={ [1]={ [1]={ @@ -64881,7 +65674,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [2983]={ + [3017]={ [1]={ [1]={ limit={ @@ -64910,7 +65703,7 @@ return { [1]="physical_damage_+%_vs_poisoned_enemies" } }, - [2984]={ + [3018]={ [1]={ [1]={ [1]={ @@ -64930,7 +65723,7 @@ return { [1]="block_causes_monster_flee_%" } }, - [2985]={ + [3019]={ [1]={ [1]={ [1]={ @@ -64950,7 +65743,7 @@ return { [1]="life_regeneration_rate_per_minute_per_level" } }, - [2986]={ + [3020]={ [1]={ [1]={ limit={ @@ -64979,7 +65772,7 @@ return { [1]="critical_strike_chance_+%_per_level" } }, - [2987]={ + [3021]={ [1]={ [1]={ limit={ @@ -65008,7 +65801,7 @@ return { [1]="attack_damage_+%_per_level" } }, - [2988]={ + [3022]={ [1]={ [1]={ limit={ @@ -65037,7 +65830,7 @@ return { [1]="spell_damage_+%_per_level" } }, - [2989]={ + [3023]={ [1]={ [1]={ limit={ @@ -65062,7 +65855,7 @@ return { [1]="recharge_flasks_on_crit" } }, - [2990]={ + [3024]={ [1]={ [1]={ limit={ @@ -65091,7 +65884,7 @@ return { [1]="bleeding_monsters_movement_velocity_+%" } }, - [2991]={ + [3025]={ [1]={ [1]={ [1]={ @@ -65111,7 +65904,7 @@ return { [1]="ground_smoke_on_rampage_threshold_ms" } }, - [2992]={ + [3026]={ [1]={ [1]={ [1]={ @@ -65144,7 +65937,7 @@ return { [1]="phasing_on_rampage_threshold_ms" } }, - [2993]={ + [3027]={ [1]={ [1]={ limit={ @@ -65173,7 +65966,7 @@ return { [1]="movement_velocity_+%_on_full_energy_shield" } }, - [2994]={ + [3028]={ [1]={ [1]={ limit={ @@ -65216,7 +66009,7 @@ return { [3]="unique_maximum_chaos_damage_to_reflect_to_self_on_attack" } }, - [2995]={ + [3029]={ [1]={ [1]={ limit={ @@ -65232,7 +66025,7 @@ return { [1]="life_gained_on_enemy_death_per_level" } }, - [2996]={ + [3030]={ [1]={ [1]={ limit={ @@ -65248,7 +66041,7 @@ return { [1]="mana_gained_on_enemy_death_per_level" } }, - [2997]={ + [3031]={ [1]={ [1]={ limit={ @@ -65264,7 +66057,7 @@ return { [1]="energy_shield_gained_on_enemy_death_per_level" } }, - [2998]={ + [3032]={ [1]={ [1]={ limit={ @@ -65280,7 +66073,7 @@ return { [1]="cannot_be_blinded" } }, - [2999]={ + [3033]={ [1]={ [1]={ [1]={ @@ -65321,7 +66114,7 @@ return { [1]="gain_unholy_might_on_rampage_threshold_ms" } }, - [3000]={ + [3034]={ [1]={ [1]={ limit={ @@ -65350,7 +66143,7 @@ return { [1]="elemental_damage_+%_per_level" } }, - [3001]={ + [3035]={ [1]={ [1]={ limit={ @@ -65379,7 +66172,7 @@ return { [1]="chaos_damage_+%_per_level" } }, - [3002]={ + [3036]={ [1]={ [1]={ [1]={ @@ -65399,7 +66192,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [3003]={ + [3037]={ [1]={ [1]={ [1]={ @@ -65419,7 +66212,7 @@ return { [1]="impale_phys_reduction_%_penalty" } }, - [3004]={ + [3038]={ [1]={ [1]={ limit={ @@ -65435,7 +66228,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [3005]={ + [3039]={ [1]={ [1]={ limit={ @@ -65464,7 +66257,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [3006]={ + [3040]={ [1]={ [1]={ [1]={ @@ -65484,7 +66277,7 @@ return { [1]="overcapped_fire_resistance_gain_as_fire_penetration" } }, - [3007]={ + [3041]={ [1]={ [1]={ limit={ @@ -65513,7 +66306,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [3008]={ + [3042]={ [1]={ [1]={ limit={ @@ -65542,7 +66335,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [3009]={ + [3043]={ [1]={ [1]={ [1]={ @@ -65562,7 +66355,7 @@ return { [1]="curse_on_block_level_5_vulnerability" } }, - [3010]={ + [3044]={ [1]={ [1]={ [1]={ @@ -65582,7 +66375,7 @@ return { [1]="curse_on_block_%_chance_flammability_with_+20%_effect" } }, - [3011]={ + [3045]={ [1]={ [1]={ [1]={ @@ -65602,7 +66395,7 @@ return { [1]="curse_on_melee_block_level_15_punishment" } }, - [3012]={ + [3046]={ [1]={ [1]={ [1]={ @@ -65622,7 +66415,7 @@ return { [1]="curse_on_projectile_block_level_15_temporal_chains" } }, - [3013]={ + [3047]={ [1]={ [1]={ [1]={ @@ -65642,7 +66435,7 @@ return { [1]="curse_on_spell_block_level_15_elemental_weakness" } }, - [3014]={ + [3048]={ [1]={ [1]={ limit={ @@ -65658,7 +66451,7 @@ return { [1]="display_map_has_oxygen" } }, - [3015]={ + [3049]={ [1]={ [1]={ [1]={ @@ -65678,7 +66471,7 @@ return { [1]="unique_nearby_allies_recover_permyriad_max_life_on_death" } }, - [3016]={ + [3050]={ [1]={ [1]={ limit={ @@ -65703,7 +66496,7 @@ return { [1]="base_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [3017]={ + [3051]={ [1]={ [1]={ [1]={ @@ -65787,7 +66580,7 @@ return { [2]="onslaught_time_granted_on_kill_ms" } }, - [3018]={ + [3052]={ [1]={ [1]={ [1]={ @@ -65811,7 +66604,7 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [3019]={ + [3053]={ [1]={ [1]={ limit={ @@ -65827,7 +66620,7 @@ return { [1]="melee_attacks_usable_without_mana_cost" } }, - [3020]={ + [3054]={ [1]={ [1]={ limit={ @@ -65843,7 +66636,7 @@ return { [1]="penetrate_elemental_resistance_per_frenzy_charge_%" } }, - [3021]={ + [3055]={ [1]={ [1]={ limit={ @@ -65872,7 +66665,7 @@ return { [1]="damage_vs_enemies_on_full_life_per_power_charge_+%" } }, - [3022]={ + [3056]={ [1]={ [1]={ limit={ @@ -65901,7 +66694,7 @@ return { [1]="damage_vs_enemies_on_low_life_per_power_charge_+%" } }, - [3023]={ + [3057]={ [1]={ [1]={ limit={ @@ -65917,7 +66710,7 @@ return { [1]="local_display_nearby_enemies_all_resistances_%" } }, - [3024]={ + [3058]={ [1]={ [1]={ [1]={ @@ -65937,7 +66730,7 @@ return { [1]="shapers_seed_unique_aura_life_regeneration_rate_per_minute_%" } }, - [3025]={ + [3059]={ [1]={ [1]={ limit={ @@ -65953,7 +66746,7 @@ return { [1]="dominance_additional_block_%_on_nearby_allies_per_100_strength" } }, - [3026]={ + [3060]={ [1]={ [1]={ [1]={ @@ -65990,7 +66783,7 @@ return { [1]="dominance_defences_+%_on_nearby_allies_per_100_strength" } }, - [3027]={ + [3061]={ [1]={ [1]={ limit={ @@ -66006,7 +66799,7 @@ return { [1]="dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity" } }, - [3028]={ + [3062]={ [1]={ [1]={ limit={ @@ -66035,7 +66828,7 @@ return { [1]="dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence" } }, - [3029]={ + [3063]={ [1]={ [1]={ limit={ @@ -66051,7 +66844,7 @@ return { [1]="shapers_seed_unique_aura_mana_regeneration_rate_+%" } }, - [3030]={ + [3064]={ [1]={ [1]={ limit={ @@ -66072,7 +66865,7 @@ return { [2]="local_grants_aura_maximum_added_fire_damage_per_red_socket" } }, - [3031]={ + [3065]={ [1]={ [1]={ limit={ @@ -66093,7 +66886,7 @@ return { [2]="local_grants_aura_maximum_added_cold_damage_per_green_socket" } }, - [3032]={ + [3066]={ [1]={ [1]={ limit={ @@ -66114,7 +66907,7 @@ return { [2]="local_grants_aura_maximum_added_lightning_damage_per_blue_socket" } }, - [3033]={ + [3067]={ [1]={ [1]={ limit={ @@ -66135,7 +66928,7 @@ return { [2]="local_grants_aura_maximum_added_chaos_damage_per_white_socket" } }, - [3034]={ + [3068]={ [1]={ [1]={ [1]={ @@ -66155,7 +66948,7 @@ return { [1]="life_regen_per_minute_per_endurance_charge" } }, - [3035]={ + [3069]={ [1]={ [1]={ limit={ @@ -66171,7 +66964,7 @@ return { [1]="cannot_knockback" } }, - [3036]={ + [3070]={ [1]={ [1]={ [1]={ @@ -66191,7 +66984,7 @@ return { [1]="attack_damage_that_stuns_also_chills" } }, - [3037]={ + [3071]={ [1]={ [1]={ limit={ @@ -66207,7 +67000,7 @@ return { [1]="display_map_contains_grandmasters" } }, - [3038]={ + [3072]={ [1]={ [1]={ limit={ @@ -66223,7 +67016,7 @@ return { [1]="gain_x_life_when_endurance_charge_expires_or_consumed" } }, - [3039]={ + [3073]={ [1]={ [1]={ [1]={ @@ -66260,7 +67053,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [3040]={ + [3074]={ [1]={ [1]={ limit={ @@ -66276,7 +67069,7 @@ return { [1]="no_maximum_power_charges" } }, - [3041]={ + [3075]={ [1]={ [1]={ [1]={ @@ -66296,7 +67089,7 @@ return { [1]="enemy_knockback_direction_is_reversed" } }, - [3042]={ + [3076]={ [1]={ [1]={ limit={ @@ -66312,7 +67105,7 @@ return { [1]="immune_to_ally_buff_auras" } }, - [3043]={ + [3077]={ [1]={ [1]={ limit={ @@ -66328,7 +67121,7 @@ return { [1]="allow_2_active_banners" } }, - [3044]={ + [3078]={ [1]={ [1]={ limit={ @@ -66344,7 +67137,7 @@ return { [1]="buff_auras_dont_affect_allies" } }, - [3045]={ + [3079]={ [1]={ [1]={ limit={ @@ -66360,7 +67153,7 @@ return { [1]="hits_can_only_kill_frozen_enemies" } }, - [3046]={ + [3080]={ [1]={ [1]={ limit={ @@ -66376,7 +67169,7 @@ return { [1]="maximum_life_taken_as_physical_damage_on_minion_death_%" } }, - [3047]={ + [3081]={ [1]={ [1]={ limit={ @@ -66392,7 +67185,7 @@ return { [1]="maximum_es_taken_as_physical_damage_on_minion_death_%" } }, - [3048]={ + [3082]={ [1]={ [1]={ limit={ @@ -66421,7 +67214,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [3049]={ + [3083]={ [1]={ [1]={ [1]={ @@ -66441,7 +67234,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_while_shocked" } }, - [3050]={ + [3084]={ [1]={ [1]={ limit={ @@ -66470,7 +67263,7 @@ return { [1]="charge_duration_+%" } }, - [3051]={ + [3085]={ [1]={ [1]={ limit={ @@ -66486,7 +67279,7 @@ return { [1]="physical_damage_taken_on_minion_death" } }, - [3052]={ + [3086]={ [1]={ [1]={ [1]={ @@ -66510,7 +67303,7 @@ return { [1]="onslaught_buff_duration_on_culling_strike_ms" } }, - [3053]={ + [3087]={ [1]={ [1]={ limit={ @@ -66539,7 +67332,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [3054]={ + [3088]={ [1]={ [1]={ limit={ @@ -66555,7 +67348,7 @@ return { [1]="base_avoid_chill_%_while_have_onslaught" } }, - [3055]={ + [3089]={ [1]={ [1]={ [1]={ @@ -66575,7 +67368,7 @@ return { [1]="chaos_damage_poisons" } }, - [3056]={ + [3090]={ [1]={ [1]={ [1]={ @@ -66608,7 +67401,7 @@ return { [1]="chaos_damage_chance_to_poison_%" } }, - [3057]={ + [3091]={ [1]={ [1]={ limit={ @@ -66633,7 +67426,7 @@ return { [1]="mine_extra_uses" } }, - [3058]={ + [3092]={ [1]={ [1]={ limit={ @@ -66649,7 +67442,7 @@ return { [1]="base_fire_damage_heals" } }, - [3059]={ + [3093]={ [1]={ [1]={ limit={ @@ -66665,7 +67458,7 @@ return { [1]="base_cold_damage_heals" } }, - [3060]={ + [3094]={ [1]={ [1]={ limit={ @@ -66681,7 +67474,7 @@ return { [1]="base_lightning_damage_heals" } }, - [3061]={ + [3095]={ [1]={ [1]={ limit={ @@ -66697,7 +67490,7 @@ return { [1]="base_elemental_damage_heals" } }, - [3062]={ + [3096]={ [1]={ [1]={ limit={ @@ -66713,7 +67506,7 @@ return { [1]="avoid_freeze_chill_ignite_%_while_have_onslaught" } }, - [3063]={ + [3097]={ [1]={ [1]={ [1]={ @@ -66733,7 +67526,7 @@ return { [1]="ignites_reflected_to_self" } }, - [3064]={ + [3098]={ [1]={ [1]={ limit={ @@ -66749,7 +67542,7 @@ return { [1]="sword_physical_damage_%_to_add_as_fire" } }, - [3065]={ + [3099]={ [1]={ [1]={ [1]={ @@ -66790,7 +67583,7 @@ return { [1]="gain_onslaught_when_ignited_ms" } }, - [3066]={ + [3100]={ [1]={ [1]={ [1]={ @@ -66823,7 +67616,7 @@ return { [1]="blind_nearby_enemies_when_ignited_%" } }, - [3067]={ + [3101]={ [1]={ [1]={ limit={ @@ -66839,7 +67632,7 @@ return { [1]="map_non_unique_equipment_drops_as_sell_price" } }, - [3068]={ + [3102]={ [1]={ [1]={ limit={ @@ -66855,7 +67648,7 @@ return { [1]="map_items_drop_corrupted" } }, - [3069]={ + [3103]={ [1]={ [1]={ limit={ @@ -66871,7 +67664,7 @@ return { [1]="map_weapons_drop_animated" } }, - [3070]={ + [3104]={ [1]={ [1]={ [1]={ @@ -66963,7 +67756,7 @@ return { [2]="chance_to_gain_unholy_might_on_block_ms" } }, - [3071]={ + [3105]={ [1]={ [1]={ limit={ @@ -66979,7 +67772,7 @@ return { [1]="local_jewel_nearby_passives_str_to_dex" } }, - [3072]={ + [3106]={ [1]={ [1]={ limit={ @@ -66995,7 +67788,7 @@ return { [1]="local_jewel_nearby_passives_str_to_int" } }, - [3073]={ + [3107]={ [1]={ [1]={ limit={ @@ -67011,7 +67804,7 @@ return { [1]="local_jewel_nearby_passives_dex_to_str" } }, - [3074]={ + [3108]={ [1]={ [1]={ limit={ @@ -67027,7 +67820,7 @@ return { [1]="local_jewel_nearby_passives_dex_to_int" } }, - [3075]={ + [3109]={ [1]={ [1]={ limit={ @@ -67043,7 +67836,7 @@ return { [1]="local_jewel_nearby_passives_int_to_str" } }, - [3076]={ + [3110]={ [1]={ [1]={ limit={ @@ -67059,7 +67852,7 @@ return { [1]="local_jewel_nearby_passives_int_to_dex" } }, - [3077]={ + [3111]={ [1]={ [1]={ [1]={ @@ -67096,7 +67889,7 @@ return { [1]="skill_area_of_effect_when_unarmed_+%" } }, - [3078]={ + [3112]={ [1]={ [1]={ limit={ @@ -67112,7 +67905,7 @@ return { [1]="recover_%_maximum_life_when_corpse_destroyed_or_consumed" } }, - [3079]={ + [3113]={ [1]={ [1]={ limit={ @@ -67141,7 +67934,7 @@ return { [1]="local_unique_jewel_totem_life_+X%_per_10_str_in_radius" } }, - [3080]={ + [3114]={ [1]={ [1]={ limit={ @@ -67157,7 +67950,7 @@ return { [1]="local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill" } }, - [3081]={ + [3115]={ [1]={ [1]={ limit={ @@ -67173,7 +67966,7 @@ return { [1]="local_unique_jewel_with_no_notables_gain_X_random_rare_monster_mods_on_kill" } }, - [3082]={ + [3116]={ [1]={ [1]={ [1]={ @@ -67193,7 +67986,7 @@ return { [1]="local_unique_jewel_with_x_small_nodes_gain_1_random_rare_monster_mods_on_kill" } }, - [3083]={ + [3117]={ [1]={ [1]={ limit={ @@ -67209,7 +68002,7 @@ return { [1]="gain_X_random_rare_monster_mods_on_kill" } }, - [3084]={ + [3118]={ [1]={ [1]={ limit={ @@ -67238,7 +68031,7 @@ return { [1]="recover_%_of_maximum_life_on_block" } }, - [3085]={ + [3119]={ [1]={ [1]={ limit={ @@ -67254,7 +68047,7 @@ return { [1]="minion_recover_%_of_maximum_life_on_block" } }, - [3086]={ + [3120]={ [1]={ [1]={ limit={ @@ -67270,7 +68063,7 @@ return { [1]="totems_cannot_be_stunned" } }, - [3087]={ + [3121]={ [1]={ [1]={ limit={ @@ -67299,7 +68092,7 @@ return { [1]="damage_+%_while_leeching" } }, - [3088]={ + [3122]={ [1]={ [1]={ [1]={ @@ -67332,7 +68125,7 @@ return { [1]="display_bow_range_+" } }, - [3089]={ + [3123]={ [1]={ [1]={ limit={ @@ -67348,7 +68141,7 @@ return { [1]="local_unique_jewel_armour_increases_applies_to_evasion" } }, - [3090]={ + [3124]={ [1]={ [1]={ limit={ @@ -67364,7 +68157,7 @@ return { [1]="local_unique_jewel_evasion_increases_applies_to_armour" } }, - [3091]={ + [3125]={ [1]={ [1]={ limit={ @@ -67380,7 +68173,7 @@ return { [1]="local_unique_jewel_melee_applies_to_bow" } }, - [3092]={ + [3126]={ [1]={ [1]={ limit={ @@ -67396,7 +68189,7 @@ return { [1]="local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius" } }, - [3093]={ + [3127]={ [1]={ [1]={ limit={ @@ -67412,7 +68205,7 @@ return { [1]="local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius" } }, - [3094]={ + [3128]={ [1]={ [1]={ limit={ @@ -67428,7 +68221,7 @@ return { [1]="local_unique_jewel_X_strength_per_1_strength_allocated_in_radius" } }, - [3095]={ + [3129]={ [1]={ [1]={ limit={ @@ -67457,7 +68250,7 @@ return { [1]="local_unique_jewel_chaos_damage_+%_per_10_int_in_radius" } }, - [3096]={ + [3130]={ [1]={ [1]={ limit={ @@ -67473,7 +68266,7 @@ return { [1]="local_unique_jewel_passives_in_radius_applied_to_minions_instead" } }, - [3097]={ + [3131]={ [1]={ [1]={ limit={ @@ -67489,7 +68282,7 @@ return { [1]="passive_applies_to_minions" } }, - [3098]={ + [3132]={ [1]={ [1]={ limit={ @@ -67518,7 +68311,7 @@ return { [1]="determination_aura_effect_+%_while_at_minimum_endurance_charges" } }, - [3099]={ + [3133]={ [1]={ [1]={ [1]={ @@ -67538,7 +68331,7 @@ return { [1]="life_gained_on_hit_per_enemy_status_ailment" } }, - [3100]={ + [3134]={ [1]={ [1]={ [1]={ @@ -67575,7 +68368,7 @@ return { [1]="life_gained_on_spell_hit_per_enemy_status_ailment" } }, - [3101]={ + [3135]={ [1]={ [1]={ limit={ @@ -67604,7 +68397,7 @@ return { [1]="life_regeneration_rate_+%_while_es_full" } }, - [3102]={ + [3136]={ [1]={ [1]={ limit={ @@ -67620,7 +68413,7 @@ return { [1]="local_unique_jewel_with_x_int_in_radius_+1_curse" } }, - [3103]={ + [3137]={ [1]={ [1]={ [1]={ @@ -67669,7 +68462,7 @@ return { [1]="melee_range_+_while_unarmed" } }, - [3104]={ + [3138]={ [1]={ [1]={ [1]={ @@ -67706,7 +68499,7 @@ return { [1]="damage_+%_per_equipped_magic_item" } }, - [3105]={ + [3139]={ [1]={ [1]={ limit={ @@ -67735,7 +68528,7 @@ return { [1]="spell_damage_+%_while_es_full" } }, - [3106]={ + [3140]={ [1]={ [1]={ limit={ @@ -67760,7 +68553,7 @@ return { [1]="totem_number_of_additional_projectiles" } }, - [3107]={ + [3141]={ [1]={ [1]={ [1]={ @@ -67780,7 +68573,7 @@ return { [1]="chance_to_gain_unholy_might_on_melee_kill_%" } }, - [3108]={ + [3142]={ [1]={ [1]={ limit={ @@ -67809,7 +68602,7 @@ return { [1]="spell_damage_+%_while_no_mana_reserved" } }, - [3109]={ + [3143]={ [1]={ [1]={ [1]={ @@ -67846,7 +68639,7 @@ return { [1]="spell_damage_+%_while_not_low_mana" } }, - [3110]={ + [3144]={ [1]={ [1]={ [1]={ @@ -67883,7 +68676,7 @@ return { [1]="mana_cost_+%_while_not_low_mana" } }, - [3111]={ + [3145]={ [1]={ [1]={ [1]={ @@ -67920,7 +68713,7 @@ return { [1]="all_attributes_+%_per_assigned_keystone" } }, - [3112]={ + [3146]={ [1]={ [1]={ limit={ @@ -67945,7 +68738,7 @@ return { [1]="number_of_additional_clones" } }, - [3113]={ + [3147]={ [1]={ [1]={ limit={ @@ -67974,7 +68767,7 @@ return { [1]="object_inherent_attack_skills_damage_+%_final_per_frenzy_charge" } }, - [3114]={ + [3148]={ [1]={ [1]={ [1]={ @@ -67994,7 +68787,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [3115]={ + [3149]={ [1]={ [1]={ limit={ @@ -68010,7 +68803,7 @@ return { [1]="local_unique_jewel_intelligence_per_unallocated_node_in_radius" } }, - [3116]={ + [3150]={ [1]={ [1]={ limit={ @@ -68026,7 +68819,7 @@ return { [1]="local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%" } }, - [3117]={ + [3151]={ [1]={ [1]={ limit={ @@ -68042,7 +68835,7 @@ return { [1]="local_unique_jewel_with_70_str_life_recovery_speed_+%" } }, - [3118]={ + [3152]={ [1]={ [1]={ limit={ @@ -68058,7 +68851,7 @@ return { [1]="cannot_be_cursed_with_silence" } }, - [3119]={ + [3153]={ [1]={ [1]={ limit={ @@ -68087,7 +68880,7 @@ return { [1]="vaal_skill_damage_+%" } }, - [3120]={ + [3154]={ [1]={ [1]={ limit={ @@ -68116,7 +68909,7 @@ return { [1]="damage_+%_while_dead" } }, - [3121]={ + [3155]={ [1]={ [1]={ limit={ @@ -68145,7 +68938,7 @@ return { [1]="maximum_life_+%_per_equipped_corrupted_item" } }, - [3122]={ + [3156]={ [1]={ [1]={ limit={ @@ -68174,7 +68967,7 @@ return { [1]="maximum_es_+%_per_equipped_corrupted_item" } }, - [3123]={ + [3157]={ [1]={ [1]={ [1]={ @@ -68211,7 +69004,7 @@ return { [1]="chaos_damage_+%_per_equipped_corrupted_item" } }, - [3124]={ + [3158]={ [1]={ [1]={ [1]={ @@ -68248,7 +69041,7 @@ return { [1]="life_leech_speed_+%_per_equipped_corrupted_item" } }, - [3125]={ + [3159]={ [1]={ [1]={ [1]={ @@ -68268,7 +69061,7 @@ return { [1]="life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item" } }, - [3126]={ + [3160]={ [1]={ [1]={ [1]={ @@ -68305,7 +69098,7 @@ return { [1]="mana_leech_speed_+%_per_equipped_corrupted_item" } }, - [3127]={ + [3161]={ [1]={ [1]={ limit={ @@ -68321,7 +69114,7 @@ return { [1]="all_resistances_%_per_equipped_corrupted_item" } }, - [3128]={ + [3162]={ [1]={ [1]={ limit={ @@ -68337,7 +69130,7 @@ return { [1]="chance_to_gain_vaal_soul_on_kill_%" } }, - [3129]={ + [3163]={ [1]={ [1]={ limit={ @@ -68366,7 +69159,7 @@ return { [1]="vaal_skill_effect_duration_+%" } }, - [3130]={ + [3164]={ [1]={ [1]={ limit={ @@ -68395,7 +69188,7 @@ return { [1]="vaal_skill_soul_gain_preventation_duration_+%" } }, - [3131]={ + [3165]={ [1]={ [1]={ limit={ @@ -68424,7 +69217,7 @@ return { [1]="vaal_skill_critical_strike_chance_+%" } }, - [3132]={ + [3166]={ [1]={ [1]={ limit={ @@ -68440,7 +69233,7 @@ return { [1]="vaal_skill_critical_strike_multiplier_+" } }, - [3133]={ + [3167]={ [1]={ [1]={ limit={ @@ -68456,7 +69249,7 @@ return { [1]="chance_to_gain_vaal_soul_on_enemy_shatter_%" } }, - [3134]={ + [3168]={ [1]={ [1]={ limit={ @@ -68489,7 +69282,7 @@ return { [1]="mana_cost_+%_on_totemified_aura_skills" } }, - [3135]={ + [3169]={ [1]={ [1]={ limit={ @@ -68518,7 +69311,7 @@ return { [1]="corrupted_gem_experience_gain_+%" } }, - [3136]={ + [3170]={ [1]={ [1]={ [1]={ @@ -68538,7 +69331,7 @@ return { [1]="life_leech_uses_chaos_damage_when_X_corrupted_items_equipped" } }, - [3137]={ + [3171]={ [1]={ [1]={ [1]={ @@ -68558,7 +69351,7 @@ return { [1]="half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped" } }, - [3138]={ + [3172]={ [1]={ [1]={ [1]={ @@ -68586,7 +69379,7 @@ return { [1]="gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms" } }, - [3139]={ + [3173]={ [1]={ [1]={ limit={ @@ -68602,7 +69395,7 @@ return { [1]="spend_energy_shield_for_costs_before_mana" } }, - [3140]={ + [3174]={ [1]={ [1]={ limit={ @@ -68618,7 +69411,7 @@ return { [1]="energy_shield_protects_mana" } }, - [3141]={ + [3175]={ [1]={ [1]={ [1]={ @@ -68655,7 +69448,7 @@ return { [1]="enemy_extra_damage_rolls_while_affected_by_vulnerability" } }, - [3142]={ + [3176]={ [1]={ [1]={ limit={ @@ -68671,7 +69464,7 @@ return { [1]="no_energy_shield_recovery" } }, - [3143]={ + [3177]={ [1]={ [1]={ limit={ @@ -68687,7 +69480,7 @@ return { [1]="you_count_as_full_life_while_affected_by_vulnerability" } }, - [3144]={ + [3178]={ [1]={ [1]={ limit={ @@ -68703,7 +69496,7 @@ return { [1]="you_count_as_low_life_while_affected_by_vulnerability" } }, - [3145]={ + [3179]={ [1]={ [1]={ [1]={ @@ -68736,7 +69529,7 @@ return { [1]="chance_to_curse_self_with_punishment_on_kill_%" } }, - [3146]={ + [3180]={ [1]={ [1]={ [1]={ @@ -68756,7 +69549,7 @@ return { [1]="self_cursed_with_level_x_vulnerability" } }, - [3147]={ + [3181]={ [1]={ [1]={ limit={ @@ -68772,7 +69565,7 @@ return { [1]="local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius" } }, - [3148]={ + [3182]={ [1]={ [1]={ limit={ @@ -68788,7 +69581,7 @@ return { [1]="local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius" } }, - [3149]={ + [3183]={ [1]={ [1]={ [1]={ @@ -68808,7 +69601,7 @@ return { [1]="local_unique_jewel_damage_increases_applies_to_fire_damage" } }, - [3150]={ + [3184]={ [1]={ [1]={ limit={ @@ -68824,7 +69617,7 @@ return { [1]="local_unique_jewel_physical_damage_increases_applies_to_cold_damage" } }, - [3151]={ + [3185]={ [1]={ [1]={ limit={ @@ -68840,7 +69633,7 @@ return { [1]="local_unique_jewel_cold_damage_increases_applies_to_physical_damage" } }, - [3152]={ + [3186]={ [1]={ [1]={ limit={ @@ -68856,7 +69649,7 @@ return { [1]="local_unique_jewel_energy_shield_increases_applies_to_armour_doubled" } }, - [3153]={ + [3187]={ [1]={ [1]={ limit={ @@ -68872,7 +69665,7 @@ return { [1]="local_unique_jewel_life_increases_applies_to_energy_shield" } }, - [3154]={ + [3188]={ [1]={ [1]={ limit={ @@ -68901,7 +69694,7 @@ return { [1]="base_enemy_critical_strike_chance_+%_against_self" } }, - [3155]={ + [3189]={ [1]={ [1]={ [1]={ @@ -68921,7 +69714,7 @@ return { [1]="enemy_additional_critical_strike_chance_against_self" } }, - [3156]={ + [3190]={ [1]={ [1]={ [1]={ @@ -68958,7 +69751,7 @@ return { [1]="enemy_critical_strike_chance_+%_against_self_20_times_value" } }, - [3157]={ + [3191]={ [1]={ [1]={ limit={ @@ -68974,7 +69767,7 @@ return { [1]="local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex" } }, - [3158]={ + [3192]={ [1]={ [1]={ limit={ @@ -68990,7 +69783,7 @@ return { [1]="local_unique_jewel_additional_life_per_X_int_in_radius" } }, - [3159]={ + [3193]={ [1]={ [1]={ limit={ @@ -69006,7 +69799,7 @@ return { [1]="local_unique_jewel_chaos_damage_+%_per_X_int_in_radius" } }, - [3160]={ + [3194]={ [1]={ [1]={ limit={ @@ -69022,7 +69815,7 @@ return { [1]="local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius" } }, - [3161]={ + [3195]={ [1]={ [1]={ limit={ @@ -69038,7 +69831,7 @@ return { [1]="local_unique_jewel_life_increases_applies_to_mana_doubled" } }, - [3162]={ + [3196]={ [1]={ [1]={ limit={ @@ -69054,7 +69847,7 @@ return { [1]="local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius" } }, - [3163]={ + [3197]={ [1]={ [1]={ [1]={ @@ -69091,7 +69884,7 @@ return { [1]="local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius" } }, - [3164]={ + [3198]={ [1]={ [1]={ [1]={ @@ -69124,7 +69917,7 @@ return { [1]="chill_enemy_when_hit_duration_ms" } }, - [3165]={ + [3199]={ [1]={ [1]={ limit={ @@ -69153,7 +69946,7 @@ return { [1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final" } }, - [3166]={ + [3200]={ [1]={ [1]={ limit={ @@ -69182,7 +69975,7 @@ return { [1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final" } }, - [3167]={ + [3201]={ [1]={ [1]={ [1]={ @@ -69219,7 +70012,7 @@ return { [1]="enemy_aggro_radius_+%" } }, - [3168]={ + [3202]={ [1]={ [1]={ [1]={ @@ -69244,7 +70037,7 @@ return { [2]="local_unique_regen_es_from_removed_life_duration_ms" } }, - [3169]={ + [3203]={ [1]={ [1]={ limit={ @@ -69260,7 +70053,7 @@ return { [1]="local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius" } }, - [3170]={ + [3204]={ [1]={ [1]={ limit={ @@ -69276,7 +70069,7 @@ return { [1]="local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius" } }, - [3171]={ + [3205]={ [1]={ [1]={ limit={ @@ -69292,7 +70085,7 @@ return { [1]="local_unique_jewel_fire_damage_+1%_per_x_int_in_radius" } }, - [3172]={ + [3206]={ [1]={ [1]={ limit={ @@ -69308,7 +70101,7 @@ return { [1]="local_unique_jewel_cold_damage_+1%_per_x_int_in_radius" } }, - [3173]={ + [3207]={ [1]={ [1]={ limit={ @@ -69324,7 +70117,7 @@ return { [1]="local_unique_jewel_physical_damage_+1%_per_int_in_radius" } }, - [3174]={ + [3208]={ [1]={ [1]={ limit={ @@ -69340,7 +70133,7 @@ return { [1]="local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius" } }, - [3175]={ + [3209]={ [1]={ [1]={ limit={ @@ -69356,7 +70149,7 @@ return { [1]="local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius" } }, - [3176]={ + [3210]={ [1]={ [1]={ [1]={ @@ -69376,7 +70169,7 @@ return { [1]="local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius" } }, - [3177]={ + [3211]={ [1]={ [1]={ limit={ @@ -69405,7 +70198,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius" } }, - [3178]={ + [3212]={ [1]={ [1]={ limit={ @@ -69421,7 +70214,7 @@ return { [1]="local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius" } }, - [3179]={ + [3213]={ [1]={ [1]={ limit={ @@ -69437,7 +70230,7 @@ return { [1]="local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius" } }, - [3180]={ + [3214]={ [1]={ [1]={ limit={ @@ -69453,7 +70246,7 @@ return { [1]="local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius" } }, - [3181]={ + [3215]={ [1]={ [1]={ limit={ @@ -69469,7 +70262,7 @@ return { [1]="local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius" } }, - [3182]={ + [3216]={ [1]={ [1]={ limit={ @@ -69485,7 +70278,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius" } }, - [3183]={ + [3217]={ [1]={ [1]={ limit={ @@ -69501,7 +70294,7 @@ return { [1]="local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius" } }, - [3184]={ + [3218]={ [1]={ [1]={ limit={ @@ -69517,7 +70310,7 @@ return { [1]="local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius" } }, - [3185]={ + [3219]={ [1]={ [1]={ limit={ @@ -69542,7 +70335,7 @@ return { [1]="split_arrow_number_of_additional_arrows" } }, - [3186]={ + [3220]={ [1]={ [1]={ limit={ @@ -69558,7 +70351,7 @@ return { [1]="animate_weapon_can_animate_bows" } }, - [3187]={ + [3221]={ [1]={ [1]={ limit={ @@ -69574,7 +70367,23 @@ return { [1]="animate_weapon_can_animate_wands" } }, - [3188]={ + [3222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot be Knocked Back" + } + }, + stats={ + [1]="cannot_be_knocked_back" + } + }, + [3223]={ [1]={ [1]={ [1]={ @@ -69594,7 +70403,7 @@ return { [1]="local_display_nearby_enemies_take_X_lightning_damage_per_minute" } }, - [3189]={ + [3224]={ [1]={ [1]={ limit={ @@ -69610,7 +70419,7 @@ return { [1]="damage_taken_goes_to_mana_%_per_power_charge" } }, - [3190]={ + [3225]={ [1]={ [1]={ limit={ @@ -69643,7 +70452,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [3191]={ + [3226]={ [1]={ [1]={ [1]={ @@ -69667,7 +70476,7 @@ return { [1]="enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit" } }, - [3192]={ + [3227]={ [1]={ [1]={ limit={ @@ -69696,7 +70505,7 @@ return { [1]="ball_lightning_damage_+%" } }, - [3193]={ + [3228]={ [1]={ [1]={ limit={ @@ -69725,7 +70534,7 @@ return { [1]="bleeding_damage_+%" } }, - [3194]={ + [3229]={ [1]={ [1]={ limit={ @@ -69754,7 +70563,7 @@ return { [1]="base_poison_duration_+%" } }, - [3195]={ + [3230]={ [1]={ [1]={ limit={ @@ -69787,7 +70596,7 @@ return { [1]="unique_volkuurs_clutch_poison_duration_+%_final" } }, - [3196]={ + [3231]={ [1]={ [1]={ [1]={ @@ -69807,7 +70616,7 @@ return { [1]="global_poison_on_hit" } }, - [3197]={ + [3232]={ [1]={ [1]={ [1]={ @@ -69840,7 +70649,7 @@ return { [1]="base_chance_to_poison_on_hit_%" } }, - [3198]={ + [3233]={ [1]={ [1]={ [1]={ @@ -69873,7 +70682,7 @@ return { [1]="minions_chance_to_poison_on_hit_%" } }, - [3199]={ + [3234]={ [1]={ [1]={ [1]={ @@ -69906,7 +70715,7 @@ return { [1]="chance_to_poison_on_hit_with_attacks_%" } }, - [3200]={ + [3235]={ [1]={ [1]={ limit={ @@ -69922,7 +70731,7 @@ return { [1]="fire_damage_taken_%_as_cold" } }, - [3201]={ + [3236]={ [1]={ [1]={ limit={ @@ -69938,7 +70747,7 @@ return { [1]="fire_damage_taken_%_as_lightning" } }, - [3202]={ + [3237]={ [1]={ [1]={ limit={ @@ -69954,7 +70763,7 @@ return { [1]="cold_damage_taken_%_as_fire" } }, - [3203]={ + [3238]={ [1]={ [1]={ limit={ @@ -69970,7 +70779,23 @@ return { [1]="cold_damage_taken_%_as_lightning" } }, - [3204]={ + [3239]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Cold and Lightning Damage from Hits taken as Fire Damage" + } + }, + stats={ + [1]="cold_and_lightning_damage_taken_%_as_fire" + } + }, + [3240]={ [1]={ [1]={ limit={ @@ -69986,7 +70811,7 @@ return { [1]="lightning_damage_taken_%_as_fire" } }, - [3205]={ + [3241]={ [1]={ [1]={ limit={ @@ -70015,7 +70840,7 @@ return { [1]="base_poison_damage_+%" } }, - [3206]={ + [3242]={ [1]={ [1]={ limit={ @@ -70031,7 +70856,7 @@ return { [1]="lightning_damage_taken_%_as_cold" } }, - [3207]={ + [3243]={ [1]={ [1]={ limit={ @@ -70060,7 +70885,7 @@ return { [1]="flask_charges_gained_+%_during_flask_effect" } }, - [3208]={ + [3244]={ [1]={ [1]={ limit={ @@ -70089,7 +70914,7 @@ return { [1]="mana_regeneration_rate_+%_during_flask_effect" } }, - [3209]={ + [3245]={ [1]={ [1]={ limit={ @@ -70105,7 +70930,7 @@ return { [1]="life_leech_applies_to_enemies_%" } }, - [3210]={ + [3246]={ [1]={ [1]={ limit={ @@ -70134,7 +70959,7 @@ return { [1]="movement_speed_+%_during_flask_effect" } }, - [3211]={ + [3247]={ [1]={ [1]={ limit={ @@ -70150,7 +70975,7 @@ return { [1]="critical_strike_multiplier_+_vs_bleeding_enemies" } }, - [3212]={ + [3248]={ [1]={ [1]={ limit={ @@ -70166,7 +70991,7 @@ return { [1]="critical_strike_multiplier_+_vs_burning_enemies" } }, - [3213]={ + [3249]={ [1]={ [1]={ limit={ @@ -70182,7 +71007,7 @@ return { [1]="critical_strike_multiplier_+_per_1%_block_chance" } }, - [3214]={ + [3250]={ [1]={ [1]={ limit={ @@ -70211,7 +71036,7 @@ return { [1]="critical_strike_chance_+%_vs_bleeding_enemies" } }, - [3215]={ + [3251]={ [1]={ [1]={ [1]={ @@ -70231,7 +71056,7 @@ return { [1]="minion_no_extra_bleed_damage_while_moving" } }, - [3216]={ + [3252]={ [1]={ [1]={ [1]={ @@ -70251,7 +71076,7 @@ return { [1]="no_extra_bleed_damage_while_moving" } }, - [3217]={ + [3253]={ [1]={ [1]={ limit={ @@ -70267,7 +71092,7 @@ return { [1]="map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack" } }, - [3218]={ + [3254]={ [1]={ [1]={ limit={ @@ -70283,7 +71108,7 @@ return { [1]="action_speed_cannot_be_reduced_below_base" } }, - [3219]={ + [3255]={ [1]={ [1]={ [1]={ @@ -70303,7 +71128,7 @@ return { [1]="hellscape_boots_action_speed_+%_minimum_value" } }, - [3220]={ + [3256]={ [1]={ [1]={ limit={ @@ -70319,7 +71144,7 @@ return { [1]="movement_speed_cannot_be_reduced_below_base" } }, - [3221]={ + [3257]={ [1]={ [1]={ limit={ @@ -70348,7 +71173,7 @@ return { [1]="damage_+%_while_fortified" } }, - [3222]={ + [3258]={ [1]={ [1]={ [1]={ @@ -70368,7 +71193,7 @@ return { [1]="life_regeneration_per_minute_%_while_fortified" } }, - [3223]={ + [3259]={ [1]={ [1]={ limit={ @@ -70397,7 +71222,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [3224]={ + [3260]={ [1]={ [1]={ limit={ @@ -70413,7 +71238,7 @@ return { [1]="restore_life_and_mana_on_warcry_%" } }, - [3225]={ + [3261]={ [1]={ [1]={ limit={ @@ -70429,7 +71254,7 @@ return { [1]="restore_life_on_warcry_%" } }, - [3226]={ + [3262]={ [1]={ [1]={ limit={ @@ -70458,7 +71283,7 @@ return { [1]="warcry_duration_+%" } }, - [3227]={ + [3263]={ [1]={ [1]={ [1]={ @@ -70495,7 +71320,7 @@ return { [1]="attack_speed_+%_when_hit" } }, - [3228]={ + [3264]={ [1]={ [1]={ limit={ @@ -70524,7 +71349,7 @@ return { [1]="damage_+%_when_not_on_low_life" } }, - [3229]={ + [3265]={ [1]={ [1]={ limit={ @@ -70553,7 +71378,7 @@ return { [1]="damage_+%_while_totem_active" } }, - [3230]={ + [3266]={ [1]={ [1]={ [1]={ @@ -70573,7 +71398,7 @@ return { [1]="physical_damage_%_added_as_fire_damage_on_kill" } }, - [3231]={ + [3267]={ [1]={ [1]={ [1]={ @@ -70610,7 +71435,7 @@ return { [1]="attack_and_cast_speed_+%_on_placing_totem" } }, - [3232]={ + [3268]={ [1]={ [1]={ limit={ @@ -70639,7 +71464,7 @@ return { [1]="damage_+%_to_rare_and_unique_enemies" } }, - [3233]={ + [3269]={ [1]={ [1]={ [1]={ @@ -70663,7 +71488,7 @@ return { [1]="life_leech_on_overkill_damage_%" } }, - [3234]={ + [3270]={ [1]={ [1]={ limit={ @@ -70692,7 +71517,7 @@ return { [1]="attack_speed_+%_while_leeching" } }, - [3235]={ + [3271]={ [1]={ [1]={ limit={ @@ -70708,7 +71533,7 @@ return { [1]="life_leech_does_not_stop_at_full_life" } }, - [3236]={ + [3272]={ [1]={ [1]={ limit={ @@ -70724,7 +71549,7 @@ return { [1]="cannot_be_stunned_while_leeching" } }, - [3237]={ + [3273]={ [1]={ [1]={ [1]={ @@ -70761,7 +71586,7 @@ return { [1]="armour_and_evasion_on_low_life_+%" } }, - [3238]={ + [3274]={ [1]={ [1]={ limit={ @@ -70790,7 +71615,7 @@ return { [1]="taunted_enemies_chance_to_be_stunned_+%" } }, - [3239]={ + [3275]={ [1]={ [1]={ limit={ @@ -70819,7 +71644,7 @@ return { [1]="attack_speed_while_fortified_+%" } }, - [3240]={ + [3276]={ [1]={ [1]={ [1]={ @@ -70839,7 +71664,7 @@ return { [1]="block_chance_on_damage_taken_%" } }, - [3241]={ + [3277]={ [1]={ [1]={ [1]={ @@ -70876,7 +71701,7 @@ return { [1]="damage_while_no_damage_taken_+%" } }, - [3242]={ + [3278]={ [1]={ [1]={ limit={ @@ -70905,7 +71730,7 @@ return { [1]="physical_damage_on_block_+%" } }, - [3243]={ + [3279]={ [1]={ [1]={ [1]={ @@ -70942,7 +71767,7 @@ return { [1]="attack_and_cast_speed_when_hit_+%" } }, - [3244]={ + [3280]={ [1]={ [1]={ [1]={ @@ -70979,7 +71804,7 @@ return { [1]="fire_damage_+%_to_blinded_enemies" } }, - [3245]={ + [3281]={ [1]={ [1]={ limit={ @@ -71012,7 +71837,7 @@ return { [1]="spell_damage_taken_+%_from_blinded_enemies" } }, - [3246]={ + [3282]={ [1]={ [1]={ limit={ @@ -71028,7 +71853,7 @@ return { [1]="totems_gain_%_of_players_armour" } }, - [3247]={ + [3283]={ [1]={ [1]={ [1]={ @@ -71065,7 +71890,7 @@ return { [1]="movement_velocity_while_not_hit_+%" } }, - [3248]={ + [3284]={ [1]={ [1]={ [1]={ @@ -71089,7 +71914,7 @@ return { [1]="gain_life_and_mana_leech_on_kill_permyriad" } }, - [3249]={ + [3285]={ [1]={ [1]={ limit={ @@ -71105,7 +71930,7 @@ return { [1]="local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius" } }, - [3250]={ + [3286]={ [1]={ [1]={ limit={ @@ -71121,7 +71946,7 @@ return { [1]="local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius" } }, - [3251]={ + [3287]={ [1]={ [1]={ limit={ @@ -71137,7 +71962,7 @@ return { [1]="local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius" } }, - [3252]={ + [3288]={ [1]={ [1]={ limit={ @@ -71153,7 +71978,7 @@ return { [1]="local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius" } }, - [3253]={ + [3289]={ [1]={ [1]={ limit={ @@ -71169,7 +71994,7 @@ return { [1]="local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius" } }, - [3254]={ + [3290]={ [1]={ [1]={ limit={ @@ -71185,7 +72010,7 @@ return { [1]="glacial_hammer_item_rarity_on_shattering_enemy_+%" } }, - [3255]={ + [3291]={ [1]={ [1]={ limit={ @@ -71201,7 +72026,7 @@ return { [1]="spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%" } }, - [3256]={ + [3292]={ [1]={ [1]={ limit={ @@ -71217,7 +72042,7 @@ return { [1]="double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%" } }, - [3257]={ + [3293]={ [1]={ [1]={ limit={ @@ -71233,7 +72058,7 @@ return { [1]="viper_strike_attack_damage_per_poison_on_enemy_+%" } }, - [3258]={ + [3294]={ [1]={ [1]={ limit={ @@ -71249,7 +72074,7 @@ return { [1]="heavy_strike_chance_to_deal_double_damage_%" } }, - [3259]={ + [3295]={ [1]={ [1]={ [1]={ @@ -71290,7 +72115,7 @@ return { [1]="enchantment_boots_mana_costs_when_hit_+%" } }, - [3260]={ + [3296]={ [1]={ [1]={ [1]={ @@ -71310,7 +72135,7 @@ return { [1]="enchantment_boots_stun_avoid_%_on_kill" } }, - [3261]={ + [3297]={ [1]={ [1]={ [1]={ @@ -71334,7 +72159,7 @@ return { [1]="spell_suppression_chance_%_if_taken_spell_damage_recently" } }, - [3262]={ + [3298]={ [1]={ [1]={ [1]={ @@ -71354,7 +72179,7 @@ return { [1]="enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill" } }, - [3263]={ + [3299]={ [1]={ [1]={ [1]={ @@ -71379,7 +72204,7 @@ return { [2]="enchantment_boots_added_cold_damage_when_hit_maximum" } }, - [3264]={ + [3300]={ [1]={ [1]={ [1]={ @@ -71404,7 +72229,7 @@ return { [2]="enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds" } }, - [3265]={ + [3301]={ [1]={ [1]={ [1]={ @@ -71432,7 +72257,7 @@ return { [1]="enchantment_boots_life_leech_on_kill_permyriad" } }, - [3266]={ + [3302]={ [1]={ [1]={ [1]={ @@ -71457,7 +72282,7 @@ return { [2]="enchantment_boots_maximum_added_fire_damage_on_kill_4s" } }, - [3267]={ + [3303]={ [1]={ [1]={ [1]={ @@ -71494,7 +72319,7 @@ return { [1]="enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds" } }, - [3268]={ + [3304]={ [1]={ [1]={ [1]={ @@ -71514,7 +72339,7 @@ return { [1]="enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds" } }, - [3269]={ + [3305]={ [1]={ [1]={ [1]={ @@ -71534,7 +72359,7 @@ return { [1]="extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently" } }, - [3270]={ + [3306]={ [1]={ [1]={ limit={ @@ -71550,7 +72375,7 @@ return { [1]="local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons" } }, - [3271]={ + [3307]={ [1]={ [1]={ limit={ @@ -71566,7 +72391,7 @@ return { [1]="number_of_melee_skeletons_to_summon_as_mage_skeletons" } }, - [3272]={ + [3308]={ [1]={ [1]={ [1]={ @@ -71590,7 +72415,7 @@ return { [1]="local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius" } }, - [3273]={ + [3309]={ [1]={ [1]={ [1]={ @@ -71614,7 +72439,7 @@ return { [1]="vigilant_strike_applies_to_nearby_allies_for_X_seconds" } }, - [3274]={ + [3310]={ [1]={ [1]={ limit={ @@ -71643,7 +72468,7 @@ return { [1]="local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius" } }, - [3275]={ + [3311]={ [1]={ [1]={ [1]={ @@ -71676,7 +72501,7 @@ return { [1]="local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius" } }, - [3276]={ + [3312]={ [1]={ [1]={ limit={ @@ -71705,7 +72530,7 @@ return { [1]="fireball_radius_up_to_+%_at_longer_ranges" } }, - [3277]={ + [3313]={ [1]={ [1]={ [1]={ @@ -71738,7 +72563,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [3278]={ + [3314]={ [1]={ [1]={ limit={ @@ -71754,7 +72579,7 @@ return { [1]="local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius" } }, - [3279]={ + [3315]={ [1]={ [1]={ limit={ @@ -71770,7 +72595,7 @@ return { [1]="animate_weapon_can_animate_up_to_x_additional_ranged_weapons" } }, - [3280]={ + [3316]={ [1]={ [1]={ limit={ @@ -71795,7 +72620,7 @@ return { [1]="local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius" } }, - [3281]={ + [3317]={ [1]={ [1]={ limit={ @@ -71824,7 +72649,7 @@ return { [1]="local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius" } }, - [3282]={ + [3318]={ [1]={ [1]={ limit={ @@ -71853,7 +72678,7 @@ return { [1]="ground_slam_angle_+%" } }, - [3283]={ + [3319]={ [1]={ [1]={ limit={ @@ -71869,7 +72694,7 @@ return { [1]="local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius" } }, - [3284]={ + [3320]={ [1]={ [1]={ limit={ @@ -71885,7 +72710,7 @@ return { [1]="cold_snap_gain_power_charge_on_kill_%" } }, - [3285]={ + [3321]={ [1]={ [1]={ [1]={ @@ -71909,7 +72734,7 @@ return { [1]="local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius" } }, - [3286]={ + [3322]={ [1]={ [1]={ [1]={ @@ -71933,7 +72758,7 @@ return { [1]="warcry_damage_taken_goes_to_mana_%" } }, - [3287]={ + [3323]={ [1]={ [1]={ limit={ @@ -71958,7 +72783,7 @@ return { [1]="local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius" } }, - [3288]={ + [3324]={ [1]={ [1]={ limit={ @@ -71983,7 +72808,7 @@ return { [1]="barrage_final_volley_fires_x_additional_projectiles_simultaneously" } }, - [3289]={ + [3325]={ [1]={ [1]={ limit={ @@ -71999,7 +72824,7 @@ return { [1]="never_block" } }, - [3290]={ + [3326]={ [1]={ [1]={ limit={ @@ -72015,7 +72840,7 @@ return { [1]="local_no_block_chance" } }, - [3291]={ + [3327]={ [1]={ [1]={ limit={ @@ -72031,7 +72856,7 @@ return { [1]="mana_cost_-%_per_endurance_charge" } }, - [3292]={ + [3328]={ [1]={ [1]={ [1]={ @@ -72051,7 +72876,7 @@ return { [1]="gain_rampage_while_at_maximum_endurance_charges" } }, - [3293]={ + [3329]={ [1]={ [1]={ limit={ @@ -72067,7 +72892,7 @@ return { [1]="lose_endurance_charges_on_rampage_end" } }, - [3294]={ + [3330]={ [1]={ [1]={ limit={ @@ -72083,7 +72908,7 @@ return { [1]="virtual_number_of_ranged_animated_weapons_allowed" } }, - [3295]={ + [3331]={ [1]={ [1]={ [1]={ @@ -72103,7 +72928,7 @@ return { [1]="stun_threshold_based_on_%_mana_instead_of_life" } }, - [3296]={ + [3332]={ [1]={ [1]={ [1]={ @@ -72140,7 +72965,7 @@ return { [1]="stun_threshold_+%" } }, - [3297]={ + [3333]={ [1]={ [1]={ limit={ @@ -72169,7 +72994,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_active_skeleton" } }, - [3298]={ + [3334]={ [1]={ [1]={ limit={ @@ -72198,7 +73023,7 @@ return { [1]="minion_duration_+%_per_active_zombie" } }, - [3299]={ + [3335]={ [1]={ [1]={ limit={ @@ -72227,7 +73052,7 @@ return { [1]="minion_damage_+%_per_active_spectre" } }, - [3300]={ + [3336]={ [1]={ [1]={ [1]={ @@ -72247,7 +73072,7 @@ return { [1]="minion_life_regeneration_per_minute_per_active_raging_spirit" } }, - [3301]={ + [3337]={ [1]={ [1]={ limit={ @@ -72276,7 +73101,7 @@ return { [1]="warcry_speed_+%" } }, - [3302]={ + [3338]={ [1]={ [1]={ limit={ @@ -72301,7 +73126,7 @@ return { [1]="gain_her_blessing_for_3_seconds_on_ignite_%" } }, - [3303]={ + [3339]={ [1]={ [1]={ [1]={ @@ -72334,7 +73159,7 @@ return { [1]="blind_nearby_enemies_when_gaining_her_blessing_%" } }, - [3304]={ + [3340]={ [1]={ [1]={ limit={ @@ -72350,7 +73175,7 @@ return { [1]="avoid_freeze_chill_ignite_%_with_her_blessing" } }, - [3305]={ + [3341]={ [1]={ [1]={ limit={ @@ -72379,7 +73204,7 @@ return { [1]="attack_and_movement_speed_+%_with_her_blessing" } }, - [3306]={ + [3342]={ [1]={ [1]={ limit={ @@ -72395,7 +73220,7 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [3307]={ + [3343]={ [1]={ [1]={ [1]={ @@ -72428,7 +73253,7 @@ return { [1]="apply_poison_on_hit_vs_bleeding_enemies_%" } }, - [3308]={ + [3344]={ [1]={ [1]={ limit={ @@ -72457,7 +73282,7 @@ return { [1]="damage_taken_+%_from_blinded_enemies" } }, - [3309]={ + [3345]={ [1]={ [1]={ limit={ @@ -72486,7 +73311,7 @@ return { [1]="attack_damage_+%_per_frenzy_charge" } }, - [3310]={ + [3346]={ [1]={ [1]={ limit={ @@ -72515,7 +73340,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [3311]={ + [3347]={ [1]={ [1]={ [1]={ @@ -72552,7 +73377,7 @@ return { [1]="arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%" } }, - [3312]={ + [3348]={ [1]={ [1]={ [1]={ @@ -72589,7 +73414,7 @@ return { [1]="arcane_surge_effect_+%" } }, - [3313]={ + [3349]={ [1]={ [1]={ [1]={ @@ -72634,7 +73459,7 @@ return { [1]="arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%" } }, - [3314]={ + [3350]={ [1]={ [1]={ [1]={ @@ -72671,7 +73496,7 @@ return { [1]="onslaught_effect_+%" } }, - [3315]={ + [3351]={ [1]={ [1]={ limit={ @@ -72700,7 +73525,7 @@ return { [1]="attack_damage_+%_while_onslaught_active" } }, - [3316]={ + [3352]={ [1]={ [1]={ limit={ @@ -72729,7 +73554,7 @@ return { [1]="critical_strike_chance_+%_vs_poisoned_enemies" } }, - [3317]={ + [3353]={ [1]={ [1]={ limit={ @@ -72758,7 +73583,7 @@ return { [1]="elemental_damage_taken_+%" } }, - [3318]={ + [3354]={ [1]={ [1]={ limit={ @@ -72787,7 +73612,7 @@ return { [1]="damage_taken_from_traps_and_mines_+%" } }, - [3319]={ + [3355]={ [1]={ [1]={ [1]={ @@ -72820,7 +73645,7 @@ return { [1]="maim_on_hit_%_vs_poisoned_enemies" } }, - [3320]={ + [3356]={ [1]={ [1]={ limit={ @@ -72849,7 +73674,7 @@ return { [1]="raider_passive_evade_melee_attacks_while_onslaughted_+%_final" } }, - [3321]={ + [3357]={ [1]={ [1]={ limit={ @@ -72878,7 +73703,7 @@ return { [1]="raider_passive_evade_projectile_attacks_while_onslaughted_+%_final" } }, - [3322]={ + [3358]={ [1]={ [1]={ [1]={ @@ -72898,7 +73723,7 @@ return { [1]="dispel_status_ailments_on_flask_use" } }, - [3323]={ + [3359]={ [1]={ [1]={ [1]={ @@ -72918,7 +73743,7 @@ return { [1]="avoid_status_ailments_%_during_flask_effect" } }, - [3324]={ + [3360]={ [1]={ [1]={ limit={ @@ -72947,7 +73772,7 @@ return { [1]="attack_speed_+%_during_flask_effect" } }, - [3325]={ + [3361]={ [1]={ [1]={ limit={ @@ -72963,7 +73788,7 @@ return { [1]="chaos_resistance_+_while_using_flask" } }, - [3326]={ + [3362]={ [1]={ [1]={ [1]={ @@ -72996,7 +73821,7 @@ return { [1]="poison_on_hit_during_flask_effect_%" } }, - [3327]={ + [3363]={ [1]={ [1]={ limit={ @@ -73012,7 +73837,7 @@ return { [1]="explode_on_kill_%_chaos_damage_to_deal" } }, - [3328]={ + [3364]={ [1]={ [1]={ limit={ @@ -73028,7 +73853,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%" } }, - [3329]={ + [3365]={ [1]={ [1]={ limit={ @@ -73044,7 +73869,7 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_chance_%" } }, - [3330]={ + [3366]={ [1]={ [1]={ limit={ @@ -73060,7 +73885,7 @@ return { [1]="explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%" } }, - [3331]={ + [3367]={ [1]={ [1]={ [1]={ @@ -73080,7 +73905,7 @@ return { [1]="enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds" } }, - [3332]={ + [3368]={ [1]={ [1]={ [1]={ @@ -73100,7 +73925,7 @@ return { [1]="enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds" } }, - [3333]={ + [3369]={ [1]={ [1]={ [1]={ @@ -73125,7 +73950,7 @@ return { [2]="enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s" } }, - [3334]={ + [3370]={ [1]={ [1]={ [1]={ @@ -73145,7 +73970,7 @@ return { [1]="movement_speed_+%_while_not_affected_by_status_ailments" } }, - [3335]={ + [3371]={ [1]={ [1]={ limit={ @@ -73161,7 +73986,7 @@ return { [1]="stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds" } }, - [3336]={ + [3372]={ [1]={ [1]={ [1]={ @@ -73189,7 +74014,7 @@ return { [1]="life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments" } }, - [3337]={ + [3373]={ [1]={ [1]={ [1]={ @@ -73209,7 +74034,7 @@ return { [1]="totems_explode_for_%_of_max_life_as_fire_damage_on_low_life" } }, - [3338]={ + [3374]={ [1]={ [1]={ [1]={ @@ -73229,7 +74054,7 @@ return { [1]="guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%" } }, - [3339]={ + [3375]={ [1]={ [1]={ [1]={ @@ -73262,7 +74087,7 @@ return { [1]="chance_to_avoid_stun_%_aura_while_wielding_a_staff" } }, - [3340]={ + [3376]={ [1]={ [1]={ limit={ @@ -73291,7 +74116,7 @@ return { [1]="damage_taken_+%_from_bleeding_enemies" } }, - [3341]={ + [3377]={ [1]={ [1]={ [1]={ @@ -73324,7 +74149,7 @@ return { [1]="maim_bleeding_enemies_on_hit_%" } }, - [3342]={ + [3378]={ [1]={ [1]={ limit={ @@ -73353,7 +74178,7 @@ return { [1]="one_handed_attack_speed_+%" } }, - [3343]={ + [3379]={ [1]={ [1]={ limit={ @@ -73382,7 +74207,7 @@ return { [1]="movement_speed_+%_for_4_seconds_on_block" } }, - [3344]={ + [3380]={ [1]={ [1]={ limit={ @@ -73411,7 +74236,7 @@ return { [1]="movement_speed_+%_while_fortified" } }, - [3345]={ + [3381]={ [1]={ [1]={ limit={ @@ -73440,7 +74265,7 @@ return { [1]="elemental_damage_taken_+%_at_maximum_endurance_charges" } }, - [3346]={ + [3382]={ [1]={ [1]={ [1]={ @@ -73464,7 +74289,7 @@ return { [1]="status_ailments_removed_at_low_life" } }, - [3347]={ + [3383]={ [1]={ [1]={ limit={ @@ -73489,7 +74314,7 @@ return { [1]="gain_frenzy_charge_on_main_hand_kill_%" } }, - [3348]={ + [3384]={ [1]={ [1]={ limit={ @@ -73514,7 +74339,7 @@ return { [1]="gain_endurance_charge_on_main_hand_kill_%" } }, - [3349]={ + [3385]={ [1]={ [1]={ [1]={ @@ -73551,7 +74376,7 @@ return { [1]="damage_taken_+%_for_4_seconds_on_kill" } }, - [3350]={ + [3386]={ [1]={ [1]={ [1]={ @@ -73571,7 +74396,7 @@ return { [1]="avoid_stun_%_for_4_seconds_on_kill" } }, - [3351]={ + [3387]={ [1]={ [1]={ limit={ @@ -73596,7 +74421,7 @@ return { [1]="you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%" } }, - [3352]={ + [3388]={ [1]={ [1]={ limit={ @@ -73621,7 +74446,7 @@ return { [1]="minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%" } }, - [3353]={ + [3389]={ [1]={ [1]={ limit={ @@ -73650,7 +74475,7 @@ return { [1]="warcry_cooldown_speed_+%" } }, - [3354]={ + [3390]={ [1]={ [1]={ limit={ @@ -73679,7 +74504,7 @@ return { [1]="golem_skill_cooldown_recovery_+%" } }, - [3355]={ + [3391]={ [1]={ [1]={ limit={ @@ -73708,7 +74533,7 @@ return { [1]="golem_cooldown_recovery_+%" } }, - [3356]={ + [3392]={ [1]={ [1]={ limit={ @@ -73724,7 +74549,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [3357]={ + [3393]={ [1]={ [1]={ limit={ @@ -73753,7 +74578,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_full_life" } }, - [3358]={ + [3394]={ [1]={ [1]={ limit={ @@ -73782,7 +74607,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_low_life" } }, - [3359]={ + [3395]={ [1]={ [1]={ limit={ @@ -73811,7 +74636,7 @@ return { [1]="damage_+%_with_one_handed_weapons" } }, - [3360]={ + [3396]={ [1]={ [1]={ limit={ @@ -73840,7 +74665,7 @@ return { [1]="damage_+%_with_two_handed_weapons" } }, - [3361]={ + [3397]={ [1]={ [1]={ limit={ @@ -73856,7 +74681,7 @@ return { [1]="damage_reduction_rating_from_body_armour_doubled" } }, - [3362]={ + [3398]={ [1]={ [1]={ limit={ @@ -73872,7 +74697,7 @@ return { [1]="gain_no_armour_from_body_armour" } }, - [3363]={ + [3399]={ [1]={ [1]={ limit={ @@ -73888,7 +74713,7 @@ return { [1]="damage_reduction_rating_%_with_active_totem" } }, - [3364]={ + [3400]={ [1]={ [1]={ limit={ @@ -73904,7 +74729,7 @@ return { [1]="local_display_cast_level_x_manifest_dancing_dervish" } }, - [3365]={ + [3401]={ [1]={ [1]={ limit={ @@ -73920,7 +74745,7 @@ return { [1]="local_display_manifest_dancing_dervish_disables_weapons" } }, - [3366]={ + [3402]={ [1]={ [1]={ limit={ @@ -73936,7 +74761,7 @@ return { [1]="local_display_manifest_dancing_dervish_destroy_on_end_rampage" } }, - [3367]={ + [3403]={ [1]={ [1]={ [1]={ @@ -73956,7 +74781,7 @@ return { [1]="local_display_minions_grant_onslaught" } }, - [3368]={ + [3404]={ [1]={ [1]={ limit={ @@ -73985,7 +74810,7 @@ return { [1]="physical_damage_+%_while_frozen" } }, - [3369]={ + [3405]={ [1]={ [1]={ [1]={ @@ -74009,7 +74834,7 @@ return { [1]="local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius" } }, - [3370]={ + [3406]={ [1]={ [1]={ limit={ @@ -74025,7 +74850,7 @@ return { [1]="local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius" } }, - [3371]={ + [3407]={ [1]={ [1]={ limit={ @@ -74050,7 +74875,7 @@ return { [1]="local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius" } }, - [3372]={ + [3408]={ [1]={ [1]={ limit={ @@ -74066,7 +74891,7 @@ return { [1]="local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius" } }, - [3373]={ + [3409]={ [1]={ [1]={ limit={ @@ -74082,7 +74907,7 @@ return { [1]="local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius" } }, - [3374]={ + [3410]={ [1]={ [1]={ limit={ @@ -74098,7 +74923,7 @@ return { [1]="local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius" } }, - [3375]={ + [3411]={ [1]={ [1]={ limit={ @@ -74114,7 +74939,7 @@ return { [1]="local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius" } }, - [3376]={ + [3412]={ [1]={ [1]={ limit={ @@ -74139,7 +74964,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius" } }, - [3377]={ + [3413]={ [1]={ [1]={ limit={ @@ -74164,7 +74989,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius" } }, - [3378]={ + [3414]={ [1]={ [1]={ limit={ @@ -74189,7 +75014,7 @@ return { [1]="local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius" } }, - [3379]={ + [3415]={ [1]={ [1]={ [1]={ @@ -74226,7 +75051,7 @@ return { [1]="local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius" } }, - [3380]={ + [3416]={ [1]={ [1]={ limit={ @@ -74255,7 +75080,7 @@ return { [1]="anger_aura_effect_+%" } }, - [3381]={ + [3417]={ [1]={ [1]={ limit={ @@ -74284,7 +75109,7 @@ return { [1]="purity_of_elements_aura_effect_+%" } }, - [3382]={ + [3418]={ [1]={ [1]={ limit={ @@ -74313,7 +75138,7 @@ return { [1]="purity_of_fire_aura_effect_+%" } }, - [3383]={ + [3419]={ [1]={ [1]={ limit={ @@ -74342,7 +75167,7 @@ return { [1]="purity_of_ice_aura_effect_+%" } }, - [3384]={ + [3420]={ [1]={ [1]={ limit={ @@ -74371,7 +75196,7 @@ return { [1]="purity_of_lightning_aura_effect_+%" } }, - [3385]={ + [3421]={ [1]={ [1]={ limit={ @@ -74400,7 +75225,7 @@ return { [1]="wrath_aura_effect_+%" } }, - [3386]={ + [3422]={ [1]={ [1]={ limit={ @@ -74429,7 +75254,7 @@ return { [1]="banner_aura_effect_+%" } }, - [3387]={ + [3423]={ [1]={ [1]={ limit={ @@ -74458,7 +75283,7 @@ return { [1]="grace_aura_effect_+%" } }, - [3388]={ + [3424]={ [1]={ [1]={ limit={ @@ -74487,7 +75312,7 @@ return { [1]="haste_aura_effect_+%" } }, - [3389]={ + [3425]={ [1]={ [1]={ limit={ @@ -74516,7 +75341,7 @@ return { [1]="precision_aura_effect_+%" } }, - [3390]={ + [3426]={ [1]={ [1]={ limit={ @@ -74545,7 +75370,7 @@ return { [1]="hatred_aura_effect_+%" } }, - [3391]={ + [3427]={ [1]={ [1]={ limit={ @@ -74574,7 +75399,7 @@ return { [1]="determination_aura_effect_+%" } }, - [3392]={ + [3428]={ [1]={ [1]={ limit={ @@ -74603,7 +75428,7 @@ return { [1]="discipline_aura_effect_+%" } }, - [3393]={ + [3429]={ [1]={ [1]={ limit={ @@ -74619,7 +75444,7 @@ return { [1]="cannot_be_poisoned" } }, - [3394]={ + [3430]={ [1]={ [1]={ limit={ @@ -74635,7 +75460,7 @@ return { [1]="chance_to_be_poisoned_%" } }, - [3395]={ + [3431]={ [1]={ [1]={ [1]={ @@ -74668,7 +75493,7 @@ return { [1]="avoid_physical_damage_%" } }, - [3396]={ + [3432]={ [1]={ [1]={ [1]={ @@ -74681,7 +75506,7 @@ return { [2]=99 } }, - text="{0}% chance to Avoid Elemental Damage from Hits per Frenzy Charge" + text="{0}% chance to Avoid Damage of each Element from Hits per Frenzy Charge" }, [2]={ [1]={ @@ -74694,14 +75519,14 @@ return { [2]=100 } }, - text="Avoid Elemental Damage from Hits while you have Frenzy Charges" + text="Avoid Damage of each Element from Hits while you have Frenzy Charges" } }, stats={ [1]="avoid_elemental_damage_%_per_frenzy_charge" } }, - [3397]={ + [3433]={ [1]={ [1]={ [1]={ @@ -74734,7 +75559,7 @@ return { [1]="avoid_fire_damage_%" } }, - [3398]={ + [3434]={ [1]={ [1]={ [1]={ @@ -74767,7 +75592,7 @@ return { [1]="avoid_cold_damage_%" } }, - [3399]={ + [3435]={ [1]={ [1]={ [1]={ @@ -74800,7 +75625,7 @@ return { [1]="avoid_lightning_damage_%" } }, - [3400]={ + [3436]={ [1]={ [1]={ [1]={ @@ -74833,7 +75658,7 @@ return { [1]="avoid_chaos_damage_%" } }, - [3401]={ + [3437]={ [1]={ [1]={ [1]={ @@ -74866,7 +75691,7 @@ return { [1]="chance_to_gain_unholy_might_on_kill_for_3_seconds_%" } }, - [3402]={ + [3438]={ [1]={ [1]={ [1]={ @@ -74899,7 +75724,7 @@ return { [1]="chance_to_gain_unholy_might_on_kill_for_4_seconds_%" } }, - [3403]={ + [3439]={ [1]={ [1]={ [1]={ @@ -74932,7 +75757,7 @@ return { [1]="minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%" } }, - [3404]={ + [3440]={ [1]={ [1]={ [1]={ @@ -74965,7 +75790,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_4_seconds_%" } }, - [3405]={ + [3441]={ [1]={ [1]={ [1]={ @@ -74998,7 +75823,7 @@ return { [1]="minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%" } }, - [3406]={ + [3442]={ [1]={ [1]={ [1]={ @@ -75031,7 +75856,7 @@ return { [1]="chance_to_grant_nearby_enemies_onslaught_on_kill_%" } }, - [3407]={ + [3443]={ [1]={ [1]={ [1]={ @@ -75064,7 +75889,7 @@ return { [1]="chance_to_grant_nearby_enemies_old_unholy_might_on_kill_%" } }, - [3408]={ + [3444]={ [1]={ [1]={ limit={ @@ -75089,7 +75914,7 @@ return { [1]="chance_to_grant_power_charge_to_nearby_allies_on_kill_%" } }, - [3409]={ + [3445]={ [1]={ [1]={ limit={ @@ -75114,7 +75939,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%" } }, - [3410]={ + [3446]={ [1]={ [1]={ limit={ @@ -75130,7 +75955,7 @@ return { [1]="remove_bleed_on_flask_use" } }, - [3411]={ + [3447]={ [1]={ [1]={ limit={ @@ -75146,7 +75971,7 @@ return { [1]="remove_corrupted_blood_when_you_use_a_flask" } }, - [3412]={ + [3448]={ [1]={ [1]={ limit={ @@ -75179,7 +76004,7 @@ return { [1]="lightning_damage_taken_+%" } }, - [3413]={ + [3449]={ [1]={ [1]={ limit={ @@ -75212,7 +76037,7 @@ return { [1]="cold_damage_taken_+%" } }, - [3414]={ + [3450]={ [1]={ [1]={ [1]={ @@ -75232,7 +76057,7 @@ return { [1]="mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy" } }, - [3415]={ + [3451]={ [1]={ [1]={ limit={ @@ -75257,7 +76082,7 @@ return { [1]="gain_flask_chance_on_crit_%" } }, - [3416]={ + [3452]={ [1]={ [1]={ limit={ @@ -75273,7 +76098,7 @@ return { [1]="virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies" } }, - [3417]={ + [3453]={ [1]={ [1]={ limit={ @@ -75289,7 +76114,7 @@ return { [1]="number_of_additional_shrapnel_ballistae_per_200_strength" } }, - [3418]={ + [3454]={ [1]={ [1]={ limit={ @@ -75305,7 +76130,7 @@ return { [1]="number_of_additional_siege_ballistae_per_200_dexterity" } }, - [3419]={ + [3455]={ [1]={ [1]={ limit={ @@ -75326,7 +76151,7 @@ return { [2]="attack_maximum_added_physical_damage_per_25_dexterity" } }, - [3420]={ + [3456]={ [1]={ [1]={ [1]={ @@ -75346,7 +76171,7 @@ return { [1]="local_display_nearby_enemies_are_blinded" } }, - [3421]={ + [3457]={ [1]={ [1]={ [1]={ @@ -75366,7 +76191,7 @@ return { [1]="local_display_nearby_enemies_are_crushed" } }, - [3422]={ + [3458]={ [1]={ [1]={ [1]={ @@ -75386,7 +76211,7 @@ return { [1]="local_display_nearby_enemies_have_malediction" } }, - [3423]={ + [3459]={ [1]={ [1]={ [1]={ @@ -75406,7 +76231,7 @@ return { [1]="local_display_nearby_enemies_scorched" } }, - [3424]={ + [3460]={ [1]={ [1]={ limit={ @@ -75422,7 +76247,7 @@ return { [1]="local_display_hits_against_nearby_enemies_critical_strike_chance_+50%" } }, - [3425]={ + [3461]={ [1]={ [1]={ limit={ @@ -75451,7 +76276,7 @@ return { [1]="local_display_nearby_enemies_critical_strike_chance_+%_against_self" } }, - [3426]={ + [3462]={ [1]={ [1]={ limit={ @@ -75480,7 +76305,7 @@ return { [1]="local_display_nearby_enemies_flask_charges_granted_+%" } }, - [3427]={ + [3463]={ [1]={ [1]={ [1]={ @@ -75521,7 +76346,7 @@ return { [1]="local_display_nearby_enemies_movement_speed_+%" } }, - [3428]={ + [3464]={ [1]={ [1]={ limit={ @@ -75554,7 +76379,7 @@ return { [1]="local_display_nearby_enemies_stun_and_block_recovery_+%" } }, - [3429]={ + [3465]={ [1]={ [1]={ limit={ @@ -75579,7 +76404,7 @@ return { [1]="gain_power_charge_on_non_critical_strike_%" } }, - [3430]={ + [3466]={ [1]={ [1]={ limit={ @@ -75608,7 +76433,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [3431]={ + [3467]={ [1]={ [1]={ [1]={ @@ -75641,7 +76466,7 @@ return { [1]="chilled_ground_on_freeze_%_chance_for_3_seconds" } }, - [3432]={ + [3468]={ [1]={ [1]={ [1]={ @@ -75674,7 +76499,7 @@ return { [1]="consecrate_ground_on_kill_%_for_3_seconds" } }, - [3433]={ + [3469]={ [1]={ [1]={ limit={ @@ -75703,7 +76528,7 @@ return { [1]="frost_blades_damage_+%" } }, - [3434]={ + [3470]={ [1]={ [1]={ limit={ @@ -75732,7 +76557,7 @@ return { [1]="frost_blades_projectile_speed_+%" } }, - [3435]={ + [3471]={ [1]={ [1]={ limit={ @@ -75757,7 +76582,7 @@ return { [1]="frost_blades_number_of_additional_projectiles_in_chain" } }, - [3436]={ + [3472]={ [1]={ [1]={ limit={ @@ -75786,7 +76611,7 @@ return { [1]="summoned_raging_spirit_duration_+%" } }, - [3437]={ + [3473]={ [1]={ [1]={ limit={ @@ -75802,7 +76627,7 @@ return { [1]="summoned_raging_spirit_chance_to_spawn_additional_minion_%" } }, - [3438]={ + [3474]={ [1]={ [1]={ limit={ @@ -75831,7 +76656,7 @@ return { [1]="discharge_damage_+%" } }, - [3439]={ + [3475]={ [1]={ [1]={ limit={ @@ -75860,7 +76685,7 @@ return { [1]="discharge_radius_+%" } }, - [3440]={ + [3476]={ [1]={ [1]={ limit={ @@ -75885,7 +76710,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [3441]={ + [3477]={ [1]={ [1]={ limit={ @@ -75918,7 +76743,7 @@ return { [1]="anger_mana_reservation_+%" } }, - [3442]={ + [3478]={ [1]={ [1]={ limit={ @@ -75947,7 +76772,7 @@ return { [1]="lightning_trap_damage_+%" } }, - [3443]={ + [3479]={ [1]={ [1]={ limit={ @@ -75972,7 +76797,7 @@ return { [1]="lightning_trap_number_of_additional_projectiles" } }, - [3444]={ + [3480]={ [1]={ [1]={ limit={ @@ -76001,7 +76826,7 @@ return { [1]="lightning_trap_cooldown_speed_+%" } }, - [3445]={ + [3481]={ [1]={ [1]={ [1]={ @@ -76021,7 +76846,7 @@ return { [1]="piercing_attacks_cause_bleeding" } }, - [3446]={ + [3482]={ [1]={ [1]={ limit={ @@ -76037,7 +76862,7 @@ return { [1]="energy_shield_recharges_on_block_%" } }, - [3447]={ + [3483]={ [1]={ [1]={ limit={ @@ -76062,7 +76887,7 @@ return { [1]="energy_shield_recharges_on_suppress_%" } }, - [3448]={ + [3484]={ [1]={ [1]={ [1]={ @@ -76082,7 +76907,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_ms" } }, - [3449]={ + [3485]={ [1]={ [1]={ [1]={ @@ -76106,7 +76931,7 @@ return { [1]="soul_eater_on_rare_kill_ms" } }, - [3450]={ + [3486]={ [1]={ [1]={ [1]={ @@ -76130,7 +76955,7 @@ return { [1]="map_players_gain_soul_eater_on_rare_kill_ms" } }, - [3451]={ + [3487]={ [1]={ [1]={ [1]={ @@ -76150,7 +76975,7 @@ return { [1]="gain_soul_eater_during_flask_effect" } }, - [3452]={ + [3488]={ [1]={ [1]={ limit={ @@ -76166,7 +76991,7 @@ return { [1]="lose_soul_eater_souls_on_flask_use" } }, - [3453]={ + [3489]={ [1]={ [1]={ [1]={ @@ -76186,7 +77011,7 @@ return { [1]="totemified_skills_taunt_on_hit_%" } }, - [3454]={ + [3490]={ [1]={ [1]={ [1]={ @@ -76219,7 +77044,7 @@ return { [1]="chance_to_taunt_on_hit_%" } }, - [3455]={ + [3491]={ [1]={ [1]={ [1]={ @@ -76252,7 +77077,7 @@ return { [1]="minion_attacks_chance_to_taunt_on_hit_%" } }, - [3456]={ + [3492]={ [1]={ [1]={ [1]={ @@ -76289,7 +77114,7 @@ return { [1]="damage_taken_+%_for_4_seconds_on_killing_taunted_enemy" } }, - [3457]={ + [3493]={ [1]={ [1]={ limit={ @@ -76305,7 +77130,7 @@ return { [1]="critical_strike_multiplier_vs_enemies_on_full_life_+" } }, - [3458]={ + [3494]={ [1]={ [1]={ limit={ @@ -76334,7 +77159,7 @@ return { [1]="ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [3459]={ + [3495]={ [1]={ [1]={ [1]={ @@ -76371,7 +77196,7 @@ return { [1]="blind_duration_+%" } }, - [3460]={ + [3496]={ [1]={ [1]={ [1]={ @@ -76408,7 +77233,7 @@ return { [1]="assassin_critical_strike_chance_+%_final_vs_enemies_not_on_low_life" } }, - [3461]={ + [3497]={ [1]={ [1]={ [1]={ @@ -76428,7 +77253,7 @@ return { [1]="assassin_critical_strike_multiplier_+_vs_enemies_not_on_low_life" } }, - [3462]={ + [3498]={ [1]={ [1]={ [1]={ @@ -76448,7 +77273,7 @@ return { [1]="assassin_critical_strike_multiplier_+_vs_enemies_on_low_life" } }, - [3463]={ + [3499]={ [1]={ [1]={ [1]={ @@ -76485,7 +77310,7 @@ return { [1]="assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final" } }, - [3464]={ + [3500]={ [1]={ [1]={ [1]={ @@ -76505,7 +77330,7 @@ return { [1]="crits_have_culling_strike" } }, - [3465]={ + [3501]={ [1]={ [1]={ [1]={ @@ -76525,7 +77350,7 @@ return { [1]="caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [3466]={ + [3502]={ [1]={ [1]={ [1]={ @@ -76545,7 +77370,7 @@ return { [1]="minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [3467]={ + [3503]={ [1]={ [1]={ limit={ @@ -76561,7 +77386,7 @@ return { [1]="storm_cloud_charge_count" } }, - [3468]={ + [3504]={ [1]={ [1]={ limit={ @@ -76577,7 +77402,7 @@ return { [1]="storm_cloud_charged_damage_+%_final" } }, - [3469]={ + [3505]={ [1]={ [1]={ [1]={ @@ -76609,7 +77434,7 @@ return { [1]="gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit" } }, - [3470]={ + [3506]={ [1]={ [1]={ [1]={ @@ -76633,7 +77458,7 @@ return { [1]="gain_damage_+%_for_4_seconds_if_taken_savage_hit" } }, - [3471]={ + [3507]={ [1]={ [1]={ [1]={ @@ -76657,7 +77482,7 @@ return { [1]="gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit" } }, - [3472]={ + [3508]={ [1]={ [1]={ [1]={ @@ -76694,7 +77519,7 @@ return { [1]="damage_+%_vs_burning_enemies" } }, - [3473]={ + [3509]={ [1]={ [1]={ limit={ @@ -76719,7 +77544,7 @@ return { [1]="endurance_charge_on_off_hand_kill_%" } }, - [3474]={ + [3510]={ [1]={ [1]={ limit={ @@ -76735,7 +77560,7 @@ return { [1]="aura_melee_physical_damage_+%_per_10_strength" } }, - [3475]={ + [3511]={ [1]={ [1]={ limit={ @@ -76751,7 +77576,7 @@ return { [1]="curse_apply_as_aura" } }, - [3476]={ + [3512]={ [1]={ [1]={ limit={ @@ -76767,7 +77592,7 @@ return { [1]="critical_strikes_ignore_elemental_resistances" } }, - [3477]={ + [3513]={ [1]={ [1]={ [1]={ @@ -76804,7 +77629,7 @@ return { [1]="damage_+%_for_4_seconds_on_crit" } }, - [3478]={ + [3514]={ [1]={ [1]={ [1]={ @@ -76824,7 +77649,7 @@ return { [1]="critical_strike_chance_+%_for_4_seconds_on_kill" } }, - [3479]={ + [3515]={ [1]={ [1]={ [1]={ @@ -76844,7 +77669,7 @@ return { [1]="damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse" } }, - [3480]={ + [3516]={ [1]={ [1]={ limit={ @@ -76860,7 +77685,7 @@ return { [1]="physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie" } }, - [3481]={ + [3517]={ [1]={ [1]={ limit={ @@ -76889,7 +77714,7 @@ return { [1]="spectre_damage_+%" } }, - [3482]={ + [3518]={ [1]={ [1]={ [1]={ @@ -76909,7 +77734,7 @@ return { [1]="auras_grant_damage_+%_to_you_and_your_allies" } }, - [3483]={ + [3519]={ [1]={ [1]={ [1]={ @@ -76929,7 +77754,7 @@ return { [1]="auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies" } }, - [3484]={ + [3520]={ [1]={ [1]={ [1]={ @@ -76949,7 +77774,7 @@ return { [1]="auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies" } }, - [3485]={ + [3521]={ [1]={ [1]={ limit={ @@ -76978,7 +77803,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [3486]={ + [3522]={ [1]={ [1]={ [1]={ @@ -76998,7 +77823,7 @@ return { [1]="damage_+%_vs_enemies_affected_by_status_ailments" } }, - [3487]={ + [3523]={ [1]={ [1]={ limit={ @@ -77014,7 +77839,7 @@ return { [1]="warcries_are_instant" } }, - [3488]={ + [3524]={ [1]={ [1]={ [1]={ @@ -77034,7 +77859,7 @@ return { [1]="aura_grant_shield_defences_to_nearby_allies" } }, - [3489]={ + [3525]={ [1]={ [1]={ [1]={ @@ -77067,7 +77892,7 @@ return { [1]="phasing_for_4_seconds_on_kill_%" } }, - [3490]={ + [3526]={ [1]={ [1]={ limit={ @@ -77083,7 +77908,7 @@ return { [1]="damage_+%_per_active_trap" } }, - [3491]={ + [3527]={ [1]={ [1]={ limit={ @@ -77099,7 +77924,7 @@ return { [1]="skill_area_of_effect_+%_per_active_mine" } }, - [3492]={ + [3528]={ [1]={ [1]={ [1]={ @@ -77119,7 +77944,7 @@ return { [1]="immune_to_status_ailments_while_phased" } }, - [3493]={ + [3529]={ [1]={ [1]={ [1]={ @@ -77132,14 +77957,14 @@ return { [2]="#" } }, - text="{0:+d}% Critical Strike Chance per Power Charge" + text="{0:+d}% to Critical Strike Chance per Power Charge" } }, stats={ [1]="additional_critical_strike_chance_per_power_charge_permyriad" } }, - [3494]={ + [3530]={ [1]={ [1]={ [1]={ @@ -77159,7 +77984,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_at_maximum_power_charges" } }, - [3495]={ + [3531]={ [1]={ [1]={ limit={ @@ -77175,7 +78000,7 @@ return { [1]="physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges" } }, - [3496]={ + [3532]={ [1]={ [1]={ limit={ @@ -77191,7 +78016,7 @@ return { [1]="movement_skills_cost_no_mana" } }, - [3497]={ + [3533]={ [1]={ [1]={ [1]={ @@ -77228,7 +78053,7 @@ return { [1]="attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use" } }, - [3498]={ + [3534]={ [1]={ [1]={ limit={ @@ -77244,7 +78069,7 @@ return { [1]="lose_10%_of_maximum_mana_on_skill_use_%_chance" } }, - [3499]={ + [3535]={ [1]={ [1]={ limit={ @@ -77260,7 +78085,7 @@ return { [1]="recover_10%_of_maximum_mana_on_skill_use_%" } }, - [3500]={ + [3536]={ [1]={ [1]={ [1]={ @@ -77280,7 +78105,7 @@ return { [1]="mine_laying_speed_+%_for_4_seconds_on_detonation" } }, - [3501]={ + [3537]={ [1]={ [1]={ [1]={ @@ -77300,7 +78125,7 @@ return { [1]="damage_+%_for_4_seconds_on_detonation" } }, - [3502]={ + [3538]={ [1]={ [1]={ limit={ @@ -77329,7 +78154,7 @@ return { [1]="flask_charges_recovered_per_3_seconds" } }, - [3503]={ + [3539]={ [1]={ [1]={ limit={ @@ -77358,7 +78183,7 @@ return { [1]="trap_skill_area_of_effect_+%" } }, - [3504]={ + [3540]={ [1]={ [1]={ [1]={ @@ -77395,7 +78220,7 @@ return { [1]="damage_+%_vs_bleeding_enemies" } }, - [3505]={ + [3541]={ [1]={ [1]={ limit={ @@ -77411,7 +78236,7 @@ return { [1]="bleeding_enemies_explode_for_%_life_as_physical_damage" } }, - [3506]={ + [3542]={ [1]={ [1]={ limit={ @@ -77427,7 +78252,7 @@ return { [1]="nearby_traps_within_x_units_also_trigger_on_triggering_trap" } }, - [3507]={ + [3543]={ [1]={ [1]={ limit={ @@ -77452,7 +78277,7 @@ return { [1]="display_cast_word_of_blades_on_hit_%" } }, - [3508]={ + [3544]={ [1]={ [1]={ limit={ @@ -77477,7 +78302,7 @@ return { [1]="display_cast_edict_of_blades_on_hit_%_" } }, - [3509]={ + [3545]={ [1]={ [1]={ limit={ @@ -77502,7 +78327,7 @@ return { [1]="display_cast_decree_of_blades_on_hit_%__" } }, - [3510]={ + [3546]={ [1]={ [1]={ limit={ @@ -77527,7 +78352,7 @@ return { [1]="display_cast_commandment_of_blades_on_hit_%_" } }, - [3511]={ + [3547]={ [1]={ [1]={ limit={ @@ -77552,7 +78377,7 @@ return { [1]="display_cast_word_of_winter_when_hit_%" } }, - [3512]={ + [3548]={ [1]={ [1]={ limit={ @@ -77577,7 +78402,7 @@ return { [1]="display_cast_edict_of_winter_when_hit_%" } }, - [3513]={ + [3549]={ [1]={ [1]={ limit={ @@ -77602,7 +78427,7 @@ return { [1]="display_cast_decree_of_winter_when_hit_%" } }, - [3514]={ + [3550]={ [1]={ [1]={ limit={ @@ -77627,7 +78452,7 @@ return { [1]="display_cast_commandment_of_winter_when_hit_%" } }, - [3515]={ + [3551]={ [1]={ [1]={ limit={ @@ -77652,7 +78477,7 @@ return { [1]="display_cast_word_of_inferno_on_kill_%" } }, - [3516]={ + [3552]={ [1]={ [1]={ limit={ @@ -77677,7 +78502,7 @@ return { [1]="display_cast_edict_of_inferno_on_kill_%" } }, - [3517]={ + [3553]={ [1]={ [1]={ limit={ @@ -77702,7 +78527,7 @@ return { [1]="display_cast_decree_of_inferno_on_kill_%" } }, - [3518]={ + [3554]={ [1]={ [1]={ limit={ @@ -77727,7 +78552,7 @@ return { [1]="display_cast_commandment_of_inferno_on_kill_%" } }, - [3519]={ + [3555]={ [1]={ [1]={ limit={ @@ -77752,7 +78577,7 @@ return { [1]="display_cast_word_of_tempest_on_hit_%" } }, - [3520]={ + [3556]={ [1]={ [1]={ limit={ @@ -77777,7 +78602,7 @@ return { [1]="display_cast_edict_of_tempest_on_hit_%" } }, - [3521]={ + [3557]={ [1]={ [1]={ limit={ @@ -77802,7 +78627,7 @@ return { [1]="display_cast_decree_of_tempest_on_hit_%" } }, - [3522]={ + [3558]={ [1]={ [1]={ limit={ @@ -77827,7 +78652,7 @@ return { [1]="display_cast_commandment_of_tempest_on_hit_%" } }, - [3523]={ + [3559]={ [1]={ [1]={ limit={ @@ -77852,7 +78677,7 @@ return { [1]="display_cast_word_of_the_grave_on_kill_%" } }, - [3524]={ + [3560]={ [1]={ [1]={ limit={ @@ -77877,7 +78702,7 @@ return { [1]="display_cast_edict_of_the_grave_on_kill_%" } }, - [3525]={ + [3561]={ [1]={ [1]={ limit={ @@ -77902,7 +78727,7 @@ return { [1]="display_cast_decree_of_the_grave_on_kill_%" } }, - [3526]={ + [3562]={ [1]={ [1]={ limit={ @@ -77927,7 +78752,7 @@ return { [1]="display_cast_commandment_of_the_grave_on_kill_%" } }, - [3527]={ + [3563]={ [1]={ [1]={ limit={ @@ -77952,7 +78777,7 @@ return { [1]="display_cast_word_of_reflection_when_hit_%" } }, - [3528]={ + [3564]={ [1]={ [1]={ limit={ @@ -77977,7 +78802,7 @@ return { [1]="display_cast_edict_of_reflection_when_hit_%" } }, - [3529]={ + [3565]={ [1]={ [1]={ limit={ @@ -78002,7 +78827,7 @@ return { [1]="display_cast_decree_of_reflection_when_hit_%" } }, - [3530]={ + [3566]={ [1]={ [1]={ limit={ @@ -78027,7 +78852,7 @@ return { [1]="display_cast_commandment_of_reflection_when_hit_%" } }, - [3531]={ + [3567]={ [1]={ [1]={ limit={ @@ -78052,7 +78877,7 @@ return { [1]="display_attack_with_word_of_force_on_hit_%" } }, - [3532]={ + [3568]={ [1]={ [1]={ limit={ @@ -78077,7 +78902,7 @@ return { [1]="display_attack_with_edict_of_force_on_hit_%" } }, - [3533]={ + [3569]={ [1]={ [1]={ limit={ @@ -78102,7 +78927,7 @@ return { [1]="display_attack_with_decree_of_force_on_hit_%" } }, - [3534]={ + [3570]={ [1]={ [1]={ limit={ @@ -78127,7 +78952,7 @@ return { [1]="display_attack_with_commandment_of_force_on_hit_%" } }, - [3535]={ + [3571]={ [1]={ [1]={ limit={ @@ -78152,7 +78977,7 @@ return { [1]="display_attack_with_word_of_light_when_critically_hit_%" } }, - [3536]={ + [3572]={ [1]={ [1]={ limit={ @@ -78177,7 +79002,7 @@ return { [1]="display_attack_with_edict_of_light_when_critically_hit_%" } }, - [3537]={ + [3573]={ [1]={ [1]={ limit={ @@ -78202,7 +79027,7 @@ return { [1]="display_attack_with_decree_of_light_when_critically_hit_%" } }, - [3538]={ + [3574]={ [1]={ [1]={ limit={ @@ -78227,7 +79052,7 @@ return { [1]="display_attack_with_commandment_of_light_when_critically_hit_%" } }, - [3539]={ + [3575]={ [1]={ [1]={ limit={ @@ -78252,7 +79077,7 @@ return { [1]="display_cast_word_of_war_on_kill_%" } }, - [3540]={ + [3576]={ [1]={ [1]={ limit={ @@ -78277,7 +79102,7 @@ return { [1]="display_cast_edict_of_war_on_kill_%" } }, - [3541]={ + [3577]={ [1]={ [1]={ limit={ @@ -78302,7 +79127,7 @@ return { [1]="display_cast_decree_of_war_on_kill_%" } }, - [3542]={ + [3578]={ [1]={ [1]={ limit={ @@ -78327,7 +79152,7 @@ return { [1]="display_cast_commandment_of_war_on_kill_%" } }, - [3543]={ + [3579]={ [1]={ [1]={ limit={ @@ -78352,7 +79177,7 @@ return { [1]="display_attack_with_word_of_fury_on_hit_%" } }, - [3544]={ + [3580]={ [1]={ [1]={ limit={ @@ -78377,7 +79202,7 @@ return { [1]="display_attack_with_edict_of_fury_on_hit_%" } }, - [3545]={ + [3581]={ [1]={ [1]={ limit={ @@ -78402,7 +79227,7 @@ return { [1]="display_attack_with_decree_of_fury_on_hit_%" } }, - [3546]={ + [3582]={ [1]={ [1]={ limit={ @@ -78427,7 +79252,7 @@ return { [1]="display_attack_with_commandment_of_fury_on_hit_%" } }, - [3547]={ + [3583]={ [1]={ [1]={ limit={ @@ -78452,7 +79277,7 @@ return { [1]="display_attack_with_word_of_spite_when_hit_%" } }, - [3548]={ + [3584]={ [1]={ [1]={ limit={ @@ -78477,7 +79302,7 @@ return { [1]="display_attack_with_edict_of_spite_when_hit_%" } }, - [3549]={ + [3585]={ [1]={ [1]={ limit={ @@ -78502,7 +79327,7 @@ return { [1]="display_attack_with_decree_of_spite_when_hit_%" } }, - [3550]={ + [3586]={ [1]={ [1]={ limit={ @@ -78527,7 +79352,7 @@ return { [1]="display_attack_with_commandment_of_spite_when_hit_%" } }, - [3551]={ + [3587]={ [1]={ [1]={ [1]={ @@ -78564,7 +79389,7 @@ return { [1]="attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge" } }, - [3552]={ + [3588]={ [1]={ [1]={ [1]={ @@ -78601,7 +79426,7 @@ return { [1]="life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen" } }, - [3553]={ + [3589]={ [1]={ [1]={ limit={ @@ -78630,7 +79455,7 @@ return { [1]="trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final" } }, - [3554]={ + [3590]={ [1]={ [1]={ [1]={ @@ -78667,7 +79492,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments" } }, - [3555]={ + [3591]={ [1]={ [1]={ [1]={ @@ -78704,7 +79529,7 @@ return { [1]="spell_damage_+%_for_4_seconds_on_cast" } }, - [3556]={ + [3592]={ [1]={ [1]={ [1]={ @@ -78741,7 +79566,7 @@ return { [1]="attack_damage_+%_for_4_seconds_on_cast" } }, - [3557]={ + [3593]={ [1]={ [1]={ [1]={ @@ -78778,7 +79603,7 @@ return { [1]="attack_damage_+%_if_hit_recently" } }, - [3558]={ + [3594]={ [1]={ [1]={ [1]={ @@ -78815,7 +79640,7 @@ return { [1]="attack_speed_+%_for_4_seconds_on_attack" } }, - [3559]={ + [3595]={ [1]={ [1]={ [1]={ @@ -78852,7 +79677,7 @@ return { [1]="cast_speed_+%_for_4_seconds_on_attack" } }, - [3560]={ + [3596]={ [1]={ [1]={ limit={ @@ -78877,7 +79702,7 @@ return { [1]="display_cast_word_of_flames_on_hit_%" } }, - [3561]={ + [3597]={ [1]={ [1]={ limit={ @@ -78902,7 +79727,7 @@ return { [1]="display_cast_edict_of_flames_on_hit_%" } }, - [3562]={ + [3598]={ [1]={ [1]={ limit={ @@ -78927,7 +79752,7 @@ return { [1]="display_cast_decree_of_flames_on_hit_%" } }, - [3563]={ + [3599]={ [1]={ [1]={ limit={ @@ -78952,7 +79777,7 @@ return { [1]="display_cast_commandment_of_flames_on_hit_%" } }, - [3564]={ + [3600]={ [1]={ [1]={ limit={ @@ -78977,7 +79802,7 @@ return { [1]="display_cast_word_of_frost_on_kill_%" } }, - [3565]={ + [3601]={ [1]={ [1]={ limit={ @@ -79002,7 +79827,7 @@ return { [1]="display_cast_edict_of_frost_on_kill_%" } }, - [3566]={ + [3602]={ [1]={ [1]={ limit={ @@ -79027,7 +79852,7 @@ return { [1]="display_cast_decree_of_frost_on_kill_%" } }, - [3567]={ + [3603]={ [1]={ [1]={ limit={ @@ -79052,7 +79877,7 @@ return { [1]="display_cast_commandment_of_frost_on_kill_%" } }, - [3568]={ + [3604]={ [1]={ [1]={ limit={ @@ -79077,7 +79902,7 @@ return { [1]="display_cast_word_of_thunder_on_kill_%" } }, - [3569]={ + [3605]={ [1]={ [1]={ limit={ @@ -79102,7 +79927,7 @@ return { [1]="display_cast_edict_of_thunder_on_kill_%" } }, - [3570]={ + [3606]={ [1]={ [1]={ limit={ @@ -79127,7 +79952,7 @@ return { [1]="display_cast_decree_of_thunder_on_kill_%" } }, - [3571]={ + [3607]={ [1]={ [1]={ limit={ @@ -79152,7 +79977,7 @@ return { [1]="display_cast_commandment_of_thunder_on_kill_%" } }, - [3572]={ + [3608]={ [1]={ [1]={ [1]={ @@ -79172,7 +79997,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [3573]={ + [3609]={ [1]={ [1]={ [1]={ @@ -79205,7 +80030,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [3574]={ + [3610]={ [1]={ [1]={ limit={ @@ -79221,7 +80046,7 @@ return { [1]="chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%" } }, - [3575]={ + [3611]={ [1]={ [1]={ [1]={ @@ -79258,7 +80083,7 @@ return { [1]="enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds" } }, - [3576]={ + [3612]={ [1]={ [1]={ limit={ @@ -79287,7 +80112,7 @@ return { [1]="damage_+%_on_consecrated_ground" } }, - [3577]={ + [3613]={ [1]={ [1]={ [1]={ @@ -79320,7 +80145,7 @@ return { [1]="consecrate_ground_for_3_seconds_when_hit_%" } }, - [3578]={ + [3614]={ [1]={ [1]={ limit={ @@ -79349,7 +80174,7 @@ return { [1]="mana_cost_+%_on_consecrated_ground" } }, - [3579]={ + [3615]={ [1]={ [1]={ [1]={ @@ -79369,7 +80194,7 @@ return { [1]="avoid_ailments_%_on_consecrated_ground" } }, - [3580]={ + [3616]={ [1]={ [1]={ [1]={ @@ -79389,7 +80214,7 @@ return { [1]="critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment" } }, - [3581]={ + [3617]={ [1]={ [1]={ limit={ @@ -79405,7 +80230,7 @@ return { [1]="non_critical_strikes_penetrate_elemental_resistances_%" } }, - [3582]={ + [3618]={ [1]={ [1]={ limit={ @@ -79421,7 +80246,7 @@ return { [1]="base_attack_damage_penetrates_elemental_resist_%" } }, - [3583]={ + [3619]={ [1]={ [1]={ limit={ @@ -79437,7 +80262,7 @@ return { [1]="base_penetrate_elemental_resistances_%" } }, - [3584]={ + [3620]={ [1]={ [1]={ limit={ @@ -79453,7 +80278,7 @@ return { [1]="base_attack_damage_penetrates_fire_resist_%" } }, - [3585]={ + [3621]={ [1]={ [1]={ limit={ @@ -79469,7 +80294,7 @@ return { [1]="base_attack_damage_penetrates_cold_resist_%" } }, - [3586]={ + [3622]={ [1]={ [1]={ limit={ @@ -79485,7 +80310,7 @@ return { [1]="base_attack_damage_penetrates_lightning_resist_%" } }, - [3587]={ + [3623]={ [1]={ [1]={ limit={ @@ -79501,7 +80326,7 @@ return { [1]="base_attack_damage_penetrates_chaos_resist_%" } }, - [3588]={ + [3624]={ [1]={ [1]={ limit={ @@ -79517,7 +80342,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [3589]={ + [3625]={ [1]={ [1]={ limit={ @@ -79546,7 +80371,7 @@ return { [1]="shockwave_slam_explosion_damage_+%_final" } }, - [3590]={ + [3626]={ [1]={ [1]={ limit={ @@ -79575,7 +80400,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [3591]={ + [3627]={ [1]={ [1]={ limit={ @@ -79604,7 +80429,7 @@ return { [1]="non_curse_aura_effect_+%_vs_enemies" } }, - [3592]={ + [3628]={ [1]={ [1]={ [1]={ @@ -79641,7 +80466,7 @@ return { [1]="unarmed_damage_+%_vs_bleeding_enemies" } }, - [3593]={ + [3629]={ [1]={ [1]={ limit={ @@ -79670,7 +80495,7 @@ return { [1]="aura_effect_on_self_from_your_skills_+%" } }, - [3594]={ + [3630]={ [1]={ [1]={ limit={ @@ -79695,7 +80520,7 @@ return { [1]="life_gained_on_bleeding_enemy_hit" } }, - [3595]={ + [3631]={ [1]={ [1]={ [1]={ @@ -79719,7 +80544,7 @@ return { [1]="base_melee_critical_strike_chance_while_unarmed_%" } }, - [3596]={ + [3632]={ [1]={ [1]={ [1]={ @@ -79739,7 +80564,7 @@ return { [1]="modifiers_to_claw_damage_also_affect_unarmed_melee_damage" } }, - [3597]={ + [3633]={ [1]={ [1]={ [1]={ @@ -79759,7 +80584,7 @@ return { [1]="modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed" } }, - [3598]={ + [3634]={ [1]={ [1]={ [1]={ @@ -79779,7 +80604,7 @@ return { [1]="modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance" } }, - [3599]={ + [3635]={ [1]={ [1]={ [1]={ @@ -79816,7 +80641,7 @@ return { [1]="damage_+%_while_unarmed" } }, - [3600]={ + [3636]={ [1]={ [1]={ limit={ @@ -79845,7 +80670,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_shattered" } }, - [3601]={ + [3637]={ [1]={ [1]={ limit={ @@ -79878,7 +80703,7 @@ return { [1]="energy_shield_delay_during_flask_effect_-%" } }, - [3602]={ + [3638]={ [1]={ [1]={ limit={ @@ -79907,7 +80732,7 @@ return { [1]="virtual_energy_shield_delay_-%" } }, - [3603]={ + [3639]={ [1]={ [1]={ limit={ @@ -79936,7 +80761,7 @@ return { [1]="energy_shield_recharge_rate_during_flask_effect_+%" } }, - [3604]={ + [3640]={ [1]={ [1]={ limit={ @@ -79965,7 +80790,7 @@ return { [1]="virtual_energy_shield_recharge_rate_+%" } }, - [3605]={ + [3641]={ [1]={ [1]={ limit={ @@ -79981,7 +80806,7 @@ return { [1]="arrows_fork" } }, - [3606]={ + [3642]={ [1]={ [1]={ limit={ @@ -79997,7 +80822,7 @@ return { [1]="projectiles_fork" } }, - [3607]={ + [3643]={ [1]={ [1]={ [1]={ @@ -80017,7 +80842,7 @@ return { [1]="fishing_bite_sensitivity_+%" } }, - [3608]={ + [3644]={ [1]={ [1]={ limit={ @@ -80046,7 +80871,7 @@ return { [1]="cold_damage_+%_per_1%_block_chance" } }, - [3609]={ + [3645]={ [1]={ [1]={ limit={ @@ -80075,7 +80900,7 @@ return { [1]="maximum_mana_+%_per_2%_spell_block_chance" } }, - [3610]={ + [3646]={ [1]={ [1]={ limit={ @@ -80104,7 +80929,7 @@ return { [1]="physical_damage_reduction_rating_+%_while_chilled_or_frozen" } }, - [3611]={ + [3647]={ [1]={ [1]={ limit={ @@ -80133,7 +80958,7 @@ return { [1]="map_players_action_speed_+%_while_chilled" } }, - [3612]={ + [3648]={ [1]={ [1]={ limit={ @@ -80162,7 +80987,7 @@ return { [1]="action_speed_+%_while_chilled" } }, - [3613]={ + [3649]={ [1]={ [1]={ limit={ @@ -80178,7 +81003,7 @@ return { [1]="reduce_enemy_cold_resistance_with_weapons_%" } }, - [3614]={ + [3650]={ [1]={ [1]={ limit={ @@ -80194,7 +81019,7 @@ return { [1]="reduce_enemy_fire_resistance_with_weapons_%" } }, - [3615]={ + [3651]={ [1]={ [1]={ limit={ @@ -80210,7 +81035,7 @@ return { [1]="reduce_enemy_lightning_resistance_with_weapons_%" } }, - [3616]={ + [3652]={ [1]={ [1]={ limit={ @@ -80226,7 +81051,7 @@ return { [1]="reduce_enemy_chaos_resistance_with_weapons_%" } }, - [3617]={ + [3653]={ [1]={ [1]={ limit={ @@ -80255,7 +81080,7 @@ return { [1]="inquisitor_aura_elemental_damage_+%_final" } }, - [3618]={ + [3654]={ [1]={ [1]={ limit={ @@ -80284,7 +81109,7 @@ return { [1]="support_gem_elemental_damage_+%_final" } }, - [3619]={ + [3655]={ [1]={ [1]={ limit={ @@ -80309,7 +81134,7 @@ return { [1]="map_monster_drop_higher_level_gear" } }, - [3620]={ + [3656]={ [1]={ [1]={ limit={ @@ -80325,7 +81150,7 @@ return { [1]="modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity" } }, - [3621]={ + [3657]={ [1]={ [1]={ [1]={ @@ -80345,7 +81170,7 @@ return { [1]="base_should_have_onslaught_from_stat" } }, - [3622]={ + [3658]={ [1]={ [1]={ [1]={ @@ -80365,7 +81190,7 @@ return { [1]="silver_flask_display_onslaught" } }, - [3623]={ + [3659]={ [1]={ [1]={ limit={ @@ -80381,7 +81206,7 @@ return { [1]="reduce_enemy_elemental_resistance_with_weapons_%" } }, - [3624]={ + [3660]={ [1]={ [1]={ limit={ @@ -80406,7 +81231,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [3625]={ + [3661]={ [1]={ [1]={ limit={ @@ -80431,7 +81256,7 @@ return { [1]="%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy" } }, - [3626]={ + [3662]={ [1]={ [1]={ limit={ @@ -80447,7 +81272,7 @@ return { [1]="add_power_charge_on_hit_%" } }, - [3627]={ + [3663]={ [1]={ [1]={ limit={ @@ -80463,7 +81288,7 @@ return { [1]="lose_all_power_charges_on_reaching_maximum_power_charges" } }, - [3628]={ + [3664]={ [1]={ [1]={ [1]={ @@ -80483,7 +81308,7 @@ return { [1]="shocked_for_4_seconds_on_reaching_maximum_power_charges" } }, - [3629]={ + [3665]={ [1]={ [1]={ limit={ @@ -80499,7 +81324,7 @@ return { [1]="gain_frenzy_charge_on_reaching_maximum_power_charges" } }, - [3630]={ + [3666]={ [1]={ [1]={ limit={ @@ -80515,7 +81340,7 @@ return { [1]="is_petrified" } }, - [3631]={ + [3667]={ [1]={ [1]={ limit={ @@ -80531,7 +81356,7 @@ return { [1]="add_endurance_charge_on_gain_power_charge_%" } }, - [3632]={ + [3668]={ [1]={ [1]={ [1]={ @@ -80568,7 +81393,7 @@ return { [1]="stacking_damage_+%_on_kill_for_4_seconds" } }, - [3633]={ + [3669]={ [1]={ [1]={ limit={ @@ -80597,7 +81422,7 @@ return { [1]="attack_and_cast_speed_+%_while_totem_active" } }, - [3634]={ + [3670]={ [1]={ [1]={ limit={ @@ -80613,7 +81438,7 @@ return { [1]="number_of_additional_totems_allowed_on_kill_for_8_seconds" } }, - [3635]={ + [3671]={ [1]={ [1]={ limit={ @@ -80642,7 +81467,7 @@ return { [1]="map_monsters_base_self_critical_strike_multiplier_-%" } }, - [3636]={ + [3672]={ [1]={ [1]={ limit={ @@ -80667,7 +81492,7 @@ return { [1]="power_frenzy_or_endurance_charge_on_kill_%" } }, - [3637]={ + [3673]={ [1]={ [1]={ limit={ @@ -80683,7 +81508,7 @@ return { [1]="immune_to_poison" } }, - [3638]={ + [3674]={ [1]={ [1]={ [1]={ @@ -80720,7 +81545,7 @@ return { [1]="elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element" } }, - [3639]={ + [3675]={ [1]={ [1]={ [1]={ @@ -80757,7 +81582,7 @@ return { [1]="damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element" } }, - [3640]={ + [3676]={ [1]={ [1]={ limit={ @@ -80786,7 +81611,7 @@ return { [1]="elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds" } }, - [3641]={ + [3677]={ [1]={ [1]={ limit={ @@ -80802,7 +81627,7 @@ return { [1]="elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill" } }, - [3642]={ + [3678]={ [1]={ [1]={ limit={ @@ -80818,7 +81643,7 @@ return { [1]="elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill" } }, - [3643]={ + [3679]={ [1]={ [1]={ limit={ @@ -80834,7 +81659,7 @@ return { [1]="elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill" } }, - [3644]={ + [3680]={ [1]={ [1]={ limit={ @@ -80850,7 +81675,7 @@ return { [1]="elementalist_summon_elemental_golem_on_killing_enemy_with_element_%" } }, - [3645]={ + [3681]={ [1]={ [1]={ [1]={ @@ -80870,7 +81695,7 @@ return { [1]="elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%" } }, - [3646]={ + [3682]={ [1]={ [1]={ [1]={ @@ -80911,7 +81736,7 @@ return { [1]="elementalist_elemental_status_effect_aura_radius" } }, - [3647]={ + [3683]={ [1]={ [1]={ [1]={ @@ -80931,7 +81756,7 @@ return { [1]="knockback_on_counterattack_%" } }, - [3648]={ + [3684]={ [1]={ [1]={ [1]={ @@ -80964,7 +81789,7 @@ return { [1]="chill_on_you_proliferates_to_nearby_enemies_within_x_radius" } }, - [3649]={ + [3685]={ [1]={ [1]={ limit={ @@ -80989,7 +81814,7 @@ return { [1]="freeze_on_you_proliferates_to_nearby_enemies_within_x_radius" } }, - [3650]={ + [3686]={ [1]={ [1]={ limit={ @@ -81018,7 +81843,7 @@ return { [1]="melee_ancestor_totem_damage_+%" } }, - [3651]={ + [3687]={ [1]={ [1]={ limit={ @@ -81047,7 +81872,7 @@ return { [1]="animate_weapon_damage_+%" } }, - [3652]={ + [3688]={ [1]={ [1]={ limit={ @@ -81076,7 +81901,7 @@ return { [1]="burning_arrow_damage_+%" } }, - [3653]={ + [3689]={ [1]={ [1]={ limit={ @@ -81105,7 +81930,7 @@ return { [1]="cleave_damage_+%" } }, - [3654]={ + [3690]={ [1]={ [1]={ limit={ @@ -81134,7 +81959,7 @@ return { [1]="double_strike_damage_+%" } }, - [3655]={ + [3691]={ [1]={ [1]={ limit={ @@ -81163,7 +81988,7 @@ return { [1]="dual_strike_damage_+%" } }, - [3656]={ + [3692]={ [1]={ [1]={ limit={ @@ -81192,7 +82017,7 @@ return { [1]="fire_trap_damage_+%" } }, - [3657]={ + [3693]={ [1]={ [1]={ limit={ @@ -81221,7 +82046,7 @@ return { [1]="fireball_damage_+%" } }, - [3658]={ + [3694]={ [1]={ [1]={ limit={ @@ -81250,7 +82075,7 @@ return { [1]="freezing_pulse_damage_+%" } }, - [3659]={ + [3695]={ [1]={ [1]={ limit={ @@ -81279,7 +82104,7 @@ return { [1]="glacial_hammer_damage_+%" } }, - [3660]={ + [3696]={ [1]={ [1]={ limit={ @@ -81308,7 +82133,7 @@ return { [1]="ground_slam_damage_+%" } }, - [3661]={ + [3697]={ [1]={ [1]={ limit={ @@ -81337,7 +82162,7 @@ return { [1]="heavy_strike_damage_+%" } }, - [3662]={ + [3698]={ [1]={ [1]={ limit={ @@ -81366,7 +82191,7 @@ return { [1]="infernal_blow_damage_+%" } }, - [3663]={ + [3699]={ [1]={ [1]={ limit={ @@ -81395,7 +82220,7 @@ return { [1]="lightning_strike_damage_+%" } }, - [3664]={ + [3700]={ [1]={ [1]={ limit={ @@ -81424,7 +82249,7 @@ return { [1]="lightning_tendrils_damage_+%" } }, - [3665]={ + [3701]={ [1]={ [1]={ limit={ @@ -81453,7 +82278,7 @@ return { [1]="magma_orb_damage_+%" } }, - [3666]={ + [3702]={ [1]={ [1]={ limit={ @@ -81482,7 +82307,7 @@ return { [1]="molten_strike_damage_+%" } }, - [3667]={ + [3703]={ [1]={ [1]={ limit={ @@ -81511,7 +82336,7 @@ return { [1]="zombie_damage_+%" } }, - [3668]={ + [3704]={ [1]={ [1]={ limit={ @@ -81540,7 +82365,7 @@ return { [1]="reave_damage_+%" } }, - [3669]={ + [3705]={ [1]={ [1]={ limit={ @@ -81569,7 +82394,7 @@ return { [1]="spark_damage_+%" } }, - [3670]={ + [3706]={ [1]={ [1]={ limit={ @@ -81598,7 +82423,7 @@ return { [1]="spectral_throw_damage_+%" } }, - [3671]={ + [3707]={ [1]={ [1]={ limit={ @@ -81627,7 +82452,7 @@ return { [1]="split_arrow_damage_+%" } }, - [3672]={ + [3708]={ [1]={ [1]={ limit={ @@ -81656,7 +82481,7 @@ return { [1]="ethereal_knives_damage_+%" } }, - [3673]={ + [3709]={ [1]={ [1]={ limit={ @@ -81685,7 +82510,7 @@ return { [1]="ice_shot_damage_+%" } }, - [3674]={ + [3710]={ [1]={ [1]={ limit={ @@ -81714,7 +82539,7 @@ return { [1]="rain_of_arrows_damage_+%" } }, - [3675]={ + [3711]={ [1]={ [1]={ limit={ @@ -81743,7 +82568,7 @@ return { [1]="raging_spirit_damage_+%" } }, - [3676]={ + [3712]={ [1]={ [1]={ limit={ @@ -81772,7 +82597,7 @@ return { [1]="viper_strike_damage_+%" } }, - [3677]={ + [3713]={ [1]={ [1]={ limit={ @@ -81801,7 +82626,7 @@ return { [1]="flicker_strike_damage_+%" } }, - [3678]={ + [3714]={ [1]={ [1]={ limit={ @@ -81830,7 +82655,7 @@ return { [1]="leap_slam_damage_+%" } }, - [3679]={ + [3715]={ [1]={ [1]={ limit={ @@ -81859,7 +82684,7 @@ return { [1]="lightning_arrow_damage_+%" } }, - [3680]={ + [3716]={ [1]={ [1]={ limit={ @@ -81888,7 +82713,7 @@ return { [1]="lightning_warp_damage_+%" } }, - [3681]={ + [3717]={ [1]={ [1]={ limit={ @@ -81917,7 +82742,7 @@ return { [1]="puncture_damage_+%" } }, - [3682]={ + [3718]={ [1]={ [1]={ limit={ @@ -81946,7 +82771,7 @@ return { [1]="shield_charge_damage_+%" } }, - [3683]={ + [3719]={ [1]={ [1]={ limit={ @@ -81975,7 +82800,7 @@ return { [1]="skeletons_damage_+%" } }, - [3684]={ + [3720]={ [1]={ [1]={ limit={ @@ -82004,7 +82829,7 @@ return { [1]="arc_damage_+%" } }, - [3685]={ + [3721]={ [1]={ [1]={ limit={ @@ -82033,7 +82858,7 @@ return { [1]="barrage_damage_+%" } }, - [3686]={ + [3722]={ [1]={ [1]={ limit={ @@ -82062,7 +82887,7 @@ return { [1]="fire_nova_mine_damage_+%" } }, - [3687]={ + [3723]={ [1]={ [1]={ limit={ @@ -82091,7 +82916,7 @@ return { [1]="fire_storm_damage_+%" } }, - [3688]={ + [3724]={ [1]={ [1]={ limit={ @@ -82120,7 +82945,7 @@ return { [1]="flame_surge_damage_+%" } }, - [3689]={ + [3725]={ [1]={ [1]={ limit={ @@ -82149,7 +82974,7 @@ return { [1]="ice_nova_damage_+%" } }, - [3690]={ + [3726]={ [1]={ [1]={ limit={ @@ -82178,7 +83003,7 @@ return { [1]="ice_spear_damage_+%" } }, - [3691]={ + [3727]={ [1]={ [1]={ limit={ @@ -82207,7 +83032,7 @@ return { [1]="incinerate_damage_+%" } }, - [3692]={ + [3728]={ [1]={ [1]={ limit={ @@ -82236,7 +83061,7 @@ return { [1]="power_siphon_damage_+%" } }, - [3693]={ + [3729]={ [1]={ [1]={ limit={ @@ -82265,7 +83090,7 @@ return { [1]="searing_bond_damage_+%" } }, - [3694]={ + [3730]={ [1]={ [1]={ limit={ @@ -82294,7 +83119,7 @@ return { [1]="static_strike_damage_+%" } }, - [3695]={ + [3731]={ [1]={ [1]={ limit={ @@ -82323,7 +83148,7 @@ return { [1]="storm_call_damage_+%" } }, - [3696]={ + [3732]={ [1]={ [1]={ limit={ @@ -82352,7 +83177,7 @@ return { [1]="sweep_damage_+%" } }, - [3697]={ + [3733]={ [1]={ [1]={ limit={ @@ -82381,7 +83206,7 @@ return { [1]="frenzy_damage_+%" } }, - [3698]={ + [3734]={ [1]={ [1]={ limit={ @@ -82410,7 +83235,7 @@ return { [1]="righteous_fire_damage_+%" } }, - [3699]={ + [3735]={ [1]={ [1]={ limit={ @@ -82439,7 +83264,7 @@ return { [1]="elemental_hit_damage_+%" } }, - [3700]={ + [3736]={ [1]={ [1]={ limit={ @@ -82468,7 +83293,7 @@ return { [1]="cyclone_damage_+%" } }, - [3701]={ + [3737]={ [1]={ [1]={ limit={ @@ -82497,7 +83322,7 @@ return { [1]="tornado_shot_damage_+%" } }, - [3702]={ + [3738]={ [1]={ [1]={ limit={ @@ -82526,7 +83351,7 @@ return { [1]="arctic_breath_damage_+%" } }, - [3703]={ + [3739]={ [1]={ [1]={ limit={ @@ -82555,7 +83380,7 @@ return { [1]="explosive_arrow_damage_+%" } }, - [3704]={ + [3740]={ [1]={ [1]={ limit={ @@ -82584,7 +83409,7 @@ return { [1]="flameblast_damage_+%" } }, - [3705]={ + [3741]={ [1]={ [1]={ limit={ @@ -82613,7 +83438,7 @@ return { [1]="glacial_cascade_damage_+%" } }, - [3706]={ + [3742]={ [1]={ [1]={ limit={ @@ -82642,7 +83467,7 @@ return { [1]="ice_crash_damage_+%" } }, - [3707]={ + [3743]={ [1]={ [1]={ limit={ @@ -82671,7 +83496,7 @@ return { [1]="kinetic_blast_damage_+%" } }, - [3708]={ + [3744]={ [1]={ [1]={ limit={ @@ -82700,7 +83525,7 @@ return { [1]="shock_nova_damage_+%" } }, - [3709]={ + [3745]={ [1]={ [1]={ limit={ @@ -82729,7 +83554,7 @@ return { [1]="shockwave_totem_damage_+%" } }, - [3710]={ + [3746]={ [1]={ [1]={ limit={ @@ -82758,7 +83583,7 @@ return { [1]="wild_strike_damage_+%" } }, - [3711]={ + [3747]={ [1]={ [1]={ limit={ @@ -82787,7 +83612,7 @@ return { [1]="detonate_dead_damage_+%" } }, - [3712]={ + [3748]={ [1]={ [1]={ limit={ @@ -82816,7 +83641,7 @@ return { [1]="caustic_arrow_damage_+%" } }, - [3713]={ + [3749]={ [1]={ [1]={ [1]={ @@ -82908,7 +83733,7 @@ return { [2]="caustic_arrow_withered_base_duration_ms" } }, - [3714]={ + [3750]={ [1]={ [1]={ limit={ @@ -82924,7 +83749,7 @@ return { [1]="base_number_of_golems_allowed" } }, - [3715]={ + [3751]={ [1]={ [1]={ limit={ @@ -82940,7 +83765,7 @@ return { [1]="you_cannot_have_non_golem_minions" } }, - [3716]={ + [3752]={ [1]={ [1]={ limit={ @@ -82973,7 +83798,7 @@ return { [1]="golem_scale_+%" } }, - [3717]={ + [3753]={ [1]={ [1]={ limit={ @@ -83002,7 +83827,7 @@ return { [1]="stone_golem_damage_+%" } }, - [3718]={ + [3754]={ [1]={ [1]={ limit={ @@ -83031,7 +83856,7 @@ return { [1]="flame_golem_damage_+%" } }, - [3719]={ + [3755]={ [1]={ [1]={ limit={ @@ -83060,7 +83885,7 @@ return { [1]="ice_golem_damage_+%" } }, - [3720]={ + [3756]={ [1]={ [1]={ limit={ @@ -83089,7 +83914,7 @@ return { [1]="lightning_golem_damage_+%" } }, - [3721]={ + [3757]={ [1]={ [1]={ limit={ @@ -83118,7 +83943,7 @@ return { [1]="chaos_golem_damage_+%" } }, - [3722]={ + [3758]={ [1]={ [1]={ limit={ @@ -83147,7 +83972,7 @@ return { [1]="damage_+%_if_golem_summoned_in_past_8_seconds" } }, - [3723]={ + [3759]={ [1]={ [1]={ limit={ @@ -83176,7 +84001,7 @@ return { [1]="golem_damage_+%_if_summoned_in_past_8_seconds" } }, - [3724]={ + [3760]={ [1]={ [1]={ limit={ @@ -83209,7 +84034,7 @@ return { [1]="unique_primordial_tether_golem_damage_+%_final" } }, - [3725]={ + [3761]={ [1]={ [1]={ limit={ @@ -83238,7 +84063,7 @@ return { [1]="dominating_blow_minion_damage_+%" } }, - [3726]={ + [3762]={ [1]={ [1]={ limit={ @@ -83267,7 +84092,7 @@ return { [1]="dominating_blow_skill_attack_damage_+%" } }, - [3727]={ + [3763]={ [1]={ [1]={ limit={ @@ -83296,7 +84121,7 @@ return { [1]="cold_snap_damage_+%" } }, - [3728]={ + [3764]={ [1]={ [1]={ limit={ @@ -83325,7 +84150,7 @@ return { [1]="flame_totem_damage_+%" } }, - [3729]={ + [3765]={ [1]={ [1]={ limit={ @@ -83354,7 +84179,7 @@ return { [1]="animate_guardian_damage_+%" } }, - [3730]={ + [3766]={ [1]={ [1]={ limit={ @@ -83383,7 +84208,7 @@ return { [1]="bear_trap_damage_+%" } }, - [3731]={ + [3767]={ [1]={ [1]={ limit={ @@ -83412,7 +84237,7 @@ return { [1]="frost_wall_damage_+%" } }, - [3732]={ + [3768]={ [1]={ [1]={ limit={ @@ -83441,7 +84266,7 @@ return { [1]="molten_shell_damage_+%" } }, - [3733]={ + [3769]={ [1]={ [1]={ limit={ @@ -83470,7 +84295,7 @@ return { [1]="reckoning_damage_+%" } }, - [3734]={ + [3770]={ [1]={ [1]={ limit={ @@ -83499,7 +84324,7 @@ return { [1]="vigilant_strike_damage_+%" } }, - [3735]={ + [3771]={ [1]={ [1]={ limit={ @@ -83528,7 +84353,7 @@ return { [1]="whirling_blades_damage_+%" } }, - [3736]={ + [3772]={ [1]={ [1]={ limit={ @@ -83557,7 +84382,7 @@ return { [1]="flame_dash_damage_+%" } }, - [3737]={ + [3773]={ [1]={ [1]={ limit={ @@ -83586,7 +84411,7 @@ return { [1]="freeze_mine_damage_+%" } }, - [3738]={ + [3774]={ [1]={ [1]={ limit={ @@ -83615,7 +84440,7 @@ return { [1]="herald_of_ash_damage_+%" } }, - [3739]={ + [3775]={ [1]={ [1]={ limit={ @@ -83644,7 +84469,7 @@ return { [1]="herald_of_ice_damage_+%" } }, - [3740]={ + [3776]={ [1]={ [1]={ limit={ @@ -83673,7 +84498,7 @@ return { [1]="herald_of_thunder_damage_+%" } }, - [3741]={ + [3777]={ [1]={ [1]={ limit={ @@ -83702,7 +84527,7 @@ return { [1]="tempest_shield_damage_+%" } }, - [3742]={ + [3778]={ [1]={ [1]={ limit={ @@ -83731,7 +84556,7 @@ return { [1]="desecrate_damage_+%" } }, - [3743]={ + [3779]={ [1]={ [1]={ limit={ @@ -83760,7 +84585,7 @@ return { [1]="blink_arrow_and_blink_arrow_clone_damage_+%" } }, - [3744]={ + [3780]={ [1]={ [1]={ limit={ @@ -83789,7 +84614,7 @@ return { [1]="mirror_arrow_and_mirror_arrow_clone_damage_+%" } }, - [3745]={ + [3781]={ [1]={ [1]={ limit={ @@ -83818,7 +84643,7 @@ return { [1]="riposte_damage_+%" } }, - [3746]={ + [3782]={ [1]={ [1]={ limit={ @@ -83847,7 +84672,7 @@ return { [1]="vengeance_damage_+%" } }, - [3747]={ + [3783]={ [1]={ [1]={ limit={ @@ -83876,7 +84701,7 @@ return { [1]="converted_enemies_damage_+%" } }, - [3748]={ + [3784]={ [1]={ [1]={ limit={ @@ -83905,7 +84730,7 @@ return { [1]="abyssal_cry_damage_+%" } }, - [3749]={ + [3785]={ [1]={ [1]={ limit={ @@ -83934,7 +84759,7 @@ return { [1]="shrapnel_shot_damage_+%" } }, - [3750]={ + [3786]={ [1]={ [1]={ limit={ @@ -83963,7 +84788,7 @@ return { [1]="blast_rain_damage_+%" } }, - [3751]={ + [3787]={ [1]={ [1]={ limit={ @@ -83992,7 +84817,7 @@ return { [1]="essence_drain_damage_+%" } }, - [3752]={ + [3788]={ [1]={ [1]={ limit={ @@ -84021,7 +84846,7 @@ return { [1]="contagion_damage_+%" } }, - [3753]={ + [3789]={ [1]={ [1]={ limit={ @@ -84050,7 +84875,7 @@ return { [1]="blade_vortex_damage_+%" } }, - [3754]={ + [3790]={ [1]={ [1]={ limit={ @@ -84079,7 +84904,7 @@ return { [1]="bladefall_damage_+%" } }, - [3755]={ + [3791]={ [1]={ [1]={ limit={ @@ -84108,7 +84933,7 @@ return { [1]="ice_trap_damage_+%" } }, - [3756]={ + [3792]={ [1]={ [1]={ limit={ @@ -84137,7 +84962,7 @@ return { [1]="charged_dash_damage_+%" } }, - [3757]={ + [3793]={ [1]={ [1]={ limit={ @@ -84166,7 +84991,7 @@ return { [1]="earthquake_damage_+%" } }, - [3758]={ + [3794]={ [1]={ [1]={ limit={ @@ -84175,7 +85000,7 @@ return { [2]="#" } }, - text="{0}% increased Dark Pact Damage" + text="{0}% increased Dark Bargain Damage" }, [2]={ [1]={ @@ -84188,14 +85013,14 @@ return { [2]=-1 } }, - text="{0}% reduced Dark Pact Damage" + text="{0}% reduced Dark Bargain Damage" } }, stats={ [1]="skeletal_chains_damage_+%" } }, - [3759]={ + [3795]={ [1]={ [1]={ limit={ @@ -84224,7 +85049,7 @@ return { [1]="storm_burst_damage_+%" } }, - [3760]={ + [3796]={ [1]={ [1]={ limit={ @@ -84253,7 +85078,7 @@ return { [1]="frost_bomb_damage_+%" } }, - [3761]={ + [3797]={ [1]={ [1]={ limit={ @@ -84282,7 +85107,7 @@ return { [1]="orb_of_storms_damage_+%" } }, - [3762]={ + [3798]={ [1]={ [1]={ limit={ @@ -84311,7 +85136,7 @@ return { [1]="siege_ballista_damage_+%" } }, - [3763]={ + [3799]={ [1]={ [1]={ limit={ @@ -84340,7 +85165,7 @@ return { [1]="blight_damage_+%" } }, - [3764]={ + [3800]={ [1]={ [1]={ limit={ @@ -84369,7 +85194,7 @@ return { [1]="shockwave_slam_damage_+%" } }, - [3765]={ + [3801]={ [1]={ [1]={ [1]={ @@ -84389,7 +85214,7 @@ return { [1]="life_regeneration_per_minute_%_while_frozen" } }, - [3766]={ + [3802]={ [1]={ [1]={ [1]={ @@ -84413,7 +85238,7 @@ return { [1]="occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds" } }, - [3767]={ + [3803]={ [1]={ [1]={ limit={ @@ -84429,7 +85254,7 @@ return { [1]="occultist_immune_to_stun_while_has_energy_shield" } }, - [3768]={ + [3804]={ [1]={ [1]={ [1]={ @@ -84449,7 +85274,7 @@ return { [1]="occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery" } }, - [3769]={ + [3805]={ [1]={ [1]={ limit={ @@ -84478,7 +85303,7 @@ return { [1]="hierophant_passive_damage_+%_final_per_totem" } }, - [3770]={ + [3806]={ [1]={ [1]={ limit={ @@ -84507,7 +85332,7 @@ return { [1]="totem_damage_+%_final_per_active_totem" } }, - [3771]={ + [3807]={ [1]={ [1]={ limit={ @@ -84523,7 +85348,7 @@ return { [1]="cannot_be_affected_by_flasks" } }, - [3772]={ + [3808]={ [1]={ [1]={ limit={ @@ -84539,7 +85364,7 @@ return { [1]="flasks_apply_to_your_zombies_and_spectres" } }, - [3773]={ + [3809]={ [1]={ [1]={ limit={ @@ -84555,7 +85380,7 @@ return { [1]="modifiers_to_minion_damage_also_affect_you" } }, - [3774]={ + [3810]={ [1]={ [1]={ limit={ @@ -84571,7 +85396,7 @@ return { [1]="minion_damage_increases_and_reductions_also_affects_you" } }, - [3775]={ + [3811]={ [1]={ [1]={ limit={ @@ -84587,7 +85412,7 @@ return { [1]="additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [3776]={ + [3812]={ [1]={ [1]={ limit={ @@ -84603,7 +85428,7 @@ return { [1]="additive_modifiers_to_minion_attack_speed_also_affect_you" } }, - [3777]={ + [3813]={ [1]={ [1]={ limit={ @@ -84619,7 +85444,7 @@ return { [1]="additive_modifiers_to_minion_cast_speed_also_affect_you" } }, - [3778]={ + [3814]={ [1]={ [1]={ limit={ @@ -84635,7 +85460,7 @@ return { [1]="additive_minion_maximum_life_modifiers_apply_to_you_at_%_value" } }, - [3779]={ + [3815]={ [1]={ [1]={ limit={ @@ -84651,7 +85476,7 @@ return { [1]="modifiers_to_minion_life_regeneration_also_affect_you" } }, - [3780]={ + [3816]={ [1]={ [1]={ limit={ @@ -84667,7 +85492,7 @@ return { [1]="modifiers_to_minion_movement_speed_also_affect_you" } }, - [3781]={ + [3817]={ [1]={ [1]={ limit={ @@ -84683,7 +85508,7 @@ return { [1]="occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds" } }, - [3782]={ + [3818]={ [1]={ [1]={ limit={ @@ -84699,7 +85524,7 @@ return { [1]="enemies_damage_taken_+%_while_cursed" } }, - [3783]={ + [3819]={ [1]={ [1]={ [1]={ @@ -84719,7 +85544,7 @@ return { [1]="enemies_you_curse_have_malediction" } }, - [3784]={ + [3820]={ [1]={ [1]={ limit={ @@ -84735,7 +85560,7 @@ return { [1]="local_double_damage_to_chilled_enemies" } }, - [3785]={ + [3821]={ [1]={ [1]={ limit={ @@ -84751,7 +85576,7 @@ return { [1]="local_elemental_penetration_%" } }, - [3786]={ + [3822]={ [1]={ [1]={ limit={ @@ -84767,7 +85592,7 @@ return { [1]="local_fire_penetration_%" } }, - [3787]={ + [3823]={ [1]={ [1]={ limit={ @@ -84783,7 +85608,7 @@ return { [1]="local_cold_penetration_%" } }, - [3788]={ + [3824]={ [1]={ [1]={ limit={ @@ -84799,7 +85624,7 @@ return { [1]="local_lightning_penetration_%" } }, - [3789]={ + [3825]={ [1]={ [1]={ limit={ @@ -84828,7 +85653,7 @@ return { [1]="damage_while_no_frenzy_charges_+%" } }, - [3790]={ + [3826]={ [1]={ [1]={ limit={ @@ -84857,7 +85682,7 @@ return { [1]="critical_strike_chance_against_enemies_on_full_life_+%" } }, - [3791]={ + [3827]={ [1]={ [1]={ [1]={ @@ -84881,7 +85706,7 @@ return { [1]="attack_critical_strike_damage_life_leech_permyriad" } }, - [3792]={ + [3828]={ [1]={ [1]={ limit={ @@ -84902,7 +85727,7 @@ return { [2]="minion_attack_maximum_added_physical_damage" } }, - [3793]={ + [3829]={ [1]={ [1]={ limit={ @@ -84923,7 +85748,7 @@ return { [2]="minion_global_maximum_added_chaos_damage" } }, - [3794]={ + [3830]={ [1]={ [1]={ limit={ @@ -84944,7 +85769,7 @@ return { [2]="minion_global_maximum_added_cold_damage" } }, - [3795]={ + [3831]={ [1]={ [1]={ limit={ @@ -84965,7 +85790,7 @@ return { [2]="minion_global_maximum_added_fire_damage" } }, - [3796]={ + [3832]={ [1]={ [1]={ limit={ @@ -84986,7 +85811,7 @@ return { [2]="minion_global_maximum_added_lightning_damage" } }, - [3797]={ + [3833]={ [1]={ [1]={ limit={ @@ -85007,7 +85832,7 @@ return { [2]="minion_global_maximum_added_physical_damage" } }, - [3798]={ + [3834]={ [1]={ [1]={ limit={ @@ -85023,7 +85848,7 @@ return { [1]="attack_physical_damage_%_to_add_as_fire" } }, - [3799]={ + [3835]={ [1]={ [1]={ limit={ @@ -85039,7 +85864,7 @@ return { [1]="attack_physical_damage_%_to_add_as_cold" } }, - [3800]={ + [3836]={ [1]={ [1]={ limit={ @@ -85055,7 +85880,7 @@ return { [1]="attack_physical_damage_%_to_add_as_lightning" } }, - [3801]={ + [3837]={ [1]={ [1]={ limit={ @@ -85071,7 +85896,7 @@ return { [1]="maximum_energy_shield_+_per_5_strength" } }, - [3802]={ + [3838]={ [1]={ [1]={ limit={ @@ -85087,7 +85912,7 @@ return { [1]="attack_always_crit" } }, - [3803]={ + [3839]={ [1]={ [1]={ limit={ @@ -85103,7 +85928,7 @@ return { [1]="local_varunastra_weapon_counts_as_all_1h_melee_weapon_types" } }, - [3804]={ + [3840]={ [1]={ [1]={ [1]={ @@ -85127,7 +85952,7 @@ return { [1]="guardian_auras_grant_life_regeneration_per_minute_%" } }, - [3805]={ + [3841]={ [1]={ [1]={ limit={ @@ -85143,7 +85968,7 @@ return { [1]="guardian_nearby_enemies_cannot_gain_charges" } }, - [3806]={ + [3842]={ [1]={ [1]={ limit={ @@ -85159,7 +85984,7 @@ return { [1]="guardian_reserved_life_granted_to_you_and_allies_as_armour_%" } }, - [3807]={ + [3843]={ [1]={ [1]={ limit={ @@ -85175,7 +86000,7 @@ return { [1]="guardian_reserved_mana_granted_to_you_and_allies_as_armour_%" } }, - [3808]={ + [3844]={ [1]={ [1]={ limit={ @@ -85191,7 +86016,7 @@ return { [1]="guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield" } }, - [3809]={ + [3845]={ [1]={ [1]={ [1]={ @@ -85211,7 +86036,7 @@ return { [1]="guardian_remove_curses_and_status_ailments_every_10_seconds" } }, - [3810]={ + [3846]={ [1]={ [1]={ [1]={ @@ -85231,7 +86056,7 @@ return { [1]="guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds" } }, - [3811]={ + [3847]={ [1]={ [1]={ limit={ @@ -85247,7 +86072,7 @@ return { [1]="base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [3812]={ + [3848]={ [1]={ [1]={ limit={ @@ -85263,7 +86088,7 @@ return { [1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [3813]={ + [3849]={ [1]={ [1]={ limit={ @@ -85279,7 +86104,7 @@ return { [1]="active_skill_attack_speed_+%_final_per_frenzy_charge" } }, - [3814]={ + [3850]={ [1]={ [1]={ limit={ @@ -85308,7 +86133,7 @@ return { [1]="totem_aura_enemy_damage_+%_final" } }, - [3815]={ + [3851]={ [1]={ [1]={ limit={ @@ -85337,7 +86162,7 @@ return { [1]="totem_aura_enemy_fire_and_physical_damage_taken_+%" } }, - [3816]={ + [3852]={ [1]={ [1]={ [1]={ @@ -85382,7 +86207,7 @@ return { [1]="trap_damage_buildup_damage_+%_final_when_first_set" } }, - [3817]={ + [3853]={ [1]={ [1]={ [1]={ @@ -85427,7 +86252,7 @@ return { [1]="trap_damage_buildup_damage_+%_final_after_4_seconds" } }, - [3818]={ + [3854]={ [1]={ [1]={ limit={ @@ -85443,7 +86268,7 @@ return { [1]="base_attack_skill_cost_life_instead_of_mana_%" } }, - [3819]={ + [3855]={ [1]={ [1]={ limit={ @@ -85459,7 +86284,7 @@ return { [1]="local_weapon_crit_chance_is_100" } }, - [3820]={ + [3856]={ [1]={ [1]={ limit={ @@ -85480,7 +86305,7 @@ return { [2]="trap_and_mine_maximum_added_physical_damage" } }, - [3821]={ + [3857]={ [1]={ [1]={ limit={ @@ -85505,7 +86330,7 @@ return { [1]="trap_%_chance_to_trigger_twice" } }, - [3822]={ + [3858]={ [1]={ [1]={ limit={ @@ -85534,7 +86359,7 @@ return { [1]="physical_damage_over_time_per_10_dexterity_+%" } }, - [3823]={ + [3859]={ [1]={ [1]={ limit={ @@ -85563,7 +86388,7 @@ return { [1]="bleed_duration_per_12_intelligence_+%" } }, - [3824]={ + [3860]={ [1]={ [1]={ limit={ @@ -85592,7 +86417,7 @@ return { [1]="physical_skill_effect_duration_per_12_intelligence_+%" } }, - [3825]={ + [3861]={ [1]={ [1]={ [1]={ @@ -85612,7 +86437,7 @@ return { [1]="%_chance_to_cause_bleeding_enemies_to_flee_on_hit" } }, - [3826]={ + [3862]={ [1]={ [1]={ limit={ @@ -85641,7 +86466,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%" } }, - [3827]={ + [3863]={ [1]={ [1]={ limit={ @@ -85657,7 +86482,7 @@ return { [1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%" } }, - [3828]={ + [3864]={ [1]={ [1]={ limit={ @@ -85686,7 +86511,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%" } }, - [3829]={ + [3865]={ [1]={ [1]={ [1]={ @@ -85719,7 +86544,7 @@ return { [1]="gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius" } }, - [3830]={ + [3866]={ [1]={ [1]={ limit={ @@ -85748,7 +86573,7 @@ return { [1]="cleave_radius_+%" } }, - [3831]={ + [3867]={ [1]={ [1]={ limit={ @@ -85777,7 +86602,7 @@ return { [1]="ground_slam_radius_+%" } }, - [3832]={ + [3868]={ [1]={ [1]={ limit={ @@ -85806,7 +86631,7 @@ return { [1]="infernal_blow_radius_+%" } }, - [3833]={ + [3869]={ [1]={ [1]={ limit={ @@ -85835,7 +86660,7 @@ return { [1]="lightning_tendrils_radius_+%" } }, - [3834]={ + [3870]={ [1]={ [1]={ limit={ @@ -85864,7 +86689,7 @@ return { [1]="magma_orb_radius_+%" } }, - [3835]={ + [3871]={ [1]={ [1]={ limit={ @@ -85893,7 +86718,7 @@ return { [1]="reave_radius_+%" } }, - [3836]={ + [3872]={ [1]={ [1]={ limit={ @@ -85922,7 +86747,7 @@ return { [1]="molten_strike_radius_+%" } }, - [3837]={ + [3873]={ [1]={ [1]={ limit={ @@ -85951,7 +86776,7 @@ return { [1]="ice_shot_radius_+%" } }, - [3838]={ + [3874]={ [1]={ [1]={ limit={ @@ -85980,7 +86805,7 @@ return { [1]="rain_of_arrows_radius_+%" } }, - [3839]={ + [3875]={ [1]={ [1]={ limit={ @@ -86009,7 +86834,7 @@ return { [1]="leap_slam_radius_+%" } }, - [3840]={ + [3876]={ [1]={ [1]={ limit={ @@ -86038,7 +86863,7 @@ return { [1]="lightning_arrow_radius_+%" } }, - [3841]={ + [3877]={ [1]={ [1]={ limit={ @@ -86067,7 +86892,7 @@ return { [1]="ice_nova_radius_+%" } }, - [3842]={ + [3878]={ [1]={ [1]={ limit={ @@ -86096,7 +86921,7 @@ return { [1]="static_strike_radius_+%" } }, - [3843]={ + [3879]={ [1]={ [1]={ limit={ @@ -86125,7 +86950,7 @@ return { [1]="storm_call_radius_+%" } }, - [3844]={ + [3880]={ [1]={ [1]={ limit={ @@ -86150,7 +86975,7 @@ return { [1]="sweep_add_endurance_charge_on_hit_%" } }, - [3845]={ + [3881]={ [1]={ [1]={ limit={ @@ -86179,7 +87004,7 @@ return { [1]="sweep_radius_+%" } }, - [3846]={ + [3882]={ [1]={ [1]={ limit={ @@ -86208,7 +87033,7 @@ return { [1]="righteous_fire_radius_+%" } }, - [3847]={ + [3883]={ [1]={ [1]={ limit={ @@ -86237,7 +87062,7 @@ return { [1]="arctic_breath_radius_+%" } }, - [3848]={ + [3884]={ [1]={ [1]={ limit={ @@ -86266,7 +87091,7 @@ return { [1]="ball_lightning_radius_+%" } }, - [3849]={ + [3885]={ [1]={ [1]={ limit={ @@ -86295,7 +87120,7 @@ return { [1]="explosive_arrow_radius_+%" } }, - [3850]={ + [3886]={ [1]={ [1]={ limit={ @@ -86324,7 +87149,7 @@ return { [1]="flameblast_radius_+%" } }, - [3851]={ + [3887]={ [1]={ [1]={ limit={ @@ -86353,7 +87178,7 @@ return { [1]="glacial_cascade_radius_+%" } }, - [3852]={ + [3888]={ [1]={ [1]={ limit={ @@ -86382,7 +87207,7 @@ return { [1]="wild_strike_radius_+%" } }, - [3853]={ + [3889]={ [1]={ [1]={ limit={ @@ -86411,7 +87236,7 @@ return { [1]="detonate_dead_radius_+%" } }, - [3854]={ + [3890]={ [1]={ [1]={ limit={ @@ -86440,7 +87265,7 @@ return { [1]="ice_crash_radius_+%" } }, - [3855]={ + [3891]={ [1]={ [1]={ limit={ @@ -86469,7 +87294,7 @@ return { [1]="kinetic_blast_radius_+%" } }, - [3856]={ + [3892]={ [1]={ [1]={ limit={ @@ -86498,7 +87323,7 @@ return { [1]="caustic_arrow_radius_+%" } }, - [3857]={ + [3893]={ [1]={ [1]={ limit={ @@ -86527,7 +87352,7 @@ return { [1]="cold_snap_radius_+%" } }, - [3858]={ + [3894]={ [1]={ [1]={ limit={ @@ -86556,7 +87381,7 @@ return { [1]="decoy_totem_radius_+%" } }, - [3859]={ + [3895]={ [1]={ [1]={ limit={ @@ -86585,7 +87410,7 @@ return { [1]="shock_nova_radius_+%" } }, - [3860]={ + [3896]={ [1]={ [1]={ limit={ @@ -86614,7 +87439,7 @@ return { [1]="freeze_mine_radius_+%" } }, - [3861]={ + [3897]={ [1]={ [1]={ limit={ @@ -86643,7 +87468,7 @@ return { [1]="shrapnel_shot_radius_+%" } }, - [3862]={ + [3898]={ [1]={ [1]={ limit={ @@ -86672,7 +87497,7 @@ return { [1]="blast_rain_radius_+%" } }, - [3863]={ + [3899]={ [1]={ [1]={ limit={ @@ -86701,7 +87526,7 @@ return { [1]="contagion_radius_+%" } }, - [3864]={ + [3900]={ [1]={ [1]={ limit={ @@ -86730,7 +87555,7 @@ return { [1]="wither_radius_+%" } }, - [3865]={ + [3901]={ [1]={ [1]={ limit={ @@ -86759,7 +87584,7 @@ return { [1]="blade_vortex_radius_+%" } }, - [3866]={ + [3902]={ [1]={ [1]={ limit={ @@ -86788,7 +87613,7 @@ return { [1]="bladefall_radius_+%" } }, - [3867]={ + [3903]={ [1]={ [1]={ limit={ @@ -86817,7 +87642,7 @@ return { [1]="ice_trap_radius_+%" } }, - [3868]={ + [3904]={ [1]={ [1]={ limit={ @@ -86846,7 +87671,7 @@ return { [1]="earthquake_radius_+%" } }, - [3869]={ + [3905]={ [1]={ [1]={ limit={ @@ -86875,7 +87700,7 @@ return { [1]="frost_bomb_radius_+%" } }, - [3870]={ + [3906]={ [1]={ [1]={ limit={ @@ -86904,7 +87729,7 @@ return { [1]="storm_cloud_radius_+%" } }, - [3871]={ + [3907]={ [1]={ [1]={ limit={ @@ -86933,7 +87758,7 @@ return { [1]="blight_radius_+%" } }, - [3872]={ + [3908]={ [1]={ [1]={ limit={ @@ -86962,7 +87787,7 @@ return { [1]="shockwave_slam_radius_+%" } }, - [3873]={ + [3909]={ [1]={ [1]={ limit={ @@ -86991,7 +87816,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [3874]={ + [3910]={ [1]={ [1]={ limit={ @@ -87020,7 +87845,7 @@ return { [1]="shockwave_totem_radius_+%" } }, - [3875]={ + [3911]={ [1]={ [1]={ [1]={ @@ -87053,7 +87878,7 @@ return { [1]="charged_dash_area_of_effect_radius_+_of_final_explosion" } }, - [3876]={ + [3912]={ [1]={ [1]={ limit={ @@ -87082,7 +87907,7 @@ return { [1]="cleave_attack_speed_+%" } }, - [3877]={ + [3913]={ [1]={ [1]={ limit={ @@ -87111,7 +87936,7 @@ return { [1]="double_strike_attack_speed_+%" } }, - [3878]={ + [3914]={ [1]={ [1]={ limit={ @@ -87140,7 +87965,7 @@ return { [1]="dual_strike_attack_speed_+%" } }, - [3879]={ + [3915]={ [1]={ [1]={ limit={ @@ -87169,7 +87994,7 @@ return { [1]="heavy_strike_attack_speed_+%" } }, - [3880]={ + [3916]={ [1]={ [1]={ limit={ @@ -87198,7 +88023,7 @@ return { [1]="zombie_attack_speed_+%" } }, - [3881]={ + [3917]={ [1]={ [1]={ limit={ @@ -87227,7 +88052,7 @@ return { [1]="rain_of_arrows_attack_speed_+%" } }, - [3882]={ + [3918]={ [1]={ [1]={ limit={ @@ -87256,7 +88081,7 @@ return { [1]="leap_slam_attack_speed_+%" } }, - [3883]={ + [3919]={ [1]={ [1]={ limit={ @@ -87285,7 +88110,7 @@ return { [1]="shield_charge_attack_speed_+%" } }, - [3884]={ + [3920]={ [1]={ [1]={ limit={ @@ -87314,7 +88139,7 @@ return { [1]="barrage_attack_speed_+%" } }, - [3885]={ + [3921]={ [1]={ [1]={ limit={ @@ -87343,7 +88168,7 @@ return { [1]="elemental_hit_attack_speed_+%" } }, - [3886]={ + [3922]={ [1]={ [1]={ limit={ @@ -87372,7 +88197,7 @@ return { [1]="cyclone_attack_speed_+%" } }, - [3887]={ + [3923]={ [1]={ [1]={ limit={ @@ -87401,7 +88226,7 @@ return { [1]="power_siphon_attack_speed_+%" } }, - [3888]={ + [3924]={ [1]={ [1]={ limit={ @@ -87430,7 +88255,7 @@ return { [1]="siege_ballista_attack_speed_+%" } }, - [3889]={ + [3925]={ [1]={ [1]={ limit={ @@ -87459,7 +88284,7 @@ return { [1]="shockwave_slam_attack_speed_+%" } }, - [3890]={ + [3926]={ [1]={ [1]={ limit={ @@ -87488,7 +88313,7 @@ return { [1]="mirror_arrow_and_mirror_arrow_clone_attack_speed_+%" } }, - [3891]={ + [3927]={ [1]={ [1]={ limit={ @@ -87517,7 +88342,7 @@ return { [1]="blink_arrow_and_blink_arrow_clone_attack_speed_+%" } }, - [3892]={ + [3928]={ [1]={ [1]={ limit={ @@ -87546,7 +88371,7 @@ return { [1]="whirling_blades_attack_speed_+%" } }, - [3893]={ + [3929]={ [1]={ [1]={ limit={ @@ -87575,7 +88400,7 @@ return { [1]="spectre_attack_and_cast_speed_+%" } }, - [3894]={ + [3930]={ [1]={ [1]={ limit={ @@ -87604,7 +88429,7 @@ return { [1]="freezing_pulse_cast_speed_+%" } }, - [3895]={ + [3931]={ [1]={ [1]={ limit={ @@ -87633,7 +88458,7 @@ return { [1]="fireball_cast_speed_+%" } }, - [3896]={ + [3932]={ [1]={ [1]={ limit={ @@ -87662,7 +88487,7 @@ return { [1]="fire_nova_mine_cast_speed_+%" } }, - [3897]={ + [3933]={ [1]={ [1]={ limit={ @@ -87691,7 +88516,7 @@ return { [1]="lightning_warp_cast_speed_+%" } }, - [3898]={ + [3934]={ [1]={ [1]={ limit={ @@ -87720,7 +88545,7 @@ return { [1]="fire_trap_cooldown_speed_+%" } }, - [3899]={ + [3935]={ [1]={ [1]={ limit={ @@ -87749,7 +88574,7 @@ return { [1]="flicker_strike_cooldown_speed_+%" } }, - [3900]={ + [3936]={ [1]={ [1]={ limit={ @@ -87778,7 +88603,7 @@ return { [1]="cold_snap_cooldown_speed_+%" } }, - [3901]={ + [3937]={ [1]={ [1]={ limit={ @@ -87807,7 +88632,7 @@ return { [1]="convocation_cooldown_speed_+%" } }, - [3902]={ + [3938]={ [1]={ [1]={ limit={ @@ -87836,7 +88661,7 @@ return { [1]="bear_trap_cooldown_speed_+%" } }, - [3903]={ + [3939]={ [1]={ [1]={ limit={ @@ -87865,7 +88690,7 @@ return { [1]="frost_wall_cooldown_speed_+%" } }, - [3904]={ + [3940]={ [1]={ [1]={ limit={ @@ -87894,7 +88719,7 @@ return { [1]="reckoning_cooldown_speed_+%" } }, - [3905]={ + [3941]={ [1]={ [1]={ limit={ @@ -87923,7 +88748,7 @@ return { [1]="flame_dash_cooldown_speed_+%" } }, - [3906]={ + [3942]={ [1]={ [1]={ limit={ @@ -87952,7 +88777,7 @@ return { [1]="desecrate_cooldown_speed_+%" } }, - [3907]={ + [3943]={ [1]={ [1]={ limit={ @@ -87981,7 +88806,7 @@ return { [1]="blink_arrow_cooldown_speed_+%" } }, - [3908]={ + [3944]={ [1]={ [1]={ limit={ @@ -88010,7 +88835,7 @@ return { [1]="mirror_arrow_cooldown_speed_+%" } }, - [3909]={ + [3945]={ [1]={ [1]={ limit={ @@ -88039,7 +88864,7 @@ return { [1]="riposte_cooldown_speed_+%" } }, - [3910]={ + [3946]={ [1]={ [1]={ limit={ @@ -88068,7 +88893,7 @@ return { [1]="vengeance_cooldown_speed_+%" } }, - [3911]={ + [3947]={ [1]={ [1]={ limit={ @@ -88097,7 +88922,7 @@ return { [1]="enduring_cry_cooldown_speed_+%" } }, - [3912]={ + [3948]={ [1]={ [1]={ limit={ @@ -88126,7 +88951,7 @@ return { [1]="frost_bomb_cooldown_speed_+%" } }, - [3913]={ + [3949]={ [1]={ [1]={ limit={ @@ -88155,7 +88980,7 @@ return { [1]="conversion_trap_cooldown_speed_+%" } }, - [3914]={ + [3950]={ [1]={ [1]={ limit={ @@ -88184,7 +89009,7 @@ return { [1]="ice_trap_cooldown_speed_+%" } }, - [3915]={ + [3951]={ [1]={ [1]={ limit={ @@ -88217,7 +89042,7 @@ return { [1]="ball_lightning_projectile_speed_+%" } }, - [3916]={ + [3952]={ [1]={ [1]={ limit={ @@ -88246,7 +89071,7 @@ return { [1]="freezing_pulse_projectile_speed_+%" } }, - [3917]={ + [3953]={ [1]={ [1]={ limit={ @@ -88275,7 +89100,7 @@ return { [1]="spark_projectile_speed_+%" } }, - [3918]={ + [3954]={ [1]={ [1]={ limit={ @@ -88304,7 +89129,7 @@ return { [1]="spectral_throw_projectile_speed_+%" } }, - [3919]={ + [3955]={ [1]={ [1]={ limit={ @@ -88333,7 +89158,7 @@ return { [1]="ethereal_knives_projectile_speed_+%" } }, - [3920]={ + [3956]={ [1]={ [1]={ limit={ @@ -88362,7 +89187,7 @@ return { [1]="flame_totem_projectile_speed_+%" } }, - [3921]={ + [3957]={ [1]={ [1]={ limit={ @@ -88391,7 +89216,7 @@ return { [1]="incinerate_projectile_speed_+%" } }, - [3922]={ + [3958]={ [1]={ [1]={ limit={ @@ -88420,7 +89245,7 @@ return { [1]="dominating_blow_duration_+%" } }, - [3923]={ + [3959]={ [1]={ [1]={ limit={ @@ -88449,7 +89274,7 @@ return { [1]="puncture_duration_+%" } }, - [3924]={ + [3960]={ [1]={ [1]={ limit={ @@ -88478,7 +89303,7 @@ return { [1]="immortal_call_duration_+%" } }, - [3925]={ + [3961]={ [1]={ [1]={ limit={ @@ -88507,7 +89332,7 @@ return { [1]="bone_offering_duration_+%" } }, - [3926]={ + [3962]={ [1]={ [1]={ limit={ @@ -88536,7 +89361,7 @@ return { [1]="flesh_offering_duration_+%" } }, - [3927]={ + [3963]={ [1]={ [1]={ limit={ @@ -88565,7 +89390,7 @@ return { [1]="spirit_offering_duration_+%" } }, - [3928]={ + [3964]={ [1]={ [1]={ limit={ @@ -88594,7 +89419,7 @@ return { [1]="smoke_mine_duration_+%" } }, - [3929]={ + [3965]={ [1]={ [1]={ limit={ @@ -88623,7 +89448,7 @@ return { [1]="frost_wall_duration_+%" } }, - [3930]={ + [3966]={ [1]={ [1]={ limit={ @@ -88652,7 +89477,7 @@ return { [1]="vigilant_strike_fortify_duration_+%" } }, - [3931]={ + [3967]={ [1]={ [1]={ limit={ @@ -88681,7 +89506,7 @@ return { [1]="poachers_mark_duration_+%" } }, - [3932]={ + [3968]={ [1]={ [1]={ limit={ @@ -88710,7 +89535,7 @@ return { [1]="projectile_weakness_duration_+%" } }, - [3933]={ + [3969]={ [1]={ [1]={ limit={ @@ -88739,7 +89564,7 @@ return { [1]="temporal_chains_duration_+%" } }, - [3934]={ + [3970]={ [1]={ [1]={ limit={ @@ -88768,7 +89593,7 @@ return { [1]="warlords_mark_duration_+%" } }, - [3935]={ + [3971]={ [1]={ [1]={ limit={ @@ -88797,7 +89622,7 @@ return { [1]="vulnerability_duration_+%" } }, - [3936]={ + [3972]={ [1]={ [1]={ limit={ @@ -88826,7 +89651,7 @@ return { [1]="punishment_duration_+%" } }, - [3937]={ + [3973]={ [1]={ [1]={ limit={ @@ -88855,7 +89680,7 @@ return { [1]="frostbite_duration_+%" } }, - [3938]={ + [3974]={ [1]={ [1]={ limit={ @@ -88884,7 +89709,7 @@ return { [1]="flammability_duration_+%" } }, - [3939]={ + [3975]={ [1]={ [1]={ limit={ @@ -88913,7 +89738,7 @@ return { [1]="enfeeble_duration_+%" } }, - [3940]={ + [3976]={ [1]={ [1]={ limit={ @@ -88942,7 +89767,7 @@ return { [1]="elemental_weakness_duration_+%" } }, - [3941]={ + [3977]={ [1]={ [1]={ limit={ @@ -88971,7 +89796,7 @@ return { [1]="conductivity_duration_+%" } }, - [3942]={ + [3978]={ [1]={ [1]={ limit={ @@ -89000,7 +89825,7 @@ return { [1]="assassins_mark_duration_+%" } }, - [3943]={ + [3979]={ [1]={ [1]={ limit={ @@ -89029,7 +89854,7 @@ return { [1]="desecrate_duration_+%" } }, - [3944]={ + [3980]={ [1]={ [1]={ limit={ @@ -89058,7 +89883,7 @@ return { [1]="rallying_cry_duration_+%" } }, - [3945]={ + [3981]={ [1]={ [1]={ limit={ @@ -89087,7 +89912,7 @@ return { [1]="abyssal_cry_duration_+%" } }, - [3946]={ + [3982]={ [1]={ [1]={ limit={ @@ -89116,7 +89941,7 @@ return { [1]="contagion_duration_+%" } }, - [3947]={ + [3983]={ [1]={ [1]={ limit={ @@ -89145,7 +89970,7 @@ return { [1]="siphon_duration_+%" } }, - [3948]={ + [3984]={ [1]={ [1]={ limit={ @@ -89174,7 +89999,7 @@ return { [1]="wither_duration_+%" } }, - [3949]={ + [3985]={ [1]={ [1]={ limit={ @@ -89203,7 +90028,7 @@ return { [1]="blade_vortex_duration_+%" } }, - [3950]={ + [3986]={ [1]={ [1]={ limit={ @@ -89236,7 +90061,7 @@ return { [1]="earthquake_duration_+%" } }, - [3951]={ + [3987]={ [1]={ [1]={ limit={ @@ -89265,7 +90090,7 @@ return { [1]="blight_duration_+%" } }, - [3952]={ + [3988]={ [1]={ [1]={ limit={ @@ -89294,7 +90119,7 @@ return { [1]="viper_strike_poison_duration_+%" } }, - [3953]={ + [3989]={ [1]={ [1]={ limit={ @@ -89323,7 +90148,7 @@ return { [1]="firestorm_duration_+%" } }, - [3954]={ + [3990]={ [1]={ [1]={ limit={ @@ -89352,7 +90177,7 @@ return { [1]="static_strike_duration_+%" } }, - [3955]={ + [3991]={ [1]={ [1]={ limit={ @@ -89385,7 +90210,7 @@ return { [1]="storm_call_duration_+%" } }, - [3956]={ + [3992]={ [1]={ [1]={ limit={ @@ -89414,7 +90239,7 @@ return { [1]="arctic_breath_duration_+%" } }, - [3957]={ + [3993]={ [1]={ [1]={ limit={ @@ -89447,7 +90272,7 @@ return { [1]="lightning_warp_duration_+%" } }, - [3958]={ + [3994]={ [1]={ [1]={ limit={ @@ -89476,7 +90301,7 @@ return { [1]="ice_shot_duration_+%" } }, - [3959]={ + [3995]={ [1]={ [1]={ limit={ @@ -89505,7 +90330,7 @@ return { [1]="caustic_arrow_duration_+%" } }, - [3960]={ + [3996]={ [1]={ [1]={ limit={ @@ -89534,7 +90359,7 @@ return { [1]="double_strike_critical_strike_chance_+%" } }, - [3961]={ + [3997]={ [1]={ [1]={ limit={ @@ -89563,7 +90388,7 @@ return { [1]="dual_strike_critical_strike_chance_+%" } }, - [3962]={ + [3998]={ [1]={ [1]={ limit={ @@ -89592,7 +90417,7 @@ return { [1]="split_arrow_critical_strike_chance_+%" } }, - [3963]={ + [3999]={ [1]={ [1]={ limit={ @@ -89621,7 +90446,7 @@ return { [1]="viper_strike_critical_strike_chance_+%" } }, - [3964]={ + [4000]={ [1]={ [1]={ limit={ @@ -89650,7 +90475,7 @@ return { [1]="flameblast_critical_strike_chance_+%" } }, - [3965]={ + [4001]={ [1]={ [1]={ limit={ @@ -89679,7 +90504,7 @@ return { [1]="flame_surge_critical_strike_chance_+%" } }, - [3966]={ + [4002]={ [1]={ [1]={ limit={ @@ -89708,7 +90533,7 @@ return { [1]="tornado_shot_critical_strike_chance_+%" } }, - [3967]={ + [4003]={ [1]={ [1]={ limit={ @@ -89737,7 +90562,7 @@ return { [1]="storm_cloud_critical_strike_chance_+%" } }, - [3968]={ + [4004]={ [1]={ [1]={ limit={ @@ -89766,7 +90591,7 @@ return { [1]="bladefall_critical_strike_chance_+%" } }, - [3969]={ + [4005]={ [1]={ [1]={ limit={ @@ -89791,7 +90616,7 @@ return { [1]="lightning_strike_num_of_additional_projectiles" } }, - [3970]={ + [4006]={ [1]={ [1]={ limit={ @@ -89816,7 +90641,7 @@ return { [1]="molten_strike_num_of_additional_projectiles" } }, - [3971]={ + [4007]={ [1]={ [1]={ limit={ @@ -89841,7 +90666,7 @@ return { [1]="spark_num_of_additional_projectiles" } }, - [3972]={ + [4008]={ [1]={ [1]={ limit={ @@ -89866,7 +90691,7 @@ return { [1]="split_arrow_num_of_additional_projectiles" } }, - [3973]={ + [4009]={ [1]={ [1]={ limit={ @@ -89891,7 +90716,7 @@ return { [1]="barrage_num_of_additional_projectiles" } }, - [3974]={ + [4010]={ [1]={ [1]={ limit={ @@ -89925,7 +90750,7 @@ return { [2]="quality_display_tornado_shot_is_gem" } }, - [3975]={ + [4011]={ [1]={ [1]={ limit={ @@ -89950,7 +90775,7 @@ return { [1]="magma_orb_num_of_additional_projectiles_in_chain" } }, - [3976]={ + [4012]={ [1]={ [1]={ limit={ @@ -89975,7 +90800,7 @@ return { [1]="arc_num_of_additional_projectiles_in_chain" } }, - [3977]={ + [4013]={ [1]={ [1]={ limit={ @@ -90000,7 +90825,7 @@ return { [1]="flame_totem_num_of_additional_projectiles" } }, - [3978]={ + [4014]={ [1]={ [1]={ limit={ @@ -90025,7 +90850,7 @@ return { [1]="lightning_strike_additional_pierce" } }, - [3979]={ + [4015]={ [1]={ [1]={ limit={ @@ -90050,7 +90875,7 @@ return { [1]="lightning_trap_additional_pierce" } }, - [3980]={ + [4016]={ [1]={ [1]={ [1]={ @@ -90083,7 +90908,7 @@ return { [1]="burning_arrow_ignite_chance_%" } }, - [3981]={ + [4017]={ [1]={ [1]={ limit={ @@ -90099,7 +90924,7 @@ return { [1]="burning_arrow_physical_damage_%_to_add_as_fire_damage" } }, - [3982]={ + [4018]={ [1]={ [1]={ limit={ @@ -90115,7 +90940,7 @@ return { [1]="infernal_blow_physical_damage_%_to_add_as_fire_damage" } }, - [3983]={ + [4019]={ [1]={ [1]={ limit={ @@ -90144,7 +90969,7 @@ return { [1]="fire_trap_burning_damage_+%" } }, - [3984]={ + [4020]={ [1]={ [1]={ [1]={ @@ -90177,7 +91002,7 @@ return { [1]="fireball_ignite_chance_%" } }, - [3985]={ + [4021]={ [1]={ [1]={ [1]={ @@ -90214,7 +91039,7 @@ return { [1]="glacial_hammer_freeze_chance_%" } }, - [3986]={ + [4022]={ [1]={ [1]={ [1]={ @@ -90247,7 +91072,7 @@ return { [1]="ice_nova_freeze_chance_%" } }, - [3987]={ + [4023]={ [1]={ [1]={ limit={ @@ -90276,7 +91101,7 @@ return { [1]="reave_attack_speed_per_reave_stack_+%" } }, - [3988]={ + [4024]={ [1]={ [1]={ limit={ @@ -90309,7 +91134,7 @@ return { [1]="spectral_throw_projectile_deceleration_+%" } }, - [3989]={ + [4025]={ [1]={ [1]={ limit={ @@ -90338,7 +91163,7 @@ return { [1]="flicker_strike_damage_+%_per_frenzy_charge" } }, - [3990]={ + [4026]={ [1]={ [1]={ [1]={ @@ -90358,7 +91183,7 @@ return { [1]="puncture_maim_on_hit_%_chance" } }, - [3991]={ + [4027]={ [1]={ [1]={ [1]={ @@ -90395,7 +91220,7 @@ return { [1]="arc_shock_chance_%" } }, - [3992]={ + [4028]={ [1]={ [1]={ limit={ @@ -90411,7 +91236,7 @@ return { [1]="fire_nova_mine_num_of_additional_repeats" } }, - [3993]={ + [4029]={ [1]={ [1]={ limit={ @@ -90440,7 +91265,7 @@ return { [1]="firestorm_explosion_area_of_effect_+%" } }, - [3994]={ + [4030]={ [1]={ [1]={ limit={ @@ -90469,7 +91294,7 @@ return { [1]="flame_surge_damage_+%_vs_burning_enemies" } }, - [3995]={ + [4031]={ [1]={ [1]={ limit={ @@ -90485,7 +91310,7 @@ return { [1]="ice_spear_%_chance_to_gain_power_charge_on_critical_strike" } }, - [3996]={ + [4032]={ [1]={ [1]={ limit={ @@ -90501,7 +91326,7 @@ return { [1]="power_siphon_%_chance_to_gain_power_charge_on_kill" } }, - [3997]={ + [4033]={ [1]={ [1]={ limit={ @@ -90530,7 +91355,7 @@ return { [1]="melee_ancestor_totem_placement_speed_+%" } }, - [3998]={ + [4034]={ [1]={ [1]={ limit={ @@ -90559,7 +91384,7 @@ return { [1]="searing_bond_totem_placement_speed_+%" } }, - [3999]={ + [4035]={ [1]={ [1]={ limit={ @@ -90575,7 +91400,7 @@ return { [1]="sweep_knockback_chance_%" } }, - [4000]={ + [4036]={ [1]={ [1]={ limit={ @@ -90604,7 +91429,7 @@ return { [1]="frenzy_damage_+%_per_frenzy_charge" } }, - [4001]={ + [4037]={ [1]={ [1]={ limit={ @@ -90620,7 +91445,7 @@ return { [1]="frenzy_%_chance_to_gain_additional_frenzy_charge" } }, - [4002]={ + [4038]={ [1]={ [1]={ [1]={ @@ -90669,7 +91494,7 @@ return { [1]="elemental_hit_chance_to_freeze_shock_ignite_%" } }, - [4003]={ + [4039]={ [1]={ [1]={ limit={ @@ -90685,7 +91510,7 @@ return { [1]="glacial_cascade_physical_damage_%_to_convert_to_cold" } }, - [4004]={ + [4040]={ [1]={ [1]={ limit={ @@ -90701,7 +91526,7 @@ return { [1]="glacial_hammer_physical_damage_%_to_add_as_cold_damage" } }, - [4005]={ + [4041]={ [1]={ [1]={ limit={ @@ -90717,7 +91542,7 @@ return { [1]="ice_crash_physical_damage_%_to_add_as_cold_damage" } }, - [4006]={ + [4042]={ [1]={ [1]={ limit={ @@ -90733,7 +91558,7 @@ return { [1]="spectre_elemental_resistances_%" } }, - [4007]={ + [4043]={ [1]={ [1]={ limit={ @@ -90749,7 +91574,7 @@ return { [1]="zombie_elemental_resistances_%" } }, - [4008]={ + [4044]={ [1]={ [1]={ limit={ @@ -90765,7 +91590,7 @@ return { [1]="stone_golem_elemental_resistances_%" } }, - [4009]={ + [4045]={ [1]={ [1]={ limit={ @@ -90781,7 +91606,7 @@ return { [1]="flame_golem_elemental_resistances_%" } }, - [4010]={ + [4046]={ [1]={ [1]={ limit={ @@ -90797,7 +91622,7 @@ return { [1]="ice_golem_elemental_resistances_%" } }, - [4011]={ + [4047]={ [1]={ [1]={ limit={ @@ -90813,7 +91638,7 @@ return { [1]="lightning_golem_elemental_resistances_%" } }, - [4012]={ + [4048]={ [1]={ [1]={ limit={ @@ -90829,7 +91654,7 @@ return { [1]="chaos_golem_elemental_resistances_%" } }, - [4013]={ + [4049]={ [1]={ [1]={ limit={ @@ -90845,7 +91670,7 @@ return { [1]="animate_guardian_elemental_resistances_%" } }, - [4014]={ + [4050]={ [1]={ [1]={ limit={ @@ -90874,7 +91699,7 @@ return { [1]="shock_nova_ring_damage_+%" } }, - [4015]={ + [4051]={ [1]={ [1]={ limit={ @@ -90899,7 +91724,7 @@ return { [1]="blast_rain_number_of_blasts" } }, - [4016]={ + [4052]={ [1]={ [1]={ limit={ @@ -90915,7 +91740,7 @@ return { [1]="blast_rain_single_additional_projectile" } }, - [4017]={ + [4053]={ [1]={ [1]={ [1]={ @@ -90940,7 +91765,7 @@ return { [2]="quality_display_essence_drain_is_gem" } }, - [4018]={ + [4054]={ [1]={ [1]={ limit={ @@ -90956,7 +91781,7 @@ return { [1]="detonate_dead_%_chance_to_detonate_additional_corpse" } }, - [4019]={ + [4055]={ [1]={ [1]={ limit={ @@ -90972,7 +91797,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [4020]={ + [4056]={ [1]={ [1]={ limit={ @@ -91001,7 +91826,7 @@ return { [1]="decoy_totem_life_+%" } }, - [4021]={ + [4057]={ [1]={ [1]={ [1]={ @@ -91038,7 +91863,7 @@ return { [1]="devouring_totem_leech_per_second_+%" } }, - [4022]={ + [4058]={ [1]={ [1]={ limit={ @@ -91054,7 +91879,7 @@ return { [1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration" } }, - [4023]={ + [4059]={ [1]={ [1]={ limit={ @@ -91083,7 +91908,7 @@ return { [1]="rejuvenation_totem_aura_effect_+%" } }, - [4024]={ + [4060]={ [1]={ [1]={ limit={ @@ -91108,7 +91933,7 @@ return { [1]="wild_strike_num_of_additional_projectiles_in_chain" } }, - [4025]={ + [4061]={ [1]={ [1]={ limit={ @@ -91133,7 +91958,7 @@ return { [1]="summon_skeletons_num_additional_warrior_skeletons" } }, - [4026]={ + [4062]={ [1]={ [1]={ limit={ @@ -91162,7 +91987,7 @@ return { [1]="shockwave_totem_cast_speed_+%" } }, - [4027]={ + [4063]={ [1]={ [1]={ limit={ @@ -91191,7 +92016,7 @@ return { [1]="devouring_totem_%_chance_to_consume_additional_corpse" } }, - [4028]={ + [4064]={ [1]={ [1]={ limit={ @@ -91220,7 +92045,7 @@ return { [1]="siege_ballista_totem_placement_speed_+%" } }, - [4029]={ + [4065]={ [1]={ [1]={ limit={ @@ -91249,7 +92074,7 @@ return { [1]="incinerate_damage_+%_per_stage" } }, - [4030]={ + [4066]={ [1]={ [1]={ limit={ @@ -91278,7 +92103,7 @@ return { [1]="poachers_mark_curse_effect_+%" } }, - [4031]={ + [4067]={ [1]={ [1]={ limit={ @@ -91307,7 +92132,7 @@ return { [1]="projectile_weakness_curse_effect_+%" } }, - [4032]={ + [4068]={ [1]={ [1]={ limit={ @@ -91336,7 +92161,7 @@ return { [1]="temporal_chains_curse_effect_+%" } }, - [4033]={ + [4069]={ [1]={ [1]={ limit={ @@ -91365,7 +92190,7 @@ return { [1]="assassins_mark_curse_effect_+%" } }, - [4034]={ + [4070]={ [1]={ [1]={ limit={ @@ -91394,7 +92219,7 @@ return { [1]="conductivity_curse_effect_+%" } }, - [4035]={ + [4071]={ [1]={ [1]={ limit={ @@ -91423,7 +92248,7 @@ return { [1]="elemental_weakness_curse_effect_+%" } }, - [4036]={ + [4072]={ [1]={ [1]={ limit={ @@ -91452,7 +92277,7 @@ return { [1]="enfeeble_curse_effect_+%" } }, - [4037]={ + [4073]={ [1]={ [1]={ limit={ @@ -91481,7 +92306,7 @@ return { [1]="flammability_curse_effect_+%" } }, - [4038]={ + [4074]={ [1]={ [1]={ limit={ @@ -91510,7 +92335,7 @@ return { [1]="frostbite_curse_effect_+%" } }, - [4039]={ + [4075]={ [1]={ [1]={ limit={ @@ -91539,7 +92364,7 @@ return { [1]="punishment_curse_effect_+%" } }, - [4040]={ + [4076]={ [1]={ [1]={ limit={ @@ -91568,7 +92393,7 @@ return { [1]="vulnerability_curse_effect_+%" } }, - [4041]={ + [4077]={ [1]={ [1]={ limit={ @@ -91597,7 +92422,7 @@ return { [1]="warlords_mark_curse_effect_+%" } }, - [4042]={ + [4078]={ [1]={ [1]={ limit={ @@ -91622,7 +92447,7 @@ return { [1]="display_attack_with_word_of_ire_when_hit_%" } }, - [4043]={ + [4079]={ [1]={ [1]={ limit={ @@ -91647,7 +92472,7 @@ return { [1]="display_attack_with_edict_of_ire_when_hit_%" } }, - [4044]={ + [4080]={ [1]={ [1]={ limit={ @@ -91672,7 +92497,7 @@ return { [1]="display_attack_with_decree_of_ire_when_hit_%" } }, - [4045]={ + [4081]={ [1]={ [1]={ limit={ @@ -91697,7 +92522,7 @@ return { [1]="display_attack_with_commandment_of_ire_when_hit_%" } }, - [4046]={ + [4082]={ [1]={ [1]={ limit={ @@ -91726,7 +92551,7 @@ return { [1]="arctic_armour_buff_effect_+%" } }, - [4047]={ + [4083]={ [1]={ [1]={ limit={ @@ -91755,7 +92580,7 @@ return { [1]="convocation_buff_effect_+%" } }, - [4048]={ + [4084]={ [1]={ [1]={ limit={ @@ -91784,7 +92609,7 @@ return { [1]="molten_shell_buff_effect_+%" } }, - [4049]={ + [4085]={ [1]={ [1]={ limit={ @@ -91809,7 +92634,7 @@ return { [1]="immortal_call_%_chance_to_not_consume_endurance_charges" } }, - [4050]={ + [4086]={ [1]={ [1]={ limit={ @@ -91834,7 +92659,7 @@ return { [1]="phase_run_%_chance_to_not_consume_frenzy_charges" } }, - [4051]={ + [4087]={ [1]={ [1]={ limit={ @@ -91850,7 +92675,7 @@ return { [1]="shrapnel_shot_physical_damage_%_to_add_as_lightning_damage" } }, - [4052]={ + [4088]={ [1]={ [1]={ limit={ @@ -91875,7 +92700,7 @@ return { [1]="tempest_shield_num_of_additional_projectiles_in_chain" } }, - [4053]={ + [4089]={ [1]={ [1]={ limit={ @@ -91908,7 +92733,7 @@ return { [1]="arctic_armour_mana_reservation_+%" } }, - [4054]={ + [4090]={ [1]={ [1]={ limit={ @@ -91941,7 +92766,7 @@ return { [1]="herald_of_ash_mana_reservation_+%" } }, - [4055]={ + [4091]={ [1]={ [1]={ limit={ @@ -91974,7 +92799,7 @@ return { [1]="herald_of_ice_mana_reservation_+%" } }, - [4056]={ + [4092]={ [1]={ [1]={ limit={ @@ -92007,7 +92832,7 @@ return { [1]="herald_of_thunder_mana_reservation_+%" } }, - [4057]={ + [4093]={ [1]={ [1]={ limit={ @@ -92040,7 +92865,7 @@ return { [1]="clarity_mana_reservation_+%" } }, - [4058]={ + [4094]={ [1]={ [1]={ limit={ @@ -92073,7 +92898,7 @@ return { [1]="hatred_mana_reservation_+%" } }, - [4059]={ + [4095]={ [1]={ [1]={ limit={ @@ -92106,7 +92931,7 @@ return { [1]="purity_of_ice_mana_reservation_+%" } }, - [4060]={ + [4096]={ [1]={ [1]={ limit={ @@ -92139,7 +92964,7 @@ return { [1]="determination_mana_reservation_+%" } }, - [4061]={ + [4097]={ [1]={ [1]={ limit={ @@ -92172,7 +92997,7 @@ return { [1]="discipline_mana_reservation_+%" } }, - [4062]={ + [4098]={ [1]={ [1]={ limit={ @@ -92205,7 +93030,7 @@ return { [1]="purity_of_elements_mana_reservation_+%" } }, - [4063]={ + [4099]={ [1]={ [1]={ limit={ @@ -92238,7 +93063,7 @@ return { [1]="purity_of_fire_mana_reservation_+%" } }, - [4064]={ + [4100]={ [1]={ [1]={ limit={ @@ -92271,7 +93096,7 @@ return { [1]="purity_of_lightning_mana_reservation_+%" } }, - [4065]={ + [4101]={ [1]={ [1]={ limit={ @@ -92304,7 +93129,7 @@ return { [1]="vitality_mana_reservation_+%" } }, - [4066]={ + [4102]={ [1]={ [1]={ limit={ @@ -92337,7 +93162,7 @@ return { [1]="wrath_mana_reservation_+%" } }, - [4067]={ + [4103]={ [1]={ [1]={ limit={ @@ -92370,7 +93195,7 @@ return { [1]="grace_mana_reservation_+%" } }, - [4068]={ + [4104]={ [1]={ [1]={ limit={ @@ -92403,7 +93228,7 @@ return { [1]="haste_mana_reservation_+%" } }, - [4069]={ + [4105]={ [1]={ [1]={ limit={ @@ -92436,7 +93261,7 @@ return { [1]="chaos_weakness_mana_reservation_+%" } }, - [4070]={ + [4106]={ [1]={ [1]={ limit={ @@ -92469,7 +93294,7 @@ return { [1]="conductivity_mana_reservation_+%" } }, - [4071]={ + [4107]={ [1]={ [1]={ limit={ @@ -92502,7 +93327,7 @@ return { [1]="flammability_mana_reservation_+%" } }, - [4072]={ + [4108]={ [1]={ [1]={ limit={ @@ -92535,7 +93360,7 @@ return { [1]="frostbite_mana_reservation_+%" } }, - [4073]={ + [4109]={ [1]={ [1]={ limit={ @@ -92568,7 +93393,7 @@ return { [1]="temporal_chains_mana_reservation_+%" } }, - [4074]={ + [4110]={ [1]={ [1]={ limit={ @@ -92601,7 +93426,7 @@ return { [1]="vulnerability_mana_reservation_+%" } }, - [4075]={ + [4111]={ [1]={ [1]={ limit={ @@ -92617,7 +93442,7 @@ return { [1]="cannot_be_stunned_while_at_max_endurance_charges" } }, - [4076]={ + [4112]={ [1]={ [1]={ limit={ @@ -92646,7 +93471,7 @@ return { [1]="life_regenerate_rate_per_second_%_while_totem_active" } }, - [4077]={ + [4113]={ [1]={ [1]={ [1]={ @@ -92691,7 +93516,7 @@ return { [1]="gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit" } }, - [4078]={ + [4114]={ [1]={ [1]={ limit={ @@ -92720,7 +93545,7 @@ return { [1]="berserker_damage_+%_final" } }, - [4079]={ + [4115]={ [1]={ [1]={ limit={ @@ -92749,7 +93574,7 @@ return { [1]="elemental_damage_taken_+%_while_on_consecrated_ground" } }, - [4080]={ + [4116]={ [1]={ [1]={ [1]={ @@ -92786,7 +93611,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments" } }, - [4081]={ + [4117]={ [1]={ [1]={ limit={ @@ -92802,7 +93627,7 @@ return { [1]="%_chance_to_gain_power_charge_on_placing_a_totem" } }, - [4082]={ + [4118]={ [1]={ [1]={ [1]={ @@ -92822,7 +93647,7 @@ return { [1]="gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy" } }, - [4083]={ + [4119]={ [1]={ [1]={ [1]={ @@ -92842,7 +93667,7 @@ return { [1]="gain_elemental_conflux_if_6_unique_influence_amoung_equipped_non_amulet_items" } }, - [4084]={ + [4120]={ [1]={ [1]={ limit={ @@ -92858,7 +93683,7 @@ return { [1]="enemies_chaos_resistance_%_while_cursed" } }, - [4085]={ + [4121]={ [1]={ [1]={ [1]={ @@ -92895,7 +93720,7 @@ return { [1]="damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy" } }, - [4086]={ + [4122]={ [1]={ [1]={ limit={ @@ -92911,7 +93736,7 @@ return { [1]="physical_damage_reduction_and_minion_physical_damage_reduction_%" } }, - [4087]={ + [4123]={ [1]={ [1]={ limit={ @@ -92940,7 +93765,7 @@ return { [1]="offering_spells_effect_+%" } }, - [4088]={ + [4124]={ [1]={ [1]={ limit={ @@ -92956,7 +93781,7 @@ return { [1]="additional_block_chance_%_for_you_and_allies_affected_by_your_auras" } }, - [4089]={ + [4125]={ [1]={ [1]={ limit={ @@ -92972,7 +93797,7 @@ return { [1]="additional_elemental_damage_reduction_as_half_of_chaos_resistance" } }, - [4090]={ + [4126]={ [1]={ [1]={ limit={ @@ -93001,7 +93826,7 @@ return { [1]="attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras" } }, - [4091]={ + [4127]={ [1]={ [1]={ limit={ @@ -93030,7 +93855,7 @@ return { [1]="attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras" } }, - [4092]={ + [4128]={ [1]={ [1]={ limit={ @@ -93046,7 +93871,7 @@ return { [1]="chaos_resistance_%_for_you_and_allies_affected_by_your_auras" } }, - [4093]={ + [4129]={ [1]={ [1]={ limit={ @@ -93075,7 +93900,7 @@ return { [1]="damage_+%_for_you_and_allies_affected_by_your_auras" } }, - [4094]={ + [4130]={ [1]={ [1]={ limit={ @@ -93104,7 +93929,7 @@ return { [1]="elemental_resistances_+%_for_you_and_allies_affected_by_your_auras" } }, - [4095]={ + [4131]={ [1]={ [1]={ [1]={ @@ -93124,7 +93949,7 @@ return { [1]="you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_resource" } }, - [4096]={ + [4132]={ [1]={ [1]={ [1]={ @@ -93161,7 +93986,7 @@ return { [1]="you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed" } }, - [4097]={ + [4133]={ [1]={ [1]={ limit={ @@ -93177,7 +94002,7 @@ return { [1]="%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life" } }, - [4098]={ + [4134]={ [1]={ [1]={ [1]={ @@ -93197,7 +94022,7 @@ return { [1]="cause_maim_on_critical_strike_attack" } }, - [4099]={ + [4135]={ [1]={ [1]={ [1]={ @@ -93217,7 +94042,7 @@ return { [1]="%_chance_to_create_smoke_cloud_on_mine_or_trap_creation" } }, - [4100]={ + [4136]={ [1]={ [1]={ limit={ @@ -93246,7 +94071,7 @@ return { [1]="damage_+%_for_each_trap_and_mine_active" } }, - [4101]={ + [4137]={ [1]={ [1]={ limit={ @@ -93275,7 +94100,7 @@ return { [1]="evasion_rating_while_es_full_+%_final" } }, - [4102]={ + [4138]={ [1]={ [1]={ limit={ @@ -93304,7 +94129,7 @@ return { [1]="damage_+%_while_es_not_full" } }, - [4103]={ + [4139]={ [1]={ [1]={ [1]={ @@ -93341,7 +94166,7 @@ return { [1]="mana_regeneration_+%_for_4_seconds_on_movement_skill_use" } }, - [4104]={ + [4140]={ [1]={ [1]={ [1]={ @@ -93361,7 +94186,7 @@ return { [1]="gain_onslaught_while_frenzy_charges_full" } }, - [4105]={ + [4141]={ [1]={ [1]={ limit={ @@ -93377,7 +94202,7 @@ return { [1]="projectile_damage_+%_max_as_distance_travelled_increases" } }, - [4106]={ + [4142]={ [1]={ [1]={ limit={ @@ -93406,7 +94231,7 @@ return { [1]="damage_+%_during_flask_effect" } }, - [4107]={ + [4143]={ [1]={ [1]={ limit={ @@ -93422,7 +94247,7 @@ return { [1]="avoid_freeze_shock_ignite_bleed_%_during_flask_effect" } }, - [4108]={ + [4144]={ [1]={ [1]={ limit={ @@ -93451,7 +94276,7 @@ return { [1]="elemental_damage_taken_+%_during_flask_effect" } }, - [4109]={ + [4145]={ [1]={ [1]={ [1]={ @@ -93488,7 +94313,7 @@ return { [1]="damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy" } }, - [4110]={ + [4146]={ [1]={ [1]={ limit={ @@ -93517,7 +94342,7 @@ return { [1]="damage_+%_to_you_and_nearby_allies_while_you_have_fortify" } }, - [4111]={ + [4147]={ [1]={ [1]={ limit={ @@ -93546,7 +94371,7 @@ return { [1]="damage_taken_+%_from_taunted_enemies" } }, - [4112]={ + [4148]={ [1]={ [1]={ limit={ @@ -93575,7 +94400,7 @@ return { [1]="attack_and_cast_speed_+%_while_leeching" } }, - [4113]={ + [4149]={ [1]={ [1]={ limit={ @@ -93604,7 +94429,7 @@ return { [1]="shield_charge_damage_per_target_hit_+%" } }, - [4114]={ + [4150]={ [1]={ [1]={ [1]={ @@ -93637,7 +94462,7 @@ return { [1]="traps_and_mines_%_chance_to_poison" } }, - [4115]={ + [4151]={ [1]={ [1]={ limit={ @@ -93653,7 +94478,7 @@ return { [1]="damage_+%_of_each_type_that_you_have_an_active_golem_of" } }, - [4116]={ + [4152]={ [1]={ [1]={ limit={ @@ -93669,7 +94494,7 @@ return { [1]="elemental_golem_immunity_to_elemental_damage" } }, - [4117]={ + [4153]={ [1]={ [1]={ limit={ @@ -93685,7 +94510,7 @@ return { [1]="golem_immunity_to_elemental_damage" } }, - [4118]={ + [4154]={ [1]={ [1]={ limit={ @@ -93718,7 +94543,7 @@ return { [1]="unique_primordial_tether_golem_life_+%_final" } }, - [4119]={ + [4155]={ [1]={ [1]={ limit={ @@ -93747,7 +94572,7 @@ return { [1]="elemental_golem_granted_buff_effect_+%" } }, - [4120]={ + [4156]={ [1]={ [1]={ limit={ @@ -93776,7 +94601,7 @@ return { [1]="base_stone_golem_granted_buff_effect_+%" } }, - [4121]={ + [4157]={ [1]={ [1]={ limit={ @@ -93805,7 +94630,7 @@ return { [1]="base_fire_golem_granted_buff_effect_+%" } }, - [4122]={ + [4158]={ [1]={ [1]={ limit={ @@ -93834,7 +94659,7 @@ return { [1]="base_ice_golem_granted_buff_effect_+%" } }, - [4123]={ + [4159]={ [1]={ [1]={ limit={ @@ -93863,7 +94688,7 @@ return { [1]="base_lightning_golem_granted_buff_effect_+%" } }, - [4124]={ + [4160]={ [1]={ [1]={ limit={ @@ -93892,7 +94717,7 @@ return { [1]="base_chaos_golem_granted_buff_effect_+%" } }, - [4125]={ + [4161]={ [1]={ [1]={ [1]={ @@ -93912,7 +94737,7 @@ return { [1]="gain_elemental_penetration_for_4_seconds_on_mine_detonation" } }, - [4126]={ + [4162]={ [1]={ [1]={ limit={ @@ -93928,7 +94753,7 @@ return { [1]="base_cold_immunity" } }, - [4127]={ + [4163]={ [1]={ [1]={ limit={ @@ -93944,7 +94769,7 @@ return { [1]="base_lightning_immunity" } }, - [4128]={ + [4164]={ [1]={ [1]={ limit={ @@ -93973,7 +94798,7 @@ return { [1]="blood_rage_grants_additional_attack_speed_+%" } }, - [4129]={ + [4165]={ [1]={ [1]={ limit={ @@ -93989,7 +94814,7 @@ return { [1]="blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill" } }, - [4130]={ + [4166]={ [1]={ [1]={ [1]={ @@ -94009,7 +94834,7 @@ return { [1]="is_hindered" } }, - [4131]={ + [4167]={ [1]={ [1]={ [1]={ @@ -94046,7 +94871,7 @@ return { [1]="damage_+%_vs_hindered_enemies" } }, - [4132]={ + [4168]={ [1]={ [1]={ limit={ @@ -94071,7 +94896,7 @@ return { [1]="blast_rain_%_chance_for_additional_blast" } }, - [4133]={ + [4169]={ [1]={ [1]={ limit={ @@ -94100,7 +94925,7 @@ return { [1]="smoke_mine_base_movement_velocity_+%" } }, - [4134]={ + [4170]={ [1]={ [1]={ limit={ @@ -94129,7 +94954,7 @@ return { [1]="enduring_cry_buff_effect_+%" } }, - [4135]={ + [4171]={ [1]={ [1]={ limit={ @@ -94154,7 +94979,7 @@ return { [1]="cluster_burst_spawn_amount" } }, - [4136]={ + [4172]={ [1]={ [1]={ limit={ @@ -94183,7 +95008,7 @@ return { [1]="lightning_tendrils_critical_strike_chance_+%" } }, - [4137]={ + [4173]={ [1]={ [1]={ limit={ @@ -94212,7 +95037,7 @@ return { [1]="righteous_fire_spell_damage_+%" } }, - [4138]={ + [4174]={ [1]={ [1]={ limit={ @@ -94241,7 +95066,7 @@ return { [1]="rallying_cry_buff_effect_+%" } }, - [4139]={ + [4175]={ [1]={ [1]={ limit={ @@ -94257,7 +95082,7 @@ return { [1]="melee_ancestor_totem_elemental_resistance_%" } }, - [4140]={ + [4176]={ [1]={ [1]={ limit={ @@ -94282,7 +95107,7 @@ return { [1]="kinetic_blast_%_chance_for_additional_blast" } }, - [4141]={ + [4177]={ [1]={ [1]={ limit={ @@ -94298,7 +95123,7 @@ return { [1]="guardian_nearby_allies_share_charges" } }, - [4142]={ + [4178]={ [1]={ [1]={ limit={ @@ -94327,7 +95152,7 @@ return { [1]="phase_run_skill_effect_duration_+%" } }, - [4143]={ + [4179]={ [1]={ [1]={ limit={ @@ -94356,7 +95181,7 @@ return { [1]="searing_totem_elemental_resistance_+%" } }, - [4144]={ + [4180]={ [1]={ [1]={ limit={ @@ -94372,7 +95197,7 @@ return { [1]="bone_offering_block_chance_+%" } }, - [4145]={ + [4181]={ [1]={ [1]={ limit={ @@ -94397,7 +95222,7 @@ return { [1]="desecrate_number_of_corpses_to_create" } }, - [4146]={ + [4182]={ [1]={ [1]={ limit={ @@ -94426,7 +95251,7 @@ return { [1]="flesh_offering_attack_speed_+%" } }, - [4147]={ + [4183]={ [1]={ [1]={ limit={ @@ -94455,7 +95280,7 @@ return { [1]="ice_spear_second_form_critical_strike_chance_+%" } }, - [4148]={ + [4184]={ [1]={ [1]={ limit={ @@ -94471,7 +95296,7 @@ return { [1]="ice_spear_second_form_critical_strike_multiplier_+" } }, - [4149]={ + [4185]={ [1]={ [1]={ limit={ @@ -94500,7 +95325,7 @@ return { [1]="ice_spear_second_form_projectile_speed_+%_final" } }, - [4150]={ + [4186]={ [1]={ [1]={ limit={ @@ -94525,7 +95350,7 @@ return { [1]="lightning_arrow_maximum_number_of_extra_targets" } }, - [4151]={ + [4187]={ [1]={ [1]={ [1]={ @@ -94558,7 +95383,7 @@ return { [1]="consecrate_ground_on_shatter_%_chance_for_3_seconds" } }, - [4152]={ + [4188]={ [1]={ [1]={ limit={ @@ -94574,7 +95399,7 @@ return { [1]="glows_in_area_with_unique_fish" } }, - [4153]={ + [4189]={ [1]={ [1]={ limit={ @@ -94599,7 +95424,7 @@ return { [1]="attacks_num_of_additional_chains" } }, - [4154]={ + [4190]={ [1]={ [1]={ limit={ @@ -94624,7 +95449,7 @@ return { [1]="number_of_additional_chains_for_projectiles" } }, - [4155]={ + [4191]={ [1]={ [1]={ limit={ @@ -94653,7 +95478,7 @@ return { [1]="explosive_arrow_attack_speed_+%" } }, - [4156]={ + [4192]={ [1]={ [1]={ limit={ @@ -94682,7 +95507,7 @@ return { [1]="lightning_damage_+%_per_10_intelligence" } }, - [4157]={ + [4193]={ [1]={ [1]={ [1]={ @@ -94702,7 +95527,7 @@ return { [1]="local_maim_on_hit" } }, - [4158]={ + [4194]={ [1]={ [1]={ limit={ @@ -94718,7 +95543,7 @@ return { [1]="warcries_cost_no_mana" } }, - [4159]={ + [4195]={ [1]={ [1]={ limit={ @@ -94734,7 +95559,7 @@ return { [1]="gain_a_power_charge_when_you_or_your_totems_kill_%_chance" } }, - [4160]={ + [4196]={ [1]={ [1]={ limit={ @@ -94750,7 +95575,7 @@ return { [1]="always_crit_shocked_enemies" } }, - [4161]={ + [4197]={ [1]={ [1]={ limit={ @@ -94766,7 +95591,7 @@ return { [1]="cannot_crit_non_shocked_enemies" } }, - [4162]={ + [4198]={ [1]={ [1]={ limit={ @@ -94795,7 +95620,7 @@ return { [1]="frost_bolt_damage_+%" } }, - [4163]={ + [4199]={ [1]={ [1]={ limit={ @@ -94824,7 +95649,7 @@ return { [1]="frost_bolt_nova_damage_+%" } }, - [4164]={ + [4200]={ [1]={ [1]={ limit={ @@ -94853,7 +95678,7 @@ return { [1]="double_slash_damage_+%" } }, - [4165]={ + [4201]={ [1]={ [1]={ limit={ @@ -94882,7 +95707,7 @@ return { [1]="charged_attack_damage_+%" } }, - [4166]={ + [4202]={ [1]={ [1]={ limit={ @@ -94911,7 +95736,7 @@ return { [1]="slam_ancestor_totem_damage_+%" } }, - [4167]={ + [4203]={ [1]={ [1]={ limit={ @@ -94940,7 +95765,7 @@ return { [1]="slash_ancestor_totem_damage_+%" } }, - [4168]={ + [4204]={ [1]={ [1]={ limit={ @@ -94969,7 +95794,7 @@ return { [1]="slash_ancestor_totem_radius_+%" } }, - [4169]={ + [4205]={ [1]={ [1]={ limit={ @@ -94998,7 +95823,7 @@ return { [1]="slam_ancestor_totem_radius_+%" } }, - [4170]={ + [4206]={ [1]={ [1]={ limit={ @@ -95027,7 +95852,7 @@ return { [1]="frost_bolt_nova_radius_+%" } }, - [4171]={ + [4207]={ [1]={ [1]={ limit={ @@ -95056,7 +95881,7 @@ return { [1]="double_slash_critical_strike_chance_+%" } }, - [4172]={ + [4208]={ [1]={ [1]={ limit={ @@ -95085,7 +95910,7 @@ return { [1]="charged_attack_radius_+%" } }, - [4173]={ + [4209]={ [1]={ [1]={ limit={ @@ -95114,7 +95939,7 @@ return { [1]="double_slash_radius_+%" } }, - [4174]={ + [4210]={ [1]={ [1]={ limit={ @@ -95143,7 +95968,7 @@ return { [1]="frost_bolt_cast_speed_+%" } }, - [4175]={ + [4211]={ [1]={ [1]={ [1]={ @@ -95180,7 +96005,7 @@ return { [1]="frost_bolt_freeze_chance_%" } }, - [4176]={ + [4212]={ [1]={ [1]={ limit={ @@ -95209,7 +96034,7 @@ return { [1]="frost_bolt_nova_duration_+%" } }, - [4177]={ + [4213]={ [1]={ [1]={ limit={ @@ -95225,7 +96050,7 @@ return { [1]="minions_cannot_be_blinded" } }, - [4178]={ + [4214]={ [1]={ [1]={ [1]={ @@ -95245,7 +96070,7 @@ return { [1]="minions_%_chance_to_blind_on_hit" } }, - [4179]={ + [4215]={ [1]={ [1]={ limit={ @@ -95261,7 +96086,7 @@ return { [1]="magic_items_drop_identified" } }, - [4180]={ + [4216]={ [1]={ [1]={ limit={ @@ -95277,7 +96102,7 @@ return { [1]="X_mana_per_stackable_unique_jewel" } }, - [4181]={ + [4217]={ [1]={ [1]={ limit={ @@ -95293,7 +96118,7 @@ return { [1]="X_armour_per_stackable_unique_jewel" } }, - [4182]={ + [4218]={ [1]={ [1]={ limit={ @@ -95309,7 +96134,7 @@ return { [1]="avoid_all_elemental_status_%_per_stackable_unique_jewel" } }, - [4183]={ + [4219]={ [1]={ [1]={ limit={ @@ -95325,7 +96150,7 @@ return { [1]="critical_strike_chance_+%_per_stackable_unique_jewel" } }, - [4184]={ + [4220]={ [1]={ [1]={ limit={ @@ -95341,7 +96166,7 @@ return { [1]="elemental_damage_+%_per_stackable_unique_jewel" } }, - [4185]={ + [4221]={ [1]={ [1]={ limit={ @@ -95357,7 +96182,7 @@ return { [1]="elemental_resistance_%_per_stackable_unique_jewel" } }, - [4186]={ + [4222]={ [1]={ [1]={ limit={ @@ -95386,7 +96211,7 @@ return { [1]="maximum_life_+%_per_stackable_unique_jewel" } }, - [4187]={ + [4223]={ [1]={ [1]={ limit={ @@ -95402,7 +96227,7 @@ return { [1]="minimum_endurance_charges_per_stackable_unique_jewel" } }, - [4188]={ + [4224]={ [1]={ [1]={ limit={ @@ -95418,7 +96243,7 @@ return { [1]="minimum_frenzy_charges_per_stackable_unique_jewel" } }, - [4189]={ + [4225]={ [1]={ [1]={ limit={ @@ -95434,7 +96259,7 @@ return { [1]="minimum_power_charges_per_stackable_unique_jewel" } }, - [4190]={ + [4226]={ [1]={ [1]={ limit={ @@ -95450,7 +96275,7 @@ return { [1]="minion_critical_strike_multiplier_+_per_stackable_unique_jewel" } }, - [4191]={ + [4227]={ [1]={ [1]={ limit={ @@ -95479,7 +96304,7 @@ return { [1]="damage_+%_per_abyss_jewel_type" } }, - [4192]={ + [4228]={ [1]={ [1]={ limit={ @@ -95495,7 +96320,7 @@ return { [1]="lightning_damage_%_taken_from_mana_before_life" } }, - [4193]={ + [4229]={ [1]={ [1]={ limit={ @@ -95511,7 +96336,7 @@ return { [1]="physical_damage_%_taken_from_mana_before_life" } }, - [4194]={ + [4230]={ [1]={ [1]={ limit={ @@ -95536,7 +96361,7 @@ return { [1]="recover_%_maximum_mana_when_enemy_shocked" } }, - [4195]={ + [4231]={ [1]={ [1]={ limit={ @@ -95565,7 +96390,7 @@ return { [1]="quantity_of_items_dropped_by_maimed_enemies_+%" } }, - [4196]={ + [4232]={ [1]={ [1]={ limit={ @@ -95594,7 +96419,7 @@ return { [1]="rarity_of_items_dropped_by_maimed_enemies_+%" } }, - [4197]={ + [4233]={ [1]={ [1]={ [1]={ @@ -95639,7 +96464,7 @@ return { [1]="damage_taken_+%_if_you_have_taken_a_savage_hit_recently" } }, - [4198]={ + [4234]={ [1]={ [1]={ limit={ @@ -95668,7 +96493,7 @@ return { [1]="stun_duration_on_self_+%" } }, - [4199]={ + [4235]={ [1]={ [1]={ limit={ @@ -95697,7 +96522,7 @@ return { [1]="melee_damage_+%_per_endurance_charge" } }, - [4200]={ + [4236]={ [1]={ [1]={ limit={ @@ -95713,7 +96538,7 @@ return { [1]="totems_resist_all_elements_+%_per_active_totem" } }, - [4201]={ + [4237]={ [1]={ [1]={ [1]={ @@ -95733,7 +96558,7 @@ return { [1]="gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit" } }, - [4202]={ + [4238]={ [1]={ [1]={ limit={ @@ -95749,7 +96574,7 @@ return { [1]="cannot_be_shocked_while_at_maximum_endurance_charges" } }, - [4203]={ + [4239]={ [1]={ [1]={ [1]={ @@ -95769,7 +96594,7 @@ return { [1]="movement_speed_+%_if_used_a_warcry_recently" } }, - [4204]={ + [4240]={ [1]={ [1]={ [1]={ @@ -95793,7 +96618,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_vs_poisoned_enemies" } }, - [4205]={ + [4241]={ [1]={ [1]={ [1]={ @@ -95817,7 +96642,7 @@ return { [1]="mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies" } }, - [4206]={ + [4242]={ [1]={ [1]={ limit={ @@ -95846,7 +96671,7 @@ return { [1]="totems_spells_cast_speed_+%_per_active_totem" } }, - [4207]={ + [4243]={ [1]={ [1]={ limit={ @@ -95875,7 +96700,7 @@ return { [1]="movement_skills_mana_cost_+%" } }, - [4208]={ + [4244]={ [1]={ [1]={ limit={ @@ -95891,7 +96716,7 @@ return { [1]="critical_strike_chance_+%_when_in_main_hand" } }, - [4209]={ + [4245]={ [1]={ [1]={ limit={ @@ -95907,7 +96732,7 @@ return { [1]="additional_block_chance_%_when_in_off_hand" } }, - [4210]={ + [4246]={ [1]={ [1]={ limit={ @@ -95923,7 +96748,7 @@ return { [1]="spirit_offering_physical_damage_%_to_add_as_chaos" } }, - [4211]={ + [4247]={ [1]={ [1]={ [1]={ @@ -95964,7 +96789,7 @@ return { [1]="damage_taken_+%_if_not_hit_recently_final" } }, - [4212]={ + [4248]={ [1]={ [1]={ [1]={ @@ -96001,7 +96826,7 @@ return { [1]="evasion_+%_if_hit_recently" } }, - [4213]={ + [4249]={ [1]={ [1]={ limit={ @@ -96017,7 +96842,7 @@ return { [1]="block_chance_%_vs_taunted_enemies" } }, - [4214]={ + [4250]={ [1]={ [1]={ limit={ @@ -96033,7 +96858,7 @@ return { [1]="minion_cold_damage_resistance_%" } }, - [4215]={ + [4251]={ [1]={ [1]={ limit={ @@ -96049,7 +96874,7 @@ return { [1]="minion_physical_damage_%_to_add_as_cold" } }, - [4216]={ + [4252]={ [1]={ [1]={ [1]={ @@ -96086,7 +96911,7 @@ return { [1]="armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently" } }, - [4217]={ + [4253]={ [1]={ [1]={ limit={ @@ -96115,7 +96940,7 @@ return { [1]="damage_+%_for_each_level_the_enemy_is_higher_than_you" } }, - [4218]={ + [4254]={ [1]={ [1]={ limit={ @@ -96144,7 +96969,7 @@ return { [1]="totems_attack_speed_+%_per_active_totem" } }, - [4219]={ + [4255]={ [1]={ [1]={ limit={ @@ -96169,7 +96994,7 @@ return { [1]="attacks_num_of_additional_chains_when_in_main_hand" } }, - [4220]={ + [4256]={ [1]={ [1]={ limit={ @@ -96194,7 +97019,7 @@ return { [1]="attacks_number_of_additional_projectiles" } }, - [4221]={ + [4257]={ [1]={ [1]={ limit={ @@ -96219,7 +97044,7 @@ return { [1]="attacks_number_of_additional_projectiles_when_in_off_hand" } }, - [4222]={ + [4258]={ [1]={ [1]={ limit={ @@ -96240,7 +97065,7 @@ return { [2]="counter_attacks_maximum_added_physical_damage" } }, - [4223]={ + [4259]={ [1]={ [1]={ limit={ @@ -96269,7 +97094,7 @@ return { [1]="golem_damage_+%_per_active_golem_type" } }, - [4224]={ + [4260]={ [1]={ [1]={ limit={ @@ -96298,7 +97123,7 @@ return { [1]="golem_damage_+%_per_active_golem" } }, - [4225]={ + [4261]={ [1]={ [1]={ [1]={ @@ -96318,7 +97143,7 @@ return { [1]="life_+%_with_no_corrupted_equipped_items" } }, - [4226]={ + [4262]={ [1]={ [1]={ [1]={ @@ -96342,7 +97167,7 @@ return { [1]="life_regeneration_per_minute_with_no_corrupted_equipped_items" } }, - [4227]={ + [4263]={ [1]={ [1]={ [1]={ @@ -96366,7 +97191,7 @@ return { [1]="energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [4228]={ + [4264]={ [1]={ [1]={ limit={ @@ -96382,7 +97207,7 @@ return { [1]="local_display_nearby_enemies_take_X_chaos_damage_per_minute" } }, - [4229]={ + [4265]={ [1]={ [1]={ limit={ @@ -96403,7 +97228,7 @@ return { [2]="counter_attacks_maximum_added_cold_damage" } }, - [4230]={ + [4266]={ [1]={ [1]={ [1]={ @@ -96440,7 +97265,7 @@ return { [1]="movement_speed_+%_if_pierced_recently" } }, - [4231]={ + [4267]={ [1]={ [1]={ [1]={ @@ -96460,7 +97285,7 @@ return { [1]="poison_cursed_enemies_on_hit" } }, - [4232]={ + [4268]={ [1]={ [1]={ [1]={ @@ -96493,7 +97318,7 @@ return { [1]="chance_to_poison_%_vs_cursed_enemies" } }, - [4233]={ + [4269]={ [1]={ [1]={ [1]={ @@ -96530,7 +97355,7 @@ return { [1]="item_found_rarity_+%_if_wearing_a_normal_item" } }, - [4234]={ + [4270]={ [1]={ [1]={ [1]={ @@ -96567,7 +97392,7 @@ return { [1]="item_found_quantity_+%_if_wearing_a_magic_item" } }, - [4235]={ + [4271]={ [1]={ [1]={ [1]={ @@ -96591,7 +97416,7 @@ return { [1]="gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster" } }, - [4236]={ + [4272]={ [1]={ [1]={ limit={ @@ -96607,7 +97432,7 @@ return { [1]="kill_enemy_on_hit_if_under_15%_life" } }, - [4237]={ + [4273]={ [1]={ [1]={ limit={ @@ -96623,7 +97448,7 @@ return { [1]="kill_enemy_on_hit_if_under_20%_life" } }, - [4238]={ + [4274]={ [1]={ [1]={ limit={ @@ -96639,7 +97464,7 @@ return { [1]="immune_to_bleeding" } }, - [4239]={ + [4275]={ [1]={ [1]={ limit={ @@ -96655,7 +97480,7 @@ return { [1]="base_cannot_gain_bleeding" } }, - [4240]={ + [4276]={ [1]={ [1]={ limit={ @@ -96671,7 +97496,7 @@ return { [1]="base_avoid_bleed_%" } }, - [4241]={ + [4277]={ [1]={ [1]={ limit={ @@ -96687,7 +97512,7 @@ return { [1]="immune_to_bleeding_while_leeching" } }, - [4242]={ + [4278]={ [1]={ [1]={ [1]={ @@ -96724,7 +97549,7 @@ return { [1]="damage_+%_if_enemy_killed_recently_final" } }, - [4243]={ + [4279]={ [1]={ [1]={ [1]={ @@ -96761,7 +97586,7 @@ return { [1]="skill_area_of_effect_+%_if_enemy_killed_recently" } }, - [4244]={ + [4280]={ [1]={ [1]={ limit={ @@ -96786,7 +97611,7 @@ return { [1]="max_charged_attack_stacks" } }, - [4245]={ + [4281]={ [1]={ [1]={ [1]={ @@ -96823,7 +97648,7 @@ return { [1]="skill_effect_duration_+%_if_killed_maimed_enemy_recently" } }, - [4246]={ + [4282]={ [1]={ [1]={ [1]={ @@ -96860,7 +97685,7 @@ return { [1]="damage_taken_+%_if_taunted_an_enemy_recently" } }, - [4247]={ + [4283]={ [1]={ [1]={ [1]={ @@ -96884,7 +97709,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently" } }, - [4248]={ + [4284]={ [1]={ [1]={ [1]={ @@ -96904,7 +97729,7 @@ return { [1]="immune_to_elemental_status_ailments_during_flask_effect" } }, - [4249]={ + [4285]={ [1]={ [1]={ limit={ @@ -96933,7 +97758,7 @@ return { [1]="elemental_damage_+%_during_flask_effect" } }, - [4250]={ + [4286]={ [1]={ [1]={ [1]={ @@ -96982,7 +97807,7 @@ return { [1]="chance_to_freeze_shock_ignite_%_during_flask_effect" } }, - [4251]={ + [4287]={ [1]={ [1]={ [1]={ @@ -97002,7 +97827,7 @@ return { [1]="es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground" } }, - [4252]={ + [4288]={ [1]={ [1]={ limit={ @@ -97031,7 +97856,7 @@ return { [1]="attack_and_cast_speed_+%_while_on_consecrated_ground" } }, - [4253]={ + [4289]={ [1]={ [1]={ limit={ @@ -97060,7 +97885,7 @@ return { [1]="mine_arming_speed_+%" } }, - [4254]={ + [4290]={ [1]={ [1]={ limit={ @@ -97076,7 +97901,7 @@ return { [1]="flasks_%_chance_to_not_consume_charges" } }, - [4255]={ + [4291]={ [1]={ [1]={ limit={ @@ -97105,7 +97930,7 @@ return { [1]="physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit" } }, - [4256]={ + [4292]={ [1]={ [1]={ limit={ @@ -97121,7 +97946,7 @@ return { [1]="your_consecrated_ground_grants_damage_+%" } }, - [4257]={ + [4293]={ [1]={ [1]={ [1]={ @@ -97158,7 +97983,7 @@ return { [1]="attack_speed_+%_if_enemy_not_killed_recently" } }, - [4258]={ + [4294]={ [1]={ [1]={ limit={ @@ -97187,7 +98012,7 @@ return { [1]="physical_damage_+%_while_at_maximum_frenzy_charges_final" } }, - [4259]={ + [4295]={ [1]={ [1]={ limit={ @@ -97216,7 +98041,7 @@ return { [1]="physical_damage_taken_+%_while_at_maximum_endurance_charges" } }, - [4260]={ + [4296]={ [1]={ [1]={ [1]={ @@ -97240,7 +98065,7 @@ return { [1]="mine_damage_leeched_as_life_to_you_permyriad" } }, - [4261]={ + [4297]={ [1]={ [1]={ [1]={ @@ -97264,7 +98089,7 @@ return { [1]="totem_damage_leeched_as_life_to_you_permyriad" } }, - [4262]={ + [4298]={ [1]={ [1]={ limit={ @@ -97293,7 +98118,7 @@ return { [1]="attack_speed_+%_per_200_accuracy_rating" } }, - [4263]={ + [4299]={ [1]={ [1]={ limit={ @@ -97309,7 +98134,7 @@ return { [1]="gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance" } }, - [4264]={ + [4300]={ [1]={ [1]={ limit={ @@ -97338,7 +98163,7 @@ return { [1]="elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds" } }, - [4265]={ + [4301]={ [1]={ [1]={ limit={ @@ -97354,7 +98179,7 @@ return { [1]="physical_damage_%_to_add_as_chaos_vs_bleeding_enemies" } }, - [4266]={ + [4302]={ [1]={ [1]={ [1]={ @@ -97446,7 +98271,7 @@ return { [2]="phasing_on_trap_triggered_by_an_enemy_ms" } }, - [4267]={ + [4303]={ [1]={ [1]={ limit={ @@ -97462,7 +98287,7 @@ return { [1]="gain_x_life_on_trap_triggered_by_an_enemy" } }, - [4268]={ + [4304]={ [1]={ [1]={ limit={ @@ -97478,7 +98303,7 @@ return { [1]="gain_x_es_on_trap_triggered_by_an_enemy" } }, - [4269]={ + [4305]={ [1]={ [1]={ limit={ @@ -97494,7 +98319,7 @@ return { [1]="attack_skills_additional_ballista_totems_allowed" } }, - [4270]={ + [4306]={ [1]={ [1]={ limit={ @@ -97510,7 +98335,7 @@ return { [1]="attack_skills_additional_totems_allowed" } }, - [4271]={ + [4307]={ [1]={ [1]={ limit={ @@ -97539,7 +98364,7 @@ return { [1]="poison_from_critical_strikes_damage_+%_final" } }, - [4272]={ + [4308]={ [1]={ [1]={ limit={ @@ -97568,7 +98393,7 @@ return { [1]="bleed_damage_+%_vs_maimed_enemies_final" } }, - [4273]={ + [4309]={ [1]={ [1]={ [1]={ @@ -97605,7 +98430,7 @@ return { [1]="flask_charges_+%_from_enemies_with_status_ailments" } }, - [4274]={ + [4310]={ [1]={ [1]={ limit={ @@ -97634,7 +98459,7 @@ return { [1]="armour_and_evasion_+%_while_fortified" } }, - [4275]={ + [4311]={ [1]={ [1]={ limit={ @@ -97663,7 +98488,7 @@ return { [1]="melee_damage_+%_while_fortified" } }, - [4276]={ + [4312]={ [1]={ [1]={ limit={ @@ -97688,7 +98513,7 @@ return { [1]="desecrate_creates_X_additional_corpses" } }, - [4277]={ + [4313]={ [1]={ [1]={ [1]={ @@ -97725,7 +98550,7 @@ return { [1]="damage_+%_if_you_have_consumed_a_corpse_recently" } }, - [4278]={ + [4314]={ [1]={ [1]={ [1]={ @@ -97762,7 +98587,7 @@ return { [1]="attack_and_cast_speed_+%_per_corpse_consumed_recently" } }, - [4279]={ + [4315]={ [1]={ [1]={ [1]={ @@ -97782,7 +98607,7 @@ return { [1]="permanently_intimidate_enemies_you_hit_on_full_life" } }, - [4280]={ + [4316]={ [1]={ [1]={ [1]={ @@ -97827,7 +98652,7 @@ return { [1]="taunted_enemies_damage_+%_final_vs_non_taunt_target" } }, - [4281]={ + [4317]={ [1]={ [1]={ [1]={ @@ -97855,7 +98680,7 @@ return { [1]="gain_life_leech_on_kill_permyriad" } }, - [4282]={ + [4318]={ [1]={ [1]={ [1]={ @@ -97875,7 +98700,7 @@ return { [1]="poison_on_melee_hit" } }, - [4283]={ + [4319]={ [1]={ [1]={ [1]={ @@ -97908,7 +98733,7 @@ return { [1]="chance_to_poison_on_melee_hit_%" } }, - [4284]={ + [4320]={ [1]={ [1]={ [1]={ @@ -97932,7 +98757,7 @@ return { [1]="life_leech_permyriad_vs_cursed_enemies" } }, - [4285]={ + [4321]={ [1]={ [1]={ [1]={ @@ -97969,7 +98794,7 @@ return { [1]="movement_speed_+%_if_enemy_killed_recently" } }, - [4286]={ + [4322]={ [1]={ [1]={ limit={ @@ -97985,7 +98810,7 @@ return { [1]="weapon_physical_damage_%_to_add_as_each_element" } }, - [4287]={ + [4323]={ [1]={ [1]={ [1]={ @@ -98005,7 +98830,7 @@ return { [1]="physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems" } }, - [4288]={ + [4324]={ [1]={ [1]={ limit={ @@ -98021,7 +98846,7 @@ return { [1]="global_critical_strike_multiplier_while_dual_wielding_+" } }, - [4289]={ + [4325]={ [1]={ [1]={ limit={ @@ -98050,7 +98875,7 @@ return { [1]="global_critical_strike_chance_while_dual_wielding_+%" } }, - [4290]={ + [4326]={ [1]={ [1]={ limit={ @@ -98066,7 +98891,7 @@ return { [1]="base_physical_damage_reduction_and_evasion_rating" } }, - [4291]={ + [4327]={ [1]={ [1]={ limit={ @@ -98082,7 +98907,7 @@ return { [1]="elemental_penetration_%_during_flask_effect" } }, - [4292]={ + [4328]={ [1]={ [1]={ limit={ @@ -98098,7 +98923,7 @@ return { [1]="additional_physical_damage_reduction_%_during_flask_effect" } }, - [4293]={ + [4329]={ [1]={ [1]={ limit={ @@ -98131,7 +98956,7 @@ return { [1]="reflect_damage_taken_+%" } }, - [4294]={ + [4330]={ [1]={ [1]={ limit={ @@ -98147,7 +98972,7 @@ return { [1]="power_charge_on_block_%_chance" } }, - [4295]={ + [4331]={ [1]={ [1]={ [1]={ @@ -98188,7 +99013,7 @@ return { [1]="nearby_enemies_chilled_on_block" } }, - [4296]={ + [4332]={ [1]={ [1]={ limit={ @@ -98209,7 +99034,7 @@ return { [2]="from_self_maximum_added_cold_damage_taken_per_frenzy_charge" } }, - [4297]={ + [4333]={ [1]={ [1]={ limit={ @@ -98230,7 +99055,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [4298]={ + [4334]={ [1]={ [1]={ limit={ @@ -98259,7 +99084,7 @@ return { [1]="attack_and_cast_speed_+%_during_flask_effect" } }, - [4299]={ + [4335]={ [1]={ [1]={ [1]={ @@ -98284,7 +99109,7 @@ return { [2]="maximum_added_fire_damage_if_blocked_recently" } }, - [4300]={ + [4336]={ [1]={ [1]={ [1]={ @@ -98304,7 +99129,7 @@ return { [1]="stun_threshold_based_on_energy_shield_instead_of_life" } }, - [4301]={ + [4337]={ [1]={ [1]={ limit={ @@ -98320,7 +99145,7 @@ return { [1]="cannot_leech_life_from_critical_strikes" } }, - [4302]={ + [4338]={ [1]={ [1]={ [1]={ @@ -98340,7 +99165,7 @@ return { [1]="%_chance_to_blind_on_critical_strike" } }, - [4303]={ + [4339]={ [1]={ [1]={ [1]={ @@ -98360,7 +99185,7 @@ return { [1]="bleed_on_melee_critical_strike" } }, - [4304]={ + [4340]={ [1]={ [1]={ limit={ @@ -98389,7 +99214,7 @@ return { [1]="taunted_enemies_damage_taken_+%" } }, - [4305]={ + [4341]={ [1]={ [1]={ [1]={ @@ -98422,7 +99247,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [4306]={ + [4342]={ [1]={ [1]={ [1]={ @@ -98455,7 +99280,7 @@ return { [1]="gain_elusive_on_kill_chance_%" } }, - [4307]={ + [4343]={ [1]={ [1]={ limit={ @@ -98471,7 +99296,7 @@ return { [1]="map_packs_have_pop_up_traps" } }, - [4308]={ + [4344]={ [1]={ [1]={ [1]={ @@ -98491,7 +99316,7 @@ return { [1]="gain_defiance_when_lose_life_to_hit_once_per_x_ms" } }, - [4309]={ + [4345]={ [1]={ [1]={ limit={ @@ -98520,7 +99345,7 @@ return { [1]="armour_+%_per_defiance" } }, - [4310]={ + [4346]={ [1]={ [1]={ limit={ @@ -98549,7 +99374,7 @@ return { [1]="maximum_total_life_recovery_per_second_from_leech_+%_while_have_defiance" } }, - [4311]={ + [4347]={ [1]={ [1]={ limit={ @@ -98565,7 +99390,7 @@ return { [1]="lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance" } }, - [4312]={ + [4348]={ [1]={ [1]={ limit={ @@ -98581,7 +99406,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes" } }, - [4313]={ + [4349]={ [1]={ [1]={ limit={ @@ -98614,7 +99439,7 @@ return { [1]="enemies_you_shock_cast_speed_+%" } }, - [4314]={ + [4350]={ [1]={ [1]={ limit={ @@ -98647,7 +99472,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [4315]={ + [4351]={ [1]={ [1]={ [1]={ @@ -98667,7 +99492,7 @@ return { [1]="map_normal_monster_life_regeneration_rate_per_minute_%" } }, - [4316]={ + [4352]={ [1]={ [1]={ [1]={ @@ -98687,7 +99512,7 @@ return { [1]="map_magic_monster_life_regeneration_rate_per_minute_%" } }, - [4317]={ + [4353]={ [1]={ [1]={ [1]={ @@ -98707,7 +99532,7 @@ return { [1]="map_rare_monster_life_regeneration_rate_per_minute_%" } }, - [4318]={ + [4354]={ [1]={ [1]={ limit={ @@ -98736,7 +99561,7 @@ return { [1]="siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem" } }, - [4319]={ + [4355]={ [1]={ [1]={ limit={ @@ -98761,7 +99586,7 @@ return { [1]="memory_line_number_of_shrines" } }, - [4320]={ + [4356]={ [1]={ [1]={ limit={ @@ -98786,7 +99611,7 @@ return { [1]="memory_line_number_of_pantheon_shrines" } }, - [4321]={ + [4357]={ [1]={ [1]={ limit={ @@ -98815,7 +99640,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [4322]={ + [4358]={ [1]={ [1]={ limit={ @@ -98844,7 +99669,7 @@ return { [1]="map_incursion_memory_line_monster_life_+%_final" } }, - [4323]={ + [4359]={ [1]={ [1]={ limit={ @@ -98873,7 +99698,23 @@ return { [1]="map_incursion_memory_line_monster_damage_+%_final" } }, - [4324]={ + [4360]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Physical Damage per socketed Murderous Eye Jewel" + } + }, + stats={ + [1]="local_physical_damage_+%_per_socketed_murderous_jewel" + } + }, + [4361]={ [1]={ [1]={ [1]={ @@ -98910,7 +99751,7 @@ return { [1]="burning_damage_+%_if_ignited_an_enemy_recently" } }, - [4325]={ + [4362]={ [1]={ [1]={ limit={ @@ -98926,7 +99767,7 @@ return { [1]="recover_%_maximum_life_on_enemy_ignited" } }, - [4326]={ + [4363]={ [1]={ [1]={ limit={ @@ -98955,7 +99796,7 @@ return { [1]="melee_physical_damage_+%_vs_ignited_enemies" } }, - [4327]={ + [4364]={ [1]={ [1]={ limit={ @@ -98984,7 +99825,7 @@ return { [1]="critical_strike_chance_+%_for_forking_arrows" } }, - [4328]={ + [4365]={ [1]={ [1]={ [1]={ @@ -99004,7 +99845,7 @@ return { [1]="arrows_that_pierce_cause_bleeding" } }, - [4329]={ + [4366]={ [1]={ [1]={ [1]={ @@ -99024,7 +99865,7 @@ return { [1]="arrows_that_pierce_chance_to_bleed_25%" } }, - [4330]={ + [4367]={ [1]={ [1]={ limit={ @@ -99040,7 +99881,7 @@ return { [1]="arrows_always_pierce_after_chaining" } }, - [4331]={ + [4368]={ [1]={ [1]={ limit={ @@ -99065,7 +99906,36 @@ return { [1]="spells_number_of_additional_projectiles" } }, - [4332]={ + [4369]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Projectile Attack Damage per 400 Accuracy Rating" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Projectile Attack Damage per 400 Accuracy Rating" + } + }, + stats={ + [1]="projectile_attack_damage_+%_per_400_accuracy" + } + }, + [4370]={ [1]={ [1]={ limit={ @@ -99094,7 +99964,7 @@ return { [1]="projectile_attack_damage_+%_per_200_accuracy" } }, - [4333]={ + [4371]={ [1]={ [1]={ [1]={ @@ -99136,7 +100006,7 @@ return { [2]="essence_buff_ground_fire_duration_ms" } }, - [4334]={ + [4372]={ [1]={ [1]={ [1]={ @@ -99160,7 +100030,7 @@ return { [1]="scorched_earth_ground_scorch_duration_ms" } }, - [4335]={ + [4373]={ [1]={ [1]={ [1]={ @@ -99184,7 +100054,7 @@ return { [1]="wake_of_destruction_ground_lightning_duration_ms" } }, - [4336]={ + [4374]={ [1]={ [1]={ limit={ @@ -99217,7 +100087,7 @@ return { [1]="essence_display_elemental_damage_taken_while_not_moving_+%" } }, - [4337]={ + [4375]={ [1]={ [1]={ limit={ @@ -99242,7 +100112,7 @@ return { [1]="physical_damage_reduction_rating_%_while_not_moving" } }, - [4338]={ + [4376]={ [1]={ [1]={ limit={ @@ -99258,7 +100128,7 @@ return { [1]="armour_while_stationary" } }, - [4339]={ + [4377]={ [1]={ [1]={ limit={ @@ -99287,7 +100157,7 @@ return { [1]="physical_damage_taken_+%_while_moving" } }, - [4340]={ + [4378]={ [1]={ [1]={ limit={ @@ -99312,7 +100182,7 @@ return { [1]="mana_regeneration_rate_+%_while_stationary" } }, - [4341]={ + [4379]={ [1]={ [1]={ limit={ @@ -99341,7 +100211,7 @@ return { [1]="projectile_attack_skill_critical_strike_chance_+%" } }, - [4342]={ + [4380]={ [1]={ [1]={ [1]={ @@ -99374,7 +100244,7 @@ return { [1]="projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion" } }, - [4343]={ + [4381]={ [1]={ [1]={ [1]={ @@ -99407,7 +100277,7 @@ return { [1]="projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion" } }, - [4344]={ + [4382]={ [1]={ [1]={ [1]={ @@ -99440,7 +100310,7 @@ return { [1]="projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion" } }, - [4345]={ + [4383]={ [1]={ [1]={ limit={ @@ -99461,7 +100331,7 @@ return { [2]="attack_maximum_added_physical_damage_if_you_have_beast_minion" } }, - [4346]={ + [4384]={ [1]={ [1]={ limit={ @@ -99482,7 +100352,7 @@ return { [2]="attack_maximum_added_chaos_damage_if_you_have_beast_minion" } }, - [4347]={ + [4385]={ [1]={ [1]={ limit={ @@ -99498,7 +100368,7 @@ return { [1]="attack_and_movement_speed_+%_if_you_have_beast_minion" } }, - [4348]={ + [4386]={ [1]={ [1]={ limit={ @@ -99527,7 +100397,7 @@ return { [1]="attack_damage_+%_if_other_ring_is_shaper_item" } }, - [4349]={ + [4387]={ [1]={ [1]={ limit={ @@ -99556,7 +100426,7 @@ return { [1]="spell_damage_+%_if_other_ring_is_elder_item" } }, - [4350]={ + [4388]={ [1]={ [1]={ limit={ @@ -99572,7 +100442,7 @@ return { [1]="cannot_be_stunned_by_spells_if_other_ring_is_shaper_item" } }, - [4351]={ + [4389]={ [1]={ [1]={ limit={ @@ -99588,7 +100458,7 @@ return { [1]="cannot_be_stunned_by_attacks_if_other_ring_is_elder_item" } }, - [4352]={ + [4390]={ [1]={ [1]={ limit={ @@ -99604,7 +100474,7 @@ return { [1]="maximum_life_per_equipped_elder_item" } }, - [4353]={ + [4391]={ [1]={ [1]={ [1]={ @@ -99641,7 +100511,7 @@ return { [1]="ailment_damage_+%_per_equipped_elder_item" } }, - [4354]={ + [4392]={ [1]={ [1]={ limit={ @@ -99657,7 +100527,7 @@ return { [1]="ailment_dot_multiplier_+_per_equipped_elder_item" } }, - [4355]={ + [4393]={ [1]={ [1]={ [1]={ @@ -99694,7 +100564,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge" } }, - [4356]={ + [4394]={ [1]={ [1]={ [1]={ @@ -99731,7 +100601,7 @@ return { [1]="non_damaging_ailment_effect_+%_per_equipped_elder_item" } }, - [4357]={ + [4395]={ [1]={ [1]={ limit={ @@ -99747,7 +100617,7 @@ return { [1]="skill_mana_cost_+_for_each_equipped_corrupted_item" } }, - [4358]={ + [4396]={ [1]={ [1]={ limit={ @@ -99763,7 +100633,7 @@ return { [1]="elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped" } }, - [4359]={ + [4397]={ [1]={ [1]={ limit={ @@ -99779,7 +100649,7 @@ return { [1]="maximum_siphoning_charges_per_elder_or_shaper_item_equipped" } }, - [4360]={ + [4398]={ [1]={ [1]={ limit={ @@ -99804,7 +100674,7 @@ return { [1]="gain_siphoning_charge_on_skill_use_%_chance" } }, - [4361]={ + [4399]={ [1]={ [1]={ limit={ @@ -99825,7 +100695,7 @@ return { [2]="attack_and_spell_maximum_added_physical_damage_per_siphoning_charge" } }, - [4362]={ + [4400]={ [1]={ [1]={ limit={ @@ -99841,7 +100711,7 @@ return { [1]="non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge" } }, - [4363]={ + [4401]={ [1]={ [1]={ limit={ @@ -99857,7 +100727,7 @@ return { [1]="additional_physical_damage_reduction_against_hits_%_per_siphoning_charge" } }, - [4364]={ + [4402]={ [1]={ [1]={ [1]={ @@ -99877,7 +100747,7 @@ return { [1]="life_leech_from_any_damage_permyriad_per_siphoning_charge" } }, - [4365]={ + [4403]={ [1]={ [1]={ [1]={ @@ -99901,7 +100771,7 @@ return { [1]="physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently" } }, - [4366]={ + [4404]={ [1]={ [1]={ limit={ @@ -99917,7 +100787,7 @@ return { [1]="recover_%_maximum_life_on_flask_use" } }, - [4367]={ + [4405]={ [1]={ [1]={ limit={ @@ -99933,7 +100803,7 @@ return { [1]="recover_%_maximum_life_on_mana_flask_use" } }, - [4368]={ + [4406]={ [1]={ [1]={ limit={ @@ -99949,7 +100819,7 @@ return { [1]="non_instant_mana_recovery_from_flasks_also_recovers_life" } }, - [4369]={ + [4407]={ [1]={ [1]={ [1]={ @@ -99986,7 +100856,7 @@ return { [1]="mana_cost_+%_per_200_mana_spent_recently" } }, - [4370]={ + [4408]={ [1]={ [1]={ [1]={ @@ -100023,7 +100893,7 @@ return { [1]="spell_damage_+%_per_200_mana_spent_recently" } }, - [4371]={ + [4409]={ [1]={ [1]={ limit={ @@ -100039,7 +100909,7 @@ return { [1]="cannot_be_stunned_if_you_have_10_or_more_crab_charges" } }, - [4372]={ + [4410]={ [1]={ [1]={ [1]={ @@ -100059,7 +100929,7 @@ return { [1]="cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently" } }, - [4373]={ + [4411]={ [1]={ [1]={ limit={ @@ -100075,7 +100945,7 @@ return { [1]="crab_aspect_crab_barrier_max_+" } }, - [4374]={ + [4412]={ [1]={ [1]={ limit={ @@ -100091,7 +100961,7 @@ return { [1]="damage_+%_per_crab_charge" } }, - [4375]={ + [4413]={ [1]={ [1]={ limit={ @@ -100107,7 +100977,7 @@ return { [1]="number_of_crab_charges_lost_when_hit" } }, - [4376]={ + [4414]={ [1]={ [1]={ limit={ @@ -100123,7 +100993,7 @@ return { [1]="additional_block_%_while_you_have_at_least_5_crab_charges" } }, - [4377]={ + [4415]={ [1]={ [1]={ limit={ @@ -100139,7 +101009,7 @@ return { [1]="additional_block_%_while_you_have_at_least_10_crab_charges" } }, - [4378]={ + [4416]={ [1]={ [1]={ limit={ @@ -100155,7 +101025,7 @@ return { [1]="chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%" } }, - [4379]={ + [4417]={ [1]={ [1]={ limit={ @@ -100171,7 +101041,7 @@ return { [1]="maximum_blood_scythe_charges" } }, - [4380]={ + [4418]={ [1]={ [1]={ limit={ @@ -100187,7 +101057,7 @@ return { [1]="maximum_void_arrows" } }, - [4381]={ + [4419]={ [1]={ [1]={ limit={ @@ -100203,7 +101073,7 @@ return { [1]="%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage" } }, - [4382]={ + [4420]={ [1]={ [1]={ limit={ @@ -100219,7 +101089,7 @@ return { [1]="%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage" } }, - [4383]={ + [4421]={ [1]={ [1]={ limit={ @@ -100235,7 +101105,7 @@ return { [1]="%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage" } }, - [4384]={ + [4422]={ [1]={ [1]={ [1]={ @@ -100255,7 +101125,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect" } }, - [4385]={ + [4423]={ [1]={ [1]={ limit={ @@ -100271,7 +101141,7 @@ return { [1]="%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth" } }, - [4386]={ + [4424]={ [1]={ [1]={ limit={ @@ -100287,7 +101157,7 @@ return { [1]="resist_all_elements_%_with_200_or_more_strength" } }, - [4387]={ + [4425]={ [1]={ [1]={ limit={ @@ -100316,7 +101186,7 @@ return { [1]="projectile_attack_damage_+%_with_at_least_200_dex" } }, - [4388]={ + [4426]={ [1]={ [1]={ limit={ @@ -100345,7 +101215,7 @@ return { [1]="critical_strike_chance_+%_with_at_least_200_int" } }, - [4389]={ + [4427]={ [1]={ [1]={ limit={ @@ -100361,7 +101231,7 @@ return { [1]="local_physical_damage_%_to_convert_to_a_random_element" } }, - [4390]={ + [4428]={ [1]={ [1]={ limit={ @@ -100377,7 +101247,7 @@ return { [1]="local_physical_damage_%_to_gain_as_cold_or_lightning" } }, - [4391]={ + [4429]={ [1]={ [1]={ [1]={ @@ -100405,7 +101275,7 @@ return { [1]="local_hits_always_inflict_elemental_ailments" } }, - [4392]={ + [4430]={ [1]={ [1]={ limit={ @@ -100434,7 +101304,7 @@ return { [1]="local_hit_damage_+%_vs_ignited_enemies" } }, - [4393]={ + [4431]={ [1]={ [1]={ limit={ @@ -100463,7 +101333,7 @@ return { [1]="local_hit_damage_+%_vs_frozen_enemies" } }, - [4394]={ + [4432]={ [1]={ [1]={ limit={ @@ -100492,7 +101362,7 @@ return { [1]="local_hit_damage_+%_vs_shocked_enemies" } }, - [4395]={ + [4433]={ [1]={ [1]={ [1]={ @@ -100512,7 +101382,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield" } }, - [4396]={ + [4434]={ [1]={ [1]={ [1]={ @@ -100532,7 +101402,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield" } }, - [4397]={ + [4435]={ [1]={ [1]={ [1]={ @@ -100552,7 +101422,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield" } }, - [4398]={ + [4436]={ [1]={ [1]={ limit={ @@ -100581,7 +101451,7 @@ return { [1]="area_of_effect_+%_per_25_rampage_stacks" } }, - [4399]={ + [4437]={ [1]={ [1]={ limit={ @@ -100597,7 +101467,7 @@ return { [1]="add_frenzy_charge_every_50_rampage_stacks" } }, - [4400]={ + [4438]={ [1]={ [1]={ [1]={ @@ -100617,7 +101487,7 @@ return { [1]="life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance" } }, - [4401]={ + [4439]={ [1]={ [1]={ limit={ @@ -100633,7 +101503,7 @@ return { [1]="maximum_energy_shield_+_per_5_armour_on_shield" } }, - [4402]={ + [4440]={ [1]={ [1]={ limit={ @@ -100649,7 +101519,7 @@ return { [1]="physical_damage_reduction_rating_per_5_evasion_on_shield" } }, - [4403]={ + [4441]={ [1]={ [1]={ limit={ @@ -100665,7 +101535,7 @@ return { [1]="evasion_rating_+_per_5_maximum_energy_shield_on_shield" } }, - [4404]={ + [4442]={ [1]={ [1]={ limit={ @@ -100681,7 +101551,7 @@ return { [1]="maximum_spirit_charges_per_abyss_jewel_equipped" } }, - [4405]={ + [4443]={ [1]={ [1]={ limit={ @@ -100710,7 +101580,7 @@ return { [1]="travel_skill_cooldown_speed_+%" } }, - [4406]={ + [4444]={ [1]={ [1]={ limit={ @@ -100739,7 +101609,7 @@ return { [1]="gain_spirit_charge_every_x_ms" } }, - [4407]={ + [4445]={ [1]={ [1]={ limit={ @@ -100764,7 +101634,7 @@ return { [1]="gain_spirit_charge_on_kill_%_chance" } }, - [4408]={ + [4446]={ [1]={ [1]={ [1]={ @@ -100784,7 +101654,7 @@ return { [1]="lose_spirit_charges_on_savage_hit_taken" } }, - [4409]={ + [4447]={ [1]={ [1]={ limit={ @@ -100800,7 +101670,7 @@ return { [1]="gain_%_life_when_spirit_charge_expires_or_consumed" } }, - [4410]={ + [4448]={ [1]={ [1]={ limit={ @@ -100816,7 +101686,7 @@ return { [1]="gain_%_es_when_spirit_charge_expires_or_consumed" } }, - [4411]={ + [4449]={ [1]={ [1]={ limit={ @@ -100832,7 +101702,7 @@ return { [1]="maximum_divine_charges" } }, - [4412]={ + [4450]={ [1]={ [1]={ limit={ @@ -100857,7 +101727,7 @@ return { [1]="gain_divine_charge_on_hit_%" } }, - [4413]={ + [4451]={ [1]={ [1]={ limit={ @@ -100886,7 +101756,7 @@ return { [1]="elemental_damage_+%_per_divine_charge" } }, - [4414]={ + [4452]={ [1]={ [1]={ [1]={ @@ -100906,7 +101776,7 @@ return { [1]="gain_divinity_ms_when_reaching_maximum_divine_charges" } }, - [4415]={ + [4453]={ [1]={ [1]={ limit={ @@ -100922,7 +101792,7 @@ return { [1]="base_max_fortification_per_endurance_charge" } }, - [4416]={ + [4454]={ [1]={ [1]={ limit={ @@ -100951,7 +101821,7 @@ return { [1]="travel_skills_cooldown_speed_+%_per_frenzy_charge" } }, - [4417]={ + [4455]={ [1]={ [1]={ [1]={ @@ -100988,7 +101858,7 @@ return { [1]="elusive_effect_on_self_+%_per_power_charge" } }, - [4418]={ + [4456]={ [1]={ [1]={ limit={ @@ -101013,7 +101883,7 @@ return { [1]="lose_a_frenzy_charge_on_travel_skill_use_%_chance" } }, - [4419]={ + [4457]={ [1]={ [1]={ limit={ @@ -101038,7 +101908,7 @@ return { [1]="lose_an_endurance_charge_on_fortify_gain_%_chance" } }, - [4420]={ + [4458]={ [1]={ [1]={ limit={ @@ -101063,7 +101933,7 @@ return { [1]="lose_a_power_charge_when_you_gain_elusive_%_chance" } }, - [4421]={ + [4459]={ [1]={ [1]={ [1]={ @@ -101096,7 +101966,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [4422]={ + [4460]={ [1]={ [1]={ limit={ @@ -101125,7 +101995,7 @@ return { [1]="enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits" } }, - [4423]={ + [4461]={ [1]={ [1]={ limit={ @@ -101141,7 +102011,7 @@ return { [1]="local_display_gain_fragile_growth_each_second" } }, - [4424]={ + [4462]={ [1]={ [1]={ limit={ @@ -101157,7 +102027,7 @@ return { [1]="base_maximum_fragile_regrowth" } }, - [4425]={ + [4463]={ [1]={ [1]={ [1]={ @@ -101177,7 +102047,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_fragile_regrowth" } }, - [4426]={ + [4464]={ [1]={ [1]={ limit={ @@ -101193,7 +102063,7 @@ return { [1]="lose_all_fragile_regrowth_when_hit" } }, - [4427]={ + [4465]={ [1]={ [1]={ limit={ @@ -101209,7 +102079,7 @@ return { [1]="minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance" } }, - [4428]={ + [4466]={ [1]={ [1]={ limit={ @@ -101225,7 +102095,7 @@ return { [1]="minion_chaos_damage_does_not_bypass_energy_shield" } }, - [4429]={ + [4467]={ [1]={ [1]={ limit={ @@ -101254,7 +102124,7 @@ return { [1]="minion_energy_shield_delay_-%" } }, - [4430]={ + [4468]={ [1]={ [1]={ limit={ @@ -101270,7 +102140,7 @@ return { [1]="minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield" } }, - [4431]={ + [4469]={ [1]={ [1]={ limit={ @@ -101286,7 +102156,7 @@ return { [1]="arrows_from_first_firing_point_always_pierce" } }, - [4432]={ + [4470]={ [1]={ [1]={ limit={ @@ -101302,7 +102172,7 @@ return { [1]="arrows_from_second_firing_point_fork" } }, - [4433]={ + [4471]={ [1]={ [1]={ limit={ @@ -101318,7 +102188,7 @@ return { [1]="arrows_from_third_firing_point_return" } }, - [4434]={ + [4472]={ [1]={ [1]={ limit={ @@ -101343,7 +102213,7 @@ return { [1]="arrows_from_fourth_firing_point_additional_chains" } }, - [4435]={ + [4473]={ [1]={ [1]={ [1]={ @@ -101376,7 +102246,7 @@ return { [1]="local_withered_on_hit_for_2_seconds_%_chance" } }, - [4436]={ + [4474]={ [1]={ [1]={ limit={ @@ -101392,7 +102262,7 @@ return { [1]="summoned_skeleton_warriors_get_weapon_stats_in_main_hand" } }, - [4437]={ + [4475]={ [1]={ [1]={ [1]={ @@ -101412,7 +102282,7 @@ return { [1]="local_grant_skeleton_warriors_triple_damage_on_hit" } }, - [4438]={ + [4476]={ [1]={ [1]={ limit={ @@ -101428,7 +102298,7 @@ return { [1]="mirage_archers_do_not_attach" } }, - [4439]={ + [4477]={ [1]={ [1]={ limit={ @@ -101444,7 +102314,7 @@ return { [1]="additional_max_mirage_archers" } }, - [4440]={ + [4478]={ [1]={ [1]={ limit={ @@ -101460,7 +102330,7 @@ return { [1]="cannot_summon_mirage_archer_if_near_mirage_archer_radius" } }, - [4441]={ + [4479]={ [1]={ [1]={ limit={ @@ -101489,7 +102359,7 @@ return { [1]="damage_+%_per_fire_adaptation" } }, - [4442]={ + [4480]={ [1]={ [1]={ limit={ @@ -101518,7 +102388,7 @@ return { [1]="attack_and_cast_speed_+%_per_cold_adaptation" } }, - [4443]={ + [4481]={ [1]={ [1]={ limit={ @@ -101547,7 +102417,7 @@ return { [1]="critical_strike_chance_+%_per_lightning_adaptation" } }, - [4444]={ + [4482]={ [1]={ [1]={ limit={ @@ -101563,7 +102433,7 @@ return { [1]="magic_utility_flasks_cannot_be_used" } }, - [4445]={ + [4483]={ [1]={ [1]={ limit={ @@ -101588,7 +102458,7 @@ return { [1]="num_magic_utility_flasks_always_apply" } }, - [4446]={ + [4484]={ [1]={ [1]={ limit={ @@ -101613,7 +102483,7 @@ return { [1]="num_magic_utility_flasks_always_apply_rightmost" } }, - [4447]={ + [4485]={ [1]={ [1]={ limit={ @@ -101629,7 +102499,7 @@ return { [1]="magic_utility_flasks_cannot_be_removed" } }, - [4448]={ + [4486]={ [1]={ [1]={ [1]={ @@ -101662,7 +102532,7 @@ return { [1]="gain_x_grasping_vines_when_you_take_a_critical_strike" } }, - [4449]={ + [4487]={ [1]={ [1]={ limit={ @@ -101691,7 +102561,7 @@ return { [1]="local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms" } }, - [4450]={ + [4488]={ [1]={ [1]={ [1]={ @@ -101724,7 +102594,7 @@ return { [1]="unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines" } }, - [4451]={ + [4489]={ [1]={ [1]={ limit={ @@ -101753,7 +102623,7 @@ return { [1]="extra_damage_taken_from_crit_+%_from_cursed_enemy" } }, - [4452]={ + [4490]={ [1]={ [1]={ limit={ @@ -101782,7 +102652,7 @@ return { [1]="extra_damage_taken_from_crit_+%_from_poisoned_enemy" } }, - [4453]={ + [4491]={ [1]={ [1]={ limit={ @@ -101807,7 +102677,7 @@ return { [1]="pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask" } }, - [4454]={ + [4492]={ [1]={ [1]={ limit={ @@ -101836,7 +102706,7 @@ return { [1]="pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask" } }, - [4455]={ + [4493]={ [1]={ [1]={ limit={ @@ -101852,7 +102722,7 @@ return { [1]="pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask" } }, - [4456]={ + [4494]={ [1]={ [1]={ limit={ @@ -101868,7 +102738,7 @@ return { [1]="pathfinder_skills_physical_damage_%_to_add_as_chaos_if_charges_consumed_from_amethyst_flask" } }, - [4457]={ + [4495]={ [1]={ [1]={ limit={ @@ -101884,7 +102754,7 @@ return { [1]="maximum_life_+_per_empty_red_socket" } }, - [4458]={ + [4496]={ [1]={ [1]={ limit={ @@ -101900,7 +102770,7 @@ return { [1]="accuracy_rating_+_per_empty_green_socket" } }, - [4459]={ + [4497]={ [1]={ [1]={ limit={ @@ -101916,7 +102786,7 @@ return { [1]="maximum_mana_+_per_empty_blue_socket" } }, - [4460]={ + [4498]={ [1]={ [1]={ limit={ @@ -101932,7 +102802,7 @@ return { [1]="elemental_resistance_%_per_empty_white_socket" } }, - [4461]={ + [4499]={ [1]={ [1]={ limit={ @@ -101948,7 +102818,7 @@ return { [1]="display_ailment_bearer_charge_interval" } }, - [4462]={ + [4500]={ [1]={ [1]={ limit={ @@ -101964,7 +102834,7 @@ return { [1]="local_unique_can_be_runesmith_enchanted" } }, - [4463]={ + [4501]={ [1]={ [1]={ [1]={ @@ -101984,7 +102854,7 @@ return { [1]="gain_arcane_surge_on_movement_skill_use" } }, - [4464]={ + [4502]={ [1]={ [1]={ limit={ @@ -102000,7 +102870,7 @@ return { [1]="chill_minimum_slow_%" } }, - [4465]={ + [4503]={ [1]={ [1]={ limit={ @@ -102016,7 +102886,7 @@ return { [1]="cast_speed_increase_from_arcane_surge_also_applies_to_move_speed" } }, - [4466]={ + [4504]={ [1]={ [1]={ limit={ @@ -102032,7 +102902,7 @@ return { [1]="shock_minimum_damage_taken_increase_%" } }, - [4467]={ + [4505]={ [1]={ [1]={ [1]={ @@ -102052,7 +102922,7 @@ return { [1]="gain_convergence_on_hitting_unique_enemy" } }, - [4468]={ + [4506]={ [1]={ [1]={ limit={ @@ -102081,7 +102951,7 @@ return { [1]="area_of_effect_+%_while_you_do_not_have_convergence" } }, - [4469]={ + [4507]={ [1]={ [1]={ [1]={ @@ -102118,7 +102988,7 @@ return { [1]="base_cooldown_speed_+%_if_2_shaper_items" } }, - [4470]={ + [4508]={ [1]={ [1]={ [1]={ @@ -102146,7 +103016,7 @@ return { [1]="base_energy_shield_leech_from_elemental_damage_permyriad_if_2_shaper_items" } }, - [4471]={ + [4509]={ [1]={ [1]={ [1]={ @@ -102174,7 +103044,7 @@ return { [1]="base_energy_shield_leech_from_physical_damage_permyriad_if_2_elder_items" } }, - [4472]={ + [4510]={ [1]={ [1]={ [1]={ @@ -102198,7 +103068,7 @@ return { [1]="base_unaffected_by_poison_if_2_hunter_items" } }, - [4473]={ + [4511]={ [1]={ [1]={ [1]={ @@ -102222,7 +103092,7 @@ return { [1]="consecrated_ground_while_stationary_radius_if_2_crusader_items" } }, - [4474]={ + [4512]={ [1]={ [1]={ [1]={ @@ -102259,7 +103129,7 @@ return { [1]="dexterity_+%_if_2_redeemer_items" } }, - [4475]={ + [4513]={ [1]={ [1]={ [1]={ @@ -102283,7 +103153,7 @@ return { [1]="gain_life_regeneration_per_minute_%_for_1_second_every_4_seconds_if_2_hunter_items" } }, - [4476]={ + [4514]={ [1]={ [1]={ [1]={ @@ -102320,7 +103190,7 @@ return { [1]="intelligence_+%_if_2_crusader_items" } }, - [4477]={ + [4515]={ [1]={ [1]={ [1]={ @@ -102357,7 +103227,7 @@ return { [1]="maximum_life_+%_if_2_elder_items" } }, - [4478]={ + [4516]={ [1]={ [1]={ [1]={ @@ -102394,7 +103264,7 @@ return { [1]="maximum_mana_+%_if_2_shaper_items" } }, - [4479]={ + [4517]={ [1]={ [1]={ [1]={ @@ -102418,7 +103288,7 @@ return { [1]="nearby_enemies_are_blinded_if_2_redeemer_items" } }, - [4480]={ + [4518]={ [1]={ [1]={ [1]={ @@ -102442,7 +103312,7 @@ return { [1]="nearby_enemies_are_intimidated_if_2_warlord_items" } }, - [4481]={ + [4519]={ [1]={ [1]={ [1]={ @@ -102466,7 +103336,7 @@ return { [1]="nearby_enemies_are_unnerved_if_2_elder_items" } }, - [4482]={ + [4520]={ [1]={ [1]={ [1]={ @@ -102503,7 +103373,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce_if_2_hunter_items" } }, - [4483]={ + [4521]={ [1]={ [1]={ [1]={ @@ -102540,7 +103410,7 @@ return { [1]="strength_+%_if_2_warlord_items" } }, - [4484]={ + [4522]={ [1]={ [1]={ [1]={ @@ -102564,7 +103434,7 @@ return { [1]="unaffected_by_chill_if_2_redeemer_items" } }, - [4485]={ + [4523]={ [1]={ [1]={ [1]={ @@ -102588,7 +103458,7 @@ return { [1]="unaffected_by_ignite_if_2_warlord_items" } }, - [4486]={ + [4524]={ [1]={ [1]={ [1]={ @@ -102612,7 +103482,7 @@ return { [1]="unaffected_by_shock_if_2_crusader_items" } }, - [4487]={ + [4525]={ [1]={ [1]={ limit={ @@ -102628,7 +103498,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%_if_4_redeemer_items" } }, - [4488]={ + [4526]={ [1]={ [1]={ limit={ @@ -102644,7 +103514,7 @@ return { [1]="add_power_charge_on_skill_hit_%_if_4_crusader_items" } }, - [4489]={ + [4527]={ [1]={ [1]={ [1]={ @@ -102664,7 +103534,7 @@ return { [1]="attack_additional_critical_strike_chance_permyriad_if_4_elder_items" } }, - [4490]={ + [4528]={ [1]={ [1]={ [1]={ @@ -102684,7 +103554,7 @@ return { [1]="base_maximum_chaos_damage_resistance_%_if_4_hunter_items" } }, - [4491]={ + [4529]={ [1]={ [1]={ [1]={ @@ -102704,7 +103574,7 @@ return { [1]="base_maximum_cold_damage_resistance_%_if_4_redeemer_items" } }, - [4492]={ + [4530]={ [1]={ [1]={ [1]={ @@ -102724,7 +103594,7 @@ return { [1]="base_maximum_fire_damage_resistance_%_if_4_warlord_items" } }, - [4493]={ + [4531]={ [1]={ [1]={ [1]={ @@ -102744,7 +103614,7 @@ return { [1]="base_maximum_lightning_damage_resistance_%_if_4_crusader_items" } }, - [4494]={ + [4532]={ [1]={ [1]={ [1]={ @@ -102764,7 +103634,7 @@ return { [1]="base_maximum_spell_block_%_if_4_shaper_items" } }, - [4495]={ + [4533]={ [1]={ [1]={ limit={ @@ -102793,7 +103663,7 @@ return { [1]="base_movement_velocity_+%_if_4_hunter_items" } }, - [4496]={ + [4534]={ [1]={ [1]={ limit={ @@ -102809,7 +103679,7 @@ return { [1]="cannot_take_reflected_elemental_damage_if_4_shaper_items" } }, - [4497]={ + [4535]={ [1]={ [1]={ limit={ @@ -102825,7 +103695,7 @@ return { [1]="cannot_take_reflected_physical_damage_if_4_elder_items" } }, - [4498]={ + [4536]={ [1]={ [1]={ limit={ @@ -102841,7 +103711,7 @@ return { [1]="elemental_damage_%_taken_as_chaos_if_4_hunter_items" } }, - [4499]={ + [4537]={ [1]={ [1]={ [1]={ @@ -102874,7 +103744,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_been_hit_recently_if_4_warlord_items" } }, - [4500]={ + [4538]={ [1]={ [1]={ [1]={ @@ -102894,7 +103764,7 @@ return { [1]="maximum_block_%_if_4_elder_items" } }, - [4501]={ + [4539]={ [1]={ [1]={ limit={ @@ -102910,7 +103780,7 @@ return { [1]="physical_damage_taken_%_as_cold_if_4_redeemer_items" } }, - [4502]={ + [4540]={ [1]={ [1]={ limit={ @@ -102926,7 +103796,7 @@ return { [1]="physical_damage_taken_%_as_fire_if_4_warlord_items" } }, - [4503]={ + [4541]={ [1]={ [1]={ limit={ @@ -102942,7 +103812,7 @@ return { [1]="physical_damage_taken_%_as_lightning_if_4_crusader_items" } }, - [4504]={ + [4542]={ [1]={ [1]={ [1]={ @@ -102962,7 +103832,7 @@ return { [1]="spell_additional_critical_strike_chance_permyriad_if_4_shaper_items" } }, - [4505]={ + [4543]={ [1]={ [1]={ [1]={ @@ -102982,7 +103852,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_6_shaper_items" } }, - [4506]={ + [4544]={ [1]={ [1]={ limit={ @@ -102998,7 +103868,7 @@ return { [1]="additional_projectile_if_6_hunter_items" } }, - [4507]={ + [4545]={ [1]={ [1]={ [1]={ @@ -103035,7 +103905,7 @@ return { [1]="all_attributes_+%_if_6_elder_items" } }, - [4508]={ + [4546]={ [1]={ [1]={ limit={ @@ -103051,7 +103921,7 @@ return { [1]="base_cannot_be_frozen_if_6_redeemer_items" } }, - [4509]={ + [4547]={ [1]={ [1]={ limit={ @@ -103067,7 +103937,7 @@ return { [1]="base_cannot_be_stunned_if_6_elder_items" } }, - [4510]={ + [4548]={ [1]={ [1]={ [1]={ @@ -103108,7 +103978,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%_if_6_warlord_items" } }, - [4511]={ + [4549]={ [1]={ [1]={ limit={ @@ -103124,7 +103994,7 @@ return { [1]="chaos_skill_gem_level_+_if_6_hunter_items" } }, - [4512]={ + [4550]={ [1]={ [1]={ limit={ @@ -103140,7 +104010,7 @@ return { [1]="cold_skill_gem_level_+_if_6_redeemer_items" } }, - [4513]={ + [4551]={ [1]={ [1]={ limit={ @@ -103156,7 +104026,7 @@ return { [1]="fire_skill_gem_level_+_if_6_warlord_items" } }, - [4514]={ + [4552]={ [1]={ [1]={ [1]={ @@ -103180,7 +104050,7 @@ return { [1]="gain_permilliage_total_phys_damage_prevented_recently_as_es_regen_per_sec_if_6_crusader_items" } }, - [4515]={ + [4553]={ [1]={ [1]={ limit={ @@ -103196,7 +104066,7 @@ return { [1]="lightning_skill_gem_level_+_if_6_crusader_items" } }, - [4516]={ + [4554]={ [1]={ [1]={ limit={ @@ -103212,7 +104082,7 @@ return { [1]="max_endurance_charges_if_6_warlord_items" } }, - [4517]={ + [4555]={ [1]={ [1]={ limit={ @@ -103228,7 +104098,7 @@ return { [1]="max_frenzy_charges_if_6_redeemer_items" } }, - [4518]={ + [4556]={ [1]={ [1]={ limit={ @@ -103244,7 +104114,7 @@ return { [1]="max_power_charges_if_6_crusader_items" } }, - [4519]={ + [4557]={ [1]={ [1]={ limit={ @@ -103282,7 +104152,7 @@ return { [1]="number_of_additional_curses_allowed_if_6_hunter_items" } }, - [4520]={ + [4558]={ [1]={ [1]={ limit={ @@ -103298,7 +104168,7 @@ return { [1]="physical_damage_%_to_add_as_each_element_if_6_shaper_items" } }, - [4521]={ + [4559]={ [1]={ [1]={ limit={ @@ -103314,7 +104184,7 @@ return { [1]="physical_skill_gem_level_+_if_6_elder_items" } }, - [4522]={ + [4560]={ [1]={ [1]={ limit={ @@ -103330,7 +104200,7 @@ return { [1]="non_exceptional_support_gem_level_+_if_6_shaper_items" } }, - [4523]={ + [4561]={ [1]={ [1]={ [1]={ @@ -103350,7 +104220,7 @@ return { [1]="X_armour_if_you_have_blocked_recently" } }, - [4524]={ + [4562]={ [1]={ [1]={ limit={ @@ -103366,7 +104236,7 @@ return { [1]="X_armour_per_active_totem" } }, - [4525]={ + [4563]={ [1]={ [1]={ limit={ @@ -103382,7 +104252,7 @@ return { [1]="X_mana_per_dexterity" } }, - [4526]={ + [4564]={ [1]={ [1]={ limit={ @@ -103398,7 +104268,7 @@ return { [1]="X_to_armour_per_2_strength" } }, - [4527]={ + [4565]={ [1]={ [1]={ [1]={ @@ -103443,7 +104313,7 @@ return { [1]="local_jewel_expansion_passive_node_count" } }, - [4528]={ + [4566]={ [1]={ [1]={ limit={ @@ -103472,7 +104342,7 @@ return { [1]="absolution_cast_speed_+%" } }, - [4529]={ + [4567]={ [1]={ [1]={ limit={ @@ -103501,7 +104371,7 @@ return { [1]="absolution_duration_+%" } }, - [4530]={ + [4568]={ [1]={ [1]={ limit={ @@ -103530,7 +104400,132 @@ return { [1]="absolution_minion_area_of_effect_+%" } }, - [4531]={ + [4569]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextArcaneSurge" + }, + [2]={ + k="reminderstring", + v="ReminderTextRecoup" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Arcane Surge also grants {0}% of Damage taken Recouped as Mana to you" + } + }, + stats={ + [1]="abyssal_gaze_arcane_surge_on_you_damage_taken_goes_to_mana_%_if_enough_caster_abyss_jewels" + } + }, + [4570]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Arcane Surge also grants {0}% increased Mana Cost Efficiency to you" + } + }, + stats={ + [1]="abyssal_gaze_arcane_surge_on_you_mana_cost_efficiency_+%_if_enough_caster_abyss_jewels" + } + }, + [4571]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextMaim" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Targets affected by Maim you inflict cannot deal Critical Strikes" + } + }, + stats={ + [1]="abyssal_gaze_maim_you_apply_causes_cannot_deal_critical_strikes_if_enough_ranged_abyss_jewels" + } + }, + [4572]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maim you inflict causes Hits against the target to have {0}% more Critical Strike Chance" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Maim you inflict causes Hits against the target to have {0}% less Critical Strike Chance" + } + }, + stats={ + [1]="abyssal_gaze_maim_you_apply_causes_enemy_critical_strike_chance_+%_final_against_self_if_enough_ranged_abyss_jewels" + } + }, + [4573]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Unholy Might you grant also causes target's Damage to Penetrate {0}% Chaos Resistance" + } + }, + stats={ + [1]="abyssal_gaze_unholy_might_on_you_penetrate_enemy_chaos_resistance_%_if_enough_minion_abyss_jewels" + } + }, + [4574]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextUnholyMight" + }, + [2]={ + k="reminderstring", + v="ReminderTextWithered" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Unholy Might you grant also applies {0}% Increased Effect of Withered" + } + }, + stats={ + [1]="abyssal_gaze_unholy_might_on_you_withered_effect_+%_if_enough_minion_abyss_jewels" + } + }, + [4575]={ [1]={ [1]={ [1]={ @@ -103567,7 +104562,7 @@ return { [1]="accuracy_rating_+%_final_vs_enemies_in_close_range_from_mastery" } }, - [4532]={ + [4576]={ [1]={ [1]={ limit={ @@ -103596,7 +104591,7 @@ return { [1]="accuracy_rating_+%_final_vs_unique_enemies_from_mastery" } }, - [4533]={ + [4577]={ [1]={ [1]={ limit={ @@ -103625,7 +104620,7 @@ return { [1]="gladiator_accuracy_rating_+%_final_while_wielding_sword" } }, - [4534]={ + [4578]={ [1]={ [1]={ limit={ @@ -103654,7 +104649,7 @@ return { [1]="accuracy_rating_+%_per_25_intelligence" } }, - [4535]={ + [4579]={ [1]={ [1]={ limit={ @@ -103663,7 +104658,7 @@ return { [2]="#" } }, - text="{0}% increased Global Accuracy Rating while you have at least 1 nearby Ally" + text="{0}% increased Accuracy Rating while you have at least 1 nearby Ally" }, [2]={ [1]={ @@ -103676,14 +104671,14 @@ return { [2]=-1 } }, - text="{0}% reduced Global Accuracy Rating while you have at least 1 nearby Ally" + text="{0}% reduced Accuracy Rating while you have at least 1 nearby Ally" } }, stats={ [1]="accuracy_rating_+%_with_ally_nearby" } }, - [4536]={ + [4580]={ [1]={ [1]={ limit={ @@ -103712,7 +104707,7 @@ return { [1]="accuracy_rating_against_marked_enemies_+%_final_from_crucible_tree" } }, - [4537]={ + [4581]={ [1]={ [1]={ limit={ @@ -103741,7 +104736,7 @@ return { [1]="accuracy_rating_against_marked_enemies_+%_final_from_mastery" } }, - [4538]={ + [4582]={ [1]={ [1]={ limit={ @@ -103757,7 +104752,7 @@ return { [1]="accuracy_rating_is_doubled" } }, - [4539]={ + [4583]={ [1]={ [1]={ limit={ @@ -103773,7 +104768,7 @@ return { [1]="accuracy_rating_per_level" } }, - [4540]={ + [4584]={ [1]={ [1]={ limit={ @@ -103789,7 +104784,7 @@ return { [1]="accuracy_rating_+_per_2_dexterity" } }, - [4541]={ + [4585]={ [1]={ [1]={ limit={ @@ -103805,7 +104800,7 @@ return { [1]="accuracy_rating_+_per_frenzy_charge" } }, - [4542]={ + [4586]={ [1]={ [1]={ limit={ @@ -103821,7 +104816,7 @@ return { [1]="accuracy_rating_+_per_green_socket_on_bow" } }, - [4543]={ + [4587]={ [1]={ [1]={ limit={ @@ -103850,7 +104845,7 @@ return { [1]="accuracy_rating_+%_during_onslaught" } }, - [4544]={ + [4588]={ [1]={ [1]={ [1]={ @@ -103887,7 +104882,7 @@ return { [1]="accuracy_rating_+%_if_enemy_not_killed_recently" } }, - [4545]={ + [4589]={ [1]={ [1]={ limit={ @@ -103916,7 +104911,7 @@ return { [1]="accuracy_rating_+%_if_have_crit_in_past_8_seconds" } }, - [4546]={ + [4590]={ [1]={ [1]={ limit={ @@ -103932,7 +104927,7 @@ return { [1]="accuracy_rating_while_at_maximum_frenzy_charges" } }, - [4547]={ + [4591]={ [1]={ [1]={ limit={ @@ -103961,7 +104956,7 @@ return { [1]="action_speed_+%_while_affected_by_haste" } }, - [4548]={ + [4592]={ [1]={ [1]={ limit={ @@ -103977,7 +104972,7 @@ return { [1]="action_speed_cannot_be_reduced_below_base_while_ignited" } }, - [4549]={ + [4593]={ [1]={ [1]={ limit={ @@ -103993,7 +104988,7 @@ return { [1]="action_speed_cannot_be_reduced_below_base_while_no_gems_in_boots" } }, - [4550]={ + [4594]={ [1]={ [1]={ limit={ @@ -104009,7 +105004,7 @@ return { [1]="action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds" } }, - [4551]={ + [4595]={ [1]={ [1]={ limit={ @@ -104042,7 +105037,7 @@ return { [1]="action_speed_-%" } }, - [4552]={ + [4596]={ [1]={ [1]={ limit={ @@ -104058,7 +105053,7 @@ return { [1]="active_skill_200%_increased_knockback_distance" } }, - [4553]={ + [4597]={ [1]={ [1]={ limit={ @@ -104074,7 +105069,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance_while_dual_wielding" } }, - [4554]={ + [4598]={ [1]={ [1]={ limit={ @@ -104090,7 +105085,7 @@ return { [1]="add_frenzy_charge_when_hit_%" } }, - [4555]={ + [4599]={ [1]={ [1]={ limit={ @@ -104115,7 +105110,7 @@ return { [1]="add_power_charge_on_hit_while_poisoned_%" } }, - [4556]={ + [4600]={ [1]={ [1]={ [1]={ @@ -104148,7 +105143,7 @@ return { [1]="add_x_grasping_vines_on_hit" } }, - [4557]={ + [4601]={ [1]={ [1]={ limit={ @@ -104164,7 +105159,7 @@ return { [1]="added_chaos_damage_%_life_cost_if_payable" } }, - [4558]={ + [4602]={ [1]={ [1]={ limit={ @@ -104180,7 +105175,7 @@ return { [1]="added_chaos_damage_%_mana_cost_if_payable" } }, - [4559]={ + [4603]={ [1]={ [1]={ limit={ @@ -104196,7 +105191,7 @@ return { [1]="additional_attack_block_%_if_used_shield_skill_recently" } }, - [4560]={ + [4604]={ [1]={ [1]={ limit={ @@ -104212,7 +105207,7 @@ return { [1]="additional_attack_block_%_per_endurance_charge" } }, - [4561]={ + [4605]={ [1]={ [1]={ limit={ @@ -104228,7 +105223,7 @@ return { [1]="additional_attack_block_%_per_frenzy_charge" } }, - [4562]={ + [4606]={ [1]={ [1]={ limit={ @@ -104244,7 +105239,7 @@ return { [1]="additional_attack_block_%_per_power_charge" } }, - [4563]={ + [4607]={ [1]={ [1]={ limit={ @@ -104260,7 +105255,7 @@ return { [1]="additional_attack_block_%_per_summoned_skeleton" } }, - [4564]={ + [4608]={ [1]={ [1]={ limit={ @@ -104289,7 +105284,7 @@ return { [1]="additional_block_%_against_frontal_attacks" } }, - [4565]={ + [4609]={ [1]={ [1]={ [1]={ @@ -104309,7 +105304,7 @@ return { [1]="additional_block_%_if_you_have_crit_recently" } }, - [4566]={ + [4610]={ [1]={ [1]={ limit={ @@ -104325,7 +105320,7 @@ return { [1]="additional_block_%_per_endurance_charge" } }, - [4567]={ + [4611]={ [1]={ [1]={ limit={ @@ -104341,7 +105336,7 @@ return { [1]="additional_block_%_per_hit_you_have_blocked_in_past_10_seconds" } }, - [4568]={ + [4612]={ [1]={ [1]={ limit={ @@ -104357,7 +105352,7 @@ return { [1]="additional_block_%_while_not_cursed" } }, - [4569]={ + [4613]={ [1]={ [1]={ limit={ @@ -104373,7 +105368,7 @@ return { [1]="additional_block_%_while_on_consecrated_ground" } }, - [4570]={ + [4614]={ [1]={ [1]={ limit={ @@ -104389,7 +105384,7 @@ return { [1]="additional_block_%_with_5_or_more_nearby_enemies" } }, - [4571]={ + [4615]={ [1]={ [1]={ limit={ @@ -104405,7 +105400,7 @@ return { [1]="additional_chaos_damage_to_spells_equal_to_%_maximum_life" } }, - [4572]={ + [4616]={ [1]={ [1]={ [1]={ @@ -104425,27 +105420,7 @@ return { [1]="additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad" } }, - [4573]={ - [1]={ - [1]={ - [1]={ - k="divide_by_one_hundred", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="{0:+d}% Critical Strike Chance per Power Charge" - } - }, - stats={ - [1]="additional_critical_strike_chance_per_power_charge_permyriad" - } - }, - [4574]={ + [4617]={ [1]={ [1]={ [1]={ @@ -104465,7 +105440,7 @@ return { [1]="additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%" } }, - [4575]={ + [4618]={ [1]={ [1]={ [1]={ @@ -104485,7 +105460,7 @@ return { [1]="additional_critical_strike_chance_permyriad_per_warcry_exerting_action" } }, - [4576]={ + [4619]={ [1]={ [1]={ [1]={ @@ -104505,7 +105480,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_hatred" } }, - [4577]={ + [4620]={ [1]={ [1]={ [1]={ @@ -104525,7 +105500,7 @@ return { [1]="additional_critical_strike_chance_permyriad_with_herald_skills" } }, - [4578]={ + [4621]={ [1]={ [1]={ [1]={ @@ -104558,7 +105533,7 @@ return { [1]="additional_damage_rolls_while_on_low_life" } }, - [4579]={ + [4622]={ [1]={ [1]={ limit={ @@ -104574,7 +105549,7 @@ return { [1]="additional_dexterity_per_allocated_mastery" } }, - [4580]={ + [4623]={ [1]={ [1]={ limit={ @@ -104590,7 +105565,7 @@ return { [1]="additional_intelligence_per_allocated_mastery" } }, - [4581]={ + [4624]={ [1]={ [1]={ limit={ @@ -104615,7 +105590,7 @@ return { [1]="additional_max_number_of_dominated_magic_monsters" } }, - [4582]={ + [4625]={ [1]={ [1]={ limit={ @@ -104640,7 +105615,7 @@ return { [1]="additional_max_number_of_dominated_rare_monsters" } }, - [4583]={ + [4626]={ [1]={ [1]={ [1]={ @@ -104660,7 +105635,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently" } }, - [4584]={ + [4627]={ [1]={ [1]={ [1]={ @@ -104680,7 +105655,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_suppressed_spell_recently" } }, - [4585]={ + [4628]={ [1]={ [1]={ limit={ @@ -104696,7 +105671,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements" } }, - [4586]={ + [4629]={ [1]={ [1]={ [1]={ @@ -104716,7 +105691,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana" } }, - [4587]={ + [4630]={ [1]={ [1]={ [1]={ @@ -104736,7 +105711,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour" } }, - [4588]={ + [4631]={ [1]={ [1]={ [1]={ @@ -104756,7 +105731,7 @@ return { [1]="additional_maximum_all_resistances_%_while_poisoned" } }, - [4589]={ + [4632]={ [1]={ [1]={ [1]={ @@ -104776,7 +105751,7 @@ return { [1]="additional_maximum_all_resistances_%_at_devotion_threshold" } }, - [4590]={ + [4633]={ [1]={ [1]={ [1]={ @@ -104796,7 +105771,7 @@ return { [1]="additional_maximum_all_resistances_%_with_no_endurance_charges" } }, - [4591]={ + [4634]={ [1]={ [1]={ limit={ @@ -104821,7 +105796,7 @@ return { [1]="additional_number_of_brands_to_create" } }, - [4592]={ + [4635]={ [1]={ [1]={ [1]={ @@ -104841,7 +105816,7 @@ return { [1]="additional_off_hand_critical_strike_chance_permyriad" } }, - [4593]={ + [4636]={ [1]={ [1]={ [1]={ @@ -104861,7 +105836,7 @@ return { [1]="additional_off_hand_critical_strike_chance_while_dual_wielding" } }, - [4594]={ + [4637]={ [1]={ [1]={ [1]={ @@ -104885,7 +105860,7 @@ return { [1]="additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently" } }, - [4595]={ + [4638]={ [1]={ [1]={ limit={ @@ -104901,7 +105876,7 @@ return { [1]="additional_physical_damage_reduction_if_warcried_in_past_8_seconds" } }, - [4596]={ + [4639]={ [1]={ [1]={ limit={ @@ -104917,7 +105892,7 @@ return { [1]="additional_physical_damage_reduction_%_during_focus" } }, - [4597]={ + [4640]={ [1]={ [1]={ limit={ @@ -104933,7 +105908,7 @@ return { [1]="additional_physical_damage_reduction_%_during_life_or_mana_flask_effect" } }, - [4598]={ + [4641]={ [1]={ [1]={ [1]={ @@ -104953,7 +105928,7 @@ return { [1]="additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently" } }, - [4599]={ + [4642]={ [1]={ [1]={ limit={ @@ -104969,7 +105944,7 @@ return { [1]="additional_physical_damage_reduction_%_per_keystone" } }, - [4600]={ + [4643]={ [1]={ [1]={ limit={ @@ -104985,7 +105960,7 @@ return { [1]="additional_physical_damage_reduction_%_per_minion_up_to_10%" } }, - [4601]={ + [4644]={ [1]={ [1]={ limit={ @@ -105001,7 +105976,7 @@ return { [1]="additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity" } }, - [4602]={ + [4645]={ [1]={ [1]={ limit={ @@ -105017,7 +105992,7 @@ return { [1]="additional_physical_damage_reduction_%_vs_abyssal_monsters" } }, - [4603]={ + [4646]={ [1]={ [1]={ limit={ @@ -105033,7 +106008,7 @@ return { [1]="additional_physical_damage_reduction_%_while_affected_by_determination" } }, - [4604]={ + [4647]={ [1]={ [1]={ limit={ @@ -105049,7 +106024,7 @@ return { [1]="additional_physical_damage_reduction_%_while_affected_by_guard_skill" } }, - [4605]={ + [4648]={ [1]={ [1]={ limit={ @@ -105065,7 +106040,7 @@ return { [1]="additional_physical_damage_reduction_%_while_bleeding" } }, - [4606]={ + [4649]={ [1]={ [1]={ limit={ @@ -105081,7 +106056,7 @@ return { [1]="additional_physical_damage_reduction_%_while_channelling" } }, - [4607]={ + [4650]={ [1]={ [1]={ limit={ @@ -105097,7 +106072,7 @@ return { [1]="additional_physical_damage_reduction_%_while_frozen" } }, - [4608]={ + [4651]={ [1]={ [1]={ limit={ @@ -105113,7 +106088,7 @@ return { [1]="additional_physical_damage_reduction_%_while_moving" } }, - [4609]={ + [4652]={ [1]={ [1]={ [1]={ @@ -105133,7 +106108,7 @@ return { [1]="additional_poison_chance_%_when_inflicting_poison" } }, - [4610]={ + [4653]={ [1]={ [1]={ [1]={ @@ -105157,7 +106132,7 @@ return { [1]="additional_rage_loss_per_minute" } }, - [4611]={ + [4654]={ [1]={ [1]={ limit={ @@ -105173,7 +106148,7 @@ return { [1]="additional_spectres_per_ghastly_eye_jewel" } }, - [4612]={ + [4655]={ [1]={ [1]={ limit={ @@ -105189,7 +106164,7 @@ return { [1]="additional_spell_block_%_per_power_charge" } }, - [4613]={ + [4656]={ [1]={ [1]={ [1]={ @@ -105209,7 +106184,7 @@ return { [1]="additional_spell_block_%_if_havent_blocked_recently" } }, - [4614]={ + [4657]={ [1]={ [1]={ limit={ @@ -105225,7 +106200,7 @@ return { [1]="additional_spell_block_%_while_cursed" } }, - [4615]={ + [4658]={ [1]={ [1]={ limit={ @@ -105241,7 +106216,7 @@ return { [1]="additional_strength_per_allocated_mastery" } }, - [4616]={ + [4659]={ [1]={ [1]={ [1]={ @@ -105261,7 +106236,7 @@ return { [1]="additional_stun_threshold_based_on_%_of_energy_shield" } }, - [4617]={ + [4660]={ [1]={ [1]={ limit={ @@ -105286,7 +106261,7 @@ return { [1]="additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value" } }, - [4618]={ + [4661]={ [1]={ [1]={ limit={ @@ -105302,7 +106277,7 @@ return { [1]="additive_cast_speed_modifiers_apply_to_trap_throwing_speed" } }, - [4619]={ + [4662]={ [1]={ [1]={ limit={ @@ -105318,7 +106293,7 @@ return { [1]="additive_chaos_damage_modifiers_apply_to_chaos_aura_effect_at_%_value" } }, - [4620]={ + [4663]={ [1]={ [1]={ limit={ @@ -105334,7 +106309,7 @@ return { [1]="additive_cold_damage_modifiers_apply_to_cold_aura_effect_at_%_value" } }, - [4621]={ + [4664]={ [1]={ [1]={ [1]={ @@ -105354,7 +106329,32 @@ return { [1]="additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value" } }, - [4622]={ + [4665]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Increases and Reductions to your Evasion Rating also apply to your Spell Damage" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to your Evasion Rating also apply to your Spell Damage at {0}% of their value" + } + }, + stats={ + [1]="additive_evasion_increase_modifiers_apply_to_spell_damage_at_%_value" + } + }, + [4666]={ [1]={ [1]={ limit={ @@ -105370,7 +106370,7 @@ return { [1]="additive_fire_damage_modifiers_apply_to_fire_aura_effect_at_%_value" } }, - [4623]={ + [4667]={ [1]={ [1]={ [1]={ @@ -105390,7 +106390,7 @@ return { [1]="additive_flask_effect_modifiers_apply_to_arcane_surge" } }, - [4624]={ + [4668]={ [1]={ [1]={ [1]={ @@ -105423,7 +106423,7 @@ return { [1]="additive_flask_effect_modifiers_apply_to_arcane_surge_at_%_value" } }, - [4625]={ + [4669]={ [1]={ [1]={ [1]={ @@ -105443,7 +106443,7 @@ return { [1]="additive_life_modifiers_apply_to_attack_damage_at_30%_value" } }, - [4626]={ + [4670]={ [1]={ [1]={ limit={ @@ -105459,7 +106459,7 @@ return { [1]="additive_lightning_damage_modifiers_apply_to_lightning_aura_effect_at_%_value" } }, - [4627]={ + [4671]={ [1]={ [1]={ [1]={ @@ -105479,7 +106479,7 @@ return { [1]="additive_mana_modifiers_apply_to_damage_at_30%_value" } }, - [4628]={ + [4672]={ [1]={ [1]={ limit={ @@ -105495,7 +106495,7 @@ return { [1]="additive_mana_modifiers_apply_to_shock_effect_at_30%_value" } }, - [4629]={ + [4673]={ [1]={ [1]={ limit={ @@ -105511,7 +106511,7 @@ return { [1]="additive_physical_damage_modifiers_apply_to_physical_aura_effect_at_%_value" } }, - [4630]={ + [4674]={ [1]={ [1]={ [1]={ @@ -105552,7 +106552,7 @@ return { [1]="aggravate_bleeding_older_than_ms_on_hit" } }, - [4631]={ + [4675]={ [1]={ [1]={ [1]={ @@ -105572,7 +106572,7 @@ return { [1]="aggravate_bleeding_on_attack_crit_chance_%" } }, - [4632]={ + [4676]={ [1]={ [1]={ [1]={ @@ -105592,7 +106592,7 @@ return { [1]="base_aggravate_bleeding_on_attack_hit_chance_%" } }, - [4633]={ + [4677]={ [1]={ [1]={ [1]={ @@ -105612,7 +106612,7 @@ return { [1]="aggravate_bleeding_on_attack_knockback_chance_%" } }, - [4634]={ + [4678]={ [1]={ [1]={ [1]={ @@ -105632,7 +106632,7 @@ return { [1]="aggravate_bleeding_on_attack_stun_chance_%" } }, - [4635]={ + [4679]={ [1]={ [1]={ [1]={ @@ -105652,7 +106652,7 @@ return { [1]="aggravate_bleeding_on_exerted_attack_hit_chance_%" } }, - [4636]={ + [4680]={ [1]={ [1]={ [1]={ @@ -105672,7 +106672,7 @@ return { [1]="aggravate_inflicted_bleeding" } }, - [4637]={ + [4681]={ [1]={ [1]={ limit={ @@ -105701,7 +106701,7 @@ return { [1]="agony_crawler_damage_+%" } }, - [4638]={ + [4682]={ [1]={ [1]={ limit={ @@ -105717,7 +106717,7 @@ return { [1]="ailment_bearer_all_damage_can_inflict_elemental_ailments" } }, - [4639]={ + [4683]={ [1]={ [1]={ limit={ @@ -105733,7 +106733,7 @@ return { [1]="ailment_bearer_always_freeze_shock_ignite" } }, - [4640]={ + [4684]={ [1]={ [1]={ limit={ @@ -105762,7 +106762,7 @@ return { [1]="ailment_bearer_elemental_damage_+%_final" } }, - [4641]={ + [4685]={ [1]={ [1]={ limit={ @@ -105791,7 +106791,7 @@ return { [1]="ailment_bearer_ignite_freeze_shock_duration_+%" } }, - [4642]={ + [4686]={ [1]={ [1]={ [1]={ @@ -105828,7 +106828,7 @@ return { [1]="ailment_bearer_scorch_effect_+%" } }, - [4643]={ + [4687]={ [1]={ [1]={ limit={ @@ -105844,7 +106844,7 @@ return { [1]="ailment_types_apply_enemy_chance_to_deal_double_damage_%_against_self" } }, - [4644]={ + [4688]={ [1]={ [1]={ limit={ @@ -105873,7 +106873,7 @@ return { [1]="alchemists_mark_curse_effect_+%" } }, - [4645]={ + [4689]={ [1]={ [1]={ [1]={ @@ -105897,7 +106897,7 @@ return { [1]="all_added_damage_treated_as_added_cold_damage_if_dex_higher_than_int_and_strength" } }, - [4646]={ + [4690]={ [1]={ [1]={ [1]={ @@ -105914,14 +106914,14 @@ return { [2]="#" } }, - text="You gain Added Lighting Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes" + text="You gain Added Lightning Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes" } }, stats={ [1]="all_added_damage_treated_as_added_lightning_damage_if_int_higher_than_dex_and_strength" } }, - [4647]={ + [4691]={ [1]={ [1]={ [1]={ @@ -105934,14 +106934,14 @@ return { [2]="#" } }, - text="[DNT] {0:+d} to all Attributes for each Keystone affecting you" + text="DNT {0:+d} to all Attributes for each Keystone affecting you" } }, stats={ [1]="all_attributes_+_per_keystone" } }, - [4648]={ + [4692]={ [1]={ [1]={ limit={ @@ -105957,7 +106957,7 @@ return { [1]="all_damage_can_freeze" } }, - [4649]={ + [4693]={ [1]={ [1]={ limit={ @@ -105973,7 +106973,7 @@ return { [1]="all_damage_can_ignite" } }, - [4650]={ + [4694]={ [1]={ [1]={ limit={ @@ -105989,7 +106989,7 @@ return { [1]="all_damage_can_poison" } }, - [4651]={ + [4695]={ [1]={ [1]={ limit={ @@ -106005,7 +107005,7 @@ return { [1]="all_damage_can_shock" } }, - [4652]={ + [4696]={ [1]={ [1]={ [1]={ @@ -106025,7 +107025,7 @@ return { [1]="all_damage_from_mace_and_sceptre_also_chills" } }, - [4653]={ + [4697]={ [1]={ [1]={ limit={ @@ -106058,7 +107058,7 @@ return { [1]="all_damage_resistance_+%" } }, - [4654]={ + [4698]={ [1]={ [1]={ limit={ @@ -106074,7 +107074,7 @@ return { [1]="all_damage_taken_can_ignite" } }, - [4655]={ + [4699]={ [1]={ [1]={ [1]={ @@ -106094,7 +107094,7 @@ return { [1]="all_damage_taken_can_sap" } }, - [4656]={ + [4700]={ [1]={ [1]={ [1]={ @@ -106114,7 +107114,7 @@ return { [1]="all_damage_taken_can_scorch" } }, - [4657]={ + [4701]={ [1]={ [1]={ limit={ @@ -106123,7 +107123,7 @@ return { [2]="#" } }, - text="[DNT] +{0}% to All Resistances per Minion" + text="DNT +{0}% to All Resistances per Minion" }, [2]={ [1]={ @@ -106136,14 +107136,14 @@ return { [2]=-1 } }, - text="[DNT] -{0}% to All Resistances per Minion" + text="DNT -{0}% to All Resistances per Minion" } }, stats={ [1]="all_resistances_%_per_active_minion" } }, - [4658]={ + [4702]={ [1]={ [1]={ limit={ @@ -106159,7 +107159,7 @@ return { [1]="all_skill_gem_level_+" } }, - [4659]={ + [4703]={ [1]={ [1]={ limit={ @@ -106175,7 +107175,7 @@ return { [1]="all_skill_gem_quality_+" } }, - [4660]={ + [4704]={ [1]={ [1]={ limit={ @@ -106191,7 +107191,7 @@ return { [1]="allow_2_offerings" } }, - [4661]={ + [4705]={ [1]={ [1]={ limit={ @@ -106207,7 +107207,7 @@ return { [1]="allow_hellscaping_unique_items" } }, - [4662]={ + [4706]={ [1]={ [1]={ limit={ @@ -106223,7 +107223,7 @@ return { [1]="allow_multiple_offerings" } }, - [4663]={ + [4707]={ [1]={ [1]={ limit={ @@ -106252,7 +107252,7 @@ return { [1]="alternate_ascendancy_damage_taken_+%_final_with_atleast_1_eshgraft" } }, - [4664]={ + [4708]={ [1]={ [1]={ limit={ @@ -106281,7 +107281,7 @@ return { [1]="alternate_ascendancy_damage_taken_+%_final_with_atleast_1_tulgraft" } }, - [4665]={ + [4709]={ [1]={ [1]={ limit={ @@ -106310,7 +107310,7 @@ return { [1]="alternate_ascendancy_damage_taken_+%_final_with_atleast_1_uulgraft" } }, - [4666]={ + [4710]={ [1]={ [1]={ limit={ @@ -106339,7 +107339,7 @@ return { [1]="alternate_ascendancy_damage_taken_+%_final_with_atleast_1_xophgraft" } }, - [4667]={ + [4711]={ [1]={ [1]={ limit={ @@ -106368,7 +107368,7 @@ return { [1]="alternate_ascendancy_damage_taken_over_time_+%_final_while_you_have_unbroken_ward" } }, - [4668]={ + [4712]={ [1]={ [1]={ limit={ @@ -106397,7 +107397,7 @@ return { [1]="alternate_ascendancy_damage_taken_when_hit_+%_final" } }, - [4669]={ + [4713]={ [1]={ [1]={ limit={ @@ -106413,7 +107413,7 @@ return { [1]="alternate_ascendancy_herald_buff_effect_+%_final_per_1%_mana_reserved" } }, - [4670]={ + [4714]={ [1]={ [1]={ limit={ @@ -106429,7 +107429,7 @@ return { [1]="alternate_ascendancy_herald_minion_and_herald_damage_+%_final_per_1%_life_reserved" } }, - [4671]={ + [4715]={ [1]={ [1]={ limit={ @@ -106458,7 +107458,7 @@ return { [1]="alternate_ascendancy_rapid_fire_support_use_damage_+%_final_per_reoccurance" } }, - [4672]={ + [4716]={ [1]={ [1]={ limit={ @@ -106487,7 +107487,7 @@ return { [1]="alternate_ascendancy_vaal_skill_soul_requirement_+%_final" } }, - [4673]={ + [4717]={ [1]={ [1]={ limit={ @@ -106516,7 +107516,7 @@ return { [1]="alternate_ascendancy_vaal_skills_damage_+%_final_per_soul_required" } }, - [4674]={ + [4718]={ [1]={ [1]={ [1]={ @@ -106549,7 +107549,7 @@ return { [1]="always_crit_on_next_non_channelling_attack_within_X_ms_after_being_crit" } }, - [4675]={ + [4719]={ [1]={ [1]={ limit={ @@ -106565,7 +107565,7 @@ return { [1]="always_crit_while_holding_fishing_rod" } }, - [4676]={ + [4720]={ [1]={ [1]={ [1]={ @@ -106585,7 +107585,7 @@ return { [1]="always_frostburn_while_affected_by_hatred" } }, - [4677]={ + [4721]={ [1]={ [1]={ [1]={ @@ -106605,7 +107605,7 @@ return { [1]="always_ignite_while_burning" } }, - [4678]={ + [4722]={ [1]={ [1]={ limit={ @@ -106621,7 +107621,7 @@ return { [1]="always_pierce" } }, - [4679]={ + [4723]={ [1]={ [1]={ limit={ @@ -106637,7 +107637,7 @@ return { [1]="always_pierce_burning_enemies" } }, - [4680]={ + [4724]={ [1]={ [1]={ [1]={ @@ -106657,7 +107657,7 @@ return { [1]="always_sap_while_affected_by_wrath" } }, - [4681]={ + [4725]={ [1]={ [1]={ [1]={ @@ -106677,7 +107677,7 @@ return { [1]="always_scorch_while_affected_by_anger" } }, - [4682]={ + [4726]={ [1]={ [1]={ [1]={ @@ -106697,7 +107697,7 @@ return { [1]="always_shock_low_life_enemies" } }, - [4683]={ + [4727]={ [1]={ [1]={ limit={ @@ -106713,7 +107713,7 @@ return { [1]="always_take_critical_strikes" } }, - [4684]={ + [4728]={ [1]={ [1]={ limit={ @@ -106729,7 +107729,7 @@ return { [1]="ambush_buff_critical_strike_multiplier_+" } }, - [4685]={ + [4729]={ [1]={ [1]={ limit={ @@ -106758,7 +107758,7 @@ return { [1]="ambush_cooldown_speed_+%" } }, - [4686]={ + [4730]={ [1]={ [1]={ limit={ @@ -106787,7 +107787,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [4687]={ + [4731]={ [1]={ [1]={ [1]={ @@ -106828,7 +107828,7 @@ return { [1]="ancestor_totem_buff_linger_time_ms" } }, - [4688]={ + [4732]={ [1]={ [1]={ [1]={ @@ -106852,7 +107852,7 @@ return { [1]="ancestor_totem_damage_leeched_as_energy_shield_to_you_permyriad" } }, - [4689]={ + [4733]={ [1]={ [1]={ limit={ @@ -106881,7 +107881,7 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [4690]={ + [4734]={ [1]={ [1]={ limit={ @@ -106897,7 +107897,7 @@ return { [1]="ancestral_chance_for_no_respawn_timer_on_death_%" } }, - [4691]={ + [4735]={ [1]={ [1]={ limit={ @@ -106926,7 +107926,7 @@ return { [1]="ancestral_channelling_damage_+%_against_totems" } }, - [4692]={ + [4736]={ [1]={ [1]={ limit={ @@ -106955,7 +107955,7 @@ return { [1]="ancestral_channelling_interrupt_duration_+%" } }, - [4693]={ + [4737]={ [1]={ [1]={ limit={ @@ -106980,7 +107980,7 @@ return { [1]="ancestral_cry_attacks_exerted_+" } }, - [4694]={ + [4738]={ [1]={ [1]={ limit={ @@ -106996,7 +107996,7 @@ return { [1]="ancestral_cry_exerted_attack_damage_+%" } }, - [4695]={ + [4739]={ [1]={ [1]={ limit={ @@ -107012,7 +108012,7 @@ return { [1]="ancestral_cry_minimum_power" } }, - [4696]={ + [4740]={ [1]={ [1]={ limit={ @@ -107037,7 +108037,7 @@ return { [1]="ancestral_defensive_teammates_gain_charges" } }, - [4697]={ + [4741]={ [1]={ [1]={ [1]={ @@ -107070,7 +108070,7 @@ return { [1]="ancestral_life_regeneration_rate_per_minute_%_while_channelling_totem" } }, - [4698]={ + [4742]={ [1]={ [1]={ limit={ @@ -107086,7 +108086,7 @@ return { [1]="ancestral_maximum_life_+%_on_respawn" } }, - [4699]={ + [4743]={ [1]={ [1]={ limit={ @@ -107115,7 +108115,7 @@ return { [1]="ancestral_monster_respawn_timer_+%" } }, - [4700]={ + [4744]={ [1]={ [1]={ [1]={ @@ -107156,7 +108156,7 @@ return { [1]="ancestral_offensive_teammates_gain_adrenaline_for_x_ms_on_match_start" } }, - [4701]={ + [4745]={ [1]={ [1]={ limit={ @@ -107185,7 +108185,7 @@ return { [1]="ancestral_slain_enemies_respawn_timer_+" } }, - [4702]={ + [4746]={ [1]={ [1]={ limit={ @@ -107201,7 +108201,7 @@ return { [1]="ancestral_stun_nearby_enemies_on_respawn" } }, - [4703]={ + [4747]={ [1]={ [1]={ limit={ @@ -107217,7 +108217,7 @@ return { [1]="ancestral_totem_being_channelled_doesnt_prevent_your_respawn_timer" } }, - [4704]={ + [4748]={ [1]={ [1]={ limit={ @@ -107233,7 +108233,7 @@ return { [1]="ancestral_totem_cannot_recover_life_while_being_channelled" } }, - [4705]={ + [4749]={ [1]={ [1]={ limit={ @@ -107262,7 +108262,7 @@ return { [1]="ancestral_totem_life_+%" } }, - [4706]={ + [4750]={ [1]={ [1]={ [1]={ @@ -107295,7 +108295,7 @@ return { [1]="ancestral_totem_life_regeneration_rate_per_minute_%" } }, - [4707]={ + [4751]={ [1]={ [1]={ [1]={ @@ -107315,7 +108315,7 @@ return { [1]="ancestral_totem_periodically_freezes_nearby_enemies" } }, - [4708]={ + [4752]={ [1]={ [1]={ [1]={ @@ -107335,7 +108335,7 @@ return { [1]="ancestral_totem_trigger_enduring_cry_on_low_life" } }, - [4709]={ + [4753]={ [1]={ [1]={ limit={ @@ -107364,7 +108364,7 @@ return { [1]="anger_aura_effect_+%_while_at_maximum_endurance_charges" } }, - [4710]={ + [4754]={ [1]={ [1]={ [1]={ @@ -107401,7 +108401,7 @@ return { [1]="anger_mana_reservation_efficiency_-2%_per_1" } }, - [4711]={ + [4755]={ [1]={ [1]={ limit={ @@ -107430,7 +108430,7 @@ return { [1]="anger_mana_reservation_efficiency_+%" } }, - [4712]={ + [4756]={ [1]={ [1]={ limit={ @@ -107446,7 +108446,7 @@ return { [1]="anger_reserves_no_mana" } }, - [4713]={ + [4757]={ [1]={ [1]={ limit={ @@ -107475,7 +108475,7 @@ return { [1]="animate_guardian_damage_+%_per_animated_weapon" } }, - [4714]={ + [4758]={ [1]={ [1]={ [1]={ @@ -107495,7 +108495,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [4715]={ + [4759]={ [1]={ [1]={ limit={ @@ -107524,7 +108524,7 @@ return { [1]="animated_guardian_damage_taken_+%_final" } }, - [4716]={ + [4760]={ [1]={ [1]={ limit={ @@ -107540,7 +108540,7 @@ return { [1]="animated_minions_melee_splash" } }, - [4717]={ + [4761]={ [1]={ [1]={ limit={ @@ -107569,7 +108569,7 @@ return { [1]="aoe_+%_per_second_while_stationary_up_to_50" } }, - [4718]={ + [4762]={ [1]={ [1]={ [1]={ @@ -107602,7 +108602,7 @@ return { [1]="apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy" } }, - [4719]={ + [4763]={ [1]={ [1]={ [1]={ @@ -107635,7 +108635,7 @@ return { [1]="apply_covered_in_ash_to_attacker_when_hit_%" } }, - [4720]={ + [4764]={ [1]={ [1]={ [1]={ @@ -107655,7 +108655,7 @@ return { [1]="apply_maximum_wither_for_Xs_on_chaos_skill_hit" } }, - [4721]={ + [4765]={ [1]={ [1]={ [1]={ @@ -107675,7 +108675,7 @@ return { [1]="apply_maximum_wither_stacks_%_chance_when_you_apply_withered" } }, - [4722]={ + [4766]={ [1]={ [1]={ [1]={ @@ -107695,7 +108695,7 @@ return { [1]="apply_scorch_instead_of_ignite" } }, - [4723]={ + [4767]={ [1]={ [1]={ limit={ @@ -107711,7 +108711,7 @@ return { [1]="arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable" } }, - [4724]={ + [4768]={ [1]={ [1]={ limit={ @@ -107740,7 +108740,7 @@ return { [1]="arc_and_crackling_lance_base_cost_+%" } }, - [4725]={ + [4769]={ [1]={ [1]={ limit={ @@ -107756,7 +108756,7 @@ return { [1]="arc_damage_+%_per_chain" } }, - [4726]={ + [4770]={ [1]={ [1]={ limit={ @@ -107772,7 +108772,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [4727]={ + [4771]={ [1]={ [1]={ [1]={ @@ -107792,7 +108792,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [4728]={ + [4772]={ [1]={ [1]={ limit={ @@ -107808,7 +108808,7 @@ return { [1]="arcane_surge_during_mana_flask_effect" } }, - [4729]={ + [4773]={ [1]={ [1]={ [1]={ @@ -107845,7 +108845,7 @@ return { [1]="arcane_surge_effect_+%_while_affected_by_clarity" } }, - [4730]={ + [4774]={ [1]={ [1]={ [1]={ @@ -107882,7 +108882,7 @@ return { [1]="arcane_surge_effect_+%_per_active_totem" } }, - [4731]={ + [4775]={ [1]={ [1]={ [1]={ @@ -107902,7 +108902,7 @@ return { [1]="arcane_surge_on_you_life_regeneration_rate_+%" } }, - [4732]={ + [4776]={ [1]={ [1]={ limit={ @@ -107931,7 +108931,7 @@ return { [1]="arcane_surge_on_you_spell_damage_+%_final_from_hierophant" } }, - [4733]={ + [4777]={ [1]={ [1]={ [1]={ @@ -107951,7 +108951,7 @@ return { [1]="arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%" } }, - [4734]={ + [4778]={ [1]={ [1]={ limit={ @@ -107980,7 +108980,7 @@ return { [1]="arcanist_brand_cast_speed_+%" } }, - [4735]={ + [4779]={ [1]={ [1]={ [1]={ @@ -108000,7 +109000,7 @@ return { [1]="arcanist_brand_unnerve_on_hit" } }, - [4736]={ + [4780]={ [1]={ [1]={ limit={ @@ -108016,7 +109016,7 @@ return { [1]="archnemesis_cannot_recover_life_or_energy_shield_above_%" } }, - [4737]={ + [4781]={ [1]={ [1]={ [1]={ @@ -108049,7 +109049,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [4738]={ + [4782]={ [1]={ [1]={ [1]={ @@ -108086,7 +109086,7 @@ return { [1]="arctic_armour_mana_reservation_efficiency_-2%_per_1" } }, - [4739]={ + [4783]={ [1]={ [1]={ limit={ @@ -108115,7 +109115,7 @@ return { [1]="arctic_armour_mana_reservation_efficiency_+%" } }, - [4740]={ + [4784]={ [1]={ [1]={ limit={ @@ -108131,7 +109131,7 @@ return { [1]="arctic_armour_no_reservation" } }, - [4741]={ + [4785]={ [1]={ [1]={ limit={ @@ -108160,7 +109160,7 @@ return { [1]="arctic_breath_chilling_area_movement_velocity_+%" } }, - [4742]={ + [4786]={ [1]={ [1]={ limit={ @@ -108189,7 +109189,7 @@ return { [1]="area_damage_+%_per_10_devotion" } }, - [4743]={ + [4787]={ [1]={ [1]={ limit={ @@ -108218,7 +109218,7 @@ return { [1]="area_damage_+%_per_12_strength" } }, - [4744]={ + [4788]={ [1]={ [1]={ limit={ @@ -108247,7 +109247,7 @@ return { [1]="gladiator_area_of_effect_+%_final_while_wielding_mace" } }, - [4745]={ + [4789]={ [1]={ [1]={ limit={ @@ -108276,7 +109276,7 @@ return { [1]="area_of_effect_+%_if_below_100_intelligence" } }, - [4746]={ + [4790]={ [1]={ [1]={ limit={ @@ -108285,14 +109285,51 @@ return { [2]="#" } }, - text="[DNT] {0}% increased Area of Effect per 10 Rage" + text="DNT {0}% increased Area of Effect per 10 Rage" } }, stats={ [1]="area_of_effect_+%_per_10_rage" } }, - [4747]={ + [4791]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Area of Effect per Enemy killed recently, up to 25%" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Area of Effect per Enemy killed recently" + } + }, + stats={ + [1]="area_of_effect_+%_per_enemy_killed_recently_up_to_25%" + } + }, + [4792]={ [1]={ [1]={ limit={ @@ -108321,7 +109358,7 @@ return { [1]="area_of_effect_+%_final_for_bow_attacks_firing_single_projectile" } }, - [4748]={ + [4793]={ [1]={ [1]={ [1]={ @@ -108358,7 +109395,7 @@ return { [1]="area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently" } }, - [4749]={ + [4794]={ [1]={ [1]={ [1]={ @@ -108395,7 +109432,7 @@ return { [1]="area_of_effect_+%_if_culled_recently" } }, - [4750]={ + [4795]={ [1]={ [1]={ [1]={ @@ -108432,7 +109469,7 @@ return { [1]="area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently" } }, - [4751]={ + [4796]={ [1]={ [1]={ [1]={ @@ -108469,7 +109506,7 @@ return { [1]="area_of_effect_+%_if_have_crit_recently" } }, - [4752]={ + [4797]={ [1]={ [1]={ limit={ @@ -108498,7 +109535,7 @@ return { [1]="area_of_effect_+%_if_have_stunned_an_enemy_recently" } }, - [4753]={ + [4798]={ [1]={ [1]={ [1]={ @@ -108535,7 +109572,7 @@ return { [1]="area_of_effect_+%_if_killed_at_least_5_enemies_recently" } }, - [4754]={ + [4799]={ [1]={ [1]={ [1]={ @@ -108572,7 +109609,7 @@ return { [1]="area_of_effect_+%_if_you_have_blocked_recently" } }, - [4755]={ + [4800]={ [1]={ [1]={ limit={ @@ -108601,7 +109638,7 @@ return { [1]="area_of_effect_+%_per_50_strength" } }, - [4756]={ + [4801]={ [1]={ [1]={ limit={ @@ -108630,7 +109667,7 @@ return { [1]="area_of_effect_+%_per_active_herald_of_light_minion" } }, - [4757]={ + [4802]={ [1]={ [1]={ limit={ @@ -108659,7 +109696,7 @@ return { [1]="area_of_effect_+%_per_endurance_charge" } }, - [4758]={ + [4803]={ [1]={ [1]={ [1]={ @@ -108696,7 +109733,7 @@ return { [1]="area_of_effect_+%_per_enemy_killed_recently" } }, - [4759]={ + [4804]={ [1]={ [1]={ limit={ @@ -108725,7 +109762,7 @@ return { [1]="area_of_effect_+%_while_fortified" } }, - [4760]={ + [4805]={ [1]={ [1]={ limit={ @@ -108754,7 +109791,7 @@ return { [1]="area_of_effect_+%_while_totem_active" } }, - [4761]={ + [4806]={ [1]={ [1]={ limit={ @@ -108783,7 +109820,7 @@ return { [1]="area_of_effect_+%_while_wielding_bow" } }, - [4762]={ + [4807]={ [1]={ [1]={ [1]={ @@ -108820,7 +109857,7 @@ return { [1]="area_of_effect_+%_while_wielding_staff" } }, - [4763]={ + [4808]={ [1]={ [1]={ limit={ @@ -108849,7 +109886,7 @@ return { [1]="area_of_effect_+%_while_you_have_arcane_surge" } }, - [4764]={ + [4809]={ [1]={ [1]={ limit={ @@ -108878,7 +109915,7 @@ return { [1]="area_of_effect_+%_with_500_or_more_strength" } }, - [4765]={ + [4810]={ [1]={ [1]={ limit={ @@ -108907,7 +109944,7 @@ return { [1]="area_of_effect_+%_with_bow_skills" } }, - [4766]={ + [4811]={ [1]={ [1]={ limit={ @@ -108936,7 +109973,7 @@ return { [1]="area_of_effect_+%_with_herald_skills" } }, - [4767]={ + [4812]={ [1]={ [1]={ limit={ @@ -108965,7 +110002,7 @@ return { [1]="area_skill_accuracy_rating_+%" } }, - [4768]={ + [4813]={ [1]={ [1]={ [1]={ @@ -108985,7 +110022,7 @@ return { [1]="area_skill_knockback_chance_%" } }, - [4769]={ + [4814]={ [1]={ [1]={ limit={ @@ -109001,7 +110038,7 @@ return { [1]="armageddon_brand_attached_target_fire_penetration_%" } }, - [4770]={ + [4815]={ [1]={ [1]={ limit={ @@ -109030,7 +110067,7 @@ return { [1]="armageddon_brand_damage_+%" } }, - [4771]={ + [4816]={ [1]={ [1]={ limit={ @@ -109059,7 +110096,7 @@ return { [1]="armageddon_brand_repeat_frequency_+%" } }, - [4772]={ + [4817]={ [1]={ [1]={ limit={ @@ -109075,7 +110112,7 @@ return { [1]="armour_%_applies_to_fire_cold_lightning_damage" } }, - [4773]={ + [4818]={ [1]={ [1]={ [1]={ @@ -109095,7 +110132,7 @@ return { [1]="armour_%_applies_to_fire_cold_lightning_damage_if_have_blocked_recently" } }, - [4774]={ + [4819]={ [1]={ [1]={ limit={ @@ -109124,7 +110161,7 @@ return { [1]="armour_+%_during_onslaught" } }, - [4775]={ + [4820]={ [1]={ [1]={ [1]={ @@ -109161,7 +110198,7 @@ return { [1]="armour_+%_if_have_been_hit_recently" } }, - [4776]={ + [4821]={ [1]={ [1]={ [1]={ @@ -109198,7 +110235,7 @@ return { [1]="armour_+%_if_you_havent_been_hit_recently" } }, - [4777]={ + [4822]={ [1]={ [1]={ limit={ @@ -109227,7 +110264,7 @@ return { [1]="armour_+%_per_retaliation_used_in_past_10_seconds" } }, - [4778]={ + [4823]={ [1]={ [1]={ limit={ @@ -109256,7 +110293,7 @@ return { [1]="armour_+%_while_you_have_unbroken_ward" } }, - [4779]={ + [4824]={ [1]={ [1]={ limit={ @@ -109272,7 +110309,7 @@ return { [1]="armour_+_per_10_unreserved_max_mana" } }, - [4780]={ + [4825]={ [1]={ [1]={ limit={ @@ -109301,7 +110338,7 @@ return { [1]="armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield" } }, - [4781]={ + [4826]={ [1]={ [1]={ limit={ @@ -109330,7 +110367,36 @@ return { [1]="armour_and_evasion_+%_during_onslaught" } }, - [4782]={ + [4827]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + stats={ + [1]="armour_and_evasion_+%_if_red_and_green_socket_on_main_hand_weapon" + } + }, + [4828]={ [1]={ [1]={ limit={ @@ -109346,7 +110412,7 @@ return { [1]="armour_and_evasion_rating_+_per_1%_attack_block_chance" } }, - [4783]={ + [4829]={ [1]={ [1]={ limit={ @@ -109362,7 +110428,7 @@ return { [1]="armour_and_evasion_rating_+_while_fortified" } }, - [4784]={ + [4830]={ [1]={ [1]={ limit={ @@ -109391,7 +110457,7 @@ return { [1]="armour_evasion_+%_while_leeching" } }, - [4785]={ + [4831]={ [1]={ [1]={ limit={ @@ -109420,7 +110486,7 @@ return { [1]="armour_from_gloves_and_boots_+%" } }, - [4786]={ + [4832]={ [1]={ [1]={ limit={ @@ -109449,7 +110515,7 @@ return { [1]="armour_from_helmet_and_gloves_+%" } }, - [4787]={ + [4833]={ [1]={ [1]={ [1]={ @@ -109473,7 +110539,31 @@ return { [1]="armour_increased_by_overcapped_fire_resistance" } }, - [4788]={ + [4834]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextOvercappedResistance" + }, + [2]={ + k="reminderstring", + v="ReminderTextUncappedResist" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Armour is increased by {0}% of Overcapped Fire Resistance" + } + }, + stats={ + [1]="armour_increased_by_x%_of_overcapped_fire_resistance" + } + }, + [4835]={ [1]={ [1]={ limit={ @@ -109489,7 +110579,7 @@ return { [1]="armour_+_per_1_helmet_maximum_energy_shield" } }, - [4789]={ + [4836]={ [1]={ [1]={ limit={ @@ -109505,7 +110595,7 @@ return { [1]="armour_+_while_affected_by_determination" } }, - [4790]={ + [4837]={ [1]={ [1]={ limit={ @@ -109521,7 +110611,7 @@ return { [1]="armour_+_while_affected_by_guard_skill" } }, - [4791]={ + [4838]={ [1]={ [1]={ limit={ @@ -109537,7 +110627,7 @@ return { [1]="armour_+_while_you_have_fortify" } }, - [4792]={ + [4839]={ [1]={ [1]={ [1]={ @@ -109574,7 +110664,7 @@ return { [1]="armour_+%_if_enemy_not_killed_recently" } }, - [4793]={ + [4840]={ [1]={ [1]={ limit={ @@ -109603,7 +110693,7 @@ return { [1]="armour_+%_per_50_str" } }, - [4794]={ + [4841]={ [1]={ [1]={ limit={ @@ -109619,7 +110709,7 @@ return { [1]="armour_+%_per_rage" } }, - [4795]={ + [4842]={ [1]={ [1]={ limit={ @@ -109648,7 +110738,7 @@ return { [1]="armour_+%_per_red_socket_on_main_hand_weapon" } }, - [4796]={ + [4843]={ [1]={ [1]={ limit={ @@ -109677,7 +110767,7 @@ return { [1]="armour_+%_per_second_while_stationary_up_to_100" } }, - [4797]={ + [4844]={ [1]={ [1]={ limit={ @@ -109693,7 +110783,7 @@ return { [1]="armour_+%_while_bleeding" } }, - [4798]={ + [4845]={ [1]={ [1]={ limit={ @@ -109722,7 +110812,7 @@ return { [1]="armour_+%_while_stationary" } }, - [4799]={ + [4846]={ [1]={ [1]={ limit={ @@ -109738,7 +110828,7 @@ return { [1]="arrow_critical_strike_chance_+%_max_as_distance_travelled_increases" } }, - [4800]={ + [4847]={ [1]={ [1]={ [1]={ @@ -109775,7 +110865,7 @@ return { [1]="arrow_damage_+%_vs_pierced_targets" } }, - [4801]={ + [4848]={ [1]={ [1]={ [1]={ @@ -109795,7 +110885,7 @@ return { [1]="arrow_damage_+50%_vs_pierced_targets" } }, - [4802]={ + [4849]={ [1]={ [1]={ limit={ @@ -109811,7 +110901,7 @@ return { [1]="arrow_damage_+%_max_as_distance_travelled_increases" } }, - [4803]={ + [4850]={ [1]={ [1]={ limit={ @@ -109832,7 +110922,7 @@ return { [2]="maximum_arrow_fire_damage_added_for_each_pierce" } }, - [4804]={ + [4851]={ [1]={ [1]={ limit={ @@ -109848,7 +110938,7 @@ return { [1]="arrow_speed_additive_modifiers_also_apply_to_bow_damage" } }, - [4805]={ + [4852]={ [1]={ [1]={ limit={ @@ -109864,7 +110954,7 @@ return { [1]="arrows_always_pierce_after_forking" } }, - [4806]={ + [4853]={ [1]={ [1]={ limit={ @@ -109880,7 +110970,7 @@ return { [1]="arrows_pierce_additional_target" } }, - [4807]={ + [4854]={ [1]={ [1]={ limit={ @@ -109896,7 +110986,7 @@ return { [1]="arrows_that_pierce_also_return" } }, - [4808]={ + [4855]={ [1]={ [1]={ limit={ @@ -109912,7 +111002,7 @@ return { [1]="artillery_ballista_cross_strafe_pattern" } }, - [4809]={ + [4856]={ [1]={ [1]={ limit={ @@ -109928,7 +111018,7 @@ return { [1]="artillery_ballista_fire_pen_+%" } }, - [4810]={ + [4857]={ [1]={ [1]={ limit={ @@ -109953,7 +111043,7 @@ return { [1]="artillery_ballista_num_additional_arrows" } }, - [4811]={ + [4858]={ [1]={ [1]={ limit={ @@ -109982,7 +111072,7 @@ return { [1]="ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final" } }, - [4812]={ + [4859]={ [1]={ [1]={ limit={ @@ -110011,7 +111101,7 @@ return { [1]="aspect_of_the_avian_buff_effect_+%" } }, - [4813]={ + [4860]={ [1]={ [1]={ limit={ @@ -110027,7 +111117,7 @@ return { [1]="aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies" } }, - [4814]={ + [4861]={ [1]={ [1]={ [1]={ @@ -110047,7 +111137,94 @@ return { [1]="aspect_of_the_cat_base_secondary_duration" } }, - [4815]={ + [4862]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Aspect of the Cat Buff Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Aspect of the Cat Buff Effect" + } + }, + stats={ + [1]="aspect_of_the_cat_buff_effect_+%" + } + }, + [4863]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Aspect of the Crab Buff Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Aspect of the Crab Buff Effect" + } + }, + stats={ + [1]="aspect_of_the_crab_buff_effect_+%" + } + }, + [4864]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Aspect of the Spider Debuff Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Aspect of the Spider Debuff Effect" + } + }, + stats={ + [1]="aspect_of_the_spider_debuff_effect_+%" + } + }, + [4865]={ [1]={ [1]={ limit={ @@ -110072,7 +111249,7 @@ return { [1]="aspect_of_the_spider_web_count_+" } }, - [4816]={ + [4866]={ [1]={ [1]={ [1]={ @@ -110092,7 +111269,7 @@ return { [1]="attack_additional_critical_strike_chance_permyriad" } }, - [4817]={ + [4867]={ [1]={ [1]={ [1]={ @@ -110129,7 +111306,7 @@ return { [1]="attack_ailment_damage_+%" } }, - [4818]={ + [4868]={ [1]={ [1]={ [1]={ @@ -110166,7 +111343,7 @@ return { [1]="attack_ailment_damage_+%_while_dual_wielding" } }, - [4819]={ + [4869]={ [1]={ [1]={ [1]={ @@ -110203,7 +111380,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_axe" } }, - [4820]={ + [4870]={ [1]={ [1]={ [1]={ @@ -110240,7 +111417,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_bow" } }, - [4821]={ + [4871]={ [1]={ [1]={ [1]={ @@ -110277,7 +111454,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_claw" } }, - [4822]={ + [4872]={ [1]={ [1]={ [1]={ @@ -110322,7 +111499,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_dagger" } }, - [4823]={ + [4873]={ [1]={ [1]={ [1]={ @@ -110359,7 +111536,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_mace" } }, - [4824]={ + [4874]={ [1]={ [1]={ [1]={ @@ -110396,7 +111573,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_melee_weapon" } }, - [4825]={ + [4875]={ [1]={ [1]={ [1]={ @@ -110433,7 +111610,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_one_handed_weapon" } }, - [4826]={ + [4876]={ [1]={ [1]={ [1]={ @@ -110478,7 +111655,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_staff" } }, - [4827]={ + [4877]={ [1]={ [1]={ [1]={ @@ -110515,7 +111692,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_sword" } }, - [4828]={ + [4878]={ [1]={ [1]={ [1]={ @@ -110552,7 +111729,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_two_handed_weapon" } }, - [4829]={ + [4879]={ [1]={ [1]={ [1]={ @@ -110589,7 +111766,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_wand" } }, - [4830]={ + [4880]={ [1]={ [1]={ [1]={ @@ -110626,7 +111803,7 @@ return { [1]="attack_and_cast_speed_+%_if_corpse_consumed_recently" } }, - [4831]={ + [4881]={ [1]={ [1]={ limit={ @@ -110655,7 +111832,7 @@ return { [1]="attack_and_cast_speed_+%_per_alive_packmate" } }, - [4832]={ + [4882]={ [1]={ [1]={ limit={ @@ -110671,7 +111848,7 @@ return { [1]="attack_and_cast_speed_+%_per_nearby_enemy_up_to_30%" } }, - [4833]={ + [4883]={ [1]={ [1]={ limit={ @@ -110700,7 +111877,7 @@ return { [1]="attack_and_cast_speed_+%_to_grant_packmate_on_death" } }, - [4834]={ + [4884]={ [1]={ [1]={ limit={ @@ -110729,7 +111906,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_a_mana_flask" } }, - [4835]={ + [4885]={ [1]={ [1]={ limit={ @@ -110758,7 +111935,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_elusive" } }, - [4836]={ + [4886]={ [1]={ [1]={ limit={ @@ -110787,7 +111964,7 @@ return { [1]="attack_and_cast_speed_+%_while_not_near_ancestral_totem" } }, - [4837]={ + [4887]={ [1]={ [1]={ limit={ @@ -110816,7 +111993,7 @@ return { [1]="attack_and_cast_speed_per_ghost_dance_stack_+%" } }, - [4838]={ + [4888]={ [1]={ [1]={ limit={ @@ -110832,7 +112009,7 @@ return { [1]="attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds" } }, - [4839]={ + [4889]={ [1]={ [1]={ [1]={ @@ -110869,7 +112046,7 @@ return { [1]="attack_and_cast_speed_+%_if_enemy_hit_recently" } }, - [4840]={ + [4890]={ [1]={ [1]={ [1]={ @@ -110906,7 +112083,7 @@ return { [1]="attack_and_cast_speed_+%_if_havent_been_hit_recently" } }, - [4841]={ + [4891]={ [1]={ [1]={ limit={ @@ -110935,7 +112112,7 @@ return { [1]="attack_and_cast_speed_+%_per_endurance_charge" } }, - [4842]={ + [4892]={ [1]={ [1]={ limit={ @@ -110964,7 +112141,7 @@ return { [1]="attack_and_cast_speed_+%_per_power_charge" } }, - [4843]={ + [4893]={ [1]={ [1]={ limit={ @@ -110993,7 +112170,7 @@ return { [1]="attack_and_cast_speed_+%_per_summoned_raging_spirit" } }, - [4844]={ + [4894]={ [1]={ [1]={ limit={ @@ -111022,7 +112199,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_a_herald" } }, - [4845]={ + [4895]={ [1]={ [1]={ limit={ @@ -111051,7 +112228,7 @@ return { [1]="attack_and_cast_speed_+%_while_channelling" } }, - [4846]={ + [4896]={ [1]={ [1]={ limit={ @@ -111080,7 +112257,7 @@ return { [1]="attack_and_cast_speed_+%_while_focused" } }, - [4847]={ + [4897]={ [1]={ [1]={ limit={ @@ -111109,7 +112286,7 @@ return { [1]="attack_and_cast_speed_+%_while_leeching_energy_shield" } }, - [4848]={ + [4898]={ [1]={ [1]={ limit={ @@ -111138,7 +112315,7 @@ return { [1]="attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis" } }, - [4849]={ + [4899]={ [1]={ [1]={ limit={ @@ -111167,7 +112344,7 @@ return { [1]="attack_and_cast_speed_+%_with_channelling_skills" } }, - [4850]={ + [4900]={ [1]={ [1]={ limit={ @@ -111196,7 +112373,7 @@ return { [1]="attack_and_cast_speed_+%_with_chaos_skills" } }, - [4851]={ + [4901]={ [1]={ [1]={ limit={ @@ -111225,7 +112402,7 @@ return { [1]="attack_and_cast_speed_+%_with_cold_skills" } }, - [4852]={ + [4902]={ [1]={ [1]={ limit={ @@ -111254,7 +112431,7 @@ return { [1]="attack_and_cast_speed_+%_with_elemental_skills" } }, - [4853]={ + [4903]={ [1]={ [1]={ limit={ @@ -111283,7 +112460,7 @@ return { [1]="attack_and_cast_speed_+%_with_fire_skills" } }, - [4854]={ + [4904]={ [1]={ [1]={ limit={ @@ -111312,7 +112489,7 @@ return { [1]="attack_and_cast_speed_+%_with_lightning_skills" } }, - [4855]={ + [4905]={ [1]={ [1]={ limit={ @@ -111341,7 +112518,7 @@ return { [1]="attack_and_cast_speed_+%_with_physical_skills" } }, - [4856]={ + [4906]={ [1]={ [1]={ limit={ @@ -111370,7 +112547,7 @@ return { [1]="attack_and_cast_speed_+%_with_shield_skills" } }, - [4857]={ + [4907]={ [1]={ [1]={ limit={ @@ -111386,7 +112563,7 @@ return { [1]="attack_and_movement_speed_+%_final_per_challenger_charge" } }, - [4858]={ + [4908]={ [1]={ [1]={ limit={ @@ -111415,7 +112592,7 @@ return { [1]="attack_area_of_effect_+%_with_ally_nearby" } }, - [4859]={ + [4909]={ [1]={ [1]={ limit={ @@ -111444,7 +112621,7 @@ return { [1]="attack_area_of_effect_+%" } }, - [4860]={ + [4910]={ [1]={ [1]={ [1]={ @@ -111464,7 +112641,7 @@ return { [1]="attack_block_%_per_200_fire_hit_damage_taken_recently" } }, - [4861]={ + [4911]={ [1]={ [1]={ [1]={ @@ -111484,7 +112661,7 @@ return { [1]="attack_block_%_if_blocked_a_spell_recently" } }, - [4862]={ + [4912]={ [1]={ [1]={ limit={ @@ -111500,7 +112677,7 @@ return { [1]="attack_block_%_while_at_max_endurance_charges" } }, - [4863]={ + [4913]={ [1]={ [1]={ limit={ @@ -111529,7 +112706,7 @@ return { [1]="attack_cast_and_movement_speed_+%_during_onslaught" } }, - [4864]={ + [4914]={ [1]={ [1]={ [1]={ @@ -111574,7 +112751,7 @@ return { [1]="attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently" } }, - [4865]={ + [4915]={ [1]={ [1]={ [1]={ @@ -111594,7 +112771,7 @@ return { [1]="attack_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [4866]={ + [4916]={ [1]={ [1]={ [1]={ @@ -111614,7 +112791,7 @@ return { [1]="attack_chance_to_maim_on_hit_%_vs_blinded_enemies" } }, - [4867]={ + [4917]={ [1]={ [1]={ limit={ @@ -111647,7 +112824,7 @@ return { [1]="attack_cost_+%_if_you_have_at_least_20_rage" } }, - [4868]={ + [4918]={ [1]={ [1]={ limit={ @@ -111676,7 +112853,7 @@ return { [1]="attack_critical_strike_chance_+%" } }, - [4869]={ + [4919]={ [1]={ [1]={ limit={ @@ -111705,7 +112882,7 @@ return { [1]="attack_critical_strike_chance_+%_per_200_accuracy_rating" } }, - [4870]={ + [4920]={ [1]={ [1]={ limit={ @@ -111721,7 +112898,7 @@ return { [1]="attack_critical_strikes_ignore_elemental_resistances" } }, - [4871]={ + [4921]={ [1]={ [1]={ limit={ @@ -111750,7 +112927,7 @@ return { [1]="attack_damage_+%_per_5%_block_chance" } }, - [4872]={ + [4922]={ [1]={ [1]={ limit={ @@ -111779,7 +112956,7 @@ return { [1]="attack_damage_+%_per_500_maximum_mana" } }, - [4873]={ + [4923]={ [1]={ [1]={ limit={ @@ -111795,7 +112972,7 @@ return { [1]="attack_damage_+%_per_explicit_map_mod_affecting_area" } }, - [4874]={ + [4924]={ [1]={ [1]={ limit={ @@ -111824,7 +113001,7 @@ return { [1]="attack_damage_+%_per_raised_zombie" } }, - [4875]={ + [4925]={ [1]={ [1]={ [1]={ @@ -111861,7 +113038,7 @@ return { [1]="attack_damage_+%_while_in_blood_stance" } }, - [4876]={ + [4926]={ [1]={ [1]={ limit={ @@ -111890,7 +113067,7 @@ return { [1]="attack_damage_+%_while_you_have_at_least_20_fortification" } }, - [4877]={ + [4927]={ [1]={ [1]={ [1]={ @@ -111910,7 +113087,7 @@ return { [1]="attack_damage_lucky_if_blocked_in_past_20_seconds" } }, - [4878]={ + [4928]={ [1]={ [1]={ [1]={ @@ -111930,7 +113107,7 @@ return { [1]="attack_damage_lucky_if_blocked_in_past_20_seconds_while_dual_wielding" } }, - [4879]={ + [4929]={ [1]={ [1]={ limit={ @@ -111946,7 +113123,7 @@ return { [1]="attack_damage_+1%_per_300_of_min_of_armour_or_evasion" } }, - [4880]={ + [4930]={ [1]={ [1]={ limit={ @@ -111975,7 +113152,7 @@ return { [1]="attack_damage_+%_per_16_strength" } }, - [4881]={ + [4931]={ [1]={ [1]={ limit={ @@ -111991,7 +113168,7 @@ return { [1]="attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [4882]={ + [4932]={ [1]={ [1]={ limit={ @@ -112020,7 +113197,7 @@ return { [1]="attack_damage_+%_per_75_armour_or_evasion_on_shield" } }, - [4883]={ + [4933]={ [1]={ [1]={ limit={ @@ -112049,7 +113226,7 @@ return { [1]="attack_damage_+%_vs_maimed_enemies" } }, - [4884]={ + [4934]={ [1]={ [1]={ limit={ @@ -112078,7 +113255,7 @@ return { [1]="attack_damage_+%_when_lower_percentage_life_than_target" } }, - [4885]={ + [4935]={ [1]={ [1]={ limit={ @@ -112107,7 +113284,7 @@ return { [1]="attack_damage_+%_when_on_full_life" } }, - [4886]={ + [4936]={ [1]={ [1]={ limit={ @@ -112136,7 +113313,7 @@ return { [1]="attack_damage_+%_while_affected_by_precision" } }, - [4887]={ + [4937]={ [1]={ [1]={ limit={ @@ -112165,7 +113342,7 @@ return { [1]="attack_damage_+%_while_channelling" } }, - [4888]={ + [4938]={ [1]={ [1]={ limit={ @@ -112194,7 +113371,7 @@ return { [1]="attack_damage_+%_while_leeching" } }, - [4889]={ + [4939]={ [1]={ [1]={ limit={ @@ -112223,7 +113400,7 @@ return { [1]="attack_damage_+%_while_you_have_fortify" } }, - [4890]={ + [4940]={ [1]={ [1]={ limit={ @@ -112252,7 +113429,7 @@ return { [1]="attack_damage_+%_with_channelling_skills" } }, - [4891]={ + [4941]={ [1]={ [1]={ limit={ @@ -112268,7 +113445,7 @@ return { [1]="attack_lightning_damage_%_to_convert_to_chaos" } }, - [4892]={ + [4942]={ [1]={ [1]={ limit={ @@ -112301,7 +113478,7 @@ return { [1]="attack_mana_cost_+%" } }, - [4893]={ + [4943]={ [1]={ [1]={ limit={ @@ -112322,7 +113499,7 @@ return { [2]="attack_maximum_added_fire_damage_per_10_strength" } }, - [4894]={ + [4944]={ [1]={ [1]={ limit={ @@ -112343,7 +113520,7 @@ return { [2]="local_maximum_added_fire_damage_vs_bleeding_enemies" } }, - [4895]={ + [4945]={ [1]={ [1]={ limit={ @@ -112364,7 +113541,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_10_dex" } }, - [4896]={ + [4946]={ [1]={ [1]={ limit={ @@ -112385,7 +113562,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_10_int" } }, - [4897]={ + [4947]={ [1]={ [1]={ limit={ @@ -112406,7 +113583,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_200_accuracy_rating" } }, - [4898]={ + [4948]={ [1]={ [1]={ limit={ @@ -112427,7 +113604,7 @@ return { [2]="attack_maximum_added_physical_damage_if_have_crit_recently" } }, - [4899]={ + [4949]={ [1]={ [1]={ limit={ @@ -112448,7 +113625,7 @@ return { [2]="attack_maximum_added_physical_damage_per_25_strength" } }, - [4900]={ + [4950]={ [1]={ [1]={ limit={ @@ -112469,7 +113646,7 @@ return { [2]="attack_maximum_added_physical_damage_per_level" } }, - [4901]={ + [4951]={ [1]={ [1]={ limit={ @@ -112490,7 +113667,7 @@ return { [2]="local_maximum_added_physical_damage_vs_ignited_enemies" } }, - [4902]={ + [4952]={ [1]={ [1]={ limit={ @@ -112506,7 +113683,7 @@ return { [1]="attack_physical_damage_%_to_convert_to_cold" } }, - [4903]={ + [4953]={ [1]={ [1]={ limit={ @@ -112522,7 +113699,7 @@ return { [1]="attack_physical_damage_%_to_convert_to_fire" } }, - [4904]={ + [4954]={ [1]={ [1]={ limit={ @@ -112538,7 +113715,7 @@ return { [1]="attack_physical_damage_%_to_convert_to_lightning" } }, - [4905]={ + [4955]={ [1]={ [1]={ limit={ @@ -112554,7 +113731,7 @@ return { [1]="attack_projectiles_fork" } }, - [4906]={ + [4956]={ [1]={ [1]={ limit={ @@ -112579,7 +113756,7 @@ return { [1]="attack_projectiles_fork_additional_times" } }, - [4907]={ + [4957]={ [1]={ [1]={ limit={ @@ -112604,7 +113781,7 @@ return { [1]="attack_skill_additional_num_projectiles_while_wielding_claws_daggers" } }, - [4908]={ + [4958]={ [1]={ [1]={ limit={ @@ -112633,7 +113810,7 @@ return { [1]="attack_skill_ailment_damage_+%_while_wielding_axes_swords" } }, - [4909]={ + [4959]={ [1]={ [1]={ limit={ @@ -112649,7 +113826,7 @@ return { [1]="attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana" } }, - [4910]={ + [4960]={ [1]={ [1]={ [1]={ @@ -112686,7 +113863,7 @@ return { [1]="attack_speed_+%_per_enemy_in_close_range" } }, - [4911]={ + [4961]={ [1]={ [1]={ limit={ @@ -112702,7 +113879,7 @@ return { [1]="attack_speed_+%_per_explicit_map_mod_affecting_area" } }, - [4912]={ + [4962]={ [1]={ [1]={ limit={ @@ -112731,7 +113908,7 @@ return { [1]="attack_speed_+%_per_fortification" } }, - [4913]={ + [4963]={ [1]={ [1]={ limit={ @@ -112747,7 +113924,7 @@ return { [1]="attack_speed_+%_per_minion_up_to_80%" } }, - [4914]={ + [4964]={ [1]={ [1]={ limit={ @@ -112776,7 +113953,7 @@ return { [1]="attack_speed_+%_while_in_sand_stance" } }, - [4915]={ + [4965]={ [1]={ [1]={ limit={ @@ -112805,7 +113982,7 @@ return { [1]="attack_speed_+%_final_per_blitz_charge" } }, - [4916]={ + [4966]={ [1]={ [1]={ [1]={ @@ -112842,7 +114019,7 @@ return { [1]="attack_speed_+%_if_cast_a_mark_spell_recently" } }, - [4917]={ + [4967]={ [1]={ [1]={ [1]={ @@ -112879,7 +114056,7 @@ return { [1]="attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently" } }, - [4918]={ + [4968]={ [1]={ [1]={ [1]={ @@ -112916,7 +114093,7 @@ return { [1]="attack_speed_+%_if_enemy_killed_recently" } }, - [4919]={ + [4969]={ [1]={ [1]={ [1]={ @@ -112953,7 +114130,7 @@ return { [1]="attack_speed_+%_if_have_been_hit_recently" } }, - [4920]={ + [4970]={ [1]={ [1]={ limit={ @@ -112982,7 +114159,7 @@ return { [1]="attack_speed_+%_if_have_blocked_recently" } }, - [4921]={ + [4971]={ [1]={ [1]={ [1]={ @@ -113019,7 +114196,7 @@ return { [1]="attack_speed_+%_if_have_crit_recently" } }, - [4922]={ + [4972]={ [1]={ [1]={ [1]={ @@ -113056,7 +114233,7 @@ return { [1]="attack_speed_+%_if_havent_cast_dash_recently" } }, - [4923]={ + [4973]={ [1]={ [1]={ [1]={ @@ -113093,7 +114270,7 @@ return { [1]="attack_speed_+%_if_not_gained_frenzy_charge_recently" } }, - [4924]={ + [4974]={ [1]={ [1]={ limit={ @@ -113122,7 +114299,7 @@ return { [1]="attack_speed_+%_if_rare_or_unique_enemy_nearby" } }, - [4925]={ + [4975]={ [1]={ [1]={ limit={ @@ -113151,7 +114328,7 @@ return { [1]="attack_speed_+%_if_you_have_at_least_600_strength" } }, - [4926]={ + [4976]={ [1]={ [1]={ limit={ @@ -113167,7 +114344,7 @@ return { [1]="attack_speed_+%_per_25_dex" } }, - [4927]={ + [4977]={ [1]={ [1]={ limit={ @@ -113183,7 +114360,7 @@ return { [1]="attack_speed_+%_per_rage" } }, - [4928]={ + [4978]={ [1]={ [1]={ limit={ @@ -113212,7 +114389,7 @@ return { [1]="attack_speed_+%_while_affected_by_precision" } }, - [4929]={ + [4979]={ [1]={ [1]={ limit={ @@ -113241,7 +114418,7 @@ return { [1]="attack_speed_+%_while_chilled" } }, - [4930]={ + [4980]={ [1]={ [1]={ limit={ @@ -113270,7 +114447,7 @@ return { [1]="attack_speed_+%_while_not_on_low_mana" } }, - [4931]={ + [4981]={ [1]={ [1]={ [1]={ @@ -113307,7 +114484,7 @@ return { [1]="attack_speed_+%_while_phasing" } }, - [4932]={ + [4982]={ [1]={ [1]={ limit={ @@ -113336,7 +114513,7 @@ return { [1]="attack_speed_+%_with_channelling_skills" } }, - [4933]={ + [4983]={ [1]={ [1]={ limit={ @@ -113361,7 +114538,7 @@ return { [1]="steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles" } }, - [4934]={ + [4984]={ [1]={ [1]={ [1]={ @@ -113381,7 +114558,7 @@ return { [1]="attacks_bleed_on_hit_while_you_have_cat_stealth" } }, - [4935]={ + [4985]={ [1]={ [1]={ [1]={ @@ -113401,7 +114578,7 @@ return { [1]="attacks_cause_bleeding_vs_cursed_enemies" } }, - [4936]={ + [4986]={ [1]={ [1]={ [1]={ @@ -113421,7 +114598,7 @@ return { [1]="local_chance_bleed_on_hit_%_vs_ignited_enemies" } }, - [4937]={ + [4987]={ [1]={ [1]={ [1]={ @@ -113441,7 +114618,7 @@ return { [1]="attacks_chance_to_bleed_25%_vs_cursed_enemies" } }, - [4938]={ + [4988]={ [1]={ [1]={ [1]={ @@ -113461,7 +114638,7 @@ return { [1]="attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies" } }, - [4939]={ + [4989]={ [1]={ [1]={ [1]={ @@ -113494,7 +114671,7 @@ return { [1]="attacks_chance_to_blind_on_hit_%" } }, - [4940]={ + [4990]={ [1]={ [1]={ [1]={ @@ -113527,7 +114704,7 @@ return { [1]="attacks_chance_to_taunt_on_hit_%" } }, - [4941]={ + [4991]={ [1]={ [1]={ [1]={ @@ -113547,7 +114724,7 @@ return { [1]="attacks_corrosion_on_hit_%" } }, - [4942]={ + [4992]={ [1]={ [1]={ [1]={ @@ -113580,7 +114757,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [4943]={ + [4993]={ [1]={ [1]={ [1]={ @@ -113600,7 +114777,7 @@ return { [1]="attacks_inflict_unnerve_on_crit" } }, - [4944]={ + [4994]={ [1]={ [1]={ [1]={ @@ -113633,7 +114810,7 @@ return { [1]="attacks_intimidate_on_hit_%" } }, - [4945]={ + [4995]={ [1]={ [1]={ limit={ @@ -113649,7 +114826,7 @@ return { [1]="attacks_with_this_weapon_maximum_es_%_to_add_as_cold_damage" } }, - [4946]={ + [4996]={ [1]={ [1]={ limit={ @@ -113665,7 +114842,7 @@ return { [1]="attacks_with_this_weapon_maximum_mana_%_to_add_as_fire_damage" } }, - [4947]={ + [4997]={ [1]={ [1]={ [1]={ @@ -113690,7 +114867,7 @@ return { [2]="attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute" } }, - [4948]={ + [4998]={ [1]={ [1]={ limit={ @@ -113711,7 +114888,7 @@ return { [2]="attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity" } }, - [4949]={ + [4999]={ [1]={ [1]={ [1]={ @@ -113731,7 +114908,7 @@ return { [1]="attacks_with_two_handed_weapons_impale_on_hit_%_chance" } }, - [4950]={ + [5000]={ [1]={ [1]={ limit={ @@ -113740,7 +114917,7 @@ return { [2]="#" } }, - text="[DNT] {0}% increased Attribute Requirements of equipped Armour" + text="DNT {0}% increased Attribute Requirements of equipped Armour" }, [2]={ [1]={ @@ -113753,14 +114930,14 @@ return { [2]=-1 } }, - text="[DNT] {0}% reduced Attribute Requirements of equipped Armour" + text="DNT {0}% reduced Attribute Requirements of equipped Armour" } }, stats={ [1]="attribute_requirement_+%_for_equipped_armour" } }, - [4951]={ + [5001]={ [1]={ [1]={ limit={ @@ -113769,7 +114946,7 @@ return { [2]="#" } }, - text="[DNT] {0}% increased Attribute Requirements of equipped Weapons" + text="DNT {0}% increased Attribute Requirements of equipped Weapons" }, [2]={ [1]={ @@ -113782,14 +114959,14 @@ return { [2]=-1 } }, - text="[DNT] {0}% reduced Attribute Requirements of equipped Weapons" + text="DNT {0}% reduced Attribute Requirements of equipped Weapons" } }, stats={ [1]="attribute_requirement_+%_for_equipped_weapons" } }, - [4952]={ + [5002]={ [1]={ [1]={ limit={ @@ -113818,7 +114995,7 @@ return { [1]="aura_effect_on_self_from_skills_+%_per_herald_effecting_you" } }, - [4953]={ + [5003]={ [1]={ [1]={ limit={ @@ -113827,7 +115004,7 @@ return { [2]="#" } }, - text="[DNT] Auras from your Allies have {0}% increased Effect on you" + text="DNT Auras from your Allies have {0}% increased Effect on you" }, [2]={ [1]={ @@ -113840,14 +115017,14 @@ return { [2]=-1 } }, - text="[DNT] Auras from your Allies have {0}% reduced Effect on you" + text="DNT Auras from your Allies have {0}% reduced Effect on you" } }, stats={ [1]="aura_effect_+%_on_self_from_allied_auras" } }, - [4954]={ + [5004]={ [1]={ [1]={ limit={ @@ -113863,7 +115040,7 @@ return { [1]="aura_skill_gem_level_+" } }, - [4955]={ + [5005]={ [1]={ [1]={ [1]={ @@ -113900,7 +115077,7 @@ return { [1]="auras_grant_life_mana_es_recovery_rate_+%_to_you_and_your_allies" } }, - [4956]={ + [5006]={ [1]={ [1]={ [1]={ @@ -113920,7 +115097,7 @@ return { [1]="avians_flight_duration_ms_+" } }, - [4957]={ + [5007]={ [1]={ [1]={ [1]={ @@ -113940,7 +115117,7 @@ return { [1]="avians_might_duration_ms_+" } }, - [4958]={ + [5008]={ [1]={ [1]={ [1]={ @@ -113960,7 +115137,7 @@ return { [1]="avoid_ailments_%_from_crit" } }, - [4959]={ + [5009]={ [1]={ [1]={ limit={ @@ -113976,7 +115153,7 @@ return { [1]="avoid_ailments_%_while_holding_shield" } }, - [4960]={ + [5010]={ [1]={ [1]={ limit={ @@ -113992,7 +115169,7 @@ return { [1]="avoid_all_elemental_ailment_%_per_summoned_golem" } }, - [4961]={ + [5011]={ [1]={ [1]={ limit={ @@ -114017,7 +115194,7 @@ return { [1]="avoid_chained_projectile_%_chance" } }, - [4962]={ + [5012]={ [1]={ [1]={ limit={ @@ -114033,7 +115210,7 @@ return { [1]="avoid_chill_freeze_while_casting_%" } }, - [4963]={ + [5013]={ [1]={ [1]={ limit={ @@ -114049,40 +115226,48 @@ return { [1]="avoid_corrupted_blood_%_chance" } }, - [4964]={ + [5014]={ [1]={ [1]={ [1]={ k="reminderstring", v="ReminderTextChanceToAvoidDamageMax" }, + [2]={ + k="reminderstring", + v="ReminderTextDamageTypes" + }, limit={ [1]={ [1]=1, [2]=99 } }, - text="{0}% chance to Avoid All Damage from Hits" + text="{0}% chance to Avoid Damage of each Type from Hits" }, [2]={ [1]={ k="reminderstring", v="ReminderTextChanceToAvoidDamageMax" }, + [2]={ + k="reminderstring", + v="ReminderTextDamageTypes" + }, limit={ [1]={ [1]=100, [2]="#" } }, - text="Avoid All Damage from Hits" + text="Avoid Damage of each Type from Hits" } }, stats={ [1]="avoid_damage_%" } }, - [4965]={ + [5015]={ [1]={ [1]={ [1]={ @@ -114102,7 +115287,7 @@ return { [1]="avoid_elemental_ailments_%_while_affected_by_elusive" } }, - [4966]={ + [5016]={ [1]={ [1]={ [1]={ @@ -114122,7 +115307,7 @@ return { [1]="avoid_elemental_ailments_%_while_phasing" } }, - [4967]={ + [5017]={ [1]={ [1]={ [1]={ @@ -114135,14 +115320,14 @@ return { [2]="#" } }, - text="{0}% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention" + text="{0}% chance to Avoid Damage of each Element from Hits during Soul Gain Prevention" } }, stats={ [1]="avoid_elemental_damage_chance_%_during_soul_gain_prevention" } }, - [4968]={ + [5018]={ [1]={ [1]={ [1]={ @@ -114155,14 +115340,14 @@ return { [2]="#" } }, - text="{0:+d}% chance to Avoid Elemental Damage from Hits while Phasing" + text="{0:+d}% chance to Avoid Damage of each Element from Hits while Phasing" } }, stats={ [1]="avoid_elemental_damage_while_phasing_%" } }, - [4969]={ + [5019]={ [1]={ [1]={ limit={ @@ -114178,7 +115363,7 @@ return { [1]="avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently" } }, - [4970]={ + [5020]={ [1]={ [1]={ limit={ @@ -114203,7 +115388,7 @@ return { [1]="avoid_impale_%" } }, - [4971]={ + [5021]={ [1]={ [1]={ limit={ @@ -114232,7 +115417,7 @@ return { [1]="avoid_maim_%_chance" } }, - [4972]={ + [5022]={ [1]={ [1]={ [1]={ @@ -114252,7 +115437,7 @@ return { [1]="avoid_non_damaging_ailments_%_per_missing_barkskin_stack" } }, - [4973]={ + [5023]={ [1]={ [1]={ limit={ @@ -114268,7 +115453,7 @@ return { [1]="avoid_physical_damage_%_while_phasing" } }, - [4974]={ + [5024]={ [1]={ [1]={ [1]={ @@ -114288,7 +115473,7 @@ return { [1]="avoid_projectiles_%_chance_if_taken_projectile_damage_recently" } }, - [4975]={ + [5025]={ [1]={ [1]={ limit={ @@ -114304,7 +115489,7 @@ return { [1]="avoid_projectiles_while_phasing_%_chance" } }, - [4976]={ + [5026]={ [1]={ [1]={ limit={ @@ -114320,7 +115505,7 @@ return { [1]="avoid_shock_%_while_chilled" } }, - [4977]={ + [5027]={ [1]={ [1]={ limit={ @@ -114336,7 +115521,7 @@ return { [1]="avoid_stun_35%_per_active_herald" } }, - [4978]={ + [5028]={ [1]={ [1]={ limit={ @@ -114352,7 +115537,7 @@ return { [1]="avoid_stun_%_while_channeling_snipe" } }, - [4979]={ + [5029]={ [1]={ [1]={ limit={ @@ -114368,7 +115553,7 @@ return { [1]="avoid_stun_%_while_channelling" } }, - [4980]={ + [5030]={ [1]={ [1]={ limit={ @@ -114384,7 +115569,7 @@ return { [1]="avoid_stun_%_while_holding_shield" } }, - [4981]={ + [5031]={ [1]={ [1]={ [1]={ @@ -114421,7 +115606,7 @@ return { [1]="axe_mastery_hit_and_ailment_damage_+%_final_vs_enemies_on_low_life" } }, - [4982]={ + [5032]={ [1]={ [1]={ limit={ @@ -114450,7 +115635,7 @@ return { [1]="azmeri_primalist_wisps_found_+%" } }, - [4983]={ + [5033]={ [1]={ [1]={ limit={ @@ -114479,7 +115664,7 @@ return { [1]="azmeri_voodoo_shaman_wisps_found_+%" } }, - [4984]={ + [5034]={ [1]={ [1]={ limit={ @@ -114508,7 +115693,7 @@ return { [1]="azmeri_warden_wisps_found_+%" } }, - [4985]={ + [5035]={ [1]={ [1]={ limit={ @@ -114533,7 +115718,7 @@ return { [1]="ball_lightning_number_of_additional_projectiles" } }, - [4986]={ + [5036]={ [1]={ [1]={ limit={ @@ -114562,7 +115747,7 @@ return { [1]="banner_affected_enemies_damage_taken_+%" } }, - [4987]={ + [5037]={ [1]={ [1]={ limit={ @@ -114578,7 +115763,7 @@ return { [1]="banner_affected_enemies_explode_for_10%_life_as_physical_on_kill_chance_%" } }, - [4988]={ + [5038]={ [1]={ [1]={ [1]={ @@ -114598,7 +115783,7 @@ return { [1]="banner_affected_enemies_maimed" } }, - [4989]={ + [5039]={ [1]={ [1]={ limit={ @@ -114627,7 +115812,7 @@ return { [1]="banner_area_of_effect_+%" } }, - [4990]={ + [5040]={ [1]={ [1]={ [1]={ @@ -114647,7 +115832,7 @@ return { [1]="banner_buff_lingers_for_X_seconds_after_leaving_area" } }, - [4991]={ + [5041]={ [1]={ [1]={ limit={ @@ -114676,7 +115861,7 @@ return { [1]="banner_duration_+%" } }, - [4992]={ + [5042]={ [1]={ [1]={ limit={ @@ -114701,7 +115886,7 @@ return { [1]="banner_gain_X_endurance_charges_when_placed_with_max_resources" } }, - [4993]={ + [5043]={ [1]={ [1]={ limit={ @@ -114726,7 +115911,7 @@ return { [1]="banner_gain_X_frenzy_charges_when_placed_with_max_resources" } }, - [4994]={ + [5044]={ [1]={ [1]={ [1]={ @@ -114759,7 +115944,7 @@ return { [1]="banner_gain_X_resources_on_warcry" } }, - [4995]={ + [5045]={ [1]={ [1]={ [1]={ @@ -114787,7 +115972,23 @@ return { [1]="banner_grant_1_fortify_when_placed_per_X_resources_from_runegraft" } }, - [4996]={ + [5046]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="You and Allies near your Banner have +{0}% to Damage over Time Multiplier per\n2 Valour consumed for that Banner" + } + }, + stats={ + [1]="banner_grant_x_damage_over_time_multiplier_per_2_valour_consumed" + } + }, + [5047]={ [1]={ [1]={ limit={ @@ -114816,7 +116017,7 @@ return { [1]="banner_mana_reservation_+%" } }, - [4997]={ + [5048]={ [1]={ [1]={ limit={ @@ -114832,7 +116033,7 @@ return { [1]="banner_recover_X%_life_when_placed_per_5_resources" } }, - [4998]={ + [5049]={ [1]={ [1]={ [1]={ @@ -114852,7 +116053,7 @@ return { [1]="banner_remove_random_ailment_when_placed_with_X_resources" } }, - [4999]={ + [5050]={ [1]={ [1]={ limit={ @@ -114868,7 +116069,7 @@ return { [1]="banner_resist_all_elements_%" } }, - [5000]={ + [5051]={ [1]={ [1]={ [1]={ @@ -114913,7 +116114,7 @@ return { [1]="banner_resource_gained_+%" } }, - [5001]={ + [5052]={ [1]={ [1]={ [1]={ @@ -114937,7 +116138,7 @@ return { [1]="banner_resource_maximum_+" } }, - [5002]={ + [5053]={ [1]={ [1]={ [1]={ @@ -114974,7 +116175,7 @@ return { [1]="banner_skills_mana_reservation_efficiency_-2%_per_1" } }, - [5003]={ + [5054]={ [1]={ [1]={ limit={ @@ -115003,7 +116204,7 @@ return { [1]="banner_skills_mana_reservation_efficiency_+%" } }, - [5004]={ + [5055]={ [1]={ [1]={ limit={ @@ -115019,7 +116220,7 @@ return { [1]="banner_skills_reserve_no_mana" } }, - [5005]={ + [5056]={ [1]={ [1]={ limit={ @@ -115048,7 +116249,7 @@ return { [1]="barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge" } }, - [5006]={ + [5057]={ [1]={ [1]={ limit={ @@ -115077,7 +116278,7 @@ return { [1]="basalt_flask_armour_+%_final" } }, - [5007]={ + [5058]={ [1]={ [1]={ [1]={ @@ -115114,7 +116315,7 @@ return { [1]="base_ailment_damage_+%" } }, - [5008]={ + [5059]={ [1]={ [1]={ [1]={ @@ -115159,7 +116360,7 @@ return { [1]="base_all_ailment_duration_+%_if_you_have_not_applied_that_ailment_recently" } }, - [5009]={ + [5060]={ [1]={ [1]={ [1]={ @@ -115196,7 +116397,7 @@ return { [1]="base_all_ailment_duration_on_self_+%" } }, - [5010]={ + [5061]={ [1]={ [1]={ [1]={ @@ -115216,7 +116417,7 @@ return { [1]="base_always_inflict_elemental_ailments_you_are_suffering_from" } }, - [5011]={ + [5062]={ [1]={ [1]={ limit={ @@ -115232,7 +116433,23 @@ return { [1]="base_armour_%_applies_to_chaos_damage" } }, - [5012]={ + [5063]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Armour also applies to Lightning Damage taken from Hits" + } + }, + stats={ + [1]="base_armour_%_applies_to_lightning_damage" + } + }, + [5064]={ [1]={ [1]={ limit={ @@ -115248,7 +116465,7 @@ return { [1]="base_armour_applies_to_chaos_damage" } }, - [5013]={ + [5065]={ [1]={ [1]={ limit={ @@ -115264,7 +116481,7 @@ return { [1]="base_armour_applies_to_lightning_damage" } }, - [5014]={ + [5066]={ [1]={ [1]={ limit={ @@ -115280,7 +116497,7 @@ return { [1]="base_arrows_always_pierce" } }, - [5015]={ + [5067]={ [1]={ [1]={ [1]={ @@ -115317,7 +116534,36 @@ return { [1]="base_attack_block_luck" } }, - [5016]={ + [5068]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cost Efficiency of Attacks" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cost Efficiency of Attacks" + } + }, + stats={ + [1]="base_attack_skill_cost_efficiency_+%" + } + }, + [5069]={ [1]={ [1]={ limit={ @@ -115333,7 +116579,7 @@ return { [1]="base_aura_skills_affecting_allies_also_affect_enemies" } }, - [5017]={ + [5070]={ [1]={ [1]={ limit={ @@ -115358,7 +116604,7 @@ return { [1]="base_avoid_projectiles_%_chance" } }, - [5018]={ + [5071]={ [1]={ [1]={ limit={ @@ -115387,7 +116633,7 @@ return { [1]="base_bleed_duration_+%" } }, - [5019]={ + [5072]={ [1]={ [1]={ [1]={ @@ -115424,7 +116670,7 @@ return { [1]="base_block_luck" } }, - [5020]={ + [5073]={ [1]={ [1]={ limit={ @@ -115440,7 +116686,7 @@ return { [1]="base_block_%_damage_taken" } }, - [5021]={ + [5074]={ [1]={ [1]={ limit={ @@ -115469,7 +116715,7 @@ return { [1]="base_bone_golem_granted_buff_effect_+%" } }, - [5022]={ + [5075]={ [1]={ [1]={ limit={ @@ -115485,7 +116731,7 @@ return { [1]="base_cannot_gain_endurance_charges" } }, - [5023]={ + [5076]={ [1]={ [1]={ limit={ @@ -115501,7 +116747,7 @@ return { [1]="base_cannot_leech_energy_shield" } }, - [5024]={ + [5077]={ [1]={ [1]={ limit={ @@ -115526,7 +116772,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [5025]={ + [5078]={ [1]={ [1]={ limit={ @@ -115542,15 +116788,24 @@ return { [1]="base_chaos_damage_can_ignite" } }, - [5026]={ + [5079]={ [1]={ [1]={ limit={ [1]={ - [1]=1, + [1]=100, [2]="#" } }, + text="Chaos Damage taken does not bypass Energy Shield" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, text="{0}% of Chaos Damage taken does not bypass Energy Shield" } }, @@ -115558,7 +116813,7 @@ return { [1]="base_chaos_damage_damages_energy_shield_%" } }, - [5027]={ + [5080]={ [1]={ [1]={ limit={ @@ -115587,7 +116842,7 @@ return { [1]="base_charge_duration_+%" } }, - [5028]={ + [5081]={ [1]={ [1]={ limit={ @@ -115612,7 +116867,7 @@ return { [1]="base_cooldown_refresh_chance_%" } }, - [5029]={ + [5082]={ [1]={ [1]={ limit={ @@ -115641,7 +116896,36 @@ return { [1]="base_cooldown_speed_+%" } }, - [5030]={ + [5083]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cost Efficiency of Retaliation Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cost Efficiency of Retaliation Skills" + } + }, + stats={ + [1]="base_cost_efficiency_+%_of_retaliation_skills" + } + }, + [5084]={ [1]={ [1]={ limit={ @@ -115657,7 +116941,7 @@ return { [1]="base_damage_bypass_ward_%" } }, - [5031]={ + [5085]={ [1]={ [1]={ limit={ @@ -115673,7 +116957,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [5032]={ + [5086]={ [1]={ [1]={ limit={ @@ -115689,7 +116973,7 @@ return { [1]="base_deal_no_fire_damage" } }, - [5033]={ + [5087]={ [1]={ [1]={ limit={ @@ -115705,7 +116989,7 @@ return { [1]="base_deal_no_lightning_damage" } }, - [5034]={ + [5088]={ [1]={ [1]={ limit={ @@ -115721,7 +117005,7 @@ return { [1]="base_elemental_skill_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items" } }, - [5035]={ + [5089]={ [1]={ [1]={ limit={ @@ -115737,7 +117021,7 @@ return { [1]="base_elemental_support_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items" } }, - [5036]={ + [5090]={ [1]={ [1]={ [1]={ @@ -115774,7 +117058,7 @@ return { [1]="base_enemy_extra_damage_rolls" } }, - [5037]={ + [5091]={ [1]={ [1]={ [1]={ @@ -115798,7 +117082,7 @@ return { [1]="base_energy_shield_leech_from_chaos_damage_permyriad" } }, - [5038]={ + [5092]={ [1]={ [1]={ [1]={ @@ -115822,7 +117106,7 @@ return { [1]="base_energy_shield_leech_from_cold_damage_permyriad" } }, - [5039]={ + [5093]={ [1]={ [1]={ [1]={ @@ -115846,7 +117130,7 @@ return { [1]="base_energy_shield_leech_from_elemental_damage_permyriad" } }, - [5040]={ + [5094]={ [1]={ [1]={ [1]={ @@ -115870,7 +117154,7 @@ return { [1]="base_energy_shield_leech_from_fire_damage_permyriad" } }, - [5041]={ + [5095]={ [1]={ [1]={ [1]={ @@ -115894,7 +117178,7 @@ return { [1]="base_energy_shield_leech_from_lightning_damage_permyriad" } }, - [5042]={ + [5096]={ [1]={ [1]={ [1]={ @@ -115918,7 +117202,7 @@ return { [1]="base_energy_shield_leech_from_physical_damage_permyriad" } }, - [5043]={ + [5097]={ [1]={ [1]={ limit={ @@ -115943,7 +117227,7 @@ return { [1]="base_extra_damage_rolls" } }, - [5044]={ + [5098]={ [1]={ [1]={ limit={ @@ -115972,7 +117256,7 @@ return { [1]="base_frozen_effect_on_self_+%" } }, - [5045]={ + [5099]={ [1]={ [1]={ [1]={ @@ -115996,7 +117280,7 @@ return { [1]="base_ghost_totem_duration" } }, - [5046]={ + [5100]={ [1]={ [1]={ [1]={ @@ -116016,7 +117300,7 @@ return { [1]="base_immune_to_cold_ailments" } }, - [5047]={ + [5101]={ [1]={ [1]={ limit={ @@ -116032,7 +117316,7 @@ return { [1]="base_immune_to_freeze" } }, - [5048]={ + [5102]={ [1]={ [1]={ limit={ @@ -116048,7 +117332,7 @@ return { [1]="base_immune_to_ignite" } }, - [5049]={ + [5103]={ [1]={ [1]={ limit={ @@ -116064,7 +117348,7 @@ return { [1]="base_immune_to_shock" } }, - [5050]={ + [5104]={ [1]={ [1]={ [1]={ @@ -116097,7 +117381,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [5051]={ + [5105]={ [1]={ [1]={ [1]={ @@ -116130,7 +117414,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [5052]={ + [5106]={ [1]={ [1]={ [1]={ @@ -116163,7 +117447,36 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [5053]={ + [5107]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Life Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Life Cost Efficiency" + } + }, + stats={ + [1]="base_life_cost_efficiency_+%" + } + }, + [5108]={ [1]={ [1]={ limit={ @@ -116179,7 +117492,7 @@ return { [1]="base_life_leech_applies_recovery_to_energy_shield" } }, - [5054]={ + [5109]={ [1]={ [1]={ [1]={ @@ -116199,7 +117512,334 @@ return { [1]="base_main_hand_maim_on_hit_%" } }, - [5055]={ + [5110]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%" + } + }, + [5111]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency for 2 seconds after Spending a total of 800 Mana" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency for 2 seconds after Spending a total of 800 Mana" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_for_2_seconds_when_you_spend_800_mana" + } + }, + [5112]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Curse Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Curse Skills" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_curse_skills" + } + }, + [5113]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Link Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Link Skills" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_link_skills" + } + }, + [5114]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Mark Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Mark Skills" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_mark_skills" + } + }, + [5115]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Minion Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Minion Skills" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_minion_skills" + } + }, + [5116]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Retaliation Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Retaliation Skills" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_retaliation_skills" + } + }, + [5117]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Skills which throw Traps or Mines" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Skills which throw Traps or Mines" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_of_trap_and_mine_skills" + } + }, + [5118]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency per 10 Devotion" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency per 10 Devotion" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_per_10_devotion" + } + }, + [5119]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency per Endurance Charge" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency per Endurance Charge" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_per_endurance_charge" + } + }, + [5120]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLowMana" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency while on Low Mana" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextLowMana" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency while on Low Mana" + } + }, + stats={ + [1]="base_mana_cost_efficiency_+%_while_on_low_mana" + } + }, + [5121]={ [1]={ [1]={ limit={ @@ -116215,7 +117855,7 @@ return { [1]="base_max_fortification" } }, - [5056]={ + [5122]={ [1]={ [1]={ limit={ @@ -116244,7 +117884,7 @@ return { [1]="base_minion_duration_+%" } }, - [5057]={ + [5123]={ [1]={ [1]={ limit={ @@ -116260,7 +117900,7 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [5058]={ + [5124]={ [1]={ [1]={ limit={ @@ -116285,7 +117925,7 @@ return { [1]="base_number_of_herald_scorpions_allowed" } }, - [5059]={ + [5125]={ [1]={ [1]={ limit={ @@ -116301,7 +117941,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [5060]={ + [5126]={ [1]={ [1]={ limit={ @@ -116317,7 +117957,7 @@ return { [1]="base_number_of_sacred_wisps_allowed" } }, - [5061]={ + [5127]={ [1]={ [1]={ limit={ @@ -116342,7 +117982,7 @@ return { [1]="base_number_of_sigils_allowed_per_target" } }, - [5062]={ + [5128]={ [1]={ [1]={ limit={ @@ -116358,7 +117998,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [5063]={ + [5129]={ [1]={ [1]={ [1]={ @@ -116378,7 +118018,7 @@ return { [1]="base_off_hand_chance_to_blind_on_hit_%" } }, - [5064]={ + [5130]={ [1]={ [1]={ [1]={ @@ -116411,7 +118051,7 @@ return { [1]="base_onlsaught_on_hit_%_chance" } }, - [5065]={ + [5131]={ [1]={ [1]={ limit={ @@ -116444,7 +118084,7 @@ return { [1]="base_physical_damage_over_time_taken_+%" } }, - [5066]={ + [5132]={ [1]={ [1]={ limit={ @@ -116460,7 +118100,7 @@ return { [1]="base_physical_damage_%_to_convert_to_chaos_per_level" } }, - [5067]={ + [5133]={ [1]={ [1]={ limit={ @@ -116476,7 +118116,7 @@ return { [1]="base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred" } }, - [5068]={ + [5134]={ [1]={ [1]={ limit={ @@ -116492,7 +118132,7 @@ return { [1]="base_physical_damage_%_to_convert_to_fire_while_affected_by_anger" } }, - [5069]={ + [5135]={ [1]={ [1]={ limit={ @@ -116508,7 +118148,65 @@ return { [1]="base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath" } }, - [5070]={ + [5136]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Rage Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Rage Cost Efficiency" + } + }, + stats={ + [1]="base_rage_cost_efficiency_+%" + } + }, + [5137]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cost Efficiency" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cost Efficiency" + } + }, + stats={ + [1]="base_skill_cost_efficiency_+%" + } + }, + [5138]={ [1]={ [1]={ limit={ @@ -116524,7 +118222,7 @@ return { [1]="base_skill_cost_life_instead_of_mana_%" } }, - [5071]={ + [5139]={ [1]={ [1]={ limit={ @@ -116540,7 +118238,7 @@ return { [1]="base_skill_gain_es_cost_%_of_mana_cost" } }, - [5072]={ + [5140]={ [1]={ [1]={ limit={ @@ -116556,7 +118254,7 @@ return { [1]="base_skill_gain_life_cost_%_of_mana_cost" } }, - [5073]={ + [5141]={ [1]={ [1]={ limit={ @@ -116572,7 +118270,7 @@ return { [1]="base_skills_cost_es_instead_of_mana_life" } }, - [5074]={ + [5142]={ [1]={ [1]={ limit={ @@ -116588,7 +118286,36 @@ return { [1]="base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon" } }, - [5075]={ + [5143]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Spells" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Spells" + } + }, + stats={ + [1]="base_spell_mana_cost_efficiency_+%" + } + }, + [5144]={ [1]={ [1]={ limit={ @@ -116604,7 +118331,94 @@ return { [1]="base_spell_projectile_block_%" } }, - [5076]={ + [5145]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cost Efficiency of Spells" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cost Efficiency of Spells" + } + }, + stats={ + [1]="base_spell_skill_cost_efficiency_+%" + } + }, + [5146]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost Efficiency of Spells you Cast yourself" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost Efficiency of Spells you Cast yourself" + } + }, + stats={ + [1]="base_spells_you_cast_yourself_mana_cost_efficiency_+%" + } + }, + [5147]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cost Efficiency of Spells you Cast yourself" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cost Efficiency of Spells you Cast yourself" + } + }, + stats={ + [1]="base_spells_you_cast_yourself_skill_cost_efficiency_+%" + } + }, + [5148]={ [1]={ [1]={ limit={ @@ -116633,7 +118447,7 @@ return { [1]="base_tincture_mod_effect_+%" } }, - [5077]={ + [5149]={ [1]={ [1]={ limit={ @@ -116658,7 +118472,7 @@ return { [1]="base_total_number_of_sigils_allowed" } }, - [5078]={ + [5150]={ [1]={ [1]={ [1]={ @@ -116678,7 +118492,7 @@ return { [1]="base_unaffected_by_bleeding" } }, - [5079]={ + [5151]={ [1]={ [1]={ [1]={ @@ -116698,7 +118512,7 @@ return { [1]="base_unaffected_by_poison" } }, - [5080]={ + [5152]={ [1]={ [1]={ limit={ @@ -116727,7 +118541,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [5081]={ + [5153]={ [1]={ [1]={ [1]={ @@ -116752,7 +118566,7 @@ return { [2]="quality_display_blade_trap_is_gem" } }, - [5082]={ + [5154]={ [1]={ [1]={ limit={ @@ -116768,7 +118582,7 @@ return { [1]="base_your_auras_are_disabled" } }, - [5083]={ + [5155]={ [1]={ [1]={ limit={ @@ -116797,7 +118611,7 @@ return { [1]="battlemages_cry_buff_effect_+%" } }, - [5084]={ + [5156]={ [1]={ [1]={ limit={ @@ -116822,7 +118636,7 @@ return { [1]="battlemages_cry_exerts_x_additional_attacks" } }, - [5085]={ + [5157]={ [1]={ [1]={ limit={ @@ -116838,7 +118652,7 @@ return { [1]="brequel_misc_fruit_additional_item_%" } }, - [5086]={ + [5158]={ [1]={ [1]={ limit={ @@ -116854,7 +118668,7 @@ return { [1]="brequel_unique_fruit_special_unique_chance_+%" } }, - [5087]={ + [5159]={ [1]={ [1]={ limit={ @@ -116870,7 +118684,7 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [5088]={ + [5160]={ [1]={ [1]={ limit={ @@ -116899,7 +118713,7 @@ return { [1]="bear_trap_additional_damage_taken_+%_from_traps_and_mines" } }, - [5089]={ + [5161]={ [1]={ [1]={ limit={ @@ -116928,7 +118742,7 @@ return { [1]="bear_trap_damage_taken_+%_from_traps_and_mines" } }, - [5090]={ + [5162]={ [1]={ [1]={ limit={ @@ -116957,7 +118771,7 @@ return { [1]="bear_trap_movement_speed_+%_final" } }, - [5091]={ + [5163]={ [1]={ [1]={ limit={ @@ -116986,7 +118800,7 @@ return { [1]="belt_enchant_enemies_you_taunt_have_area_damage_+%_final" } }, - [5092]={ + [5164]={ [1]={ [1]={ limit={ @@ -117015,7 +118829,7 @@ return { [1]="berserk_buff_effect_+%" } }, - [5093]={ + [5165]={ [1]={ [1]={ limit={ @@ -117048,7 +118862,7 @@ return { [1]="berserk_rage_loss_+%" } }, - [5094]={ + [5166]={ [1]={ [1]={ [1]={ @@ -117072,7 +118886,7 @@ return { [1]="berserker_gain_rage_on_attack_hit_cooldown_ms" } }, - [5095]={ + [5167]={ [1]={ [1]={ [1]={ @@ -117092,7 +118906,7 @@ return { [1]="berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage" } }, - [5096]={ + [5168]={ [1]={ [1]={ [1]={ @@ -117112,7 +118926,7 @@ return { [1]="berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies" } }, - [5097]={ + [5169]={ [1]={ [1]={ [1]={ @@ -117132,7 +118946,7 @@ return { [1]="berserker_warcry_grant_damage_+%_to_you_and_nearby_allies" } }, - [5098]={ + [5170]={ [1]={ [1]={ [1]={ @@ -117165,7 +118979,7 @@ return { [1]="berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final" } }, - [5099]={ + [5171]={ [1]={ [1]={ limit={ @@ -117181,7 +118995,7 @@ return { [1]="bird_aspect_reserves_no_mana" } }, - [5100]={ + [5172]={ [1]={ [1]={ limit={ @@ -117210,7 +119024,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [5101]={ + [5173]={ [1]={ [1]={ limit={ @@ -117239,7 +119053,7 @@ return { [1]="blackhole_pulse_frequency_+%" } }, - [5102]={ + [5174]={ [1]={ [1]={ limit={ @@ -117268,7 +119082,7 @@ return { [1]="blackstar_moonlight_cold_damage_taken_+%_final" } }, - [5103]={ + [5175]={ [1]={ [1]={ limit={ @@ -117297,7 +119111,7 @@ return { [1]="blackstar_moonlight_fire_damage_taken_+%_final" } }, - [5104]={ + [5176]={ [1]={ [1]={ limit={ @@ -117326,7 +119140,7 @@ return { [1]="blackstar_sunlight_cold_damage_taken_+%_final" } }, - [5105]={ + [5177]={ [1]={ [1]={ limit={ @@ -117355,7 +119169,7 @@ return { [1]="blackstar_sunlight_fire_damage_taken_+%_final" } }, - [5106]={ + [5178]={ [1]={ [1]={ limit={ @@ -117384,7 +119198,7 @@ return { [1]="blade_blase_damage_+%" } }, - [5107]={ + [5179]={ [1]={ [1]={ limit={ @@ -117413,7 +119227,7 @@ return { [1]="blade_blast_skill_area_of_effect_+%" } }, - [5108]={ + [5180]={ [1]={ [1]={ limit={ @@ -117442,7 +119256,7 @@ return { [1]="blade_blast_trigger_detonation_area_of_effect_+%" } }, - [5109]={ + [5181]={ [1]={ [1]={ limit={ @@ -117471,7 +119285,7 @@ return { [1]="blade_trap_damage_+%" } }, - [5110]={ + [5182]={ [1]={ [1]={ limit={ @@ -117500,7 +119314,7 @@ return { [1]="blade_trap_skill_area_of_effect_+%" } }, - [5111]={ + [5183]={ [1]={ [1]={ limit={ @@ -117529,7 +119343,7 @@ return { [1]="blade_trap_skill_area_of_effect_+%_final" } }, - [5112]={ + [5184]={ [1]={ [1]={ [1]={ @@ -117562,7 +119376,7 @@ return { [1]="blade_vortex_blade_blast_impale_on_hit_%_chance" } }, - [5113]={ + [5185]={ [1]={ [1]={ limit={ @@ -117578,7 +119392,7 @@ return { [1]="blade_vortex_blade_deal_no_non_physical_damage" } }, - [5114]={ + [5186]={ [1]={ [1]={ limit={ @@ -117594,7 +119408,7 @@ return { [1]="blade_vortex_critical_strike_multiplier_+_per_blade" } }, - [5115]={ + [5187]={ [1]={ [1]={ limit={ @@ -117628,7 +119442,7 @@ return { [2]="quality_display_bladefall_is_gem" } }, - [5116]={ + [5188]={ [1]={ [1]={ limit={ @@ -117644,7 +119458,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [5117]={ + [5189]={ [1]={ [1]={ limit={ @@ -117673,7 +119487,7 @@ return { [1]="bladestorm_damage_+%" } }, - [5118]={ + [5190]={ [1]={ [1]={ limit={ @@ -117707,7 +119521,7 @@ return { [2]="quality_display_bladestorm_is_gem" } }, - [5119]={ + [5191]={ [1]={ [1]={ limit={ @@ -117736,7 +119550,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [5120]={ + [5192]={ [1]={ [1]={ [1]={ @@ -117756,7 +119570,7 @@ return { [1]="blast_rain_artillery_ballista_all_damage_can_poison" } }, - [5121]={ + [5193]={ [1]={ [1]={ [1]={ @@ -117776,7 +119590,7 @@ return { [1]="blast_rain_artillery_ballista_poison_damage_+100%_final_chance" } }, - [5122]={ + [5194]={ [1]={ [1]={ limit={ @@ -117805,7 +119619,7 @@ return { [1]="blazing_salvo_damage_+%" } }, - [5123]={ + [5195]={ [1]={ [1]={ limit={ @@ -117830,7 +119644,7 @@ return { [1]="blazing_salvo_number_of_additional_projectiles" } }, - [5124]={ + [5196]={ [1]={ [1]={ limit={ @@ -117846,7 +119660,7 @@ return { [1]="blazing_salvo_projectiles_fork_when_passing_a_flame_wall" } }, - [5125]={ + [5197]={ [1]={ [1]={ limit={ @@ -117875,7 +119689,7 @@ return { [1]="bleed_damage_+%_per_endurance_charge" } }, - [5126]={ + [5198]={ [1]={ [1]={ limit={ @@ -117891,7 +119705,7 @@ return { [1]="bleed_dot_multiplier_+_per_impale_on_enemy" } }, - [5127]={ + [5199]={ [1]={ [1]={ [1]={ @@ -117911,7 +119725,7 @@ return { [1]="bleed_dot_multiplier_+_per_rage_if_equipped_axe" } }, - [5128]={ + [5200]={ [1]={ [1]={ limit={ @@ -117940,7 +119754,7 @@ return { [1]="bleeding_damage_+%_vs_maimed_enemies" } }, - [5129]={ + [5201]={ [1]={ [1]={ limit={ @@ -117969,7 +119783,7 @@ return { [1]="bleeding_damage_+%_vs_poisoned_enemies" } }, - [5130]={ + [5202]={ [1]={ [1]={ limit={ @@ -117994,7 +119808,7 @@ return { [1]="bleeding_dot_multiplier_per_frenzy_charge_+" } }, - [5131]={ + [5203]={ [1]={ [1]={ limit={ @@ -118010,7 +119824,7 @@ return { [1]="bleeding_dot_multiplier_+_per_endurance_charge" } }, - [5132]={ + [5204]={ [1]={ [1]={ limit={ @@ -118039,7 +119853,7 @@ return { [1]="bleeding_dot_multiplier_+_vs_poisoned_enemies" } }, - [5133]={ + [5205]={ [1]={ [1]={ limit={ @@ -118068,7 +119882,7 @@ return { [1]="bleeding_on_self_expire_speed_+%_while_moving" } }, - [5134]={ + [5206]={ [1]={ [1]={ [1]={ @@ -118088,7 +119902,7 @@ return { [1]="bleeding_reflected_to_self" } }, - [5135]={ + [5207]={ [1]={ [1]={ limit={ @@ -118104,7 +119918,7 @@ return { [1]="bleeding_stacks_up_to_x_times" } }, - [5136]={ + [5208]={ [1]={ [1]={ limit={ @@ -118120,7 +119934,7 @@ return { [1]="blight_arc_tower_additional_chains" } }, - [5137]={ + [5209]={ [1]={ [1]={ limit={ @@ -118136,7 +119950,7 @@ return { [1]="blight_arc_tower_additional_repeats" } }, - [5138]={ + [5210]={ [1]={ [1]={ limit={ @@ -118152,7 +119966,7 @@ return { [1]="blight_arc_tower_chance_to_sap_%" } }, - [5139]={ + [5211]={ [1]={ [1]={ limit={ @@ -118181,7 +119995,7 @@ return { [1]="blight_arc_tower_damage_+%" } }, - [5140]={ + [5212]={ [1]={ [1]={ limit={ @@ -118210,7 +120024,7 @@ return { [1]="blight_arc_tower_range_+%" } }, - [5141]={ + [5213]={ [1]={ [1]={ limit={ @@ -118226,7 +120040,7 @@ return { [1]="blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [5142]={ + [5214]={ [1]={ [1]={ limit={ @@ -118255,7 +120069,7 @@ return { [1]="blight_cast_speed_+%" } }, - [5143]={ + [5215]={ [1]={ [1]={ [1]={ @@ -118288,7 +120102,7 @@ return { [1]="blight_chilling_tower_chill_effect_+%" } }, - [5144]={ + [5216]={ [1]={ [1]={ limit={ @@ -118317,7 +120131,7 @@ return { [1]="blight_chilling_tower_damage_+%" } }, - [5145]={ + [5217]={ [1]={ [1]={ [1]={ @@ -118350,7 +120164,7 @@ return { [1]="blight_chilling_tower_duration_+%" } }, - [5146]={ + [5218]={ [1]={ [1]={ [1]={ @@ -118374,7 +120188,7 @@ return { [1]="blight_chilling_tower_freeze_for_ms" } }, - [5147]={ + [5219]={ [1]={ [1]={ limit={ @@ -118403,7 +120217,7 @@ return { [1]="blight_chilling_tower_range_+%" } }, - [5148]={ + [5220]={ [1]={ [1]={ limit={ @@ -118432,7 +120246,7 @@ return { [1]="blight_empowering_tower_buff_effect_+%" } }, - [5149]={ + [5221]={ [1]={ [1]={ limit={ @@ -118461,7 +120275,7 @@ return { [1]="blight_empowering_tower_grant_cast_speed_+%" } }, - [5150]={ + [5222]={ [1]={ [1]={ limit={ @@ -118490,7 +120304,7 @@ return { [1]="blight_empowering_tower_grant_damage_+%" } }, - [5151]={ + [5223]={ [1]={ [1]={ limit={ @@ -118515,7 +120329,7 @@ return { [1]="blight_empowering_tower_grant_%_chance_to_deal_double_damage" } }, - [5152]={ + [5224]={ [1]={ [1]={ limit={ @@ -118544,7 +120358,7 @@ return { [1]="blight_empowering_tower_range_+%" } }, - [5153]={ + [5225]={ [1]={ [1]={ limit={ @@ -118569,7 +120383,7 @@ return { [1]="blight_fireball_tower_additional_projectiles_+" } }, - [5154]={ + [5226]={ [1]={ [1]={ limit={ @@ -118598,7 +120412,7 @@ return { [1]="blight_fireball_tower_cast_speed_+%" } }, - [5155]={ + [5227]={ [1]={ [1]={ limit={ @@ -118627,7 +120441,7 @@ return { [1]="blight_fireball_tower_damage_+%" } }, - [5156]={ + [5228]={ [1]={ [1]={ limit={ @@ -118643,7 +120457,7 @@ return { [1]="blight_fireball_tower_projectiles_nova" } }, - [5157]={ + [5229]={ [1]={ [1]={ limit={ @@ -118672,7 +120486,7 @@ return { [1]="blight_fireball_tower_range_+%" } }, - [5158]={ + [5230]={ [1]={ [1]={ limit={ @@ -118701,7 +120515,7 @@ return { [1]="blight_flamethrower_tower_cast_speed_+%" } }, - [5159]={ + [5231]={ [1]={ [1]={ limit={ @@ -118717,7 +120531,7 @@ return { [1]="blight_flamethrower_tower_chance_to_scorch_%" } }, - [5160]={ + [5232]={ [1]={ [1]={ limit={ @@ -118746,7 +120560,7 @@ return { [1]="blight_flamethrower_tower_damage_+%" } }, - [5161]={ + [5233]={ [1]={ [1]={ limit={ @@ -118762,7 +120576,7 @@ return { [1]="blight_flamethrower_tower_full_damage_fire_enemies" } }, - [5162]={ + [5234]={ [1]={ [1]={ limit={ @@ -118791,7 +120605,7 @@ return { [1]="blight_flamethrower_tower_range_+%" } }, - [5163]={ + [5235]={ [1]={ [1]={ limit={ @@ -118807,7 +120621,7 @@ return { [1]="blight_freezebolt_tower_chance_to_brittle_%" } }, - [5164]={ + [5236]={ [1]={ [1]={ limit={ @@ -118836,7 +120650,7 @@ return { [1]="blight_freezebolt_tower_damage_+%" } }, - [5165]={ + [5237]={ [1]={ [1]={ limit={ @@ -118852,7 +120666,7 @@ return { [1]="blight_freezebolt_tower_full_damage_cold_enemies" } }, - [5166]={ + [5238]={ [1]={ [1]={ limit={ @@ -118877,7 +120691,7 @@ return { [1]="blight_freezebolt_tower_projectiles_+" } }, - [5167]={ + [5239]={ [1]={ [1]={ limit={ @@ -118906,7 +120720,7 @@ return { [1]="blight_freezebolt_tower_range_+%" } }, - [5168]={ + [5240]={ [1]={ [1]={ limit={ @@ -118922,7 +120736,7 @@ return { [1]="blight_glacialcage_tower_area_of_effect_+%" } }, - [5169]={ + [5241]={ [1]={ [1]={ limit={ @@ -118951,7 +120765,7 @@ return { [1]="blight_glacialcage_tower_cooldown_recovery_+%" } }, - [5170]={ + [5242]={ [1]={ [1]={ limit={ @@ -118980,7 +120794,7 @@ return { [1]="blight_glacialcage_tower_duration_+%" } }, - [5171]={ + [5243]={ [1]={ [1]={ limit={ @@ -119009,7 +120823,7 @@ return { [1]="blight_glacialcage_tower_enemy_damage_taken_+%" } }, - [5172]={ + [5244]={ [1]={ [1]={ limit={ @@ -119038,7 +120852,7 @@ return { [1]="blight_glacialcage_tower_range_+%" } }, - [5173]={ + [5245]={ [1]={ [1]={ limit={ @@ -119054,7 +120868,7 @@ return { [1]="blight_hinder_enemy_chaos_damage_taken_+%" } }, - [5174]={ + [5246]={ [1]={ [1]={ limit={ @@ -119083,7 +120897,7 @@ return { [1]="blight_imbuing_tower_buff_effect_+%" } }, - [5175]={ + [5247]={ [1]={ [1]={ limit={ @@ -119112,7 +120926,7 @@ return { [1]="blight_imbuing_tower_grant_critical_strike_+%" } }, - [5176]={ + [5248]={ [1]={ [1]={ limit={ @@ -119141,7 +120955,7 @@ return { [1]="blight_imbuing_tower_grant_damage_+%" } }, - [5177]={ + [5249]={ [1]={ [1]={ limit={ @@ -119157,7 +120971,7 @@ return { [1]="blight_imbuing_tower_grants_onslaught" } }, - [5178]={ + [5250]={ [1]={ [1]={ limit={ @@ -119186,7 +121000,7 @@ return { [1]="blight_imbuing_tower_range_+%" } }, - [5179]={ + [5251]={ [1]={ [1]={ limit={ @@ -119215,7 +121029,7 @@ return { [1]="blight_lightningstorm_tower_area_of_effect_+%" } }, - [5180]={ + [5252]={ [1]={ [1]={ limit={ @@ -119244,7 +121058,7 @@ return { [1]="blight_lightningstorm_tower_damage_+%" } }, - [5181]={ + [5253]={ [1]={ [1]={ limit={ @@ -119273,7 +121087,7 @@ return { [1]="blight_lightningstorm_tower_delay_+%" } }, - [5182]={ + [5254]={ [1]={ [1]={ limit={ @@ -119302,7 +121116,7 @@ return { [1]="blight_lightningstorm_tower_range_+%" } }, - [5183]={ + [5255]={ [1]={ [1]={ limit={ @@ -119318,7 +121132,7 @@ return { [1]="blight_lightningstorm_tower_storms_on_enemies" } }, - [5184]={ + [5256]={ [1]={ [1]={ limit={ @@ -119343,7 +121157,7 @@ return { [1]="blight_meteor_tower_additional_meteor_+" } }, - [5185]={ + [5257]={ [1]={ [1]={ limit={ @@ -119359,7 +121173,7 @@ return { [1]="blight_meteor_tower_always_stun" } }, - [5186]={ + [5258]={ [1]={ [1]={ [1]={ @@ -119379,7 +121193,7 @@ return { [1]="blight_meteor_tower_creates_burning_ground_ms" } }, - [5187]={ + [5259]={ [1]={ [1]={ limit={ @@ -119408,7 +121222,7 @@ return { [1]="blight_meteor_tower_damage_+%" } }, - [5188]={ + [5260]={ [1]={ [1]={ limit={ @@ -119437,7 +121251,7 @@ return { [1]="blight_meteor_tower_range_+%" } }, - [5189]={ + [5261]={ [1]={ [1]={ limit={ @@ -119475,7 +121289,7 @@ return { [1]="blight_scout_tower_additional_minions_+" } }, - [5190]={ + [5262]={ [1]={ [1]={ limit={ @@ -119504,7 +121318,7 @@ return { [1]="blight_scout_tower_minion_damage_+%" } }, - [5191]={ + [5263]={ [1]={ [1]={ limit={ @@ -119533,7 +121347,7 @@ return { [1]="blight_scout_tower_minion_life_+%" } }, - [5192]={ + [5264]={ [1]={ [1]={ limit={ @@ -119562,7 +121376,7 @@ return { [1]="blight_scout_tower_minion_movement_speed_+%" } }, - [5193]={ + [5265]={ [1]={ [1]={ limit={ @@ -119578,7 +121392,7 @@ return { [1]="blight_scout_tower_minions_inflict_malediction" } }, - [5194]={ + [5266]={ [1]={ [1]={ limit={ @@ -119607,7 +121421,7 @@ return { [1]="blight_scout_tower_range_+%" } }, - [5195]={ + [5267]={ [1]={ [1]={ limit={ @@ -119636,7 +121450,7 @@ return { [1]="blight_secondary_skill_effect_duration_+%" } }, - [5196]={ + [5268]={ [1]={ [1]={ limit={ @@ -119661,7 +121475,7 @@ return { [1]="blight_seismic_tower_additional_cascades_+" } }, - [5197]={ + [5269]={ [1]={ [1]={ limit={ @@ -119690,7 +121504,7 @@ return { [1]="blight_seismic_tower_cascade_range_+%" } }, - [5198]={ + [5270]={ [1]={ [1]={ limit={ @@ -119719,7 +121533,7 @@ return { [1]="blight_seismic_tower_damage_+%" } }, - [5199]={ + [5271]={ [1]={ [1]={ limit={ @@ -119748,7 +121562,7 @@ return { [1]="blight_seismic_tower_range_+%" } }, - [5200]={ + [5272]={ [1]={ [1]={ limit={ @@ -119777,7 +121591,7 @@ return { [1]="blight_seismic_tower_stun_duration_+%" } }, - [5201]={ + [5273]={ [1]={ [1]={ limit={ @@ -119806,7 +121620,7 @@ return { [1]="blight_sentinel_tower_minion_damage_+%" } }, - [5202]={ + [5274]={ [1]={ [1]={ limit={ @@ -119835,7 +121649,7 @@ return { [1]="blight_sentinel_tower_minion_life_+%" } }, - [5203]={ + [5275]={ [1]={ [1]={ limit={ @@ -119864,7 +121678,7 @@ return { [1]="blight_sentinel_tower_minion_movement_speed_+%" } }, - [5204]={ + [5276]={ [1]={ [1]={ [1]={ @@ -119888,7 +121702,7 @@ return { [1]="blight_sentinel_tower_minions_life_leech_%" } }, - [5205]={ + [5277]={ [1]={ [1]={ limit={ @@ -119917,7 +121731,7 @@ return { [1]="blight_sentinel_tower_range_+%" } }, - [5206]={ + [5278]={ [1]={ [1]={ limit={ @@ -119946,7 +121760,7 @@ return { [1]="blight_shocking_tower_damage_+%" } }, - [5207]={ + [5279]={ [1]={ [1]={ limit={ @@ -119975,7 +121789,7 @@ return { [1]="blight_shocking_tower_range_+%" } }, - [5208]={ + [5280]={ [1]={ [1]={ limit={ @@ -119991,7 +121805,7 @@ return { [1]="blight_shocknova_tower_full_damage_lightning_enemies" } }, - [5209]={ + [5281]={ [1]={ [1]={ limit={ @@ -120007,7 +121821,7 @@ return { [1]="blight_shocknova_tower_shock_additional_repeats" } }, - [5210]={ + [5282]={ [1]={ [1]={ limit={ @@ -120036,7 +121850,7 @@ return { [1]="blight_shocknova_tower_shock_effect_+%" } }, - [5211]={ + [5283]={ [1]={ [1]={ limit={ @@ -120065,7 +121879,7 @@ return { [1]="blight_shocknova_tower_shock_repeats_with_area_effect_+%" } }, - [5212]={ + [5284]={ [1]={ [1]={ limit={ @@ -120094,7 +121908,7 @@ return { [1]="blight_skill_area_of_effect_+%_after_1_second_channelling" } }, - [5213]={ + [5285]={ [1]={ [1]={ limit={ @@ -120123,7 +121937,7 @@ return { [1]="blight_smothering_tower_buff_effect_+%" } }, - [5214]={ + [5286]={ [1]={ [1]={ limit={ @@ -120139,7 +121953,7 @@ return { [1]="blight_smothering_tower_freeze_shock_ignite_%" } }, - [5215]={ + [5287]={ [1]={ [1]={ limit={ @@ -120168,7 +121982,7 @@ return { [1]="blight_smothering_tower_grant_damage_+%" } }, - [5216]={ + [5288]={ [1]={ [1]={ limit={ @@ -120197,7 +122011,7 @@ return { [1]="blight_smothering_tower_grant_movement_speed_+%" } }, - [5217]={ + [5289]={ [1]={ [1]={ limit={ @@ -120226,7 +122040,7 @@ return { [1]="blight_smothering_tower_range_+%" } }, - [5218]={ + [5290]={ [1]={ [1]={ limit={ @@ -120255,7 +122069,7 @@ return { [1]="blight_stonegaze_tower_cooldown_recovery_+%" } }, - [5219]={ + [5291]={ [1]={ [1]={ limit={ @@ -120284,7 +122098,7 @@ return { [1]="blight_stonegaze_tower_duration_+%" } }, - [5220]={ + [5292]={ [1]={ [1]={ limit={ @@ -120300,7 +122114,7 @@ return { [1]="blight_stonegaze_tower_petrified_enemies_take_damage_+%" } }, - [5221]={ + [5293]={ [1]={ [1]={ limit={ @@ -120329,7 +122143,7 @@ return { [1]="blight_stonegaze_tower_petrify_tick_speed_+%" } }, - [5222]={ + [5294]={ [1]={ [1]={ limit={ @@ -120358,7 +122172,7 @@ return { [1]="blight_stonegaze_tower_range_+%" } }, - [5223]={ + [5295]={ [1]={ [1]={ limit={ @@ -120387,7 +122201,7 @@ return { [1]="blight_summoning_tower_minion_damage_+%" } }, - [5224]={ + [5296]={ [1]={ [1]={ limit={ @@ -120416,7 +122230,7 @@ return { [1]="blight_summoning_tower_minion_life_+%" } }, - [5225]={ + [5297]={ [1]={ [1]={ limit={ @@ -120445,7 +122259,7 @@ return { [1]="blight_summoning_tower_minion_movement_speed_+%" } }, - [5226]={ + [5298]={ [1]={ [1]={ limit={ @@ -120461,7 +122275,7 @@ return { [1]="blight_summoning_tower_minions_summoned_+" } }, - [5227]={ + [5299]={ [1]={ [1]={ limit={ @@ -120490,7 +122304,7 @@ return { [1]="blight_summoning_tower_range_+%" } }, - [5228]={ + [5300]={ [1]={ [1]={ limit={ @@ -120519,7 +122333,7 @@ return { [1]="blight_temporal_tower_buff_effect_+%" } }, - [5229]={ + [5301]={ [1]={ [1]={ limit={ @@ -120548,7 +122362,7 @@ return { [1]="blight_temporal_tower_grant_you_action_speed_-%" } }, - [5230]={ + [5302]={ [1]={ [1]={ limit={ @@ -120564,7 +122378,7 @@ return { [1]="blight_temporal_tower_grants_stun_immunity" } }, - [5231]={ + [5303]={ [1]={ [1]={ limit={ @@ -120593,7 +122407,7 @@ return { [1]="blight_temporal_tower_range_+%" } }, - [5232]={ + [5304]={ [1]={ [1]={ limit={ @@ -120622,7 +122436,7 @@ return { [1]="blight_temporal_tower_tick_speed_+%" } }, - [5233]={ + [5305]={ [1]={ [1]={ [1]={ @@ -120642,7 +122456,7 @@ return { [1]="blight_tertiary_skill_effect_duration" } }, - [5234]={ + [5306]={ [1]={ [1]={ limit={ @@ -120671,7 +122485,7 @@ return { [1]="blight_tower_arc_damage_+%" } }, - [5235]={ + [5307]={ [1]={ [1]={ limit={ @@ -120700,7 +122514,7 @@ return { [1]="blight_tower_chilling_cost_+%" } }, - [5236]={ + [5308]={ [1]={ [1]={ limit={ @@ -120716,7 +122530,7 @@ return { [1]="blight_tower_damage_per_tower_type_+%" } }, - [5237]={ + [5309]={ [1]={ [1]={ limit={ @@ -120741,7 +122555,7 @@ return { [1]="blight_tower_fireball_additional_projectile" } }, - [5238]={ + [5310]={ [1]={ [1]={ limit={ @@ -120757,7 +122571,7 @@ return { [1]="blighted_map_chest_reward_lucky_count" } }, - [5239]={ + [5311]={ [1]={ [1]={ limit={ @@ -120786,7 +122600,7 @@ return { [1]="blighted_map_tower_damage_+%_final" } }, - [5240]={ + [5312]={ [1]={ [1]={ [1]={ @@ -120819,7 +122633,7 @@ return { [1]="blind_chilled_enemies_on_hit_%" } }, - [5241]={ + [5313]={ [1]={ [1]={ limit={ @@ -120835,7 +122649,7 @@ return { [1]="blind_does_not_affect_chance_to_hit" } }, - [5242]={ + [5314]={ [1]={ [1]={ limit={ @@ -120851,7 +122665,7 @@ return { [1]="blind_does_not_affect_light_radius" } }, - [5243]={ + [5315]={ [1]={ [1]={ [1]={ @@ -120888,7 +122702,7 @@ return { [1]="blind_effect_+%" } }, - [5244]={ + [5316]={ [1]={ [1]={ [1]={ @@ -120908,7 +122722,7 @@ return { [1]="blind_enemies_when_hit_%_chance" } }, - [5245]={ + [5317]={ [1]={ [1]={ [1]={ @@ -120941,7 +122755,7 @@ return { [1]="blind_enemies_when_hit_while_affected_by_grace_%_chance" } }, - [5246]={ + [5318]={ [1]={ [1]={ [1]={ @@ -120961,7 +122775,7 @@ return { [1]="blind_reflected_to_self" } }, - [5247]={ + [5319]={ [1]={ [1]={ limit={ @@ -120977,7 +122791,7 @@ return { [1]="blink_and_mirror_arrow_clones_inherit_gloves" } }, - [5248]={ + [5320]={ [1]={ [1]={ limit={ @@ -121006,7 +122820,7 @@ return { [1]="blink_and_mirror_arrow_cooldown_speed_+%" } }, - [5249]={ + [5321]={ [1]={ [1]={ limit={ @@ -121035,7 +122849,7 @@ return { [1]="block_and_stun_+%_recovery_per_fortification" } }, - [5250]={ + [5322]={ [1]={ [1]={ limit={ @@ -121051,7 +122865,7 @@ return { [1]="block_chance_%_vs_cursed_enemies" } }, - [5251]={ + [5323]={ [1]={ [1]={ limit={ @@ -121060,7 +122874,7 @@ return { [2]="#" } }, - text="[DNT] {0}% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently" + text="DNT {0}% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently" }, [2]={ [1]={ @@ -121073,14 +122887,14 @@ return { [2]=-1 } }, - text="[DNT] {0}% reduced Chance to Block Attack and Spell Damage for every 100 Life Spent Recently" + text="DNT {0}% reduced Chance to Block Attack and Spell Damage for every 100 Life Spent Recently" } }, stats={ [1]="block_chance_+%_per_100_life_spent_recently" } }, - [5252]={ + [5324]={ [1]={ [1]={ limit={ @@ -121096,7 +122910,7 @@ return { [1]="block_chance_from_equipped_shield_is_%" } }, - [5253]={ + [5325]={ [1]={ [1]={ limit={ @@ -121112,7 +122926,7 @@ return { [1]="block_%_damage_taken_from_elemental" } }, - [5254]={ + [5326]={ [1]={ [1]={ [1]={ @@ -121132,7 +122946,7 @@ return { [1]="block_%_if_blocked_an_attack_recently" } }, - [5255]={ + [5327]={ [1]={ [1]={ limit={ @@ -121148,7 +122962,7 @@ return { [1]="block_%_while_affected_by_determination" } }, - [5256]={ + [5328]={ [1]={ [1]={ limit={ @@ -121164,7 +122978,7 @@ return { [1]="block_spells_chance_%_while_holding_shield" } }, - [5257]={ + [5329]={ [1]={ [1]={ limit={ @@ -121197,7 +123011,7 @@ return { [1]="blood_sand_armour_mana_reservation_+%" } }, - [5258]={ + [5330]={ [1]={ [1]={ [1]={ @@ -121234,7 +123048,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_-2%_per_1" } }, - [5259]={ + [5331]={ [1]={ [1]={ limit={ @@ -121263,7 +123077,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_+%" } }, - [5260]={ + [5332]={ [1]={ [1]={ limit={ @@ -121292,7 +123106,7 @@ return { [1]="blood_sand_stance_buff_effect_+%" } }, - [5261]={ + [5333]={ [1]={ [1]={ limit={ @@ -121321,7 +123135,7 @@ return { [1]="blood_spears_area_of_effect_+%" } }, - [5262]={ + [5334]={ [1]={ [1]={ limit={ @@ -121355,7 +123169,7 @@ return { [2]="quality_display_perforate_is_gem" } }, - [5263]={ + [5335]={ [1]={ [1]={ limit={ @@ -121384,7 +123198,27 @@ return { [1]="blood_spears_damage_+%" } }, - [5264]={ + [5336]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Drop Brine Ground while moving, lasting {0} seconds" + } + }, + stats={ + [1]="bloodline_ground_brine_duration_ms" + } + }, + [5337]={ [1]={ [1]={ limit={ @@ -121413,7 +123247,7 @@ return { [1]="bloodreap_damage_+%" } }, - [5265]={ + [5338]={ [1]={ [1]={ limit={ @@ -121442,7 +123276,7 @@ return { [1]="bloodreap_skill_area_of_effect_+%" } }, - [5266]={ + [5339]={ [1]={ [1]={ limit={ @@ -121458,7 +123292,7 @@ return { [1]="body_armour_defences_doubled_while_no_gems_in_body_armour" } }, - [5267]={ + [5340]={ [1]={ [1]={ limit={ @@ -121487,7 +123321,7 @@ return { [1]="body_armour_evasion_rating_+%" } }, - [5268]={ + [5341]={ [1]={ [1]={ limit={ @@ -121503,7 +123337,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_dexterity" } }, - [5269]={ + [5342]={ [1]={ [1]={ limit={ @@ -121519,7 +123353,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_intelligence" } }, - [5270]={ + [5343]={ [1]={ [1]={ limit={ @@ -121535,7 +123369,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_strength" } }, - [5271]={ + [5344]={ [1]={ [1]={ [1]={ @@ -121555,7 +123389,7 @@ return { [1]="body_armour_implicit_gain_endurance_charge_every_x_ms" } }, - [5272]={ + [5345]={ [1]={ [1]={ [1]={ @@ -121575,7 +123409,7 @@ return { [1]="body_armour_implicit_gain_frenzy_charge_every_x_ms" } }, - [5273]={ + [5346]={ [1]={ [1]={ [1]={ @@ -121595,7 +123429,7 @@ return { [1]="body_armour_implicit_gain_power_charge_every_x_ms" } }, - [5274]={ + [5347]={ [1]={ [1]={ limit={ @@ -121624,7 +123458,7 @@ return { [1]="bone_golem_damage_+%" } }, - [5275]={ + [5348]={ [1]={ [1]={ limit={ @@ -121640,7 +123474,7 @@ return { [1]="bone_golem_elemental_resistances_%" } }, - [5276]={ + [5349]={ [1]={ [1]={ limit={ @@ -121669,7 +123503,7 @@ return { [1]="bone_lance_cast_speed_+%" } }, - [5277]={ + [5350]={ [1]={ [1]={ limit={ @@ -121698,7 +123532,7 @@ return { [1]="bone_lance_damage_+%" } }, - [5278]={ + [5351]={ [1]={ [1]={ limit={ @@ -121714,7 +123548,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [5279]={ + [5352]={ [1]={ [1]={ limit={ @@ -121743,7 +123577,7 @@ return { [1]="boneshatter_damage_+%" } }, - [5280]={ + [5353]={ [1]={ [1]={ limit={ @@ -121772,7 +123606,7 @@ return { [1]="boneshatter_stun_duration_+%" } }, - [5281]={ + [5354]={ [1]={ [1]={ limit={ @@ -121801,7 +123635,7 @@ return { [1]="boots_implicit_accuracy_rating_+%_final" } }, - [5282]={ + [5355]={ [1]={ [1]={ [1]={ @@ -121825,7 +123659,7 @@ return { [1]="boots_implicit_ground_brittle_duration_ms" } }, - [5283]={ + [5356]={ [1]={ [1]={ [1]={ @@ -121849,7 +123683,7 @@ return { [1]="boots_implicit_ground_sapping_duration_ms" } }, - [5284]={ + [5357]={ [1]={ [1]={ [1]={ @@ -121873,7 +123707,7 @@ return { [1]="boots_implicit_ground_scorched_duration_ms" } }, - [5285]={ + [5358]={ [1]={ [1]={ limit={ @@ -121902,7 +123736,7 @@ return { [1]="boots_mod_effect_+%" } }, - [5286]={ + [5359]={ [1]={ [1]={ limit={ @@ -121931,7 +123765,7 @@ return { [1]="boss_maximum_life_+%_final" } }, - [5287]={ + [5360]={ [1]={ [1]={ [1]={ @@ -121951,7 +123785,7 @@ return { [1]="bow_attacks_have_culling_strike" } }, - [5288]={ + [5361]={ [1]={ [1]={ limit={ @@ -121967,7 +123801,7 @@ return { [1]="bow_attacks_usable_without_mana_cost" } }, - [5289]={ + [5362]={ [1]={ [1]={ limit={ @@ -121983,7 +123817,7 @@ return { [1]="brand_activation_rate_+%_final_during_first_20%_of_active_duration" } }, - [5290]={ + [5363]={ [1]={ [1]={ limit={ @@ -121999,7 +123833,7 @@ return { [1]="brand_activation_rate_+%_final_during_last_20%_of_active_duration" } }, - [5291]={ + [5364]={ [1]={ [1]={ limit={ @@ -122015,7 +123849,7 @@ return { [1]="brand_area_of_effect_+%_if_50%_attached_duration_expired" } }, - [5292]={ + [5365]={ [1]={ [1]={ limit={ @@ -122031,7 +123865,7 @@ return { [1]="brands_reattach_on_activation" } }, - [5293]={ + [5366]={ [1]={ [1]={ [1]={ @@ -122051,7 +123885,7 @@ return { [1]="breach_ring_chayula_implicit" } }, - [5294]={ + [5367]={ [1]={ [1]={ [1]={ @@ -122071,7 +123905,7 @@ return { [1]="breach_ring_esh_implicit" } }, - [5295]={ + [5368]={ [1]={ [1]={ [1]={ @@ -122091,7 +123925,7 @@ return { [1]="breach_ring_tul_implicit" } }, - [5296]={ + [5369]={ [1]={ [1]={ [1]={ @@ -122111,7 +123945,7 @@ return { [1]="breach_ring_uulnetol_implicit" } }, - [5297]={ + [5370]={ [1]={ [1]={ [1]={ @@ -122131,7 +123965,7 @@ return { [1]="breach_ring_xoph_implicit" } }, - [5298]={ + [5371]={ [1]={ [1]={ limit={ @@ -122147,7 +123981,7 @@ return { [1]="breachstone_commanders_%_drop_additional_fragments" } }, - [5299]={ + [5372]={ [1]={ [1]={ limit={ @@ -122163,7 +123997,7 @@ return { [1]="breachstone_commanders_%_drop_additional_maps" } }, - [5300]={ + [5373]={ [1]={ [1]={ limit={ @@ -122179,7 +124013,7 @@ return { [1]="breachstone_commanders_%_drop_additional_scarabs" } }, - [5301]={ + [5374]={ [1]={ [1]={ limit={ @@ -122195,7 +124029,7 @@ return { [1]="breachstone_commanders_%_drop_additional_unique_items" } }, - [5302]={ + [5375]={ [1]={ [1]={ limit={ @@ -122211,7 +124045,7 @@ return { [1]="breachstone_commanders_drop_additional_currency_items" } }, - [5303]={ + [5376]={ [1]={ [1]={ limit={ @@ -122236,7 +124070,7 @@ return { [1]="breachstone_commanders_drop_additional_divination_cards" } }, - [5304]={ + [5377]={ [1]={ [1]={ limit={ @@ -122261,7 +124095,7 @@ return { [1]="brequel_currency_fruit_X_lucky_rolls" } }, - [5305]={ + [5378]={ [1]={ [1]={ limit={ @@ -122286,7 +124120,7 @@ return { [1]="brequel_currency_fruit_additional_3_items_%" } }, - [5306]={ + [5379]={ [1]={ [1]={ limit={ @@ -122311,7 +124145,7 @@ return { [1]="brequel_currency_fruit_additional_item_%" } }, - [5307]={ + [5380]={ [1]={ [1]={ limit={ @@ -122327,7 +124161,7 @@ return { [1]="brequel_currency_fruit_basic_currency_converted_to_shards" } }, - [5308]={ + [5381]={ [1]={ [1]={ limit={ @@ -122343,7 +124177,7 @@ return { [1]="brequel_currency_fruit_can_create_graft_currency" } }, - [5309]={ + [5382]={ [1]={ [1]={ limit={ @@ -122359,7 +124193,7 @@ return { [1]="brequel_currency_fruit_can_create_mutated_currency" } }, - [5310]={ + [5383]={ [1]={ [1]={ limit={ @@ -122384,7 +124218,7 @@ return { [1]="brequel_currency_fruit_full_stack_chance_%" } }, - [5311]={ + [5384]={ [1]={ [1]={ limit={ @@ -122409,7 +124243,7 @@ return { [1]="brequel_currency_fruit_gold_chance_%" } }, - [5312]={ + [5385]={ [1]={ [1]={ limit={ @@ -122438,7 +124272,7 @@ return { [1]="brequel_currency_fruit_graft_currency_chance_+%" } }, - [5313]={ + [5386]={ [1]={ [1]={ limit={ @@ -122467,7 +124301,7 @@ return { [1]="brequel_currency_fruit_mutated_currency_chance_+%" } }, - [5314]={ + [5387]={ [1]={ [1]={ limit={ @@ -122496,7 +124330,7 @@ return { [1]="brequel_equipment_fruit_1h_weapon_chance_+%" } }, - [5315]={ + [5388]={ [1]={ [1]={ limit={ @@ -122525,7 +124359,7 @@ return { [1]="brequel_equipment_fruit_2h_weapon_chance_+%" } }, - [5316]={ + [5389]={ [1]={ [1]={ limit={ @@ -122550,7 +124384,7 @@ return { [1]="brequel_equipment_fruit_X_divine_rolls" } }, - [5317]={ + [5390]={ [1]={ [1]={ limit={ @@ -122575,7 +124409,7 @@ return { [1]="brequel_equipment_fruit_additional_item_%" } }, - [5318]={ + [5391]={ [1]={ [1]={ limit={ @@ -122591,7 +124425,7 @@ return { [1]="brequel_equipment_fruit_additional_item_level_%" } }, - [5319]={ + [5392]={ [1]={ [1]={ limit={ @@ -122620,7 +124454,7 @@ return { [1]="brequel_equipment_fruit_amulet_chance_+%" } }, - [5320]={ + [5393]={ [1]={ [1]={ limit={ @@ -122649,7 +124483,7 @@ return { [1]="brequel_equipment_fruit_armour_chance_+%" } }, - [5321]={ + [5394]={ [1]={ [1]={ limit={ @@ -122678,7 +124512,7 @@ return { [1]="brequel_equipment_fruit_attack_modifier_chance_+%" } }, - [5322]={ + [5395]={ [1]={ [1]={ limit={ @@ -122707,7 +124541,7 @@ return { [1]="brequel_equipment_fruit_attribute_modifier_chance_+%" } }, - [5323]={ + [5396]={ [1]={ [1]={ limit={ @@ -122736,7 +124570,7 @@ return { [1]="brequel_equipment_fruit_belt_chance_+%" } }, - [5324]={ + [5397]={ [1]={ [1]={ limit={ @@ -122765,7 +124599,7 @@ return { [1]="brequel_equipment_fruit_body_armour_chance_+%" } }, - [5325]={ + [5398]={ [1]={ [1]={ limit={ @@ -122794,7 +124628,7 @@ return { [1]="brequel_equipment_fruit_boots_chance_+%" } }, - [5326]={ + [5399]={ [1]={ [1]={ limit={ @@ -122823,7 +124657,7 @@ return { [1]="brequel_equipment_fruit_caster_modifier_chance_+%" } }, - [5327]={ + [5400]={ [1]={ [1]={ limit={ @@ -122852,7 +124686,7 @@ return { [1]="brequel_equipment_fruit_chaos_modifier_chance_+%" } }, - [5328]={ + [5401]={ [1]={ [1]={ limit={ @@ -122881,7 +124715,7 @@ return { [1]="brequel_equipment_fruit_cold_modifier_chance_+%" } }, - [5329]={ + [5402]={ [1]={ [1]={ limit={ @@ -122910,7 +124744,7 @@ return { [1]="brequel_equipment_fruit_critical_modifier_chance_+%" } }, - [5330]={ + [5403]={ [1]={ [1]={ limit={ @@ -122939,7 +124773,7 @@ return { [1]="brequel_equipment_fruit_defence_modifier_chance_+%" } }, - [5331]={ + [5404]={ [1]={ [1]={ limit={ @@ -122968,7 +124802,7 @@ return { [1]="brequel_equipment_fruit_dexterity_requirement_chance_+%_final" } }, - [5332]={ + [5405]={ [1]={ [1]={ limit={ @@ -122997,7 +124831,7 @@ return { [1]="brequel_equipment_fruit_fire_modifier_chance_+%" } }, - [5333]={ + [5406]={ [1]={ [1]={ limit={ @@ -123013,7 +124847,7 @@ return { [1]="brequel_equipment_fruit_fractured_chance_%" } }, - [5334]={ + [5407]={ [1]={ [1]={ limit={ @@ -123042,7 +124876,7 @@ return { [1]="brequel_equipment_fruit_gloves_chance_+%" } }, - [5335]={ + [5408]={ [1]={ [1]={ limit={ @@ -123071,7 +124905,7 @@ return { [1]="brequel_equipment_fruit_helmet_chance_+%" } }, - [5336]={ + [5409]={ [1]={ [1]={ limit={ @@ -123100,7 +124934,7 @@ return { [1]="brequel_equipment_fruit_intelligence_requirement_chance_+%_final" } }, - [5337]={ + [5410]={ [1]={ [1]={ limit={ @@ -123129,7 +124963,7 @@ return { [1]="brequel_equipment_fruit_item_rarity_+%" } }, - [5338]={ + [5411]={ [1]={ [1]={ limit={ @@ -123158,7 +124992,7 @@ return { [1]="brequel_equipment_fruit_jewel_chance_+%" } }, - [5339]={ + [5412]={ [1]={ [1]={ limit={ @@ -123174,7 +125008,7 @@ return { [1]="brequel_equipment_fruit_jewel_enabled" } }, - [5340]={ + [5413]={ [1]={ [1]={ limit={ @@ -123203,7 +125037,7 @@ return { [1]="brequel_equipment_fruit_jewellery_chance_+%" } }, - [5341]={ + [5414]={ [1]={ [1]={ limit={ @@ -123232,7 +125066,7 @@ return { [1]="brequel_equipment_fruit_life_modifier_chance_+%" } }, - [5342]={ + [5415]={ [1]={ [1]={ limit={ @@ -123261,7 +125095,7 @@ return { [1]="brequel_equipment_fruit_lightning_modifier_chance_+%" } }, - [5343]={ + [5416]={ [1]={ [1]={ limit={ @@ -123290,7 +125124,7 @@ return { [1]="brequel_equipment_fruit_mana_modifier_chance_+%" } }, - [5344]={ + [5417]={ [1]={ [1]={ [1]={ @@ -123310,7 +125144,7 @@ return { [1]="brequel_equipment_fruit_mod_tier_rating_+" } }, - [5345]={ + [5418]={ [1]={ [1]={ limit={ @@ -123339,7 +125173,7 @@ return { [1]="brequel_equipment_fruit_physical_modifier_chance_+%" } }, - [5346]={ + [5419]={ [1]={ [1]={ limit={ @@ -123368,7 +125202,7 @@ return { [1]="brequel_equipment_fruit_quiver_chance_+%" } }, - [5347]={ + [5420]={ [1]={ [1]={ limit={ @@ -123397,7 +125231,7 @@ return { [1]="brequel_equipment_fruit_ranged_weapon_chance_+%" } }, - [5348]={ + [5421]={ [1]={ [1]={ limit={ @@ -123413,7 +125247,7 @@ return { [1]="brequel_equipment_fruit_remove_lowest_level_modifier" } }, - [5349]={ + [5422]={ [1]={ [1]={ limit={ @@ -123442,7 +125276,7 @@ return { [1]="brequel_equipment_fruit_resistance_modifier_chance_+%" } }, - [5350]={ + [5423]={ [1]={ [1]={ limit={ @@ -123471,7 +125305,7 @@ return { [1]="brequel_equipment_fruit_ring_chance_+%" } }, - [5351]={ + [5424]={ [1]={ [1]={ limit={ @@ -123500,7 +125334,7 @@ return { [1]="brequel_equipment_fruit_shield_chance_+%" } }, - [5352]={ + [5425]={ [1]={ [1]={ limit={ @@ -123529,7 +125363,7 @@ return { [1]="brequel_equipment_fruit_speed_modifier_chance_+%" } }, - [5353]={ + [5426]={ [1]={ [1]={ limit={ @@ -123558,7 +125392,7 @@ return { [1]="brequel_equipment_fruit_strength_requirement_chance_+%_final" } }, - [5354]={ + [5427]={ [1]={ [1]={ limit={ @@ -123574,7 +125408,7 @@ return { [1]="brequel_equipment_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls" } }, - [5355]={ + [5428]={ [1]={ [1]={ limit={ @@ -123590,7 +125424,7 @@ return { [1]="brequel_equipment_fruit_weapon_and_armour_random_quality" } }, - [5356]={ + [5429]={ [1]={ [1]={ limit={ @@ -123619,7 +125453,7 @@ return { [1]="brequel_equipment_fruit_weapon_chance_+%" } }, - [5357]={ + [5430]={ [1]={ [1]={ limit={ @@ -123644,7 +125478,7 @@ return { [1]="brequel_graft_fruit_additional_item_%" } }, - [5358]={ + [5431]={ [1]={ [1]={ limit={ @@ -123673,7 +125507,7 @@ return { [1]="brequel_graft_fruit_esh_chance_+%" } }, - [5359]={ + [5432]={ [1]={ [1]={ limit={ @@ -123689,7 +125523,7 @@ return { [1]="brequel_graft_fruit_item_level_+" } }, - [5360]={ + [5433]={ [1]={ [1]={ limit={ @@ -123718,7 +125552,7 @@ return { [1]="brequel_graft_fruit_item_rarity_+%" } }, - [5361]={ + [5434]={ [1]={ [1]={ [1]={ @@ -123738,7 +125572,7 @@ return { [1]="brequel_graft_fruit_mod_tier_rating_+" } }, - [5362]={ + [5435]={ [1]={ [1]={ [1]={ @@ -123758,7 +125592,7 @@ return { [1]="brequel_graft_fruit_random_quality" } }, - [5363]={ + [5436]={ [1]={ [1]={ limit={ @@ -123787,7 +125621,7 @@ return { [1]="brequel_graft_fruit_tul_chance_+%" } }, - [5364]={ + [5437]={ [1]={ [1]={ limit={ @@ -123816,7 +125650,7 @@ return { [1]="brequel_graft_fruit_uul_netol_chance_+%" } }, - [5365]={ + [5438]={ [1]={ [1]={ limit={ @@ -123845,7 +125679,7 @@ return { [1]="brequel_graft_fruit_xoph_chance_+%" } }, - [5366]={ + [5439]={ [1]={ [1]={ limit={ @@ -123861,7 +125695,7 @@ return { [1]="brequel_misc_fruit_common_rewards_chance_+%" } }, - [5367]={ + [5440]={ [1]={ [1]={ limit={ @@ -123877,7 +125711,7 @@ return { [1]="brequel_misc_fruit_currency_fruit_chance_+%" } }, - [5368]={ + [5441]={ [1]={ [1]={ limit={ @@ -123893,7 +125727,7 @@ return { [1]="brequel_misc_fruit_equipment_fruit_chance_+%" } }, - [5369]={ + [5442]={ [1]={ [1]={ limit={ @@ -123909,7 +125743,7 @@ return { [1]="brequel_misc_fruit_graft_fruit_chance_+%" } }, - [5370]={ + [5443]={ [1]={ [1]={ limit={ @@ -123925,7 +125759,7 @@ return { [1]="brequel_misc_fruit_other_fruits_enabled" } }, - [5371]={ + [5444]={ [1]={ [1]={ limit={ @@ -123941,7 +125775,7 @@ return { [1]="brequel_misc_fruit_rarer_rewards_chance_+%" } }, - [5372]={ + [5445]={ [1]={ [1]={ limit={ @@ -123957,7 +125791,7 @@ return { [1]="brequel_misc_fruit_unique_fruit_chance_+%" } }, - [5373]={ + [5446]={ [1]={ [1]={ limit={ @@ -123986,7 +125820,7 @@ return { [1]="brequel_unique_fruit_1h_weapon_chance_+%" } }, - [5374]={ + [5447]={ [1]={ [1]={ limit={ @@ -124015,7 +125849,7 @@ return { [1]="brequel_unique_fruit_2h_weapon_chance_+%" } }, - [5375]={ + [5448]={ [1]={ [1]={ limit={ @@ -124040,7 +125874,7 @@ return { [1]="brequel_unique_fruit_X_divine_rolls" } }, - [5376]={ + [5449]={ [1]={ [1]={ limit={ @@ -124065,7 +125899,7 @@ return { [1]="brequel_unique_fruit_X_lucky_rolls" } }, - [5377]={ + [5450]={ [1]={ [1]={ limit={ @@ -124081,7 +125915,7 @@ return { [1]="brequel_unique_fruit_additional_item_%" } }, - [5378]={ + [5451]={ [1]={ [1]={ limit={ @@ -124110,7 +125944,7 @@ return { [1]="brequel_unique_fruit_amulet_chance_+%" } }, - [5379]={ + [5452]={ [1]={ [1]={ limit={ @@ -124139,7 +125973,7 @@ return { [1]="brequel_unique_fruit_armour_chance_+%" } }, - [5380]={ + [5453]={ [1]={ [1]={ limit={ @@ -124168,7 +126002,7 @@ return { [1]="brequel_unique_fruit_belt_chance_+%" } }, - [5381]={ + [5454]={ [1]={ [1]={ limit={ @@ -124197,7 +126031,7 @@ return { [1]="brequel_unique_fruit_body_armour_chance_+%" } }, - [5382]={ + [5455]={ [1]={ [1]={ limit={ @@ -124226,7 +126060,7 @@ return { [1]="brequel_unique_fruit_boots_chance_+%" } }, - [5383]={ + [5456]={ [1]={ [1]={ limit={ @@ -124255,7 +126089,7 @@ return { [1]="brequel_unique_fruit_dexterity_requirement_chance_+%" } }, - [5384]={ + [5457]={ [1]={ [1]={ limit={ @@ -124284,7 +126118,7 @@ return { [1]="brequel_unique_fruit_flask_chance_+%" } }, - [5385]={ + [5458]={ [1]={ [1]={ limit={ @@ -124313,7 +126147,7 @@ return { [1]="brequel_unique_fruit_gloves_chance_+%" } }, - [5386]={ + [5459]={ [1]={ [1]={ limit={ @@ -124342,7 +126176,7 @@ return { [1]="brequel_unique_fruit_helmet_chance_+%" } }, - [5387]={ + [5460]={ [1]={ [1]={ limit={ @@ -124371,7 +126205,7 @@ return { [1]="brequel_unique_fruit_intelligence_requirement_chance_+%" } }, - [5388]={ + [5461]={ [1]={ [1]={ limit={ @@ -124400,7 +126234,7 @@ return { [1]="brequel_unique_fruit_jewel_chance_+%" } }, - [5389]={ + [5462]={ [1]={ [1]={ limit={ @@ -124429,7 +126263,7 @@ return { [1]="brequel_unique_fruit_jewellery_chance_+%" } }, - [5390]={ + [5463]={ [1]={ [1]={ limit={ @@ -124445,7 +126279,7 @@ return { [1]="brequel_unique_fruit_multiple_mutation_chance_%" } }, - [5391]={ + [5464]={ [1]={ [1]={ limit={ @@ -124474,7 +126308,7 @@ return { [1]="brequel_unique_fruit_mutation_chance_+%" } }, - [5392]={ + [5465]={ [1]={ [1]={ limit={ @@ -124490,7 +126324,7 @@ return { [1]="brequel_unique_fruit_non_mutated_items_are_corrupted" } }, - [5393]={ + [5466]={ [1]={ [1]={ limit={ @@ -124519,7 +126353,7 @@ return { [1]="brequel_unique_fruit_quiver_chance_+%" } }, - [5394]={ + [5467]={ [1]={ [1]={ limit={ @@ -124548,7 +126382,7 @@ return { [1]="brequel_unique_fruit_ranged_weapon_chance_+%" } }, - [5395]={ + [5468]={ [1]={ [1]={ limit={ @@ -124577,7 +126411,7 @@ return { [1]="brequel_unique_fruit_ring_chance_+%" } }, - [5396]={ + [5469]={ [1]={ [1]={ limit={ @@ -124606,7 +126440,7 @@ return { [1]="brequel_unique_fruit_shield_chance_+%" } }, - [5397]={ + [5470]={ [1]={ [1]={ limit={ @@ -124635,7 +126469,7 @@ return { [1]="brequel_unique_fruit_strength_requirement_chance_+%" } }, - [5398]={ + [5471]={ [1]={ [1]={ limit={ @@ -124651,7 +126485,7 @@ return { [1]="brequel_unique_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls" } }, - [5399]={ + [5472]={ [1]={ [1]={ limit={ @@ -124667,7 +126501,7 @@ return { [1]="brequel_unique_fruit_weapon_and_armour_random_quality" } }, - [5400]={ + [5473]={ [1]={ [1]={ limit={ @@ -124696,7 +126530,7 @@ return { [1]="brequel_unique_fruit_weapon_chance_+%" } }, - [5401]={ + [5474]={ [1]={ [1]={ [1]={ @@ -124733,7 +126567,7 @@ return { [1]="buff_effect_+%_on_low_energy_shield" } }, - [5402]={ + [5475]={ [1]={ [1]={ limit={ @@ -124766,7 +126600,7 @@ return { [1]="buff_time_passed_+%_only_buff_category" } }, - [5403]={ + [5476]={ [1]={ [1]={ limit={ @@ -124799,7 +126633,7 @@ return { [1]="buff_time_passed_+%" } }, - [5404]={ + [5477]={ [1]={ [1]={ limit={ @@ -124815,7 +126649,7 @@ return { [1]="burning_and_explosive_arrow_shatter_on_killing_blow" } }, - [5405]={ + [5478]={ [1]={ [1]={ limit={ @@ -124844,7 +126678,7 @@ return { [1]="burning_arrow_debuff_effect_+%" } }, - [5406]={ + [5479]={ [1]={ [1]={ [1]={ @@ -124881,7 +126715,7 @@ return { [1]="burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%" } }, - [5407]={ + [5480]={ [1]={ [1]={ [1]={ @@ -124901,7 +126735,7 @@ return { [1]="can_apply_additional_scorch" } }, - [5408]={ + [5481]={ [1]={ [1]={ limit={ @@ -124917,7 +126751,23 @@ return { [1]="can_apply_additional_tincture" } }, - [5409]={ + [5482]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can be Allflame Crafted as if Rare\nCannot gain Intangibility" + } + }, + stats={ + [1]="can_be_ghostflame_crafted_as_though_rare" + } + }, + [5483]={ [1]={ [1]={ limit={ @@ -124933,7 +126783,7 @@ return { [1]="can_catch_mutated_fish" } }, - [5410]={ + [5484]={ [1]={ [1]={ limit={ @@ -124949,7 +126799,27 @@ return { [1]="can_catch_scourged_fish" } }, - [5411]={ + [5485]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextPermanentMercenary" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can hire a Mercenary permanently" + } + }, + stats={ + [1]="can_have_active_mercenary_follower" + } + }, + [5486]={ [1]={ [1]={ limit={ @@ -124965,7 +126835,7 @@ return { [1]="can_only_have_one_ancestor_totem_buff" } }, - [5412]={ + [5487]={ [1]={ [1]={ limit={ @@ -124981,7 +126851,7 @@ return { [1]="can_only_inflict_wither_against_full_life_enemies" } }, - [5413]={ + [5488]={ [1]={ [1]={ limit={ @@ -124997,7 +126867,7 @@ return { [1]="can_trigger_summon_elemental_relic_on_nearby_ally_kill_or_on_hit_rare_or_unique" } }, - [5414]={ + [5489]={ [1]={ [1]={ limit={ @@ -125013,7 +126883,7 @@ return { [1]="cannot_adapt_to_cold" } }, - [5415]={ + [5490]={ [1]={ [1]={ limit={ @@ -125029,7 +126899,7 @@ return { [1]="cannot_adapt_to_fire" } }, - [5416]={ + [5491]={ [1]={ [1]={ limit={ @@ -125045,7 +126915,7 @@ return { [1]="cannot_adapt_to_lightning" } }, - [5417]={ + [5492]={ [1]={ [1]={ limit={ @@ -125061,7 +126931,7 @@ return { [1]="cannot_be_bled_by_bleeding_enemies" } }, - [5418]={ + [5493]={ [1]={ [1]={ limit={ @@ -125077,7 +126947,7 @@ return { [1]="cannot_be_blinded_while_affected_by_precision" } }, - [5419]={ + [5494]={ [1]={ [1]={ limit={ @@ -125093,7 +126963,7 @@ return { [1]="cannot_be_chilled_or_frozen_while_ice_golem_summoned" } }, - [5420]={ + [5495]={ [1]={ [1]={ limit={ @@ -125109,7 +126979,7 @@ return { [1]="cannot_be_chilled_or_frozen_while_moving" } }, - [5421]={ + [5496]={ [1]={ [1]={ limit={ @@ -125125,7 +126995,7 @@ return { [1]="cannot_be_chilled_while_at_maximum_frenzy_charges" } }, - [5422]={ + [5497]={ [1]={ [1]={ limit={ @@ -125141,7 +127011,7 @@ return { [1]="cannot_be_chilled_while_burning" } }, - [5423]={ + [5498]={ [1]={ [1]={ [1]={ @@ -125161,7 +127031,7 @@ return { [1]="cannot_be_crit_if_you_have_been_stunned_recently" } }, - [5424]={ + [5499]={ [1]={ [1]={ [1]={ @@ -125181,7 +127051,7 @@ return { [1]="cannot_be_frozen_if_energy_shield_recharge_has_started_recently" } }, - [5425]={ + [5500]={ [1]={ [1]={ [1]={ @@ -125201,7 +127071,7 @@ return { [1]="cannot_be_frozen_if_you_have_been_frozen_recently" } }, - [5426]={ + [5501]={ [1]={ [1]={ limit={ @@ -125217,7 +127087,7 @@ return { [1]="cannot_be_frozen_with_dex_higher_than_int" } }, - [5427]={ + [5502]={ [1]={ [1]={ limit={ @@ -125233,7 +127103,7 @@ return { [1]="cannot_be_ignited_by_ignited_enemies" } }, - [5428]={ + [5503]={ [1]={ [1]={ [1]={ @@ -125253,7 +127123,7 @@ return { [1]="cannot_be_ignited_if_you_have_been_ignited_recently" } }, - [5429]={ + [5504]={ [1]={ [1]={ limit={ @@ -125269,7 +127139,7 @@ return { [1]="cannot_be_ignited_while_at_maximum_endurance_charges" } }, - [5430]={ + [5505]={ [1]={ [1]={ limit={ @@ -125285,7 +127155,7 @@ return { [1]="cannot_be_ignited_while_flame_golem_summoned" } }, - [5431]={ + [5506]={ [1]={ [1]={ limit={ @@ -125301,7 +127171,7 @@ return { [1]="cannot_be_ignited_with_strength_higher_than_dex" } }, - [5432]={ + [5507]={ [1]={ [1]={ limit={ @@ -125317,7 +127187,7 @@ return { [1]="cannot_be_inflicted_by_corrupted_blood" } }, - [5433]={ + [5508]={ [1]={ [1]={ limit={ @@ -125342,7 +127212,7 @@ return { [1]="cannot_be_poisoned_if_x_poisons_on_you" } }, - [5434]={ + [5509]={ [1]={ [1]={ limit={ @@ -125358,7 +127228,7 @@ return { [1]="cannot_be_poisoned_while_bleeding" } }, - [5435]={ + [5510]={ [1]={ [1]={ [1]={ @@ -125378,7 +127248,7 @@ return { [1]="cannot_be_shocked_if_you_have_been_shocked_recently" } }, - [5436]={ + [5511]={ [1]={ [1]={ limit={ @@ -125394,7 +127264,7 @@ return { [1]="cannot_be_shocked_or_ignited_while_moving" } }, - [5437]={ + [5512]={ [1]={ [1]={ limit={ @@ -125410,7 +127280,7 @@ return { [1]="cannot_be_shocked_while_at_maximum_power_charges" } }, - [5438]={ + [5513]={ [1]={ [1]={ limit={ @@ -125426,7 +127296,7 @@ return { [1]="cannot_be_shocked_while_lightning_golem_summoned" } }, - [5439]={ + [5514]={ [1]={ [1]={ limit={ @@ -125442,7 +127312,7 @@ return { [1]="cannot_be_shocked_with_int_higher_than_strength" } }, - [5440]={ + [5515]={ [1]={ [1]={ limit={ @@ -125458,7 +127328,7 @@ return { [1]="cannot_be_stunned_by_blocked_hits" } }, - [5441]={ + [5516]={ [1]={ [1]={ limit={ @@ -125474,7 +127344,7 @@ return { [1]="cannot_be_stunned_by_hits_of_only_physical_damage" } }, - [5442]={ + [5517]={ [1]={ [1]={ [1]={ @@ -125494,7 +127364,7 @@ return { [1]="cannot_be_stunned_by_suppressed_spell_damage" } }, - [5443]={ + [5518]={ [1]={ [1]={ limit={ @@ -125510,7 +127380,7 @@ return { [1]="cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds" } }, - [5444]={ + [5519]={ [1]={ [1]={ [1]={ @@ -125530,7 +127400,7 @@ return { [1]="cannot_be_stunned_if_have_not_been_hit_recently" } }, - [5445]={ + [5520]={ [1]={ [1]={ [1]={ @@ -125550,7 +127420,7 @@ return { [1]="cannot_be_stunned_if_you_have_been_stunned_recently" } }, - [5446]={ + [5521]={ [1]={ [1]={ [1]={ @@ -125570,7 +127440,7 @@ return { [1]="cannot_be_stunned_if_you_have_blocked_a_stun_recently" } }, - [5447]={ + [5522]={ [1]={ [1]={ limit={ @@ -125586,7 +127456,7 @@ return { [1]="cannot_be_stunned_if_you_have_ghost_dance" } }, - [5448]={ + [5523]={ [1]={ [1]={ limit={ @@ -125602,7 +127472,7 @@ return { [1]="cannot_be_stunned_while_bleeding" } }, - [5449]={ + [5524]={ [1]={ [1]={ limit={ @@ -125618,7 +127488,7 @@ return { [1]="cannot_be_stunned_while_fortified" } }, - [5450]={ + [5525]={ [1]={ [1]={ limit={ @@ -125634,7 +127504,7 @@ return { [1]="cannot_be_stunned_while_no_gems_in_helmet" } }, - [5451]={ + [5526]={ [1]={ [1]={ limit={ @@ -125650,7 +127520,7 @@ return { [1]="cannot_be_stunned_while_using_chaos_skill" } }, - [5452]={ + [5527]={ [1]={ [1]={ limit={ @@ -125666,7 +127536,7 @@ return { [1]="cannot_block_spells" } }, - [5453]={ + [5528]={ [1]={ [1]={ limit={ @@ -125682,7 +127552,7 @@ return { [1]="cannot_cast_spells" } }, - [5454]={ + [5529]={ [1]={ [1]={ limit={ @@ -125698,7 +127568,7 @@ return { [1]="cannot_critical_strike_with_attacks" } }, - [5455]={ + [5530]={ [1]={ [1]={ limit={ @@ -125714,7 +127584,7 @@ return { [1]="cannot_fish_from_water" } }, - [5456]={ + [5531]={ [1]={ [1]={ limit={ @@ -125730,7 +127600,7 @@ return { [1]="cannot_gain_charges" } }, - [5457]={ + [5532]={ [1]={ [1]={ limit={ @@ -125746,7 +127616,7 @@ return { [1]="cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks" } }, - [5458]={ + [5533]={ [1]={ [1]={ [1]={ @@ -125766,7 +127636,7 @@ return { [1]="cannot_gain_damaging_ailments" } }, - [5459]={ + [5534]={ [1]={ [1]={ limit={ @@ -125782,7 +127652,7 @@ return { [1]="cannot_gain_power_charges" } }, - [5460]={ + [5535]={ [1]={ [1]={ limit={ @@ -125798,7 +127668,7 @@ return { [1]="cannot_gain_rage_during_soul_gain_prevention" } }, - [5461]={ + [5536]={ [1]={ [1]={ limit={ @@ -125814,7 +127684,7 @@ return { [1]="cannot_have_energy_shield_leeched_from" } }, - [5462]={ + [5537]={ [1]={ [1]={ [1]={ @@ -125834,7 +127704,7 @@ return { [1]="cannot_have_more_than_1_damaging_ailment" } }, - [5463]={ + [5538]={ [1]={ [1]={ [1]={ @@ -125854,7 +127724,7 @@ return { [1]="cannot_have_more_than_1_non_damaging_ailment" } }, - [5464]={ + [5539]={ [1]={ [1]={ limit={ @@ -125870,7 +127740,7 @@ return { [1]="cannot_penetrate_or_ignore_elemental_resistances" } }, - [5465]={ + [5540]={ [1]={ [1]={ [1]={ @@ -125903,7 +127773,7 @@ return { [1]="cannot_poison_enemies_with_x_poisons" } }, - [5466]={ + [5541]={ [1]={ [1]={ [1]={ @@ -125923,7 +127793,7 @@ return { [1]="cannot_receive_elemental_ailments_from_cursed_enemies" } }, - [5467]={ + [5542]={ [1]={ [1]={ [1]={ @@ -125943,7 +127813,7 @@ return { [1]="cannot_receive_elemental_ailments_while_no_gems_in_body_armour" } }, - [5468]={ + [5543]={ [1]={ [1]={ limit={ @@ -125959,7 +127829,7 @@ return { [1]="cannot_recharge_energy_shield" } }, - [5469]={ + [5544]={ [1]={ [1]={ limit={ @@ -125975,7 +127845,7 @@ return { [1]="cannot_regenerate_energy_shield" } }, - [5470]={ + [5545]={ [1]={ [1]={ limit={ @@ -125991,7 +127861,7 @@ return { [1]="cannot_take_reflected_elemental_damage" } }, - [5471]={ + [5546]={ [1]={ [1]={ limit={ @@ -126007,7 +127877,7 @@ return { [1]="cannot_take_reflected_physical_damage" } }, - [5472]={ + [5547]={ [1]={ [1]={ limit={ @@ -126023,7 +127893,7 @@ return { [1]="cannot_taunt_enemies" } }, - [5473]={ + [5548]={ [1]={ [1]={ limit={ @@ -126039,7 +127909,7 @@ return { [1]="cannot_use_flask_in_fifth_slot" } }, - [5474]={ + [5549]={ [1]={ [1]={ limit={ @@ -126055,7 +127925,7 @@ return { [1]="cannot_use_mana_flasks" } }, - [5475]={ + [5550]={ [1]={ [1]={ [1]={ @@ -126075,7 +127945,7 @@ return { [1]="carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems" } }, - [5476]={ + [5551]={ [1]={ [1]={ limit={ @@ -126091,7 +127961,7 @@ return { [1]="cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash" } }, - [5477]={ + [5552]={ [1]={ [1]={ limit={ @@ -126107,7 +127977,7 @@ return { [1]="cast_blink_arrow_on_attack_with_mirror_arrow" } }, - [5478]={ + [5553]={ [1]={ [1]={ limit={ @@ -126123,7 +127993,7 @@ return { [1]="cast_body_swap_on_detonate_dead_cast" } }, - [5479]={ + [5554]={ [1]={ [1]={ limit={ @@ -126139,7 +128009,7 @@ return { [1]="cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter" } }, - [5480]={ + [5555]={ [1]={ [1]={ limit={ @@ -126155,7 +128025,7 @@ return { [1]="cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire" } }, - [5481]={ + [5556]={ [1]={ [1]={ limit={ @@ -126171,7 +128041,7 @@ return { [1]="cast_hydrosphere_while_channeling_winter_orb" } }, - [5482]={ + [5557]={ [1]={ [1]={ limit={ @@ -126187,7 +128057,7 @@ return { [1]="cast_ice_nova_on_final_burst_of_glacial_cascade" } }, - [5483]={ + [5558]={ [1]={ [1]={ limit={ @@ -126203,7 +128073,7 @@ return { [1]="cast_mirror_arrow_on_attack_with_blink_arrow" } }, - [5484]={ + [5559]={ [1]={ [1]={ limit={ @@ -126232,7 +128102,7 @@ return { [1]="cast_speed_+%_final_while_holding_fishing_rod" } }, - [5485]={ + [5560]={ [1]={ [1]={ limit={ @@ -126248,7 +128118,7 @@ return { [1]="cast_speed_+%_per_20_dexterity" } }, - [5486]={ + [5561]={ [1]={ [1]={ [1]={ @@ -126285,7 +128155,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_recently" } }, - [5487]={ + [5562]={ [1]={ [1]={ limit={ @@ -126314,7 +128184,7 @@ return { [1]="cast_speed_for_brand_skills_+%" } }, - [5488]={ + [5563]={ [1]={ [1]={ limit={ @@ -126343,7 +128213,7 @@ return { [1]="cast_speed_for_elemental_skills_+%" } }, - [5489]={ + [5564]={ [1]={ [1]={ limit={ @@ -126372,7 +128242,7 @@ return { [1]="cast_speed_for_minion_skills_+%" } }, - [5490]={ + [5565]={ [1]={ [1]={ limit={ @@ -126401,7 +128271,7 @@ return { [1]="cast_speed_+%_during_flask_effect" } }, - [5491]={ + [5566]={ [1]={ [1]={ [1]={ @@ -126438,7 +128308,7 @@ return { [1]="cast_speed_+%_if_enemy_killed_recently" } }, - [5492]={ + [5567]={ [1]={ [1]={ [1]={ @@ -126475,7 +128345,7 @@ return { [1]="cast_speed_+%_if_have_crit_recently" } }, - [5493]={ + [5568]={ [1]={ [1]={ [1]={ @@ -126512,7 +128382,7 @@ return { [1]="cast_speed_+%_if_player_minion_has_been_killed_recently" } }, - [5494]={ + [5569]={ [1]={ [1]={ [1]={ @@ -126549,7 +128419,23 @@ return { [1]="cast_speed_+%_per_corpse_consumed_recently" } }, - [5495]={ + [5570]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cast Speed per Power Charge" + } + }, + stats={ + [1]="cast_speed_+%_per_power_charge" + } + }, + [5571]={ [1]={ [1]={ limit={ @@ -126578,7 +128464,7 @@ return { [1]="cast_speed_+%_while_affected_by_zealotry" } }, - [5496]={ + [5572]={ [1]={ [1]={ limit={ @@ -126607,7 +128493,7 @@ return { [1]="cast_speed_+%_while_chilled" } }, - [5497]={ + [5573]={ [1]={ [1]={ limit={ @@ -126623,7 +128509,7 @@ return { [1]="cast_stance_change_on_attack_from_perforate_or_lacerate" } }, - [5498]={ + [5574]={ [1]={ [1]={ limit={ @@ -126639,7 +128525,7 @@ return { [1]="cast_summon_spectral_wolf_on_crit_with_cleave_or_reave" } }, - [5499]={ + [5575]={ [1]={ [1]={ limit={ @@ -126655,7 +128541,7 @@ return { [1]="cast_tornado_on_attack_with_split_arrow_or_tornado_shot" } }, - [5500]={ + [5576]={ [1]={ [1]={ limit={ @@ -126671,7 +128557,7 @@ return { [1]="cat_aspect_reserves_no_mana" } }, - [5501]={ + [5577]={ [1]={ [1]={ [1]={ @@ -126691,7 +128577,7 @@ return { [1]="cats_stealth_duration_ms_+" } }, - [5502]={ + [5578]={ [1]={ [1]={ [1]={ @@ -126720,7 +128606,7 @@ return { [1]="caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill" } }, - [5503]={ + [5579]={ [1]={ [1]={ [1]={ @@ -126740,7 +128626,7 @@ return { [1]="caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground" } }, - [5504]={ + [5580]={ [1]={ [1]={ limit={ @@ -126769,7 +128655,7 @@ return { [1]="caustic_arrow_damage_over_time_+%" } }, - [5505]={ + [5581]={ [1]={ [1]={ limit={ @@ -126798,7 +128684,7 @@ return { [1]="caustic_arrow_hit_damage_+%" } }, - [5506]={ + [5582]={ [1]={ [1]={ limit={ @@ -126827,7 +128713,7 @@ return { [1]="chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks" } }, - [5507]={ + [5583]={ [1]={ [1]={ [1]={ @@ -126860,7 +128746,7 @@ return { [1]="chain_strike_cone_radius_+_per_12_rage" } }, - [5508]={ + [5584]={ [1]={ [1]={ limit={ @@ -126889,7 +128775,7 @@ return { [1]="chain_strike_damage_+%" } }, - [5509]={ + [5585]={ [1]={ [1]={ [1]={ @@ -126913,7 +128799,7 @@ return { [1]="chain_strike_gain_rage_on_hit_%_chance" } }, - [5510]={ + [5586]={ [1]={ [1]={ limit={ @@ -126942,7 +128828,7 @@ return { [1]="chaining_range_+%" } }, - [5511]={ + [5587]={ [1]={ [1]={ limit={ @@ -126958,7 +128844,7 @@ return { [1]="champion_ascendancy_nearby_allies_fortification_is_equal_to_yours" } }, - [5512]={ + [5588]={ [1]={ [1]={ limit={ @@ -126983,7 +128869,7 @@ return { [1]="chance_%_to_convert_armour_to_blessed_orb" } }, - [5513]={ + [5589]={ [1]={ [1]={ limit={ @@ -127008,7 +128894,7 @@ return { [1]="chance_%_to_convert_armour_to_cartographers_chisel" } }, - [5514]={ + [5590]={ [1]={ [1]={ limit={ @@ -127033,7 +128919,7 @@ return { [1]="chance_%_to_convert_armour_to_chromatic_orb" } }, - [5515]={ + [5591]={ [1]={ [1]={ limit={ @@ -127058,7 +128944,7 @@ return { [1]="chance_%_to_convert_armour_to_fusing_orb" } }, - [5516]={ + [5592]={ [1]={ [1]={ limit={ @@ -127083,7 +128969,7 @@ return { [1]="chance_%_to_convert_armour_to_jewellers_orb" } }, - [5517]={ + [5593]={ [1]={ [1]={ limit={ @@ -127108,7 +128994,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_alteration" } }, - [5518]={ + [5594]={ [1]={ [1]={ limit={ @@ -127133,7 +129019,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_binding" } }, - [5519]={ + [5595]={ [1]={ [1]={ limit={ @@ -127158,7 +129044,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_scouring" } }, - [5520]={ + [5596]={ [1]={ [1]={ limit={ @@ -127183,7 +129069,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_unmaking" } }, - [5521]={ + [5597]={ [1]={ [1]={ limit={ @@ -127208,7 +129094,7 @@ return { [1]="chance_%_to_convert_jewellery_to_divine_orb" } }, - [5522]={ + [5598]={ [1]={ [1]={ limit={ @@ -127233,7 +129119,7 @@ return { [1]="chance_%_to_convert_jewellery_to_exalted_orb" } }, - [5523]={ + [5599]={ [1]={ [1]={ limit={ @@ -127258,7 +129144,7 @@ return { [1]="chance_%_to_convert_jewellery_to_orb_of_annulment" } }, - [5524]={ + [5600]={ [1]={ [1]={ limit={ @@ -127283,7 +129169,7 @@ return { [1]="chance_%_to_convert_weapon_to_chaos_orb" } }, - [5525]={ + [5601]={ [1]={ [1]={ limit={ @@ -127308,7 +129194,7 @@ return { [1]="chance_%_to_convert_weapon_to_enkindling_orb" } }, - [5526]={ + [5602]={ [1]={ [1]={ limit={ @@ -127333,7 +129219,7 @@ return { [1]="chance_%_to_convert_weapon_to_gemcutters_prism" } }, - [5527]={ + [5603]={ [1]={ [1]={ limit={ @@ -127358,7 +129244,7 @@ return { [1]="chance_%_to_convert_weapon_to_glassblowers_bauble" } }, - [5528]={ + [5604]={ [1]={ [1]={ limit={ @@ -127383,7 +129269,7 @@ return { [1]="chance_%_to_convert_weapon_to_instilling_orb" } }, - [5529]={ + [5605]={ [1]={ [1]={ limit={ @@ -127408,7 +129294,7 @@ return { [1]="chance_%_to_convert_weapon_to_orb_of_regret" } }, - [5530]={ + [5606]={ [1]={ [1]={ limit={ @@ -127433,7 +129319,7 @@ return { [1]="chance_%_to_convert_weapon_to_regal_orb" } }, - [5531]={ + [5607]={ [1]={ [1]={ limit={ @@ -127458,7 +129344,7 @@ return { [1]="chance_%_to_convert_weapon_to_vaal_orb" } }, - [5532]={ + [5608]={ [1]={ [1]={ [1]={ @@ -127478,7 +129364,7 @@ return { [1]="chance_%_to_drop_additional_ancient_orb" } }, - [5533]={ + [5609]={ [1]={ [1]={ [1]={ @@ -127498,7 +129384,7 @@ return { [1]="chance_%_to_drop_additional_awakened_sextant" } }, - [5534]={ + [5610]={ [1]={ [1]={ [1]={ @@ -127518,7 +129404,7 @@ return { [1]="chance_%_to_drop_additional_blessed_orb" } }, - [5535]={ + [5611]={ [1]={ [1]={ [1]={ @@ -127538,7 +129424,7 @@ return { [1]="chance_%_to_drop_additional_cartographers_chisel" } }, - [5536]={ + [5612]={ [1]={ [1]={ [1]={ @@ -127558,7 +129444,7 @@ return { [1]="chance_%_to_drop_additional_chaos_orb" } }, - [5537]={ + [5613]={ [1]={ [1]={ [1]={ @@ -127578,7 +129464,7 @@ return { [1]="chance_%_to_drop_additional_chromatic_orb" } }, - [5538]={ + [5614]={ [1]={ [1]={ [1]={ @@ -127598,7 +129484,7 @@ return { [1]="chance_%_to_drop_additional_divine_orb" } }, - [5539]={ + [5615]={ [1]={ [1]={ [1]={ @@ -127618,7 +129504,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_chaos_orb" } }, - [5540]={ + [5616]={ [1]={ [1]={ [1]={ @@ -127638,7 +129524,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_exalted_orb" } }, - [5541]={ + [5617]={ [1]={ [1]={ [1]={ @@ -127658,7 +129544,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_orb_of_annulment" } }, - [5542]={ + [5618]={ [1]={ [1]={ [1]={ @@ -127678,7 +129564,7 @@ return { [1]="chance_%_to_drop_additional_enkindling_orb" } }, - [5543]={ + [5619]={ [1]={ [1]={ [1]={ @@ -127698,7 +129584,7 @@ return { [1]="chance_%_to_drop_additional_exalted_orb" } }, - [5544]={ + [5620]={ [1]={ [1]={ [1]={ @@ -127718,7 +129604,7 @@ return { [1]="chance_%_to_drop_additional_fusing_orb" } }, - [5545]={ + [5621]={ [1]={ [1]={ [1]={ @@ -127738,7 +129624,7 @@ return { [1]="chance_%_to_drop_additional_gemcutters_prism" } }, - [5546]={ + [5622]={ [1]={ [1]={ [1]={ @@ -127758,7 +129644,7 @@ return { [1]="chance_%_to_drop_additional_glassblowers_bauble" } }, - [5547]={ + [5623]={ [1]={ [1]={ [1]={ @@ -127778,7 +129664,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ember" } }, - [5548]={ + [5624]={ [1]={ [1]={ [1]={ @@ -127798,7 +129684,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ichor" } }, - [5549]={ + [5625]={ [1]={ [1]={ [1]={ @@ -127818,7 +129704,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ember" } }, - [5550]={ + [5626]={ [1]={ [1]={ [1]={ @@ -127838,7 +129724,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ichor" } }, - [5551]={ + [5627]={ [1]={ [1]={ [1]={ @@ -127858,7 +129744,7 @@ return { [1]="chance_%_to_drop_additional_instilling_orb" } }, - [5552]={ + [5628]={ [1]={ [1]={ [1]={ @@ -127878,7 +129764,7 @@ return { [1]="chance_%_to_drop_additional_jewellers_orb" } }, - [5553]={ + [5629]={ [1]={ [1]={ [1]={ @@ -127898,7 +129784,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ember" } }, - [5554]={ + [5630]={ [1]={ [1]={ [1]={ @@ -127918,7 +129804,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ichor" } }, - [5555]={ + [5631]={ [1]={ [1]={ [1]={ @@ -127938,7 +129824,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_alteration" } }, - [5556]={ + [5632]={ [1]={ [1]={ [1]={ @@ -127958,7 +129844,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_annulment" } }, - [5557]={ + [5633]={ [1]={ [1]={ [1]={ @@ -127978,7 +129864,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_binding" } }, - [5558]={ + [5634]={ [1]={ [1]={ [1]={ @@ -127998,7 +129884,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_regret" } }, - [5559]={ + [5635]={ [1]={ [1]={ [1]={ @@ -128018,7 +129904,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_scouring" } }, - [5560]={ + [5636]={ [1]={ [1]={ [1]={ @@ -128038,7 +129924,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_unmaking" } }, - [5561]={ + [5637]={ [1]={ [1]={ [1]={ @@ -128058,7 +129944,7 @@ return { [1]="chance_%_to_drop_additional_regal_orb" } }, - [5562]={ + [5638]={ [1]={ [1]={ [1]={ @@ -128078,7 +129964,7 @@ return { [1]="chance_%_to_drop_additional_vaal_orb" } }, - [5563]={ + [5639]={ [1]={ [1]={ [1]={ @@ -128098,7 +129984,32 @@ return { [1]="chance_%_to_drop_additional_veiled_chaos_orb" } }, - [5564]={ + [5640]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to gain a Brine Charge instead of an Endurance Charge" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Gain Brine Charges instead of Endurance Charges" + } + }, + stats={ + [1]="chance_%_to_gain_brine_charge_instead_of_endurance_charge" + } + }, + [5641]={ [1]={ [1]={ limit={ @@ -128123,7 +130034,7 @@ return { [1]="chance_for_double_items_from_heist_chests_%" } }, - [5565]={ + [5642]={ [1]={ [1]={ limit={ @@ -128139,7 +130050,7 @@ return { [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [5566]={ + [5643]={ [1]={ [1]={ [1]={ @@ -128172,7 +130083,7 @@ return { [1]="chance_%_elemental_ailments_redirected_to_nearby_minion" } }, - [5567]={ + [5644]={ [1]={ [1]={ [1]={ @@ -128192,7 +130103,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_currency" } }, - [5568]={ + [5645]={ [1]={ [1]={ [1]={ @@ -128212,7 +130123,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_influenced_item" } }, - [5569]={ + [5646]={ [1]={ [1]={ [1]={ @@ -128236,7 +130147,7 @@ return { [1]="chance_%_to_drop_additional_currency" } }, - [5570]={ + [5647]={ [1]={ [1]={ [1]={ @@ -128256,7 +130167,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards" } }, - [5571]={ + [5648]={ [1]={ [1]={ [1]={ @@ -128276,7 +130187,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_corrupted" } }, - [5572]={ + [5649]={ [1]={ [1]={ [1]={ @@ -128296,7 +130207,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency" } }, - [5573]={ + [5650]={ [1]={ [1]={ [1]={ @@ -128316,7 +130227,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_basic" } }, - [5574]={ + [5651]={ [1]={ [1]={ [1]={ @@ -128336,7 +130247,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_exotic" } }, - [5575]={ + [5652]={ [1]={ [1]={ [1]={ @@ -128356,7 +130267,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_league" } }, - [5576]={ + [5653]={ [1]={ [1]={ [1]={ @@ -128376,7 +130287,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems" } }, - [5577]={ + [5654]={ [1]={ [1]={ [1]={ @@ -128396,7 +130307,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_levelled" } }, - [5578]={ + [5655]={ [1]={ [1]={ [1]={ @@ -128416,7 +130327,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_quality" } }, - [5579]={ + [5656]={ [1]={ [1]={ [1]={ @@ -128436,7 +130347,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gives_other_divination_cards" } }, - [5580]={ + [5657]={ [1]={ [1]={ [1]={ @@ -128456,7 +130367,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map" } }, - [5581]={ + [5658]={ [1]={ [1]={ [1]={ @@ -128476,7 +130387,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map_unique" } }, - [5582]={ + [5659]={ [1]={ [1]={ [1]={ @@ -128496,7 +130407,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique" } }, - [5583]={ + [5660]={ [1]={ [1]={ [1]={ @@ -128516,7 +130427,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_armour" } }, - [5584]={ + [5661]={ [1]={ [1]={ [1]={ @@ -128536,7 +130447,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_corrupted" } }, - [5585]={ + [5662]={ [1]={ [1]={ [1]={ @@ -128556,7 +130467,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_jewellery" } }, - [5586]={ + [5663]={ [1]={ [1]={ [1]={ @@ -128576,7 +130487,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_weapon" } }, - [5587]={ + [5664]={ [1]={ [1]={ [1]={ @@ -128596,7 +130507,7 @@ return { [1]="chance_%_to_drop_additional_gem" } }, - [5588]={ + [5665]={ [1]={ [1]={ [1]={ @@ -128616,7 +130527,7 @@ return { [1]="chance_%_to_drop_additional_maps" } }, - [5589]={ + [5666]={ [1]={ [1]={ [1]={ @@ -128636,7 +130547,7 @@ return { [1]="chance_%_to_drop_additional_scarab" } }, - [5590]={ + [5667]={ [1]={ [1]={ [1]={ @@ -128656,7 +130567,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss" } }, - [5591]={ + [5668]={ [1]={ [1]={ [1]={ @@ -128676,7 +130587,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_gilded" } }, - [5592]={ + [5669]={ [1]={ [1]={ [1]={ @@ -128696,7 +130607,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_polished" } }, - [5593]={ + [5670]={ [1]={ [1]={ [1]={ @@ -128716,7 +130627,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_rusted" } }, - [5594]={ + [5671]={ [1]={ [1]={ [1]={ @@ -128736,7 +130647,7 @@ return { [1]="chance_%_to_drop_additional_scarab_anarchy" } }, - [5595]={ + [5672]={ [1]={ [1]={ [1]={ @@ -128756,7 +130667,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts" } }, - [5596]={ + [5673]={ [1]={ [1]={ [1]={ @@ -128776,7 +130687,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_gilded" } }, - [5597]={ + [5674]={ [1]={ [1]={ [1]={ @@ -128796,7 +130707,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_polished" } }, - [5598]={ + [5675]={ [1]={ [1]={ [1]={ @@ -128816,7 +130727,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_rusted" } }, - [5599]={ + [5676]={ [1]={ [1]={ [1]={ @@ -128836,7 +130747,7 @@ return { [1]="chance_%_to_drop_additional_scarab_betrayal" } }, - [5600]={ + [5677]={ [1]={ [1]={ [1]={ @@ -128856,7 +130767,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beyond" } }, - [5601]={ + [5678]={ [1]={ [1]={ [1]={ @@ -128876,7 +130787,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight" } }, - [5602]={ + [5679]={ [1]={ [1]={ [1]={ @@ -128896,7 +130807,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_gilded" } }, - [5603]={ + [5680]={ [1]={ [1]={ [1]={ @@ -128916,7 +130827,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_polished" } }, - [5604]={ + [5681]={ [1]={ [1]={ [1]={ @@ -128936,7 +130847,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_rusted" } }, - [5605]={ + [5682]={ [1]={ [1]={ [1]={ @@ -128956,7 +130867,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach" } }, - [5606]={ + [5683]={ [1]={ [1]={ [1]={ @@ -128976,7 +130887,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_gilded" } }, - [5607]={ + [5684]={ [1]={ [1]={ [1]={ @@ -128996,7 +130907,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_polished" } }, - [5608]={ + [5685]={ [1]={ [1]={ [1]={ @@ -129016,7 +130927,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_rusted" } }, - [5609]={ + [5686]={ [1]={ [1]={ [1]={ @@ -129036,7 +130947,7 @@ return { [1]="chance_%_to_drop_additional_scarab_delirium" } }, - [5610]={ + [5687]={ [1]={ [1]={ [1]={ @@ -129056,7 +130967,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination" } }, - [5611]={ + [5688]={ [1]={ [1]={ [1]={ @@ -129076,7 +130987,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_gilded" } }, - [5612]={ + [5689]={ [1]={ [1]={ [1]={ @@ -129096,7 +131007,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_polished" } }, - [5613]={ + [5690]={ [1]={ [1]={ [1]={ @@ -129116,7 +131027,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_rusted" } }, - [5614]={ + [5691]={ [1]={ [1]={ [1]={ @@ -129136,7 +131047,7 @@ return { [1]="chance_%_to_drop_additional_scarab_domination" } }, - [5615]={ + [5692]={ [1]={ [1]={ [1]={ @@ -129156,7 +131067,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_gilded" } }, - [5616]={ + [5693]={ [1]={ [1]={ [1]={ @@ -129176,7 +131087,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_polished" } }, - [5617]={ + [5694]={ [1]={ [1]={ [1]={ @@ -129196,7 +131107,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_rusted" } }, - [5618]={ + [5695]={ [1]={ [1]={ [1]={ @@ -129216,7 +131127,7 @@ return { [1]="chance_%_to_drop_additional_scarab_essence" } }, - [5619]={ + [5696]={ [1]={ [1]={ [1]={ @@ -129236,7 +131147,7 @@ return { [1]="chance_%_to_drop_additional_scarab_expedition" } }, - [5620]={ + [5697]={ [1]={ [1]={ [1]={ @@ -129256,7 +131167,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harvest" } }, - [5621]={ + [5698]={ [1]={ [1]={ [1]={ @@ -129276,7 +131187,7 @@ return { [1]="chance_%_to_drop_additional_scarab_incursion" } }, - [5622]={ + [5699]={ [1]={ [1]={ [1]={ @@ -129296,7 +131207,7 @@ return { [1]="chance_%_to_drop_additional_scarab_influence" } }, - [5623]={ + [5700]={ [1]={ [1]={ [1]={ @@ -129316,7 +131227,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion" } }, - [5624]={ + [5701]={ [1]={ [1]={ [1]={ @@ -129336,7 +131247,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_gilded" } }, - [5625]={ + [5702]={ [1]={ [1]={ [1]={ @@ -129356,7 +131267,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_polished" } }, - [5626]={ + [5703]={ [1]={ [1]={ [1]={ @@ -129376,7 +131287,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_rusted" } }, - [5627]={ + [5704]={ [1]={ [1]={ [1]={ @@ -129396,7 +131307,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps" } }, - [5628]={ + [5705]={ [1]={ [1]={ [1]={ @@ -129416,7 +131327,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_gilded" } }, - [5629]={ + [5706]={ [1]={ [1]={ [1]={ @@ -129436,7 +131347,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_polished" } }, - [5630]={ + [5707]={ [1]={ [1]={ [1]={ @@ -129456,7 +131367,27 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_rusted" } }, - [5631]={ + [5708]={ + [1]={ + [1]={ + [1]={ + k="divide_by_ten_1dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to drop an additional Trarthan Scarab" + } + }, + stats={ + [1]="chance_%_to_drop_additional_scarab_mercenaries" + } + }, + [5709]={ [1]={ [1]={ [1]={ @@ -129476,7 +131407,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_gilded" } }, - [5632]={ + [5710]={ [1]={ [1]={ [1]={ @@ -129496,7 +131427,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_polished" } }, - [5633]={ + [5711]={ [1]={ [1]={ [1]={ @@ -129516,7 +131447,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_rusted" } }, - [5634]={ + [5712]={ [1]={ [1]={ [1]={ @@ -129536,7 +131467,7 @@ return { [1]="chance_%_to_drop_additional_scarab_misc" } }, - [5635]={ + [5713]={ [1]={ [1]={ [1]={ @@ -129556,7 +131487,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_gilded" } }, - [5636]={ + [5714]={ [1]={ [1]={ [1]={ @@ -129576,7 +131507,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_polished" } }, - [5637]={ + [5715]={ [1]={ [1]={ [1]={ @@ -129596,7 +131527,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_rusted" } }, - [5638]={ + [5716]={ [1]={ [1]={ [1]={ @@ -129616,7 +131547,7 @@ return { [1]="chance_%_to_drop_additional_scarab_ritual" } }, - [5639]={ + [5717]={ [1]={ [1]={ [1]={ @@ -129636,7 +131567,7 @@ return { [1]="chance_%_to_drop_additional_scarab_settlers" } }, - [5640]={ + [5718]={ [1]={ [1]={ [1]={ @@ -129656,7 +131587,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_gilded" } }, - [5641]={ + [5719]={ [1]={ [1]={ [1]={ @@ -129676,7 +131607,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_polished" } }, - [5642]={ + [5720]={ [1]={ [1]={ [1]={ @@ -129696,7 +131627,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_rusted" } }, - [5643]={ + [5721]={ [1]={ [1]={ [1]={ @@ -129716,7 +131647,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox" } }, - [5644]={ + [5722]={ [1]={ [1]={ [1]={ @@ -129736,7 +131667,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_gilded" } }, - [5645]={ + [5723]={ [1]={ [1]={ [1]={ @@ -129756,7 +131687,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_polished" } }, - [5646]={ + [5724]={ [1]={ [1]={ [1]={ @@ -129776,7 +131707,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_rusted" } }, - [5647]={ + [5725]={ [1]={ [1]={ [1]={ @@ -129796,7 +131727,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite" } }, - [5648]={ + [5726]={ [1]={ [1]={ [1]={ @@ -129816,7 +131747,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_gilded" } }, - [5649]={ + [5727]={ [1]={ [1]={ [1]={ @@ -129836,7 +131767,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_polished" } }, - [5650]={ + [5728]={ [1]={ [1]={ [1]={ @@ -129856,7 +131787,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_rusted" } }, - [5651]={ + [5729]={ [1]={ [1]={ [1]={ @@ -129876,7 +131807,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment" } }, - [5652]={ + [5730]={ [1]={ [1]={ [1]={ @@ -129896,7 +131827,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_gilded" } }, - [5653]={ + [5731]={ [1]={ [1]={ [1]={ @@ -129916,7 +131847,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_polished" } }, - [5654]={ + [5732]={ [1]={ [1]={ [1]={ @@ -129936,7 +131867,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_rusted" } }, - [5655]={ + [5733]={ [1]={ [1]={ [1]={ @@ -129956,7 +131887,7 @@ return { [1]="chance_%_to_drop_additional_scarab_ultimatum" } }, - [5656]={ + [5734]={ [1]={ [1]={ [1]={ @@ -129976,7 +131907,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques" } }, - [5657]={ + [5735]={ [1]={ [1]={ [1]={ @@ -129996,7 +131927,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_gilded" } }, - [5658]={ + [5736]={ [1]={ [1]={ [1]={ @@ -130016,7 +131947,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_polished" } }, - [5659]={ + [5737]={ [1]={ [1]={ [1]={ @@ -130036,7 +131967,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_rusted" } }, - [5660]={ + [5738]={ [1]={ [1]={ [1]={ @@ -130056,7 +131987,7 @@ return { [1]="chance_%_to_drop_additional_tangled_currency" } }, - [5661]={ + [5739]={ [1]={ [1]={ [1]={ @@ -130076,7 +132007,7 @@ return { [1]="chance_%_to_drop_additional_tangled_influenced_item" } }, - [5662]={ + [5740]={ [1]={ [1]={ [1]={ @@ -130096,7 +132027,7 @@ return { [1]="chance_%_to_drop_additional_unique" } }, - [5663]={ + [5741]={ [1]={ [1]={ limit={ @@ -130121,7 +132052,7 @@ return { [1]="chance_%_to_return_to_full_life_on_reaching_low_life" } }, - [5664]={ + [5742]={ [1]={ [1]={ [1]={ @@ -130154,7 +132085,7 @@ return { [1]="chance_to_be_hindered_when_hit_by_spells_%" } }, - [5665]={ + [5743]={ [1]={ [1]={ [1]={ @@ -130174,7 +132105,7 @@ return { [1]="chance_to_be_maimed_when_hit_%" } }, - [5666]={ + [5744]={ [1]={ [1]={ [1]={ @@ -130194,7 +132125,7 @@ return { [1]="chance_to_be_sapped_when_hit_%" } }, - [5667]={ + [5745]={ [1]={ [1]={ [1]={ @@ -130214,7 +132145,7 @@ return { [1]="chance_to_be_scorched_when_hit_%" } }, - [5668]={ + [5746]={ [1]={ [1]={ [1]={ @@ -130234,7 +132165,7 @@ return { [1]="chance_to_block_attack_damage_if_not_blocked_recently_%" } }, - [5669]={ + [5747]={ [1]={ [1]={ [1]={ @@ -130254,7 +132185,7 @@ return { [1]="chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%" } }, - [5670]={ + [5748]={ [1]={ [1]={ [1]={ @@ -130274,7 +132205,7 @@ return { [1]="chance_to_block_attack_damage_if_used_retaliation_recently_%" } }, - [5671]={ + [5749]={ [1]={ [1]={ limit={ @@ -130290,7 +132221,7 @@ return { [1]="chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%" } }, - [5672]={ + [5750]={ [1]={ [1]={ limit={ @@ -130306,7 +132237,7 @@ return { [1]="chance_to_block_attacks_%_while_channelling" } }, - [5673]={ + [5751]={ [1]={ [1]={ [1]={ @@ -130326,7 +132257,7 @@ return { [1]="chance_to_block_spells_%_if_used_retaliation_recently" } }, - [5674]={ + [5752]={ [1]={ [1]={ [1]={ @@ -130346,7 +132277,7 @@ return { [1]="chance_to_block_spells_%_if_cast_a_spell_recently" } }, - [5675]={ + [5753]={ [1]={ [1]={ [1]={ @@ -130366,7 +132297,7 @@ return { [1]="chance_to_block_spells_%_if_damaged_by_a_hit_recently" } }, - [5676]={ + [5754]={ [1]={ [1]={ limit={ @@ -130382,7 +132313,7 @@ return { [1]="chance_to_block_spells_%_while_affected_by_discipline" } }, - [5677]={ + [5755]={ [1]={ [1]={ limit={ @@ -130398,7 +132329,7 @@ return { [1]="chance_to_block_spells_%_while_channelling" } }, - [5678]={ + [5756]={ [1]={ [1]={ [1]={ @@ -130418,7 +132349,7 @@ return { [1]="chance_to_create_consecrated_ground_on_melee_kill_%" } }, - [5679]={ + [5757]={ [1]={ [1]={ [1]={ @@ -130464,7 +132395,7 @@ return { [1]="chance_to_crush_on_hit_%" } }, - [5680]={ + [5758]={ [1]={ [1]={ limit={ @@ -130480,7 +132411,7 @@ return { [1]="chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second" } }, - [5681]={ + [5759]={ [1]={ [1]={ limit={ @@ -130496,7 +132427,7 @@ return { [1]="chance_to_deal_double_damage_%_while_at_least_200_strength" } }, - [5682]={ + [5760]={ [1]={ [1]={ limit={ @@ -130512,7 +132443,7 @@ return { [1]="chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds" } }, - [5683]={ + [5761]={ [1]={ [1]={ limit={ @@ -130528,7 +132459,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [5684]={ + [5762]={ [1]={ [1]={ [1]={ @@ -130548,7 +132479,7 @@ return { [1]="chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently" } }, - [5685]={ + [5763]={ [1]={ [1]={ [1]={ @@ -130568,7 +132499,7 @@ return { [1]="chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently" } }, - [5686]={ + [5764]={ [1]={ [1]={ limit={ @@ -130584,7 +132515,7 @@ return { [1]="chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds" } }, - [5687]={ + [5765]={ [1]={ [1]={ limit={ @@ -130600,7 +132531,7 @@ return { [1]="chance_to_deal_double_damage_%_per_10_intelligence" } }, - [5688]={ + [5766]={ [1]={ [1]={ limit={ @@ -130616,7 +132547,7 @@ return { [1]="chance_to_deal_double_damage_%_per_4_rage" } }, - [5689]={ + [5767]={ [1]={ [1]={ limit={ @@ -130632,7 +132563,7 @@ return { [1]="chance_to_deal_double_damage_%_per_500_strength" } }, - [5690]={ + [5768]={ [1]={ [1]={ limit={ @@ -130657,7 +132588,7 @@ return { [1]="chance_to_deal_double_damage_%_while_focused" } }, - [5691]={ + [5769]={ [1]={ [1]={ limit={ @@ -130673,7 +132604,7 @@ return { [1]="chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds" } }, - [5692]={ + [5770]={ [1]={ [1]={ limit={ @@ -130689,7 +132620,7 @@ return { [1]="chance_to_deal_double_damage_while_on_full_life_%" } }, - [5693]={ + [5771]={ [1]={ [1]={ limit={ @@ -130705,7 +132636,7 @@ return { [1]="chance_to_deal_triple_damage_%_while_at_least_400_strength" } }, - [5694]={ + [5772]={ [1]={ [1]={ [1]={ @@ -130725,7 +132656,7 @@ return { [1]="chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield" } }, - [5695]={ + [5773]={ [1]={ [1]={ [1]={ @@ -130745,7 +132676,7 @@ return { [1]="chance_to_double_armour_effect_on_hit_%" } }, - [5696]={ + [5774]={ [1]={ [1]={ [1]={ @@ -130765,7 +132696,7 @@ return { [1]="chance_to_double_armour_effect_on_hit_%_per_enemy_hit_taken_recently_capped" } }, - [5697]={ + [5775]={ [1]={ [1]={ limit={ @@ -130781,7 +132712,7 @@ return { [1]="chance_to_evade_attacks_%" } }, - [5698]={ + [5776]={ [1]={ [1]={ [1]={ @@ -130801,7 +132732,7 @@ return { [1]="chance_to_evade_attacks_%_if_havent_been_hit_recently" } }, - [5699]={ + [5777]={ [1]={ [1]={ limit={ @@ -130817,7 +132748,7 @@ return { [1]="chance_to_evade_attacks_%_while_affected_by_grace" } }, - [5700]={ + [5778]={ [1]={ [1]={ limit={ @@ -130833,7 +132764,7 @@ return { [1]="chance_to_evade_%_while_you_have_energy_shield" } }, - [5701]={ + [5779]={ [1]={ [1]={ limit={ @@ -130849,7 +132780,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [5702]={ + [5780]={ [1]={ [1]={ [1]={ @@ -130890,7 +132821,7 @@ return { [1]="chance_to_fortify_on_melee_stun_%" } }, - [5703]={ + [5781]={ [1]={ [1]={ [1]={ @@ -130910,7 +132841,7 @@ return { [1]="chance_to_freeze_enemies_for_1_second_when_hit_%" } }, - [5704]={ + [5782]={ [1]={ [1]={ limit={ @@ -130926,7 +132857,7 @@ return { [1]="chance_to_freeze_shock_ignite_%_while_affected_by_a_herald" } }, - [5705]={ + [5783]={ [1]={ [1]={ limit={ @@ -130942,7 +132873,7 @@ return { [1]="chance_to_gain_200_life_on_hit_with_attacks_%" } }, - [5706]={ + [5784]={ [1]={ [1]={ limit={ @@ -130958,7 +132889,7 @@ return { [1]="chance_to_gain_3_additional_exerted_attacks_%" } }, - [5707]={ + [5785]={ [1]={ [1]={ [1]={ @@ -130978,7 +132909,7 @@ return { [1]="chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5708]={ + [5786]={ [1]={ [1]={ [1]={ @@ -131011,7 +132942,7 @@ return { [1]="chance_to_gain_chaotic_might_on_crit_for_4_seconds_%" } }, - [5709]={ + [5787]={ [1]={ [1]={ [1]={ @@ -131031,7 +132962,7 @@ return { [1]="chance_to_gain_elusive_when_you_block_while_dual_wielding_%" } }, - [5710]={ + [5788]={ [1]={ [1]={ limit={ @@ -131047,7 +132978,7 @@ return { [1]="chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy" } }, - [5711]={ + [5789]={ [1]={ [1]={ limit={ @@ -131063,7 +132994,7 @@ return { [1]="chance_to_gain_endurance_charge_when_you_stun_enemy_%" } }, - [5712]={ + [5790]={ [1]={ [1]={ limit={ @@ -131079,7 +133010,7 @@ return { [1]="chance_to_gain_endurance_charge_when_you_taunt_enemy_%" } }, - [5713]={ + [5791]={ [1]={ [1]={ limit={ @@ -131104,7 +133035,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_attack_%" } }, - [5714]={ + [5792]={ [1]={ [1]={ limit={ @@ -131129,7 +133060,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_%" } }, - [5715]={ + [5793]={ [1]={ [1]={ limit={ @@ -131145,7 +133076,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_stun_%" } }, - [5716]={ + [5794]={ [1]={ [1]={ [1]={ @@ -131165,7 +133096,7 @@ return { [1]="chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5717]={ + [5795]={ [1]={ [1]={ limit={ @@ -131181,7 +133112,7 @@ return { [1]="chance_to_gain_onslaught_on_flask_use_%" } }, - [5718]={ + [5796]={ [1]={ [1]={ [1]={ @@ -131201,7 +133132,7 @@ return { [1]="chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy" } }, - [5719]={ + [5797]={ [1]={ [1]={ [1]={ @@ -131234,7 +133165,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_10_seconds_%" } }, - [5720]={ + [5798]={ [1]={ [1]={ limit={ @@ -131250,7 +133181,7 @@ return { [1]="chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%" } }, - [5721]={ + [5799]={ [1]={ [1]={ limit={ @@ -131275,7 +133206,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [5722]={ + [5800]={ [1]={ [1]={ limit={ @@ -131291,7 +133222,7 @@ return { [1]="chance_to_gain_random_standard_charge_on_hit_%" } }, - [5723]={ + [5801]={ [1]={ [1]={ limit={ @@ -131307,7 +133238,7 @@ return { [1]="chance_to_gain_skill_cost_as_mana_when_paid_%" } }, - [5724]={ + [5802]={ [1]={ [1]={ [1]={ @@ -131327,7 +133258,7 @@ return { [1]="chance_to_gain_unholy_might_on_crit_for_4_seconds_%" } }, - [5725]={ + [5803]={ [1]={ [1]={ [1]={ @@ -131360,7 +133291,7 @@ return { [1]="chance_to_gain_old_unholy_might_on_kill_for_10_seconds_%" } }, - [5726]={ + [5804]={ [1]={ [1]={ limit={ @@ -131385,7 +133316,7 @@ return { [1]="chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%" } }, - [5727]={ + [5805]={ [1]={ [1]={ limit={ @@ -131410,7 +133341,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%" } }, - [5728]={ + [5806]={ [1]={ [1]={ limit={ @@ -131426,7 +133357,7 @@ return { [1]="chance_to_grant_power_charge_on_shocking_chilled_enemy_%" } }, - [5729]={ + [5807]={ [1]={ [1]={ [1]={ @@ -131458,7 +133389,7 @@ return { [1]="chance_to_ignite_freeze_shock_and_poison_+%_vs_cursed_enemies" } }, - [5730]={ + [5808]={ [1]={ [1]={ limit={ @@ -131474,7 +133405,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [5731]={ + [5809]={ [1]={ [1]={ [1]={ @@ -131507,7 +133438,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [5732]={ + [5810]={ [1]={ [1]={ [1]={ @@ -131540,7 +133471,7 @@ return { [1]="chance_to_inflict_brittle_on_enemy_on_block_%" } }, - [5733]={ + [5811]={ [1]={ [1]={ [1]={ @@ -131560,7 +133491,7 @@ return { [1]="chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%" } }, - [5734]={ + [5812]={ [1]={ [1]={ [1]={ @@ -131580,7 +133511,7 @@ return { [1]="chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%" } }, - [5735]={ + [5813]={ [1]={ [1]={ [1]={ @@ -131600,7 +133531,7 @@ return { [1]="chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%" } }, - [5736]={ + [5814]={ [1]={ [1]={ [1]={ @@ -131633,7 +133564,7 @@ return { [1]="chance_to_inflict_sap_on_enemy_on_block_%" } }, - [5737]={ + [5815]={ [1]={ [1]={ [1]={ @@ -131666,7 +133597,7 @@ return { [1]="chance_to_inflict_scorch_on_enemy_on_block_%" } }, - [5738]={ + [5816]={ [1]={ [1]={ [1]={ @@ -131686,7 +133617,7 @@ return { [1]="chance_to_intimidate_nearby_enemies_on_melee_kill_%" } }, - [5739]={ + [5817]={ [1]={ [1]={ [1]={ @@ -131719,7 +133650,7 @@ return { [1]="chance_to_intimidate_on_hit_%" } }, - [5740]={ + [5818]={ [1]={ [1]={ limit={ @@ -131735,7 +133666,7 @@ return { [1]="chance_to_leave_2_ground_blades_%" } }, - [5741]={ + [5819]={ [1]={ [1]={ [1]={ @@ -131755,7 +133686,7 @@ return { [1]="chance_to_not_gain_tincture_toxicity_%" } }, - [5742]={ + [5820]={ [1]={ [1]={ limit={ @@ -131771,7 +133702,7 @@ return { [1]="chance_to_poison_on_hit_%_per_power_charge" } }, - [5743]={ + [5821]={ [1]={ [1]={ [1]={ @@ -131791,7 +133722,7 @@ return { [1]="chance_to_remove_1_tincture_toxicity_on_kill_%" } }, - [5744]={ + [5822]={ [1]={ [1]={ [1]={ @@ -131836,7 +133767,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5745]={ + [5823]={ [1]={ [1]={ [1]={ @@ -131856,7 +133787,7 @@ return { [1]="chance_to_shock_chilled_enemies_%" } }, - [5746]={ + [5824]={ [1]={ [1]={ limit={ @@ -131872,7 +133803,7 @@ return { [1]="chance_to_start_energy_shield_recharge_%_on_linking_target" } }, - [5747]={ + [5825]={ [1]={ [1]={ limit={ @@ -131888,7 +133819,7 @@ return { [1]="chance_to_summon_two_totems_%" } }, - [5748]={ + [5826]={ [1]={ [1]={ limit={ @@ -131904,7 +133835,7 @@ return { [1]="chance_to_throw_4_additional_traps_%" } }, - [5749]={ + [5827]={ [1]={ [1]={ [1]={ @@ -131937,7 +133868,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [5750]={ + [5828]={ [1]={ [1]={ [1]={ @@ -131970,7 +133901,7 @@ return { [1]="chance_to_unnerve_on_hit_with_spells_%" } }, - [5751]={ + [5829]={ [1]={ [1]={ limit={ @@ -131999,7 +133930,7 @@ return { [1]="channelled_skill_damage_+%" } }, - [5752]={ + [5830]={ [1]={ [1]={ limit={ @@ -132028,7 +133959,7 @@ return { [1]="channelled_skill_damage_+%_per_10_devotion" } }, - [5753]={ + [5831]={ [1]={ [1]={ [1]={ @@ -132048,7 +133979,7 @@ return { [1]="chaos_damage_does_not_bypass_energy_shield_while_not_low_life" } }, - [5754]={ + [5832]={ [1]={ [1]={ [1]={ @@ -132068,7 +133999,7 @@ return { [1]="chaos_damage_does_not_bypass_energy_shield_while_not_low_mana" } }, - [5755]={ + [5833]={ [1]={ [1]={ [1]={ @@ -132101,7 +134032,7 @@ return { [1]="extra_chaos_damage_rolls" } }, - [5756]={ + [5834]={ [1]={ [1]={ limit={ @@ -132117,7 +134048,7 @@ return { [1]="chaos_damage_over_time_heals_while_leeching_life" } }, - [5757]={ + [5835]={ [1]={ [1]={ limit={ @@ -132133,7 +134064,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_per_4_chaos_resistance" } }, - [5758]={ + [5836]={ [1]={ [1]={ limit={ @@ -132149,7 +134080,7 @@ return { [1]="additional_chaos_resistance_against_damage_over_time_%" } }, - [5759]={ + [5837]={ [1]={ [1]={ [1]={ @@ -132169,7 +134100,7 @@ return { [1]="chaos_damage_per_minute_while_affected_by_flask" } }, - [5760]={ + [5838]={ [1]={ [1]={ limit={ @@ -132194,7 +134125,7 @@ return { [1]="chaos_damage_%_taken_from_mana_before_life" } }, - [5761]={ + [5839]={ [1]={ [1]={ limit={ @@ -132210,7 +134141,7 @@ return { [1]="chaos_damage_+%_per_100_max_mana_up_to_80" } }, - [5762]={ + [5840]={ [1]={ [1]={ limit={ @@ -132239,7 +134170,55 @@ return { [1]="chaos_damage_+%_while_affected_by_herald_of_agony" } }, - [5763]={ + [5841]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Chaos Resistance per 1% Cold Resistance" + } + }, + stats={ + [1]="chaos_damage_resistance_%_per_1%_cold_resistance" + } + }, + [5842]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Chaos Resistance per 1% Fire Resistance" + } + }, + stats={ + [1]="chaos_damage_resistance_%_per_1%_fire_resistance" + } + }, + [5843]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Chaos Resistance per 1% Lightning Resistance" + } + }, + stats={ + [1]="chaos_damage_resistance_%_per_1%_lightning_resistance" + } + }, + [5844]={ [1]={ [1]={ limit={ @@ -132255,7 +134234,7 @@ return { [1]="chaos_damage_resistance_%_per_endurance_charge" } }, - [5764]={ + [5845]={ [1]={ [1]={ limit={ @@ -132271,7 +134250,7 @@ return { [1]="chaos_damage_resistance_is_doubled" } }, - [5765]={ + [5846]={ [1]={ [1]={ limit={ @@ -132287,7 +134266,7 @@ return { [1]="chaos_damage_resistance_%_per_poison_stack" } }, - [5766]={ + [5847]={ [1]={ [1]={ limit={ @@ -132312,7 +134291,7 @@ return { [1]="chaos_damage_resistance_%_when_stationary" } }, - [5767]={ + [5848]={ [1]={ [1]={ limit={ @@ -132328,7 +134307,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_herald_of_agony" } }, - [5768]={ + [5849]={ [1]={ [1]={ limit={ @@ -132344,7 +134323,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_purity_of_elements" } }, - [5769]={ + [5850]={ [1]={ [1]={ limit={ @@ -132360,7 +134339,7 @@ return { [1]="chaos_damage_resisted_by_highest_resistance" } }, - [5770]={ + [5851]={ [1]={ [1]={ limit={ @@ -132376,7 +134355,7 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [5771]={ + [5852]={ [1]={ [1]={ [1]={ @@ -132396,7 +134375,7 @@ return { [1]="chaos_damage_taken_goes_to_life_over_4_seconds_%" } }, - [5772]={ + [5853]={ [1]={ [1]={ limit={ @@ -132425,7 +134404,7 @@ return { [1]="chaos_damage_taken_over_time_+%_while_in_caustic_cloud" } }, - [5773]={ + [5854]={ [1]={ [1]={ limit={ @@ -132454,7 +134433,7 @@ return { [1]="chaos_damage_with_attack_skills_+%" } }, - [5774]={ + [5855]={ [1]={ [1]={ limit={ @@ -132483,7 +134462,7 @@ return { [1]="chaos_damage_with_spell_skills_+%" } }, - [5775]={ + [5856]={ [1]={ [1]={ [1]={ @@ -132503,7 +134482,7 @@ return { [1]="chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems" } }, - [5776]={ + [5857]={ [1]={ [1]={ limit={ @@ -132519,7 +134498,7 @@ return { [1]="chaos_hit_and_dot_damage_%_taken_as_fire" } }, - [5777]={ + [5858]={ [1]={ [1]={ limit={ @@ -132535,7 +134514,7 @@ return { [1]="chaos_hit_and_dot_damage_%_taken_as_lightning" } }, - [5778]={ + [5859]={ [1]={ [1]={ [1]={ @@ -132555,7 +134534,7 @@ return { [1]="chaos_skill_chance_to_hinder_on_hit_%" } }, - [5779]={ + [5860]={ [1]={ [1]={ limit={ @@ -132571,7 +134550,7 @@ return { [1]="chaos_skill_chance_to_ignite_%" } }, - [5780]={ + [5861]={ [1]={ [1]={ limit={ @@ -132587,7 +134566,7 @@ return { [1]="chaos_skill_gem_level_+" } }, - [5781]={ + [5862]={ [1]={ [1]={ limit={ @@ -132616,7 +134595,7 @@ return { [1]="chaos_skills_area_of_effect_+%" } }, - [5782]={ + [5863]={ [1]={ [1]={ limit={ @@ -132645,7 +134624,7 @@ return { [1]="charged_dash_movement_speed_+%_final" } }, - [5783]={ + [5864]={ [1]={ [1]={ limit={ @@ -132661,7 +134640,7 @@ return { [1]="chest_drop_additional_corrupted_item_divination_cards" } }, - [5784]={ + [5865]={ [1]={ [1]={ limit={ @@ -132677,7 +134656,7 @@ return { [1]="chest_drop_additional_currency_item_divination_cards" } }, - [5785]={ + [5866]={ [1]={ [1]={ limit={ @@ -132693,7 +134672,7 @@ return { [1]="chest_drop_additional_divination_cards_from_current_world_area" } }, - [5786]={ + [5867]={ [1]={ [1]={ limit={ @@ -132709,7 +134688,7 @@ return { [1]="chest_drop_additional_divination_cards_from_same_set" } }, - [5787]={ + [5868]={ [1]={ [1]={ limit={ @@ -132725,7 +134704,7 @@ return { [1]="chest_drop_additional_unique_item_divination_cards" } }, - [5788]={ + [5869]={ [1]={ [1]={ limit={ @@ -132741,7 +134720,7 @@ return { [1]="chest_number_of_additional_pirate_uniques_to_drop" } }, - [5789]={ + [5870]={ [1]={ [1]={ limit={ @@ -132770,7 +134749,7 @@ return { [1]="chill_and_freeze_duration_+%" } }, - [5790]={ + [5871]={ [1]={ [1]={ [1]={ @@ -132803,7 +134782,7 @@ return { [1]="chill_attackers_for_4_seconds_on_block_%_chance" } }, - [5791]={ + [5872]={ [1]={ [1]={ limit={ @@ -132832,7 +134811,7 @@ return { [1]="chill_effect_+%_while_mana_leeching" } }, - [5792]={ + [5873]={ [1]={ [1]={ limit={ @@ -132848,7 +134827,23 @@ return { [1]="chill_effect_is_reversed" } }, - [5793]={ + [5874]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="The Effect of Chill on you is reversed while on Chilled ground" + } + }, + stats={ + [1]="chill_effect_is_reversed_when_on_chilled_ground" + } + }, + [5875]={ [1]={ [1]={ limit={ @@ -132877,7 +134872,7 @@ return { [1]="chill_effect_+%" } }, - [5794]={ + [5876]={ [1]={ [1]={ limit={ @@ -132906,7 +134901,7 @@ return { [1]="chill_effect_+%_with_critical_strikes" } }, - [5795]={ + [5877]={ [1]={ [1]={ limit={ @@ -132922,7 +134917,7 @@ return { [1]="chill_minimum_slow_%_from_mastery" } }, - [5796]={ + [5878]={ [1]={ [1]={ [1]={ @@ -132942,7 +134937,7 @@ return { [1]="chill_nearby_enemies_when_you_focus" } }, - [5797]={ + [5879]={ [1]={ [1]={ [1]={ @@ -132979,7 +134974,7 @@ return { [1]="chilled_ground_effect_+%" } }, - [5798]={ + [5880]={ [1]={ [1]={ [1]={ @@ -133012,7 +135007,7 @@ return { [1]="chilled_ground_when_hit_with_attack_%" } }, - [5799]={ + [5881]={ [1]={ [1]={ [1]={ @@ -133032,7 +135027,7 @@ return { [1]="chilled_while_bleeding" } }, - [5800]={ + [5882]={ [1]={ [1]={ [1]={ @@ -133052,7 +135047,7 @@ return { [1]="chilled_while_poisoned" } }, - [5801]={ + [5883]={ [1]={ [1]={ [1]={ @@ -133089,7 +135084,7 @@ return { [1]="chilling_areas_also_grant_curse_effect_+%" } }, - [5802]={ + [5884]={ [1]={ [1]={ [1]={ @@ -133126,7 +135121,7 @@ return { [1]="chilling_areas_also_grant_lightning_damage_taken_+%" } }, - [5803]={ + [5885]={ [1]={ [1]={ limit={ @@ -133142,7 +135137,7 @@ return { [1]="chills_from_your_hits_cause_shattering" } }, - [5804]={ + [5886]={ [1]={ [1]={ limit={ @@ -133158,7 +135153,7 @@ return { [1]="chronomancer_reserves_no_mana" } }, - [5805]={ + [5887]={ [1]={ [1]={ limit={ @@ -133187,7 +135182,7 @@ return { [1]="circle_of_power_critical_strike_chance_+%_per_stage" } }, - [5806]={ + [5888]={ [1]={ [1]={ limit={ @@ -133208,7 +135203,7 @@ return { [2]="circle_of_power_max_added_lightning_per_stage" } }, - [5807]={ + [5889]={ [1]={ [1]={ limit={ @@ -133237,7 +135232,7 @@ return { [1]="circle_of_power_upgrade_cost_+%" } }, - [5808]={ + [5890]={ [1]={ [1]={ [1]={ @@ -133274,7 +135269,7 @@ return { [1]="clarity_mana_reservation_efficiency_-2%_per_1" } }, - [5809]={ + [5891]={ [1]={ [1]={ limit={ @@ -133303,7 +135298,7 @@ return { [1]="clarity_mana_reservation_efficiency_+%" } }, - [5810]={ + [5892]={ [1]={ [1]={ limit={ @@ -133319,7 +135314,7 @@ return { [1]="clarity_reserves_no_mana" } }, - [5811]={ + [5893]={ [1]={ [1]={ limit={ @@ -133335,7 +135330,7 @@ return { [1]="claw_damage_against_enemies_on_low_life_+%" } }, - [5812]={ + [5894]={ [1]={ [1]={ limit={ @@ -133364,7 +135359,7 @@ return { [1]="claw_damage_+%_while_on_low_life" } }, - [5813]={ + [5895]={ [1]={ [1]={ [1]={ @@ -133388,23 +135383,40 @@ return { [1]="cleave_fortify_on_hit" } }, - [5814]={ + [5896]={ [1]={ [1]={ + [1]={ + k="locations_to_metres", + v=1 + }, + limit={ + [1]={ + [1]=100, + [2]=100 + } + }, + text="Cleave has +1 metre to radius per Nearby Enemy, up to a maximum of +1 metre" + }, + [2]={ + [1]={ + k="locations_to_metres", + v=1 + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Cleave has +0.1 metres to radius per Nearby Enemy, up to a maximum of +1 metre" + text="Cleave has {0:+d} metres to radius per Nearby Enemy, up to a maximum of +1 metre" } }, stats={ [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [5815]={ + [5897]={ [1]={ [1]={ [1]={ @@ -133424,7 +135436,7 @@ return { [1]="cobra_lash_and_venom_gyre_bleeding_damage_+100%_final_chance" } }, - [5816]={ + [5898]={ [1]={ [1]={ limit={ @@ -133440,7 +135452,7 @@ return { [1]="cobra_lash_and_venom_gyre_skill_physical_damage_%_to_convert_to_chaos" } }, - [5817]={ + [5899]={ [1]={ [1]={ limit={ @@ -133469,7 +135481,7 @@ return { [1]="cobra_lash_damage_+%" } }, - [5818]={ + [5900]={ [1]={ [1]={ limit={ @@ -133494,7 +135506,7 @@ return { [1]="cobra_lash_number_of_additional_chains" } }, - [5819]={ + [5901]={ [1]={ [1]={ limit={ @@ -133523,7 +135535,7 @@ return { [1]="cobra_lash_projectile_speed_+%" } }, - [5820]={ + [5902]={ [1]={ [1]={ [1]={ @@ -133560,7 +135572,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [5821]={ + [5903]={ [1]={ [1]={ [1]={ @@ -133597,7 +135609,7 @@ return { [1]="cold_ailment_effect_+%_against_shocked_enemies" } }, - [5822]={ + [5904]={ [1]={ [1]={ [1]={ @@ -133634,7 +135646,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [5823]={ + [5905]={ [1]={ [1]={ [1]={ @@ -133671,7 +135683,7 @@ return { [1]="cold_ailments_effect_+%_final_if_hit_highest_cold" } }, - [5824]={ + [5906]={ [1]={ [1]={ limit={ @@ -133687,7 +135699,7 @@ return { [1]="cold_and_chaos_damage_resistance_%" } }, - [5825]={ + [5907]={ [1]={ [1]={ limit={ @@ -133703,7 +135715,7 @@ return { [1]="cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire" } }, - [5826]={ + [5908]={ [1]={ [1]={ limit={ @@ -133719,7 +135731,7 @@ return { [1]="cold_damage_%_to_add_as_fire_per_1%_chill_effect_on_enemy" } }, - [5827]={ + [5909]={ [1]={ [1]={ limit={ @@ -133735,7 +135747,7 @@ return { [1]="cold_damage_%_to_add_as_fire_vs_frozen_enemies" } }, - [5828]={ + [5910]={ [1]={ [1]={ limit={ @@ -133751,7 +135763,7 @@ return { [1]="cold_damage_+%_per_cold_resistance_above_75" } }, - [5829]={ + [5911]={ [1]={ [1]={ [1]={ @@ -133771,7 +135783,7 @@ return { [1]="cold_damage_over_time_multiplier_+_per_4%_overcapped_cold_resistance" } }, - [5830]={ + [5912]={ [1]={ [1]={ limit={ @@ -133787,7 +135799,7 @@ return { [1]="cold_damage_over_time_multiplier_+_per_power_charge" } }, - [5831]={ + [5913]={ [1]={ [1]={ limit={ @@ -133803,7 +135815,7 @@ return { [1]="cold_damage_%_to_add_as_chaos_per_frenzy_charge" } }, - [5832]={ + [5914]={ [1]={ [1]={ limit={ @@ -133832,7 +135844,7 @@ return { [1]="cold_damage_+%_if_you_have_used_a_fire_skill_recently" } }, - [5833]={ + [5915]={ [1]={ [1]={ limit={ @@ -133848,7 +135860,7 @@ return { [1]="cold_damage_+%_per_25_dexterity" } }, - [5834]={ + [5916]={ [1]={ [1]={ limit={ @@ -133864,7 +135876,7 @@ return { [1]="cold_damage_+%_per_25_intelligence" } }, - [5835]={ + [5917]={ [1]={ [1]={ limit={ @@ -133880,7 +135892,7 @@ return { [1]="cold_damage_+%_per_25_strength" } }, - [5836]={ + [5918]={ [1]={ [1]={ limit={ @@ -133909,7 +135921,7 @@ return { [1]="cold_damage_+%_per_frenzy_charge" } }, - [5837]={ + [5919]={ [1]={ [1]={ [1]={ @@ -133946,7 +135958,7 @@ return { [1]="cold_damage_+%_per_missing_cold_resistance" } }, - [5838]={ + [5920]={ [1]={ [1]={ limit={ @@ -133975,7 +135987,7 @@ return { [1]="cold_damage_+%_while_affected_by_hatred" } }, - [5839]={ + [5921]={ [1]={ [1]={ limit={ @@ -134004,7 +136016,7 @@ return { [1]="cold_damage_+%_while_affected_by_herald_of_ice" } }, - [5840]={ + [5922]={ [1]={ [1]={ limit={ @@ -134033,7 +136045,7 @@ return { [1]="cold_damage_+%_while_off_hand_is_empty" } }, - [5841]={ + [5923]={ [1]={ [1]={ limit={ @@ -134049,7 +136061,7 @@ return { [1]="cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [5842]={ + [5924]={ [1]={ [1]={ [1]={ @@ -134069,7 +136081,7 @@ return { [1]="cold_damage_taken_goes_to_life_over_4_seconds_%" } }, - [5843]={ + [5925]={ [1]={ [1]={ limit={ @@ -134085,7 +136097,7 @@ return { [1]="cold_damage_taken_+" } }, - [5844]={ + [5926]={ [1]={ [1]={ [1]={ @@ -134122,7 +136134,7 @@ return { [1]="cold_damage_taken_+%_if_have_been_hit_recently" } }, - [5845]={ + [5927]={ [1]={ [1]={ limit={ @@ -134151,7 +136163,7 @@ return { [1]="cold_damage_with_attack_skills_+%" } }, - [5846]={ + [5928]={ [1]={ [1]={ limit={ @@ -134180,7 +136192,7 @@ return { [1]="cold_damage_with_spell_skills_+%" } }, - [5847]={ + [5929]={ [1]={ [1]={ [1]={ @@ -134200,7 +136212,7 @@ return { [1]="cold_exposure_on_hit_magnitude" } }, - [5848]={ + [5930]={ [1]={ [1]={ limit={ @@ -134216,7 +136228,7 @@ return { [1]="cold_exposure_you_inflict_applies_extra_cold_resistance_+%" } }, - [5849]={ + [5931]={ [1]={ [1]={ limit={ @@ -134232,7 +136244,7 @@ return { [1]="cold_hit_and_dot_damage_%_taken_as_fire" } }, - [5850]={ + [5932]={ [1]={ [1]={ limit={ @@ -134248,7 +136260,7 @@ return { [1]="cold_hit_and_dot_damage_%_taken_as_lightning" } }, - [5851]={ + [5933]={ [1]={ [1]={ limit={ @@ -134277,7 +136289,7 @@ return { [1]="cold_hit_damage_+%_vs_shocked_enemies" } }, - [5852]={ + [5934]={ [1]={ [1]={ limit={ @@ -134293,7 +136305,7 @@ return { [1]="cold_penetration_%_vs_chilled_enemies" } }, - [5853]={ + [5935]={ [1]={ [1]={ limit={ @@ -134309,7 +136321,7 @@ return { [1]="cold_projectile_mine_critical_multiplier_+" } }, - [5854]={ + [5936]={ [1]={ [1]={ limit={ @@ -134338,7 +136350,7 @@ return { [1]="cold_projectile_mine_damage_+%" } }, - [5855]={ + [5937]={ [1]={ [1]={ [1]={ @@ -134367,7 +136379,7 @@ return { [1]="cold_projectile_mine_throwing_speed_negated_+%" } }, - [5856]={ + [5938]={ [1]={ [1]={ limit={ @@ -134396,7 +136408,7 @@ return { [1]="cold_projectile_mine_throwing_speed_+%" } }, - [5857]={ + [5939]={ [1]={ [1]={ limit={ @@ -134412,7 +136424,7 @@ return { [1]="cold_resistance_cannot_be_penetrated" } }, - [5858]={ + [5940]={ [1]={ [1]={ [1]={ @@ -134432,7 +136444,7 @@ return { [1]="cold_skill_chance_to_inflict_cold_exposure_%" } }, - [5859]={ + [5941]={ [1]={ [1]={ limit={ @@ -134448,7 +136460,7 @@ return { [1]="cold_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped" } }, - [5860]={ + [5942]={ [1]={ [1]={ limit={ @@ -134464,7 +136476,7 @@ return { [1]="cold_skill_gem_level_+" } }, - [5861]={ + [5943]={ [1]={ [1]={ [1]={ @@ -134484,7 +136496,7 @@ return { [1]="cold_skills_chance_to_poison_on_hit_%" } }, - [5862]={ + [5944]={ [1]={ [1]={ limit={ @@ -134500,7 +136512,7 @@ return { [1]="cold_snap_uses_and_gains_power_charges_instead_of_frenzy" } }, - [5863]={ + [5945]={ [1]={ [1]={ limit={ @@ -134516,7 +136528,7 @@ return { [1]="cold_spell_physical_damage_%_to_convert_to_cold" } }, - [5864]={ + [5946]={ [1]={ [1]={ limit={ @@ -134532,7 +136544,7 @@ return { [1]="combust_area_of_effect_+%" } }, - [5865]={ + [5947]={ [1]={ [1]={ limit={ @@ -134548,7 +136560,7 @@ return { [1]="combust_is_disabled" } }, - [5866]={ + [5948]={ [1]={ [1]={ limit={ @@ -134564,7 +136576,7 @@ return { [1]="conductivity_no_reservation" } }, - [5867]={ + [5949]={ [1]={ [1]={ limit={ @@ -134580,7 +136592,7 @@ return { [1]="consecrated_ground_additional_physical_damage_reduction_%" } }, - [5868]={ + [5950]={ [1]={ [1]={ limit={ @@ -134596,7 +136608,7 @@ return { [1]="consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration" } }, - [5869]={ + [5951]={ [1]={ [1]={ limit={ @@ -134625,7 +136637,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [5870]={ + [5952]={ [1]={ [1]={ [1]={ @@ -134670,7 +136682,7 @@ return { [1]="consecrated_ground_damaging_ailment_duration_on_self_+%" } }, - [5871]={ + [5953]={ [1]={ [1]={ limit={ @@ -134699,7 +136711,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [5872]={ + [5954]={ [1]={ [1]={ limit={ @@ -134728,7 +136740,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [5873]={ + [5955]={ [1]={ [1]={ limit={ @@ -134757,7 +136769,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry" } }, - [5874]={ + [5956]={ [1]={ [1]={ [1]={ @@ -134777,7 +136789,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [5875]={ + [5957]={ [1]={ [1]={ [1]={ @@ -134797,7 +136809,7 @@ return { [1]="consecrated_ground_immune_to_status_ailments" } }, - [5876]={ + [5958]={ [1]={ [1]={ [1]={ @@ -134821,7 +136833,7 @@ return { [1]="consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry" } }, - [5877]={ + [5959]={ [1]={ [1]={ [1]={ @@ -134854,7 +136866,7 @@ return { [1]="consecrated_ground_on_death" } }, - [5878]={ + [5960]={ [1]={ [1]={ [1]={ @@ -134887,7 +136899,7 @@ return { [1]="consecrated_ground_on_hit" } }, - [5879]={ + [5961]={ [1]={ [1]={ [1]={ @@ -134907,7 +136919,7 @@ return { [1]="consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds" } }, - [5880]={ + [5962]={ [1]={ [1]={ [1]={ @@ -134927,7 +136939,7 @@ return { [1]="consecrated_ground_while_stationary_radius" } }, - [5881]={ + [5963]={ [1]={ [1]={ [1]={ @@ -134947,7 +136959,7 @@ return { [1]="consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength" } }, - [5882]={ + [5964]={ [1]={ [1]={ [1]={ @@ -134967,7 +136979,7 @@ return { [1]="consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground" } }, - [5883]={ + [5965]={ [1]={ [1]={ limit={ @@ -134983,7 +136995,7 @@ return { [1]="consecrated_path_and_purifying_flame_skill_fire_damage_%_to_convert_to_chaos" } }, - [5884]={ + [5966]={ [1]={ [1]={ limit={ @@ -135012,7 +137024,7 @@ return { [1]="consecrated_path_area_of_effect_+%" } }, - [5885]={ + [5967]={ [1]={ [1]={ limit={ @@ -135041,7 +137053,23 @@ return { [1]="consecrated_path_damage_+%" } }, - [5886]={ + [5968]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Rare Abyssal Jewels will be Consumed\nOne modifier from Consumed Jewels will be retained" + } + }, + stats={ + [1]="consume_abyssal_jewel_when_socketed_display_stat" + } + }, + [5969]={ [1]={ [1]={ limit={ @@ -135057,7 +137085,7 @@ return { [1]="consume_all_impales_remaining_hits_on_hit_%_chance" } }, - [5887]={ + [5970]={ [1]={ [1]={ limit={ @@ -135086,7 +137114,7 @@ return { [1]="consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life" } }, - [5888]={ + [5971]={ [1]={ [1]={ limit={ @@ -135102,7 +137130,7 @@ return { [1]="consume_up_to_50%_life_flask_charges_on_attack_for_ailment_dot_multiplier_+_per_charge" } }, - [5889]={ + [5972]={ [1]={ [1]={ limit={ @@ -135136,7 +137164,7 @@ return { [2]="contagion_spread_on_hit_affected_enemy_%" } }, - [5890]={ + [5973]={ [1]={ [1]={ limit={ @@ -135165,7 +137193,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [5891]={ + [5974]={ [1]={ [1]={ limit={ @@ -135194,7 +137222,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [5892]={ + [5975]={ [1]={ [1]={ [1]={ @@ -135214,7 +137242,7 @@ return { [1]="convert_all_elemental_damage_to_chaos" } }, - [5893]={ + [5976]={ [1]={ [1]={ limit={ @@ -135230,7 +137258,7 @@ return { [1]="cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds" } }, - [5894]={ + [5977]={ [1]={ [1]={ limit={ @@ -135259,7 +137287,7 @@ return { [1]="cooldown_recovery_+%_per_power_charge" } }, - [5895]={ + [5978]={ [1]={ [1]={ limit={ @@ -135288,7 +137316,7 @@ return { [1]="cooldown_speed_+%_per_green_skill_gem" } }, - [5896]={ + [5979]={ [1]={ [1]={ limit={ @@ -135317,7 +137345,7 @@ return { [1]="cooldown_speed_+%_per_brand_up_to_40%" } }, - [5897]={ + [5980]={ [1]={ [1]={ limit={ @@ -135342,7 +137370,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [5898]={ + [5981]={ [1]={ [1]={ limit={ @@ -135371,7 +137399,7 @@ return { [1]="corpse_eruption_cast_speed_+%" } }, - [5899]={ + [5982]={ [1]={ [1]={ limit={ @@ -135400,7 +137428,7 @@ return { [1]="corpse_eruption_damage_+%" } }, - [5900]={ + [5983]={ [1]={ [1]={ limit={ @@ -135429,7 +137457,7 @@ return { [1]="corpse_warp_cast_speed_+%" } }, - [5901]={ + [5984]={ [1]={ [1]={ limit={ @@ -135458,7 +137486,7 @@ return { [1]="corpse_warp_damage_+%" } }, - [5902]={ + [5985]={ [1]={ [1]={ limit={ @@ -135483,7 +137511,7 @@ return { [1]="corpses_drop_loot_again_on_warcry_chance_%" } }, - [5903]={ + [5986]={ [1]={ [1]={ limit={ @@ -135504,7 +137532,7 @@ return { [2]="quality_display_plague_bearer_is_gem" } }, - [5904]={ + [5987]={ [1]={ [1]={ limit={ @@ -135520,7 +137548,7 @@ return { [1]="corrosive_shroud_poison_dot_multiplier_+_while_aura_active" } }, - [5905]={ + [5988]={ [1]={ [1]={ limit={ @@ -135536,7 +137564,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [5906]={ + [5989]={ [1]={ [1]={ limit={ @@ -135565,7 +137593,7 @@ return { [1]="corrupting_fever_damage_+%" } }, - [5907]={ + [5990]={ [1]={ [1]={ limit={ @@ -135594,7 +137622,7 @@ return { [1]="corrupting_fever_duration_+%" } }, - [5908]={ + [5991]={ [1]={ [1]={ limit={ @@ -135610,7 +137638,7 @@ return { [1]="count_as_blocking_attack_from_shield_attack_first_target" } }, - [5909]={ + [5992]={ [1]={ [1]={ limit={ @@ -135626,7 +137654,7 @@ return { [1]="count_as_having_max_endurance_charges" } }, - [5910]={ + [5993]={ [1]={ [1]={ limit={ @@ -135642,7 +137670,7 @@ return { [1]="count_as_having_max_endurance_frenzy_power_charges" } }, - [5911]={ + [5994]={ [1]={ [1]={ limit={ @@ -135658,7 +137686,7 @@ return { [1]="count_as_having_max_frenzy_charges" } }, - [5912]={ + [5995]={ [1]={ [1]={ limit={ @@ -135674,7 +137702,7 @@ return { [1]="count_as_having_max_power_charges" } }, - [5913]={ + [5996]={ [1]={ [1]={ limit={ @@ -135703,7 +137731,7 @@ return { [1]="counterattacks_cooldown_recovery_+%" } }, - [5914]={ + [5997]={ [1]={ [1]={ limit={ @@ -135719,7 +137747,7 @@ return { [1]="counterattacks_deal_double_damage" } }, - [5915]={ + [5998]={ [1]={ [1]={ [1]={ @@ -135752,7 +137780,7 @@ return { [1]="counterattacks_debilitate_for_1_second_on_hit_%_chance" } }, - [5916]={ + [5999]={ [1]={ [1]={ [1]={ @@ -135772,7 +137800,7 @@ return { [1]="cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [5917]={ + [6000]={ [1]={ [1]={ [1]={ @@ -135805,7 +137833,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [5918]={ + [6001]={ [1]={ [1]={ [1]={ @@ -135825,7 +137853,7 @@ return { [1]="cover_in_ash_on_hit_%_while_you_are_burning" } }, - [5919]={ + [6002]={ [1]={ [1]={ [1]={ @@ -135845,7 +137873,7 @@ return { [1]="cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [5920]={ + [6003]={ [1]={ [1]={ [1]={ @@ -135865,7 +137893,7 @@ return { [1]="cover_in_frost_on_hit" } }, - [5921]={ + [6004]={ [1]={ [1]={ [1]={ @@ -135898,7 +137926,7 @@ return { [1]="cover_in_frost_on_hit_%" } }, - [5922]={ + [6005]={ [1]={ [1]={ [1]={ @@ -135931,7 +137959,7 @@ return { [1]="display_cover_nearby_enemies_in_ash_if_havent_moved_in_past_X_seconds" } }, - [5923]={ + [6006]={ [1]={ [1]={ limit={ @@ -135960,7 +137988,7 @@ return { [1]="crackling_lance_cast_speed_+%" } }, - [5924]={ + [6007]={ [1]={ [1]={ limit={ @@ -135989,7 +138017,7 @@ return { [1]="crackling_lance_damage_+%" } }, - [5925]={ + [6008]={ [1]={ [1]={ limit={ @@ -136005,7 +138033,7 @@ return { [1]="create_additional_brand_%_chance" } }, - [5926]={ + [6009]={ [1]={ [1]={ [1]={ @@ -136025,7 +138053,7 @@ return { [1]="create_blighted_spore_on_killing_rare_enemy" } }, - [5927]={ + [6010]={ [1]={ [1]={ [1]={ @@ -136045,7 +138073,7 @@ return { [1]="create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy" } }, - [5928]={ + [6011]={ [1]={ [1]={ [1]={ @@ -136065,7 +138093,7 @@ return { [1]="create_consecrated_ground_on_kill_%" } }, - [5929]={ + [6012]={ [1]={ [1]={ limit={ @@ -136090,7 +138118,7 @@ return { [1]="create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [5930]={ + [6013]={ [1]={ [1]={ [1]={ @@ -136114,7 +138142,7 @@ return { [1]="create_fungal_ground_instead_of_consecrated_ground" } }, - [5931]={ + [6014]={ [1]={ [1]={ limit={ @@ -136135,7 +138163,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [5932]={ + [6015]={ [1]={ [1]={ [1]={ @@ -136155,7 +138183,7 @@ return { [1]="create_profane_ground_instead_of_consecrated_ground" } }, - [5933]={ + [6016]={ [1]={ [1]={ limit={ @@ -136171,7 +138199,7 @@ return { [1]="create_smoke_cloud_on_kill_%_chance" } }, - [5934]={ + [6017]={ [1]={ [1]={ limit={ @@ -136187,7 +138215,7 @@ return { [1]="creeping_frost_cold_snap_all_damage_can_sap" } }, - [5935]={ + [6018]={ [1]={ [1]={ [1]={ @@ -136232,9 +138260,22 @@ return { [1]="creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5936]={ + [6019]={ [1]={ [1]={ + [1]={ + k="milliseconds_to_seconds_1dp", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Fires Projectiles every second" + }, + [2]={ [1]={ k="milliseconds_to_seconds_1dp", v=1 @@ -136252,7 +138293,7 @@ return { [1]="cremation_base_fires_projectile_every_x_ms" } }, - [5937]={ + [6020]={ [1]={ [1]={ limit={ @@ -136281,7 +138322,7 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [5938]={ + [6021]={ [1]={ [1]={ limit={ @@ -136297,7 +138338,7 @@ return { [1]="critical_multiplier_+%_per_10_max_es_on_shield" } }, - [5939]={ + [6022]={ [1]={ [1]={ limit={ @@ -136326,7 +138367,7 @@ return { [1]="critical_strike_chance_+%_final_while_affected_by_precision" } }, - [5940]={ + [6023]={ [1]={ [1]={ limit={ @@ -136355,7 +138396,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_with_lightning_exposure" } }, - [5941]={ + [6024]={ [1]={ [1]={ limit={ @@ -136384,7 +138425,7 @@ return { [1]="critical_strike_chance_against_cursed_enemies_+%" } }, - [5942]={ + [6025]={ [1]={ [1]={ limit={ @@ -136400,7 +138441,7 @@ return { [1]="critical_strike_chance_increased_by_lightning_resistance" } }, - [5943]={ + [6026]={ [1]={ [1]={ [1]={ @@ -136424,7 +138465,7 @@ return { [1]="critical_strike_chance_increased_by_overcapped_lightning_resistance" } }, - [5944]={ + [6027]={ [1]={ [1]={ [1]={ @@ -136444,7 +138485,7 @@ return { [1]="critical_strike_chance_increased_by_spell_suppression_chance" } }, - [5945]={ + [6028]={ [1]={ [1]={ limit={ @@ -136460,7 +138501,7 @@ return { [1]="critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry" } }, - [5946]={ + [6029]={ [1]={ [1]={ limit={ @@ -136489,7 +138530,7 @@ return { [1]="critical_strike_chance_+%_during_any_flask_effect" } }, - [5947]={ + [6030]={ [1]={ [1]={ limit={ @@ -136518,7 +138559,7 @@ return { [1]="critical_strike_chance_+%_final_while_unhinged" } }, - [5948]={ + [6031]={ [1]={ [1]={ [1]={ @@ -136555,7 +138596,7 @@ return { [1]="critical_strike_chance_+%_for_spells_if_you_have_killed_recently" } }, - [5949]={ + [6032]={ [1]={ [1]={ [1]={ @@ -136592,7 +138633,7 @@ return { [1]="critical_strike_chance_+%_if_enemy_killed_recently" } }, - [5950]={ + [6033]={ [1]={ [1]={ [1]={ @@ -136629,7 +138670,7 @@ return { [1]="critical_strike_chance_+%_if_have_been_shocked_recently" } }, - [5951]={ + [6034]={ [1]={ [1]={ [1]={ @@ -136666,7 +138707,7 @@ return { [1]="critical_strike_chance_+%_if_have_not_crit_recently" } }, - [5952]={ + [6035]={ [1]={ [1]={ [1]={ @@ -136703,7 +138744,7 @@ return { [1]="critical_strike_chance_+%_if_havent_blocked_recently" } }, - [5953]={ + [6036]={ [1]={ [1]={ [1]={ @@ -136740,7 +138781,7 @@ return { [1]="critical_strike_chance_+%_if_not_gained_power_charge_recently" } }, - [5954]={ + [6037]={ [1]={ [1]={ limit={ @@ -136769,7 +138810,7 @@ return { [1]="critical_strike_chance_+%_per_10_strength" } }, - [5955]={ + [6038]={ [1]={ [1]={ limit={ @@ -136785,7 +138826,7 @@ return { [1]="critical_strike_chance_+%_per_25_intelligence" } }, - [5956]={ + [6039]={ [1]={ [1]={ limit={ @@ -136814,7 +138855,7 @@ return { [1]="critical_strike_chance_+%_per_blitz_charge" } }, - [5957]={ + [6040]={ [1]={ [1]={ limit={ @@ -136843,7 +138884,7 @@ return { [1]="critical_strike_chance_+%_per_brand" } }, - [5958]={ + [6041]={ [1]={ [1]={ limit={ @@ -136872,7 +138913,7 @@ return { [1]="critical_strike_chance_+%_per_endurance_charge" } }, - [5959]={ + [6042]={ [1]={ [1]={ limit={ @@ -136901,7 +138942,7 @@ return { [1]="critical_strike_chance_+%_per_frenzy_charge" } }, - [5960]={ + [6043]={ [1]={ [1]={ limit={ @@ -136930,7 +138971,7 @@ return { [1]="critical_strike_chance_+%_per_intensity" } }, - [5961]={ + [6044]={ [1]={ [1]={ [1]={ @@ -136967,7 +139008,7 @@ return { [1]="critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%" } }, - [5962]={ + [6045]={ [1]={ [1]={ limit={ @@ -136996,7 +139037,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [5963]={ + [6046]={ [1]={ [1]={ limit={ @@ -137025,7 +139066,7 @@ return { [1]="critical_strike_chance_+%_vs_marked_enemy" } }, - [5964]={ + [6047]={ [1]={ [1]={ limit={ @@ -137054,7 +139095,7 @@ return { [1]="critical_strike_chance_+%_vs_taunted_enemies" } }, - [5965]={ + [6048]={ [1]={ [1]={ limit={ @@ -137083,7 +139124,7 @@ return { [1]="critical_strike_chance_+%_while_affected_by_wrath" } }, - [5966]={ + [6049]={ [1]={ [1]={ limit={ @@ -137112,7 +139153,7 @@ return { [1]="critical_strike_chance_+%_while_channelling" } }, - [5967]={ + [6050]={ [1]={ [1]={ limit={ @@ -137141,7 +139182,7 @@ return { [1]="spell_critical_strike_chance_+%_while_dual_wielding" } }, - [5968]={ + [6051]={ [1]={ [1]={ limit={ @@ -137170,7 +139211,7 @@ return { [1]="spell_critical_strike_chance_+%_while_holding_shield" } }, - [5969]={ + [6052]={ [1]={ [1]={ [1]={ @@ -137207,7 +139248,7 @@ return { [1]="spell_critical_strike_chance_+%_while_wielding_staff" } }, - [5970]={ + [6053]={ [1]={ [1]={ limit={ @@ -137236,7 +139277,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_depleted_physical_aegis" } }, - [5971]={ + [6054]={ [1]={ [1]={ limit={ @@ -137252,7 +139293,7 @@ return { [1]="critical_strike_damage_cannot_be_reflected" } }, - [5972]={ + [6055]={ [1]={ [1]={ [1]={ @@ -137272,7 +139313,7 @@ return { [1]="critical_strike_multiplier_+_if_have_dealt_non_crit_recently" } }, - [5973]={ + [6056]={ [1]={ [1]={ limit={ @@ -137288,7 +139329,7 @@ return { [1]="critical_strike_multiplier_+_per_25_dexterity" } }, - [5974]={ + [6057]={ [1]={ [1]={ limit={ @@ -137304,7 +139345,7 @@ return { [1]="critical_strike_multiplier_+_vs_stunned_enemies" } }, - [5975]={ + [6058]={ [1]={ [1]={ limit={ @@ -137320,7 +139361,7 @@ return { [1]="critical_strike_multiplier_for_arrows_that_pierce_+" } }, - [5976]={ + [6059]={ [1]={ [1]={ limit={ @@ -137336,7 +139377,7 @@ return { [1]="critical_strike_multiplier_is_300" } }, - [5977]={ + [6060]={ [1]={ [1]={ limit={ @@ -137352,7 +139393,7 @@ return { [1]="critical_strike_multiplier_+_during_any_flask_effect" } }, - [5978]={ + [6061]={ [1]={ [1]={ [1]={ @@ -137372,7 +139413,7 @@ return { [1]="critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently" } }, - [5979]={ + [6062]={ [1]={ [1]={ [1]={ @@ -137392,7 +139433,7 @@ return { [1]="critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently" } }, - [5980]={ + [6063]={ [1]={ [1]={ limit={ @@ -137408,7 +139449,7 @@ return { [1]="critical_strike_multiplier_+_if_dexterity_higher_than_intelligence" } }, - [5981]={ + [6064]={ [1]={ [1]={ [1]={ @@ -137428,7 +139469,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_killed_recently" } }, - [5982]={ + [6065]={ [1]={ [1]={ [1]={ @@ -137448,7 +139489,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_shattered_recently" } }, - [5983]={ + [6066]={ [1]={ [1]={ limit={ @@ -137473,7 +139514,7 @@ return { [1]="critical_strike_multiplier_+_if_gained_power_charge_recently" } }, - [5984]={ + [6067]={ [1]={ [1]={ [1]={ @@ -137493,7 +139534,7 @@ return { [1]="critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently" } }, - [5985]={ + [6068]={ [1]={ [1]={ limit={ @@ -137509,7 +139550,7 @@ return { [1]="critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby" } }, - [5986]={ + [6069]={ [1]={ [1]={ [1]={ @@ -137529,7 +139570,7 @@ return { [1]="critical_strike_multiplier_+_if_taken_a_savage_hit_recently" } }, - [5987]={ + [6070]={ [1]={ [1]={ [1]={ @@ -137549,7 +139590,7 @@ return { [1]="critical_strike_multiplier_+_if_you_have_blocked_recently" } }, - [5988]={ + [6071]={ [1]={ [1]={ limit={ @@ -137565,7 +139606,7 @@ return { [1]="critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second" } }, - [5989]={ + [6072]={ [1]={ [1]={ [1]={ @@ -137585,7 +139626,7 @@ return { [1]="critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40" } }, - [5990]={ + [6073]={ [1]={ [1]={ limit={ @@ -137601,7 +139642,7 @@ return { [1]="critical_strike_multiplier_+_vs_taunted_enemies" } }, - [5991]={ + [6074]={ [1]={ [1]={ limit={ @@ -137617,7 +139658,7 @@ return { [1]="critical_strike_multiplier_+_vs_unique_enemies" } }, - [5992]={ + [6075]={ [1]={ [1]={ limit={ @@ -137633,7 +139674,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_anger" } }, - [5993]={ + [6076]={ [1]={ [1]={ limit={ @@ -137649,7 +139690,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_precision" } }, - [5994]={ + [6077]={ [1]={ [1]={ limit={ @@ -137665,7 +139706,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_dual_wielding" } }, - [5995]={ + [6078]={ [1]={ [1]={ limit={ @@ -137681,7 +139722,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_holding_shield" } }, - [5996]={ + [6079]={ [1]={ [1]={ [1]={ @@ -137701,7 +139742,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_wielding_staff" } }, - [5997]={ + [6080]={ [1]={ [1]={ limit={ @@ -137717,7 +139758,7 @@ return { [1]="critical_strike_multiplier_+_with_herald_skills" } }, - [5998]={ + [6081]={ [1]={ [1]={ limit={ @@ -137726,14 +139767,14 @@ return { [2]="#" } }, - text="[DNT] +{0}% to Critical Strike Multiplier with Unarmed Attack" + text="DNT +{0}% to Critical Strike Multiplier with Unarmed Attack" } }, stats={ [1]="unarmed_attack_critical_strike_multiplier_+" } }, - [5999]={ + [6082]={ [1]={ [1]={ limit={ @@ -137749,7 +139790,7 @@ return { [1]="critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds" } }, - [6000]={ + [6083]={ [1]={ [1]={ limit={ @@ -137765,7 +139806,7 @@ return { [1]="critical_strike_multiplier_+%_with_claws_daggers" } }, - [6001]={ + [6084]={ [1]={ [1]={ limit={ @@ -137781,7 +139822,7 @@ return { [1]="critical_strike_%_chance_to_deal_double_damage" } }, - [6002]={ + [6085]={ [1]={ [1]={ limit={ @@ -137797,7 +139838,7 @@ return { [1]="critical_strikes_always_knockback_shocked_enemies" } }, - [6003]={ + [6086]={ [1]={ [1]={ limit={ @@ -137813,7 +139854,7 @@ return { [1]="critical_strikes_deal_no_damage" } }, - [6004]={ + [6087]={ [1]={ [1]={ limit={ @@ -137829,7 +139870,7 @@ return { [1]="critical_strikes_do_not_always_apply_non_damaging_ailments" } }, - [6005]={ + [6088]={ [1]={ [1]={ limit={ @@ -137845,7 +139886,7 @@ return { [1]="critical_strikes_do_not_always_ignite" } }, - [6006]={ + [6089]={ [1]={ [1]={ limit={ @@ -137861,7 +139902,7 @@ return { [1]="critical_strikes_on_you_do_not_always_inflict_elemental_ailments" } }, - [6007]={ + [6090]={ [1]={ [1]={ limit={ @@ -137877,7 +139918,7 @@ return { [1]="critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry" } }, - [6008]={ + [6091]={ [1]={ [1]={ limit={ @@ -137893,7 +139934,7 @@ return { [1]="critical_support_gem_level_+" } }, - [6009]={ + [6092]={ [1]={ [1]={ limit={ @@ -137922,7 +139963,7 @@ return { [1]="cruelty_effect_+%" } }, - [6010]={ + [6093]={ [1]={ [1]={ [1]={ @@ -137955,7 +139996,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [6011]={ + [6094]={ [1]={ [1]={ [1]={ @@ -137979,7 +140020,7 @@ return { [1]="crush_on_hit_ms_vs_full_life_enemies" } }, - [6012]={ + [6095]={ [1]={ [1]={ limit={ @@ -137995,7 +140036,7 @@ return { [1]="culling_strike_on_enemies_affected_by_poachers_mark" } }, - [6013]={ + [6096]={ [1]={ [1]={ [1]={ @@ -138015,7 +140056,7 @@ return { [1]="culling_strike_on_frozen_enemies" } }, - [6014]={ + [6097]={ [1]={ [1]={ [1]={ @@ -138035,7 +140076,7 @@ return { [1]="culling_strike_vs_cursed_enemies" } }, - [6015]={ + [6098]={ [1]={ [1]={ [1]={ @@ -138055,7 +140096,7 @@ return { [1]="culling_strike_vs_marked_enemy" } }, - [6016]={ + [6099]={ [1]={ [1]={ limit={ @@ -138084,7 +140125,7 @@ return { [1]="curse_aura_skill_area_of_effect_+%" } }, - [6017]={ + [6100]={ [1]={ [1]={ limit={ @@ -138113,7 +140154,7 @@ return { [1]="curse_aura_skills_reservation_efficiency_+%" } }, - [6018]={ + [6101]={ [1]={ [1]={ [1]={ @@ -138150,7 +140191,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_-2%_per_1" } }, - [6019]={ + [6102]={ [1]={ [1]={ limit={ @@ -138179,7 +140220,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_+%" } }, - [6020]={ + [6103]={ [1]={ [1]={ limit={ @@ -138208,7 +140249,7 @@ return { [1]="curse_effect_on_self_+%_while_on_consecrated_ground" } }, - [6021]={ + [6104]={ [1]={ [1]={ limit={ @@ -138237,7 +140278,7 @@ return { [1]="curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask" } }, - [6022]={ + [6105]={ [1]={ [1]={ [1]={ @@ -138274,7 +140315,7 @@ return { [1]="curse_effect_+%_if_200_mana_spent_recently" } }, - [6023]={ + [6106]={ [1]={ [1]={ limit={ @@ -138307,7 +140348,27 @@ return { [1]="curse_mana_cost_+%" } }, - [6024]={ + [6107]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextCurseFlammability" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Melee Strikes Curse Enemies with Flammability on Hit, ignoring Curse Limit" + } + }, + stats={ + [1]="curse_on_melee_strike_hit_level_flammability_ignoring_curse_limit" + } + }, + [6108]={ [1]={ [1]={ limit={ @@ -138336,7 +140397,7 @@ return { [1]="curse_skill_effect_duration_+%" } }, - [6025]={ + [6109]={ [1]={ [1]={ limit={ @@ -138352,7 +140413,39 @@ return { [1]="curse_skill_gem_level_+" } }, - [6026]={ + [6110]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Curse Skills cost Life instead of Mana" + } + }, + stats={ + [1]="curse_skills_cost_life_instead_of_mana" + } + }, + [6111]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Curse Aura Skills reserve Life instead of Mana" + } + }, + stats={ + [1]="curse_aura_skills_reserve_life" + } + }, + [6112]={ [1]={ [1]={ [1]={ @@ -138385,7 +140478,7 @@ return { [1]="curse_with_punishment_on_hit_%" } }, - [6027]={ + [6113]={ [1]={ [1]={ limit={ @@ -138401,7 +140494,7 @@ return { [1]="cursed_enemies_are_exorcised_on_kill" } }, - [6028]={ + [6114]={ [1]={ [1]={ limit={ @@ -138426,7 +140519,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_endurance_charge_when_hit" } }, - [6029]={ + [6115]={ [1]={ [1]={ limit={ @@ -138451,7 +140544,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit" } }, - [6030]={ + [6116]={ [1]={ [1]={ limit={ @@ -138476,7 +140569,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_power_charge_when_hit" } }, - [6031]={ + [6117]={ [1]={ [1]={ [1]={ @@ -138509,7 +140602,7 @@ return { [1]="cursed_with_silence_when_hit_%_chance" } }, - [6032]={ + [6118]={ [1]={ [1]={ limit={ @@ -138525,7 +140618,7 @@ return { [1]="curses_have_no_effect_on_you_for_4_seconds_every_10_seconds" } }, - [6033]={ + [6119]={ [1]={ [1]={ limit={ @@ -138541,7 +140634,7 @@ return { [1]="curses_reflected_to_self" } }, - [6034]={ + [6120]={ [1]={ [1]={ limit={ @@ -138557,7 +140650,7 @@ return { [1]="curses_you_inflict_remain_after_death" } }, - [6035]={ + [6121]={ [1]={ [1]={ [1]={ @@ -138577,7 +140670,7 @@ return { [1]="cyclone_and_sweep_enemy_knockback_direction_is_reversed" } }, - [6036]={ + [6122]={ [1]={ [1]={ [1]={ @@ -138597,7 +140690,7 @@ return { [1]="cyclone_and_sweep_melee_knockback" } }, - [6037]={ + [6123]={ [1]={ [1]={ limit={ @@ -138626,7 +140719,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [6038]={ + [6124]={ [1]={ [1]={ limit={ @@ -138655,7 +140748,7 @@ return { [1]="damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [6039]={ + [6125]={ [1]={ [1]={ limit={ @@ -138684,7 +140777,7 @@ return { [1]="damage_+%_final_to_grant_packmate_on_death" } }, - [6040]={ + [6126]={ [1]={ [1]={ limit={ @@ -138713,7 +140806,7 @@ return { [1]="damage_+%_final_to_you_and_nearby_allies_per_nearby_corpses_up_to_10%" } }, - [6041]={ + [6127]={ [1]={ [1]={ limit={ @@ -138742,7 +140835,7 @@ return { [1]="damage_+%_per_poison_stack" } }, - [6042]={ + [6128]={ [1]={ [1]={ limit={ @@ -138771,7 +140864,7 @@ return { [1]="damage_+%_per_raised_zombie" } }, - [6043]={ + [6129]={ [1]={ [1]={ limit={ @@ -138800,7 +140893,7 @@ return { [1]="damage_+%_while_you_have_unbroken_ward" } }, - [6044]={ + [6130]={ [1]={ [1]={ limit={ @@ -138829,7 +140922,7 @@ return { [1]="damage_+%_with_bow_skills" } }, - [6045]={ + [6131]={ [1]={ [1]={ limit={ @@ -138845,7 +140938,7 @@ return { [1]="damage_cannot_be_reflected" } }, - [6046]={ + [6132]={ [1]={ [1]={ limit={ @@ -138861,7 +140954,7 @@ return { [1]="damage_from_hits_always_and_only_bypasses_energy_shield_when_not_blocked" } }, - [6047]={ + [6133]={ [1]={ [1]={ limit={ @@ -138890,7 +140983,7 @@ return { [1]="damage_over_time_+%_per_100_max_life" } }, - [6048]={ + [6134]={ [1]={ [1]={ [1]={ @@ -138910,7 +141003,7 @@ return { [1]="damage_over_time_multiplier_+_if_enemy_killed_recently" } }, - [6049]={ + [6135]={ [1]={ [1]={ limit={ @@ -138939,7 +141032,7 @@ return { [1]="damage_over_time_+%_while_affected_by_a_herald" } }, - [6050]={ + [6136]={ [1]={ [1]={ limit={ @@ -138968,7 +141061,7 @@ return { [1]="damage_over_time_+%_with_attack_skills" } }, - [6051]={ + [6137]={ [1]={ [1]={ limit={ @@ -138997,7 +141090,7 @@ return { [1]="damage_over_time_+%_with_bow_skills" } }, - [6052]={ + [6138]={ [1]={ [1]={ limit={ @@ -139026,7 +141119,7 @@ return { [1]="damage_over_time_+%_with_herald_skills" } }, - [6053]={ + [6139]={ [1]={ [1]={ limit={ @@ -139055,7 +141148,7 @@ return { [1]="damage_over_time_taken_+%_while_you_have_at_least_20_fortification" } }, - [6054]={ + [6140]={ [1]={ [1]={ limit={ @@ -139071,7 +141164,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_while_you_have_broken_ward" } }, - [6055]={ + [6141]={ [1]={ [1]={ limit={ @@ -139087,7 +141180,7 @@ return { [1]="damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice" } }, - [6056]={ + [6142]={ [1]={ [1]={ [1]={ @@ -139107,7 +141200,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently" } }, - [6057]={ + [6143]={ [1]={ [1]={ limit={ @@ -139123,7 +141216,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_chilled_enemies" } }, - [6058]={ + [6144]={ [1]={ [1]={ limit={ @@ -139139,7 +141232,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_cursed_enemies" } }, - [6059]={ + [6145]={ [1]={ [1]={ limit={ @@ -139155,7 +141248,7 @@ return { [1]="damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash" } }, - [6060]={ + [6146]={ [1]={ [1]={ limit={ @@ -139171,7 +141264,7 @@ return { [1]="damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder" } }, - [6061]={ + [6147]={ [1]={ [1]={ limit={ @@ -139200,7 +141293,7 @@ return { [1]="damage_+%_against_enemies_marked_by_you" } }, - [6062]={ + [6148]={ [1]={ [1]={ limit={ @@ -139216,7 +141309,7 @@ return { [1]="damage_+%_final_if_lost_endurance_charge_in_past_8_seconds" } }, - [6063]={ + [6149]={ [1]={ [1]={ limit={ @@ -139245,7 +141338,7 @@ return { [1]="damage_+%_final_with_at_least_1_nearby_ally" } }, - [6064]={ + [6150]={ [1]={ [1]={ limit={ @@ -139274,7 +141367,7 @@ return { [1]="damage_+%_for_each_herald_affecting_you" } }, - [6065]={ + [6151]={ [1]={ [1]={ limit={ @@ -139307,7 +141400,7 @@ return { [1]="damage_+%_for_enemies_you_inflict_spiders_web_upon" } }, - [6066]={ + [6152]={ [1]={ [1]={ [1]={ @@ -139344,7 +141437,7 @@ return { [1]="damage_+%_if_enemy_killed_recently" } }, - [6067]={ + [6153]={ [1]={ [1]={ [1]={ @@ -139381,7 +141474,7 @@ return { [1]="damage_+%_if_enemy_shattered_recently" } }, - [6068]={ + [6154]={ [1]={ [1]={ limit={ @@ -139410,7 +141503,7 @@ return { [1]="damage_+%_if_firing_atleast_7_projectiles" } }, - [6069]={ + [6155]={ [1]={ [1]={ [1]={ @@ -139447,7 +141540,7 @@ return { [1]="damage_+%_if_have_been_ignited_recently" } }, - [6070]={ + [6156]={ [1]={ [1]={ limit={ @@ -139476,7 +141569,7 @@ return { [1]="damage_+%_if_have_crit_in_past_8_seconds" } }, - [6071]={ + [6157]={ [1]={ [1]={ limit={ @@ -139505,7 +141598,7 @@ return { [1]="damage_+%_if_only_one_enemy_nearby" } }, - [6072]={ + [6158]={ [1]={ [1]={ limit={ @@ -139534,7 +141627,7 @@ return { [1]="damage_+%_if_skill_costs_life" } }, - [6073]={ + [6159]={ [1]={ [1]={ [1]={ @@ -139571,7 +141664,7 @@ return { [1]="damage_+%_if_used_travel_skill_recently" } }, - [6074]={ + [6160]={ [1]={ [1]={ [1]={ @@ -139608,7 +141701,7 @@ return { [1]="damage_+%_if_you_have_frozen_enemy_recently" } }, - [6075]={ + [6161]={ [1]={ [1]={ [1]={ @@ -139645,7 +141738,7 @@ return { [1]="damage_+%_if_you_have_shocked_recently" } }, - [6076]={ + [6162]={ [1]={ [1]={ limit={ @@ -139674,7 +141767,7 @@ return { [1]="damage_+%_per_100_dexterity" } }, - [6077]={ + [6163]={ [1]={ [1]={ limit={ @@ -139703,7 +141796,7 @@ return { [1]="damage_+%_per_100_intelligence" } }, - [6078]={ + [6164]={ [1]={ [1]={ limit={ @@ -139732,7 +141825,7 @@ return { [1]="damage_+%_per_100_strength" } }, - [6079]={ + [6165]={ [1]={ [1]={ limit={ @@ -139748,7 +141841,7 @@ return { [1]="damage_+%_per_10_dex" } }, - [6080]={ + [6166]={ [1]={ [1]={ limit={ @@ -139764,7 +141857,7 @@ return { [1]="damage_+%_per_15_dex" } }, - [6081]={ + [6167]={ [1]={ [1]={ limit={ @@ -139780,7 +141873,7 @@ return { [1]="damage_+%_per_15_int" } }, - [6082]={ + [6168]={ [1]={ [1]={ limit={ @@ -139796,7 +141889,7 @@ return { [1]="damage_+%_per_15_strength" } }, - [6083]={ + [6169]={ [1]={ [1]={ limit={ @@ -139825,7 +141918,7 @@ return { [1]="damage_+%_per_1%_block_chance" } }, - [6084]={ + [6170]={ [1]={ [1]={ limit={ @@ -139841,7 +141934,7 @@ return { [1]="damage_+%_per_1%_increased_item_found_quantity" } }, - [6085]={ + [6171]={ [1]={ [1]={ [1]={ @@ -139878,7 +141971,7 @@ return { [1]="damage_+%_per_5_of_your_lowest_attribute" } }, - [6086]={ + [6172]={ [1]={ [1]={ limit={ @@ -139907,7 +142000,7 @@ return { [1]="damage_+%_per_active_golem" } }, - [6087]={ + [6173]={ [1]={ [1]={ limit={ @@ -139936,7 +142029,7 @@ return { [1]="damage_+%_per_active_link" } }, - [6088]={ + [6174]={ [1]={ [1]={ limit={ @@ -139965,7 +142058,7 @@ return { [1]="damage_+%_per_frenzy_power_or_endurance_charge" } }, - [6089]={ + [6175]={ [1]={ [1]={ limit={ @@ -139994,7 +142087,7 @@ return { [1]="damage_+%_per_poison_up_to_75%" } }, - [6090]={ + [6176]={ [1]={ [1]={ limit={ @@ -140023,7 +142116,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [6091]={ + [6177]={ [1]={ [1]={ [1]={ @@ -140060,7 +142153,7 @@ return { [1]="damage_+%_per_warcry_used_recently" } }, - [6092]={ + [6178]={ [1]={ [1]={ limit={ @@ -140076,7 +142169,7 @@ return { [1]="damage_+%_per_your_aura_or_herald_skill_affecting_you" } }, - [6093]={ + [6179]={ [1]={ [1]={ limit={ @@ -140105,7 +142198,7 @@ return { [1]="damage_+%_vs_abyssal_monsters" } }, - [6094]={ + [6180]={ [1]={ [1]={ limit={ @@ -140134,7 +142227,7 @@ return { [1]="damage_+%_vs_chilled_enemies" } }, - [6095]={ + [6181]={ [1]={ [1]={ limit={ @@ -140163,7 +142256,7 @@ return { [1]="damage_+%_vs_magic_monsters" } }, - [6096]={ + [6182]={ [1]={ [1]={ limit={ @@ -140192,7 +142285,7 @@ return { [1]="damage_+%_vs_taunted_enemies" } }, - [6097]={ + [6183]={ [1]={ [1]={ limit={ @@ -140221,7 +142314,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [6098]={ + [6184]={ [1]={ [1]={ limit={ @@ -140250,7 +142343,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [6099]={ + [6185]={ [1]={ [1]={ limit={ @@ -140279,7 +142372,7 @@ return { [1]="damage_+%_while_affected_by_a_herald" } }, - [6100]={ + [6186]={ [1]={ [1]={ limit={ @@ -140308,7 +142401,7 @@ return { [1]="damage_+%_while_channelling" } }, - [6101]={ + [6187]={ [1]={ [1]={ [1]={ @@ -140345,7 +142438,7 @@ return { [1]="damage_+%_while_in_blood_stance" } }, - [6102]={ + [6188]={ [1]={ [1]={ limit={ @@ -140374,7 +142467,7 @@ return { [1]="damage_+%_while_wielding_bow_if_totem_summoned" } }, - [6103]={ + [6189]={ [1]={ [1]={ limit={ @@ -140403,7 +142496,7 @@ return { [1]="damage_+%_while_wielding_two_different_weapon_types" } }, - [6104]={ + [6190]={ [1]={ [1]={ limit={ @@ -140432,7 +142525,7 @@ return { [1]="damage_+%_while_you_have_a_summoned_golem" } }, - [6105]={ + [6191]={ [1]={ [1]={ limit={ @@ -140461,7 +142554,7 @@ return { [1]="damage_+%_with_herald_skills" } }, - [6106]={ + [6192]={ [1]={ [1]={ limit={ @@ -140490,7 +142583,7 @@ return { [1]="damage_+%_with_hits_and_ailments" } }, - [6107]={ + [6193]={ [1]={ [1]={ [1]={ @@ -140527,7 +142620,7 @@ return { [1]="damage_+%_with_maces_sceptres_staves" } }, - [6108]={ + [6194]={ [1]={ [1]={ limit={ @@ -140556,7 +142649,7 @@ return { [1]="damage_+%_with_non_vaal_skills_during_soul_gain_prevention" } }, - [6109]={ + [6195]={ [1]={ [1]={ limit={ @@ -140585,7 +142678,7 @@ return { [1]="damage_+%_with_shield_skills" } }, - [6110]={ + [6196]={ [1]={ [1]={ limit={ @@ -140614,7 +142707,7 @@ return { [1]="damage_+%_with_shield_skills_per_2%_attack_block" } }, - [6111]={ + [6197]={ [1]={ [1]={ [1]={ @@ -140638,7 +142731,7 @@ return { [1]="damage_recouped_as_life_%_if_leech_removed_by_filling_recently" } }, - [6112]={ + [6198]={ [1]={ [1]={ limit={ @@ -140654,7 +142747,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_affected_by_clarity" } }, - [6113]={ + [6199]={ [1]={ [1]={ limit={ @@ -140670,7 +142763,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_focused" } }, - [6114]={ + [6200]={ [1]={ [1]={ limit={ @@ -140686,7 +142779,7 @@ return { [1]="damage_removed_from_marked_target_before_life_or_es_%" } }, - [6115]={ + [6201]={ [1]={ [1]={ limit={ @@ -140702,7 +142795,7 @@ return { [1]="damage_removed_from_radiant_sentinel_before_life_or_es_%" } }, - [6116]={ + [6202]={ [1]={ [1]={ [1]={ @@ -140722,7 +142815,7 @@ return { [1]="damage_removed_from_spectres_before_life_or_es_%" } }, - [6117]={ + [6203]={ [1]={ [1]={ [1]={ @@ -140742,7 +142835,23 @@ return { [1]="damage_removed_from_void_spawns_before_life_or_es_per_void_spawns_%" } }, - [6118]={ + [6204]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="If your Mercenary's Life is higher than your own, {0}% of Damage from Hits is\ntaken from your Mercenary's Life before you" + } + }, + stats={ + [1]="damage_removed_from_your_nearest_permanent_mercenary_before_life_or_es_%_if_their_current_life_is_higher_than_yours" + } + }, + [6205]={ [1]={ [1]={ limit={ @@ -140758,7 +142867,7 @@ return { [1]="damage_removed_from_your_nearest_totem_before_life_or_es_%" } }, - [6119]={ + [6206]={ [1]={ [1]={ [1]={ @@ -140795,7 +142904,7 @@ return { [1]="damage_taken_+%_final_if_used_retaliation_recently" } }, - [6120]={ + [6207]={ [1]={ [1]={ [1]={ @@ -140815,7 +142924,7 @@ return { [1]="damage_taken_+%_final_per_5_rage_from_painshed_capped_at_50%_less" } }, - [6121]={ + [6208]={ [1]={ [1]={ limit={ @@ -140844,7 +142953,7 @@ return { [1]="damage_taken_+%_for_4_seconds_after_spending_200_mana" } }, - [6122]={ + [6209]={ [1]={ [1]={ limit={ @@ -140873,7 +142982,7 @@ return { [1]="damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby" } }, - [6123]={ + [6210]={ [1]={ [1]={ limit={ @@ -140902,7 +143011,7 @@ return { [1]="damage_taken_+%_while_affected_by_elusive" } }, - [6124]={ + [6211]={ [1]={ [1]={ [1]={ @@ -140922,7 +143031,7 @@ return { [1]="damage_taken_+_from_suppressed_hits" } }, - [6125]={ + [6212]={ [1]={ [1]={ limit={ @@ -140938,7 +143047,7 @@ return { [1]="damage_taken_bypasses_ward_if_hits_deal_less_than_%_of_ward" } }, - [6126]={ + [6213]={ [1]={ [1]={ [1]={ @@ -140971,7 +143080,7 @@ return { [1]="damage_taken_from_criticals_recouped_as_life_%" } }, - [6127]={ + [6214]={ [1]={ [1]={ [1]={ @@ -140991,7 +143100,7 @@ return { [1]="damage_taken_from_suppressed_hits_is_unlucky" } }, - [6128]={ + [6215]={ [1]={ [1]={ [1]={ @@ -141011,7 +143120,7 @@ return { [1]="damage_taken_goes_to_life_mana_es_over_4_seconds_%" } }, - [6129]={ + [6216]={ [1]={ [1]={ [1]={ @@ -141044,7 +143153,7 @@ return { [1]="damage_taken_goes_to_life_over_4_seconds_%" } }, - [6130]={ + [6217]={ [1]={ [1]={ [1]={ @@ -141064,7 +143173,7 @@ return { [1]="damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity" } }, - [6131]={ + [6218]={ [1]={ [1]={ limit={ @@ -141093,7 +143202,7 @@ return { [1]="damage_taken_over_time_+%_final_during_life_flask_effect" } }, - [6132]={ + [6219]={ [1]={ [1]={ limit={ @@ -141122,7 +143231,7 @@ return { [1]="damage_taken_per_250_dexterity_+%" } }, - [6133]={ + [6220]={ [1]={ [1]={ limit={ @@ -141151,7 +143260,7 @@ return { [1]="damage_taken_per_250_intelligence_+%" } }, - [6134]={ + [6221]={ [1]={ [1]={ limit={ @@ -141180,7 +143289,7 @@ return { [1]="damage_taken_per_250_strength_+%" } }, - [6135]={ + [6222]={ [1]={ [1]={ limit={ @@ -141209,7 +143318,7 @@ return { [1]="damage_taken_per_ghost_dance_stack_+%" } }, - [6136]={ + [6223]={ [1]={ [1]={ limit={ @@ -141225,7 +143334,7 @@ return { [1]="damage_taken_%_recovered_as_energy_shield_from_stunning_hits" } }, - [6137]={ + [6224]={ [1]={ [1]={ limit={ @@ -141241,7 +143350,7 @@ return { [1]="damage_taken_%_recovered_as_life_from_stunning_hits" } }, - [6138]={ + [6225]={ [1]={ [1]={ limit={ @@ -141270,7 +143379,7 @@ return { [1]="damage_taken_+%_final_from_enemies_near_marked_enemy" } }, - [6139]={ + [6226]={ [1]={ [1]={ limit={ @@ -141299,7 +143408,7 @@ return { [1]="damage_taken_+%_final_per_gale_force" } }, - [6140]={ + [6227]={ [1]={ [1]={ limit={ @@ -141328,7 +143437,7 @@ return { [1]="damage_taken_+%_final_per_totem" } }, - [6141]={ + [6228]={ [1]={ [1]={ [1]={ @@ -141365,7 +143474,7 @@ return { [1]="damage_taken_+%_if_have_been_frozen_recently" } }, - [6142]={ + [6229]={ [1]={ [1]={ [1]={ @@ -141402,7 +143511,7 @@ return { [1]="damage_taken_+%_if_have_not_been_hit_recently" } }, - [6143]={ + [6230]={ [1]={ [1]={ limit={ @@ -141431,7 +143540,7 @@ return { [1]="damage_taken_+%_on_full_life" } }, - [6144]={ + [6231]={ [1]={ [1]={ [1]={ @@ -141468,7 +143577,7 @@ return { [1]="damage_taken_+%_on_low_life" } }, - [6145]={ + [6232]={ [1]={ [1]={ limit={ @@ -141497,7 +143606,7 @@ return { [1]="damage_taken_+%_while_leeching" } }, - [6146]={ + [6233]={ [1]={ [1]={ [1]={ @@ -141534,7 +143643,7 @@ return { [1]="damage_taken_+%_while_phasing" } }, - [6147]={ + [6234]={ [1]={ [1]={ [1]={ @@ -141567,7 +143676,7 @@ return { [1]="damage_taken_recouped_as_life_%_per_socketed_red_gem" } }, - [6148]={ + [6235]={ [1]={ [1]={ [1]={ @@ -141591,7 +143700,7 @@ return { [1]="damage_taken_while_frozen_recouped_as_life_%" } }, - [6149]={ + [6236]={ [1]={ [1]={ limit={ @@ -141620,7 +143729,7 @@ return { [1]="damage_vs_enemies_on_full_life_+%" } }, - [6150]={ + [6237]={ [1]={ [1]={ [1]={ @@ -141657,7 +143766,7 @@ return { [1]="damaging_ailment_damage_+%_while_suffering_from_that_ailment" } }, - [6151]={ + [6238]={ [1]={ [1]={ [1]={ @@ -141681,7 +143790,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [6152]={ + [6239]={ [1]={ [1]={ limit={ @@ -141697,7 +143806,7 @@ return { [1]="dark_pact_minions_recover_%_life_on_hit" } }, - [6153]={ + [6240]={ [1]={ [1]={ limit={ @@ -141726,7 +143835,7 @@ return { [1]="dark_ritual_area_of_effect_+%" } }, - [6154]={ + [6241]={ [1]={ [1]={ limit={ @@ -141755,7 +143864,7 @@ return { [1]="dark_ritual_damage_+%" } }, - [6155]={ + [6242]={ [1]={ [1]={ limit={ @@ -141784,7 +143893,7 @@ return { [1]="dark_ritual_linked_curse_effect_+%" } }, - [6156]={ + [6243]={ [1]={ [1]={ limit={ @@ -141813,7 +143922,7 @@ return { [1]="daytime_fish_caught_size_+%" } }, - [6157]={ + [6244]={ [1]={ [1]={ limit={ @@ -141842,7 +143951,7 @@ return { [1]="deadeye_accuracy_rating_+%_final_per_frenzy_charge" } }, - [6158]={ + [6245]={ [1]={ [1]={ limit={ @@ -141871,7 +143980,7 @@ return { [1]="deadeye_damage_taken_+%_final_from_marked_enemy" } }, - [6159]={ + [6246]={ [1]={ [1]={ limit={ @@ -141887,7 +143996,7 @@ return { [1]="deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases" } }, - [6160]={ + [6247]={ [1]={ [1]={ limit={ @@ -141903,7 +144012,7 @@ return { [1]="deal_1000_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [6161]={ + [6248]={ [1]={ [1]={ limit={ @@ -141919,7 +144028,7 @@ return { [1]="deal_300%_of_physical_damage_as_random_ailment_%_chance" } }, - [6162]={ + [6249]={ [1]={ [1]={ limit={ @@ -141935,7 +144044,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [6163]={ + [6250]={ [1]={ [1]={ limit={ @@ -141951,7 +144060,7 @@ return { [1]="deal_chaos_damage_per_second_for_8_seconds_on_curse" } }, - [6164]={ + [6251]={ [1]={ [1]={ limit={ @@ -141967,7 +144076,7 @@ return { [1]="deal_double_damage_to_enemies_on_full_life" } }, - [6165]={ + [6252]={ [1]={ [1]={ limit={ @@ -141983,7 +144092,7 @@ return { [1]="deal_no_damage_when_not_on_low_life" } }, - [6166]={ + [6253]={ [1]={ [1]={ limit={ @@ -141999,7 +144108,7 @@ return { [1]="deal_no_elemental_damage" } }, - [6167]={ + [6254]={ [1]={ [1]={ limit={ @@ -142015,7 +144124,7 @@ return { [1]="deal_no_elemental_physical_damage" } }, - [6168]={ + [6255]={ [1]={ [1]={ limit={ @@ -142031,7 +144140,7 @@ return { [1]="deal_no_non_chaos_damage" } }, - [6169]={ + [6256]={ [1]={ [1]={ limit={ @@ -142047,7 +144156,7 @@ return { [1]="deal_no_non_elemental_damage" } }, - [6170]={ + [6257]={ [1]={ [1]={ [1]={ @@ -142064,14 +144173,14 @@ return { [2]="#" } }, - text="[DNT] Hits with this Weapon deal Triple Damage if you have spent at least {0} seconds on a single attack recently" + text="DNT Hits with this Weapon deal Triple Damage if you have spent at least {0} seconds on a single attack recently" } }, stats={ [1]="deal_triple_damage_if_spent_at_least_Xms_on_single_attack_recently" } }, - [6171]={ + [6258]={ [1]={ [1]={ [1]={ @@ -142104,7 +144213,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [6172]={ + [6259]={ [1]={ [1]={ [1]={ @@ -142128,7 +144237,7 @@ return { [1]="debilitate_enemies_for_x_milliseconds_when_suppressing_their_spell" } }, - [6173]={ + [6260]={ [1]={ [1]={ [1]={ @@ -142169,7 +144278,7 @@ return { [1]="debilitate_when_hit_ms" } }, - [6174]={ + [6261]={ [1]={ [1]={ [1]={ @@ -142206,7 +144315,7 @@ return { [1]="debuff_time_passed_-%_while_affected_by_haste" } }, - [6175]={ + [6262]={ [1]={ [1]={ limit={ @@ -142239,7 +144348,7 @@ return { [1]="debuff_time_passed_+%" } }, - [6176]={ + [6263]={ [1]={ [1]={ limit={ @@ -142255,7 +144364,7 @@ return { [1]="decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [6177]={ + [6264]={ [1]={ [1]={ [1]={ @@ -142292,7 +144401,7 @@ return { [1]="defences_+%_while_you_have_four_linked_targets" } }, - [6178]={ + [6265]={ [1]={ [1]={ [1]={ @@ -142312,7 +144421,7 @@ return { [1]="defences_are_zero" } }, - [6179]={ + [6266]={ [1]={ [1]={ [1]={ @@ -142332,7 +144441,7 @@ return { [1]="defences_from_animated_guardians_items_apply_to_animated_weapon" } }, - [6180]={ + [6267]={ [1]={ [1]={ [1]={ @@ -142377,7 +144486,7 @@ return { [1]="defences_+%_while_wielding_staff" } }, - [6181]={ + [6268]={ [1]={ [1]={ [1]={ @@ -142397,7 +144506,7 @@ return { [1]="defend_with_%_armour_against_ranged_attacks" } }, - [6182]={ + [6269]={ [1]={ [1]={ [1]={ @@ -142421,7 +144530,7 @@ return { [1]="defend_with_%_of_armour_while_not_on_low_energy_shield" } }, - [6183]={ + [6270]={ [1]={ [1]={ limit={ @@ -142450,7 +144559,7 @@ return { [1]="defiance_banner_aura_effect_+%" } }, - [6184]={ + [6271]={ [1]={ [1]={ limit={ @@ -142479,7 +144588,7 @@ return { [1]="defiance_banner_mana_reservation_efficiency_+%" } }, - [6185]={ + [6272]={ [1]={ [1]={ limit={ @@ -142508,7 +144617,7 @@ return { [1]="delirium_aura_effect_+%" } }, - [6186]={ + [6273]={ [1]={ [1]={ limit={ @@ -142541,7 +144650,7 @@ return { [1]="delirium_mana_reservation_+%" } }, - [6187]={ + [6274]={ [1]={ [1]={ limit={ @@ -142557,7 +144666,7 @@ return { [1]="delirium_reserves_no_mana" } }, - [6188]={ + [6275]={ [1]={ [1]={ limit={ @@ -142573,7 +144682,7 @@ return { [1]="delve_biome_area_contains_x_extra_packs_of_insects" } }, - [6189]={ + [6276]={ [1]={ [1]={ limit={ @@ -142589,7 +144698,7 @@ return { [1]="delve_biome_monster_projectiles_always_pierce" } }, - [6190]={ + [6277]={ [1]={ [1]={ limit={ @@ -142605,7 +144714,7 @@ return { [1]="delve_boss_life_+%_final_from_biome" } }, - [6191]={ + [6278]={ [1]={ [1]={ limit={ @@ -142621,7 +144730,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [6192]={ + [6279]={ [1]={ [1]={ limit={ @@ -142650,7 +144759,7 @@ return { [1]="despair_curse_effect_+%" } }, - [6193]={ + [6280]={ [1]={ [1]={ limit={ @@ -142679,7 +144788,7 @@ return { [1]="despair_duration_+%" } }, - [6194]={ + [6281]={ [1]={ [1]={ limit={ @@ -142695,7 +144804,7 @@ return { [1]="despair_no_reservation" } }, - [6195]={ + [6282]={ [1]={ [1]={ limit={ @@ -142724,7 +144833,7 @@ return { [1]="destructive_link_duration_+%" } }, - [6196]={ + [6283]={ [1]={ [1]={ [1]={ @@ -142761,7 +144870,7 @@ return { [1]="determination_mana_reservation_efficiency_-2%_per_1" } }, - [6197]={ + [6284]={ [1]={ [1]={ limit={ @@ -142790,7 +144899,7 @@ return { [1]="determination_mana_reservation_efficiency_+%" } }, - [6198]={ + [6285]={ [1]={ [1]={ limit={ @@ -142806,7 +144915,7 @@ return { [1]="determination_reserves_no_mana" } }, - [6199]={ + [6286]={ [1]={ [1]={ limit={ @@ -142822,7 +144931,7 @@ return { [1]="dexterity_accuracy_bonus_grants_accuracy_rating_+3_per_dexterity_instead" } }, - [6200]={ + [6287]={ [1]={ [1]={ limit={ @@ -142851,7 +144960,7 @@ return { [1]="dexterity_+%_if_strength_higher_than_intelligence" } }, - [6201]={ + [6288]={ [1]={ [1]={ limit={ @@ -142867,7 +144976,7 @@ return { [1]="dexterity_skill_gem_level_+" } }, - [6202]={ + [6289]={ [1]={ [1]={ limit={ @@ -142883,7 +144992,7 @@ return { [1]="disable_amulet_slot" } }, - [6203]={ + [6290]={ [1]={ [1]={ limit={ @@ -142899,7 +145008,7 @@ return { [1]="disable_belt_slot" } }, - [6204]={ + [6291]={ [1]={ [1]={ limit={ @@ -142915,7 +145024,7 @@ return { [1]="disable_utility_flasks" } }, - [6205]={ + [6292]={ [1]={ [1]={ limit={ @@ -142931,7 +145040,7 @@ return { [1]="discharge_and_voltaxic_burst_nova_spells_cast_at_target_location" } }, - [6206]={ + [6293]={ [1]={ [1]={ limit={ @@ -142960,7 +145069,7 @@ return { [1]="discharge_area_of_effect_+%_final" } }, - [6207]={ + [6294]={ [1]={ [1]={ limit={ @@ -142976,7 +145085,7 @@ return { [1]="discharge_cooldown_override_ms" } }, - [6208]={ + [6295]={ [1]={ [1]={ limit={ @@ -143005,7 +145114,7 @@ return { [1]="discharge_damage_+%_final" } }, - [6209]={ + [6296]={ [1]={ [1]={ [1]={ @@ -143038,7 +145147,7 @@ return { [1]="discharge_radius_+" } }, - [6210]={ + [6297]={ [1]={ [1]={ limit={ @@ -143067,7 +145176,7 @@ return { [1]="discharge_triggered_damage_+%_final" } }, - [6211]={ + [6298]={ [1]={ [1]={ limit={ @@ -143096,7 +145205,7 @@ return { [1]="discipline_aura_effect_+%_while_at_minimum_power_charges" } }, - [6212]={ + [6299]={ [1]={ [1]={ [1]={ @@ -143133,7 +145242,7 @@ return { [1]="discipline_mana_reservation_efficiency_-2%_per_1" } }, - [6213]={ + [6300]={ [1]={ [1]={ limit={ @@ -143162,7 +145271,7 @@ return { [1]="discipline_mana_reservation_efficiency_+%" } }, - [6214]={ + [6301]={ [1]={ [1]={ limit={ @@ -143178,7 +145287,7 @@ return { [1]="discipline_reserves_no_mana" } }, - [6215]={ + [6302]={ [1]={ [1]={ limit={ @@ -143207,7 +145316,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [6216]={ + [6303]={ [1]={ [1]={ limit={ @@ -143223,7 +145332,7 @@ return { [1]="dispel_bleed_on_guard_skill_use" } }, - [6217]={ + [6304]={ [1]={ [1]={ limit={ @@ -143239,7 +145348,7 @@ return { [1]="dispel_corrupted_blood_on_guard_skill_use" } }, - [6218]={ + [6305]={ [1]={ [1]={ limit={ @@ -143255,7 +145364,7 @@ return { [1]="display_additive_damage_modifiers_in_large_radius_of_non_unique_jewels_instead_apply_to_fire_damage" } }, - [6219]={ + [6306]={ [1]={ [1]={ limit={ @@ -143271,7 +145380,7 @@ return { [1]="display_altar_chaos_aura" } }, - [6220]={ + [6307]={ [1]={ [1]={ limit={ @@ -143287,7 +145396,7 @@ return { [1]="display_altar_cold_aura" } }, - [6221]={ + [6308]={ [1]={ [1]={ limit={ @@ -143303,7 +145412,7 @@ return { [1]="display_altar_fire_aura" } }, - [6222]={ + [6309]={ [1]={ [1]={ limit={ @@ -143319,7 +145428,7 @@ return { [1]="display_altar_lightning_aura" } }, - [6223]={ + [6310]={ [1]={ [1]={ limit={ @@ -143335,7 +145444,7 @@ return { [1]="display_altar_tangle_tentalces_daemon" } }, - [6224]={ + [6311]={ [1]={ [1]={ limit={ @@ -143387,7 +145496,7 @@ return { [1]="display_altleague_event" } }, - [6225]={ + [6312]={ [1]={ [1]={ limit={ @@ -143403,7 +145512,7 @@ return { [1]="display_area_contains_alluring_vaal_side_area" } }, - [6226]={ + [6313]={ [1]={ [1]={ limit={ @@ -143419,7 +145528,7 @@ return { [1]="display_area_contains_corrupting_tempest" } }, - [6227]={ + [6314]={ [1]={ [1]={ limit={ @@ -143435,7 +145544,7 @@ return { [1]="display_area_contains_improved_labyrinth_trial" } }, - [6228]={ + [6315]={ [1]={ [1]={ limit={ @@ -143451,7 +145560,7 @@ return { [1]="display_area_contains_uber_radiating_tempest" } }, - [6229]={ + [6316]={ [1]={ [1]={ limit={ @@ -143467,7 +145576,7 @@ return { [1]="display_cowards_trial_waves_of_monsters" } }, - [6230]={ + [6317]={ [1]={ [1]={ limit={ @@ -143483,7 +145592,7 @@ return { [1]="display_cowards_trial_waves_of_undead_monsters" } }, - [6231]={ + [6318]={ [1]={ [1]={ limit={ @@ -143499,7 +145608,7 @@ return { [1]="display_dark_ritual_curse_max_skill_level_requirement" } }, - [6232]={ + [6319]={ [1]={ [1]={ limit={ @@ -143528,7 +145637,7 @@ return { [1]="display_heist_contract_lockdown_timer_+%" } }, - [6233]={ + [6320]={ [1]={ [1]={ limit={ @@ -143553,7 +145662,7 @@ return { [1]="display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value" } }, - [6234]={ + [6321]={ [1]={ [1]={ limit={ @@ -143578,7 +145687,7 @@ return { [1]="display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value" } }, - [6235]={ + [6322]={ [1]={ [1]={ limit={ @@ -143587,14 +145696,14 @@ return { [2]="#" } }, - text="{0}% improved Rewards" + text="{0}% increased Reward progress from Monster Kills" } }, stats={ [1]="display_legion_uber_fragment_improved_rewards_+%" } }, - [6236]={ + [6323]={ [1]={ [1]={ limit={ @@ -143610,7 +145719,7 @@ return { [1]="display_map_augmentable_boss" } }, - [6237]={ + [6324]={ [1]={ [1]={ limit={ @@ -143626,7 +145735,7 @@ return { [1]="display_map_inhabited_by_lunaris_fanatics" } }, - [6238]={ + [6325]={ [1]={ [1]={ limit={ @@ -143642,7 +145751,7 @@ return { [1]="display_map_inhabited_by_solaris_fanatics" } }, - [6239]={ + [6326]={ [1]={ [1]={ limit={ @@ -143658,7 +145767,7 @@ return { [1]="display_map_labyrinth_chests_fortune" } }, - [6240]={ + [6327]={ [1]={ [1]={ limit={ @@ -143674,7 +145783,7 @@ return { [1]="display_map_labyrinth_enchant_belts" } }, - [6241]={ + [6328]={ [1]={ [1]={ limit={ @@ -143690,7 +145799,7 @@ return { [1]="display_memory_line_abyss_beyond_monsters_from_cracks" } }, - [6242]={ + [6329]={ [1]={ [1]={ limit={ @@ -143706,7 +145815,7 @@ return { [1]="display_memory_line_ambush_contains_standalone_map_boss" } }, - [6243]={ + [6330]={ [1]={ [1]={ limit={ @@ -143722,7 +145831,7 @@ return { [1]="display_memory_line_ambush_strongbox_chain" } }, - [6244]={ + [6331]={ [1]={ [1]={ limit={ @@ -143731,14 +145840,14 @@ return { [2]="#" } }, - text="[DNT] Areas contain additional Rogue Exiles\nRogues Exiles are equipped Unique Items\nRogue Exiles drop their equipped Unique Items" + text="DNT Areas contain additional Rogue Exiles\nRogues Exiles are equipped Unique Items\nRogue Exiles drop their equipped Unique Items" } }, stats={ [1]="display_memory_line_anarchy_rogue_exiles_equipped_with_unique_items" } }, - [6245]={ + [6332]={ [1]={ [1]={ limit={ @@ -143754,7 +145863,7 @@ return { [1]="display_memory_line_anarchy_rogue_exiles_in_packs" } }, - [6246]={ + [6333]={ [1]={ [1]={ limit={ @@ -143770,7 +145879,7 @@ return { [1]="display_memory_line_bestiary_capturable_harvest_monsters" } }, - [6247]={ + [6334]={ [1]={ [1]={ limit={ @@ -143779,14 +145888,14 @@ return { [2]="#" } }, - text="[DNT] Areas contain additional packs of Beasts instead of other Monsters" + text="DNT Areas contain additional packs of Beasts instead of other Monsters" } }, stats={ [1]="display_memory_line_bestiary_great_migration" } }, - [6248]={ + [6335]={ [1]={ [1]={ limit={ @@ -143795,14 +145904,14 @@ return { [2]="#" } }, - text="[DNT] Areas contain additional Betrayal Targets\nBetrayal Targets ambush players" + text="DNT Areas contain additional Betrayal Targets\nBetrayal Targets ambush players" } }, stats={ [1]="display_memory_line_betrayal_constant_interventions" } }, - [6249]={ + [6336]={ [1]={ [1]={ limit={ @@ -143818,7 +145927,7 @@ return { [1]="display_memory_line_breach_area_is_breached" } }, - [6250]={ + [6337]={ [1]={ [1]={ limit={ @@ -143834,7 +145943,7 @@ return { [1]="display_memory_line_breach_miniature_flash_breaches" } }, - [6251]={ + [6338]={ [1]={ [1]={ limit={ @@ -143850,7 +145959,7 @@ return { [1]="display_memory_line_domination_multiple_modded_shrines" } }, - [6252]={ + [6339]={ [1]={ [1]={ limit={ @@ -143866,7 +145975,7 @@ return { [1]="display_memory_line_domination_shrines_to_pantheon_gods" } }, - [6253]={ + [6340]={ [1]={ [1]={ limit={ @@ -143875,14 +145984,14 @@ return { [2]="#" } }, - text="[DNT] Areas contain additional Essences\nEssences contain multiple Rare Monsters with Essences" + text="DNT Areas contain additional Essences\nEssences contain multiple Rare Monsters with Essences" } }, stats={ [1]="display_memory_line_essence_multiple_rare_monsters" } }, - [6254]={ + [6341]={ [1]={ [1]={ limit={ @@ -143898,7 +146007,7 @@ return { [1]="display_memory_line_essence_rogue_exiles" } }, - [6255]={ + [6342]={ [1]={ [1]={ limit={ @@ -143914,7 +146023,7 @@ return { [1]="display_memory_line_harbinger_player_is_a_harbinger" } }, - [6256]={ + [6343]={ [1]={ [1]={ limit={ @@ -143930,7 +146039,7 @@ return { [1]="display_memory_line_harbinger_portals_everywhere" } }, - [6257]={ + [6344]={ [1]={ [1]={ limit={ @@ -143946,7 +146055,7 @@ return { [1]="display_memory_line_harvest_larger_plot_with_premium_seeds" } }, - [6258]={ + [6345]={ [1]={ [1]={ limit={ @@ -143962,7 +146071,7 @@ return { [1]="display_memory_line_incursion_reverse" } }, - [6259]={ + [6346]={ [1]={ [1]={ limit={ @@ -143978,7 +146087,7 @@ return { [1]="display_memory_line_torment_player_is_possessed" } }, - [6260]={ + [6347]={ [1]={ [1]={ limit={ @@ -143994,7 +146103,7 @@ return { [1]="display_memory_line_torment_rares_uniques_are_possessed" } }, - [6261]={ + [6348]={ [1]={ [1]={ limit={ @@ -144010,7 +146119,7 @@ return { [1]="display_monster_has_acceleration_shrine" } }, - [6262]={ + [6349]={ [1]={ [1]={ [1]={ @@ -144030,7 +146139,7 @@ return { [1]="display_monster_has_adrenaline" } }, - [6263]={ + [6350]={ [1]={ [1]={ limit={ @@ -144046,7 +146155,7 @@ return { [1]="display_monster_has_cannot_recover_life_aura" } }, - [6264]={ + [6351]={ [1]={ [1]={ limit={ @@ -144071,7 +146180,7 @@ return { [1]="display_monster_has_flask_gain_aura" } }, - [6265]={ + [6352]={ [1]={ [1]={ [1]={ @@ -144091,7 +146200,7 @@ return { [1]="display_monster_has_hinder_daemon" } }, - [6266]={ + [6353]={ [1]={ [1]={ limit={ @@ -144107,7 +146216,7 @@ return { [1]="display_monster_has_lightning_thorns_daemon" } }, - [6267]={ + [6354]={ [1]={ [1]={ [1]={ @@ -144127,7 +146236,7 @@ return { [1]="display_monster_has_periodic_freeze_daemon" } }, - [6268]={ + [6355]={ [1]={ [1]={ limit={ @@ -144143,7 +146252,7 @@ return { [1]="display_monster_has_righteous_fire_daemon" } }, - [6269]={ + [6356]={ [1]={ [1]={ limit={ @@ -144159,7 +146268,7 @@ return { [1]="display_monster_has_shroud_walker_daemon" } }, - [6270]={ + [6357]={ [1]={ [1]={ [1]={ @@ -144179,7 +146288,7 @@ return { [1]="display_monster_has_tailwind_aura" } }, - [6271]={ + [6358]={ [1]={ [1]={ limit={ @@ -144195,7 +146304,7 @@ return { [1]="display_monster_no_drops" } }, - [6272]={ + [6359]={ [1]={ [1]={ [1]={ @@ -144215,7 +146324,7 @@ return { [1]="display_passives_in_large_radius_of_non_unique_jewels_grant_additional_strength" } }, - [6273]={ + [6360]={ [1]={ [1]={ limit={ @@ -144231,7 +146340,7 @@ return { [1]="display_reave_base_maximum_stacks" } }, - [6274]={ + [6361]={ [1]={ [1]={ limit={ @@ -144247,7 +146356,7 @@ return { [1]="display_strongbox_drops_additional_shaper_or_elder_cards" } }, - [6275]={ + [6362]={ [1]={ [1]={ limit={ @@ -144317,7 +146426,7 @@ return { [1]="display_tattoo_grants_random_ascendancy_notable_of_class" } }, - [6276]={ + [6363]={ [1]={ [1]={ limit={ @@ -144333,7 +146442,7 @@ return { [1]="display_tattoo_grants_random_keystone" } }, - [6277]={ + [6364]={ [1]={ [1]={ limit={ @@ -144342,14 +146451,14 @@ return { [2]="#" } }, - text="[DNT] Triggers Level {0} Violent Path when Equipped" + text="DNT Triggers Level {0} Violent Path when Equipped" } }, stats={ [1]="display_violent_pace_skill_level" } }, - [6278]={ + [6365]={ [1]={ [1]={ limit={ @@ -144378,7 +146487,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [6279]={ + [6366]={ [1]={ [1]={ limit={ @@ -144407,7 +146516,7 @@ return { [1]="divine_tempest_damage_+%" } }, - [6280]={ + [6367]={ [1]={ [1]={ limit={ @@ -144432,7 +146541,7 @@ return { [1]="divine_tempest_number_of_additional_nearby_enemies_to_zap" } }, - [6281]={ + [6368]={ [1]={ [1]={ limit={ @@ -144461,7 +146570,7 @@ return { [1]="doedre_aura_damage_+%_final" } }, - [6282]={ + [6369]={ [1]={ [1]={ limit={ @@ -144477,7 +146586,7 @@ return { [1]="dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [6283]={ + [6370]={ [1]={ [1]={ limit={ @@ -144493,7 +146602,7 @@ return { [1]="dot_multiplier_+_if_crit_in_past_8_seconds" } }, - [6284]={ + [6371]={ [1]={ [1]={ limit={ @@ -144509,7 +146618,7 @@ return { [1]="dot_multiplier_+_while_affected_by_malevolence" } }, - [6285]={ + [6372]={ [1]={ [1]={ limit={ @@ -144525,7 +146634,7 @@ return { [1]="dot_multiplier_+_with_bow_skills" } }, - [6286]={ + [6373]={ [1]={ [1]={ [1]={ @@ -144558,7 +146667,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [6287]={ + [6374]={ [1]={ [1]={ limit={ @@ -144574,7 +146683,7 @@ return { [1]="double_animate_weapons_limit" } }, - [6288]={ + [6375]={ [1]={ [1]={ limit={ @@ -144590,7 +146699,7 @@ return { [1]="double_damage_chance_%_if_below_100_strength" } }, - [6289]={ + [6376]={ [1]={ [1]={ [1]={ @@ -144610,7 +146719,7 @@ return { [1]="double_damage_%_chance_while_wielding_mace_sceptre_staff" } }, - [6290]={ + [6377]={ [1]={ [1]={ limit={ @@ -144631,7 +146740,7 @@ return { [2]="double_slash_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [6291]={ + [6378]={ [1]={ [1]={ limit={ @@ -144647,7 +146756,7 @@ return { [1]="double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [6292]={ + [6379]={ [1]={ [1]={ limit={ @@ -144663,7 +146772,7 @@ return { [1]="drain_x_flask_charges_over_time_on_hit_for_6_seconds" } }, - [6293]={ + [6380]={ [1]={ [1]={ limit={ @@ -144692,7 +146801,7 @@ return { [1]="dread_banner_aura_effect_+%" } }, - [6294]={ + [6381]={ [1]={ [1]={ limit={ @@ -144721,7 +146830,7 @@ return { [1]="dread_banner_mana_reservation_efficiency_+%" } }, - [6295]={ + [6382]={ [1]={ [1]={ limit={ @@ -144737,7 +146846,7 @@ return { [1]="dropped_items_are_converted_to_divination_cards" } }, - [6296]={ + [6383]={ [1]={ [1]={ limit={ @@ -144753,7 +146862,7 @@ return { [1]="dropped_items_are_converted_to_maps" } }, - [6297]={ + [6384]={ [1]={ [1]={ limit={ @@ -144769,7 +146878,7 @@ return { [1]="dropped_items_are_converted_to_scarabs_based_on_rarity" } }, - [6298]={ + [6385]={ [1]={ [1]={ limit={ @@ -144798,7 +146907,7 @@ return { [1]="dual_strike_accuracy_rating_+%_while_wielding_sword" } }, - [6299]={ + [6386]={ [1]={ [1]={ limit={ @@ -144827,7 +146936,7 @@ return { [1]="dual_strike_attack_speed_+%_while_wielding_claw" } }, - [6300]={ + [6387]={ [1]={ [1]={ limit={ @@ -144843,7 +146952,7 @@ return { [1]="dual_strike_critical_strike_multiplier_+_while_wielding_dagger" } }, - [6301]={ + [6388]={ [1]={ [1]={ [1]={ @@ -144863,7 +146972,7 @@ return { [1]="dual_strike_intimidate_on_hit_while_wielding_axe" } }, - [6302]={ + [6389]={ [1]={ [1]={ limit={ @@ -144888,7 +146997,7 @@ return { [1]="dual_strike_main_hand_deals_double_damage_%" } }, - [6303]={ + [6390]={ [1]={ [1]={ limit={ @@ -144904,7 +147013,7 @@ return { [1]="dual_strike_melee_splash_while_wielding_mace" } }, - [6304]={ + [6391]={ [1]={ [1]={ limit={ @@ -144920,7 +147029,7 @@ return { [1]="dual_strike_melee_splash_with_off_hand_weapon" } }, - [6305]={ + [6392]={ [1]={ [1]={ limit={ @@ -144936,7 +147045,7 @@ return { [1]="dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws" } }, - [6306]={ + [6393]={ [1]={ [1]={ [1]={ @@ -144956,7 +147065,7 @@ return { [1]="dual_wield_inherent_bonuses_are_doubled" } }, - [6307]={ + [6394]={ [1]={ [1]={ limit={ @@ -144985,7 +147094,7 @@ return { [1]="duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final" } }, - [6308]={ + [6395]={ [1]={ [1]={ [1]={ @@ -145022,7 +147131,7 @@ return { [1]="duration_of_ailments_on_self_+%_per_fortification" } }, - [6309]={ + [6396]={ [1]={ [1]={ limit={ @@ -145038,7 +147147,7 @@ return { [1]="earthquake_and_earthshatter_shatter_on_killing_blow" } }, - [6310]={ + [6397]={ [1]={ [1]={ limit={ @@ -145067,7 +147176,7 @@ return { [1]="earthquake_damage_+%_per_100ms_duration" } }, - [6311]={ + [6398]={ [1]={ [1]={ limit={ @@ -145096,7 +147205,7 @@ return { [1]="earthshatter_area_of_effect_+%" } }, - [6312]={ + [6399]={ [1]={ [1]={ limit={ @@ -145125,7 +147234,7 @@ return { [1]="earthshatter_damage_+%" } }, - [6313]={ + [6400]={ [1]={ [1]={ [1]={ @@ -145149,7 +147258,7 @@ return { [1]="eat_soul_after_hex_90%_curse_expire" } }, - [6314]={ + [6401]={ [1]={ [1]={ [1]={ @@ -145186,7 +147295,7 @@ return { [1]="elemental_ailment_duration_on_self_+%_while_holding_shield" } }, - [6315]={ + [6402]={ [1]={ [1]={ limit={ @@ -145215,7 +147324,7 @@ return { [1]="elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed" } }, - [6316]={ + [6403]={ [1]={ [1]={ [1]={ @@ -145235,7 +147344,7 @@ return { [1]="elemental_ailments_on_you_proliferate_to_nearby_enemies_within_x_radius" } }, - [6317]={ + [6404]={ [1]={ [1]={ limit={ @@ -145251,7 +147360,7 @@ return { [1]="elemental_ailments_reflected_to_self" } }, - [6318]={ + [6405]={ [1]={ [1]={ limit={ @@ -145280,7 +147389,7 @@ return { [1]="elemental_damage_+%_per_different_enemy_elemental_ailment" } }, - [6319]={ + [6406]={ [1]={ [1]={ limit={ @@ -145296,7 +147405,7 @@ return { [1]="elemental_damage_+%_per_lightning_cold_fire_resistance_above_75" } }, - [6320]={ + [6407]={ [1]={ [1]={ [1]={ @@ -145333,7 +147442,7 @@ return { [1]="elemental_damage_+%_per_missing_lightning_cold_fire_resistance" } }, - [6321]={ + [6408]={ [1]={ [1]={ limit={ @@ -145349,7 +147458,7 @@ return { [1]="elemental_damage_additional_rolls_lucky_shocked" } }, - [6322]={ + [6409]={ [1]={ [1]={ limit={ @@ -145378,7 +147487,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [6323]={ + [6410]={ [1]={ [1]={ limit={ @@ -145407,7 +147516,7 @@ return { [1]="elemental_damage_+%_if_cursed_enemy_killed_recently" } }, - [6324]={ + [6411]={ [1]={ [1]={ [1]={ @@ -145444,7 +147553,7 @@ return { [1]="elemental_damage_+%_if_enemy_chilled_recently" } }, - [6325]={ + [6412]={ [1]={ [1]={ [1]={ @@ -145481,7 +147590,7 @@ return { [1]="elemental_damage_+%_if_enemy_ignited_recently" } }, - [6326]={ + [6413]={ [1]={ [1]={ [1]={ @@ -145518,7 +147627,7 @@ return { [1]="elemental_damage_+%_if_enemy_shocked_recently" } }, - [6327]={ + [6414]={ [1]={ [1]={ [1]={ @@ -145555,7 +147664,7 @@ return { [1]="elemental_damage_+%_if_have_crit_recently" } }, - [6328]={ + [6415]={ [1]={ [1]={ [1]={ @@ -145575,7 +147684,7 @@ return { [1]="elemental_damage_+%_if_used_a_warcry_recently" } }, - [6329]={ + [6416]={ [1]={ [1]={ limit={ @@ -145604,7 +147713,7 @@ return { [1]="elemental_damage_+%_per_10_devotion" } }, - [6330]={ + [6417]={ [1]={ [1]={ limit={ @@ -145633,7 +147742,7 @@ return { [1]="elemental_damage_+%_per_10_dexterity" } }, - [6331]={ + [6418]={ [1]={ [1]={ limit={ @@ -145662,7 +147771,7 @@ return { [1]="elemental_damage_+%_per_12_int" } }, - [6332]={ + [6419]={ [1]={ [1]={ limit={ @@ -145691,7 +147800,7 @@ return { [1]="elemental_damage_+%_per_12_strength" } }, - [6333]={ + [6420]={ [1]={ [1]={ limit={ @@ -145720,7 +147829,7 @@ return { [1]="elemental_damage_+%_per_power_charge" } }, - [6334]={ + [6421]={ [1]={ [1]={ limit={ @@ -145749,7 +147858,7 @@ return { [1]="elemental_damage_+%_per_sextant_affecting_area" } }, - [6335]={ + [6422]={ [1]={ [1]={ limit={ @@ -145778,7 +147887,7 @@ return { [1]="elemental_damage_+%_while_affected_by_a_herald" } }, - [6336]={ + [6423]={ [1]={ [1]={ limit={ @@ -145807,7 +147916,7 @@ return { [1]="elemental_damage_+%_while_in_area_affected_by_sextant" } }, - [6337]={ + [6424]={ [1]={ [1]={ limit={ @@ -145840,7 +147949,7 @@ return { [1]="elemental_damage_resistance_+%" } }, - [6338]={ + [6425]={ [1]={ [1]={ limit={ @@ -145856,7 +147965,7 @@ return { [1]="elemental_damage_resisted_by_lowest_elemental_resistance" } }, - [6339]={ + [6426]={ [1]={ [1]={ limit={ @@ -145885,7 +147994,7 @@ return { [1]="elemental_damage_taken_+%_final_per_raised_zombie" } }, - [6340]={ + [6427]={ [1]={ [1]={ limit={ @@ -145918,7 +148027,7 @@ return { [1]="elemental_damage_taken_from_hits_+%_per_endurance_charge" } }, - [6341]={ + [6428]={ [1]={ [1]={ [1]={ @@ -145955,7 +148064,7 @@ return { [1]="elemental_damage_taken_+%_if_been_hit_recently" } }, - [6342]={ + [6429]={ [1]={ [1]={ [1]={ @@ -145992,7 +148101,7 @@ return { [1]="elemental_damage_taken_+%_if_not_hit_recently" } }, - [6343]={ + [6430]={ [1]={ [1]={ limit={ @@ -146021,7 +148130,7 @@ return { [1]="elemental_damage_taken_+%_if_you_have_an_endurance_charge" } }, - [6344]={ + [6431]={ [1]={ [1]={ limit={ @@ -146050,7 +148159,7 @@ return { [1]="elemental_damage_taken_+%_per_endurance_charge" } }, - [6345]={ + [6432]={ [1]={ [1]={ limit={ @@ -146083,7 +148192,7 @@ return { [1]="elemental_damage_taken_+%_while_stationary" } }, - [6346]={ + [6433]={ [1]={ [1]={ limit={ @@ -146112,7 +148221,7 @@ return { [1]="elemental_damage_with_attack_skills_+%" } }, - [6347]={ + [6434]={ [1]={ [1]={ limit={ @@ -146141,7 +148250,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_per_power_charge" } }, - [6348]={ + [6435]={ [1]={ [1]={ limit={ @@ -146157,7 +148266,7 @@ return { [1]="elemental_golems_maximum_life_is_doubled" } }, - [6349]={ + [6436]={ [1]={ [1]={ [1]={ @@ -146206,7 +148315,7 @@ return { [1]="elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%" } }, - [6350]={ + [6437]={ [1]={ [1]={ limit={ @@ -146222,7 +148331,7 @@ return { [1]="elemental_hit_cannot_roll_cold_damage" } }, - [6351]={ + [6438]={ [1]={ [1]={ limit={ @@ -146238,7 +148347,7 @@ return { [1]="elemental_hit_cannot_roll_fire_damage" } }, - [6352]={ + [6439]={ [1]={ [1]={ limit={ @@ -146254,7 +148363,7 @@ return { [1]="elemental_hit_cannot_roll_lightning_damage" } }, - [6353]={ + [6440]={ [1]={ [1]={ limit={ @@ -146270,7 +148379,7 @@ return { [1]="elemental_hit_damage_taken_%_as_physical" } }, - [6354]={ + [6441]={ [1]={ [1]={ limit={ @@ -146286,7 +148395,7 @@ return { [1]="elemental_hit_deals_50%_less_cold_damage" } }, - [6355]={ + [6442]={ [1]={ [1]={ limit={ @@ -146302,7 +148411,7 @@ return { [1]="elemental_hit_deals_50%_less_fire_damage" } }, - [6356]={ + [6443]={ [1]={ [1]={ limit={ @@ -146318,7 +148427,7 @@ return { [1]="elemental_hit_deals_50%_less_lightning_damage" } }, - [6357]={ + [6444]={ [1]={ [1]={ limit={ @@ -146334,7 +148443,7 @@ return { [1]="elemental_penetration_%_if_you_have_a_power_charge" } }, - [6358]={ + [6445]={ [1]={ [1]={ limit={ @@ -146350,7 +148459,7 @@ return { [1]="elemental_penetration_%_while_chilled" } }, - [6359]={ + [6446]={ [1]={ [1]={ limit={ @@ -146383,7 +148492,7 @@ return { [1]="elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%" } }, - [6360]={ + [6447]={ [1]={ [1]={ limit={ @@ -146399,7 +148508,7 @@ return { [1]="elemental_resistance_%_per_minion_up_to_30%" } }, - [6361]={ + [6448]={ [1]={ [1]={ limit={ @@ -146415,7 +148524,7 @@ return { [1]="elemental_resistance_%_while_no_gems_in_helmet" } }, - [6362]={ + [6449]={ [1]={ [1]={ limit={ @@ -146431,7 +148540,7 @@ return { [1]="elemental_resistance_cannot_be_lowered_by_curses" } }, - [6363]={ + [6450]={ [1]={ [1]={ limit={ @@ -146447,7 +148556,7 @@ return { [1]="elemental_resistance_cannot_be_penetrated" } }, - [6364]={ + [6451]={ [1]={ [1]={ limit={ @@ -146463,7 +148572,7 @@ return { [1]="elemental_resistance_%_per_10_devotion" } }, - [6365]={ + [6452]={ [1]={ [1]={ limit={ @@ -146479,7 +148588,7 @@ return { [1]="elemental_resistances_are_limited_by_highest_maximum_elemental_resistance" } }, - [6366]={ + [6453]={ [1]={ [1]={ [1]={ @@ -146499,7 +148608,7 @@ return { [1]="elemental_skill_chance_to_blind_nearby_enemies_%" } }, - [6367]={ + [6454]={ [1]={ [1]={ limit={ @@ -146515,7 +148624,7 @@ return { [1]="elemental_skills_deal_triple_damage" } }, - [6368]={ + [6455]={ [1]={ [1]={ limit={ @@ -146531,7 +148640,7 @@ return { [1]="elemental_weakness_no_reservation" } }, - [6369]={ + [6456]={ [1]={ [1]={ limit={ @@ -146560,7 +148669,7 @@ return { [1]="elementalist_area_of_effect_+%_for_5_seconds" } }, - [6370]={ + [6457]={ [1]={ [1]={ limit={ @@ -146576,7 +148685,7 @@ return { [1]="elementalist_chill_maximum_magnitude_override" } }, - [6371]={ + [6458]={ [1]={ [1]={ [1]={ @@ -146613,7 +148722,7 @@ return { [1]="elementalist_elemental_damage_+%_for_5_seconds" } }, - [6372]={ + [6459]={ [1]={ [1]={ limit={ @@ -146629,7 +148738,7 @@ return { [1]="elementalist_gain_shaper_of_desolation_every_10_seconds" } }, - [6373]={ + [6460]={ [1]={ [1]={ limit={ @@ -146658,7 +148767,7 @@ return { [1]="elementalist_ignite_damage_+%_final" } }, - [6374]={ + [6461]={ [1]={ [1]={ [1]={ @@ -146695,7 +148804,7 @@ return { [1]="elusive_effect_+%" } }, - [6375]={ + [6462]={ [1]={ [1]={ [1]={ @@ -146715,7 +148824,7 @@ return { [1]="elusive_has_50%_chance_to_be_removed_and_reapplied_at_%_elusive_effect" } }, - [6376]={ + [6463]={ [1]={ [1]={ [1]={ @@ -146752,7 +148861,7 @@ return { [1]="elusive_loss_rate_+%" } }, - [6377]={ + [6464]={ [1]={ [1]={ [1]={ @@ -146772,7 +148881,7 @@ return { [1]="elusive_minimum_effect_%" } }, - [6378]={ + [6465]={ [1]={ [1]={ [1]={ @@ -146813,7 +148922,7 @@ return { [1]="elusive_ticks_up_instead_for_x_ms" } }, - [6379]={ + [6466]={ [1]={ [1]={ limit={ @@ -146842,7 +148951,7 @@ return { [1]="ember_projectile_spread_area_+%" } }, - [6380]={ + [6467]={ [1]={ [1]={ limit={ @@ -146871,7 +148980,7 @@ return { [1]="emberglow_ignite_duration_+%_final" } }, - [6381]={ + [6468]={ [1]={ [1]={ limit={ @@ -146900,7 +149009,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [6382]={ + [6469]={ [1]={ [1]={ limit={ @@ -146916,7 +149025,7 @@ return { [1]="empowered_attack_double_damage_%_chance" } }, - [6383]={ + [6470]={ [1]={ [1]={ limit={ @@ -146932,7 +149041,7 @@ return { [1]="enable_ring_slot_3" } }, - [6384]={ + [6471]={ [1]={ [1]={ [1]={ @@ -146969,7 +149078,7 @@ return { [1]="enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently" } }, - [6385]={ + [6472]={ [1]={ [1]={ limit={ @@ -146985,7 +149094,7 @@ return { [1]="endurance_charge_on_hit_%_vs_no_armour" } }, - [6386]={ + [6473]={ [1]={ [1]={ limit={ @@ -147001,7 +149110,7 @@ return { [1]="endurance_charge_on_kill_percent_chance_while_holding_shield" } }, - [6387]={ + [6474]={ [1]={ [1]={ limit={ @@ -147030,7 +149139,7 @@ return { [1]="endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge" } }, - [6388]={ + [6475]={ [1]={ [1]={ limit={ @@ -147055,7 +149164,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [6389]={ + [6476]={ [1]={ [1]={ [1]={ @@ -147079,7 +149188,7 @@ return { [1]="enemies_blinded_by_you_cannot_inflict_damaging_ailments" } }, - [6390]={ + [6477]={ [1]={ [1]={ [1]={ @@ -147099,7 +149208,7 @@ return { [1]="enemies_blinded_by_you_have_malediction" } }, - [6391]={ + [6478]={ [1]={ [1]={ [1]={ @@ -147119,7 +149228,7 @@ return { [1]="enemies_blinded_by_you_while_blinded_have_malediction" } }, - [6392]={ + [6479]={ [1]={ [1]={ [1]={ @@ -147139,7 +149248,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [6393]={ + [6480]={ [1]={ [1]={ limit={ @@ -147155,7 +149264,7 @@ return { [1]="enemies_chilled_by_hits_deal_damage_lessened_by_chill_effect" } }, - [6394]={ + [6481]={ [1]={ [1]={ limit={ @@ -147171,7 +149280,7 @@ return { [1]="enemies_chilled_by_hits_take_damage_increased_by_chill_effect" } }, - [6395]={ + [6482]={ [1]={ [1]={ [1]={ @@ -147191,7 +149300,7 @@ return { [1]="enemies_chilled_by_your_hits_are_shocked" } }, - [6396]={ + [6483]={ [1]={ [1]={ limit={ @@ -147220,7 +149329,7 @@ return { [1]="enemies_cursed_by_you_have_life_regeneration_rate_+%" } }, - [6397]={ + [6484]={ [1]={ [1]={ limit={ @@ -147236,7 +149345,7 @@ return { [1]="enemies_explode_for_%_life_as_physical_damage" } }, - [6398]={ + [6485]={ [1]={ [1]={ limit={ @@ -147252,7 +149361,7 @@ return { [1]="enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage" } }, - [6399]={ + [6486]={ [1]={ [1]={ limit={ @@ -147268,7 +149377,7 @@ return { [1]="enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance" } }, - [6400]={ + [6487]={ [1]={ [1]={ limit={ @@ -147284,7 +149393,7 @@ return { [1]="enemies_explode_on_kill" } }, - [6401]={ + [6488]={ [1]={ [1]={ limit={ @@ -147300,7 +149409,7 @@ return { [1]="enemies_explode_on_kill_while_unhinged" } }, - [6402]={ + [6489]={ [1]={ [1]={ [1]={ @@ -147337,7 +149446,7 @@ return { [1]="enemies_extra_damage_rolls_with_physical_damage" } }, - [6403]={ + [6490]={ [1]={ [1]={ [1]={ @@ -147357,7 +149466,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage" } }, - [6404]={ + [6491]={ [1]={ [1]={ [1]={ @@ -147390,7 +149499,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked" } }, - [6405]={ + [6492]={ [1]={ [1]={ limit={ @@ -147415,7 +149524,7 @@ return { [1]="enemies_hitting_you_drop_burning_ground_%" } }, - [6406]={ + [6493]={ [1]={ [1]={ limit={ @@ -147440,7 +149549,7 @@ return { [1]="enemies_hitting_you_drop_chilled_ground_%" } }, - [6407]={ + [6494]={ [1]={ [1]={ limit={ @@ -147465,7 +149574,7 @@ return { [1]="enemies_hitting_you_drop_shocked_ground_%" } }, - [6408]={ + [6495]={ [1]={ [1]={ limit={ @@ -147481,7 +149590,7 @@ return { [1]="enemies_ignited_by_you_have_physical_damage_%_converted_to_fire" } }, - [6409]={ + [6496]={ [1]={ [1]={ limit={ @@ -147497,7 +149606,7 @@ return { [1]="enemies_in_presence_and_you_count_as_moving_when_affected_by_elemental_ailments" } }, - [6410]={ + [6497]={ [1]={ [1]={ [1]={ @@ -147530,7 +149639,7 @@ return { [1]="enemies_killed_on_fungal_ground_explode_for_10%_chaos_damage_%_chance" } }, - [6411]={ + [6498]={ [1]={ [1]={ [1]={ @@ -147562,7 +149671,7 @@ return { [1]="enemies_near_corpses_created_recently_are_shocked_and_chilled" } }, - [6412]={ + [6499]={ [1]={ [1]={ limit={ @@ -147578,7 +149687,7 @@ return { [1]="enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage" } }, - [6413]={ + [6500]={ [1]={ [1]={ [1]={ @@ -147598,7 +149707,7 @@ return { [1]="enemies_near_link_skill_target_have_exposure" } }, - [6414]={ + [6501]={ [1]={ [1]={ [1]={ @@ -147618,7 +149727,7 @@ return { [1]="enemies_near_marked_enemy_are_blinded" } }, - [6415]={ + [6502]={ [1]={ [1]={ limit={ @@ -147647,7 +149756,7 @@ return { [1]="enemies_pacified_by_you_take_+%_damage" } }, - [6416]={ + [6503]={ [1]={ [1]={ limit={ @@ -147663,7 +149772,7 @@ return { [1]="enemies_poisoned_by_you_cannot_deal_critical_strikes" } }, - [6417]={ + [6504]={ [1]={ [1]={ limit={ @@ -147679,7 +149788,7 @@ return { [1]="enemies_poisoned_by_you_cannot_regen_life" } }, - [6418]={ + [6505]={ [1]={ [1]={ limit={ @@ -147695,7 +149804,7 @@ return { [1]="enemies_poisoned_by_you_chaos_resistance_+%" } }, - [6419]={ + [6506]={ [1]={ [1]={ [1]={ @@ -147715,7 +149824,7 @@ return { [1]="enemies_poisoned_by_you_have_physical_damage_%_converted_to_chaos" } }, - [6420]={ + [6507]={ [1]={ [1]={ limit={ @@ -147731,7 +149840,7 @@ return { [1]="enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning" } }, - [6421]={ + [6508]={ [1]={ [1]={ [1]={ @@ -147751,7 +149860,7 @@ return { [1]="enemies_shocked_by_your_hits_are_chilled" } }, - [6422]={ + [6509]={ [1]={ [1]={ [1]={ @@ -147771,7 +149880,7 @@ return { [1]="enemies_shocked_by_your_hits_are_debilitated" } }, - [6423]={ + [6510]={ [1]={ [1]={ limit={ @@ -147796,7 +149905,7 @@ return { [1]="enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage" } }, - [6424]={ + [6511]={ [1]={ [1]={ limit={ @@ -147812,7 +149921,7 @@ return { [1]="enemies_taunted_by_you_cannot_evade_attacks" } }, - [6425]={ + [6512]={ [1]={ [1]={ [1]={ @@ -147832,7 +149941,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [6426]={ + [6513]={ [1]={ [1]={ [1]={ @@ -147852,7 +149961,7 @@ return { [1]="enemies_taunted_by_your_warcries_are_unnerved" } }, - [6427]={ + [6514]={ [1]={ [1]={ limit={ @@ -147868,7 +149977,7 @@ return { [1]="enemies_that_hit_you_inflict_temporal_chains" } }, - [6428]={ + [6515]={ [1]={ [1]={ [1]={ @@ -147905,7 +150014,7 @@ return { [1]="enemies_that_hit_you_with_attack_recently_attack_speed_+%" } }, - [6429]={ + [6516]={ [1]={ [1]={ limit={ @@ -147934,7 +150043,7 @@ return { [1]="enemies_you_blind_have_critical_strike_chance_+%" } }, - [6430]={ + [6517]={ [1]={ [1]={ [1]={ @@ -147954,7 +150063,7 @@ return { [1]="enemies_you_curse_are_intimidated" } }, - [6431]={ + [6518]={ [1]={ [1]={ [1]={ @@ -147974,7 +150083,7 @@ return { [1]="enemies_you_curse_are_unnerved" } }, - [6432]={ + [6519]={ [1]={ [1]={ limit={ @@ -147990,7 +150099,7 @@ return { [1]="enemies_you_curse_cannot_recharge_energy_shield" } }, - [6433]={ + [6520]={ [1]={ [1]={ [1]={ @@ -148010,7 +150119,7 @@ return { [1]="enemies_you_curse_have_15%_hinder" } }, - [6434]={ + [6521]={ [1]={ [1]={ [1]={ @@ -148047,7 +150156,7 @@ return { [1]="enemies_you_expose_have_self_elemental_status_duration_+%" } }, - [6435]={ + [6522]={ [1]={ [1]={ limit={ @@ -148076,7 +150185,7 @@ return { [1]="enemies_you_hinder_have_life_regeneration_rate_+%" } }, - [6436]={ + [6523]={ [1]={ [1]={ limit={ @@ -148092,7 +150201,7 @@ return { [1]="enemies_you_ignite_take_chaos_damage_from_ignite_instead" } }, - [6437]={ + [6524]={ [1]={ [1]={ limit={ @@ -148108,7 +150217,7 @@ return { [1]="enemies_you_ignite_wither_does_not_expire" } }, - [6438]={ + [6525]={ [1]={ [1]={ limit={ @@ -148137,7 +150246,7 @@ return { [1]="enemies_you_intimidate_have_stun_duration_on_self_+%" } }, - [6439]={ + [6526]={ [1]={ [1]={ limit={ @@ -148166,7 +150275,7 @@ return { [1]="enemies_you_maim_have_damage_taken_over_time_+%" } }, - [6440]={ + [6527]={ [1]={ [1]={ limit={ @@ -148195,7 +150304,7 @@ return { [1]="enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self" } }, - [6441]={ + [6528]={ [1]={ [1]={ limit={ @@ -148211,7 +150320,7 @@ return { [1]="enemies_you_wither_have_all_resistances_%" } }, - [6442]={ + [6529]={ [1]={ [1]={ [1]={ @@ -148252,7 +150361,7 @@ return { [1]="enemy_evasion_+%_if_you_have_hit_them_recently" } }, - [6443]={ + [6530]={ [1]={ [1]={ [1]={ @@ -148289,7 +150398,7 @@ return { [1]="enemy_extra_damage_rolls_if_magic_ring_equipped" } }, - [6444]={ + [6531]={ [1]={ [1]={ [1]={ @@ -148326,7 +150435,7 @@ return { [1]="enemy_extra_damage_rolls_when_on_full_life" } }, - [6445]={ + [6532]={ [1]={ [1]={ limit={ @@ -148351,7 +150460,7 @@ return { [1]="enemy_hits_%_chance_to_treat_elemental_resistances_as_90%" } }, - [6446]={ + [6533]={ [1]={ [1]={ [1]={ @@ -148392,7 +150501,7 @@ return { [1]="enemy_life_regeneration_rate_+%_for_4_seconds_on_hit" } }, - [6447]={ + [6534]={ [1]={ [1]={ limit={ @@ -148408,7 +150517,7 @@ return { [1]="enemy_zero_elemental_resistance_when_hit" } }, - [6448]={ + [6535]={ [1]={ [1]={ limit={ @@ -148424,7 +150533,7 @@ return { [1]="energy_shield_%_of_evasion_rating_gained_on_block" } }, - [6449]={ + [6536]={ [1]={ [1]={ limit={ @@ -148453,7 +150562,7 @@ return { [1]="energy_shield_+%_if_both_rings_have_evasion_mod" } }, - [6450]={ + [6537]={ [1]={ [1]={ limit={ @@ -148482,7 +150591,7 @@ return { [1]="energy_shield_+%_while_you_have_broken_ward" } }, - [6451]={ + [6538]={ [1]={ [1]={ limit={ @@ -148498,7 +150607,7 @@ return { [1]="energy_shield_+1%_per_X_strength_when_in_off_hand_from_foulborn_doon_cuebiyari" } }, - [6452]={ + [6539]={ [1]={ [1]={ limit={ @@ -148514,7 +150623,7 @@ return { [1]="energy_shield_+_per_8_evasion_on_boots" } }, - [6453]={ + [6540]={ [1]={ [1]={ limit={ @@ -148530,7 +150639,7 @@ return { [1]="energy_shield_additive_modifiers_instead_apply_to_ward" } }, - [6454]={ + [6541]={ [1]={ [1]={ limit={ @@ -148559,7 +150668,7 @@ return { [1]="energy_shield_delay_-%_while_affected_by_discipline" } }, - [6455]={ + [6542]={ [1]={ [1]={ limit={ @@ -148588,7 +150697,7 @@ return { [1]="energy_shield_from_gloves_and_boots_+%" } }, - [6456]={ + [6543]={ [1]={ [1]={ limit={ @@ -148617,7 +150726,7 @@ return { [1]="energy_shield_from_helmet_+%" } }, - [6457]={ + [6544]={ [1]={ [1]={ limit={ @@ -148646,7 +150755,7 @@ return { [1]="energy_shield_gain_per_target_hit_while_affected_by_discipline" } }, - [6458]={ + [6545]={ [1]={ [1]={ limit={ @@ -148662,7 +150771,7 @@ return { [1]="energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web" } }, - [6459]={ + [6546]={ [1]={ [1]={ limit={ @@ -148678,7 +150787,7 @@ return { [1]="energy_shield_increased_by_chaos_resistance" } }, - [6460]={ + [6547]={ [1]={ [1]={ limit={ @@ -148694,7 +150803,7 @@ return { [1]="energy_shield_leech_does_not_stop_on_full_energy_shield" } }, - [6461]={ + [6548]={ [1]={ [1]={ limit={ @@ -148710,7 +150819,7 @@ return { [1]="energy_shield_leech_from_attacks_does_not_stop_on_full_energy_shield" } }, - [6462]={ + [6549]={ [1]={ [1]={ [1]={ @@ -148730,7 +150839,7 @@ return { [1]="energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath" } }, - [6463]={ + [6550]={ [1]={ [1]={ [1]={ @@ -148754,7 +150863,7 @@ return { [1]="energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad" } }, - [6464]={ + [6551]={ [1]={ [1]={ [1]={ @@ -148778,7 +150887,7 @@ return { [1]="energy_shield_leech_permyriad_vs_frozen_enemies" } }, - [6465]={ + [6552]={ [1]={ [1]={ [1]={ @@ -148798,7 +150907,7 @@ return { [1]="energy_shield_lost_per_minute_%" } }, - [6466]={ + [6553]={ [1]={ [1]={ limit={ @@ -148814,7 +150923,7 @@ return { [1]="energy_shield_per_level" } }, - [6467]={ + [6554]={ [1]={ [1]={ limit={ @@ -148830,7 +150939,7 @@ return { [1]="energy_shield_+%_per_10_strength" } }, - [6468]={ + [6555]={ [1]={ [1]={ limit={ @@ -148846,7 +150955,7 @@ return { [1]="energy_shield_+%_per_power_charge" } }, - [6469]={ + [6556]={ [1]={ [1]={ limit={ @@ -148875,7 +150984,7 @@ return { [1]="energy_shield_recharge_+%_if_amulet_has_evasion_mod" } }, - [6470]={ + [6557]={ [1]={ [1]={ limit={ @@ -148884,14 +150993,14 @@ return { [2]="#" } }, - text="[DNT] Energy Shield Recharge instead applies to Mana" + text="DNT Energy Shield Recharge instead applies to Mana" } }, stats={ [1]="energy_shield_recharge_apply_to_mana" } }, - [6471]={ + [6558]={ [1]={ [1]={ [1]={ @@ -148920,7 +151029,7 @@ return { [1]="energy_shield_recharge_rate_+%_per_different_mastery" } }, - [6472]={ + [6559]={ [1]={ [1]={ limit={ @@ -148936,7 +151045,7 @@ return { [1]="energy_shield_recharge_start_when_stunned" } }, - [6473]={ + [6560]={ [1]={ [1]={ limit={ @@ -148952,7 +151061,7 @@ return { [1]="energy_shield_recharges_on_kill_%" } }, - [6474]={ + [6561]={ [1]={ [1]={ limit={ @@ -148968,7 +151077,7 @@ return { [1]="energy_shield_recharges_on_skill_use_chance_%" } }, - [6475]={ + [6562]={ [1]={ [1]={ [1]={ @@ -149005,7 +151114,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_havent_killed_recently" } }, - [6476]={ + [6563]={ [1]={ [1]={ [1]={ @@ -149042,7 +151151,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_not_hit_recently" } }, - [6477]={ + [6564]={ [1]={ [1]={ limit={ @@ -149071,7 +151180,7 @@ return { [1]="energy_shield_recovery_rate_while_affected_by_discipline_+%" } }, - [6478]={ + [6565]={ [1]={ [1]={ [1]={ @@ -149095,7 +151204,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently" } }, - [6479]={ + [6566]={ [1]={ [1]={ [1]={ @@ -149119,7 +151228,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_killed_recently" } }, - [6480]={ + [6567]={ [1]={ [1]={ [1]={ @@ -149143,7 +151252,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [6481]={ + [6568]={ [1]={ [1]={ [1]={ @@ -149163,7 +151272,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby" } }, - [6482]={ + [6569]={ [1]={ [1]={ [1]={ @@ -149183,7 +151292,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_per_poison_stack" } }, - [6483]={ + [6570]={ [1]={ [1]={ [1]={ @@ -149207,7 +151316,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently" } }, - [6484]={ + [6571]={ [1]={ [1]={ [1]={ @@ -149227,7 +151336,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline" } }, - [6485]={ + [6572]={ [1]={ [1]={ [1]={ @@ -149247,7 +151356,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [6486]={ + [6573]={ [1]={ [1]={ limit={ @@ -149263,7 +151372,7 @@ return { [1]="energy_shield_regeneration_rate_per_second" } }, - [6487]={ + [6574]={ [1]={ [1]={ limit={ @@ -149292,7 +151401,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [6488]={ + [6575]={ [1]={ [1]={ limit={ @@ -149308,7 +151417,7 @@ return { [1]="enfeeble_no_reservation" } }, - [6489]={ + [6576]={ [1]={ [1]={ limit={ @@ -149337,7 +151446,7 @@ return { [1]="ensnaring_arrow_area_of_effect_+%" } }, - [6490]={ + [6577]={ [1]={ [1]={ limit={ @@ -149366,7 +151475,7 @@ return { [1]="ensnaring_arrow_debuff_effect_+%" } }, - [6491]={ + [6578]={ [1]={ [1]={ limit={ @@ -149382,7 +151491,7 @@ return { [1]="envy_reserves_no_mana" } }, - [6492]={ + [6579]={ [1]={ [1]={ limit={ @@ -149398,7 +151507,7 @@ return { [1]="ephemeral_edge_maximum_lightning_damage_from_es_%" } }, - [6493]={ + [6580]={ [1]={ [1]={ [1]={ @@ -149418,7 +151527,7 @@ return { [1]="es_regeneration_per_minute_%_while_stationary" } }, - [6494]={ + [6581]={ [1]={ [1]={ limit={ @@ -149447,7 +151556,7 @@ return { [1]="essence_drain_soulrend_base_projectile_speed_+%" } }, - [6495]={ + [6582]={ [1]={ [1]={ limit={ @@ -149472,7 +151581,7 @@ return { [1]="essence_drain_soulrend_number_of_additional_projectiles" } }, - [6496]={ + [6583]={ [1]={ [1]={ [1]={ @@ -149539,7 +151648,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [6497]={ + [6584]={ [1]={ [1]={ limit={ @@ -149564,7 +151673,7 @@ return { [1]="ethereal_knives_number_of_additional_projectiles" } }, - [6498]={ + [6585]={ [1]={ [1]={ limit={ @@ -149589,7 +151698,7 @@ return { [1]="ethereal_knives_projectile_base_number_of_targets_to_pierce" } }, - [6499]={ + [6586]={ [1]={ [1]={ limit={ @@ -149605,7 +151714,7 @@ return { [1]="ethereal_knives_projectiles_nova" } }, - [6500]={ + [6587]={ [1]={ [1]={ limit={ @@ -149634,7 +151743,7 @@ return { [1]="evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds" } }, - [6501]={ + [6588]={ [1]={ [1]={ limit={ @@ -149650,7 +151759,7 @@ return { [1]="evasion_+%_per_10_intelligence" } }, - [6502]={ + [6589]={ [1]={ [1]={ limit={ @@ -149666,7 +151775,7 @@ return { [1]="evasion_rating_+%_during_focus" } }, - [6503]={ + [6590]={ [1]={ [1]={ limit={ @@ -149695,7 +151804,7 @@ return { [1]="evasion_rating_+%_per_10_intelligence" } }, - [6504]={ + [6591]={ [1]={ [1]={ limit={ @@ -149711,7 +151820,7 @@ return { [1]="evasion_rating_+%_per_500_maximum_mana" } }, - [6505]={ + [6592]={ [1]={ [1]={ limit={ @@ -149727,7 +151836,7 @@ return { [1]="evasion_rating_+%_per_endurance_charge" } }, - [6506]={ + [6593]={ [1]={ [1]={ limit={ @@ -149756,7 +151865,7 @@ return { [1]="evasion_rating_+%_while_stationary" } }, - [6507]={ + [6594]={ [1]={ [1]={ limit={ @@ -149785,7 +151894,7 @@ return { [1]="evasion_rating_+%_while_you_have_unbroken_ward" } }, - [6508]={ + [6595]={ [1]={ [1]={ limit={ @@ -149801,7 +151910,7 @@ return { [1]="evasion_rating_+_per_10_player_life" } }, - [6509]={ + [6596]={ [1]={ [1]={ limit={ @@ -149817,7 +151926,7 @@ return { [1]="evasion_rating_+_per_1_armour_on_gloves" } }, - [6510]={ + [6597]={ [1]={ [1]={ limit={ @@ -149846,7 +151955,7 @@ return { [1]="evasion_rating_from_helmet_and_boots_+%" } }, - [6511]={ + [6598]={ [1]={ [1]={ [1]={ @@ -149870,7 +151979,7 @@ return { [1]="evasion_rating_increased_by_overcapped_cold_resistance" } }, - [6512]={ + [6599]={ [1]={ [1]={ [1]={ @@ -149890,7 +151999,7 @@ return { [1]="evasion_rating_%_as_life_regeneration_per_minute_during_focus" } }, - [6513]={ + [6600]={ [1]={ [1]={ limit={ @@ -149906,7 +152015,7 @@ return { [1]="evasion_rating_%_to_add_as_armour" } }, - [6514]={ + [6601]={ [1]={ [1]={ [1]={ @@ -149926,7 +152035,7 @@ return { [1]="evasion_rating_+_if_you_have_hit_an_enemy_recently" } }, - [6515]={ + [6602]={ [1]={ [1]={ limit={ @@ -149955,7 +152064,7 @@ return { [1]="evasion_rating_+_while_phasing" } }, - [6516]={ + [6603]={ [1]={ [1]={ limit={ @@ -149971,7 +152080,7 @@ return { [1]="evasion_rating_+_while_you_have_tailwind" } }, - [6517]={ + [6604]={ [1]={ [1]={ [1]={ @@ -150008,7 +152117,7 @@ return { [1]="evasion_rating_+%_if_have_cast_dash_recently" } }, - [6518]={ + [6605]={ [1]={ [1]={ [1]={ @@ -150037,7 +152146,7 @@ return { [1]="evasion_rating_+%_if_have_not_been_hit_recently" } }, - [6519]={ + [6606]={ [1]={ [1]={ [1]={ @@ -150074,7 +152183,7 @@ return { [1]="evasion_rating_+%_if_you_have_hit_an_enemy_recently" } }, - [6520]={ + [6607]={ [1]={ [1]={ limit={ @@ -150103,7 +152212,7 @@ return { [1]="evasion_rating_+%_per_green_socket_on_main_hand_weapon" } }, - [6521]={ + [6608]={ [1]={ [1]={ limit={ @@ -150132,7 +152241,7 @@ return { [1]="evasion_rating_+%_when_on_full_life" } }, - [6522]={ + [6609]={ [1]={ [1]={ limit={ @@ -150161,7 +152270,7 @@ return { [1]="evasion_rating_+%_while_leeching" } }, - [6523]={ + [6610]={ [1]={ [1]={ limit={ @@ -150190,7 +152299,7 @@ return { [1]="evasion_rating_+%_while_moving" } }, - [6524]={ + [6611]={ [1]={ [1]={ limit={ @@ -150219,7 +152328,7 @@ return { [1]="evasion_rating_+%_while_tincture_active" } }, - [6525]={ + [6612]={ [1]={ [1]={ limit={ @@ -150248,7 +152357,7 @@ return { [1]="evasion_rating_+%_while_you_have_energy_shield" } }, - [6526]={ + [6613]={ [1]={ [1]={ limit={ @@ -150264,7 +152373,7 @@ return { [1]="every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds" } }, - [6527]={ + [6614]={ [1]={ [1]={ limit={ @@ -150280,7 +152389,7 @@ return { [1]="every_4_seconds_%_chance_freeze_non_frozen_enemies_for_300ms" } }, - [6528]={ + [6615]={ [1]={ [1]={ limit={ @@ -150296,7 +152405,7 @@ return { [1]="every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second" } }, - [6529]={ + [6616]={ [1]={ [1]={ limit={ @@ -150312,7 +152421,7 @@ return { [1]="every_fourth_retaliation_used_is_a_critical_strike" } }, - [6530]={ + [6617]={ [1]={ [1]={ [1]={ @@ -150353,7 +152462,7 @@ return { [1]="excommunicate_on_melee_attack_hit_for_X_ms" } }, - [6531]={ + [6618]={ [1]={ [1]={ [1]={ @@ -150386,7 +152495,7 @@ return { [1]="exerted_attack_knockback_chance_%" } }, - [6532]={ + [6619]={ [1]={ [1]={ [1]={ @@ -150406,7 +152515,7 @@ return { [1]="exerted_attacks_overwhelm_%_physical_damage_reduction" } }, - [6533]={ + [6620]={ [1]={ [1]={ limit={ @@ -150422,7 +152531,7 @@ return { [1]="expanding_fire_cone_additional_maximum_number_of_stages" } }, - [6534]={ + [6621]={ [1]={ [1]={ limit={ @@ -150451,7 +152560,7 @@ return { [1]="expanding_fire_cone_area_of_effect_+%" } }, - [6535]={ + [6622]={ [1]={ [1]={ limit={ @@ -150480,7 +152589,7 @@ return { [1]="expedition_chest_logbook_chance_%" } }, - [6536]={ + [6623]={ [1]={ [1]={ limit={ @@ -150505,7 +152614,7 @@ return { [1]="expedition_monsters_logbook_chance_+%" } }, - [6537]={ + [6624]={ [1]={ [1]={ limit={ @@ -150521,7 +152630,7 @@ return { [1]="explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%" } }, - [6538]={ + [6625]={ [1]={ [1]={ limit={ @@ -150537,7 +152646,7 @@ return { [1]="explode_enemies_for_10%_life_as_fire_on_kill_chance_%" } }, - [6539]={ + [6626]={ [1]={ [1]={ limit={ @@ -150553,7 +152662,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride" } }, - [6540]={ + [6627]={ [1]={ [1]={ limit={ @@ -150569,7 +152678,7 @@ return { [1]="explode_enemies_for_500%_life_as_fire_on_kill_%_chance" } }, - [6541]={ + [6628]={ [1]={ [1]={ limit={ @@ -150585,7 +152694,7 @@ return { [1]="explode_on_death_for_%_life_as_fire_damage" } }, - [6542]={ + [6629]={ [1]={ [1]={ limit={ @@ -150614,7 +152723,7 @@ return { [1]="explosive_arrow_duration_+%" } }, - [6543]={ + [6630]={ [1]={ [1]={ limit={ @@ -150643,7 +152752,7 @@ return { [1]="explosive_concoction_damage_+%" } }, - [6544]={ + [6631]={ [1]={ [1]={ limit={ @@ -150672,7 +152781,7 @@ return { [1]="explosive_concoction_flask_charges_consumed_+%" } }, - [6545]={ + [6632]={ [1]={ [1]={ limit={ @@ -150701,7 +152810,7 @@ return { [1]="explosive_concoction_skill_area_of_effect_+%" } }, - [6546]={ + [6633]={ [1]={ [1]={ limit={ @@ -150730,7 +152839,7 @@ return { [1]="exposure_effect_+%" } }, - [6547]={ + [6634]={ [1]={ [1]={ limit={ @@ -150746,7 +152855,7 @@ return { [1]="exposure_you_inflict_applies_extra_%_to_affected_resistance" } }, - [6548]={ + [6635]={ [1]={ [1]={ limit={ @@ -150762,7 +152871,7 @@ return { [1]="exposure_you_inflict_has_minimum_resistance_%" } }, - [6549]={ + [6636]={ [1]={ [1]={ limit={ @@ -150778,7 +152887,7 @@ return { [1]="exsanguinate_additional_chain_chance_%" } }, - [6550]={ + [6637]={ [1]={ [1]={ limit={ @@ -150794,7 +152903,7 @@ return { [1]="exsanguinate_and_reap_skill_physical_damage_%_to_convert_to_fire" } }, - [6551]={ + [6638]={ [1]={ [1]={ limit={ @@ -150823,7 +152932,7 @@ return { [1]="exsanguinate_damage_+%" } }, - [6552]={ + [6639]={ [1]={ [1]={ limit={ @@ -150839,7 +152948,7 @@ return { [1]="exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [6553]={ + [6640]={ [1]={ [1]={ limit={ @@ -150868,7 +152977,7 @@ return { [1]="exsanguinate_duration_+%" } }, - [6554]={ + [6641]={ [1]={ [1]={ [1]={ @@ -150888,7 +152997,7 @@ return { [1]="extinguish_on_hit_%_chance" } }, - [6555]={ + [6642]={ [1]={ [1]={ [1]={ @@ -150921,7 +153030,7 @@ return { [1]="extra_critical_rolls_during_focus" } }, - [6556]={ + [6643]={ [1]={ [1]={ [1]={ @@ -150962,7 +153071,7 @@ return { [1]="extra_critical_rolls_while_on_low_life" } }, - [6557]={ + [6644]={ [1]={ [1]={ [1]={ @@ -150995,7 +153104,7 @@ return { [1]="extra_damage_rolls_with_cold_damage_if_have_suppressed_spell_damage_recently" } }, - [6558]={ + [6645]={ [1]={ [1]={ [1]={ @@ -151028,7 +153137,7 @@ return { [1]="extra_damage_rolls_with_fire_damage_if_have_blocked_attack_recently" } }, - [6559]={ + [6646]={ [1]={ [1]={ [1]={ @@ -151061,7 +153170,7 @@ return { [1]="extra_damage_rolls_with_lightning_damage_if_have_blocked_spell_recently" } }, - [6560]={ + [6647]={ [1]={ [1]={ limit={ @@ -151077,7 +153186,7 @@ return { [1]="extra_damage_rolls_with_lightning_damage_on_non_critical_hits" } }, - [6561]={ + [6648]={ [1]={ [1]={ limit={ @@ -151110,7 +153219,7 @@ return { [1]="extra_damage_taken_from_crit_+%_while_affected_by_determination" } }, - [6562]={ + [6649]={ [1]={ [1]={ limit={ @@ -151143,7 +153252,7 @@ return { [1]="extra_damage_taken_from_crit_while_no_power_charges_+%" } }, - [6563]={ + [6650]={ [1]={ [1]={ limit={ @@ -151159,7 +153268,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [6564]={ + [6651]={ [1]={ [1]={ limit={ @@ -151175,7 +153284,7 @@ return { [1]="extreme_luck_unluck" } }, - [6565]={ + [6652]={ [1]={ [1]={ limit={ @@ -151204,7 +153313,7 @@ return { [1]="eye_of_winter_damage_+%" } }, - [6566]={ + [6653]={ [1]={ [1]={ limit={ @@ -151233,7 +153342,7 @@ return { [1]="eye_of_winter_projectile_speed_+%" } }, - [6567]={ + [6654]={ [1]={ [1]={ limit={ @@ -151262,7 +153371,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [6568]={ + [6655]={ [1]={ [1]={ [1]={ @@ -151282,7 +153391,7 @@ return { [1]="faster_bleed_per_frenzy_charge_%" } }, - [6569]={ + [6656]={ [1]={ [1]={ [1]={ @@ -151302,7 +153411,7 @@ return { [1]="faster_bleed_%" } }, - [6570]={ + [6657]={ [1]={ [1]={ [1]={ @@ -151326,7 +153435,7 @@ return { [1]="faster_poison_%" } }, - [6571]={ + [6658]={ [1]={ [1]={ limit={ @@ -151342,7 +153451,7 @@ return { [1]="final_pack_summons_nameless_seer" } }, - [6572]={ + [6659]={ [1]={ [1]={ limit={ @@ -151371,7 +153480,7 @@ return { [1]="final_repeat_of_spells_area_of_effect_+%" } }, - [6573]={ + [6660]={ [1]={ [1]={ [1]={ @@ -151408,7 +153517,7 @@ return { [1]="fire_ailment_duration_+%" } }, - [6574]={ + [6661]={ [1]={ [1]={ limit={ @@ -151424,7 +153533,7 @@ return { [1]="fire_and_chaos_damage_resistance_%" } }, - [6575]={ + [6662]={ [1]={ [1]={ limit={ @@ -151440,7 +153549,7 @@ return { [1]="fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning" } }, - [6576]={ + [6663]={ [1]={ [1]={ limit={ @@ -151465,7 +153574,7 @@ return { [1]="fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined" } }, - [6577]={ + [6664]={ [1]={ [1]={ limit={ @@ -151481,7 +153590,7 @@ return { [1]="fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice" } }, - [6578]={ + [6665]={ [1]={ [1]={ limit={ @@ -151510,7 +153619,7 @@ return { [1]="fire_beam_cast_speed_+%" } }, - [6579]={ + [6666]={ [1]={ [1]={ limit={ @@ -151539,7 +153648,7 @@ return { [1]="fire_beam_damage_+%" } }, - [6580]={ + [6667]={ [1]={ [1]={ limit={ @@ -151555,7 +153664,7 @@ return { [1]="fire_beam_degen_spread_to_enemies_in_radius_on_kill" } }, - [6581]={ + [6668]={ [1]={ [1]={ limit={ @@ -151571,7 +153680,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_at_max_stacks" } }, - [6582]={ + [6669]={ [1]={ [1]={ limit={ @@ -151587,7 +153696,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [6583]={ + [6670]={ [1]={ [1]={ limit={ @@ -151616,7 +153725,7 @@ return { [1]="fire_beam_length_+%" } }, - [6584]={ + [6671]={ [1]={ [1]={ limit={ @@ -151632,7 +153741,7 @@ return { [1]="fire_damage_over_time_multiplier_+%_while_burning" } }, - [6585]={ + [6672]={ [1]={ [1]={ limit={ @@ -151648,7 +153757,7 @@ return { [1]="fire_damage_%_to_add_as_chaos_per_endurance_charge" } }, - [6586]={ + [6673]={ [1]={ [1]={ limit={ @@ -151677,7 +153786,7 @@ return { [1]="fire_damage_+%_if_you_have_been_hit_recently" } }, - [6587]={ + [6674]={ [1]={ [1]={ limit={ @@ -151706,7 +153815,7 @@ return { [1]="fire_damage_+%_if_you_have_used_a_cold_skill_recently" } }, - [6588]={ + [6675]={ [1]={ [1]={ limit={ @@ -151735,7 +153844,7 @@ return { [1]="fire_damage_+%_per_20_strength" } }, - [6589]={ + [6676]={ [1]={ [1]={ limit={ @@ -151764,7 +153873,7 @@ return { [1]="fire_damage_+%_per_endurance_charge" } }, - [6590]={ + [6677]={ [1]={ [1]={ limit={ @@ -151793,7 +153902,7 @@ return { [1]="fire_damage_+%_per_fire_resistance_above_75" } }, - [6591]={ + [6678]={ [1]={ [1]={ [1]={ @@ -151830,7 +153939,7 @@ return { [1]="fire_damage_+%_per_missing_fire_resistance" } }, - [6592]={ + [6679]={ [1]={ [1]={ [1]={ @@ -151867,7 +153976,7 @@ return { [1]="fire_damage_+%_vs_bleeding_enemies" } }, - [6593]={ + [6680]={ [1]={ [1]={ limit={ @@ -151896,7 +154005,7 @@ return { [1]="fire_damage_+%_while_affected_by_anger" } }, - [6594]={ + [6681]={ [1]={ [1]={ limit={ @@ -151925,7 +154034,7 @@ return { [1]="fire_damage_+%_while_affected_by_herald_of_ash" } }, - [6595]={ + [6682]={ [1]={ [1]={ limit={ @@ -151941,7 +154050,7 @@ return { [1]="fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [6596]={ + [6683]={ [1]={ [1]={ [1]={ @@ -151961,7 +154070,7 @@ return { [1]="fire_damage_taken_goes_to_life_over_4_seconds_%" } }, - [6597]={ + [6684]={ [1]={ [1]={ limit={ @@ -151977,7 +154086,7 @@ return { [1]="fire_damage_taken_per_second_while_flame_touched" } }, - [6598]={ + [6685]={ [1]={ [1]={ limit={ @@ -152006,7 +154115,7 @@ return { [1]="fire_damage_taken_+%_while_moving" } }, - [6599]={ + [6686]={ [1]={ [1]={ limit={ @@ -152022,7 +154131,7 @@ return { [1]="fire_damage_taken_when_enemy_ignited" } }, - [6600]={ + [6687]={ [1]={ [1]={ limit={ @@ -152038,7 +154147,7 @@ return { [1]="fire_damage_to_return_on_block" } }, - [6601]={ + [6688]={ [1]={ [1]={ limit={ @@ -152067,7 +154176,7 @@ return { [1]="fire_damage_with_attack_skills_+%" } }, - [6602]={ + [6689]={ [1]={ [1]={ limit={ @@ -152096,7 +154205,7 @@ return { [1]="fire_damage_with_spell_skills_+%" } }, - [6603]={ + [6690]={ [1]={ [1]={ limit={ @@ -152112,7 +154221,7 @@ return { [1]="fire_dot_multiplier_+_per_rage" } }, - [6604]={ + [6691]={ [1]={ [1]={ [1]={ @@ -152132,7 +154241,7 @@ return { [1]="fire_exposure_on_hit_magnitude" } }, - [6605]={ + [6692]={ [1]={ [1]={ [1]={ @@ -152152,7 +154261,7 @@ return { [1]="fire_exposure_on_hit_magnitude_vs_max_stacks_resentment_debuff" } }, - [6606]={ + [6693]={ [1]={ [1]={ limit={ @@ -152168,7 +154277,7 @@ return { [1]="fire_exposure_you_inflict_applies_extra_fire_resistance_+%" } }, - [6607]={ + [6694]={ [1]={ [1]={ limit={ @@ -152184,7 +154293,7 @@ return { [1]="fire_hit_and_dot_damage_%_taken_as_lightning" } }, - [6608]={ + [6695]={ [1]={ [1]={ limit={ @@ -152200,7 +154309,7 @@ return { [1]="fire_penetration_%_if_you_have_blocked_recently" } }, - [6609]={ + [6696]={ [1]={ [1]={ limit={ @@ -152216,7 +154325,7 @@ return { [1]="fire_resistance_cannot_be_penetrated" } }, - [6610]={ + [6697]={ [1]={ [1]={ [1]={ @@ -152236,7 +154345,7 @@ return { [1]="fire_skill_chance_to_inflict_fire_exposure_%" } }, - [6611]={ + [6698]={ [1]={ [1]={ limit={ @@ -152252,7 +154361,7 @@ return { [1]="fire_skill_gem_level_+" } }, - [6612]={ + [6699]={ [1]={ [1]={ [1]={ @@ -152272,7 +154381,7 @@ return { [1]="fire_skills_chance_to_poison_on_hit_%" } }, - [6613]={ + [6700]={ [1]={ [1]={ limit={ @@ -152288,7 +154397,7 @@ return { [1]="fire_spell_physical_damage_%_to_convert_to_fire" } }, - [6614]={ + [6701]={ [1]={ [1]={ limit={ @@ -152317,7 +154426,7 @@ return { [1]="fire_trap_burning_ground_duration_+%" } }, - [6615]={ + [6702]={ [1]={ [1]={ limit={ @@ -152342,7 +154451,7 @@ return { [1]="fire_trap_number_of_additional_traps_to_throw" } }, - [6616]={ + [6703]={ [1]={ [1]={ limit={ @@ -152371,7 +154480,7 @@ return { [1]="fireball_and_rolling_magma_active_skill_area_of_effect_+%_final" } }, - [6617]={ + [6704]={ [1]={ [1]={ limit={ @@ -152387,7 +154496,7 @@ return { [1]="fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply" } }, - [6618]={ + [6705]={ [1]={ [1]={ limit={ @@ -152403,7 +154512,7 @@ return { [1]="fireball_cannot_ignite" } }, - [6619]={ + [6706]={ [1]={ [1]={ [1]={ @@ -152423,7 +154532,7 @@ return { [1]="fireball_chance_to_scorch_%" } }, - [6620]={ + [6707]={ [1]={ [1]={ limit={ @@ -152439,7 +154548,7 @@ return { [1]="firestorm_and_bladefall_chance_to_replay_when_finished_%" } }, - [6621]={ + [6708]={ [1]={ [1]={ limit={ @@ -152464,7 +154573,7 @@ return { [1]="first_X_stacks_of_tincture_toxicity_have_no_effect" } }, - [6622]={ + [6709]={ [1]={ [1]={ limit={ @@ -152480,7 +154589,32 @@ return { [1]="first_and_final_barrage_projectiles_return" } }, - [6623]={ + [6710]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Rarity of Fish Caught per held Dead Fish" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Rarity of Fish Caught per held Dead Fish" + } + }, + stats={ + [1]="fish_rarity_+%_per_dead_fish" + } + }, + [6711]={ [1]={ [1]={ limit={ @@ -152496,7 +154630,23 @@ return { [1]="fish_rot_when_caught" } }, - [6624]={ + [6712]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Can catch Abyssal Fish" + } + }, + stats={ + [1]="fishing_abyssal_fish" + } + }, + [6713]={ [1]={ [1]={ limit={ @@ -152512,7 +154662,7 @@ return { [1]="fishing_bestiary_lures_at_fishing_holes" } }, - [6625]={ + [6714]={ [1]={ [1]={ limit={ @@ -152528,7 +154678,7 @@ return { [1]="fishing_can_catch_divine_fish" } }, - [6626]={ + [6715]={ [1]={ [1]={ limit={ @@ -152557,7 +154707,7 @@ return { [1]="fishing_chance_to_catch_boots_+%" } }, - [6627]={ + [6716]={ [1]={ [1]={ limit={ @@ -152586,7 +154736,7 @@ return { [1]="fishing_chance_to_catch_divine_orb_+%" } }, - [6628]={ + [6717]={ [1]={ [1]={ limit={ @@ -152611,7 +154761,7 @@ return { [1]="fishing_corrupted_fish_cleansed_chance_%" } }, - [6629]={ + [6718]={ [1]={ [1]={ limit={ @@ -152627,7 +154777,7 @@ return { [1]="fishing_fish_always_tell_truth_with_this_rod" } }, - [6630]={ + [6719]={ [1]={ [1]={ limit={ @@ -152643,7 +154793,7 @@ return { [1]="fishing_ghastly_fisherman_cannot_spawn" } }, - [6631]={ + [6720]={ [1]={ [1]={ limit={ @@ -152659,7 +154809,7 @@ return { [1]="fishing_ghastly_fisherman_spawns_behind_you" } }, - [6632]={ + [6721]={ [1]={ [1]={ limit={ @@ -152688,7 +154838,7 @@ return { [1]="fishing_krillson_affection_per_fish_gifted_+%" } }, - [6633]={ + [6722]={ [1]={ [1]={ limit={ @@ -152717,7 +154867,7 @@ return { [1]="fishing_life_of_fish_with_this_rod_+%" } }, - [6634]={ + [6723]={ [1]={ [1]={ limit={ @@ -152733,7 +154883,7 @@ return { [1]="fishing_magmatic_fish_are_cooked" } }, - [6635]={ + [6724]={ [1]={ [1]={ limit={ @@ -152762,7 +154912,7 @@ return { [1]="fishing_molten_one_confusion_+%_per_fish_gifted" } }, - [6636]={ + [6725]={ [1]={ [1]={ limit={ @@ -152791,7 +154941,7 @@ return { [1]="fishing_reeling_stability_+%" } }, - [6637]={ + [6726]={ [1]={ [1]={ limit={ @@ -152820,7 +154970,7 @@ return { [1]="fishing_tasalio_ire_per_fish_caught_+%" } }, - [6638]={ + [6727]={ [1]={ [1]={ limit={ @@ -152849,7 +154999,7 @@ return { [1]="fishing_valako_aid_per_stormy_day_+%" } }, - [6639]={ + [6728]={ [1]={ [1]={ limit={ @@ -152878,7 +155028,7 @@ return { [1]="fishing_wish_effect_of_ancient_fish_+%" } }, - [6640]={ + [6729]={ [1]={ [1]={ limit={ @@ -152894,7 +155044,7 @@ return { [1]="fishing_wish_per_fish_+" } }, - [6641]={ + [6730]={ [1]={ [1]={ limit={ @@ -152923,7 +155073,7 @@ return { [1]="flame_link_duration_+%" } }, - [6642]={ + [6731]={ [1]={ [1]={ limit={ @@ -152952,7 +155102,7 @@ return { [1]="flame_totem_consecrated_ground_enemy_damage_taken_+%" } }, - [6643]={ + [6732]={ [1]={ [1]={ limit={ @@ -152981,7 +155131,7 @@ return { [1]="flame_wall_damage_+%" } }, - [6644]={ + [6733]={ [1]={ [1]={ limit={ @@ -153002,7 +155152,7 @@ return { [2]="flame_wall_maximum_added_fire_damage" } }, - [6645]={ + [6734]={ [1]={ [1]={ [1]={ @@ -153035,7 +155185,7 @@ return { [1]="flameblast_and_incinerate_base_cooldown_modifier_ms" } }, - [6646]={ + [6735]={ [1]={ [1]={ [1]={ @@ -153055,7 +155205,7 @@ return { [1]="flameblast_and_incinerate_cannot_inflict_status_ailments" } }, - [6647]={ + [6736]={ [1]={ [1]={ limit={ @@ -153071,7 +155221,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [6648]={ + [6737]={ [1]={ [1]={ limit={ @@ -153100,7 +155250,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%" } }, - [6649]={ + [6738]={ [1]={ [1]={ limit={ @@ -153143,7 +155293,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count" } }, - [6650]={ + [6739]={ [1]={ [1]={ limit={ @@ -153172,7 +155322,7 @@ return { [1]="flamethrower_tower_trap_cast_speed_+%" } }, - [6651]={ + [6740]={ [1]={ [1]={ limit={ @@ -153201,7 +155351,7 @@ return { [1]="flamethrower_tower_trap_cooldown_speed_+%" } }, - [6652]={ + [6741]={ [1]={ [1]={ limit={ @@ -153230,7 +155380,7 @@ return { [1]="flamethrower_tower_trap_damage_+%" } }, - [6653]={ + [6742]={ [1]={ [1]={ limit={ @@ -153259,7 +155409,7 @@ return { [1]="flamethrower_tower_trap_duration_+%" } }, - [6654]={ + [6743]={ [1]={ [1]={ limit={ @@ -153284,7 +155434,7 @@ return { [1]="flamethrower_tower_trap_number_of_additional_flamethrowers" } }, - [6655]={ + [6744]={ [1]={ [1]={ limit={ @@ -153313,7 +155463,7 @@ return { [1]="flamethrower_tower_trap_throwing_speed_+%" } }, - [6656]={ + [6745]={ [1]={ [1]={ limit={ @@ -153342,7 +155492,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [6657]={ + [6746]={ [1]={ [1]={ limit={ @@ -153358,7 +155508,7 @@ return { [1]="flammability_no_reservation" } }, - [6658]={ + [6747]={ [1]={ [1]={ [1]={ @@ -153395,7 +155545,7 @@ return { [1]="flask_charges_gained_+%_if_crit_recently" } }, - [6659]={ + [6748]={ [1]={ [1]={ limit={ @@ -153424,7 +155574,7 @@ return { [1]="flask_charges_gained_from_kills_+%_final_from_unique" } }, - [6660]={ + [6749]={ [1]={ [1]={ limit={ @@ -153453,7 +155603,7 @@ return { [1]="flask_charges_gained_from_marked_enemy_+%" } }, - [6661]={ + [6750]={ [1]={ [1]={ limit={ @@ -153482,7 +155632,7 @@ return { [1]="flask_charges_gained_+%_per_tincture_toxicity" } }, - [6662]={ + [6751]={ [1]={ [1]={ limit={ @@ -153511,7 +155661,7 @@ return { [1]="flask_duration_+%_per_level" } }, - [6663]={ + [6752]={ [1]={ [1]={ limit={ @@ -153540,7 +155690,7 @@ return { [1]="flask_effect_+%_per_level" } }, - [6664]={ + [6753]={ [1]={ [1]={ limit={ @@ -153569,7 +155719,7 @@ return { [1]="flask_life_and_mana_to_recover_+%" } }, - [6665]={ + [6754]={ [1]={ [1]={ limit={ @@ -153598,7 +155748,7 @@ return { [1]="flask_life_recovery_+%_while_affected_by_vitality" } }, - [6666]={ + [6755]={ [1]={ [1]={ limit={ @@ -153614,7 +155764,7 @@ return { [1]="flask_recovery_is_instant" } }, - [6667]={ + [6756]={ [1]={ [1]={ limit={ @@ -153630,7 +155780,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [6668]={ + [6757]={ [1]={ [1]={ limit={ @@ -153655,7 +155805,7 @@ return { [1]="flasks_adjacent_to_active_tinctures_gain_X_charges_on_weapon_hit" } }, - [6669]={ + [6758]={ [1]={ [1]={ [1]={ @@ -153692,7 +155842,7 @@ return { [1]="flasks_adjacent_to_active_tinctures_have_effect_+%_if_hit_with_weapon_recently" } }, - [6670]={ + [6759]={ [1]={ [1]={ limit={ @@ -153708,7 +155858,7 @@ return { [1]="flasks_apply_to_your_linked_targets" } }, - [6671]={ + [6760]={ [1]={ [1]={ limit={ @@ -153724,7 +155874,7 @@ return { [1]="flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique" } }, - [6672]={ + [6761]={ [1]={ [1]={ limit={ @@ -153740,7 +155890,7 @@ return { [1]="flasks_gain_x_charges_while_inactive_every_3_seconds" } }, - [6673]={ + [6762]={ [1]={ [1]={ limit={ @@ -153769,7 +155919,7 @@ return { [1]="flesh_and_stone_area_of_effect_+%" } }, - [6674]={ + [6763]={ [1]={ [1]={ [1]={ @@ -153806,7 +155956,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_-2%_per_1" } }, - [6675]={ + [6764]={ [1]={ [1]={ limit={ @@ -153835,7 +155985,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_+%" } }, - [6676]={ + [6765]={ [1]={ [1]={ limit={ @@ -153851,7 +156001,7 @@ return { [1]="flesh_stone_no_reservation" } }, - [6677]={ + [6766]={ [1]={ [1]={ limit={ @@ -153867,7 +156017,7 @@ return { [1]="focus_cooldown_modifier_ms" } }, - [6678]={ + [6767]={ [1]={ [1]={ limit={ @@ -153896,7 +156046,7 @@ return { [1]="focus_cooldown_speed_+%" } }, - [6679]={ + [6768]={ [1]={ [1]={ limit={ @@ -153905,14 +156055,14 @@ return { [2]="#" } }, - text="Forbidden Rite and Dark Pact gains Added Chaos Damage equal to {0}% of Mana Cost, if Mana Cost is not higher than the maximum you could spend" + text="Forbidden Rite and Dark Bargain gains Added Chaos Damage equal to {0}% of Mana Cost, if Mana Cost is not higher than the maximum you could spend" } }, stats={ [1]="forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable" } }, - [6680]={ + [6769]={ [1]={ [1]={ limit={ @@ -153941,7 +156091,7 @@ return { [1]="forbidden_rite_damage_+%" } }, - [6681]={ + [6770]={ [1]={ [1]={ limit={ @@ -153966,7 +156116,7 @@ return { [1]="forbidden_rite_number_of_additional_projectiles" } }, - [6682]={ + [6771]={ [1]={ [1]={ limit={ @@ -153995,7 +156145,7 @@ return { [1]="forbidden_rite_projectile_speed_+%" } }, - [6683]={ + [6772]={ [1]={ [1]={ limit={ @@ -154024,7 +156174,7 @@ return { [1]="forking_angle_+%" } }, - [6684]={ + [6773]={ [1]={ [1]={ [1]={ @@ -154061,7 +156211,7 @@ return { [1]="fortification_gained_from_hits_+%" } }, - [6685]={ + [6774]={ [1]={ [1]={ [1]={ @@ -154098,7 +156248,7 @@ return { [1]="fortification_gained_from_hits_+%_against_unique_enemies" } }, - [6686]={ + [6775]={ [1]={ [1]={ limit={ @@ -154127,7 +156277,7 @@ return { [1]="fortify_duration_+%_per_10_strength" } }, - [6687]={ + [6776]={ [1]={ [1]={ limit={ @@ -154143,7 +156293,7 @@ return { [1]="fortify_on_hit" } }, - [6688]={ + [6777]={ [1]={ [1]={ limit={ @@ -154159,7 +156309,7 @@ return { [1]="four_seconds_after_being_hit_lose_life_equal_to_x%_of_hit" } }, - [6689]={ + [6778]={ [1]={ [1]={ limit={ @@ -154188,7 +156338,7 @@ return { [1]="freeze_chilled_enemies_as_though_dealt_damage_+%" } }, - [6690]={ + [6779]={ [1]={ [1]={ limit={ @@ -154217,7 +156367,7 @@ return { [1]="freeze_duration_against_cursed_enemies_+%" } }, - [6691]={ + [6780]={ [1]={ [1]={ [1]={ @@ -154254,7 +156404,7 @@ return { [1]="freeze_minimum_duration_X_ms" } }, - [6692]={ + [6781]={ [1]={ [1]={ [1]={ @@ -154274,7 +156424,7 @@ return { [1]="freezing_pulse_and_eye_of_winter_all_damage_can_poison" } }, - [6693]={ + [6782]={ [1]={ [1]={ [1]={ @@ -154294,7 +156444,7 @@ return { [1]="freezing_pulse_and_eye_of_winter_poison_damage_+100%_final_chance" } }, - [6694]={ + [6783]={ [1]={ [1]={ [1]={ @@ -154331,7 +156481,7 @@ return { [1]="freezing_pulse_damage_+%_if_enemy_shattered_recently" } }, - [6695]={ + [6784]={ [1]={ [1]={ limit={ @@ -154356,7 +156506,7 @@ return { [1]="freezing_pulse_number_of_additional_projectiles" } }, - [6696]={ + [6785]={ [1]={ [1]={ [1]={ @@ -154376,7 +156526,7 @@ return { [1]="frenzy_and_power_charge_add_duration_ms_on_cull" } }, - [6697]={ + [6786]={ [1]={ [1]={ limit={ @@ -154392,7 +156542,7 @@ return { [1]="frenzy_charge_on_hit_%_vs_no_evasion_rating" } }, - [6698]={ + [6787]={ [1]={ [1]={ limit={ @@ -154408,7 +156558,7 @@ return { [1]="frenzy_charge_on_kill_percent_chance_while_holding_shield" } }, - [6699]={ + [6788]={ [1]={ [1]={ limit={ @@ -154424,7 +156574,7 @@ return { [1]="frost_blades_melee_damage_penetrates_%_cold_resistance" } }, - [6700]={ + [6789]={ [1]={ [1]={ limit={ @@ -154453,7 +156603,7 @@ return { [1]="frost_bolt_nova_cooldown_speed_+%" } }, - [6701]={ + [6790]={ [1]={ [1]={ limit={ @@ -154482,7 +156632,7 @@ return { [1]="frost_bomb_buff_duration_+%" } }, - [6702]={ + [6791]={ [1]={ [1]={ limit={ @@ -154498,7 +156648,7 @@ return { [1]="frost_bomb_+%_area_of_effect_when_frost_blink_is_cast" } }, - [6703]={ + [6792]={ [1]={ [1]={ limit={ @@ -154514,7 +156664,7 @@ return { [1]="frost_fury_additional_max_number_of_stages" } }, - [6704]={ + [6793]={ [1]={ [1]={ limit={ @@ -154543,7 +156693,7 @@ return { [1]="frost_fury_area_of_effect_+%_per_stage" } }, - [6705]={ + [6794]={ [1]={ [1]={ limit={ @@ -154572,7 +156722,7 @@ return { [1]="frost_fury_damage_+%" } }, - [6706]={ + [6795]={ [1]={ [1]={ limit={ @@ -154597,7 +156747,7 @@ return { [1]="frost_globe_added_cooldown_count" } }, - [6707]={ + [6796]={ [1]={ [1]={ limit={ @@ -154613,7 +156763,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [6708]={ + [6797]={ [1]={ [1]={ limit={ @@ -154629,7 +156779,7 @@ return { [1]="frostbite_no_reservation" } }, - [6709]={ + [6798]={ [1]={ [1]={ limit={ @@ -154645,7 +156795,7 @@ return { [1]="frostbolt_number_of_additional_projectiles" } }, - [6710]={ + [6799]={ [1]={ [1]={ limit={ @@ -154674,7 +156824,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [6711]={ + [6800]={ [1]={ [1]={ limit={ @@ -154699,7 +156849,7 @@ return { [1]="frozen_legion_added_cooldown_count" } }, - [6712]={ + [6801]={ [1]={ [1]={ limit={ @@ -154728,7 +156878,7 @@ return { [1]="frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat" } }, - [6713]={ + [6802]={ [1]={ [1]={ limit={ @@ -154757,7 +156907,7 @@ return { [1]="frozen_legion_cooldown_speed_+%" } }, - [6714]={ + [6803]={ [1]={ [1]={ limit={ @@ -154773,7 +156923,7 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [6715]={ + [6804]={ [1]={ [1]={ limit={ @@ -154789,7 +156939,7 @@ return { [1]="frozen_monsters_take_%_increased_damage" } }, - [6716]={ + [6805]={ [1]={ [1]={ limit={ @@ -154818,7 +156968,7 @@ return { [1]="frozen_sweep_damage_+%" } }, - [6717]={ + [6806]={ [1]={ [1]={ limit={ @@ -154847,7 +156997,7 @@ return { [1]="frozen_sweep_damage_+%_final" } }, - [6718]={ + [6807]={ [1]={ [1]={ limit={ @@ -154863,7 +157013,7 @@ return { [1]="full_life_threshold_%_override" } }, - [6719]={ + [6808]={ [1]={ [1]={ [1]={ @@ -154883,7 +157033,7 @@ return { [1]="fungal_ground_while_stationary_radius" } }, - [6720]={ + [6809]={ [1]={ [1]={ limit={ @@ -154899,7 +157049,7 @@ return { [1]="gain_%_of_two_hand_weapon_physical_damage_as_added_spell_damage" } }, - [6721]={ + [6810]={ [1]={ [1]={ limit={ @@ -154915,7 +157065,7 @@ return { [1]="gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance" } }, - [6722]={ + [6811]={ [1]={ [1]={ limit={ @@ -154940,7 +157090,23 @@ return { [1]="gain_1_rare_monster_mods_on_kill_for_20_seconds_%" } }, - [6723]={ + [6812]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour per 100 Reserved Mana" + } + }, + stats={ + [1]="gain_X%_armour_per_100_mana_reserved" + } + }, + [6813]={ [1]={ [1]={ limit={ @@ -154956,7 +157122,7 @@ return { [1]="gain_X%_armour_per_50_mana_reserved" } }, - [6724]={ + [6814]={ [1]={ [1]={ limit={ @@ -155003,7 +157169,7 @@ return { [1]="gain_X_endurance_charges_per_second" } }, - [6725]={ + [6815]={ [1]={ [1]={ [1]={ @@ -155023,7 +157189,7 @@ return { [1]="gain_X_fortification_on_killing_rare_or_unique_monster" } }, - [6726]={ + [6816]={ [1]={ [1]={ limit={ @@ -155048,7 +157214,7 @@ return { [1]="gain_X_frenzy_charges_after_spending_200_mana" } }, - [6727]={ + [6817]={ [1]={ [1]={ limit={ @@ -155095,7 +157261,7 @@ return { [1]="gain_X_frenzy_charges_per_second" } }, - [6728]={ + [6818]={ [1]={ [1]={ limit={ @@ -155111,7 +157277,7 @@ return { [1]="gain_X_life_on_stun" } }, - [6729]={ + [6819]={ [1]={ [1]={ limit={ @@ -155127,7 +157293,7 @@ return { [1]="gain_X_power_charges_on_using_a_warcry" } }, - [6730]={ + [6820]={ [1]={ [1]={ limit={ @@ -155174,7 +157340,7 @@ return { [1]="gain_X_power_charges_per_second" } }, - [6731]={ + [6821]={ [1]={ [1]={ limit={ @@ -155199,7 +157365,7 @@ return { [1]="gain_X_random_charges_every_6_seconds" } }, - [6732]={ + [6822]={ [1]={ [1]={ limit={ @@ -155224,7 +157390,7 @@ return { [1]="gain_a_endurance_charge_every_X_seconds_while_stationary" } }, - [6733]={ + [6823]={ [1]={ [1]={ limit={ @@ -155249,7 +157415,7 @@ return { [1]="gain_a_frenzy_charge_every_X_seconds_while_moving" } }, - [6734]={ + [6824]={ [1]={ [1]={ [1]={ @@ -155273,7 +157439,7 @@ return { [1]="gain_absorption_charges_instead_of_power_charges" } }, - [6735]={ + [6825]={ [1]={ [1]={ limit={ @@ -155289,7 +157455,7 @@ return { [1]="gain_accuracy_rating_equal_to_2_times_strength" } }, - [6736]={ + [6826]={ [1]={ [1]={ limit={ @@ -155305,7 +157471,7 @@ return { [1]="gain_accuracy_rating_equal_to_intelligence" } }, - [6737]={ + [6827]={ [1]={ [1]={ limit={ @@ -155321,7 +157487,7 @@ return { [1]="gain_accuracy_rating_equal_to_strength" } }, - [6738]={ + [6828]={ [1]={ [1]={ [1]={ @@ -155362,7 +157528,7 @@ return { [1]="gain_adrenaline_for_X_ms_on_swapping_stance" } }, - [6739]={ + [6829]={ [1]={ [1]={ [1]={ @@ -155395,7 +157561,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_kill" } }, - [6740]={ + [6830]={ [1]={ [1]={ [1]={ @@ -155415,7 +157581,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline" } }, - [6741]={ + [6831]={ [1]={ [1]={ [1]={ @@ -155439,7 +157605,7 @@ return { [1]="gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you" } }, - [6742]={ + [6832]={ [1]={ [1]={ [1]={ @@ -155459,7 +157625,7 @@ return { [1]="gain_adrenaline_on_gaining_flame_touched" } }, - [6743]={ + [6833]={ [1]={ [1]={ [1]={ @@ -155500,7 +157666,7 @@ return { [1]="gain_adrenaline_when_ward_breaks_ms" } }, - [6744]={ + [6834]={ [1]={ [1]={ [1]={ @@ -155520,7 +157686,7 @@ return { [1]="gain_affliction_charges_instead_of_frenzy_charges" } }, - [6745]={ + [6835]={ [1]={ [1]={ [1]={ @@ -155553,7 +157719,7 @@ return { [1]="gain_alchemists_genius_on_flask_use_%" } }, - [6746]={ + [6836]={ [1]={ [1]={ [1]={ @@ -155573,7 +157739,7 @@ return { [1]="gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently" } }, - [6747]={ + [6837]={ [1]={ [1]={ [1]={ @@ -155593,7 +157759,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_after_channelling_for_1_second" } }, - [6748]={ + [6838]={ [1]={ [1]={ [1]={ @@ -155613,7 +157779,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry" } }, - [6749]={ + [6839]={ [1]={ [1]={ [1]={ @@ -155633,7 +157799,7 @@ return { [1]="gain_arcane_surge_on_200_life_spent" } }, - [6750]={ + [6840]={ [1]={ [1]={ [1]={ @@ -155666,7 +157832,7 @@ return { [1]="gain_arcane_surge_on_crit_%_chance" } }, - [6751]={ + [6841]={ [1]={ [1]={ [1]={ @@ -155686,7 +157852,7 @@ return { [1]="gain_arcane_surge_on_hit_at_devotion_threshold" } }, - [6752]={ + [6842]={ [1]={ [1]={ [1]={ @@ -155719,7 +157885,7 @@ return { [1]="gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%" } }, - [6753]={ + [6843]={ [1]={ [1]={ [1]={ @@ -155752,7 +157918,7 @@ return { [1]="gain_arcane_surge_on_hit_%_chance" } }, - [6754]={ + [6844]={ [1]={ [1]={ [1]={ @@ -155772,7 +157938,7 @@ return { [1]="gain_arcane_surge_on_hit_vs_unique_enemy_%_chance" } }, - [6755]={ + [6845]={ [1]={ [1]={ [1]={ @@ -155805,7 +157971,7 @@ return { [1]="gain_arcane_surge_on_kill_chance_%" } }, - [6756]={ + [6846]={ [1]={ [1]={ [1]={ @@ -155825,7 +157991,7 @@ return { [1]="gain_arcane_surge_on_spell_hit_by_you_or_your_totems" } }, - [6757]={ + [6847]={ [1]={ [1]={ [1]={ @@ -155845,7 +158011,7 @@ return { [1]="gain_arcane_surge_when_mine_detonated_targeting_an_enemy" } }, - [6758]={ + [6848]={ [1]={ [1]={ [1]={ @@ -155865,7 +158031,7 @@ return { [1]="gain_arcane_surge_when_trap_triggered_by_an_enemy" } }, - [6759]={ + [6849]={ [1]={ [1]={ [1]={ @@ -155885,7 +158051,7 @@ return { [1]="gain_arcane_surge_when_you_summon_a_totem" } }, - [6760]={ + [6850]={ [1]={ [1]={ limit={ @@ -155901,7 +158067,7 @@ return { [1]="gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana" } }, - [6761]={ + [6851]={ [1]={ [1]={ limit={ @@ -155917,7 +158083,7 @@ return { [1]="gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy" } }, - [6762]={ + [6852]={ [1]={ [1]={ [1]={ @@ -155950,7 +158116,36 @@ return { [1]="gain_blitz_charge_%_chance_on_crit" } }, - [6763]={ + [6853]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Gain a random Blood Shrine buff every 1 second" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain a random Blood Shrine buff every {0} seconds" + } + }, + stats={ + [1]="gain_blood_shrine_buff_every_x_ms_from_unique" + } + }, + [6854]={ [1]={ [1]={ [1]={ @@ -155970,7 +158165,7 @@ return { [1]="gain_brutal_charges_instead_of_endurance_charges" } }, - [6764]={ + [6855]={ [1]={ [1]={ limit={ @@ -155986,7 +158181,7 @@ return { [1]="gain_celestial_charge_per_X_spent_es" } }, - [6765]={ + [6856]={ [1]={ [1]={ [1]={ @@ -156019,7 +158214,7 @@ return { [1]="gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance" } }, - [6766]={ + [6857]={ [1]={ [1]={ limit={ @@ -156044,7 +158239,7 @@ return { [1]="gain_challenger_charge_%_chance_on_kill_in_sand_stance" } }, - [6767]={ + [6858]={ [1]={ [1]={ [1]={ @@ -156085,7 +158280,7 @@ return { [1]="gain_20%_chance_to_explode_enemies_for_100%_life_on_kill_for_X_seconds_every_10_seconds" } }, - [6768]={ + [6859]={ [1]={ [1]={ [1]={ @@ -156105,7 +158300,7 @@ return { [1]="gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana" } }, - [6769]={ + [6860]={ [1]={ [1]={ [1]={ @@ -156125,7 +158320,7 @@ return { [1]="gain_elusive_on_reaching_low_life" } }, - [6770]={ + [6861]={ [1]={ [1]={ limit={ @@ -156141,7 +158336,7 @@ return { [1]="gain_endurance_charge_if_attack_freezes" } }, - [6771]={ + [6862]={ [1]={ [1]={ [1]={ @@ -156174,7 +158369,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_been_hit_recently" } }, - [6772]={ + [6863]={ [1]={ [1]={ [1]={ @@ -156207,7 +158402,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_used_warcry_recently" } }, - [6773]={ + [6864]={ [1]={ [1]={ limit={ @@ -156232,7 +158427,7 @@ return { [1]="gain_endurance_charge_%_chance_when_you_lose_fortify" } }, - [6774]={ + [6865]={ [1]={ [1]={ limit={ @@ -156248,7 +158443,7 @@ return { [1]="gain_endurance_charge_%_when_hit_while_channelling" } }, - [6775]={ + [6866]={ [1]={ [1]={ [1]={ @@ -156261,14 +158456,14 @@ return { [2]="#" } }, - text="Gain Fanaticism for 4 seconds on reaching Maximum Fanatic Charges" + text="Gain Fanaticism for 5 seconds on reaching Maximum Fanatic Charges" } }, stats={ [1]="gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges" } }, - [6776]={ + [6867]={ [1]={ [1]={ limit={ @@ -156293,7 +158488,7 @@ return { [1]="gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges" } }, - [6777]={ + [6868]={ [1]={ [1]={ [1]={ @@ -156326,7 +158521,7 @@ return { [1]="gain_flask_charges_every_second_if_hit_unique_enemy_recently" } }, - [6778]={ + [6869]={ [1]={ [1]={ [1]={ @@ -156346,7 +158541,7 @@ return { [1]="gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff" } }, - [6779]={ + [6870]={ [1]={ [1]={ [1]={ @@ -156366,7 +158561,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_at_close_range_%" } }, - [6780]={ + [6871]={ [1]={ [1]={ limit={ @@ -156391,7 +158586,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_%" } }, - [6781]={ + [6872]={ [1]={ [1]={ limit={ @@ -156407,7 +158602,7 @@ return { [1]="gain_frenzy_charge_on_enemy_shattered_chance_%" } }, - [6782]={ + [6873]={ [1]={ [1]={ limit={ @@ -156423,7 +158618,7 @@ return { [1]="gain_frenzy_charge_on_hit_%_while_blinded" } }, - [6783]={ + [6874]={ [1]={ [1]={ limit={ @@ -156439,7 +158634,7 @@ return { [1]="gain_frenzy_charge_on_hit_while_bleeding" } }, - [6784]={ + [6875]={ [1]={ [1]={ limit={ @@ -156455,7 +158650,7 @@ return { [1]="gain_frenzy_charge_on_hitting_marked_enemy_%" } }, - [6785]={ + [6876]={ [1]={ [1]={ limit={ @@ -156471,7 +158666,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [6786]={ + [6877]={ [1]={ [1]={ limit={ @@ -156496,7 +158691,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [6787]={ + [6878]={ [1]={ [1]={ limit={ @@ -156512,7 +158707,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [6788]={ + [6879]={ [1]={ [1]={ limit={ @@ -156537,7 +158732,7 @@ return { [1]="gain_frenzy_charge_per_enemy_you_crit_%_chance" } }, - [6789]={ + [6880]={ [1]={ [1]={ limit={ @@ -156553,7 +158748,7 @@ return { [1]="gain_frenzy_charge_%_when_hit_while_channelling" } }, - [6790]={ + [6881]={ [1]={ [1]={ limit={ @@ -156569,7 +158764,7 @@ return { [1]="gain_frenzy_power_endurance_charges_on_vaal_skill_use" } }, - [6791]={ + [6882]={ [1]={ [1]={ [1]={ @@ -156593,7 +158788,7 @@ return { [1]="gain_her_embrace_for_x_ms_on_enemy_ignited" } }, - [6792]={ + [6883]={ [1]={ [1]={ limit={ @@ -156618,7 +158813,7 @@ return { [1]="gain_magic_monster_mods_on_kill_%_chance" } }, - [6793]={ + [6884]={ [1]={ [1]={ limit={ @@ -156634,7 +158829,7 @@ return { [1]="gain_max_rage_on_losing_temporal_chains_debuff" } }, - [6794]={ + [6885]={ [1]={ [1]={ [1]={ @@ -156654,13 +158849,13 @@ return { [1]="gain_max_rage_on_rage_gain_from_hit_%_chance" } }, - [6795]={ + [6886]={ [1]={ [1]={ limit={ [1]={ [1]=100, - [2]=100 + [2]="#" } }, text="Gain up to maximum Endurance Charges when you take a Critical Strike" @@ -156668,8 +158863,8 @@ return { [2]={ limit={ [1]={ - [1]="#", - [2]="#" + [1]=1, + [2]=99 } }, text="{0}% Chance to gain up to maximum Endurance Charges when you take a Critical Strike" @@ -156679,7 +158874,7 @@ return { [1]="gain_maximum_endurance_charges_when_crit_chance_%" } }, - [6796]={ + [6887]={ [1]={ [1]={ limit={ @@ -156695,7 +158890,7 @@ return { [1]="gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility" } }, - [6797]={ + [6888]={ [1]={ [1]={ limit={ @@ -156711,7 +158906,7 @@ return { [1]="gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth" } }, - [6798]={ + [6889]={ [1]={ [1]={ limit={ @@ -156727,7 +158922,7 @@ return { [1]="gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance" } }, - [6799]={ + [6890]={ [1]={ [1]={ limit={ @@ -156743,7 +158938,23 @@ return { [1]="gain_maximum_life_instead_of_maximum_es_from_armour" } }, - [6800]={ + [6891]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items\nat {0}% of the value" + } + }, + stats={ + [1]="gain_maximum_life_instead_of_maximum_es_from_armour_at_x%_of_the_value" + } + }, + [6892]={ [1]={ [1]={ limit={ @@ -156759,7 +158970,7 @@ return { [1]="gain_maximum_power_charges_on_power_charge_gained_%_chance" } }, - [6801]={ + [6893]={ [1]={ [1]={ limit={ @@ -156775,7 +158986,7 @@ return { [1]="gain_maximum_power_charges_on_vaal_skill_use" } }, - [6802]={ + [6894]={ [1]={ [1]={ limit={ @@ -156791,7 +159002,7 @@ return { [1]="gain_movement_speed_+%_for_20_seconds_on_kill" } }, - [6803]={ + [6895]={ [1]={ [1]={ limit={ @@ -156807,7 +159018,7 @@ return { [1]="gain_no_inherent_evasion_rating_+%_from_dexterity" } }, - [6804]={ + [6896]={ [1]={ [1]={ limit={ @@ -156816,14 +159027,14 @@ return { [2]="#" } }, - text="[DNT] You have Onslaught during Effect of any Life Flask" + text="DNT You have Onslaught during Effect of any Life Flask" } }, stats={ [1]="gain_onslaught_during_life_flask_effect" } }, - [6805]={ + [6897]={ [1]={ [1]={ [1]={ @@ -156843,7 +159054,7 @@ return { [1]="gain_onslaught_during_soul_gain_prevention" } }, - [6806]={ + [6898]={ [1]={ [1]={ [1]={ @@ -156876,7 +159087,7 @@ return { [1]="gain_onslaught_for_3_seconds_%_chance_when_hit" } }, - [6807]={ + [6899]={ [1]={ [1]={ [1]={ @@ -156900,7 +159111,7 @@ return { [1]="gain_onslaught_if_you_have_swapped_stance_recently" } }, - [6808]={ + [6900]={ [1]={ [1]={ [1]={ @@ -156924,7 +159135,7 @@ return { [1]="gain_onslaught_ms_on_using_a_warcry" } }, - [6809]={ + [6901]={ [1]={ [1]={ [1]={ @@ -156944,7 +159155,7 @@ return { [1]="gain_onslaught_on_200_mana_spent" } }, - [6810]={ + [6902]={ [1]={ [1]={ [1]={ @@ -156977,7 +159188,7 @@ return { [1]="gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%" } }, - [6811]={ + [6903]={ [1]={ [1]={ [1]={ @@ -157001,7 +159212,7 @@ return { [1]="gain_onslaught_on_hit_duration_ms" } }, - [6812]={ + [6904]={ [1]={ [1]={ [1]={ @@ -157025,7 +159236,7 @@ return { [1]="gain_onslaught_on_kill_ms_while_affected_by_haste" } }, - [6813]={ + [6905]={ [1]={ [1]={ [1]={ @@ -157045,7 +159256,7 @@ return { [1]="gain_onslaught_while_at_maximum_endurance_charges" } }, - [6814]={ + [6906]={ [1]={ [1]={ [1]={ @@ -157065,7 +159276,7 @@ return { [1]="gain_onslaught_while_not_on_low_mana" } }, - [6815]={ + [6907]={ [1]={ [1]={ [1]={ @@ -157085,7 +159296,7 @@ return { [1]="gain_onslaught_while_on_low_life" } }, - [6816]={ + [6908]={ [1]={ [1]={ limit={ @@ -157101,7 +159312,7 @@ return { [1]="gain_onslaught_while_you_have_cats_agility" } }, - [6817]={ + [6909]={ [1]={ [1]={ [1]={ @@ -157121,7 +159332,7 @@ return { [1]="gain_onslaught_while_you_have_fortify" } }, - [6818]={ + [6910]={ [1]={ [1]={ limit={ @@ -157137,7 +159348,7 @@ return { [1]="gain_%_of_phys_as_extra_chaos_per_elder_item_equipped" } }, - [6819]={ + [6911]={ [1]={ [1]={ [1]={ @@ -157157,7 +159368,7 @@ return { [1]="gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec" } }, - [6820]={ + [6912]={ [1]={ [1]={ [1]={ @@ -157181,7 +159392,7 @@ return { [1]="gain_perfect_agony_if_you_have_crit_recently" } }, - [6821]={ + [6913]={ [1]={ [1]={ [1]={ @@ -157205,7 +159416,7 @@ return { [1]="gain_phasing_if_enemy_killed_recently" } }, - [6822]={ + [6914]={ [1]={ [1]={ [1]={ @@ -157225,7 +159436,7 @@ return { [1]="gain_phasing_if_suppressed_spell_recently" } }, - [6823]={ + [6915]={ [1]={ [1]={ [1]={ @@ -157245,7 +159456,7 @@ return { [1]="gain_phasing_while_affected_by_haste" } }, - [6824]={ + [6916]={ [1]={ [1]={ limit={ @@ -157261,7 +159472,7 @@ return { [1]="gain_phasing_while_you_have_cats_stealth" } }, - [6825]={ + [6917]={ [1]={ [1]={ [1]={ @@ -157281,7 +159492,7 @@ return { [1]="gain_phasing_while_you_have_low_life" } }, - [6826]={ + [6918]={ [1]={ [1]={ limit={ @@ -157297,7 +159508,7 @@ return { [1]="gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds" } }, - [6827]={ + [6919]={ [1]={ [1]={ limit={ @@ -157313,7 +159524,7 @@ return { [1]="gain_power_charge_for_each_second_channeling_spell" } }, - [6828]={ + [6920]={ [1]={ [1]={ limit={ @@ -157329,7 +159540,7 @@ return { [1]="gain_power_charge_on_critical_strike_with_wands_%" } }, - [6829]={ + [6921]={ [1]={ [1]={ limit={ @@ -157345,7 +159556,7 @@ return { [1]="gain_power_charge_on_curse_cast_%" } }, - [6830]={ + [6922]={ [1]={ [1]={ limit={ @@ -157370,7 +159581,7 @@ return { [1]="gain_power_charge_on_hit_%_chance_against_frozen_enemy" } }, - [6831]={ + [6923]={ [1]={ [1]={ limit={ @@ -157386,7 +159597,7 @@ return { [1]="gain_power_charge_on_hit_while_bleeding" } }, - [6832]={ + [6924]={ [1]={ [1]={ limit={ @@ -157402,7 +159613,7 @@ return { [1]="gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%" } }, - [6833]={ + [6925]={ [1]={ [1]={ limit={ @@ -157418,7 +159629,7 @@ return { [1]="gain_power_charge_on_mana_flask_use_%_chance" } }, - [6834]={ + [6926]={ [1]={ [1]={ limit={ @@ -157443,7 +159654,7 @@ return { [1]="gain_power_charge_on_vaal_skill_use_%" } }, - [6835]={ + [6927]={ [1]={ [1]={ limit={ @@ -157459,7 +159670,7 @@ return { [1]="gain_power_charge_per_second_if_have_not_lost_power_charge_recently" } }, - [6836]={ + [6928]={ [1]={ [1]={ limit={ @@ -157475,7 +159686,7 @@ return { [1]="gain_power_or_frenzy_charge_for_each_second_channeling" } }, - [6837]={ + [6929]={ [1]={ [1]={ limit={ @@ -157491,7 +159702,7 @@ return { [1]="gain_random_charge_on_block" } }, - [6838]={ + [6930]={ [1]={ [1]={ limit={ @@ -157507,7 +159718,7 @@ return { [1]="gain_random_charge_per_second_while_stationary" } }, - [6839]={ + [6931]={ [1]={ [1]={ limit={ @@ -157523,7 +159734,7 @@ return { [1]="gain_random_retaliation_requirement_on_retaliation_used_chance_%" } }, - [6840]={ + [6932]={ [1]={ [1]={ [1]={ @@ -157547,7 +159758,7 @@ return { [1]="gain_sacrificial_zeal_on_skill_use_%_cost_as_damage_per_minute" } }, - [6841]={ + [6933]={ [1]={ [1]={ limit={ @@ -157563,7 +159774,7 @@ return { [1]="gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal" } }, - [6842]={ + [6934]={ [1]={ [1]={ [1]={ @@ -157587,7 +159798,7 @@ return { [1]="gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster" } }, - [6843]={ + [6935]={ [1]={ [1]={ limit={ @@ -157616,7 +159827,7 @@ return { [1]="gain_shrine_buff_every_x_ms" } }, - [6844]={ + [6936]={ [1]={ [1]={ [1]={ @@ -157653,7 +159864,7 @@ return { [1]="gain_shrine_buff_every_x_ms_from_ascendancy" } }, - [6845]={ + [6937]={ [1]={ [1]={ [1]={ @@ -157673,7 +159884,7 @@ return { [1]="gain_shrine_buff_on_rare_or_unique_kill_centiseconds" } }, - [6846]={ + [6938]={ [1]={ [1]={ limit={ @@ -157707,7 +159918,7 @@ return { [1]="gain_single_conflux_for_3_seconds_every_8_seconds" } }, - [6847]={ + [6939]={ [1]={ [1]={ [1]={ @@ -157731,7 +159942,7 @@ return { [1]="gain_soul_eater_for_x_ms_on_vaal_skill_use" } }, - [6848]={ + [6940]={ [1]={ [1]={ [1]={ @@ -157772,7 +159983,7 @@ return { [1]="gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms" } }, - [6849]={ + [6941]={ [1]={ [1]={ [1]={ @@ -157785,14 +159996,14 @@ return { [2]="#" } }, - text="Spells cause you to gain Energy Shield equal to their Upfront\nCost every fifth time you Pay it" + text="Spells cause you to gain Energy Shield equal to their Upfront\nCost every third time you Pay it" } }, stats={ [1]="gain_spell_cost_as_energy_shield_every_fifth_cast" } }, - [6850]={ + [6942]={ [1]={ [1]={ [1]={ @@ -157812,7 +160023,36 @@ return { [1]="gain_spell_cost_as_mana_every_fifth_cast" } }, - [6851]={ + [6943]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Gain Spirit Infusion every second while Channelling a Spell" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain Spirit Infusion every {0} seconds while Channelling a Spell" + } + }, + stats={ + [1]="gain_spirit_infusion_every_x_ms_while_channelling_spells" + } + }, + [6944]={ [1]={ [1]={ limit={ @@ -157828,7 +160068,7 @@ return { [1]="gain_up_to_maximum_fragile_regrowth_when_hit" } }, - [6852]={ + [6945]={ [1]={ [1]={ [1]={ @@ -157852,7 +160092,7 @@ return { [1]="gain_vaal_pact_if_you_have_crit_recently" } }, - [6853]={ + [6946]={ [1]={ [1]={ [1]={ @@ -157872,7 +160112,7 @@ return { [1]="gain_vaal_pact_while_focused" } }, - [6854]={ + [6947]={ [1]={ [1]={ [1]={ @@ -157892,7 +160132,7 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [6855]={ + [6948]={ [1]={ [1]={ limit={ @@ -157908,7 +160148,7 @@ return { [1]="gain_wand_accuracy_rating_equal_to_intelligence" } }, - [6856]={ + [6949]={ [1]={ [1]={ limit={ @@ -157924,7 +160164,7 @@ return { [1]="gain_x_blood_phylactery_per_20_life_spent_on_upfront_cost_of_spells" } }, - [6857]={ + [6950]={ [1]={ [1]={ limit={ @@ -157949,7 +160189,7 @@ return { [1]="gain_x_endurance_charge_when_ward_breaks" } }, - [6858]={ + [6951]={ [1]={ [1]={ limit={ @@ -158000,7 +160240,7 @@ return { [1]="gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second" } }, - [6859]={ + [6952]={ [1]={ [1]={ limit={ @@ -158029,7 +160269,7 @@ return { [1]="gain_x_fragile_regrowth_per_second" } }, - [6860]={ + [6953]={ [1]={ [1]={ limit={ @@ -158054,7 +160294,7 @@ return { [1]="gain_x_frenzy_charge_when_ward_breaks" } }, - [6861]={ + [6954]={ [1]={ [1]={ limit={ @@ -158079,7 +160319,7 @@ return { [1]="gain_x_power_charge_when_ward_breaks" } }, - [6862]={ + [6955]={ [1]={ [1]={ [1]={ @@ -158103,7 +160343,7 @@ return { [1]="gain_x_rage_on_attack_crit" } }, - [6863]={ + [6956]={ [1]={ [1]={ [1]={ @@ -158127,7 +160367,7 @@ return { [1]="gain_x_rage_on_attack_hit" } }, - [6864]={ + [6957]={ [1]={ [1]={ [1]={ @@ -158151,7 +160391,7 @@ return { [1]="gain_x_rage_on_bow_hit" } }, - [6865]={ + [6958]={ [1]={ [1]={ [1]={ @@ -158175,7 +160415,7 @@ return { [1]="gain_x_rage_on_hit_with_axes" } }, - [6866]={ + [6959]={ [1]={ [1]={ [1]={ @@ -158199,7 +160439,7 @@ return { [1]="gain_x_rage_on_hit_with_axes_swords" } }, - [6867]={ + [6960]={ [1]={ [1]={ [1]={ @@ -158223,7 +160463,7 @@ return { [1]="gain_x_rage_on_hit_with_axes_swords_1s_cooldown" } }, - [6868]={ + [6961]={ [1]={ [1]={ [1]={ @@ -158247,7 +160487,7 @@ return { [1]="gain_x_rage_on_melee_crit" } }, - [6869]={ + [6962]={ [1]={ [1]={ [1]={ @@ -158271,7 +160511,7 @@ return { [1]="gain_x_rage_on_melee_hit" } }, - [6870]={ + [6963]={ [1]={ [1]={ [1]={ @@ -158291,7 +160531,7 @@ return { [1]="gain_x_rage_per_200_mana_spent" } }, - [6871]={ + [6964]={ [1]={ [1]={ [1]={ @@ -158315,7 +160555,7 @@ return { [1]="gain_x_rage_when_hit" } }, - [6872]={ + [6965]={ [1]={ [1]={ [1]={ @@ -158335,7 +160575,7 @@ return { [1]="gain_x_rage_when_you_use_a_life_flask" } }, - [6873]={ + [6966]={ [1]={ [1]={ limit={ @@ -158360,7 +160600,7 @@ return { [1]="gain_x_ward_per_10_armour_on_helmet" } }, - [6874]={ + [6967]={ [1]={ [1]={ limit={ @@ -158385,7 +160625,7 @@ return { [1]="gain_x_ward_per_10_energy_shield_on_boots" } }, - [6875]={ + [6968]={ [1]={ [1]={ limit={ @@ -158410,7 +160650,7 @@ return { [1]="gain_x_ward_per_10_evasion_on_gloves" } }, - [6876]={ + [6969]={ [1]={ [1]={ limit={ @@ -158435,7 +160675,7 @@ return { [1]="galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined" } }, - [6877]={ + [6970]={ [1]={ [1]={ limit={ @@ -158464,7 +160704,7 @@ return { [1]="galvanic_arrow_projectile_speed_+%" } }, - [6878]={ + [6971]={ [1]={ [1]={ limit={ @@ -158489,7 +160729,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [6879]={ + [6972]={ [1]={ [1]={ limit={ @@ -158505,7 +160745,7 @@ return { [1]="galvanic_field_cast_speed_+%" } }, - [6880]={ + [6973]={ [1]={ [1]={ limit={ @@ -158534,7 +160774,7 @@ return { [1]="galvanic_field_damage_+%" } }, - [6881]={ + [6974]={ [1]={ [1]={ limit={ @@ -158559,7 +160799,7 @@ return { [1]="galvanic_field_number_of_chains" } }, - [6882]={ + [6975]={ [1]={ [1]={ limit={ @@ -158575,7 +160815,7 @@ return { [1]="generals_cry_cooldown_speed_+%" } }, - [6883]={ + [6976]={ [1]={ [1]={ limit={ @@ -158591,7 +160831,7 @@ return { [1]="generals_cry_maximum_warriors_+" } }, - [6884]={ + [6977]={ [1]={ [1]={ limit={ @@ -158607,7 +160847,7 @@ return { [1]="ghost_dance_max_stacks" } }, - [6885]={ + [6978]={ [1]={ [1]={ limit={ @@ -158623,7 +160863,48 @@ return { [1]="ghost_dance_restore_%_evasion_as_energy_shield_when_hit" } }, - [6886]={ + [6979]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextGhostLanternBuff" + }, + [2]={ + k="reminderstring", + v="ReminderTextGhostInferno" + }, + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="DNT Killing a Burning Enemy has a {0}% chance to create a Ghostflame Soul" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextGhostLanternBuff" + }, + [2]={ + k="reminderstring", + v="ReminderTextGhostInferno" + }, + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="DNT Killing a Burning Enemy creates a Ghostflame Soul" + } + }, + stats={ + [1]="ghost_lantern_%_chance_for_burning_enemy_to_create_soul" + } + }, + [6980]={ [1]={ [1]={ limit={ @@ -158652,7 +160933,7 @@ return { [1]="ghost_totem_skill_damage_+%_final" } }, - [6887]={ + [6981]={ [1]={ [1]={ limit={ @@ -158677,7 +160958,7 @@ return { [1]="glacial_cascade_number_of_additional_bursts" } }, - [6888]={ + [6982]={ [1]={ [1]={ limit={ @@ -158693,7 +160974,7 @@ return { [1]="glacial_cascade_physical_damage_%_to_add_as_cold" } }, - [6889]={ + [6983]={ [1]={ [1]={ limit={ @@ -158709,7 +160990,7 @@ return { [1]="glacial_hammer_melee_splash_with_cold_damage" } }, - [6890]={ + [6984]={ [1]={ [1]={ limit={ @@ -158725,7 +161006,7 @@ return { [1]="glacial_hammer_physical_damage_%_to_convert_to_cold" } }, - [6891]={ + [6985]={ [1]={ [1]={ [1]={ @@ -158762,7 +161043,7 @@ return { [1]="gladiator_critical_strike_chance_+%_final_while_wielding_dagger" } }, - [6892]={ + [6986]={ [1]={ [1]={ limit={ @@ -158791,7 +161072,7 @@ return { [1]="gladiator_damage_vs_rare_unique_enemies_+%_final_per_2_seconds_in_your_presence_up_to_50%" } }, - [6893]={ + [6987]={ [1]={ [1]={ limit={ @@ -158820,7 +161101,7 @@ return { [1]="gladiator_damage_vs_rare_unique_enemies_+%_final_per_second_in_your_presence_up_to_100%" } }, - [6894]={ + [6988]={ [1]={ [1]={ limit={ @@ -158836,7 +161117,7 @@ return { [1]="leech_%_is_instant_while_wielding_claw" } }, - [6895]={ + [6989]={ [1]={ [1]={ [1]={ @@ -158873,7 +161154,7 @@ return { [1]="gladiator_damage_+%_final_against_enemies_on_low_life_while_wielding_axe" } }, - [6896]={ + [6990]={ [1]={ [1]={ limit={ @@ -158906,7 +161187,7 @@ return { [1]="global_attack_speed_+%_per_level" } }, - [6897]={ + [6991]={ [1]={ [1]={ [1]={ @@ -158926,7 +161207,7 @@ return { [1]="global_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [6898]={ + [6992]={ [1]={ [1]={ limit={ @@ -158955,7 +161236,7 @@ return { [1]="global_critical_strike_chance_+%_vs_chilled_enemies" } }, - [6899]={ + [6993]={ [1]={ [1]={ limit={ @@ -158971,7 +161252,7 @@ return { [1]="global_defences_+%_if_no_defence_modifiers_on_equipment_except_body_armour" } }, - [6900]={ + [6994]={ [1]={ [1]={ limit={ @@ -158980,7 +161261,7 @@ return { [2]="#" } }, - text="[DNT] +{0}% to Global Defenses per Minion" + text="DNT +{0}% to Global Defenses per Minion" }, [2]={ [1]={ @@ -158993,14 +161274,14 @@ return { [2]=-1 } }, - text="[DNT] -{0}% to Global Defenses per Minion" + text="DNT -{0}% to Global Defenses per Minion" } }, stats={ [1]="global_defences_+%_per_active_minion" } }, - [6901]={ + [6995]={ [1]={ [1]={ limit={ @@ -159029,7 +161310,7 @@ return { [1]="global_defences_+%_per_raised_spectre" } }, - [6902]={ + [6996]={ [1]={ [1]={ [1]={ @@ -159066,7 +161347,7 @@ return { [1]="global_defences_+%_per_frenzy_charge" } }, - [6903]={ + [6997]={ [1]={ [1]={ limit={ @@ -159082,7 +161363,7 @@ return { [1]="global_evasion_rating_+_while_moving" } }, - [6904]={ + [6998]={ [1]={ [1]={ limit={ @@ -159098,7 +161379,7 @@ return { [1]="global_graft_skill_cooldown_speed_+%" } }, - [6905]={ + [6999]={ [1]={ [1]={ limit={ @@ -159114,7 +161395,7 @@ return { [1]="global_graft_skill_duration_+%" } }, - [6906]={ + [7000]={ [1]={ [1]={ limit={ @@ -159130,7 +161411,7 @@ return { [1]="global_graft_skill_level_+" } }, - [6907]={ + [7001]={ [1]={ [1]={ limit={ @@ -159139,14 +161420,14 @@ return { [2]="#" } }, - text="[DNT] Adds {0} maximum Lightning Damage\nLose one maximum Lightning Damage per level" + text="DNT Adds {0} maximum Lightning Damage\nLose one maximum Lightning Damage per level" } }, stats={ [1]="global_maximum_added_lightning_damage_minus_1_per_level" } }, - [6908]={ + [7002]={ [1]={ [1]={ limit={ @@ -159167,7 +161448,7 @@ return { [2]="global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies" } }, - [6909]={ + [7003]={ [1]={ [1]={ limit={ @@ -159188,7 +161469,7 @@ return { [2]="global_maximum_added_fire_damage_vs_ignited_enemies" } }, - [6910]={ + [7004]={ [1]={ [1]={ limit={ @@ -159209,7 +161490,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_ignited_enemies" } }, - [6911]={ + [7005]={ [1]={ [1]={ limit={ @@ -159230,7 +161511,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_shocked_enemies" } }, - [6912]={ + [7006]={ [1]={ [1]={ limit={ @@ -159251,7 +161532,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [6913]={ + [7007]={ [1]={ [1]={ limit={ @@ -159267,7 +161548,7 @@ return { [1]="global_physical_damage_reduction_rating_while_moving" } }, - [6914]={ + [7008]={ [1]={ [1]={ [1]={ @@ -159291,7 +161572,7 @@ return { [1]="glove_implicit_gain_rage_on_attack_hit_cooldown_ms" } }, - [6915]={ + [7009]={ [1]={ [1]={ limit={ @@ -159320,7 +161601,7 @@ return { [1]="gloves_mod_effect_+%" } }, - [6916]={ + [7010]={ [1]={ [1]={ limit={ @@ -159349,7 +161630,7 @@ return { [1]="golem_attack_and_cast_speed_+%" } }, - [6917]={ + [7011]={ [1]={ [1]={ limit={ @@ -159370,7 +161651,7 @@ return { [2]="golem_attack_maximum_added_physical_damage" } }, - [6918]={ + [7012]={ [1]={ [1]={ limit={ @@ -159399,7 +161680,7 @@ return { [1]="golem_buff_effect_+%" } }, - [6919]={ + [7013]={ [1]={ [1]={ limit={ @@ -159428,7 +161709,7 @@ return { [1]="golem_buff_effect_+%_per_summoned_golem" } }, - [6920]={ + [7014]={ [1]={ [1]={ [1]={ @@ -159448,7 +161729,7 @@ return { [1]="golem_life_regeneration_per_minute_%" } }, - [6921]={ + [7015]={ [1]={ [1]={ limit={ @@ -159477,7 +161758,7 @@ return { [1]="golem_maximum_energy_shield_+%" } }, - [6922]={ + [7016]={ [1]={ [1]={ limit={ @@ -159506,7 +161787,7 @@ return { [1]="golem_maximum_life_+%" } }, - [6923]={ + [7017]={ [1]={ [1]={ limit={ @@ -159535,7 +161816,7 @@ return { [1]="golem_maximum_mana_+%" } }, - [6924]={ + [7018]={ [1]={ [1]={ limit={ @@ -159564,7 +161845,7 @@ return { [1]="golem_movement_speed_+%" } }, - [6925]={ + [7019]={ [1]={ [1]={ limit={ @@ -159580,7 +161861,7 @@ return { [1]="golem_physical_damage_reduction_rating" } }, - [6926]={ + [7020]={ [1]={ [1]={ limit={ @@ -159609,7 +161890,7 @@ return { [1]="grace_aura_effect_+%_while_at_minimum_frenzy_charges" } }, - [6927]={ + [7021]={ [1]={ [1]={ [1]={ @@ -159646,7 +161927,7 @@ return { [1]="grace_mana_reservation_efficiency_-2%_per_1" } }, - [6928]={ + [7022]={ [1]={ [1]={ limit={ @@ -159675,7 +161956,7 @@ return { [1]="grace_mana_reservation_efficiency_+%" } }, - [6929]={ + [7023]={ [1]={ [1]={ limit={ @@ -159691,7 +161972,7 @@ return { [1]="grace_reserves_no_mana" } }, - [6930]={ + [7024]={ [1]={ [1]={ limit={ @@ -159707,7 +161988,7 @@ return { [1]="graft_slot_2_unlocked" } }, - [6931]={ + [7025]={ [1]={ [1]={ limit={ @@ -159740,7 +162021,7 @@ return { [1]="grant_animated_minion_melee_splash_damage_+%_final_for_splash" } }, - [6932]={ + [7026]={ [1]={ [1]={ limit={ @@ -159756,7 +162037,7 @@ return { [1]="grant_map_boss_X_azmeri_dust_primal_on_death" } }, - [6933]={ + [7027]={ [1]={ [1]={ limit={ @@ -159772,7 +162053,7 @@ return { [1]="grant_map_boss_X_azmeri_dust_voodoo_on_death" } }, - [6934]={ + [7028]={ [1]={ [1]={ limit={ @@ -159788,7 +162069,7 @@ return { [1]="grant_map_boss_X_azmeri_dust_warden_on_death" } }, - [6935]={ + [7029]={ [1]={ [1]={ limit={ @@ -159804,7 +162085,7 @@ return { [1]="grant_tailwind_to_nearby_allies_if_used_skill_recently" } }, - [6936]={ + [7030]={ [1]={ [1]={ limit={ @@ -159837,7 +162118,7 @@ return { [1]="grant_void_arrow_every_x_ms" } }, - [6937]={ + [7031]={ [1]={ [1]={ [1]={ @@ -159857,7 +162138,7 @@ return { [1]="grasping_vines_on_hit_while_life_flask_active_up_to_x" } }, - [6938]={ + [7032]={ [1]={ [1]={ limit={ @@ -159886,7 +162167,36 @@ return { [1]="gratuitous_violence_physical_damage_over_time_+%_final" } }, - [6939]={ + [7033]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Damage per Moon Rite completed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Damage per Moon Rite completed" + } + }, + stats={ + [1]="greatwolf_damage_+%" + } + }, + [7034]={ [1]={ [1]={ limit={ @@ -159915,7 +162225,7 @@ return { [1]="ground_slam_and_sunder_poison_on_non_poisoned_enemies_damage_+%" } }, - [6940]={ + [7035]={ [1]={ [1]={ limit={ @@ -159940,7 +162250,7 @@ return { [1]="ground_slam_chance_to_gain_endurance_charge_%_on_stun" } }, - [6941]={ + [7036]={ [1]={ [1]={ [1]={ @@ -159960,7 +162270,7 @@ return { [1]="ground_tar_on_block_base_area_of_effect_radius" } }, - [6942]={ + [7037]={ [1]={ [1]={ limit={ @@ -159976,7 +162286,7 @@ return { [1]="ground_tar_when_hit_%_chance" } }, - [6943]={ + [7038]={ [1]={ [1]={ limit={ @@ -159985,14 +162295,14 @@ return { [2]="#" } }, - text="[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you" + text="DNT Your Guard Skill Buffs take Damage for Linked Targets as well as you" } }, stats={ [1]="guard_buff_take_damage_from_linked_target" } }, - [6944]={ + [7039]={ [1]={ [1]={ limit={ @@ -160021,7 +162331,7 @@ return { [1]="guard_skill_cooldown_recovery_+%" } }, - [6945]={ + [7040]={ [1]={ [1]={ limit={ @@ -160050,7 +162360,7 @@ return { [1]="guard_skill_effect_duration_+%" } }, - [6946]={ + [7041]={ [1]={ [1]={ limit={ @@ -160059,7 +162369,7 @@ return { [2]="#" } }, - text="[DNT] For each nearby Ally you and nearby Allies deal {0}% more Damage, up to 15%" + text="DNT For each nearby Ally you and nearby Allies deal {0}% more Damage, up to 15%" }, [2]={ [1]={ @@ -160072,14 +162382,14 @@ return { [2]=-1 } }, - text="[DNT] For each nearby Ally you and nearby Allies deal {0}% less Damage per nearby Ally, up to 15%" + text="DNT For each nearby Ally you and nearby Allies deal {0}% less Damage per nearby Ally, up to 15%" } }, stats={ [1]="guardian_damage_+%_final_to_you_and_nearby_allies_per_nearby_ally_up_to_15%" } }, - [6947]={ + [7042]={ [1]={ [1]={ limit={ @@ -160088,14 +162398,14 @@ return { [2]="#" } }, - text="[DNT] Every 4 seconds, remove all Curses" + text="DNT Every 4 seconds, remove all Curses" } }, stats={ [1]="guardian_every_4_seconds_remove_curses_on_you" } }, - [6948]={ + [7043]={ [1]={ [1]={ [1]={ @@ -160108,14 +162418,14 @@ return { [2]="#" } }, - text="[DNT] Every 4 seconds, Remove Elemental Ailments from you" + text="DNT Every 4 seconds, Remove Elemental Ailments from you" } }, stats={ [1]="guardian_every_4_seconds_remove_elemental_ailments_on_you" } }, - [6949]={ + [7044]={ [1]={ [1]={ [1]={ @@ -160135,7 +162445,7 @@ return { [1]="guardian_with_5_nearby_allies_you_and_allies_have_onslaught" } }, - [6950]={ + [7045]={ [1]={ [1]={ limit={ @@ -160164,7 +162474,7 @@ return { [1]="guardian_with_nearby_ally_damage_+%_final_for_you_and_allies" } }, - [6951]={ + [7046]={ [1]={ [1]={ [1]={ @@ -160201,7 +162511,7 @@ return { [1]="hallowing_flame_magnitude_+%" } }, - [6952]={ + [7047]={ [1]={ [1]={ [1]={ @@ -160238,7 +162548,7 @@ return { [1]="hallowing_flame_magnitude_+%_per_2%_attack_block_chance" } }, - [6953]={ + [7048]={ [1]={ [1]={ limit={ @@ -160254,7 +162564,7 @@ return { [1]="hard_mode_utility_flask_gain_charges_while_active" } }, - [6954]={ + [7049]={ [1]={ [1]={ limit={ @@ -160270,7 +162580,7 @@ return { [1]="harvest_encounter_fluid_granted_+%" } }, - [6955]={ + [7050]={ [1]={ [1]={ [1]={ @@ -160290,7 +162600,7 @@ return { [1]="has_avoid_shock_as_avoid_all_elemental_ailments" } }, - [6956]={ + [7051]={ [1]={ [1]={ limit={ @@ -160306,7 +162616,7 @@ return { [1]="has_curse_limit_equal_to_maximum_power_charges" } }, - [6957]={ + [7052]={ [1]={ [1]={ [1]={ @@ -160326,7 +162636,7 @@ return { [1]="has_ignite_duration_on_self_as_all_elemental_ailments_on_self" } }, - [6958]={ + [7053]={ [1]={ [1]={ [1]={ @@ -160346,7 +162656,7 @@ return { [1]="has_onslaught_if_totem_summoned_recently" } }, - [6959]={ + [7054]={ [1]={ [1]={ limit={ @@ -160362,7 +162672,7 @@ return { [1]="has_stun_prevention_flask" } }, - [6960]={ + [7055]={ [1]={ [1]={ limit={ @@ -160378,7 +162688,7 @@ return { [1]="has_unique_brutal_shrine_effect" } }, - [6961]={ + [7056]={ [1]={ [1]={ limit={ @@ -160394,7 +162704,7 @@ return { [1]="has_unique_massive_shrine_effect" } }, - [6962]={ + [7057]={ [1]={ [1]={ [1]={ @@ -160431,7 +162741,7 @@ return { [1]="haste_mana_reservation_efficiency_-2%_per_1" } }, - [6963]={ + [7058]={ [1]={ [1]={ limit={ @@ -160460,7 +162770,7 @@ return { [1]="haste_mana_reservation_efficiency_+%" } }, - [6964]={ + [7059]={ [1]={ [1]={ limit={ @@ -160476,7 +162786,7 @@ return { [1]="haste_reserves_no_mana" } }, - [6965]={ + [7060]={ [1]={ [1]={ limit={ @@ -160505,7 +162815,7 @@ return { [1]="hatred_aura_effect_+%_while_at_maximum_frenzy_charges" } }, - [6966]={ + [7061]={ [1]={ [1]={ [1]={ @@ -160542,7 +162852,7 @@ return { [1]="hatred_mana_reservation_efficiency_-2%_per_1" } }, - [6967]={ + [7062]={ [1]={ [1]={ limit={ @@ -160571,7 +162881,7 @@ return { [1]="hatred_mana_reservation_efficiency_+%" } }, - [6968]={ + [7063]={ [1]={ [1]={ limit={ @@ -160587,7 +162897,39 @@ return { [1]="hatred_reserves_no_mana" } }, - [6969]={ + [7064]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage with Mines if one of your Traps has Triggered Recently" + } + }, + stats={ + [1]="hazard_belt_mod_mine_damage_+%_final_if_trap_triggered_recently" + } + }, + [7065]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage with Traps if you have Detonated a Mine Recently" + } + }, + stats={ + [1]="hazard_belt_mod_trap_damage_+%_final_if_detonated_mine_recently" + } + }, + [7066]={ [1]={ [1]={ limit={ @@ -160603,7 +162945,7 @@ return { [1]="heist_additional_abyss_rewards_from_reward_chests_%" } }, - [6970]={ + [7067]={ [1]={ [1]={ limit={ @@ -160619,7 +162961,7 @@ return { [1]="heist_additional_armour_rewards_from_reward_chests_%" } }, - [6971]={ + [7068]={ [1]={ [1]={ limit={ @@ -160635,7 +162977,7 @@ return { [1]="heist_additional_blight_rewards_from_reward_chests_%" } }, - [6972]={ + [7069]={ [1]={ [1]={ limit={ @@ -160651,7 +162993,7 @@ return { [1]="heist_additional_breach_rewards_from_reward_chests_%" } }, - [6973]={ + [7070]={ [1]={ [1]={ limit={ @@ -160667,7 +163009,7 @@ return { [1]="heist_additional_corrupted_rewards_from_reward_chests_%" } }, - [6974]={ + [7071]={ [1]={ [1]={ limit={ @@ -160683,7 +163025,7 @@ return { [1]="heist_additional_delirium_rewards_from_reward_chests_%" } }, - [6975]={ + [7072]={ [1]={ [1]={ limit={ @@ -160699,7 +163041,7 @@ return { [1]="heist_additional_delve_rewards_from_reward_chests_%" } }, - [6976]={ + [7073]={ [1]={ [1]={ limit={ @@ -160715,7 +163057,7 @@ return { [1]="heist_additional_divination_rewards_from_reward_chests_%" } }, - [6977]={ + [7074]={ [1]={ [1]={ limit={ @@ -160731,7 +163073,7 @@ return { [1]="heist_additional_essences_rewards_from_reward_chests_%" } }, - [6978]={ + [7075]={ [1]={ [1]={ limit={ @@ -160747,7 +163089,7 @@ return { [1]="heist_additional_gems_rewards_from_reward_chests_%" } }, - [6979]={ + [7076]={ [1]={ [1]={ limit={ @@ -160763,7 +163105,7 @@ return { [1]="heist_additional_gold_rewards_from_reward_chests_%" } }, - [6980]={ + [7077]={ [1]={ [1]={ limit={ @@ -160779,7 +163121,7 @@ return { [1]="heist_additional_harbinger_rewards_from_reward_chests_%" } }, - [6981]={ + [7078]={ [1]={ [1]={ limit={ @@ -160795,7 +163137,7 @@ return { [1]="heist_additional_jewellery_rewards_from_reward_chests_%" } }, - [6982]={ + [7079]={ [1]={ [1]={ limit={ @@ -160811,7 +163153,7 @@ return { [1]="heist_additional_legion_rewards_from_reward_chests_%" } }, - [6983]={ + [7080]={ [1]={ [1]={ limit={ @@ -160827,7 +163169,7 @@ return { [1]="heist_additional_metamorph_rewards_from_reward_chests_%" } }, - [6984]={ + [7081]={ [1]={ [1]={ limit={ @@ -160843,7 +163185,7 @@ return { [1]="heist_additional_perandus_rewards_from_reward_chests_%" } }, - [6985]={ + [7082]={ [1]={ [1]={ limit={ @@ -160859,7 +163201,7 @@ return { [1]="heist_additional_talisman_rewards_from_reward_chests_%" } }, - [6986]={ + [7083]={ [1]={ [1]={ limit={ @@ -160875,7 +163217,7 @@ return { [1]="heist_additional_uniques_rewards_from_reward_chests_%" } }, - [6987]={ + [7084]={ [1]={ [1]={ limit={ @@ -160891,7 +163233,7 @@ return { [1]="heist_additional_weapons_rewards_from_reward_chests_%" } }, - [6988]={ + [7085]={ [1]={ [1]={ limit={ @@ -160920,7 +163262,7 @@ return { [1]="heist_alert_level_gained_on_monster_death" } }, - [6989]={ + [7086]={ [1]={ [1]={ [1]={ @@ -160957,7 +163299,7 @@ return { [1]="heist_alert_level_gained_per_10_sec" } }, - [6990]={ + [7087]={ [1]={ [1]={ limit={ @@ -160973,7 +163315,7 @@ return { [1]="heist_blueprint_reward_always_currency_or_scarab" } }, - [6991]={ + [7088]={ [1]={ [1]={ limit={ @@ -160989,7 +163331,7 @@ return { [1]="heist_blueprint_reward_always_enchanted_equipment" } }, - [6992]={ + [7089]={ [1]={ [1]={ limit={ @@ -161005,7 +163347,7 @@ return { [1]="heist_blueprint_reward_always_experimented" } }, - [6993]={ + [7090]={ [1]={ [1]={ limit={ @@ -161021,7 +163363,7 @@ return { [1]="heist_blueprint_reward_always_trinket" } }, - [6994]={ + [7091]={ [1]={ [1]={ limit={ @@ -161037,7 +163379,7 @@ return { [1]="heist_blueprint_reward_always_unique" } }, - [6995]={ + [7092]={ [1]={ [1]={ limit={ @@ -161053,7 +163395,7 @@ return { [1]="heist_chests_chance_for_secondary_objectives_%" } }, - [6996]={ + [7093]={ [1]={ [1]={ limit={ @@ -161078,7 +163420,7 @@ return { [1]="heist_chests_double_blighted_maps_and_catalysts_%" } }, - [6997]={ + [7094]={ [1]={ [1]={ limit={ @@ -161103,7 +163445,7 @@ return { [1]="heist_chests_double_breach_splinters_%" } }, - [6998]={ + [7095]={ [1]={ [1]={ limit={ @@ -161128,7 +163470,7 @@ return { [1]="heist_chests_double_catalysts_%" } }, - [6999]={ + [7096]={ [1]={ [1]={ limit={ @@ -161153,7 +163495,7 @@ return { [1]="heist_chests_double_currency_%" } }, - [7000]={ + [7097]={ [1]={ [1]={ limit={ @@ -161178,7 +163520,7 @@ return { [1]="heist_chests_double_delirium_orbs_and_splinters_%" } }, - [7001]={ + [7098]={ [1]={ [1]={ limit={ @@ -161203,7 +163545,7 @@ return { [1]="heist_chests_double_divination_cards_%" } }, - [7002]={ + [7099]={ [1]={ [1]={ limit={ @@ -161228,7 +163570,7 @@ return { [1]="heist_chests_double_essences_%" } }, - [7003]={ + [7100]={ [1]={ [1]={ limit={ @@ -161253,7 +163595,7 @@ return { [1]="heist_chests_double_jewels_%" } }, - [7004]={ + [7101]={ [1]={ [1]={ limit={ @@ -161278,7 +163620,7 @@ return { [1]="heist_chests_double_legion_splinters_%" } }, - [7005]={ + [7102]={ [1]={ [1]={ limit={ @@ -161303,7 +163645,7 @@ return { [1]="heist_chests_double_map_fragments_%" } }, - [7006]={ + [7103]={ [1]={ [1]={ limit={ @@ -161328,7 +163670,7 @@ return { [1]="heist_chests_double_maps_%" } }, - [7007]={ + [7104]={ [1]={ [1]={ limit={ @@ -161353,7 +163695,7 @@ return { [1]="heist_chests_double_oils_%" } }, - [7008]={ + [7105]={ [1]={ [1]={ limit={ @@ -161378,7 +163720,7 @@ return { [1]="heist_chests_double_scarabs_%" } }, - [7009]={ + [7106]={ [1]={ [1]={ limit={ @@ -161403,7 +163745,7 @@ return { [1]="heist_chests_double_sextants_%" } }, - [7010]={ + [7107]={ [1]={ [1]={ limit={ @@ -161432,7 +163774,7 @@ return { [1]="heist_chests_double_uniques_%" } }, - [7011]={ + [7108]={ [1]={ [1]={ limit={ @@ -161461,7 +163803,7 @@ return { [1]="heist_chests_unique_rarity_%" } }, - [7012]={ + [7109]={ [1]={ [1]={ limit={ @@ -161486,7 +163828,7 @@ return { [1]="heist_coins_from_world_chests_double_%" } }, - [7013]={ + [7110]={ [1]={ [1]={ limit={ @@ -161511,7 +163853,7 @@ return { [1]="heist_coins_dropped_by_monsters_double_%" } }, - [7014]={ + [7111]={ [1]={ [1]={ limit={ @@ -161540,7 +163882,7 @@ return { [1]="heist_contract_alert_level_from_chests_+%" } }, - [7015]={ + [7112]={ [1]={ [1]={ limit={ @@ -161569,7 +163911,7 @@ return { [1]="heist_contract_alert_level_from_monsters_+%" } }, - [7016]={ + [7113]={ [1]={ [1]={ limit={ @@ -161598,7 +163940,7 @@ return { [1]="heist_contract_alert_level_+%" } }, - [7017]={ + [7114]={ [1]={ [1]={ limit={ @@ -161627,7 +163969,7 @@ return { [1]="heist_contract_gang_cost_+%" } }, - [7018]={ + [7115]={ [1]={ [1]={ limit={ @@ -161643,7 +163985,7 @@ return { [1]="heist_contract_gang_takes_no_cut" } }, - [7019]={ + [7116]={ [1]={ [1]={ limit={ @@ -161659,7 +164001,7 @@ return { [1]="heist_contract_generate_secondary_objectives_chance_%" } }, - [7020]={ + [7117]={ [1]={ [1]={ limit={ @@ -161688,7 +164030,7 @@ return { [1]="heist_contract_guarding_monsters_damage_+%" } }, - [7021]={ + [7118]={ [1]={ [1]={ limit={ @@ -161717,7 +164059,7 @@ return { [1]="heist_contract_guarding_monsters_take_damage_+%" } }, - [7022]={ + [7119]={ [1]={ [1]={ limit={ @@ -161742,7 +164084,7 @@ return { [1]="heist_contract_mechanical_unlock_count" } }, - [7023]={ + [7120]={ [1]={ [1]={ limit={ @@ -161767,7 +164109,7 @@ return { [1]="heist_contract_magical_unlock_count" } }, - [7024]={ + [7121]={ [1]={ [1]={ limit={ @@ -161783,7 +164125,7 @@ return { [1]="heist_contract_no_travel_cost" } }, - [7025]={ + [7122]={ [1]={ [1]={ limit={ @@ -161812,7 +164154,7 @@ return { [1]="heist_contract_npc_cost_+%" } }, - [7026]={ + [7123]={ [1]={ [1]={ limit={ @@ -161841,7 +164183,7 @@ return { [1]="heist_contract_objective_completion_time_+%" } }, - [7027]={ + [7124]={ [1]={ [1]={ limit={ @@ -161870,7 +164212,7 @@ return { [1]="heist_contract_patrol_additional_elite_chance_+%" } }, - [7028]={ + [7125]={ [1]={ [1]={ limit={ @@ -161899,7 +164241,7 @@ return { [1]="heist_contract_patrol_damage_+%" } }, - [7029]={ + [7126]={ [1]={ [1]={ limit={ @@ -161928,7 +164270,7 @@ return { [1]="heist_contract_patrol_take_damage_+%" } }, - [7030]={ + [7127]={ [1]={ [1]={ limit={ @@ -161957,7 +164299,7 @@ return { [1]="heist_contract_side_area_monsters_damage_+%" } }, - [7031]={ + [7128]={ [1]={ [1]={ limit={ @@ -161986,7 +164328,7 @@ return { [1]="heist_contract_side_area_monsters_take_damage_+%" } }, - [7032]={ + [7129]={ [1]={ [1]={ limit={ @@ -162015,7 +164357,7 @@ return { [1]="heist_contract_total_cost_+%_final" } }, - [7033]={ + [7130]={ [1]={ [1]={ limit={ @@ -162044,7 +164386,7 @@ return { [1]="heist_contract_travel_cost_+%" } }, - [7034]={ + [7131]={ [1]={ [1]={ limit={ @@ -162069,7 +164411,7 @@ return { [1]="heist_currency_alchemy_drops_as_blessed_%" } }, - [7035]={ + [7132]={ [1]={ [1]={ limit={ @@ -162094,7 +164436,7 @@ return { [1]="heist_currency_alchemy_drops_as_divine_%" } }, - [7036]={ + [7133]={ [1]={ [1]={ limit={ @@ -162119,7 +164461,7 @@ return { [1]="heist_currency_alchemy_drops_as_exalted_%" } }, - [7037]={ + [7134]={ [1]={ [1]={ limit={ @@ -162144,7 +164486,7 @@ return { [1]="heist_currency_alteration_drops_as_alchemy_%" } }, - [7038]={ + [7135]={ [1]={ [1]={ limit={ @@ -162169,7 +164511,7 @@ return { [1]="heist_currency_alteration_drops_as_chaos_%" } }, - [7039]={ + [7136]={ [1]={ [1]={ limit={ @@ -162194,7 +164536,7 @@ return { [1]="heist_currency_alteration_drops_as_regal_%" } }, - [7040]={ + [7137]={ [1]={ [1]={ limit={ @@ -162219,7 +164561,7 @@ return { [1]="heist_currency_augmentation_drops_as_alchemy_%" } }, - [7041]={ + [7138]={ [1]={ [1]={ limit={ @@ -162244,7 +164586,7 @@ return { [1]="heist_currency_augmentation_drops_as_chaos_%" } }, - [7042]={ + [7139]={ [1]={ [1]={ limit={ @@ -162269,7 +164611,7 @@ return { [1]="heist_currency_augmentation_drops_as_regal_%" } }, - [7043]={ + [7140]={ [1]={ [1]={ limit={ @@ -162294,7 +164636,7 @@ return { [1]="heist_currency_chaos_drops_as_ancient_%" } }, - [7044]={ + [7141]={ [1]={ [1]={ limit={ @@ -162319,7 +164661,7 @@ return { [1]="heist_currency_chaos_drops_as_blessed_%" } }, - [7045]={ + [7142]={ [1]={ [1]={ limit={ @@ -162344,7 +164686,7 @@ return { [1]="heist_currency_chaos_drops_as_divine_%" } }, - [7046]={ + [7143]={ [1]={ [1]={ limit={ @@ -162369,7 +164711,7 @@ return { [1]="heist_currency_chaos_drops_as_exalted_%" } }, - [7047]={ + [7144]={ [1]={ [1]={ limit={ @@ -162394,7 +164736,7 @@ return { [1]="heist_currency_chromatic_drops_as_fusing_%" } }, - [7048]={ + [7145]={ [1]={ [1]={ limit={ @@ -162419,7 +164761,57 @@ return { [1]="heist_currency_chromatic_drops_as_jewellers_%" } }, - [7049]={ + [7146]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance in Heists for Orbs of Fusing to drop as Chromatic Orbs instead" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="In Heists Orbs of Fusing drop as Chromatic Orbs instead" + } + }, + stats={ + [1]="heist_currency_fusing_drops_as_chromatic_%" + } + }, + [7147]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance in Heists for Jeweller's Orbs to drop as Chromatic Orbs instead" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="In Heists Jeweller's Orbs drop as Chromatic Orbs instead" + } + }, + stats={ + [1]="heist_currency_jewellers_drops_as_chromatic_%" + } + }, + [7148]={ [1]={ [1]={ limit={ @@ -162444,7 +164836,7 @@ return { [1]="heist_currency_jewellers_drops_as_fusing_%" } }, - [7050]={ + [7149]={ [1]={ [1]={ limit={ @@ -162469,7 +164861,7 @@ return { [1]="heist_currency_regal_drops_as_ancient_%" } }, - [7051]={ + [7150]={ [1]={ [1]={ limit={ @@ -162494,7 +164886,7 @@ return { [1]="heist_currency_regal_drops_as_blessed_%" } }, - [7052]={ + [7151]={ [1]={ [1]={ limit={ @@ -162519,7 +164911,7 @@ return { [1]="heist_currency_regal_drops_as_divine_%" } }, - [7053]={ + [7152]={ [1]={ [1]={ limit={ @@ -162544,7 +164936,7 @@ return { [1]="heist_currency_regal_drops_as_exalted_%" } }, - [7054]={ + [7153]={ [1]={ [1]={ limit={ @@ -162569,7 +164961,7 @@ return { [1]="heist_currency_regret_drops_as_annulment_%" } }, - [7055]={ + [7154]={ [1]={ [1]={ limit={ @@ -162594,7 +164986,7 @@ return { [1]="heist_currency_scouring_drops_as_annulment_%" } }, - [7056]={ + [7155]={ [1]={ [1]={ limit={ @@ -162619,7 +165011,7 @@ return { [1]="heist_currency_scouring_drops_as_regret_%" } }, - [7057]={ + [7156]={ [1]={ [1]={ limit={ @@ -162644,7 +165036,7 @@ return { [1]="heist_currency_transmutation_drops_as_alchemy_%" } }, - [7058]={ + [7157]={ [1]={ [1]={ limit={ @@ -162669,7 +165061,7 @@ return { [1]="heist_currency_transmutation_drops_as_chaos_%" } }, - [7059]={ + [7158]={ [1]={ [1]={ limit={ @@ -162694,7 +165086,7 @@ return { [1]="heist_currency_transmutation_drops_as_regal_%" } }, - [7060]={ + [7159]={ [1]={ [1]={ limit={ @@ -162719,7 +165111,7 @@ return { [1]="heist_drops_double_currency_%" } }, - [7061]={ + [7160]={ [1]={ [1]={ limit={ @@ -162735,7 +165127,7 @@ return { [1]="heist_guards_are_magic" } }, - [7062]={ + [7161]={ [1]={ [1]={ limit={ @@ -162751,7 +165143,7 @@ return { [1]="heist_guards_are_rare" } }, - [7063]={ + [7162]={ [1]={ [1]={ limit={ @@ -162767,7 +165159,7 @@ return { [1]="heist_interruption_resistance_%" } }, - [7064]={ + [7163]={ [1]={ [1]={ limit={ @@ -162796,7 +165188,7 @@ return { [1]="heist_item_quantity_+%" } }, - [7065]={ + [7164]={ [1]={ [1]={ limit={ @@ -162825,7 +165217,7 @@ return { [1]="heist_item_rarity_+%" } }, - [7066]={ + [7165]={ [1]={ [1]={ limit={ @@ -162850,7 +165242,7 @@ return { [1]="heist_items_are_fully_linked_%" } }, - [7067]={ + [7166]={ [1]={ [1]={ limit={ @@ -162875,7 +165267,7 @@ return { [1]="heist_items_drop_corrupted_%" } }, - [7068]={ + [7167]={ [1]={ [1]={ limit={ @@ -162900,7 +165292,7 @@ return { [1]="heist_items_drop_identified_%" } }, - [7069]={ + [7168]={ [1]={ [1]={ limit={ @@ -162925,7 +165317,7 @@ return { [1]="heist_items_have_elder_influence_%" } }, - [7070]={ + [7169]={ [1]={ [1]={ limit={ @@ -162950,7 +165342,7 @@ return { [1]="heist_items_have_one_additional_socket_%" } }, - [7071]={ + [7170]={ [1]={ [1]={ limit={ @@ -162975,7 +165367,7 @@ return { [1]="heist_items_have_shaper_influence_%" } }, - [7072]={ + [7171]={ [1]={ [1]={ limit={ @@ -162991,7 +165383,7 @@ return { [1]="heist_job_agility_level_+" } }, - [7073]={ + [7172]={ [1]={ [1]={ limit={ @@ -163007,7 +165399,7 @@ return { [1]="heist_job_brute_force_level_+" } }, - [7074]={ + [7173]={ [1]={ [1]={ limit={ @@ -163023,7 +165415,7 @@ return { [1]="heist_job_counter_thaumaturgy_level_+" } }, - [7075]={ + [7174]={ [1]={ [1]={ limit={ @@ -163039,7 +165431,7 @@ return { [1]="heist_job_deception_level_+" } }, - [7076]={ + [7175]={ [1]={ [1]={ limit={ @@ -163055,7 +165447,7 @@ return { [1]="heist_job_demolition_level_+" } }, - [7077]={ + [7176]={ [1]={ [1]={ limit={ @@ -163084,7 +165476,7 @@ return { [1]="heist_job_demolition_speed_+%" } }, - [7078]={ + [7177]={ [1]={ [1]={ limit={ @@ -163100,7 +165492,7 @@ return { [1]="heist_job_engineering_level_+" } }, - [7079]={ + [7178]={ [1]={ [1]={ limit={ @@ -163116,7 +165508,7 @@ return { [1]="heist_job_lockpicking_level_+" } }, - [7080]={ + [7179]={ [1]={ [1]={ limit={ @@ -163145,7 +165537,7 @@ return { [1]="heist_job_lockpicking_speed_+%" } }, - [7081]={ + [7180]={ [1]={ [1]={ limit={ @@ -163161,7 +165553,7 @@ return { [1]="heist_job_perception_level_+" } }, - [7082]={ + [7181]={ [1]={ [1]={ limit={ @@ -163177,7 +165569,7 @@ return { [1]="heist_job_trap_disarmament_level_+" } }, - [7083]={ + [7182]={ [1]={ [1]={ limit={ @@ -163206,7 +165598,7 @@ return { [1]="heist_job_trap_disarmament_speed_+%" } }, - [7084]={ + [7183]={ [1]={ [1]={ limit={ @@ -163222,7 +165614,7 @@ return { [1]="heist_lockdown_is_instant" } }, - [7085]={ + [7184]={ [1]={ [1]={ limit={ @@ -163238,7 +165630,7 @@ return { [1]="heist_nenet_scouts_nearby_patrols_and_mini_bosses" } }, - [7086]={ + [7185]={ [1]={ [1]={ limit={ @@ -163267,7 +165659,7 @@ return { [1]="heist_npc_blueprint_reveal_cost_+%" } }, - [7087]={ + [7186]={ [1]={ [1]={ limit={ @@ -163292,7 +165684,7 @@ return { [1]="heist_npc_contract_generates_gianna_intelligence" } }, - [7088]={ + [7187]={ [1]={ [1]={ limit={ @@ -163317,7 +165709,7 @@ return { [1]="heist_npc_contract_generates_niles_intelligence" } }, - [7089]={ + [7188]={ [1]={ [1]={ limit={ @@ -163333,7 +165725,7 @@ return { [1]="heist_npc_display_huck_combat" } }, - [7090]={ + [7189]={ [1]={ [1]={ limit={ @@ -163362,7 +165754,7 @@ return { [1]="heist_npc_karst_alert_level_from_chests_+%_final" } }, - [7091]={ + [7190]={ [1]={ [1]={ limit={ @@ -163391,7 +165783,7 @@ return { [1]="heist_npc_nenet_alert_level_+%_final" } }, - [7092]={ + [7191]={ [1]={ [1]={ limit={ @@ -163420,7 +165812,7 @@ return { [1]="heist_npc_tullina_alert_level_+%_final" } }, - [7093]={ + [7192]={ [1]={ [1]={ limit={ @@ -163449,7 +165841,7 @@ return { [1]="heist_npc_vinderi_alert_level_+%_final" } }, - [7094]={ + [7193]={ [1]={ [1]={ limit={ @@ -163465,7 +165857,7 @@ return { [1]="heist_patrols_are_magic" } }, - [7095]={ + [7194]={ [1]={ [1]={ limit={ @@ -163481,7 +165873,7 @@ return { [1]="heist_patrols_are_rare" } }, - [7096]={ + [7195]={ [1]={ [1]={ limit={ @@ -163497,7 +165889,7 @@ return { [1]="heist_player_additional_maximum_resistances_%_per_25%_alert_level" } }, - [7097]={ + [7196]={ [1]={ [1]={ limit={ @@ -163526,7 +165918,7 @@ return { [1]="heist_player_armour_+%_final_per_25%_alert_level" } }, - [7098]={ + [7197]={ [1]={ [1]={ limit={ @@ -163542,7 +165934,7 @@ return { [1]="heist_player_cold_resistance_%_per_25%_alert_level" } }, - [7099]={ + [7198]={ [1]={ [1]={ limit={ @@ -163571,7 +165963,7 @@ return { [1]="heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level" } }, - [7100]={ + [7199]={ [1]={ [1]={ limit={ @@ -163600,7 +165992,7 @@ return { [1]="heist_player_evasion_rating_+%_final_per_25%_alert_level" } }, - [7101]={ + [7200]={ [1]={ [1]={ limit={ @@ -163629,7 +166021,7 @@ return { [1]="heist_player_experience_gain_+%" } }, - [7102]={ + [7201]={ [1]={ [1]={ limit={ @@ -163645,7 +166037,7 @@ return { [1]="heist_player_fire_resistance_%_per_25%_alert_level" } }, - [7103]={ + [7202]={ [1]={ [1]={ limit={ @@ -163674,7 +166066,7 @@ return { [1]="heist_player_flask_charges_gained_+%_per_25%_alert_level" } }, - [7104]={ + [7203]={ [1]={ [1]={ limit={ @@ -163703,7 +166095,7 @@ return { [1]="heist_player_life_recovery_rate_+%_final_per_25%_alert_level" } }, - [7105]={ + [7204]={ [1]={ [1]={ limit={ @@ -163719,7 +166111,7 @@ return { [1]="heist_player_lightning_resistance_%_per_25%_alert_level" } }, - [7106]={ + [7205]={ [1]={ [1]={ limit={ @@ -163748,7 +166140,7 @@ return { [1]="heist_player_mana_recovery_rate_+%_final_per_25%_alert_level" } }, - [7107]={ + [7206]={ [1]={ [1]={ limit={ @@ -163777,7 +166169,7 @@ return { [1]="heist_reinforcements_attack_speed_+%" } }, - [7108]={ + [7207]={ [1]={ [1]={ limit={ @@ -163806,7 +166198,7 @@ return { [1]="heist_reinforcements_cast_speed_+%" } }, - [7109]={ + [7208]={ [1]={ [1]={ limit={ @@ -163835,7 +166227,7 @@ return { [1]="heist_reinforcements_movements_speed_+%" } }, - [7110]={ + [7209]={ [1]={ [1]={ limit={ @@ -163864,7 +166256,7 @@ return { [1]="heist_side_reward_room_monsters_+%" } }, - [7111]={ + [7210]={ [1]={ [1]={ limit={ @@ -163889,7 +166281,7 @@ return { [1]="hellscape_extra_item_slots" } }, - [7112]={ + [7211]={ [1]={ [1]={ limit={ @@ -163914,7 +166306,7 @@ return { [1]="hellscape_extra_map_slots" } }, - [7113]={ + [7212]={ [1]={ [1]={ limit={ @@ -163930,7 +166322,7 @@ return { [1]="hellscaping_add_corruption_implicit_chance_%" } }, - [7114]={ + [7213]={ [1]={ [1]={ limit={ @@ -163946,7 +166338,7 @@ return { [1]="hellscaping_add_explicit_mod_chance_%" } }, - [7115]={ + [7214]={ [1]={ [1]={ limit={ @@ -163962,7 +166354,7 @@ return { [1]="hellscaping_additional_link_chance_%" } }, - [7116]={ + [7215]={ [1]={ [1]={ limit={ @@ -163978,7 +166370,7 @@ return { [1]="hellscaping_additional_socket_chance_%" } }, - [7117]={ + [7216]={ [1]={ [1]={ limit={ @@ -163994,7 +166386,7 @@ return { [1]="hellscaping_additional_upside_chance_%" } }, - [7118]={ + [7217]={ [1]={ [1]={ limit={ @@ -164010,7 +166402,7 @@ return { [1]="hellscaping_downsides_tier_downgrade_chance_%" } }, - [7119]={ + [7218]={ [1]={ [1]={ limit={ @@ -164026,7 +166418,7 @@ return { [1]="hellscaping_speed_+%_per_map_hellscape_tier" } }, - [7120]={ + [7219]={ [1]={ [1]={ limit={ @@ -164042,7 +166434,7 @@ return { [1]="armour_hellscaping_speed_+%" } }, - [7121]={ + [7220]={ [1]={ [1]={ limit={ @@ -164058,7 +166450,7 @@ return { [1]="jewellery_hellscaping_speed_+%" } }, - [7122]={ + [7221]={ [1]={ [1]={ limit={ @@ -164074,7 +166466,7 @@ return { [1]="map_hellscaping_speed_+%" } }, - [7123]={ + [7222]={ [1]={ [1]={ limit={ @@ -164090,7 +166482,7 @@ return { [1]="weapon_hellscaping_speed_+%" } }, - [7124]={ + [7223]={ [1]={ [1]={ limit={ @@ -164106,7 +166498,7 @@ return { [1]="quiver_hellscaping_speed_+%" } }, - [7125]={ + [7224]={ [1]={ [1]={ limit={ @@ -164122,7 +166514,7 @@ return { [1]="hellscaping_upgrade_mod_tier_chance_%" } }, - [7126]={ + [7225]={ [1]={ [1]={ limit={ @@ -164138,7 +166530,7 @@ return { [1]="hellscaping_upsides_tier_upgrade_chance_%" } }, - [7127]={ + [7226]={ [1]={ [1]={ limit={ @@ -164154,7 +166546,7 @@ return { [1]="helmet_mod_freeze_as_though_damage_+%_final" } }, - [7128]={ + [7227]={ [1]={ [1]={ limit={ @@ -164170,7 +166562,7 @@ return { [1]="helmet_mod_shock_as_though_damage_+%_final" } }, - [7129]={ + [7228]={ [1]={ [1]={ limit={ @@ -164199,7 +166591,7 @@ return { [1]="herald_effect_on_self_+%" } }, - [7130]={ + [7229]={ [1]={ [1]={ limit={ @@ -164215,7 +166607,7 @@ return { [1]="herald_mana_reservation_override_45%" } }, - [7131]={ + [7230]={ [1]={ [1]={ [1]={ @@ -164252,7 +166644,7 @@ return { [1]="herald_of_agony_buff_drop_off_speed_+%" } }, - [7132]={ + [7231]={ [1]={ [1]={ limit={ @@ -164281,7 +166673,7 @@ return { [1]="herald_of_agony_buff_effect_+%" } }, - [7133]={ + [7232]={ [1]={ [1]={ [1]={ @@ -164318,7 +166710,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_-2%_per_1" } }, - [7134]={ + [7233]={ [1]={ [1]={ limit={ @@ -164347,7 +166739,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_+%" } }, - [7135]={ + [7234]={ [1]={ [1]={ limit={ @@ -164380,7 +166772,7 @@ return { [1]="herald_of_agony_mana_reservation_+%" } }, - [7136]={ + [7235]={ [1]={ [1]={ limit={ @@ -164409,7 +166801,7 @@ return { [1]="herald_of_ash_buff_effect_+%" } }, - [7137]={ + [7236]={ [1]={ [1]={ [1]={ @@ -164446,7 +166838,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_-2%_per_1" } }, - [7138]={ + [7237]={ [1]={ [1]={ limit={ @@ -164475,7 +166867,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_+%" } }, - [7139]={ + [7238]={ [1]={ [1]={ limit={ @@ -164504,7 +166896,7 @@ return { [1]="herald_of_ash_spell_fire_damage_+%_final" } }, - [7140]={ + [7239]={ [1]={ [1]={ limit={ @@ -164533,7 +166925,7 @@ return { [1]="herald_of_ice_buff_effect_+%" } }, - [7141]={ + [7240]={ [1]={ [1]={ [1]={ @@ -164570,7 +166962,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [7142]={ + [7241]={ [1]={ [1]={ limit={ @@ -164599,7 +166991,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_+%" } }, - [7143]={ + [7242]={ [1]={ [1]={ limit={ @@ -164615,7 +167007,7 @@ return { [1]="herald_of_light_and_dominating_blow_minions_use_holy_slam" } }, - [7144]={ + [7243]={ [1]={ [1]={ limit={ @@ -164644,7 +167036,7 @@ return { [1]="herald_of_light_buff_effect_+%" } }, - [7145]={ + [7244]={ [1]={ [1]={ limit={ @@ -164673,7 +167065,7 @@ return { [1]="herald_of_light_minion_area_of_effect_+%" } }, - [7146]={ + [7245]={ [1]={ [1]={ [1]={ @@ -164710,7 +167102,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_-2%_per_1" } }, - [7147]={ + [7246]={ [1]={ [1]={ limit={ @@ -164739,7 +167131,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_+%" } }, - [7148]={ + [7247]={ [1]={ [1]={ limit={ @@ -164772,7 +167164,7 @@ return { [1]="herald_of_purity_mana_reservation_+%" } }, - [7149]={ + [7248]={ [1]={ [1]={ limit={ @@ -164797,7 +167189,7 @@ return { [1]="herald_of_thunder_bolt_frequency_+%" } }, - [7150]={ + [7249]={ [1]={ [1]={ limit={ @@ -164826,7 +167218,7 @@ return { [1]="herald_of_thunder_buff_effect_+%" } }, - [7151]={ + [7250]={ [1]={ [1]={ [1]={ @@ -164863,7 +167255,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_-2%_per_1" } }, - [7152]={ + [7251]={ [1]={ [1]={ limit={ @@ -164892,7 +167284,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_+%" } }, - [7153]={ + [7252]={ [1]={ [1]={ limit={ @@ -164917,7 +167309,7 @@ return { [1]="herald_scorpion_number_of_additional_projectiles" } }, - [7154]={ + [7253]={ [1]={ [1]={ limit={ @@ -164933,7 +167325,7 @@ return { [1]="herald_skill_gem_level_+" } }, - [7155]={ + [7254]={ [1]={ [1]={ [1]={ @@ -164970,7 +167362,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_-2%_per_1" } }, - [7156]={ + [7255]={ [1]={ [1]={ limit={ @@ -164999,7 +167391,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_+%" } }, - [7157]={ + [7256]={ [1]={ [1]={ limit={ @@ -165028,7 +167420,7 @@ return { [1]="herald_skills_mana_reservation_+%" } }, - [7158]={ + [7257]={ [1]={ [1]={ limit={ @@ -165057,7 +167449,7 @@ return { [1]="hex_skill_duration_+%" } }, - [7159]={ + [7258]={ [1]={ [1]={ [1]={ @@ -165081,7 +167473,7 @@ return { [1]="hexblast_and_doomblast_life_leech_on_overkill_damage_%" } }, - [7160]={ + [7259]={ [1]={ [1]={ limit={ @@ -165110,7 +167502,7 @@ return { [1]="hexblast_damage_+%" } }, - [7161]={ + [7260]={ [1]={ [1]={ [1]={ @@ -165135,7 +167527,7 @@ return { [2]="hexblast_%_chance_to_not_consume_hex" } }, - [7162]={ + [7261]={ [1]={ [1]={ limit={ @@ -165164,7 +167556,7 @@ return { [1]="hexblast_skill_area_of_effect_+%" } }, - [7163]={ + [7262]={ [1]={ [1]={ [1]={ @@ -165193,7 +167585,7 @@ return { [2]="hex_remove_at_effect_variance" } }, - [7164]={ + [7263]={ [1]={ [1]={ limit={ @@ -165209,7 +167601,7 @@ return { [1]="hexproof_if_right_ring_is_magic_item" } }, - [7165]={ + [7264]={ [1]={ [1]={ limit={ @@ -165225,7 +167617,7 @@ return { [1]="hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%" } }, - [7166]={ + [7265]={ [1]={ [1]={ [1]={ @@ -165245,7 +167637,7 @@ return { [1]="hierophant_gain_arcane_surge_on_mana_use_threshold" } }, - [7167]={ + [7266]={ [1]={ [1]={ limit={ @@ -165274,7 +167666,7 @@ return { [1]="hierophant_mana_cost_+%_final" } }, - [7168]={ + [7267]={ [1]={ [1]={ limit={ @@ -165303,7 +167695,7 @@ return { [1]="hierophant_mana_reservation_+%_final" } }, - [7169]={ + [7268]={ [1]={ [1]={ limit={ @@ -165332,7 +167724,7 @@ return { [1]="hinder_effect_on_self_+%" } }, - [7170]={ + [7269]={ [1]={ [1]={ limit={ @@ -165361,7 +167753,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [7171]={ + [7270]={ [1]={ [1]={ limit={ @@ -165390,7 +167782,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [7172]={ + [7271]={ [1]={ [1]={ limit={ @@ -165406,7 +167798,7 @@ return { [1]="hinekora_belt_every_5_seconds_rotating_buff" } }, - [7173]={ + [7272]={ [1]={ [1]={ [1]={ @@ -165443,7 +167835,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_bleeding_enemies" } }, - [7174]={ + [7273]={ [1]={ [1]={ [1]={ @@ -165480,7 +167872,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_blinded_enemies" } }, - [7175]={ + [7274]={ [1]={ [1]={ [1]={ @@ -165517,7 +167909,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_chilled_enemies" } }, - [7176]={ + [7275]={ [1]={ [1]={ limit={ @@ -165546,7 +167938,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_cursed_enemies" } }, - [7177]={ + [7276]={ [1]={ [1]={ [1]={ @@ -165583,7 +167975,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments" } }, - [7178]={ + [7277]={ [1]={ [1]={ [1]={ @@ -165620,7 +168012,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs" } }, - [7179]={ + [7278]={ [1]={ [1]={ limit={ @@ -165649,7 +168041,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_unique_enemies" } }, - [7180]={ + [7279]={ [1]={ [1]={ limit={ @@ -165678,7 +168070,7 @@ return { [1]="hit_damage_+%_vs_ignited_enemies" } }, - [7181]={ + [7280]={ [1]={ [1]={ limit={ @@ -165707,7 +168099,7 @@ return { [1]="hit_damage_+%" } }, - [7182]={ + [7281]={ [1]={ [1]={ limit={ @@ -165723,7 +168115,7 @@ return { [1]="hits_against_marked_enemy_cannot_be_blocked_or_suppressed" } }, - [7183]={ + [7282]={ [1]={ [1]={ [1]={ @@ -165743,7 +168135,7 @@ return { [1]="hits_against_you_overwhelm_x%_of_physical_damage_reduction" } }, - [7184]={ + [7283]={ [1]={ [1]={ limit={ @@ -165759,7 +168151,7 @@ return { [1]="hits_cannot_be_evaded_vs_blinded_enemies" } }, - [7185]={ + [7284]={ [1]={ [1]={ limit={ @@ -165775,7 +168167,7 @@ return { [1]="hits_cannot_inflict_more_than_one_impale" } }, - [7186]={ + [7285]={ [1]={ [1]={ [1]={ @@ -165795,7 +168187,7 @@ return { [1]="hits_from_maces_and_sceptres_crush_enemies" } }, - [7187]={ + [7286]={ [1]={ [1]={ [1]={ @@ -165815,7 +168207,7 @@ return { [1]="hits_have_critical_strike_multipler_+_per_monster_power" } }, - [7188]={ + [7287]={ [1]={ [1]={ limit={ @@ -165831,7 +168223,7 @@ return { [1]="hits_have_leech_%_is_instant_per_monster_power" } }, - [7189]={ + [7288]={ [1]={ [1]={ limit={ @@ -165847,7 +168239,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped" } }, - [7190]={ + [7289]={ [1]={ [1]={ limit={ @@ -165863,7 +168255,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped" } }, - [7191]={ + [7290]={ [1]={ [1]={ limit={ @@ -165879,7 +168271,7 @@ return { [1]="hits_ignore_enemy_cold_resistance_if_all_equipped_rings_are_cryonic" } }, - [7192]={ + [7291]={ [1]={ [1]={ limit={ @@ -165895,7 +168287,7 @@ return { [1]="hits_ignore_enemy_fire_resistance_while_you_are_ignited" } }, - [7193]={ + [7292]={ [1]={ [1]={ limit={ @@ -165911,7 +168303,23 @@ return { [1]="hits_ignore_enemy_lightning_resistance_if_all_equipped_rings_are_synaptic" } }, - [7194]={ + [7293]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits ignore Enemy Physical Damage Reduction" + } + }, + stats={ + [1]="hits_ignore_enemy_monster_physical_damage_reduction" + } + }, + [7294]={ [1]={ [1]={ limit={ @@ -165927,7 +168335,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds" } }, - [7195]={ + [7295]={ [1]={ [1]={ limit={ @@ -165952,7 +168360,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [7196]={ + [7296]={ [1]={ [1]={ limit={ @@ -165977,7 +168385,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_have_sacrificial_zeal" } }, - [7197]={ + [7297]={ [1]={ [1]={ [1]={ @@ -166001,7 +168409,7 @@ return { [1]="hoarfrost_on_non_freezing_freezing_hit" } }, - [7198]={ + [7298]={ [1]={ [1]={ limit={ @@ -166017,7 +168425,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond" } }, - [7199]={ + [7299]={ [1]={ [1]={ limit={ @@ -166046,7 +168454,7 @@ return { [1]="holy_hammers_damage_+%_final_if_consuming_power_charge" } }, - [7200]={ + [7300]={ [1]={ [1]={ limit={ @@ -166062,7 +168470,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [7201]={ + [7301]={ [1]={ [1]={ limit={ @@ -166091,7 +168499,7 @@ return { [1]="holy_relic_area_of_effect_+%" } }, - [7202]={ + [7302]={ [1]={ [1]={ limit={ @@ -166107,7 +168515,7 @@ return { [1]="holy_relic_buff_effect_+%" } }, - [7203]={ + [7303]={ [1]={ [1]={ limit={ @@ -166140,7 +168548,7 @@ return { [1]="holy_relic_cooldown_recovery_+%" } }, - [7204]={ + [7304]={ [1]={ [1]={ limit={ @@ -166169,7 +168577,7 @@ return { [1]="holy_relic_damage_+%" } }, - [7205]={ + [7305]={ [1]={ [1]={ limit={ @@ -166207,7 +168615,7 @@ return { [2]="quality_display_hydrosphere_is_gem" } }, - [7206]={ + [7306]={ [1]={ [1]={ limit={ @@ -166223,7 +168631,7 @@ return { [1]="ice_and_lightning_trap_base_penetrate_elemental_resistances_%" } }, - [7207]={ + [7307]={ [1]={ [1]={ limit={ @@ -166239,7 +168647,7 @@ return { [1]="ice_and_lightning_trap_can_be_triggered_by_warcries" } }, - [7208]={ + [7308]={ [1]={ [1]={ limit={ @@ -166255,7 +168663,7 @@ return { [1]="ice_and_lightning_traps_cannot_be_triggered_by_enemies" } }, - [7209]={ + [7309]={ [1]={ [1]={ [1]={ @@ -166275,7 +168683,7 @@ return { [1]="ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen" } }, - [7210]={ + [7310]={ [1]={ [1]={ limit={ @@ -166304,7 +168712,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [7211]={ + [7311]={ [1]={ [1]={ limit={ @@ -166337,7 +168745,7 @@ return { [1]="ice_dash_cooldown_speed_+%" } }, - [7212]={ + [7312]={ [1]={ [1]={ limit={ @@ -166366,7 +168774,7 @@ return { [1]="ice_dash_duration_+%" } }, - [7213]={ + [7313]={ [1]={ [1]={ limit={ @@ -166395,7 +168803,7 @@ return { [1]="ice_dash_travel_distance_+%" } }, - [7214]={ + [7314]={ [1]={ [1]={ limit={ @@ -166411,7 +168819,7 @@ return { [1]="ice_nova_chill_minimum_slow_%" } }, - [7215]={ + [7315]={ [1]={ [1]={ limit={ @@ -166440,7 +168848,7 @@ return { [1]="ice_shot_additional_pierce_per_10_old" } }, - [7216]={ + [7316]={ [1]={ [1]={ limit={ @@ -166469,7 +168877,7 @@ return { [1]="ice_shot_area_angle_+%" } }, - [7217]={ + [7317]={ [1]={ [1]={ limit={ @@ -166494,7 +168902,7 @@ return { [1]="ice_shot_pierce_+" } }, - [7218]={ + [7318]={ [1]={ [1]={ limit={ @@ -166523,7 +168931,7 @@ return { [1]="ice_siphon_trap_chill_effect_+%" } }, - [7219]={ + [7319]={ [1]={ [1]={ limit={ @@ -166552,7 +168960,7 @@ return { [1]="ice_siphon_trap_damage_+%" } }, - [7220]={ + [7320]={ [1]={ [1]={ limit={ @@ -166585,7 +168993,7 @@ return { [1]="ice_siphon_trap_damage_taken_+%_per_beam" } }, - [7221]={ + [7321]={ [1]={ [1]={ limit={ @@ -166614,7 +169022,7 @@ return { [1]="ice_siphon_trap_duration_+%" } }, - [7222]={ + [7322]={ [1]={ [1]={ limit={ @@ -166630,7 +169038,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_nova" } }, - [7223]={ + [7323]={ [1]={ [1]={ limit={ @@ -166646,7 +169054,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_return" } }, - [7224]={ + [7324]={ [1]={ [1]={ limit={ @@ -166679,7 +169087,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [7225]={ + [7325]={ [1]={ [1]={ limit={ @@ -166704,7 +169112,7 @@ return { [1]="ice_spear_number_of_additional_projectiles" } }, - [7226]={ + [7326]={ [1]={ [1]={ limit={ @@ -166720,7 +169128,7 @@ return { [1]="ice_trap_cold_resistance_penetration_%" } }, - [7227]={ + [7327]={ [1]={ [1]={ limit={ @@ -166749,7 +169157,7 @@ return { [1]="ignite_damage_+%_final_if_hit_highest_fire" } }, - [7228]={ + [7328]={ [1]={ [1]={ limit={ @@ -166778,7 +169186,7 @@ return { [1]="ignite_damage_+%_vs_chilled_enemies" } }, - [7229]={ + [7329]={ [1]={ [1]={ limit={ @@ -166807,7 +169215,7 @@ return { [1]="ignite_damage_against_cursed_enemies_+%" } }, - [7230]={ + [7330]={ [1]={ [1]={ limit={ @@ -166823,7 +169231,7 @@ return { [1]="ignite_deal_no_damage" } }, - [7231]={ + [7331]={ [1]={ [1]={ limit={ @@ -166852,7 +169260,7 @@ return { [1]="ignite_duration_-%" } }, - [7232]={ + [7332]={ [1]={ [1]={ limit={ @@ -166868,7 +169276,7 @@ return { [1]="ignited_enemies_explode_for_%_life_as_fire_damage" } }, - [7233]={ + [7333]={ [1]={ [1]={ limit={ @@ -166884,7 +169292,7 @@ return { [1]="ignites_and_chill_apply_elemental_resistance_+" } }, - [7234]={ + [7334]={ [1]={ [1]={ limit={ @@ -166900,7 +169308,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [7235]={ + [7335]={ [1]={ [1]={ limit={ @@ -166916,7 +169324,7 @@ return { [1]="ignores_enemy_cold_resistance" } }, - [7236]={ + [7336]={ [1]={ [1]={ limit={ @@ -166932,7 +169340,7 @@ return { [1]="ignores_enemy_fire_resistance" } }, - [7237]={ + [7337]={ [1]={ [1]={ limit={ @@ -166948,7 +169356,7 @@ return { [1]="ignores_enemy_lightning_resistance" } }, - [7238]={ + [7338]={ [1]={ [1]={ limit={ @@ -166977,7 +169385,7 @@ return { [1]="immortal_call_buff_effect_duration_+%_per_removable_endurance_charge" } }, - [7239]={ + [7339]={ [1]={ [1]={ [1]={ @@ -167010,7 +169418,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [7240]={ + [7340]={ [1]={ [1]={ [1]={ @@ -167030,7 +169438,7 @@ return { [1]="immune_to_all_status_ailments" } }, - [7241]={ + [7341]={ [1]={ [1]={ limit={ @@ -167046,7 +169454,7 @@ return { [1]="immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion" } }, - [7242]={ + [7342]={ [1]={ [1]={ limit={ @@ -167062,7 +169470,7 @@ return { [1]="immune_to_burning_shocks_and_chilled_ground" } }, - [7243]={ + [7343]={ [1]={ [1]={ limit={ @@ -167078,7 +169486,7 @@ return { [1]="immune_to_curses" } }, - [7244]={ + [7344]={ [1]={ [1]={ limit={ @@ -167094,7 +169502,7 @@ return { [1]="immune_to_curses_if_cast_dispair_in_past_10_seconds" } }, - [7245]={ + [7345]={ [1]={ [1]={ limit={ @@ -167110,7 +169518,7 @@ return { [1]="immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse" } }, - [7246]={ + [7346]={ [1]={ [1]={ limit={ @@ -167126,7 +169534,7 @@ return { [1]="immune_to_curses_while_at_least_X_rage" } }, - [7247]={ + [7347]={ [1]={ [1]={ limit={ @@ -167142,7 +169550,7 @@ return { [1]="immune_to_curses_while_channelling" } }, - [7248]={ + [7348]={ [1]={ [1]={ limit={ @@ -167158,7 +169566,7 @@ return { [1]="immune_to_elemental_ailments_while_bleeding" } }, - [7249]={ + [7349]={ [1]={ [1]={ [1]={ @@ -167178,7 +169586,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground" } }, - [7250]={ + [7350]={ [1]={ [1]={ [1]={ @@ -167198,7 +169606,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold" } }, - [7251]={ + [7351]={ [1]={ [1]={ [1]={ @@ -167218,7 +169626,7 @@ return { [1]="immune_to_elemental_ailments_while_you_have_arcane_surge" } }, - [7252]={ + [7352]={ [1]={ [1]={ limit={ @@ -167234,7 +169642,7 @@ return { [1]="immune_to_exposure" } }, - [7253]={ + [7353]={ [1]={ [1]={ limit={ @@ -167250,7 +169658,7 @@ return { [1]="immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds" } }, - [7254]={ + [7354]={ [1]={ [1]={ limit={ @@ -167266,7 +169674,7 @@ return { [1]="immune_to_freeze_and_chill_while_ignited" } }, - [7255]={ + [7355]={ [1]={ [1]={ limit={ @@ -167282,7 +169690,7 @@ return { [1]="immune_to_freeze_while_affected_by_purity_of_ice" } }, - [7256]={ + [7356]={ [1]={ [1]={ limit={ @@ -167298,7 +169706,7 @@ return { [1]="immune_to_hinder" } }, - [7257]={ + [7357]={ [1]={ [1]={ limit={ @@ -167314,7 +169722,7 @@ return { [1]="immune_to_ignite_and_shock" } }, - [7258]={ + [7358]={ [1]={ [1]={ limit={ @@ -167330,7 +169738,7 @@ return { [1]="immune_to_ignite_while_affected_by_purity_of_fire" } }, - [7259]={ + [7359]={ [1]={ [1]={ limit={ @@ -167346,7 +169754,7 @@ return { [1]="immune_to_maim" } }, - [7260]={ + [7360]={ [1]={ [1]={ limit={ @@ -167362,7 +169770,7 @@ return { [1]="immune_to_poison_if_helmet_grants_higher_evasion_than_armour" } }, - [7261]={ + [7361]={ [1]={ [1]={ limit={ @@ -167378,7 +169786,7 @@ return { [1]="immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds" } }, - [7262]={ + [7362]={ [1]={ [1]={ limit={ @@ -167394,7 +169802,7 @@ return { [1]="immune_to_reflected_damage" } }, - [7263]={ + [7363]={ [1]={ [1]={ limit={ @@ -167410,7 +169818,7 @@ return { [1]="immune_to_shock_while_affected_by_purity_of_lightning" } }, - [7264]={ + [7364]={ [1]={ [1]={ [1]={ @@ -167430,7 +169838,7 @@ return { [1]="immune_to_status_ailments_while_focused" } }, - [7265]={ + [7365]={ [1]={ [1]={ limit={ @@ -167446,7 +169854,7 @@ return { [1]="immune_to_wither" } }, - [7266]={ + [7366]={ [1]={ [1]={ limit={ @@ -167462,7 +169870,7 @@ return { [1]="impacting_steel_%_chance_to_not_consume_ammo" } }, - [7267]={ + [7367]={ [1]={ [1]={ limit={ @@ -167491,7 +169899,7 @@ return { [1]="impale_debuff_effect_+%" } }, - [7268]={ + [7368]={ [1]={ [1]={ limit={ @@ -167520,7 +169928,7 @@ return { [1]="impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding" } }, - [7269]={ + [7369]={ [1]={ [1]={ limit={ @@ -167529,7 +169937,7 @@ return { [2]="#" } }, - text="[DNT] Impales you inflict have {0}% increased Effect per Impale on you" + text="DNT Impales you inflict have {0}% increased Effect per Impale on you" }, [2]={ [1]={ @@ -167542,14 +169950,14 @@ return { [2]=-1 } }, - text="[DNT] Impales you inflict have {0}% reduced Effect per Impale on you" + text="DNT Impales you inflict have {0}% reduced Effect per Impale on you" } }, stats={ [1]="impale_effect_+%_per_impale_on_you" } }, - [7270]={ + [7370]={ [1]={ [1]={ [1]={ @@ -167586,7 +169994,7 @@ return { [1]="impale_effect_+%_for_impales_inficted_by_spells" } }, - [7271]={ + [7371]={ [1]={ [1]={ [1]={ @@ -167623,7 +170031,7 @@ return { [1]="impale_effect_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies" } }, - [7272]={ + [7372]={ [1]={ [1]={ limit={ @@ -167652,7 +170060,7 @@ return { [1]="impale_effect_+%_for_impales_inflicted_on_non_impaled_enemies" } }, - [7273]={ + [7373]={ [1]={ [1]={ [1]={ @@ -167689,7 +170097,7 @@ return { [1]="impale_effect_+%_for_impales_past_1000_millisecond" } }, - [7274]={ + [7374]={ [1]={ [1]={ [1]={ @@ -167709,7 +170117,7 @@ return { [1]="impale_effect_+%_max_as_distance_travelled_increases" } }, - [7275]={ + [7375]={ [1]={ [1]={ limit={ @@ -167734,7 +170142,7 @@ return { [1]="impale_hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [7276]={ + [7376]={ [1]={ [1]={ [1]={ @@ -167771,7 +170179,7 @@ return { [1]="impale_inflicted_by_two_handed_weapons_debuff_effect_+%" } }, - [7277]={ + [7377]={ [1]={ [1]={ limit={ @@ -167796,7 +170204,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [7278]={ + [7378]={ [1]={ [1]={ limit={ @@ -167812,7 +170220,7 @@ return { [1]="impale_on_hit_%_chance_with_axes_swords" } }, - [7279]={ + [7379]={ [1]={ [1]={ limit={ @@ -167841,7 +170249,7 @@ return { [1]="impaled_debuff_duration_+%" } }, - [7280]={ + [7380]={ [1]={ [1]={ limit={ @@ -167866,7 +170274,7 @@ return { [1]="impaled_debuff_number_of_reflected_hits" } }, - [7281]={ + [7381]={ [1]={ [1]={ limit={ @@ -167882,7 +170290,7 @@ return { [1]="impales_do_not_consume_hit_on_hit_%_chance" } }, - [7282]={ + [7382]={ [1]={ [1]={ limit={ @@ -167898,7 +170306,7 @@ return { [1]="impales_do_not_consume_hit_on_melee_hit_%_chance" } }, - [7283]={ + [7383]={ [1]={ [1]={ limit={ @@ -167914,7 +170322,7 @@ return { [1]="impales_do_not_consume_hit_strongest_impale_on_melee_hit_%_chance" } }, - [7284]={ + [7384]={ [1]={ [1]={ limit={ @@ -167943,7 +170351,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [7285]={ + [7385]={ [1]={ [1]={ limit={ @@ -167972,7 +170380,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [7286]={ + [7386]={ [1]={ [1]={ limit={ @@ -168001,7 +170409,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [7287]={ + [7387]={ [1]={ [1]={ limit={ @@ -168017,7 +170425,7 @@ return { [1]="incinerate_starts_with_X_additional_stages" } }, - [7288]={ + [7388]={ [1]={ [1]={ limit={ @@ -168033,7 +170441,7 @@ return { [1]="increase_crit_chance_by_lowest_of_str_or_int" } }, - [7289]={ + [7389]={ [1]={ [1]={ limit={ @@ -168049,7 +170457,7 @@ return { [1]="soul_eater_maximum_stacks_+" } }, - [7290]={ + [7390]={ [1]={ [1]={ limit={ @@ -168074,7 +170482,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [7291]={ + [7391]={ [1]={ [1]={ limit={ @@ -168090,7 +170498,7 @@ return { [1]="infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack" } }, - [7292]={ + [7392]={ [1]={ [1]={ limit={ @@ -168106,7 +170514,7 @@ return { [1]="infernal_cry_area_of_effect_+%" } }, - [7293]={ + [7393]={ [1]={ [1]={ limit={ @@ -168122,7 +170530,7 @@ return { [1]="infernal_cry_cooldown_speed_+%" } }, - [7294]={ + [7394]={ [1]={ [1]={ limit={ @@ -168138,7 +170546,7 @@ return { [1]="infernal_cry_exerted_attacks_ignite_damage_+%_final_from_jewel" } }, - [7295]={ + [7395]={ [1]={ [1]={ [1]={ @@ -168158,7 +170566,7 @@ return { [1]="inflict_all_exposure_on_enemies_when_suppressing_their_spell" } }, - [7296]={ + [7396]={ [1]={ [1]={ [1]={ @@ -168178,7 +170586,7 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [7297]={ + [7397]={ [1]={ [1]={ limit={ @@ -168194,7 +170602,7 @@ return { [1]="inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds" } }, - [7298]={ + [7398]={ [1]={ [1]={ [1]={ @@ -168227,7 +170635,7 @@ return { [1]="inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [7299]={ + [7399]={ [1]={ [1]={ limit={ @@ -168243,7 +170651,7 @@ return { [1]="inflict_fire_exposure_if_cast_flammability_in_past_10_seconds" } }, - [7300]={ + [7400]={ [1]={ [1]={ [1]={ @@ -168256,14 +170664,14 @@ return { [2]="#" } }, - text="[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage" + text="DNT Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage" } }, stats={ [1]="inflict_fire_exposure_nearby_on_reaching_maximum_rage" } }, - [7301]={ + [7401]={ [1]={ [1]={ [1]={ @@ -168296,7 +170704,7 @@ return { [1]="inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [7302]={ + [7402]={ [1]={ [1]={ [1]={ @@ -168316,7 +170724,7 @@ return { [1]="inflict_hallowing_flame_on_hit_while_on_consecrated_ground" } }, - [7303]={ + [7403]={ [1]={ [1]={ [1]={ @@ -168349,7 +170757,7 @@ return { [1]="inflict_hallowing_flame_on_melee_hit_chance_%" } }, - [7304]={ + [7404]={ [1]={ [1]={ limit={ @@ -168365,7 +170773,7 @@ return { [1]="inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds" } }, - [7305]={ + [7405]={ [1]={ [1]={ [1]={ @@ -168398,7 +170806,7 @@ return { [1]="inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [7306]={ + [7406]={ [1]={ [1]={ [1]={ @@ -168418,7 +170826,7 @@ return { [1]="inflict_mania_on_nearby_enemies_every_second_while_affected_by_glorious_madness" } }, - [7307]={ + [7407]={ [1]={ [1]={ limit={ @@ -168434,7 +170842,7 @@ return { [1]="inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds" } }, - [7308]={ + [7408]={ [1]={ [1]={ [1]={ @@ -168467,7 +170875,7 @@ return { [1]="inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%" } }, - [7309]={ + [7409]={ [1]={ [1]={ [1]={ @@ -168500,7 +170908,7 @@ return { [1]="inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%" } }, - [7310]={ + [7410]={ [1]={ [1]={ [1]={ @@ -168533,7 +170941,7 @@ return { [1]="inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%" } }, - [7311]={ + [7411]={ [1]={ [1]={ [1]={ @@ -168566,7 +170974,7 @@ return { [1]="inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%" } }, - [7312]={ + [7412]={ [1]={ [1]={ [1]={ @@ -168599,7 +171007,7 @@ return { [1]="inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%" } }, - [7313]={ + [7413]={ [1]={ [1]={ limit={ @@ -168628,7 +171036,7 @@ return { [1]="infusion_effect_+%" } }, - [7314]={ + [7414]={ [1]={ [1]={ limit={ @@ -168657,7 +171065,7 @@ return { [1]="inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%" } }, - [7315]={ + [7415]={ [1]={ [1]={ limit={ @@ -168686,7 +171094,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [7316]={ + [7416]={ [1]={ [1]={ limit={ @@ -168702,7 +171110,7 @@ return { [1]="intelligence_is_0" } }, - [7317]={ + [7417]={ [1]={ [1]={ limit={ @@ -168718,7 +171126,7 @@ return { [1]="intelligence_skill_gem_level_+" } }, - [7318]={ + [7418]={ [1]={ [1]={ limit={ @@ -168747,7 +171155,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [7319]={ + [7419]={ [1]={ [1]={ limit={ @@ -168763,7 +171171,7 @@ return { [1]="intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield" } }, - [7320]={ + [7420]={ [1]={ [1]={ limit={ @@ -168779,7 +171187,7 @@ return { [1]="intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds" } }, - [7321]={ + [7421]={ [1]={ [1]={ [1]={ @@ -168799,7 +171207,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [7322]={ + [7422]={ [1]={ [1]={ [1]={ @@ -168832,7 +171240,7 @@ return { [1]="intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%" } }, - [7323]={ + [7423]={ [1]={ [1]={ limit={ @@ -168848,7 +171256,7 @@ return { [1]="intimidating_cry_area_of_effect_+%" } }, - [7324]={ + [7424]={ [1]={ [1]={ limit={ @@ -168864,7 +171272,7 @@ return { [1]="intimidating_cry_cooldown_speed_+%" } }, - [7325]={ + [7425]={ [1]={ [1]={ limit={ @@ -168893,7 +171301,7 @@ return { [1]="intuitive_link_duration_+%" } }, - [7326]={ + [7426]={ [1]={ [1]={ limit={ @@ -168918,7 +171326,7 @@ return { [1]="iron_flasks_gain_x_charge_when_ward_breaks" } }, - [7327]={ + [7427]={ [1]={ [1]={ limit={ @@ -168943,7 +171351,7 @@ return { [1]="is_blighted_map" } }, - [7328]={ + [7428]={ [1]={ [1]={ limit={ @@ -168972,7 +171380,7 @@ return { [1]="item_found_gold_+%" } }, - [7329]={ + [7429]={ [1]={ [1]={ [1]={ @@ -169009,7 +171417,7 @@ return { [1]="item_found_quantity_+%_per_chest_opened_recently" } }, - [7330]={ + [7430]={ [1]={ [1]={ limit={ @@ -169025,7 +171433,7 @@ return { [1]="item_found_rarity_+1%_per_X_rampage_stacks" } }, - [7331]={ + [7431]={ [1]={ [1]={ limit={ @@ -169041,7 +171449,7 @@ return { [1]="item_is_haunted" } }, - [7332]={ + [7432]={ [1]={ [1]={ [1]={ @@ -169065,7 +171473,7 @@ return { [1]="kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms" } }, - [7333]={ + [7433]={ [1]={ [1]={ [1]={ @@ -169085,7 +171493,7 @@ return { [1]="keystone_shepherd_of_souls_if_at_least_4_corrupted_items_equipped" } }, - [7334]={ + [7434]={ [1]={ [1]={ [1]={ @@ -169105,7 +171513,7 @@ return { [1]="keystone_everlasting_sacrifice_if_at_least_6_corrupted_items_equipped" } }, - [7335]={ + [7435]={ [1]={ [1]={ [1]={ @@ -169125,7 +171533,7 @@ return { [1]="keystone_sacrifice_of_blood_if_at_least_8_corrupted_items_equipped" } }, - [7336]={ + [7436]={ [1]={ [1]={ limit={ @@ -169150,7 +171558,7 @@ return { [1]="killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance" } }, - [7337]={ + [7437]={ [1]={ [1]={ limit={ @@ -169179,7 +171587,7 @@ return { [1]="killed_monster_dropped_gold_+%" } }, - [7338]={ + [7438]={ [1]={ [1]={ limit={ @@ -169195,7 +171603,7 @@ return { [1]="killing_blow_consumes_corpse_restore_10%_life_chance_%" } }, - [7339]={ + [7439]={ [1]={ [1]={ limit={ @@ -169220,7 +171628,7 @@ return { [1]="kills_count_twice_for_rampage_%" } }, - [7340]={ + [7440]={ [1]={ [1]={ limit={ @@ -169236,7 +171644,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [7341]={ + [7441]={ [1]={ [1]={ limit={ @@ -169265,7 +171673,7 @@ return { [1]="kinetic_bolt_attack_speed_+%" } }, - [7342]={ + [7442]={ [1]={ [1]={ [1]={ @@ -169302,7 +171710,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%" } }, - [7343]={ + [7443]={ [1]={ [1]={ limit={ @@ -169318,7 +171726,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%" } }, - [7344]={ + [7444]={ [1]={ [1]={ limit={ @@ -169347,7 +171755,7 @@ return { [1]="kinetic_bolt_projectile_speed_+%" } }, - [7345]={ + [7445]={ [1]={ [1]={ limit={ @@ -169372,7 +171780,7 @@ return { [1]="kinetic_wand_base_number_of_zig_zags" } }, - [7346]={ + [7446]={ [1]={ [1]={ limit={ @@ -169388,7 +171796,7 @@ return { [1]="kinetic_wand_implicit_cannot_roll_caster_modifiers" } }, - [7347]={ + [7447]={ [1]={ [1]={ [1]={ @@ -169408,7 +171816,7 @@ return { [1]="knockback_on_crit_with_projectile_damage" } }, - [7348]={ + [7448]={ [1]={ [1]={ limit={ @@ -169433,7 +171841,7 @@ return { [1]="labyrinth_darkshrine_additional_divine_font_use_display" } }, - [7349]={ + [7449]={ [1]={ [1]={ limit={ @@ -169449,7 +171857,7 @@ return { [1]="labyrinth_darkshrine_boss_room_traps_are_disabled" } }, - [7350]={ + [7450]={ [1]={ [1]={ limit={ @@ -169474,7 +171882,7 @@ return { [1]="labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x" } }, - [7351]={ + [7451]={ [1]={ [1]={ limit={ @@ -169499,7 +171907,7 @@ return { [1]="labyrinth_darkshrine_izaro_dropped_unique_items_+" } }, - [7352]={ + [7452]={ [1]={ [1]={ limit={ @@ -169524,7 +171932,7 @@ return { [1]="labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys" } }, - [7353]={ + [7453]={ [1]={ [1]={ limit={ @@ -169553,7 +171961,7 @@ return { [1]="labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%" } }, - [7354]={ + [7454]={ [1]={ [1]={ limit={ @@ -169713,7 +172121,7 @@ return { [1]="labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth" } }, - [7355]={ + [7455]={ [1]={ [1]={ limit={ @@ -169738,7 +172146,7 @@ return { [1]="labyrinth_owner_x_addition_enchants" } }, - [7356]={ + [7456]={ [1]={ [1]={ limit={ @@ -169767,7 +172175,7 @@ return { [1]="lancing_steel_damage_+%" } }, - [7357]={ + [7457]={ [1]={ [1]={ [1]={ @@ -169800,7 +172208,7 @@ return { [1]="lancing_steel_impale_chance_%" } }, - [7358]={ + [7458]={ [1]={ [1]={ limit={ @@ -169825,7 +172233,7 @@ return { [1]="lancing_steel_number_of_additional_projectiles" } }, - [7359]={ + [7459]={ [1]={ [1]={ limit={ @@ -169841,7 +172249,7 @@ return { [1]="lancing_steel_%_chance_to_not_consume_ammo" } }, - [7360]={ + [7460]={ [1]={ [1]={ limit={ @@ -169866,7 +172274,7 @@ return { [1]="lancing_steel_primary_proj_pierce_num" } }, - [7361]={ + [7461]={ [1]={ [1]={ limit={ @@ -169882,7 +172290,7 @@ return { [1]="leech_energy_shield_instead_of_life" } }, - [7362]={ + [7462]={ [1]={ [1]={ limit={ @@ -169911,7 +172319,7 @@ return { [1]="leech_mastery_hit_damage_+%_final_vs_leech_immune" } }, - [7363]={ + [7463]={ [1]={ [1]={ limit={ @@ -169927,7 +172335,7 @@ return { [1]="leech_%_is_instant" } }, - [7364]={ + [7464]={ [1]={ [1]={ [1]={ @@ -169947,7 +172355,7 @@ return { [1]="life_and_energy_shield_degeneration_permyriad_per_minute_per_minion" } }, - [7365]={ + [7465]={ [1]={ [1]={ limit={ @@ -169976,7 +172384,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%" } }, - [7366]={ + [7466]={ [1]={ [1]={ [1]={ @@ -170013,7 +172421,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently" } }, - [7367]={ + [7467]={ [1]={ [1]={ limit={ @@ -170042,7 +172450,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%" } }, - [7368]={ + [7468]={ [1]={ [1]={ limit={ @@ -170071,7 +172479,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_power_charge" } }, - [7369]={ + [7469]={ [1]={ [1]={ limit={ @@ -170100,7 +172508,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence" } }, - [7370]={ + [7470]={ [1]={ [1]={ [1]={ @@ -170132,7 +172540,7 @@ return { [1]="life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently" } }, - [7371]={ + [7471]={ [1]={ [1]={ [1]={ @@ -170152,7 +172560,7 @@ return { [1]="life_degeneration_permyriad_per_minute_per_minion" } }, - [7372]={ + [7472]={ [1]={ [1]={ limit={ @@ -170177,7 +172585,7 @@ return { [1]="life_flask_charges_recovered_per_3_seconds" } }, - [7373]={ + [7473]={ [1]={ [1]={ [1]={ @@ -170210,7 +172618,7 @@ return { [1]="life_flask_charges_recovered_per_3_seconds_on_low_life" } }, - [7374]={ + [7474]={ [1]={ [1]={ limit={ @@ -170226,7 +172634,7 @@ return { [1]="life_flask_effects_are_not_removed_at_full_life" } }, - [7375]={ + [7475]={ [1]={ [1]={ [1]={ @@ -170246,7 +172654,7 @@ return { [1]="life_flask_recovery_is_instant_while_on_low_life" } }, - [7376]={ + [7476]={ [1]={ [1]={ [1]={ @@ -170266,7 +172674,7 @@ return { [1]="life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently" } }, - [7377]={ + [7477]={ [1]={ [1]={ [1]={ @@ -170286,7 +172694,7 @@ return { [1]="life_flasks_gain_X_charges_on_suppressing_spell" } }, - [7378]={ + [7478]={ [1]={ [1]={ limit={ @@ -170302,7 +172710,7 @@ return { [1]="life_flasks_gain_a_charge_on_hit_once_per_second" } }, - [7379]={ + [7479]={ [1]={ [1]={ limit={ @@ -170327,7 +172735,7 @@ return { [1]="life_flasks_gain_x_charges_when_you_hit_your_marked_enemy" } }, - [7380]={ + [7480]={ [1]={ [1]={ limit={ @@ -170356,7 +172764,7 @@ return { [1]="life_gain_per_target_hit_while_affected_by_vitality" } }, - [7381]={ + [7481]={ [1]={ [1]={ [1]={ @@ -170393,7 +172801,7 @@ return { [1]="life_gain_per_target_if_have_used_a_vaal_skill_recently" } }, - [7382]={ + [7482]={ [1]={ [1]={ limit={ @@ -170422,7 +172830,7 @@ return { [1]="life_gained_on_attack_hit_vs_cursed_enemies" } }, - [7383]={ + [7483]={ [1]={ [1]={ limit={ @@ -170438,7 +172846,7 @@ return { [1]="life_gained_on_cull" } }, - [7384]={ + [7484]={ [1]={ [1]={ limit={ @@ -170454,7 +172862,7 @@ return { [1]="life_gained_on_kill_per_wither_stack_on_slain_enemy_%" } }, - [7385]={ + [7485]={ [1]={ [1]={ limit={ @@ -170470,7 +172878,7 @@ return { [1]="life_leech_applies_to_energy_shield_on_full_life" } }, - [7386]={ + [7486]={ [1]={ [1]={ [1]={ @@ -170490,7 +172898,7 @@ return { [1]="life_leech_from_any_damage_permyriad_while_affected_by_vitality" } }, - [7387]={ + [7487]={ [1]={ [1]={ [1]={ @@ -170514,7 +172922,7 @@ return { [1]="life_leech_from_any_damage_permyriad_while_focused" } }, - [7388]={ + [7488]={ [1]={ [1]={ [1]={ @@ -170538,7 +172946,7 @@ return { [1]="enemy_life_leech_from_any_damage_permyriad_while_focused" } }, - [7389]={ + [7489]={ [1]={ [1]={ [1]={ @@ -170562,7 +172970,7 @@ return { [1]="life_leech_from_any_damage_permyriad_with_at_least_5_total_power_frenzy_endurance_charges" } }, - [7390]={ + [7490]={ [1]={ [1]={ [1]={ @@ -170586,7 +172994,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_per_frenzy_charge" } }, - [7391]={ + [7491]={ [1]={ [1]={ [1]={ @@ -170610,7 +173018,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_vs_maimed_enemies" } }, - [7392]={ + [7492]={ [1]={ [1]={ [1]={ @@ -170634,7 +173042,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_vs_taunted_enemies" } }, - [7393]={ + [7493]={ [1]={ [1]={ [1]={ @@ -170654,7 +173062,7 @@ return { [1]="life_leech_from_fire_damage_permyriad_while_affected_by_anger" } }, - [7394]={ + [7494]={ [1]={ [1]={ [1]={ @@ -170678,7 +173086,7 @@ return { [1]="life_leech_from_fire_damage_while_ignited_permyriad" } }, - [7395]={ + [7495]={ [1]={ [1]={ limit={ @@ -170694,7 +173102,7 @@ return { [1]="life_leech_from_minion_damage_%" } }, - [7396]={ + [7496]={ [1]={ [1]={ [1]={ @@ -170714,7 +173122,7 @@ return { [1]="life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge" } }, - [7397]={ + [7497]={ [1]={ [1]={ limit={ @@ -170730,7 +173138,7 @@ return { [1]="life_leech_is_instant_for_exerted_attacks" } }, - [7398]={ + [7498]={ [1]={ [1]={ [1]={ @@ -170754,7 +173162,7 @@ return { [1]="life_leech_on_damage_taken_%_permyriad_per_socketed_red_gem" } }, - [7399]={ + [7499]={ [1]={ [1]={ [1]={ @@ -170778,7 +173186,7 @@ return { [1]="life_leech_on_damage_taken_%_permyriad" } }, - [7400]={ + [7500]={ [1]={ [1]={ limit={ @@ -170794,7 +173202,7 @@ return { [1]="life_leech_%_is_instant" } }, - [7401]={ + [7501]={ [1]={ [1]={ limit={ @@ -170810,7 +173218,7 @@ return { [1]="life_leech_%_is_instant_per_defiance" } }, - [7402]={ + [7502]={ [1]={ [1]={ limit={ @@ -170826,7 +173234,7 @@ return { [1]="life_leech_%_is_instant_per_equipped_claw" } }, - [7403]={ + [7503]={ [1]={ [1]={ [1]={ @@ -170850,7 +173258,7 @@ return { [1]="life_leech_permyriad_vs_poisoned_enemies" } }, - [7404]={ + [7504]={ [1]={ [1]={ limit={ @@ -170866,7 +173274,7 @@ return { [1]="life_leech_speed_is_doubled" } }, - [7405]={ + [7505]={ [1]={ [1]={ [1]={ @@ -170890,7 +173298,7 @@ return { [1]="life_loss_%_per_minute_if_have_been_hit_recently" } }, - [7406]={ + [7506]={ [1]={ [1]={ [1]={ @@ -170910,7 +173318,7 @@ return { [1]="life_loss_%_per_minute_per_rage_while_not_losing_rage" } }, - [7407]={ + [7507]={ [1]={ [1]={ [1]={ @@ -170963,7 +173371,7 @@ return { [1]="life_mana_es_leech_speed_+%" } }, - [7408]={ + [7508]={ [1]={ [1]={ limit={ @@ -170992,7 +173400,7 @@ return { [1]="life_mana_es_recovery_rate_+%_per_different_tribe_tattoos_allocated" } }, - [7409]={ + [7509]={ [1]={ [1]={ limit={ @@ -171021,7 +173429,7 @@ return { [1]="life_mana_es_recovery_rate_+%_per_endurance_charge" } }, - [7410]={ + [7510]={ [1]={ [1]={ limit={ @@ -171037,7 +173445,7 @@ return { [1]="life_mastery_count_maximum_life_+%_final" } }, - [7411]={ + [7511]={ [1]={ [1]={ limit={ @@ -171053,7 +173461,7 @@ return { [1]="life_per_level" } }, - [7412]={ + [7512]={ [1]={ [1]={ [1]={ @@ -171073,7 +173481,7 @@ return { [1]="life_recoup_also_applies_to_energy_shield" } }, - [7413]={ + [7513]={ [1]={ [1]={ [1]={ @@ -171093,7 +173501,7 @@ return { [1]="life_recoup_applies_to_energy_shield_instead" } }, - [7414]={ + [7514]={ [1]={ [1]={ limit={ @@ -171109,7 +173517,7 @@ return { [1]="life_recovery_from_flasks_instead_applies_to_nearby_allies_%" } }, - [7415]={ + [7515]={ [1]={ [1]={ limit={ @@ -171125,7 +173533,7 @@ return { [1]="life_recovery_from_regeneration_is_not_applied" } }, - [7416]={ + [7516]={ [1]={ [1]={ [1]={ @@ -171162,7 +173570,7 @@ return { [1]="life_recovery_+%_from_flasks_while_on_low_life" } }, - [7417]={ + [7517]={ [1]={ [1]={ [1]={ @@ -171199,7 +173607,7 @@ return { [1]="life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [7418]={ + [7518]={ [1]={ [1]={ [1]={ @@ -171236,7 +173644,7 @@ return { [1]="life_recovery_rate_+%_if_havent_killed_recently" } }, - [7419]={ + [7519]={ [1]={ [1]={ limit={ @@ -171265,7 +173673,7 @@ return { [1]="life_recovery_rate_+%_while_affected_by_vitality" } }, - [7420]={ + [7520]={ [1]={ [1]={ [1]={ @@ -171285,7 +173693,7 @@ return { [1]="life_regeneration_%_per_minute_if_stunned_an_enemy_recently" } }, - [7421]={ + [7521]={ [1]={ [1]={ [1]={ @@ -171309,7 +173717,7 @@ return { [1]="life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance" } }, - [7422]={ + [7522]={ [1]={ [1]={ [1]={ @@ -171329,7 +173737,7 @@ return { [1]="life_regeneration_per_minute_per_active_buff" } }, - [7423]={ + [7523]={ [1]={ [1]={ [1]={ @@ -171349,7 +173757,7 @@ return { [1]="life_regeneration_per_minute_per_nearby_corpse" } }, - [7424]={ + [7524]={ [1]={ [1]={ [1]={ @@ -171373,7 +173781,7 @@ return { [1]="life_regeneration_per_minute_%_per_ailment_affecting_you" } }, - [7425]={ + [7525]={ [1]={ [1]={ [1]={ @@ -171393,7 +173801,7 @@ return { [1]="life_regeneration_per_minute_%_per_fortification" } }, - [7426]={ + [7526]={ [1]={ [1]={ [1]={ @@ -171413,7 +173821,7 @@ return { [1]="life_regeneration_per_minute_%_while_affected_by_guard_skill" } }, - [7427]={ + [7527]={ [1]={ [1]={ [1]={ @@ -171433,7 +173841,7 @@ return { [1]="life_regeneration_per_minute_%_while_burning" } }, - [7428]={ + [7528]={ [1]={ [1]={ [1]={ @@ -171453,7 +173861,7 @@ return { [1]="life_regeneration_per_minute_%_while_channelling" } }, - [7429]={ + [7529]={ [1]={ [1]={ [1]={ @@ -171473,7 +173881,7 @@ return { [1]="life_regeneration_per_minute_while_affected_by_vitality" } }, - [7430]={ + [7530]={ [1]={ [1]={ [1]={ @@ -171493,7 +173901,7 @@ return { [1]="life_regeneration_per_minute_while_ignited" } }, - [7431]={ + [7531]={ [1]={ [1]={ [1]={ @@ -171513,7 +173921,7 @@ return { [1]="life_regeneration_per_minute_while_moving" } }, - [7432]={ + [7532]={ [1]={ [1]={ [1]={ @@ -171533,7 +173941,7 @@ return { [1]="life_regeneration_per_minute_while_you_have_avians_flight" } }, - [7433]={ + [7533]={ [1]={ [1]={ [1]={ @@ -171557,7 +173965,7 @@ return { [1]="life_regeneration_%_per_minute_if_detonated_mine_recently" } }, - [7434]={ + [7534]={ [1]={ [1]={ [1]={ @@ -171581,7 +173989,7 @@ return { [1]="life_regeneration_%_per_minute_if_player_minion_died_recently" } }, - [7435]={ + [7535]={ [1]={ [1]={ [1]={ @@ -171605,7 +174013,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently" } }, - [7436]={ + [7536]={ [1]={ [1]={ [1]={ @@ -171625,7 +174033,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_affected_by_vitality" } }, - [7437]={ + [7537]={ [1]={ [1]={ [1]={ @@ -171649,7 +174057,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [7438]={ + [7538]={ [1]={ [1]={ [1]={ @@ -171673,7 +174081,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [7439]={ + [7539]={ [1]={ [1]={ [1]={ @@ -171693,7 +174101,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds" } }, - [7440]={ + [7540]={ [1]={ [1]={ [1]={ @@ -171717,7 +174125,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_have_been_hit_recently" } }, - [7441]={ + [7541]={ [1]={ [1]={ [1]={ @@ -171741,7 +174149,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [7442]={ + [7542]={ [1]={ [1]={ [1]={ @@ -171761,7 +174169,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds" } }, - [7443]={ + [7543]={ [1]={ [1]={ [1]={ @@ -171774,14 +174182,14 @@ return { [2]="#" } }, - text="Regenerate {0}% of Life per second per 500 Maximum Energy Shield" + text="Regenerate {0}% of Life per second per 500 Player Maximum Energy Shield" } }, stats={ [1]="life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield" } }, - [7444]={ + [7544]={ [1]={ [1]={ [1]={ @@ -171805,7 +174213,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%" } }, - [7445]={ + [7545]={ [1]={ [1]={ [1]={ @@ -171825,7 +174233,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%" } }, - [7446]={ + [7546]={ [1]={ [1]={ [1]={ @@ -171845,7 +174253,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_power_charge" } }, - [7447]={ + [7547]={ [1]={ [1]={ [1]={ @@ -171865,7 +174273,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_raised_zombie" } }, - [7448]={ + [7548]={ [1]={ [1]={ [1]={ @@ -171889,7 +174297,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%" } }, - [7449]={ + [7549]={ [1]={ [1]={ [1]={ @@ -171909,7 +174317,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_moving" } }, - [7450]={ + [7550]={ [1]={ [1]={ [1]={ @@ -171929,7 +174337,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_stationary" } }, - [7451]={ + [7551]={ [1]={ [1]={ [1]={ @@ -171949,7 +174357,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_using_flask" } }, - [7452]={ + [7552]={ [1]={ [1]={ [1]={ @@ -171969,7 +174377,7 @@ return { [1]="life_regeneration_rate_per_minute_%_with_400_or_more_strength" } }, - [7453]={ + [7553]={ [1]={ [1]={ [1]={ @@ -171993,7 +174401,23 @@ return { [1]="life_regeneration_rate_per_minute_while_on_low_life" } }, - [7454]={ + [7554]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Light Radius also apply to Effect\nof your Link Skill Buffs on your Mercenary" + } + }, + stats={ + [1]="light_radius_additive_modifiers_apply_to_buff_effect_of_link_skills_if_link_target_is_your_permanent_mercenary" + } + }, + [7555]={ [1]={ [1]={ limit={ @@ -172009,7 +174433,7 @@ return { [1]="light_radius_increases_apply_to_accuracy" } }, - [7455]={ + [7556]={ [1]={ [1]={ limit={ @@ -172025,7 +174449,7 @@ return { [1]="light_radius_increases_apply_to_area_of_effect" } }, - [7456]={ + [7557]={ [1]={ [1]={ [1]={ @@ -172062,7 +174486,7 @@ return { [1]="lightning_ailment_duration_+%" } }, - [7457]={ + [7558]={ [1]={ [1]={ [1]={ @@ -172099,7 +174523,7 @@ return { [1]="lightning_ailment_effect_+%_against_chilled_enemies" } }, - [7458]={ + [7559]={ [1]={ [1]={ [1]={ @@ -172136,7 +174560,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [7459]={ + [7560]={ [1]={ [1]={ [1]={ @@ -172173,7 +174597,7 @@ return { [1]="lightning_ailments_effect_+%_final_if_hit_highest_lightning" } }, - [7460]={ + [7561]={ [1]={ [1]={ limit={ @@ -172189,7 +174613,7 @@ return { [1]="lightning_and_chaos_damage_resistance_%" } }, - [7461]={ + [7562]={ [1]={ [1]={ [1]={ @@ -172209,7 +174633,7 @@ return { [1]="lightning_arrow_and_ice_shot_all_damage_can_ignite" } }, - [7462]={ + [7563]={ [1]={ [1]={ [1]={ @@ -172229,7 +174653,7 @@ return { [1]="lightning_arrow_and_ice_shot_ignite_damage_+100%_final_chance" } }, - [7463]={ + [7564]={ [1]={ [1]={ limit={ @@ -172254,7 +174678,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [7464]={ + [7565]={ [1]={ [1]={ limit={ @@ -172270,7 +174694,7 @@ return { [1]="lightning_conduit_and_galvanic_field_shatter_on_killing_blow" } }, - [7465]={ + [7566]={ [1]={ [1]={ limit={ @@ -172299,7 +174723,7 @@ return { [1]="lightning_conduit_area_of_effect_+%" } }, - [7466]={ + [7567]={ [1]={ [1]={ limit={ @@ -172315,7 +174739,7 @@ return { [1]="lightning_conduit_cast_speed_+%" } }, - [7467]={ + [7568]={ [1]={ [1]={ limit={ @@ -172344,7 +174768,7 @@ return { [1]="lightning_conduit_damage_+%" } }, - [7468]={ + [7569]={ [1]={ [1]={ limit={ @@ -172360,7 +174784,7 @@ return { [1]="lightning_damage_can_ignite" } }, - [7469]={ + [7570]={ [1]={ [1]={ limit={ @@ -172376,7 +174800,7 @@ return { [1]="lightning_damage_+%_per_lightning_resistance_above_75" } }, - [7470]={ + [7571]={ [1]={ [1]={ limit={ @@ -172392,7 +174816,7 @@ return { [1]="lightning_damage_%_to_add_as_chaos_per_power_charge" } }, - [7471]={ + [7572]={ [1]={ [1]={ limit={ @@ -172408,7 +174832,7 @@ return { [1]="lightning_damage_%_to_add_as_cold_per_2%_shock_effect_on_enemy" } }, - [7472]={ + [7573]={ [1]={ [1]={ limit={ @@ -172424,7 +174848,7 @@ return { [1]="lightning_damage_%_to_add_as_cold_vs_chilled_enemies" } }, - [7473]={ + [7574]={ [1]={ [1]={ limit={ @@ -172453,7 +174877,7 @@ return { [1]="lightning_damage_+%_while_affected_by_herald_of_thunder" } }, - [7474]={ + [7575]={ [1]={ [1]={ limit={ @@ -172482,7 +174906,7 @@ return { [1]="lightning_damage_+%_while_affected_by_wrath" } }, - [7475]={ + [7576]={ [1]={ [1]={ limit={ @@ -172498,7 +174922,7 @@ return { [1]="lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [7476]={ + [7577]={ [1]={ [1]={ [1]={ @@ -172518,7 +174942,7 @@ return { [1]="lightning_damage_taken_goes_to_life_over_4_seconds_%" } }, - [7477]={ + [7578]={ [1]={ [1]={ limit={ @@ -172534,7 +174958,7 @@ return { [1]="lightning_damage_taken_+" } }, - [7478]={ + [7579]={ [1]={ [1]={ limit={ @@ -172563,7 +174987,7 @@ return { [1]="lightning_damage_with_attack_skills_+%" } }, - [7479]={ + [7580]={ [1]={ [1]={ limit={ @@ -172592,7 +175016,7 @@ return { [1]="lightning_damage_with_spell_skills_+%" } }, - [7480]={ + [7581]={ [1]={ [1]={ limit={ @@ -172621,7 +175045,7 @@ return { [1]="lightning_explosion_mine_aura_effect_+%" } }, - [7481]={ + [7582]={ [1]={ [1]={ limit={ @@ -172650,7 +175074,7 @@ return { [1]="lightning_explosion_mine_damage_+%" } }, - [7482]={ + [7583]={ [1]={ [1]={ limit={ @@ -172679,7 +175103,7 @@ return { [1]="lightning_explosion_mine_throwing_speed_+%" } }, - [7483]={ + [7584]={ [1]={ [1]={ [1]={ @@ -172699,7 +175123,7 @@ return { [1]="lightning_exposure_on_hit_magnitude" } }, - [7484]={ + [7585]={ [1]={ [1]={ limit={ @@ -172715,7 +175139,7 @@ return { [1]="lightning_hit_and_dot_damage_%_taken_as_fire" } }, - [7485]={ + [7586]={ [1]={ [1]={ limit={ @@ -172744,7 +175168,7 @@ return { [1]="lightning_hit_damage_+%_vs_chilled_enemies" } }, - [7486]={ + [7587]={ [1]={ [1]={ limit={ @@ -172760,7 +175184,7 @@ return { [1]="lightning_resistance_cannot_be_penetrated" } }, - [7487]={ + [7588]={ [1]={ [1]={ limit={ @@ -172776,7 +175200,7 @@ return { [1]="lightning_resistance_does_not_apply_to_lighting_damage" } }, - [7488]={ + [7589]={ [1]={ [1]={ [1]={ @@ -172796,7 +175220,7 @@ return { [1]="lightning_skill_chance_to_inflict_lightning_exposure_%" } }, - [7489]={ + [7590]={ [1]={ [1]={ limit={ @@ -172812,7 +175236,7 @@ return { [1]="lightning_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped" } }, - [7490]={ + [7591]={ [1]={ [1]={ limit={ @@ -172828,7 +175252,7 @@ return { [1]="lightning_skill_gem_level_+" } }, - [7491]={ + [7592]={ [1]={ [1]={ [1]={ @@ -172865,7 +175289,7 @@ return { [1]="lightning_skill_mana_cost_+%_final_while_shocked" } }, - [7492]={ + [7593]={ [1]={ [1]={ [1]={ @@ -172902,7 +175326,7 @@ return { [1]="lightning_skill_stun_threshold_+%" } }, - [7493]={ + [7594]={ [1]={ [1]={ [1]={ @@ -172922,7 +175346,7 @@ return { [1]="lightning_skills_chance_to_poison_on_hit_%" } }, - [7494]={ + [7595]={ [1]={ [1]={ limit={ @@ -172938,7 +175362,7 @@ return { [1]="lightning_spell_physical_damage_%_to_convert_to_lightning" } }, - [7495]={ + [7596]={ [1]={ [1]={ [1]={ @@ -172958,7 +175382,7 @@ return { [1]="lightning_strike_and_frost_blades_all_damage_can_ignite" } }, - [7496]={ + [7597]={ [1]={ [1]={ [1]={ @@ -172978,7 +175402,7 @@ return { [1]="lightning_strike_and_frost_blades_ignite_damage_+100%_final_chance" } }, - [7497]={ + [7598]={ [1]={ [1]={ limit={ @@ -173007,7 +175431,7 @@ return { [1]="lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit" } }, - [7498]={ + [7599]={ [1]={ [1]={ limit={ @@ -173036,7 +175460,7 @@ return { [1]="lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent" } }, - [7499]={ + [7600]={ [1]={ [1]={ limit={ @@ -173061,7 +175485,7 @@ return { [1]="lightning_tower_trap_additional_number_of_beams" } }, - [7500]={ + [7601]={ [1]={ [1]={ limit={ @@ -173090,7 +175514,7 @@ return { [1]="lightning_tower_trap_cast_speed_+%" } }, - [7501]={ + [7602]={ [1]={ [1]={ limit={ @@ -173119,7 +175543,7 @@ return { [1]="lightning_tower_trap_cooldown_speed_+%" } }, - [7502]={ + [7603]={ [1]={ [1]={ limit={ @@ -173148,7 +175572,7 @@ return { [1]="lightning_tower_trap_damage_+%" } }, - [7503]={ + [7604]={ [1]={ [1]={ limit={ @@ -173177,7 +175601,7 @@ return { [1]="lightning_tower_trap_duration_+%" } }, - [7504]={ + [7605]={ [1]={ [1]={ limit={ @@ -173206,7 +175630,7 @@ return { [1]="lightning_tower_trap_throwing_speed_+%" } }, - [7505]={ + [7606]={ [1]={ [1]={ limit={ @@ -173222,7 +175646,7 @@ return { [1]="lightning_trap_lightning_resistance_penetration_%" } }, - [7506]={ + [7607]={ [1]={ [1]={ limit={ @@ -173251,7 +175675,7 @@ return { [1]="lightning_trap_shock_effect_+%" } }, - [7507]={ + [7608]={ [1]={ [1]={ limit={ @@ -173267,7 +175691,7 @@ return { [1]="link_buff_effect_+%_on_animate_guardian" } }, - [7508]={ + [7609]={ [1]={ [1]={ limit={ @@ -173296,7 +175720,7 @@ return { [1]="link_effect_+%_when_50%_expired" } }, - [7509]={ + [7610]={ [1]={ [1]={ limit={ @@ -173317,7 +175741,7 @@ return { [2]="link_grace_period_8_second_override" } }, - [7510]={ + [7611]={ [1]={ [1]={ limit={ @@ -173346,7 +175770,7 @@ return { [1]="link_skill_buff_effect_+%" } }, - [7511]={ + [7612]={ [1]={ [1]={ [1]={ @@ -173383,7 +175807,7 @@ return { [1]="link_skill_buff_effect_+%_if_linked_target_recently" } }, - [7512]={ + [7613]={ [1]={ [1]={ limit={ @@ -173412,7 +175836,40 @@ return { [1]="link_skill_cast_speed_+%" } }, - [7513]={ + [7614]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Cost of Link Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="canonical_line", + v=true + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Cost of Link Skills" + } + }, + stats={ + [1]="link_skill_cost_+%_final" + } + }, + [7615]={ [1]={ [1]={ limit={ @@ -173421,14 +175878,14 @@ return { [2]="#" } }, - text="[DNT] Link Skills Cost Life instead of Mana" + text="DNT Link Skills Cost Life instead of Mana" } }, stats={ [1]="link_skill_cost_life_instead_of_mana" } }, - [7514]={ + [7616]={ [1]={ [1]={ limit={ @@ -173457,7 +175914,7 @@ return { [1]="link_skill_duration_+%" } }, - [7515]={ + [7617]={ [1]={ [1]={ limit={ @@ -173473,7 +175930,23 @@ return { [1]="link_skill_gem_level_+" } }, - [7516]={ + [7618]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Link Skills have infinite Attachment Duration" + } + }, + stats={ + [1]="link_skill_have_infinite_attachment_duration" + } + }, + [7619]={ [1]={ [1]={ limit={ @@ -173489,7 +175962,7 @@ return { [1]="link_skill_link_target_cannot_die_for_X_seconds" } }, - [7517]={ + [7620]={ [1]={ [1]={ limit={ @@ -173505,7 +175978,7 @@ return { [1]="link_skill_lose_no_experience_on_link_target_death" } }, - [7518]={ + [7621]={ [1]={ [1]={ limit={ @@ -173538,7 +176011,7 @@ return { [1]="link_skill_mana_cost_+%" } }, - [7519]={ + [7622]={ [1]={ [1]={ limit={ @@ -173567,7 +176040,7 @@ return { [1]="link_skill_range_+%" } }, - [7520]={ + [7623]={ [1]={ [1]={ [1]={ @@ -173587,7 +176060,7 @@ return { [1]="link_skills_allies_in_beam_lucky_elemental_damage" } }, - [7521]={ + [7624]={ [1]={ [1]={ [1]={ @@ -173607,7 +176080,7 @@ return { [1]="link_skills_allies_in_beam_max_elemental_resistance_%" } }, - [7522]={ + [7625]={ [1]={ [1]={ limit={ @@ -173623,7 +176096,7 @@ return { [1]="link_skills_can_target_animate_guardian" } }, - [7523]={ + [7626]={ [1]={ [1]={ limit={ @@ -173639,7 +176112,7 @@ return { [1]="link_skills_can_target_minions" } }, - [7524]={ + [7627]={ [1]={ [1]={ [1]={ @@ -173659,7 +176132,7 @@ return { [1]="link_skills_enemies_in_beam_aoe_cannot_inflict_elemental_ailments" } }, - [7525]={ + [7628]={ [1]={ [1]={ limit={ @@ -173675,7 +176148,7 @@ return { [1]="link_skills_enemies_in_beam_elemental_resistance_%" } }, - [7526]={ + [7629]={ [1]={ [1]={ limit={ @@ -173704,7 +176177,7 @@ return { [1]="link_skills_grant_damage_+%" } }, - [7527]={ + [7630]={ [1]={ [1]={ limit={ @@ -173733,7 +176206,7 @@ return { [1]="link_skills_grant_damage_taken_+%" } }, - [7528]={ + [7631]={ [1]={ [1]={ limit={ @@ -173762,7 +176235,7 @@ return { [1]="link_skills_grant_minions_damage_taken_+%_final_from_hallowed_monarch" } }, - [7529]={ + [7632]={ [1]={ [1]={ [1]={ @@ -173782,7 +176255,7 @@ return { [1]="link_skills_grant_random_linked_minion_rare_monster_mods_on_kill_centiseconds" } }, - [7530]={ + [7633]={ [1]={ [1]={ limit={ @@ -173798,7 +176271,7 @@ return { [1]="link_skills_grant_redirect_curses_to_link_source" } }, - [7531]={ + [7634]={ [1]={ [1]={ [1]={ @@ -173818,7 +176291,7 @@ return { [1]="link_skills_grant_redirect_elemental_ailments_to_link_source" } }, - [7532]={ + [7635]={ [1]={ [1]={ limit={ @@ -173843,7 +176316,7 @@ return { [1]="link_to_X_additional_random_allies" } }, - [7533]={ + [7636]={ [1]={ [1]={ limit={ @@ -173859,7 +176332,23 @@ return { [1]="linked_targets_share_endurance_frenzy_power_charges_with_you" } }, - [7534]={ + [7637]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT Attacks with this Weapon gain 1% of Physical Damage as Extra Fire per {0}% life reserved" + } + }, + stats={ + [1]="local_1%_of_physical_to_add_as_fire_damage_per_x%_life_reserved" + } + }, + [7638]={ [1]={ [1]={ limit={ @@ -173875,7 +176364,7 @@ return { [1]="local_accuracy_rating_+%_per_2%_quality" } }, - [7535]={ + [7639]={ [1]={ [1]={ limit={ @@ -173891,7 +176380,7 @@ return { [1]="local_affliction_jewel_display_small_nodes_grant_nothing" } }, - [7536]={ + [7640]={ [1]={ [1]={ limit={ @@ -173907,7 +176396,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_all_attributes" } }, - [7537]={ + [7641]={ [1]={ [1]={ limit={ @@ -173923,7 +176412,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_armour" } }, - [7538]={ + [7642]={ [1]={ [1]={ limit={ @@ -173939,7 +176428,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald" } }, - [7539]={ + [7643]={ [1]={ [1]={ limit={ @@ -173955,7 +176444,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills" } }, - [7540]={ + [7644]={ [1]={ [1]={ limit={ @@ -173971,7 +176460,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills" } }, - [7541]={ + [7645]={ [1]={ [1]={ limit={ @@ -173987,7 +176476,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills" } }, - [7542]={ + [7646]={ [1]={ [1]={ limit={ @@ -174003,7 +176492,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills" } }, - [7543]={ + [7647]={ [1]={ [1]={ limit={ @@ -174019,7 +176508,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills" } }, - [7544]={ + [7648]={ [1]={ [1]={ limit={ @@ -174035,7 +176524,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills" } }, - [7545]={ + [7649]={ [1]={ [1]={ limit={ @@ -174051,7 +176540,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills" } }, - [7546]={ + [7650]={ [1]={ [1]={ limit={ @@ -174067,7 +176556,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_speed_+%" } }, - [7547]={ + [7651]={ [1]={ [1]={ limit={ @@ -174083,7 +176572,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%" } }, - [7548]={ + [7652]={ [1]={ [1]={ limit={ @@ -174099,7 +176588,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_cast_speed_+%" } }, - [7549]={ + [7653]={ [1]={ [1]={ limit={ @@ -174115,7 +176604,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+" } }, - [7550]={ + [7654]={ [1]={ [1]={ limit={ @@ -174131,7 +176620,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%" } }, - [7551]={ + [7655]={ [1]={ [1]={ limit={ @@ -174147,7 +176636,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%" } }, - [7552]={ + [7656]={ [1]={ [1]={ limit={ @@ -174163,7 +176652,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%" } }, - [7553]={ + [7657]={ [1]={ [1]={ limit={ @@ -174179,7 +176668,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_chaos_resistance_%" } }, - [7554]={ + [7658]={ [1]={ [1]={ limit={ @@ -174195,7 +176684,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_charges_gained_+%" } }, - [7555]={ + [7659]={ [1]={ [1]={ limit={ @@ -174211,7 +176700,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_cold_resistance_%" } }, - [7556]={ + [7660]={ [1]={ [1]={ limit={ @@ -174227,7 +176716,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%" } }, - [7557]={ + [7661]={ [1]={ [1]={ limit={ @@ -174243,7 +176732,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_damage_over_time_+%" } }, - [7558]={ + [7662]={ [1]={ [1]={ limit={ @@ -174259,7 +176748,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_damage_+%" } }, - [7559]={ + [7663]={ [1]={ [1]={ limit={ @@ -174275,7 +176764,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_dex" } }, - [7560]={ + [7664]={ [1]={ [1]={ limit={ @@ -174291,7 +176780,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_elemental_resistance_%" } }, - [7561]={ + [7665]={ [1]={ [1]={ limit={ @@ -174307,7 +176796,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_evasion" } }, - [7562]={ + [7666]={ [1]={ [1]={ limit={ @@ -174323,7 +176812,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_fire_resistance_%" } }, - [7563]={ + [7667]={ [1]={ [1]={ limit={ @@ -174339,7 +176828,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_int" } }, - [7564]={ + [7668]={ [1]={ [1]={ limit={ @@ -174355,7 +176844,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_lightning_resistance_%" } }, - [7565]={ + [7669]={ [1]={ [1]={ limit={ @@ -174371,7 +176860,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_mana_regeneration_+%" } }, - [7566]={ + [7670]={ [1]={ [1]={ limit={ @@ -174387,7 +176876,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_maximum_energy_shield" } }, - [7567]={ + [7671]={ [1]={ [1]={ limit={ @@ -174403,7 +176892,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_maximum_life" } }, - [7568]={ + [7672]={ [1]={ [1]={ limit={ @@ -174419,7 +176908,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_maximum_mana" } }, - [7569]={ + [7673]={ [1]={ [1]={ limit={ @@ -174435,7 +176924,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%" } }, - [7570]={ + [7674]={ [1]={ [1]={ limit={ @@ -174451,7 +176940,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald" } }, - [7571]={ + [7675]={ [1]={ [1]={ [1]={ @@ -174471,7 +176960,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%" } }, - [7572]={ + [7676]={ [1]={ [1]={ [1]={ @@ -174495,7 +176984,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute" } }, - [7573]={ + [7677]={ [1]={ [1]={ limit={ @@ -174511,7 +177000,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%" } }, - [7574]={ + [7678]={ [1]={ [1]={ limit={ @@ -174527,7 +177016,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_str" } }, - [7575]={ + [7679]={ [1]={ [1]={ limit={ @@ -174543,7 +177032,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%" } }, - [7576]={ + [7680]={ [1]={ [1]={ limit={ @@ -174559,7 +177048,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%" } }, - [7577]={ + [7681]={ [1]={ [1]={ limit={ @@ -174575,7 +177064,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_warcry_duration_+%" } }, - [7578]={ + [7682]={ [1]={ [1]={ limit={ @@ -174591,7 +177080,7 @@ return { [1]="local_affliction_jewel_small_nodes_have_effect_+%" } }, - [7579]={ + [7683]={ [1]={ [1]={ limit={ @@ -174607,7 +177096,7 @@ return { [1]="local_affliction_notable_adrenaline" } }, - [7580]={ + [7684]={ [1]={ [1]={ limit={ @@ -174623,7 +177112,7 @@ return { [1]="local_affliction_notable_advance_guard" } }, - [7581]={ + [7685]={ [1]={ [1]={ limit={ @@ -174639,7 +177128,7 @@ return { [1]="local_affliction_notable_aerialist" } }, - [7582]={ + [7686]={ [1]={ [1]={ limit={ @@ -174655,7 +177144,7 @@ return { [1]="local_affliction_notable_aerodynamics" } }, - [7583]={ + [7687]={ [1]={ [1]={ limit={ @@ -174671,7 +177160,7 @@ return { [1]="local_affliction_notable_agent_of_destruction" } }, - [7584]={ + [7688]={ [1]={ [1]={ limit={ @@ -174687,7 +177176,7 @@ return { [1]="local_affliction_notable_aggressive_defence" } }, - [7585]={ + [7689]={ [1]={ [1]={ limit={ @@ -174703,7 +177192,7 @@ return { [1]="local_affliction_notable_alchemist" } }, - [7586]={ + [7690]={ [1]={ [1]={ limit={ @@ -174719,7 +177208,7 @@ return { [1]="local_affliction_notable_ancestral_echo" } }, - [7587]={ + [7691]={ [1]={ [1]={ limit={ @@ -174735,7 +177224,7 @@ return { [1]="local_affliction_notable_ancestral_guidance" } }, - [7588]={ + [7692]={ [1]={ [1]={ limit={ @@ -174751,7 +177240,7 @@ return { [1]="local_affliction_notable_ancestral_inspiration" } }, - [7589]={ + [7693]={ [1]={ [1]={ limit={ @@ -174767,7 +177256,7 @@ return { [1]="local_affliction_notable_ancestral_might" } }, - [7590]={ + [7694]={ [1]={ [1]={ limit={ @@ -174783,7 +177272,7 @@ return { [1]="local_affliction_notable_ancestral_preservation" } }, - [7591]={ + [7695]={ [1]={ [1]={ limit={ @@ -174799,7 +177288,7 @@ return { [1]="local_affliction_notable_ancestral_reach" } }, - [7592]={ + [7696]={ [1]={ [1]={ limit={ @@ -174815,7 +177304,7 @@ return { [1]="local_affliction_notable_antifreeze" } }, - [7593]={ + [7697]={ [1]={ [1]={ limit={ @@ -174831,7 +177320,7 @@ return { [1]="local_affliction_notable_antivenom" } }, - [7594]={ + [7698]={ [1]={ [1]={ limit={ @@ -174847,7 +177336,7 @@ return { [1]="local_affliction_notable_arcane_focus" } }, - [7595]={ + [7699]={ [1]={ [1]={ limit={ @@ -174863,7 +177352,7 @@ return { [1]="local_affliction_notable_arcane_heroism" } }, - [7596]={ + [7700]={ [1]={ [1]={ limit={ @@ -174879,7 +177368,7 @@ return { [1]="local_affliction_notable_arcane_pyrotechnics" } }, - [7597]={ + [7701]={ [1]={ [1]={ limit={ @@ -174895,7 +177384,7 @@ return { [1]="local_affliction_notable_arcing_shot" } }, - [7598]={ + [7702]={ [1]={ [1]={ limit={ @@ -174911,7 +177400,7 @@ return { [1]="local_affliction_notable_assert_dominance" } }, - [7599]={ + [7703]={ [1]={ [1]={ limit={ @@ -174927,7 +177416,7 @@ return { [1]="local_affliction_notable_astonishing_affliction" } }, - [7600]={ + [7704]={ [1]={ [1]={ limit={ @@ -174943,7 +177432,7 @@ return { [1]="local_affliction_notable_basics_of_pain" } }, - [7601]={ + [7705]={ [1]={ [1]={ limit={ @@ -174959,7 +177448,7 @@ return { [1]="local_affliction_notable_battle_hardened" } }, - [7602]={ + [7706]={ [1]={ [1]={ limit={ @@ -174975,7 +177464,7 @@ return { [1]="local_affliction_notable_battlefield_dominator" } }, - [7603]={ + [7707]={ [1]={ [1]={ limit={ @@ -174991,7 +177480,7 @@ return { [1]="local_affliction_notable_blacksmith" } }, - [7604]={ + [7708]={ [1]={ [1]={ limit={ @@ -175007,7 +177496,7 @@ return { [1]="local_affliction_notable_blanketed_snow" } }, - [7605]={ + [7709]={ [1]={ [1]={ limit={ @@ -175023,7 +177512,7 @@ return { [1]="local_affliction_notable_blast_freeze" } }, - [7606]={ + [7710]={ [1]={ [1]={ limit={ @@ -175039,7 +177528,7 @@ return { [1]="local_affliction_notable_blessed" } }, - [7607]={ + [7711]={ [1]={ [1]={ limit={ @@ -175055,7 +177544,7 @@ return { [1]="local_affliction_notable_blessed_rebirth" } }, - [7608]={ + [7712]={ [1]={ [1]={ limit={ @@ -175071,7 +177560,7 @@ return { [1]="local_affliction_notable_blood_artist" } }, - [7609]={ + [7713]={ [1]={ [1]={ limit={ @@ -175087,7 +177576,7 @@ return { [1]="local_affliction_notable_bloodscent" } }, - [7610]={ + [7714]={ [1]={ [1]={ limit={ @@ -175103,7 +177592,7 @@ return { [1]="local_affliction_notable_blowback" } }, - [7611]={ + [7715]={ [1]={ [1]={ limit={ @@ -175119,7 +177608,7 @@ return { [1]="local_affliction_notable_bodyguards" } }, - [7612]={ + [7716]={ [1]={ [1]={ limit={ @@ -175135,7 +177624,7 @@ return { [1]="local_affliction_notable_born_of_chaos" } }, - [7613]={ + [7717]={ [1]={ [1]={ limit={ @@ -175151,7 +177640,7 @@ return { [1]="local_affliction_notable_brand_loyalty" } }, - [7614]={ + [7718]={ [1]={ [1]={ limit={ @@ -175167,7 +177656,7 @@ return { [1]="local_affliction_notable_brewed_for_potency" } }, - [7615]={ + [7719]={ [1]={ [1]={ limit={ @@ -175183,7 +177672,7 @@ return { [1]="local_affliction_notable_broadside" } }, - [7616]={ + [7720]={ [1]={ [1]={ limit={ @@ -175199,7 +177688,7 @@ return { [1]="local_affliction_notable_brush_with_death" } }, - [7617]={ + [7721]={ [1]={ [1]={ limit={ @@ -175215,7 +177704,7 @@ return { [1]="local_affliction_notable_brutal_infamy" } }, - [7618]={ + [7722]={ [1]={ [1]={ limit={ @@ -175231,7 +177720,7 @@ return { [1]="local_affliction_notable_burden_projection" } }, - [7619]={ + [7723]={ [1]={ [1]={ limit={ @@ -175247,7 +177736,7 @@ return { [1]="local_affliction_notable_burning_bright" } }, - [7620]={ + [7724]={ [1]={ [1]={ limit={ @@ -175263,7 +177752,7 @@ return { [1]="local_affliction_notable_calamitous" } }, - [7621]={ + [7725]={ [1]={ [1]={ limit={ @@ -175279,7 +177768,7 @@ return { [1]="local_affliction_notable_call_to_the_slaughter" } }, - [7622]={ + [7726]={ [1]={ [1]={ limit={ @@ -175295,7 +177784,7 @@ return { [1]="local_affliction_notable_capacitor" } }, - [7623]={ + [7727]={ [1]={ [1]={ limit={ @@ -175311,7 +177800,7 @@ return { [1]="local_affliction_notable_careful_handling" } }, - [7624]={ + [7728]={ [1]={ [1]={ limit={ @@ -175327,7 +177816,7 @@ return { [1]="local_affliction_notable_chilling_presence" } }, - [7625]={ + [7729]={ [1]={ [1]={ limit={ @@ -175343,7 +177832,7 @@ return { [1]="local_affliction_notable_chip_away" } }, - [7626]={ + [7730]={ [1]={ [1]={ limit={ @@ -175359,7 +177848,7 @@ return { [1]="local_affliction_notable_circling_oblivion" } }, - [7627]={ + [7731]={ [1]={ [1]={ limit={ @@ -175375,7 +177864,7 @@ return { [1]="local_affliction_notable_clarity_of_purpose" } }, - [7628]={ + [7732]={ [1]={ [1]={ limit={ @@ -175391,7 +177880,7 @@ return { [1]="local_affliction_notable_cold_blooded_killer" } }, - [7629]={ + [7733]={ [1]={ [1]={ limit={ @@ -175407,7 +177896,7 @@ return { [1]="local_affliction_notable_cold_conduction" } }, - [7630]={ + [7734]={ [1]={ [1]={ limit={ @@ -175423,7 +177912,7 @@ return { [1]="local_affliction_notable_cold_to_the_core" } }, - [7631]={ + [7735]={ [1]={ [1]={ limit={ @@ -175439,7 +177928,7 @@ return { [1]="local_affliction_notable_combat_rhythm" } }, - [7632]={ + [7736]={ [1]={ [1]={ limit={ @@ -175455,7 +177944,7 @@ return { [1]="local_affliction_notable_compound_injury" } }, - [7633]={ + [7737]={ [1]={ [1]={ limit={ @@ -175471,7 +177960,7 @@ return { [1]="local_affliction_notable_confident_combatant" } }, - [7634]={ + [7738]={ [1]={ [1]={ limit={ @@ -175487,7 +177976,7 @@ return { [1]="local_affliction_notable_conjured_wall" } }, - [7635]={ + [7739]={ [1]={ [1]={ limit={ @@ -175503,7 +177992,7 @@ return { [1]="local_affliction_notable_conservation_of_energy" } }, - [7636]={ + [7740]={ [1]={ [1]={ limit={ @@ -175519,7 +178008,7 @@ return { [1]="local_affliction_notable_cooked_alive" } }, - [7637]={ + [7741]={ [1]={ [1]={ limit={ @@ -175535,7 +178024,7 @@ return { [1]="local_affliction_notable_corrosive_elements" } }, - [7638]={ + [7742]={ [1]={ [1]={ limit={ @@ -175551,7 +178040,7 @@ return { [1]="local_affliction_notable_cremator" } }, - [7639]={ + [7743]={ [1]={ [1]={ limit={ @@ -175567,7 +178056,7 @@ return { [1]="local_affliction_notable_cry_wolf" } }, - [7640]={ + [7744]={ [1]={ [1]={ limit={ @@ -175583,7 +178072,7 @@ return { [1]="local_affliction_notable_cult_leader" } }, - [7641]={ + [7745]={ [1]={ [1]={ limit={ @@ -175599,7 +178088,7 @@ return { [1]="local_affliction_notable_daring_ideas" } }, - [7642]={ + [7746]={ [1]={ [1]={ limit={ @@ -175615,7 +178104,7 @@ return { [1]="local_affliction_notable_dark_discourse" } }, - [7643]={ + [7747]={ [1]={ [1]={ limit={ @@ -175631,7 +178120,7 @@ return { [1]="local_affliction_notable_dark_ideation" } }, - [7644]={ + [7748]={ [1]={ [1]={ limit={ @@ -175647,7 +178136,7 @@ return { [1]="local_affliction_notable_dark_messenger" } }, - [7645]={ + [7749]={ [1]={ [1]={ limit={ @@ -175663,7 +178152,7 @@ return { [1]="local_affliction_notable_darting_movements" } }, - [7646]={ + [7750]={ [1]={ [1]={ limit={ @@ -175679,7 +178168,7 @@ return { [1]="local_affliction_notable_deadly_repartee" } }, - [7647]={ + [7751]={ [1]={ [1]={ limit={ @@ -175695,7 +178184,7 @@ return { [1]="local_affliction_notable_deep_chill" } }, - [7648]={ + [7752]={ [1]={ [1]={ limit={ @@ -175711,7 +178200,7 @@ return { [1]="local_affliction_notable_deep_cuts" } }, - [7649]={ + [7753]={ [1]={ [1]={ limit={ @@ -175727,7 +178216,7 @@ return { [1]="local_affliction_notable_depression" } }, - [7650]={ + [7754]={ [1]={ [1]={ limit={ @@ -175743,7 +178232,7 @@ return { [1]="local_affliction_notable_determined_preparation" } }, - [7651]={ + [7755]={ [1]={ [1]={ limit={ @@ -175759,7 +178248,7 @@ return { [1]="local_affliction_notable_devastator" } }, - [7652]={ + [7756]={ [1]={ [1]={ limit={ @@ -175775,7 +178264,7 @@ return { [1]="local_affliction_notable_disciples" } }, - [7653]={ + [7757]={ [1]={ [1]={ limit={ @@ -175791,7 +178280,7 @@ return { [1]="local_affliction_notable_disciplined_preparation" } }, - [7654]={ + [7758]={ [1]={ [1]={ limit={ @@ -175807,7 +178296,7 @@ return { [1]="local_affliction_notable_disease_vector" } }, - [7655]={ + [7759]={ [1]={ [1]={ limit={ @@ -175823,7 +178312,7 @@ return { [1]="local_affliction_notable_disorienting_display" } }, - [7656]={ + [7760]={ [1]={ [1]={ limit={ @@ -175839,7 +178328,7 @@ return { [1]="local_affliction_notable_disorienting_wounds" } }, - [7657]={ + [7761]={ [1]={ [1]={ limit={ @@ -175855,7 +178344,7 @@ return { [1]="local_affliction_notable_distilled_perfection" } }, - [7658]={ + [7762]={ [1]={ [1]={ limit={ @@ -175871,7 +178360,7 @@ return { [1]="local_affliction_notable_doedres_apathy" } }, - [7659]={ + [7763]={ [1]={ [1]={ limit={ @@ -175887,7 +178376,7 @@ return { [1]="local_affliction_notable_doedres_gluttony" } }, - [7660]={ + [7764]={ [1]={ [1]={ limit={ @@ -175903,7 +178392,7 @@ return { [1]="local_affliction_notable_doryanis_lesson" } }, - [7661]={ + [7765]={ [1]={ [1]={ limit={ @@ -175919,7 +178408,7 @@ return { [1]="local_affliction_notable_dragon_hunter" } }, - [7662]={ + [7766]={ [1]={ [1]={ limit={ @@ -175935,7 +178424,7 @@ return { [1]="local_affliction_notable_dread_march" } }, - [7663]={ + [7767]={ [1]={ [1]={ limit={ @@ -175951,7 +178440,7 @@ return { [1]="local_affliction_notable_drive_the_destruction" } }, - [7664]={ + [7768]={ [1]={ [1]={ limit={ @@ -175967,7 +178456,7 @@ return { [1]="local_affliction_notable_eldritch_inspiration" } }, - [7665]={ + [7769]={ [1]={ [1]={ limit={ @@ -175983,7 +178472,7 @@ return { [1]="local_affliction_notable_elegant_form" } }, - [7666]={ + [7770]={ [1]={ [1]={ limit={ @@ -175999,7 +178488,7 @@ return { [1]="local_affliction_notable_empowered_envoy" } }, - [7667]={ + [7771]={ [1]={ [1]={ limit={ @@ -176015,7 +178504,7 @@ return { [1]="local_affliction_notable_endbringer" } }, - [7668]={ + [7772]={ [1]={ [1]={ limit={ @@ -176031,7 +178520,7 @@ return { [1]="local_affliction_notable_enduring_composure" } }, - [7669]={ + [7773]={ [1]={ [1]={ limit={ @@ -176047,7 +178536,7 @@ return { [1]="local_affliction_notable_enduring_focus" } }, - [7670]={ + [7774]={ [1]={ [1]={ limit={ @@ -176063,7 +178552,7 @@ return { [1]="local_affliction_notable_enduring_ward" } }, - [7671]={ + [7775]={ [1]={ [1]={ limit={ @@ -176079,7 +178568,7 @@ return { [1]="local_affliction_notable_energy_from_naught" } }, - [7672]={ + [7776]={ [1]={ [1]={ limit={ @@ -176095,7 +178584,7 @@ return { [1]="local_affliction_notable_essence_rush" } }, - [7673]={ + [7777]={ [1]={ [1]={ limit={ @@ -176111,7 +178600,7 @@ return { [1]="local_affliction_notable_eternal_suffering" } }, - [7674]={ + [7778]={ [1]={ [1]={ limit={ @@ -176127,7 +178616,7 @@ return { [1]="local_affliction_notable_evil_eye" } }, - [7675]={ + [7779]={ [1]={ [1]={ limit={ @@ -176143,7 +178632,7 @@ return { [1]="local_affliction_notable_expansive_might" } }, - [7676]={ + [7780]={ [1]={ [1]={ limit={ @@ -176159,7 +178648,7 @@ return { [1]="local_affliction_notable_expendability" } }, - [7677]={ + [7781]={ [1]={ [1]={ limit={ @@ -176175,7 +178664,7 @@ return { [1]="local_affliction_notable_expert_sabotage" } }, - [7678]={ + [7782]={ [1]={ [1]={ limit={ @@ -176191,7 +178680,7 @@ return { [1]="local_affliction_notable_explosive_force" } }, - [7679]={ + [7783]={ [1]={ [1]={ limit={ @@ -176207,7 +178696,7 @@ return { [1]="local_affliction_notable_exposure_therapy" } }, - [7680]={ + [7784]={ [1]={ [1]={ limit={ @@ -176223,7 +178712,7 @@ return { [1]="local_affliction_notable_eye_of_the_storm" } }, - [7681]={ + [7785]={ [1]={ [1]={ limit={ @@ -176239,7 +178728,7 @@ return { [1]="local_affliction_notable_eye_to_eye" } }, - [7682]={ + [7786]={ [1]={ [1]={ limit={ @@ -176255,7 +178744,7 @@ return { [1]="local_affliction_notable_fan_of_blades" } }, - [7683]={ + [7787]={ [1]={ [1]={ limit={ @@ -176271,7 +178760,7 @@ return { [1]="local_affliction_notable_fan_the_flames" } }, - [7684]={ + [7788]={ [1]={ [1]={ limit={ @@ -176287,7 +178776,7 @@ return { [1]="local_affliction_notable_fasting" } }, - [7685]={ + [7789]={ [1]={ [1]={ limit={ @@ -176303,7 +178792,7 @@ return { [1]="local_affliction_notable_fearsome_warrior" } }, - [7686]={ + [7790]={ [1]={ [1]={ limit={ @@ -176319,7 +178808,7 @@ return { [1]="local_affliction_notable_feast_of_flesh" } }, - [7687]={ + [7791]={ [1]={ [1]={ limit={ @@ -176335,7 +178824,7 @@ return { [1]="local_affliction_notable_feasting_fiends" } }, - [7688]={ + [7792]={ [1]={ [1]={ limit={ @@ -176351,7 +178840,7 @@ return { [1]="local_affliction_notable_feed_the_fury" } }, - [7689]={ + [7793]={ [1]={ [1]={ limit={ @@ -176367,7 +178856,7 @@ return { [1]="local_affliction_notable_fettle" } }, - [7690]={ + [7794]={ [1]={ [1]={ limit={ @@ -176383,7 +178872,7 @@ return { [1]="local_affliction_notable_fiery_aegis" } }, - [7691]={ + [7795]={ [1]={ [1]={ limit={ @@ -176399,7 +178888,7 @@ return { [1]="local_affliction_notable_fire_attunement" } }, - [7692]={ + [7796]={ [1]={ [1]={ limit={ @@ -176415,7 +178904,7 @@ return { [1]="local_affliction_notable_first_among_equals" } }, - [7693]={ + [7797]={ [1]={ [1]={ limit={ @@ -176431,7 +178920,7 @@ return { [1]="local_affliction_notable_flaming_doom" } }, - [7694]={ + [7798]={ [1]={ [1]={ limit={ @@ -176447,7 +178936,7 @@ return { [1]="local_affliction_notable_flexible_sentry" } }, - [7695]={ + [7799]={ [1]={ [1]={ limit={ @@ -176463,7 +178952,7 @@ return { [1]="local_affliction_notable_flow_of_life" } }, - [7696]={ + [7800]={ [1]={ [1]={ limit={ @@ -176479,7 +178968,7 @@ return { [1]="local_affliction_notable_follow_through" } }, - [7697]={ + [7801]={ [1]={ [1]={ limit={ @@ -176495,7 +178984,7 @@ return { [1]="local_affliction_notable_force_multiplier" } }, - [7698]={ + [7802]={ [1]={ [1]={ limit={ @@ -176511,7 +179000,7 @@ return { [1]="local_affliction_notable_frost_breath" } }, - [7699]={ + [7803]={ [1]={ [1]={ limit={ @@ -176527,7 +179016,7 @@ return { [1]="local_affliction_notable_fuel_the_fight" } }, - [7700]={ + [7804]={ [1]={ [1]={ limit={ @@ -176543,7 +179032,7 @@ return { [1]="local_affliction_notable_furious_assault" } }, - [7701]={ + [7805]={ [1]={ [1]={ limit={ @@ -176559,7 +179048,7 @@ return { [1]="local_affliction_notable_genius" } }, - [7702]={ + [7806]={ [1]={ [1]={ limit={ @@ -176575,7 +179064,7 @@ return { [1]="local_affliction_notable_gladiatorial_combat" } }, - [7703]={ + [7807]={ [1]={ [1]={ limit={ @@ -176591,7 +179080,7 @@ return { [1]="local_affliction_notable_gladiators_fortitude" } }, - [7704]={ + [7808]={ [1]={ [1]={ limit={ @@ -176607,7 +179096,7 @@ return { [1]="local_affliction_notable_graceful_execution" } }, - [7705]={ + [7809]={ [1]={ [1]={ limit={ @@ -176623,7 +179112,7 @@ return { [1]="local_affliction_notable_graceful_preparation" } }, - [7706]={ + [7810]={ [1]={ [1]={ limit={ @@ -176639,7 +179128,7 @@ return { [1]="local_affliction_notable_grand_design" } }, - [7707]={ + [7811]={ [1]={ [1]={ limit={ @@ -176655,7 +179144,7 @@ return { [1]="local_affliction_notable_grim_oath" } }, - [7708]={ + [7812]={ [1]={ [1]={ limit={ @@ -176671,7 +179160,7 @@ return { [1]="local_affliction_notable_grounded_commander" } }, - [7709]={ + [7813]={ [1]={ [1]={ limit={ @@ -176687,7 +179176,7 @@ return { [1]="local_affliction_notable_guerilla_tactics" } }, - [7710]={ + [7814]={ [1]={ [1]={ limit={ @@ -176703,7 +179192,7 @@ return { [1]="local_affliction_notable_haemorrhage" } }, - [7711]={ + [7815]={ [1]={ [1]={ limit={ @@ -176719,7 +179208,7 @@ return { [1]="local_affliction_notable_haunting_shout" } }, - [7712]={ + [7816]={ [1]={ [1]={ limit={ @@ -176735,7 +179224,7 @@ return { [1]="local_affliction_notable_heart_of_iron" } }, - [7713]={ + [7817]={ [1]={ [1]={ limit={ @@ -176751,7 +179240,7 @@ return { [1]="local_affliction_notable_heavy_hitter" } }, - [7714]={ + [7818]={ [1]={ [1]={ limit={ @@ -176767,7 +179256,7 @@ return { [1]="local_affliction_notable_heavy_trauma" } }, - [7715]={ + [7819]={ [1]={ [1]={ limit={ @@ -176783,7 +179272,7 @@ return { [1]="local_affliction_notable_heraldry" } }, - [7716]={ + [7820]={ [1]={ [1]={ limit={ @@ -176799,7 +179288,7 @@ return { [1]="local_affliction_notable_hex_breaker" } }, - [7717]={ + [7821]={ [1]={ [1]={ limit={ @@ -176815,7 +179304,7 @@ return { [1]="local_affliction_notable_hibernator" } }, - [7718]={ + [7822]={ [1]={ [1]={ limit={ @@ -176831,7 +179320,7 @@ return { [1]="local_affliction_notable_hit_and_run" } }, - [7719]={ + [7823]={ [1]={ [1]={ limit={ @@ -176847,7 +179336,7 @@ return { [1]="local_affliction_notable_holistic_health" } }, - [7720]={ + [7824]={ [1]={ [1]={ limit={ @@ -176863,7 +179352,7 @@ return { [1]="local_affliction_notable_holy_conquest" } }, - [7721]={ + [7825]={ [1]={ [1]={ limit={ @@ -176879,7 +179368,7 @@ return { [1]="local_affliction_notable_holy_word" } }, - [7722]={ + [7826]={ [1]={ [1]={ limit={ @@ -176895,7 +179384,7 @@ return { [1]="local_affliction_notable_hounds_mark" } }, - [7723]={ + [7827]={ [1]={ [1]={ limit={ @@ -176911,7 +179400,7 @@ return { [1]="local_affliction_notable_hulking_corpses" } }, - [7724]={ + [7828]={ [1]={ [1]={ limit={ @@ -176927,7 +179416,7 @@ return { [1]="local_affliction_notable_improvisor" } }, - [7725]={ + [7829]={ [1]={ [1]={ limit={ @@ -176943,7 +179432,7 @@ return { [1]="local_affliction_notable_insatiable_killer" } }, - [7726]={ + [7830]={ [1]={ [1]={ limit={ @@ -176959,7 +179448,7 @@ return { [1]="local_affliction_notable_inspired_oppression" } }, - [7727]={ + [7831]={ [1]={ [1]={ limit={ @@ -176975,7 +179464,7 @@ return { [1]="local_affliction_notable_insulated" } }, - [7728]={ + [7832]={ [1]={ [1]={ limit={ @@ -176991,7 +179480,7 @@ return { [1]="local_affliction_notable_intensity" } }, - [7729]={ + [7833]={ [1]={ [1]={ limit={ @@ -177007,7 +179496,7 @@ return { [1]="local_affliction_notable_invigorating_portents" } }, - [7730]={ + [7834]={ [1]={ [1]={ limit={ @@ -177023,7 +179512,7 @@ return { [1]="local_affliction_notable_iron_breaker" } }, - [7731]={ + [7835]={ [1]={ [1]={ limit={ @@ -177039,7 +179528,7 @@ return { [1]="local_affliction_notable_lasting_impression" } }, - [7732]={ + [7836]={ [1]={ [1]={ limit={ @@ -177055,7 +179544,7 @@ return { [1]="local_affliction_notable_lead_by_example" } }, - [7733]={ + [7837]={ [1]={ [1]={ limit={ @@ -177071,7 +179560,7 @@ return { [1]="local_affliction_notable_life_from_death" } }, - [7734]={ + [7838]={ [1]={ [1]={ limit={ @@ -177087,7 +179576,7 @@ return { [1]="local_affliction_notable_lightnings_call" } }, - [7735]={ + [7839]={ [1]={ [1]={ limit={ @@ -177103,7 +179592,7 @@ return { [1]="local_affliction_notable_liquid_inspiration" } }, - [7736]={ + [7840]={ [1]={ [1]={ limit={ @@ -177119,7 +179608,7 @@ return { [1]="local_affliction_notable_low_tolerance" } }, - [7737]={ + [7841]={ [1]={ [1]={ limit={ @@ -177135,7 +179624,7 @@ return { [1]="local_affliction_notable_mage_bane" } }, - [7738]={ + [7842]={ [1]={ [1]={ limit={ @@ -177151,7 +179640,7 @@ return { [1]="local_affliction_notable_mage_hunter" } }, - [7739]={ + [7843]={ [1]={ [1]={ limit={ @@ -177167,7 +179656,7 @@ return { [1]="local_affliction_notable_magnifier" } }, - [7740]={ + [7844]={ [1]={ [1]={ limit={ @@ -177183,7 +179672,7 @@ return { [1]="local_affliction_notable_martial_mastery" } }, - [7741]={ + [7845]={ [1]={ [1]={ limit={ @@ -177199,7 +179688,7 @@ return { [1]="local_affliction_notable_martial_momentum" } }, - [7742]={ + [7846]={ [1]={ [1]={ limit={ @@ -177215,7 +179704,7 @@ return { [1]="local_affliction_notable_martial_prowess" } }, - [7743]={ + [7847]={ [1]={ [1]={ limit={ @@ -177231,7 +179720,7 @@ return { [1]="local_affliction_notable_master_of_command" } }, - [7744]={ + [7848]={ [1]={ [1]={ limit={ @@ -177247,7 +179736,7 @@ return { [1]="local_affliction_notable_master_of_fear" } }, - [7745]={ + [7849]={ [1]={ [1]={ limit={ @@ -177263,7 +179752,7 @@ return { [1]="local_affliction_notable_master_of_fire" } }, - [7746]={ + [7850]={ [1]={ [1]={ limit={ @@ -177279,7 +179768,7 @@ return { [1]="local_affliction_notable_master_of_the_maelstrom" } }, - [7747]={ + [7851]={ [1]={ [1]={ limit={ @@ -177295,7 +179784,7 @@ return { [1]="local_affliction_notable_master_the_fundamentals" } }, - [7748]={ + [7852]={ [1]={ [1]={ limit={ @@ -177311,7 +179800,7 @@ return { [1]="local_affliction_notable_menders_wellspring" } }, - [7749]={ + [7853]={ [1]={ [1]={ limit={ @@ -177327,7 +179816,7 @@ return { [1]="local_affliction_notable_militarism" } }, - [7750]={ + [7854]={ [1]={ [1]={ limit={ @@ -177343,7 +179832,7 @@ return { [1]="local_affliction_notable_mindfulness" } }, - [7751]={ + [7855]={ [1]={ [1]={ limit={ @@ -177359,7 +179848,7 @@ return { [1]="local_affliction_notable_mob_mentality" } }, - [7752]={ + [7856]={ [1]={ [1]={ limit={ @@ -177375,7 +179864,7 @@ return { [1]="local_affliction_notable_molten_ones_mark" } }, - [7753]={ + [7857]={ [1]={ [1]={ limit={ @@ -177391,7 +179880,7 @@ return { [1]="local_affliction_notable_mystical_ward" } }, - [7754]={ + [7858]={ [1]={ [1]={ limit={ @@ -177407,7 +179896,7 @@ return { [1]="local_affliction_notable_natural_vigour" } }, - [7755]={ + [7859]={ [1]={ [1]={ limit={ @@ -177423,7 +179912,7 @@ return { [1]="local_affliction_notable_no_witnesses" } }, - [7756]={ + [7860]={ [1]={ [1]={ limit={ @@ -177439,7 +179928,7 @@ return { [1]="local_affliction_notable_non_flammable" } }, - [7757]={ + [7861]={ [1]={ [1]={ limit={ @@ -177455,7 +179944,7 @@ return { [1]="local_affliction_notable_numbing_elixir" } }, - [7758]={ + [7862]={ [1]={ [1]={ limit={ @@ -177471,7 +179960,7 @@ return { [1]="local_affliction_notable_one_with_the_shield" } }, - [7759]={ + [7863]={ [1]={ [1]={ limit={ @@ -177487,7 +179976,7 @@ return { [1]="local_affliction_notable_openness" } }, - [7760]={ + [7864]={ [1]={ [1]={ limit={ @@ -177503,7 +179992,7 @@ return { [1]="local_affliction_notable_opportunistic_fusilade" } }, - [7761]={ + [7865]={ [1]={ [1]={ limit={ @@ -177519,7 +180008,7 @@ return { [1]="local_affliction_notable_overlord" } }, - [7762]={ + [7866]={ [1]={ [1]={ limit={ @@ -177535,7 +180024,7 @@ return { [1]="local_affliction_notable_overshock" } }, - [7763]={ + [7867]={ [1]={ [1]={ limit={ @@ -177551,7 +180040,7 @@ return { [1]="local_affliction_notable_overwhelming_malice" } }, - [7764]={ + [7868]={ [1]={ [1]={ limit={ @@ -177567,7 +180056,7 @@ return { [1]="local_affliction_notable_paralysis" } }, - [7765]={ + [7869]={ [1]={ [1]={ limit={ @@ -177583,7 +180072,7 @@ return { [1]="local_affliction_notable_peace_amidst_chaos" } }, - [7766]={ + [7870]={ [1]={ [1]={ limit={ @@ -177599,7 +180088,7 @@ return { [1]="local_affliction_notable_peak_vigour" } }, - [7767]={ + [7871]={ [1]={ [1]={ limit={ @@ -177615,7 +180104,7 @@ return { [1]="local_affliction_notable_phlebotomist" } }, - [7768]={ + [7872]={ [1]={ [1]={ limit={ @@ -177631,7 +180120,7 @@ return { [1]="local_affliction_notable_powerful_assault" } }, - [7769]={ + [7873]={ [1]={ [1]={ limit={ @@ -177647,7 +180136,7 @@ return { [1]="local_affliction_notable_powerful_ward" } }, - [7770]={ + [7874]={ [1]={ [1]={ limit={ @@ -177663,7 +180152,7 @@ return { [1]="local_affliction_notable_practiced_caster" } }, - [7771]={ + [7875]={ [1]={ [1]={ limit={ @@ -177679,7 +180168,7 @@ return { [1]="local_affliction_notable_precise_commander" } }, - [7772]={ + [7876]={ [1]={ [1]={ limit={ @@ -177695,7 +180184,7 @@ return { [1]="local_affliction_notable_precise_focus" } }, - [7773]={ + [7877]={ [1]={ [1]={ limit={ @@ -177711,7 +180200,7 @@ return { [1]="local_affliction_notable_precise_retaliation" } }, - [7774]={ + [7878]={ [1]={ [1]={ limit={ @@ -177727,7 +180216,7 @@ return { [1]="local_affliction_notable_pressure_points" } }, - [7775]={ + [7879]={ [1]={ [1]={ limit={ @@ -177743,7 +180232,7 @@ return { [1]="local_affliction_notable_primordial_bond" } }, - [7776]={ + [7880]={ [1]={ [1]={ limit={ @@ -177759,7 +180248,7 @@ return { [1]="local_affliction_notable_prismatic_carapace" } }, - [7777]={ + [7881]={ [1]={ [1]={ limit={ @@ -177775,7 +180264,7 @@ return { [1]="local_affliction_notable_prismatic_dance" } }, - [7778]={ + [7882]={ [1]={ [1]={ limit={ @@ -177791,7 +180280,7 @@ return { [1]="local_affliction_notable_prismatic_heart" } }, - [7779]={ + [7883]={ [1]={ [1]={ limit={ @@ -177807,7 +180296,7 @@ return { [1]="local_affliction_notable_prodigious_defense" } }, - [7780]={ + [7884]={ [1]={ [1]={ limit={ @@ -177823,7 +180312,7 @@ return { [1]="local_affliction_notable_provocateur" } }, - [7781]={ + [7885]={ [1]={ [1]={ limit={ @@ -177839,7 +180328,7 @@ return { [1]="local_affliction_notable_pure_agony" } }, - [7782]={ + [7886]={ [1]={ [1]={ limit={ @@ -177855,7 +180344,7 @@ return { [1]="local_affliction_notable_pure_aptitude" } }, - [7783]={ + [7887]={ [1]={ [1]={ limit={ @@ -177871,7 +180360,7 @@ return { [1]="local_affliction_notable_pure_commander" } }, - [7784]={ + [7888]={ [1]={ [1]={ limit={ @@ -177887,7 +180376,7 @@ return { [1]="local_affliction_notable_pure_guile" } }, - [7785]={ + [7889]={ [1]={ [1]={ limit={ @@ -177903,7 +180392,7 @@ return { [1]="local_affliction_notable_pure_might" } }, - [7786]={ + [7890]={ [1]={ [1]={ limit={ @@ -177919,7 +180408,7 @@ return { [1]="local_affliction_notable_purposeful_harbinger" } }, - [7787]={ + [7891]={ [1]={ [1]={ limit={ @@ -177935,7 +180424,7 @@ return { [1]="local_affliction_notable_quick_and_deadly" } }, - [7788]={ + [7892]={ [1]={ [1]={ limit={ @@ -177951,7 +180440,7 @@ return { [1]="local_affliction_notable_quick_getaway" } }, - [7789]={ + [7893]={ [1]={ [1]={ limit={ @@ -177967,7 +180456,7 @@ return { [1]="local_affliction_notable_rapid_infusion" } }, - [7790]={ + [7894]={ [1]={ [1]={ limit={ @@ -177983,7 +180472,7 @@ return { [1]="local_affliction_notable_rattling_bellow" } }, - [7791]={ + [7895]={ [1]={ [1]={ limit={ @@ -177999,7 +180488,7 @@ return { [1]="local_affliction_notable_raze_and_pillage" } }, - [7792]={ + [7896]={ [1]={ [1]={ limit={ @@ -178015,7 +180504,7 @@ return { [1]="local_affliction_notable_readiness" } }, - [7793]={ + [7897]={ [1]={ [1]={ limit={ @@ -178031,7 +180520,7 @@ return { [1]="local_affliction_notable_remarkable" } }, - [7794]={ + [7898]={ [1]={ [1]={ limit={ @@ -178047,7 +180536,7 @@ return { [1]="local_affliction_notable_rend" } }, - [7795]={ + [7899]={ [1]={ [1]={ limit={ @@ -178063,7 +180552,7 @@ return { [1]="local_affliction_notable_renewal" } }, - [7796]={ + [7900]={ [1]={ [1]={ limit={ @@ -178079,7 +180568,7 @@ return { [1]="local_affliction_notable_repeater" } }, - [7797]={ + [7901]={ [1]={ [1]={ limit={ @@ -178095,7 +180584,7 @@ return { [1]="local_affliction_notable_replenishing_presence" } }, - [7798]={ + [7902]={ [1]={ [1]={ limit={ @@ -178111,7 +180600,7 @@ return { [1]="local_affliction_notable_riot_queller" } }, - [7799]={ + [7903]={ [1]={ [1]={ limit={ @@ -178127,7 +180616,7 @@ return { [1]="local_affliction_notable_rot_resistant" } }, - [7800]={ + [7904]={ [1]={ [1]={ limit={ @@ -178143,7 +180632,7 @@ return { [1]="local_affliction_notable_rote_reinforcement" } }, - [7801]={ + [7905]={ [1]={ [1]={ limit={ @@ -178159,7 +180648,7 @@ return { [1]="local_affliction_notable_rotten_claws" } }, - [7802]={ + [7906]={ [1]={ [1]={ limit={ @@ -178175,7 +180664,7 @@ return { [1]="local_affliction_notable_run_through" } }, - [7803]={ + [7907]={ [1]={ [1]={ limit={ @@ -178191,7 +180680,7 @@ return { [1]="local_affliction_notable_sadist" } }, - [7804]={ + [7908]={ [1]={ [1]={ limit={ @@ -178207,7 +180696,7 @@ return { [1]="local_affliction_notable_sage" } }, - [7805]={ + [7909]={ [1]={ [1]={ limit={ @@ -178223,7 +180712,7 @@ return { [1]="local_affliction_notable_sap_psyche" } }, - [7806]={ + [7910]={ [1]={ [1]={ limit={ @@ -178239,7 +180728,7 @@ return { [1]="local_affliction_notable_savage_response" } }, - [7807]={ + [7911]={ [1]={ [1]={ limit={ @@ -178255,7 +180744,7 @@ return { [1]="local_affliction_notable_savour_the_moment" } }, - [7808]={ + [7912]={ [1]={ [1]={ limit={ @@ -178271,7 +180760,7 @@ return { [1]="local_affliction_notable_scintillating_idea" } }, - [7809]={ + [7913]={ [1]={ [1]={ limit={ @@ -178287,7 +180776,7 @@ return { [1]="local_affliction_notable_seal_mender" } }, - [7810]={ + [7914]={ [1]={ [1]={ limit={ @@ -178303,7 +180792,7 @@ return { [1]="local_affliction_notable_second_skin" } }, - [7811]={ + [7915]={ [1]={ [1]={ limit={ @@ -178319,7 +180808,7 @@ return { [1]="local_affliction_notable_seeker_runes" } }, - [7812]={ + [7916]={ [1]={ [1]={ limit={ @@ -178335,7 +180824,7 @@ return { [1]="local_affliction_notable_self_fulfilling_prophecy" } }, - [7813]={ + [7917]={ [1]={ [1]={ limit={ @@ -178351,7 +180840,7 @@ return { [1]="local_affliction_notable_septic_spells" } }, - [7814]={ + [7918]={ [1]={ [1]={ limit={ @@ -178367,7 +180856,7 @@ return { [1]="local_affliction_notable_set_and_forget" } }, - [7815]={ + [7919]={ [1]={ [1]={ limit={ @@ -178383,7 +180872,7 @@ return { [1]="local_affliction_notable_shifting_shadow" } }, - [7816]={ + [7920]={ [1]={ [1]={ limit={ @@ -178399,7 +180888,7 @@ return { [1]="local_affliction_notable_shrieking_bolts" } }, - [7817]={ + [7921]={ [1]={ [1]={ limit={ @@ -178415,7 +180904,7 @@ return { [1]="local_affliction_notable_skeletal_atrophy" } }, - [7818]={ + [7922]={ [1]={ [1]={ limit={ @@ -178431,7 +180920,7 @@ return { [1]="local_affliction_notable_skullbreaker" } }, - [7819]={ + [7923]={ [1]={ [1]={ limit={ @@ -178447,7 +180936,7 @@ return { [1]="local_affliction_notable_sleepless_sentries" } }, - [7820]={ + [7924]={ [1]={ [1]={ limit={ @@ -178463,7 +180952,7 @@ return { [1]="local_affliction_notable_smite_the_weak" } }, - [7821]={ + [7925]={ [1]={ [1]={ limit={ @@ -178479,7 +180968,7 @@ return { [1]="local_affliction_notable_smoking_remains" } }, - [7822]={ + [7926]={ [1]={ [1]={ limit={ @@ -178495,7 +180984,7 @@ return { [1]="local_affliction_notable_snaring_spirits" } }, - [7823]={ + [7927]={ [1]={ [1]={ limit={ @@ -178511,7 +181000,7 @@ return { [1]="local_affliction_notable_snowstorm" } }, - [7824]={ + [7928]={ [1]={ [1]={ limit={ @@ -178527,7 +181016,7 @@ return { [1]="local_affliction_notable_special_reserve" } }, - [7825]={ + [7929]={ [1]={ [1]={ limit={ @@ -178543,7 +181032,7 @@ return { [1]="local_affliction_notable_spiked_concoction" } }, - [7826]={ + [7930]={ [1]={ [1]={ limit={ @@ -178559,7 +181048,7 @@ return { [1]="local_affliction_notable_spring_back" } }, - [7827]={ + [7931]={ [1]={ [1]={ limit={ @@ -178575,7 +181064,7 @@ return { [1]="local_affliction_notable_stalwart_commander" } }, - [7828]={ + [7932]={ [1]={ [1]={ limit={ @@ -178591,7 +181080,7 @@ return { [1]="local_affliction_notable_steady_torment" } }, - [7829]={ + [7933]={ [1]={ [1]={ limit={ @@ -178607,7 +181096,7 @@ return { [1]="local_affliction_notable_stoic_focus" } }, - [7830]={ + [7934]={ [1]={ [1]={ limit={ @@ -178623,7 +181112,7 @@ return { [1]="local_affliction_notable_storm_drinker" } }, - [7831]={ + [7935]={ [1]={ [1]={ limit={ @@ -178639,7 +181128,7 @@ return { [1]="local_affliction_notable_stormrider" } }, - [7832]={ + [7936]={ [1]={ [1]={ limit={ @@ -178655,7 +181144,7 @@ return { [1]="local_affliction_notable_storms_hand" } }, - [7833]={ + [7937]={ [1]={ [1]={ limit={ @@ -178671,7 +181160,7 @@ return { [1]="local_affliction_notable_streamlined" } }, - [7834]={ + [7938]={ [1]={ [1]={ limit={ @@ -178687,7 +181176,7 @@ return { [1]="local_affliction_notable_strike_leader" } }, - [7835]={ + [7939]={ [1]={ [1]={ limit={ @@ -178703,7 +181192,7 @@ return { [1]="local_affliction_notable_stubborn_student" } }, - [7836]={ + [7940]={ [1]={ [1]={ limit={ @@ -178719,7 +181208,7 @@ return { [1]="local_affliction_notable_student_of_decay" } }, - [7837]={ + [7941]={ [1]={ [1]={ limit={ @@ -178735,7 +181224,7 @@ return { [1]="local_affliction_notable_sublime_sensation" } }, - [7838]={ + [7942]={ [1]={ [1]={ limit={ @@ -178751,7 +181240,7 @@ return { [1]="local_affliction_notable_summer_commander" } }, - [7839]={ + [7943]={ [1]={ [1]={ limit={ @@ -178767,7 +181256,7 @@ return { [1]="local_affliction_notable_supercharge" } }, - [7840]={ + [7944]={ [1]={ [1]={ limit={ @@ -178783,7 +181272,7 @@ return { [1]="local_affliction_notable_surefooted_striker" } }, - [7841]={ + [7945]={ [1]={ [1]={ limit={ @@ -178799,7 +181288,7 @@ return { [1]="local_affliction_notable_surging_vitality" } }, - [7842]={ + [7946]={ [1]={ [1]={ limit={ @@ -178815,7 +181304,7 @@ return { [1]="local_affliction_notable_surprise_sabotage" } }, - [7843]={ + [7947]={ [1]={ [1]={ limit={ @@ -178831,7 +181320,7 @@ return { [1]="local_affliction_notable_tempered_arrowheads" } }, - [7844]={ + [7948]={ [1]={ [1]={ limit={ @@ -178847,7 +181336,7 @@ return { [1]="local_affliction_notable_thaumophage" } }, - [7845]={ + [7949]={ [1]={ [1]={ limit={ @@ -178863,7 +181352,7 @@ return { [1]="local_affliction_notable_thunderstruck" } }, - [7846]={ + [7950]={ [1]={ [1]={ limit={ @@ -178879,7 +181368,7 @@ return { [1]="local_affliction_notable_titanic_swings" } }, - [7847]={ + [7951]={ [1]={ [1]={ limit={ @@ -178895,7 +181384,7 @@ return { [1]="local_affliction_notable_touch_of_cruelty" } }, - [7848]={ + [7952]={ [1]={ [1]={ limit={ @@ -178911,7 +181400,7 @@ return { [1]="local_affliction_notable_towering_threat" } }, - [7849]={ + [7953]={ [1]={ [1]={ limit={ @@ -178927,7 +181416,7 @@ return { [1]="local_affliction_notable_unholy_grace" } }, - [7850]={ + [7954]={ [1]={ [1]={ limit={ @@ -178943,7 +181432,7 @@ return { [1]="local_affliction_notable_unspeakable_gifts" } }, - [7851]={ + [7955]={ [1]={ [1]={ limit={ @@ -178959,7 +181448,7 @@ return { [1]="local_affliction_notable_untouchable" } }, - [7852]={ + [7956]={ [1]={ [1]={ limit={ @@ -178975,7 +181464,7 @@ return { [1]="local_affliction_notable_unwavering_focus" } }, - [7853]={ + [7957]={ [1]={ [1]={ limit={ @@ -178991,7 +181480,7 @@ return { [1]="local_affliction_notable_unwaveringly_evil" } }, - [7854]={ + [7958]={ [1]={ [1]={ limit={ @@ -179007,7 +181496,7 @@ return { [1]="local_affliction_notable_vast_power" } }, - [7855]={ + [7959]={ [1]={ [1]={ limit={ @@ -179023,7 +181512,7 @@ return { [1]="local_affliction_notable_vengeful_commander" } }, - [7856]={ + [7960]={ [1]={ [1]={ limit={ @@ -179039,7 +181528,7 @@ return { [1]="local_affliction_notable_veteran_defender" } }, - [7857]={ + [7961]={ [1]={ [1]={ limit={ @@ -179055,7 +181544,7 @@ return { [1]="local_affliction_notable_vicious_bite" } }, - [7858]={ + [7962]={ [1]={ [1]={ limit={ @@ -179071,7 +181560,7 @@ return { [1]="local_affliction_notable_vicious_guard_" } }, - [7859]={ + [7963]={ [1]={ [1]={ limit={ @@ -179087,7 +181576,7 @@ return { [1]="local_affliction_notable_vicious_skewering" } }, - [7860]={ + [7964]={ [1]={ [1]={ limit={ @@ -179103,7 +181592,7 @@ return { [1]="local_affliction_notable_victim_maker" } }, - [7861]={ + [7965]={ [1]={ [1]={ limit={ @@ -179119,7 +181608,7 @@ return { [1]="local_affliction_notable_vile_reinvigoration" } }, - [7862]={ + [7966]={ [1]={ [1]={ limit={ @@ -179135,7 +181624,7 @@ return { [1]="local_affliction_notable_vital_focus" } }, - [7863]={ + [7967]={ [1]={ [1]={ limit={ @@ -179151,7 +181640,7 @@ return { [1]="local_affliction_notable_vivid_hues" } }, - [7864]={ + [7968]={ [1]={ [1]={ limit={ @@ -179167,7 +181656,7 @@ return { [1]="local_affliction_notable_wall_of_muscle" } }, - [7865]={ + [7969]={ [1]={ [1]={ limit={ @@ -179183,7 +181672,7 @@ return { [1]="local_affliction_notable_wardbreaker" } }, - [7866]={ + [7970]={ [1]={ [1]={ limit={ @@ -179199,7 +181688,7 @@ return { [1]="local_affliction_notable_warning_call" } }, - [7867]={ + [7971]={ [1]={ [1]={ limit={ @@ -179215,7 +181704,7 @@ return { [1]="local_affliction_notable_wasting_affliction" } }, - [7868]={ + [7972]={ [1]={ [1]={ limit={ @@ -179231,7 +181720,7 @@ return { [1]="local_affliction_notable_weight_advantage" } }, - [7869]={ + [7973]={ [1]={ [1]={ limit={ @@ -179247,7 +181736,7 @@ return { [1]="local_affliction_notable_whispers_of_death" } }, - [7870]={ + [7974]={ [1]={ [1]={ limit={ @@ -179263,7 +181752,7 @@ return { [1]="local_affliction_notable_wicked_pall" } }, - [7871]={ + [7975]={ [1]={ [1]={ limit={ @@ -179279,7 +181768,7 @@ return { [1]="local_affliction_notable_widespread_destruction" } }, - [7872]={ + [7976]={ [1]={ [1]={ limit={ @@ -179295,7 +181784,7 @@ return { [1]="local_affliction_notable_will_shaper" } }, - [7873]={ + [7977]={ [1]={ [1]={ limit={ @@ -179311,7 +181800,7 @@ return { [1]="local_affliction_notable_wind_up" } }, - [7874]={ + [7978]={ [1]={ [1]={ limit={ @@ -179327,7 +181816,7 @@ return { [1]="local_affliction_notable_winter_commander" } }, - [7875]={ + [7979]={ [1]={ [1]={ limit={ @@ -179343,7 +181832,7 @@ return { [1]="local_affliction_notable_winter_prowler" } }, - [7876]={ + [7980]={ [1]={ [1]={ limit={ @@ -179359,7 +181848,7 @@ return { [1]="local_affliction_notable_wish_for_death" } }, - [7877]={ + [7981]={ [1]={ [1]={ limit={ @@ -179375,7 +181864,7 @@ return { [1]="local_affliction_notable_wizardry" } }, - [7878]={ + [7982]={ [1]={ [1]={ limit={ @@ -179391,7 +181880,7 @@ return { [1]="local_affliction_notable_wound_aggravation" } }, - [7879]={ + [7983]={ [1]={ [1]={ limit={ @@ -179407,7 +181896,23 @@ return { [1]="local_affliction_notable_wrapped_in_flame" } }, - [7880]={ + [7984]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Always Hits Burning Enemies" + } + }, + stats={ + [1]="local_always_hit_burning_enemies" + } + }, + [7985]={ [1]={ [1]={ limit={ @@ -179423,7 +181928,7 @@ return { [1]="local_area_of_effect_+%_per_4%_quality" } }, - [7881]={ + [7986]={ [1]={ [1]={ [1]={ @@ -179460,7 +181965,7 @@ return { [1]="local_attack_and_cast_speed_+%_if_item_corrupted" } }, - [7882]={ + [7987]={ [1]={ [1]={ [1]={ @@ -179497,7 +182002,23 @@ return { [1]="local_attack_damage_+%_if_item_corrupted" } }, - [7883]={ + [7988]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Speed per socketed Searching Eye Jewel" + } + }, + stats={ + [1]="local_attack_speed_+%_per_socketed_searching_jewel" + } + }, + [7989]={ [1]={ [1]={ limit={ @@ -179513,7 +182034,7 @@ return { [1]="local_attack_speed_+%_per_8%_quality" } }, - [7884]={ + [7990]={ [1]={ [1]={ [1]={ @@ -179533,7 +182054,7 @@ return { [1]="local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed" } }, - [7885]={ + [7991]={ [1]={ [1]={ [1]={ @@ -179566,7 +182087,7 @@ return { [1]="local_attacks_impale_on_hit_%_chance" } }, - [7886]={ + [7992]={ [1]={ [1]={ [1]={ @@ -179586,7 +182107,7 @@ return { [1]="local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed" } }, - [7887]={ + [7993]={ [1]={ [1]={ [1]={ @@ -179606,7 +182127,7 @@ return { [1]="local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed" } }, - [7888]={ + [7994]={ [1]={ [1]={ [1]={ @@ -179639,7 +182160,7 @@ return { [1]="local_bleed_on_critical_strike_chance_%" } }, - [7889]={ + [7995]={ [1]={ [1]={ limit={ @@ -179655,7 +182176,7 @@ return { [1]="local_bleeding_ailment_dot_multiplier_+" } }, - [7890]={ + [7996]={ [1]={ [1]={ [1]={ @@ -179675,7 +182196,7 @@ return { [1]="local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed" } }, - [7891]={ + [7997]={ [1]={ [1]={ limit={ @@ -179691,7 +182212,7 @@ return { [1]="local_can_be_anointed" } }, - [7892]={ + [7998]={ [1]={ [1]={ limit={ @@ -179716,7 +182237,7 @@ return { [1]="local_can_have_X_additional_runesmith_enchantments" } }, - [7893]={ + [7999]={ [1]={ [1]={ limit={ @@ -179732,7 +182253,7 @@ return { [1]="local_can_have_any_one_hand_runesmith_enchantments" } }, - [7894]={ + [8000]={ [1]={ [1]={ limit={ @@ -179748,7 +182269,23 @@ return { [1]="local_can_only_socket_corrupted_gems" } }, - [7895]={ + [8001]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot have non-Abyssal sockets" + } + }, + stats={ + [1]="local_cannot_have_non_abyssal_sockets" + } + }, + [8002]={ [1]={ [1]={ [1]={ @@ -179768,7 +182305,7 @@ return { [1]="local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon" } }, - [7896]={ + [8003]={ [1]={ [1]={ [1]={ @@ -179788,7 +182325,7 @@ return { [1]="local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon" } }, - [7897]={ + [8004]={ [1]={ [1]={ [1]={ @@ -179808,7 +182345,7 @@ return { [1]="local_chance_for_poison_damage_+300%_final_inflicted_with_weapon" } }, - [7898]={ + [8005]={ [1]={ [1]={ [1]={ @@ -179828,7 +182365,32 @@ return { [1]="local_chance_to_bleed_on_crit_50%" } }, - [7899]={ + [8006]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to gain Phasing on Hit with this weapon" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Gain Phasing on Hit with this weapon" + } + }, + stats={ + [1]="local_chance_to_gain_phasing_on_hit_%" + } + }, + [8007]={ [1]={ [1]={ [1]={ @@ -179848,7 +182410,7 @@ return { [1]="local_chance_to_intimidate_on_hit_%" } }, - [7900]={ + [8008]={ [1]={ [1]={ limit={ @@ -179864,7 +182426,7 @@ return { [1]="local_chaos_penetration_%" } }, - [7901]={ + [8009]={ [1]={ [1]={ [1]={ @@ -179905,7 +182467,7 @@ return { [1]="local_chill_on_hit_ms_if_in_off_hand" } }, - [7902]={ + [8010]={ [1]={ [1]={ limit={ @@ -179921,7 +182483,7 @@ return { [1]="local_cold_resistance_%_per_2%_quality" } }, - [7903]={ + [8011]={ [1]={ [1]={ limit={ @@ -179937,7 +182499,7 @@ return { [1]="local_concoction_can_consume_sulphur_flasks" } }, - [7904]={ + [8012]={ [1]={ [1]={ limit={ @@ -179953,7 +182515,23 @@ return { [1]="local_crafting_bench_options_cost_nothing" } }, - [7905]={ + [8013]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Critical Strike Chance per socketed Hypnotic Eye Jewel" + } + }, + stats={ + [1]="local_critical_strike_chance_+%_per_socketed_hypnotic_jewel" + } + }, + [8014]={ [1]={ [1]={ [1]={ @@ -179990,7 +182568,7 @@ return { [1]="local_critical_strike_chance_+%_if_item_corrupted" } }, - [7906]={ + [8015]={ [1]={ [1]={ limit={ @@ -180006,7 +182584,7 @@ return { [1]="local_critical_strike_chance_+%_per_4%_quality" } }, - [7907]={ + [8016]={ [1]={ [1]={ [1]={ @@ -180026,7 +182604,7 @@ return { [1]="local_crits_have_culling_strike" } }, - [7908]={ + [8017]={ [1]={ [1]={ [1]={ @@ -180050,7 +182628,7 @@ return { [1]="local_culling_strike_if_crit_recently" } }, - [7909]={ + [8018]={ [1]={ [1]={ [1]={ @@ -180070,7 +182648,7 @@ return { [1]="local_culling_strike_vs_bleeding_enemies" } }, - [7910]={ + [8019]={ [1]={ [1]={ [1]={ @@ -180107,7 +182685,7 @@ return { [1]="local_damage_+%_if_item_corrupted" } }, - [7911]={ + [8020]={ [1]={ [1]={ [1]={ @@ -180148,7 +182726,7 @@ return { [1]="local_damage_taken_+%_if_item_corrupted" } }, - [7912]={ + [8021]={ [1]={ [1]={ limit={ @@ -180164,7 +182742,7 @@ return { [1]="local_dexterity_per_2%_quality" } }, - [7913]={ + [8022]={ [1]={ [1]={ limit={ @@ -180180,7 +182758,7 @@ return { [1]="local_display_cast_fire_burst_on_hit" } }, - [7914]={ + [8023]={ [1]={ [1]={ limit={ @@ -180205,7 +182783,23 @@ return { [1]="local_display_curse_enemies_with_socketed_curse_on_hit_%_chance" } }, - [7915]={ + [8024]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Voyage Modifier will be revealed once Charted" + } + }, + stats={ + [1]="local_display_deepwater_chart_implicit" + } + }, + [8025]={ [1]={ [1]={ limit={ @@ -180221,7 +182815,7 @@ return { [1]="local_display_enemies_killed_nearby_count_as_being_killed_by_you" } }, - [7916]={ + [8026]={ [1]={ [1]={ limit={ @@ -180250,23 +182844,7 @@ return { [1]="local_display_fire_and_cold_resist_debuff" } }, - [7917]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain a Power Charge after Spending a total of 200 Mana" - } - }, - stats={ - [1]="local_display_gain_power_charge_on_spending_mana" - } - }, - [7918]={ + [8027]={ [1]={ [1]={ limit={ @@ -180282,7 +182860,7 @@ return { [1]="local_display_grants_biting_braid_skill_level_x" } }, - [7919]={ + [8028]={ [1]={ [1]={ limit={ @@ -180298,7 +182876,7 @@ return { [1]="local_display_grants_sand_mirage_skill_level_x" } }, - [7920]={ + [8029]={ [1]={ [1]={ limit={ @@ -180314,7 +182892,7 @@ return { [1]="local_display_grants_skill_animosity_phys_degen_level" } }, - [7921]={ + [8030]={ [1]={ [1]={ limit={ @@ -180330,7 +182908,7 @@ return { [1]="local_display_grants_skill_resentment_fire_degen_level" } }, - [7922]={ + [8031]={ [1]={ [1]={ limit={ @@ -180346,7 +182924,7 @@ return { [1]="local_display_grants_solartwine_skill_level_x" } }, - [7923]={ + [8032]={ [1]={ [1]={ [1]={ @@ -180359,14 +182937,14 @@ return { [2]="#" } }, - text="[DNT] Every 6 seconds:\n{0:+d}% Chance to Block Attack Damage for 3 seconds\n{0:+d}% Chance to Block Spell Damage for 3 seconds" + text="DNT Every 6 seconds:\n{0:+d}% Chance to Block Attack Damage for 3 seconds\n{0:+d}% Chance to Block Spell Damage for 3 seconds" } }, stats={ [1]="local_display_guardian_alternating_block_chance" } }, - [7924]={ + [8033]={ [1]={ [1]={ limit={ @@ -180395,7 +182973,7 @@ return { [1]="local_display_mod_aura_mana_regeration_rate_+%" } }, - [7925]={ + [8034]={ [1]={ [1]={ limit={ @@ -180424,7 +183002,7 @@ return { [1]="local_display_movement_speed_+%_for_you_and_nearby_allies" } }, - [7926]={ + [8035]={ [1]={ [1]={ limit={ @@ -180440,7 +183018,7 @@ return { [1]="local_display_nearby_allies_action_speed_cannot_be_reduced_below_base" } }, - [7927]={ + [8036]={ [1]={ [1]={ limit={ @@ -180456,7 +183034,7 @@ return { [1]="local_display_nearby_allies_critical_strike_multiplier_+" } }, - [7928]={ + [8037]={ [1]={ [1]={ [1]={ @@ -180476,7 +183054,7 @@ return { [1]="local_display_nearby_allies_extra_damage_rolls" } }, - [7929]={ + [8038]={ [1]={ [1]={ [1]={ @@ -180496,7 +183074,7 @@ return { [1]="local_display_nearby_allies_have_fortify" } }, - [7930]={ + [8039]={ [1]={ [1]={ [1]={ @@ -180516,7 +183094,7 @@ return { [1]="local_display_nearby_enemies_are_chilled" } }, - [7931]={ + [8040]={ [1]={ [1]={ [1]={ @@ -180536,7 +183114,7 @@ return { [1]="local_display_nearby_enemies_are_covered_in_ash" } }, - [7932]={ + [8041]={ [1]={ [1]={ [1]={ @@ -180556,7 +183134,7 @@ return { [1]="local_display_nearby_enemies_are_debilitated" } }, - [7933]={ + [8042]={ [1]={ [1]={ [1]={ @@ -180576,7 +183154,7 @@ return { [1]="local_display_nearby_enemies_are_intimidated" } }, - [7934]={ + [8043]={ [1]={ [1]={ limit={ @@ -180592,7 +183170,7 @@ return { [1]="local_display_nearby_enemies_cannot_crit" } }, - [7935]={ + [8044]={ [1]={ [1]={ [1]={ @@ -180612,7 +183190,7 @@ return { [1]="local_display_nearby_enemies_have_fire_exposure" } }, - [7936]={ + [8045]={ [1]={ [1]={ limit={ @@ -180628,7 +183206,7 @@ return { [1]="local_display_nearby_enemy_chaos_damage_resistance_%" } }, - [7937]={ + [8046]={ [1]={ [1]={ limit={ @@ -180644,7 +183222,7 @@ return { [1]="local_display_nearby_enemy_cold_damage_resistance_%" } }, - [7938]={ + [8047]={ [1]={ [1]={ limit={ @@ -180660,7 +183238,7 @@ return { [1]="local_display_nearby_enemy_elemental_damage_taken_+%" } }, - [7939]={ + [8048]={ [1]={ [1]={ limit={ @@ -180676,7 +183254,7 @@ return { [1]="local_display_nearby_enemy_fire_damage_resistance_%" } }, - [7940]={ + [8049]={ [1]={ [1]={ limit={ @@ -180692,7 +183270,7 @@ return { [1]="local_display_nearby_enemy_life_reserved_by_stat_%" } }, - [7941]={ + [8050]={ [1]={ [1]={ limit={ @@ -180708,7 +183286,7 @@ return { [1]="local_display_nearby_enemy_lightning_damage_resistance_%" } }, - [7942]={ + [8051]={ [1]={ [1]={ limit={ @@ -180724,7 +183302,7 @@ return { [1]="local_display_nearby_enemy_no_chaos_damage_resistance" } }, - [7943]={ + [8052]={ [1]={ [1]={ limit={ @@ -180753,7 +183331,7 @@ return { [1]="local_display_nearby_enemy_physical_damage_taken_+%" } }, - [7944]={ + [8053]={ [1]={ [1]={ [1]={ @@ -180773,7 +183351,23 @@ return { [1]="local_display_self_crushed" } }, - [7945]={ + [8054]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Socketed Gems are Supported by Level {0} Crustaceous Grasp" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_level_x_crustaceous_grasp" + } + }, + [8055]={ [1]={ [1]={ limit={ @@ -180789,7 +183383,7 @@ return { [1]="local_display_touched_by_tormented_illegal_fisherman" } }, - [7946]={ + [8056]={ [1]={ [1]={ [1]={ @@ -180826,7 +183420,7 @@ return { [1]="local_display_trickster_heartstopper_rotating_buff" } }, - [7947]={ + [8057]={ [1]={ [1]={ limit={ @@ -180842,7 +183436,7 @@ return { [1]="local_display_trigger_level_X_assassins_mark_when_you_critically_hit_rare_or_unique_enemy_with_attacks" } }, - [7948]={ + [8058]={ [1]={ [1]={ [1]={ @@ -180862,7 +183456,7 @@ return { [1]="local_display_trigger_level_x_summon_spectral_tiger_on_crit" } }, - [7949]={ + [8059]={ [1]={ [1]={ [1]={ @@ -180882,7 +183476,7 @@ return { [1]="local_display_you_get_elemental_ailments_instead_of_allies" } }, - [7950]={ + [8060]={ [1]={ [1]={ limit={ @@ -180898,7 +183492,7 @@ return { [1]="local_double_damage_with_attacks" } }, - [7951]={ + [8061]={ [1]={ [1]={ limit={ @@ -180923,7 +183517,7 @@ return { [1]="local_double_damage_with_attacks_chance_%" } }, - [7952]={ + [8062]={ [1]={ [1]={ [1]={ @@ -180956,7 +183550,7 @@ return { [1]="local_elemental_damage_+%" } }, - [7953]={ + [8063]={ [1]={ [1]={ limit={ @@ -180972,7 +183566,7 @@ return { [1]="local_elemental_damage_+%_per_2%_quality" } }, - [7954]={ + [8064]={ [1]={ [1]={ [1]={ @@ -181005,7 +183599,7 @@ return { [1]="local_emberglow_ignite_proliferation_radius" } }, - [7955]={ + [8065]={ [1]={ [1]={ [1]={ @@ -181029,7 +183623,7 @@ return { [1]="local_energy_shield_regeneration_per_minute_%_if_crit_recently" } }, - [7956]={ + [8066]={ [1]={ [1]={ limit={ @@ -181045,7 +183639,23 @@ return { [1]="local_evasion_rating_and_energy_shield" } }, - [7957]={ + [8067]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="DNT {0}% increased Explicit Modifier Magnitudes per socketed Abyss Jewel" + } + }, + stats={ + [1]="local_explicit_mod_effect_+%_per_global_socketed_abyss_jewel" + } + }, + [8068]={ [1]={ [1]={ limit={ @@ -181061,7 +183671,7 @@ return { [1]="local_fire_resistance_%_per_2%_quality" } }, - [7958]={ + [8069]={ [1]={ [1]={ [1]={ @@ -181085,7 +183695,7 @@ return { [1]="local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed" } }, - [7959]={ + [8070]={ [1]={ [1]={ limit={ @@ -181101,7 +183711,7 @@ return { [1]="local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed" } }, - [7960]={ + [8071]={ [1]={ [1]={ [1]={ @@ -181121,7 +183731,7 @@ return { [1]="local_gain_immortal_ambition_if_all_socketed_gems_red" } }, - [7961]={ + [8072]={ [1]={ [1]={ [1]={ @@ -181154,7 +183764,7 @@ return { [1]="local_gain_x_soul_eater_stacks_on_kill_vs_rare_or_unique_with_this_weapon" } }, - [7962]={ + [8073]={ [1]={ [1]={ [1]={ @@ -181174,7 +183784,7 @@ return { [1]="local_gems_socketed_have_no_attribute_requirements" } }, - [7963]={ + [8074]={ [1]={ [1]={ [1]={ @@ -181194,7 +183804,7 @@ return { [1]="local_gems_socketed_in_blue_sockets_have_no_attribute_requirements" } }, - [7964]={ + [8075]={ [1]={ [1]={ limit={ @@ -181219,7 +183829,7 @@ return { [1]="local_hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [7965]={ + [8076]={ [1]={ [1]={ limit={ @@ -181235,7 +183845,7 @@ return { [1]="local_hits_with_this_weapon_always_hit_if_have_blocked_recently" } }, - [7966]={ + [8077]={ [1]={ [1]={ limit={ @@ -181264,7 +183874,7 @@ return { [1]="local_hits_with_this_weapon_freeze_as_though_damage_+%_final" } }, - [7967]={ + [8078]={ [1]={ [1]={ limit={ @@ -181293,7 +183903,7 @@ return { [1]="local_hits_with_this_weapon_shock_as_though_damage_+%_final" } }, - [7968]={ + [8079]={ [1]={ [1]={ limit={ @@ -181322,7 +183932,7 @@ return { [1]="local_ignite_damage_+%_final_with_this_weapon" } }, - [7969]={ + [8080]={ [1]={ [1]={ [1]={ @@ -181342,7 +183952,7 @@ return { [1]="local_immune_to_curses_if_item_corrupted" } }, - [7970]={ + [8081]={ [1]={ [1]={ [1]={ @@ -181362,7 +183972,7 @@ return { [1]="local_implicit_modifier_magnitudes_doubled" } }, - [7971]={ + [8082]={ [1]={ [1]={ [1]={ @@ -181382,7 +183992,7 @@ return { [1]="local_implicit_modifier_magnitudes_tripled" } }, - [7972]={ + [8083]={ [1]={ [1]={ [1]={ @@ -181415,7 +184025,7 @@ return { [1]="local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant" } }, - [7973]={ + [8084]={ [1]={ [1]={ limit={ @@ -181431,7 +184041,7 @@ return { [1]="local_intelligence_per_2%_quality" } }, - [7974]={ + [8085]={ [1]={ [1]={ limit={ @@ -181447,7 +184057,7 @@ return { [1]="local_item_can_roll_all_influences" } }, - [7975]={ + [8086]={ [1]={ [1]={ limit={ @@ -181463,7 +184073,7 @@ return { [1]="local_item_quality_+" } }, - [7976]={ + [8087]={ [1]={ [1]={ limit={ @@ -181479,7 +184089,7 @@ return { [1]="local_item_sell_price_doubled" } }, - [7977]={ + [8088]={ [1]={ [1]={ limit={ @@ -181495,7 +184105,7 @@ return { [1]="local_item_stats_are_doubled_in_breach" } }, - [7978]={ + [8089]={ [1]={ [1]={ [1]={ @@ -181515,7 +184125,7 @@ return { [1]="local_jewel_allocated_non_notable_passives_in_radius_grant_nothing" } }, - [7979]={ + [8090]={ [1]={ [1]={ limit={ @@ -181531,7 +184141,7 @@ return { [1]="local_jewel_allocated_notable_passives_in_radius_grant_nothing" } }, - [7980]={ + [8091]={ [1]={ [1]={ [1]={ @@ -181551,7 +184161,7 @@ return { [1]="local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius" } }, - [7981]={ + [8092]={ [1]={ [1]={ limit={ @@ -181567,7 +184177,7 @@ return { [1]="local_jewel_copy_stats_from_unallocated_notable_passives_in_radius" } }, - [7982]={ + [8093]={ [1]={ [1]={ limit={ @@ -181583,7 +184193,7 @@ return { [1]="local_jewel_disable_combust_with_40_strength_in_radius" } }, - [7983]={ + [8094]={ [1]={ [1]={ limit={ @@ -181612,7 +184222,7 @@ return { [1]="local_jewel_expansion_jewels_count" } }, - [7984]={ + [8095]={ [1]={ [1]={ [1]={ @@ -181649,7 +184259,7 @@ return { [1]="local_jewel_expansion_jewels_count_override" } }, - [7985]={ + [8096]={ [1]={ [1]={ limit={ @@ -181665,7 +184275,7 @@ return { [1]="local_jewel_expansion_keystone_disciple_of_kitava" } }, - [7986]={ + [8097]={ [1]={ [1]={ limit={ @@ -181681,7 +184291,7 @@ return { [1]="local_jewel_expansion_keystone_hollow_palm_technique" } }, - [7987]={ + [8098]={ [1]={ [1]={ limit={ @@ -181697,7 +184307,7 @@ return { [1]="local_jewel_expansion_keystone_kineticism" } }, - [7988]={ + [8099]={ [1]={ [1]={ limit={ @@ -181713,7 +184323,7 @@ return { [1]="local_jewel_expansion_keystone_lone_messenger" } }, - [7989]={ + [8100]={ [1]={ [1]={ limit={ @@ -181729,7 +184339,7 @@ return { [1]="local_jewel_expansion_keystone_natures_patience" } }, - [7990]={ + [8101]={ [1]={ [1]={ limit={ @@ -181745,7 +184355,7 @@ return { [1]="local_jewel_expansion_keystone_pitfighter" } }, - [7991]={ + [8102]={ [1]={ [1]={ limit={ @@ -181761,7 +184371,7 @@ return { [1]="local_jewel_expansion_keystone_secrets_of_suffering" } }, - [7992]={ + [8103]={ [1]={ [1]={ limit={ @@ -181777,7 +184387,7 @@ return { [1]="local_jewel_expansion_keystone_veterans_awareness" } }, - [7993]={ + [8104]={ [1]={ [1]={ [1]={ @@ -181801,7 +184411,7 @@ return { [1]="local_jewel_expansion_passive_node_index" } }, - [7994]={ + [8105]={ [1]={ [1]={ limit={ @@ -181817,7 +184427,7 @@ return { [1]="local_jewel_fireball_cannot_ignite" } }, - [7995]={ + [8106]={ [1]={ [1]={ limit={ @@ -181833,7 +184443,7 @@ return { [1]="local_jewel_fireball_chance_to_scorch_%" } }, - [7996]={ + [8107]={ [1]={ [1]={ limit={ @@ -181849,7 +184459,7 @@ return { [1]="local_jewel_infernal_cry_exerted_attacks_ignite_damage_+%_final_with_for_strength_in_radius" } }, - [7997]={ + [8108]={ [1]={ [1]={ limit={ @@ -181878,7 +184488,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius" } }, - [7998]={ + [8109]={ [1]={ [1]={ limit={ @@ -181907,7 +184517,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius" } }, - [7999]={ + [8110]={ [1]={ [1]={ limit={ @@ -181923,7 +184533,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius" } }, - [8000]={ + [8111]={ [1]={ [1]={ limit={ @@ -181948,7 +184558,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius" } }, - [8001]={ + [8112]={ [1]={ [1]={ limit={ @@ -181977,7 +184587,7 @@ return { [1]="local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius" } }, - [8002]={ + [8113]={ [1]={ [1]={ limit={ @@ -181993,7 +184603,7 @@ return { [1]="local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant" } }, - [8003]={ + [8114]={ [1]={ [1]={ [1]={ @@ -182010,14 +184620,14 @@ return { [2]=-1 } }, - text="Left ring slot: {0}% of Elemental Hit Damage from you and\nyour Minions cannot be Reflected" + text="Left ring slot: you and your Minions prevent {0:+d}% of Reflected Elemental Damage" } }, stats={ [1]="local_left_ring_slot_-%_of_your_elemental_damage_cannot_be_reflected" } }, - [8004]={ + [8115]={ [1]={ [1]={ [1]={ @@ -182037,7 +184647,7 @@ return { [1]="local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [8005]={ + [8116]={ [1]={ [1]={ limit={ @@ -182053,7 +184663,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_cannot_chain" } }, - [8006]={ + [8117]={ [1]={ [1]={ limit={ @@ -182069,7 +184679,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_fork" } }, - [8007]={ + [8118]={ [1]={ [1]={ limit={ @@ -182098,7 +184708,7 @@ return { [1]="local_left_ring_slot_support_anticipation_rapid_fire_count" } }, - [8008]={ + [8119]={ [1]={ [1]={ limit={ @@ -182114,7 +184724,7 @@ return { [1]="local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura" } }, - [8009]={ + [8120]={ [1]={ [1]={ limit={ @@ -182143,7 +184753,7 @@ return { [1]="local_life_gain_per_target_vs_blinded_enemies" } }, - [8010]={ + [8121]={ [1]={ [1]={ limit={ @@ -182172,7 +184782,7 @@ return { [1]="local_life_gain_per_target_while_leeching" } }, - [8011]={ + [8122]={ [1]={ [1]={ [1]={ @@ -182196,7 +184806,7 @@ return { [1]="local_life_leech_from_any_damage_permyriad" } }, - [8012]={ + [8123]={ [1]={ [1]={ limit={ @@ -182212,7 +184822,7 @@ return { [1]="local_lightning_resistance_%_per_2%_quality" } }, - [8013]={ + [8124]={ [1]={ [1]={ [1]={ @@ -182245,7 +184855,7 @@ return { [1]="local_maim_on_hit_%" } }, - [8014]={ + [8125]={ [1]={ [1]={ [1]={ @@ -182269,7 +184879,7 @@ return { [1]="local_mana_leech_from_any_damage_permyriad" } }, - [8015]={ + [8126]={ [1]={ [1]={ limit={ @@ -182285,7 +184895,7 @@ return { [1]="local_mana_leech_is_instant" } }, - [8016]={ + [8127]={ [1]={ [1]={ [1]={ @@ -182322,7 +184932,7 @@ return { [1]="local_maximum_energy_shield_+%_if_item_corrupted" } }, - [8017]={ + [8128]={ [1]={ [1]={ limit={ @@ -182338,7 +184948,7 @@ return { [1]="local_maximum_life_per_2%_quality" } }, - [8018]={ + [8129]={ [1]={ [1]={ [1]={ @@ -182375,7 +184985,7 @@ return { [1]="local_maximum_life_+%_if_item_corrupted" } }, - [8019]={ + [8130]={ [1]={ [1]={ limit={ @@ -182391,7 +185001,7 @@ return { [1]="local_maximum_mana_per_2%_quality" } }, - [8020]={ + [8131]={ [1]={ [1]={ limit={ @@ -182407,7 +185017,7 @@ return { [1]="local_maximum_quality_is_%" } }, - [8021]={ + [8132]={ [1]={ [1]={ limit={ @@ -182423,7 +185033,7 @@ return { [1]="local_maximum_quality_+" } }, - [8022]={ + [8133]={ [1]={ [1]={ limit={ @@ -182439,7 +185049,7 @@ return { [1]="local_minion_accuracy_rating_with_minion_abyss_jewel_socketed" } }, - [8023]={ + [8134]={ [1]={ [1]={ [1]={ @@ -182472,7 +185082,7 @@ return { [1]="local_minions_chance_to_gain_unholy_might_on_spell_hit_4_seconds_%_with_minion_abyss_jewel_socketed" } }, - [8024]={ + [8135]={ [1]={ [1]={ [1]={ @@ -182509,7 +185119,7 @@ return { [1]="local_movement_speed_+%_if_item_corrupted" } }, - [8025]={ + [8136]={ [1]={ [1]={ [1]={ @@ -182542,7 +185152,193 @@ return { [1]="local_num_additional_poisons_to_inflict_when_inflicting_poison" } }, - [8026]={ + [8137]={ + [1]={ + [1]={ + [1]={ + k="display_indexable_non_active_support", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Skills Socketed in your Helmet are Supported by level {2} {1}" + }, + [2]={ + [1]={ + k="display_indexable_non_active_support", + v=2 + }, + limit={ + [1]={ + [1]=2, + [2]=2 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Skills Socketed in your Gloves are Supported by level {2} {1}" + }, + [3]={ + [1]={ + k="display_indexable_non_active_support", + v=2 + }, + limit={ + [1]={ + [1]=3, + [2]=3 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Skills Socketed in your Boots are Supported by level {2} {1}" + }, + [4]={ + [1]={ + k="display_indexable_non_active_support", + v=2 + }, + limit={ + [1]={ + [1]=4, + [2]=4 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Skills granted by your Passive Tree are Supported by level {2} {1}" + } + }, + stats={ + [1]="local_pearl_random_support_gem_1_slot_index", + [2]="local_pearl_random_support_gem_1_index", + [3]="local_pearl_random_support_gem_1_level" + } + }, + [8138]={ + [1]={ + [1]={ + [1]={ + k="display_indexable_non_active_support", + v=2 + }, + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Skills Socketed in your Helmet are Supported by level {2} {1}" + }, + [2]={ + [1]={ + k="display_indexable_non_active_support", + v=2 + }, + limit={ + [1]={ + [1]=2, + [2]=2 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Skills Socketed in your Gloves are Supported by level {2} {1}" + }, + [3]={ + [1]={ + k="display_indexable_non_active_support", + v=2 + }, + limit={ + [1]={ + [1]=3, + [2]=3 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Skills Socketed in your Boots are Supported by level {2} {1}" + }, + [4]={ + [1]={ + k="display_indexable_non_active_support", + v=2 + }, + limit={ + [1]={ + [1]=4, + [2]=4 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Skills granted by your Passive Tree are Supported by level {2} {1}" + } + }, + stats={ + [1]="local_pearl_random_support_gem_2_slot_index", + [2]="local_pearl_random_support_gem_2_index", + [3]="local_pearl_random_support_gem_2_level" + } + }, + [8139]={ [1]={ [1]={ [1]={ @@ -182575,7 +185371,7 @@ return { [1]="local_poison_on_critical_strike_chance_%" } }, - [8027]={ + [8140]={ [1]={ [1]={ [1]={ @@ -182608,7 +185404,7 @@ return { [1]="local_poison_on_hit_%" } }, - [8028]={ + [8141]={ [1]={ [1]={ limit={ @@ -182637,7 +185433,7 @@ return { [1]="local_prefix_mod_effect_+%" } }, - [8029]={ + [8142]={ [1]={ [1]={ [1]={ @@ -182657,7 +185453,7 @@ return { [1]="local_resist_all_elements_%_if_item_corrupted" } }, - [8030]={ + [8143]={ [1]={ [1]={ [1]={ @@ -182674,14 +185470,14 @@ return { [2]=-1 } }, - text="Right ring slot: {0}% of Physical Hit Damage from you and\nyour Minions cannot be Reflected" + text="Right ring slot: you and your Minions prevent {0:+d}% of Reflected Physical Damage" } }, stats={ [1]="local_right_ring_slot_-%_of_your_physical_damage_cannot_be_reflected" } }, - [8031]={ + [8144]={ [1]={ [1]={ [1]={ @@ -182701,7 +185497,7 @@ return { [1]="local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [8032]={ + [8145]={ [1]={ [1]={ limit={ @@ -182717,7 +185513,7 @@ return { [1]="local_right_ring_slot_number_of_additional_chains_for_spell_projectiles" } }, - [8033]={ + [8146]={ [1]={ [1]={ limit={ @@ -182733,7 +185529,7 @@ return { [1]="local_right_ring_slot_projectiles_from_spells_cannot_fork" } }, - [8034]={ + [8147]={ [1]={ [1]={ limit={ @@ -182762,7 +185558,7 @@ return { [1]="local_right_ring_slot_shockwave_support_added_cooldown_count" } }, - [8035]={ + [8148]={ [1]={ [1]={ limit={ @@ -182778,7 +185574,7 @@ return { [1]="local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura" } }, - [8036]={ + [8149]={ [1]={ [1]={ limit={ @@ -182807,7 +185603,7 @@ return { [1]="local_ring_attack_speed_+%_final" } }, - [8037]={ + [8150]={ [1]={ [1]={ limit={ @@ -182836,7 +185632,7 @@ return { [1]="local_ring_burning_damage_+%_final" } }, - [8038]={ + [8151]={ [1]={ [1]={ limit={ @@ -182865,7 +185661,7 @@ return { [1]="local_ring_impaled_debuff_duration_+%_final" } }, - [8039]={ + [8152]={ [1]={ [1]={ limit={ @@ -182894,7 +185690,7 @@ return { [1]="local_ring_nova_spells_area_of_effect_+%_final" } }, - [8040]={ + [8153]={ [1]={ [1]={ [1]={ @@ -182931,7 +185727,7 @@ return { [1]="local_sentinel_drone_difficulty_+%" } }, - [8041]={ + [8154]={ [1]={ [1]={ [1]={ @@ -182951,7 +185747,7 @@ return { [1]="local_shield_trigger_socketed_elemental_spell_on_block_display_cooldown" } }, - [8042]={ + [8155]={ [1]={ [1]={ limit={ @@ -182967,7 +185763,7 @@ return { [1]="local_socketed_gem_level_+_if_only_socketed_gem" } }, - [8043]={ + [8156]={ [1]={ [1]={ limit={ @@ -182983,7 +185779,7 @@ return { [1]="local_socketed_gem_level_+_per_filled_socket" } }, - [8044]={ + [8157]={ [1]={ [1]={ limit={ @@ -183012,7 +185808,7 @@ return { [1]="local_socketed_magic_ghastly_jewel_effect_+%" } }, - [8045]={ + [8158]={ [1]={ [1]={ limit={ @@ -183041,7 +185837,7 @@ return { [1]="local_socketed_magic_hypnotic_jewel_effect_+%" } }, - [8046]={ + [8159]={ [1]={ [1]={ limit={ @@ -183070,7 +185866,7 @@ return { [1]="local_socketed_magic_murderous_jewel_effect_+%" } }, - [8047]={ + [8160]={ [1]={ [1]={ limit={ @@ -183099,7 +185895,7 @@ return { [1]="local_socketed_magic_searching_jewel_effect_+%" } }, - [8048]={ + [8161]={ [1]={ [1]={ limit={ @@ -183128,7 +185924,7 @@ return { [1]="local_socketed_rare_ghastly_jewel_effect_+%" } }, - [8049]={ + [8162]={ [1]={ [1]={ limit={ @@ -183157,7 +185953,7 @@ return { [1]="local_socketed_rare_hypnotic_jewel_effect_+%" } }, - [8050]={ + [8163]={ [1]={ [1]={ limit={ @@ -183186,7 +185982,7 @@ return { [1]="local_socketed_rare_murderous_jewel_effect_+%" } }, - [8051]={ + [8164]={ [1]={ [1]={ limit={ @@ -183215,7 +186011,7 @@ return { [1]="local_socketed_rare_searching_jewel_effect_+%" } }, - [8052]={ + [8165]={ [1]={ [1]={ [1]={ @@ -183252,7 +186048,7 @@ return { [1]="local_spell_damage_+%_if_item_corrupted" } }, - [8053]={ + [8166]={ [1]={ [1]={ [1]={ @@ -183272,7 +186068,7 @@ return { [1]="local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed" } }, - [8054]={ + [8167]={ [1]={ [1]={ limit={ @@ -183288,7 +186084,7 @@ return { [1]="local_strength_per_2%_quality" } }, - [8055]={ + [8168]={ [1]={ [1]={ limit={ @@ -183317,7 +186113,7 @@ return { [1]="local_suffix_mod_effect_+%" } }, - [8056]={ + [8169]={ [1]={ [1]={ limit={ @@ -183333,7 +186129,7 @@ return { [1]="local_treat_enemy_resistances_as_negated_on_elemental_damage_hit" } }, - [8057]={ + [8170]={ [1]={ [1]={ limit={ @@ -183349,7 +186145,7 @@ return { [1]="local_unique_can_have_crucible_unique_staff_passive_tree_mods" } }, - [8058]={ + [8171]={ [1]={ [1]={ limit={ @@ -183365,7 +186161,7 @@ return { [1]="local_unique_can_have_shield_weapon_passive_tree" } }, - [8059]={ + [8172]={ [1]={ [1]={ limit={ @@ -183381,7 +186177,7 @@ return { [1]="local_unique_can_have_two_handed_sword_weapon_passive_tree" } }, - [8060]={ + [8173]={ [1]={ [1]={ limit={ @@ -183410,7 +186206,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius" } }, - [8061]={ + [8174]={ [1]={ [1]={ [1]={ @@ -183434,7 +186230,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius" } }, - [8062]={ + [8175]={ [1]={ [1]={ [1]={ @@ -183454,7 +186250,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius" } }, - [8063]={ + [8176]={ [1]={ [1]={ limit={ @@ -183483,7 +186279,7 @@ return { [1]="local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius" } }, - [8064]={ + [8177]={ [1]={ [1]={ limit={ @@ -183499,7 +186295,7 @@ return { [1]="local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius" } }, - [8065]={ + [8178]={ [1]={ [1]={ limit={ @@ -183515,7 +186311,7 @@ return { [1]="local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius" } }, - [8066]={ + [8179]={ [1]={ [1]={ limit={ @@ -183531,7 +186327,7 @@ return { [1]="local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius" } }, - [8067]={ + [8180]={ [1]={ [1]={ [1]={ @@ -183551,7 +186347,7 @@ return { [1]="local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius" } }, - [8068]={ + [8181]={ [1]={ [1]={ limit={ @@ -183580,7 +186376,7 @@ return { [1]="local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius" } }, - [8069]={ + [8182]={ [1]={ [1]={ limit={ @@ -183609,7 +186405,7 @@ return { [1]="local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius" } }, - [8070]={ + [8183]={ [1]={ [1]={ limit={ @@ -183625,7 +186421,7 @@ return { [1]="local_unique_jewel_cold_and_lightning_resistance_to_melee_damage" } }, - [8071]={ + [8184]={ [1]={ [1]={ limit={ @@ -183641,7 +186437,7 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_cold_damage_to_convert_to_chaos_%" } }, - [8072]={ + [8185]={ [1]={ [1]={ limit={ @@ -183657,7 +186453,7 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance" } }, - [8073]={ + [8186]={ [1]={ [1]={ limit={ @@ -183673,7 +186469,7 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_maximum_mana_scaled_%" } }, - [8074]={ + [8187]={ [1]={ [1]={ [1]={ @@ -183693,7 +186489,7 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%" } }, - [8075]={ + [8188]={ [1]={ [1]={ limit={ @@ -183709,7 +186505,7 @@ return { [1]="local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius" } }, - [8076]={ + [8189]={ [1]={ [1]={ limit={ @@ -183738,7 +186534,7 @@ return { [1]="local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius" } }, - [8077]={ + [8190]={ [1]={ [1]={ limit={ @@ -183754,7 +186550,7 @@ return { [1]="local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius" } }, - [8078]={ + [8191]={ [1]={ [1]={ limit={ @@ -183783,7 +186579,7 @@ return { [1]="local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius" } }, - [8079]={ + [8192]={ [1]={ [1]={ limit={ @@ -183799,7 +186595,7 @@ return { [1]="local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius" } }, - [8080]={ + [8193]={ [1]={ [1]={ limit={ @@ -183828,7 +186624,7 @@ return { [1]="local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius" } }, - [8081]={ + [8194]={ [1]={ [1]={ limit={ @@ -183857,7 +186653,7 @@ return { [1]="local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius" } }, - [8082]={ + [8195]={ [1]={ [1]={ limit={ @@ -183873,7 +186669,7 @@ return { [1]="local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius" } }, - [8083]={ + [8196]={ [1]={ [1]={ [1]={ @@ -183893,7 +186689,7 @@ return { [1]="local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius" } }, - [8084]={ + [8197]={ [1]={ [1]={ limit={ @@ -183918,7 +186714,7 @@ return { [1]="local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius" } }, - [8085]={ + [8198]={ [1]={ [1]={ limit={ @@ -183934,7 +186730,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius" } }, - [8086]={ + [8199]={ [1]={ [1]={ limit={ @@ -183950,7 +186746,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius" } }, - [8087]={ + [8200]={ [1]={ [1]={ limit={ @@ -183966,7 +186762,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int" } }, - [8088]={ + [8201]={ [1]={ [1]={ limit={ @@ -183982,7 +186778,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex" } }, - [8089]={ + [8202]={ [1]={ [1]={ limit={ @@ -183998,7 +186794,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex" } }, - [8090]={ + [8203]={ [1]={ [1]={ limit={ @@ -184014,7 +186810,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius" } }, - [8091]={ + [8204]={ [1]={ [1]={ limit={ @@ -184030,7 +186826,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius" } }, - [8092]={ + [8205]={ [1]={ [1]={ limit={ @@ -184046,7 +186842,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius" } }, - [8093]={ + [8206]={ [1]={ [1]={ limit={ @@ -184062,7 +186858,7 @@ return { [1]="local_unique_jewel_fire_and_cold_resistance_to_spell_damage" } }, - [8094]={ + [8207]={ [1]={ [1]={ limit={ @@ -184078,7 +186874,7 @@ return { [1]="local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage" } }, - [8095]={ + [8208]={ [1]={ [1]={ limit={ @@ -184094,7 +186890,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%" } }, - [8096]={ + [8209]={ [1]={ [1]={ limit={ @@ -184110,7 +186906,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance" } }, - [8097]={ + [8210]={ [1]={ [1]={ limit={ @@ -184126,7 +186922,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_fire_damage_to_convert_to_chaos_%" } }, - [8098]={ + [8211]={ [1]={ [1]={ limit={ @@ -184142,7 +186938,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_maximum_life_scaled_%" } }, - [8099]={ + [8212]={ [1]={ [1]={ limit={ @@ -184167,7 +186963,7 @@ return { [1]="local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius" } }, - [8100]={ + [8213]={ [1]={ [1]={ limit={ @@ -184183,7 +186979,7 @@ return { [1]="local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius" } }, - [8101]={ + [8214]={ [1]={ [1]={ limit={ @@ -184212,7 +187008,7 @@ return { [1]="local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius" } }, - [8102]={ + [8215]={ [1]={ [1]={ limit={ @@ -184237,7 +187033,7 @@ return { [1]="local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius" } }, - [8103]={ + [8216]={ [1]={ [1]={ limit={ @@ -184266,7 +187062,7 @@ return { [1]="local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius" } }, - [8104]={ + [8217]={ [1]={ [1]={ limit={ @@ -184291,7 +187087,7 @@ return { [1]="local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius" } }, - [8105]={ + [8218]={ [1]={ [1]={ limit={ @@ -184307,7 +187103,7 @@ return { [1]="local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius" } }, - [8106]={ + [8219]={ [1]={ [1]={ [1]={ @@ -184344,7 +187140,7 @@ return { [1]="local_unique_jewel_grants_x_empty_passives" } }, - [8107]={ + [8220]={ [1]={ [1]={ limit={ @@ -184373,7 +187169,7 @@ return { [1]="local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius" } }, - [8108]={ + [8221]={ [1]={ [1]={ limit={ @@ -184389,7 +187185,7 @@ return { [1]="local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius" } }, - [8109]={ + [8222]={ [1]={ [1]={ limit={ @@ -184414,7 +187210,7 @@ return { [1]="local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius" } }, - [8110]={ + [8223]={ [1]={ [1]={ limit={ @@ -184443,7 +187239,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius" } }, - [8111]={ + [8224]={ [1]={ [1]={ limit={ @@ -184472,7 +187268,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius" } }, - [8112]={ + [8225]={ [1]={ [1]={ limit={ @@ -184488,7 +187284,7 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%" } }, - [8113]={ + [8226]={ [1]={ [1]={ limit={ @@ -184504,7 +187300,7 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_lightning_damage_to_convert_to_chaos_%" } }, - [8114]={ + [8227]={ [1]={ [1]={ limit={ @@ -184520,7 +187316,7 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_maximum_energy_shield_scaled_%" } }, - [8115]={ + [8228]={ [1]={ [1]={ limit={ @@ -184536,7 +187332,7 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance" } }, - [8116]={ + [8229]={ [1]={ [1]={ limit={ @@ -184552,7 +187348,7 @@ return { [1]="local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius" } }, - [8117]={ + [8230]={ [1]={ [1]={ limit={ @@ -184577,7 +187373,7 @@ return { [1]="local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius" } }, - [8118]={ + [8231]={ [1]={ [1]={ limit={ @@ -184606,7 +187402,7 @@ return { [1]="local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius" } }, - [8119]={ + [8232]={ [1]={ [1]={ limit={ @@ -184635,7 +187431,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius" } }, - [8120]={ + [8233]={ [1]={ [1]={ limit={ @@ -184664,7 +187460,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius" } }, - [8121]={ + [8234]={ [1]={ [1]={ limit={ @@ -184689,7 +187485,7 @@ return { [1]="local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius" } }, - [8122]={ + [8235]={ [1]={ [1]={ limit={ @@ -184705,7 +187501,7 @@ return { [1]="local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius" } }, - [8123]={ + [8236]={ [1]={ [1]={ limit={ @@ -184734,7 +187530,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius" } }, - [8124]={ + [8237]={ [1]={ [1]={ limit={ @@ -184763,7 +187559,7 @@ return { [1]="local_unique_jewel_non_keystone_passive_in_radius_effect_+%" } }, - [8125]={ + [8238]={ [1]={ [1]={ limit={ @@ -184779,7 +187575,7 @@ return { [1]="local_unique_jewel_notable_passive_in_radius_does_nothing" } }, - [8126]={ + [8239]={ [1]={ [1]={ limit={ @@ -184808,7 +187604,7 @@ return { [1]="local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed" } }, - [8127]={ + [8240]={ [1]={ [1]={ limit={ @@ -184824,7 +187620,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_additional_all_attributes" } }, - [8128]={ + [8241]={ [1]={ [1]={ limit={ @@ -184840,7 +187636,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_base_chaos_damage_resistance_%" } }, - [8129]={ + [8242]={ [1]={ [1]={ limit={ @@ -184856,7 +187652,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_base_maximum_life" } }, - [8130]={ + [8243]={ [1]={ [1]={ limit={ @@ -184872,7 +187668,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_base_maximum_mana" } }, - [8131]={ + [8244]={ [1]={ [1]={ limit={ @@ -184901,7 +187697,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_chaos_damage_+%" } }, - [8132]={ + [8245]={ [1]={ [1]={ limit={ @@ -184930,7 +187726,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_cold_damage_+%" } }, - [8133]={ + [8246]={ [1]={ [1]={ limit={ @@ -184959,7 +187755,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_critical_strike_chance_+%" } }, - [8134]={ + [8247]={ [1]={ [1]={ limit={ @@ -184988,7 +187784,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_evasion_rating_+%" } }, - [8135]={ + [8248]={ [1]={ [1]={ limit={ @@ -185017,7 +187813,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_fire_damage_+%" } }, - [8136]={ + [8249]={ [1]={ [1]={ limit={ @@ -185046,7 +187842,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_lightning_damage_+%" } }, - [8137]={ + [8250]={ [1]={ [1]={ limit={ @@ -185075,7 +187871,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_maximum_energy_shield_+%" } }, - [8138]={ + [8251]={ [1]={ [1]={ limit={ @@ -185104,7 +187900,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_physical_damage_+%" } }, - [8139]={ + [8252]={ [1]={ [1]={ limit={ @@ -185133,7 +187929,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_physical_damage_reduction_rating_+%" } }, - [8140]={ + [8253]={ [1]={ [1]={ limit={ @@ -185162,7 +187958,7 @@ return { [1]="local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius" } }, - [8141]={ + [8254]={ [1]={ [1]={ limit={ @@ -185187,7 +187983,7 @@ return { [1]="local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed" } }, - [8142]={ + [8255]={ [1]={ [1]={ limit={ @@ -185212,7 +188008,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius" } }, - [8143]={ + [8256]={ [1]={ [1]={ limit={ @@ -185228,7 +188024,7 @@ return { [1]="local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius" } }, - [8144]={ + [8257]={ [1]={ [1]={ limit={ @@ -185244,7 +188040,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius" } }, - [8145]={ + [8258]={ [1]={ [1]={ limit={ @@ -185273,7 +188069,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius" } }, - [8146]={ + [8259]={ [1]={ [1]={ limit={ @@ -185289,7 +188085,7 @@ return { [1]="local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius" } }, - [8147]={ + [8260]={ [1]={ [1]={ [1]={ @@ -185309,7 +188105,7 @@ return { [1]="local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius" } }, - [8148]={ + [8261]={ [1]={ [1]={ limit={ @@ -185325,7 +188121,7 @@ return { [1]="local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius" } }, - [8149]={ + [8262]={ [1]={ [1]={ limit={ @@ -185354,7 +188150,7 @@ return { [1]="local_unique_jewel_tattoos_in_radius_effect_+%" } }, - [8150]={ + [8263]={ [1]={ [1]={ limit={ @@ -185370,7 +188166,7 @@ return { [1]="local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius" } }, - [8151]={ + [8264]={ [1]={ [1]={ limit={ @@ -185386,7 +188182,7 @@ return { [1]="local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius" } }, - [8152]={ + [8265]={ [1]={ [1]={ limit={ @@ -185402,7 +188198,7 @@ return { [1]="local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius" } }, - [8153]={ + [8266]={ [1]={ [1]={ limit={ @@ -185418,7 +188214,7 @@ return { [1]="local_weapon_crit_chance_is_%" } }, - [8154]={ + [8267]={ [1]={ [1]={ [1]={ @@ -185438,7 +188234,7 @@ return { [1]="local_weapon_passive_tree_granted_passive_hash" } }, - [8155]={ + [8268]={ [1]={ [1]={ [1]={ @@ -185471,7 +188267,7 @@ return { [1]="local_weapon_range_+_per_10%_quality" } }, - [8156]={ + [8269]={ [1]={ [1]={ [1]={ @@ -185491,7 +188287,7 @@ return { [1]="local_weapon_trigger_socketed_fire_spell_on_hit_display_cooldown" } }, - [8157]={ + [8270]={ [1]={ [1]={ [1]={ @@ -185532,7 +188328,7 @@ return { [1]="local_wither_on_hit_vs_enemies_with_X_or_higher_poisons" } }, - [8158]={ + [8271]={ [1]={ [1]={ limit={ @@ -185548,7 +188344,7 @@ return { [1]="lose_adrenaline_on_losing_flame_touched" } }, - [8159]={ + [8272]={ [1]={ [1]={ limit={ @@ -185564,7 +188360,7 @@ return { [1]="lose_all_charges_on_starting_movement" } }, - [8160]={ + [8273]={ [1]={ [1]={ limit={ @@ -185580,7 +188376,7 @@ return { [1]="lose_all_defiance_on_reaching_x_defiance" } }, - [8161]={ + [8274]={ [1]={ [1]={ limit={ @@ -185596,7 +188392,7 @@ return { [1]="lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges" } }, - [8162]={ + [8275]={ [1]={ [1]={ limit={ @@ -185612,7 +188408,7 @@ return { [1]="lose_all_gale_force_when_hit" } }, - [8163]={ + [8276]={ [1]={ [1]={ limit={ @@ -185628,7 +188424,7 @@ return { [1]="lose_all_power_charges_on_block" } }, - [8164]={ + [8277]={ [1]={ [1]={ limit={ @@ -185644,7 +188440,7 @@ return { [1]="lose_%_of_es_on_crit" } }, - [8165]={ + [8278]={ [1]={ [1]={ limit={ @@ -185660,7 +188456,7 @@ return { [1]="lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill" } }, - [8166]={ + [8279]={ [1]={ [1]={ limit={ @@ -185676,7 +188472,7 @@ return { [1]="lose_%_of_life_on_crit" } }, - [8167]={ + [8280]={ [1]={ [1]={ limit={ @@ -185692,7 +188488,7 @@ return { [1]="lose_%_of_mana_when_you_use_an_attack_skill" } }, - [8168]={ + [8281]={ [1]={ [1]={ [1]={ @@ -185712,7 +188508,7 @@ return { [1]="lose_power_charge_each_second_if_not_detonated_mines_recently" } }, - [8169]={ + [8282]={ [1]={ [1]={ limit={ @@ -185728,7 +188524,7 @@ return { [1]="lose_x_mana_when_you_use_skill" } }, - [8170]={ + [8283]={ [1]={ [1]={ limit={ @@ -185753,7 +188549,7 @@ return { [1]="local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence" } }, - [8171]={ + [8284]={ [1]={ [1]={ limit={ @@ -185769,7 +188565,7 @@ return { [1]="low_life_threshold_%_override" } }, - [8172]={ + [8285]={ [1]={ [1]={ [1]={ @@ -185789,7 +188585,7 @@ return { [1]="lucky_or_unlucky_effects_are_instead_unexciting" } }, - [8173]={ + [8286]={ [1]={ [1]={ limit={ @@ -185818,7 +188614,7 @@ return { [1]="magic_flask_effect_+%_if_no_flasks_adjacent" } }, - [8174]={ + [8287]={ [1]={ [1]={ limit={ @@ -185847,7 +188643,7 @@ return { [1]="magic_monster_dropped_item_rarity_+%" } }, - [8175]={ + [8288]={ [1]={ [1]={ limit={ @@ -185872,7 +188668,7 @@ return { [1]="magma_orb_number_of_additional_projectiles" } }, - [8176]={ + [8289]={ [1]={ [1]={ limit={ @@ -185901,7 +188697,7 @@ return { [1]="magma_orb_skill_area_of_effect_+%_per_bounce" } }, - [8177]={ + [8290]={ [1]={ [1]={ limit={ @@ -185930,7 +188726,7 @@ return { [1]="maim_effect_+%" } }, - [8178]={ + [8291]={ [1]={ [1]={ [1]={ @@ -185950,7 +188746,7 @@ return { [1]="maim_on_crit_%_with_attacks" } }, - [8179]={ + [8292]={ [1]={ [1]={ [1]={ @@ -185983,7 +188779,7 @@ return { [1]="maim_on_hit_%" } }, - [8180]={ + [8293]={ [1]={ [1]={ limit={ @@ -186012,7 +188808,7 @@ return { [1]="main_hand_attack_damage_+%_while_wielding_two_weapon_types" } }, - [8181]={ + [8294]={ [1]={ [1]={ limit={ @@ -186041,7 +188837,7 @@ return { [1]="main_hand_attack_speed_+%_final" } }, - [8182]={ + [8295]={ [1]={ [1]={ limit={ @@ -186070,7 +188866,7 @@ return { [1]="main_hand_claw_life_gain_on_hit" } }, - [8183]={ + [8296]={ [1]={ [1]={ limit={ @@ -186095,7 +188891,7 @@ return { [1]="main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%" } }, - [8184]={ + [8297]={ [1]={ [1]={ limit={ @@ -186124,7 +188920,7 @@ return { [1]="main_hand_damage_+%_while_dual_wielding" } }, - [8185]={ + [8298]={ [1]={ [1]={ [1]={ @@ -186144,7 +188940,7 @@ return { [1]="malediction_on_hit" } }, - [8186]={ + [8299]={ [1]={ [1]={ [1]={ @@ -186181,7 +188977,7 @@ return { [1]="malevolence_mana_reservation_efficiency_-2%_per_1" } }, - [8187]={ + [8300]={ [1]={ [1]={ limit={ @@ -186210,7 +189006,7 @@ return { [1]="malevolence_mana_reservation_efficiency_+%" } }, - [8188]={ + [8301]={ [1]={ [1]={ limit={ @@ -186239,7 +189035,7 @@ return { [1]="mamba_strike_area_of_effect_+%" } }, - [8189]={ + [8302]={ [1]={ [1]={ limit={ @@ -186268,7 +189064,7 @@ return { [1]="mamba_strike_damage_+%" } }, - [8190]={ + [8303]={ [1]={ [1]={ limit={ @@ -186297,7 +189093,7 @@ return { [1]="mamba_strike_duration_+%" } }, - [8191]={ + [8304]={ [1]={ [1]={ limit={ @@ -186326,7 +189122,7 @@ return { [1]="mana_cost_+%_for_2_seconds_when_you_spend_800_mana" } }, - [8192]={ + [8305]={ [1]={ [1]={ limit={ @@ -186355,7 +189151,7 @@ return { [1]="mana_cost_+%_for_channelling_skills" } }, - [8193]={ + [8306]={ [1]={ [1]={ limit={ @@ -186384,7 +189180,7 @@ return { [1]="mana_cost_+%_for_trap_and_mine_skills" } }, - [8194]={ + [8307]={ [1]={ [1]={ limit={ @@ -186413,7 +189209,7 @@ return { [1]="mana_cost_+%_for_trap_skills" } }, - [8195]={ + [8308]={ [1]={ [1]={ limit={ @@ -186446,7 +189242,7 @@ return { [1]="mana_cost_+%_per_10_devotion" } }, - [8196]={ + [8309]={ [1]={ [1]={ [1]={ @@ -186466,7 +189262,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [8197]={ + [8310]={ [1]={ [1]={ [1]={ @@ -186486,7 +189282,7 @@ return { [1]="mana_degeneration_per_minute_%" } }, - [8198]={ + [8311]={ [1]={ [1]={ limit={ @@ -186502,7 +189298,7 @@ return { [1]="mana_flask_effects_are_not_removed_at_full_mana" } }, - [8199]={ + [8312]={ [1]={ [1]={ [1]={ @@ -186522,7 +189318,7 @@ return { [1]="mana_flask_recovery_is_instant_while_on_low_mana" } }, - [8200]={ + [8313]={ [1]={ [1]={ limit={ @@ -186547,7 +189343,7 @@ return { [1]="mana_flasks_gain_X_charges_every_3_seconds" } }, - [8201]={ + [8314]={ [1]={ [1]={ limit={ @@ -186563,7 +189359,7 @@ return { [1]="mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds" } }, - [8202]={ + [8315]={ [1]={ [1]={ limit={ @@ -186592,7 +189388,7 @@ return { [1]="mana_gained_on_attack_hit_vs_cursed_enemies" } }, - [8203]={ + [8316]={ [1]={ [1]={ limit={ @@ -186608,7 +189404,7 @@ return { [1]="mana_gained_on_cull" } }, - [8204]={ + [8317]={ [1]={ [1]={ limit={ @@ -186637,7 +189433,7 @@ return { [1]="mana_gained_on_spell_hit" } }, - [8205]={ + [8318]={ [1]={ [1]={ limit={ @@ -186666,7 +189462,7 @@ return { [1]="mana_gained_on_spell_hit_vs_cursed_enemies" } }, - [8206]={ + [8319]={ [1]={ [1]={ [1]={ @@ -186728,7 +189524,7 @@ return { [1]="mana_increased_per_x_overcapped_lightning_resistance_choir_of_the_storm" } }, - [8207]={ + [8320]={ [1]={ [1]={ [1]={ @@ -186752,7 +189548,7 @@ return { [1]="mana_leech_from_attack_damage_permyriad_per_power_charge" } }, - [8208]={ + [8321]={ [1]={ [1]={ [1]={ @@ -186772,7 +189568,7 @@ return { [1]="mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath" } }, - [8209]={ + [8322]={ [1]={ [1]={ [1]={ @@ -186796,7 +189592,7 @@ return { [1]="mana_leech_permyriad_vs_frozen_enemies" } }, - [8210]={ + [8323]={ [1]={ [1]={ limit={ @@ -186812,7 +189608,7 @@ return { [1]="mana_per_level" } }, - [8211]={ + [8324]={ [1]={ [1]={ limit={ @@ -186828,7 +189624,7 @@ return { [1]="mana_%_gained_on_block" } }, - [8212]={ + [8325]={ [1]={ [1]={ limit={ @@ -186844,7 +189640,7 @@ return { [1]="mana_%_to_add_as_energy_shield_at_devotion_threshold" } }, - [8213]={ + [8326]={ [1]={ [1]={ [1]={ @@ -186868,7 +189664,7 @@ return { [1]="mana_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [8214]={ + [8327]={ [1]={ [1]={ limit={ @@ -186884,7 +189680,7 @@ return { [1]="mana_recovery_from_regeneration_is_not_applied" } }, - [8215]={ + [8328]={ [1]={ [1]={ limit={ @@ -186913,7 +189709,7 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_a_mana_flask" } }, - [8216]={ + [8329]={ [1]={ [1]={ [1]={ @@ -186950,7 +189746,7 @@ return { [1]="mana_recovery_rate_+%_if_havent_killed_recently" } }, - [8217]={ + [8330]={ [1]={ [1]={ limit={ @@ -186979,7 +189775,7 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_clarity" } }, - [8218]={ + [8331]={ [1]={ [1]={ limit={ @@ -187008,7 +189804,7 @@ return { [1]="mana_regeneration_rate_+%_per_1%_spell_block_chance" } }, - [8219]={ + [8332]={ [1]={ [1]={ [1]={ @@ -187032,7 +189828,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [8220]={ + [8333]={ [1]={ [1]={ [1]={ @@ -187056,7 +189852,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_enemy_hit_recently" } }, - [8221]={ + [8334]={ [1]={ [1]={ [1]={ @@ -187080,7 +189876,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_used_movement_skill_recently" } }, - [8222]={ + [8335]={ [1]={ [1]={ [1]={ @@ -187100,7 +189896,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_10_devotion" } }, - [8223]={ + [8336]={ [1]={ [1]={ [1]={ @@ -187120,7 +189916,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_power_charge" } }, - [8224]={ + [8337]={ [1]={ [1]={ [1]={ @@ -187144,7 +189940,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_enemy_hit_recently" } }, - [8225]={ + [8338]={ [1]={ [1]={ [1]={ @@ -187168,7 +189964,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently" } }, - [8226]={ + [8339]={ [1]={ [1]={ [1]={ @@ -187188,7 +189984,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_active_totem" } }, - [8227]={ + [8340]={ [1]={ [1]={ [1]={ @@ -187208,7 +190004,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_dual_wielding" } }, - [8228]={ + [8341]={ [1]={ [1]={ [1]={ @@ -187228,7 +190024,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_holding_shield" } }, - [8229]={ + [8342]={ [1]={ [1]={ [1]={ @@ -187248,7 +190044,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [8230]={ + [8343]={ [1]={ [1]={ [1]={ @@ -187272,7 +190068,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_wielding_staff" } }, - [8231]={ + [8344]={ [1]={ [1]={ [1]={ @@ -187292,7 +190088,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_you_have_avians_flight" } }, - [8232]={ + [8345]={ [1]={ [1]={ [1]={ @@ -187329,7 +190125,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_frozen_recently" } }, - [8233]={ + [8346]={ [1]={ [1]={ [1]={ @@ -187366,7 +190162,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_shocked_recently" } }, - [8234]={ + [8347]={ [1]={ [1]={ [1]={ @@ -187403,7 +190199,7 @@ return { [1]="mana_regeneration_rate_+%_if_hit_cursed_enemy_recently" } }, - [8235]={ + [8348]={ [1]={ [1]={ limit={ @@ -187432,7 +190228,7 @@ return { [1]="mana_regeneration_rate_+%_per_raised_spectre" } }, - [8236]={ + [8349]={ [1]={ [1]={ limit={ @@ -187461,7 +190257,7 @@ return { [1]="mana_regeneration_rate_+%_while_moving" } }, - [8237]={ + [8350]={ [1]={ [1]={ limit={ @@ -187490,7 +190286,7 @@ return { [1]="mana_reservation_+%_with_skills_that_throw_mines" } }, - [8238]={ + [8351]={ [1]={ [1]={ limit={ @@ -187519,7 +190315,7 @@ return { [1]="mana_reservation_efficiency_+%_for_skills_that_throw_mines" } }, - [8239]={ + [8352]={ [1]={ [1]={ [1]={ @@ -187556,7 +190352,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines" } }, - [8240]={ + [8353]={ [1]={ [1]={ [1]={ @@ -187601,7 +190397,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_250_total_attributes" } }, - [8241]={ + [8354]={ [1]={ [1]={ limit={ @@ -187630,7 +190426,7 @@ return { [1]="mana_reservation_efficiency_+%_per_250_total_attributes" } }, - [8242]={ + [8355]={ [1]={ [1]={ limit={ @@ -187659,7 +190455,7 @@ return { [1]="mana_reservation_+%_per_250_total_attributes" } }, - [8243]={ + [8356]={ [1]={ [1]={ limit={ @@ -187688,7 +190484,7 @@ return { [1]="mana_reservation_+%_with_curse_skills" } }, - [8244]={ + [8357]={ [1]={ [1]={ limit={ @@ -187704,7 +190500,7 @@ return { [1]="manabond_and_stormbind_freeze_as_though_dealt_damage_+%" } }, - [8245]={ + [8358]={ [1]={ [1]={ limit={ @@ -187720,7 +190516,7 @@ return { [1]="manabond_and_stormbind_skill_lightning_damage_%_to_convert_to_cold" } }, - [8246]={ + [8359]={ [1]={ [1]={ limit={ @@ -187749,7 +190545,7 @@ return { [1]="manabond_damage_+%" } }, - [8247]={ + [8360]={ [1]={ [1]={ [1]={ @@ -187769,7 +190565,7 @@ return { [1]="manabond_lightning_penetration_%_while_on_low_mana" } }, - [8248]={ + [8361]={ [1]={ [1]={ limit={ @@ -187798,7 +190594,7 @@ return { [1]="manabond_skill_area_of_effect_+%" } }, - [8249]={ + [8362]={ [1]={ [1]={ limit={ @@ -187823,7 +190619,7 @@ return { [1]="manifest_dancing_dervish_number_of_additional_copies" } }, - [8250]={ + [8363]={ [1]={ [1]={ limit={ @@ -187848,7 +190644,7 @@ return { [1]="map_25%_chance_for_rare_monsters_to_be_possessed_up_to_x_times" } }, - [8251]={ + [8364]={ [1]={ [1]={ limit={ @@ -187873,7 +190669,7 @@ return { [1]="map_X_additional_random_unallocated_notables" } }, - [8252]={ + [8365]={ [1]={ [1]={ limit={ @@ -187898,7 +190694,7 @@ return { [1]="map_X_bestiary_packs_are_harvest_beasts" } }, - [8253]={ + [8366]={ [1]={ [1]={ limit={ @@ -187914,7 +190710,36 @@ return { [1]="map_reliquary_must_complete_strongboxes" } }, - [8254]={ + [8367]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Abyss Chasms in Area spawn {0}% increased Monsters per fed soul" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Abyss Chasms in Area spawn {0}% reduced Monsters per fed soul" + } + }, + stats={ + [1]="map_abyss_chasm_monster_quantity_+%" + } + }, + [8368]={ [1]={ [1]={ limit={ @@ -187939,7 +190764,7 @@ return { [1]="map_abyss_depths_chance_+%" } }, - [8255]={ + [8369]={ [1]={ [1]={ limit={ @@ -187955,7 +190780,7 @@ return { [1]="map_abyss_monsters_enhanced_per_chasm_closed" } }, - [8256]={ + [8370]={ [1]={ [1]={ limit={ @@ -187984,7 +190809,7 @@ return { [1]="map_actor_scale_+%" } }, - [8257]={ + [8371]={ [1]={ [1]={ limit={ @@ -188000,7 +190825,7 @@ return { [1]="map_additional_rare_in_rare_pack_%_chance" } }, - [8258]={ + [8372]={ [1]={ [1]={ limit={ @@ -188016,7 +190841,7 @@ return { [1]="map_additional_rare_in_synthesised_rare_pack_%_chance" } }, - [8259]={ + [8373]={ [1]={ [1]={ limit={ @@ -188063,7 +190888,7 @@ return { [2]="map_bestiary_league" } }, - [8260]={ + [8374]={ [1]={ [1]={ limit={ @@ -188088,7 +190913,7 @@ return { [1]="map_adds_X_extra_synthesis_mods" } }, - [8261]={ + [8375]={ [1]={ [1]={ limit={ @@ -188113,7 +190938,7 @@ return { [1]="map_adds_X_extra_synthesis_special_mods" } }, - [8262]={ + [8376]={ [1]={ [1]={ limit={ @@ -188142,7 +190967,7 @@ return { [1]="map_affliction_pack_size_+%" } }, - [8263]={ + [8377]={ [1]={ [1]={ limit={ @@ -188171,7 +190996,7 @@ return { [1]="map_affliction_reward_kills_+%" } }, - [8264]={ + [8378]={ [1]={ [1]={ limit={ @@ -188187,7 +191012,7 @@ return { [1]="map_all_magic_monsters_in_union_of_souls" } }, - [8265]={ + [8379]={ [1]={ [1]={ limit={ @@ -188203,7 +191028,7 @@ return { [1]="map_supporter_al_hezmin_spawn_daemon" } }, - [8266]={ + [8380]={ [1]={ [1]={ limit={ @@ -188219,7 +191044,7 @@ return { [1]="map_supporter_all_spawn_daemon" } }, - [8267]={ + [8381]={ [1]={ [1]={ limit={ @@ -188235,7 +191060,7 @@ return { [1]="map_supporter_atziri_spawn_daemon" } }, - [8268]={ + [8382]={ [1]={ [1]={ limit={ @@ -188251,7 +191076,7 @@ return { [1]="map_supporter_baran_spawn_daemon" } }, - [8269]={ + [8383]={ [1]={ [1]={ limit={ @@ -188267,7 +191092,7 @@ return { [1]="map_supporter_drox_daemon" } }, - [8270]={ + [8384]={ [1]={ [1]={ limit={ @@ -188283,7 +191108,7 @@ return { [1]="map_supporter_uber_elder_spawn_daemon" } }, - [8271]={ + [8385]={ [1]={ [1]={ limit={ @@ -188299,7 +191124,7 @@ return { [1]="map_supporter_uber_shaper_spawn_daemon" } }, - [8272]={ + [8386]={ [1]={ [1]={ limit={ @@ -188315,7 +191140,7 @@ return { [1]="map_supporter_sirus_spawn_daemon" } }, - [8273]={ + [8387]={ [1]={ [1]={ limit={ @@ -188331,7 +191156,7 @@ return { [1]="map_supporter_veritania_spawn_daemon" } }, - [8274]={ + [8388]={ [1]={ [1]={ limit={ @@ -188347,7 +191172,7 @@ return { [1]="map_monsters_petrification_for_X_seconds_on_hit" } }, - [8275]={ + [8389]={ [1]={ [1]={ limit={ @@ -188372,7 +191197,7 @@ return { [1]="map_architects_drops_additional_map_currency" } }, - [8276]={ + [8390]={ [1]={ [1]={ limit={ @@ -188397,7 +191222,7 @@ return { [1]="map_atlas_influence_type" } }, - [8277]={ + [8391]={ [1]={ [1]={ limit={ @@ -188413,7 +191238,7 @@ return { [1]="map_area_contains_arcanists_strongbox" } }, - [8278]={ + [8392]={ [1]={ [1]={ limit={ @@ -188429,7 +191254,7 @@ return { [1]="map_area_contains_avatar_of_ambush" } }, - [8279]={ + [8393]={ [1]={ [1]={ limit={ @@ -188445,7 +191270,7 @@ return { [1]="map_area_contains_avatar_of_anarchy" } }, - [8280]={ + [8394]={ [1]={ [1]={ limit={ @@ -188461,7 +191286,7 @@ return { [1]="map_area_contains_avatar_of_beyond" } }, - [8281]={ + [8395]={ [1]={ [1]={ limit={ @@ -188477,7 +191302,7 @@ return { [1]="map_area_contains_avatar_of_bloodlines" } }, - [8282]={ + [8396]={ [1]={ [1]={ limit={ @@ -188493,7 +191318,7 @@ return { [1]="map_area_contains_avatar_of_breach" } }, - [8283]={ + [8397]={ [1]={ [1]={ limit={ @@ -188509,7 +191334,7 @@ return { [1]="map_area_contains_avatar_of_domination" } }, - [8284]={ + [8398]={ [1]={ [1]={ limit={ @@ -188525,7 +191350,7 @@ return { [1]="map_area_contains_avatar_of_essence" } }, - [8285]={ + [8399]={ [1]={ [1]={ limit={ @@ -188541,7 +191366,7 @@ return { [1]="map_area_contains_avatar_of_invasion" } }, - [8286]={ + [8400]={ [1]={ [1]={ limit={ @@ -188557,7 +191382,7 @@ return { [1]="map_area_contains_avatar_of_nemesis" } }, - [8287]={ + [8401]={ [1]={ [1]={ limit={ @@ -188573,7 +191398,7 @@ return { [1]="map_area_contains_avatar_of_onslaught" } }, - [8288]={ + [8402]={ [1]={ [1]={ limit={ @@ -188589,7 +191414,7 @@ return { [1]="map_area_contains_avatar_of_perandus" } }, - [8289]={ + [8403]={ [1]={ [1]={ limit={ @@ -188605,7 +191430,7 @@ return { [1]="map_area_contains_avatar_of_prophecy" } }, - [8290]={ + [8404]={ [1]={ [1]={ limit={ @@ -188621,7 +191446,7 @@ return { [1]="map_area_contains_avatar_of_rampage" } }, - [8291]={ + [8405]={ [1]={ [1]={ limit={ @@ -188637,7 +191462,7 @@ return { [1]="map_area_contains_avatar_of_talisman" } }, - [8292]={ + [8406]={ [1]={ [1]={ limit={ @@ -188653,7 +191478,7 @@ return { [1]="map_area_contains_avatar_of_tempest" } }, - [8293]={ + [8407]={ [1]={ [1]={ limit={ @@ -188669,7 +191494,7 @@ return { [1]="map_area_contains_avatar_of_torment" } }, - [8294]={ + [8408]={ [1]={ [1]={ limit={ @@ -188685,7 +191510,7 @@ return { [1]="map_area_contains_avatar_of_warbands" } }, - [8295]={ + [8409]={ [1]={ [1]={ limit={ @@ -188701,7 +191526,7 @@ return { [1]="map_area_contains_cartographers_strongbox" } }, - [8296]={ + [8410]={ [1]={ [1]={ limit={ @@ -188717,7 +191542,7 @@ return { [1]="map_area_contains_currency_chest" } }, - [8297]={ + [8411]={ [1]={ [1]={ limit={ @@ -188733,7 +191558,7 @@ return { [1]="map_area_contains_gemcutters_strongbox" } }, - [8298]={ + [8412]={ [1]={ [1]={ limit={ @@ -188749,7 +191574,7 @@ return { [1]="map_area_contains_grandmaster_ally" } }, - [8299]={ + [8413]={ [1]={ [1]={ limit={ @@ -188765,7 +191590,7 @@ return { [1]="map_area_contains_jewellery_chest" } }, - [8300]={ + [8414]={ [1]={ [1]={ limit={ @@ -188781,7 +191606,7 @@ return { [1]="map_area_contains_map_chest" } }, - [8301]={ + [8415]={ [1]={ [1]={ limit={ @@ -188797,7 +191622,7 @@ return { [1]="map_area_contains_metamorphs" } }, - [8302]={ + [8416]={ [1]={ [1]={ limit={ @@ -188813,7 +191638,7 @@ return { [1]="map_area_contains_perandus_coin_chest" } }, - [8303]={ + [8417]={ [1]={ [1]={ limit={ @@ -188829,7 +191654,7 @@ return { [1]="map_area_contains_tormented_embezzler" } }, - [8304]={ + [8418]={ [1]={ [1]={ limit={ @@ -188845,7 +191670,7 @@ return { [1]="map_area_contains_tormented_seditionist" } }, - [8305]={ + [8419]={ [1]={ [1]={ limit={ @@ -188861,7 +191686,7 @@ return { [1]="map_area_contains_tormented_vaal_cultist" } }, - [8306]={ + [8420]={ [1]={ [1]={ limit={ @@ -188877,7 +191702,7 @@ return { [1]="map_area_contains_unique_item_chest" } }, - [8307]={ + [8421]={ [1]={ [1]={ limit={ @@ -188893,7 +191718,7 @@ return { [1]="map_area_contains_unique_strongbox" } }, - [8308]={ + [8422]={ [1]={ [1]={ limit={ @@ -188909,7 +191734,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_beacon_barrels" } }, - [8309]={ + [8423]={ [1]={ [1]={ limit={ @@ -188925,7 +191750,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_bloodworm_barrels" } }, - [8310]={ + [8424]={ [1]={ [1]={ limit={ @@ -188941,7 +191766,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_barrels" } }, - [8311]={ + [8425]={ [1]={ [1]={ limit={ @@ -188957,7 +191782,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_eggs" } }, - [8312]={ + [8426]={ [1]={ [1]={ limit={ @@ -188973,7 +191798,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_parasite_barrels" } }, - [8313]={ + [8427]={ [1]={ [1]={ limit={ @@ -189007,7 +191832,7 @@ return { [2]="display_stat_uber_barrels" } }, - [8314]={ + [8428]={ [1]={ [1]={ limit={ @@ -189023,7 +191848,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_wealthy_barrels" } }, - [8315]={ + [8429]={ [1]={ [1]={ limit={ @@ -189048,7 +191873,7 @@ return { [1]="map_area_ritual_additional_chance_%" } }, - [8316]={ + [8430]={ [1]={ [1]={ limit={ @@ -189064,7 +191889,7 @@ return { [1]="map_astrolabe_boss_reward_and_difficulty" } }, - [8317]={ + [8431]={ [1]={ [1]={ limit={ @@ -189093,7 +191918,7 @@ return { [1]="map_bestiary_monster_damage_+%_final" } }, - [8318]={ + [8432]={ [1]={ [1]={ limit={ @@ -189122,7 +191947,7 @@ return { [1]="map_bestiary_monster_life_+%_final" } }, - [8319]={ + [8433]={ [1]={ [1]={ limit={ @@ -189151,7 +191976,7 @@ return { [1]="map_betrayal_intelligence_+%" } }, - [8320]={ + [8434]={ [1]={ [1]={ limit={ @@ -189180,7 +192005,7 @@ return { [1]="map_beyond_demon_faction_chance_+%" } }, - [8321]={ + [8435]={ [1]={ [1]={ limit={ @@ -189209,7 +192034,7 @@ return { [1]="map_beyond_flesh_faction_chance_+%" } }, - [8322]={ + [8436]={ [1]={ [1]={ limit={ @@ -189238,7 +192063,7 @@ return { [1]="map_beyond_pale_faction_chance_+%" } }, - [8323]={ + [8437]={ [1]={ [1]={ limit={ @@ -189267,7 +192092,7 @@ return { [1]="map_beyond_portal_chance_+%" } }, - [8324]={ + [8438]={ [1]={ [1]={ limit={ @@ -189292,7 +192117,7 @@ return { [1]="map_beyond_portal_spawn_additional_demon_%_chance" } }, - [8325]={ + [8439]={ [1]={ [1]={ limit={ @@ -189321,7 +192146,7 @@ return { [1]="map_beyond_unique_item_quantity_+%_final_from_flesh_faction" } }, - [8326]={ + [8440]={ [1]={ [1]={ [1]={ @@ -189358,7 +192183,7 @@ return { [1]="map_beyond_basic_currency_quantity_+%_final_from_pale_faction" } }, - [8327]={ + [8441]={ [1]={ [1]={ limit={ @@ -189387,7 +192212,7 @@ return { [1]="map_beyond_divination_card_quantity_+%_final_from_demon_faction" } }, - [8328]={ + [8442]={ [1]={ [1]={ limit={ @@ -189412,7 +192237,7 @@ return { [1]="map_blight_chest_%_chance_for_additional_drop" } }, - [8329]={ + [8443]={ [1]={ [1]={ limit={ @@ -189428,7 +192253,7 @@ return { [1]="map_blight_chests_repeat_drops_count" } }, - [8330]={ + [8444]={ [1]={ [1]={ limit={ @@ -189444,7 +192269,7 @@ return { [1]="map_blight_empowering_towers_and_upgrades_enhance_enemies" } }, - [8331]={ + [8445]={ [1]={ [1]={ limit={ @@ -189460,7 +192285,7 @@ return { [1]="map_blight_encounter_oil_reward_chance_+%" } }, - [8332]={ + [8446]={ [1]={ [1]={ limit={ @@ -189476,7 +192301,7 @@ return { [1]="map_blight_encounter_spawn_rate_+%" } }, - [8333]={ + [8447]={ [1]={ [1]={ limit={ @@ -189492,7 +192317,7 @@ return { [1]="map_blight_lane_additional_chest_chance_%" } }, - [8334]={ + [8448]={ [1]={ [1]={ limit={ @@ -189517,7 +192342,7 @@ return { [1]="map_blight_lane_additional_chests" } }, - [8335]={ + [8449]={ [1]={ [1]={ limit={ @@ -189542,7 +192367,7 @@ return { [1]="map_blight_oils_chance_to_drop_a_tier_higher_%" } }, - [8336]={ + [8450]={ [1]={ [1]={ limit={ @@ -189571,7 +192396,7 @@ return { [1]="map_blight_tower_cost_+%" } }, - [8337]={ + [8451]={ [1]={ [1]={ limit={ @@ -189587,7 +192412,7 @@ return { [1]="map_blight_tower_cost_doubled" } }, - [8338]={ + [8452]={ [1]={ [1]={ limit={ @@ -189612,7 +192437,7 @@ return { [1]="map_blight_up_to_X_additional_bosses" } }, - [8339]={ + [8453]={ [1]={ [1]={ limit={ @@ -189628,7 +192453,7 @@ return { [1]="map_blighted_map_encounter_duration_-_sec" } }, - [8340]={ + [8454]={ [1]={ [1]={ limit={ @@ -189653,7 +192478,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_currency_items" } }, - [8341]={ + [8455]={ [1]={ [1]={ limit={ @@ -189678,7 +192503,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_rare_items" } }, - [8342]={ + [8456]={ [1]={ [1]={ limit={ @@ -189694,7 +192519,7 @@ return { [1]="map_blueprint_drop_revealed_chance_%" } }, - [8343]={ + [8457]={ [1]={ [1]={ limit={ @@ -189710,7 +192535,7 @@ return { [1]="map_boss_accompanied_by_bodyguards" } }, - [8344]={ + [8458]={ [1]={ [1]={ limit={ @@ -189726,7 +192551,7 @@ return { [1]="map_boss_accompanied_by_harbinger" } }, - [8345]={ + [8459]={ [1]={ [1]={ limit={ @@ -189751,7 +192576,7 @@ return { [1]="map_boss_additional_currency_to_drop" } }, - [8346]={ + [8460]={ [1]={ [1]={ limit={ @@ -189776,7 +192601,7 @@ return { [1]="map_boss_additional_scarabs_to_drop" } }, - [8347]={ + [8461]={ [1]={ [1]={ limit={ @@ -189801,7 +192626,7 @@ return { [1]="map_boss_additional_uniques_to_drop" } }, - [8348]={ + [8462]={ [1]={ [1]={ limit={ @@ -189826,7 +192651,7 @@ return { [1]="map_boss_chance_to_be_surrounded_by_spirits_%" } }, - [8349]={ + [8463]={ [1]={ [1]={ limit={ @@ -189855,7 +192680,7 @@ return { [1]="map_boss_dropped_item_quantity_+%" } }, - [8350]={ + [8464]={ [1]={ [1]={ limit={ @@ -189880,7 +192705,7 @@ return { [1]="map_boss_dropped_unique_items_+" } }, - [8351]={ + [8465]={ [1]={ [1]={ limit={ @@ -189905,7 +192730,7 @@ return { [1]="map_boss_drops_X_fractured_incursion_items" } }, - [8352]={ + [8466]={ [1]={ [1]={ limit={ @@ -189921,7 +192746,7 @@ return { [1]="map_boss_drops_additional_currency_shards" } }, - [8353]={ + [8467]={ [1]={ [1]={ limit={ @@ -189937,7 +192762,7 @@ return { [1]="map_boss_drops_corrupted_items" } }, - [8354]={ + [8468]={ [1]={ [1]={ limit={ @@ -189953,7 +192778,7 @@ return { [1]="map_boss_is_possessed" } }, - [8355]={ + [8469]={ [1]={ [1]={ limit={ @@ -189982,7 +192807,7 @@ return { [1]="map_boss_item_rarity_+%" } }, - [8356]={ + [8470]={ [1]={ [1]={ limit={ @@ -189998,7 +192823,7 @@ return { [1]="map_boss_replaced_with_atziri" } }, - [8357]={ + [8471]={ [1]={ [1]={ limit={ @@ -190023,7 +192848,7 @@ return { [1]="map_boss_rose_petal_quantity_+%" } }, - [8358]={ + [8472]={ [1]={ [1]={ limit={ @@ -190039,7 +192864,7 @@ return { [1]="map_boss_surrounded_by_tormented_spirits" } }, - [8359]={ + [8473]={ [1]={ [1]={ limit={ @@ -190064,7 +192889,7 @@ return { [1]="map_boss_drops_x_additional_vaal_items" } }, - [8360]={ + [8474]={ [1]={ [1]={ limit={ @@ -190093,7 +192918,7 @@ return { [1]="map_breach_chance_to_be_esh_+%" } }, - [8361]={ + [8475]={ [1]={ [1]={ limit={ @@ -190122,7 +192947,7 @@ return { [1]="map_breach_chance_to_be_tul_+%" } }, - [8362]={ + [8476]={ [1]={ [1]={ limit={ @@ -190151,7 +192976,7 @@ return { [1]="map_breach_chance_to_be_uul_netol_+%" } }, - [8363]={ + [8477]={ [1]={ [1]={ limit={ @@ -190180,7 +193005,7 @@ return { [1]="map_breach_chance_to_be_xoph_+%" } }, - [8364]={ + [8478]={ [1]={ [1]={ limit={ @@ -190196,7 +193021,7 @@ return { [1]="map_breach_has_large_chest" } }, - [8365]={ + [8479]={ [1]={ [1]={ limit={ @@ -190225,7 +193050,7 @@ return { [1]="map_breach_monster_quantity_+%" } }, - [8366]={ + [8480]={ [1]={ [1]={ limit={ @@ -190277,7 +193102,7 @@ return { [1]="map_breach_type_override" } }, - [8367]={ + [8481]={ [1]={ [1]={ limit={ @@ -190302,7 +193127,7 @@ return { [1]="map_breaches_num_additional_chests_to_spawn" } }, - [8368]={ + [8482]={ [1]={ [1]={ [1]={ @@ -190322,7 +193147,7 @@ return { [1]="map_can_only_damage_enemies_in_X_radius" } }, - [8369]={ + [8483]={ [1]={ [1]={ limit={ @@ -190338,7 +193163,7 @@ return { [1]="map_cannot_evade" } }, - [8370]={ + [8484]={ [1]={ [1]={ limit={ @@ -190354,7 +193179,7 @@ return { [1]="map_chance_for_area_%_to_contain_harvest" } }, - [8371]={ + [8485]={ [1]={ [1]={ limit={ @@ -190370,7 +193195,7 @@ return { [1]="map_chance_to_not_consume_sextant_use_%" } }, - [8372]={ + [8486]={ [1]={ [1]={ limit={ @@ -190395,7 +193220,7 @@ return { [1]="map_consume_X_petals_on_rare_monster_death_all_natural_drops_same_class" } }, - [8373]={ + [8487]={ [1]={ [1]={ limit={ @@ -190420,7 +193245,7 @@ return { [1]="map_consume_X_petals_on_rare_monster_death_convert_non_uniques_to_gold" } }, - [8374]={ + [8488]={ [1]={ [1]={ limit={ @@ -190445,7 +193270,7 @@ return { [1]="map_consume_X_petals_on_rare_monster_death_drop_no_items_with_mods" } }, - [8375]={ + [8489]={ [1]={ [1]={ limit={ @@ -190470,7 +193295,7 @@ return { [1]="map_consume_X_petals_on_rare_monster_death_revive_once" } }, - [8376]={ + [8490]={ [1]={ [1]={ limit={ @@ -190495,7 +193320,7 @@ return { [1]="map_consume_X_petals_on_rare_monster_death_steal_mods" } }, - [8377]={ + [8491]={ [1]={ [1]={ limit={ @@ -190520,7 +193345,7 @@ return { [1]="map_contains_X_additional_village_ores" } }, - [8378]={ + [8492]={ [1]={ [1]={ limit={ @@ -190545,7 +193370,7 @@ return { [1]="map_contains_X_rogue_giants" } }, - [8379]={ + [8493]={ [1]={ [1]={ limit={ @@ -190561,7 +193386,7 @@ return { [1]="map_contains_abyss_depths" } }, - [8380]={ + [8494]={ [1]={ [1]={ limit={ @@ -190586,7 +193411,7 @@ return { [1]="map_contains_additional_atlas_bosses" } }, - [8381]={ + [8495]={ [1]={ [1]={ limit={ @@ -190602,7 +193427,7 @@ return { [1]="map_contains_additional_chrysalis_talisman" } }, - [8382]={ + [8496]={ [1]={ [1]={ limit={ @@ -190618,7 +193443,7 @@ return { [1]="map_contains_additional_clutching_talisman" } }, - [8383]={ + [8497]={ [1]={ [1]={ limit={ @@ -190634,7 +193459,7 @@ return { [1]="map_contains_additional_fangjaw_talisman" } }, - [8384]={ + [8498]={ [1]={ [1]={ limit={ @@ -190650,7 +193475,7 @@ return { [1]="map_contains_additional_mandible_talisman" } }, - [8385]={ + [8499]={ [1]={ [1]={ limit={ @@ -190666,7 +193491,7 @@ return { [1]="map_contains_additional_packs_of_chaos_monsters" } }, - [8386]={ + [8500]={ [1]={ [1]={ limit={ @@ -190682,7 +193507,7 @@ return { [1]="map_contains_additional_packs_of_cold_monsters" } }, - [8387]={ + [8501]={ [1]={ [1]={ limit={ @@ -190698,7 +193523,7 @@ return { [1]="map_contains_additional_packs_of_fire_monsters" } }, - [8388]={ + [8502]={ [1]={ [1]={ limit={ @@ -190714,7 +193539,7 @@ return { [1]="map_contains_additional_packs_of_lightning_monsters" } }, - [8389]={ + [8503]={ [1]={ [1]={ limit={ @@ -190730,7 +193555,7 @@ return { [1]="map_contains_additional_packs_of_physical_monsters" } }, - [8390]={ + [8504]={ [1]={ [1]={ limit={ @@ -190755,7 +193580,7 @@ return { [1]="map_contains_additional_packs_of_vaal_monsters" } }, - [8391]={ + [8505]={ [1]={ [1]={ limit={ @@ -190771,7 +193596,7 @@ return { [1]="map_contains_x_additional_sulphite_golem_packs" } }, - [8392]={ + [8506]={ [1]={ [1]={ limit={ @@ -190787,7 +193612,7 @@ return { [1]="map_contains_additional_three_rat_talisman" } }, - [8393]={ + [8507]={ [1]={ [1]={ limit={ @@ -190812,7 +193637,7 @@ return { [1]="map_contains_additional_tormented_betrayers" } }, - [8394]={ + [8508]={ [1]={ [1]={ limit={ @@ -190837,7 +193662,7 @@ return { [1]="map_contains_additional_tormented_graverobbers" } }, - [8395]={ + [8509]={ [1]={ [1]={ limit={ @@ -190862,7 +193687,7 @@ return { [1]="map_contains_additional_tormented_heretics" } }, - [8396]={ + [8510]={ [1]={ [1]={ limit={ @@ -190878,7 +193703,7 @@ return { [1]="map_contains_additional_unique_talisman" } }, - [8397]={ + [8511]={ [1]={ [1]={ limit={ @@ -190903,7 +193728,7 @@ return { [1]="map_contains_additional_unstable_breaches" } }, - [8398]={ + [8512]={ [1]={ [1]={ limit={ @@ -190919,7 +193744,7 @@ return { [1]="map_contains_additional_writhing_talisman" } }, - [8399]={ + [8513]={ [1]={ [1]={ limit={ @@ -190935,7 +193760,7 @@ return { [1]="map_contains_chayula_breach" } }, - [8400]={ + [8514]={ [1]={ [1]={ limit={ @@ -190978,7 +193803,7 @@ return { [1]="map_contains_citadel" } }, - [8401]={ + [8515]={ [1]={ [1]={ limit={ @@ -190994,7 +193819,7 @@ return { [1]="map_contains_corrupted_strongbox" } }, - [8402]={ + [8516]={ [1]={ [1]={ limit={ @@ -191010,7 +193835,7 @@ return { [1]="map_contains_creeping_agony" } }, - [8403]={ + [8517]={ [1]={ [1]={ limit={ @@ -191026,7 +193851,7 @@ return { [1]="map_contains_evil_einhar" } }, - [8404]={ + [8518]={ [1]={ [1]={ limit={ @@ -191051,7 +193876,7 @@ return { [1]="map_contains_frogs" } }, - [8405]={ + [8519]={ [1]={ [1]={ limit={ @@ -191067,7 +193892,7 @@ return { [1]="map_contains_keepers_of_the_trove_bloodline_pack" } }, - [8406]={ + [8520]={ [1]={ [1]={ limit={ @@ -191083,7 +193908,7 @@ return { [1]="map_contains_master" } }, - [8407]={ + [8521]={ [1]={ [1]={ limit={ @@ -191108,7 +193933,7 @@ return { [1]="map_contains_nevalis_monkey" } }, - [8408]={ + [8522]={ [1]={ [1]={ limit={ @@ -191124,7 +193949,7 @@ return { [1]="map_contains_perandus_boss" } }, - [8409]={ + [8523]={ [1]={ [1]={ limit={ @@ -191149,7 +193974,7 @@ return { [1]="map_contains_talisman_boss_with_higher_tier" } }, - [8410]={ + [8524]={ [1]={ [1]={ limit={ @@ -191165,7 +193990,7 @@ return { [1]="map_contains_the_elderslayers" } }, - [8411]={ + [8525]={ [1]={ [1]={ limit={ @@ -191181,7 +194006,7 @@ return { [1]="map_contains_the_feared" } }, - [8412]={ + [8526]={ [1]={ [1]={ limit={ @@ -191197,7 +194022,7 @@ return { [1]="map_contains_the_forgotten" } }, - [8413]={ + [8527]={ [1]={ [1]={ limit={ @@ -191213,7 +194038,7 @@ return { [1]="map_contains_the_formed" } }, - [8414]={ + [8528]={ [1]={ [1]={ limit={ @@ -191229,7 +194054,7 @@ return { [1]="map_contains_the_hidden" } }, - [8415]={ + [8529]={ [1]={ [1]={ limit={ @@ -191245,7 +194070,7 @@ return { [1]="map_contains_the_remembered" } }, - [8416]={ + [8530]={ [1]={ [1]={ limit={ @@ -191261,7 +194086,7 @@ return { [1]="map_contains_the_twisted" } }, - [8417]={ + [8531]={ [1]={ [1]={ limit={ @@ -191303,7 +194128,7 @@ return { [2]="map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final" } }, - [8418]={ + [8532]={ [1]={ [1]={ limit={ @@ -191319,7 +194144,7 @@ return { [1]="map_contains_uul_netol_breach" } }, - [8419]={ + [8533]={ [1]={ [1]={ limit={ @@ -191335,7 +194160,7 @@ return { [1]="map_contains_wealthy_pack" } }, - [8420]={ + [8534]={ [1]={ [1]={ limit={ @@ -191351,7 +194176,7 @@ return { [1]="map_contains_x_additional_animated_weapon_packs" } }, - [8421]={ + [8535]={ [1]={ [1]={ limit={ @@ -191367,7 +194192,7 @@ return { [1]="map_contains_x_additional_healing_packs" } }, - [8422]={ + [8536]={ [1]={ [1]={ limit={ @@ -191392,7 +194217,7 @@ return { [1]="map_contains_x_additional_magic_packs" } }, - [8423]={ + [8537]={ [1]={ [1]={ limit={ @@ -191408,7 +194233,7 @@ return { [1]="map_contains_x_additional_normal_packs" } }, - [8424]={ + [8538]={ [1]={ [1]={ limit={ @@ -191424,7 +194249,7 @@ return { [1]="map_contains_x_additional_packs_on_their_own_team" } }, - [8425]={ + [8539]={ [1]={ [1]={ limit={ @@ -191440,7 +194265,7 @@ return { [1]="map_contains_x_additional_packs_that_convert_on_death" } }, - [8426]={ + [8540]={ [1]={ [1]={ limit={ @@ -191456,7 +194281,7 @@ return { [1]="map_contains_x_additional_packs_with_mirrored_rare_monsters" } }, - [8427]={ + [8541]={ [1]={ [1]={ limit={ @@ -191472,7 +194297,7 @@ return { [1]="map_contains_x_additional_poison_packs" } }, - [8428]={ + [8542]={ [1]={ [1]={ limit={ @@ -191497,7 +194322,7 @@ return { [1]="map_contains_x_additional_rare_packs" } }, - [8429]={ + [8543]={ [1]={ [1]={ limit={ @@ -191513,7 +194338,7 @@ return { [1]="map_contains_X_additional_tricksters" } }, - [8430]={ + [8544]={ [1]={ [1]={ limit={ @@ -191538,7 +194363,7 @@ return { [1]="map_contains_X_additional_uber_harbingers" } }, - [8431]={ + [8545]={ [1]={ [1]={ [1]={ @@ -191558,7 +194383,7 @@ return { [1]="map_contains_X_additional_untainted_packs" } }, - [8432]={ + [8546]={ [1]={ [1]={ limit={ @@ -191574,7 +194399,7 @@ return { [1]="map_contains_x_fewer_portals" } }, - [8433]={ + [8547]={ [1]={ [1]={ limit={ @@ -191599,7 +194424,7 @@ return { [1]="map_contains_X_harvest_bear_bosses" } }, - [8434]={ + [8548]={ [1]={ [1]={ limit={ @@ -191624,7 +194449,7 @@ return { [1]="map_contains_X_harvest_bird_bosses" } }, - [8435]={ + [8549]={ [1]={ [1]={ limit={ @@ -191649,7 +194474,7 @@ return { [1]="map_contains_X_harvest_cat_bosses" } }, - [8436]={ + [8550]={ [1]={ [1]={ limit={ @@ -191665,7 +194490,7 @@ return { [1]="map_contains_x_labyrinth_hazards" } }, - [8437]={ + [8551]={ [1]={ [1]={ limit={ @@ -191690,7 +194515,7 @@ return { [1]="map_area_contains_x_rare_monsters_with_inner_treasure" } }, - [8438]={ + [8552]={ [1]={ [1]={ limit={ @@ -191706,7 +194531,7 @@ return { [1]="map_contains_X_sirus_storms" } }, - [8439]={ + [8553]={ [1]={ [1]={ limit={ @@ -191731,7 +194556,7 @@ return { [1]="map_contracts_drop_with_additional_special_implicit_%_chance" } }, - [8440]={ + [8554]={ [1]={ [1]={ limit={ @@ -191747,7 +194572,7 @@ return { [1]="map_cowards_trial_extra_ghosts" } }, - [8441]={ + [8555]={ [1]={ [1]={ limit={ @@ -191763,7 +194588,7 @@ return { [1]="map_cowards_trial_extra_oriath_citizens" } }, - [8442]={ + [8556]={ [1]={ [1]={ limit={ @@ -191779,7 +194604,7 @@ return { [1]="map_cowards_trial_extra_phantasms" } }, - [8443]={ + [8557]={ [1]={ [1]={ limit={ @@ -191795,7 +194620,7 @@ return { [1]="map_cowards_trial_extra_raging_spirits" } }, - [8444]={ + [8558]={ [1]={ [1]={ limit={ @@ -191811,7 +194636,7 @@ return { [1]="map_cowards_trial_extra_rhoas" } }, - [8445]={ + [8559]={ [1]={ [1]={ limit={ @@ -191827,7 +194652,7 @@ return { [1]="map_cowards_trial_extra_skeleton_cannons" } }, - [8446]={ + [8560]={ [1]={ [1]={ limit={ @@ -191843,7 +194668,7 @@ return { [1]="map_cowards_trial_extra_zombies" } }, - [8447]={ + [8561]={ [1]={ [1]={ limit={ @@ -191872,7 +194697,7 @@ return { [1]="map_crucible_unique_monsters_+%" } }, - [8448]={ + [8562]={ [1]={ [1]={ limit={ @@ -191901,7 +194726,7 @@ return { [1]="map_custom_league_damage_taken_+%_final" } }, - [8449]={ + [8563]={ [1]={ [1]={ limit={ @@ -191930,7 +194755,7 @@ return { [1]="map_damage_+%_per_poison_stack" } }, - [8450]={ + [8564]={ [1]={ [1]={ limit={ @@ -191946,7 +194771,7 @@ return { [1]="map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on" } }, - [8451]={ + [8565]={ [1]={ [1]={ limit={ @@ -191962,7 +194787,7 @@ return { [1]="map_damage_removed_from_player_life_before_totem_life_%" } }, - [8452]={ + [8566]={ [1]={ [1]={ limit={ @@ -191995,7 +194820,7 @@ return { [1]="map_damage_taken_+%_from_beyond_monsters" } }, - [8453]={ + [8567]={ [1]={ [1]={ limit={ @@ -192011,7 +194836,7 @@ return { [1]="map_damage_taken_+%_per_nearby_ally" } }, - [8454]={ + [8568]={ [1]={ [1]={ limit={ @@ -192040,7 +194865,7 @@ return { [1]="map_damage_taken_while_stationary_+%" } }, - [8455]={ + [8569]={ [1]={ [1]={ limit={ @@ -192069,7 +194894,7 @@ return { [1]="map_damage_while_stationary_+%" } }, - [8456]={ + [8570]={ [1]={ [1]={ limit={ @@ -192098,7 +194923,7 @@ return { [1]="map_death_and_taxes_boss_drops_additional_currency" } }, - [8457]={ + [8571]={ [1]={ [1]={ limit={ @@ -192131,7 +194956,7 @@ return { [1]="map_debuff_time_passed_+%" } }, - [8458]={ + [8572]={ [1]={ [1]={ limit={ @@ -192147,7 +194972,7 @@ return { [1]="map_delve_rules" } }, - [8459]={ + [8573]={ [1]={ [1]={ limit={ @@ -192577,7 +195402,7 @@ return { [4]="map_fishy_effect_3" } }, - [8460]={ + [8574]={ [1]={ [1]={ limit={ @@ -192593,7 +195418,7 @@ return { [1]="map_display_strongbox_monsters_are_enraged" } }, - [8461]={ + [8575]={ [1]={ [1]={ limit={ @@ -192609,7 +195434,7 @@ return { [1]="map_divination_card_drop_chance_+%" } }, - [8462]={ + [8576]={ [1]={ [1]={ limit={ @@ -192625,7 +195450,7 @@ return { [1]="map_doesnt_consume_sextant_use" } }, - [8463]={ + [8577]={ [1]={ [1]={ limit={ @@ -192641,7 +195466,7 @@ return { [1]="map_dropped_equipment_are_converted_to_currency_based_on_rarity" } }, - [8464]={ + [8578]={ [1]={ [1]={ limit={ @@ -192650,14 +195475,14 @@ return { [2]="#" } }, - text="[DNT] Dropped items have {0}% chance to be Fractured" + text="DNT Dropped items have {0}% chance to be Fractured" } }, stats={ [1]="map_dropped_items_are_fractured_chance_%" } }, - [8465]={ + [8579]={ [1]={ [1]={ limit={ @@ -192673,7 +195498,7 @@ return { [1]="map_dropped_maps_are_corrupted_with_8_mods" } }, - [8466]={ + [8580]={ [1]={ [1]={ [1]={ @@ -192702,7 +195527,7 @@ return { [1]="map_dropped_maps_are_duplicated_chance_permillage" } }, - [8467]={ + [8581]={ [1]={ [1]={ limit={ @@ -192727,7 +195552,7 @@ return { [1]="map_duplicate_captured_beasts_chance_%" } }, - [8468]={ + [8582]={ [1]={ [1]={ limit={ @@ -192743,7 +195568,7 @@ return { [1]="map_duplicate_x_rare_monsters" } }, - [8469]={ + [8583]={ [1]={ [1]={ limit={ @@ -192759,7 +195584,7 @@ return { [1]="map_duplicate_x_synthesised_rare_monsters" } }, - [8470]={ + [8584]={ [1]={ [1]={ limit={ @@ -192802,7 +195627,7 @@ return { [1]="map_elder_boss_variation" } }, - [8471]={ + [8585]={ [1]={ [1]={ limit={ @@ -192818,7 +195643,7 @@ return { [1]="map_elder_rare_chance_+%" } }, - [8472]={ + [8586]={ [1]={ [1]={ [1]={ @@ -192838,7 +195663,7 @@ return { [1]="map_endgame_affliction_reward_1" } }, - [8473]={ + [8587]={ [1]={ [1]={ [1]={ @@ -192858,7 +195683,7 @@ return { [1]="map_endgame_affliction_reward_2" } }, - [8474]={ + [8588]={ [1]={ [1]={ [1]={ @@ -192878,7 +195703,7 @@ return { [1]="map_endgame_affliction_reward_3" } }, - [8475]={ + [8589]={ [1]={ [1]={ [1]={ @@ -192898,7 +195723,7 @@ return { [1]="map_endgame_affliction_reward_4" } }, - [8476]={ + [8590]={ [1]={ [1]={ [1]={ @@ -192918,7 +195743,7 @@ return { [1]="map_endgame_affliction_reward_5" } }, - [8477]={ + [8591]={ [1]={ [1]={ [1]={ @@ -192938,7 +195763,7 @@ return { [1]="map_endgame_affliction_reward_6" } }, - [8478]={ + [8592]={ [1]={ [1]={ [1]={ @@ -192958,7 +195783,7 @@ return { [1]="map_endgame_affliction_reward_7" } }, - [8479]={ + [8593]={ [1]={ [1]={ [1]={ @@ -192978,7 +195803,7 @@ return { [1]="map_endgame_affliction_reward_8" } }, - [8480]={ + [8594]={ [1]={ [1]={ [1]={ @@ -192998,7 +195823,7 @@ return { [1]="map_endgame_affliction_reward_9" } }, - [8481]={ + [8595]={ [1]={ [1]={ limit={ @@ -193014,7 +195839,7 @@ return { [1]="map_endgame_fog_depth" } }, - [8482]={ + [8596]={ [1]={ [1]={ limit={ @@ -193030,7 +195855,7 @@ return { [1]="map_equipment_drops_identified" } }, - [8483]={ + [8597]={ [1]={ [1]={ limit={ @@ -193055,7 +195880,7 @@ return { [1]="map_essence_monolith_contains_additional_essence_of_corruption" } }, - [8484]={ + [8598]={ [1]={ [1]={ limit={ @@ -193071,7 +195896,7 @@ return { [1]="map_essence_monolith_contains_essence_of_corruption_%" } }, - [8485]={ + [8599]={ [1]={ [1]={ limit={ @@ -193087,7 +195912,7 @@ return { [1]="map_essence_monsters_are_corrupted" } }, - [8486]={ + [8600]={ [1]={ [1]={ limit={ @@ -193103,7 +195928,7 @@ return { [1]="map_essence_monsters_chance_for_3_additional_essences_%" } }, - [8487]={ + [8601]={ [1]={ [1]={ limit={ @@ -193128,7 +195953,7 @@ return { [1]="map_essence_monsters_have_additional_essences" } }, - [8488]={ + [8602]={ [1]={ [1]={ limit={ @@ -193144,7 +195969,7 @@ return { [1]="map_essence_monsters_higher_tier" } }, - [8489]={ + [8603]={ [1]={ [1]={ limit={ @@ -193160,7 +195985,32 @@ return { [1]="map_exarch_traps" } }, - [8490]={ + [8604]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Wild Rogue Exiles in Area have {0}% chance to be accompanied by a Wild Mercenary" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Wild Rogue Exiles in Area are accompanied by a Wild Mercenary" + } + }, + stats={ + [1]="map_exile_accompanied_by_wild_mercenary_chance_%" + } + }, + [8605]={ [1]={ [1]={ limit={ @@ -193185,7 +196035,7 @@ return { [1]="map_expedition_artifact_quantity_+%" } }, - [8491]={ + [8606]={ [1]={ [1]={ limit={ @@ -193201,7 +196051,7 @@ return { [1]="map_expedition_chest_double_drops_chance_%" } }, - [8492]={ + [8607]={ [1]={ [1]={ limit={ @@ -193226,7 +196076,7 @@ return { [1]="map_expedition_chest_marker_count_+" } }, - [8493]={ + [8608]={ [1]={ [1]={ limit={ @@ -193235,7 +196085,7 @@ return { [2]="#" } }, - text="[DNT] Area contains {0} additional Common Chest Marker" + text="DNT Area contains {0} additional Common Chest Marker" }, [2]={ limit={ @@ -193244,14 +196094,14 @@ return { [2]="#" } }, - text="[DNT] Area contains {0} additional Common Chest Markers" + text="DNT Area contains {0} additional Common Chest Markers" } }, stats={ [1]="map_expedition_common_chest_marker_count_+" } }, - [8494]={ + [8609]={ [1]={ [1]={ limit={ @@ -193276,7 +196126,7 @@ return { [1]="map_expedition_elite_marker_count_+%" } }, - [8495]={ + [8610]={ [1]={ [1]={ limit={ @@ -193305,7 +196155,7 @@ return { [1]="map_expedition_encounter_additional_chance_%" } }, - [8496]={ + [8611]={ [1]={ [1]={ limit={ @@ -193314,7 +196164,7 @@ return { [2]=1 } }, - text="[DNT] Area contains {0} additional Epic Chest Marker" + text="DNT Area contains {0} additional Epic Chest Marker" }, [2]={ limit={ @@ -193323,14 +196173,14 @@ return { [2]="#" } }, - text="[DNT] Area contains {0} additional Epic Chest Markers" + text="DNT Area contains {0} additional Epic Chest Markers" } }, stats={ [1]="map_expedition_epic_chest_marker_count_+" } }, - [8497]={ + [8612]={ [1]={ [1]={ limit={ @@ -193346,7 +196196,7 @@ return { [1]="map_expedition_explosion_radius_+%" } }, - [8498]={ + [8613]={ [1]={ [1]={ limit={ @@ -193362,7 +196212,7 @@ return { [1]="map_expedition_explosives_+%" } }, - [8499]={ + [8614]={ [1]={ [1]={ limit={ @@ -193378,7 +196228,7 @@ return { [1]="map_expedition_extra_relic_suffix_chance_%" } }, - [8500]={ + [8615]={ [1]={ [1]={ limit={ @@ -193403,7 +196253,7 @@ return { [1]="map_expedition_faridun_elite_marker_count_+" } }, - [8501]={ + [8616]={ [1]={ [1]={ limit={ @@ -193419,7 +196269,7 @@ return { [1]="map_expedition_faridun_monster_marker_count_+" } }, - [8502]={ + [8617]={ [1]={ [1]={ limit={ @@ -193444,7 +196294,7 @@ return { [1]="map_expedition_maximum_placement_distance_+%" } }, - [8503]={ + [8618]={ [1]={ [1]={ limit={ @@ -193469,7 +196319,7 @@ return { [1]="map_expedition_number_of_monster_markers_+%" } }, - [8504]={ + [8619]={ [1]={ [1]={ limit={ @@ -193485,7 +196335,7 @@ return { [1]="map_expedition_relics_+" } }, - [8505]={ + [8620]={ [1]={ [1]={ limit={ @@ -193501,7 +196351,7 @@ return { [1]="map_expedition_relics_+%" } }, - [8506]={ + [8621]={ [1]={ [1]={ limit={ @@ -193526,7 +196376,7 @@ return { [1]="map_expedition_saga_additional_terrain_features" } }, - [8507]={ + [8622]={ [1]={ [1]={ limit={ @@ -193569,7 +196419,7 @@ return { [1]="map_expedition_saga_contains_boss" } }, - [8508]={ + [8623]={ [1]={ [1]={ limit={ @@ -193578,7 +196428,7 @@ return { [2]=1 } }, - text="[DNT] Area contains {0} additional Uncommon Chest Marker" + text="DNT Area contains {0} additional Uncommon Chest Marker" }, [2]={ limit={ @@ -193587,14 +196437,14 @@ return { [2]="#" } }, - text="[DNT] Area contains {0} additional Uncommon Chest Markers" + text="DNT Area contains {0} additional Uncommon Chest Markers" } }, stats={ [1]="map_expedition_uncommon_chest_marker_count_+" } }, - [8509]={ + [8624]={ [1]={ [1]={ limit={ @@ -193610,7 +196460,7 @@ return { [1]="map_expedition_vendor_currency_drop_as_logbook" } }, - [8510]={ + [8625]={ [1]={ [1]={ limit={ @@ -193635,7 +196485,7 @@ return { [1]="map_expedition_vendor_reroll_currency_quantity_+%" } }, - [8511]={ + [8626]={ [1]={ [1]={ limit={ @@ -193660,7 +196510,7 @@ return { [1]="map_expedition_x_extra_relic_suffixes" } }, - [8512]={ + [8627]={ [1]={ [1]={ limit={ @@ -193685,7 +196535,23 @@ return { [1]="map_extra_monoliths" } }, - [8513]={ + [8628]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="An Abyss Pit in Area will spawn an Abyssal Consort" + } + }, + stats={ + [1]="map_final_abyss_pit_spawn_abyss_miniboss" + } + }, + [8629]={ [1]={ [1]={ limit={ @@ -193710,7 +196576,7 @@ return { [1]="map_first_invasion_boss_killed_drops_x_additional_currency" } }, - [8514]={ + [8630]={ [1]={ [1]={ limit={ @@ -193735,7 +196601,7 @@ return { [1]="map_first_strongbox_contains_x_additional_rare_monsters" } }, - [8515]={ + [8631]={ [1]={ [1]={ limit={ @@ -193760,7 +196626,7 @@ return { [1]="map_first_unique_beyond_boss_slain_drops_x_beyond_uniques" } }, - [8516]={ + [8632]={ [1]={ [1]={ [1]={ @@ -193780,7 +196646,7 @@ return { [1]="map_flask_charges_recovered_per_3_seconds_%" } }, - [8517]={ + [8633]={ [1]={ [1]={ limit={ @@ -193796,7 +196662,7 @@ return { [1]="map_force_side_area" } }, - [8518]={ + [8634]={ [1]={ [1]={ [1]={ @@ -193820,7 +196686,7 @@ return { [1]="map_gain_onslaught_for_x_ms_on_killing_rare_monster" } }, - [8519]={ + [8635]={ [1]={ [1]={ limit={ @@ -193849,7 +196715,7 @@ return { [1]="map_gauntlet_unique_monster_life_+%" } }, - [8520]={ + [8636]={ [1]={ [1]={ limit={ @@ -193865,7 +196731,7 @@ return { [1]="map_grants_players_level_20_dash_skill" } }, - [8521]={ + [8637]={ [1]={ [1]={ limit={ @@ -193881,7 +196747,7 @@ return { [1]="map_ground_consecrated_life_regeneration_rate_per_minute_%" } }, - [8522]={ + [8638]={ [1]={ [1]={ limit={ @@ -193897,7 +196763,7 @@ return { [1]="map_ground_haste_action_speed_+%" } }, - [8523]={ + [8639]={ [1]={ [1]={ limit={ @@ -193913,7 +196779,7 @@ return { [1]="map_ground_orion_meteor" } }, - [8524]={ + [8640]={ [1]={ [1]={ limit={ @@ -193929,7 +196795,7 @@ return { [1]="map_harbinger_additional_currency_shard_stack_chance_%" } }, - [8525]={ + [8641]={ [1]={ [1]={ limit={ @@ -193945,7 +196811,7 @@ return { [1]="map_harbinger_portal_drops_additional_fragments" } }, - [8526]={ + [8642]={ [1]={ [1]={ limit={ @@ -193961,7 +196827,7 @@ return { [1]="map_harbingers_drops_additional_currency_shards" } }, - [8527]={ + [8643]={ [1]={ [1]={ limit={ @@ -193986,7 +196852,7 @@ return { [1]="map_harbingers_%_chance_to_be_replaced_as_atlas_boss" } }, - [8528]={ + [8644]={ [1]={ [1]={ limit={ @@ -194002,7 +196868,7 @@ return { [1]="map_harvest_chance_for_other_plot_to_not_wither_%" } }, - [8529]={ + [8645]={ [1]={ [1]={ limit={ @@ -194018,7 +196884,7 @@ return { [1]="map_harvest_crafting_outcomes_X_lucky_rolls" } }, - [8530]={ + [8646]={ [1]={ [1]={ limit={ @@ -194034,7 +196900,7 @@ return { [1]="map_harvest_double_lifeforce_dropped" } }, - [8531]={ + [8647]={ [1]={ [1]={ limit={ @@ -194063,7 +196929,7 @@ return { [1]="map_harvest_monster_life_+%_final_from_sextant" } }, - [8532]={ + [8648]={ [1]={ [1]={ limit={ @@ -194079,7 +196945,7 @@ return { [1]="map_harvest_seeds_%_chance_to_spawn_additional_monster" } }, - [8533]={ + [8649]={ [1]={ [1]={ limit={ @@ -194113,7 +196979,7 @@ return { [1]="map_harvest_seeds_1_of_every_2_plot_type_override" } }, - [8534]={ + [8650]={ [1]={ [1]={ limit={ @@ -194129,7 +196995,7 @@ return { [1]="map_harvest_t3_chance_+%" } }, - [8535]={ + [8651]={ [1]={ [1]={ limit={ @@ -194145,7 +197011,7 @@ return { [1]="map_has_monoliths" } }, - [8536]={ + [8652]={ [1]={ [1]={ limit={ @@ -194161,7 +197027,7 @@ return { [1]="map_has_x%_quality" } }, - [8537]={ + [8653]={ [1]={ [1]={ limit={ @@ -194186,7 +197052,7 @@ return { [1]="map_heist_contract_additional_reveals_granted" } }, - [8538]={ + [8654]={ [1]={ [1]={ limit={ @@ -194202,7 +197068,7 @@ return { [1]="map_heist_contract_chest_no_rewards_%_chance" } }, - [8539]={ + [8655]={ [1]={ [1]={ limit={ @@ -194218,7 +197084,7 @@ return { [1]="map_heist_contract_npc_items_cannot_drop" } }, - [8540]={ + [8656]={ [1]={ [1]={ limit={ @@ -194247,7 +197113,7 @@ return { [1]="map_heist_contract_primary_target_value_+%_final" } }, - [8541]={ + [8657]={ [1]={ [1]={ limit={ @@ -194276,7 +197142,7 @@ return { [1]="map_heist_monster_life_+%_final_from_sextant" } }, - [8542]={ + [8658]={ [1]={ [1]={ limit={ @@ -194301,7 +197167,7 @@ return { [1]="map_heist_npc_perks_effect_+%_final" } }, - [8543]={ + [8659]={ [1]={ [1]={ limit={ @@ -194317,7 +197183,7 @@ return { [1]="map_high_tier_maps_convert_to_conqueror_maps_%" } }, - [8544]={ + [8660]={ [1]={ [1]={ limit={ @@ -194333,7 +197199,7 @@ return { [1]="map_high_tier_maps_convert_to_elder_maps_%" } }, - [8545]={ + [8661]={ [1]={ [1]={ limit={ @@ -194349,7 +197215,7 @@ return { [1]="map_high_tier_maps_convert_to_shaper_maps_%" } }, - [8546]={ + [8662]={ [1]={ [1]={ limit={ @@ -194365,7 +197231,7 @@ return { [1]="map_high_tier_maps_convert_to_synth_maps_%" } }, - [8547]={ + [8663]={ [1]={ [1]={ [1]={ @@ -194398,7 +197264,7 @@ return { [1]="map_monsters_chance_to_impale_%" } }, - [8548]={ + [8664]={ [1]={ [1]={ limit={ @@ -194414,7 +197280,7 @@ return { [1]="map_impales_on_players_detonate_when_players_have_X_impale_debuffs" } }, - [8549]={ + [8665]={ [1]={ [1]={ limit={ @@ -194430,7 +197296,7 @@ return { [1]="map_implicit_item_drop_quantity_+%" } }, - [8550]={ + [8666]={ [1]={ [1]={ limit={ @@ -194446,7 +197312,7 @@ return { [1]="map_implicit_item_drop_rarity_+%" } }, - [8551]={ + [8667]={ [1]={ [1]={ limit={ @@ -194462,7 +197328,7 @@ return { [1]="map_implicit_pack_size_+%" } }, - [8552]={ + [8668]={ [1]={ [1]={ limit={ @@ -194495,7 +197361,7 @@ return { [1]="map_imprisoned_monsters_action_speed_+%" } }, - [8553]={ + [8669]={ [1]={ [1]={ limit={ @@ -194524,7 +197390,7 @@ return { [1]="map_imprisoned_monsters_damage_+%" } }, - [8554]={ + [8670]={ [1]={ [1]={ limit={ @@ -194540,7 +197406,7 @@ return { [1]="map_imprisoned_monsters_damage_taken_+%" } }, - [8555]={ + [8671]={ [1]={ [1]={ limit={ @@ -194556,7 +197422,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_arsonist" } }, - [8556]={ + [8672]={ [1]={ [1]={ limit={ @@ -194572,7 +197438,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_blasphemer" } }, - [8557]={ + [8673]={ [1]={ [1]={ limit={ @@ -194588,7 +197454,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_cannibal" } }, - [8558]={ + [8674]={ [1]={ [1]={ limit={ @@ -194604,7 +197470,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_charlatan" } }, - [8559]={ + [8675]={ [1]={ [1]={ limit={ @@ -194620,7 +197486,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_corrupter" } }, - [8560]={ + [8676]={ [1]={ [1]={ limit={ @@ -194636,7 +197502,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_counterfeiter" } }, - [8561]={ + [8677]={ [1]={ [1]={ limit={ @@ -194652,7 +197518,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_cutthroat" } }, - [8562]={ + [8678]={ [1]={ [1]={ limit={ @@ -194668,7 +197534,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_embezzler" } }, - [8563]={ + [8679]={ [1]={ [1]={ limit={ @@ -194684,7 +197550,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_experimenter" } }, - [8564]={ + [8680]={ [1]={ [1]={ limit={ @@ -194700,7 +197566,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_fisherman" } }, - [8565]={ + [8681]={ [1]={ [1]={ limit={ @@ -194716,7 +197582,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_freezer" } }, - [8566]={ + [8682]={ [1]={ [1]={ limit={ @@ -194732,7 +197598,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_librarian" } }, - [8567]={ + [8683]={ [1]={ [1]={ limit={ @@ -194748,7 +197614,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_martyr" } }, - [8568]={ + [8684]={ [1]={ [1]={ limit={ @@ -194764,7 +197630,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_mutilator" } }, - [8569]={ + [8685]={ [1]={ [1]={ limit={ @@ -194780,7 +197646,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_necromancer" } }, - [8570]={ + [8686]={ [1]={ [1]={ limit={ @@ -194796,7 +197662,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_poisoner" } }, - [8571]={ + [8687]={ [1]={ [1]={ limit={ @@ -194812,7 +197678,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_rogue" } }, - [8572]={ + [8688]={ [1]={ [1]={ limit={ @@ -194828,7 +197694,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_smuggler" } }, - [8573]={ + [8689]={ [1]={ [1]={ limit={ @@ -194844,7 +197710,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_spy" } }, - [8574]={ + [8690]={ [1]={ [1]={ limit={ @@ -194860,7 +197726,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_thief" } }, - [8575]={ + [8691]={ [1]={ [1]={ limit={ @@ -194876,7 +197742,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_thug" } }, - [8576]={ + [8692]={ [1]={ [1]={ limit={ @@ -194892,7 +197758,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_warlord" } }, - [8577]={ + [8693]={ [1]={ [1]={ limit={ @@ -194908,7 +197774,7 @@ return { [1]="map_incursion_spawn_large_caustic_plants" } }, - [8578]={ + [8694]={ [1]={ [1]={ limit={ @@ -194924,7 +197790,7 @@ return { [1]="map_incursion_spawn_parasitic_caustic_plants" } }, - [8579]={ + [8695]={ [1]={ [1]={ limit={ @@ -194940,7 +197806,7 @@ return { [1]="map_influence_pack_size_+%" } }, - [8580]={ + [8696]={ [1]={ [1]={ limit={ @@ -194956,7 +197822,7 @@ return { [1]="map_packs_are_bone_husks" } }, - [8581]={ + [8697]={ [1]={ [1]={ limit={ @@ -194972,7 +197838,7 @@ return { [1]="map_packs_are_kitava_heralds" } }, - [8582]={ + [8698]={ [1]={ [1]={ limit={ @@ -194988,7 +197854,7 @@ return { [1]="map_packs_are_porcupines" } }, - [8583]={ + [8699]={ [1]={ [1]={ limit={ @@ -195017,7 +197883,7 @@ return { [1]="map_inscribed_ultimatum_reward_currency_items_chance_+%" } }, - [8584]={ + [8700]={ [1]={ [1]={ limit={ @@ -195046,7 +197912,7 @@ return { [1]="map_inscribed_ultimatum_reward_divination_cards_chance_+%" } }, - [8585]={ + [8701]={ [1]={ [1]={ limit={ @@ -195075,7 +197941,7 @@ return { [1]="map_inscribed_ultimatum_reward_unique_items_chance_+%" } }, - [8586]={ + [8702]={ [1]={ [1]={ limit={ @@ -195091,7 +197957,7 @@ return { [1]="map_invasion_bosses_are_twinned" } }, - [8587]={ + [8703]={ [1]={ [1]={ limit={ @@ -195116,7 +197982,7 @@ return { [1]="map_invasion_bosses_drop_x_additional_vaal_orbs" } }, - [8588]={ + [8704]={ [1]={ [1]={ limit={ @@ -195132,7 +197998,7 @@ return { [1]="map_invasion_bosses_dropped_items_are_fully_linked" } }, - [8589]={ + [8705]={ [1]={ [1]={ limit={ @@ -195157,7 +198023,7 @@ return { [1]="map_invasion_bosses_dropped_items_have_x_additional_sockets" } }, - [8590]={ + [8706]={ [1]={ [1]={ limit={ @@ -195182,7 +198048,7 @@ return { [1]="map_invasion_monsters_guarded_by_x_magic_packs" } }, - [8591]={ + [8707]={ [1]={ [1]={ limit={ @@ -195198,7 +198064,7 @@ return { [1]="map_contains_additional_reviving_packs" } }, - [8592]={ + [8708]={ [1]={ [1]={ limit={ @@ -195214,7 +198080,7 @@ return { [1]="map_is_overrun_by_faridun" } }, - [8593]={ + [8709]={ [1]={ [1]={ limit={ @@ -195230,7 +198096,7 @@ return { [1]="map_item_drop_quality_also_applies_to_map_item_drop_rarity" } }, - [8594]={ + [8710]={ [1]={ [1]={ limit={ @@ -195259,7 +198125,7 @@ return { [1]="map_item_drop_quantity_+%_final_from_zana_influence" } }, - [8595]={ + [8711]={ [1]={ [1]={ limit={ @@ -195288,7 +198154,7 @@ return { [1]="map_item_found_rarity_+%_per_15_rampage_stacks" } }, - [8596]={ + [8712]={ [1]={ [1]={ limit={ @@ -195304,7 +198170,7 @@ return { [1]="map_item_quantity_from_monsters_that_drop_silver_coin_+%" } }, - [8597]={ + [8713]={ [1]={ [1]={ limit={ @@ -195320,7 +198186,7 @@ return { [1]="map_item_zana_influence_+" } }, - [8598]={ + [8714]={ [1]={ [1]={ limit={ @@ -195349,7 +198215,7 @@ return { [1]="map_labyrinth_izaro_area_of_effect_+%" } }, - [8599]={ + [8715]={ [1]={ [1]={ limit={ @@ -195378,7 +198244,7 @@ return { [1]="map_labyrinth_izaro_attack_cast_move_speed_+%" } }, - [8600]={ + [8716]={ [1]={ [1]={ limit={ @@ -195407,7 +198273,7 @@ return { [1]="map_labyrinth_izaro_damage_+%" } }, - [8601]={ + [8717]={ [1]={ [1]={ limit={ @@ -195436,7 +198302,7 @@ return { [1]="map_labyrinth_izaro_life_+%" } }, - [8602]={ + [8718]={ [1]={ [1]={ limit={ @@ -195465,7 +198331,7 @@ return { [1]="map_labyrinth_monsters_attack_cast_and_movement_speed_+%" } }, - [8603]={ + [8719]={ [1]={ [1]={ limit={ @@ -195494,7 +198360,7 @@ return { [1]="map_labyrinth_monsters_damage_+%" } }, - [8604]={ + [8720]={ [1]={ [1]={ limit={ @@ -195523,7 +198389,7 @@ return { [1]="map_labyrinth_monsters_life_+%" } }, - [8605]={ + [8721]={ [1]={ [1]={ limit={ @@ -195548,7 +198414,7 @@ return { [1]="map_leaguestone_area_contains_x_additional_leaguestones" } }, - [8606]={ + [8722]={ [1]={ [1]={ limit={ @@ -195577,7 +198443,7 @@ return { [1]="map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final" } }, - [8607]={ + [8723]={ [1]={ [1]={ limit={ @@ -195593,7 +198459,7 @@ return { [1]="map_leaguestone_contains_warband_leader" } }, - [8608]={ + [8724]={ [1]={ [1]={ limit={ @@ -195636,7 +198502,7 @@ return { [1]="map_leaguestone_explicit_warband_type_override" } }, - [8609]={ + [8725]={ [1]={ [1]={ limit={ @@ -195652,7 +198518,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_quantity_+%_final" } }, - [8610]={ + [8726]={ [1]={ [1]={ limit={ @@ -195668,7 +198534,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_rarity_+%_final" } }, - [8611]={ + [8727]={ [1]={ [1]={ limit={ @@ -195697,7 +198563,7 @@ return { [1]="map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final" } }, - [8612]={ + [8728]={ [1]={ [1]={ limit={ @@ -195749,7 +198615,7 @@ return { [1]="map_leaguestone_monolith_contains_essence_type" } }, - [8613]={ + [8729]={ [1]={ [1]={ limit={ @@ -195774,7 +198640,7 @@ return { [1]="map_leaguestone_override_base_num_breaches" } }, - [8614]={ + [8730]={ [1]={ [1]={ limit={ @@ -195799,7 +198665,7 @@ return { [1]="map_leaguestone_override_base_num_invasion_bosses" } }, - [8615]={ + [8731]={ [1]={ [1]={ limit={ @@ -195824,7 +198690,7 @@ return { [1]="map_leaguestone_override_base_num_monoliths" } }, - [8616]={ + [8732]={ [1]={ [1]={ limit={ @@ -195849,7 +198715,7 @@ return { [1]="map_leaguestone_override_base_num_perandus_chests" } }, - [8617]={ + [8733]={ [1]={ [1]={ limit={ @@ -195874,7 +198740,7 @@ return { [1]="map_leaguestone_override_base_num_prophecy_coins" } }, - [8618]={ + [8734]={ [1]={ [1]={ limit={ @@ -195899,7 +198765,7 @@ return { [1]="map_leaguestone_override_base_num_rogue_exiles" } }, - [8619]={ + [8735]={ [1]={ [1]={ limit={ @@ -195924,7 +198790,7 @@ return { [1]="map_leaguestone_override_base_num_shrines" } }, - [8620]={ + [8736]={ [1]={ [1]={ limit={ @@ -195949,7 +198815,7 @@ return { [1]="map_leaguestone_override_base_num_strongboxes" } }, - [8621]={ + [8737]={ [1]={ [1]={ limit={ @@ -195974,7 +198840,7 @@ return { [1]="map_leaguestone_override_base_num_talismans" } }, - [8622]={ + [8738]={ [1]={ [1]={ limit={ @@ -195999,7 +198865,7 @@ return { [1]="map_leaguestone_override_base_num_tormented_spirits" } }, - [8623]={ + [8739]={ [1]={ [1]={ limit={ @@ -196024,7 +198890,7 @@ return { [1]="map_leaguestone_override_base_num_warband_packs" } }, - [8624]={ + [8740]={ [1]={ [1]={ limit={ @@ -196040,7 +198906,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_quantity_+%_final" } }, - [8625]={ + [8741]={ [1]={ [1]={ limit={ @@ -196056,7 +198922,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_rarity_+%_final" } }, - [8626]={ + [8742]={ [1]={ [1]={ limit={ @@ -196072,7 +198938,7 @@ return { [1]="map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final" } }, - [8627]={ + [8743]={ [1]={ [1]={ limit={ @@ -196097,7 +198963,7 @@ return { [1]="map_leaguestone_shrine_monster_rarity_override" } }, - [8628]={ + [8744]={ [1]={ [1]={ limit={ @@ -196131,7 +198997,7 @@ return { [1]="map_leaguestone_shrine_override_type" } }, - [8629]={ + [8745]={ [1]={ [1]={ limit={ @@ -196156,7 +199022,7 @@ return { [1]="map_leaguestone_strongboxes_rarity_override" } }, - [8630]={ + [8746]={ [1]={ [1]={ limit={ @@ -196172,7 +199038,7 @@ return { [1]="map_strongboxes_vaal_orb_drop_chance_%" } }, - [8631]={ + [8747]={ [1]={ [1]={ limit={ @@ -196188,7 +199054,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_quantity_+%_final" } }, - [8632]={ + [8748]={ [1]={ [1]={ limit={ @@ -196204,7 +199070,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_rarity_+%_final" } }, - [8633]={ + [8749]={ [1]={ [1]={ limit={ @@ -196229,7 +199095,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_abaxoth" } }, - [8634]={ + [8750]={ [1]={ [1]={ limit={ @@ -196254,7 +199120,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_random_beyond_boss" } }, - [8635]={ + [8751]={ [1]={ [1]={ limit={ @@ -196270,7 +199136,7 @@ return { [1]="map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks" } }, - [8636]={ + [8752]={ [1]={ [1]={ limit={ @@ -196286,7 +199152,7 @@ return { [1]="map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks" } }, - [8637]={ + [8753]={ [1]={ [1]={ limit={ @@ -196311,7 +199177,7 @@ return { [1]="map_legion_additional_number_of_sergeants" } }, - [8638]={ + [8754]={ [1]={ [1]={ limit={ @@ -196327,7 +199193,7 @@ return { [1]="map_legion_generals_spawn_both_generals" } }, - [8639]={ + [8755]={ [1]={ [1]={ limit={ @@ -196343,7 +199209,7 @@ return { [1]="map_legion_league_force_general" } }, - [8640]={ + [8756]={ [1]={ [1]={ limit={ @@ -196359,7 +199225,7 @@ return { [1]="map_legion_league_force_war_chest" } }, - [8641]={ + [8757]={ [1]={ [1]={ limit={ @@ -196388,7 +199254,7 @@ return { [1]="map_legion_monster_life_+%_final_from_sextant" } }, - [8642]={ + [8758]={ [1]={ [1]={ limit={ @@ -196404,7 +199270,7 @@ return { [1]="map_legion_monster_splinter_emblem_drops_duplicated" } }, - [8643]={ + [8759]={ [1]={ [1]={ limit={ @@ -196420,7 +199286,7 @@ return { [1]="map_lethal_after_X_seconds" } }, - [8644]={ + [8760]={ [1]={ [1]={ limit={ @@ -196436,7 +199302,7 @@ return { [1]="map_level_+" } }, - [8645]={ + [8761]={ [1]={ [1]={ limit={ @@ -196452,7 +199318,7 @@ return { [1]="map_supporter_maddening_tentacle_daemon_spawn" } }, - [8646]={ + [8762]={ [1]={ [1]={ limit={ @@ -196468,7 +199334,7 @@ return { [1]="map_magic_items_drop_as_normal" } }, - [8647]={ + [8763]={ [1]={ [1]={ [1]={ @@ -196488,7 +199354,7 @@ return { [1]="map_magic_monsters_are_maimed" } }, - [8648]={ + [8764]={ [1]={ [1]={ limit={ @@ -196517,7 +199383,7 @@ return { [1]="map_magic_monsters_damage_taken_+%" } }, - [8649]={ + [8765]={ [1]={ [1]={ limit={ @@ -196546,7 +199412,7 @@ return { [1]="map_magic_pack_size_+%" } }, - [8650]={ + [8766]={ [1]={ [1]={ limit={ @@ -196562,7 +199428,7 @@ return { [1]="map_map_item_drop_chance_+%" } }, - [8651]={ + [8767]={ [1]={ [1]={ limit={ @@ -196578,7 +199444,71 @@ return { [1]="map_melee_physical_damage_taken_%_to_deal_to_attacker" } }, - [8652]={ + [8768]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mercenaries found in Area are accompanied by two Wild Mercenaries" + } + }, + stats={ + [1]="map_mercanary_accompanied_by_party" + } + }, + [8769]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mercenaries found in Area are Infamous" + } + }, + stats={ + [1]="map_mercenaries_are_infamous" + } + }, + [8770]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="All Equipment Items on Mercenaries found in Area are Unique" + } + }, + stats={ + [1]="map_mercenary_all_unique_items" + } + }, + [8771]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area is inhabited by a Mercenary" + } + }, + stats={ + [1]="map_mercenary_league" + } + }, + [8772]={ [1]={ [1]={ limit={ @@ -196594,7 +199524,7 @@ return { [1]="map_metamorph_all_metamorphs_have_rewards" } }, - [8653]={ + [8773]={ [1]={ [1]={ limit={ @@ -196619,7 +199549,7 @@ return { [1]="map_metamorph_boss_drops_additional_itemised_organs" } }, - [8654]={ + [8774]={ [1]={ [1]={ limit={ @@ -196635,7 +199565,7 @@ return { [1]="map_metamorph_catalyst_drops_duplicated" } }, - [8655]={ + [8775]={ [1]={ [1]={ limit={ @@ -196660,7 +199590,7 @@ return { [1]="map_metamorph_itemised_boss_min_rewards" } }, - [8656]={ + [8776]={ [1]={ [1]={ limit={ @@ -196676,7 +199606,7 @@ return { [1]="map_metamorph_itemised_boss_more_difficult" } }, - [8657]={ + [8777]={ [1]={ [1]={ limit={ @@ -196705,7 +199635,7 @@ return { [1]="map_metamorph_life_+%_final_from_sextant" } }, - [8658]={ + [8778]={ [1]={ [1]={ limit={ @@ -196721,7 +199651,7 @@ return { [1]="map_metamorphosis_league" } }, - [8659]={ + [8779]={ [1]={ [1]={ limit={ @@ -196737,7 +199667,7 @@ return { [1]="map_mini_monolith_monsters_are_magic" } }, - [8660]={ + [8780]={ [1]={ [1]={ limit={ @@ -196766,7 +199696,7 @@ return { [1]="map_minion_attack_speed_+%" } }, - [8661]={ + [8781]={ [1]={ [1]={ limit={ @@ -196795,7 +199725,7 @@ return { [1]="map_minion_cast_speed_+%" } }, - [8662]={ + [8782]={ [1]={ [1]={ limit={ @@ -196824,7 +199754,7 @@ return { [1]="map_minion_movement_speed_+%" } }, - [8663]={ + [8783]={ [1]={ [1]={ limit={ @@ -196840,7 +199770,7 @@ return { [1]="map_monster_action_speed_cannot_be_reduced_below_base" } }, - [8664]={ + [8784]={ [1]={ [1]={ [1]={ @@ -196868,7 +199798,7 @@ return { [1]="map_monster_all_damage_can_ignite_freeze_shock" } }, - [8665]={ + [8785]={ [1]={ [1]={ [1]={ @@ -196905,7 +199835,7 @@ return { [1]="map_monster_and_player_onslaught_effect_+%" } }, - [8666]={ + [8786]={ [1]={ [1]={ limit={ @@ -196934,7 +199864,7 @@ return { [1]="map_monster_attack_cast_and_movement_speed_+%" } }, - [8667]={ + [8787]={ [1]={ [1]={ limit={ @@ -196963,7 +199893,7 @@ return { [1]="map_monster_beyond_portal_chance_+%" } }, - [8668]={ + [8788]={ [1]={ [1]={ limit={ @@ -196988,7 +199918,7 @@ return { [1]="map_monster_chance_to_gain_endurance_charge_when_hit_%" } }, - [8669]={ + [8789]={ [1]={ [1]={ limit={ @@ -197017,7 +199947,7 @@ return { [1]="map_monster_curse_effect_on_self_+%" } }, - [8670]={ + [8790]={ [1]={ [1]={ limit={ @@ -197046,7 +199976,7 @@ return { [1]="map_monster_damage_taken_+%_final_from_atlas_keystone" } }, - [8671]={ + [8791]={ [1]={ [1]={ limit={ @@ -197075,7 +200005,7 @@ return { [1]="map_monster_damage_taken_+%_while_possessed" } }, - [8672]={ + [8792]={ [1]={ [1]={ limit={ @@ -197108,7 +200038,7 @@ return { [1]="map_monster_debuff_time_passed_+%" } }, - [8673]={ + [8793]={ [1]={ [1]={ [1]={ @@ -197141,7 +200071,7 @@ return { [1]="map_monster_add_x_grasping_vines_on_hit" } }, - [8674]={ + [8794]={ [1]={ [1]={ [1]={ @@ -197161,7 +200091,7 @@ return { [1]="map_monster_item_rarity_+permyriad_final_per_empowered_soul" } }, - [8675]={ + [8795]={ [1]={ [1]={ limit={ @@ -197177,7 +200107,7 @@ return { [1]="map_kill_enemy_on_hit_if_under_20%_life" } }, - [8676]={ + [8796]={ [1]={ [1]={ [1]={ @@ -197197,7 +200127,7 @@ return { [1]="map_monster_malediction_on_hit" } }, - [8677]={ + [8797]={ [1]={ [1]={ limit={ @@ -197213,7 +200143,7 @@ return { [1]="map_monster_movement_speed_cannot_be_reduced_below_base" } }, - [8678]={ + [8798]={ [1]={ [1]={ limit={ @@ -197229,7 +200159,7 @@ return { [1]="map_corpse_cannot_be_destroyed" } }, - [8679]={ + [8799]={ [1]={ [1]={ [1]={ @@ -197266,7 +200196,7 @@ return { [1]="map_monster_non_damaging_ailment_effect_+%_on_self" } }, - [8680]={ + [8800]={ [1]={ [1]={ limit={ @@ -197291,7 +200221,7 @@ return { [1]="map_monster_petal_chance_+%" } }, - [8681]={ + [8801]={ [1]={ [1]={ limit={ @@ -197316,7 +200246,7 @@ return { [1]="map_monster_projectile_chain_from_terrain_chance_%" } }, - [8682]={ + [8802]={ [1]={ [1]={ limit={ @@ -197341,7 +200271,7 @@ return { [1]="map_monster_rare_and_unique_rose_petal_quantity_+%" } }, - [8683]={ + [8803]={ [1]={ [1]={ limit={ @@ -197366,7 +200296,7 @@ return { [1]="map_monster_rose_petal_quantity_+%" } }, - [8684]={ + [8804]={ [1]={ [1]={ limit={ @@ -197395,7 +200325,7 @@ return { [1]="map_monster_slain_experience_+%" } }, - [8685]={ + [8805]={ [1]={ [1]={ limit={ @@ -197424,7 +200354,7 @@ return { [1]="map_monsters_accuracy_rating_+%" } }, - [8686]={ + [8806]={ [1]={ [1]={ limit={ @@ -197457,7 +200387,7 @@ return { [1]="map_monsters_action_speed_-%" } }, - [8687]={ + [8807]={ [1]={ [1]={ limit={ @@ -197473,7 +200403,7 @@ return { [1]="map_monsters_additional_chaos_resistance" } }, - [8688]={ + [8808]={ [1]={ [1]={ limit={ @@ -197489,7 +200419,7 @@ return { [1]="map_monsters_additional_elemental_resistance" } }, - [8689]={ + [8809]={ [1]={ [1]={ [1]={ @@ -197509,7 +200439,7 @@ return { [1]="map_monsters_additional_maximum_all_elemental_resistances_%" } }, - [8690]={ + [8810]={ [1]={ [1]={ [1]={ @@ -197529,7 +200459,7 @@ return { [1]="map_monsters_all_damage_can_chill" } }, - [8691]={ + [8811]={ [1]={ [1]={ limit={ @@ -197545,7 +200475,7 @@ return { [1]="map_monsters_all_damage_can_freeze" } }, - [8692]={ + [8812]={ [1]={ [1]={ limit={ @@ -197561,7 +200491,7 @@ return { [1]="map_monsters_all_damage_can_ignite" } }, - [8693]={ + [8813]={ [1]={ [1]={ limit={ @@ -197577,7 +200507,7 @@ return { [1]="map_monsters_all_damage_can_poison" } }, - [8694]={ + [8814]={ [1]={ [1]={ [1]={ @@ -197597,7 +200527,7 @@ return { [1]="map_monsters_all_damage_can_shock" } }, - [8695]={ + [8815]={ [1]={ [1]={ limit={ @@ -197613,7 +200543,7 @@ return { [1]="map_monsters_always_crit" } }, - [8696]={ + [8816]={ [1]={ [1]={ limit={ @@ -197629,7 +200559,7 @@ return { [1]="map_monsters_always_hit" } }, - [8697]={ + [8817]={ [1]={ [1]={ [1]={ @@ -197649,7 +200579,7 @@ return { [1]="map_monsters_always_ignite" } }, - [8698]={ + [8818]={ [1]={ [1]={ limit={ @@ -197665,7 +200595,7 @@ return { [1]="map_monsters_are_converted_on_kill" } }, - [8699]={ + [8819]={ [1]={ [1]={ limit={ @@ -197681,7 +200611,7 @@ return { [1]="map_monsters_avoid_poison_bleed_impale_%" } }, - [8700]={ + [8820]={ [1]={ [1]={ limit={ @@ -197710,7 +200640,7 @@ return { [1]="map_monsters_base_bleed_duration_+%" } }, - [8701]={ + [8821]={ [1]={ [1]={ limit={ @@ -197726,7 +200656,7 @@ return { [1]="map_monsters_base_block_%" } }, - [8702]={ + [8822]={ [1]={ [1]={ limit={ @@ -197751,7 +200681,7 @@ return { [1]="map_monsters_base_chance_to_freeze_%" } }, - [8703]={ + [8823]={ [1]={ [1]={ limit={ @@ -197776,7 +200706,7 @@ return { [1]="map_monsters_base_chance_to_ignite_%" } }, - [8704]={ + [8824]={ [1]={ [1]={ limit={ @@ -197801,7 +200731,7 @@ return { [1]="map_monsters_base_chance_to_shock_%" } }, - [8705]={ + [8825]={ [1]={ [1]={ limit={ @@ -197830,7 +200760,7 @@ return { [1]="map_monsters_base_poison_duration_+%" } }, - [8706]={ + [8826]={ [1]={ [1]={ limit={ @@ -197846,7 +200776,7 @@ return { [1]="map_monsters_base_spell_block_%" } }, - [8707]={ + [8827]={ [1]={ [1]={ limit={ @@ -197862,7 +200792,7 @@ return { [1]="map_monsters_can_be_empowered_by_x_wildwood_wisps" } }, - [8708]={ + [8828]={ [1]={ [1]={ limit={ @@ -197878,7 +200808,7 @@ return { [1]="map_monsters_cannot_be_taunted" } }, - [8709]={ + [8829]={ [1]={ [1]={ [1]={ @@ -197911,7 +200841,7 @@ return { [1]="map_monsters_chance_to_blind_on_hit_%" } }, - [8710]={ + [8830]={ [1]={ [1]={ [1]={ @@ -197944,7 +200874,7 @@ return { [1]="map_monsters_chance_to_inflict_brittle_%" } }, - [8711]={ + [8831]={ [1]={ [1]={ [1]={ @@ -197977,7 +200907,7 @@ return { [1]="map_monsters_chance_to_inflict_sapped_%" } }, - [8712]={ + [8832]={ [1]={ [1]={ [1]={ @@ -198010,7 +200940,7 @@ return { [1]="map_monsters_chance_to_scorch_%" } }, - [8713]={ + [8833]={ [1]={ [1]={ limit={ @@ -198043,7 +200973,7 @@ return { [1]="map_monsters_curse_effect_on_self_+%_final" } }, - [8714]={ + [8834]={ [1]={ [1]={ limit={ @@ -198072,7 +201002,7 @@ return { [1]="map_monsters_damage_taken_+%" } }, - [8715]={ + [8835]={ [1]={ [1]={ [1]={ @@ -198092,7 +201022,7 @@ return { [1]="map_monsters_enemy_phys_reduction_%_penalty_vs_hit" } }, - [8716]={ + [8836]={ [1]={ [1]={ limit={ @@ -198121,7 +201051,7 @@ return { [1]="map_monsters_energy_shield_leech_resistance_%" } }, - [8717]={ + [8837]={ [1]={ [1]={ limit={ @@ -198137,7 +201067,7 @@ return { [1]="map_monsters_enrage_on_low_life" } }, - [8718]={ + [8838]={ [1]={ [1]={ limit={ @@ -198166,7 +201096,7 @@ return { [1]="map_monsters_freeze_duration_+%" } }, - [8719]={ + [8839]={ [1]={ [1]={ limit={ @@ -198182,7 +201112,7 @@ return { [1]="map_monsters_global_bleed_on_hit" } }, - [8720]={ + [8840]={ [1]={ [1]={ limit={ @@ -198198,7 +201128,7 @@ return { [1]="map_monsters_global_poison_on_hit" } }, - [8721]={ + [8841]={ [1]={ [1]={ limit={ @@ -198227,7 +201157,7 @@ return { [1]="map_monsters_ignite_duration_+%" } }, - [8722]={ + [8842]={ [1]={ [1]={ [1]={ @@ -198260,7 +201190,7 @@ return { [1]="map_monsters_maim_on_hit_%_chance" } }, - [8723]={ + [8843]={ [1]={ [1]={ limit={ @@ -198276,7 +201206,7 @@ return { [1]="map_monsters_maximum_life_%_to_add_to_maximum_energy_shield" } }, - [8724]={ + [8844]={ [1]={ [1]={ limit={ @@ -198292,7 +201222,7 @@ return { [1]="map_monsters_movement_speed_cannot_be_reduced_below_base" } }, - [8725]={ + [8845]={ [1]={ [1]={ [1]={ @@ -198312,7 +201242,7 @@ return { [1]="map_monsters_near_shrines_are_chilled" } }, - [8726]={ + [8846]={ [1]={ [1]={ limit={ @@ -198328,7 +201258,7 @@ return { [1]="map_monsters_penetrate_elemental_resistances_%" } }, - [8727]={ + [8847]={ [1]={ [1]={ limit={ @@ -198353,7 +201283,7 @@ return { [1]="map_monsters_%_chance_to_inflict_status_ailments" } }, - [8728]={ + [8848]={ [1]={ [1]={ limit={ @@ -198369,7 +201299,7 @@ return { [1]="map_monsters_%_physical_damage_to_add_as_chaos" } }, - [8729]={ + [8849]={ [1]={ [1]={ limit={ @@ -198385,7 +201315,7 @@ return { [1]="map_monsters_physical_damage_%_to_add_as_random_element" } }, - [8730]={ + [8850]={ [1]={ [1]={ limit={ @@ -198401,7 +201331,7 @@ return { [1]="map_monsters_reduce_enemy_chaos_resistance_%" } }, - [8731]={ + [8851]={ [1]={ [1]={ limit={ @@ -198417,7 +201347,7 @@ return { [1]="map_monsters_reduce_enemy_cold_resistance_%" } }, - [8732]={ + [8852]={ [1]={ [1]={ limit={ @@ -198433,7 +201363,7 @@ return { [1]="map_monsters_reduce_enemy_fire_resistance_%" } }, - [8733]={ + [8853]={ [1]={ [1]={ limit={ @@ -198449,7 +201379,7 @@ return { [1]="map_monsters_reduce_enemy_lightning_resistance_%" } }, - [8734]={ + [8854]={ [1]={ [1]={ limit={ @@ -198474,7 +201404,7 @@ return { [1]="map_monsters_remove_charges_on_hit_%" } }, - [8735]={ + [8855]={ [1]={ [1]={ limit={ @@ -198490,7 +201420,7 @@ return { [1]="map_monsters_remove_enemy_flask_charge_on_hit_%_chance" } }, - [8736]={ + [8856]={ [1]={ [1]={ limit={ @@ -198506,7 +201436,7 @@ return { [1]="map_monsters_remove_%_of_mana_on_hit" } }, - [8737]={ + [8857]={ [1]={ [1]={ limit={ @@ -198535,7 +201465,7 @@ return { [1]="map_monsters_shock_effect_+%" } }, - [8738]={ + [8858]={ [1]={ [1]={ limit={ @@ -198560,7 +201490,7 @@ return { [1]="map_monsters_spawned_with_talisman_drop_additional_rare_items" } }, - [8739]={ + [8859]={ [1]={ [1]={ limit={ @@ -198585,7 +201515,7 @@ return { [1]="map_monsters_spell_damage_%_suppressed" } }, - [8740]={ + [8860]={ [1]={ [1]={ [1]={ @@ -198605,7 +201535,7 @@ return { [1]="map_monsters_spell_suppression_chance_%" } }, - [8741]={ + [8861]={ [1]={ [1]={ [1]={ @@ -198638,7 +201568,7 @@ return { [1]="map_monsters_spells_chance_to_hinder_on_hit_%_chance" } }, - [8742]={ + [8862]={ [1]={ [1]={ limit={ @@ -198663,7 +201593,7 @@ return { [1]="map_monsters_steal_charges" } }, - [8743]={ + [8863]={ [1]={ [1]={ limit={ @@ -198672,14 +201602,14 @@ return { [2]=19 } }, - text="[DNT] Monsters spawn Volatile Cores on death" + text="DNT Monsters spawn Volatile Cores on death" } }, stats={ [1]="map_monsters_summon_specific_monsters_on_death" } }, - [8744]={ + [8864]={ [1]={ [1]={ limit={ @@ -198704,7 +201634,7 @@ return { [1]="map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins" } }, - [8745]={ + [8865]={ [1]={ [1]={ limit={ @@ -198720,7 +201650,7 @@ return { [1]="map_monsters_unaffected_by_curses" } }, - [8746]={ + [8866]={ [1]={ [1]={ limit={ @@ -198736,7 +201666,7 @@ return { [1]="map_supporter_volatile_on_death_chance_%" } }, - [8747]={ + [8867]={ [1]={ [1]={ limit={ @@ -198761,7 +201691,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_currency_items" } }, - [8748]={ + [8868]={ [1]={ [1]={ limit={ @@ -198786,7 +201716,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_rare_items" } }, - [8749]={ + [8869]={ [1]={ [1]={ [1]={ @@ -198819,7 +201749,7 @@ return { [1]="map_monsters_withered_on_hit_for_2_seconds_%_chance" } }, - [8750]={ + [8870]={ [1]={ [1]={ limit={ @@ -198835,7 +201765,7 @@ return { [1]="map_monstrous_treasure_no_monsters" } }, - [8751]={ + [8871]={ [1]={ [1]={ limit={ @@ -198864,7 +201794,7 @@ return { [1]="map_movement_velocity_+%_per_poison_stack" } }, - [8752]={ + [8872]={ [1]={ [1]={ limit={ @@ -198889,7 +201819,7 @@ return { [1]="map_nemesis_dropped_items_+" } }, - [8753]={ + [8873]={ [1]={ [1]={ limit={ @@ -198914,7 +201844,7 @@ return { [1]="map_next_area_contains_x_additional_bearers_of_the_guardian_packs" } }, - [8754]={ + [8874]={ [1]={ [1]={ limit={ @@ -198939,7 +201869,7 @@ return { [1]="map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs" } }, - [8755]={ + [8875]={ [1]={ [1]={ limit={ @@ -198955,7 +201885,7 @@ return { [1]="map_no_experience_gain" } }, - [8756]={ + [8876]={ [1]={ [1]={ limit={ @@ -198971,7 +201901,7 @@ return { [1]="map_no_magic_items_drop" } }, - [8757]={ + [8877]={ [1]={ [1]={ limit={ @@ -198987,7 +201917,7 @@ return { [1]="map_no_rare_items_drop" } }, - [8758]={ + [8878]={ [1]={ [1]={ limit={ @@ -199003,7 +201933,7 @@ return { [1]="map_no_stashes" } }, - [8759]={ + [8879]={ [1]={ [1]={ limit={ @@ -199019,7 +201949,7 @@ return { [1]="map_no_uniques_drop_randomly" } }, - [8760]={ + [8880]={ [1]={ [1]={ limit={ @@ -199035,7 +201965,7 @@ return { [1]="map_no_vendors" } }, - [8761]={ + [8881]={ [1]={ [1]={ limit={ @@ -199051,7 +201981,7 @@ return { [1]="map_non_unique_items_drop_normal" } }, - [8762]={ + [8882]={ [1]={ [1]={ [1]={ @@ -199071,7 +202001,7 @@ return { [1]="map_non_unique_monster_life_regeneration_rate_per_minute_%" } }, - [8763]={ + [8883]={ [1]={ [1]={ limit={ @@ -199087,7 +202017,7 @@ return { [1]="map_normal_items_drop_as_magic" } }, - [8764]={ + [8884]={ [1]={ [1]={ limit={ @@ -199103,7 +202033,7 @@ return { [1]="map_nuke_everything" } }, - [8765]={ + [8885]={ [1]={ [1]={ limit={ @@ -199128,7 +202058,7 @@ return { [1]="map_num_additional_random_scarab_effects" } }, - [8766]={ + [8886]={ [1]={ [1]={ limit={ @@ -199153,7 +202083,7 @@ return { [1]="map_num_extra_gloom_shrines" } }, - [8767]={ + [8887]={ [1]={ [1]={ limit={ @@ -199178,7 +202108,7 @@ return { [1]="map_num_extra_harbingers" } }, - [8768]={ + [8888]={ [1]={ [1]={ limit={ @@ -199203,7 +202133,7 @@ return { [1]="map_num_extra_resonating_shrines" } }, - [8769]={ + [8889]={ [1]={ [1]={ limit={ @@ -199254,7 +202184,7 @@ return { [1]="map_number_of_additional_mines_to_place" } }, - [8770]={ + [8890]={ [1]={ [1]={ limit={ @@ -199279,7 +202209,7 @@ return { [1]="map_number_of_additional_mods" } }, - [8771]={ + [8891]={ [1]={ [1]={ limit={ @@ -199304,7 +202234,7 @@ return { [1]="map_number_of_additional_prefixes" } }, - [8772]={ + [8892]={ [1]={ [1]={ limit={ @@ -199329,7 +202259,7 @@ return { [1]="map_number_of_additional_silver_coin_drops" } }, - [8773]={ + [8893]={ [1]={ [1]={ limit={ @@ -199354,7 +202284,7 @@ return { [1]="map_number_of_additional_suffixes" } }, - [8774]={ + [8894]={ [1]={ [1]={ limit={ @@ -199397,7 +202327,7 @@ return { [1]="map_number_of_additional_traps_to_throw" } }, - [8775]={ + [8895]={ [1]={ [1]={ limit={ @@ -199413,7 +202343,7 @@ return { [1]="map_number_of_additional_totems_allowed" } }, - [8776]={ + [8896]={ [1]={ [1]={ limit={ @@ -199438,7 +202368,7 @@ return { [1]="map_on_complete_drop_x_additional_forbidden_tomes" } }, - [8777]={ + [8897]={ [1]={ [1]={ limit={ @@ -199463,7 +202393,7 @@ return { [1]="map_on_complete_drop_x_additional_maps" } }, - [8778]={ + [8898]={ [1]={ [1]={ limit={ @@ -199488,7 +202418,7 @@ return { [1]="map_on_complete_drop_x_additional_memory_lines" } }, - [8779]={ + [8899]={ [1]={ [1]={ limit={ @@ -199504,7 +202434,7 @@ return { [1]="map_owner_sulphite_gained_+%" } }, - [8780]={ + [8900]={ [1]={ [1]={ limit={ @@ -199520,7 +202450,7 @@ return { [1]="map_packs_are_abomination_monsters" } }, - [8781]={ + [8901]={ [1]={ [1]={ limit={ @@ -199536,7 +202466,7 @@ return { [1]="map_packs_are_blackguards" } }, - [8782]={ + [8902]={ [1]={ [1]={ limit={ @@ -199552,7 +202482,7 @@ return { [1]="map_packs_are_ghosts" } }, - [8783]={ + [8903]={ [1]={ [1]={ limit={ @@ -199568,7 +202498,7 @@ return { [1]="map_packs_are_kitava" } }, - [8784]={ + [8904]={ [1]={ [1]={ limit={ @@ -199584,7 +202514,7 @@ return { [1]="map_packs_are_lunaris" } }, - [8785]={ + [8905]={ [1]={ [1]={ limit={ @@ -199600,7 +202530,7 @@ return { [1]="map_packs_are_solaris" } }, - [8786]={ + [8906]={ [1]={ [1]={ limit={ @@ -199616,7 +202546,7 @@ return { [1]="map_packs_are_spiders" } }, - [8787]={ + [8907]={ [1]={ [1]={ limit={ @@ -199632,7 +202562,7 @@ return { [1]="map_packs_are_vaal" } }, - [8788]={ + [8908]={ [1]={ [1]={ limit={ @@ -199648,7 +202578,7 @@ return { [1]="map_packs_have_detonate_dead_totems" } }, - [8789]={ + [8909]={ [1]={ [1]={ limit={ @@ -199664,7 +202594,7 @@ return { [1]="map_packs_have_uber_tentacle_fiends" } }, - [8790]={ + [8910]={ [1]={ [1]={ limit={ @@ -199680,7 +202610,7 @@ return { [1]="map_perandus_guards_are_rare" } }, - [8791]={ + [8911]={ [1]={ [1]={ limit={ @@ -199696,7 +202626,7 @@ return { [1]="map_perandus_monsters_drop_perandus_coin_stack_%" } }, - [8792]={ + [8912]={ [1]={ [1]={ [1]={ @@ -199725,7 +202655,7 @@ return { [1]="map_percent_increased_effect_of_atlas_passives" } }, - [8793]={ + [8913]={ [1]={ [1]={ limit={ @@ -199741,7 +202671,7 @@ return { [1]="map_petrificiation_statue_ambush" } }, - [8794]={ + [8914]={ [1]={ [1]={ limit={ @@ -199770,7 +202700,7 @@ return { [1]="map_player_accuracy_rating_+%_final" } }, - [8795]={ + [8915]={ [1]={ [1]={ [1]={ @@ -199807,7 +202737,7 @@ return { [1]="map_player_action_speed_+%_per_recent_skill_use" } }, - [8796]={ + [8916]={ [1]={ [1]={ [1]={ @@ -199844,7 +202774,7 @@ return { [1]="map_player_attack_cast_and_movement_speed_+%_during_onslaught" } }, - [8797]={ + [8917]={ [1]={ [1]={ limit={ @@ -199860,7 +202790,7 @@ return { [1]="map_player_base_aura_skills_affecting_allies_also_affect_enemies" } }, - [8798]={ + [8918]={ [1]={ [1]={ limit={ @@ -199885,7 +202815,7 @@ return { [1]="map_player_buff_time_passed_+%_only_buff_category" } }, - [8799]={ + [8919]={ [1]={ [1]={ limit={ @@ -199894,14 +202824,14 @@ return { [2]="#" } }, - text="[DNT] Players can be touched by Tormented Spirits" + text="DNT Players can be touched by Tormented Spirits" } }, stats={ [1]="map_player_can_be_touched_by_tormented_spirits" } }, - [8800]={ + [8920]={ [1]={ [1]={ limit={ @@ -199917,7 +202847,7 @@ return { [1]="map_player_cannot_block" } }, - [8801]={ + [8921]={ [1]={ [1]={ limit={ @@ -199933,7 +202863,7 @@ return { [1]="map_player_cannot_block_attacks" } }, - [8802]={ + [8922]={ [1]={ [1]={ limit={ @@ -199949,7 +202879,7 @@ return { [1]="map_player_cannot_block_spells" } }, - [8803]={ + [8923]={ [1]={ [1]={ limit={ @@ -199965,7 +202895,7 @@ return { [1]="map_player_cannot_recharge_energy_shield" } }, - [8804]={ + [8924]={ [1]={ [1]={ limit={ @@ -199981,7 +202911,7 @@ return { [1]="map_player_cannot_suppress_spell_damage" } }, - [8805]={ + [8925]={ [1]={ [1]={ limit={ @@ -200006,7 +202936,7 @@ return { [1]="map_player_chance_to_gain_vaal_soul_on_kill_%" } }, - [8806]={ + [8926]={ [1]={ [1]={ limit={ @@ -200039,7 +202969,7 @@ return { [1]="map_player_charges_gained_+%" } }, - [8807]={ + [8927]={ [1]={ [1]={ limit={ @@ -200068,7 +202998,7 @@ return { [1]="map_player_cooldown_speed_+%_final" } }, - [8808]={ + [8928]={ [1]={ [1]={ limit={ @@ -200093,7 +203023,7 @@ return { [1]="map_player_create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [8809]={ + [8929]={ [1]={ [1]={ limit={ @@ -200122,7 +203052,7 @@ return { [1]="map_player_curse_effect_on_self_+%" } }, - [8810]={ + [8930]={ [1]={ [1]={ limit={ @@ -200138,7 +203068,7 @@ return { [1]="map_player_damage_+%_vs_breach_monsters" } }, - [8811]={ + [8931]={ [1]={ [1]={ limit={ @@ -200171,7 +203101,7 @@ return { [1]="map_player_damage_taken_+%_vs_breach_monsters" } }, - [8812]={ + [8932]={ [1]={ [1]={ limit={ @@ -200204,7 +203134,7 @@ return { [1]="map_player_damage_taken_+%_while_rampaging" } }, - [8813]={ + [8933]={ [1]={ [1]={ limit={ @@ -200233,7 +203163,7 @@ return { [1]="map_player_damage_while_dead_+%" } }, - [8814]={ + [8934]={ [1]={ [1]={ [1]={ @@ -200291,7 +203221,7 @@ return { [1]="map_player_death_mark_on_rare_unique_kill_ms" } }, - [8815]={ + [8935]={ [1]={ [1]={ limit={ @@ -200307,7 +203237,7 @@ return { [1]="map_player_disable_soul_gain_prevention" } }, - [8816]={ + [8936]={ [1]={ [1]={ limit={ @@ -200336,7 +203266,7 @@ return { [1]="map_player_flask_effect_+%_final" } }, - [8817]={ + [8937]={ [1]={ [1]={ limit={ @@ -200352,7 +203282,7 @@ return { [1]="map_player_flask_recovery_is_instant" } }, - [8818]={ + [8938]={ [1]={ [1]={ [1]={ @@ -200389,7 +203319,7 @@ return { [1]="map_player_global_defences_+%" } }, - [8819]={ + [8939]={ [1]={ [1]={ limit={ @@ -200405,7 +203335,7 @@ return { [1]="map_player_has_random_level_X_curse_every_10_seconds" } }, - [8820]={ + [8940]={ [1]={ [1]={ limit={ @@ -200438,7 +203368,7 @@ return { [1]="map_player_life_and_es_recovery_speed_+%_final" } }, - [8821]={ + [8941]={ [1]={ [1]={ [1]={ @@ -200458,7 +203388,7 @@ return { [1]="map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks" } }, - [8822]={ + [8942]={ [1]={ [1]={ limit={ @@ -200474,7 +203404,7 @@ return { [1]="map_player_lose_no_experience_on_death" } }, - [8823]={ + [8943]={ [1]={ [1]={ limit={ @@ -200503,7 +203433,7 @@ return { [1]="map_player_maximum_leech_rate_+%" } }, - [8824]={ + [8944]={ [1]={ [1]={ limit={ @@ -200532,7 +203462,7 @@ return { [1]="map_player_movement_velocity_+%" } }, - [8825]={ + [8945]={ [1]={ [1]={ limit={ @@ -200561,7 +203491,7 @@ return { [1]="map_player_non_curse_aura_effect_+%" } }, - [8826]={ + [8946]={ [1]={ [1]={ [1]={ @@ -200594,7 +203524,7 @@ return { [1]="map_player_onslaught_on_kill_%" } }, - [8827]={ + [8947]={ [1]={ [1]={ limit={ @@ -200610,7 +203540,7 @@ return { [1]="map_player_periodically_affected_by_random_marks" } }, - [8828]={ + [8948]={ [1]={ [1]={ limit={ @@ -200639,7 +203569,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [8829]={ + [8949]={ [1]={ [1]={ limit={ @@ -200655,7 +203585,7 @@ return { [1]="map_player_shrine_effect_duration_+%" } }, - [8830]={ + [8950]={ [1]={ [1]={ limit={ @@ -200671,7 +203601,7 @@ return { [1]="map_player_travel_skills_disabled" } }, - [8831]={ + [8951]={ [1]={ [1]={ limit={ @@ -200700,7 +203630,7 @@ return { [1]="map_players_and_monsters_chaos_damage_taken_+%" } }, - [8832]={ + [8952]={ [1]={ [1]={ limit={ @@ -200729,7 +203659,7 @@ return { [1]="map_players_and_monsters_cold_damage_taken_+%" } }, - [8833]={ + [8953]={ [1]={ [1]={ limit={ @@ -200758,7 +203688,7 @@ return { [1]="map_players_and_monsters_critical_strike_chance_+%" } }, - [8834]={ + [8954]={ [1]={ [1]={ limit={ @@ -200774,7 +203704,7 @@ return { [1]="map_players_and_monsters_curses_are_reflected" } }, - [8835]={ + [8955]={ [1]={ [1]={ limit={ @@ -200803,7 +203733,7 @@ return { [1]="map_players_and_monsters_damage_+%_per_curse" } }, - [8836]={ + [8956]={ [1]={ [1]={ limit={ @@ -200819,7 +203749,7 @@ return { [1]="map_players_and_monsters_damage_taken_+%_while_stationary" } }, - [8837]={ + [8957]={ [1]={ [1]={ limit={ @@ -200848,7 +203778,7 @@ return { [1]="map_players_and_monsters_fire_damage_taken_+%" } }, - [8838]={ + [8958]={ [1]={ [1]={ [1]={ @@ -200872,7 +203802,7 @@ return { [1]="map_players_and_monsters_have_onslaught_if_hit_recently" } }, - [8839]={ + [8959]={ [1]={ [1]={ limit={ @@ -200888,7 +203818,7 @@ return { [1]="map_players_and_monsters_have_resolute_technique" } }, - [8840]={ + [8960]={ [1]={ [1]={ limit={ @@ -200917,7 +203847,7 @@ return { [1]="map_players_and_monsters_lightning_damage_taken_+%" } }, - [8841]={ + [8961]={ [1]={ [1]={ limit={ @@ -200933,7 +203863,7 @@ return { [1]="map_players_and_monsters_movement_speed_+%" } }, - [8842]={ + [8962]={ [1]={ [1]={ limit={ @@ -200962,7 +203892,7 @@ return { [1]="map_players_and_monsters_physical_damage_taken_+%" } }, - [8843]={ + [8963]={ [1]={ [1]={ limit={ @@ -200978,7 +203908,7 @@ return { [1]="map_display_insanity" } }, - [8844]={ + [8964]={ [1]={ [1]={ [1]={ @@ -200998,7 +203928,7 @@ return { [1]="map_players_are_poisoned_while_moving_chaos_damage_per_second" } }, - [8845]={ + [8965]={ [1]={ [1]={ limit={ @@ -201031,7 +203961,7 @@ return { [1]="map_players_armour_+%_final" } }, - [8846]={ + [8966]={ [1]={ [1]={ limit={ @@ -201064,7 +203994,7 @@ return { [1]="map_players_block_chance_+%" } }, - [8847]={ + [8967]={ [1]={ [1]={ limit={ @@ -201080,7 +204010,7 @@ return { [1]="map_players_cannot_gain_endurance_charges" } }, - [8848]={ + [8968]={ [1]={ [1]={ limit={ @@ -201096,7 +204026,7 @@ return { [1]="map_players_cannot_gain_flask_charges" } }, - [8849]={ + [8969]={ [1]={ [1]={ limit={ @@ -201112,7 +204042,7 @@ return { [1]="map_players_cannot_gain_frenzy_charges" } }, - [8850]={ + [8970]={ [1]={ [1]={ limit={ @@ -201128,7 +204058,7 @@ return { [1]="map_players_cannot_gain_power_charges" } }, - [8851]={ + [8971]={ [1]={ [1]={ limit={ @@ -201144,7 +204074,7 @@ return { [1]="map_players_cannot_take_reflected_damage" } }, - [8852]={ + [8972]={ [1]={ [1]={ [1]={ @@ -201177,7 +204107,7 @@ return { [1]="map_players_cost_+%_per_skill_used_recently" } }, - [8853]={ + [8973]={ [1]={ [1]={ limit={ @@ -201206,7 +204136,7 @@ return { [1]="map_players_damage_+%_final_per_equipped_item" } }, - [8854]={ + [8974]={ [1]={ [1]={ [1]={ @@ -201226,7 +204156,7 @@ return { [1]="map_players_gain_1_random_rare_monster_mod_on_kill_ms" } }, - [8855]={ + [8975]={ [1]={ [1]={ limit={ @@ -201251,7 +204181,7 @@ return { [1]="map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%" } }, - [8856]={ + [8976]={ [1]={ [1]={ limit={ @@ -201267,7 +204197,7 @@ return { [1]="map_players_gain_instability_on_kill" } }, - [8857]={ + [8977]={ [1]={ [1]={ [1]={ @@ -201291,7 +204221,7 @@ return { [1]="map_players_gain_onslaught_after_opening_a_strongbox_ms" } }, - [8858]={ + [8978]={ [1]={ [1]={ limit={ @@ -201307,7 +204237,7 @@ return { [1]="map_players_gain_onslaught_during_flask_effect" } }, - [8859]={ + [8979]={ [1]={ [1]={ limit={ @@ -201332,7 +204262,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_%_chance" } }, - [8860]={ + [8980]={ [1]={ [1]={ limit={ @@ -201348,7 +204278,7 @@ return { [1]="map_players_have_point_blank" } }, - [8861]={ + [8981]={ [1]={ [1]={ limit={ @@ -201377,7 +204307,7 @@ return { [1]="map_players_minion_damage_+%_final_per_equipped_item" } }, - [8862]={ + [8982]={ [1]={ [1]={ limit={ @@ -201393,7 +204323,7 @@ return { [1]="map_players_movement_skills_cooldown_speed_+%" } }, - [8863]={ + [8983]={ [1]={ [1]={ limit={ @@ -201422,7 +204352,7 @@ return { [1]="map_players_movement_speed_+%" } }, - [8864]={ + [8984]={ [1]={ [1]={ limit={ @@ -201438,7 +204368,7 @@ return { [1]="map_players_no_regeneration_including_es" } }, - [8865]={ + [8985]={ [1]={ [1]={ limit={ @@ -201454,7 +204384,7 @@ return { [1]="map_players_resist_all_%" } }, - [8866]={ + [8986]={ [1]={ [1]={ [1]={ @@ -201474,7 +204404,7 @@ return { [1]="map_supporter_players_sent_to_void_league_on_death" } }, - [8867]={ + [8987]={ [1]={ [1]={ limit={ @@ -201507,7 +204437,7 @@ return { [1]="map_players_skill_area_of_effect_+%_final" } }, - [8868]={ + [8988]={ [1]={ [1]={ [1]={ @@ -201540,7 +204470,7 @@ return { [1]="map_players_spell_damage_%_suppressed" } }, - [8869]={ + [8989]={ [1]={ [1]={ limit={ @@ -201556,7 +204486,7 @@ return { [1]="map_portal_expires_every_X_seconds" } }, - [8870]={ + [8990]={ [1]={ [1]={ limit={ @@ -201581,7 +204511,7 @@ return { [1]="map_portal_limit" } }, - [8871]={ + [8991]={ [1]={ [1]={ limit={ @@ -201597,7 +204527,7 @@ return { [1]="map_portals_do_not_expire" } }, - [8872]={ + [8992]={ [1]={ [1]={ limit={ @@ -201613,7 +204543,7 @@ return { [1]="map_portals_expire_on_death_instead" } }, - [8873]={ + [8993]={ [1]={ [1]={ limit={ @@ -201638,7 +204568,7 @@ return { [1]="map_possessed_monsters_drop_gilded_scarab_chance_%" } }, - [8874]={ + [8994]={ [1]={ [1]={ limit={ @@ -201663,7 +204593,7 @@ return { [1]="map_possessed_monsters_drop_map_chance_%" } }, - [8875]={ + [8995]={ [1]={ [1]={ limit={ @@ -201688,7 +204618,7 @@ return { [1]="map_possessed_monsters_drop_polished_scarab_chance_%" } }, - [8876]={ + [8996]={ [1]={ [1]={ limit={ @@ -201713,7 +204643,7 @@ return { [1]="map_possessed_monsters_drop_rusted_scarab_chance_%" } }, - [8877]={ + [8997]={ [1]={ [1]={ limit={ @@ -201738,7 +204668,7 @@ return { [1]="map_possessed_monsters_drop_unique_chance_%" } }, - [8878]={ + [8998]={ [1]={ [1]={ limit={ @@ -201763,7 +204693,7 @@ return { [1]="map_possessed_monsters_drop_winged_scarab_chance_%" } }, - [8879]={ + [8999]={ [1]={ [1]={ limit={ @@ -201779,7 +204709,7 @@ return { [1]="map_prefixes_do_not_apply" } }, - [8880]={ + [9000]={ [1]={ [1]={ limit={ @@ -201795,7 +204725,7 @@ return { [1]="map_quality_instead_applies_to_pack_size" } }, - [8881]={ + [9001]={ [1]={ [1]={ limit={ @@ -201824,7 +204754,7 @@ return { [1]="map_rampage_time_+%" } }, - [8882]={ + [9002]={ [1]={ [1]={ limit={ @@ -201840,7 +204770,7 @@ return { [1]="map_supporter_dangerous_area" } }, - [8883]={ + [9003]={ [1]={ [1]={ limit={ @@ -201856,7 +204786,7 @@ return { [1]="map_random_unique_monster_is_possessed" } }, - [8884]={ + [9004]={ [1]={ [1]={ limit={ @@ -201872,7 +204802,7 @@ return { [1]="map_random_zana_mod" } }, - [8885]={ + [9005]={ [1]={ [1]={ limit={ @@ -201888,7 +204818,7 @@ return { [1]="map_rare_breach_monster_additional_breach_ring_drop_chance_%" } }, - [8886]={ + [9006]={ [1]={ [1]={ limit={ @@ -201913,7 +204843,7 @@ return { [1]="map_rare_breach_monsters_drop_additional_shards" } }, - [8887]={ + [9007]={ [1]={ [1]={ limit={ @@ -201929,7 +204859,7 @@ return { [1]="map_rare_monster_essence_daemon" } }, - [8888]={ + [9008]={ [1]={ [1]={ limit={ @@ -201945,7 +204875,7 @@ return { [1]="map_rare_monster_fracture_on_death_chance_%" } }, - [8889]={ + [9009]={ [1]={ [1]={ limit={ @@ -201970,7 +204900,7 @@ return { [1]="map_rare_monster_items_drop_corrupted_%" } }, - [8890]={ + [9010]={ [1]={ [1]={ limit={ @@ -201995,7 +204925,7 @@ return { [1]="map_rare_monster_num_additional_modifiers" } }, - [8891]={ + [9011]={ [1]={ [1]={ limit={ @@ -202020,7 +204950,7 @@ return { [1]="map_rare_monster_volatile_on_death_%" } }, - [8892]={ + [9012]={ [1]={ [1]={ [1]={ @@ -202061,7 +204991,7 @@ return { [1]="map_rare_monsters_are_hindered" } }, - [8893]={ + [9013]={ [1]={ [1]={ limit={ @@ -202086,7 +205016,7 @@ return { [1]="map_rare_monsters_drop_rare_prismatic_ring_on_death_%" } }, - [8894]={ + [9014]={ [1]={ [1]={ limit={ @@ -202111,7 +205041,7 @@ return { [1]="map_rare_monsters_drop_x_additional_rare_items" } }, - [8895]={ + [9015]={ [1]={ [1]={ limit={ @@ -202127,7 +205057,7 @@ return { [1]="map_rare_monsters_have_final_gasp" } }, - [8896]={ + [9016]={ [1]={ [1]={ limit={ @@ -202143,23 +205073,28 @@ return { [1]="map_rare_monsters_have_inner_treasure" } }, - [8897]={ + [9017]={ [1]={ [1]={ limit={ [1]={ [1]=1, [2]="#" + }, + [2]={ + [1]="#", + [2]="#" } }, text="{0}% chance for Rare Monsters in Area to be Possessed" } }, stats={ - [1]="map_rare_monsters_possessed_chance_%" + [1]="map_rare_monsters_possessed_chance_%", + [2]="chart_rare_monsters_possessed_display_stat" } }, - [8898]={ + [9018]={ [1]={ [1]={ limit={ @@ -202175,7 +205110,7 @@ return { [1]="map_rare_monsters_shaper_touched" } }, - [8899]={ + [9019]={ [1]={ [1]={ limit={ @@ -202191,7 +205126,7 @@ return { [1]="map_rare_monsters_spawn_map_boss_on_death_chance_%" } }, - [8900]={ + [9020]={ [1]={ [1]={ limit={ @@ -202207,7 +205142,7 @@ return { [1]="map_rare_unique_monsters_remove_%_life_mana_es_on_hit" } }, - [8901]={ + [9021]={ [1]={ [1]={ [1]={ @@ -202227,7 +205162,7 @@ return { [1]="map_rare_unique_monsters_spawn_tormented_spirit_on_low_life" } }, - [8902]={ + [9022]={ [1]={ [1]={ limit={ @@ -202243,7 +205178,7 @@ return { [1]="map_reliquary_must_complete_settlers_ore" } }, - [8903]={ + [9023]={ [1]={ [1]={ limit={ @@ -202268,7 +205203,7 @@ return { [1]="map_ritual_additional_reward_rerolls" } }, - [8904]={ + [9024]={ [1]={ [1]={ limit={ @@ -202293,7 +205228,7 @@ return { [1]="map_ritual_number_of_free_rerolls" } }, - [8905]={ + [9025]={ [1]={ [1]={ limit={ @@ -202322,7 +205257,7 @@ return { [1]="map_ritual_tribute_+%" } }, - [8906]={ + [9026]={ [1]={ [1]={ limit={ @@ -202351,7 +205286,7 @@ return { [1]="map_ritual_uber_rune_type_weighting_+%" } }, - [8907]={ + [9027]={ [1]={ [1]={ limit={ @@ -202367,7 +205302,7 @@ return { [1]="map_rogue_exile_attack_cast_and_movement_speed_+%" } }, - [8908]={ + [9028]={ [1]={ [1]={ limit={ @@ -202383,7 +205318,7 @@ return { [1]="map_rogue_exile_drop_skill_gem_with_quality" } }, - [8909]={ + [9029]={ [1]={ [1]={ limit={ @@ -202399,7 +205334,7 @@ return { [1]="map_rogue_exiles_are_doubled" } }, - [8910]={ + [9030]={ [1]={ [1]={ limit={ @@ -202424,7 +205359,7 @@ return { [1]="map_rogue_exiles_are_doubled_chance_%" } }, - [8911]={ + [9031]={ [1]={ [1]={ limit={ @@ -202453,7 +205388,7 @@ return { [1]="map_rogue_exiles_damage_+%" } }, - [8912]={ + [9032]={ [1]={ [1]={ limit={ @@ -202469,7 +205404,7 @@ return { [1]="map_rogue_exiles_drop_additional_currency_items_with_quality" } }, - [8913]={ + [9033]={ [1]={ [1]={ limit={ @@ -202494,7 +205429,7 @@ return { [1]="map_rogue_exiles_drop_x_additional_jewels" } }, - [8914]={ + [9034]={ [1]={ [1]={ limit={ @@ -202510,7 +205445,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_corrupted" } }, - [8915]={ + [9035]={ [1]={ [1]={ limit={ @@ -202526,7 +205461,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_duplicated" } }, - [8916]={ + [9036]={ [1]={ [1]={ limit={ @@ -202542,7 +205477,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_fractured_chance_%" } }, - [8917]={ + [9037]={ [1]={ [1]={ limit={ @@ -202558,7 +205493,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_fully_linked" } }, - [8918]={ + [9038]={ [1]={ [1]={ limit={ @@ -202587,7 +205522,7 @@ return { [1]="map_rogue_exiles_maximum_life_+%" } }, - [8919]={ + [9039]={ [1]={ [1]={ limit={ @@ -202603,7 +205538,7 @@ return { [1]="map_shaper_rare_chance_+%" } }, - [8920]={ + [9040]={ [1]={ [1]={ limit={ @@ -202619,7 +205554,7 @@ return { [1]="map_shrine_monster_life_+%_final" } }, - [8921]={ + [9041]={ [1]={ [1]={ limit={ @@ -202644,7 +205579,7 @@ return { [1]="map_shrines_drop_x_currency_items_on_activation" } }, - [8922]={ + [9042]={ [1]={ [1]={ limit={ @@ -202660,7 +205595,7 @@ return { [1]="map_shrines_grant_a_random_additional_effect" } }, - [8923]={ + [9043]={ [1]={ [1]={ limit={ @@ -202676,7 +205611,7 @@ return { [1]="map_players_have_shroud_walker" } }, - [8924]={ + [9044]={ [1]={ [1]={ limit={ @@ -202692,7 +205627,7 @@ return { [1]="map_simulacrum_reward_level_+" } }, - [8925]={ + [9045]={ [1]={ [1]={ limit={ @@ -202708,7 +205643,7 @@ return { [1]="map_solo_mode" } }, - [8926]={ + [9046]={ [1]={ [1]={ limit={ @@ -202724,7 +205659,7 @@ return { [1]="map_spawn_X_additional_incursion_architects" } }, - [8927]={ + [9047]={ [1]={ [1]={ limit={ @@ -202733,14 +205668,14 @@ return { [2]="#" } }, - text="Areas can contain Abysses" + text="Areas contain Abysses" } }, stats={ [1]="map_spawn_abysses" } }, - [8928]={ + [9048]={ [1]={ [1]={ limit={ @@ -202765,7 +205700,7 @@ return { [1]="map_spawn_additional_empowered_vaal_chests" } }, - [8929]={ + [9049]={ [1]={ [1]={ limit={ @@ -202781,7 +205716,7 @@ return { [1]="map_spawn_affliction_mirror" } }, - [8930]={ + [9050]={ [1]={ [1]={ limit={ @@ -202797,7 +205732,7 @@ return { [1]="map_spawn_bestiary_encounters" } }, - [8931]={ + [9051]={ [1]={ [1]={ limit={ @@ -202822,7 +205757,7 @@ return { [1]="map_spawn_beyond_boss_when_beyond_boss_slain_%" } }, - [8932]={ + [9052]={ [1]={ [1]={ limit={ @@ -202847,7 +205782,7 @@ return { [1]="map_spawn_cadiro_%_chance" } }, - [8933]={ + [9053]={ [1]={ [1]={ limit={ @@ -202872,7 +205807,7 @@ return { [1]="map_spawn_extra_perandus_chests" } }, - [8934]={ + [9054]={ [1]={ [1]={ limit={ @@ -202888,7 +205823,7 @@ return { [1]="map_spawn_incursion_encounters" } }, - [8935]={ + [9055]={ [1]={ [1]={ limit={ @@ -202904,7 +205839,7 @@ return { [1]="map_spawn_settlers_ore" } }, - [8936]={ + [9056]={ [1]={ [1]={ limit={ @@ -202929,7 +205864,7 @@ return { [1]="map_spawn_x_additional_heist_smugglers_caches" } }, - [8937]={ + [9057]={ [1]={ [1]={ limit={ @@ -202954,7 +205889,7 @@ return { [1]="map_spawn_x_random_map_bosses" } }, - [8938]={ + [9058]={ [1]={ [1]={ limit={ @@ -202983,7 +205918,7 @@ return { [1]="map_storm_area_of_effect_+%" } }, - [8939]={ + [9059]={ [1]={ [1]={ limit={ @@ -202999,7 +205934,7 @@ return { [1]="map_strongbox_items_dropped_are_mirrored" } }, - [8940]={ + [9060]={ [1]={ [1]={ limit={ @@ -203015,7 +205950,7 @@ return { [1]="map_strongbox_monsters_attack_speed_+%" } }, - [8941]={ + [9061]={ [1]={ [1]={ limit={ @@ -203044,7 +205979,7 @@ return { [1]="map_strongbox_monsters_item_quantity_+%" } }, - [8942]={ + [9062]={ [1]={ [1]={ limit={ @@ -203060,7 +205995,7 @@ return { [1]="map_strongboxes_are_corrupted" } }, - [8943]={ + [9063]={ [1]={ [1]={ limit={ @@ -203076,7 +206011,7 @@ return { [1]="map_strongboxes_at_least_rare" } }, - [8944]={ + [9064]={ [1]={ [1]={ limit={ @@ -203105,7 +206040,7 @@ return { [1]="map_strongboxes_chance_to_be_unique_+%" } }, - [8945]={ + [9065]={ [1]={ [1]={ limit={ @@ -203130,7 +206065,7 @@ return { [1]="map_strongboxes_drop_x_additional_rare_items" } }, - [8946]={ + [9066]={ [1]={ [1]={ limit={ @@ -203164,7 +206099,7 @@ return { [1]="map_strongboxes_minimum_rarity" } }, - [8947]={ + [9067]={ [1]={ [1]={ limit={ @@ -203180,7 +206115,7 @@ return { [1]="map_suffixes_do_not_apply" } }, - [8948]={ + [9068]={ [1]={ [1]={ limit={ @@ -203196,7 +206131,7 @@ return { [1]="map_supporter_all_influence_packs" } }, - [8949]={ + [9069]={ [1]={ [1]={ limit={ @@ -203212,7 +206147,7 @@ return { [1]="map_supporter_comet_spawn_daemon" } }, - [8950]={ + [9070]={ [1]={ [1]={ limit={ @@ -203228,7 +206163,7 @@ return { [1]="map_supporter_curse_field_daemon_spawn" } }, - [8951]={ + [9071]={ [1]={ [1]={ limit={ @@ -203244,7 +206179,7 @@ return { [1]="map_supporter_maven_follower" } }, - [8952]={ + [9072]={ [1]={ [1]={ limit={ @@ -203260,7 +206195,7 @@ return { [1]="map_supporter_players_random_movement_velocity_+%_final_when_hit" } }, - [8953]={ + [9073]={ [1]={ [1]={ limit={ @@ -203276,7 +206211,7 @@ return { [1]="map_synthesis_league" } }, - [8954]={ + [9074]={ [1]={ [1]={ limit={ @@ -203292,7 +206227,7 @@ return { [1]="map_synthesis_spawn_additional_abyss_bone_chest_clusters" } }, - [8955]={ + [9075]={ [1]={ [1]={ limit={ @@ -203308,7 +206243,7 @@ return { [1]="map_synthesis_spawn_additional_bloodworm_barrel_clusters" } }, - [8956]={ + [9076]={ [1]={ [1]={ limit={ @@ -203324,7 +206259,7 @@ return { [1]="map_synthesis_spawn_additional_fungal_chest_clusters" } }, - [8957]={ + [9077]={ [1]={ [1]={ limit={ @@ -203349,7 +206284,7 @@ return { [1]="map_synthesis_spawn_additional_magic_ambush_chest" } }, - [8958]={ + [9078]={ [1]={ [1]={ limit={ @@ -203374,7 +206309,7 @@ return { [1]="map_synthesis_spawn_additional_normal_ambush_chest" } }, - [8959]={ + [9079]={ [1]={ [1]={ limit={ @@ -203390,7 +206325,7 @@ return { [1]="map_synthesis_spawn_additional_parasite_barrel_clusters" } }, - [8960]={ + [9080]={ [1]={ [1]={ limit={ @@ -203415,7 +206350,7 @@ return { [1]="map_synthesis_spawn_additional_rare_ambush_chest" } }, - [8961]={ + [9081]={ [1]={ [1]={ limit={ @@ -203431,7 +206366,7 @@ return { [1]="map_synthesis_spawn_additional_volatile_barrel_clusters" } }, - [8962]={ + [9082]={ [1]={ [1]={ limit={ @@ -203447,7 +206382,7 @@ return { [1]="map_synthesis_spawn_additional_wealthy_barrel_clusters" } }, - [8963]={ + [9083]={ [1]={ [1]={ limit={ @@ -203472,7 +206407,7 @@ return { [1]="map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%" } }, - [8964]={ + [9084]={ [1]={ [1]={ limit={ @@ -203497,7 +206432,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_item_drop_chance_%" } }, - [8965]={ + [9085]={ [1]={ [1]={ limit={ @@ -203522,7 +206457,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_shard_drop_chance_%" } }, - [8966]={ + [9086]={ [1]={ [1]={ limit={ @@ -203547,7 +206482,7 @@ return { [1]="map_synthesised_magic_monster_additional_divination_card_drop_chance_%" } }, - [8967]={ + [9087]={ [1]={ [1]={ limit={ @@ -203572,7 +206507,7 @@ return { [1]="map_synthesised_magic_monster_additional_elder_item_drop_chance_%" } }, - [8968]={ + [9088]={ [1]={ [1]={ limit={ @@ -203597,7 +206532,7 @@ return { [1]="map_synthesised_magic_monster_additional_fossil_drop_chance_%" } }, - [8969]={ + [9089]={ [1]={ [1]={ limit={ @@ -203622,7 +206557,7 @@ return { [1]="map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%" } }, - [8970]={ + [9090]={ [1]={ [1]={ limit={ @@ -203647,7 +206582,7 @@ return { [1]="map_synthesised_magic_monster_additional_shaper_item_drop_chance_%" } }, - [8971]={ + [9091]={ [1]={ [1]={ limit={ @@ -203672,7 +206607,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency" } }, - [8972]={ + [9092]={ [1]={ [1]={ limit={ @@ -203697,7 +206632,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency_shard" } }, - [8973]={ + [9093]={ [1]={ [1]={ limit={ @@ -203722,7 +206657,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_quality_currency" } }, - [8974]={ + [9094]={ [1]={ [1]={ [1]={ @@ -203742,7 +206677,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_quantity_+%" } }, - [8975]={ + [9095]={ [1]={ [1]={ [1]={ @@ -203762,7 +206697,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_rarity_+%" } }, - [8976]={ + [9096]={ [1]={ [1]={ limit={ @@ -203778,7 +206713,7 @@ return { [1]="map_synthesised_magic_monster_fractured_item_drop_chance_+%" } }, - [8977]={ + [9097]={ [1]={ [1]={ limit={ @@ -203803,7 +206738,7 @@ return { [1]="map_synthesised_magic_monster_items_drop_corrupted_%" } }, - [8978]={ + [9098]={ [1]={ [1]={ limit={ @@ -203819,7 +206754,7 @@ return { [1]="map_synthesised_magic_monster_map_drop_chance_+%" } }, - [8979]={ + [9099]={ [1]={ [1]={ limit={ @@ -203835,7 +206770,7 @@ return { [1]="map_synthesised_magic_monster_slain_experience_+%" } }, - [8980]={ + [9100]={ [1]={ [1]={ limit={ @@ -203851,7 +206786,7 @@ return { [1]="map_synthesised_magic_monster_unique_item_drop_chance_+%" } }, - [8981]={ + [9101]={ [1]={ [1]={ limit={ @@ -203876,7 +206811,7 @@ return { [1]="map_synthesised_monster_additional_breach_splinter_drop_chance_%" } }, - [8982]={ + [9102]={ [1]={ [1]={ limit={ @@ -203901,7 +206836,7 @@ return { [1]="map_synthesised_monster_additional_currency_item_drop_chance_%" } }, - [8983]={ + [9103]={ [1]={ [1]={ limit={ @@ -203926,7 +206861,7 @@ return { [1]="map_synthesised_monster_additional_currency_shard_drop_chance_%" } }, - [8984]={ + [9104]={ [1]={ [1]={ limit={ @@ -203951,7 +206886,7 @@ return { [1]="map_synthesised_monster_additional_divination_card_drop_chance_%" } }, - [8985]={ + [9105]={ [1]={ [1]={ limit={ @@ -203976,7 +206911,7 @@ return { [1]="map_synthesised_monster_additional_elder_item_drop_chance_%" } }, - [8986]={ + [9106]={ [1]={ [1]={ limit={ @@ -204001,7 +206936,7 @@ return { [1]="map_synthesised_monster_additional_fossil_drop_chance_%" } }, - [8987]={ + [9107]={ [1]={ [1]={ limit={ @@ -204026,7 +206961,7 @@ return { [1]="map_synthesised_monster_additional_quality_currency_item_drop_chance_%" } }, - [8988]={ + [9108]={ [1]={ [1]={ limit={ @@ -204051,7 +206986,7 @@ return { [1]="map_synthesised_monster_additional_shaper_item_drop_chance_%" } }, - [8989]={ + [9109]={ [1]={ [1]={ [1]={ @@ -204071,7 +207006,7 @@ return { [1]="map_synthesised_monster_dropped_item_quantity_+%" } }, - [8990]={ + [9110]={ [1]={ [1]={ [1]={ @@ -204091,7 +207026,7 @@ return { [1]="map_synthesised_monster_dropped_item_rarity_+%" } }, - [8991]={ + [9111]={ [1]={ [1]={ limit={ @@ -204107,7 +207042,7 @@ return { [1]="map_synthesised_monster_fractured_item_drop_chance_+%" } }, - [8992]={ + [9112]={ [1]={ [1]={ limit={ @@ -204132,7 +207067,7 @@ return { [1]="map_synthesised_monster_items_drop_corrupted_%" } }, - [8993]={ + [9113]={ [1]={ [1]={ limit={ @@ -204148,7 +207083,7 @@ return { [1]="map_synthesised_monster_map_drop_chance_+%" } }, - [8994]={ + [9114]={ [1]={ [1]={ limit={ @@ -204164,7 +207099,7 @@ return { [1]="map_synthesised_monster_pack_size_+%" } }, - [8995]={ + [9115]={ [1]={ [1]={ limit={ @@ -204180,7 +207115,7 @@ return { [1]="map_synthesised_monster_slain_experience_+%" } }, - [8996]={ + [9116]={ [1]={ [1]={ limit={ @@ -204196,7 +207131,7 @@ return { [1]="map_synthesised_monster_unique_item_drop_chance_+%" } }, - [8997]={ + [9117]={ [1]={ [1]={ limit={ @@ -204221,7 +207156,7 @@ return { [1]="map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%" } }, - [8998]={ + [9118]={ [1]={ [1]={ limit={ @@ -204246,7 +207181,7 @@ return { [1]="map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%" } }, - [8999]={ + [9119]={ [1]={ [1]={ limit={ @@ -204271,7 +207206,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_item_drop_chance_%" } }, - [9000]={ + [9120]={ [1]={ [1]={ limit={ @@ -204296,7 +207231,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_shard_drop_chance_%" } }, - [9001]={ + [9121]={ [1]={ [1]={ limit={ @@ -204321,7 +207256,7 @@ return { [1]="map_synthesised_rare_monster_additional_divination_card_drop_chance_%" } }, - [9002]={ + [9122]={ [1]={ [1]={ limit={ @@ -204346,7 +207281,7 @@ return { [1]="map_synthesised_rare_monster_additional_elder_item_drop_chance_%" } }, - [9003]={ + [9123]={ [1]={ [1]={ limit={ @@ -204371,7 +207306,7 @@ return { [1]="map_synthesised_rare_monster_additional_essence_drop_chance_%" } }, - [9004]={ + [9124]={ [1]={ [1]={ limit={ @@ -204396,7 +207331,7 @@ return { [1]="map_synthesised_rare_monster_additional_fossil_drop_chance_%" } }, - [9005]={ + [9125]={ [1]={ [1]={ limit={ @@ -204421,7 +207356,7 @@ return { [1]="map_synthesised_rare_monster_additional_jewel_drop_chance_%" } }, - [9006]={ + [9126]={ [1]={ [1]={ limit={ @@ -204446,7 +207381,7 @@ return { [1]="map_synthesised_rare_monster_additional_map_drop_chance_%" } }, - [9007]={ + [9127]={ [1]={ [1]={ limit={ @@ -204471,7 +207406,7 @@ return { [1]="map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%" } }, - [9008]={ + [9128]={ [1]={ [1]={ limit={ @@ -204496,7 +207431,7 @@ return { [1]="map_synthesised_rare_monster_additional_shaper_item_drop_chance_%" } }, - [9009]={ + [9129]={ [1]={ [1]={ limit={ @@ -204521,7 +207456,7 @@ return { [1]="map_synthesised_rare_monster_additional_talisman_drop_chance_%" } }, - [9010]={ + [9130]={ [1]={ [1]={ limit={ @@ -204546,7 +207481,7 @@ return { [1]="map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%" } }, - [9011]={ + [9131]={ [1]={ [1]={ limit={ @@ -204571,7 +207506,7 @@ return { [1]="map_synthesised_rare_monster_additional_veiled_item_drop_chance_%" } }, - [9012]={ + [9132]={ [1]={ [1]={ limit={ @@ -204596,7 +207531,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_breach_splinter" } }, - [9013]={ + [9133]={ [1]={ [1]={ limit={ @@ -204621,7 +207556,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency" } }, - [9014]={ + [9134]={ [1]={ [1]={ limit={ @@ -204646,7 +207581,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency_shard" } }, - [9015]={ + [9135]={ [1]={ [1]={ limit={ @@ -204671,7 +207606,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_quality_currency" } }, - [9016]={ + [9136]={ [1]={ [1]={ [1]={ @@ -204691,7 +207626,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_quantity_+%" } }, - [9017]={ + [9137]={ [1]={ [1]={ [1]={ @@ -204711,7 +207646,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_rarity_+%" } }, - [9018]={ + [9138]={ [1]={ [1]={ limit={ @@ -204727,7 +207662,7 @@ return { [1]="map_synthesised_rare_monster_fractured_item_drop_chance_+%" } }, - [9019]={ + [9139]={ [1]={ [1]={ limit={ @@ -204752,7 +207687,7 @@ return { [1]="map_synthesised_rare_monster_gives_mods_to_killer_chance_%" } }, - [9020]={ + [9140]={ [1]={ [1]={ limit={ @@ -204777,7 +207712,7 @@ return { [1]="map_synthesised_rare_monster_items_drop_corrupted_%" } }, - [9021]={ + [9141]={ [1]={ [1]={ limit={ @@ -204793,7 +207728,7 @@ return { [1]="map_synthesised_rare_monster_map_drop_chance_+%" } }, - [9022]={ + [9142]={ [1]={ [1]={ limit={ @@ -204818,7 +207753,7 @@ return { [1]="map_synthesised_rare_monster_resurrect_as_ally_chance_%" } }, - [9023]={ + [9143]={ [1]={ [1]={ limit={ @@ -204834,7 +207769,7 @@ return { [1]="map_synthesised_rare_monster_slain_experience_+%" } }, - [9024]={ + [9144]={ [1]={ [1]={ limit={ @@ -204850,7 +207785,7 @@ return { [1]="map_synthesised_rare_monster_unique_item_drop_chance_+%" } }, - [9025]={ + [9145]={ [1]={ [1]={ limit={ @@ -204866,7 +207801,7 @@ return { [1]="map_talismans_dropped_as_rare" } }, - [9026]={ + [9146]={ [1]={ [1]={ limit={ @@ -204891,7 +207826,7 @@ return { [1]="map_talismans_higher_tier" } }, - [9027]={ + [9147]={ [1]={ [1]={ limit={ @@ -204920,7 +207855,7 @@ return { [1]="map_tempest_area_of_effect_+%_visible" } }, - [9028]={ + [9148]={ [1]={ [1]={ limit={ @@ -204949,7 +207884,7 @@ return { [1]="map_tempest_frequency_+%" } }, - [9029]={ + [9149]={ [1]={ [1]={ limit={ @@ -204974,7 +207909,7 @@ return { [1]="map_tormented_spirits_drop_x_additional_rare_items" } }, - [9030]={ + [9150]={ [1]={ [1]={ limit={ @@ -205003,7 +207938,7 @@ return { [1]="map_tormented_spirits_duration_+%" } }, - [9031]={ + [9151]={ [1]={ [1]={ limit={ @@ -205032,7 +207967,7 @@ return { [1]="map_tormented_spirits_movement_speed_+%" } }, - [9032]={ + [9152]={ [1]={ [1]={ [1]={ @@ -205052,7 +207987,7 @@ return { [1]="map_tormented_spirits_possess_players_instead_of_monsters" } }, - [9033]={ + [9153]={ [1]={ [1]={ limit={ @@ -205061,14 +207996,14 @@ return { [2]="#" } }, - text="Ultimatum Boss drops a full stack of a random Catalyst" + text="Ultimatum Boss drops 10 of a random Catalyst" } }, stats={ [1]="map_trialmaster_drops_stack_of_catalysts" } }, - [9034]={ + [9154]={ [1]={ [1]={ limit={ @@ -205084,7 +208019,7 @@ return { [1]="map_uber_drowning_orb_ambush" } }, - [9035]={ + [9155]={ [1]={ [1]={ limit={ @@ -205100,7 +208035,7 @@ return { [1]="map_uber_map_additional_synthesis_boss" } }, - [9036]={ + [9156]={ [1]={ [1]={ limit={ @@ -205116,7 +208051,7 @@ return { [1]="map_uber_map_player_damage_cycle" } }, - [9037]={ + [9157]={ [1]={ [1]={ limit={ @@ -205132,7 +208067,7 @@ return { [1]="map_uber_sawblades_ambush" } }, - [9038]={ + [9158]={ [1]={ [1]={ limit={ @@ -205141,14 +208076,14 @@ return { [2]="#" } }, - text="[DNT] Sirus' Meteors rain down in Area" + text="DNT Sirus' Meteors rain down in Area" } }, stats={ [1]="map_uber_sirus_meteor_ambush" } }, - [9039]={ + [9159]={ [1]={ [1]={ limit={ @@ -205177,7 +208112,7 @@ return { [1]="map_ultimatum_conquer_encounter_chance_+%" } }, - [9040]={ + [9160]={ [1]={ [1]={ limit={ @@ -205206,7 +208141,7 @@ return { [1]="map_ultimatum_conquer_encounter_radius_+%" } }, - [9041]={ + [9161]={ [1]={ [1]={ limit={ @@ -205235,7 +208170,7 @@ return { [1]="map_ultimatum_defense_encounter_chance_+%" } }, - [9042]={ + [9162]={ [1]={ [1]={ limit={ @@ -205264,7 +208199,7 @@ return { [1]="map_ultimatum_defense_encounter_altar_life_+%" } }, - [9043]={ + [9163]={ [1]={ [1]={ limit={ @@ -205289,7 +208224,7 @@ return { [1]="map_ultimatum_encounter_additional_chance_%" } }, - [9044]={ + [9164]={ [1]={ [1]={ limit={ @@ -205318,7 +208253,7 @@ return { [1]="map_ultimatum_exterminate_encounter_chance_+%" } }, - [9045]={ + [9165]={ [1]={ [1]={ limit={ @@ -205347,7 +208282,7 @@ return { [1]="map_ultimatum_exterminate_encounter_monsters_required_+%" } }, - [9046]={ + [9166]={ [1]={ [1]={ limit={ @@ -205363,7 +208298,7 @@ return { [1]="map_ultimatum_lasts_13_rounds" } }, - [9047]={ + [9167]={ [1]={ [1]={ limit={ @@ -205379,7 +208314,7 @@ return { [1]="map_ultimatum_modifiers_start_1_tier_higher" } }, - [9048]={ + [9168]={ [1]={ [1]={ limit={ @@ -205408,7 +208343,7 @@ return { [1]="map_ultimatum_monster_experience_+%" } }, - [9049]={ + [9169]={ [1]={ [1]={ limit={ @@ -205437,7 +208372,7 @@ return { [1]="map_ultimatum_monster_quantity_+%" } }, - [9050]={ + [9170]={ [1]={ [1]={ limit={ @@ -205466,7 +208401,7 @@ return { [1]="map_ultimatum_rare_monster_quantity_+%" } }, - [9051]={ + [9171]={ [1]={ [1]={ limit={ @@ -205495,7 +208430,7 @@ return { [1]="map_ultimatum_reward_abyss_chance_+%" } }, - [9052]={ + [9172]={ [1]={ [1]={ limit={ @@ -205524,7 +208459,7 @@ return { [1]="map_ultimatum_reward_blight_chance_+%" } }, - [9053]={ + [9173]={ [1]={ [1]={ limit={ @@ -205553,7 +208488,7 @@ return { [1]="map_ultimatum_reward_breach_chance_+%" } }, - [9054]={ + [9174]={ [1]={ [1]={ limit={ @@ -205582,7 +208517,7 @@ return { [1]="map_ultimatum_reward_catalyst_chance_+%" } }, - [9055]={ + [9175]={ [1]={ [1]={ limit={ @@ -205611,7 +208546,7 @@ return { [1]="map_ultimatum_reward_corrupted_rares_chance_+%" } }, - [9056]={ + [9176]={ [1]={ [1]={ limit={ @@ -205640,7 +208575,7 @@ return { [1]="map_ultimatum_reward_currency_items_chance_+%" } }, - [9057]={ + [9177]={ [1]={ [1]={ limit={ @@ -205669,7 +208604,7 @@ return { [1]="map_ultimatum_reward_delirium_chance_+%" } }, - [9058]={ + [9178]={ [1]={ [1]={ limit={ @@ -205698,7 +208633,7 @@ return { [1]="map_ultimatum_reward_divination_cards_chance_+%" } }, - [9059]={ + [9179]={ [1]={ [1]={ limit={ @@ -205714,7 +208649,7 @@ return { [1]="map_ultimatum_reward_duplicated_chance_%" } }, - [9060]={ + [9180]={ [1]={ [1]={ limit={ @@ -205743,7 +208678,7 @@ return { [1]="map_ultimatum_reward_essence_chance_+%" } }, - [9061]={ + [9181]={ [1]={ [1]={ limit={ @@ -205772,7 +208707,7 @@ return { [1]="map_ultimatum_reward_fossils_chance_+%" } }, - [9062]={ + [9182]={ [1]={ [1]={ limit={ @@ -205801,7 +208736,7 @@ return { [1]="map_ultimatum_reward_fragments_chance_+%" } }, - [9063]={ + [9183]={ [1]={ [1]={ limit={ @@ -205830,7 +208765,7 @@ return { [1]="map_ultimatum_reward_gem_chance_+%" } }, - [9064]={ + [9184]={ [1]={ [1]={ limit={ @@ -205859,7 +208794,7 @@ return { [1]="map_ultimatum_reward_heist_chance_+%" } }, - [9065]={ + [9185]={ [1]={ [1]={ limit={ @@ -205888,7 +208823,7 @@ return { [1]="map_ultimatum_reward_inscribed_ultimatums_chance_+%" } }, - [9066]={ + [9186]={ [1]={ [1]={ limit={ @@ -205917,7 +208852,7 @@ return { [1]="map_ultimatum_reward_jewellery_chance_+%" } }, - [9067]={ + [9187]={ [1]={ [1]={ limit={ @@ -205946,7 +208881,7 @@ return { [1]="map_ultimatum_reward_legion_chance_+%" } }, - [9068]={ + [9188]={ [1]={ [1]={ limit={ @@ -205975,7 +208910,7 @@ return { [1]="map_ultimatum_reward_maps_chance_+%" } }, - [9069]={ + [9189]={ [1]={ [1]={ limit={ @@ -206000,7 +208935,7 @@ return { [1]="map_ultimatum_reward_tiers_+" } }, - [9070]={ + [9190]={ [1]={ [1]={ limit={ @@ -206029,7 +208964,7 @@ return { [1]="map_ultimatum_reward_unique_items_chance_+%" } }, - [9071]={ + [9191]={ [1]={ [1]={ limit={ @@ -206058,7 +208993,7 @@ return { [1]="map_ultimatum_survival_encounter_chance_+%" } }, - [9072]={ + [9192]={ [1]={ [1]={ limit={ @@ -206087,7 +209022,7 @@ return { [1]="map_ultimatum_survival_encounter_time_+%" } }, - [9073]={ + [9193]={ [1]={ [1]={ limit={ @@ -206103,7 +209038,7 @@ return { [1]="map_ultimatum_trialmaster_cannot_spawn" } }, - [9074]={ + [9194]={ [1]={ [1]={ limit={ @@ -206119,7 +209054,7 @@ return { [1]="map_supporter_union_of_souls" } }, - [9075]={ + [9195]={ [1]={ [1]={ limit={ @@ -206135,7 +209070,7 @@ return { [1]="map_unique_boss_drops_divination_cards" } }, - [9076]={ + [9196]={ [1]={ [1]={ limit={ @@ -206151,7 +209086,7 @@ return { [1]="map_unique_item_drop_chance_+%" } }, - [9077]={ + [9197]={ [1]={ [1]={ limit={ @@ -206167,7 +209102,7 @@ return { [1]="map_unique_monsters_drop_corrupted_items" } }, - [9078]={ + [9198]={ [1]={ [1]={ limit={ @@ -206192,7 +209127,7 @@ return { [1]="map_unique_monsters_have_X_shrine_effects" } }, - [9079]={ + [9199]={ [1]={ [1]={ limit={ @@ -206217,7 +209152,7 @@ return { [1]="map_unique_monster_items_drop_corrupted_%" } }, - [9080]={ + [9200]={ [1]={ [1]={ limit={ @@ -206233,7 +209168,7 @@ return { [1]="map_unique_side_area_return_portal_leads_to_new_unique_side_area_chance_%" } }, - [9081]={ + [9201]={ [1]={ [1]={ limit={ @@ -206249,7 +209184,7 @@ return { [1]="map_upgrade_X_packs_to_magic" } }, - [9082]={ + [9202]={ [1]={ [1]={ limit={ @@ -206265,7 +209200,7 @@ return { [1]="map_upgrade_pack_to_magic_%_chance" } }, - [9083]={ + [9203]={ [1]={ [1]={ limit={ @@ -206281,7 +209216,7 @@ return { [1]="map_upgrade_pack_to_rare_%_chance" } }, - [9084]={ + [9204]={ [1]={ [1]={ limit={ @@ -206297,7 +209232,7 @@ return { [1]="map_upgrade_synthesised_pack_to_magic_%_chance" } }, - [9085]={ + [9205]={ [1]={ [1]={ limit={ @@ -206313,7 +209248,7 @@ return { [1]="map_upgrade_synthesised_pack_to_rare_%_chance" } }, - [9086]={ + [9206]={ [1]={ [1]={ limit={ @@ -206338,7 +209273,7 @@ return { [1]="map_vaal_monster_items_drop_corrupted_%" } }, - [9087]={ + [9207]={ [1]={ [1]={ limit={ @@ -206354,7 +209289,7 @@ return { [1]="map_vaal_mortal_strongbox_chance_per_fragment_%" } }, - [9088]={ + [9208]={ [1]={ [1]={ limit={ @@ -206370,7 +209305,7 @@ return { [1]="map_vaal_sacrifice_strongbox_chance_per_fragment_%" } }, - [9089]={ + [9209]={ [1]={ [1]={ limit={ @@ -206399,7 +209334,7 @@ return { [1]="map_vaal_side_area_boss_damage_+%_final" } }, - [9090]={ + [9210]={ [1]={ [1]={ limit={ @@ -206428,7 +209363,7 @@ return { [1]="map_vaal_side_area_boss_maximum_life_+%_final" } }, - [9091]={ + [9211]={ [1]={ [1]={ limit={ @@ -206453,7 +209388,7 @@ return { [1]="map_vaal_side_area_chance_%" } }, - [9092]={ + [9212]={ [1]={ [1]={ limit={ @@ -206469,7 +209404,7 @@ return { [1]="map_vaal_side_area_vaal_vessel_%_chance_to_duplicate_rewards" } }, - [9093]={ + [9213]={ [1]={ [1]={ limit={ @@ -206494,7 +209429,7 @@ return { [1]="map_vaal_temple_spawn_additional_vaal_vessels" } }, - [9094]={ + [9214]={ [1]={ [1]={ limit={ @@ -206519,7 +209454,7 @@ return { [1]="map_vaal_vessel_drop_X_divination_cards" } }, - [9095]={ + [9215]={ [1]={ [1]={ limit={ @@ -206544,7 +209479,7 @@ return { [1]="map_vaal_vessel_drop_X_fossils" } }, - [9096]={ + [9216]={ [1]={ [1]={ limit={ @@ -206569,7 +209504,7 @@ return { [1]="map_vaal_vessel_drop_X_level_21_gems" } }, - [9097]={ + [9217]={ [1]={ [1]={ limit={ @@ -206594,7 +209529,7 @@ return { [1]="map_vaal_vessel_drop_X_levelled_vaal_gems" } }, - [9098]={ + [9218]={ [1]={ [1]={ limit={ @@ -206619,7 +209554,7 @@ return { [1]="map_vaal_vessel_drop_X_maps_with_vaal_implicits" } }, - [9099]={ + [9219]={ [1]={ [1]={ limit={ @@ -206644,7 +209579,7 @@ return { [1]="map_vaal_vessel_drop_X_mortal_fragments" } }, - [9100]={ + [9220]={ [1]={ [1]={ limit={ @@ -206669,7 +209604,7 @@ return { [1]="map_vaal_vessel_drop_X_prophecies" } }, - [9101]={ + [9221]={ [1]={ [1]={ limit={ @@ -206694,7 +209629,7 @@ return { [1]="map_vaal_vessel_drop_X_quality_23_gems" } }, - [9102]={ + [9222]={ [1]={ [1]={ limit={ @@ -206719,7 +209654,7 @@ return { [1]="map_vaal_vessel_drop_X_rare_temple_items" } }, - [9103]={ + [9223]={ [1]={ [1]={ limit={ @@ -206744,7 +209679,7 @@ return { [1]="map_vaal_vessel_drop_X_sacrifice_fragments" } }, - [9104]={ + [9224]={ [1]={ [1]={ limit={ @@ -206760,7 +209695,7 @@ return { [1]="map_vaal_vessel_drop_X_tower_of_ordeals" } }, - [9105]={ + [9225]={ [1]={ [1]={ limit={ @@ -206785,7 +209720,7 @@ return { [1]="map_vaal_vessel_drop_X_trialmaster_fragments" } }, - [9106]={ + [9226]={ [1]={ [1]={ limit={ @@ -206810,7 +209745,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_gems" } }, - [9107]={ + [9227]={ [1]={ [1]={ limit={ @@ -206835,7 +209770,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_orbs" } }, - [9108]={ + [9228]={ [1]={ [1]={ limit={ @@ -206860,7 +209795,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_temple_maps" } }, - [9109]={ + [9229]={ [1]={ [1]={ limit={ @@ -206885,7 +209820,7 @@ return { [1]="map_vaal_vessel_drop_x_double_implicit_corrupted_uniques" } }, - [9110]={ + [9230]={ [1]={ [1]={ limit={ @@ -206910,7 +209845,7 @@ return { [1]="map_vaal_vessel_drop_x_single_implicit_corrupted_uniques" } }, - [9111]={ + [9231]={ [1]={ [1]={ limit={ @@ -206939,7 +209874,7 @@ return { [1]="map_vaal_vessel_item_drop_quantity_+%" } }, - [9112]={ + [9232]={ [1]={ [1]={ limit={ @@ -206968,7 +209903,7 @@ return { [1]="map_vaal_vessel_item_drop_rarity_+%" } }, - [9113]={ + [9233]={ [1]={ [1]={ limit={ @@ -206984,7 +209919,7 @@ return { [1]="map_village_secondary_ore_chance_+%" } }, - [9114]={ + [9234]={ [1]={ [1]={ limit={ @@ -207009,7 +209944,7 @@ return { [1]="map_warbands_packs_have_additional_elites" } }, - [9115]={ + [9235]={ [1]={ [1]={ limit={ @@ -207034,7 +209969,7 @@ return { [1]="map_warbands_packs_have_additional_grunts" } }, - [9116]={ + [9236]={ [1]={ [1]={ limit={ @@ -207059,7 +209994,7 @@ return { [1]="map_warbands_packs_have_additional_supports" } }, - [9117]={ + [9237]={ [1]={ [1]={ limit={ @@ -207075,7 +210010,7 @@ return { [1]="map_watchstone_additional_packs_of_elder_monsters" } }, - [9118]={ + [9238]={ [1]={ [1]={ limit={ @@ -207091,7 +210026,7 @@ return { [1]="map_watchstone_additional_packs_of_shaper_monsters" } }, - [9119]={ + [9239]={ [1]={ [1]={ limit={ @@ -207107,7 +210042,7 @@ return { [1]="map_watchstone_monsters_damage_+%_final" } }, - [9120]={ + [9240]={ [1]={ [1]={ limit={ @@ -207123,7 +210058,23 @@ return { [1]="map_watchstone_monsters_life_+%_final" } }, - [9121]={ + [9241]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wild Mercenaries have increased Difficulty for each Wild Mercenary in Area" + } + }, + stats={ + [1]="map_wild_mercenary_reward_and_difficulty_per_wild_mercenary" + } + }, + [9242]={ [1]={ [1]={ limit={ @@ -207139,7 +210090,7 @@ return { [1]="map_zana_influence" } }, - [9122]={ + [9243]={ [1]={ [1]={ limit={ @@ -207155,7 +210106,7 @@ return { [1]="map_zana_influence_additional_petal_skill_chance_%" } }, - [9123]={ + [9244]={ [1]={ [1]={ limit={ @@ -207184,7 +210135,7 @@ return { [1]="map_zana_influence_equipment_item_chance_+%" } }, - [9124]={ + [9245]={ [1]={ [1]={ limit={ @@ -207200,7 +210151,7 @@ return { [1]="map_zana_influence_number_of_influenced_magic_packs_+%" } }, - [9125]={ + [9246]={ [1]={ [1]={ limit={ @@ -207216,7 +210167,7 @@ return { [1]="map_zana_influence_number_of_influenced_rare_packs_+%" } }, - [9126]={ + [9247]={ [1]={ [1]={ limit={ @@ -207232,7 +210183,7 @@ return { [1]="map_zana_influence_pack_+" } }, - [9127]={ + [9248]={ [1]={ [1]={ limit={ @@ -207261,7 +210212,7 @@ return { [1]="marauder_hidden_ascendancy_damage_+%_final" } }, - [9128]={ + [9249]={ [1]={ [1]={ limit={ @@ -207290,7 +210241,7 @@ return { [1]="marauder_hidden_ascendancy_damage_taken_+%_final" } }, - [9129]={ + [9250]={ [1]={ [1]={ limit={ @@ -207319,7 +210270,7 @@ return { [1]="mark_skill_duration_+%" } }, - [9130]={ + [9251]={ [1]={ [1]={ limit={ @@ -207352,7 +210303,7 @@ return { [1]="mark_skill_mana_cost_+%" } }, - [9131]={ + [9252]={ [1]={ [1]={ limit={ @@ -207368,7 +210319,36 @@ return { [1]="mark_skills_cost_no_mana" } }, - [9132]={ + [9253]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of your Marks per maximum Power Charge" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of your Marks per maximum Power Charge" + } + }, + stats={ + [1]="mark_skills_curse_effect_+%_per_maximum_power_charge" + } + }, + [9254]={ [1]={ [1]={ [1]={ @@ -207405,7 +210385,7 @@ return { [1]="mark_skills_curse_effect_+%_while_affected_by_elusive" } }, - [9133]={ + [9255]={ [1]={ [1]={ limit={ @@ -207421,7 +210401,7 @@ return { [1]="marked_enemies_cannot_deal_critical_strikes" } }, - [9134]={ + [9256]={ [1]={ [1]={ limit={ @@ -207437,7 +210417,7 @@ return { [1]="marked_enemies_cannot_evade" } }, - [9135]={ + [9257]={ [1]={ [1]={ limit={ @@ -207453,7 +210433,7 @@ return { [1]="marked_enemies_cannot_regenerate_life" } }, - [9136]={ + [9258]={ [1]={ [1]={ limit={ @@ -207482,7 +210462,7 @@ return { [1]="marked_enemy_accuracy_rating_+%" } }, - [9137]={ + [9259]={ [1]={ [1]={ limit={ @@ -207511,7 +210491,7 @@ return { [1]="marked_enemy_damage_taken_+%" } }, - [9138]={ + [9260]={ [1]={ [1]={ limit={ @@ -207527,7 +210507,7 @@ return { [1]="marks_you_inflict_remain_after_death" } }, - [9139]={ + [9261]={ [1]={ [1]={ limit={ @@ -207556,7 +210536,7 @@ return { [1]="mastery_chance_to_evade_melee_attacks_+%_final" } }, - [9140]={ + [9262]={ [1]={ [1]={ limit={ @@ -207572,7 +210552,7 @@ return { [1]="maven_fight_layout_override" } }, - [9141]={ + [9263]={ [1]={ [1]={ [1]={ @@ -207592,7 +210572,7 @@ return { [1]="max_chance_to_block_attacks_if_not_blocked_recently" } }, - [9142]={ + [9264]={ [1]={ [1]={ [1]={ @@ -207612,7 +210592,7 @@ return { [1]="max_fortification_+1_per_5" } }, - [9143]={ + [9265]={ [1]={ [1]={ [1]={ @@ -207632,7 +210612,7 @@ return { [1]="max_fortification_while_focused_+1_per_5" } }, - [9144]={ + [9266]={ [1]={ [1]={ [1]={ @@ -207652,7 +210632,7 @@ return { [1]="max_fortification_while_stationary_+1_per_5" } }, - [9145]={ + [9267]={ [1]={ [1]={ limit={ @@ -207668,7 +210648,23 @@ return { [1]="max_steel_ammo" } }, - [9146]={ + [9268]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="All other Summoned Totems die when you Summon a Totem" + } + }, + stats={ + [1]="maximum_1_totem_at_a_time" + } + }, + [9269]={ [1]={ [1]={ limit={ @@ -207693,7 +210689,7 @@ return { [1]="maximum_active_sand_mirage_count" } }, - [9147]={ + [9270]={ [1]={ [1]={ limit={ @@ -207709,7 +210705,7 @@ return { [1]="maximum_added_lightning_damage_per_10_int" } }, - [9148]={ + [9271]={ [1]={ [1]={ limit={ @@ -207738,7 +210734,7 @@ return { [1]="maximum_attack_damage_+%_final_from_ascendancy" } }, - [9149]={ + [9272]={ [1]={ [1]={ limit={ @@ -207754,7 +210750,7 @@ return { [1]="maximum_blitz_charges" } }, - [9150]={ + [9273]={ [1]={ [1]={ limit={ @@ -207770,7 +210766,7 @@ return { [1]="maximum_blood_phylactery_%_of_life" } }, - [9151]={ + [9274]={ [1]={ [1]={ limit={ @@ -207786,7 +210782,7 @@ return { [1]="maximum_celestial_charges" } }, - [9152]={ + [9275]={ [1]={ [1]={ limit={ @@ -207802,7 +210798,7 @@ return { [1]="maximum_challenger_charges" } }, - [9153]={ + [9276]={ [1]={ [1]={ [1]={ @@ -207822,7 +210818,7 @@ return { [1]="maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [9154]={ + [9277]={ [1]={ [1]={ limit={ @@ -207838,7 +210834,7 @@ return { [1]="maximum_critical_strike_chance_is_50%" } }, - [9155]={ + [9278]={ [1]={ [1]={ limit={ @@ -207854,7 +210850,7 @@ return { [1]="maximum_endurance_charges_+_while_affected_by_determination" } }, - [9156]={ + [9279]={ [1]={ [1]={ limit={ @@ -207870,7 +210866,7 @@ return { [1]="maximum_endurance_frenzy_power_charges_is_0" } }, - [9157]={ + [9280]={ [1]={ [1]={ [1]={ @@ -207890,7 +210886,7 @@ return { [1]="maximum_energy_shield_+_if_no_defence_modifiers_on_equipment_except_body_armour" } }, - [9158]={ + [9281]={ [1]={ [1]={ limit={ @@ -207906,7 +210902,7 @@ return { [1]="maximum_energy_shield_from_body_armour_+%" } }, - [9159]={ + [9282]={ [1]={ [1]={ limit={ @@ -207922,7 +210918,7 @@ return { [1]="maximum_energy_shield_increased_by_spell_block_chance" } }, - [9160]={ + [9283]={ [1]={ [1]={ limit={ @@ -207938,7 +210934,7 @@ return { [1]="maximum_energy_shield_is_x%_of_maximum_life" } }, - [9161]={ + [9284]={ [1]={ [1]={ limit={ @@ -207954,7 +210950,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_is_doubled" } }, - [9162]={ + [9285]={ [1]={ [1]={ limit={ @@ -207970,7 +210966,7 @@ return { [1]="maximum_es_per_honoured_soul_tattoo_allocated" } }, - [9163]={ + [9286]={ [1]={ [1]={ limit={ @@ -207986,7 +210982,7 @@ return { [1]="maximum_fanaticism_charges" } }, - [9164]={ + [9287]={ [1]={ [1]={ [1]={ @@ -208006,7 +211002,7 @@ return { [1]="maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [9165]={ + [9288]={ [1]={ [1]={ limit={ @@ -208022,7 +211018,7 @@ return { [1]="maximum_frenzy_charges_+_while_affected_by_grace" } }, - [9166]={ + [9289]={ [1]={ [1]={ limit={ @@ -208038,7 +211034,7 @@ return { [1]="maximum_frenzy_power_endurance_charges" } }, - [9167]={ + [9290]={ [1]={ [1]={ limit={ @@ -208054,7 +211050,7 @@ return { [1]="maximum_intensify_stacks" } }, - [9168]={ + [9291]={ [1]={ [1]={ limit={ @@ -208083,7 +211079,7 @@ return { [1]="maximum_leech_rate_+%" } }, - [9169]={ + [9292]={ [1]={ [1]={ limit={ @@ -208099,7 +211095,7 @@ return { [1]="maximum_life_%_to_add_as_maximum_energy_shield_with_no_corrupted_equipped_items" } }, - [9170]={ + [9293]={ [1]={ [1]={ limit={ @@ -208128,7 +211124,7 @@ return { [1]="maximum_life_+%_per_alive_packmate" } }, - [9171]={ + [9294]={ [1]={ [1]={ [1]={ @@ -208165,7 +211161,7 @@ return { [1]="maximum_life_+%_per_red_socket_on_staff" } }, - [9172]={ + [9295]={ [1]={ [1]={ limit={ @@ -208194,7 +211190,7 @@ return { [1]="maximum_life_+%_to_grant_packmate_on_death" } }, - [9173]={ + [9296]={ [1]={ [1]={ limit={ @@ -208223,7 +211219,7 @@ return { [1]="maximum_life_+%_while_no_gems_in_gloves" } }, - [9174]={ + [9297]={ [1]={ [1]={ [1]={ @@ -208243,7 +211239,44 @@ return { [1]="maximum_life_+_if_no_life_modifiers_on_equipment_except_body_armour" } }, - [9175]={ + [9298]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextStaffWarstaff" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextStaffWarstaff" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + } + }, + stats={ + [1]="maximum_life_and_mana_+%_if_red_and_blue_socket_on_staff" + } + }, + [9299]={ [1]={ [1]={ limit={ @@ -208272,7 +211305,7 @@ return { [1]="maximum_life_leech_amount_per_leech_+%_per_5%_life_reserved" } }, - [9176]={ + [9300]={ [1]={ [1]={ limit={ @@ -208288,7 +211321,7 @@ return { [1]="maximum_life_leech_amount_per_leech_%_max_life" } }, - [9177]={ + [9301]={ [1]={ [1]={ limit={ @@ -208304,7 +211337,7 @@ return { [1]="maximum_life_leech_rate_%_per_minute_is_doubled" } }, - [9178]={ + [9302]={ [1]={ [1]={ [1]={ @@ -208349,7 +211382,7 @@ return { [1]="maximum_life_leech_rate_+%_if_crit_recently" } }, - [9179]={ + [9303]={ [1]={ [1]={ [1]={ @@ -208386,7 +211419,7 @@ return { [1]="maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently" } }, - [9180]={ + [9304]={ [1]={ [1]={ limit={ @@ -208402,7 +211435,7 @@ return { [1]="maximum_life_per_10_dexterity" } }, - [9181]={ + [9305]={ [1]={ [1]={ limit={ @@ -208418,7 +211451,7 @@ return { [1]="maximum_life_per_10_intelligence" } }, - [9182]={ + [9306]={ [1]={ [1]={ limit={ @@ -208434,7 +211467,7 @@ return { [1]="maximum_life_per_2%_increased_item_found_rarity" } }, - [9183]={ + [9307]={ [1]={ [1]={ limit={ @@ -208450,7 +211483,7 @@ return { [1]="maximum_life_per_honoured_heart_tattoo_allocated" } }, - [9184]={ + [9308]={ [1]={ [1]={ limit={ @@ -208466,7 +211499,7 @@ return { [1]="maximum_life_%_to_add_as_maximum_armour" } }, - [9185]={ + [9309]={ [1]={ [1]={ limit={ @@ -208482,7 +211515,7 @@ return { [1]="maximum_life_%_to_add_as_maximum_energy_shield" } }, - [9186]={ + [9310]={ [1]={ [1]={ limit={ @@ -208498,7 +211531,7 @@ return { [1]="maximum_life_%_to_convert_to_maximum_energy_shield" } }, - [9187]={ + [9311]={ [1]={ [1]={ [1]={ @@ -208535,7 +211568,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [9188]={ + [9312]={ [1]={ [1]={ limit={ @@ -208551,7 +211584,7 @@ return { [1]="maximum_life_+%_if_no_life_tags_on_body_armour" } }, - [9189]={ + [9313]={ [1]={ [1]={ limit={ @@ -208580,7 +211613,7 @@ return { [1]="maximum_life_+%_per_abyssal_jewel_affecting_you" } }, - [9190]={ + [9314]={ [1]={ [1]={ [1]={ @@ -208600,7 +211633,7 @@ return { [1]="maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [9191]={ + [9315]={ [1]={ [1]={ [1]={ @@ -208637,7 +211670,7 @@ return { [1]="maximum_mana_+%_per_blue_socket_on_staff" } }, - [9192]={ + [9316]={ [1]={ [1]={ limit={ @@ -208653,7 +211686,7 @@ return { [1]="maximum_mana_+1%_per_X_strength_when_in_main_hand_from_foulborn_doon_cuebiyari" } }, - [9193]={ + [9317]={ [1]={ [1]={ limit={ @@ -208669,7 +211702,7 @@ return { [1]="maximum_mana_leech_amount_per_leech_%_max_mana" } }, - [9194]={ + [9318]={ [1]={ [1]={ limit={ @@ -208685,7 +211718,7 @@ return { [1]="maximum_mana_per_honoured_mind_tattoo_allocated" } }, - [9195]={ + [9319]={ [1]={ [1]={ limit={ @@ -208701,7 +211734,7 @@ return { [1]="maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity" } }, - [9196]={ + [9320]={ [1]={ [1]={ limit={ @@ -208717,7 +211750,7 @@ return { [1]="maximum_mana_+_per_2_intelligence" } }, - [9197]={ + [9321]={ [1]={ [1]={ limit={ @@ -208746,7 +211779,7 @@ return { [1]="maximum_mana_+%_per_abyssal_jewel_affecting_you" } }, - [9198]={ + [9322]={ [1]={ [1]={ limit={ @@ -208897,7 +211930,7 @@ return { [1]="maximum_number_of_X_minion_type_doubled" } }, - [9199]={ + [9323]={ [1]={ [1]={ limit={ @@ -208913,7 +211946,7 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [9200]={ + [9324]={ [1]={ [1]={ limit={ @@ -208929,7 +211962,7 @@ return { [1]="maximum_number_of_raised_spectres_is_x" } }, - [9201]={ + [9325]={ [1]={ [1]={ limit={ @@ -208958,7 +211991,7 @@ return { [1]="maximum_physical_attack_damage_+%_final" } }, - [9202]={ + [9326]={ [1]={ [1]={ limit={ @@ -208974,7 +212007,7 @@ return { [1]="maximum_power_and_endurance_charges_+" } }, - [9203]={ + [9327]={ [1]={ [1]={ limit={ @@ -208990,7 +212023,7 @@ return { [1]="maximum_power_charges_+_while_affected_by_discipline" } }, - [9204]={ + [9328]={ [1]={ [1]={ limit={ @@ -209006,7 +212039,7 @@ return { [1]="maximum_rage_is_halved" } }, - [9205]={ + [9329]={ [1]={ [1]={ [1]={ @@ -209026,7 +212059,7 @@ return { [1]="maximum_rage_per_equipped_one_handed_sword" } }, - [9206]={ + [9330]={ [1]={ [1]={ [1]={ @@ -209063,7 +212096,7 @@ return { [1]="maximum_total_life_recovery_per_second_from_leech_+%_while_at_max_rage" } }, - [9207]={ + [9331]={ [1]={ [1]={ limit={ @@ -209084,7 +212117,7 @@ return { [2]="quality_display_herald_of_agony_is_gem" } }, - [9208]={ + [9332]={ [1]={ [1]={ [1]={ @@ -209104,7 +212137,7 @@ return { [1]="melee_attack_critical_strike_chance_against_enemies_that_are_excommunicated_%" } }, - [9209]={ + [9333]={ [1]={ [1]={ limit={ @@ -209129,7 +212162,7 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [9210]={ + [9334]={ [1]={ [1]={ limit={ @@ -209145,7 +212178,7 @@ return { [1]="melee_attacks_usable_without_life_cost" } }, - [9211]={ + [9335]={ [1]={ [1]={ [1]={ @@ -209165,7 +212198,7 @@ return { [1]="melee_critical_strike_chance_+%_if_warcried_recently" } }, - [9212]={ + [9336]={ [1]={ [1]={ [1]={ @@ -209185,7 +212218,7 @@ return { [1]="melee_critical_strike_multiplier_+%_if_warcried_recently" } }, - [9213]={ + [9337]={ [1]={ [1]={ limit={ @@ -209201,7 +212234,7 @@ return { [1]="melee_damage_+%_per_20_intelligence" } }, - [9214]={ + [9338]={ [1]={ [1]={ [1]={ @@ -209238,7 +212271,7 @@ return { [1]="melee_damage_+%_at_close_range" } }, - [9215]={ + [9339]={ [1]={ [1]={ limit={ @@ -209267,7 +212300,7 @@ return { [1]="melee_damage_+%_during_flask_effect" } }, - [9216]={ + [9340]={ [1]={ [1]={ limit={ @@ -209283,7 +212316,7 @@ return { [1]="melee_damage_+%_per_second_of_warcry_affecting_you" } }, - [9217]={ + [9341]={ [1]={ [1]={ limit={ @@ -209299,7 +212332,7 @@ return { [1]="melee_hits_cannot_be_evaded_while_wielding_sword" } }, - [9218]={ + [9342]={ [1]={ [1]={ [1]={ @@ -209319,7 +212352,7 @@ return { [1]="melee_knockback" } }, - [9219]={ + [9343]={ [1]={ [1]={ [1]={ @@ -209343,7 +212376,7 @@ return { [1]="melee_movement_skill_chance_to_fortify_on_hit_%" } }, - [9220]={ + [9344]={ [1]={ [1]={ limit={ @@ -209359,7 +212392,7 @@ return { [1]="melee_physical_damage_+%_per_10_dexterity" } }, - [9221]={ + [9345]={ [1]={ [1]={ limit={ @@ -209388,7 +212421,7 @@ return { [1]="melee_physical_damage_+%_per_10_strength_while_fortified" } }, - [9222]={ + [9346]={ [1]={ [1]={ [1]={ @@ -209429,7 +212462,7 @@ return { [1]="melee_range_+_while_at_least_5_enemies_nearby" } }, - [9223]={ + [9347]={ [1]={ [1]={ [1]={ @@ -209470,7 +212503,7 @@ return { [1]="melee_range_+_while_wielding_shield" } }, - [9224]={ + [9348]={ [1]={ [1]={ [1]={ @@ -209511,7 +212544,7 @@ return { [1]="melee_range_+_while_dual_wielding" } }, - [9225]={ + [9349]={ [1]={ [1]={ [1]={ @@ -209552,7 +212585,7 @@ return { [1]="melee_range_+_with_axe" } }, - [9226]={ + [9350]={ [1]={ [1]={ [1]={ @@ -209593,7 +212626,7 @@ return { [1]="melee_range_+_with_claw" } }, - [9227]={ + [9351]={ [1]={ [1]={ [1]={ @@ -209642,7 +212675,7 @@ return { [1]="melee_range_+_with_dagger" } }, - [9228]={ + [9352]={ [1]={ [1]={ [1]={ @@ -209683,7 +212716,7 @@ return { [1]="melee_range_+_with_mace" } }, - [9229]={ + [9353]={ [1]={ [1]={ [1]={ @@ -209724,7 +212757,7 @@ return { [1]="melee_range_+_with_one_handed" } }, - [9230]={ + [9354]={ [1]={ [1]={ [1]={ @@ -209773,7 +212806,7 @@ return { [1]="melee_range_+_with_staff" } }, - [9231]={ + [9355]={ [1]={ [1]={ [1]={ @@ -209814,7 +212847,7 @@ return { [1]="melee_range_+_with_sword" } }, - [9232]={ + [9356]={ [1]={ [1]={ [1]={ @@ -209855,7 +212888,7 @@ return { [1]="melee_range_+_with_two_handed" } }, - [9233]={ + [9357]={ [1]={ [1]={ limit={ @@ -209871,7 +212904,7 @@ return { [1]="melee_skill_gem_level_+" } }, - [9234]={ + [9358]={ [1]={ [1]={ limit={ @@ -209900,7 +212933,7 @@ return { [1]="melee_skills_area_of_effect_+%" } }, - [9235]={ + [9359]={ [1]={ [1]={ limit={ @@ -209916,7 +212949,7 @@ return { [1]="melee_splash_while_wielding_mace" } }, - [9236]={ + [9360]={ [1]={ [1]={ limit={ @@ -209932,7 +212965,7 @@ return { [1]="melee_strike_skill_strike_previous_location" } }, - [9237]={ + [9361]={ [1]={ [1]={ [1]={ @@ -209981,7 +213014,7 @@ return { [1]="melee_weapon_range_+_if_you_have_killed_recently" } }, - [9238]={ + [9362]={ [1]={ [1]={ [1]={ @@ -210022,7 +213055,7 @@ return { [1]="melee_weapon_range_+_while_at_maximum_frenzy_charges" } }, - [9239]={ + [9363]={ [1]={ [1]={ [1]={ @@ -210063,7 +213096,7 @@ return { [1]="melee_weapon_range_+_while_fortified" } }, - [9240]={ + [9364]={ [1]={ [1]={ [1]={ @@ -210083,7 +213116,119 @@ return { [1]="memory_line_has_penalty" } }, - [9241]={ + [9365]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Mercenary can equip Unique Amulets" + } + }, + stats={ + [1]="mercenary_can_use_unique_amulet" + } + }, + [9366]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Mercenary can equip Unique Belts" + } + }, + stats={ + [1]="mercenary_can_use_unique_belt" + } + }, + [9367]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Mercenary can equip Unique Boots" + } + }, + stats={ + [1]="mercenary_can_use_unique_boots" + } + }, + [9368]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Mercenary can equip Unique Gloves" + } + }, + stats={ + [1]="mercenary_can_use_unique_gloves" + } + }, + [9369]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Mercenary can equip Unique Helmets" + } + }, + stats={ + [1]="mercenary_can_use_unique_helmet" + } + }, + [9370]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Mercenary can equip Unique Rings" + } + }, + stats={ + [1]="mercenary_can_use_unique_ring" + } + }, + [9371]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Mercenary can equip Unique Weapons, Shields and Quivers" + } + }, + stats={ + [1]="mercenary_can_use_unique_weapons_shields_and_quivers" + } + }, + [9372]={ [1]={ [1]={ [1]={ @@ -210120,7 +213265,7 @@ return { [1]="mine_area_damage_+%_if_detonated_mine_recently" } }, - [9242]={ + [9373]={ [1]={ [1]={ limit={ @@ -210149,7 +213294,7 @@ return { [1]="mine_area_of_effect_+%" } }, - [9243]={ + [9374]={ [1]={ [1]={ [1]={ @@ -210186,7 +213331,7 @@ return { [1]="mine_area_of_effect_+%_if_detonated_mine_recently" } }, - [9244]={ + [9375]={ [1]={ [1]={ limit={ @@ -210215,7 +213360,7 @@ return { [1]="mine_aura_effect_+%" } }, - [9245]={ + [9376]={ [1]={ [1]={ limit={ @@ -210244,7 +213389,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [9246]={ + [9377]={ [1]={ [1]={ limit={ @@ -210260,7 +213405,7 @@ return { [1]="mine_%_chance_to_detonate_twice" } }, - [9247]={ + [9378]={ [1]={ [1]={ [1]={ @@ -210301,7 +213446,7 @@ return { [1]="mines_hinder_nearby_enemies_for_x_ms_on_arming" } }, - [9248]={ + [9379]={ [1]={ [1]={ limit={ @@ -210317,7 +213462,7 @@ return { [1]="mines_invulnerable" } }, - [9249]={ + [9380]={ [1]={ [1]={ [1]={ @@ -210342,7 +213487,7 @@ return { [2]="maximum_added_chaos_damage_if_have_crit_recently" } }, - [9250]={ + [9381]={ [1]={ [1]={ limit={ @@ -210363,7 +213508,7 @@ return { [2]="maximum_added_chaos_damage_per_curse_on_enemy" } }, - [9251]={ + [9382]={ [1]={ [1]={ limit={ @@ -210384,7 +213529,7 @@ return { [2]="maximum_added_chaos_damage_per_spiders_web_on_enemy" } }, - [9252]={ + [9383]={ [1]={ [1]={ limit={ @@ -210405,7 +213550,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength" } }, - [9253]={ + [9384]={ [1]={ [1]={ limit={ @@ -210426,7 +213571,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_per_50_strength" } }, - [9254]={ + [9385]={ [1]={ [1]={ limit={ @@ -210447,7 +213592,7 @@ return { [2]="maximum_added_chaos_damage_vs_enemies_with_5+_poisons" } }, - [9255]={ + [9386]={ [1]={ [1]={ [1]={ @@ -210472,7 +213617,7 @@ return { [2]="maximum_added_cold_damage_if_have_crit_recently" } }, - [9256]={ + [9387]={ [1]={ [1]={ limit={ @@ -210493,7 +213638,7 @@ return { [2]="maximum_added_cold_damage_to_attacks_per_10_dexterity" } }, - [9257]={ + [9388]={ [1]={ [1]={ limit={ @@ -210514,7 +213659,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [9258]={ + [9389]={ [1]={ [1]={ limit={ @@ -210535,7 +213680,7 @@ return { [2]="maximum_added_cold_damage_while_affected_by_hatred" } }, - [9259]={ + [9390]={ [1]={ [1]={ limit={ @@ -210556,7 +213701,7 @@ return { [2]="maximum_added_cold_damage_while_you_have_avians_might" } }, - [9260]={ + [9391]={ [1]={ [1]={ [1]={ @@ -210581,7 +213726,7 @@ return { [2]="maximum_added_fire_damage_if_have_crit_recently" } }, - [9261]={ + [9392]={ [1]={ [1]={ limit={ @@ -210602,7 +213747,7 @@ return { [2]="maximum_added_fire_damage_per_100_lowest_of_max_life_mana" } }, - [9262]={ + [9393]={ [1]={ [1]={ limit={ @@ -210623,7 +213768,7 @@ return { [2]="maximum_added_fire_damage_per_endurance_charge" } }, - [9263]={ + [9394]={ [1]={ [1]={ limit={ @@ -210644,7 +213789,7 @@ return { [2]="maximum_added_fire_damage_to_attacks_per_1%_light_radius" } }, - [9264]={ + [9395]={ [1]={ [1]={ limit={ @@ -210665,7 +213810,7 @@ return { [2]="maximum_added_fire_damage_to_attacks_per_10_strength" } }, - [9265]={ + [9396]={ [1]={ [1]={ limit={ @@ -210686,7 +213831,7 @@ return { [2]="maximum_added_fire_damage_to_hits_vs_blinded_enemies" } }, - [9266]={ + [9397]={ [1]={ [1]={ [1]={ @@ -210711,7 +213856,7 @@ return { [2]="maximum_added_lightning_damage_if_have_crit_recently" } }, - [9267]={ + [9398]={ [1]={ [1]={ limit={ @@ -210732,7 +213877,7 @@ return { [2]="maximum_added_lightning_damage_per_power_charge" } }, - [9268]={ + [9399]={ [1]={ [1]={ [1]={ @@ -210757,7 +213902,7 @@ return { [2]="maximum_added_lightning_damage_per_shocked_enemy_killed_recently" } }, - [9269]={ + [9400]={ [1]={ [1]={ limit={ @@ -210778,7 +213923,7 @@ return { [2]="maximum_added_lightning_damage_to_attacks_per_10_intelligence" } }, - [9270]={ + [9401]={ [1]={ [1]={ limit={ @@ -210799,7 +213944,7 @@ return { [2]="maximum_added_lightning_damage_to_spells_per_power_charge" } }, - [9271]={ + [9402]={ [1]={ [1]={ limit={ @@ -210820,7 +213965,7 @@ return { [2]="maximum_added_lightning_damage_while_you_have_avians_might" } }, - [9272]={ + [9403]={ [1]={ [1]={ [1]={ @@ -210845,7 +213990,7 @@ return { [2]="maximum_added_physical_damage_if_have_crit_recently" } }, - [9273]={ + [9404]={ [1]={ [1]={ limit={ @@ -210866,7 +214011,7 @@ return { [2]="maximum_added_physical_damage_per_endurance_charge" } }, - [9274]={ + [9405]={ [1]={ [1]={ limit={ @@ -210887,7 +214032,7 @@ return { [2]="maximum_added_physical_damage_per_impaled_on_enemy" } }, - [9275]={ + [9406]={ [1]={ [1]={ [1]={ @@ -210912,7 +214057,7 @@ return { [2]="maximum_added_physical_damage_vs_poisoned_enemies" } }, - [9276]={ + [9407]={ [1]={ [1]={ limit={ @@ -210933,7 +214078,7 @@ return { [2]="maximum_added_spell_cold_damage_while_no_life_is_reserved" } }, - [9277]={ + [9408]={ [1]={ [1]={ limit={ @@ -210954,7 +214099,7 @@ return { [2]="maximum_added_spell_fire_damage_while_no_life_is_reserved" } }, - [9278]={ + [9409]={ [1]={ [1]={ limit={ @@ -210975,7 +214120,7 @@ return { [2]="maximum_added_spell_lightning_damage_while_no_life_is_reserved" } }, - [9279]={ + [9410]={ [1]={ [1]={ limit={ @@ -210991,7 +214136,7 @@ return { [1]="minimum_endurance_charges_at_devotion_threshold" } }, - [9280]={ + [9411]={ [1]={ [1]={ limit={ @@ -211007,7 +214152,7 @@ return { [1]="minimum_endurance_charges_while_on_low_life_+" } }, - [9281]={ + [9412]={ [1]={ [1]={ limit={ @@ -211023,7 +214168,7 @@ return { [1]="minimum_frenzy_charges_at_devotion_threshold" } }, - [9282]={ + [9413]={ [1]={ [1]={ limit={ @@ -211039,7 +214184,7 @@ return { [1]="minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary" } }, - [9283]={ + [9414]={ [1]={ [1]={ limit={ @@ -211055,7 +214200,7 @@ return { [1]="minimum_frenzy_power_endurance_charges" } }, - [9284]={ + [9415]={ [1]={ [1]={ limit={ @@ -211071,7 +214216,7 @@ return { [1]="minimum_power_charges_at_devotion_threshold" } }, - [9285]={ + [9416]={ [1]={ [1]={ limit={ @@ -211087,7 +214232,7 @@ return { [1]="minimum_power_charges_while_on_low_life_+" } }, - [9286]={ + [9417]={ [1]={ [1]={ [1]={ @@ -211107,7 +214252,7 @@ return { [1]="minimum_rage" } }, - [9287]={ + [9418]={ [1]={ [1]={ [1]={ @@ -211132,7 +214277,7 @@ return { [2]="maximum_random_movement_velocity_+%_when_hit" } }, - [9288]={ + [9419]={ [1]={ [1]={ limit={ @@ -211148,7 +214293,7 @@ return { [1]="minion_accuracy_rating" } }, - [9289]={ + [9420]={ [1]={ [1]={ limit={ @@ -211164,7 +214309,7 @@ return { [1]="minion_accuracy_rating_per_10_devotion" } }, - [9290]={ + [9421]={ [1]={ [1]={ limit={ @@ -211193,7 +214338,7 @@ return { [1]="minion_accuracy_rating_+%" } }, - [9291]={ + [9422]={ [1]={ [1]={ [1]={ @@ -211213,7 +214358,7 @@ return { [1]="minion_additional_base_critical_strike_chance" } }, - [9292]={ + [9423]={ [1]={ [1]={ [1]={ @@ -211226,14 +214371,14 @@ return { [2]="#" } }, - text="[DNT] Minions are Aggressive if you've Blocked Recently" + text="DNT Minions are Aggressive if you've Blocked Recently" } }, stats={ [1]="minion_are_aggressive_if_have_blocked_recently" } }, - [9293]={ + [9424]={ [1]={ [1]={ [1]={ @@ -211270,7 +214415,7 @@ return { [1]="minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently" } }, - [9294]={ + [9425]={ [1]={ [1]={ limit={ @@ -211299,7 +214444,7 @@ return { [1]="minion_attack_and_cast_speed_+%" } }, - [9295]={ + [9426]={ [1]={ [1]={ [1]={ @@ -211336,7 +214481,7 @@ return { [1]="minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently" } }, - [9296]={ + [9427]={ [1]={ [1]={ limit={ @@ -211365,7 +214510,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_10_devotion" } }, - [9297]={ + [9428]={ [1]={ [1]={ limit={ @@ -211394,7 +214539,7 @@ return { [1]="minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald" } }, - [9298]={ + [9429]={ [1]={ [1]={ limit={ @@ -211403,7 +214548,7 @@ return { [2]="#" } }, - text="[DNT] Your Minions have {0}% increased Cooldown Recovery Rate with Attacks" + text="DNT Your Minions have {0}% increased Cooldown Recovery Rate with Attacks" }, [2]={ [1]={ @@ -211416,14 +214561,14 @@ return { [2]=-1 } }, - text="[DNT] Your Minions have {0}% reduced Cooldown Recovery Rate with Attacks" + text="DNT Your Minions have {0}% reduced Cooldown Recovery Rate with Attacks" } }, stats={ [1]="minion_attack_cooldown_recovery_+%" } }, - [9299]={ + [9430]={ [1]={ [1]={ limit={ @@ -211439,7 +214584,7 @@ return { [1]="minion_attack_hits_knockback_chance_%" } }, - [9300]={ + [9431]={ [1]={ [1]={ limit={ @@ -211468,7 +214613,7 @@ return { [1]="minion_attack_speed_+%_per_50_dex" } }, - [9301]={ + [9432]={ [1]={ [1]={ [1]={ @@ -211501,7 +214646,7 @@ return { [1]="minion_attacks_chance_to_blind_on_hit_%" } }, - [9302]={ + [9433]={ [1]={ [1]={ limit={ @@ -211517,7 +214662,7 @@ return { [1]="minion_base_fire_damage_%_to_convert_to_chaos" } }, - [9303]={ + [9434]={ [1]={ [1]={ limit={ @@ -211533,7 +214678,7 @@ return { [1]="minion_cannot_crit" } }, - [9304]={ + [9435]={ [1]={ [1]={ limit={ @@ -211549,7 +214694,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [9305]={ + [9436]={ [1]={ [1]={ limit={ @@ -211565,7 +214710,7 @@ return { [1]="minion_chance_to_deal_double_damage_while_on_full_life_%" } }, - [9306]={ + [9437]={ [1]={ [1]={ [1]={ @@ -211585,7 +214730,7 @@ return { [1]="minion_chance_to_freeze_%" } }, - [9307]={ + [9438]={ [1]={ [1]={ [1]={ @@ -211634,7 +214779,7 @@ return { [1]="minion_chance_to_freeze_shock_ignite_%" } }, - [9308]={ + [9439]={ [1]={ [1]={ limit={ @@ -211650,7 +214795,7 @@ return { [1]="minion_chance_to_gain_power_charge_on_hit_%" } }, - [9309]={ + [9440]={ [1]={ [1]={ limit={ @@ -211666,7 +214811,23 @@ return { [1]="minion_chance_to_ignite_%" } }, - [9310]={ + [9441]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Minions have {0}% chance to Impale on Attack Hit per socketed Ghastly Eye Jewel" + } + }, + stats={ + [1]="minion_chance_to_impale_on_attack_hit_%_per_socketed_ghastly_jewel" + } + }, + [9442]={ [1]={ [1]={ limit={ @@ -211682,7 +214843,7 @@ return { [1]="minion_chance_to_impale_on_attack_hit_%" } }, - [9311]={ + [9443]={ [1]={ [1]={ [1]={ @@ -211702,7 +214863,7 @@ return { [1]="minion_chance_to_shock_%" } }, - [9312]={ + [9444]={ [1]={ [1]={ limit={ @@ -211731,7 +214892,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [9313]={ + [9445]={ [1]={ [1]={ limit={ @@ -211760,7 +214921,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [9314]={ + [9446]={ [1]={ [1]={ limit={ @@ -211789,7 +214950,7 @@ return { [1]="minion_critical_strike_chance_+%_per_maximum_power_charge" } }, - [9315]={ + [9447]={ [1]={ [1]={ limit={ @@ -211805,7 +214966,7 @@ return { [1]="minion_critical_strike_multiplier_+" } }, - [9316]={ + [9448]={ [1]={ [1]={ [1]={ @@ -211842,7 +215003,7 @@ return { [1]="minion_damage_+%_final_while_on_low_life_from_catarina_bloodline" } }, - [9317]={ + [9449]={ [1]={ [1]={ limit={ @@ -211858,7 +215019,7 @@ return { [1]="minion_damage_+%_if_warcried_recently" } }, - [9318]={ + [9450]={ [1]={ [1]={ limit={ @@ -211887,7 +215048,7 @@ return { [1]="minion_damage_against_ignited_enemies_+%" } }, - [9319]={ + [9451]={ [1]={ [1]={ limit={ @@ -211903,7 +215064,7 @@ return { [1]="minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30" } }, - [9320]={ + [9452]={ [1]={ [1]={ [1]={ @@ -211940,7 +215101,7 @@ return { [1]="minion_damage_+%_if_enemy_hit_recently" } }, - [9321]={ + [9453]={ [1]={ [1]={ limit={ @@ -211969,7 +215130,7 @@ return { [1]="minion_damage_+%_vs_abyssal_monsters" } }, - [9322]={ + [9454]={ [1]={ [1]={ limit={ @@ -211998,7 +215159,7 @@ return { [1]="minion_damage_+%_while_affected_by_a_herald" } }, - [9323]={ + [9455]={ [1]={ [1]={ limit={ @@ -212027,7 +215188,7 @@ return { [1]="minion_damage_taken_+%" } }, - [9324]={ + [9456]={ [1]={ [1]={ limit={ @@ -212043,7 +215204,7 @@ return { [1]="minion_deal_no_non_cold_damage" } }, - [9325]={ + [9457]={ [1]={ [1]={ limit={ @@ -212059,7 +215220,7 @@ return { [1]="minion_elemental_damage_%_to_add_as_chaos" } }, - [9326]={ + [9458]={ [1]={ [1]={ limit={ @@ -212075,7 +215236,7 @@ return { [1]="minion_elemental_resistance_30%" } }, - [9327]={ + [9459]={ [1]={ [1]={ [1]={ @@ -212099,7 +215260,7 @@ return { [1]="minion_energy_shield_leech_from_elemental_damage_permyriad" } }, - [9328]={ + [9460]={ [1]={ [1]={ limit={ @@ -212128,7 +215289,7 @@ return { [1]="minion_evasion_rating_+%" } }, - [9329]={ + [9461]={ [1]={ [1]={ [1]={ @@ -212148,7 +215309,7 @@ return { [1]="minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%" } }, - [9330]={ + [9462]={ [1]={ [1]={ limit={ @@ -212164,7 +215325,7 @@ return { [1]="minion_fire_damage_resistance_%" } }, - [9331]={ + [9463]={ [1]={ [1]={ limit={ @@ -212180,7 +215341,7 @@ return { [1]="minion_global_always_hit" } }, - [9332]={ + [9464]={ [1]={ [1]={ limit={ @@ -212205,7 +215366,7 @@ return { [1]="minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%" } }, - [9333]={ + [9465]={ [1]={ [1]={ [1]={ @@ -212225,7 +215386,7 @@ return { [1]="minion_has_unholy_might" } }, - [9334]={ + [9466]={ [1]={ [1]={ limit={ @@ -212250,7 +215411,7 @@ return { [1]="minion_hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [9335]={ + [9467]={ [1]={ [1]={ [1]={ @@ -212270,7 +215431,7 @@ return { [1]="minion_life_%_to_gain_as_flesh_shield_on_nearby_minion_death" } }, - [9336]={ + [9468]={ [1]={ [1]={ [1]={ @@ -212290,7 +215451,7 @@ return { [1]="minion_life_increased_by_overcapped_fire_resistance" } }, - [9337]={ + [9469]={ [1]={ [1]={ [1]={ @@ -212314,7 +215475,7 @@ return { [1]="minion_life_leech_permyriad_vs_poisoned_enemies" } }, - [9338]={ + [9470]={ [1]={ [1]={ [1]={ @@ -212338,7 +215499,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [9339]={ + [9471]={ [1]={ [1]={ limit={ @@ -212354,7 +215515,7 @@ return { [1]="minion_life_regeneration_rate_per_second" } }, - [9340]={ + [9472]={ [1]={ [1]={ [1]={ @@ -212387,7 +215548,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [9341]={ + [9473]={ [1]={ [1]={ limit={ @@ -212403,7 +215564,7 @@ return { [1]="minion_malediction_on_hit" } }, - [9342]={ + [9474]={ [1]={ [1]={ [1]={ @@ -212423,7 +215584,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [9343]={ + [9475]={ [1]={ [1]={ limit={ @@ -212439,7 +215600,7 @@ return { [1]="minion_maximum_life_%_to_add_as_maximum_energy_shield" } }, - [9344]={ + [9476]={ [1]={ [1]={ limit={ @@ -212468,7 +215629,7 @@ return { [1]="minion_melee_damage_+%" } }, - [9345]={ + [9477]={ [1]={ [1]={ limit={ @@ -212484,7 +215645,7 @@ return { [1]="minion_minimum_power_charges" } }, - [9346]={ + [9478]={ [1]={ [1]={ limit={ @@ -212513,7 +215674,7 @@ return { [1]="minion_movement_speed_+%_per_50_dex" } }, - [9347]={ + [9479]={ [1]={ [1]={ limit={ @@ -212542,7 +215703,7 @@ return { [1]="minion_movement_velocity_+%_for_each_herald_affecting_you" } }, - [9348]={ + [9480]={ [1]={ [1]={ limit={ @@ -212558,7 +215719,7 @@ return { [1]="minion_no_critical_strike_multiplier" } }, - [9349]={ + [9481]={ [1]={ [1]={ limit={ @@ -212583,7 +215744,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [9350]={ + [9482]={ [1]={ [1]={ limit={ @@ -212599,7 +215760,7 @@ return { [1]="minion_physical_damage_%_to_add_as_fire" } }, - [9351]={ + [9483]={ [1]={ [1]={ limit={ @@ -212628,7 +215789,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [9352]={ + [9484]={ [1]={ [1]={ limit={ @@ -212657,7 +215818,7 @@ return { [1]="minion_raging_spirit_maximum_life_+%" } }, - [9353]={ + [9485]={ [1]={ [1]={ [1]={ @@ -212677,7 +215838,7 @@ return { [1]="minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage" } }, - [9354]={ + [9486]={ [1]={ [1]={ limit={ @@ -212693,7 +215854,7 @@ return { [1]="minion_recover_%_maximum_life_on_minion_death" } }, - [9355]={ + [9487]={ [1]={ [1]={ limit={ @@ -212709,7 +215870,7 @@ return { [1]="minion_skill_gem_quality_+" } }, - [9356]={ + [9488]={ [1]={ [1]={ limit={ @@ -212742,7 +215903,7 @@ return { [1]="minion_skill_mana_cost_+%" } }, - [9357]={ + [9489]={ [1]={ [1]={ limit={ @@ -212751,7 +215912,7 @@ return { [2]="#" } }, - text="[DNT] Your Minions have {0}% increased Cooldown Recovery Rate with Spells" + text="DNT Your Minions have {0}% increased Cooldown Recovery Rate with Spells" }, [2]={ [1]={ @@ -212764,14 +215925,14 @@ return { [2]=-1 } }, - text="[DNT] Your Minions have {0}% reduced Cooldown Recovery Rate with Spells" + text="DNT Your Minions have {0}% reduced Cooldown Recovery Rate with Spells" } }, stats={ [1]="minion_spell_cooldown_recovery_+%" } }, - [9358]={ + [9490]={ [1]={ [1]={ [1]={ @@ -212791,7 +215952,7 @@ return { [1]="minion_spell_suppression_chance_%" } }, - [9359]={ + [9491]={ [1]={ [1]={ [1]={ @@ -212824,7 +215985,7 @@ return { [1]="minion_spells_chance_to_hinder_on_hit_%" } }, - [9360]={ + [9492]={ [1]={ [1]={ limit={ @@ -212853,7 +216014,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [9361]={ + [9493]={ [1]={ [1]={ limit={ @@ -212882,7 +216043,7 @@ return { [1]="minion_summoned_recently_attack_and_cast_speed_+%" } }, - [9362]={ + [9494]={ [1]={ [1]={ [1]={ @@ -212902,7 +216063,7 @@ return { [1]="minion_summoned_recently_cannot_be_damaged" } }, - [9363]={ + [9495]={ [1]={ [1]={ limit={ @@ -212931,7 +216092,7 @@ return { [1]="minion_summoned_recently_critical_strike_chance_+%" } }, - [9364]={ + [9496]={ [1]={ [1]={ limit={ @@ -212960,7 +216121,7 @@ return { [1]="minion_summoned_recently_movement_speed_+%" } }, - [9365]={ + [9497]={ [1]={ [1]={ limit={ @@ -212976,7 +216137,7 @@ return { [1]="minions_accuracy_is_equal_to_yours" } }, - [9366]={ + [9498]={ [1]={ [1]={ limit={ @@ -212992,7 +216153,7 @@ return { [1]="minions_affected_by_affliction_have_onslaught" } }, - [9367]={ + [9499]={ [1]={ [1]={ [1]={ @@ -213012,7 +216173,7 @@ return { [1]="minions_attacks_overwhelm_%_physical_damage_reduction" } }, - [9368]={ + [9500]={ [1]={ [1]={ limit={ @@ -213021,14 +216182,14 @@ return { [2]="#" } }, - text="[DNT] Your Minions cannot use Attacks" + text="DNT Your Minions cannot use Attacks" } }, stats={ [1]="minions_cannot_attack" } }, - [9369]={ + [9501]={ [1]={ [1]={ [1]={ @@ -213061,7 +216222,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [9370]={ + [9502]={ [1]={ [1]={ limit={ @@ -213086,7 +216247,7 @@ return { [1]="minions_cannot_be_killed_but_die_x_seconds_after_reaching_1_life" } }, - [9371]={ + [9503]={ [1]={ [1]={ limit={ @@ -213095,14 +216256,14 @@ return { [2]="#" } }, - text="[DNT] Your Minions cannot cast Spells" + text="DNT Your Minions cannot cast Spells" } }, stats={ [1]="minions_cannot_cast_spells" } }, - [9372]={ + [9504]={ [1]={ [1]={ limit={ @@ -213118,7 +216279,7 @@ return { [1]="minions_cannot_taunt_enemies" } }, - [9373]={ + [9505]={ [1]={ [1]={ [1]={ @@ -213151,7 +216312,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [9374]={ + [9506]={ [1]={ [1]={ limit={ @@ -213167,7 +216328,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [9375]={ + [9507]={ [1]={ [1]={ limit={ @@ -213183,7 +216344,7 @@ return { [1]="minions_gain_half_your_strength_from_ascendancy" } }, - [9376]={ + [9508]={ [1]={ [1]={ limit={ @@ -213199,7 +216360,7 @@ return { [1]="minions_gain_x_percent_of_your_resistances" } }, - [9377]={ + [9509]={ [1]={ [1]={ limit={ @@ -213208,14 +216369,14 @@ return { [2]="#" } }, - text="[DNT] Your minions gain your chance to Suppress Spell Damage" + text="DNT Your minions gain your chance to Suppress Spell Damage" } }, stats={ [1]="minions_gain_your_spell_suppression_chance" } }, - [9378]={ + [9510]={ [1]={ [1]={ limit={ @@ -213231,7 +216392,7 @@ return { [1]="minions_gain_your_strength" } }, - [9379]={ + [9511]={ [1]={ [1]={ [1]={ @@ -213255,7 +216416,7 @@ return { [1]="minions_go_crazy_on_crit_ms" } }, - [9380]={ + [9512]={ [1]={ [1]={ [1]={ @@ -213272,14 +216433,14 @@ return { [2]=-1 } }, - text="{0}% of Hit Damage from your Minions cannot be Reflected" + text="Minions prevent {0:+d}% of Reflected Damage they would take" } }, stats={ [1]="minions_have_-%_of_thier_damage_cannot_be_reflected" } }, - [9381]={ + [9513]={ [1]={ [1]={ limit={ @@ -213308,7 +216469,7 @@ return { [1]="minions_have_damage_+%_per_second_they_have_been_alive" } }, - [9382]={ + [9514]={ [1]={ [1]={ limit={ @@ -213337,7 +216498,7 @@ return { [1]="minions_have_damage_taken_+%_per_second_they_have_been_alive" } }, - [9383]={ + [9515]={ [1]={ [1]={ limit={ @@ -213346,14 +216507,14 @@ return { [2]="#" } }, - text="[DNT] Your minions have no Armour or Maximum Energy Shield" + text="DNT Your minions have no Armour or Maximum Energy Shield" } }, stats={ [1]="minions_have_no_armour_or_energy_shield" } }, - [9384]={ + [9516]={ [1]={ [1]={ [1]={ @@ -213373,7 +216534,7 @@ return { [1]="minions_have_%_chance_to_inflict_wither_on_hit" } }, - [9385]={ + [9517]={ [1]={ [1]={ limit={ @@ -213389,7 +216550,7 @@ return { [1]="minions_have_+%_critical_strike_multiplier_per_wither_on_enemies" } }, - [9386]={ + [9518]={ [1]={ [1]={ limit={ @@ -213405,7 +216566,7 @@ return { [1]="minions_have_same_maximum_num_of_charges_as_owner" } }, - [9387]={ + [9519]={ [1]={ [1]={ limit={ @@ -213421,7 +216582,7 @@ return { [1]="minions_have_same_num_of_charges_as_owner" } }, - [9388]={ + [9520]={ [1]={ [1]={ limit={ @@ -213437,7 +216598,7 @@ return { [1]="minions_hits_can_only_kill_ignited_enemies" } }, - [9389]={ + [9521]={ [1]={ [1]={ limit={ @@ -213453,7 +216614,7 @@ return { [1]="minions_penetrate_elemental_resistances_%_vs_cursed_enemies" } }, - [9390]={ + [9522]={ [1]={ [1]={ limit={ @@ -213469,7 +216630,7 @@ return { [1]="minions_recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [9391]={ + [9523]={ [1]={ [1]={ limit={ @@ -213485,7 +216646,7 @@ return { [1]="minions_recover_%_maximum_life_when_you_focus" } }, - [9392]={ + [9524]={ [1]={ [1]={ limit={ @@ -213518,7 +216679,7 @@ return { [1]="minions_reflected_damage_taken_+%" } }, - [9393]={ + [9525]={ [1]={ [1]={ limit={ @@ -213534,7 +216695,23 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [9394]={ + [9526]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Minions' Base Attack time is equal to the Attack time of your Main Hand Weapon" + } + }, + stats={ + [1]="minions_use_your_main_hand_base_attack_duration_from_weapon" + } + }, + [9527]={ [1]={ [1]={ limit={ @@ -213550,7 +216727,7 @@ return { [1]="minions_use_your_main_hand_base_crit_chance_from_weapon" } }, - [9395]={ + [9528]={ [1]={ [1]={ [1]={ @@ -213567,14 +216744,14 @@ return { [2]=-1 } }, - text="{0}% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice" + text="Prevent {0:+d}% of Reflected Cold Damage you would take while affected by Purity of Ice" } }, stats={ [1]="-%_of_your_cold_damage_cannot_be_reflected_while_affected_by_purity_of_ice" } }, - [9396]={ + [9529]={ [1]={ [1]={ [1]={ @@ -213591,14 +216768,14 @@ return { [2]=-1 } }, - text="{0}% of Elemental Damage from your Hits cannot be Reflected while\naffected by Purity of Elements" + text="Prevent {0:+d}% of Reflected Elemental Damage you would take while\naffected by Purity of Elements" } }, stats={ [1]="-%_of_your_elemental_damage_cannot_be_reflected_while_affected_by_purity_of_elements" } }, - [9397]={ + [9530]={ [1]={ [1]={ [1]={ @@ -213615,14 +216792,14 @@ return { [2]=-1 } }, - text="{0}% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire" + text="Prevent {0:+d}% of Reflected Fire Damage you would take while affected by Purity of Fire" } }, stats={ [1]="-%_of_your_fire_damage_cannot_be_reflected_while_affected_by_purity_of_fire" } }, - [9398]={ + [9531]={ [1]={ [1]={ [1]={ @@ -213639,14 +216816,14 @@ return { [2]=-1 } }, - text="{0}% of Lightning Damage from your Hits cannot be Reflected while\naffected by Purity of Lightning" + text="Prevent {0:+d}% of Reflected Lightning Damage you would take while\naffected by Purity of Lightning" } }, stats={ [1]="-%_of_your_lightning_damage_cannot_be_reflected_while_affected_by_purity_of_lightning" } }, - [9399]={ + [9532]={ [1]={ [1]={ [1]={ @@ -213663,14 +216840,14 @@ return { [2]=-1 } }, - text="{0}% of Physical Damage from your Hits cannot be Reflected while affected by Determination" + text="Prevent {0:+d}% of Reflected Physical Damage you would take while affected by Determination" } }, stats={ [1]="-%_of_your_physical_damage_cannot_be_reflected_while_affected_by_determination" } }, - [9400]={ + [9533]={ [1]={ [1]={ limit={ @@ -213699,7 +216876,7 @@ return { [1]="mirage_archer_duration_+%" } }, - [9401]={ + [9534]={ [1]={ [1]={ limit={ @@ -213715,7 +216892,7 @@ return { [1]="missing_unreserved_life_%_gained_as_life_before_hit_per_defiance" } }, - [9402]={ + [9535]={ [1]={ [1]={ limit={ @@ -213731,7 +216908,7 @@ return { [1]="missing_unreserved_life_%_gained_as_life_before_hit" } }, - [9403]={ + [9536]={ [1]={ [1]={ limit={ @@ -213747,7 +216924,7 @@ return { [1]="missing_unreserved_mana_%_gained_as_mana_before_hit" } }, - [9404]={ + [9537]={ [1]={ [1]={ [1]={ @@ -213767,7 +216944,7 @@ return { [1]="mod_granted_passive_hash" } }, - [9405]={ + [9538]={ [1]={ [1]={ [1]={ @@ -213787,7 +216964,7 @@ return { [1]="mod_granted_passive_hash_2" } }, - [9406]={ + [9539]={ [1]={ [1]={ [1]={ @@ -213807,7 +216984,7 @@ return { [1]="mod_granted_passive_hash_3" } }, - [9407]={ + [9540]={ [1]={ [1]={ [1]={ @@ -213827,7 +217004,7 @@ return { [1]="mod_granted_passive_hash_4" } }, - [9408]={ + [9541]={ [1]={ [1]={ [1]={ @@ -213847,7 +217024,7 @@ return { [1]="mod_granted_passive_hash_5" } }, - [9409]={ + [9542]={ [1]={ [1]={ limit={ @@ -213863,7 +217040,7 @@ return { [1]="modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value" } }, - [9410]={ + [9543]={ [1]={ [1]={ limit={ @@ -213879,7 +217056,7 @@ return { [1]="modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance" } }, - [9411]={ + [9544]={ [1]={ [1]={ limit={ @@ -213895,7 +217072,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" } }, - [9412]={ + [9545]={ [1]={ [1]={ limit={ @@ -213924,7 +217101,7 @@ return { [1]="molten_shell_duration_+%" } }, - [9413]={ + [9546]={ [1]={ [1]={ limit={ @@ -213940,7 +217117,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [9414]={ + [9547]={ [1]={ [1]={ limit={ @@ -213956,7 +217133,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [9415]={ + [9548]={ [1]={ [1]={ limit={ @@ -213981,7 +217158,7 @@ return { [1]="molten_strike_chain_count_+" } }, - [9416]={ + [9549]={ [1]={ [1]={ limit={ @@ -213997,7 +217174,7 @@ return { [1]="monster_converts_on_death" } }, - [9417]={ + [9550]={ [1]={ [1]={ limit={ @@ -214026,7 +217203,7 @@ return { [1]="monster_damage_+%_final_per_alive_packmate" } }, - [9418]={ + [9551]={ [1]={ [1]={ limit={ @@ -214055,7 +217232,7 @@ return { [1]="monster_dropped_item_quantity_+%" } }, - [9419]={ + [9552]={ [1]={ [1]={ limit={ @@ -214084,7 +217261,7 @@ return { [1]="monster_dropped_item_rarity_+%" } }, - [9420]={ + [9553]={ [1]={ [1]={ limit={ @@ -214100,7 +217277,7 @@ return { [1]="monster_grants_no_flask_charges" } }, - [9421]={ + [9554]={ [1]={ [1]={ limit={ @@ -214125,7 +217302,7 @@ return { [1]="primordial_altar_burning_ground_on_death_%" } }, - [9422]={ + [9555]={ [1]={ [1]={ limit={ @@ -214150,7 +217327,7 @@ return { [1]="primordial_altar_chilled_ground_on_death_%" } }, - [9423]={ + [9556]={ [1]={ [1]={ limit={ @@ -214175,7 +217352,7 @@ return { [1]="monster_remove_x_flask_charges_from_all_flasks" } }, - [9424]={ + [9557]={ [1]={ [1]={ limit={ @@ -214204,7 +217381,7 @@ return { [1]="monster_slain_experience_+%" } }, - [9425]={ + [9558]={ [1]={ [1]={ limit={ @@ -214233,7 +217410,7 @@ return { [1]="mortar_barrage_mine_damage_+%" } }, - [9426]={ + [9559]={ [1]={ [1]={ limit={ @@ -214258,7 +217435,7 @@ return { [1]="mortar_barrage_mine_num_projectiles" } }, - [9427]={ + [9560]={ [1]={ [1]={ [1]={ @@ -214295,7 +217472,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_halved_+%" } }, - [9428]={ + [9561]={ [1]={ [1]={ limit={ @@ -214324,7 +217501,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_+%" } }, - [9429]={ + [9562]={ [1]={ [1]={ limit={ @@ -214353,7 +217530,7 @@ return { [1]="movement_attack_skills_attack_speed_+%" } }, - [9430]={ + [9563]={ [1]={ [1]={ limit={ @@ -214382,7 +217559,7 @@ return { [1]="movement_skills_cooldown_speed_+%" } }, - [9431]={ + [9564]={ [1]={ [1]={ limit={ @@ -214411,7 +217588,7 @@ return { [1]="movement_skills_cooldown_speed_+%_while_affected_by_haste" } }, - [9432]={ + [9565]={ [1]={ [1]={ limit={ @@ -214427,7 +217604,7 @@ return { [1]="movement_skills_deal_no_physical_damage" } }, - [9433]={ + [9566]={ [1]={ [1]={ limit={ @@ -214456,7 +217633,7 @@ return { [1]="movement_speed_+%_if_below_100_dexterity" } }, - [9434]={ + [9567]={ [1]={ [1]={ [1]={ @@ -214493,7 +217670,7 @@ return { [1]="movement_speed_+%_if_placed_trap_or_mine_recently" } }, - [9435]={ + [9568]={ [1]={ [1]={ limit={ @@ -214509,7 +217686,7 @@ return { [1]="movement_speed_+%_per_nearby_corpse" } }, - [9436]={ + [9569]={ [1]={ [1]={ limit={ @@ -214525,7 +217702,7 @@ return { [1]="movement_speed_+%_per_nearby_enemy_up_to_50%" } }, - [9437]={ + [9570]={ [1]={ [1]={ limit={ @@ -214554,7 +217731,7 @@ return { [1]="movement_speed_+%_per_summoned_phantasm" } }, - [9438]={ + [9571]={ [1]={ [1]={ limit={ @@ -214583,7 +217760,7 @@ return { [1]="movement_speed_+%_while_you_have_two_linked_targets" } }, - [9439]={ + [9572]={ [1]={ [1]={ limit={ @@ -214599,7 +217776,7 @@ return { [1]="movement_speed_is_equal_to_highest_linked_party_member" } }, - [9440]={ + [9573]={ [1]={ [1]={ limit={ @@ -214615,7 +217792,7 @@ return { [1]="movement_speed_is_%_of_base" } }, - [9441]={ + [9574]={ [1]={ [1]={ [1]={ @@ -214652,7 +217829,7 @@ return { [1]="movement_speed_+%_if_cast_a_mark_spell_recently" } }, - [9442]={ + [9575]={ [1]={ [1]={ [1]={ @@ -214689,7 +217866,7 @@ return { [1]="movement_speed_+%_if_crit_recently" } }, - [9443]={ + [9576]={ [1]={ [1]={ [1]={ @@ -214726,7 +217903,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_recently" } }, - [9444]={ + [9577]={ [1]={ [1]={ [1]={ @@ -214763,7 +217940,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently" } }, - [9445]={ + [9578]={ [1]={ [1]={ [1]={ @@ -214800,7 +217977,7 @@ return { [1]="movement_speed_+%_if_have_cast_dash_recently" } }, - [9446]={ + [9579]={ [1]={ [1]={ [1]={ @@ -214837,7 +218014,7 @@ return { [1]="movement_speed_+%_if_have_not_taken_damage_recently" } }, - [9447]={ + [9580]={ [1]={ [1]={ [1]={ @@ -214874,7 +218051,7 @@ return { [1]="movement_speed_+%_if_have_used_a_vaal_skill_recently" } }, - [9448]={ + [9581]={ [1]={ [1]={ limit={ @@ -214890,7 +218067,7 @@ return { [1]="movement_speed_+%_per_5_rage" } }, - [9449]={ + [9582]={ [1]={ [1]={ [1]={ @@ -214927,7 +218104,7 @@ return { [1]="movement_speed_+%_per_chest_opened_recently" } }, - [9450]={ + [9583]={ [1]={ [1]={ limit={ @@ -214956,7 +218133,7 @@ return { [1]="movement_speed_+%_per_endurance_charge" } }, - [9451]={ + [9584]={ [1]={ [1]={ limit={ @@ -214972,7 +218149,7 @@ return { [1]="movement_speed_+%_per_nearby_enemy" } }, - [9452]={ + [9585]={ [1]={ [1]={ limit={ @@ -215001,7 +218178,7 @@ return { [1]="movement_speed_+%_per_poison_up_to_50%" } }, - [9453]={ + [9586]={ [1]={ [1]={ limit={ @@ -215030,7 +218207,7 @@ return { [1]="movement_speed_+%_per_power_charge" } }, - [9454]={ + [9587]={ [1]={ [1]={ limit={ @@ -215059,7 +218236,7 @@ return { [1]="movement_speed_+%_while_affected_by_grace" } }, - [9455]={ + [9588]={ [1]={ [1]={ limit={ @@ -215088,7 +218265,7 @@ return { [1]="movement_speed_+%_while_bleeding" } }, - [9456]={ + [9589]={ [1]={ [1]={ limit={ @@ -215117,7 +218294,7 @@ return { [1]="movement_speed_+%_while_dual_wielding" } }, - [9457]={ + [9590]={ [1]={ [1]={ limit={ @@ -215146,7 +218323,7 @@ return { [1]="movement_speed_+%_while_holding_shield" } }, - [9458]={ + [9591]={ [1]={ [1]={ limit={ @@ -215175,7 +218352,7 @@ return { [1]="movement_speed_+%_while_not_using_flask" } }, - [9459]={ + [9592]={ [1]={ [1]={ limit={ @@ -215204,7 +218381,7 @@ return { [1]="movement_speed_+%_while_on_burning_chilled_shocked_ground" } }, - [9460]={ + [9593]={ [1]={ [1]={ limit={ @@ -215233,7 +218410,7 @@ return { [1]="movement_speed_+%_while_on_burning_ground" } }, - [9461]={ + [9594]={ [1]={ [1]={ limit={ @@ -215262,7 +218439,7 @@ return { [1]="movement_speed_+%_while_poisoned" } }, - [9462]={ + [9595]={ [1]={ [1]={ limit={ @@ -215291,7 +218468,7 @@ return { [1]="movement_speed_+%_while_you_have_cats_stealth" } }, - [9463]={ + [9596]={ [1]={ [1]={ limit={ @@ -215320,7 +218497,7 @@ return { [1]="movement_speed_+%_while_you_have_energy_shield" } }, - [9464]={ + [9597]={ [1]={ [1]={ limit={ @@ -215349,7 +218526,7 @@ return { [1]="movement_speed_+%_while_you_have_infusion" } }, - [9465]={ + [9598]={ [1]={ [1]={ limit={ @@ -215378,7 +218555,7 @@ return { [1]="movement_velocity_+%_per_poison_stack" } }, - [9466]={ + [9599]={ [1]={ [1]={ limit={ @@ -215407,7 +218584,7 @@ return { [1]="movement_velocity_+%_while_no_gems_in_boots" } }, - [9467]={ + [9600]={ [1]={ [1]={ limit={ @@ -215436,7 +218613,7 @@ return { [1]="movement_velocity_+%_with_magic_abyss_jewel_socketed" } }, - [9468]={ + [9601]={ [1]={ [1]={ limit={ @@ -215465,7 +218642,7 @@ return { [1]="movement_velocity_+%_per_totem" } }, - [9469]={ + [9602]={ [1]={ [1]={ limit={ @@ -215494,7 +218671,7 @@ return { [1]="movement_velocity_+%_while_at_maximum_power_charges" } }, - [9470]={ + [9603]={ [1]={ [1]={ limit={ @@ -215523,7 +218700,7 @@ return { [1]="movement_velocity_+%_while_chilled" } }, - [9471]={ + [9604]={ [1]={ [1]={ [1]={ @@ -215536,14 +218713,14 @@ return { [2]="#" } }, - text="[DNT] Nearby Allies have Onslaught" + text="DNT Nearby Allies have Onslaught" } }, stats={ [1]="nearby_allies_have_onslaught" } }, - [9472]={ + [9605]={ [1]={ [1]={ limit={ @@ -215559,7 +218736,7 @@ return { [1]="nearby_corpses_explode_dealing_%_maximum_life_physical_damage_on_warcry" } }, - [9473]={ + [9606]={ [1]={ [1]={ limit={ @@ -215597,7 +218774,7 @@ return { [1]="nearby_enemies_all_exposure_%_while_phasing" } }, - [9474]={ + [9607]={ [1]={ [1]={ [1]={ @@ -215617,7 +218794,7 @@ return { [1]="nearby_enemies_are_blinded_while_you_have_active_physical_aegis" } }, - [9475]={ + [9608]={ [1]={ [1]={ [1]={ @@ -215637,7 +218814,7 @@ return { [1]="nearby_enemies_are_chilled" } }, - [9476]={ + [9609]={ [1]={ [1]={ [1]={ @@ -215661,7 +218838,7 @@ return { [1]="nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse" } }, - [9477]={ + [9610]={ [1]={ [1]={ [1]={ @@ -215681,7 +218858,7 @@ return { [1]="nearby_enemies_are_crushed_while_you_have_X_rage" } }, - [9478]={ + [9611]={ [1]={ [1]={ [1]={ @@ -215701,7 +218878,7 @@ return { [1]="nearby_enemies_are_intimidated_while_you_have_rage" } }, - [9479]={ + [9612]={ [1]={ [1]={ [1]={ @@ -215721,7 +218898,7 @@ return { [1]="nearby_enemies_are_unnerved" } }, - [9480]={ + [9613]={ [1]={ [1]={ [1]={ @@ -215741,7 +218918,7 @@ return { [1]="close_range_enemies_avoid_your_projectiles" } }, - [9481]={ + [9614]={ [1]={ [1]={ limit={ @@ -215757,7 +218934,7 @@ return { [1]="nearby_enemies_fire_dot_resistance_is_%_while_you_are_stationary" } }, - [9482]={ + [9615]={ [1]={ [1]={ [1]={ @@ -215777,7 +218954,7 @@ return { [1]="nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice" } }, - [9483]={ + [9616]={ [1]={ [1]={ [1]={ @@ -215797,7 +218974,7 @@ return { [1]="nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash" } }, - [9484]={ + [9617]={ [1]={ [1]={ [1]={ @@ -215817,7 +218994,7 @@ return { [1]="nearby_enemies_have_fire_exposure_while_you_are_at_maximum_rage" } }, - [9485]={ + [9618]={ [1]={ [1]={ [1]={ @@ -215837,7 +219014,7 @@ return { [1]="nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder" } }, - [9486]={ + [9619]={ [1]={ [1]={ limit={ @@ -215853,7 +219030,7 @@ return { [1]="nearby_enemies_lightning_resist_equal_to_yours" } }, - [9487]={ + [9620]={ [1]={ [1]={ limit={ @@ -215869,7 +219046,7 @@ return { [1]="nearby_enemies_no_fire_dot_resistance_while_you_are_stationary" } }, - [9488]={ + [9621]={ [1]={ [1]={ [1]={ @@ -215889,7 +219066,7 @@ return { [1]="nearby_enemies_physical_damage_taken_+%_per_2fortification_on_you" } }, - [9489]={ + [9622]={ [1]={ [1]={ limit={ @@ -215898,14 +219075,14 @@ return { [2]="#" } }, - text="[DNT] Nearby Non-Player Allies are Shocked, taking {0}% increased damage\nGain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies" + text="DNT Nearby Non-Player Allies are Shocked, taking {0}% increased damage\nGain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies" } }, stats={ [1]="nearby_non_player_allies_are_%_shocked_and_grant_you_charges_on_death" } }, - [9490]={ + [9623]={ [1]={ [1]={ limit={ @@ -215921,7 +219098,7 @@ return { [1]="nearby_party_members_max_endurance_charges_is_equal_to_yours" } }, - [9491]={ + [9624]={ [1]={ [1]={ limit={ @@ -215950,7 +219127,7 @@ return { [1]="necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse" } }, - [9492]={ + [9625]={ [1]={ [1]={ limit={ @@ -215979,7 +219156,7 @@ return { [1]="necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse" } }, - [9493]={ + [9626]={ [1]={ [1]={ limit={ @@ -216008,7 +219185,7 @@ return { [1]="necromancer_defensive_notable_minion_maximum_life_+%_final" } }, - [9494]={ + [9627]={ [1]={ [1]={ [1]={ @@ -216028,7 +219205,7 @@ return { [1]="necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse" } }, - [9495]={ + [9628]={ [1]={ [1]={ [1]={ @@ -216048,7 +219225,7 @@ return { [1]="necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse" } }, - [9496]={ + [9629]={ [1]={ [1]={ limit={ @@ -216077,7 +219254,7 @@ return { [1]="necromancer_minion_damage_+%_final" } }, - [9497]={ + [9630]={ [1]={ [1]={ limit={ @@ -216093,7 +219270,7 @@ return { [1]="necropolis_corrupting_tempest_on_pack_death" } }, - [9498]={ + [9631]={ [1]={ [1]={ limit={ @@ -216109,7 +219286,7 @@ return { [1]="necropolis_meteor_shower_on_pack_death" } }, - [9499]={ + [9632]={ [1]={ [1]={ limit={ @@ -216125,7 +219302,7 @@ return { [1]="necropolis_pack_monster_level_+" } }, - [9500]={ + [9633]={ [1]={ [1]={ limit={ @@ -216141,7 +219318,7 @@ return { [1]="necropolis_strongbox_on_pack_death" } }, - [9501]={ + [9634]={ [1]={ [1]={ limit={ @@ -216157,7 +219334,7 @@ return { [1]="necropolis_tormented_spirit_on_pack_death" } }, - [9502]={ + [9635]={ [1]={ [1]={ limit={ @@ -216173,7 +219350,7 @@ return { [1]="necrotic_footprints_from_item" } }, - [9503]={ + [9636]={ [1]={ [1]={ limit={ @@ -216189,7 +219366,7 @@ return { [1]="never_ignite_chill_freeze_shock" } }, - [9504]={ + [9637]={ [1]={ [1]={ limit={ @@ -216205,7 +219382,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [9505]={ + [9638]={ [1]={ [1]={ limit={ @@ -216221,7 +219398,7 @@ return { [1]="no_barrage_projectile_spread" } }, - [9506]={ + [9639]={ [1]={ [1]={ limit={ @@ -216237,7 +219414,7 @@ return { [1]="no_evasion_rating" } }, - [9507]={ + [9640]={ [1]={ [1]={ limit={ @@ -216253,7 +219430,7 @@ return { [1]="no_experience_gain" } }, - [9508]={ + [9641]={ [1]={ [1]={ limit={ @@ -216269,7 +219446,7 @@ return { [1]="no_extra_bleed_damage_while_target_is_moving" } }, - [9509]={ + [9642]={ [1]={ [1]={ limit={ @@ -216285,7 +219462,23 @@ return { [1]="no_inherent_chance_to_block_while_dual_wielding" } }, - [9510]={ + [9643]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Physical Damage Reduction is zero" + } + }, + stats={ + [1]="no_physical_damage_reduction" + } + }, + [9644]={ [1]={ [1]={ limit={ @@ -216301,7 +219494,7 @@ return { [1]="non_aura_hexes_gain_20%_effect_per_second" } }, - [9511]={ + [9645]={ [1]={ [1]={ limit={ @@ -216334,7 +219527,7 @@ return { [1]="non_aura_vaal_skills_soul_requirement_+%" } }, - [9512]={ + [9646]={ [1]={ [1]={ limit={ @@ -216350,7 +219543,7 @@ return { [1]="non_chaos_damage_%_to_add_as_chaos_damage_per_void_spawn" } }, - [9513]={ + [9647]={ [1]={ [1]={ limit={ @@ -216366,7 +219559,7 @@ return { [1]="non_chaos_damage_to_add_as_chaos_damage_%" } }, - [9514]={ + [9648]={ [1]={ [1]={ [1]={ @@ -216386,7 +219579,7 @@ return { [1]="non_chilled_enemies_you_bleed_are_chilled" } }, - [9515]={ + [9649]={ [1]={ [1]={ [1]={ @@ -216406,7 +219599,7 @@ return { [1]="non_chilled_enemies_you_poison_are_chilled" } }, - [9516]={ + [9650]={ [1]={ [1]={ limit={ @@ -216422,7 +219615,7 @@ return { [1]="non_critical_strikes_deal_no_damage" } }, - [9517]={ + [9651]={ [1]={ [1]={ limit={ @@ -216451,7 +219644,7 @@ return { [1]="non_curse_aura_effect_+%_while_you_have_broken_ward" } }, - [9518]={ + [9652]={ [1]={ [1]={ limit={ @@ -216480,7 +219673,7 @@ return { [1]="non_curse_aura_effect_+%_per_10_devotion" } }, - [9519]={ + [9653]={ [1]={ [1]={ limit={ @@ -216509,7 +219702,7 @@ return { [1]="non_curse_aura_effect_+%_while_linked" } }, - [9520]={ + [9654]={ [1]={ [1]={ limit={ @@ -216525,7 +219718,7 @@ return { [1]="non_curse_auras_only_apply_to_you_and_linked_targets" } }, - [9521]={ + [9655]={ [1]={ [1]={ [1]={ @@ -216545,7 +219738,7 @@ return { [1]="non_cursed_enemies_you_curse_are_blinded_for_4_seconds" } }, - [9522]={ + [9656]={ [1]={ [1]={ [1]={ @@ -216582,7 +219775,7 @@ return { [1]="non_damaging_ailment_effect_+%_per_blue_skill_gem" } }, - [9523]={ + [9657]={ [1]={ [1]={ [1]={ @@ -216619,7 +219812,7 @@ return { [1]="non_damaging_ailment_effect_+%_with_critical_strikes_per_100_max_player_life" } }, - [9524]={ + [9658]={ [1]={ [1]={ [1]={ @@ -216656,7 +219849,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [9525]={ + [9659]={ [1]={ [1]={ [1]={ @@ -216693,7 +219886,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self" } }, - [9526]={ + [9660]={ [1]={ [1]={ limit={ @@ -216722,7 +219915,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask" } }, - [9527]={ + [9661]={ [1]={ [1]={ [1]={ @@ -216759,7 +219952,7 @@ return { [1]="non_damaging_ailment_effect_+%_per_10_devotion" } }, - [9528]={ + [9662]={ [1]={ [1]={ [1]={ @@ -216796,7 +219989,7 @@ return { [1]="non_damaging_ailment_effect_+%_with_critical_strikes" } }, - [9529]={ + [9663]={ [1]={ [1]={ [1]={ @@ -216833,7 +220026,7 @@ return { [1]="non_damaging_ailments_as_though_damage_+%_final" } }, - [9530]={ + [9664]={ [1]={ [1]={ limit={ @@ -216849,7 +220042,7 @@ return { [1]="non_damaging_ailments_reflected_to_self" } }, - [9531]={ + [9665]={ [1]={ [1]={ [1]={ @@ -216890,7 +220083,7 @@ return { [1]="ascendancy_non_damaging_elemental_ailment_proliferation_radius" } }, - [9532]={ + [9666]={ [1]={ [1]={ limit={ @@ -216906,7 +220099,7 @@ return { [1]="non_exceptional_support_gem_level_+" } }, - [9533]={ + [9667]={ [1]={ [1]={ limit={ @@ -216922,7 +220115,7 @@ return { [1]="non_exerted_attacks_deal_no_damage" } }, - [9534]={ + [9668]={ [1]={ [1]={ limit={ @@ -216938,7 +220131,7 @@ return { [1]="non_instant_warcries_have_no_cooldown" } }, - [9535]={ + [9669]={ [1]={ [1]={ limit={ @@ -216967,7 +220160,7 @@ return { [1]="non_piercing_projectiles_critical_strike_chance_+%" } }, - [9536]={ + [9670]={ [1]={ [1]={ limit={ @@ -216983,7 +220176,23 @@ return { [1]="non_projectile_chaining_lightning_skill_additional_chains" } }, - [9537]={ + [9671]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Non-Spectre Minions' Base Attack time is equal to\nthe Attack time of your Main Hand Weapon" + } + }, + stats={ + [1]="non_spectre_minions_use_your_main_hand_base_attack_duration_from_weapon" + } + }, + [9672]={ [1]={ [1]={ [1]={ @@ -217016,7 +220225,7 @@ return { [1]="non_travel_attack_skill_repeat_count" } }, - [9538]={ + [9673]={ [1]={ [1]={ limit={ @@ -217045,7 +220254,7 @@ return { [1]="normal_monster_dropped_item_quantity_+%" } }, - [9539]={ + [9674]={ [1]={ [1]={ limit={ @@ -217061,7 +220270,7 @@ return { [1]="nova_spells_cast_at_marked_target" } }, - [9540]={ + [9675]={ [1]={ [1]={ limit={ @@ -217082,7 +220291,7 @@ return { [2]="nova_spells_cast_at_target_location_description_mode" } }, - [9541]={ + [9676]={ [1]={ [1]={ limit={ @@ -217107,7 +220316,7 @@ return { [1]="number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more" } }, - [9542]={ + [9677]={ [1]={ [1]={ [1]={ @@ -217127,7 +220336,7 @@ return { [1]="number_of_additional_chains_for_projectiles_while_phasing" } }, - [9543]={ + [9678]={ [1]={ [1]={ limit={ @@ -217152,7 +220361,7 @@ return { [1]="number_of_additional_curses_allowed_while_affected_by_malevolence" } }, - [9544]={ + [9679]={ [1]={ [1]={ limit={ @@ -217177,7 +220386,7 @@ return { [1]="number_of_additional_curses_allowed_while_at_maximum_power_charges" } }, - [9545]={ + [9680]={ [1]={ [1]={ [1]={ @@ -217210,7 +220419,7 @@ return { [1]="number_of_additional_hallowing_flame_allowed" } }, - [9546]={ + [9681]={ [1]={ [1]={ limit={ @@ -217235,7 +220444,7 @@ return { [1]="number_of_additional_ignites_allowed" } }, - [9547]={ + [9682]={ [1]={ [1]={ [1]={ @@ -217268,7 +220477,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_dex" } }, - [9548]={ + [9683]={ [1]={ [1]={ [1]={ @@ -217301,7 +220510,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_int" } }, - [9549]={ + [9684]={ [1]={ [1]={ [1]={ @@ -217334,7 +220543,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_been_hit_recently" } }, - [9550]={ + [9685]={ [1]={ [1]={ [1]={ @@ -217367,7 +220576,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_used_movement_skill_recently" } }, - [9551]={ + [9686]={ [1]={ [1]={ limit={ @@ -217383,7 +220592,7 @@ return { [1]="number_of_additional_searing_bond_totems_allowed" } }, - [9552]={ + [9687]={ [1]={ [1]={ limit={ @@ -217399,7 +220608,7 @@ return { [1]="number_of_additional_totems_allowed_per_maximum_power_charge" } }, - [9553]={ + [9688]={ [1]={ [1]={ limit={ @@ -217424,7 +220633,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [9554]={ + [9689]={ [1]={ [1]={ limit={ @@ -217445,7 +220654,7 @@ return { [2]="quality_display_firewall_is_gem" } }, - [9555]={ + [9690]={ [1]={ [1]={ limit={ @@ -217466,7 +220675,7 @@ return { [2]="quality_display_animate_weapon_is_gem" } }, - [9556]={ + [9691]={ [1]={ [1]={ limit={ @@ -217482,7 +220691,7 @@ return { [1]="base_number_of_arbalists" } }, - [9557]={ + [9692]={ [1]={ [1]={ limit={ @@ -217507,7 +220716,7 @@ return { [1]="number_of_endurance_charges_to_gain_every_4_seconds_while_stationary" } }, - [9558]={ + [9693]={ [1]={ [1]={ limit={ @@ -217523,7 +220732,7 @@ return { [1]="number_of_ghost_totems_allowed" } }, - [9559]={ + [9694]={ [1]={ [1]={ limit={ @@ -217539,7 +220748,7 @@ return { [1]="number_of_golems_allowed_with_3_primordial_jewels" } }, - [9560]={ + [9695]={ [1]={ [1]={ limit={ @@ -217564,7 +220773,7 @@ return { [1]="number_of_projectiles_+%_final_from_skill" } }, - [9561]={ + [9696]={ [1]={ [1]={ limit={ @@ -217580,7 +220789,7 @@ return { [1]="number_of_raging_spirits_is_limited_to_3" } }, - [9562]={ + [9697]={ [1]={ [1]={ [1]={ @@ -217600,7 +220809,7 @@ return { [1]="number_of_skeletons_allowed_per_2_old" } }, - [9563]={ + [9698]={ [1]={ [1]={ limit={ @@ -217616,7 +220825,7 @@ return { [1]="number_of_support_ghosts_is_limited_to_3" } }, - [9564]={ + [9699]={ [1]={ [1]={ limit={ @@ -217632,7 +220841,7 @@ return { [1]="number_of_zombies_allowed_+1_per_X_intelligence_from_foulborn_baron" } }, - [9565]={ + [9700]={ [1]={ [1]={ limit={ @@ -217648,7 +220857,23 @@ return { [1]="number_of_zombies_allowed_+1_per_X_strength" } }, - [9566]={ + [9701]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="If your Linked Mercenary dies, the Link owner does not also die" + } + }, + stats={ + [1]="objects_linked_to_your_permanenet_mercenaries_do_not_die_when_they_die" + } + }, + [9702]={ [1]={ [1]={ limit={ @@ -217677,7 +220902,7 @@ return { [1]="occultist_chaos_damage_+%_final" } }, - [9567]={ + [9703]={ [1]={ [1]={ limit={ @@ -217706,7 +220931,7 @@ return { [1]="occultist_cold_damage_+%_final" } }, - [9568]={ + [9704]={ [1]={ [1]={ limit={ @@ -217722,7 +220947,7 @@ return { [1]="off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword" } }, - [9569]={ + [9705]={ [1]={ [1]={ limit={ @@ -217751,7 +220976,7 @@ return { [1]="off_hand_attack_speed_+%_while_dual_wielding" } }, - [9570]={ + [9706]={ [1]={ [1]={ limit={ @@ -217780,7 +221005,7 @@ return { [1]="off_hand_attack_speed_+%_while_wielding_two_weapon_types" } }, - [9571]={ + [9707]={ [1]={ [1]={ [1]={ @@ -217800,7 +221025,7 @@ return { [1]="off_hand_base_attack_time_+_ms" } }, - [9572]={ + [9708]={ [1]={ [1]={ limit={ @@ -217829,7 +221054,7 @@ return { [1]="off_hand_claw_mana_gain_on_hit" } }, - [9573]={ + [9709]={ [1]={ [1]={ [1]={ @@ -217849,7 +221074,7 @@ return { [1]="off_hand_critical_strike_chance_+_per_10_es_on_shield" } }, - [9574]={ + [9710]={ [1]={ [1]={ limit={ @@ -217865,7 +221090,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_10_es_on_shield" } }, - [9575]={ + [9711]={ [1]={ [1]={ limit={ @@ -217881,7 +221106,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100" } }, - [9576]={ + [9712]={ [1]={ [1]={ limit={ @@ -217897,7 +221122,7 @@ return { [1]="off_hand_treat_enemy_resistances_as_negated_on_elemental_damage_hit" } }, - [9577]={ + [9713]={ [1]={ [1]={ limit={ @@ -217926,7 +221151,7 @@ return { [1]="offering_duration_+%" } }, - [9578]={ + [9714]={ [1]={ [1]={ limit={ @@ -217942,7 +221167,7 @@ return { [1]="offering_skills_do_not_require_corpses" } }, - [9579]={ + [9715]={ [1]={ [1]={ limit={ @@ -217958,7 +221183,7 @@ return { [1]="offerings_kill_affected_damagable_targets_when_offering_duration_expires" } }, - [9580]={ + [9716]={ [1]={ [1]={ limit={ @@ -217974,7 +221199,7 @@ return { [1]="on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds" } }, - [9581]={ + [9717]={ [1]={ [1]={ limit={ @@ -217990,7 +221215,7 @@ return { [1]="on_leaving_banner_area_recover_%_of_planted_banner_resources" } }, - [9582]={ + [9718]={ [1]={ [1]={ [1]={ @@ -218010,7 +221235,7 @@ return { [1]="on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage" } }, - [9583]={ + [9719]={ [1]={ [1]={ limit={ @@ -218026,7 +221251,7 @@ return { [1]="open_nearby_chests_on_cast_chance_%" } }, - [9584]={ + [9720]={ [1]={ [1]={ limit={ @@ -218042,7 +221267,7 @@ return { [1]="open_nearby_chests_on_warcry" } }, - [9585]={ + [9721]={ [1]={ [1]={ limit={ @@ -218058,7 +221283,7 @@ return { [1]="orb_of_storm_strike_rate_while_channelling_+%" } }, - [9586]={ + [9722]={ [1]={ [1]={ limit={ @@ -218074,7 +221299,7 @@ return { [1]="orb_of_storms_cast_speed_+%" } }, - [9587]={ + [9723]={ [1]={ [1]={ limit={ @@ -218090,7 +221315,7 @@ return { [1]="override_maximum_damage_resistance_%" } }, - [9588]={ + [9724]={ [1]={ [1]={ [1]={ @@ -218110,7 +221335,7 @@ return { [1]="override_weapon_base_critical_strike_chance" } }, - [9589]={ + [9725]={ [1]={ [1]={ [1]={ @@ -218130,7 +221355,7 @@ return { [1]="overwhelm_phys_reduction_%_while_have_sacrificial_zeal" } }, - [9590]={ + [9726]={ [1]={ [1]={ limit={ @@ -218146,7 +221371,7 @@ return { [1]="pack_accompanied_by_a_harbinger" } }, - [9591]={ + [9727]={ [1]={ [1]={ limit={ @@ -218162,7 +221387,7 @@ return { [1]="pack_accompanied_by_a_map_boss" } }, - [9592]={ + [9728]={ [1]={ [1]={ limit={ @@ -218178,7 +221403,7 @@ return { [1]="pack_accompanied_by_a_rogue_exile" } }, - [9593]={ + [9729]={ [1]={ [1]={ limit={ @@ -218194,7 +221419,7 @@ return { [1]="pack_create_lesser_shrine_on_death" } }, - [9594]={ + [9730]={ [1]={ [1]={ limit={ @@ -218210,7 +221435,7 @@ return { [1]="pack_is_tormented" } }, - [9595]={ + [9731]={ [1]={ [1]={ limit={ @@ -218239,7 +221464,7 @@ return { [1]="pack_size_+%" } }, - [9596]={ + [9732]={ [1]={ [1]={ limit={ @@ -218255,7 +221480,7 @@ return { [1]="pack_upgrade_to_magic_chance_%" } }, - [9597]={ + [9733]={ [1]={ [1]={ limit={ @@ -218271,7 +221496,7 @@ return { [1]="pack_upgrade_to_rare_chance_%" } }, - [9598]={ + [9734]={ [1]={ [1]={ limit={ @@ -218300,7 +221525,7 @@ return { [1]="pantheon_abberath_ignite_duration_on_self_+%_final" } }, - [9599]={ + [9735]={ [1]={ [1]={ limit={ @@ -218329,7 +221554,7 @@ return { [1]="pantheon_shakari_self_poison_duration_+%_final" } }, - [9600]={ + [9736]={ [1]={ [1]={ limit={ @@ -218358,7 +221583,7 @@ return { [1]="passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield" } }, - [9601]={ + [9737]={ [1]={ [1]={ limit={ @@ -218387,7 +221612,7 @@ return { [1]="passive_mastery_damage_taken_over_time_+%_final" } }, - [9602]={ + [9738]={ [1]={ [1]={ limit={ @@ -218416,7 +221641,7 @@ return { [1]="passive_mastery_hit_ailment_damage_+%_final_vs_enemies_with_5+_poisons" } }, - [9603]={ + [9739]={ [1]={ [1]={ limit={ @@ -218445,7 +221670,7 @@ return { [1]="passive_mastery_less_projectile_speed_+%_final" } }, - [9604]={ + [9740]={ [1]={ [1]={ limit={ @@ -218474,7 +221699,7 @@ return { [1]="passive_mastery_less_skill_effect_duration_+%_final" } }, - [9605]={ + [9741]={ [1]={ [1]={ limit={ @@ -218503,7 +221728,7 @@ return { [1]="passive_mastery_maximum_physical_attack_damage_+%_final_with_daggers" } }, - [9606]={ + [9742]={ [1]={ [1]={ limit={ @@ -218532,7 +221757,7 @@ return { [1]="passive_mastery_more_projectile_speed_+%_final" } }, - [9607]={ + [9743]={ [1]={ [1]={ limit={ @@ -218561,7 +221786,7 @@ return { [1]="passive_mastery_more_skill_effect_duration_+%_final" } }, - [9608]={ + [9744]={ [1]={ [1]={ limit={ @@ -218590,7 +221815,7 @@ return { [1]="passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield" } }, - [9609]={ + [9745]={ [1]={ [1]={ [1]={ @@ -218623,7 +221848,7 @@ return { [1]="passive_mastery_shock_proliferation_radius" } }, - [9610]={ + [9746]={ [1]={ [1]={ limit={ @@ -218652,7 +221877,7 @@ return { [1]="passive_mastery_stun_duration_+%_final_with_two_hand_weapon" } }, - [9611]={ + [9747]={ [1]={ [1]={ limit={ @@ -218681,7 +221906,7 @@ return { [1]="passive_skill_hits_stun_as_if_dealing_melee_fire_damage_+%_final" } }, - [9612]={ + [9748]={ [1]={ [1]={ limit={ @@ -218710,7 +221935,7 @@ return { [1]="passive_skill_ignites_from_stunning_melee_hits_deal_damage_+%_final" } }, - [9613]={ + [9749]={ [1]={ [1]={ limit={ @@ -218739,7 +221964,7 @@ return { [1]="pathfinder_flask_life_to_recover_+%_final" } }, - [9614]={ + [9750]={ [1]={ [1]={ limit={ @@ -218755,7 +221980,7 @@ return { [1]="pathfinder_poison_damage_+100%_final_chance_during_flask_effect" } }, - [9615]={ + [9751]={ [1]={ [1]={ limit={ @@ -218784,7 +222009,7 @@ return { [1]="penance_brand_area_of_effect_+%" } }, - [9616]={ + [9752]={ [1]={ [1]={ limit={ @@ -218813,7 +222038,7 @@ return { [1]="penance_brand_cast_speed_+%" } }, - [9617]={ + [9753]={ [1]={ [1]={ limit={ @@ -218842,7 +222067,7 @@ return { [1]="penance_brand_damage_+%" } }, - [9618]={ + [9754]={ [1]={ [1]={ limit={ @@ -218858,7 +222083,7 @@ return { [1]="penance_mark_phantasms_chance_to_grant_vaal_soul_on_death_%" } }, - [9619]={ + [9755]={ [1]={ [1]={ limit={ @@ -218887,7 +222112,7 @@ return { [1]="penance_mark_phantasms_grant_%_increased_flask_charges" } }, - [9620]={ + [9756]={ [1]={ [1]={ limit={ @@ -218903,7 +222128,7 @@ return { [1]="penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you" } }, - [9621]={ + [9757]={ [1]={ [1]={ limit={ @@ -218919,7 +222144,7 @@ return { [1]="perandus_double_number_of_coins_found" } }, - [9622]={ + [9758]={ [1]={ [1]={ limit={ @@ -218935,7 +222160,7 @@ return { [1]="%_chance_to_deal_150%_area_damage_+%_final" } }, - [9623]={ + [9759]={ [1]={ [1]={ [1]={ @@ -218955,7 +222180,7 @@ return { [1]="%_chance_to_duplicate_dropped_currency" } }, - [9624]={ + [9760]={ [1]={ [1]={ limit={ @@ -218971,7 +222196,7 @@ return { [1]="%_chance_to_duplicate_dropped_divination_cards" } }, - [9625]={ + [9761]={ [1]={ [1]={ limit={ @@ -218987,7 +222212,7 @@ return { [1]="%_chance_to_duplicate_dropped_maps" } }, - [9626]={ + [9762]={ [1]={ [1]={ limit={ @@ -219003,7 +222228,7 @@ return { [1]="%_chance_to_duplicate_dropped_scarabs" } }, - [9627]={ + [9763]={ [1]={ [1]={ limit={ @@ -219019,7 +222244,7 @@ return { [1]="%_chance_to_duplicate_dropped_uniques" } }, - [9628]={ + [9764]={ [1]={ [1]={ limit={ @@ -219044,7 +222269,7 @@ return { [1]="%_chance_to_gain_endurance_charge_each_second_while_channelling" } }, - [9629]={ + [9765]={ [1]={ [1]={ limit={ @@ -219060,7 +222285,7 @@ return { [1]="%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy" } }, - [9630]={ + [9766]={ [1]={ [1]={ [1]={ @@ -219080,7 +222305,7 @@ return { [1]="%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace" } }, - [9631]={ + [9767]={ [1]={ [1]={ limit={ @@ -219113,7 +222338,7 @@ return { [1]="%_number_of_raging_spirits_allowed" } }, - [9632]={ + [9768]={ [1]={ [1]={ limit={ @@ -219138,7 +222363,189 @@ return { [1]="%_physical_damage_bypasses_energy_shield" } }, - [9633]={ + [9769]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextTaunt" + }, + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Your Mercenary has {0}% chance to Taunt on Hit" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextTaunt" + }, + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Your Mercenary Taunts on Hit" + } + }, + stats={ + [1]="permanenet_mercenary_chance_to_taunt_on_hit_%" + } + }, + [9770]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Mercenary and their Minions deal {0}% increased Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Your Mercenary and their Minions deal {0}% reduced Damage" + } + }, + stats={ + [1]="permanenet_mercenary_damage_+%_and_minion_damage_+%" + } + }, + [9771]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Mercenary and their Minions deal {}% more Damage for\neach Unique item they have equipped" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Your Mercenary and their Minions deal {}% less Damage for\neach Unique item they have equipped" + } + }, + stats={ + [1]="permanenet_mercenary_damage_+%_final_and_minion_damage_+%_final_per_equipped_unique" + } + }, + [9772]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecoup" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="If your Mercenary's Life is lower than your own, {0}% of Damage they take is Recouped as Life" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextRecoupNegative" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="If your Mercenary's Life is lower than your own, {0}% of Damage they take is Recouped as Life" + } + }, + stats={ + [1]="permanenet_mercenary_damage_taken_recouped_as_life_%_if_life_lower_than_parents_life" + } + }, + [9773]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Mercenary and their Minions have {0}% increased maximum Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Your Mercenary and their Minions have {0}% reduced maximum Life" + } + }, + stats={ + [1]="permanenet_mercenary_maximum_life_+%_and_minion_maximum_life_+%" + } + }, + [9774]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Mercenary has {0}% increased effect of Non-Curse Auras from Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Your Mercenary has {0}% reduced effect of Non-Curse Auras from Skills" + } + }, + stats={ + [1]="permanenet_mercenary_non_curse_aura_effect_+%" + } + }, + [9775]={ [1]={ [1]={ limit={ @@ -219154,7 +222561,7 @@ return { [1]="permanent_damage_+%_per_second_of_chill" } }, - [9634]={ + [9776]={ [1]={ [1]={ limit={ @@ -219170,7 +222577,7 @@ return { [1]="permanent_damage_+%_per_second_of_freeze" } }, - [9635]={ + [9777]={ [1]={ [1]={ [1]={ @@ -219190,7 +222597,7 @@ return { [1]="permanently_intimidate_enemy_on_block" } }, - [9636]={ + [9778]={ [1]={ [1]={ [1]={ @@ -219227,7 +222634,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_-2%_per_1" } }, - [9637]={ + [9779]={ [1]={ [1]={ limit={ @@ -219256,7 +222663,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_+%" } }, - [9638]={ + [9780]={ [1]={ [1]={ limit={ @@ -219289,7 +222696,7 @@ return { [1]="petrified_blood_reservation_+%" } }, - [9639]={ + [9781]={ [1]={ [1]={ limit={ @@ -219314,7 +222721,7 @@ return { [1]="phantasm_refresh_duration_on_hit_vs_rare_or_unique_%_chance" } }, - [9640]={ + [9782]={ [1]={ [1]={ limit={ @@ -219339,7 +222746,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [9641]={ + [9783]={ [1]={ [1]={ [1]={ @@ -219359,7 +222766,7 @@ return { [1]="phasing_if_blocked_recently" } }, - [9642]={ + [9784]={ [1]={ [1]={ limit={ @@ -219388,7 +222795,7 @@ return { [1]="phys_cascade_trap_cooldown_speed_+%" } }, - [9643]={ + [9785]={ [1]={ [1]={ limit={ @@ -219417,7 +222824,7 @@ return { [1]="phys_cascade_trap_damage_+%" } }, - [9644]={ + [9786]={ [1]={ [1]={ limit={ @@ -219446,7 +222853,7 @@ return { [1]="phys_cascade_trap_duration_+%" } }, - [9645]={ + [9787]={ [1]={ [1]={ limit={ @@ -219471,7 +222878,7 @@ return { [1]="phys_cascade_trap_number_of_additional_cascades" } }, - [9646]={ + [9788]={ [1]={ [1]={ limit={ @@ -219500,7 +222907,7 @@ return { [1]="physical_and_chaos_damage_taken_+%_final_while_not_unhinged" } }, - [9647]={ + [9789]={ [1]={ [1]={ [1]={ @@ -219520,7 +222927,7 @@ return { [1]="physical_damage_%_to_add_as_chaos_if_have_used_amethyst_flask_recently" } }, - [9648]={ + [9790]={ [1]={ [1]={ [1]={ @@ -219540,7 +222947,7 @@ return { [1]="physical_damage_%_to_add_as_cold_if_have_used_sapphire_flask_recently" } }, - [9649]={ + [9791]={ [1]={ [1]={ limit={ @@ -219556,7 +222963,7 @@ return { [1]="physical_damage_%_to_add_as_each_element_per_spirit_charge" } }, - [9650]={ + [9792]={ [1]={ [1]={ [1]={ @@ -219576,7 +222983,7 @@ return { [1]="physical_damage_%_to_add_as_fire_if_have_used_ruby_flask_recently" } }, - [9651]={ + [9793]={ [1]={ [1]={ [1]={ @@ -219600,7 +223007,7 @@ return { [1]="physical_damage_%_to_add_as_lightning_damage_per_hallowing_flame_consumed_by_ally_up_to_80%" } }, - [9652]={ + [9794]={ [1]={ [1]={ [1]={ @@ -219620,7 +223027,7 @@ return { [1]="physical_damage_%_to_add_as_lightning_if_have_used_topaz_flask_recently" } }, - [9653]={ + [9795]={ [1]={ [1]={ limit={ @@ -219636,7 +223043,7 @@ return { [1]="physical_damage_+%_per_explicit_map_mod_affecting_area" } }, - [9654]={ + [9796]={ [1]={ [1]={ limit={ @@ -219652,7 +223059,7 @@ return { [1]="physical_damage_from_hits_%_taken_as_random_element" } }, - [9655]={ + [9797]={ [1]={ [1]={ limit={ @@ -219681,7 +223088,7 @@ return { [1]="physical_damage_over_time_taken_+%_while_moving" } }, - [9656]={ + [9798]={ [1]={ [1]={ limit={ @@ -219697,7 +223104,7 @@ return { [1]="physical_damage_%_to_add_as_chaos_vs_poisoned_enemies" } }, - [9657]={ + [9799]={ [1]={ [1]={ limit={ @@ -219713,7 +223120,7 @@ return { [1]="physical_damage_%_to_add_as_fire_damage_while_affected_by_anger" } }, - [9658]={ + [9800]={ [1]={ [1]={ [1]={ @@ -219733,7 +223140,7 @@ return { [1]="physical_damage_%_to_add_as_fire_if_have_crit_recently" } }, - [9659]={ + [9801]={ [1]={ [1]={ limit={ @@ -219749,7 +223156,7 @@ return { [1]="physical_damage_%_to_add_as_fire_per_rage" } }, - [9660]={ + [9802]={ [1]={ [1]={ limit={ @@ -219765,7 +223172,7 @@ return { [1]="physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath" } }, - [9661]={ + [9803]={ [1]={ [1]={ limit={ @@ -219781,7 +223188,7 @@ return { [1]="physical_damage_%_to_add_as_random_element_while_ignited" } }, - [9662]={ + [9804]={ [1]={ [1]={ limit={ @@ -219797,7 +223204,7 @@ return { [1]="physical_damage_%_to_convert_to_cold_at_devotion_threshold" } }, - [9663]={ + [9805]={ [1]={ [1]={ limit={ @@ -219813,7 +223220,7 @@ return { [1]="physical_damage_%_to_convert_to_fire_at_devotion_threshold" } }, - [9664]={ + [9806]={ [1]={ [1]={ limit={ @@ -219829,7 +223236,7 @@ return { [1]="physical_damage_%_to_convert_to_lightning_at_devotion_threshold" } }, - [9665]={ + [9807]={ [1]={ [1]={ limit={ @@ -219858,7 +223265,7 @@ return { [1]="physical_damage_+%_if_skill_costs_life" } }, - [9666]={ + [9808]={ [1]={ [1]={ limit={ @@ -219887,7 +223294,7 @@ return { [1]="physical_damage_+%_per_10_rage" } }, - [9667]={ + [9809]={ [1]={ [1]={ [1]={ @@ -219924,7 +223331,7 @@ return { [1]="physical_damage_+%_vs_ignited_enemies" } }, - [9668]={ + [9810]={ [1]={ [1]={ limit={ @@ -219953,7 +223360,7 @@ return { [1]="physical_damage_+%_while_affected_by_herald_of_purity" } }, - [9669]={ + [9811]={ [1]={ [1]={ limit={ @@ -219982,7 +223389,7 @@ return { [1]="physical_damage_+%_with_axes_swords" } }, - [9670]={ + [9812]={ [1]={ [1]={ limit={ @@ -220011,7 +223418,7 @@ return { [1]="physical_damage_+%_with_unholy_might" } }, - [9671]={ + [9813]={ [1]={ [1]={ limit={ @@ -220027,7 +223434,7 @@ return { [1]="physical_damage_reduction_%_at_devotion_threshold" } }, - [9672]={ + [9814]={ [1]={ [1]={ limit={ @@ -220043,7 +223450,7 @@ return { [1]="physical_damage_reduction_percent_per_frenzy_charge" } }, - [9673]={ + [9815]={ [1]={ [1]={ [1]={ @@ -220063,7 +223470,7 @@ return { [1]="physical_damage_reduction_%_per_hit_you_have_taken_recently" } }, - [9674]={ + [9816]={ [1]={ [1]={ limit={ @@ -220079,7 +223486,7 @@ return { [1]="physical_damage_reduction_percent_per_power_charge" } }, - [9675]={ + [9817]={ [1]={ [1]={ limit={ @@ -220095,7 +223502,7 @@ return { [1]="physical_damage_reduction_%_while_affected_by_herald_of_purity" } }, - [9676]={ + [9818]={ [1]={ [1]={ limit={ @@ -220111,7 +223518,7 @@ return { [1]="physical_damage_reduction_rating_during_soul_gain_prevention" } }, - [9677]={ + [9819]={ [1]={ [1]={ [1]={ @@ -220131,7 +223538,7 @@ return { [1]="physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently" } }, - [9678]={ + [9820]={ [1]={ [1]={ limit={ @@ -220147,7 +223554,7 @@ return { [1]="physical_damage_reduction_rating_per_endurance_charge" } }, - [9679]={ + [9821]={ [1]={ [1]={ limit={ @@ -220163,7 +223570,7 @@ return { [1]="physical_damage_reduction_%_if_only_one_enemy_nearby" } }, - [9680]={ + [9822]={ [1]={ [1]={ limit={ @@ -220179,7 +223586,7 @@ return { [1]="physical_damage_reduction_rating_+%_per_endurance_charge" } }, - [9681]={ + [9823]={ [1]={ [1]={ limit={ @@ -220195,7 +223602,7 @@ return { [1]="physical_damage_reduction_%_per_nearby_enemy" } }, - [9682]={ + [9824]={ [1]={ [1]={ limit={ @@ -220211,7 +223618,7 @@ return { [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements" } }, - [9683]={ + [9825]={ [1]={ [1]={ limit={ @@ -220227,7 +223634,7 @@ return { [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice" } }, - [9684]={ + [9826]={ [1]={ [1]={ limit={ @@ -220243,7 +223650,7 @@ return { [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements" } }, - [9685]={ + [9827]={ [1]={ [1]={ limit={ @@ -220259,7 +223666,7 @@ return { [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire" } }, - [9686]={ + [9828]={ [1]={ [1]={ limit={ @@ -220275,7 +223682,7 @@ return { [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements" } }, - [9687]={ + [9829]={ [1]={ [1]={ limit={ @@ -220291,7 +223698,7 @@ return { [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning" } }, - [9688]={ + [9830]={ [1]={ [1]={ [1]={ @@ -220311,7 +223718,7 @@ return { [1]="physical_damage_taken_recouped_as_life_%" } }, - [9689]={ + [9831]={ [1]={ [1]={ limit={ @@ -220340,7 +223747,7 @@ return { [1]="physical_damage_with_attack_skills_+%" } }, - [9690]={ + [9832]={ [1]={ [1]={ limit={ @@ -220369,7 +223776,7 @@ return { [1]="physical_damage_with_spell_skills_+%" } }, - [9691]={ + [9833]={ [1]={ [1]={ [1]={ @@ -220389,7 +223796,7 @@ return { [1]="physical_dot_multiplier_+_if_crit_recently" } }, - [9692]={ + [9834]={ [1]={ [1]={ [1]={ @@ -220409,7 +223816,7 @@ return { [1]="physical_dot_multiplier_+_if_spent_life_recently" } }, - [9693]={ + [9835]={ [1]={ [1]={ limit={ @@ -220438,7 +223845,7 @@ return { [1]="physical_dot_multiplier_+_while_wielding_axes_swords" } }, - [9694]={ + [9836]={ [1]={ [1]={ limit={ @@ -220454,7 +223861,7 @@ return { [1]="physical_hit_and_dot_damage_%_taken_as_fire" } }, - [9695]={ + [9837]={ [1]={ [1]={ limit={ @@ -220487,7 +223894,7 @@ return { [1]="physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%" } }, - [9696]={ + [9838]={ [1]={ [1]={ limit={ @@ -220503,7 +223910,7 @@ return { [1]="physical_skill_gem_level_+" } }, - [9697]={ + [9839]={ [1]={ [1]={ limit={ @@ -220532,7 +223939,7 @@ return { [1]="piercing_projectiles_critical_strike_chance_+%" } }, - [9698]={ + [9840]={ [1]={ [1]={ limit={ @@ -220561,7 +223968,7 @@ return { [1]="placed_banner_attack_damage_+%" } }, - [9699]={ + [9841]={ [1]={ [1]={ limit={ @@ -220590,7 +223997,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [9700]={ + [9842]={ [1]={ [1]={ limit={ @@ -220619,7 +224026,7 @@ return { [1]="plague_bearer_maximum_stored_poison_damage_+%" } }, - [9701]={ + [9843]={ [1]={ [1]={ limit={ @@ -220648,7 +224055,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [9702]={ + [9844]={ [1]={ [1]={ limit={ @@ -220664,7 +224071,7 @@ return { [1]="player_can_be_touched_by_tormented_spirits" } }, - [9703]={ + [9845]={ [1]={ [1]={ limit={ @@ -220680,7 +224087,7 @@ return { [1]="+1_max_charged_attack_stages" } }, - [9704]={ + [9846]={ [1]={ [1]={ limit={ @@ -220709,7 +224116,7 @@ return { [1]="poison_damage_+%_per_frenzy_charge" } }, - [9705]={ + [9847]={ [1]={ [1]={ limit={ @@ -220738,7 +224145,7 @@ return { [1]="poison_damage_+%_per_power_charge" } }, - [9706]={ + [9848]={ [1]={ [1]={ limit={ @@ -220767,7 +224174,7 @@ return { [1]="poison_damage_+%_vs_bleeding_enemies" } }, - [9707]={ + [9849]={ [1]={ [1]={ limit={ @@ -220796,7 +224203,7 @@ return { [1]="poison_damage_+%_with_over_300_dexterity" } }, - [9708]={ + [9850]={ [1]={ [1]={ limit={ @@ -220812,7 +224219,7 @@ return { [1]="poison_dot_multiplier_+_per_frenzy_charge" } }, - [9709]={ + [9851]={ [1]={ [1]={ limit={ @@ -220841,7 +224248,7 @@ return { [1]="poison_dot_multiplier_+_vs_bleeding_enemies" } }, - [9710]={ + [9852]={ [1]={ [1]={ limit={ @@ -220870,7 +224277,7 @@ return { [1]="poison_dot_multiplier_+_with_spells" } }, - [9711]={ + [9853]={ [1]={ [1]={ [1]={ @@ -220907,7 +224314,7 @@ return { [1]="poison_duration_+%_per_poison_applied_recently" } }, - [9712]={ + [9854]={ [1]={ [1]={ limit={ @@ -220936,7 +224343,7 @@ return { [1]="poison_duration_+%_per_power_charge" } }, - [9713]={ + [9855]={ [1]={ [1]={ limit={ @@ -220965,7 +224372,7 @@ return { [1]="poison_duration_+%_with_over_150_intelligence" } }, - [9714]={ + [9856]={ [1]={ [1]={ [1]={ @@ -220985,7 +224392,7 @@ return { [1]="poison_on_critical_strike" } }, - [9715]={ + [9857]={ [1]={ [1]={ limit={ @@ -221014,7 +224421,7 @@ return { [1]="poison_on_non_poisoned_enemies_damage_+%" } }, - [9716]={ + [9858]={ [1]={ [1]={ [1]={ @@ -221034,7 +224441,7 @@ return { [1]="poison_reflected_to_self" } }, - [9717]={ + [9859]={ [1]={ [1]={ limit={ @@ -221071,7 +224478,7 @@ return { [1]="poison_time_passed_+%" } }, - [9718]={ + [9860]={ [1]={ [1]={ limit={ @@ -221100,7 +224507,7 @@ return { [1]="poisonous_concoction_damage_+%" } }, - [9719]={ + [9861]={ [1]={ [1]={ limit={ @@ -221129,7 +224536,7 @@ return { [1]="poisonous_concoction_flask_charges_consumed_+%" } }, - [9720]={ + [9862]={ [1]={ [1]={ limit={ @@ -221158,7 +224565,7 @@ return { [1]="poisonous_concoction_skill_area_of_effect_+%" } }, - [9721]={ + [9863]={ [1]={ [1]={ [1]={ @@ -221178,7 +224585,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [9722]={ + [9864]={ [1]={ [1]={ limit={ @@ -221194,7 +224601,7 @@ return { [1]="posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers" } }, - [9723]={ + [9865]={ [1]={ [1]={ limit={ @@ -221223,7 +224630,7 @@ return { [1]="power_charge_duration_+%_final" } }, - [9724]={ + [9866]={ [1]={ [1]={ limit={ @@ -221239,7 +224646,7 @@ return { [1]="power_charge_on_kill_percent_chance_while_holding_shield" } }, - [9725]={ + [9867]={ [1]={ [1]={ limit={ @@ -221255,7 +224662,7 @@ return { [1]="power_charge_on_non_critical_strike_%_chance_with_claws_daggers" } }, - [9726]={ + [9868]={ [1]={ [1]={ limit={ @@ -221271,7 +224678,7 @@ return { [1]="power_charge_on_spell_block_%_chance" } }, - [9727]={ + [9869]={ [1]={ [1]={ limit={ @@ -221296,7 +224703,7 @@ return { [1]="power_siphon_number_of_additional_projectiles" } }, - [9728]={ + [9870]={ [1]={ [1]={ [1]={ @@ -221333,7 +224740,7 @@ return { [1]="precision_mana_reservation_efficiency_-2%_per_1" } }, - [9729]={ + [9871]={ [1]={ [1]={ limit={ @@ -221349,7 +224756,7 @@ return { [1]="precision_mana_reservation_efficiency_+100%" } }, - [9730]={ + [9872]={ [1]={ [1]={ limit={ @@ -221378,7 +224785,7 @@ return { [1]="precision_mana_reservation_efficiency_+%" } }, - [9731]={ + [9873]={ [1]={ [1]={ limit={ @@ -221394,7 +224801,7 @@ return { [1]="precision_mana_reservation_-50%_final" } }, - [9732]={ + [9874]={ [1]={ [1]={ limit={ @@ -221423,7 +224830,7 @@ return { [1]="precision_mana_reservation_+%" } }, - [9733]={ + [9875]={ [1]={ [1]={ limit={ @@ -221439,7 +224846,7 @@ return { [1]="precision_reserves_no_mana" } }, - [9734]={ + [9876]={ [1]={ [1]={ limit={ @@ -221464,7 +224871,7 @@ return { [1]="prevent_projectile_chaining_%_chance" } }, - [9735]={ + [9877]={ [1]={ [1]={ limit={ @@ -221493,7 +224900,7 @@ return { [1]="pride_aura_effect_+%" } }, - [9736]={ + [9878]={ [1]={ [1]={ limit={ @@ -221509,7 +224916,7 @@ return { [1]="pride_chance_to_deal_double_damage_%" } }, - [9737]={ + [9879]={ [1]={ [1]={ [1]={ @@ -221542,7 +224949,7 @@ return { [1]="pride_chance_to_impale_with_attacks_%" } }, - [9738]={ + [9880]={ [1]={ [1]={ [1]={ @@ -221562,7 +224969,7 @@ return { [1]="pride_intimidate_enemy_for_4_seconds_on_hit" } }, - [9739]={ + [9881]={ [1]={ [1]={ [1]={ @@ -221599,7 +225006,7 @@ return { [1]="pride_mana_reservation_efficiency_-2%_per_1" } }, - [9740]={ + [9882]={ [1]={ [1]={ limit={ @@ -221628,7 +225035,7 @@ return { [1]="pride_mana_reservation_efficiency_+%" } }, - [9741]={ + [9883]={ [1]={ [1]={ limit={ @@ -221661,7 +225068,7 @@ return { [1]="pride_mana_reservation_+%" } }, - [9742]={ + [9884]={ [1]={ [1]={ limit={ @@ -221690,7 +225097,7 @@ return { [1]="pride_physical_damage_+%" } }, - [9743]={ + [9885]={ [1]={ [1]={ limit={ @@ -221706,7 +225113,7 @@ return { [1]="pride_reserves_no_mana" } }, - [9744]={ + [9886]={ [1]={ [1]={ limit={ @@ -221722,7 +225129,7 @@ return { [1]="pride_your_impaled_debuff_lasts_+_additional_hits" } }, - [9745]={ + [9887]={ [1]={ [1]={ limit={ @@ -221738,7 +225145,7 @@ return { [1]="primalist_ascendancy_expanded_main_inventory" } }, - [9746]={ + [9888]={ [1]={ [1]={ limit={ @@ -221767,7 +225174,7 @@ return { [1]="prismatic_rain_beam_frequency_+%" } }, - [9747]={ + [9889]={ [1]={ [1]={ [1]={ @@ -221787,7 +225194,7 @@ return { [1]="prismatic_skills_always_inflict_frostburn" } }, - [9748]={ + [9890]={ [1]={ [1]={ [1]={ @@ -221807,7 +225214,7 @@ return { [1]="prismatic_skills_always_inflict_sapped" } }, - [9749]={ + [9891]={ [1]={ [1]={ [1]={ @@ -221827,7 +225234,7 @@ return { [1]="prismatic_skills_always_scorch" } }, - [9750]={ + [9892]={ [1]={ [1]={ [1]={ @@ -221847,7 +225254,7 @@ return { [1]="profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence" } }, - [9751]={ + [9893]={ [1]={ [1]={ [1]={ @@ -221867,7 +225274,7 @@ return { [1]="profane_ground_you_create_inflicts_malediction_on_enemies" } }, - [9752]={ + [9894]={ [1]={ [1]={ limit={ @@ -221883,7 +225290,7 @@ return { [1]="projecitle_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%" } }, - [9753]={ + [9895]={ [1]={ [1]={ limit={ @@ -221912,7 +225319,7 @@ return { [1]="projectile_attack_damage_+%_during_flask_effect" } }, - [9754]={ + [9896]={ [1]={ [1]={ limit={ @@ -221941,7 +225348,7 @@ return { [1]="projectile_attack_damage_+%_with_claw_or_dagger" } }, - [9755]={ + [9897]={ [1]={ [1]={ limit={ @@ -221957,7 +225364,7 @@ return { [1]="projectile_attack_skill_critical_strike_multiplier_+" } }, - [9756]={ + [9898]={ [1]={ [1]={ limit={ @@ -221986,7 +225393,7 @@ return { [1]="projectile_damage_+%_max_before_distance_increase" } }, - [9757]={ + [9899]={ [1]={ [1]={ limit={ @@ -222002,7 +225409,7 @@ return { [1]="projectile_damage_+%_per_16_dexterity" } }, - [9758]={ + [9900]={ [1]={ [1]={ limit={ @@ -222018,7 +225425,7 @@ return { [1]="projectile_damage_+%_per_chain" } }, - [9759]={ + [9901]={ [1]={ [1]={ limit={ @@ -222034,7 +225441,7 @@ return { [1]="projectile_damage_+%_per_pierced_enemy" } }, - [9760]={ + [9902]={ [1]={ [1]={ limit={ @@ -222063,7 +225470,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [9761]={ + [9903]={ [1]={ [1]={ limit={ @@ -222092,7 +225499,7 @@ return { [1]="projectile_damage_+%_vs_chained_enemy" } }, - [9762]={ + [9904]={ [1]={ [1]={ limit={ @@ -222121,7 +225528,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [9763]={ + [9905]={ [1]={ [1]={ limit={ @@ -222137,7 +225544,7 @@ return { [1]="projectile_non_chaos_damage_to_add_as_chaos_damage_%_if_chained" } }, - [9764]={ + [9906]={ [1]={ [1]={ limit={ @@ -222153,7 +225560,7 @@ return { [1]="projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain" } }, - [9765]={ + [9907]={ [1]={ [1]={ limit={ @@ -222169,7 +225576,7 @@ return { [1]="projectile_number_to_split" } }, - [9766]={ + [9908]={ [1]={ [1]={ [1]={ @@ -222189,7 +225596,7 @@ return { [1]="projectile_object_collision_behaviour_only_explode" } }, - [9767]={ + [9909]={ [1]={ [1]={ limit={ @@ -222205,7 +225612,7 @@ return { [1]="projectile_speed_+%_per_20_strength" } }, - [9768]={ + [9910]={ [1]={ [1]={ [1]={ @@ -222242,7 +225649,7 @@ return { [1]="projectile_speed_+%_with_daggers" } }, - [9769]={ + [9911]={ [1]={ [1]={ limit={ @@ -222258,7 +225665,7 @@ return { [1]="projectile_speed_+1%_per_X_evasion_rating_up_to_75%" } }, - [9770]={ + [9912]={ [1]={ [1]={ limit={ @@ -222274,7 +225681,7 @@ return { [1]="projectile_speed_variation_+%_final_with_melee_weapon_attacks" } }, - [9771]={ + [9913]={ [1]={ [1]={ [1]={ @@ -222294,7 +225701,7 @@ return { [1]="projectile_spell_cooldown_modifier_ms" } }, - [9772]={ + [9914]={ [1]={ [1]={ limit={ @@ -222310,7 +225717,7 @@ return { [1]="projectiles_always_pierce_you" } }, - [9773]={ + [9915]={ [1]={ [1]={ [1]={ @@ -222330,7 +225737,7 @@ return { [1]="projectiles_chain_any_number_of_additional_times_at_close_range" } }, - [9774]={ + [9916]={ [1]={ [1]={ limit={ @@ -222346,7 +225753,7 @@ return { [1]="projectiles_from_spells_cannot_pierce" } }, - [9775]={ + [9917]={ [1]={ [1]={ limit={ @@ -222355,14 +225762,14 @@ return { [2]="#" } }, - text="[DNT] Projectiles you create move at your speed" + text="DNT Projectiles you create move at your speed" } }, stats={ [1]="projectiles_move_at_player_speed" } }, - [9776]={ + [9918]={ [1]={ [1]={ limit={ @@ -222391,7 +225798,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_10_stat_value" } }, - [9777]={ + [9919]={ [1]={ [1]={ limit={ @@ -222420,7 +225827,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_15_stat_value" } }, - [9778]={ + [9920]={ [1]={ [1]={ limit={ @@ -222436,7 +225843,7 @@ return { [1]="projectiles_pierce_all_nearby_targets" } }, - [9779]={ + [9921]={ [1]={ [1]={ limit={ @@ -222452,7 +225859,7 @@ return { [1]="projectiles_pierce_while_phasing" } }, - [9780]={ + [9922]={ [1]={ [1]={ limit={ @@ -222477,7 +225884,7 @@ return { [1]="projectiles_pierce_x_additional_targets_while_you_have_phasing" } }, - [9781]={ + [9923]={ [1]={ [1]={ limit={ @@ -222506,7 +225913,7 @@ return { [1]="protective_link_duration_+%" } }, - [9782]={ + [9924]={ [1]={ [1]={ limit={ @@ -222522,7 +225929,7 @@ return { [1]="puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%" } }, - [9783]={ + [9925]={ [1]={ [1]={ limit={ @@ -222538,7 +225945,7 @@ return { [1]="punishment_no_reservation" } }, - [9784]={ + [9926]={ [1]={ [1]={ [1]={ @@ -222571,7 +225978,7 @@ return { [1]="puppet_master_base_duration_ms" } }, - [9785]={ + [9927]={ [1]={ [1]={ limit={ @@ -222587,7 +225994,7 @@ return { [1]="purge_additional_enemy_resistance_%" } }, - [9786]={ + [9928]={ [1]={ [1]={ limit={ @@ -222616,7 +226023,7 @@ return { [1]="purge_damage_+%" } }, - [9787]={ + [9929]={ [1]={ [1]={ limit={ @@ -222632,7 +226039,7 @@ return { [1]="purge_dot_multiplier_+_per_100ms_duration_expired" } }, - [9788]={ + [9930]={ [1]={ [1]={ limit={ @@ -222661,7 +226068,7 @@ return { [1]="purge_duration_+%" } }, - [9789]={ + [9931]={ [1]={ [1]={ limit={ @@ -222686,7 +226093,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [9790]={ + [9932]={ [1]={ [1]={ [1]={ @@ -222723,7 +226130,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_-2%_per_1" } }, - [9791]={ + [9933]={ [1]={ [1]={ limit={ @@ -222752,7 +226159,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_+%" } }, - [9792]={ + [9934]={ [1]={ [1]={ limit={ @@ -222768,7 +226175,7 @@ return { [1]="purity_of_elements_reserves_no_mana" } }, - [9793]={ + [9935]={ [1]={ [1]={ [1]={ @@ -222805,7 +226212,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_-2%_per_1" } }, - [9794]={ + [9936]={ [1]={ [1]={ limit={ @@ -222834,7 +226241,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_+%" } }, - [9795]={ + [9937]={ [1]={ [1]={ limit={ @@ -222850,7 +226257,7 @@ return { [1]="purity_of_fire_reserves_no_mana" } }, - [9796]={ + [9938]={ [1]={ [1]={ [1]={ @@ -222887,7 +226294,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [9797]={ + [9939]={ [1]={ [1]={ limit={ @@ -222916,7 +226323,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_+%" } }, - [9798]={ + [9940]={ [1]={ [1]={ limit={ @@ -222932,7 +226339,7 @@ return { [1]="purity_of_ice_reserves_no_mana" } }, - [9799]={ + [9941]={ [1]={ [1]={ [1]={ @@ -222969,7 +226376,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_-2%_per_1" } }, - [9800]={ + [9942]={ [1]={ [1]={ limit={ @@ -222998,7 +226405,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_+%" } }, - [9801]={ + [9943]={ [1]={ [1]={ limit={ @@ -223014,7 +226421,7 @@ return { [1]="purity_of_lightning_reserves_no_mana" } }, - [9802]={ + [9944]={ [1]={ [1]={ limit={ @@ -223039,7 +226446,7 @@ return { [1]="quick_dodge_added_cooldown_count" } }, - [9803]={ + [9945]={ [1]={ [1]={ limit={ @@ -223068,7 +226475,7 @@ return { [1]="quick_dodge_travel_distance_+%" } }, - [9804]={ + [9946]={ [1]={ [1]={ limit={ @@ -223084,7 +226491,7 @@ return { [1]="quick_guard_additional_physical_damage_reduction_%" } }, - [9805]={ + [9947]={ [1]={ [1]={ limit={ @@ -223100,7 +226507,7 @@ return { [1]="quicksilver_flasks_apply_to_nearby_allies" } }, - [9806]={ + [9948]={ [1]={ [1]={ limit={ @@ -223129,7 +226536,7 @@ return { [1]="quiver_mod_effect_+%" } }, - [9807]={ + [9949]={ [1]={ [1]={ limit={ @@ -223145,7 +226552,7 @@ return { [1]="quiver_projectiles_pierce_1_additional_target" } }, - [9808]={ + [9950]={ [1]={ [1]={ limit={ @@ -223161,7 +226568,7 @@ return { [1]="quiver_projectiles_pierce_2_additional_targets" } }, - [9809]={ + [9951]={ [1]={ [1]={ limit={ @@ -223177,7 +226584,7 @@ return { [1]="quiver_projectiles_pierce_3_additional_targets" } }, - [9810]={ + [9952]={ [1]={ [1]={ [1]={ @@ -223210,7 +226617,7 @@ return { [1]="maximum_rage" } }, - [9811]={ + [9953]={ [1]={ [1]={ [1]={ @@ -223230,7 +226637,7 @@ return { [1]="rage_effects_tripled" } }, - [9812]={ + [9954]={ [1]={ [1]={ [1]={ @@ -223250,7 +226657,7 @@ return { [1]="rage_effects_doubled" } }, - [9813]={ + [9955]={ [1]={ [1]={ [1]={ @@ -223270,7 +226677,7 @@ return { [1]="gain_rage_on_kill" } }, - [9814]={ + [9956]={ [1]={ [1]={ [1]={ @@ -223311,7 +226718,7 @@ return { [1]="gain_rage_on_hitting_rare_unique_enemy_%" } }, - [9815]={ + [9957]={ [1]={ [1]={ [1]={ @@ -223331,7 +226738,7 @@ return { [1]="gain_rage_when_you_use_a_warcry" } }, - [9816]={ + [9958]={ [1]={ [1]={ limit={ @@ -223347,7 +226754,7 @@ return { [1]="cannot_be_stunned_with_25_rage" } }, - [9817]={ + [9959]={ [1]={ [1]={ [1]={ @@ -223371,7 +226778,7 @@ return { [1]="gain_rage_on_hit" } }, - [9818]={ + [9960]={ [1]={ [1]={ [1]={ @@ -223408,7 +226815,7 @@ return { [1]="rage_decay_speed_+%" } }, - [9819]={ + [9961]={ [1]={ [1]={ [1]={ @@ -223445,7 +226852,7 @@ return { [1]="rage_effect_+%" } }, - [9820]={ + [9962]={ [1]={ [1]={ [1]={ @@ -223465,7 +226872,7 @@ return { [1]="rage_grants_cast_speed_instead" } }, - [9821]={ + [9963]={ [1]={ [1]={ [1]={ @@ -223485,7 +226892,27 @@ return { [1]="rage_grants_spell_damage_instead" } }, - [9822]={ + [9964]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRage" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rage grants Spell Damage instead of Attack Damage at 50% of the value" + } + }, + stats={ + [1]="rage_grants_spell_damage_instead_at_50%_value" + } + }, + [9965]={ [1]={ [1]={ [1]={ @@ -223522,7 +226949,7 @@ return { [1]="rage_loss_delay_ms" } }, - [9823]={ + [9966]={ [1]={ [1]={ limit={ @@ -223543,7 +226970,7 @@ return { [2]="quality_display_rage_vortex_is_gem" } }, - [9824]={ + [9967]={ [1]={ [1]={ limit={ @@ -223572,7 +226999,7 @@ return { [1]="rage_vortex_area_of_effect_+%" } }, - [9825]={ + [9968]={ [1]={ [1]={ limit={ @@ -223601,7 +227028,7 @@ return { [1]="rage_vortex_damage_+%" } }, - [9826]={ + [9969]={ [1]={ [1]={ limit={ @@ -223617,7 +227044,7 @@ return { [1]="raging_spirits_always_ignite" } }, - [9827]={ + [9970]={ [1]={ [1]={ limit={ @@ -223642,7 +227069,7 @@ return { [1]="raging_spirits_refresh_duration_on_hit_vs_rare_or_unique_%_chance" } }, - [9828]={ + [9971]={ [1]={ [1]={ limit={ @@ -223658,7 +227085,7 @@ return { [1]="raging_spirits_refresh_duration_when_they_kill_ignited_enemy" } }, - [9829]={ + [9972]={ [1]={ [1]={ limit={ @@ -223687,7 +227114,7 @@ return { [1]="raider_chance_to_evade_attacks_+%_final_during_onslaught" } }, - [9830]={ + [9973]={ [1]={ [1]={ limit={ @@ -223716,7 +227143,7 @@ return { [1]="raider_nearby_enemies_accuracy_rating_+%_final_while_phasing" } }, - [9831]={ + [9974]={ [1]={ [1]={ limit={ @@ -223732,7 +227159,7 @@ return { [1]="raider_shock_maximum_effect_override_%" } }, - [9832]={ + [9975]={ [1]={ [1]={ limit={ @@ -223748,7 +227175,7 @@ return { [1]="raider_shocks_you_apply_can_stack_up_to_50_times" } }, - [9833]={ + [9976]={ [1]={ [1]={ limit={ @@ -223764,7 +227191,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [9834]={ + [9977]={ [1]={ [1]={ limit={ @@ -223780,7 +227207,7 @@ return { [1]="rain_of_arrows_rain_of_arrows_additional_sequence_chance_%" } }, - [9835]={ + [9978]={ [1]={ [1]={ limit={ @@ -223809,7 +227236,7 @@ return { [1]="rain_of_arrows_toxic_rain_active_skill_bleeding_damage_+%_final" } }, - [9836]={ + [9979]={ [1]={ [1]={ limit={ @@ -223842,7 +227269,7 @@ return { [1]="raise_spectre_mana_cost_+%" } }, - [9837]={ + [9980]={ [1]={ [1]={ limit={ @@ -223858,7 +227285,7 @@ return { [1]="raise_zombie_does_not_use_corpses" } }, - [9838]={ + [9981]={ [1]={ [1]={ [1]={ @@ -223878,7 +227305,7 @@ return { [1]="raised_beast_spectres_have_farruls_farric_presence" } }, - [9839]={ + [9982]={ [1]={ [1]={ [1]={ @@ -223898,7 +227325,7 @@ return { [1]="raised_beast_spectres_have_farruls_fertile_presence" } }, - [9840]={ + [9983]={ [1]={ [1]={ [1]={ @@ -223918,7 +227345,7 @@ return { [1]="raised_beast_spectres_have_farruls_wild_presence" } }, - [9841]={ + [9984]={ [1]={ [1]={ limit={ @@ -223934,7 +227361,7 @@ return { [1]="raised_beast_spectres_have_x_random_modifiers_per_area" } }, - [9842]={ + [9985]={ [1]={ [1]={ limit={ @@ -223950,7 +227377,7 @@ return { [1]="raised_zombie_%_chance_to_taunt" } }, - [9843]={ + [9986]={ [1]={ [1]={ limit={ @@ -223966,7 +227393,7 @@ return { [1]="raised_zombies_are_usable_as_corpses_when_alive" } }, - [9844]={ + [9987]={ [1]={ [1]={ limit={ @@ -223991,7 +227418,7 @@ return { [1]="raised_zombies_cover_in_ash_on_hit_%" } }, - [9845]={ + [9988]={ [1]={ [1]={ [1]={ @@ -224011,7 +227438,7 @@ return { [1]="raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [9846]={ + [9989]={ [1]={ [1]={ [1]={ @@ -224031,7 +227458,7 @@ return { [1]="raised_zombies_have_avatar_of_fire" } }, - [9847]={ + [9990]={ [1]={ [1]={ [1]={ @@ -224051,7 +227478,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_3_stat_value" } }, - [9848]={ + [9991]={ [1]={ [1]={ [1]={ @@ -224071,7 +227498,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_5_stat_value" } }, - [9849]={ + [9992]={ [1]={ [1]={ limit={ @@ -224096,7 +227523,7 @@ return { [1]="rallying_cry_exerts_x_additional_attacks" } }, - [9850]={ + [9993]={ [1]={ [1]={ limit={ @@ -224112,7 +227539,7 @@ return { [1]="random_curse_on_hit_%_against_uncursed_enemies" } }, - [9851]={ + [9994]={ [1]={ [1]={ limit={ @@ -224137,7 +227564,7 @@ return { [1]="random_curse_when_hit_%_ignoring_curse_limit" } }, - [9852]={ + [9995]={ [1]={ [1]={ limit={ @@ -224153,7 +227580,7 @@ return { [1]="random_projectile_direction" } }, - [9853]={ + [9996]={ [1]={ [1]={ [1]={ @@ -224190,7 +227617,7 @@ return { [1]="ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final" } }, - [9854]={ + [9997]={ [1]={ [1]={ limit={ @@ -224206,7 +227633,7 @@ return { [1]="rare_beasts_keep_modifiers_when_raised_as_spectres" } }, - [9855]={ + [9998]={ [1]={ [1]={ limit={ @@ -224235,7 +227662,7 @@ return { [1]="rare_or_unique_monster_dropped_item_rarity_+%" } }, - [9856]={ + [9999]={ [1]={ [1]={ limit={ @@ -224251,7 +227678,7 @@ return { [1]="reap_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [9857]={ + [10000]={ [1]={ [1]={ limit={ @@ -224280,7 +227707,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [9858]={ + [10001]={ [1]={ [1]={ [1]={ @@ -224300,7 +227727,7 @@ return { [1]="receive_bleeding_chance_%_when_hit_by_attack" } }, - [9859]={ + [10002]={ [1]={ [1]={ [1]={ @@ -224320,7 +227747,7 @@ return { [1]="received_attack_hits_have_impale_chance_%" } }, - [9860]={ + [10003]={ [1]={ [1]={ limit={ @@ -224336,7 +227763,7 @@ return { [1]="recharge_flasks_on_crit_while_affected_by_precision" } }, - [9861]={ + [10004]={ [1]={ [1]={ [1]={ @@ -224356,7 +227783,7 @@ return { [1]="recoup_%_of_damage_taken_by_your_totems_as_life" } }, - [9862]={ + [10005]={ [1]={ [1]={ limit={ @@ -224372,7 +227799,7 @@ return { [1]="recoup_effects_apply_over_3_seconds_instead" } }, - [9863]={ + [10006]={ [1]={ [1]={ limit={ @@ -224388,7 +227815,7 @@ return { [1]="recoup_life_effects_apply_over_3_seconds_instead" } }, - [9864]={ + [10007]={ [1]={ [1]={ limit={ @@ -224404,7 +227831,7 @@ return { [1]="recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits" } }, - [9865]={ + [10008]={ [1]={ [1]={ [1]={ @@ -224424,7 +227851,7 @@ return { [1]="recover_%_life_when_you_chill_a_non_chilled_enemy" } }, - [9866]={ + [10009]={ [1]={ [1]={ limit={ @@ -224440,7 +227867,7 @@ return { [1]="recover_%_maximum_energy_shield_on_killing_cursed_enemy" } }, - [9867]={ + [10010]={ [1]={ [1]={ limit={ @@ -224456,7 +227883,7 @@ return { [1]="recover_%_maximum_life_on_killing_cursed_enemy" } }, - [9868]={ + [10011]={ [1]={ [1]={ limit={ @@ -224485,7 +227912,7 @@ return { [1]="recover_%_maximum_life_on_suppressing_spell" } }, - [9869]={ + [10012]={ [1]={ [1]={ limit={ @@ -224501,7 +227928,7 @@ return { [1]="recover_%_maximum_life_when_cursing_non_cursed_enemy" } }, - [9870]={ + [10013]={ [1]={ [1]={ limit={ @@ -224517,7 +227944,7 @@ return { [1]="recover_%_maximum_mana_when_cursing_non_cursed_enemy" } }, - [9871]={ + [10014]={ [1]={ [1]={ limit={ @@ -224533,7 +227960,7 @@ return { [1]="recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity" } }, - [9872]={ + [10015]={ [1]={ [1]={ [1]={ @@ -224553,7 +227980,7 @@ return { [1]="recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds" } }, - [9873]={ + [10016]={ [1]={ [1]={ limit={ @@ -224569,7 +227996,7 @@ return { [1]="recover_X_life_on_enemy_ignited" } }, - [9874]={ + [10017]={ [1]={ [1]={ limit={ @@ -224585,7 +228012,7 @@ return { [1]="recover_X_life_on_suppressing_spell" } }, - [9875]={ + [10018]={ [1]={ [1]={ [1]={ @@ -224605,7 +228032,7 @@ return { [1]="recover_X_life_when_fortification_expires_per_fortification_lost" } }, - [9876]={ + [10019]={ [1]={ [1]={ limit={ @@ -224621,7 +228048,7 @@ return { [1]="recover_X_mana_on_killing_frozen_enemy" } }, - [9877]={ + [10020]={ [1]={ [1]={ limit={ @@ -224637,7 +228064,7 @@ return { [1]="recover_energy_shield_%_on_consuming_steel_shard" } }, - [9878]={ + [10021]={ [1]={ [1]={ limit={ @@ -224653,7 +228080,7 @@ return { [1]="recover_es_as_well_as_life_from_life_regeneration" } }, - [9879]={ + [10022]={ [1]={ [1]={ limit={ @@ -224669,7 +228096,7 @@ return { [1]="recover_from_blood_phylactery_on_savage_hit_taken" } }, - [9880]={ + [10023]={ [1]={ [1]={ limit={ @@ -224685,7 +228112,7 @@ return { [1]="recover_life_for_ancestral_totem_equal_to_damage_taken_from_hits" } }, - [9881]={ + [10024]={ [1]={ [1]={ limit={ @@ -224701,7 +228128,7 @@ return { [1]="recover_maximum_life_on_enemy_killed_chance_%" } }, - [9882]={ + [10025]={ [1]={ [1]={ [1]={ @@ -224721,7 +228148,7 @@ return { [1]="recover_%_energy_shield_when_you_block_spell_damage_while_wielding_a_staff" } }, - [9883]={ + [10026]={ [1]={ [1]={ limit={ @@ -224737,7 +228164,7 @@ return { [1]="recover_%_life_when_gaining_adrenaline" } }, - [9884]={ + [10027]={ [1]={ [1]={ [1]={ @@ -224757,7 +228184,7 @@ return { [1]="recover_%_life_when_you_block_attack_damage_while_wielding_a_staff" } }, - [9885]={ + [10028]={ [1]={ [1]={ [1]={ @@ -224777,7 +228204,7 @@ return { [1]="recover_%_life_when_you_ignite_a_non_ignited_enemy" } }, - [9886]={ + [10029]={ [1]={ [1]={ [1]={ @@ -224797,7 +228224,7 @@ return { [1]="recover_%_life_when_you_use_a_life_flask_while_on_low_life" } }, - [9887]={ + [10030]={ [1]={ [1]={ limit={ @@ -224813,7 +228240,7 @@ return { [1]="recover_%_mana_when_attached_brand_expires" } }, - [9888]={ + [10031]={ [1]={ [1]={ limit={ @@ -224829,7 +228256,7 @@ return { [1]="recover_%_maximum_life_on_killing_chilled_enemy" } }, - [9889]={ + [10032]={ [1]={ [1]={ limit={ @@ -224845,7 +228272,7 @@ return { [1]="recover_%_maximum_life_on_killing_enemy_while_you_have_rage" } }, - [9890]={ + [10033]={ [1]={ [1]={ limit={ @@ -224861,7 +228288,7 @@ return { [1]="recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [9891]={ + [10034]={ [1]={ [1]={ limit={ @@ -224890,7 +228317,7 @@ return { [1]="recover_%_maximum_mana_on_activating_tincture" } }, - [9892]={ + [10035]={ [1]={ [1]={ limit={ @@ -224919,7 +228346,7 @@ return { [1]="recover_%_maximum_mana_on_kill_while_tincture_active" } }, - [9893]={ + [10036]={ [1]={ [1]={ [1]={ @@ -224939,7 +228366,7 @@ return { [1]="recover_%_maximum_mana_when_enemy_frozen_permyriad" } }, - [9894]={ + [10037]={ [1]={ [1]={ limit={ @@ -224955,7 +228382,7 @@ return { [1]="recover_%_of_maximum_mana_over_1_second_on_guard_skill_use" } }, - [9895]={ + [10038]={ [1]={ [1]={ limit={ @@ -224971,7 +228398,7 @@ return { [1]="recover_%_of_skill_mana_cost_per_unspent_chain_up_to_50%" } }, - [9896]={ + [10039]={ [1]={ [1]={ [1]={ @@ -224991,7 +228418,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [9897]={ + [10040]={ [1]={ [1]={ [1]={ @@ -225011,7 +228438,7 @@ return { [1]="recover_permyriad_maximum_life_per_poison_on_enemy_on_kill" } }, - [9898]={ + [10041]={ [1]={ [1]={ limit={ @@ -225027,7 +228454,7 @@ return { [1]="recover_x_energy_shield_on_spell_block" } }, - [9899]={ + [10042]={ [1]={ [1]={ limit={ @@ -225043,7 +228470,7 @@ return { [1]="recover_x_energy_shield_on_suppressing_spell" } }, - [9900]={ + [10043]={ [1]={ [1]={ limit={ @@ -225072,7 +228499,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [9901]={ + [10044]={ [1]={ [1]={ limit={ @@ -225088,7 +228515,7 @@ return { [1]="reduce_enemy_cold_resistance_%_while_affected_by_hatred" } }, - [9902]={ + [10045]={ [1]={ [1]={ limit={ @@ -225104,7 +228531,7 @@ return { [1]="reduce_enemy_fire_resistance_%_vs_blinded_enemies" } }, - [9903]={ + [10046]={ [1]={ [1]={ limit={ @@ -225120,7 +228547,7 @@ return { [1]="reduce_enemy_fire_resistance_%_while_affected_by_anger" } }, - [9904]={ + [10047]={ [1]={ [1]={ limit={ @@ -225136,7 +228563,7 @@ return { [1]="reduce_enemy_lightning_resistance_%_while_affected_by_wrath" } }, - [9905]={ + [10048]={ [1]={ [1]={ limit={ @@ -225152,7 +228579,7 @@ return { [1]="reflect_%_of_physical_damage_prevented" } }, - [9906]={ + [10049]={ [1]={ [1]={ limit={ @@ -225177,7 +228604,7 @@ return { [1]="reflect_chill_and_freeze_%_chance" } }, - [9907]={ + [10050]={ [1]={ [1]={ limit={ @@ -225210,7 +228637,7 @@ return { [1]="reflect_damage_taken_and_minion_reflect_damage_taken_+%" } }, - [9908]={ + [10051]={ [1]={ [1]={ [1]={ @@ -225243,7 +228670,7 @@ return { [1]="reflect_non_damaging_ailments_%_chance" } }, - [9909]={ + [10052]={ [1]={ [1]={ limit={ @@ -225259,7 +228686,7 @@ return { [1]="reflect_shocks" } }, - [9910]={ + [10053]={ [1]={ [1]={ limit={ @@ -225275,7 +228702,7 @@ return { [1]="reflect_shocks_to_enemies_in_radius" } }, - [9911]={ + [10054]={ [1]={ [1]={ limit={ @@ -225291,7 +228718,7 @@ return { [1]="refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy" } }, - [9912]={ + [10055]={ [1]={ [1]={ limit={ @@ -225307,7 +228734,7 @@ return { [1]="refresh_ignite_duration_on_critical_strike_chance_%" } }, - [9913]={ + [10056]={ [1]={ [1]={ limit={ @@ -225323,7 +228750,7 @@ return { [1]="regenerate_%_energy_shield_over_1_second_when_stunned" } }, - [9914]={ + [10057]={ [1]={ [1]={ limit={ @@ -225339,7 +228766,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality" } }, - [9915]={ + [10058]={ [1]={ [1]={ limit={ @@ -225355,7 +228782,7 @@ return { [1]="regenerate_%_life_over_1_second_when_stunned" } }, - [9916]={ + [10059]={ [1]={ [1]={ [1]={ @@ -225375,7 +228802,7 @@ return { [1]="regenerate_1_rage_per_x_life_regeneration" } }, - [9917]={ + [10060]={ [1]={ [1]={ limit={ @@ -225391,7 +228818,7 @@ return { [1]="regenerate_1_rage_per_x_mana_regeneration" } }, - [9918]={ + [10061]={ [1]={ [1]={ limit={ @@ -225407,7 +228834,7 @@ return { [1]="regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds" } }, - [9919]={ + [10062]={ [1]={ [1]={ limit={ @@ -225423,7 +228850,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_not_unhinged" } }, - [9920]={ + [10063]={ [1]={ [1]={ limit={ @@ -225439,7 +228866,7 @@ return { [1]="regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse" } }, - [9921]={ + [10064]={ [1]={ [1]={ limit={ @@ -225455,7 +228882,7 @@ return { [1]="regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse" } }, - [9922]={ + [10065]={ [1]={ [1]={ [1]={ @@ -225479,7 +228906,36 @@ return { [1]="regenerate_x_mana_per_minute_while_you_have_arcane_surge" } }, - [9923]={ + [10066]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Accuracy Rating while at maximum Frenzy Charges" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Accuracy Rating while at maximum Frenzy Charges" + } + }, + stats={ + [1]="reliquarian_accuracy_rating_+%_final_while_at_maximum_frenzy_charges" + } + }, + [10067]={ [1]={ [1]={ [1]={ @@ -225499,7 +228955,7 @@ return { [1]="remove_ailments_and_burning_on_gaining_adrenaline" } }, - [9924]={ + [10068]={ [1]={ [1]={ [1]={ @@ -225519,7 +228975,7 @@ return { [1]="base_remove_elemental_ailments_from_you_when_you_inflict_them" } }, - [9925]={ + [10069]={ [1]={ [1]={ [1]={ @@ -225539,7 +228995,7 @@ return { [1]="remove_all_damaging_ailments_on_warcry" } }, - [9926]={ + [10070]={ [1]={ [1]={ limit={ @@ -225555,7 +229011,7 @@ return { [1]="remove_bleed_on_life_flask_use" } }, - [9927]={ + [10071]={ [1]={ [1]={ limit={ @@ -225571,7 +229027,7 @@ return { [1]="remove_bleeding_on_warcry" } }, - [9928]={ + [10072]={ [1]={ [1]={ limit={ @@ -225587,7 +229043,7 @@ return { [1]="remove_chill_and_freeze_on_flask_use" } }, - [9929]={ + [10073]={ [1]={ [1]={ limit={ @@ -225603,7 +229059,7 @@ return { [1]="remove_curse_on_mana_flask_use" } }, - [9930]={ + [10074]={ [1]={ [1]={ [1]={ @@ -225623,7 +229079,7 @@ return { [1]="remove_damaging_ailments_on_swapping_stance" } }, - [9931]={ + [10075]={ [1]={ [1]={ [1]={ @@ -225656,7 +229112,7 @@ return { [1]="remove_elemental_ailments_on_curse_cast_%" } }, - [9932]={ + [10076]={ [1]={ [1]={ limit={ @@ -225672,7 +229128,7 @@ return { [1]="remove_ignite_and_burning_on_flask_use" } }, - [9933]={ + [10077]={ [1]={ [1]={ limit={ @@ -225688,7 +229144,7 @@ return { [1]="remove_maim_and_hinder_on_flask_use" } }, - [9934]={ + [10078]={ [1]={ [1]={ limit={ @@ -225704,7 +229160,7 @@ return { [1]="remove_%_of_mana_on_hit" } }, - [9935]={ + [10079]={ [1]={ [1]={ [1]={ @@ -225728,7 +229184,7 @@ return { [1]="remove_rage_on_reaching_max_to_gain_adrenaline_for_1_second_per_x_rage_lost" } }, - [9936]={ + [10080]={ [1]={ [1]={ limit={ @@ -225744,7 +229200,7 @@ return { [1]="remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder" } }, - [9937]={ + [10081]={ [1]={ [1]={ limit={ @@ -225760,7 +229216,7 @@ return { [1]="remove_random_ailment_when_you_warcry" } }, - [9938]={ + [10082]={ [1]={ [1]={ limit={ @@ -225776,7 +229232,7 @@ return { [1]="remove_random_charge_on_hit_%" } }, - [9939]={ + [10083]={ [1]={ [1]={ [1]={ @@ -225796,7 +229252,7 @@ return { [1]="remove_random_damaging_ailment_when_ward_restores" } }, - [9940]={ + [10084]={ [1]={ [1]={ [1]={ @@ -225816,7 +229272,7 @@ return { [1]="remove_random_elemental_ailment_on_mana_flask_use" } }, - [9941]={ + [10085]={ [1]={ [1]={ limit={ @@ -225832,7 +229288,7 @@ return { [1]="remove_random_non_elemental_ailment_on_life_flask_use" } }, - [9942]={ + [10086]={ [1]={ [1]={ limit={ @@ -225848,7 +229304,7 @@ return { [1]="remove_shock_on_flask_use" } }, - [9943]={ + [10087]={ [1]={ [1]={ limit={ @@ -225873,7 +229329,7 @@ return { [1]="remove_x_curses_after_channelling_for_2_seconds" } }, - [9944]={ + [10088]={ [1]={ [1]={ limit={ @@ -225902,7 +229358,7 @@ return { [1]="replica_unique_hyrris_truth_hatred_mana_reservation_+%_final" } }, - [9945]={ + [10089]={ [1]={ [1]={ limit={ @@ -225931,7 +229387,7 @@ return { [1]="reservation_efficiency_+%_with_unique_abyss_jewel_socketed" } }, - [9946]={ + [10090]={ [1]={ [1]={ [1]={ @@ -225964,7 +229420,7 @@ return { [1]="reserve_life_instead_of_loss_from_damage_for_x_ms" } }, - [9947]={ + [10091]={ [1]={ [1]={ limit={ @@ -225980,7 +229436,7 @@ return { [1]="resist_all_%" } }, - [9948]={ + [10092]={ [1]={ [1]={ limit={ @@ -225996,7 +229452,7 @@ return { [1]="resist_all_%_for_enemies_you_inflict_spiders_web_upon" } }, - [9949]={ + [10093]={ [1]={ [1]={ limit={ @@ -226012,7 +229468,7 @@ return { [1]="restore_energy_shield_and_mana_when_you_focus_%" } }, - [9950]={ + [10094]={ [1]={ [1]={ limit={ @@ -226028,7 +229484,7 @@ return { [1]="restore_ward_on_block_%" } }, - [9951]={ + [10095]={ [1]={ [1]={ limit={ @@ -226053,7 +229509,7 @@ return { [1]="restore_ward_on_hit_%" } }, - [9952]={ + [10096]={ [1]={ [1]={ limit={ @@ -226082,7 +229538,7 @@ return { [1]="retaliation_skill_additional_use_window_duration_ms" } }, - [9953]={ + [10097]={ [1]={ [1]={ limit={ @@ -226111,7 +229567,7 @@ return { [1]="retaliation_skill_area_of_effect_+%" } }, - [9954]={ + [10098]={ [1]={ [1]={ limit={ @@ -226140,7 +229596,7 @@ return { [1]="retaliation_skill_cost_+%" } }, - [9955]={ + [10099]={ [1]={ [1]={ limit={ @@ -226169,7 +229625,7 @@ return { [1]="retaliation_skill_damage_+%" } }, - [9956]={ + [10100]={ [1]={ [1]={ [1]={ @@ -226189,7 +229645,7 @@ return { [1]="retaliation_skill_keep_use_requirement_and_prevent_cooldown_on_use_chance_%" } }, - [9957]={ + [10101]={ [1]={ [1]={ limit={ @@ -226218,7 +229674,7 @@ return { [1]="retaliation_skill_speed_+%" } }, - [9958]={ + [10102]={ [1]={ [1]={ limit={ @@ -226247,7 +229703,7 @@ return { [1]="retaliation_skill_stun_duration_+%" } }, - [9959]={ + [10103]={ [1]={ [1]={ [1]={ @@ -226284,7 +229740,7 @@ return { [1]="retaliation_skill_stun_threshold_+%" } }, - [9960]={ + [10104]={ [1]={ [1]={ [1]={ @@ -226321,7 +229777,7 @@ return { [1]="retaliation_skills_all_ailment_duration_+%" } }, - [9961]={ + [10105]={ [1]={ [1]={ [1]={ @@ -226341,7 +229797,7 @@ return { [1]="retaliation_skills_become_usable_every_x_ms" } }, - [9962]={ + [10106]={ [1]={ [1]={ [1]={ @@ -226382,7 +229838,7 @@ return { [1]="retaliation_skills_debilitate_on_hit_ms" } }, - [9963]={ + [10107]={ [1]={ [1]={ [1]={ @@ -226402,7 +229858,7 @@ return { [1]="retaliation_skills_fortify_on_melee_hit" } }, - [9964]={ + [10108]={ [1]={ [1]={ [1]={ @@ -226426,7 +229882,7 @@ return { [1]="retaliation_skills_gain_X_rage_per_enemy_hit" } }, - [9965]={ + [10109]={ [1]={ [1]={ limit={ @@ -226455,7 +229911,7 @@ return { [1]="retaliation_use_window_duration_+%" } }, - [9966]={ + [10110]={ [1]={ [1]={ limit={ @@ -226484,7 +229940,7 @@ return { [1]="returned_projectile_speed_+%" } }, - [9967]={ + [10111]={ [1]={ [1]={ limit={ @@ -226500,7 +229956,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [9968]={ + [10112]={ [1]={ [1]={ [1]={ @@ -226533,7 +229989,7 @@ return { [1]="revive_golems_if_killed_by_enemies_ms" } }, - [9969]={ + [10113]={ [1]={ [1]={ [1]={ @@ -226566,7 +230022,7 @@ return { [1]="revive_spectre_if_killed_by_enemies_ms" } }, - [9970]={ + [10114]={ [1]={ [1]={ limit={ @@ -226582,7 +230038,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [9971]={ + [10115]={ [1]={ [1]={ limit={ @@ -226611,7 +230067,7 @@ return { [1]="rogue_trader_map_rogue_exile_maximum_life_+%_final" } }, - [9972]={ + [10116]={ [1]={ [1]={ limit={ @@ -226624,7 +230080,7 @@ return { [2]=0 } }, - text="Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second" + text="Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 0.5 seconds" }, [2]={ limit={ @@ -226637,7 +230093,7 @@ return { [2]="#" } }, - text="Teleport to the detonated Rune if you have not detonated Runes in the past 1 second" + text="Teleport to the detonated Rune if you have not detonated Runes in the past 0.5 seconds" } }, stats={ @@ -226645,7 +230101,7 @@ return { [2]="gem_display_rune_blast_is_gem" } }, - [9973]={ + [10117]={ [1]={ [1]={ limit={ @@ -226661,7 +230117,7 @@ return { [1]="rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown" } }, - [9974]={ + [10118]={ [1]={ [1]={ limit={ @@ -226690,7 +230146,7 @@ return { [1]="runegraft_offhand_attack_speed_+%_final" } }, - [9975]={ + [10119]={ [1]={ [1]={ [1]={ @@ -226710,7 +230166,7 @@ return { [1]="ruthless_hits_intimidate_enemies_for_4_seconds" } }, - [9976]={ + [10120]={ [1]={ [1]={ limit={ @@ -226739,7 +230195,7 @@ return { [1]="sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%" } }, - [9977]={ + [10121]={ [1]={ [1]={ limit={ @@ -226768,7 +230224,7 @@ return { [1]="sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%" } }, - [9978]={ + [10122]={ [1]={ [1]={ limit={ @@ -226777,14 +230233,14 @@ return { [2]="#" } }, - text="[DNT] Bow Attacks Sacrifice {0}% of your Life to fire an additional Arrow for every 100 Life Sacrificed" + text="DNT Bow Attacks Sacrifice {0}% of your Life to fire an additional Arrow for every 100 Life Sacrificed" } }, stats={ [1]="sacrifice_%_life_to_fire_additional_arrow_for_each_100_life" } }, - [9979]={ + [10123]={ [1]={ [1]={ limit={ @@ -226809,7 +230265,7 @@ return { [1]="sacrifice_minion_to_fire_X_additional_arrows" } }, - [9980]={ + [10124]={ [1]={ [1]={ limit={ @@ -226825,7 +230281,7 @@ return { [1]="sacrifice_%_life_on_spell_skill" } }, - [9981]={ + [10125]={ [1]={ [1]={ limit={ @@ -226841,7 +230297,7 @@ return { [1]="sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast" } }, - [9982]={ + [10126]={ [1]={ [1]={ limit={ @@ -226870,7 +230326,7 @@ return { [1]="sanctify_area_of_effect_+%_when_targeting_consecrated_ground" } }, - [9983]={ + [10127]={ [1]={ [1]={ limit={ @@ -226899,7 +230355,7 @@ return { [1]="sanctify_consecrated_ground_enemy_damage_taken_+%" } }, - [9984]={ + [10128]={ [1]={ [1]={ limit={ @@ -226928,7 +230384,7 @@ return { [1]="sanctify_damage_+%" } }, - [9985]={ + [10129]={ [1]={ [1]={ [1]={ @@ -226948,7 +230404,7 @@ return { [1]="sap_on_critical_strike_with_lightning_skills" } }, - [9986]={ + [10130]={ [1]={ [1]={ limit={ @@ -226964,7 +230420,7 @@ return { [1]="saresh_bloodline_main_hand_supported_by_cruelty" } }, - [9987]={ + [10131]={ [1]={ [1]={ limit={ @@ -226993,7 +230449,7 @@ return { [1]="scorch_effect_+%" } }, - [9988]={ + [10132]={ [1]={ [1]={ [1]={ @@ -227017,7 +230473,7 @@ return { [1]="scorch_enemies_in_close_range_on_block" } }, - [9989]={ + [10133]={ [1]={ [1]={ limit={ @@ -227033,7 +230489,7 @@ return { [1]="scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance" } }, - [9990]={ + [10134]={ [1]={ [1]={ limit={ @@ -227062,7 +230518,7 @@ return { [1]="scourge_arrow_damage_+%" } }, - [9991]={ + [10135]={ [1]={ [1]={ limit={ @@ -227091,7 +230547,7 @@ return { [1]="secondary_skill_effect_duration_+%" } }, - [9992]={ + [10136]={ [1]={ [1]={ limit={ @@ -227107,7 +230563,7 @@ return { [1]="seismic_cry_exerted_attack_damage_+%" } }, - [9993]={ + [10137]={ [1]={ [1]={ limit={ @@ -227123,7 +230579,7 @@ return { [1]="seismic_cry_minimum_power" } }, - [9994]={ + [10138]={ [1]={ [1]={ limit={ @@ -227152,7 +230608,7 @@ return { [1]="self_bleed_duration_+%" } }, - [9995]={ + [10139]={ [1]={ [1]={ limit={ @@ -227168,7 +230624,7 @@ return { [1]="self_cold_damage_on_reaching_maximum_power_charges" } }, - [9996]={ + [10140]={ [1]={ [1]={ limit={ @@ -227197,7 +230653,7 @@ return { [1]="self_critical_strike_multiplier_+%_while_ignited" } }, - [9997]={ + [10141]={ [1]={ [1]={ limit={ @@ -227226,7 +230682,7 @@ return { [1]="self_curse_duration_+%_per_10_devotion" } }, - [9998]={ + [10142]={ [1]={ [1]={ [1]={ @@ -227263,7 +230719,7 @@ return { [1]="self_damaging_ailment_duration_+%_per_barkskin_stack" } }, - [9999]={ + [10143]={ [1]={ [1]={ [1]={ @@ -227283,7 +230739,7 @@ return { [1]="self_debilitated" } }, - [10000]={ + [10144]={ [1]={ [1]={ [1]={ @@ -227320,7 +230776,7 @@ return { [1]="self_elemental_status_duration_-%_per_10_devotion" } }, - [10001]={ + [10145]={ [1]={ [1]={ limit={ @@ -227336,7 +230792,7 @@ return { [1]="self_physical_damage_on_movement_skill_use" } }, - [10002]={ + [10146]={ [1]={ [1]={ limit={ @@ -227352,7 +230808,7 @@ return { [1]="self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action" } }, - [10003]={ + [10147]={ [1]={ [1]={ limit={ @@ -227381,7 +230837,7 @@ return { [1]="self_poison_duration_+%" } }, - [10004]={ + [10148]={ [1]={ [1]={ [1]={ @@ -227401,7 +230857,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_energy_shield_recharge_started_recently" } }, - [10005]={ + [10149]={ [1]={ [1]={ [1]={ @@ -227421,7 +230877,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently" } }, - [10006]={ + [10150]={ [1]={ [1]={ limit={ @@ -227437,7 +230893,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item" } }, - [10007]={ + [10151]={ [1]={ [1]={ limit={ @@ -227453,7 +230909,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy" } }, - [10008]={ + [10152]={ [1]={ [1]={ limit={ @@ -227469,7 +230925,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [10009]={ + [10153]={ [1]={ [1]={ limit={ @@ -227485,7 +230941,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive" } }, - [10010]={ + [10154]={ [1]={ [1]={ limit={ @@ -227501,7 +230957,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_while_no_gems_in_gloves" } }, - [10011]={ + [10155]={ [1]={ [1]={ limit={ @@ -227530,7 +230986,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [10012]={ + [10156]={ [1]={ [1]={ limit={ @@ -227559,7 +231015,7 @@ return { [1]="sentinel_of_purity_damage_+%" } }, - [10013]={ + [10157]={ [1]={ [1]={ limit={ @@ -227584,7 +231040,7 @@ return { [1]="serpent_strike_maximum_snakes" } }, - [10014]={ + [10158]={ [1]={ [1]={ [1]={ @@ -227604,7 +231060,7 @@ return { [1]="shatter_has_%_chance_to_cover_in_frost" } }, - [10015]={ + [10159]={ [1]={ [1]={ limit={ @@ -227620,7 +231076,7 @@ return { [1]="shatter_on_kill_vs_bleeding_enemies" } }, - [10016]={ + [10160]={ [1]={ [1]={ limit={ @@ -227636,7 +231092,7 @@ return { [1]="shatter_on_kill_vs_poisoned_enemies" } }, - [10017]={ + [10161]={ [1]={ [1]={ limit={ @@ -227652,7 +231108,7 @@ return { [1]="shatter_on_killing_blow_chance_%" } }, - [10018]={ + [10162]={ [1]={ [1]={ limit={ @@ -227681,7 +231137,7 @@ return { [1]="shattering_steel_damage_+%" } }, - [10019]={ + [10163]={ [1]={ [1]={ [1]={ @@ -227709,7 +231165,7 @@ return { [1]="shattering_steel_fortify_on_hit_close_range" } }, - [10020]={ + [10164]={ [1]={ [1]={ limit={ @@ -227734,7 +231190,7 @@ return { [1]="shattering_steel_number_of_additional_projectiles" } }, - [10021]={ + [10165]={ [1]={ [1]={ limit={ @@ -227750,7 +231206,7 @@ return { [1]="shattering_steel_%_chance_to_not_consume_ammo" } }, - [10022]={ + [10166]={ [1]={ [1]={ limit={ @@ -227766,7 +231222,7 @@ return { [1]="shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating" } }, - [10023]={ + [10167]={ [1]={ [1]={ limit={ @@ -227787,7 +231243,7 @@ return { [2]="shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield" } }, - [10024]={ + [10168]={ [1]={ [1]={ limit={ @@ -227803,7 +231259,7 @@ return { [1]="shield_crush_and_spectral_shield_throw_skill_physical_damage_%_to_convert_to_lightning" } }, - [10025]={ + [10169]={ [1]={ [1]={ limit={ @@ -227832,7 +231288,7 @@ return { [1]="shield_crush_attack_speed_+%" } }, - [10026]={ + [10170]={ [1]={ [1]={ limit={ @@ -227861,7 +231317,7 @@ return { [1]="shield_crush_damage_+%" } }, - [10027]={ + [10171]={ [1]={ [1]={ limit={ @@ -227890,7 +231346,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [10028]={ + [10172]={ [1]={ [1]={ [1]={ @@ -227927,7 +231383,7 @@ return { [1]="shield_defences_+%_per_10_devotion" } }, - [10029]={ + [10173]={ [1]={ [1]={ limit={ @@ -227956,7 +231412,7 @@ return { [1]="shock_and_freeze_apply_elemental_damage_taken_+%" } }, - [10030]={ + [10174]={ [1]={ [1]={ [1]={ @@ -227989,7 +231445,7 @@ return { [1]="shock_attackers_for_4_seconds_on_block_%_chance" } }, - [10031]={ + [10175]={ [1]={ [1]={ limit={ @@ -228018,7 +231474,7 @@ return { [1]="shock_effect_+%_while_es_leeching" } }, - [10032]={ + [10176]={ [1]={ [1]={ limit={ @@ -228047,7 +231503,7 @@ return { [1]="shock_effect_against_cursed_enemies_+%" } }, - [10033]={ + [10177]={ [1]={ [1]={ limit={ @@ -228076,7 +231532,7 @@ return { [1]="shock_effect_+%" } }, - [10034]={ + [10178]={ [1]={ [1]={ limit={ @@ -228105,7 +231561,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [10035]={ + [10179]={ [1]={ [1]={ [1]={ @@ -228125,7 +231581,7 @@ return { [1]="shock_maximum_magnitude_is_60%" } }, - [10036]={ + [10180]={ [1]={ [1]={ [1]={ @@ -228145,7 +231601,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [10037]={ + [10181]={ [1]={ [1]={ [1]={ @@ -228169,7 +231625,7 @@ return { [1]="shock_self_for_x_ms_when_you_focus" } }, - [10038]={ + [10182]={ [1]={ [1]={ [1]={ @@ -228193,7 +231649,7 @@ return { [1]="shock_nearby_enemies_for_x_ms_when_you_focus" } }, - [10039]={ + [10183]={ [1]={ [1]={ [1]={ @@ -228213,7 +231669,7 @@ return { [1]="shock_nova_and_storm_call_all_damage_can_ignite" } }, - [10040]={ + [10184]={ [1]={ [1]={ [1]={ @@ -228233,7 +231689,7 @@ return { [1]="shock_nova_and_storm_call_ignite_damage_+100%_final_chance" } }, - [10041]={ + [10185]={ [1]={ [1]={ limit={ @@ -228249,7 +231705,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [10042]={ + [10186]={ [1]={ [1]={ limit={ @@ -228278,7 +231734,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [10043]={ + [10187]={ [1]={ [1]={ limit={ @@ -228307,7 +231763,7 @@ return { [1]="shocked_chilled_effect_on_self_+%" } }, - [10044]={ + [10188]={ [1]={ [1]={ [1]={ @@ -228348,7 +231804,7 @@ return { [1]="shocked_effect_on_self_+%" } }, - [10045]={ + [10189]={ [1]={ [1]={ limit={ @@ -228364,7 +231820,7 @@ return { [1]="shocked_enemies_explode_for_%_life_as_lightning_damage" } }, - [10046]={ + [10190]={ [1]={ [1]={ limit={ @@ -228393,7 +231849,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [10047]={ + [10191]={ [1]={ [1]={ limit={ @@ -228418,7 +231874,7 @@ return { [1]="shocked_ground_on_death_%" } }, - [10048]={ + [10192]={ [1]={ [1]={ limit={ @@ -228443,7 +231899,7 @@ return { [1]="shrapnel_ballista_num_additional_arrows" } }, - [10049]={ + [10193]={ [1]={ [1]={ limit={ @@ -228468,7 +231924,7 @@ return { [1]="shrapnel_ballista_num_pierce" } }, - [10050]={ + [10194]={ [1]={ [1]={ limit={ @@ -228497,7 +231953,7 @@ return { [1]="shrapnel_ballista_projectile_speed_+%" } }, - [10051]={ + [10195]={ [1]={ [1]={ limit={ @@ -228526,7 +231982,7 @@ return { [1]="shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%" } }, - [10052]={ + [10196]={ [1]={ [1]={ limit={ @@ -228555,7 +232011,7 @@ return { [1]="galvanic_arrow_area_damage_+%" } }, - [10053]={ + [10197]={ [1]={ [1]={ limit={ @@ -228584,7 +232040,7 @@ return { [1]="shrapnel_trap_area_of_effect_+%" } }, - [10054]={ + [10198]={ [1]={ [1]={ limit={ @@ -228613,7 +232069,7 @@ return { [1]="shrapnel_trap_damage_+%" } }, - [10055]={ + [10199]={ [1]={ [1]={ limit={ @@ -228638,7 +232094,36 @@ return { [1]="shrapnel_trap_number_of_additional_secondary_explosions" } }, - [10056]={ + [10200]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Shrine Buffs on you for each 5% of Life Reserved" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Shrine Buffs on you for each 5% of Life Reserved" + } + }, + stats={ + [1]="shrine_buff_effect_on_self_+%_per_5%_maximum_life_reserved" + } + }, + [10201]={ [1]={ [1]={ limit={ @@ -228667,7 +232152,7 @@ return { [1]="siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%" } }, - [10057]={ + [10202]={ [1]={ [1]={ [1]={ @@ -228704,7 +232189,7 @@ return { [1]="sigil_attached_target_damage_+%" } }, - [10058]={ + [10203]={ [1]={ [1]={ limit={ @@ -228733,7 +232218,7 @@ return { [1]="sigil_attached_target_damage_taken_+%" } }, - [10059]={ + [10204]={ [1]={ [1]={ [1]={ @@ -228770,7 +232255,7 @@ return { [1]="sigil_critical_strike_chance_+%" } }, - [10060]={ + [10205]={ [1]={ [1]={ [1]={ @@ -228790,7 +232275,7 @@ return { [1]="sigil_critical_strike_multiplier_+" } }, - [10061]={ + [10206]={ [1]={ [1]={ [1]={ @@ -228827,7 +232312,7 @@ return { [1]="sigil_damage_+%" } }, - [10062]={ + [10207]={ [1]={ [1]={ [1]={ @@ -228864,7 +232349,7 @@ return { [1]="sigil_damage_+%_per_10_devotion" } }, - [10063]={ + [10208]={ [1]={ [1]={ limit={ @@ -228893,7 +232378,7 @@ return { [1]="sigil_duration_+%" } }, - [10064]={ + [10209]={ [1]={ [1]={ limit={ @@ -228922,7 +232407,7 @@ return { [1]="sigil_recall_cooldown_speed_+%" } }, - [10065]={ + [10210]={ [1]={ [1]={ limit={ @@ -228951,7 +232436,7 @@ return { [1]="sigil_recall_cooldown_speed_+%_per_brand_up_to_40%" } }, - [10066]={ + [10211]={ [1]={ [1]={ limit={ @@ -228980,7 +232465,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [10067]={ + [10212]={ [1]={ [1]={ [1]={ @@ -229017,7 +232502,7 @@ return { [1]="sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently" } }, - [10068]={ + [10213]={ [1]={ [1]={ limit={ @@ -229046,7 +232531,7 @@ return { [1]="sigil_target_search_range_+%" } }, - [10069]={ + [10214]={ [1]={ [1]={ limit={ @@ -229055,7 +232540,7 @@ return { [2]="#" } }, - text="{0}% increased Dark Pact Area of Effect" + text="{0}% increased Dark Bargain Area of Effect" }, [2]={ [1]={ @@ -229068,14 +232553,14 @@ return { [2]=-1 } }, - text="{0}% reduced Dark Pact Area of Effect" + text="{0}% reduced Dark Bargain Area of Effect" } }, stats={ [1]="skeletal_chains_area_of_effect_+%" } }, - [10070]={ + [10215]={ [1]={ [1]={ limit={ @@ -229084,7 +232569,7 @@ return { [2]="#" } }, - text="{0}% increased Dark Pact Cast Speed" + text="{0}% increased Dark Bargain Cast Speed" }, [2]={ [1]={ @@ -229097,14 +232582,14 @@ return { [2]=-1 } }, - text="{0}% reduced Dark Pact Cast Speed" + text="{0}% reduced Dark Bargain Cast Speed" } }, stats={ [1]="skeletal_chains_cast_speed_+%" } }, - [10071]={ + [10216]={ [1]={ [1]={ limit={ @@ -229133,7 +232618,7 @@ return { [1]="skeleton_attack_speed_+%" } }, - [10072]={ + [10217]={ [1]={ [1]={ limit={ @@ -229162,7 +232647,7 @@ return { [1]="skeleton_cast_speed_+%" } }, - [10073]={ + [10218]={ [1]={ [1]={ limit={ @@ -229191,7 +232676,7 @@ return { [1]="skeleton_movement_speed_+%" } }, - [10074]={ + [10219]={ [1]={ [1]={ limit={ @@ -229207,7 +232692,7 @@ return { [1]="skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element" } }, - [10075]={ + [10220]={ [1]={ [1]={ [1]={ @@ -229227,7 +232712,7 @@ return { [1]="skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments" } }, - [10076]={ + [10221]={ [1]={ [1]={ limit={ @@ -229243,7 +232728,7 @@ return { [1]="skeletons_are_permanent_minions" } }, - [10077]={ + [10222]={ [1]={ [1]={ limit={ @@ -229272,7 +232757,7 @@ return { [1]="skill_effect_duration_+%_per_red_skill_gem" } }, - [10078]={ + [10223]={ [1]={ [1]={ limit={ @@ -229301,7 +232786,7 @@ return { [1]="skill_effect_duration_+%_while_affected_by_malevolence" } }, - [10079]={ + [10224]={ [1]={ [1]={ limit={ @@ -229330,7 +232815,7 @@ return { [1]="skill_effect_duration_+%_with_bow_skills" } }, - [10080]={ + [10225]={ [1]={ [1]={ limit={ @@ -229359,7 +232844,7 @@ return { [1]="skill_effect_duration_+%_with_non_curse_aura_skills" } }, - [10081]={ + [10226]={ [1]={ [1]={ limit={ @@ -229375,7 +232860,7 @@ return { [1]="skill_life_cost_+_with_channelling_skills" } }, - [10082]={ + [10227]={ [1]={ [1]={ limit={ @@ -229391,7 +232876,7 @@ return { [1]="skill_life_cost_+_with_non_channelling_skills" } }, - [10083]={ + [10228]={ [1]={ [1]={ [1]={ @@ -229428,7 +232913,7 @@ return { [1]="skill_life_cost_+%_final_while_on_low_life" } }, - [10084]={ + [10229]={ [1]={ [1]={ limit={ @@ -229444,7 +232929,7 @@ return { [1]="skill_mana_cost_+_while_affected_by_clarity" } }, - [10085]={ + [10230]={ [1]={ [1]={ limit={ @@ -229460,7 +232945,7 @@ return { [1]="skill_mana_cost_+_with_channelling_skills" } }, - [10086]={ + [10231]={ [1]={ [1]={ limit={ @@ -229476,7 +232961,7 @@ return { [1]="base_mana_cost_+_with_channelling_skills" } }, - [10087]={ + [10232]={ [1]={ [1]={ limit={ @@ -229492,7 +232977,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills" } }, - [10088]={ + [10233]={ [1]={ [1]={ limit={ @@ -229508,7 +232993,7 @@ return { [1]="base_mana_cost_+_with_non_channelling_skills" } }, - [10089]={ + [10234]={ [1]={ [1]={ limit={ @@ -229524,7 +233009,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity" } }, - [10090]={ + [10235]={ [1]={ [1]={ limit={ @@ -229540,7 +233025,7 @@ return { [1]="skills_cost_no_mana_while_focused" } }, - [10091]={ + [10236]={ [1]={ [1]={ limit={ @@ -229565,7 +233050,7 @@ return { [1]="skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_8_steel_ammo" } }, - [10092]={ + [10237]={ [1]={ [1]={ [1]={ @@ -229585,7 +233070,7 @@ return { [1]="skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [10093]={ + [10238]={ [1]={ [1]={ [1]={ @@ -229605,7 +233090,7 @@ return { [1]="skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [10094]={ + [10239]={ [1]={ [1]={ [1]={ @@ -229642,7 +233127,7 @@ return { [1]="skills_supported_by_nightblade_have_elusive_effect_+%" } }, - [10095]={ + [10240]={ [1]={ [1]={ limit={ @@ -229658,7 +233143,7 @@ return { [1]="skills_that_throw_mines_reserve_life" } }, - [10096]={ + [10241]={ [1]={ [1]={ limit={ @@ -229674,7 +233159,7 @@ return { [1]="skip_life_sacrifice_chance_%" } }, - [10097]={ + [10242]={ [1]={ [1]={ [1]={ @@ -229711,7 +233196,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_-2%_per_1" } }, - [10098]={ + [10243]={ [1]={ [1]={ limit={ @@ -229740,7 +233225,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_+%" } }, - [10099]={ + [10244]={ [1]={ [1]={ [1]={ @@ -229777,7 +233262,7 @@ return { [1]="slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%" } }, - [10100]={ + [10245]={ [1]={ [1]={ limit={ @@ -229793,7 +233278,7 @@ return { [1]="slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100" } }, - [10101]={ + [10246]={ [1]={ [1]={ limit={ @@ -229822,7 +233307,7 @@ return { [1]="slayer_damage_+%_final_against_unique_enemies" } }, - [10102]={ + [10247]={ [1]={ [1]={ limit={ @@ -229851,7 +233336,7 @@ return { [1]="slayer_damage_+%_final_from_distance" } }, - [10103]={ + [10248]={ [1]={ [1]={ [1]={ @@ -229888,7 +233373,7 @@ return { [1]="slither_elusive_effect_+%" } }, - [10104]={ + [10249]={ [1]={ [1]={ [1]={ @@ -229913,7 +233398,7 @@ return { [2]="quality_display_withering_step_is_gem" } }, - [10105]={ + [10250]={ [1]={ [1]={ limit={ @@ -229929,7 +233414,7 @@ return { [1]="smite_aura_effect_+%" } }, - [10106]={ + [10251]={ [1]={ [1]={ limit={ @@ -229945,7 +233430,7 @@ return { [1]="smite_chance_for_lighting_to_strike_extra_target_%" } }, - [10107]={ + [10252]={ [1]={ [1]={ limit={ @@ -229974,7 +233459,7 @@ return { [1]="smite_damage_+%" } }, - [10108]={ + [10253]={ [1]={ [1]={ limit={ @@ -229990,7 +233475,7 @@ return { [1]="smite_static_strike_killing_blow_consumes_corpse_restore_%_life" } }, - [10109]={ + [10254]={ [1]={ [1]={ limit={ @@ -230019,7 +233504,7 @@ return { [1]="snapping_adder_damage_+%" } }, - [10110]={ + [10255]={ [1]={ [1]={ limit={ @@ -230035,7 +233520,7 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [10111]={ + [10256]={ [1]={ [1]={ [1]={ @@ -230068,7 +233553,7 @@ return { [1]="snapping_adder_withered_on_hit_for_2_seconds_%_chance" } }, - [10112]={ + [10257]={ [1]={ [1]={ limit={ @@ -230097,7 +233582,7 @@ return { [1]="snipe_attack_speed_+%" } }, - [10113]={ + [10258]={ [1]={ [1]={ limit={ @@ -230118,7 +233603,7 @@ return { [2]="quality_display_snipe_is_gem" } }, - [10114]={ + [10259]={ [1]={ [1]={ limit={ @@ -230134,7 +233619,7 @@ return { [1]="socketed_non_cluster_jewels_have_no_effect" } }, - [10115]={ + [10260]={ [1]={ [1]={ [1]={ @@ -230154,7 +233639,7 @@ return { [1]="soul_eater_from_unique" } }, - [10116]={ + [10261]={ [1]={ [1]={ limit={ @@ -230179,7 +233664,7 @@ return { [1]="soul_eater_maximum_stacks" } }, - [10117]={ + [10262]={ [1]={ [1]={ limit={ @@ -230208,7 +233693,7 @@ return { [1]="soul_link_duration_+%" } }, - [10118]={ + [10263]={ [1]={ [1]={ limit={ @@ -230229,7 +233714,7 @@ return { [2]="quality_display_forbidden_rite_is_gem" } }, - [10119]={ + [10264]={ [1]={ [1]={ [1]={ @@ -230270,7 +233755,7 @@ return { [1]="soulrend_applies_hinder_movement_speed_+%" } }, - [10120]={ + [10265]={ [1]={ [1]={ limit={ @@ -230299,7 +233784,7 @@ return { [1]="soulrend_damage_+%" } }, - [10121]={ + [10266]={ [1]={ [1]={ limit={ @@ -230324,7 +233809,7 @@ return { [1]="soulrend_number_of_additional_projectiles" } }, - [10122]={ + [10267]={ [1]={ [1]={ limit={ @@ -230349,7 +233834,7 @@ return { [1]="spark_number_of_additional_projectiles" } }, - [10123]={ + [10268]={ [1]={ [1]={ limit={ @@ -230365,7 +233850,7 @@ return { [1]="spark_projectiles_nova" } }, - [10124]={ + [10269]={ [1]={ [1]={ limit={ @@ -230398,7 +233883,7 @@ return { [1]="spark_skill_effect_duration_+%" } }, - [10125]={ + [10270]={ [1]={ [1]={ limit={ @@ -230423,7 +233908,7 @@ return { [1]="spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent" } }, - [10126]={ + [10271]={ [1]={ [1]={ limit={ @@ -230452,7 +233937,7 @@ return { [1]="spectral_helix_damage_+%" } }, - [10127]={ + [10272]={ [1]={ [1]={ limit={ @@ -230481,7 +233966,7 @@ return { [1]="spectral_helix_projectile_speed_+%" } }, - [10128]={ + [10273]={ [1]={ [1]={ [1]={ @@ -230501,7 +233986,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [10129]={ + [10274]={ [1]={ [1]={ limit={ @@ -230526,7 +234011,7 @@ return { [1]="spectral_shield_throw_additional_chains" } }, - [10130]={ + [10275]={ [1]={ [1]={ limit={ @@ -230555,7 +234040,7 @@ return { [1]="spectral_shield_throw_damage_+%" } }, - [10131]={ + [10276]={ [1]={ [1]={ limit={ @@ -230580,7 +234065,7 @@ return { [1]="spectral_shield_throw_num_of_additional_projectiles" } }, - [10132]={ + [10277]={ [1]={ [1]={ limit={ @@ -230609,7 +234094,7 @@ return { [1]="spectral_shield_throw_projectile_speed_+%" } }, - [10133]={ + [10278]={ [1]={ [1]={ limit={ @@ -230625,7 +234110,7 @@ return { [1]="spectral_shield_throw_secondary_projectiles_pierce" } }, - [10134]={ + [10279]={ [1]={ [1]={ [1]={ @@ -230654,7 +234139,7 @@ return { [1]="spectral_shield_throw_shard_projectiles_+%_final" } }, - [10135]={ + [10280]={ [1]={ [1]={ limit={ @@ -230679,7 +234164,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [10136]={ + [10281]={ [1]={ [1]={ [1]={ @@ -230699,7 +234184,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [10137]={ + [10282]={ [1]={ [1]={ limit={ @@ -230715,7 +234200,7 @@ return { [1]="spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%" } }, - [10138]={ + [10283]={ [1]={ [1]={ limit={ @@ -230731,7 +234216,7 @@ return { [1]="spectre_maximum_life_+" } }, - [10139]={ + [10284]={ [1]={ [1]={ limit={ @@ -230760,7 +234245,7 @@ return { [1]="spectre_zombie_skeleton_critical_strike_multiplier_+" } }, - [10140]={ + [10285]={ [1]={ [1]={ [1]={ @@ -230780,7 +234265,7 @@ return { [1]="spectres_additional_base_critical_strike_chance" } }, - [10141]={ + [10286]={ [1]={ [1]={ [1]={ @@ -230800,7 +234285,7 @@ return { [1]="spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised" } }, - [10142]={ + [10287]={ [1]={ [1]={ limit={ @@ -230816,7 +234301,7 @@ return { [1]="spectres_base_maximum_all_resistances_%" } }, - [10143]={ + [10288]={ [1]={ [1]={ limit={ @@ -230845,7 +234330,7 @@ return { [1]="spectres_base_skill_area_of_effect_+%" } }, - [10144]={ + [10289]={ [1]={ [1]={ limit={ @@ -230861,7 +234346,7 @@ return { [1]="spectres_critical_strike_chance_+%" } }, - [10145]={ + [10290]={ [1]={ [1]={ [1]={ @@ -230881,7 +234366,7 @@ return { [1]="spectres_gain_arcane_surge_when_you_do" } }, - [10146]={ + [10291]={ [1]={ [1]={ [1]={ @@ -230901,7 +234386,7 @@ return { [1]="spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance" } }, - [10147]={ + [10292]={ [1]={ [1]={ [1]={ @@ -230921,7 +234406,7 @@ return { [1]="spectres_have_base_duration_ms" } }, - [10148]={ + [10293]={ [1]={ [1]={ limit={ @@ -230937,7 +234422,7 @@ return { [1]="spectres_number_of_additional_projectiles" } }, - [10149]={ + [10294]={ [1]={ [1]={ limit={ @@ -230950,7 +234435,7 @@ return { [2]="#" } }, - text="{0} to {1} Spell Lightning Damage per 10 Intelligence" + text="Adds {0} to {1} Lightning Damage to Spells per 10 Intelligence" } }, stats={ @@ -230958,7 +234443,7 @@ return { [2]="spell_maximum_added_lightning_damage_per_10_intelligence" } }, - [10150]={ + [10295]={ [1]={ [1]={ [1]={ @@ -230978,7 +234463,7 @@ return { [1]="spell_additional_critical_strike_chance_permyriad" } }, - [10151]={ + [10296]={ [1]={ [1]={ [1]={ @@ -231002,7 +234487,7 @@ return { [1]="spell_and_attack_block_chance_is_lucky_if_blocked_recently" } }, - [10152]={ + [10297]={ [1]={ [1]={ limit={ @@ -231023,7 +234508,7 @@ return { [2]="spell_and_attack_maximum_added_chaos_damage_during_flask_effect" } }, - [10153]={ + [10298]={ [1]={ [1]={ limit={ @@ -231052,7 +234537,7 @@ return { [1]="spell_area_of_effect_+%" } }, - [10154]={ + [10299]={ [1]={ [1]={ limit={ @@ -231068,7 +234553,7 @@ return { [1]="spell_base_life_cost_%" } }, - [10155]={ + [10300]={ [1]={ [1]={ limit={ @@ -231077,14 +234562,14 @@ return { [2]="#" } }, - text="[DNT] +{0}% Chance to Block Spell Damage per Minion" + text="DNT +{0}% Chance to Block Spell Damage per Minion" } }, stats={ [1]="spell_block_%_per_minion" } }, - [10156]={ + [10301]={ [1]={ [1]={ limit={ @@ -231100,7 +234585,7 @@ return { [1]="spell_block_chance_%_while_holding_staff_or_shield" } }, - [10157]={ + [10302]={ [1]={ [1]={ [1]={ @@ -231120,7 +234605,7 @@ return { [1]="spell_block_is_maximum_if_not_blocked_recently" } }, - [10158]={ + [10303]={ [1]={ [1]={ [1]={ @@ -231140,7 +234625,7 @@ return { [1]="spell_block_%_if_blocked_a_spell_recently" } }, - [10159]={ + [10304]={ [1]={ [1]={ [1]={ @@ -231160,7 +234645,7 @@ return { [1]="spell_block_%_if_blocked_an_attack_recently" } }, - [10160]={ + [10305]={ [1]={ [1]={ limit={ @@ -231176,7 +234661,7 @@ return { [1]="spell_block_%_while_at_max_power_charges" } }, - [10161]={ + [10306]={ [1]={ [1]={ limit={ @@ -231201,7 +234686,7 @@ return { [1]="spell_chance_to_deal_double_damage_%" } }, - [10162]={ + [10307]={ [1]={ [1]={ limit={ @@ -231230,7 +234715,7 @@ return { [1]="spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals" } }, - [10163]={ + [10308]={ [1]={ [1]={ limit={ @@ -231259,7 +234744,7 @@ return { [1]="spell_critical_strike_chance_+%_per_100_max_life" } }, - [10164]={ + [10309]={ [1]={ [1]={ limit={ @@ -231288,7 +234773,23 @@ return { [1]="spell_critical_strike_chance_+%_per_raised_spectre" } }, - [10165]={ + [10310]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Spell Critical Strike Chance Bifurcates" + } + }, + stats={ + [1]="spell_critical_strikes_bifurcate" + } + }, + [10311]={ [1]={ [1]={ limit={ @@ -231304,7 +234805,7 @@ return { [1]="spell_damage_%_suppressed_if_not_suppressed_spell_recently" } }, - [10166]={ + [10312]={ [1]={ [1]={ [1]={ @@ -231332,7 +234833,7 @@ return { [1]="spell_damage_%_suppressed_if_taken_a_savage_hit_recently" } }, - [10167]={ + [10313]={ [1]={ [1]={ limit={ @@ -231348,7 +234849,7 @@ return { [1]="spell_damage_%_suppressed_per_bark_below_max" } }, - [10168]={ + [10314]={ [1]={ [1]={ [1]={ @@ -231368,7 +234869,7 @@ return { [1]="spell_damage_%_suppressed_per_hit_suppressed_recently" } }, - [10169]={ + [10315]={ [1]={ [1]={ [1]={ @@ -231405,7 +234906,7 @@ return { [1]="spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently" } }, - [10170]={ + [10316]={ [1]={ [1]={ [1]={ @@ -231442,7 +234943,7 @@ return { [1]="spell_damage_+%_if_have_crit_recently" } }, - [10171]={ + [10317]={ [1]={ [1]={ limit={ @@ -231471,7 +234972,7 @@ return { [1]="spell_damage_+%_per_500_maximum_mana" } }, - [10172]={ + [10318]={ [1]={ [1]={ limit={ @@ -231500,7 +235001,7 @@ return { [1]="spell_damage_+%_per_summoned_skeleton" } }, - [10173]={ + [10319]={ [1]={ [1]={ limit={ @@ -231529,7 +235030,7 @@ return { [1]="spell_damage_+%_during_flask_effect" } }, - [10174]={ + [10320]={ [1]={ [1]={ limit={ @@ -231558,7 +235059,7 @@ return { [1]="spell_damage_+%_if_have_crit_in_past_8_seconds" } }, - [10175]={ + [10321]={ [1]={ [1]={ limit={ @@ -231587,7 +235088,7 @@ return { [1]="spell_damage_+%_if_you_have_blocked_recently" } }, - [10176]={ + [10322]={ [1]={ [1]={ limit={ @@ -231616,7 +235117,7 @@ return { [1]="spell_damage_+%_per_100_max_life" } }, - [10177]={ + [10323]={ [1]={ [1]={ limit={ @@ -231645,7 +235146,7 @@ return { [1]="spell_damage_+%_per_100_maximum_mana_up_to_60%" } }, - [10178]={ + [10324]={ [1]={ [1]={ limit={ @@ -231674,7 +235175,7 @@ return { [1]="spell_damage_+%_per_10_strength" } }, - [10179]={ + [10325]={ [1]={ [1]={ limit={ @@ -231703,7 +235204,7 @@ return { [1]="spell_damage_+%_per_16_dex" } }, - [10180]={ + [10326]={ [1]={ [1]={ limit={ @@ -231732,7 +235233,7 @@ return { [1]="spell_damage_+%_per_16_int" } }, - [10181]={ + [10327]={ [1]={ [1]={ limit={ @@ -231761,7 +235262,7 @@ return { [1]="spell_damage_+%_per_16_strength" } }, - [10182]={ + [10328]={ [1]={ [1]={ limit={ @@ -231777,7 +235278,7 @@ return { [1]="spell_damage_+%_per_5%_spell_block_chance" } }, - [10183]={ + [10329]={ [1]={ [1]={ limit={ @@ -231806,7 +235307,7 @@ return { [1]="spell_damage_+%_while_shocked" } }, - [10184]={ + [10330]={ [1]={ [1]={ limit={ @@ -231835,7 +235336,7 @@ return { [1]="spell_damage_+%_while_you_have_arcane_surge" } }, - [10185]={ + [10331]={ [1]={ [1]={ limit={ @@ -231860,7 +235361,7 @@ return { [1]="spell_hits_against_you_inflict_poison_%" } }, - [10186]={ + [10332]={ [1]={ [1]={ [1]={ @@ -231893,7 +235394,7 @@ return { [1]="spell_impale_on_crit_%_chance" } }, - [10187]={ + [10333]={ [1]={ [1]={ limit={ @@ -231909,7 +235410,7 @@ return { [1]="spell_physical_damage_%_to_convert_to_fire" } }, - [10188]={ + [10334]={ [1]={ [1]={ limit={ @@ -231918,14 +235419,14 @@ return { [2]="#" } }, - text="[DNT] Projectiles from your Spells have infinite speed" + text="DNT Projectiles from your Spells have infinite speed" } }, stats={ [1]="spell_projectiles_arrive_instantly" } }, - [10189]={ + [10335]={ [1]={ [1]={ limit={ @@ -231941,7 +235442,36 @@ return { [1]="spell_skills_always_crit_on_final_repeat" } }, - [10190]={ + [10336]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Spell Skills have {0}% increased Critical Strike Chance on Final Repeat" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Spell Skills have {0}% reduced Critical Strike Chance on Final Repeat" + } + }, + stats={ + [1]="spell_skills_critical_strike_chance_+%_on_final_repeat" + } + }, + [10337]={ [1]={ [1]={ limit={ @@ -231957,7 +235487,7 @@ return { [1]="spell_skills_critical_strike_multiplier_+_on_final_repeat" } }, - [10191]={ + [10338]={ [1]={ [1]={ limit={ @@ -231973,7 +235503,7 @@ return { [1]="spell_skills_deal_no_damage" } }, - [10192]={ + [10339]={ [1]={ [1]={ limit={ @@ -231989,7 +235519,7 @@ return { [1]="spell_skills_never_crit_except_on_final_repeat" } }, - [10193]={ + [10340]={ [1]={ [1]={ limit={ @@ -232005,7 +235535,7 @@ return { [1]="spell_suppression_chance_%_if_all_equipment_grants_evasion" } }, - [10194]={ + [10341]={ [1]={ [1]={ [1]={ @@ -232029,7 +235559,7 @@ return { [1]="spell_suppression_chance_%_if_enemy_hit_recently" } }, - [10195]={ + [10342]={ [1]={ [1]={ [1]={ @@ -232049,7 +235579,7 @@ return { [1]="spell_suppression_chance_%_per_endurance_charge" } }, - [10196]={ + [10343]={ [1]={ [1]={ [1]={ @@ -232069,7 +235599,7 @@ return { [1]="spell_suppression_chance_%_per_equipped_dagger" } }, - [10197]={ + [10344]={ [1]={ [1]={ [1]={ @@ -232089,7 +235619,7 @@ return { [1]="spell_suppression_chance_%_per_hit_suppressed_recently" } }, - [10198]={ + [10345]={ [1]={ [1]={ [1]={ @@ -232109,7 +235639,7 @@ return { [1]="spell_suppression_chance_%_per_power_charge" } }, - [10199]={ + [10346]={ [1]={ [1]={ [1]={ @@ -232129,7 +235659,7 @@ return { [1]="spell_suppression_chance_%_while_affected_by_grace" } }, - [10200]={ + [10347]={ [1]={ [1]={ [1]={ @@ -232149,7 +235679,7 @@ return { [1]="spell_suppression_chance_%_while_affected_by_haste" } }, - [10201]={ + [10348]={ [1]={ [1]={ [1]={ @@ -232169,7 +235699,7 @@ return { [1]="spell_suppression_chance_%_while_channelling" } }, - [10202]={ + [10349]={ [1]={ [1]={ [1]={ @@ -232189,7 +235719,7 @@ return { [1]="spell_suppression_chance_%_while_holding_shield" } }, - [10203]={ + [10350]={ [1]={ [1]={ [1]={ @@ -232209,7 +235739,7 @@ return { [1]="spell_suppression_chance_%_while_moving" } }, - [10204]={ + [10351]={ [1]={ [1]={ [1]={ @@ -232229,7 +235759,7 @@ return { [1]="spell_suppression_chance_%_while_off_hand_empty" } }, - [10205]={ + [10352]={ [1]={ [1]={ [1]={ @@ -232249,7 +235779,7 @@ return { [1]="spell_suppression_chance_%_while_phasing" } }, - [10206]={ + [10353]={ [1]={ [1]={ limit={ @@ -232265,7 +235795,7 @@ return { [1]="spell_suppression_chance_is_lucky" } }, - [10207]={ + [10354]={ [1]={ [1]={ [1]={ @@ -232285,7 +235815,7 @@ return { [1]="spell_suppression_chance_modifiers_apply_to_avoid_all_elemental_ailments_at_%_value" } }, - [10208]={ + [10355]={ [1]={ [1]={ limit={ @@ -232301,7 +235831,7 @@ return { [1]="spell_suppression_chance_modifiers_apply_to_chance_to_double_armour_effect_on_hit_at_%_value" } }, - [10209]={ + [10356]={ [1]={ [1]={ [1]={ @@ -232325,7 +235855,7 @@ return { [1]="spell_suppression_chance_%_if_suppressed_spell_recently" } }, - [10210]={ + [10357]={ [1]={ [1]={ [1]={ @@ -232345,7 +235875,7 @@ return { [1]="spell_suppression_chance_%_while_on_full_energy_shield" } }, - [10211]={ + [10358]={ [1]={ [1]={ [1]={ @@ -232365,7 +235895,7 @@ return { [1]="spell_suppression_chance_%_while_on_full_life" } }, - [10212]={ + [10359]={ [1]={ [1]={ [1]={ @@ -232385,7 +235915,7 @@ return { [1]="spells_chance_to_blind_on_hit_%" } }, - [10213]={ + [10360]={ [1]={ [1]={ [1]={ @@ -232418,7 +235948,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [10214]={ + [10361]={ [1]={ [1]={ limit={ @@ -232434,7 +235964,7 @@ return { [1]="spells_chance_to_knockback_on_hit_%" } }, - [10215]={ + [10362]={ [1]={ [1]={ [1]={ @@ -232454,7 +235984,7 @@ return { [1]="spells_chance_to_poison_on_hit_%" } }, - [10216]={ + [10363]={ [1]={ [1]={ [1]={ @@ -232487,7 +236017,7 @@ return { [1]="spells_corrosion_on_hit_%" } }, - [10217]={ + [10364]={ [1]={ [1]={ [1]={ @@ -232507,7 +236037,7 @@ return { [1]="spells_impale_on_hit_%_chance" } }, - [10218]={ + [10365]={ [1]={ [1]={ [1]={ @@ -232527,7 +236057,7 @@ return { [1]="spells_inflict_intimidate_on_crit" } }, - [10219]={ + [10366]={ [1]={ [1]={ limit={ @@ -232543,7 +236073,7 @@ return { [1]="spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage" } }, - [10220]={ + [10367]={ [1]={ [1]={ limit={ @@ -232559,7 +236089,7 @@ return { [1]="spells_you_cast_gain_added_physical_damage_%_life_cost_if_payable" } }, - [10221]={ + [10368]={ [1]={ [1]={ limit={ @@ -232575,7 +236105,7 @@ return { [1]="spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage" } }, - [10222]={ + [10369]={ [1]={ [1]={ limit={ @@ -232604,7 +236134,7 @@ return { [1]="spellslinger_cooldown_duration_+%" } }, - [10223]={ + [10370]={ [1]={ [1]={ [1]={ @@ -232641,7 +236171,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_-2%_per_1" } }, - [10224]={ + [10371]={ [1]={ [1]={ limit={ @@ -232670,7 +236200,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_+%" } }, - [10225]={ + [10372]={ [1]={ [1]={ limit={ @@ -232703,7 +236233,7 @@ return { [1]="spellslinger_mana_reservation_+%" } }, - [10226]={ + [10373]={ [1]={ [1]={ limit={ @@ -232732,7 +236262,7 @@ return { [1]="spider_aspect_debuff_duration_+%" } }, - [10227]={ + [10374]={ [1]={ [1]={ limit={ @@ -232748,7 +236278,7 @@ return { [1]="spider_aspect_reserves_no_mana" } }, - [10228]={ + [10375]={ [1]={ [1]={ limit={ @@ -232777,7 +236307,7 @@ return { [1]="spider_aspect_skill_area_of_effect_+%" } }, - [10229]={ + [10376]={ [1]={ [1]={ [1]={ @@ -232797,7 +236327,7 @@ return { [1]="spider_aspect_web_interval_ms_override" } }, - [10230]={ + [10377]={ [1]={ [1]={ limit={ @@ -232831,7 +236361,7 @@ return { [2]="quality_display_spike_slam_is_gem" } }, - [10231]={ + [10378]={ [1]={ [1]={ limit={ @@ -232860,7 +236390,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [10232]={ + [10379]={ [1]={ [1]={ limit={ @@ -232876,7 +236406,7 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [10233]={ + [10380]={ [1]={ [1]={ limit={ @@ -232892,7 +236422,7 @@ return { [1]="split_arrow_projectiles_fire_in_parallel_x_dist" } }, - [10234]={ + [10381]={ [1]={ [1]={ limit={ @@ -232921,7 +236451,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [10235]={ + [10382]={ [1]={ [1]={ limit={ @@ -232950,7 +236480,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [10236]={ + [10383]={ [1]={ [1]={ limit={ @@ -232979,7 +236509,7 @@ return { [1]="splitting_steel_damage_+%" } }, - [10237]={ + [10384]={ [1]={ [1]={ limit={ @@ -232995,7 +236525,7 @@ return { [1]="spread_freeze_to_nearby_enemies" } }, - [10238]={ + [10385]={ [1]={ [1]={ limit={ @@ -233011,7 +236541,7 @@ return { [1]="spread_ignite_to_nearby_enemies" } }, - [10239]={ + [10386]={ [1]={ [1]={ [1]={ @@ -233035,7 +236565,7 @@ return { [1]="life_regeneration_per_minute_in_blood_stance" } }, - [10240]={ + [10387]={ [1]={ [1]={ [1]={ @@ -233072,7 +236602,7 @@ return { [1]="projectile_damage_+%_in_blood_stance" } }, - [10241]={ + [10388]={ [1]={ [1]={ limit={ @@ -233101,7 +236631,7 @@ return { [1]="evasion_rating_plus_in_sand_stance" } }, - [10242]={ + [10389]={ [1]={ [1]={ limit={ @@ -233130,7 +236660,7 @@ return { [1]="stance_skill_cooldown_speed_+%" } }, - [10243]={ + [10390]={ [1]={ [1]={ limit={ @@ -233159,7 +236689,7 @@ return { [1]="stance_skills_mana_reservation_efficiency_+%" } }, - [10244]={ + [10391]={ [1]={ [1]={ limit={ @@ -233188,7 +236718,7 @@ return { [1]="stance_skill_reservation_+%" } }, - [10245]={ + [10392]={ [1]={ [1]={ limit={ @@ -233217,7 +236747,7 @@ return { [1]="skill_area_of_effect_+%_in_sand_stance" } }, - [10246]={ + [10393]={ [1]={ [1]={ [1]={ @@ -233237,7 +236767,7 @@ return { [1]="stance_swap_cooldown_modifier_ms" } }, - [10247]={ + [10394]={ [1]={ [1]={ [1]={ @@ -233274,7 +236804,7 @@ return { [1]="attack_speed_+%_if_changed_stance_recently" } }, - [10248]={ + [10395]={ [1]={ [1]={ limit={ @@ -233299,7 +236829,7 @@ return { [1]="static_strike_additional_number_of_beam_targets" } }, - [10249]={ + [10396]={ [1]={ [1]={ [1]={ @@ -233336,7 +236866,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_while_focused" } }, - [10250]={ + [10397]={ [1]={ [1]={ [1]={ @@ -233373,7 +236903,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_with_bows" } }, - [10251]={ + [10398]={ [1]={ [1]={ [1]={ @@ -233410,7 +236940,7 @@ return { [1]="stealth_+%_while_affected_by_elusive" } }, - [10252]={ + [10399]={ [1]={ [1]={ limit={ @@ -233439,7 +236969,7 @@ return { [1]="stealth_+%" } }, - [10253]={ + [10400]={ [1]={ [1]={ limit={ @@ -233468,7 +236998,7 @@ return { [1]="stealth_+%_if_have_hit_with_claw_recently" } }, - [10254]={ + [10401]={ [1]={ [1]={ limit={ @@ -233497,7 +237027,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [10255]={ + [10402]={ [1]={ [1]={ limit={ @@ -233526,7 +237056,7 @@ return { [1]="steel_steal_cast_speed_+%" } }, - [10256]={ + [10403]={ [1]={ [1]={ limit={ @@ -233555,7 +237085,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [10257]={ + [10404]={ [1]={ [1]={ limit={ @@ -233584,7 +237114,7 @@ return { [1]="steelskin_damage_limit_+%" } }, - [10258]={ + [10405]={ [1]={ [1]={ limit={ @@ -233613,7 +237143,7 @@ return { [1]="stibnite_flask_evasion_rating_+%_final" } }, - [10259]={ + [10406]={ [1]={ [1]={ [1]={ @@ -233633,7 +237163,7 @@ return { [1]="stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems" } }, - [10260]={ + [10407]={ [1]={ [1]={ limit={ @@ -233649,7 +237179,7 @@ return { [1]="storm_armageddon_sigils_can_target_reaper_minions" } }, - [10261]={ + [10408]={ [1]={ [1]={ limit={ @@ -233678,7 +237208,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [10262]={ + [10409]={ [1]={ [1]={ limit={ @@ -233694,7 +237224,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [10263]={ + [10410]={ [1]={ [1]={ limit={ @@ -233710,7 +237240,7 @@ return { [1]="storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos" } }, - [10264]={ + [10411]={ [1]={ [1]={ limit={ @@ -233726,7 +237256,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [10265]={ + [10412]={ [1]={ [1]={ limit={ @@ -233755,7 +237285,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [10266]={ + [10413]={ [1]={ [1]={ limit={ @@ -233771,7 +237301,7 @@ return { [1]="storm_brand_additional_chain_chance_%" } }, - [10267]={ + [10414]={ [1]={ [1]={ limit={ @@ -233787,7 +237317,7 @@ return { [1]="storm_brand_attached_target_lightning_penetration_%" } }, - [10268]={ + [10415]={ [1]={ [1]={ limit={ @@ -233816,7 +237346,7 @@ return { [1]="storm_brand_damage_+%" } }, - [10269]={ + [10416]={ [1]={ [1]={ limit={ @@ -233832,7 +237362,7 @@ return { [1]="storm_burst_15_%_chance_to_create_additional_orb" } }, - [10270]={ + [10417]={ [1]={ [1]={ limit={ @@ -233848,7 +237378,7 @@ return { [1]="storm_burst_additional_object_chance_%" } }, - [10271]={ + [10418]={ [1]={ [1]={ limit={ @@ -233877,7 +237407,7 @@ return { [1]="storm_burst_area_of_effect_+%" } }, - [10272]={ + [10419]={ [1]={ [1]={ limit={ @@ -233893,7 +237423,7 @@ return { [1]="storm_burst_avoid_interruption_while_casting_%" } }, - [10273]={ + [10420]={ [1]={ [1]={ limit={ @@ -233918,7 +237448,7 @@ return { [1]="storm_burst_number_of_additional_projectiles" } }, - [10274]={ + [10421]={ [1]={ [1]={ limit={ @@ -233947,7 +237477,7 @@ return { [1]="storm_rain_damage_+%" } }, - [10275]={ + [10422]={ [1]={ [1]={ limit={ @@ -233972,7 +237502,7 @@ return { [1]="storm_rain_num_additional_arrows" } }, - [10276]={ + [10423]={ [1]={ [1]={ limit={ @@ -234001,7 +237531,7 @@ return { [1]="stormbind_skill_area_of_effect_+%" } }, - [10277]={ + [10424]={ [1]={ [1]={ limit={ @@ -234030,7 +237560,7 @@ return { [1]="stormbind_skill_damage_+%" } }, - [10278]={ + [10425]={ [1]={ [1]={ limit={ @@ -234059,7 +237589,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_aura_effect_+%" } }, - [10279]={ + [10426]={ [1]={ [1]={ limit={ @@ -234075,7 +237605,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_base_deal_no_damage" } }, - [10280]={ + [10427]={ [1]={ [1]={ limit={ @@ -234091,7 +237621,7 @@ return { [1]="strength_applies_to_fish_reel_speed_at_20%_value" } }, - [10281]={ + [10428]={ [1]={ [1]={ limit={ @@ -234107,7 +237637,7 @@ return { [1]="strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead" } }, - [10282]={ + [10429]={ [1]={ [1]={ limit={ @@ -234123,7 +237653,7 @@ return { [1]="strength_skill_gem_level_+" } }, - [10283]={ + [10430]={ [1]={ [1]={ [1]={ @@ -234143,7 +237673,7 @@ return { [1]="strike_skills_fortify_on_hit" } }, - [10284]={ + [10431]={ [1]={ [1]={ limit={ @@ -234159,7 +237689,7 @@ return { [1]="strike_skills_knockback_on_melee_hit" } }, - [10285]={ + [10432]={ [1]={ [1]={ limit={ @@ -234188,7 +237718,7 @@ return { [1]="strongest_packmate_multiplier_+%_final" } }, - [10286]={ + [10433]={ [1]={ [1]={ limit={ @@ -234204,7 +237734,7 @@ return { [1]="stun_duration_on_critical_strike_+%" } }, - [10287]={ + [10434]={ [1]={ [1]={ limit={ @@ -234233,7 +237763,7 @@ return { [1]="stun_duration_+%_per_15_strength" } }, - [10288]={ + [10435]={ [1]={ [1]={ limit={ @@ -234262,7 +237792,7 @@ return { [1]="stun_duration_+%_per_endurance_charge" } }, - [10289]={ + [10436]={ [1]={ [1]={ limit={ @@ -234278,7 +237808,7 @@ return { [1]="stun_nearby_enemies_when_stunned_chance_%" } }, - [10290]={ + [10437]={ [1]={ [1]={ [1]={ @@ -234298,7 +237828,7 @@ return { [1]="stun_threshold_based_on_%_energy_shield_instead_of_life" } }, - [10291]={ + [10438]={ [1]={ [1]={ [1]={ @@ -234322,7 +237852,7 @@ return { [1]="stun_threshold_increased_by_overcapped_fire_resistance" } }, - [10292]={ + [10439]={ [1]={ [1]={ [1]={ @@ -234342,7 +237872,7 @@ return { [1]="stun_threshold_+%_per_rage" } }, - [10293]={ + [10440]={ [1]={ [1]={ [1]={ @@ -234362,7 +237892,82 @@ return { [1]="stun_threshold_reduction_+%_with_500_or_more_strength" } }, - [10294]={ + [10441]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills used by Totems have {0}% more Area of Effect per maximum number of Summoned Totems" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Skills used by Totems have {0}% less Area of Effect per maximum number of Summoned Totems" + } + }, + stats={ + [1]="stygian_spire_totem_area_of_effect_+%_final_per_maximum_totem" + } + }, + [10442]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills used by Totems deal {0}% more Damage per maximum number of Summoned Totems" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Skills used by Totems deal {0}% less Damage per maximum number of Summoned Totems" + } + }, + stats={ + [1]="stygian_spire_totem_damage_+%_final_per_maximum_totem" + } + }, + [10443]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Totems have {0}% more Life per maximum number of Summoned Totems" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Totems have {0}% less Life per maximum number of Summoned Totems" + } + }, + stats={ + [1]="stygian_spire_totem_life_+%_final_per_maximum_totem" + } + }, + [10444]={ [1]={ [1]={ limit={ @@ -234378,7 +237983,7 @@ return { [1]="summon_2_totems" } }, - [10295]={ + [10445]={ [1]={ [1]={ limit={ @@ -234407,7 +238012,7 @@ return { [1]="summon_arbalist_attack_speed_+%" } }, - [10296]={ + [10446]={ [1]={ [1]={ limit={ @@ -234423,7 +238028,7 @@ return { [1]="summon_arbalist_chains_+" } }, - [10297]={ + [10447]={ [1]={ [1]={ [1]={ @@ -234443,7 +238048,7 @@ return { [1]="summon_arbalist_chance_to_bleed_%" } }, - [10298]={ + [10448]={ [1]={ [1]={ [1]={ @@ -234463,7 +238068,7 @@ return { [1]="summon_arbalist_chance_to_crush_on_hit_%" } }, - [10299]={ + [10449]={ [1]={ [1]={ limit={ @@ -234479,7 +238084,7 @@ return { [1]="summon_arbalist_chance_to_deal_double_damage_%" } }, - [10300]={ + [10450]={ [1]={ [1]={ [1]={ @@ -234507,7 +238112,7 @@ return { [1]="summon_arbalist_chance_to_ignite_freeze_shock_%" } }, - [10301]={ + [10451]={ [1]={ [1]={ [1]={ @@ -234527,7 +238132,7 @@ return { [1]="summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%" } }, - [10302]={ + [10452]={ [1]={ [1]={ [1]={ @@ -234547,7 +238152,7 @@ return { [1]="summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%" } }, - [10303]={ + [10453]={ [1]={ [1]={ [1]={ @@ -234567,7 +238172,7 @@ return { [1]="summon_arbalist_chance_to_poison_%" } }, - [10304]={ + [10454]={ [1]={ [1]={ [1]={ @@ -234587,7 +238192,7 @@ return { [1]="summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%" } }, - [10305]={ + [10455]={ [1]={ [1]={ limit={ @@ -234603,7 +238208,7 @@ return { [1]="summon_arbalist_number_of_additional_projectiles" } }, - [10306]={ + [10456]={ [1]={ [1]={ limit={ @@ -234619,7 +238224,7 @@ return { [1]="summon_arbalist_number_of_splits" } }, - [10307]={ + [10457]={ [1]={ [1]={ limit={ @@ -234635,7 +238240,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_add_as_cold" } }, - [10308]={ + [10458]={ [1]={ [1]={ limit={ @@ -234651,7 +238256,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_add_as_fire" } }, - [10309]={ + [10459]={ [1]={ [1]={ limit={ @@ -234667,7 +238272,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_add_as_lightning" } }, - [10310]={ + [10460]={ [1]={ [1]={ limit={ @@ -234683,7 +238288,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_convert_to_cold" } }, - [10311]={ + [10461]={ [1]={ [1]={ limit={ @@ -234699,7 +238304,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_convert_to_fire" } }, - [10312]={ + [10462]={ [1]={ [1]={ limit={ @@ -234715,7 +238320,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_convert_to_lightning" } }, - [10313]={ + [10463]={ [1]={ [1]={ limit={ @@ -234731,7 +238336,7 @@ return { [1]="summon_arbalist_projectiles_fork" } }, - [10314]={ + [10464]={ [1]={ [1]={ limit={ @@ -234747,7 +238352,7 @@ return { [1]="summon_arbalist_targets_to_pierce" } }, - [10315]={ + [10465]={ [1]={ [1]={ [1]={ @@ -234767,7 +238372,7 @@ return { [1]="summon_arbalist_chance_to_freeze_%" } }, - [10316]={ + [10466]={ [1]={ [1]={ [1]={ @@ -234787,7 +238392,7 @@ return { [1]="summon_arbalist_chance_to_ignite_%" } }, - [10317]={ + [10467]={ [1]={ [1]={ [1]={ @@ -234807,7 +238412,7 @@ return { [1]="summon_arbalist_chance_to_shock_%" } }, - [10318]={ + [10468]={ [1]={ [1]={ [1]={ @@ -234827,7 +238432,7 @@ return { [1]="summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%" } }, - [10319]={ + [10469]={ [1]={ [1]={ [1]={ @@ -234847,7 +238452,7 @@ return { [1]="summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%" } }, - [10320]={ + [10470]={ [1]={ [1]={ [1]={ @@ -234867,7 +238472,7 @@ return { [1]="summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%" } }, - [10321]={ + [10471]={ [1]={ [1]={ limit={ @@ -234883,7 +238488,7 @@ return { [1]="summon_fire_skitterbot" } }, - [10322]={ + [10472]={ [1]={ [1]={ limit={ @@ -234899,7 +238504,7 @@ return { [1]="summon_raging_spirit_melee_splash_fire_damage_only" } }, - [10323]={ + [10473]={ [1]={ [1]={ limit={ @@ -234928,7 +238533,7 @@ return { [1]="summon_reaper_cooldown_speed_+%" } }, - [10324]={ + [10474]={ [1]={ [1]={ limit={ @@ -234980,7 +238585,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_one_twentieth_chance" } }, - [10325]={ + [10475]={ [1]={ [1]={ limit={ @@ -234996,7 +238601,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_%_chance" } }, - [10326]={ + [10476]={ [1]={ [1]={ [1]={ @@ -235029,7 +238634,7 @@ return { [1]="summon_skeletons_cooldown_modifier_ms" } }, - [10327]={ + [10477]={ [1]={ [1]={ limit={ @@ -235058,7 +238663,7 @@ return { [1]="summon_skitterbots_area_of_effect_+%" } }, - [10328]={ + [10478]={ [1]={ [1]={ limit={ @@ -235091,7 +238696,7 @@ return { [1]="summon_skitterbots_mana_reservation_+%" } }, - [10329]={ + [10479]={ [1]={ [1]={ [1]={ @@ -235111,7 +238716,7 @@ return { [1]="summoned_phantasms_grant_buff" } }, - [10330]={ + [10480]={ [1]={ [1]={ limit={ @@ -235127,7 +238732,7 @@ return { [1]="summoned_phantasms_have_no_duration" } }, - [10331]={ + [10481]={ [1]={ [1]={ limit={ @@ -235143,7 +238748,7 @@ return { [1]="summoned_raging_spirits_have_diamond_and_massive_shrine_buff" } }, - [10332]={ + [10482]={ [1]={ [1]={ limit={ @@ -235172,7 +238777,7 @@ return { [1]="summoned_reaper_damage_+%" } }, - [10333]={ + [10483]={ [1]={ [1]={ limit={ @@ -235188,7 +238793,7 @@ return { [1]="summoned_reaper_physical_dot_multiplier_+" } }, - [10334]={ + [10484]={ [1]={ [1]={ limit={ @@ -235204,7 +238809,7 @@ return { [1]="summoned_skeleton_%_chance_to_wither_for_2_seconds" } }, - [10335]={ + [10485]={ [1]={ [1]={ limit={ @@ -235220,7 +238825,7 @@ return { [1]="summoned_skeleton_%_physical_to_chaos" } }, - [10336]={ + [10486]={ [1]={ [1]={ [1]={ @@ -235253,7 +238858,7 @@ return { [1]="summoned_skeletons_cover_in_ash_on_hit_%" } }, - [10337]={ + [10487]={ [1]={ [1]={ [1]={ @@ -235273,7 +238878,7 @@ return { [1]="summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [10338]={ + [10488]={ [1]={ [1]={ limit={ @@ -235289,7 +238894,7 @@ return { [1]="summoned_skeletons_hits_cant_be_evaded" } }, - [10339]={ + [10489]={ [1]={ [1]={ limit={ @@ -235305,7 +238910,7 @@ return { [1]="summoned_skitterbots_auras_also_affect_you" } }, - [10340]={ + [10490]={ [1]={ [1]={ limit={ @@ -235334,7 +238939,7 @@ return { [1]="summoned_skitterbots_cooldown_recovery_+%" } }, - [10341]={ + [10491]={ [1]={ [1]={ [1]={ @@ -235371,7 +238976,7 @@ return { [1]="summoned_skitterbots_non_damaging_ailment_effect_+%" } }, - [10342]={ + [10492]={ [1]={ [1]={ limit={ @@ -235387,7 +238992,7 @@ return { [1]="summoned_support_ghosts_have_diamond_and_massive_shrine_buff" } }, - [10343]={ + [10493]={ [1]={ [1]={ [1]={ @@ -235407,7 +239012,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [10344]={ + [10494]={ [1]={ [1]={ limit={ @@ -235436,7 +239041,7 @@ return { [1]="support_anticipation_charge_gain_frequency_+%" } }, - [10345]={ + [10495]={ [1]={ [1]={ limit={ @@ -235465,7 +239070,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [10346]={ + [10496]={ [1]={ [1]={ limit={ @@ -235486,7 +239091,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [10347]={ + [10497]={ [1]={ [1]={ [1]={ @@ -235506,7 +239111,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [10348]={ + [10498]={ [1]={ [1]={ limit={ @@ -235535,7 +239140,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [10349]={ + [10499]={ [1]={ [1]={ limit={ @@ -235551,7 +239156,7 @@ return { [1]="supported_aura_skill_gem_level_+" } }, - [10350]={ + [10500]={ [1]={ [1]={ limit={ @@ -235567,7 +239172,7 @@ return { [1]="supported_cold_skill_gem_level_+" } }, - [10351]={ + [10501]={ [1]={ [1]={ limit={ @@ -235583,7 +239188,7 @@ return { [1]="supported_elemental_skill_gem_level_+" } }, - [10352]={ + [10502]={ [1]={ [1]={ limit={ @@ -235599,7 +239204,7 @@ return { [1]="supported_fire_skill_gem_level_+" } }, - [10353]={ + [10503]={ [1]={ [1]={ limit={ @@ -235615,7 +239220,7 @@ return { [1]="supported_lightning_skill_gem_level_+" } }, - [10354]={ + [10504]={ [1]={ [1]={ [1]={ @@ -235635,7 +239240,7 @@ return { [1]="suppressed_spell_damage_cannot_inflict_elemental_ailments" } }, - [10355]={ + [10505]={ [1]={ [1]={ limit={ @@ -235651,7 +239256,7 @@ return { [1]="synthesis_map_adjacent_nodes_global_mod_values_doubled" } }, - [10356]={ + [10506]={ [1]={ [1]={ limit={ @@ -235667,7 +239272,7 @@ return { [1]="synthesis_map_global_mod_values_doubled_on_this_node" } }, - [10357]={ + [10507]={ [1]={ [1]={ limit={ @@ -235683,7 +239288,7 @@ return { [1]="synthesis_map_global_mod_values_tripled_on_this_node" } }, - [10358]={ + [10508]={ [1]={ [1]={ limit={ @@ -235699,7 +239304,7 @@ return { [1]="synthesis_map_memories_do_not_collapse_on_this_node" } }, - [10359]={ + [10509]={ [1]={ [1]={ limit={ @@ -235728,7 +239333,7 @@ return { [1]="synthesis_map_monster_slain_experience_+%_on_this_node" } }, - [10360]={ + [10510]={ [1]={ [1]={ limit={ @@ -235744,7 +239349,7 @@ return { [1]="synthesis_map_nearby_memories_have_bonus" } }, - [10361]={ + [10511]={ [1]={ [1]={ limit={ @@ -235769,7 +239374,7 @@ return { [1]="synthesis_map_node_additional_uses_+" } }, - [10362]={ + [10512]={ [1]={ [1]={ limit={ @@ -235785,7 +239390,7 @@ return { [1]="synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories" } }, - [10363]={ + [10513]={ [1]={ [1]={ limit={ @@ -235810,7 +239415,7 @@ return { [1]="synthesis_map_node_grants_additional_global_mod" } }, - [10364]={ + [10514]={ [1]={ [1]={ limit={ @@ -235826,7 +239431,7 @@ return { [1]="synthesis_map_node_grants_no_global_mod" } }, - [10365]={ + [10515]={ [1]={ [1]={ limit={ @@ -235842,7 +239447,7 @@ return { [1]="synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters" } }, - [10366]={ + [10516]={ [1]={ [1]={ limit={ @@ -235858,7 +239463,7 @@ return { [1]="synthesis_map_node_item_quantity_increases_doubled" } }, - [10367]={ + [10517]={ [1]={ [1]={ limit={ @@ -235874,7 +239479,7 @@ return { [1]="synthesis_map_node_item_rarity_increases_doubled" } }, - [10368]={ + [10518]={ [1]={ [1]={ limit={ @@ -235899,7 +239504,7 @@ return { [1]="synthesis_map_node_level_+" } }, - [10369]={ + [10519]={ [1]={ [1]={ limit={ @@ -235915,7 +239520,7 @@ return { [1]="synthesis_map_node_monsters_drop_no_items" } }, - [10370]={ + [10520]={ [1]={ [1]={ limit={ @@ -235931,7 +239536,7 @@ return { [1]="synthesis_map_node_pack_size_increases_doubled" } }, - [10371]={ + [10521]={ [1]={ [1]={ limit={ @@ -235960,7 +239565,7 @@ return { [1]="tailwind_effect_on_self_+%" } }, - [10372]={ + [10522]={ [1]={ [1]={ [1]={ @@ -235997,7 +239602,7 @@ return { [1]="tailwind_effect_on_self_+%_per_gale_force" } }, - [10373]={ + [10523]={ [1]={ [1]={ [1]={ @@ -236017,7 +239622,7 @@ return { [1]="tailwind_if_have_crit_recently" } }, - [10374]={ + [10524]={ [1]={ [1]={ [1]={ @@ -236037,7 +239642,7 @@ return { [1]="take_20%_less_area_damage_from_hits_%_chance_per_2%_overcapped_cold_resistance" } }, - [10375]={ + [10525]={ [1]={ [1]={ limit={ @@ -236053,7 +239658,7 @@ return { [1]="take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy" } }, - [10376]={ + [10526]={ [1]={ [1]={ limit={ @@ -236069,7 +239674,7 @@ return { [1]="take_half_area_damage_from_hit_%_chance" } }, - [10377]={ + [10527]={ [1]={ [1]={ limit={ @@ -236085,7 +239690,7 @@ return { [1]="take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds" } }, - [10378]={ + [10528]={ [1]={ [1]={ [1]={ @@ -236105,7 +239710,7 @@ return { [1]="take_no_fire_damage_over_time_if_stopped_taking_fire_damage_over_time_recently" } }, - [10379]={ + [10529]={ [1]={ [1]={ [1]={ @@ -236138,7 +239743,7 @@ return { [1]="talisman_implicit_projectiles_pierce_1_additional_target_per_10" } }, - [10380]={ + [10530]={ [1]={ [1]={ [1]={ @@ -236158,7 +239763,7 @@ return { [1]="taunt_on_projectile_hit_chance_%" } }, - [10381]={ + [10531]={ [1]={ [1]={ [1]={ @@ -236195,7 +239800,7 @@ return { [1]="taunted_enemies_by_warcry_damage_taken_+%" } }, - [10382]={ + [10532]={ [1]={ [1]={ [1]={ @@ -236215,7 +239820,7 @@ return { [1]="tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value" } }, - [10383]={ + [10533]={ [1]={ [1]={ limit={ @@ -236231,7 +239836,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [10384]={ + [10534]={ [1]={ [1]={ limit={ @@ -236247,7 +239852,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating" } }, - [10385]={ + [10535]={ [1]={ [1]={ limit={ @@ -236276,7 +239881,7 @@ return { [1]="tectonic_slam_area_of_effect_+%" } }, - [10386]={ + [10536]={ [1]={ [1]={ limit={ @@ -236305,7 +239910,7 @@ return { [1]="tectonic_slam_damage_+%" } }, - [10387]={ + [10537]={ [1]={ [1]={ limit={ @@ -236321,7 +239926,7 @@ return { [1]="tectonic_slam_%_chance_to_do_charged_slam" } }, - [10388]={ + [10538]={ [1]={ [1]={ [1]={ @@ -236341,7 +239946,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [10389]={ + [10539]={ [1]={ [1]={ limit={ @@ -236362,7 +239967,7 @@ return { [2]="quality_display_tectonic_slam_is_gem" } }, - [10390]={ + [10540]={ [1]={ [1]={ limit={ @@ -236391,7 +239996,7 @@ return { [1]="tempest_shield_buff_effect_+%" } }, - [10391]={ + [10541]={ [1]={ [1]={ limit={ @@ -236407,7 +240012,7 @@ return { [1]="temporal_chains_no_reservation" } }, - [10392]={ + [10542]={ [1]={ [1]={ limit={ @@ -236423,7 +240028,7 @@ return { [1]="temporal_rift_cooldown_speed_+%" } }, - [10393]={ + [10543]={ [1]={ [1]={ [1]={ @@ -236451,7 +240056,7 @@ return { [1]="thaumaturgy_rotation_active" } }, - [10394]={ + [10544]={ [1]={ [1]={ limit={ @@ -236480,7 +240085,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final" } }, - [10395]={ + [10545]={ [1]={ [1]={ limit={ @@ -236509,7 +240114,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final_per_chain" } }, - [10396]={ + [10546]={ [1]={ [1]={ limit={ @@ -236538,7 +240143,7 @@ return { [1]="threshold_jewel_molten_strike_damage_projectile_count_+%_final" } }, - [10397]={ + [10547]={ [1]={ [1]={ limit={ @@ -236563,7 +240168,7 @@ return { [1]="throw_X_additional_traps_if_dual_wielding" } }, - [10398]={ + [10548]={ [1]={ [1]={ limit={ @@ -236592,7 +240197,7 @@ return { [1]="thrown_shield_secondary_projectile_damage_+%_final" } }, - [10399]={ + [10549]={ [1]={ [1]={ limit={ @@ -236621,7 +240226,7 @@ return { [1]="tincture_cooldown_recovery_+%" } }, - [10400]={ + [10550]={ [1]={ [1]={ limit={ @@ -236650,7 +240255,7 @@ return { [1]="tincture_effect_+%_while_not_using_flask" } }, - [10401]={ + [10551]={ [1]={ [1]={ limit={ @@ -236679,7 +240284,7 @@ return { [1]="tincture_effect_+%_at_high_toxicity" } }, - [10402]={ + [10552]={ [1]={ [1]={ [1]={ @@ -236716,7 +240321,7 @@ return { [1]="tincture_effect_+%_if_used_life_flask_recently" } }, - [10403]={ + [10553]={ [1]={ [1]={ [1]={ @@ -236736,7 +240341,7 @@ return { [1]="tincture_effects_linger_for_ms_per_toxicity_up_to_6_seconds" } }, - [10404]={ + [10554]={ [1]={ [1]={ limit={ @@ -236765,7 +240370,7 @@ return { [1]="tincture_mod_effect_+%_per_empty_flask_slot" } }, - [10405]={ + [10555]={ [1]={ [1]={ [1]={ @@ -236806,7 +240411,7 @@ return { [1]="tincture_toxicity_rate_+%" } }, - [10406]={ + [10556]={ [1]={ [1]={ limit={ @@ -236822,7 +240427,7 @@ return { [1]="tinctures_can_apply_to_ranged_weapons" } }, - [10407]={ + [10557]={ [1]={ [1]={ limit={ @@ -236838,7 +240443,7 @@ return { [1]="tinctures_deactivate_on_reaching_X_toxicity" } }, - [10408]={ + [10558]={ [1]={ [1]={ limit={ @@ -236867,7 +240472,7 @@ return { [1]="tornado_damage_frequency_+%" } }, - [10409]={ + [10559]={ [1]={ [1]={ limit={ @@ -236896,7 +240501,7 @@ return { [1]="tornado_damage_+%" } }, - [10410]={ + [10560]={ [1]={ [1]={ limit={ @@ -236925,7 +240530,7 @@ return { [1]="tornado_movement_speed_+%" } }, - [10411]={ + [10561]={ [1]={ [1]={ limit={ @@ -236954,7 +240559,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [10412]={ + [10562]={ [1]={ [1]={ limit={ @@ -236983,7 +240588,7 @@ return { [1]="tornado_skill_area_of_effect_+%" } }, - [10413]={ + [10563]={ [1]={ [1]={ limit={ @@ -236999,7 +240604,7 @@ return { [1]="total_recovery_per_minute_from_life_leech_is_doubled" } }, - [10414]={ + [10564]={ [1]={ [1]={ limit={ @@ -237015,7 +240620,7 @@ return { [1]="totems_action_speed_cannot_be_modified_below_base" } }, - [10415]={ + [10565]={ [1]={ [1]={ [1]={ @@ -237039,7 +240644,7 @@ return { [1]="totem_attack_damage_leeched_as_mana_to_you_permyriad" } }, - [10416]={ + [10566]={ [1]={ [1]={ limit={ @@ -237055,7 +240660,7 @@ return { [1]="totem_chaos_immunity" } }, - [10417]={ + [10567]={ [1]={ [1]={ limit={ @@ -237084,7 +240689,7 @@ return { [1]="totem_chaos_resistance_%" } }, - [10418]={ + [10568]={ [1]={ [1]={ limit={ @@ -237113,7 +240718,7 @@ return { [1]="totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds" } }, - [10419]={ + [10569]={ [1]={ [1]={ limit={ @@ -237142,7 +240747,7 @@ return { [1]="totem_damage_+%_per_10_devotion" } }, - [10420]={ + [10570]={ [1]={ [1]={ [1]={ @@ -237162,7 +240767,7 @@ return { [1]="totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed" } }, - [10421]={ + [10571]={ [1]={ [1]={ [1]={ @@ -237186,7 +240791,7 @@ return { [1]="totem_life_increased_by_overcapped_fire_resistance" } }, - [10422]={ + [10572]={ [1]={ [1]={ limit={ @@ -237215,7 +240820,7 @@ return { [1]="totem_life_+%_final" } }, - [10423]={ + [10573]={ [1]={ [1]={ limit={ @@ -237231,7 +240836,7 @@ return { [1]="totem_maximum_energy_shield" } }, - [10424]={ + [10574]={ [1]={ [1]={ [1]={ @@ -237255,7 +240860,7 @@ return { [1]="totem_physical_attack_damage_leeched_as_life_to_you_permyriad" } }, - [10425]={ + [10575]={ [1]={ [1]={ limit={ @@ -237284,7 +240889,7 @@ return { [1]="totem_placement_range_+%" } }, - [10426]={ + [10576]={ [1]={ [1]={ limit={ @@ -237300,7 +240905,7 @@ return { [1]="totem_skill_gem_level_+" } }, - [10427]={ + [10577]={ [1]={ [1]={ limit={ @@ -237329,7 +240934,7 @@ return { [1]="totem_spells_damage_+%" } }, - [10428]={ + [10578]={ [1]={ [1]={ limit={ @@ -237345,7 +240950,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [10429]={ + [10579]={ [1]={ [1]={ [1]={ @@ -237365,7 +240970,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical_divide_20" } }, - [10430]={ + [10580]={ [1]={ [1]={ limit={ @@ -237394,7 +240999,7 @@ return { [1]="totems_nearby_enemies_damage_taken_+%" } }, - [10431]={ + [10581]={ [1]={ [1]={ limit={ @@ -237410,7 +241015,7 @@ return { [1]="totems_regenerate_1_life_per_x_player_life_regeneration" } }, - [10432]={ + [10582]={ [1]={ [1]={ [1]={ @@ -237430,7 +241035,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [10433]={ + [10583]={ [1]={ [1]={ limit={ @@ -237455,7 +241060,7 @@ return { [1]="totems_taunt_enemies_around_them_for_x_seconds_when_summoned" } }, - [10434]={ + [10584]={ [1]={ [1]={ limit={ @@ -237484,7 +241089,7 @@ return { [1]="toxic_rain_damage_+%" } }, - [10435]={ + [10585]={ [1]={ [1]={ limit={ @@ -237509,7 +241114,7 @@ return { [1]="toxic_rain_num_of_additional_projectiles" } }, - [10436]={ + [10586]={ [1]={ [1]={ limit={ @@ -237525,7 +241130,7 @@ return { [1]="toxic_rain_physical_damage_%_to_add_as_chaos" } }, - [10437]={ + [10587]={ [1]={ [1]={ limit={ @@ -237541,7 +241146,36 @@ return { [1]="toxic_rain_skill_physical_damage_%_to_convert_to_chaos" } }, - [10438]={ + [10588]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills used by Traps and Mines have {0}% increased Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Skills used by Traps and Mines have {0}% reduced Area of Effect" + } + }, + stats={ + [1]="trap_and_mine_area_of_effect_+%" + } + }, + [10589]={ [1]={ [1]={ [1]={ @@ -237586,7 +241220,7 @@ return { [1]="trap_and_mine_damage_+%_if_armed_for_4_seconds" } }, - [10439]={ + [10590]={ [1]={ [1]={ limit={ @@ -237615,7 +241249,7 @@ return { [1]="trap_and_mine_throwing_speed_+%" } }, - [10440]={ + [10591]={ [1]={ [1]={ [1]={ @@ -237652,7 +241286,7 @@ return { [1]="trap_cooldown_speed_+%_per_recent_mine_detonation" } }, - [10441]={ + [10592]={ [1]={ [1]={ limit={ @@ -237677,7 +241311,7 @@ return { [1]="trap_mine_skill_num_of_additional_chains" } }, - [10442]={ + [10593]={ [1]={ [1]={ limit={ @@ -237702,7 +241336,7 @@ return { [1]="trap_skill_added_cooldown_count" } }, - [10443]={ + [10594]={ [1]={ [1]={ limit={ @@ -237731,7 +241365,7 @@ return { [1]="trap_skill_effect_duration_+%" } }, - [10444]={ + [10595]={ [1]={ [1]={ limit={ @@ -237760,7 +241394,7 @@ return { [1]="trap_spread_+%" } }, - [10445]={ + [10596]={ [1]={ [1]={ limit={ @@ -237789,7 +241423,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [10446]={ + [10597]={ [1]={ [1]={ limit={ @@ -237805,7 +241439,7 @@ return { [1]="traps_cannot_be_triggered_by_enemies" } }, - [10447]={ + [10598]={ [1]={ [1]={ limit={ @@ -237821,7 +241455,7 @@ return { [1]="traps_invulnerable" } }, - [10448]={ + [10599]={ [1]={ [1]={ limit={ @@ -237837,7 +241471,7 @@ return { [1]="travel_skills_cannot_be_exerted" } }, - [10449]={ + [10600]={ [1]={ [1]={ limit={ @@ -237862,7 +241496,7 @@ return { [1]="travel_skills_crit_every_X_uses" } }, - [10450]={ + [10601]={ [1]={ [1]={ [1]={ @@ -237882,7 +241516,7 @@ return { [1]="travel_skills_poison_reflected_to_self_up_to_5_poisons" } }, - [10451]={ + [10602]={ [1]={ [1]={ limit={ @@ -237907,7 +241541,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [10452]={ + [10603]={ [1]={ [1]={ [1]={ @@ -237940,7 +241574,7 @@ return { [1]="trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds" } }, - [10453]={ + [10604]={ [1]={ [1]={ limit={ @@ -237969,7 +241603,7 @@ return { [1]="trickster_damage_over_time_+%_final" } }, - [10454]={ + [10605]={ [1]={ [1]={ limit={ @@ -237985,7 +241619,7 @@ return { [1]="trigger_level_20_summon_spectral_wolf_on_crit" } }, - [10455]={ + [10606]={ [1]={ [1]={ limit={ @@ -238014,7 +241648,7 @@ return { [1]="triggerbots_damage_+%_final_with_triggered_spells" } }, - [10456]={ + [10607]={ [1]={ [1]={ limit={ @@ -238043,7 +241677,7 @@ return { [1]="triggered_spell_spell_damage_+%" } }, - [10457]={ + [10608]={ [1]={ [1]={ limit={ @@ -238059,7 +241693,7 @@ return { [1]="triggered_spells_poison_on_hit" } }, - [10458]={ + [10609]={ [1]={ [1]={ limit={ @@ -238075,7 +241709,7 @@ return { [1]="triggered_spells_all_damage_can_poison" } }, - [10459]={ + [10610]={ [1]={ [1]={ limit={ @@ -238104,7 +241738,7 @@ return { [1]="two_handed_attack_damage_+%_per_unlinked_socket_on_weapon" } }, - [10460]={ + [10611]={ [1]={ [1]={ limit={ @@ -238133,7 +241767,7 @@ return { [1]="two_handed_melee_area_damage_+%" } }, - [10461]={ + [10612]={ [1]={ [1]={ limit={ @@ -238162,7 +241796,23 @@ return { [1]="two_handed_melee_area_of_effect_+%" } }, - [10462]={ + [10613]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Monsters have {0}% increased Accuracy Rating for each time they have been Revived" + } + }, + stats={ + [1]="uber_domain_monster_accuracy_+%_per_revival" + } + }, + [10614]={ [1]={ [1]={ limit={ @@ -238178,7 +241828,7 @@ return { [1]="uber_domain_monster_additional_physical_damage_reduction_%_per_revival" } }, - [10463]={ + [10615]={ [1]={ [1]={ limit={ @@ -238194,7 +241844,23 @@ return { [1]="uber_domain_monster_all_resistances_+%_per_revival" } }, - [10464]={ + [10616]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Monsters have {0}% increased Area of Effect for each time they have been Revived" + } + }, + stats={ + [1]="uber_domain_monster_area_of_effect_+%_per_revival" + } + }, + [10617]={ [1]={ [1]={ limit={ @@ -238223,7 +241889,7 @@ return { [1]="uber_domain_monster_attack_and_cast_speed_+%_per_revival" } }, - [10465]={ + [10618]={ [1]={ [1]={ limit={ @@ -238239,7 +241905,7 @@ return { [1]="uber_domain_monster_avoid_stun_%_per_revival" } }, - [10466]={ + [10619]={ [1]={ [1]={ limit={ @@ -238268,7 +241934,7 @@ return { [1]="uber_domain_monster_critical_strike_chance_+%_per_revival" } }, - [10467]={ + [10620]={ [1]={ [1]={ limit={ @@ -238284,7 +241950,7 @@ return { [1]="uber_domain_monster_critical_strike_multiplier_+%_per_revival" } }, - [10468]={ + [10621]={ [1]={ [1]={ limit={ @@ -238300,7 +241966,7 @@ return { [1]="uber_domain_monster_damage_+%_per_revival" } }, - [10469]={ + [10622]={ [1]={ [1]={ limit={ @@ -238316,7 +241982,7 @@ return { [1]="uber_domain_monster_deal_double_damage_chance_%_per_revival" } }, - [10470]={ + [10623]={ [1]={ [1]={ [1]={ @@ -238336,7 +242002,7 @@ return { [1]="uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival" } }, - [10471]={ + [10624]={ [1]={ [1]={ limit={ @@ -238365,7 +242031,7 @@ return { [1]="uber_domain_monster_maximum_life_+%_per_revival" } }, - [10472]={ + [10625]={ [1]={ [1]={ limit={ @@ -238394,7 +242060,7 @@ return { [1]="uber_domain_monster_movement_speed_+%_per_revival" } }, - [10473]={ + [10626]={ [1]={ [1]={ [1]={ @@ -238414,7 +242080,7 @@ return { [1]="uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival" } }, - [10474]={ + [10627]={ [1]={ [1]={ limit={ @@ -238423,14 +242089,30 @@ return { [2]="#" } }, - text="Monsters Penetrate {0}% of Enemy Resistances for each time they have been Revived" + text="Monsters Penetrate {0}% of Enemy Elemental Resistances for each time they have been Revived" } }, stats={ [1]="uber_domain_monster_penetrate_all_resistances_%_per_revival" } }, - [10475]={ + [10628]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Monsters gain {0}% of Physical Damage as Extra Chaos Damage for each time they have been Revived" + } + }, + stats={ + [1]="uber_domain_monster_physical_damage_%_to_add_as_chaos_per_revival" + } + }, + [10629]={ [1]={ [1]={ limit={ @@ -238459,7 +242141,23 @@ return { [1]="uber_domain_monster_physical_damage_reduction_rating_+%_per_revival" } }, - [10476]={ + [10630]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Reward progress from Monster Kills" + } + }, + stats={ + [1]="uber_domain_monster_power_added_to_cocooned_items_+%" + } + }, + [10631]={ [1]={ [1]={ limit={ @@ -238484,7 +242182,27 @@ return { [1]="uber_domain_monster_reward_chance_+%" } }, - [10477]={ + [10632]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextMonsterToughness" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Monsters have {0}% increased Toughness for each time they have been Revived" + } + }, + stats={ + [1]="uber_domain_monster_tankiness_+%_per_revival" + } + }, + [10633]={ [1]={ [1]={ limit={ @@ -238500,7 +242218,7 @@ return { [1]="unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds" } }, - [10478]={ + [10634]={ [1]={ [1]={ [1]={ @@ -238520,7 +242238,7 @@ return { [1]="unaffected_by_bleeding_while_affected_by_malevolence" } }, - [10479]={ + [10635]={ [1]={ [1]={ [1]={ @@ -238540,7 +242258,7 @@ return { [1]="unaffected_by_bleeding_while_leeching" } }, - [10480]={ + [10636]={ [1]={ [1]={ limit={ @@ -238556,7 +242274,7 @@ return { [1]="unaffected_by_blind" } }, - [10481]={ + [10637]={ [1]={ [1]={ [1]={ @@ -238576,7 +242294,7 @@ return { [1]="unaffected_by_burning_ground" } }, - [10482]={ + [10638]={ [1]={ [1]={ [1]={ @@ -238596,7 +242314,7 @@ return { [1]="unaffected_by_burning_ground_while_affected_by_purity_of_fire" } }, - [10483]={ + [10639]={ [1]={ [1]={ limit={ @@ -238612,7 +242330,7 @@ return { [1]="unaffected_by_chill" } }, - [10484]={ + [10640]={ [1]={ [1]={ limit={ @@ -238628,7 +242346,7 @@ return { [1]="unaffected_by_chill_while_channelling" } }, - [10485]={ + [10641]={ [1]={ [1]={ limit={ @@ -238644,7 +242362,7 @@ return { [1]="unaffected_by_chill_while_mana_leeching" } }, - [10486]={ + [10642]={ [1]={ [1]={ [1]={ @@ -238664,7 +242382,7 @@ return { [1]="unaffected_by_chilled_ground" } }, - [10487]={ + [10643]={ [1]={ [1]={ [1]={ @@ -238684,7 +242402,7 @@ return { [1]="unaffected_by_chilled_ground_while_affected_by_purity_of_ice" } }, - [10488]={ + [10644]={ [1]={ [1]={ [1]={ @@ -238704,7 +242422,7 @@ return { [1]="unaffected_by_conductivity_while_affected_by_purity_of_lightning" } }, - [10489]={ + [10645]={ [1]={ [1]={ [1]={ @@ -238724,7 +242442,7 @@ return { [1]="unaffected_by_corrupted_blood_while_leeching" } }, - [10490]={ + [10646]={ [1]={ [1]={ [1]={ @@ -238744,7 +242462,7 @@ return { [1]="unaffected_by_curses_while_affected_by_zealotry" } }, - [10491]={ + [10647]={ [1]={ [1]={ [1]={ @@ -238768,7 +242486,7 @@ return { [1]="unaffected_by_damaging_ailments" } }, - [10492]={ + [10648]={ [1]={ [1]={ [1]={ @@ -238788,7 +242506,7 @@ return { [1]="unaffected_by_desecrated_ground" } }, - [10493]={ + [10649]={ [1]={ [1]={ [1]={ @@ -238808,7 +242526,7 @@ return { [1]="unaffected_by_elemental_weakness_while_affected_by_purity_of_elements" } }, - [10494]={ + [10650]={ [1]={ [1]={ [1]={ @@ -238828,7 +242546,7 @@ return { [1]="unaffected_by_enfeeble_while_affected_by_grace" } }, - [10495]={ + [10651]={ [1]={ [1]={ [1]={ @@ -238848,7 +242566,7 @@ return { [1]="unaffected_by_flammability_while_affected_by_purity_of_fire" } }, - [10496]={ + [10652]={ [1]={ [1]={ limit={ @@ -238864,7 +242582,7 @@ return { [1]="unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds" } }, - [10497]={ + [10653]={ [1]={ [1]={ [1]={ @@ -238884,7 +242602,7 @@ return { [1]="unaffected_by_frostbite_while_affected_by_purity_of_ice" } }, - [10498]={ + [10654]={ [1]={ [1]={ [1]={ @@ -238904,7 +242622,7 @@ return { [1]="unaffected_by_ignite" } }, - [10499]={ + [10655]={ [1]={ [1]={ limit={ @@ -238920,7 +242638,7 @@ return { [1]="unaffected_by_ignite_and_shock_while_max_life_mana_within_500" } }, - [10500]={ + [10656]={ [1]={ [1]={ limit={ @@ -238936,7 +242654,7 @@ return { [1]="unaffected_by_ignite_if_cast_flammability_in_past_10_seconds" } }, - [10501]={ + [10657]={ [1]={ [1]={ [1]={ @@ -238956,7 +242674,7 @@ return { [1]="unaffected_by_poison_while_affected_by_malevolence" } }, - [10502]={ + [10658]={ [1]={ [1]={ [1]={ @@ -238976,7 +242694,7 @@ return { [1]="unaffected_by_shock" } }, - [10503]={ + [10659]={ [1]={ [1]={ limit={ @@ -238992,7 +242710,7 @@ return { [1]="unaffected_by_shock_if_cast_conductivity_in_past_10_seconds" } }, - [10504]={ + [10660]={ [1]={ [1]={ limit={ @@ -239008,7 +242726,7 @@ return { [1]="unaffected_by_shock_while_channelling" } }, - [10505]={ + [10661]={ [1]={ [1]={ limit={ @@ -239024,7 +242742,7 @@ return { [1]="unaffected_by_shock_while_es_leeching" } }, - [10506]={ + [10662]={ [1]={ [1]={ [1]={ @@ -239044,7 +242762,7 @@ return { [1]="unaffected_by_shocked_ground" } }, - [10507]={ + [10663]={ [1]={ [1]={ [1]={ @@ -239064,7 +242782,7 @@ return { [1]="unaffected_by_shocked_ground_while_affected_by_purity_of_lightning" } }, - [10508]={ + [10664]={ [1]={ [1]={ [1]={ @@ -239084,7 +242802,7 @@ return { [1]="unaffected_by_temporal_chains" } }, - [10509]={ + [10665]={ [1]={ [1]={ [1]={ @@ -239104,7 +242822,7 @@ return { [1]="unaffected_by_temporal_chains_while_affected_by_haste" } }, - [10510]={ + [10666]={ [1]={ [1]={ [1]={ @@ -239124,7 +242842,7 @@ return { [1]="unaffected_by_vulnerability_while_affected_by_determination" } }, - [10511]={ + [10667]={ [1]={ [1]={ limit={ @@ -239137,7 +242855,7 @@ return { [2]="#" } }, - text="[DNT] Unarmed Attacks deal {0} to {1} added Chaos Damage for each Poison on the target, up to 100" + text="DNT Unarmed Attacks deal {0} to {1} added Chaos Damage for each Poison on the target, up to 100" } }, stats={ @@ -239145,7 +242863,7 @@ return { [2]="maximum_unarmed_added_chaos_damage_for_each_poison_on_target" } }, - [10512]={ + [10668]={ [1]={ [1]={ limit={ @@ -239154,7 +242872,7 @@ return { [2]=1 } }, - text="[DNT] Unarmed Non-Vaal Strike Skills target {0} additional nearby Enemy" + text="DNT Unarmed Non-Vaal Strike Skills target {0} additional nearby Enemy" }, [2]={ limit={ @@ -239163,14 +242881,14 @@ return { [2]="#" } }, - text="[DNT] Unarmed Non-Vaal Strike Skills target {0} additional nearby Enemies" + text="DNT Unarmed Non-Vaal Strike Skills target {0} additional nearby Enemies" } }, stats={ [1]="unarmed_attack_number_of_spirit_strikes" } }, - [10513]={ + [10669]={ [1]={ [1]={ limit={ @@ -239186,7 +242904,7 @@ return { [1]="unarmed_melee_attack_critical_strike_multiplier_+" } }, - [10514]={ + [10670]={ [1]={ [1]={ limit={ @@ -239215,7 +242933,7 @@ return { [1]="unattached_sigil_attachment_range_+%_per_second" } }, - [10515]={ + [10671]={ [1]={ [1]={ limit={ @@ -239231,7 +242949,7 @@ return { [1]="unearth_additional_corpse_level" } }, - [10516]={ + [10672]={ [1]={ [1]={ limit={ @@ -239256,7 +242974,7 @@ return { [1]="unique_attacks_fire_X_additional_projectiles_while_in_off_hand" } }, - [10517]={ + [10673]={ [1]={ [1]={ limit={ @@ -239285,7 +243003,7 @@ return { [1]="unique_attacks_have_area_+%_while_in_main_hand" } }, - [10518]={ + [10674]={ [1]={ [1]={ limit={ @@ -239310,7 +243028,7 @@ return { [1]="unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value" } }, - [10519]={ + [10675]={ [1]={ [1]={ limit={ @@ -239339,7 +243057,7 @@ return { [1]="unique_helmet_damage_+%_final_per_warcry_exerting_action" } }, - [10520]={ + [10676]={ [1]={ [1]={ limit={ @@ -239660,7 +243378,7 @@ return { [7]="local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start" } }, - [10521]={ + [10677]={ [1]={ [1]={ [1]={ @@ -239953,7 +243671,7 @@ return { [7]="local_unique_jewel_damage_+%_with_passive_tree_connected_to_scion_start" } }, - [10522]={ + [10678]={ [1]={ [1]={ limit={ @@ -239982,7 +243700,7 @@ return { [1]="unique_jewel_flask_charges_gained_+%_final_from_kills" } }, - [10523]={ + [10679]={ [1]={ [1]={ limit={ @@ -240011,7 +243729,7 @@ return { [1]="unique_jewel_flask_duration_+%_final" } }, - [10524]={ + [10680]={ [1]={ [1]={ [1]={ @@ -240031,7 +243749,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_1" } }, - [10525]={ + [10681]={ [1]={ [1]={ [1]={ @@ -240051,7 +243769,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_2" } }, - [10526]={ + [10682]={ [1]={ [1]={ limit={ @@ -240080,7 +243798,7 @@ return { [1]="unique_jewel_reserved_blood_maximum_life_+%_final" } }, - [10527]={ + [10683]={ [1]={ [1]={ limit={ @@ -240096,7 +243814,7 @@ return { [1]="local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time" } }, - [10528]={ + [10684]={ [1]={ [1]={ limit={ @@ -240112,7 +243830,7 @@ return { [1]="unique_lose_a_power_charge_when_hit" } }, - [10529]={ + [10685]={ [1]={ [1]={ limit={ @@ -240141,7 +243859,7 @@ return { [1]="unique_monster_dropped_item_rarity_+%" } }, - [10530]={ + [10686]={ [1]={ [1]={ limit={ @@ -240170,7 +243888,7 @@ return { [1]="unique_quiver_chill_as_though_damage_+%_final" } }, - [10531]={ + [10687]={ [1]={ [1]={ [1]={ @@ -240190,7 +243908,7 @@ return { [1]="unique_recover_%_maximum_life_on_x_altenator" } }, - [10532]={ + [10688]={ [1]={ [1]={ limit={ @@ -240219,7 +243937,7 @@ return { [1]="unique_replica_volkuurs_guidance_ignite_duration_+%_final" } }, - [10533]={ + [10689]={ [1]={ [1]={ limit={ @@ -240248,7 +243966,7 @@ return { [1]="unique_soulless_elegance_energy_shield_recharge_rate_+%_final" } }, - [10534]={ + [10690]={ [1]={ [1]={ limit={ @@ -240264,7 +243982,7 @@ return { [1]="unique_sunblast_throw_traps_in_circle_radius" } }, - [10535]={ + [10691]={ [1]={ [1]={ [1]={ @@ -240284,7 +244002,7 @@ return { [1]="unique_voltaxic_rift_shock_maximum_magnitude_override" } }, - [10536]={ + [10692]={ [1]={ [1]={ [1]={ @@ -240304,7 +244022,7 @@ return { [1]="unnerve_for_4_seconds_on_hit_with_wands" } }, - [10537]={ + [10693]={ [1]={ [1]={ [1]={ @@ -240324,7 +244042,7 @@ return { [1]="unnerve_nearby_enemies_on_use_for_ms" } }, - [10538]={ + [10694]={ [1]={ [1]={ limit={ @@ -240349,7 +244067,7 @@ return { [1]="utility_flask_charges_recovered_per_3_seconds" } }, - [10539]={ + [10695]={ [1]={ [1]={ limit={ @@ -240378,7 +244096,7 @@ return { [1]="utility_flask_cold_damage_taken_+%_final" } }, - [10540]={ + [10696]={ [1]={ [1]={ limit={ @@ -240407,7 +244125,7 @@ return { [1]="utility_flask_fire_damage_taken_+%_final" } }, - [10541]={ + [10697]={ [1]={ [1]={ limit={ @@ -240436,7 +244154,7 @@ return { [1]="utility_flask_lightning_damage_taken_+%_final" } }, - [10542]={ + [10698]={ [1]={ [1]={ limit={ @@ -240452,7 +244170,7 @@ return { [1]="vaal_skill_gem_level_+" } }, - [10543]={ + [10699]={ [1]={ [1]={ limit={ @@ -240468,7 +244186,7 @@ return { [1]="vaal_skill_soul_refund_chance_%" } }, - [10544]={ + [10700]={ [1]={ [1]={ limit={ @@ -240497,7 +244215,7 @@ return { [1]="vaal_skill_soul_requirement_+%" } }, - [10545]={ + [10701]={ [1]={ [1]={ limit={ @@ -240522,7 +244240,7 @@ return { [1]="vaal_skill_store_uses_+" } }, - [10546]={ + [10702]={ [1]={ [1]={ limit={ @@ -240551,7 +244269,7 @@ return { [1]="vaal_skills_area_of_effect_+%" } }, - [10547]={ + [10703]={ [1]={ [1]={ limit={ @@ -240580,7 +244298,7 @@ return { [1]="vaal_skills_aura_effect_+%" } }, - [10548]={ + [10704]={ [1]={ [1]={ [1]={ @@ -240613,7 +244331,7 @@ return { [1]="vaal_souls_gained_per_minute" } }, - [10549]={ + [10705]={ [1]={ [1]={ limit={ @@ -240642,7 +244360,7 @@ return { [1]="vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%" } }, - [10550]={ + [10706]={ [1]={ [1]={ limit={ @@ -240671,7 +244389,7 @@ return { [1]="vampiric_link_duration_+%" } }, - [10551]={ + [10707]={ [1]={ [1]={ limit={ @@ -240687,7 +244405,7 @@ return { [1]="vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [10552]={ + [10708]={ [1]={ [1]={ limit={ @@ -240716,7 +244434,7 @@ return { [1]="viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge" } }, - [10553]={ + [10709]={ [1]={ [1]={ limit={ @@ -240741,7 +244459,7 @@ return { [1]="viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy" } }, - [10554]={ + [10710]={ [1]={ [1]={ limit={ @@ -240770,7 +244488,7 @@ return { [1]="viper_strike_dual_wield_attack_speed_+%_final" } }, - [10555]={ + [10711]={ [1]={ [1]={ limit={ @@ -240799,7 +244517,7 @@ return { [1]="viper_strike_dual_wield_damage_+%_final" } }, - [10556]={ + [10712]={ [1]={ [1]={ limit={ @@ -240824,7 +244542,7 @@ return { [1]="virtual_block_%_damage_taken" } }, - [10557]={ + [10713]={ [1]={ [1]={ limit={ @@ -240849,7 +244567,7 @@ return { [1]="additional_beam_only_chains" } }, - [10558]={ + [10714]={ [1]={ [1]={ limit={ @@ -240874,7 +244592,7 @@ return { [1]="virulent_arrow_additional_spores_at_max_stages" } }, - [10559]={ + [10715]={ [1]={ [1]={ [1]={ @@ -240894,7 +244612,7 @@ return { [1]="virulent_arrow_chance_to_poison_%_per_stage" } }, - [10560]={ + [10716]={ [1]={ [1]={ [1]={ @@ -240931,7 +244649,7 @@ return { [1]="vitality_mana_reservation_efficiency_-2%_per_1" } }, - [10561]={ + [10717]={ [1]={ [1]={ limit={ @@ -240960,7 +244678,7 @@ return { [1]="vitality_mana_reservation_efficiency_+%" } }, - [10562]={ + [10718]={ [1]={ [1]={ limit={ @@ -240976,7 +244694,7 @@ return { [1]="vitality_reserves_no_mana" } }, - [10563]={ + [10719]={ [1]={ [1]={ limit={ @@ -240992,7 +244710,7 @@ return { [1]="void_sphere_cooldown_speed_+%" } }, - [10564]={ + [10720]={ [1]={ [1]={ limit={ @@ -241008,7 +244726,7 @@ return { [1]="volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity" } }, - [10565]={ + [10721]={ [1]={ [1]={ limit={ @@ -241033,7 +244751,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [10566]={ + [10722]={ [1]={ [1]={ limit={ @@ -241062,7 +244780,7 @@ return { [1]="volatile_dead_cast_speed_+%" } }, - [10567]={ + [10723]={ [1]={ [1]={ limit={ @@ -241078,7 +244796,7 @@ return { [1]="volatile_dead_consume_additional_corpse" } }, - [10568]={ + [10724]={ [1]={ [1]={ limit={ @@ -241107,7 +244825,7 @@ return { [1]="volatile_dead_damage_+%" } }, - [10569]={ + [10725]={ [1]={ [1]={ limit={ @@ -241136,7 +244854,7 @@ return { [1]="volcanic_fissure_damage_+%" } }, - [10570]={ + [10726]={ [1]={ [1]={ limit={ @@ -241161,7 +244879,7 @@ return { [1]="volcanic_fissure_number_of_additional_projectiles" } }, - [10571]={ + [10727]={ [1]={ [1]={ limit={ @@ -241190,7 +244908,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [10572]={ + [10728]={ [1]={ [1]={ limit={ @@ -241219,7 +244937,7 @@ return { [1]="voltaxic_burst_damage_+%" } }, - [10573]={ + [10729]={ [1]={ [1]={ limit={ @@ -241248,7 +244966,7 @@ return { [1]="voltaxic_burst_damage_+%_per_100ms_duration" } }, - [10574]={ + [10730]={ [1]={ [1]={ limit={ @@ -241277,7 +244995,7 @@ return { [1]="voltaxic_burst_skill_area_of_effect_+%" } }, - [10575]={ + [10731]={ [1]={ [1]={ [1]={ @@ -241297,7 +245015,7 @@ return { [1]="vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [10576]={ + [10732]={ [1]={ [1]={ limit={ @@ -241326,7 +245044,7 @@ return { [1]="vortex_area_of_effect_+%_when_cast_on_frostbolt" } }, - [10577]={ + [10733]={ [1]={ [1]={ limit={ @@ -241342,7 +245060,7 @@ return { [1]="vulnerability_no_reservation" } }, - [10578]={ + [10734]={ [1]={ [1]={ limit={ @@ -241358,7 +245076,7 @@ return { [1]="wand_attacks_fire_an_additional_projectile" } }, - [10579]={ + [10735]={ [1]={ [1]={ [1]={ @@ -241395,7 +245113,7 @@ return { [1]="wand_damage_+%_if_crit_recently" } }, - [10580]={ + [10736]={ [1]={ [1]={ limit={ @@ -241411,7 +245129,7 @@ return { [1]="wand_physical_damage_%_to_add_as_chaos" } }, - [10581]={ + [10737]={ [1]={ [1]={ limit={ @@ -241427,7 +245145,7 @@ return { [1]="wand_physical_damage_%_to_convert_to_lightning" } }, - [10582]={ + [10738]={ [1]={ [1]={ limit={ @@ -241456,7 +245174,7 @@ return { [1]="war_banner_aura_effect_+%" } }, - [10583]={ + [10739]={ [1]={ [1]={ limit={ @@ -241485,7 +245203,7 @@ return { [1]="war_banner_mana_reservation_efficiency_+%" } }, - [10584]={ + [10740]={ [1]={ [1]={ [1]={ @@ -241526,7 +245244,7 @@ return { [1]="warcries_apply_cover_in_ash_for_X_ms" } }, - [10585]={ + [10741]={ [1]={ [1]={ limit={ @@ -241542,7 +245260,7 @@ return { [1]="warcries_cost_%_of_life" } }, - [10586]={ + [10742]={ [1]={ [1]={ [1]={ @@ -241562,7 +245280,7 @@ return { [1]="warcries_debilitate_enemies_for_1_second" } }, - [10587]={ + [10743]={ [1]={ [1]={ limit={ @@ -241578,7 +245296,7 @@ return { [1]="warcries_exert_twice_as_many_attacks" } }, - [10588]={ + [10744]={ [1]={ [1]={ limit={ @@ -241594,7 +245312,7 @@ return { [1]="warcries_have_minimum_10_power" } }, - [10589]={ + [10745]={ [1]={ [1]={ [1]={ @@ -241614,7 +245332,7 @@ return { [1]="warcries_inflict_hallowing_flame" } }, - [10590]={ + [10746]={ [1]={ [1]={ limit={ @@ -241630,7 +245348,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [10591]={ + [10747]={ [1]={ [1]={ limit={ @@ -241659,7 +245377,7 @@ return { [1]="warcry_buff_effect_+%" } }, - [10592]={ + [10748]={ [1]={ [1]={ [1]={ @@ -241679,7 +245397,7 @@ return { [1]="warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power" } }, - [10593]={ + [10749]={ [1]={ [1]={ [1]={ @@ -241699,7 +245417,7 @@ return { [1]="warcry_cooldown_modifier_ms" } }, - [10594]={ + [10750]={ [1]={ [1]={ [1]={ @@ -241834,7 +245552,7 @@ return { [4]="warcries_have_infinite_power" } }, - [10595]={ + [10751]={ [1]={ [1]={ limit={ @@ -241859,7 +245577,7 @@ return { [1]="warcry_empowers_next_x_melee_attacks" } }, - [10596]={ + [10752]={ [1]={ [1]={ [1]={ @@ -241879,7 +245597,7 @@ return { [1]="warcry_grant_X_rage_per_5_power" } }, - [10597]={ + [10753]={ [1]={ [1]={ limit={ @@ -241908,7 +245626,7 @@ return { [1]="warcry_monster_power_+%" } }, - [10598]={ + [10754]={ [1]={ [1]={ [1]={ @@ -241945,7 +245663,7 @@ return { [1]="warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds" } }, - [10599]={ + [10755]={ [1]={ [1]={ limit={ @@ -241974,7 +245692,7 @@ return { [1]="warcry_skill_area_of_effect_+%" } }, - [10600]={ + [10756]={ [1]={ [1]={ limit={ @@ -241990,7 +245708,7 @@ return { [1]="warcry_skills_cooldown_is_4_seconds" } }, - [10601]={ + [10757]={ [1]={ [1]={ [1]={ @@ -242027,7 +245745,7 @@ return { [1]="warcry_speed_+%_if_not_warcried_recently" } }, - [10602]={ + [10758]={ [1]={ [1]={ limit={ @@ -242043,7 +245761,7 @@ return { [1]="ward_%_chance_to_restore_on_flask_use" } }, - [10603]={ + [10759]={ [1]={ [1]={ limit={ @@ -242072,7 +245790,7 @@ return { [1]="ward_+%_during_any_flask_effect" } }, - [10604]={ + [10760]={ [1]={ [1]={ [1]={ @@ -242109,7 +245827,7 @@ return { [1]="ward_delay_recovery_+%_per_enemy_hit_taken_recently" } }, - [10605]={ + [10761]={ [1]={ [1]={ limit={ @@ -242125,7 +245843,7 @@ return { [1]="ward_from_armour_item_+%" } }, - [10606]={ + [10762]={ [1]={ [1]={ limit={ @@ -242141,7 +245859,7 @@ return { [1]="ward_instead_of_%_body_armour_and_evasion" } }, - [10607]={ + [10763]={ [1]={ [1]={ [1]={ @@ -242178,7 +245896,7 @@ return { [1]="warden_tincture_toxicity_rate_+%_final" } }, - [10608]={ + [10764]={ [1]={ [1]={ limit={ @@ -242194,7 +245912,7 @@ return { [1]="warden_tracker" } }, - [10609]={ + [10765]={ [1]={ [1]={ limit={ @@ -242210,7 +245928,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [10610]={ + [10766]={ [1]={ [1]={ limit={ @@ -242239,7 +245957,7 @@ return { [1]="water_sphere_damage_+%" } }, - [10611]={ + [10767]={ [1]={ [1]={ limit={ @@ -242268,7 +245986,7 @@ return { [1]="weapon_tree_cast_speed_+%_final" } }, - [10612]={ + [10768]={ [1]={ [1]={ limit={ @@ -242297,7 +246015,7 @@ return { [1]="weapon_tree_counterattacks_damage_+%_final" } }, - [10613]={ + [10769]={ [1]={ [1]={ limit={ @@ -242326,7 +246044,7 @@ return { [1]="weapon_tree_damage_+%_final" } }, - [10614]={ + [10770]={ [1]={ [1]={ limit={ @@ -242351,7 +246069,7 @@ return { [1]="weapon_tree_local_sell_price_ancient_orb" } }, - [10615]={ + [10771]={ [1]={ [1]={ limit={ @@ -242376,7 +246094,7 @@ return { [1]="weapon_tree_local_sell_price_awakened_sextant" } }, - [10616]={ + [10772]={ [1]={ [1]={ limit={ @@ -242401,7 +246119,7 @@ return { [1]="weapon_tree_local_sell_price_blessed_orb" } }, - [10617]={ + [10773]={ [1]={ [1]={ limit={ @@ -242426,7 +246144,7 @@ return { [1]="weapon_tree_local_sell_price_chaos_orb" } }, - [10618]={ + [10774]={ [1]={ [1]={ limit={ @@ -242451,7 +246169,7 @@ return { [1]="weapon_tree_local_sell_price_crystalline_geode" } }, - [10619]={ + [10775]={ [1]={ [1]={ limit={ @@ -242476,7 +246194,7 @@ return { [1]="weapon_tree_local_sell_price_divine_orb" } }, - [10620]={ + [10776]={ [1]={ [1]={ limit={ @@ -242501,7 +246219,7 @@ return { [1]="weapon_tree_local_sell_price_exalted_orb" } }, - [10621]={ + [10777]={ [1]={ [1]={ limit={ @@ -242517,7 +246235,7 @@ return { [1]="weapon_tree_local_sell_price_for_additional_crucible_experience" } }, - [10622]={ + [10778]={ [1]={ [1]={ limit={ @@ -242533,7 +246251,7 @@ return { [1]="weapon_tree_local_sell_price_for_additional_specific_currency" } }, - [10623]={ + [10779]={ [1]={ [1]={ [1]={ @@ -242566,7 +246284,7 @@ return { [1]="weapon_tree_local_sell_price_for_additional_specific_unique" } }, - [10624]={ + [10780]={ [1]={ [1]={ limit={ @@ -242591,7 +246309,7 @@ return { [1]="weapon_tree_local_sell_price_gemcutters_prism" } }, - [10625]={ + [10781]={ [1]={ [1]={ limit={ @@ -242616,7 +246334,7 @@ return { [1]="weapon_tree_local_sell_price_igneous_geode" } }, - [10626]={ + [10782]={ [1]={ [1]={ limit={ @@ -242641,7 +246359,7 @@ return { [1]="weapon_tree_local_sell_price_mirror_shard" } }, - [10627]={ + [10783]={ [1]={ [1]={ limit={ @@ -242657,7 +246375,7 @@ return { [1]="weapon_tree_local_sell_price_of_tree_nodes_doubled" } }, - [10628]={ + [10784]={ [1]={ [1]={ limit={ @@ -242682,7 +246400,7 @@ return { [1]="weapon_tree_local_sell_price_orb_of_annulment" } }, - [10629]={ + [10785]={ [1]={ [1]={ limit={ @@ -242707,7 +246425,7 @@ return { [1]="weapon_tree_local_sell_price_orb_of_regret" } }, - [10630]={ + [10786]={ [1]={ [1]={ limit={ @@ -242732,7 +246450,7 @@ return { [1]="weapon_tree_local_sell_price_regal_orb" } }, - [10631]={ + [10787]={ [1]={ [1]={ limit={ @@ -242757,7 +246475,7 @@ return { [1]="weapon_tree_local_sell_price_sacred_orb" } }, - [10632]={ + [10788]={ [1]={ [1]={ limit={ @@ -242782,7 +246500,7 @@ return { [1]="weapon_tree_local_sell_price_scouring_orb" } }, - [10633]={ + [10789]={ [1]={ [1]={ limit={ @@ -242807,7 +246525,7 @@ return { [1]="weapon_tree_local_sell_price_vaal_orb" } }, - [10634]={ + [10790]={ [1]={ [1]={ limit={ @@ -242832,7 +246550,7 @@ return { [1]="weapon_tree_local_sell_price_vault_key" } }, - [10635]={ + [10791]={ [1]={ [1]={ limit={ @@ -242861,7 +246579,7 @@ return { [1]="weapon_tree_maximum_mana_+%_final" } }, - [10636]={ + [10792]={ [1]={ [1]={ limit={ @@ -242877,7 +246595,7 @@ return { [1]="weapon_tree_throw_traps_in_circle_radius" } }, - [10637]={ + [10793]={ [1]={ [1]={ [1]={ @@ -242910,7 +246628,7 @@ return { [1]="while_curse_is_25%_expired_hinder_enemy_%" } }, - [10638]={ + [10794]={ [1]={ [1]={ [1]={ @@ -242930,7 +246648,7 @@ return { [1]="while_curse_is_33%_expired_malediction" } }, - [10639]={ + [10795]={ [1]={ [1]={ limit={ @@ -242959,7 +246677,7 @@ return { [1]="while_curse_is_50%_expired_curse_effect_+%" } }, - [10640]={ + [10796]={ [1]={ [1]={ limit={ @@ -242988,7 +246706,7 @@ return { [1]="while_curse_is_75%_expired_enemy_damage_taken_+%" } }, - [10641]={ + [10797]={ [1]={ [1]={ limit={ @@ -243004,7 +246722,7 @@ return { [1]="while_stationary_gain_additional_physical_damage_reduction_%" } }, - [10642]={ + [10798]={ [1]={ [1]={ [1]={ @@ -243024,7 +246742,7 @@ return { [1]="while_stationary_gain_life_regeneration_rate_per_minute_%" } }, - [10643]={ + [10799]={ [1]={ [1]={ limit={ @@ -243053,7 +246771,7 @@ return { [1]="winter_brand_chill_effect_+%" } }, - [10644]={ + [10800]={ [1]={ [1]={ limit={ @@ -243082,7 +246800,7 @@ return { [1]="winter_brand_damage_+%" } }, - [10645]={ + [10801]={ [1]={ [1]={ limit={ @@ -243098,7 +246816,7 @@ return { [1]="winter_brand_max_number_of_stages_+" } }, - [10646]={ + [10802]={ [1]={ [1]={ limit={ @@ -243114,7 +246832,7 @@ return { [1]="wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [10647]={ + [10803]={ [1]={ [1]={ limit={ @@ -243130,7 +246848,7 @@ return { [1]="wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [10648]={ + [10804]={ [1]={ [1]={ limit={ @@ -243163,7 +246881,7 @@ return { [1]="wither_expire_speed_+%" } }, - [10649]={ + [10805]={ [1]={ [1]={ [1]={ @@ -243200,7 +246918,7 @@ return { [1]="withered_effect_on_self_+%" } }, - [10650]={ + [10806]={ [1]={ [1]={ [1]={ @@ -243237,7 +246955,7 @@ return { [1]="withered_effect_+%" } }, - [10651]={ + [10807]={ [1]={ [1]={ [1]={ @@ -243270,7 +246988,7 @@ return { [1]="withered_on_hit_chance_%_vs_cursed_enemies" } }, - [10652]={ + [10808]={ [1]={ [1]={ [1]={ @@ -243303,7 +247021,7 @@ return { [1]="withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%" } }, - [10653]={ + [10809]={ [1]={ [1]={ limit={ @@ -243332,7 +247050,7 @@ return { [1]="wrath_aura_effect_+%_while_at_maximum_power_charges" } }, - [10654]={ + [10810]={ [1]={ [1]={ [1]={ @@ -243369,7 +247087,7 @@ return { [1]="wrath_mana_reservation_efficiency_-2%_per_1" } }, - [10655]={ + [10811]={ [1]={ [1]={ limit={ @@ -243398,7 +247116,7 @@ return { [1]="wrath_mana_reservation_efficiency_+%" } }, - [10656]={ + [10812]={ [1]={ [1]={ limit={ @@ -243414,7 +247132,7 @@ return { [1]="wrath_reserves_no_mana" } }, - [10657]={ + [10813]={ [1]={ [1]={ limit={ @@ -243430,7 +247148,7 @@ return { [1]="x%_life_regeneration_applies_to_energy_shield" } }, - [10658]={ + [10814]={ [1]={ [1]={ limit={ @@ -243446,7 +247164,7 @@ return { [1]="x%_life_regeneration_applies_to_energy_shield_with_no_corrupted_equipped_items" } }, - [10659]={ + [10815]={ [1]={ [1]={ limit={ @@ -243471,7 +247189,7 @@ return { [1]="brequel_currency_fruit_additional_10_items_%" } }, - [10660]={ + [10816]={ [1]={ [1]={ limit={ @@ -243487,7 +247205,7 @@ return { [1]="brequel_equipment_fruit_item_level_+" } }, - [10661]={ + [10817]={ [1]={ [1]={ [1]={ @@ -243507,7 +247225,7 @@ return { [1]="you_and_allies_additional_block_%_if_have_attacked_recently" } }, - [10662]={ + [10818]={ [1]={ [1]={ [1]={ @@ -243527,7 +247245,7 @@ return { [1]="you_and_allies_additional_spell_block_%_if_cast_spell_recently" } }, - [10663]={ + [10819]={ [1]={ [1]={ limit={ @@ -243543,7 +247261,7 @@ return { [1]="you_and_nearby_allies_armour_+_if_have_impaled_recently" } }, - [10664]={ + [10820]={ [1]={ [1]={ limit={ @@ -243572,7 +247290,7 @@ return { [1]="you_and_nearby_allies_critical_strike_chance_+%" } }, - [10665]={ + [10821]={ [1]={ [1]={ limit={ @@ -243588,7 +247306,7 @@ return { [1]="you_and_nearby_allies_critical_strike_multiplier_+" } }, - [10666]={ + [10822]={ [1]={ [1]={ [1]={ @@ -243612,7 +247330,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently" } }, - [10667]={ + [10823]={ [1]={ [1]={ [1]={ @@ -243636,7 +247354,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently" } }, - [10668]={ + [10824]={ [1]={ [1]={ [1]={ @@ -243660,7 +247378,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently" } }, - [10669]={ + [10825]={ [1]={ [1]={ [1]={ @@ -243680,7 +247398,7 @@ return { [1]="you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry" } }, - [10670]={ + [10826]={ [1]={ [1]={ [1]={ @@ -243700,7 +247418,7 @@ return { [1]="you_and_nearby_party_members_gain_x_rage_when_you_warcry" } }, - [10671]={ + [10827]={ [1]={ [1]={ [1]={ @@ -243720,7 +247438,7 @@ return { [1]="you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem" } }, - [10672]={ + [10828]={ [1]={ [1]={ [1]={ @@ -243740,7 +247458,7 @@ return { [1]="you_are_blind" } }, - [10673]={ + [10829]={ [1]={ [1]={ [1]={ @@ -243760,7 +247478,7 @@ return { [1]="you_are_cursed_with_conductivity" } }, - [10674]={ + [10830]={ [1]={ [1]={ [1]={ @@ -243780,7 +247498,7 @@ return { [1]="you_are_cursed_with_despair" } }, - [10675]={ + [10831]={ [1]={ [1]={ [1]={ @@ -243800,7 +247518,7 @@ return { [1]="you_are_cursed_with_elemental_weakness" } }, - [10676]={ + [10832]={ [1]={ [1]={ [1]={ @@ -243820,7 +247538,7 @@ return { [1]="you_are_cursed_with_enfeeble" } }, - [10677]={ + [10833]={ [1]={ [1]={ [1]={ @@ -243840,7 +247558,7 @@ return { [1]="you_are_cursed_with_flammability" } }, - [10678]={ + [10834]={ [1]={ [1]={ [1]={ @@ -243860,7 +247578,7 @@ return { [1]="you_are_cursed_with_frostbite" } }, - [10679]={ + [10835]={ [1]={ [1]={ [1]={ @@ -243880,7 +247598,7 @@ return { [1]="you_are_cursed_with_temporal_chains" } }, - [10680]={ + [10836]={ [1]={ [1]={ [1]={ @@ -243900,7 +247618,7 @@ return { [1]="you_are_cursed_with_vulnerability" } }, - [10681]={ + [10837]={ [1]={ [1]={ limit={ @@ -243916,7 +247634,7 @@ return { [1]="you_cannot_be_hindered" } }, - [10682]={ + [10838]={ [1]={ [1]={ limit={ @@ -243932,7 +247650,7 @@ return { [1]="you_cannot_have_non_animated_minions" } }, - [10683]={ + [10839]={ [1]={ [1]={ limit={ @@ -243948,7 +247666,7 @@ return { [1]="you_cannot_have_non_spectre_minions" } }, - [10684]={ + [10840]={ [1]={ [1]={ limit={ @@ -243957,14 +247675,14 @@ return { [2]="#" } }, - text="[DNT] Impaled Enemies Cannot be Impaled" + text="DNT Impaled Enemies Cannot be Impaled" } }, stats={ [1]="you_cannot_impale_impaled_enemies" } }, - [10685]={ + [10841]={ [1]={ [1]={ limit={ @@ -243980,7 +247698,7 @@ return { [1]="you_cannot_inflict_curses" } }, - [10686]={ + [10842]={ [1]={ [1]={ limit={ @@ -243996,7 +247714,7 @@ return { [1]="you_count_as_low_life_while_not_on_full_life" } }, - [10687]={ + [10843]={ [1]={ [1]={ limit={ @@ -244005,14 +247723,14 @@ return { [2]="#" } }, - text="[DNT] You have Feeding Frenzy if you've Blocked Recently" + text="DNT You have Feeding Frenzy if you've Blocked Recently" } }, stats={ [1]="you_have_feeding_frenzy_if_have_blocked_recently" } }, - [10688]={ + [10844]={ [1]={ [1]={ limit={ @@ -244028,7 +247746,7 @@ return { [1]="you_have_no_armour_or_energy_shield" } }, - [10689]={ + [10845]={ [1]={ [1]={ [1]={ @@ -244048,7 +247766,7 @@ return { [1]="you_have_your_maximum_fortification" } }, - [10690]={ + [10846]={ [1]={ [1]={ [1]={ @@ -244068,7 +247786,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [10691]={ + [10847]={ [1]={ [1]={ [1]={ @@ -244088,7 +247806,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [10692]={ + [10848]={ [1]={ [1]={ limit={ @@ -244104,7 +247822,7 @@ return { [1]="your_attacks_cannot_be_blocked" } }, - [10693]={ + [10849]={ [1]={ [1]={ limit={ @@ -244120,7 +247838,7 @@ return { [1]="your_auras_except_anger_are_disabled" } }, - [10694]={ + [10850]={ [1]={ [1]={ limit={ @@ -244136,7 +247854,7 @@ return { [1]="your_auras_except_clarity_are_disabled" } }, - [10695]={ + [10851]={ [1]={ [1]={ limit={ @@ -244152,7 +247870,7 @@ return { [1]="your_auras_except_determination_are_disabled" } }, - [10696]={ + [10852]={ [1]={ [1]={ limit={ @@ -244168,7 +247886,7 @@ return { [1]="your_auras_except_discipline_are_disabled" } }, - [10697]={ + [10853]={ [1]={ [1]={ limit={ @@ -244184,7 +247902,7 @@ return { [1]="your_auras_except_grace_are_disabled" } }, - [10698]={ + [10854]={ [1]={ [1]={ limit={ @@ -244200,7 +247918,7 @@ return { [1]="your_auras_except_haste_are_disabled" } }, - [10699]={ + [10855]={ [1]={ [1]={ limit={ @@ -244216,7 +247934,7 @@ return { [1]="your_auras_except_hatred_are_disabled" } }, - [10700]={ + [10856]={ [1]={ [1]={ limit={ @@ -244232,7 +247950,7 @@ return { [1]="your_auras_except_malevolence_are_disabled" } }, - [10701]={ + [10857]={ [1]={ [1]={ limit={ @@ -244248,7 +247966,7 @@ return { [1]="your_auras_except_precision_are_disabled" } }, - [10702]={ + [10858]={ [1]={ [1]={ limit={ @@ -244264,7 +247982,7 @@ return { [1]="your_auras_except_pride_are_disabled" } }, - [10703]={ + [10859]={ [1]={ [1]={ limit={ @@ -244280,7 +247998,7 @@ return { [1]="your_auras_except_purity_of_elements_are_disabled" } }, - [10704]={ + [10860]={ [1]={ [1]={ limit={ @@ -244296,7 +248014,7 @@ return { [1]="your_auras_except_purity_of_fire_are_disabled" } }, - [10705]={ + [10861]={ [1]={ [1]={ limit={ @@ -244312,7 +248030,7 @@ return { [1]="your_auras_except_purity_of_ice_are_disabled" } }, - [10706]={ + [10862]={ [1]={ [1]={ limit={ @@ -244328,7 +248046,7 @@ return { [1]="your_auras_except_purity_of_lightning_are_disabled" } }, - [10707]={ + [10863]={ [1]={ [1]={ limit={ @@ -244344,7 +248062,7 @@ return { [1]="your_auras_except_vitality_are_disabled" } }, - [10708]={ + [10864]={ [1]={ [1]={ limit={ @@ -244360,7 +248078,7 @@ return { [1]="your_auras_except_wrath_are_disabled" } }, - [10709]={ + [10865]={ [1]={ [1]={ limit={ @@ -244376,7 +248094,7 @@ return { [1]="your_auras_except_zealotry_are_disabled" } }, - [10710]={ + [10866]={ [1]={ [1]={ limit={ @@ -244392,7 +248110,7 @@ return { [1]="your_charges_cannot_be_stolen" } }, - [10711]={ + [10867]={ [1]={ [1]={ limit={ @@ -244408,7 +248126,7 @@ return { [1]="your_consecrated_ground_grants_accuracy_rating_+%" } }, - [10712]={ + [10868]={ [1]={ [1]={ [1]={ @@ -244428,7 +248146,7 @@ return { [1]="your_consecrated_ground_grants_mana_regeneration_rate_+%" } }, - [10713]={ + [10869]={ [1]={ [1]={ [1]={ @@ -244448,7 +248166,7 @@ return { [1]="your_consecrated_ground_grants_max_chaos_resistance_+" } }, - [10714]={ + [10870]={ [1]={ [1]={ [1]={ @@ -244485,7 +248203,7 @@ return { [1]="your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [10715]={ + [10871]={ [1]={ [1]={ limit={ @@ -244510,7 +248228,7 @@ return { [1]="your_marks_transfer_to_nearby_enemies_on_death_%_chance" } }, - [10716]={ + [10872]={ [1]={ [1]={ limit={ @@ -244526,7 +248244,7 @@ return { [1]="your_minions_gain_added_physical_damage_equal_to_%_of_energy_shield_on_helmet" } }, - [10717]={ + [10873]={ [1]={ [1]={ limit={ @@ -244542,7 +248260,7 @@ return { [1]="your_movement_skills_are_disabled" } }, - [10718]={ + [10874]={ [1]={ [1]={ [1]={ @@ -244562,7 +248280,7 @@ return { [1]="your_profane_ground_also_affects_allies_granting_chaotic_might" } }, - [10719]={ + [10875]={ [1]={ [1]={ [1]={ @@ -244603,7 +248321,7 @@ return { [1]="your_profane_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [10720]={ + [10876]={ [1]={ [1]={ limit={ @@ -244619,7 +248337,7 @@ return { [1]="your_skeletons_gain_added_chaos_damage_equal_to_%_of_energy_shield_on_shield" } }, - [10721]={ + [10877]={ [1]={ [1]={ limit={ @@ -244635,7 +248353,7 @@ return { [1]="your_spells_are_disabled" } }, - [10722]={ + [10878]={ [1]={ [1]={ limit={ @@ -244651,7 +248369,7 @@ return { [1]="your_spells_cannot_be_suppressed" } }, - [10723]={ + [10879]={ [1]={ [1]={ limit={ @@ -244667,7 +248385,7 @@ return { [1]="your_travel_skills_are_disabled" } }, - [10724]={ + [10880]={ [1]={ [1]={ limit={ @@ -244683,7 +248401,7 @@ return { [1]="your_travel_skills_except_dash_are_disabled" } }, - [10725]={ + [10881]={ [1]={ [1]={ limit={ @@ -244699,7 +248417,7 @@ return { [1]="your_warcry_skills_are_disabled" } }, - [10726]={ + [10882]={ [1]={ [1]={ [1]={ @@ -244719,7 +248437,36 @@ return { [1]="all_damage_can_poison_while_affected_by_glorious_madness" } }, - [10727]={ + [10883]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Spell Critical Strike Chance" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Spell Critical Strike Chance" + } + }, + stats={ + [1]="assassin_ascendancy_spell_critical_strike_chance_+%_final" + } + }, + [10884]={ [1]={ [1]={ limit={ @@ -244735,7 +248482,7 @@ return { [1]="chance_to_deal_double_damage_while_affected_by_glorious_madness_%" } }, - [10728]={ + [10885]={ [1]={ [1]={ [1]={ @@ -244755,7 +248502,7 @@ return { [1]="cold_damage_taken_per_minute_per_frenzy_charge_while_moving" } }, - [10729]={ + [10886]={ [1]={ [1]={ [1]={ @@ -244779,7 +248526,7 @@ return { [1]="display_added_damage_type_replacement_no_elemental_hit" } }, - [10730]={ + [10887]={ [1]={ [1]={ limit={ @@ -244795,7 +248542,23 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%" } }, - [10731]={ + [10888]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to Trigger Explosive Toad when you kill an Enemy" + } + }, + stats={ + [1]="exploding_toad_trigger_%_chance_from_unique" + } + }, + [10889]={ [1]={ [1]={ [1]={ @@ -244819,7 +248582,7 @@ return { [1]="fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently" } }, - [10732]={ + [10890]={ [1]={ [1]={ [1]={ @@ -244839,7 +248602,7 @@ return { [1]="gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness" } }, - [10733]={ + [10891]={ [1]={ [1]={ [1]={ @@ -244863,7 +248626,7 @@ return { [1]="gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy" } }, - [10734]={ + [10892]={ [1]={ [1]={ [1]={ @@ -244883,7 +248646,23 @@ return { [1]="immune_to_elemental_status_ailments_while_affected_by_glorious_madness" } }, - [10735]={ + [10893]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Leech is Instant per maximum Power Charge" + } + }, + stats={ + [1]="leech_%_is_instant_per_maximum_power_charge" + } + }, + [10894]={ [1]={ [1]={ [1]={ @@ -244907,7 +248686,7 @@ return { [1]="lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently" } }, - [10736]={ + [10895]={ [1]={ [1]={ limit={ @@ -244923,7 +248702,7 @@ return { [1]="local_apply_extra_herald_mod_when_synthesised" } }, - [10737]={ + [10896]={ [1]={ [1]={ limit={ @@ -244939,7 +248718,7 @@ return { [1]="local_is_alternate_tree_jewel" } }, - [10738]={ + [10897]={ [1]={ [1]={ limit={ @@ -244955,7 +248734,7 @@ return { [1]="local_is_survival_jewel" } }, - [10739]={ + [10898]={ [1]={ [1]={ [1]={ @@ -244975,7 +248754,7 @@ return { [1]="local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash" } }, - [10740]={ + [10899]={ [1]={ [1]={ limit={ @@ -244991,7 +248770,7 @@ return { [1]="local_unique_jewel_nearby_disconnected_keystone_passives_can_be_allocated" } }, - [10741]={ + [10900]={ [1]={ [1]={ limit={ @@ -245038,7 +248817,7 @@ return { [2]="unique_thread_of_hope_base_resist_all_elements_%" } }, - [10742]={ + [10901]={ [1]={ [1]={ limit={ @@ -245054,7 +248833,7 @@ return { [1]="lose_X_bark_on_enemy_spell_hit" } }, - [10743]={ + [10902]={ [1]={ [1]={ [1]={ @@ -245074,7 +248853,7 @@ return { [1]="max_fortification_while_affected_by_glorious_madness_+1_per_4" } }, - [10744]={ + [10903]={ [1]={ [1]={ limit={ @@ -245090,7 +248869,7 @@ return { [1]="primordial_jewel_count" } }, - [10745]={ + [10904]={ [1]={ [1]={ limit={ @@ -245121,7 +248900,81 @@ return { [4]="skill_max_unleash_seals" } }, - [10746]={ + [10905]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Pact Skills have {0}% increased Cast Speed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Pact Skills have {0}% reduced Cast Speed" + } + }, + stats={ + [1]="pact_cast_speed_+%" + } + }, + [10906]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Pact Skills have {0}% increased Cooldown Recovery Rate" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Pact Skills have {0}% reduced Cooldown Recovery Rate" + } + }, + stats={ + [1]="pact_cooldown_speed_+%" + } + }, + [10907]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pact Skills grant Boons instead of Afflictions" + } + }, + stats={ + [1]="gain_boons_instead_of_afflictions_when_using_a_pact_skill" + } + }, + [10908]={ [1]={ [1]={ limit={ @@ -245150,7 +249003,7 @@ return { [1]="zealotry_aura_effect_+%" } }, - [10747]={ + [10909]={ [1]={ [1]={ [1]={ @@ -245187,7 +249040,7 @@ return { [1]="zealotry_mana_reservation_efficiency_-2%_per_1" } }, - [10748]={ + [10910]={ [1]={ [1]={ limit={ @@ -245216,7 +249069,7 @@ return { [1]="zealotry_mana_reservation_efficiency_+%" } }, - [10749]={ + [10911]={ [1]={ [1]={ limit={ @@ -245249,7 +249102,7 @@ return { [1]="zealotry_mana_reservation_+%" } }, - [10750]={ + [10912]={ [1]={ [1]={ limit={ @@ -245265,7 +249118,7 @@ return { [1]="zealotry_reserves_no_mana" } }, - [10751]={ + [10913]={ [1]={ [1]={ limit={ @@ -245281,7 +249134,23 @@ return { [1]="zero_chaos_resistance" } }, - [10752]={ + [10914]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain a Power Charge after Spending a total of 200 Mana" + } + }, + stats={ + [1]="local_display_gain_power_charge_on_spending_mana" + } + }, + [10915]={ [1]={ [1]={ limit={ @@ -245297,7 +249166,7 @@ return { [1]="local_nearby_enemies_base_physical_damage_%_to_convert_to_fire" } }, - [10753]={ + [10916]={ [1]={ [1]={ limit={ @@ -245313,7 +249182,7 @@ return { [1]="map_abyss_scarab_more_likely_%" } }, - [10754]={ + [10917]={ [1]={ [1]={ limit={ @@ -245329,7 +249198,7 @@ return { [1]="map_anarchy_scarab_more_likely_%" } }, - [10755]={ + [10918]={ [1]={ [1]={ limit={ @@ -245345,7 +249214,7 @@ return { [1]="map_bestiary_scarab_more_likely_%" } }, - [10756]={ + [10919]={ [1]={ [1]={ limit={ @@ -245361,7 +249230,7 @@ return { [1]="map_betrayal_scarab_more_likely_%" } }, - [10757]={ + [10920]={ [1]={ [1]={ limit={ @@ -245377,7 +249246,7 @@ return { [1]="map_beyond_scarab_more_likely_%" } }, - [10758]={ + [10921]={ [1]={ [1]={ limit={ @@ -245393,7 +249262,7 @@ return { [1]="map_blight_scarab_more_likely_%" } }, - [10759]={ + [10922]={ [1]={ [1]={ limit={ @@ -245409,7 +249278,7 @@ return { [1]="map_breach_scarab_more_likely_%" } }, - [10760]={ + [10923]={ [1]={ [1]={ limit={ @@ -245425,7 +249294,7 @@ return { [1]="map_delirium_scarab_more_likely_%" } }, - [10761]={ + [10924]={ [1]={ [1]={ limit={ @@ -245441,7 +249310,7 @@ return { [1]="map_delve_scarab_more_likely_%" } }, - [10762]={ + [10925]={ [1]={ [1]={ limit={ @@ -245457,7 +249326,7 @@ return { [1]="map_divination_scarab_more_likely_%" } }, - [10763]={ + [10926]={ [1]={ [1]={ limit={ @@ -245473,7 +249342,7 @@ return { [1]="map_domination_scarab_more_likely_%" } }, - [10764]={ + [10927]={ [1]={ [1]={ limit={ @@ -245489,7 +249358,7 @@ return { [1]="map_essence_scarab_more_likely_%" } }, - [10765]={ + [10928]={ [1]={ [1]={ limit={ @@ -245505,7 +249374,7 @@ return { [1]="map_expedition_scarab_more_likely_%" } }, - [10766]={ + [10929]={ [1]={ [1]={ limit={ @@ -245521,7 +249390,7 @@ return { [1]="map_harbinger_scarab_more_likely_%" } }, - [10767]={ + [10930]={ [1]={ [1]={ limit={ @@ -245537,7 +249406,7 @@ return { [1]="map_harvest_scarab_more_likely_%" } }, - [10768]={ + [10931]={ [1]={ [1]={ limit={ @@ -245553,7 +249422,7 @@ return { [1]="map_incursion_scarab_more_likely_%" } }, - [10769]={ + [10932]={ [1]={ [1]={ limit={ @@ -245569,7 +249438,7 @@ return { [1]="map_legion_scarab_more_likely_%" } }, - [10770]={ + [10933]={ [1]={ [1]={ limit={ @@ -245585,7 +249454,7 @@ return { [1]="map_maps_scarab_more_likely_%" } }, - [10771]={ + [10934]={ [1]={ [1]={ limit={ @@ -245601,7 +249470,7 @@ return { [1]="map_ritual_scarab_more_likely_%" } }, - [10772]={ + [10935]={ [1]={ [1]={ limit={ @@ -245617,7 +249486,7 @@ return { [1]="map_settlers_scarab_more_likely_%" } }, - [10773]={ + [10936]={ [1]={ [1]={ limit={ @@ -245633,7 +249502,7 @@ return { [1]="map_strongbox_scarab_more_likely_%" } }, - [10774]={ + [10937]={ [1]={ [1]={ limit={ @@ -245649,7 +249518,7 @@ return { [1]="map_torment_scarab_more_likely_%" } }, - [10775]={ + [10938]={ [1]={ [1]={ limit={ @@ -245665,7 +249534,7 @@ return { [1]="map_ultimatum_scarab_more_likely_%" } }, - [10776]={ + [10939]={ [1]={ [1]={ limit={ @@ -245681,7 +249550,7 @@ return { [1]="map_uniques_scarab_more_likely_%" } }, - [10777]={ + [10940]={ [1]={ [1]={ [1]={ @@ -245701,7 +249570,7 @@ return { [1]="zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [10778]={ + [10941]={ [1]={ [1]={ [1]={ @@ -245721,7 +249590,7 @@ return { [1]="zombie_damage_leeched_as_energy_shield_to_you_permyriad_if_over_1000_intelligence" } }, - [10779]={ + [10942]={ [1]={ [1]={ [1]={ @@ -245741,7 +249610,7 @@ return { [1]="zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength" } }, - [10780]={ + [10943]={ [1]={ [1]={ limit={ @@ -245770,7 +249639,7 @@ return { [1]="zombie_physical_damage_+%_final" } }, - [10781]={ + [10944]={ [1]={ [1]={ limit={ @@ -245799,7 +249668,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [10782]={ + [10945]={ [1]={ [1]={ limit={ @@ -245815,7 +249684,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [10783]={ + [10946]={ [1]={ [1]={ limit={ @@ -245831,7 +249700,7 @@ return { [1]="zombie_slam_damage_+%" } }, - [10784]={ + [10947]={ [1]={ [1]={ [1]={ @@ -245851,7 +249720,7 @@ return { [1]="golems_larger_aggro_radius" } }, - [10785]={ + [10948]={ [1]={ [1]={ [1]={ @@ -245871,7 +249740,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [10786]={ + [10949]={ [1]={ [1]={ limit={ @@ -245892,7 +249761,7 @@ return { [2]="local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%" } }, - [10787]={ + [10950]={ [1]={ [1]={ limit={ @@ -245921,7 +249790,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%" } }, - [10788]={ + [10951]={ [1]={ [1]={ limit={ @@ -245950,7 +249819,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%" } }, - [10789]={ + [10952]={ [1]={ [1]={ limit={ @@ -245971,7 +249840,7 @@ return { [2]="local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage" } }, - [10790]={ + [10953]={ [1]={ [1]={ [1]={ @@ -245991,7 +249860,7 @@ return { [1]="melee_hits_grant_rampage_stacks" } }, - [10791]={ + [10954]={ [1]={ [1]={ [1]={ @@ -246011,7 +249880,7 @@ return { [1]="player_gain_rampage_stacks" } }, - [10792]={ + [10955]={ [1]={ [1]={ [1]={ @@ -246031,7 +249900,7 @@ return { [1]="keystone_acrobatics" } }, - [10793]={ + [10956]={ [1]={ [1]={ [1]={ @@ -246055,7 +249924,7 @@ return { [1]="keystone_ailment_crit" } }, - [10794]={ + [10957]={ [1]={ [1]={ [1]={ @@ -246075,7 +249944,7 @@ return { [1]="keystone_ancestral_bond" } }, - [10795]={ + [10958]={ [1]={ [1]={ [1]={ @@ -246095,7 +249964,7 @@ return { [1]="keystone_avatar_of_fire" } }, - [10796]={ + [10959]={ [1]={ [1]={ [1]={ @@ -246115,7 +249984,7 @@ return { [1]="keystone_battlemage" } }, - [10797]={ + [10960]={ [1]={ [1]={ [1]={ @@ -246135,7 +250004,7 @@ return { [1]="keystone_blood_magic" } }, - [10798]={ + [10961]={ [1]={ [1]={ [1]={ @@ -246155,7 +250024,7 @@ return { [1]="keystone_call_to_arms" } }, - [10799]={ + [10962]={ [1]={ [1]={ [1]={ @@ -246175,7 +250044,23 @@ return { [1]="keystone_chaos_inoculation" } }, - [10800]={ + [10963]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bitter Frost" + } + }, + stats={ + [1]="keystone_cold_purist" + } + }, + [10964]={ [1]={ [1]={ [1]={ @@ -246195,7 +250080,7 @@ return { [1]="keystone_conduit" } }, - [10801]={ + [10965]={ [1]={ [1]={ [1]={ @@ -246215,7 +250100,7 @@ return { [1]="keystone_corrupted_defences" } }, - [10802]={ + [10966]={ [1]={ [1]={ [1]={ @@ -246235,7 +250120,7 @@ return { [1]="keystone_crimson_dance" } }, - [10803]={ + [10967]={ [1]={ [1]={ [1]={ @@ -246259,7 +250144,7 @@ return { [1]="keystone_divine_flesh" } }, - [10804]={ + [10968]={ [1]={ [1]={ [1]={ @@ -246283,7 +250168,7 @@ return { [1]="keystone_divine_shield" } }, - [10805]={ + [10969]={ [1]={ [1]={ [1]={ @@ -246303,7 +250188,7 @@ return { [1]="keystone_eldritch_battery" } }, - [10806]={ + [10970]={ [1]={ [1]={ [1]={ @@ -246323,7 +250208,7 @@ return { [1]="keystone_elemental_equilibrium" } }, - [10807]={ + [10971]={ [1]={ [1]={ [1]={ @@ -246343,7 +250228,7 @@ return { [1]="keystone_elemental_overload" } }, - [10808]={ + [10972]={ [1]={ [1]={ [1]={ @@ -246363,7 +250248,7 @@ return { [1]="keystone_emperors_heart" } }, - [10809]={ + [10973]={ [1]={ [1]={ [1]={ @@ -246383,7 +250268,7 @@ return { [1]="keystone_eternal_youth" } }, - [10810]={ + [10974]={ [1]={ [1]={ [1]={ @@ -246403,7 +250288,23 @@ return { [1]="keystone_everlasting_sacrifice" } }, - [10811]={ + [10975]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Voracious Flame" + } + }, + stats={ + [1]="keystone_fire_purist" + } + }, + [10976]={ [1]={ [1]={ [1]={ @@ -246423,7 +250324,7 @@ return { [1]="keystone_ghost_dance" } }, - [10812]={ + [10977]={ [1]={ [1]={ [1]={ @@ -246443,7 +250344,7 @@ return { [1]="keystone_ghost_reaver" } }, - [10813]={ + [10978]={ [1]={ [1]={ [1]={ @@ -246463,7 +250364,7 @@ return { [1]="keystone_glancing_blows" } }, - [10814]={ + [10979]={ [1]={ [1]={ [1]={ @@ -246483,7 +250384,7 @@ return { [1]="keystone_herald_of_doom" } }, - [10815]={ + [10980]={ [1]={ [1]={ [1]={ @@ -246503,7 +250404,7 @@ return { [1]="keystone_hex_master" } }, - [10816]={ + [10981]={ [1]={ [1]={ [1]={ @@ -246527,7 +250428,7 @@ return { [1]="keystone_hollow_palm_technique" } }, - [10817]={ + [10982]={ [1]={ [1]={ [1]={ @@ -246547,7 +250448,7 @@ return { [1]="keystone_impale" } }, - [10818]={ + [10983]={ [1]={ [1]={ [1]={ @@ -246567,7 +250468,7 @@ return { [1]="keystone_iron_reflexes" } }, - [10819]={ + [10984]={ [1]={ [1]={ [1]={ @@ -246591,7 +250492,23 @@ return { [1]="keystone_lethe_shade" } }, - [10820]={ + [10985]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Roiling Tempest" + } + }, + stats={ + [1]="keystone_lightning_purist" + } + }, + [10986]={ [1]={ [1]={ [1]={ @@ -246615,7 +250532,7 @@ return { [1]="keystone_magebane" } }, - [10821]={ + [10987]={ [1]={ [1]={ [1]={ @@ -246635,7 +250552,7 @@ return { [1]="keystone_mana_shield" } }, - [10822]={ + [10988]={ [1]={ [1]={ [1]={ @@ -246655,7 +250572,7 @@ return { [1]="keystone_medveds_exchange" } }, - [10823]={ + [10989]={ [1]={ [1]={ [1]={ @@ -246675,7 +250592,7 @@ return { [1]="keystone_minion_instability" } }, - [10824]={ + [10990]={ [1]={ [1]={ [1]={ @@ -246695,7 +250612,7 @@ return { [1]="keystone_miracle_of_thaumaturgy" } }, - [10825]={ + [10991]={ [1]={ [1]={ [1]={ @@ -246719,7 +250636,7 @@ return { [1]="keystone_pain_attunement" } }, - [10826]={ + [10992]={ [1]={ [1]={ [1]={ @@ -246739,7 +250656,7 @@ return { [1]="keystone_point_blank" } }, - [10827]={ + [10993]={ [1]={ [1]={ [1]={ @@ -246759,7 +250676,7 @@ return { [1]="keystone_precise_technique" } }, - [10828]={ + [10994]={ [1]={ [1]={ [1]={ @@ -246779,7 +250696,7 @@ return { [1]="keystone_prismatic_bulwark" } }, - [10829]={ + [10995]={ [1]={ [1]={ [1]={ @@ -246799,7 +250716,27 @@ return { [1]="keystone_projectile_evasion" } }, - [10830]={ + [10996]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextKeystonePureElementalist" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elemental Purist" + } + }, + stats={ + [1]="keystone_pure_elementalist" + } + }, + [10997]={ [1]={ [1]={ [1]={ @@ -246819,7 +250756,7 @@ return { [1]="keystone_quiet_might" } }, - [10831]={ + [10998]={ [1]={ [1]={ [1]={ @@ -246839,7 +250776,7 @@ return { [1]="regenerate_energy_shield_instead_of_life" } }, - [10832]={ + [10999]={ [1]={ [1]={ [1]={ @@ -246859,7 +250796,7 @@ return { [1]="keystone_retaliation_hits" } }, - [10833]={ + [11000]={ [1]={ [1]={ [1]={ @@ -246879,7 +250816,7 @@ return { [1]="keystone_runebinder" } }, - [10834]={ + [11001]={ [1]={ [1]={ [1]={ @@ -246903,7 +250840,7 @@ return { [1]="keystone_sacred_bastion" } }, - [10835]={ + [11002]={ [1]={ [1]={ limit={ @@ -246919,7 +250856,7 @@ return { [1]="keystone_sacrifice_of_blood" } }, - [10836]={ + [11003]={ [1]={ [1]={ [1]={ @@ -246951,7 +250888,7 @@ return { [1]="keystone_secrets_of_suffering" } }, - [10837]={ + [11004]={ [1]={ [1]={ [1]={ @@ -246975,7 +250912,7 @@ return { [1]="keystone_shared_suffering" } }, - [10838]={ + [11005]={ [1]={ [1]={ [1]={ @@ -246995,7 +250932,7 @@ return { [1]="keystone_shepherd_of_souls" } }, - [10839]={ + [11006]={ [1]={ [1]={ [1]={ @@ -247019,7 +250956,7 @@ return { [1]="keystone_solipsism" } }, - [10840]={ + [11007]={ [1]={ [1]={ [1]={ @@ -247057,7 +250994,7 @@ return { [2]="start_at_zero_energy_shield" } }, - [10841]={ + [11008]={ [1]={ [1]={ [1]={ @@ -247077,7 +251014,7 @@ return { [1]="keystone_strong_bowman" } }, - [10842]={ + [11009]={ [1]={ [1]={ [1]={ @@ -247097,7 +251034,7 @@ return { [1]="keystone_supreme_ego" } }, - [10843]={ + [11010]={ [1]={ [1]={ [1]={ @@ -247121,7 +251058,7 @@ return { [1]="keystone_tinctures_drain_life" } }, - [10844]={ + [11011]={ [1]={ [1]={ [1]={ @@ -247141,7 +251078,7 @@ return { [1]="keystone_uhtreds_fury" } }, - [10845]={ + [11012]={ [1]={ [1]={ [1]={ @@ -247161,7 +251098,7 @@ return { [1]="keystone_unwavering_stance" } }, - [10846]={ + [11013]={ [1]={ [1]={ [1]={ @@ -247181,7 +251118,7 @@ return { [1]="keystone_vaal_pact" } }, - [10847]={ + [11014]={ [1]={ [1]={ [1]={ @@ -247209,7 +251146,7 @@ return { [1]="keystone_versatile_combatant" } }, - [10848]={ + [11015]={ [1]={ [1]={ [1]={ @@ -247229,7 +251166,7 @@ return { [1]="keystone_voranas_adaption" } }, - [10849]={ + [11016]={ [1]={ [1]={ [1]={ @@ -247249,7 +251186,7 @@ return { [1]="keystone_wicked_ward" } }, - [10850]={ + [11017]={ [1]={ [1]={ [1]={ @@ -247273,7 +251210,7 @@ return { [1]="keystone_wind_dancer" } }, - [10851]={ + [11018]={ [1]={ [1]={ limit={ @@ -247289,7 +251226,7 @@ return { [1]="map_items_drop_corrupted_%" } }, - [10852]={ + [11019]={ [1]={ [1]={ [1]={ @@ -247309,7 +251246,7 @@ return { [1]="player_far_shot" } }, - [10853]={ + [11020]={ [1]={ [1]={ [1]={ @@ -247329,7 +251266,7 @@ return { [1]="resolute_technique" } }, - [10854]={ + [11021]={ [1]={ [1]={ [1]={ @@ -247349,7 +251286,7 @@ return { [1]="strong_casting" } }, - [10855]={ + [11022]={ [1]={ [1]={ [1]={ @@ -247369,7 +251306,7 @@ return { [1]="summoned_skeletons_have_avatar_of_fire" } }, - [10856]={ + [11023]={ [1]={ [1]={ limit={ @@ -247385,7 +251322,7 @@ return { [1]="attacks_use_life_in_place_of_mana" } }, - [10857]={ + [11024]={ [1]={ [1]={ [1]={ @@ -247409,7 +251346,7 @@ return { [1]="gain_crimson_dance_if_have_dealt_critical_strike_recently" } }, - [10858]={ + [11025]={ [1]={ [1]={ [1]={ @@ -247429,7 +251366,7 @@ return { [1]="gain_crimson_dance_while_you_have_cat_stealth" } }, - [10859]={ + [11026]={ [1]={ [1]={ [1]={ @@ -247449,7 +251386,7 @@ return { [1]="gain_iron_reflexes_while_at_maximum_frenzy_charges" } }, - [10860]={ + [11027]={ [1]={ [1]={ [1]={ @@ -247469,7 +251406,7 @@ return { [1]="gain_mind_over_matter_while_at_maximum_power_charges" } }, - [10861]={ + [11028]={ [1]={ [1]={ [1]={ @@ -247489,7 +251426,7 @@ return { [1]="gain_vaal_pact_while_at_maximum_endurance_charges" } }, - [10862]={ + [11029]={ [1]={ [1]={ [1]={ @@ -247509,7 +251446,7 @@ return { [1]="local_gain_vaal_pact_if_all_socketed_gems_red" } }, - [10863]={ + [11030]={ [1]={ [1]={ [1]={ @@ -247529,7 +251466,7 @@ return { [1]="avatar_of_fire_rotation_active" } }, - [10864]={ + [11031]={ [1]={ [1]={ [1]={ @@ -247549,7 +251486,7 @@ return { [1]="elemental_overload_rotation_active" } }, - [10865]={ + [11032]={ [1]={ [1]={ [1]={ @@ -247569,7 +251506,7 @@ return { [1]="gain_iron_reflexes_while_stationary" } }, - [10866]={ + [11033]={ [1]={ [1]={ [1]={ @@ -247589,7 +251526,7 @@ return { [1]="gain_resolute_technique_while_do_not_have_elemental_overload" } }, - [10867]={ + [11034]={ [1]={ [1]={ [1]={ @@ -247609,7 +251546,7 @@ return { [1]="iron_reflexes_rotation_active" } }, - [10868]={ + [11035]={ [1]={ [1]={ limit={ @@ -247625,7 +251562,7 @@ return { [1]="trap_throw_skills_have_blood_magic" } }, - [10869]={ + [11036]={ [1]={ [1]={ [1]={ @@ -247649,7 +251586,7 @@ return { [1]="you_have_zealots_oath_if_you_havent_been_hit_recently" } }, - [10870]={ + [11037]={ [1]={ [1]={ limit={ @@ -247678,7 +251615,7 @@ return { [1]="physical_damage_+%_while_you_have_resolute_technique" } }, - [10871]={ + [11038]={ [1]={ [1]={ limit={ @@ -247707,7 +251644,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_avatar_of_fire" } }, - [10872]={ + [11039]={ [1]={ [1]={ limit={ @@ -247723,7 +251660,7 @@ return { [1]="physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire" } }, - [10873]={ + [11040]={ [1]={ [1]={ [1]={ @@ -247743,7 +251680,7 @@ return { [1]="unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes" } }, - [10874]={ + [11041]={ [1]={ [1]={ [1]={ @@ -247763,7 +251700,7 @@ return { [1]="local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire" } }, - [10875]={ + [11042]={ [1]={ [1]={ limit={ @@ -247779,7 +251716,7 @@ return { [1]="armour_while_you_do_not_have_avatar_of_fire" } }, - [10876]={ + [11043]={ [1]={ [1]={ limit={ @@ -247808,7 +251745,7 @@ return { [1]="attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes" } }, - [10877]={ + [11044]={ [1]={ [1]={ [1]={ @@ -247828,7 +251765,7 @@ return { [1]="gain_player_far_shot_while_do_not_have_iron_reflexes" } }, - [10878]={ + [11045]={ [1]={ [1]={ limit={ @@ -247844,7 +251781,7 @@ return { [1]="blood_footprints_from_item" } }, - [10879]={ + [11046]={ [1]={ [1]={ limit={ @@ -247860,7 +251797,7 @@ return { [1]="celestial_footprints_from_item" } }, - [10880]={ + [11047]={ [1]={ [1]={ limit={ @@ -247876,7 +251813,7 @@ return { [1]="demigod_footprints_from_item" } }, - [10881]={ + [11048]={ [1]={ [1]={ limit={ @@ -247892,7 +251829,7 @@ return { [1]="extra_gore" } }, - [10882]={ + [11049]={ [1]={ [1]={ limit={ @@ -247908,7 +251845,7 @@ return { [1]="goat_footprints_from_item" } }, - [10883]={ + [11050]={ [1]={ [1]={ limit={ @@ -247924,7 +251861,7 @@ return { [1]="mist_footprints_from_item" } }, - [10884]={ + [11051]={ [1]={ [1]={ limit={ @@ -247940,4402 +251877,4478 @@ return { [1]="silver_footprints_from_item" } }, - ["%_chance_to_blind_on_critical_strike"]=4302, - ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=4385, - ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3825, - ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=4099, - ["%_chance_to_deal_150%_area_damage_+%_final"]=9622, - ["%_chance_to_duplicate_dropped_currency"]=9623, - ["%_chance_to_duplicate_dropped_divination_cards"]=9624, - ["%_chance_to_duplicate_dropped_maps"]=9625, - ["%_chance_to_duplicate_dropped_scarabs"]=9626, - ["%_chance_to_duplicate_dropped_uniques"]=9627, - ["%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage"]=4383, - ["%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage"]=4381, - ["%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage"]=4382, - ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=9628, - ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3625, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3624, - ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=4097, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=2156, - ["%_chance_to_gain_power_charge_on_placing_a_totem"]=4081, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=2155, - ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=9629, - ["%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace"]=9630, - ["%_number_of_raging_spirits_allowed"]=9631, + ["%_chance_to_blind_on_critical_strike"]=4338, + ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=4423, + ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3861, + ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=4135, + ["%_chance_to_deal_150%_area_damage_+%_final"]=9758, + ["%_chance_to_duplicate_dropped_currency"]=9759, + ["%_chance_to_duplicate_dropped_divination_cards"]=9760, + ["%_chance_to_duplicate_dropped_maps"]=9761, + ["%_chance_to_duplicate_dropped_scarabs"]=9762, + ["%_chance_to_duplicate_dropped_uniques"]=9763, + ["%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage"]=4421, + ["%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage"]=4419, + ["%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage"]=4420, + ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=9764, + ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3661, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3660, + ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=4133, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=2179, + ["%_chance_to_gain_power_charge_on_placing_a_totem"]=4117, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=2178, + ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=9765, + ["%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace"]=9766, + ["%_number_of_raging_spirits_allowed"]=9767, ["%_of_your_and_your_minions_damage_cannot_be_reflected"]=1, ["%_of_your_and_your_minions_elemental_damage_cannot_be_reflected"]=2, ["%_of_your_and_your_minions_physical_damage_cannot_be_reflected"]=3, ["%_of_your_damage_cannot_be_reflected"]=4, ["%_of_your_elemental_damage_cannot_be_reflected"]=5, ["%_of_your_physical_damage_cannot_be_reflected"]=6, - ["%_physical_damage_bypasses_energy_shield"]=9632, - ["+1_max_charged_attack_stages"]=9703, - ["-%_of_your_cold_damage_cannot_be_reflected_while_affected_by_purity_of_ice"]=9395, + ["%_physical_damage_bypasses_energy_shield"]=9768, + ["+1_max_charged_attack_stages"]=9845, + ["-%_of_your_cold_damage_cannot_be_reflected_while_affected_by_purity_of_ice"]=9528, ["-%_of_your_damage_cannot_be_reflected"]=7, - ["-%_of_your_elemental_damage_cannot_be_reflected_while_affected_by_purity_of_elements"]=9396, - ["-%_of_your_fire_damage_cannot_be_reflected_while_affected_by_purity_of_fire"]=9397, - ["-%_of_your_lightning_damage_cannot_be_reflected_while_affected_by_purity_of_lightning"]=9398, - ["-%_of_your_physical_damage_cannot_be_reflected_while_affected_by_determination"]=9399, - ["X_accuracy_per_2_intelligence"]=2044, - ["X_armour_if_you_have_blocked_recently"]=4523, - ["X_armour_per_active_totem"]=4524, - ["X_armour_per_stackable_unique_jewel"]=4181, - ["X_life_per_4_dexterity"]=2045, - ["X_mana_per_4_strength"]=2046, - ["X_mana_per_dexterity"]=4525, - ["X_mana_per_stackable_unique_jewel"]=4180, - ["X_to_armour_per_2_strength"]=4526, - ["absolution_cast_speed_+%"]=4528, - ["absolution_duration_+%"]=4529, - ["absolution_minion_area_of_effect_+%"]=4530, - ["abyssal_cry_damage_+%"]=3748, - ["abyssal_cry_duration_+%"]=3945, - ["accuracy_rating"]=1457, - ["accuracy_rating_+%"]=1458, - ["accuracy_rating_+%_during_onslaught"]=4543, - ["accuracy_rating_+%_final_vs_enemies_in_close_range_from_mastery"]=4531, - ["accuracy_rating_+%_final_vs_unique_enemies_from_mastery"]=4532, - ["accuracy_rating_+%_if_enemy_not_killed_recently"]=4544, - ["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=4545, - ["accuracy_rating_+%_per_25_intelligence"]=4534, - ["accuracy_rating_+%_per_frenzy_charge"]=2074, - ["accuracy_rating_+%_when_on_low_life"]=2609, - ["accuracy_rating_+%_with_ally_nearby"]=4535, - ["accuracy_rating_+_per_2_dexterity"]=4540, - ["accuracy_rating_+_per_empty_green_socket"]=4458, - ["accuracy_rating_+_per_frenzy_charge"]=4541, - ["accuracy_rating_+_per_green_socket_on_bow"]=4542, - ["accuracy_rating_against_marked_enemies_+%_final_from_crucible_tree"]=4536, - ["accuracy_rating_against_marked_enemies_+%_final_from_mastery"]=4537, - ["accuracy_rating_is_doubled"]=4538, - ["accuracy_rating_per_level"]=4539, - ["accuracy_rating_while_at_maximum_frenzy_charges"]=4546, - ["accuracy_rating_while_dual_wielding_+%"]=1459, - ["action_speed_+%_while_affected_by_haste"]=4547, - ["action_speed_+%_while_chilled"]=3612, - ["action_speed_-%"]=4551, - ["action_speed_cannot_be_reduced_below_base"]=3218, - ["action_speed_cannot_be_reduced_below_base_while_ignited"]=4548, - ["action_speed_cannot_be_reduced_below_base_while_no_gems_in_boots"]=4549, - ["action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds"]=4550, - ["action_speed_is_at_least_90%"]=195, - ["active_skill_200%_increased_knockback_distance"]=4552, - ["active_skill_attack_speed_+%_final"]=1435, - ["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3813, - ["active_skill_level_+"]=1902, - ["adaptation_duration_+%"]=1561, - ["adaptation_rating_+%"]=1558, - ["add_endurance_charge_on_critical_strike"]=1842, - ["add_endurance_charge_on_enemy_critical_strike"]=1859, - ["add_endurance_charge_on_gain_power_charge_%"]=3631, - ["add_endurance_charge_on_kill"]=2852, - ["add_endurance_charge_on_skill_hit_%"]=1856, - ["add_endurance_charge_on_status_ailment"]=1860, - ["add_frenzy_charge_every_50_rampage_stacks"]=4399, - ["add_frenzy_charge_on_critical_strike"]=1852, - ["add_frenzy_charge_on_enemy_block"]=2150, - ["add_frenzy_charge_on_kill_%_chance"]=2655, - ["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=4553, - ["add_frenzy_charge_on_skill_hit_%"]=1857, - ["add_frenzy_charge_on_skill_hit_%_if_4_redeemer_items"]=4487, - ["add_frenzy_charge_when_hit_%"]=4554, - ["add_power_charge_on_critical_strike"]=1853, - ["add_power_charge_on_critical_strike_%"]=1854, - ["add_power_charge_on_hit_%"]=3626, - ["add_power_charge_on_hit_while_poisoned_%"]=4555, - ["add_power_charge_on_kill_%_chance"]=2657, - ["add_power_charge_on_melee_critical_strike"]=1855, - ["add_power_charge_on_minion_death"]=2082, - ["add_power_charge_on_skill_hit_%"]=1858, - ["add_power_charge_on_skill_hit_%_if_4_crusader_items"]=4488, - ["add_power_charge_when_interrupted_while_casting"]=2177, - ["add_power_charge_when_kill_shocked_enemy"]=2167, - ["add_x_grasping_vines_on_hit"]=4556, - ["added_chaos_damage_%_life_cost_if_payable"]=4557, - ["added_chaos_damage_%_mana_cost_if_payable"]=4558, - ["additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"]=4594, - ["additional_all_attributes"]=1200, - ["additional_attack_block_%_if_used_shield_skill_recently"]=4559, - ["additional_attack_block_%_per_endurance_charge"]=4560, - ["additional_attack_block_%_per_frenzy_charge"]=4561, - ["additional_attack_block_%_per_power_charge"]=4562, - ["additional_attack_block_%_per_summoned_skeleton"]=4563, - ["additional_base_critical_strike_chance"]=1481, - ["additional_beam_only_chains"]=10557, - ["additional_block_%"]=2482, - ["additional_block_%_against_frontal_attacks"]=4564, - ["additional_block_%_if_you_have_crit_recently"]=4565, - ["additional_block_%_per_endurance_charge"]=4566, - ["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=4567, - ["additional_block_%_while_not_cursed"]=4568, - ["additional_block_%_while_on_consecrated_ground"]=4569, - ["additional_block_%_while_you_have_at_least_10_crab_charges"]=4377, - ["additional_block_%_while_you_have_at_least_5_crab_charges"]=4376, - ["additional_block_%_with_5_or_more_nearby_enemies"]=4570, - ["additional_block_chance_%_for_1_second_every_5_seconds"]=2483, - ["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=4088, - ["additional_block_chance_%_when_in_off_hand"]=4209, - ["additional_block_chance_against_projectiles_%"]=2488, - ["additional_chance_to_freeze_chilled_enemies_%"]=2056, - ["additional_chaos_damage_to_spells_equal_to_%_maximum_life"]=4571, - ["additional_chaos_resistance_against_damage_over_time_%"]=5758, - ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4572, - ["additional_critical_strike_chance_per_power_charge_permyriad"]=4573, - ["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=4574, - ["additional_critical_strike_chance_permyriad_per_warcry_exerting_action"]=4575, - ["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=4384, - ["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=4576, - ["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=3494, - ["additional_critical_strike_chance_permyriad_with_herald_skills"]=4577, - ["additional_damage_rolls_while_on_low_life"]=4578, - ["additional_dexterity"]=1202, - ["additional_dexterity_and_intelligence"]=1206, - ["additional_dexterity_per_allocated_mastery"]=4579, - ["additional_elemental_damage_reduction_as_half_of_chaos_resistance"]=4089, - ["additional_intelligence"]=1203, - ["additional_intelligence_per_allocated_mastery"]=4580, - ["additional_max_mirage_archers"]=4439, - ["additional_max_number_of_dominated_magic_monsters"]=4581, - ["additional_max_number_of_dominated_rare_monsters"]=4582, - ["additional_maximum_all_elemental_resistances_%"]=1667, - ["additional_maximum_all_elemental_resistances_%_if_6_shaper_items"]=4505, - ["additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour"]=4587, - ["additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently"]=4583, - ["additional_maximum_all_elemental_resistances_%_if_suppressed_spell_recently"]=4584, - ["additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements"]=4585, - ["additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana"]=4586, - ["additional_maximum_all_resistances_%"]=1666, - ["additional_maximum_all_resistances_%_at_devotion_threshold"]=4589, - ["additional_maximum_all_resistances_%_while_poisoned"]=4588, - ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4590, - ["additional_number_of_brands_to_create"]=4591, - ["additional_off_hand_critical_strike_chance_permyriad"]=4592, - ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4593, - ["additional_physical_damage_reduction_%_during_flask_effect"]=4292, - ["additional_physical_damage_reduction_%_during_focus"]=4596, - ["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=4597, - ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=4598, - ["additional_physical_damage_reduction_%_per_keystone"]=4599, - ["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=4600, - ["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=4601, - ["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=4602, - ["additional_physical_damage_reduction_%_when_on_low_life"]=2283, - ["additional_physical_damage_reduction_%_while_affected_by_determination"]=4603, - ["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=4604, - ["additional_physical_damage_reduction_%_while_bleeding"]=4605, - ["additional_physical_damage_reduction_%_while_channelling"]=4606, - ["additional_physical_damage_reduction_%_while_frozen"]=4607, - ["additional_physical_damage_reduction_%_while_moving"]=4608, - ["additional_physical_damage_reduction_against_hits_%_per_siphoning_charge"]=4363, - ["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=4595, - ["additional_poison_chance_%_when_inflicting_poison"]=4609, - ["additional_projectile_if_6_hunter_items"]=4506, - ["additional_rage_loss_per_minute"]=4610, - ["additional_scroll_of_wisdom_drop_chance_%"]=2619, - ["additional_spectres_per_ghastly_eye_jewel"]=4611, - ["additional_spell_block_%"]=1182, - ["additional_spell_block_%_if_havent_blocked_recently"]=4613, - ["additional_spell_block_%_per_power_charge"]=4612, - ["additional_spell_block_%_while_cursed"]=4614, - ["additional_staff_block_%"]=1178, - ["additional_strength"]=1201, - ["additional_strength_and_dexterity"]=1204, - ["additional_strength_and_intelligence"]=1205, - ["additional_strength_per_allocated_mastery"]=4615, - ["additional_stun_threshold_based_on_%_of_energy_shield"]=4616, - ["additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=4617, - ["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=4618, - ["additive_chaos_damage_modifiers_apply_to_chaos_aura_effect_at_%_value"]=4619, - ["additive_cold_damage_modifiers_apply_to_cold_aura_effect_at_%_value"]=4620, - ["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=4621, - ["additive_fire_damage_modifiers_apply_to_fire_aura_effect_at_%_value"]=4622, - ["additive_flask_effect_modifiers_apply_to_arcane_surge"]=4623, - ["additive_flask_effect_modifiers_apply_to_arcane_surge_at_%_value"]=4624, - ["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=4625, - ["additive_lightning_damage_modifiers_apply_to_lightning_aura_effect_at_%_value"]=4626, - ["additive_mana_modifiers_apply_to_damage_at_30%_value"]=4627, - ["additive_mana_modifiers_apply_to_shock_effect_at_30%_value"]=4628, - ["additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=3775, - ["additive_minion_maximum_life_modifiers_apply_to_you_at_%_value"]=3778, - ["additive_modifiers_to_minion_attack_speed_also_affect_you"]=3776, - ["additive_modifiers_to_minion_cast_speed_also_affect_you"]=3777, - ["additive_physical_damage_modifiers_apply_to_physical_aura_effect_at_%_value"]=4629, - ["additive_spell_damage_modifiers_apply_to_attack_damage"]=2710, - ["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=2712, - ["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=2711, - ["additive_spell_damage_modifiers_apply_to_retaliation_attack_damage_at_%_value"]=2713, - ["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=2714, - ["adrenaline_on_vaal_skill_use_duration_ms"]=2943, - ["aggravate_bleeding_older_than_ms_on_hit"]=4630, - ["aggravate_bleeding_on_attack_crit_chance_%"]=4631, - ["aggravate_bleeding_on_attack_knockback_chance_%"]=4633, - ["aggravate_bleeding_on_attack_stun_chance_%"]=4634, - ["aggravate_bleeding_on_exerted_attack_hit_chance_%"]=4635, - ["aggravate_inflicted_bleeding"]=4636, - ["agony_crawler_damage_+%"]=4637, - ["ailment_bearer_all_damage_can_inflict_elemental_ailments"]=4638, - ["ailment_bearer_always_freeze_shock_ignite"]=4639, - ["ailment_bearer_elemental_damage_+%_final"]=4640, - ["ailment_bearer_ignite_freeze_shock_duration_+%"]=4641, - ["ailment_bearer_scorch_effect_+%"]=4642, - ["ailment_damage_+%_per_equipped_elder_item"]=4353, - ["ailment_dot_multiplier_+"]=1267, - ["ailment_dot_multiplier_+_per_equipped_elder_item"]=4354, - ["ailment_types_apply_damage_taken_+%"]=2486, - ["ailment_types_apply_enemy_chance_to_deal_double_damage_%_against_self"]=4643, - ["alchemists_mark_curse_effect_+%"]=4644, - ["all_added_damage_treated_as_added_cold_damage_if_dex_higher_than_int_and_strength"]=4645, - ["all_added_damage_treated_as_added_lightning_damage_if_int_higher_than_dex_and_strength"]=4646, - ["all_attributes_+%"]=1207, - ["all_attributes_+%_if_6_elder_items"]=4507, - ["all_attributes_+%_per_assigned_keystone"]=3111, - ["all_attributes_+_per_keystone"]=4647, - ["all_damage_can_chill"]=2884, - ["all_damage_can_freeze"]=4648, - ["all_damage_can_ignite"]=4649, - ["all_damage_can_poison"]=4650, - ["all_damage_can_poison_while_affected_by_glorious_madness"]=10726, - ["all_damage_can_shock"]=4651, - ["all_damage_from_mace_and_sceptre_also_chills"]=4652, - ["all_damage_resistance_+%"]=4653, - ["all_damage_taken_can_chill"]=2887, - ["all_damage_taken_can_ignite"]=4654, - ["all_damage_taken_can_sap"]=4655, - ["all_damage_taken_can_scorch"]=4656, - ["all_resistances_%_per_active_minion"]=4657, - ["all_resistances_%_per_active_minion_not_from_vaal_skills"]=1661, - ["all_resistances_%_per_equipped_corrupted_item"]=3127, - ["all_skill_gem_level_+"]=4658, - ["all_skill_gem_quality_+"]=4659, - ["allow_2_active_banners"]=3043, - ["allow_2_offerings"]=4660, - ["allow_hellscaping_unique_items"]=4661, - ["allow_multiple_offerings"]=4662, - ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_eshgraft"]=4663, - ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_tulgraft"]=4664, - ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_uulgraft"]=4665, - ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_xophgraft"]=4666, - ["alternate_ascendancy_damage_taken_over_time_+%_final_while_you_have_unbroken_ward"]=4667, - ["alternate_ascendancy_damage_taken_when_hit_+%_final"]=4668, - ["alternate_ascendancy_herald_buff_effect_+%_final_per_1%_mana_reserved"]=4669, - ["alternate_ascendancy_herald_minion_and_herald_damage_+%_final_per_1%_life_reserved"]=4670, - ["alternate_ascendancy_rapid_fire_support_use_damage_+%_final_per_reoccurance"]=4671, - ["alternate_ascendancy_vaal_skill_soul_requirement_+%_final"]=4672, - ["alternate_ascendancy_vaal_skills_damage_+%_final_per_soul_required"]=4673, - ["always_crit"]=2069, - ["always_crit_on_next_non_channelling_attack_within_X_ms_after_being_crit"]=4674, - ["always_crit_shocked_enemies"]=4160, - ["always_crit_while_holding_fishing_rod"]=4675, - ["always_freeze"]=2053, - ["always_frostburn_while_affected_by_hatred"]=4676, - ["always_ignite"]=1876, - ["always_ignite_while_burning"]=4677, - ["always_pierce"]=4678, - ["always_pierce_burning_enemies"]=4679, - ["always_sap_while_affected_by_wrath"]=4680, - ["always_scorch_while_affected_by_anger"]=4681, - ["always_shock"]=1877, - ["always_shock_low_life_enemies"]=4682, - ["always_stun"]=1878, - ["always_stun_enemies_that_are_on_full_life"]=3356, - ["always_take_critical_strikes"]=4683, - ["ambush_buff_critical_strike_multiplier_+"]=4684, - ["ambush_cooldown_speed_+%"]=4685, - ["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=3458, - ["amulet_freeze_proliferation_radius"]=2244, - ["ancestor_totem_buff_effect_+%"]=4686, - ["ancestor_totem_buff_linger_time_ms"]=4687, - ["ancestor_totem_damage_leeched_as_energy_shield_to_you_permyriad"]=4688, - ["ancestor_totem_parent_activation_range_+%"]=4689, - ["ancestral_chance_for_no_respawn_timer_on_death_%"]=4690, - ["ancestral_channelling_damage_+%_against_totems"]=4691, - ["ancestral_channelling_interrupt_duration_+%"]=4692, - ["ancestral_cry_attacks_exerted_+"]=4693, - ["ancestral_cry_exerted_attack_damage_+%"]=4694, - ["ancestral_cry_minimum_power"]=4695, - ["ancestral_defensive_teammates_gain_charges"]=4696, - ["ancestral_life_regeneration_rate_per_minute_%_while_channelling_totem"]=4697, - ["ancestral_maximum_life_+%_on_respawn"]=4698, - ["ancestral_monster_respawn_timer_+%"]=4699, - ["ancestral_offensive_teammates_gain_adrenaline_for_x_ms_on_match_start"]=4700, - ["ancestral_slain_enemies_respawn_timer_+"]=4701, - ["ancestral_stun_nearby_enemies_on_respawn"]=4702, - ["ancestral_totem_being_channelled_doesnt_prevent_your_respawn_timer"]=4703, - ["ancestral_totem_cannot_recover_life_while_being_channelled"]=4704, - ["ancestral_totem_life_+%"]=4705, - ["ancestral_totem_life_regeneration_rate_per_minute_%"]=4706, - ["ancestral_totem_periodically_freezes_nearby_enemies"]=4707, - ["ancestral_totem_trigger_enduring_cry_on_low_life"]=4708, - ["anger_aura_effect_+%"]=3380, - ["anger_aura_effect_+%_while_at_maximum_endurance_charges"]=4709, - ["anger_mana_reservation_+%"]=3441, - ["anger_mana_reservation_efficiency_+%"]=4711, - ["anger_mana_reservation_efficiency_-2%_per_1"]=4710, - ["anger_reserves_no_mana"]=4712, - ["animate_guardian_damage_+%"]=3729, - ["animate_guardian_damage_+%_per_animated_weapon"]=4713, - ["animate_guardian_elemental_resistances_%"]=4013, - ["animate_weapon_can_animate_bows"]=3186, - ["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=3279, - ["animate_weapon_can_animate_wands"]=3187, - ["animate_weapon_chance_to_create_additional_copy_%"]=4019, - ["animate_weapon_damage_+%"]=3651, - ["animate_weapon_duration_+%"]=2820, - ["animate_weapon_number_of_additional_copies"]=2821, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=4714, - ["animated_guardian_damage_taken_+%_final"]=4715, - ["animated_minions_melee_splash"]=4716, - ["aoe_+%_per_second_while_stationary_up_to_50"]=4717, - ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4718, - ["apply_covered_in_ash_to_attacker_when_hit_%"]=4719, - ["apply_hex_on_enemy_that_triggers_traps"]=567, - ["apply_maximum_wither_for_Xs_on_chaos_skill_hit"]=4720, - ["apply_maximum_wither_stacks_%_chance_when_you_apply_withered"]=4721, - ["apply_poison_on_hit_vs_bleeding_enemies_%"]=3307, - ["apply_scorch_instead_of_ignite"]=4722, - ["arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable"]=4723, - ["arc_and_crackling_lance_base_cost_+%"]=4724, - ["arc_damage_+%"]=3684, - ["arc_damage_+%_per_chain"]=4725, - ["arc_num_of_additional_projectiles_in_chain"]=3976, - ["arc_shock_chance_%"]=3991, - ["arcane_cloak_consume_%_of_mana"]=4726, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=4727, - ["arcane_surge_during_mana_flask_effect"]=4728, - ["arcane_surge_effect_+%"]=3312, - ["arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%"]=3313, - ["arcane_surge_effect_+%_per_active_totem"]=4730, - ["arcane_surge_effect_+%_while_affected_by_clarity"]=4729, - ["arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%"]=3311, - ["arcane_surge_on_you_life_regeneration_rate_+%"]=4731, - ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"]=4732, - ["arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%"]=4733, - ["arcanist_brand_cast_speed_+%"]=4734, - ["arcanist_brand_unnerve_on_hit"]=4735, - ["archnemesis_cannot_recover_life_or_energy_shield_above_%"]=4736, - ["arctic_armour_buff_effect_+%"]=4046, - ["arctic_armour_chill_when_hit_duration"]=4737, - ["arctic_armour_mana_reservation_+%"]=4053, - ["arctic_armour_mana_reservation_efficiency_+%"]=4739, - ["arctic_armour_mana_reservation_efficiency_-2%_per_1"]=4738, - ["arctic_armour_no_reservation"]=4740, - ["arctic_breath_chilling_area_movement_velocity_+%"]=4741, - ["arctic_breath_damage_+%"]=3702, - ["arctic_breath_duration_+%"]=3956, - ["arctic_breath_radius_+%"]=3847, - ["area_damage_+%"]=2059, - ["area_damage_+%_per_10_devotion"]=4742, - ["area_damage_+%_per_12_strength"]=4743, - ["area_damage_taken_from_hits_+%"]=2263, - ["area_of_effect_+%_final_for_bow_attacks_firing_single_projectile"]=4747, - ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=4748, - ["area_of_effect_+%_if_below_100_intelligence"]=4745, - ["area_of_effect_+%_if_culled_recently"]=4749, - ["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=4750, - ["area_of_effect_+%_if_have_crit_recently"]=4751, - ["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=4752, - ["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=4753, - ["area_of_effect_+%_if_you_have_blocked_recently"]=4754, - ["area_of_effect_+%_per_10_rage"]=4746, - ["area_of_effect_+%_per_20_int"]=2567, - ["area_of_effect_+%_per_25_rampage_stacks"]=4398, - ["area_of_effect_+%_per_50_strength"]=4755, - ["area_of_effect_+%_per_active_herald_of_light_minion"]=4756, - ["area_of_effect_+%_per_endurance_charge"]=4757, - ["area_of_effect_+%_per_enemy_killed_recently"]=4758, - ["area_of_effect_+%_while_fortified"]=4759, - ["area_of_effect_+%_while_totem_active"]=4760, - ["area_of_effect_+%_while_wielding_bow"]=4761, - ["area_of_effect_+%_while_wielding_staff"]=4762, - ["area_of_effect_+%_while_you_do_not_have_convergence"]=4468, - ["area_of_effect_+%_while_you_have_arcane_surge"]=4763, - ["area_of_effect_+%_with_500_or_more_strength"]=4764, - ["area_of_effect_+%_with_bow_skills"]=4765, - ["area_of_effect_+%_with_herald_skills"]=4766, - ["area_skill_accuracy_rating_+%"]=4767, - ["area_skill_knockback_chance_%"]=4768, - ["armageddon_brand_attached_target_fire_penetration_%"]=4769, - ["armageddon_brand_damage_+%"]=4770, - ["armageddon_brand_repeat_frequency_+%"]=4771, - ["armour_%_applies_to_fire_cold_lightning_damage"]=4772, - ["armour_%_applies_to_fire_cold_lightning_damage_if_have_blocked_recently"]=4773, - ["armour_%_to_leech_as_life_on_block"]=2764, - ["armour_+%_during_onslaught"]=4774, - ["armour_+%_if_enemy_not_killed_recently"]=4792, - ["armour_+%_if_have_been_hit_recently"]=4775, - ["armour_+%_if_you_havent_been_hit_recently"]=4776, - ["armour_+%_per_50_str"]=4793, - ["armour_+%_per_defiance"]=4309, - ["armour_+%_per_rage"]=4794, - ["armour_+%_per_red_socket_on_main_hand_weapon"]=4795, - ["armour_+%_per_retaliation_used_in_past_10_seconds"]=4777, - ["armour_+%_per_second_while_stationary_up_to_100"]=4796, - ["armour_+%_while_bleeding"]=4797, - ["armour_+%_while_no_energy_shield"]=2759, - ["armour_+%_while_stationary"]=4798, - ["armour_+%_while_you_have_unbroken_ward"]=4778, - ["armour_+_per_10_unreserved_max_mana"]=4779, - ["armour_+_per_1_helmet_maximum_energy_shield"]=4788, - ["armour_+_while_affected_by_determination"]=4789, - ["armour_+_while_affected_by_guard_skill"]=4790, - ["armour_+_while_you_have_fortify"]=4791, - ["armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield"]=4780, - ["armour_and_evasion_+%_during_onslaught"]=4781, - ["armour_and_evasion_+%_while_fortified"]=4274, - ["armour_and_evasion_on_low_life_+%"]=3237, - ["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=4216, - ["armour_and_evasion_rating_+_per_1%_attack_block_chance"]=4782, - ["armour_and_evasion_rating_+_while_fortified"]=4783, - ["armour_evasion_+%_while_leeching"]=4784, - ["armour_from_gloves_and_boots_+%"]=4785, - ["armour_from_helmet_and_gloves_+%"]=4786, - ["armour_from_shield_doubled"]=2017, - ["armour_hellscaping_speed_+%"]=7120, - ["armour_increased_by_overcapped_fire_resistance"]=4787, - ["armour_while_stationary"]=4338, - ["armour_while_you_do_not_have_avatar_of_fire"]=10875, - ["arrow_base_number_of_targets_to_pierce"]=1815, - ["arrow_chains_+"]=1812, - ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4799, - ["arrow_damage_+%_max_as_distance_travelled_increases"]=4802, - ["arrow_damage_+%_vs_pierced_targets"]=4800, - ["arrow_damage_+50%_vs_pierced_targets"]=4801, - ["arrow_speed_additive_modifiers_also_apply_to_bow_damage"]=4804, - ["arrows_always_pierce_after_chaining"]=4330, - ["arrows_always_pierce_after_forking"]=4805, - ["arrows_fork"]=3605, - ["arrows_from_first_firing_point_always_pierce"]=4431, - ["arrows_from_fourth_firing_point_additional_chains"]=4434, - ["arrows_from_second_firing_point_fork"]=4432, - ["arrows_from_third_firing_point_return"]=4433, - ["arrows_pierce_additional_target"]=4806, - ["arrows_that_pierce_also_return"]=4807, - ["arrows_that_pierce_cause_bleeding"]=4328, - ["arrows_that_pierce_chance_to_bleed_25%"]=4329, - ["artillery_ballista_cross_strafe_pattern"]=4808, - ["artillery_ballista_fire_pen_+%"]=4809, - ["artillery_ballista_num_additional_arrows"]=4810, - ["ascendancy_non_damaging_elemental_ailment_proliferation_radius"]=9531, - ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4811, - ["aspect_of_the_avian_buff_effect_+%"]=4812, - ["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=4813, - ["aspect_of_the_cat_base_secondary_duration"]=4814, - ["aspect_of_the_spider_web_count_+"]=4815, - ["assassin_critical_strike_chance_+%_final_vs_enemies_not_on_low_life"]=3460, - ["assassin_critical_strike_multiplier_+_vs_enemies_not_on_low_life"]=3461, - ["assassin_critical_strike_multiplier_+_vs_enemies_on_low_life"]=3462, - ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=3463, - ["assassins_mark_curse_effect_+%"]=4033, - ["assassins_mark_duration_+%"]=3942, - ["attack_additional_critical_strike_chance_permyriad"]=4816, - ["attack_additional_critical_strike_chance_permyriad_if_4_elder_items"]=4489, - ["attack_ailment_damage_+%"]=4817, - ["attack_ailment_damage_+%_while_dual_wielding"]=4818, - ["attack_ailment_damage_+%_while_holding_shield"]=1233, - ["attack_ailment_damage_+%_while_wielding_axe"]=4819, - ["attack_ailment_damage_+%_while_wielding_bow"]=4820, - ["attack_ailment_damage_+%_while_wielding_claw"]=4821, - ["attack_ailment_damage_+%_while_wielding_dagger"]=4822, - ["attack_ailment_damage_+%_while_wielding_mace"]=4823, - ["attack_ailment_damage_+%_while_wielding_melee_weapon"]=4824, - ["attack_ailment_damage_+%_while_wielding_one_handed_weapon"]=4825, - ["attack_ailment_damage_+%_while_wielding_staff"]=4826, - ["attack_ailment_damage_+%_while_wielding_sword"]=4827, - ["attack_ailment_damage_+%_while_wielding_two_handed_weapon"]=4828, - ["attack_ailment_damage_+%_while_wielding_wand"]=4829, - ["attack_always_crit"]=3802, - ["attack_and_cast_speed_+%"]=2070, - ["attack_and_cast_speed_+%_during_flask_effect"]=4298, - ["attack_and_cast_speed_+%_during_onslaught"]=3053, - ["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=4838, - ["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=3551, - ["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=3497, - ["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=4090, - ["attack_and_cast_speed_+%_if_corpse_consumed_recently"]=4830, - ["attack_and_cast_speed_+%_if_enemy_hit_recently"]=4839, - ["attack_and_cast_speed_+%_if_havent_been_hit_recently"]=4840, - ["attack_and_cast_speed_+%_on_placing_totem"]=3231, - ["attack_and_cast_speed_+%_per_alive_packmate"]=4831, - ["attack_and_cast_speed_+%_per_cold_adaptation"]=4442, - ["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=4278, - ["attack_and_cast_speed_+%_per_endurance_charge"]=4841, - ["attack_and_cast_speed_+%_per_frenzy_charge"]=2072, - ["attack_and_cast_speed_+%_per_nearby_enemy_up_to_30%"]=4832, - ["attack_and_cast_speed_+%_per_power_charge"]=4842, - ["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=4843, - ["attack_and_cast_speed_+%_to_grant_packmate_on_death"]=4833, - ["attack_and_cast_speed_+%_while_affected_by_a_herald"]=4844, - ["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=4834, - ["attack_and_cast_speed_+%_while_affected_by_elusive"]=4835, - ["attack_and_cast_speed_+%_while_channelling"]=4845, - ["attack_and_cast_speed_+%_while_focused"]=4846, - ["attack_and_cast_speed_+%_while_leeching"]=4112, - ["attack_and_cast_speed_+%_while_leeching_energy_shield"]=4847, - ["attack_and_cast_speed_+%_while_not_near_ancestral_totem"]=4836, - ["attack_and_cast_speed_+%_while_on_consecrated_ground"]=4252, - ["attack_and_cast_speed_+%_while_totem_active"]=3633, - ["attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis"]=4848, - ["attack_and_cast_speed_+%_while_you_have_fortify"]=2292, - ["attack_and_cast_speed_+%_with_channelling_skills"]=4849, - ["attack_and_cast_speed_+%_with_chaos_skills"]=4850, - ["attack_and_cast_speed_+%_with_cold_skills"]=4851, - ["attack_and_cast_speed_+%_with_elemental_skills"]=4852, - ["attack_and_cast_speed_+%_with_fire_skills"]=4853, - ["attack_and_cast_speed_+%_with_lightning_skills"]=4854, - ["attack_and_cast_speed_+%_with_physical_skills"]=4855, - ["attack_and_cast_speed_+%_with_shield_skills"]=4856, - ["attack_and_cast_speed_per_ghost_dance_stack_+%"]=4837, - ["attack_and_cast_speed_when_hit_+%"]=3243, - ["attack_and_movement_speed_+%_final_per_challenger_charge"]=4857, - ["attack_and_movement_speed_+%_if_you_have_beast_minion"]=4347, - ["attack_and_movement_speed_+%_with_her_blessing"]=3305, - ["attack_and_spell_maximum_added_physical_damage_per_siphoning_charge"]=4361, - ["attack_and_spell_minimum_added_physical_damage_per_siphoning_charge"]=4361, - ["attack_area_of_effect_+%"]=4859, - ["attack_area_of_effect_+%_with_ally_nearby"]=4858, - ["attack_block_%_if_blocked_a_spell_recently"]=4861, - ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4860, - ["attack_block_%_while_at_max_endurance_charges"]=4862, - ["attack_cast_and_movement_speed_+%_during_onslaught"]=4863, - ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=10876, - ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=4091, - ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4864, - ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4865, - ["attack_chance_to_maim_on_hit_%_vs_blinded_enemies"]=4866, - ["attack_cost_+%_if_you_have_at_least_20_rage"]=4867, - ["attack_critical_strike_chance_+%"]=4868, - ["attack_critical_strike_chance_+%_per_200_accuracy_rating"]=4869, - ["attack_critical_strike_damage_life_leech_permyriad"]=3791, - ["attack_critical_strike_multiplier_+"]=1515, - ["attack_critical_strikes_ignore_elemental_resistances"]=4870, - ["attack_damage_+%"]=1222, - ["attack_damage_+%_for_4_seconds_on_cast"]=3556, - ["attack_damage_+%_if_hit_recently"]=3557, - ["attack_damage_+%_if_other_ring_is_shaper_item"]=4348, - ["attack_damage_+%_per_16_strength"]=4880, - ["attack_damage_+%_per_450_evasion"]=2970, - ["attack_damage_+%_per_450_physical_damage_reduction_rating"]=4881, - ["attack_damage_+%_per_5%_block_chance"]=4871, - ["attack_damage_+%_per_500_maximum_mana"]=4872, - ["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=4882, - ["attack_damage_+%_per_explicit_map_mod_affecting_area"]=4873, - ["attack_damage_+%_per_frenzy_charge"]=3309, - ["attack_damage_+%_per_level"]=2987, - ["attack_damage_+%_per_raised_zombie"]=4874, - ["attack_damage_+%_vs_maimed_enemies"]=4883, - ["attack_damage_+%_when_lower_percentage_life_than_target"]=4884, - ["attack_damage_+%_when_on_full_life"]=4885, - ["attack_damage_+%_while_affected_by_precision"]=4886, - ["attack_damage_+%_while_channelling"]=4887, - ["attack_damage_+%_while_holding_a_shield"]=1230, - ["attack_damage_+%_while_in_blood_stance"]=4875, - ["attack_damage_+%_while_leeching"]=4888, - ["attack_damage_+%_while_onslaught_active"]=3315, - ["attack_damage_+%_while_you_have_at_least_20_fortification"]=4876, - ["attack_damage_+%_while_you_have_fortify"]=4889, - ["attack_damage_+%_with_channelling_skills"]=4890, - ["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=4879, - ["attack_damage_lucky_if_blocked_in_past_20_seconds"]=4877, - ["attack_damage_lucky_if_blocked_in_past_20_seconds_while_dual_wielding"]=4878, - ["attack_damage_that_stuns_also_chills"]=3036, - ["attack_damage_vs_bleeding_enemies_+%"]=2515, - ["attack_ignite_chance_%"]=2726, - ["attack_lightning_damage_%_to_convert_to_chaos"]=4891, - ["attack_mana_cost_+%"]=4892, - ["attack_maximum_added_chaos_damage"]=1411, - ["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=4346, - ["attack_maximum_added_chaos_damage_with_bows"]=2127, - ["attack_maximum_added_chaos_damage_with_claws"]=2128, - ["attack_maximum_added_chaos_damage_with_daggers"]=2129, - ["attack_maximum_added_cold_damage"]=1393, - ["attack_maximum_added_cold_damage_with_axes"]=2111, - ["attack_maximum_added_cold_damage_with_bows"]=2112, - ["attack_maximum_added_cold_damage_with_claws"]=2113, - ["attack_maximum_added_cold_damage_with_daggers"]=2114, - ["attack_maximum_added_cold_damage_with_maces"]=2115, - ["attack_maximum_added_cold_damage_with_staves"]=2116, - ["attack_maximum_added_cold_damage_with_swords"]=2117, - ["attack_maximum_added_cold_damage_with_wand"]=2118, - ["attack_maximum_added_fire_damage"]=1384, - ["attack_maximum_added_fire_damage_per_10_strength"]=4893, - ["attack_maximum_added_fire_damage_with_axes"]=2103, - ["attack_maximum_added_fire_damage_with_bow"]=2104, - ["attack_maximum_added_fire_damage_with_claws"]=2105, - ["attack_maximum_added_fire_damage_with_daggers"]=2106, - ["attack_maximum_added_fire_damage_with_maces"]=2107, - ["attack_maximum_added_fire_damage_with_staves"]=2108, - ["attack_maximum_added_fire_damage_with_swords"]=2109, - ["attack_maximum_added_fire_damage_with_wand"]=2110, - ["attack_maximum_added_lightning_damage"]=1404, - ["attack_maximum_added_lightning_damage_per_10_dex"]=4895, - ["attack_maximum_added_lightning_damage_per_10_int"]=4896, - ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4897, - ["attack_maximum_added_lightning_damage_with_axes"]=2119, - ["attack_maximum_added_lightning_damage_with_bows"]=2120, - ["attack_maximum_added_lightning_damage_with_claws"]=2121, - ["attack_maximum_added_lightning_damage_with_daggers"]=2122, - ["attack_maximum_added_lightning_damage_with_maces"]=2123, - ["attack_maximum_added_lightning_damage_with_staves"]=2124, - ["attack_maximum_added_lightning_damage_with_swords"]=2125, - ["attack_maximum_added_lightning_damage_with_wand"]=2126, - ["attack_maximum_added_melee_lightning_damage_while_unarmed"]=2461, - ["attack_maximum_added_physical_damage"]=1290, - ["attack_maximum_added_physical_damage_if_have_crit_recently"]=4898, - ["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=4345, - ["attack_maximum_added_physical_damage_per_25_dexterity"]=3419, - ["attack_maximum_added_physical_damage_per_25_strength"]=4899, - ["attack_maximum_added_physical_damage_per_level"]=4900, - ["attack_maximum_added_physical_damage_while_holding_a_shield"]=2102, - ["attack_maximum_added_physical_damage_while_unarmed"]=2101, - ["attack_maximum_added_physical_damage_with_axes"]=2093, - ["attack_maximum_added_physical_damage_with_bow"]=2094, - ["attack_maximum_added_physical_damage_with_claws"]=2095, - ["attack_maximum_added_physical_damage_with_daggers"]=2096, - ["attack_maximum_added_physical_damage_with_maces"]=2097, - ["attack_maximum_added_physical_damage_with_staves"]=2098, - ["attack_maximum_added_physical_damage_with_swords"]=2099, - ["attack_maximum_added_physical_damage_with_wands"]=2100, - ["attack_maximum_added_physical_damage_with_weapons"]=1292, - ["attack_minimum_added_chaos_damage"]=1411, - ["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=4346, - ["attack_minimum_added_chaos_damage_with_bows"]=2127, - ["attack_minimum_added_chaos_damage_with_claws"]=2128, - ["attack_minimum_added_chaos_damage_with_daggers"]=2129, - ["attack_minimum_added_cold_damage"]=1393, - ["attack_minimum_added_cold_damage_with_axes"]=2111, - ["attack_minimum_added_cold_damage_with_bows"]=2112, - ["attack_minimum_added_cold_damage_with_claws"]=2113, - ["attack_minimum_added_cold_damage_with_daggers"]=2114, - ["attack_minimum_added_cold_damage_with_maces"]=2115, - ["attack_minimum_added_cold_damage_with_staves"]=2116, - ["attack_minimum_added_cold_damage_with_swords"]=2117, - ["attack_minimum_added_cold_damage_with_wand"]=2118, - ["attack_minimum_added_fire_damage"]=1384, - ["attack_minimum_added_fire_damage_per_10_strength"]=4893, - ["attack_minimum_added_fire_damage_with_axes"]=2103, - ["attack_minimum_added_fire_damage_with_bow"]=2104, - ["attack_minimum_added_fire_damage_with_claws"]=2105, - ["attack_minimum_added_fire_damage_with_daggers"]=2106, - ["attack_minimum_added_fire_damage_with_maces"]=2107, - ["attack_minimum_added_fire_damage_with_staves"]=2108, - ["attack_minimum_added_fire_damage_with_swords"]=2109, - ["attack_minimum_added_fire_damage_with_wand"]=2110, - ["attack_minimum_added_lightning_damage"]=1404, - ["attack_minimum_added_lightning_damage_per_10_dex"]=4895, - ["attack_minimum_added_lightning_damage_per_10_int"]=4896, - ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4897, - ["attack_minimum_added_lightning_damage_with_axes"]=2119, - ["attack_minimum_added_lightning_damage_with_bows"]=2120, - ["attack_minimum_added_lightning_damage_with_claws"]=2121, - ["attack_minimum_added_lightning_damage_with_daggers"]=2122, - ["attack_minimum_added_lightning_damage_with_maces"]=2123, - ["attack_minimum_added_lightning_damage_with_staves"]=2124, - ["attack_minimum_added_lightning_damage_with_swords"]=2125, - ["attack_minimum_added_lightning_damage_with_wand"]=2126, - ["attack_minimum_added_melee_lightning_damage_while_unarmed"]=2461, - ["attack_minimum_added_physical_damage"]=1290, - ["attack_minimum_added_physical_damage_if_have_crit_recently"]=4898, - ["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=4345, - ["attack_minimum_added_physical_damage_per_25_dexterity"]=3419, - ["attack_minimum_added_physical_damage_per_25_strength"]=4899, - ["attack_minimum_added_physical_damage_per_level"]=4900, - ["attack_minimum_added_physical_damage_while_holding_a_shield"]=2102, - ["attack_minimum_added_physical_damage_while_unarmed"]=2101, - ["attack_minimum_added_physical_damage_with_axes"]=2093, - ["attack_minimum_added_physical_damage_with_bow"]=2094, - ["attack_minimum_added_physical_damage_with_claws"]=2095, - ["attack_minimum_added_physical_damage_with_daggers"]=2096, - ["attack_minimum_added_physical_damage_with_maces"]=2097, - ["attack_minimum_added_physical_damage_with_staves"]=2098, - ["attack_minimum_added_physical_damage_with_swords"]=2099, - ["attack_minimum_added_physical_damage_with_wands"]=2100, - ["attack_minimum_added_physical_damage_with_weapons"]=1292, - ["attack_physical_damage_%_to_add_as_cold"]=3799, - ["attack_physical_damage_%_to_add_as_fire"]=3798, - ["attack_physical_damage_%_to_add_as_lightning"]=3800, - ["attack_physical_damage_%_to_convert_to_cold"]=4902, - ["attack_physical_damage_%_to_convert_to_fire"]=4903, - ["attack_physical_damage_%_to_convert_to_lightning"]=4904, - ["attack_projectiles_fork"]=4905, - ["attack_projectiles_fork_additional_times"]=4906, - ["attack_projectiles_return"]=2848, - ["attack_repeat_count"]=1923, - ["attack_skill_additional_num_projectiles_while_wielding_claws_daggers"]=4907, - ["attack_skill_ailment_damage_+%_while_wielding_axes_swords"]=4908, - ["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=2739, - ["attack_skills_additional_ballista_totems_allowed"]=4269, - ["attack_skills_additional_totems_allowed"]=4270, - ["attack_skills_damage_+%_while_dual_wielding"]=1301, - ["attack_skills_damage_+%_while_holding_shield"]=1231, - ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=4909, - ["attack_speed_+%"]=1434, - ["attack_speed_+%_during_flask_effect"]=3324, - ["attack_speed_+%_final_per_blitz_charge"]=4915, - ["attack_speed_+%_for_4_seconds_on_attack"]=3558, - ["attack_speed_+%_if_cast_a_mark_spell_recently"]=4916, - ["attack_speed_+%_if_changed_stance_recently"]=10247, - ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4917, - ["attack_speed_+%_if_enemy_killed_recently"]=4918, - ["attack_speed_+%_if_enemy_not_killed_recently"]=4257, - ["attack_speed_+%_if_have_been_hit_recently"]=4919, - ["attack_speed_+%_if_have_blocked_recently"]=4920, - ["attack_speed_+%_if_have_crit_recently"]=4921, - ["attack_speed_+%_if_havent_cast_dash_recently"]=4922, - ["attack_speed_+%_if_not_gained_frenzy_charge_recently"]=4923, - ["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=4924, - ["attack_speed_+%_if_you_have_at_least_600_strength"]=4925, - ["attack_speed_+%_per_10_dex"]=2568, - ["attack_speed_+%_per_200_accuracy_rating"]=4262, - ["attack_speed_+%_per_25_dex"]=4926, - ["attack_speed_+%_per_enemy_in_close_range"]=4910, - ["attack_speed_+%_per_explicit_map_mod_affecting_area"]=4911, - ["attack_speed_+%_per_fortification"]=4912, - ["attack_speed_+%_per_frenzy_charge"]=2071, - ["attack_speed_+%_per_minion_up_to_80%"]=4913, - ["attack_speed_+%_per_rage"]=4927, - ["attack_speed_+%_when_hit"]=3227, - ["attack_speed_+%_when_on_full_life"]=1246, - ["attack_speed_+%_when_on_low_life"]=1245, - ["attack_speed_+%_while_affected_by_precision"]=4928, - ["attack_speed_+%_while_chilled"]=4929, - ["attack_speed_+%_while_holding_shield"]=1441, - ["attack_speed_+%_while_ignited"]=2964, - ["attack_speed_+%_while_in_sand_stance"]=4914, - ["attack_speed_+%_while_leeching"]=3234, - ["attack_speed_+%_while_not_on_low_mana"]=4930, - ["attack_speed_+%_while_phasing"]=4931, - ["attack_speed_+%_with_channelling_skills"]=4932, - ["attack_speed_+%_with_movement_skills"]=1456, - ["attack_speed_while_dual_wielding_+%"]=1439, - ["attack_speed_while_fortified_+%"]=3239, - ["attacks_bleed_on_hit_while_you_have_cat_stealth"]=4934, - ["attacks_bleed_on_stun"]=2508, - ["attacks_cause_bleeding_vs_cursed_enemies"]=4935, - ["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=4937, - ["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=4938, - ["attacks_chance_to_blind_on_hit_%"]=4939, - ["attacks_chance_to_poison_%_on_max_frenzy_charges"]=2077, - ["attacks_chance_to_taunt_on_hit_%"]=4940, - ["attacks_corrosion_on_hit_%"]=4941, - ["attacks_deal_no_physical_damage"]=2503, - ["attacks_do_not_cost_mana"]=1916, - ["attacks_impale_on_hit_%_chance"]=4942, - ["attacks_inflict_unnerve_on_crit"]=4943, - ["attacks_intimidate_on_hit_%"]=4944, - ["attacks_num_of_additional_chains"]=4153, - ["attacks_num_of_additional_chains_when_in_main_hand"]=4219, - ["attacks_number_of_additional_projectiles"]=4220, - ["attacks_number_of_additional_projectiles_when_in_off_hand"]=4221, - ["attacks_poison_while_at_max_frenzy_charges"]=2076, - ["attacks_use_life_in_place_of_mana"]=10856, - ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4947, - ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4948, - ["attacks_with_this_weapon_maximum_es_%_to_add_as_cold_damage"]=4945, - ["attacks_with_this_weapon_maximum_mana_%_to_add_as_fire_damage"]=4946, - ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4947, - ["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=4948, - ["attacks_with_two_handed_weapons_impale_on_hit_%_chance"]=4949, - ["attacks_you_use_yourself_attack_speed_+%_final_from_lioneye_glare"]=1925, - ["attacks_you_use_yourself_repeat_count"]=1924, - ["attribute_requirement_+%_for_equipped_armour"]=4950, - ["attribute_requirement_+%_for_equipped_weapons"]=4951, - ["attribute_requirements_can_be_satisfied_by_%_of_ascendance"]=1214, - ["aura_effect_+%"]=2843, - ["aura_effect_+%_on_self_from_allied_auras"]=4953, - ["aura_effect_on_self_from_skills_+%_per_herald_effecting_you"]=4952, - ["aura_effect_on_self_from_your_skills_+%"]=3593, - ["aura_grant_shield_defences_to_nearby_allies"]=3488, - ["aura_melee_physical_damage_+%_per_10_strength"]=3474, - ["aura_skill_gem_level_+"]=4954, - ["auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies"]=3483, - ["auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"]=3484, - ["auras_grant_damage_+%_to_you_and_your_allies"]=3482, - ["auras_grant_life_mana_es_recovery_rate_+%_to_you_and_your_allies"]=4955, - ["avatar_of_fire_rotation_active"]=10863, - ["avians_flight_duration_ms_+"]=4956, - ["avians_might_duration_ms_+"]=4957, - ["avoid_ailments_%_from_crit"]=4958, - ["avoid_ailments_%_on_consecrated_ground"]=3579, - ["avoid_ailments_%_while_holding_shield"]=4959, - ["avoid_all_elemental_ailment_%_per_summoned_golem"]=4960, - ["avoid_all_elemental_status_%"]=1867, - ["avoid_all_elemental_status_%_per_stackable_unique_jewel"]=4182, - ["avoid_blind_%"]=2599, - ["avoid_chained_projectile_%_chance"]=4961, - ["avoid_chaos_damage_%"]=3400, - ["avoid_chill_freeze_while_casting_%"]=4962, - ["avoid_cold_damage_%"]=3398, - ["avoid_corrupted_blood_%_chance"]=4963, - ["avoid_damage_%"]=4964, - ["avoid_elemental_ailments_%_while_affected_by_elusive"]=4965, - ["avoid_elemental_ailments_%_while_phasing"]=4966, - ["avoid_elemental_damage_%_per_frenzy_charge"]=3396, - ["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=4967, - ["avoid_elemental_damage_while_phasing_%"]=4968, - ["avoid_fire_damage_%"]=3397, - ["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=4969, - ["avoid_freeze_chill_ignite_%_while_have_onslaught"]=3062, - ["avoid_freeze_chill_ignite_%_with_her_blessing"]=3304, - ["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=4107, - ["avoid_ignite_%_when_on_low_life"]=1871, - ["avoid_impale_%"]=4970, - ["avoid_interruption_while_casting_%"]=1922, - ["avoid_knockback_%"]=1546, - ["avoid_lightning_damage_%"]=3399, - ["avoid_maim_%_chance"]=4971, - ["avoid_non_damaging_ailments_%_per_missing_barkskin_stack"]=4972, - ["avoid_physical_damage_%"]=3395, - ["avoid_physical_damage_%_while_phasing"]=4973, - ["avoid_projectiles_%_chance_if_taken_projectile_damage_recently"]=4974, - ["avoid_projectiles_while_phasing_%_chance"]=4975, - ["avoid_shock_%_while_chilled"]=4976, - ["avoid_status_ailments_%_during_flask_effect"]=3323, - ["avoid_stun_%"]=1874, - ["avoid_stun_%_for_4_seconds_on_kill"]=3350, - ["avoid_stun_%_while_channeling_snipe"]=4978, - ["avoid_stun_%_while_channelling"]=4979, - ["avoid_stun_%_while_holding_shield"]=4980, - ["avoid_stun_35%_per_active_herald"]=4977, - ["axe_accuracy_rating"]=2031, - ["axe_accuracy_rating_+%"]=1462, - ["axe_ailment_damage_+%"]=1328, - ["axe_attack_speed_+%"]=1444, - ["axe_critical_strike_chance_+%"]=1496, - ["axe_critical_strike_multiplier_+"]=1519, - ["axe_damage_+%"]=1325, - ["axe_hit_and_ailment_damage_+%"]=1326, - ["axe_mastery_hit_and_ailment_damage_+%_final_vs_enemies_on_low_life"]=4981, - ["axe_or_sword_ailment_damage_+%"]=1375, - ["axe_or_sword_hit_and_ailment_damage_+%"]=1374, - ["azmeri_primalist_wisps_found_+%"]=4982, - ["azmeri_voodoo_shaman_wisps_found_+%"]=4983, - ["azmeri_warden_wisps_found_+%"]=4984, - ["ball_lightning_damage_+%"]=3192, - ["ball_lightning_number_of_additional_projectiles"]=4985, - ["ball_lightning_projectile_speed_+%"]=3915, - ["ball_lightning_radius_+%"]=3848, - ["banner_affected_enemies_damage_taken_+%"]=4986, - ["banner_affected_enemies_explode_for_10%_life_as_physical_on_kill_chance_%"]=4987, - ["banner_affected_enemies_maimed"]=4988, - ["banner_area_of_effect_+%"]=4989, - ["banner_aura_effect_+%"]=3386, - ["banner_buff_lingers_for_X_seconds_after_leaving_area"]=4990, - ["banner_duration_+%"]=4991, - ["banner_gain_X_endurance_charges_when_placed_with_max_resources"]=4992, - ["banner_gain_X_frenzy_charges_when_placed_with_max_resources"]=4993, - ["banner_gain_X_resources_on_warcry"]=4994, - ["banner_grant_1_fortify_when_placed_per_X_resources_from_runegraft"]=4995, - ["banner_mana_reservation_+%"]=4996, - ["banner_recover_X%_life_when_placed_per_5_resources"]=4997, - ["banner_remove_random_ailment_when_placed_with_X_resources"]=4998, - ["banner_resist_all_elements_%"]=4999, - ["banner_resource_gained_+%"]=5000, - ["banner_resource_maximum_+"]=5001, - ["banner_skills_mana_reservation_efficiency_+%"]=5003, - ["banner_skills_mana_reservation_efficiency_-2%_per_1"]=5002, - ["banner_skills_reserve_no_mana"]=5004, - ["barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge"]=5005, - ["barrage_attack_speed_+%"]=3884, - ["barrage_damage_+%"]=3685, - ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=3288, - ["barrage_num_of_additional_projectiles"]=3973, - ["basalt_flask_armour_+%_final"]=5006, - ["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3811, - ["base_actor_scale_+%"]=2081, - ["base_adaptation_rating"]=1556, - ["base_additional_physical_damage_reduction_%"]=2297, - ["base_aggravate_bleeding_on_attack_hit_chance_%"]=4632, - ["base_ailment_damage_+%"]=5007, - ["base_all_ailment_duration_+%"]=1884, - ["base_all_ailment_duration_+%_if_you_have_not_applied_that_ailment_recently"]=5008, - ["base_all_ailment_duration_on_self_+%"]=5009, - ["base_all_damage_can_cause_elemental_ailments_you_are_suffering_from"]=2888, - ["base_always_inflict_elemental_ailments_you_are_suffering_from"]=5010, - ["base_armour_%_applies_to_chaos_damage"]=5011, - ["base_armour_applies_to_chaos_damage"]=5012, - ["base_armour_applies_to_lightning_damage"]=5013, - ["base_arrow_speed_+%"]=1821, - ["base_arrows_always_pierce"]=5014, - ["base_attack_block_luck"]=5015, - ["base_attack_damage_penetrates_chaos_resist_%"]=3587, - ["base_attack_damage_penetrates_cold_resist_%"]=3585, - ["base_attack_damage_penetrates_elemental_resist_%"]=3582, - ["base_attack_damage_penetrates_fire_resist_%"]=3584, - ["base_attack_damage_penetrates_lightning_resist_%"]=3586, - ["base_attack_skill_cost_life_instead_of_mana_%"]=3818, - ["base_attack_speed_+%_per_frenzy_charge"]=2073, - ["base_aura_area_of_effect_+%"]=2248, - ["base_aura_skills_affecting_allies_also_affect_enemies"]=5016, - ["base_avoid_bleed_%"]=4240, - ["base_avoid_chill_%"]=1868, - ["base_avoid_chill_%_while_have_onslaught"]=3054, - ["base_avoid_freeze_%"]=1869, - ["base_avoid_ignite_%"]=1870, - ["base_avoid_poison_%"]=1873, - ["base_avoid_projectiles_%_chance"]=5017, - ["base_avoid_shock_%"]=1872, - ["base_avoid_stun_%"]=1875, - ["base_bleed_duration_+%"]=5018, - ["base_block_%_damage_taken"]=5020, - ["base_block_luck"]=5019, - ["base_bone_golem_granted_buff_effect_+%"]=5021, - ["base_can_gain_banner_resource"]=1161, - ["base_cannot_be_chilled"]=1861, - ["base_cannot_be_damaged"]=1614, - ["base_cannot_be_frozen"]=1862, - ["base_cannot_be_frozen_if_6_redeemer_items"]=4508, - ["base_cannot_be_ignited"]=1863, - ["base_cannot_be_shocked"]=1865, - ["base_cannot_be_stunned"]=2197, - ["base_cannot_be_stunned_if_6_elder_items"]=4509, - ["base_cannot_evade"]=1942, - ["base_cannot_gain_bleeding"]=4239, - ["base_cannot_gain_endurance_charges"]=5022, - ["base_cannot_leech"]=2489, - ["base_cannot_leech_energy_shield"]=5023, - ["base_cannot_leech_life"]=2591, - ["base_cannot_leech_mana"]=2592, - ["base_cast_speed_+%"]=1470, - ["base_chance_to_deal_triple_damage_%"]=5024, - ["base_chance_to_freeze_%"]=2053, - ["base_chance_to_ignite_%"]=2050, - ["base_chance_to_poison_on_hit_%"]=3197, - ["base_chance_to_shock_%"]=2057, - ["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1970, - ["base_chaos_damage_can_ignite"]=5025, - ["base_chaos_damage_damages_energy_shield_%"]=5026, - ["base_chaos_damage_resistance_%"]=1665, - ["base_chaos_damage_taken_per_minute"]=1971, - ["base_chaos_golem_granted_buff_effect_+%"]=4124, - ["base_charge_duration_+%"]=5027, - ["base_cold_damage_%_to_convert_to_chaos"]=1993, - ["base_cold_damage_%_to_convert_to_fire"]=1992, - ["base_cold_damage_can_poison"]=2889, - ["base_cold_damage_heals"]=3059, - ["base_cold_damage_resistance_%"]=1655, - ["base_cold_immunity"]=4126, - ["base_convert_%_physical_damage_to_random_element"]=1985, - ["base_cooldown_refresh_chance_%"]=5028, - ["base_cooldown_speed_+%"]=5029, - ["base_cooldown_speed_+%_if_2_shaper_items"]=4469, - ["base_cost_+%"]=1905, - ["base_critical_strike_multiplier_+"]=1512, - ["base_curse_duration_+%"]=1805, - ["base_damage_bypass_ward_%"]=5030, - ["base_damage_removed_from_mana_before_life_%"]=2723, - ["base_damage_taken_+%"]=2262, - ["base_deal_no_chaos_damage"]=5031, - ["base_deal_no_cold_damage"]=2816, - ["base_deal_no_fire_damage"]=5032, - ["base_deal_no_lightning_damage"]=5033, - ["base_deal_no_physical_damage"]=2814, - ["base_elemental_damage_heals"]=3061, - ["base_elemental_skill_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items"]=5034, - ["base_elemental_status_ailment_duration_+%"]=1885, - ["base_elemental_support_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items"]=5035, - ["base_enemy_critical_strike_chance_+%_against_self"]=3154, - ["base_enemy_extra_damage_rolls"]=5036, - ["base_energy_shield_gained_on_enemy_death"]=2595, - ["base_energy_shield_leech_from_chaos_damage_permyriad"]=5037, - ["base_energy_shield_leech_from_cold_damage_permyriad"]=5038, - ["base_energy_shield_leech_from_elemental_damage_permyriad"]=5039, - ["base_energy_shield_leech_from_elemental_damage_permyriad_if_2_shaper_items"]=4470, - ["base_energy_shield_leech_from_fire_damage_permyriad"]=5040, - ["base_energy_shield_leech_from_lightning_damage_permyriad"]=5041, - ["base_energy_shield_leech_from_physical_damage_permyriad"]=5042, - ["base_energy_shield_leech_from_physical_damage_permyriad_if_2_elder_items"]=4471, - ["base_energy_shield_leech_from_spell_damage_permyriad"]=1746, - ["base_energy_shield_regeneration_rate_per_minute"]=2669, - ["base_energy_shield_regeneration_rate_per_minute_%"]=2670, - ["base_es_cost_+"]=1911, - ["base_evasion_rating"]=1568, - ["base_extra_damage_rolls"]=5043, - ["base_fire_damage_%_to_convert_to_chaos"]=1994, - ["base_fire_damage_%_to_convert_to_chaos_60%_value"]=1995, - ["base_fire_damage_can_poison"]=2890, - ["base_fire_damage_heals"]=3058, - ["base_fire_damage_resistance_%"]=1649, - ["base_fire_elemental_maximum_life_+%"]=1796, - ["base_fire_golem_granted_buff_effect_+%"]=4121, - ["base_fire_hit_damage_taken_%_as_physical"]=2469, - ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2470, - ["base_fire_immunity"]=1630, - ["base_frenzy_charge_duration_+%"]=2151, - ["base_frozen_effect_on_self_+%"]=5044, - ["base_ghost_totem_duration"]=5045, - ["base_global_chance_to_knockback_%"]=2019, - ["base_ice_golem_granted_buff_effect_+%"]=4122, - ["base_immune_to_chill"]=2918, - ["base_immune_to_cold_ailments"]=5046, - ["base_immune_to_freeze"]=5047, - ["base_immune_to_ignite"]=5048, - ["base_immune_to_shock"]=5049, - ["base_inflict_cold_exposure_on_hit_%_chance"]=5050, - ["base_inflict_fire_exposure_on_hit_%_chance"]=5051, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=5052, - ["base_item_found_quantity_+%"]=1616, - ["base_item_found_rarity_+%"]=1620, - ["base_killed_monster_dropped_item_quantity_+%"]=2037, - ["base_killed_monster_dropped_item_rarity_+%"]=2036, - ["base_leech_is_instant_on_critical"]=2562, - ["base_life_cost_+"]=1912, - ["base_life_cost_+%"]=1906, - ["base_life_gain_per_target"]=1764, - ["base_life_gained_on_enemy_death"]=1772, - ["base_life_gained_on_spell_hit"]=1763, - ["base_life_leech_applies_recovery_to_energy_shield"]=5053, - ["base_life_leech_from_attack_damage_permyriad"]=1688, - ["base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1717, - ["base_life_leech_from_chaos_damage_permyriad"]=1706, - ["base_life_leech_from_cold_damage_permyriad"]=1699, - ["base_life_leech_from_elemental_damage_permyriad"]=1710, - ["base_life_leech_from_fire_damage_permyriad"]=1694, - ["base_life_leech_from_lightning_damage_permyriad"]=1703, - ["base_life_leech_from_physical_damage_permyriad"]=1690, - ["base_life_leech_from_spell_damage_permyriad"]=1687, - ["base_life_leech_is_instant"]=2560, - ["base_life_leech_permyriad_vs_frozen_enemies"]=1715, - ["base_life_leech_permyriad_vs_shocked_enemies"]=1712, - ["base_life_regeneration_rate_per_minute"]=1598, - ["base_life_reservation_+%"]=2251, - ["base_life_reservation_efficiency_+%"]=2250, - ["base_lightning_damage_%_to_convert_to_chaos"]=1990, - ["base_lightning_damage_%_to_convert_to_chaos_60%_value"]=1991, - ["base_lightning_damage_%_to_convert_to_cold"]=1989, - ["base_lightning_damage_%_to_convert_to_fire"]=1988, - ["base_lightning_damage_can_poison"]=2891, - ["base_lightning_damage_heals"]=3060, - ["base_lightning_damage_resistance_%"]=1660, - ["base_lightning_golem_granted_buff_effect_+%"]=4123, - ["base_lightning_immunity"]=4127, - ["base_main_hand_damage_+%"]=1306, - ["base_main_hand_maim_on_hit_%"]=5054, - ["base_mana_cost_+"]=1913, - ["base_mana_cost_+_with_channelling_skills"]=10086, - ["base_mana_cost_+_with_non_channelling_skills"]=10088, - ["base_mana_cost_-%"]=1907, - ["base_mana_gained_on_enemy_death"]=1787, - ["base_mana_leech_from_attack_damage_permyriad"]=1729, - ["base_mana_leech_from_chaos_damage_permyriad"]=1738, - ["base_mana_leech_from_cold_damage_permyriad"]=1734, - ["base_mana_leech_from_elemental_damage_permyriad"]=1740, - ["base_mana_leech_from_fire_damage_permyriad"]=1732, - ["base_mana_leech_from_lightning_damage_permyriad"]=1736, - ["base_mana_leech_from_physical_damage_permyriad"]=1730, - ["base_mana_leech_from_spell_damage_permyriad"]=1728, - ["base_mana_leech_permyriad_vs_shocked_enemies"]=1742, - ["base_mana_regeneration_rate_per_minute"]=1606, - ["base_mana_reservation_+%"]=2253, - ["base_mana_reservation_efficiency_+%"]=2252, - ["base_max_fortification"]=5055, - ["base_max_fortification_per_endurance_charge"]=4415, - ["base_maximum_chaos_damage_resistance_%"]=1664, - ["base_maximum_chaos_damage_resistance_%_if_4_hunter_items"]=4490, - ["base_maximum_cold_damage_resistance_%"]=1653, - ["base_maximum_cold_damage_resistance_%_if_4_redeemer_items"]=4491, - ["base_maximum_energy_shield"]=1582, - ["base_maximum_energy_shield_per_blue_socket_on_item"]=2748, - ["base_maximum_fire_damage_resistance_%"]=1647, - ["base_maximum_fire_damage_resistance_%_if_4_warlord_items"]=4492, - ["base_maximum_fragile_regrowth"]=4424, - ["base_maximum_life"]=1593, - ["base_maximum_life_per_red_socket_on_item"]=2740, - ["base_maximum_lightning_damage_on_charge_expiry"]=2581, - ["base_maximum_lightning_damage_resistance_%"]=1658, - ["base_maximum_lightning_damage_resistance_%_if_4_crusader_items"]=4493, - ["base_maximum_mana"]=1603, - ["base_maximum_mana_per_green_socket_on_item"]=2744, - ["base_maximum_spell_block_%"]=2013, - ["base_maximum_spell_block_%_if_4_shaper_items"]=4494, - ["base_melee_critical_strike_chance_while_unarmed_%"]=3595, - ["base_minimum_endurance_charges"]=1827, - ["base_minimum_frenzy_charges"]=1832, - ["base_minimum_lightning_damage_on_charge_expiry"]=2581, - ["base_minimum_power_charges"]=1837, - ["base_minion_duration_+%"]=5056, - ["base_movement_velocity_+%"]=1822, - ["base_movement_velocity_+%_if_4_hunter_items"]=4495, - ["base_no_mana"]=2203, - ["base_non_chaos_damage_bypass_energy_shield_%"]=668, - ["base_number_of_animated_weapons_allowed"]=9555, - ["base_number_of_arbalists"]=9556, - ["base_number_of_champions_of_light_allowed"]=5057, - ["base_number_of_essence_spirits_allowed"]=775, - ["base_number_of_golems_allowed"]=3714, - ["base_number_of_herald_scorpions_allowed"]=5058, - ["base_number_of_raging_spirits_allowed"]=2187, - ["base_number_of_relics_allowed"]=5059, - ["base_number_of_remote_mines_allowed"]=2277, - ["base_number_of_sacred_wisps_allowed"]=5060, - ["base_number_of_sigils_allowed_per_target"]=5061, - ["base_number_of_skeletons_allowed"]=2186, - ["base_number_of_spectres_allowed"]=2185, - ["base_number_of_support_ghosts_allowed"]=5062, - ["base_number_of_totems_allowed"]=2275, - ["base_number_of_traps_allowed"]=2276, - ["base_number_of_zombies_allowed"]=2184, - ["base_off_hand_attack_speed_+%"]=1440, - ["base_off_hand_chance_to_blind_on_hit_%"]=5063, - ["base_off_hand_damage_+%"]=1307, - ["base_onlsaught_on_hit_%_chance"]=5064, - ["base_penetrate_elemental_resistances_%"]=3583, - ["base_physical_damage_%_to_convert_to_chaos"]=1986, - ["base_physical_damage_%_to_convert_to_chaos_per_level"]=5066, - ["base_physical_damage_%_to_convert_to_cold"]=1981, - ["base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=5067, - ["base_physical_damage_%_to_convert_to_fire"]=1979, - ["base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=5068, - ["base_physical_damage_%_to_convert_to_lightning"]=1983, - ["base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=5069, - ["base_physical_damage_over_time_taken_+%"]=5065, - ["base_physical_damage_reduction_and_evasion_rating"]=4290, - ["base_physical_damage_reduction_rating"]=1563, - ["base_poison_damage_+%"]=3205, - ["base_poison_duration_+%"]=3194, - ["base_projectile_speed_+%"]=1820, - ["base_rage_cost_+%"]=1908, - ["base_raven_maximum_life_+%"]=1797, - ["base_reduce_enemy_cold_resistance_%"]=3007, - ["base_reduce_enemy_fire_resistance_%"]=3005, - ["base_reduce_enemy_lightning_resistance_%"]=3008, - ["base_remove_elemental_ailments_from_you_when_you_inflict_them"]=9924, - ["base_reservation_+%"]=2255, - ["base_reservation_efficiency_+%"]=2254, - ["base_resist_all_elements_%"]=1643, - ["base_self_chill_duration_-%"]=1896, - ["base_self_critical_strike_multiplier_-%"]=1536, - ["base_self_freeze_duration_-%"]=1898, - ["base_self_ignite_duration_-%"]=1899, - ["base_self_shock_duration_-%"]=1897, - ["base_should_have_onslaught_from_stat"]=3621, - ["base_skill_area_of_effect_+%"]=1904, - ["base_skill_cost_life_instead_of_mana"]=196, - ["base_skill_cost_life_instead_of_mana_%"]=5070, - ["base_skill_gain_es_cost_%_of_mana_cost"]=5071, - ["base_skill_gain_life_cost_%_of_mana_cost"]=5072, - ["base_skill_reserve_life_instead_of_mana"]=197, - ["base_skills_cost_es_instead_of_mana_life"]=5073, - ["base_spectre_maximum_life_+%"]=1794, - ["base_spell_block_%"]=1184, - ["base_spell_block_luck"]=1183, - ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=5074, - ["base_spell_critical_strike_chance"]=1480, - ["base_spell_critical_strike_multiplier_+"]=1516, - ["base_spell_damage_%_suppressed"]=1165, - ["base_spell_projectile_block_%"]=5075, - ["base_spell_suppression_chance_%"]=1167, - ["base_spell_suppression_chance_150%_of_value"]=1166, - ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=3016, - ["base_stone_golem_granted_buff_effect_+%"]=4120, - ["base_strength_and_intelligence"]=485, - ["base_stun_duration_+%"]=1887, - ["base_stun_recovery_+%"]=1926, - ["base_stun_threshold_reduction_+%"]=1541, - ["base_tincture_mod_effect_+%"]=5076, - ["base_total_number_of_sigils_allowed"]=5077, - ["base_unaffected_by_bleeding"]=5078, - ["base_unaffected_by_poison"]=5079, - ["base_unaffected_by_poison_if_2_hunter_items"]=4472, - ["base_ward"]=1551, - ["base_weapon_trap_rotation_speed_+%"]=5080, - ["base_weapon_trap_total_rotation_%"]=5081, - ["base_your_auras_are_disabled"]=5082, - ["base_zombie_maximum_life_+%"]=1795, - ["battlemages_cry_buff_effect_+%"]=5083, - ["battlemages_cry_exerts_x_additional_attacks"]=5084, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=5087, - ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=5088, - ["bear_trap_cooldown_speed_+%"]=3902, - ["bear_trap_damage_+%"]=3730, - ["bear_trap_damage_taken_+%_from_traps_and_mines"]=5089, - ["bear_trap_movement_speed_+%_final"]=5090, - ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=5091, - ["berserk_buff_effect_+%"]=5092, - ["berserk_rage_loss_+%"]=5093, - ["berserker_damage_+%_final"]=4078, - ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=5094, - ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=5095, - ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=5096, - ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=5097, - ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=5098, - ["bird_aspect_reserves_no_mana"]=5099, - ["blackhole_damage_taken_+%"]=5100, - ["blackhole_pulse_frequency_+%"]=5101, - ["blackstar_moonlight_cold_damage_taken_+%_final"]=5102, - ["blackstar_moonlight_fire_damage_taken_+%_final"]=5103, - ["blackstar_sunlight_cold_damage_taken_+%_final"]=5104, - ["blackstar_sunlight_fire_damage_taken_+%_final"]=5105, - ["blade_blase_damage_+%"]=5106, - ["blade_blast_skill_area_of_effect_+%"]=5107, - ["blade_blast_trigger_detonation_area_of_effect_+%"]=5108, - ["blade_trap_damage_+%"]=5109, - ["blade_trap_skill_area_of_effect_+%"]=5110, - ["blade_trap_skill_area_of_effect_+%_final"]=5111, - ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=5112, - ["blade_vortex_blade_deal_no_non_physical_damage"]=5113, - ["blade_vortex_critical_strike_multiplier_+_per_blade"]=5114, - ["blade_vortex_damage_+%"]=3753, - ["blade_vortex_duration_+%"]=3949, - ["blade_vortex_radius_+%"]=3865, - ["bladefall_critical_strike_chance_+%"]=3968, - ["bladefall_damage_+%"]=3754, - ["bladefall_number_of_volleys"]=5115, - ["bladefall_radius_+%"]=3866, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=5116, - ["bladestorm_damage_+%"]=5117, - ["bladestorm_maximum_number_of_storms_allowed"]=5118, - ["bladestorm_sandstorm_movement_speed_+%"]=5119, - ["blast_rain_%_chance_for_additional_blast"]=4132, - ["blast_rain_artillery_ballista_all_damage_can_poison"]=5120, - ["blast_rain_artillery_ballista_poison_damage_+100%_final_chance"]=5121, - ["blast_rain_damage_+%"]=3750, - ["blast_rain_number_of_blasts"]=4015, - ["blast_rain_radius_+%"]=3862, - ["blast_rain_single_additional_projectile"]=4016, - ["blazing_salvo_damage_+%"]=5122, - ["blazing_salvo_number_of_additional_projectiles"]=5123, - ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=5124, - ["bleed_damage_+%_per_endurance_charge"]=5125, - ["bleed_damage_+%_vs_maimed_enemies_final"]=4272, - ["bleed_dot_multiplier_+_per_impale_on_enemy"]=5126, - ["bleed_dot_multiplier_+_per_rage_if_equipped_axe"]=5127, - ["bleed_duration_per_12_intelligence_+%"]=3823, - ["bleed_on_bow_attack_chance_%"]=2512, - ["bleed_on_crit_%_with_attacks"]=2509, - ["bleed_on_hit_with_attacks_%"]=2513, - ["bleed_on_melee_attack_chance_%"]=2511, - ["bleed_on_melee_crit_chance_%"]=2510, - ["bleed_on_melee_critical_strike"]=4303, - ["bleeding_damage_+%"]=3193, - ["bleeding_damage_+%_vs_maimed_enemies"]=5128, - ["bleeding_damage_+%_vs_poisoned_enemies"]=5129, - ["bleeding_damage_on_self_converted_to_chaos"]=2474, - ["bleeding_dot_multiplier_+"]=1272, - ["bleeding_dot_multiplier_+_per_endurance_charge"]=5131, - ["bleeding_dot_multiplier_+_vs_poisoned_enemies"]=5132, - ["bleeding_dot_multiplier_per_frenzy_charge_+"]=5130, - ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3505, - ["bleeding_monsters_movement_velocity_+%"]=2990, - ["bleeding_on_self_expire_speed_+%_while_moving"]=5133, - ["bleeding_reflected_to_self"]=5134, - ["bleeding_stacks_up_to_x_times"]=5135, - ["blight_arc_tower_additional_chains"]=5136, - ["blight_arc_tower_additional_repeats"]=5137, - ["blight_arc_tower_chance_to_sap_%"]=5138, - ["blight_arc_tower_damage_+%"]=5139, - ["blight_arc_tower_range_+%"]=5140, - ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=5141, - ["blight_cast_speed_+%"]=5142, - ["blight_chilling_tower_chill_effect_+%"]=5143, - ["blight_chilling_tower_damage_+%"]=5144, - ["blight_chilling_tower_duration_+%"]=5145, - ["blight_chilling_tower_freeze_for_ms"]=5146, - ["blight_chilling_tower_range_+%"]=5147, - ["blight_damage_+%"]=3763, - ["blight_duration_+%"]=3951, - ["blight_empowering_tower_buff_effect_+%"]=5148, - ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=5151, - ["blight_empowering_tower_grant_cast_speed_+%"]=5149, - ["blight_empowering_tower_grant_damage_+%"]=5150, - ["blight_empowering_tower_range_+%"]=5152, - ["blight_fireball_tower_additional_projectiles_+"]=5153, - ["blight_fireball_tower_cast_speed_+%"]=5154, - ["blight_fireball_tower_damage_+%"]=5155, - ["blight_fireball_tower_projectiles_nova"]=5156, - ["blight_fireball_tower_range_+%"]=5157, - ["blight_flamethrower_tower_cast_speed_+%"]=5158, - ["blight_flamethrower_tower_chance_to_scorch_%"]=5159, - ["blight_flamethrower_tower_damage_+%"]=5160, - ["blight_flamethrower_tower_full_damage_fire_enemies"]=5161, - ["blight_flamethrower_tower_range_+%"]=5162, - ["blight_freezebolt_tower_chance_to_brittle_%"]=5163, - ["blight_freezebolt_tower_damage_+%"]=5164, - ["blight_freezebolt_tower_full_damage_cold_enemies"]=5165, - ["blight_freezebolt_tower_projectiles_+"]=5166, - ["blight_freezebolt_tower_range_+%"]=5167, - ["blight_glacialcage_tower_area_of_effect_+%"]=5168, - ["blight_glacialcage_tower_cooldown_recovery_+%"]=5169, - ["blight_glacialcage_tower_duration_+%"]=5170, - ["blight_glacialcage_tower_enemy_damage_taken_+%"]=5171, - ["blight_glacialcage_tower_range_+%"]=5172, - ["blight_hinder_enemy_chaos_damage_taken_+%"]=5173, - ["blight_imbuing_tower_buff_effect_+%"]=5174, - ["blight_imbuing_tower_grant_critical_strike_+%"]=5175, - ["blight_imbuing_tower_grant_damage_+%"]=5176, - ["blight_imbuing_tower_grants_onslaught"]=5177, - ["blight_imbuing_tower_range_+%"]=5178, - ["blight_lightningstorm_tower_area_of_effect_+%"]=5179, - ["blight_lightningstorm_tower_damage_+%"]=5180, - ["blight_lightningstorm_tower_delay_+%"]=5181, - ["blight_lightningstorm_tower_range_+%"]=5182, - ["blight_lightningstorm_tower_storms_on_enemies"]=5183, - ["blight_meteor_tower_additional_meteor_+"]=5184, - ["blight_meteor_tower_always_stun"]=5185, - ["blight_meteor_tower_creates_burning_ground_ms"]=5186, - ["blight_meteor_tower_damage_+%"]=5187, - ["blight_meteor_tower_range_+%"]=5188, - ["blight_radius_+%"]=3871, - ["blight_scout_tower_additional_minions_+"]=5189, - ["blight_scout_tower_minion_damage_+%"]=5190, - ["blight_scout_tower_minion_life_+%"]=5191, - ["blight_scout_tower_minion_movement_speed_+%"]=5192, - ["blight_scout_tower_minions_inflict_malediction"]=5193, - ["blight_scout_tower_range_+%"]=5194, - ["blight_secondary_skill_effect_duration_+%"]=5195, - ["blight_seismic_tower_additional_cascades_+"]=5196, - ["blight_seismic_tower_cascade_range_+%"]=5197, - ["blight_seismic_tower_damage_+%"]=5198, - ["blight_seismic_tower_range_+%"]=5199, - ["blight_seismic_tower_stun_duration_+%"]=5200, - ["blight_sentinel_tower_minion_damage_+%"]=5201, - ["blight_sentinel_tower_minion_life_+%"]=5202, - ["blight_sentinel_tower_minion_movement_speed_+%"]=5203, - ["blight_sentinel_tower_minions_life_leech_%"]=5204, - ["blight_sentinel_tower_range_+%"]=5205, - ["blight_shocking_tower_damage_+%"]=5206, - ["blight_shocking_tower_range_+%"]=5207, - ["blight_shocknova_tower_full_damage_lightning_enemies"]=5208, - ["blight_shocknova_tower_shock_additional_repeats"]=5209, - ["blight_shocknova_tower_shock_effect_+%"]=5210, - ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=5211, - ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=5212, - ["blight_smothering_tower_buff_effect_+%"]=5213, - ["blight_smothering_tower_freeze_shock_ignite_%"]=5214, - ["blight_smothering_tower_grant_damage_+%"]=5215, - ["blight_smothering_tower_grant_movement_speed_+%"]=5216, - ["blight_smothering_tower_range_+%"]=5217, - ["blight_stonegaze_tower_cooldown_recovery_+%"]=5218, - ["blight_stonegaze_tower_duration_+%"]=5219, - ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=5220, - ["blight_stonegaze_tower_petrify_tick_speed_+%"]=5221, - ["blight_stonegaze_tower_range_+%"]=5222, - ["blight_summoning_tower_minion_damage_+%"]=5223, - ["blight_summoning_tower_minion_life_+%"]=5224, - ["blight_summoning_tower_minion_movement_speed_+%"]=5225, - ["blight_summoning_tower_minions_summoned_+"]=5226, - ["blight_summoning_tower_range_+%"]=5227, - ["blight_temporal_tower_buff_effect_+%"]=5228, - ["blight_temporal_tower_grant_you_action_speed_-%"]=5229, - ["blight_temporal_tower_grants_stun_immunity"]=5230, - ["blight_temporal_tower_range_+%"]=5231, - ["blight_temporal_tower_tick_speed_+%"]=5232, - ["blight_tertiary_skill_effect_duration"]=5233, - ["blight_tower_arc_damage_+%"]=5234, - ["blight_tower_chilling_cost_+%"]=5235, - ["blight_tower_damage_per_tower_type_+%"]=5236, - ["blight_tower_fireball_additional_projectile"]=5237, - ["blighted_map_chest_reward_lucky_count"]=5238, - ["blighted_map_tower_damage_+%_final"]=5239, - ["blind_chilled_enemies_on_hit_%"]=5240, - ["blind_does_not_affect_chance_to_hit"]=5241, - ["blind_does_not_affect_light_radius"]=5242, - ["blind_duration_+%"]=3459, - ["blind_effect_+%"]=5243, - ["blind_enemies_when_hit_%_chance"]=5244, - ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=5245, - ["blind_nearby_enemies_when_gaining_her_blessing_%"]=3303, - ["blind_nearby_enemies_when_ignited_%"]=3066, - ["blind_reflected_to_self"]=5246, - ["blink_and_mirror_arrow_clones_inherit_gloves"]=5247, - ["blink_and_mirror_arrow_cooldown_speed_+%"]=5248, - ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3891, - ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3743, - ["blink_arrow_cooldown_speed_+%"]=3907, - ["block_%_damage_taken_from_elemental"]=5253, - ["block_%_if_blocked_an_attack_recently"]=5254, - ["block_%_while_affected_by_determination"]=5255, - ["block_and_stun_+%_recovery_per_fortification"]=5249, - ["block_causes_monster_flee_%"]=2984, - ["block_chance_%_per_50_strength"]=1176, - ["block_chance_%_vs_cursed_enemies"]=5250, - ["block_chance_%_vs_taunted_enemies"]=4213, - ["block_chance_%_while_holding_shield"]=1188, - ["block_chance_+%"]=1190, - ["block_chance_+%_per_100_life_spent_recently"]=5251, - ["block_chance_from_equipped_shield_is_%"]=5252, - ["block_chance_on_damage_taken_%"]=3240, - ["block_recovery_+%"]=1191, - ["block_spells_chance_%_while_holding_shield"]=5256, - ["block_while_dual_wielding_%"]=1186, - ["block_while_dual_wielding_claws_%"]=1187, - ["blood_footprints_from_item"]=10878, - ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=4129, - ["blood_rage_grants_additional_attack_speed_+%"]=4128, - ["blood_sand_armour_mana_reservation_+%"]=5257, - ["blood_sand_mana_reservation_efficiency_+%"]=5259, - ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=5258, - ["blood_sand_stance_buff_effect_+%"]=5260, - ["blood_spears_area_of_effect_+%"]=5261, - ["blood_spears_base_number_of_spears"]=5262, - ["blood_spears_damage_+%"]=5263, - ["bloodreap_damage_+%"]=5264, - ["bloodreap_skill_area_of_effect_+%"]=5265, - ["body_armour_defences_doubled_while_no_gems_in_body_armour"]=5266, - ["body_armour_evasion_rating_+%"]=5267, - ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=5268, - ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=5269, - ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=5270, - ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=5271, - ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=5272, - ["body_armour_implicit_gain_power_charge_every_x_ms"]=5273, - ["body_armour_trigger_socketed_spell_on_unarmed_melee_critical_hit_cooldown"]=776, - ["bone_golem_damage_+%"]=5274, - ["bone_golem_elemental_resistances_%"]=5275, - ["bone_lance_cast_speed_+%"]=5276, - ["bone_lance_damage_+%"]=5277, - ["bone_offering_block_chance_+%"]=4144, - ["bone_offering_duration_+%"]=3925, - ["bone_offering_effect_+%"]=1196, - ["boneshatter_chance_to_gain_+1_trauma"]=5278, - ["boneshatter_damage_+%"]=5279, - ["boneshatter_stun_duration_+%"]=5280, - ["boots_implicit_accuracy_rating_+%_final"]=5281, - ["boots_implicit_ground_brittle_duration_ms"]=5282, - ["boots_implicit_ground_sapping_duration_ms"]=5283, - ["boots_implicit_ground_scorched_duration_ms"]=5284, - ["boots_mod_effect_+%"]=5285, - ["boss_maximum_life_+%_final"]=5286, - ["bow_accuracy_rating"]=2029, - ["bow_accuracy_rating_+%"]=1467, - ["bow_ailment_damage_+%"]=1358, - ["bow_attack_speed_+%"]=1449, - ["bow_attacks_have_culling_strike"]=5287, - ["bow_attacks_turn_frenzy_charges_into_additional_arrows"]=1817, - ["bow_attacks_usable_without_mana_cost"]=5288, - ["bow_critical_strike_chance_+%"]=1489, - ["bow_critical_strike_multiplier_+"]=1520, - ["bow_damage_+%"]=1355, - ["bow_elemental_damage_+%"]=1361, - ["bow_enemy_block_-%"]=1929, - ["bow_hit_and_ailment_damage_+%"]=1356, - ["bow_physical_damage_+%_while_holding_shield"]=2011, - ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2976, - ["bow_stun_duration_+%"]=1889, - ["bow_stun_threshold_reduction_+%"]=1543, - ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=5289, - ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=5290, - ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=5291, - ["brands_reattach_on_activation"]=5292, - ["breach_ring_chayula_implicit"]=5293, - ["breach_ring_esh_implicit"]=5294, - ["breach_ring_tul_implicit"]=5295, - ["breach_ring_uulnetol_implicit"]=5296, - ["breach_ring_xoph_implicit"]=5297, - ["breachstone_commanders_%_drop_additional_fragments"]=5298, - ["breachstone_commanders_%_drop_additional_maps"]=5299, - ["breachstone_commanders_%_drop_additional_scarabs"]=5300, - ["breachstone_commanders_%_drop_additional_unique_items"]=5301, - ["breachstone_commanders_drop_additional_currency_items"]=5302, - ["breachstone_commanders_drop_additional_divination_cards"]=5303, - ["brequel_currency_fruit_X_lucky_rolls"]=5304, - ["brequel_currency_fruit_additional_10_items_%"]=10659, - ["brequel_currency_fruit_additional_3_items_%"]=5305, - ["brequel_currency_fruit_additional_item_%"]=5306, - ["brequel_currency_fruit_basic_currency_converted_to_shards"]=5307, - ["brequel_currency_fruit_can_create_graft_currency"]=5308, - ["brequel_currency_fruit_can_create_mutated_currency"]=5309, - ["brequel_currency_fruit_full_stack_chance_%"]=5310, - ["brequel_currency_fruit_gold_chance_%"]=5311, - ["brequel_currency_fruit_graft_currency_chance_+%"]=5312, - ["brequel_currency_fruit_mutated_currency_chance_+%"]=5313, - ["brequel_equipment_fruit_1h_weapon_chance_+%"]=5314, - ["brequel_equipment_fruit_2h_weapon_chance_+%"]=5315, - ["brequel_equipment_fruit_X_divine_rolls"]=5316, - ["brequel_equipment_fruit_additional_item_%"]=5317, - ["brequel_equipment_fruit_additional_item_level_%"]=5318, - ["brequel_equipment_fruit_amulet_chance_+%"]=5319, - ["brequel_equipment_fruit_armour_chance_+%"]=5320, - ["brequel_equipment_fruit_attack_modifier_chance_+%"]=5321, - ["brequel_equipment_fruit_attribute_modifier_chance_+%"]=5322, - ["brequel_equipment_fruit_belt_chance_+%"]=5323, - ["brequel_equipment_fruit_body_armour_chance_+%"]=5324, - ["brequel_equipment_fruit_boots_chance_+%"]=5325, - ["brequel_equipment_fruit_caster_modifier_chance_+%"]=5326, - ["brequel_equipment_fruit_chaos_modifier_chance_+%"]=5327, - ["brequel_equipment_fruit_cold_modifier_chance_+%"]=5328, - ["brequel_equipment_fruit_critical_modifier_chance_+%"]=5329, - ["brequel_equipment_fruit_defence_modifier_chance_+%"]=5330, - ["brequel_equipment_fruit_dexterity_requirement_chance_+%_final"]=5331, - ["brequel_equipment_fruit_fire_modifier_chance_+%"]=5332, - ["brequel_equipment_fruit_fractured_chance_%"]=5333, - ["brequel_equipment_fruit_gloves_chance_+%"]=5334, - ["brequel_equipment_fruit_helmet_chance_+%"]=5335, - ["brequel_equipment_fruit_intelligence_requirement_chance_+%_final"]=5336, - ["brequel_equipment_fruit_item_level_+"]=10660, - ["brequel_equipment_fruit_item_rarity_+%"]=5337, - ["brequel_equipment_fruit_jewel_chance_+%"]=5338, - ["brequel_equipment_fruit_jewel_enabled"]=5339, - ["brequel_equipment_fruit_jewellery_chance_+%"]=5340, - ["brequel_equipment_fruit_life_modifier_chance_+%"]=5341, - ["brequel_equipment_fruit_lightning_modifier_chance_+%"]=5342, - ["brequel_equipment_fruit_mana_modifier_chance_+%"]=5343, - ["brequel_equipment_fruit_mod_tier_rating_+"]=5344, - ["brequel_equipment_fruit_physical_modifier_chance_+%"]=5345, - ["brequel_equipment_fruit_quiver_chance_+%"]=5346, - ["brequel_equipment_fruit_ranged_weapon_chance_+%"]=5347, - ["brequel_equipment_fruit_remove_lowest_level_modifier"]=5348, - ["brequel_equipment_fruit_resistance_modifier_chance_+%"]=5349, - ["brequel_equipment_fruit_ring_chance_+%"]=5350, - ["brequel_equipment_fruit_shield_chance_+%"]=5351, - ["brequel_equipment_fruit_speed_modifier_chance_+%"]=5352, - ["brequel_equipment_fruit_strength_requirement_chance_+%_final"]=5353, - ["brequel_equipment_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls"]=5354, - ["brequel_equipment_fruit_weapon_and_armour_random_quality"]=5355, - ["brequel_equipment_fruit_weapon_chance_+%"]=5356, - ["brequel_graft_fruit_additional_item_%"]=5357, - ["brequel_graft_fruit_esh_chance_+%"]=5358, - ["brequel_graft_fruit_item_level_+"]=5359, - ["brequel_graft_fruit_item_rarity_+%"]=5360, - ["brequel_graft_fruit_mod_tier_rating_+"]=5361, - ["brequel_graft_fruit_random_quality"]=5362, - ["brequel_graft_fruit_tul_chance_+%"]=5363, - ["brequel_graft_fruit_uul_netol_chance_+%"]=5364, - ["brequel_graft_fruit_xoph_chance_+%"]=5365, - ["brequel_misc_fruit_additional_item_%"]=5085, - ["brequel_misc_fruit_common_rewards_chance_+%"]=5366, - ["brequel_misc_fruit_currency_fruit_chance_+%"]=5367, - ["brequel_misc_fruit_equipment_fruit_chance_+%"]=5368, - ["brequel_misc_fruit_graft_fruit_chance_+%"]=5369, - ["brequel_misc_fruit_other_fruits_enabled"]=5370, - ["brequel_misc_fruit_rarer_rewards_chance_+%"]=5371, - ["brequel_misc_fruit_unique_fruit_chance_+%"]=5372, - ["brequel_unique_fruit_1h_weapon_chance_+%"]=5373, - ["brequel_unique_fruit_2h_weapon_chance_+%"]=5374, - ["brequel_unique_fruit_X_divine_rolls"]=5375, - ["brequel_unique_fruit_X_lucky_rolls"]=5376, - ["brequel_unique_fruit_additional_item_%"]=5377, - ["brequel_unique_fruit_amulet_chance_+%"]=5378, - ["brequel_unique_fruit_armour_chance_+%"]=5379, - ["brequel_unique_fruit_belt_chance_+%"]=5380, - ["brequel_unique_fruit_body_armour_chance_+%"]=5381, - ["brequel_unique_fruit_boots_chance_+%"]=5382, - ["brequel_unique_fruit_dexterity_requirement_chance_+%"]=5383, - ["brequel_unique_fruit_flask_chance_+%"]=5384, - ["brequel_unique_fruit_gloves_chance_+%"]=5385, - ["brequel_unique_fruit_helmet_chance_+%"]=5386, - ["brequel_unique_fruit_intelligence_requirement_chance_+%"]=5387, - ["brequel_unique_fruit_jewel_chance_+%"]=5388, - ["brequel_unique_fruit_jewellery_chance_+%"]=5389, - ["brequel_unique_fruit_multiple_mutation_chance_%"]=5390, - ["brequel_unique_fruit_mutation_chance_+%"]=5391, - ["brequel_unique_fruit_non_mutated_items_are_corrupted"]=5392, - ["brequel_unique_fruit_quiver_chance_+%"]=5393, - ["brequel_unique_fruit_ranged_weapon_chance_+%"]=5394, - ["brequel_unique_fruit_ring_chance_+%"]=5395, - ["brequel_unique_fruit_shield_chance_+%"]=5396, - ["brequel_unique_fruit_special_unique_chance_+%"]=5086, - ["brequel_unique_fruit_strength_requirement_chance_+%"]=5397, - ["brequel_unique_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls"]=5398, - ["brequel_unique_fruit_weapon_and_armour_random_quality"]=5399, - ["brequel_unique_fruit_weapon_chance_+%"]=5400, - ["buff_affects_party"]=1809, - ["buff_auras_dont_affect_allies"]=3044, - ["buff_duration_+%"]=1804, - ["buff_effect_+%_on_low_energy_shield"]=5401, - ["buff_effect_on_self_+%"]=2168, - ["buff_party_effect_radius_+%"]=1810, - ["buff_time_passed_+%"]=5403, - ["buff_time_passed_+%_only_buff_category"]=5402, - ["burn_damage_+%"]=1901, - ["burning_and_explosive_arrow_shatter_on_killing_blow"]=5404, - ["burning_arrow_damage_+%"]=3652, - ["burning_arrow_debuff_effect_+%"]=5405, - ["burning_arrow_ignite_chance_%"]=3980, - ["burning_arrow_physical_damage_%_to_add_as_fire_damage"]=3981, - ["burning_damage_+%_if_ignited_an_enemy_recently"]=4324, - ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=5406, - ["burning_damage_taken_+%"]=2572, - ["burning_ground_effect_on_self_+%"]=2174, - ["can_apply_additional_scorch"]=5407, - ["can_apply_additional_tincture"]=5408, - ["can_catch_corrupted_fish"]=2879, - ["can_catch_exotic_fish"]=2878, - ["can_catch_mutated_fish"]=5409, - ["can_catch_scourged_fish"]=5410, + ["-%_of_your_elemental_damage_cannot_be_reflected_while_affected_by_purity_of_elements"]=9529, + ["-%_of_your_fire_damage_cannot_be_reflected_while_affected_by_purity_of_fire"]=9530, + ["-%_of_your_lightning_damage_cannot_be_reflected_while_affected_by_purity_of_lightning"]=9531, + ["-%_of_your_physical_damage_cannot_be_reflected_while_affected_by_determination"]=9532, + ["X_accuracy_per_2_intelligence"]=2067, + ["X_armour_if_you_have_blocked_recently"]=4561, + ["X_armour_per_active_totem"]=4562, + ["X_armour_per_stackable_unique_jewel"]=4217, + ["X_life_per_4_dexterity"]=2068, + ["X_mana_per_4_strength"]=2069, + ["X_mana_per_dexterity"]=4563, + ["X_mana_per_stackable_unique_jewel"]=4216, + ["X_to_armour_per_2_strength"]=4564, + ["absolution_cast_speed_+%"]=4566, + ["absolution_duration_+%"]=4567, + ["absolution_minion_area_of_effect_+%"]=4568, + ["abyssal_cry_damage_+%"]=3784, + ["abyssal_cry_duration_+%"]=3981, + ["abyssal_gaze_arcane_surge_on_you_damage_taken_goes_to_mana_%_if_enough_caster_abyss_jewels"]=4569, + ["abyssal_gaze_arcane_surge_on_you_mana_cost_efficiency_+%_if_enough_caster_abyss_jewels"]=4570, + ["abyssal_gaze_caster_abyss_jewels_needed"]=97, + ["abyssal_gaze_maim_you_apply_causes_cannot_deal_critical_strikes_if_enough_ranged_abyss_jewels"]=4571, + ["abyssal_gaze_maim_you_apply_causes_enemy_critical_strike_chance_+%_final_against_self_if_enough_ranged_abyss_jewels"]=4572, + ["abyssal_gaze_minion_abyss_jewels_needed"]=98, + ["abyssal_gaze_ranged_abyss_jewels_needed"]=99, + ["abyssal_gaze_unholy_might_on_you_penetrate_enemy_chaos_resistance_%_if_enough_minion_abyss_jewels"]=4573, + ["abyssal_gaze_unholy_might_on_you_withered_effect_+%_if_enough_minion_abyss_jewels"]=4574, + ["accuracy_rating"]=1481, + ["accuracy_rating_+%"]=1482, + ["accuracy_rating_+%_during_onslaught"]=4587, + ["accuracy_rating_+%_final_vs_enemies_in_close_range_from_mastery"]=4575, + ["accuracy_rating_+%_final_vs_unique_enemies_from_mastery"]=4576, + ["accuracy_rating_+%_if_enemy_not_killed_recently"]=4588, + ["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=4589, + ["accuracy_rating_+%_per_25_intelligence"]=4578, + ["accuracy_rating_+%_per_frenzy_charge"]=2097, + ["accuracy_rating_+%_when_on_low_life"]=2635, + ["accuracy_rating_+%_with_ally_nearby"]=4579, + ["accuracy_rating_+_per_2_dexterity"]=4584, + ["accuracy_rating_+_per_empty_green_socket"]=4496, + ["accuracy_rating_+_per_frenzy_charge"]=4585, + ["accuracy_rating_+_per_green_socket_on_bow"]=4586, + ["accuracy_rating_against_marked_enemies_+%_final_from_crucible_tree"]=4580, + ["accuracy_rating_against_marked_enemies_+%_final_from_mastery"]=4581, + ["accuracy_rating_is_doubled"]=4582, + ["accuracy_rating_per_level"]=4583, + ["accuracy_rating_while_at_maximum_frenzy_charges"]=4590, + ["accuracy_rating_while_dual_wielding_+%"]=1483, + ["action_speed_+%_while_affected_by_haste"]=4591, + ["action_speed_+%_while_chilled"]=3648, + ["action_speed_-%"]=4595, + ["action_speed_cannot_be_reduced_below_base"]=3254, + ["action_speed_cannot_be_reduced_below_base_while_ignited"]=4592, + ["action_speed_cannot_be_reduced_below_base_while_no_gems_in_boots"]=4593, + ["action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds"]=4594, + ["action_speed_is_at_least_90%"]=201, + ["active_skill_200%_increased_knockback_distance"]=4596, + ["active_skill_attack_speed_+%_final"]=1459, + ["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3849, + ["active_skill_level_+"]=1925, + ["adaptation_duration_+%"]=1583, + ["adaptation_rating_+%"]=1580, + ["add_endurance_charge_on_critical_strike"]=1865, + ["add_endurance_charge_on_enemy_critical_strike"]=1882, + ["add_endurance_charge_on_gain_power_charge_%"]=3667, + ["add_endurance_charge_on_kill"]=2886, + ["add_endurance_charge_on_skill_hit_%"]=1879, + ["add_endurance_charge_on_status_ailment"]=1883, + ["add_frenzy_charge_every_50_rampage_stacks"]=4437, + ["add_frenzy_charge_on_critical_strike"]=1875, + ["add_frenzy_charge_on_enemy_block"]=2173, + ["add_frenzy_charge_on_kill_%_chance"]=2681, + ["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=4597, + ["add_frenzy_charge_on_skill_hit_%"]=1880, + ["add_frenzy_charge_on_skill_hit_%_if_4_redeemer_items"]=4525, + ["add_frenzy_charge_when_hit_%"]=4598, + ["add_power_charge_on_critical_strike"]=1876, + ["add_power_charge_on_critical_strike_%"]=1877, + ["add_power_charge_on_hit_%"]=3662, + ["add_power_charge_on_hit_while_poisoned_%"]=4599, + ["add_power_charge_on_kill_%_chance"]=2683, + ["add_power_charge_on_melee_critical_strike"]=1878, + ["add_power_charge_on_minion_death"]=2105, + ["add_power_charge_on_skill_hit_%"]=1881, + ["add_power_charge_on_skill_hit_%_if_4_crusader_items"]=4526, + ["add_power_charge_when_interrupted_while_casting"]=2200, + ["add_power_charge_when_kill_shocked_enemy"]=2190, + ["add_x_grasping_vines_on_hit"]=4600, + ["added_chaos_damage_%_life_cost_if_payable"]=4601, + ["added_chaos_damage_%_mana_cost_if_payable"]=4602, + ["additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"]=4637, + ["additional_all_attributes"]=1223, + ["additional_attack_block_%_if_used_shield_skill_recently"]=4603, + ["additional_attack_block_%_per_endurance_charge"]=4604, + ["additional_attack_block_%_per_frenzy_charge"]=4605, + ["additional_attack_block_%_per_power_charge"]=4606, + ["additional_attack_block_%_per_summoned_skeleton"]=4607, + ["additional_base_critical_strike_chance"]=1504, + ["additional_beam_only_chains"]=10713, + ["additional_block_%"]=2507, + ["additional_block_%_against_frontal_attacks"]=4608, + ["additional_block_%_if_you_have_crit_recently"]=4609, + ["additional_block_%_per_endurance_charge"]=4610, + ["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=4611, + ["additional_block_%_while_not_cursed"]=4612, + ["additional_block_%_while_on_consecrated_ground"]=4613, + ["additional_block_%_while_you_have_at_least_10_crab_charges"]=4415, + ["additional_block_%_while_you_have_at_least_5_crab_charges"]=4414, + ["additional_block_%_with_5_or_more_nearby_enemies"]=4614, + ["additional_block_chance_%_for_1_second_every_5_seconds"]=2509, + ["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=4124, + ["additional_block_chance_%_when_in_off_hand"]=4245, + ["additional_block_chance_against_projectiles_%"]=2514, + ["additional_chance_to_freeze_chilled_enemies_%"]=2079, + ["additional_chaos_damage_to_spells_equal_to_%_maximum_life"]=4615, + ["additional_chaos_resistance_against_damage_over_time_%"]=5836, + ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4616, + ["additional_critical_strike_chance_per_power_charge_permyriad"]=3529, + ["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=4617, + ["additional_critical_strike_chance_permyriad_per_warcry_exerting_action"]=4618, + ["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=4422, + ["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=4619, + ["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=3530, + ["additional_critical_strike_chance_permyriad_with_herald_skills"]=4620, + ["additional_damage_rolls_while_on_low_life"]=4621, + ["additional_dexterity"]=1225, + ["additional_dexterity_and_intelligence"]=1229, + ["additional_dexterity_per_allocated_mastery"]=4622, + ["additional_elemental_damage_reduction_as_half_of_chaos_resistance"]=4125, + ["additional_intelligence"]=1226, + ["additional_intelligence_per_allocated_mastery"]=4623, + ["additional_max_mirage_archers"]=4477, + ["additional_max_number_of_dominated_magic_monsters"]=4624, + ["additional_max_number_of_dominated_rare_monsters"]=4625, + ["additional_maximum_all_elemental_resistances_%"]=1690, + ["additional_maximum_all_elemental_resistances_%_if_6_shaper_items"]=4543, + ["additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour"]=4630, + ["additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently"]=4626, + ["additional_maximum_all_elemental_resistances_%_if_suppressed_spell_recently"]=4627, + ["additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements"]=4628, + ["additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana"]=4629, + ["additional_maximum_all_resistances_%"]=1689, + ["additional_maximum_all_resistances_%_at_devotion_threshold"]=4632, + ["additional_maximum_all_resistances_%_while_poisoned"]=4631, + ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4633, + ["additional_number_of_brands_to_create"]=4634, + ["additional_off_hand_critical_strike_chance_permyriad"]=4635, + ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4636, + ["additional_physical_damage_reduction_%_during_flask_effect"]=4328, + ["additional_physical_damage_reduction_%_during_focus"]=4639, + ["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=4640, + ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=4641, + ["additional_physical_damage_reduction_%_per_keystone"]=4642, + ["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=4643, + ["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=4644, + ["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=4645, + ["additional_physical_damage_reduction_%_when_on_low_life"]=2306, + ["additional_physical_damage_reduction_%_while_affected_by_determination"]=4646, + ["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=4647, + ["additional_physical_damage_reduction_%_while_bleeding"]=4648, + ["additional_physical_damage_reduction_%_while_channelling"]=4649, + ["additional_physical_damage_reduction_%_while_frozen"]=4650, + ["additional_physical_damage_reduction_%_while_moving"]=4651, + ["additional_physical_damage_reduction_against_hits_%_per_siphoning_charge"]=4401, + ["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=4638, + ["additional_poison_chance_%_when_inflicting_poison"]=4652, + ["additional_projectile_if_6_hunter_items"]=4544, + ["additional_rage_loss_per_minute"]=4653, + ["additional_scroll_of_wisdom_drop_chance_%"]=2645, + ["additional_spectres_per_ghastly_eye_jewel"]=4654, + ["additional_spell_block_%"]=2508, + ["additional_spell_block_%_if_havent_blocked_recently"]=4656, + ["additional_spell_block_%_per_power_charge"]=4655, + ["additional_spell_block_%_while_cursed"]=4657, + ["additional_staff_block_%"]=1202, + ["additional_strength"]=1224, + ["additional_strength_and_dexterity"]=1227, + ["additional_strength_and_intelligence"]=1228, + ["additional_strength_per_allocated_mastery"]=4658, + ["additional_stun_threshold_based_on_%_of_energy_shield"]=4659, + ["additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=4660, + ["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=4661, + ["additive_chaos_damage_modifiers_apply_to_chaos_aura_effect_at_%_value"]=4662, + ["additive_cold_damage_modifiers_apply_to_cold_aura_effect_at_%_value"]=4663, + ["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=4664, + ["additive_evasion_increase_modifiers_apply_to_spell_damage_at_%_value"]=4665, + ["additive_fire_damage_modifiers_apply_to_fire_aura_effect_at_%_value"]=4666, + ["additive_flask_effect_modifiers_apply_to_arcane_surge"]=4667, + ["additive_flask_effect_modifiers_apply_to_arcane_surge_at_%_value"]=4668, + ["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=4669, + ["additive_lightning_damage_modifiers_apply_to_lightning_aura_effect_at_%_value"]=4670, + ["additive_mana_modifiers_apply_to_damage_at_30%_value"]=4671, + ["additive_mana_modifiers_apply_to_shock_effect_at_30%_value"]=4672, + ["additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=3811, + ["additive_minion_maximum_life_modifiers_apply_to_you_at_%_value"]=3814, + ["additive_modifiers_to_minion_attack_speed_also_affect_you"]=3812, + ["additive_modifiers_to_minion_cast_speed_also_affect_you"]=3813, + ["additive_physical_damage_modifiers_apply_to_physical_aura_effect_at_%_value"]=4673, + ["additive_spell_damage_modifiers_apply_to_attack_damage"]=2737, + ["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=2739, + ["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=2738, + ["additive_spell_damage_modifiers_apply_to_retaliation_attack_damage_at_%_value"]=2740, + ["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=2741, + ["adrenaline_on_vaal_skill_use_duration_ms"]=2977, + ["aggravate_bleeding_older_than_ms_on_hit"]=4674, + ["aggravate_bleeding_on_attack_crit_chance_%"]=4675, + ["aggravate_bleeding_on_attack_knockback_chance_%"]=4677, + ["aggravate_bleeding_on_attack_stun_chance_%"]=4678, + ["aggravate_bleeding_on_exerted_attack_hit_chance_%"]=4679, + ["aggravate_inflicted_bleeding"]=4680, + ["agony_crawler_damage_+%"]=4681, + ["ailment_bearer_all_damage_can_inflict_elemental_ailments"]=4682, + ["ailment_bearer_always_freeze_shock_ignite"]=4683, + ["ailment_bearer_elemental_damage_+%_final"]=4684, + ["ailment_bearer_ignite_freeze_shock_duration_+%"]=4685, + ["ailment_bearer_scorch_effect_+%"]=4686, + ["ailment_damage_+%_per_equipped_elder_item"]=4391, + ["ailment_dot_multiplier_+"]=1291, + ["ailment_dot_multiplier_+_per_equipped_elder_item"]=4392, + ["ailment_types_apply_damage_taken_+%"]=2512, + ["ailment_types_apply_enemy_chance_to_deal_double_damage_%_against_self"]=4687, + ["alchemists_mark_curse_effect_+%"]=4688, + ["all_added_damage_treated_as_added_cold_damage_if_dex_higher_than_int_and_strength"]=4689, + ["all_added_damage_treated_as_added_lightning_damage_if_int_higher_than_dex_and_strength"]=4690, + ["all_attributes_+%"]=1230, + ["all_attributes_+%_if_6_elder_items"]=4545, + ["all_attributes_+%_per_assigned_keystone"]=3145, + ["all_attributes_+_per_keystone"]=4691, + ["all_damage_can_chill"]=2918, + ["all_damage_can_freeze"]=4692, + ["all_damage_can_ignite"]=4693, + ["all_damage_can_poison"]=4694, + ["all_damage_can_poison_while_affected_by_glorious_madness"]=10882, + ["all_damage_can_shock"]=4695, + ["all_damage_from_mace_and_sceptre_also_chills"]=4696, + ["all_damage_resistance_+%"]=4697, + ["all_damage_taken_can_chill"]=2921, + ["all_damage_taken_can_ignite"]=4698, + ["all_damage_taken_can_sap"]=4699, + ["all_damage_taken_can_scorch"]=4700, + ["all_resistances_%_per_active_minion"]=4701, + ["all_resistances_%_per_active_minion_not_from_vaal_skills"]=1684, + ["all_resistances_%_per_equipped_corrupted_item"]=3161, + ["all_skill_gem_level_+"]=4702, + ["all_skill_gem_quality_+"]=4703, + ["allow_2_active_banners"]=3077, + ["allow_2_offerings"]=4704, + ["allow_hellscaping_unique_items"]=4705, + ["allow_multiple_offerings"]=4706, + ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_eshgraft"]=4707, + ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_tulgraft"]=4708, + ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_uulgraft"]=4709, + ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_xophgraft"]=4710, + ["alternate_ascendancy_damage_taken_over_time_+%_final_while_you_have_unbroken_ward"]=4711, + ["alternate_ascendancy_damage_taken_when_hit_+%_final"]=4712, + ["alternate_ascendancy_herald_buff_effect_+%_final_per_1%_mana_reserved"]=4713, + ["alternate_ascendancy_herald_minion_and_herald_damage_+%_final_per_1%_life_reserved"]=4714, + ["alternate_ascendancy_rapid_fire_support_use_damage_+%_final_per_reoccurance"]=4715, + ["alternate_ascendancy_vaal_skill_soul_requirement_+%_final"]=4716, + ["alternate_ascendancy_vaal_skills_damage_+%_final_per_soul_required"]=4717, + ["always_crit"]=2092, + ["always_crit_on_next_non_channelling_attack_within_X_ms_after_being_crit"]=4718, + ["always_crit_shocked_enemies"]=4196, + ["always_crit_while_holding_fishing_rod"]=4719, + ["always_freeze"]=2076, + ["always_frostburn_while_affected_by_hatred"]=4720, + ["always_ignite"]=1899, + ["always_ignite_while_burning"]=4721, + ["always_pierce"]=4722, + ["always_pierce_burning_enemies"]=4723, + ["always_sap_while_affected_by_wrath"]=4724, + ["always_scorch_while_affected_by_anger"]=4725, + ["always_shock"]=1900, + ["always_shock_low_life_enemies"]=4726, + ["always_stun"]=1901, + ["always_stun_enemies_that_are_on_full_life"]=3392, + ["always_take_critical_strikes"]=4727, + ["ambush_buff_critical_strike_multiplier_+"]=4728, + ["ambush_cooldown_speed_+%"]=4729, + ["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=3494, + ["amulet_freeze_proliferation_radius"]=2267, + ["ancestor_totem_buff_effect_+%"]=4730, + ["ancestor_totem_buff_linger_time_ms"]=4731, + ["ancestor_totem_damage_leeched_as_energy_shield_to_you_permyriad"]=4732, + ["ancestor_totem_parent_activation_range_+%"]=4733, + ["ancestral_chance_for_no_respawn_timer_on_death_%"]=4734, + ["ancestral_channelling_damage_+%_against_totems"]=4735, + ["ancestral_channelling_interrupt_duration_+%"]=4736, + ["ancestral_cry_attacks_exerted_+"]=4737, + ["ancestral_cry_exerted_attack_damage_+%"]=4738, + ["ancestral_cry_minimum_power"]=4739, + ["ancestral_defensive_teammates_gain_charges"]=4740, + ["ancestral_life_regeneration_rate_per_minute_%_while_channelling_totem"]=4741, + ["ancestral_maximum_life_+%_on_respawn"]=4742, + ["ancestral_monster_respawn_timer_+%"]=4743, + ["ancestral_offensive_teammates_gain_adrenaline_for_x_ms_on_match_start"]=4744, + ["ancestral_slain_enemies_respawn_timer_+"]=4745, + ["ancestral_stun_nearby_enemies_on_respawn"]=4746, + ["ancestral_totem_being_channelled_doesnt_prevent_your_respawn_timer"]=4747, + ["ancestral_totem_cannot_recover_life_while_being_channelled"]=4748, + ["ancestral_totem_life_+%"]=4749, + ["ancestral_totem_life_regeneration_rate_per_minute_%"]=4750, + ["ancestral_totem_periodically_freezes_nearby_enemies"]=4751, + ["ancestral_totem_trigger_enduring_cry_on_low_life"]=4752, + ["anger_aura_effect_+%"]=3416, + ["anger_aura_effect_+%_while_at_maximum_endurance_charges"]=4753, + ["anger_mana_reservation_+%"]=3477, + ["anger_mana_reservation_efficiency_+%"]=4755, + ["anger_mana_reservation_efficiency_-2%_per_1"]=4754, + ["anger_reserves_no_mana"]=4756, + ["animate_guardian_damage_+%"]=3765, + ["animate_guardian_damage_+%_per_animated_weapon"]=4757, + ["animate_guardian_elemental_resistances_%"]=4049, + ["animate_weapon_can_animate_bows"]=3220, + ["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=3315, + ["animate_weapon_can_animate_wands"]=3221, + ["animate_weapon_chance_to_create_additional_copy_%"]=4055, + ["animate_weapon_damage_+%"]=3687, + ["animate_weapon_duration_+%"]=2854, + ["animate_weapon_number_of_additional_copies"]=2855, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=4758, + ["animated_guardian_damage_taken_+%_final"]=4759, + ["animated_minions_melee_splash"]=4760, + ["aoe_+%_per_second_while_stationary_up_to_50"]=4761, + ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4762, + ["apply_covered_in_ash_to_attacker_when_hit_%"]=4763, + ["apply_hex_on_enemy_that_triggers_traps"]=578, + ["apply_maximum_wither_for_Xs_on_chaos_skill_hit"]=4764, + ["apply_maximum_wither_stacks_%_chance_when_you_apply_withered"]=4765, + ["apply_poison_on_hit_vs_bleeding_enemies_%"]=3343, + ["apply_scorch_instead_of_ignite"]=4766, + ["arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable"]=4767, + ["arc_and_crackling_lance_base_cost_+%"]=4768, + ["arc_damage_+%"]=3720, + ["arc_damage_+%_per_chain"]=4769, + ["arc_num_of_additional_projectiles_in_chain"]=4012, + ["arc_shock_chance_%"]=4027, + ["arcane_cloak_consume_%_of_mana"]=4770, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=4771, + ["arcane_surge_during_mana_flask_effect"]=4772, + ["arcane_surge_effect_+%"]=3348, + ["arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%"]=3349, + ["arcane_surge_effect_+%_per_active_totem"]=4774, + ["arcane_surge_effect_+%_while_affected_by_clarity"]=4773, + ["arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%"]=3347, + ["arcane_surge_on_you_life_regeneration_rate_+%"]=4775, + ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"]=4776, + ["arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%"]=4777, + ["arcanist_brand_cast_speed_+%"]=4778, + ["arcanist_brand_unnerve_on_hit"]=4779, + ["archnemesis_cannot_recover_life_or_energy_shield_above_%"]=4780, + ["arctic_armour_buff_effect_+%"]=4082, + ["arctic_armour_chill_when_hit_duration"]=4781, + ["arctic_armour_mana_reservation_+%"]=4089, + ["arctic_armour_mana_reservation_efficiency_+%"]=4783, + ["arctic_armour_mana_reservation_efficiency_-2%_per_1"]=4782, + ["arctic_armour_no_reservation"]=4784, + ["arctic_breath_chilling_area_movement_velocity_+%"]=4785, + ["arctic_breath_damage_+%"]=3738, + ["arctic_breath_duration_+%"]=3992, + ["arctic_breath_radius_+%"]=3883, + ["area_damage_+%"]=2082, + ["area_damage_+%_per_10_devotion"]=4786, + ["area_damage_+%_per_12_strength"]=4787, + ["area_damage_taken_from_hits_+%"]=2286, + ["area_of_effect_+%_final_for_bow_attacks_firing_single_projectile"]=4792, + ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=4793, + ["area_of_effect_+%_if_below_100_intelligence"]=4789, + ["area_of_effect_+%_if_culled_recently"]=4794, + ["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=4795, + ["area_of_effect_+%_if_have_crit_recently"]=4796, + ["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=4797, + ["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=4798, + ["area_of_effect_+%_if_you_have_blocked_recently"]=4799, + ["area_of_effect_+%_per_10_rage"]=4790, + ["area_of_effect_+%_per_20_int"]=2593, + ["area_of_effect_+%_per_25_rampage_stacks"]=4436, + ["area_of_effect_+%_per_50_strength"]=4800, + ["area_of_effect_+%_per_active_herald_of_light_minion"]=4801, + ["area_of_effect_+%_per_endurance_charge"]=4802, + ["area_of_effect_+%_per_enemy_killed_recently"]=4803, + ["area_of_effect_+%_per_enemy_killed_recently_up_to_25%"]=4791, + ["area_of_effect_+%_while_fortified"]=4804, + ["area_of_effect_+%_while_totem_active"]=4805, + ["area_of_effect_+%_while_wielding_bow"]=4806, + ["area_of_effect_+%_while_wielding_staff"]=4807, + ["area_of_effect_+%_while_you_do_not_have_convergence"]=4506, + ["area_of_effect_+%_while_you_have_arcane_surge"]=4808, + ["area_of_effect_+%_with_500_or_more_strength"]=4809, + ["area_of_effect_+%_with_bow_skills"]=4810, + ["area_of_effect_+%_with_herald_skills"]=4811, + ["area_skill_accuracy_rating_+%"]=4812, + ["area_skill_knockback_chance_%"]=4813, + ["armageddon_brand_attached_target_fire_penetration_%"]=4814, + ["armageddon_brand_damage_+%"]=4815, + ["armageddon_brand_repeat_frequency_+%"]=4816, + ["armour_%_applies_to_fire_cold_lightning_damage"]=4817, + ["armour_%_applies_to_fire_cold_lightning_damage_if_have_blocked_recently"]=4818, + ["armour_%_to_leech_as_life_on_block"]=2798, + ["armour_+%_during_onslaught"]=4819, + ["armour_+%_if_enemy_not_killed_recently"]=4839, + ["armour_+%_if_have_been_hit_recently"]=4820, + ["armour_+%_if_you_havent_been_hit_recently"]=4821, + ["armour_+%_per_50_str"]=4840, + ["armour_+%_per_defiance"]=4345, + ["armour_+%_per_rage"]=4841, + ["armour_+%_per_red_socket_on_main_hand_weapon"]=4842, + ["armour_+%_per_retaliation_used_in_past_10_seconds"]=4822, + ["armour_+%_per_second_while_stationary_up_to_100"]=4843, + ["armour_+%_while_bleeding"]=4844, + ["armour_+%_while_no_energy_shield"]=2793, + ["armour_+%_while_stationary"]=4845, + ["armour_+%_while_you_have_unbroken_ward"]=4823, + ["armour_+_per_10_unreserved_max_mana"]=4824, + ["armour_+_per_1_helmet_maximum_energy_shield"]=4835, + ["armour_+_while_affected_by_determination"]=4836, + ["armour_+_while_affected_by_guard_skill"]=4837, + ["armour_+_while_you_have_fortify"]=4838, + ["armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield"]=4825, + ["armour_and_evasion_+%_during_onslaught"]=4826, + ["armour_and_evasion_+%_if_red_and_green_socket_on_main_hand_weapon"]=4827, + ["armour_and_evasion_+%_while_fortified"]=4310, + ["armour_and_evasion_on_low_life_+%"]=3273, + ["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=4252, + ["armour_and_evasion_rating_+_per_1%_attack_block_chance"]=4828, + ["armour_and_evasion_rating_+_while_fortified"]=4829, + ["armour_evasion_+%_while_leeching"]=4830, + ["armour_from_gloves_and_boots_+%"]=4831, + ["armour_from_helmet_and_gloves_+%"]=4832, + ["armour_from_shield_doubled"]=2040, + ["armour_hellscaping_speed_+%"]=7219, + ["armour_increased_by_overcapped_fire_resistance"]=4833, + ["armour_increased_by_x%_of_overcapped_fire_resistance"]=4834, + ["armour_while_stationary"]=4376, + ["armour_while_you_do_not_have_avatar_of_fire"]=11042, + ["arrow_base_number_of_targets_to_pierce"]=1838, + ["arrow_chains_+"]=1835, + ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4846, + ["arrow_damage_+%_max_as_distance_travelled_increases"]=4849, + ["arrow_damage_+%_vs_pierced_targets"]=4847, + ["arrow_damage_+50%_vs_pierced_targets"]=4848, + ["arrow_speed_additive_modifiers_also_apply_to_bow_damage"]=4851, + ["arrows_always_pierce_after_chaining"]=4367, + ["arrows_always_pierce_after_forking"]=4852, + ["arrows_fork"]=3641, + ["arrows_from_first_firing_point_always_pierce"]=4469, + ["arrows_from_fourth_firing_point_additional_chains"]=4472, + ["arrows_from_second_firing_point_fork"]=4470, + ["arrows_from_third_firing_point_return"]=4471, + ["arrows_pierce_additional_target"]=4853, + ["arrows_that_pierce_also_return"]=4854, + ["arrows_that_pierce_cause_bleeding"]=4365, + ["arrows_that_pierce_chance_to_bleed_25%"]=4366, + ["artillery_ballista_cross_strafe_pattern"]=4855, + ["artillery_ballista_fire_pen_+%"]=4856, + ["artillery_ballista_num_additional_arrows"]=4857, + ["ascendancy_non_damaging_elemental_ailment_proliferation_radius"]=9665, + ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4858, + ["aspect_of_the_avian_buff_effect_+%"]=4859, + ["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=4860, + ["aspect_of_the_cat_base_secondary_duration"]=4861, + ["aspect_of_the_cat_buff_effect_+%"]=4862, + ["aspect_of_the_crab_buff_effect_+%"]=4863, + ["aspect_of_the_spider_debuff_effect_+%"]=4864, + ["aspect_of_the_spider_web_count_+"]=4865, + ["assassin_ascendancy_spell_critical_strike_chance_+%_final"]=10883, + ["assassin_critical_strike_chance_+%_final_vs_enemies_not_on_low_life"]=3496, + ["assassin_critical_strike_multiplier_+_vs_enemies_not_on_low_life"]=3497, + ["assassin_critical_strike_multiplier_+_vs_enemies_on_low_life"]=3498, + ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=3499, + ["assassins_mark_curse_effect_+%"]=4069, + ["assassins_mark_duration_+%"]=3978, + ["attack_additional_critical_strike_chance_permyriad"]=4866, + ["attack_additional_critical_strike_chance_permyriad_if_4_elder_items"]=4527, + ["attack_ailment_damage_+%"]=4867, + ["attack_ailment_damage_+%_while_dual_wielding"]=4868, + ["attack_ailment_damage_+%_while_holding_shield"]=1256, + ["attack_ailment_damage_+%_while_wielding_axe"]=4869, + ["attack_ailment_damage_+%_while_wielding_bow"]=4870, + ["attack_ailment_damage_+%_while_wielding_claw"]=4871, + ["attack_ailment_damage_+%_while_wielding_dagger"]=4872, + ["attack_ailment_damage_+%_while_wielding_mace"]=4873, + ["attack_ailment_damage_+%_while_wielding_melee_weapon"]=4874, + ["attack_ailment_damage_+%_while_wielding_one_handed_weapon"]=4875, + ["attack_ailment_damage_+%_while_wielding_staff"]=4876, + ["attack_ailment_damage_+%_while_wielding_sword"]=4877, + ["attack_ailment_damage_+%_while_wielding_two_handed_weapon"]=4878, + ["attack_ailment_damage_+%_while_wielding_wand"]=4879, + ["attack_always_crit"]=3838, + ["attack_and_cast_speed_+%"]=2093, + ["attack_and_cast_speed_+%_during_flask_effect"]=4334, + ["attack_and_cast_speed_+%_during_onslaught"]=3087, + ["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=4888, + ["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=3587, + ["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=3533, + ["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=4126, + ["attack_and_cast_speed_+%_if_corpse_consumed_recently"]=4880, + ["attack_and_cast_speed_+%_if_enemy_hit_recently"]=4889, + ["attack_and_cast_speed_+%_if_havent_been_hit_recently"]=4890, + ["attack_and_cast_speed_+%_on_placing_totem"]=3267, + ["attack_and_cast_speed_+%_per_alive_packmate"]=4881, + ["attack_and_cast_speed_+%_per_cold_adaptation"]=4480, + ["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=4314, + ["attack_and_cast_speed_+%_per_endurance_charge"]=4891, + ["attack_and_cast_speed_+%_per_frenzy_charge"]=2095, + ["attack_and_cast_speed_+%_per_nearby_enemy_up_to_30%"]=4882, + ["attack_and_cast_speed_+%_per_power_charge"]=4892, + ["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=4893, + ["attack_and_cast_speed_+%_to_grant_packmate_on_death"]=4883, + ["attack_and_cast_speed_+%_while_affected_by_a_herald"]=4894, + ["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=4884, + ["attack_and_cast_speed_+%_while_affected_by_elusive"]=4885, + ["attack_and_cast_speed_+%_while_channelling"]=4895, + ["attack_and_cast_speed_+%_while_focused"]=4896, + ["attack_and_cast_speed_+%_while_leeching"]=4148, + ["attack_and_cast_speed_+%_while_leeching_energy_shield"]=4897, + ["attack_and_cast_speed_+%_while_not_near_ancestral_totem"]=4886, + ["attack_and_cast_speed_+%_while_on_consecrated_ground"]=4288, + ["attack_and_cast_speed_+%_while_totem_active"]=3669, + ["attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis"]=4898, + ["attack_and_cast_speed_+%_while_you_have_fortify"]=2315, + ["attack_and_cast_speed_+%_with_channelling_skills"]=4899, + ["attack_and_cast_speed_+%_with_chaos_skills"]=4900, + ["attack_and_cast_speed_+%_with_cold_skills"]=4901, + ["attack_and_cast_speed_+%_with_elemental_skills"]=4902, + ["attack_and_cast_speed_+%_with_fire_skills"]=4903, + ["attack_and_cast_speed_+%_with_lightning_skills"]=4904, + ["attack_and_cast_speed_+%_with_physical_skills"]=4905, + ["attack_and_cast_speed_+%_with_shield_skills"]=4906, + ["attack_and_cast_speed_per_ghost_dance_stack_+%"]=4887, + ["attack_and_cast_speed_when_hit_+%"]=3279, + ["attack_and_movement_speed_+%_final_per_challenger_charge"]=4907, + ["attack_and_movement_speed_+%_if_you_have_beast_minion"]=4385, + ["attack_and_movement_speed_+%_with_her_blessing"]=3341, + ["attack_and_spell_maximum_added_physical_damage_per_siphoning_charge"]=4399, + ["attack_and_spell_minimum_added_physical_damage_per_siphoning_charge"]=4399, + ["attack_area_of_effect_+%"]=4909, + ["attack_area_of_effect_+%_with_ally_nearby"]=4908, + ["attack_block_%_if_blocked_a_spell_recently"]=4911, + ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4910, + ["attack_block_%_while_at_max_endurance_charges"]=4912, + ["attack_cast_and_movement_speed_+%_during_onslaught"]=4913, + ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=11043, + ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=4127, + ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4914, + ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4915, + ["attack_chance_to_maim_on_hit_%_vs_blinded_enemies"]=4916, + ["attack_cost_+%_if_you_have_at_least_20_rage"]=4917, + ["attack_critical_strike_chance_+%"]=4918, + ["attack_critical_strike_chance_+%_per_200_accuracy_rating"]=4919, + ["attack_critical_strike_damage_life_leech_permyriad"]=3827, + ["attack_critical_strike_multiplier_+"]=1538, + ["attack_critical_strikes_ignore_elemental_resistances"]=4920, + ["attack_damage_+%"]=1245, + ["attack_damage_+%_for_4_seconds_on_cast"]=3592, + ["attack_damage_+%_if_hit_recently"]=3593, + ["attack_damage_+%_if_other_ring_is_shaper_item"]=4386, + ["attack_damage_+%_per_16_strength"]=4930, + ["attack_damage_+%_per_450_evasion"]=3004, + ["attack_damage_+%_per_450_physical_damage_reduction_rating"]=4931, + ["attack_damage_+%_per_5%_block_chance"]=4921, + ["attack_damage_+%_per_500_maximum_mana"]=4922, + ["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=4932, + ["attack_damage_+%_per_explicit_map_mod_affecting_area"]=4923, + ["attack_damage_+%_per_frenzy_charge"]=3345, + ["attack_damage_+%_per_level"]=3021, + ["attack_damage_+%_per_raised_zombie"]=4924, + ["attack_damage_+%_vs_maimed_enemies"]=4933, + ["attack_damage_+%_when_lower_percentage_life_than_target"]=4934, + ["attack_damage_+%_when_on_full_life"]=4935, + ["attack_damage_+%_while_affected_by_precision"]=4936, + ["attack_damage_+%_while_channelling"]=4937, + ["attack_damage_+%_while_holding_a_shield"]=1253, + ["attack_damage_+%_while_in_blood_stance"]=4925, + ["attack_damage_+%_while_leeching"]=4938, + ["attack_damage_+%_while_onslaught_active"]=3351, + ["attack_damage_+%_while_you_have_at_least_20_fortification"]=4926, + ["attack_damage_+%_while_you_have_fortify"]=4939, + ["attack_damage_+%_with_channelling_skills"]=4940, + ["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=4929, + ["attack_damage_lucky_if_blocked_in_past_20_seconds"]=4927, + ["attack_damage_lucky_if_blocked_in_past_20_seconds_while_dual_wielding"]=4928, + ["attack_damage_that_stuns_also_chills"]=3070, + ["attack_damage_vs_bleeding_enemies_+%"]=2541, + ["attack_ignite_chance_%"]=2753, + ["attack_lightning_damage_%_to_convert_to_chaos"]=4941, + ["attack_mana_cost_+%"]=4942, + ["attack_maximum_added_chaos_damage"]=1435, + ["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=4384, + ["attack_maximum_added_chaos_damage_with_bows"]=2150, + ["attack_maximum_added_chaos_damage_with_claws"]=2151, + ["attack_maximum_added_chaos_damage_with_daggers"]=2152, + ["attack_maximum_added_cold_damage"]=1417, + ["attack_maximum_added_cold_damage_with_axes"]=2134, + ["attack_maximum_added_cold_damage_with_bows"]=2135, + ["attack_maximum_added_cold_damage_with_claws"]=2136, + ["attack_maximum_added_cold_damage_with_daggers"]=2137, + ["attack_maximum_added_cold_damage_with_maces"]=2138, + ["attack_maximum_added_cold_damage_with_staves"]=2139, + ["attack_maximum_added_cold_damage_with_swords"]=2140, + ["attack_maximum_added_cold_damage_with_wand"]=2141, + ["attack_maximum_added_fire_damage"]=1408, + ["attack_maximum_added_fire_damage_per_10_strength"]=4943, + ["attack_maximum_added_fire_damage_with_axes"]=2126, + ["attack_maximum_added_fire_damage_with_bow"]=2127, + ["attack_maximum_added_fire_damage_with_claws"]=2128, + ["attack_maximum_added_fire_damage_with_daggers"]=2129, + ["attack_maximum_added_fire_damage_with_maces"]=2130, + ["attack_maximum_added_fire_damage_with_staves"]=2131, + ["attack_maximum_added_fire_damage_with_swords"]=2132, + ["attack_maximum_added_fire_damage_with_wand"]=2133, + ["attack_maximum_added_lightning_damage"]=1428, + ["attack_maximum_added_lightning_damage_per_10_dex"]=4945, + ["attack_maximum_added_lightning_damage_per_10_int"]=4946, + ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4947, + ["attack_maximum_added_lightning_damage_with_axes"]=2142, + ["attack_maximum_added_lightning_damage_with_bows"]=2143, + ["attack_maximum_added_lightning_damage_with_claws"]=2144, + ["attack_maximum_added_lightning_damage_with_daggers"]=2145, + ["attack_maximum_added_lightning_damage_with_maces"]=2146, + ["attack_maximum_added_lightning_damage_with_staves"]=2147, + ["attack_maximum_added_lightning_damage_with_swords"]=2148, + ["attack_maximum_added_lightning_damage_with_wand"]=2149, + ["attack_maximum_added_melee_lightning_damage_while_unarmed"]=2486, + ["attack_maximum_added_physical_damage"]=1314, + ["attack_maximum_added_physical_damage_if_have_crit_recently"]=4948, + ["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=4383, + ["attack_maximum_added_physical_damage_per_25_dexterity"]=3455, + ["attack_maximum_added_physical_damage_per_25_strength"]=4949, + ["attack_maximum_added_physical_damage_per_level"]=4950, + ["attack_maximum_added_physical_damage_while_holding_a_shield"]=2125, + ["attack_maximum_added_physical_damage_while_unarmed"]=2124, + ["attack_maximum_added_physical_damage_with_axes"]=2116, + ["attack_maximum_added_physical_damage_with_bow"]=2117, + ["attack_maximum_added_physical_damage_with_claws"]=2118, + ["attack_maximum_added_physical_damage_with_daggers"]=2119, + ["attack_maximum_added_physical_damage_with_maces"]=2120, + ["attack_maximum_added_physical_damage_with_staves"]=2121, + ["attack_maximum_added_physical_damage_with_swords"]=2122, + ["attack_maximum_added_physical_damage_with_wands"]=2123, + ["attack_maximum_added_physical_damage_with_weapons"]=1316, + ["attack_minimum_added_chaos_damage"]=1435, + ["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=4384, + ["attack_minimum_added_chaos_damage_with_bows"]=2150, + ["attack_minimum_added_chaos_damage_with_claws"]=2151, + ["attack_minimum_added_chaos_damage_with_daggers"]=2152, + ["attack_minimum_added_cold_damage"]=1417, + ["attack_minimum_added_cold_damage_with_axes"]=2134, + ["attack_minimum_added_cold_damage_with_bows"]=2135, + ["attack_minimum_added_cold_damage_with_claws"]=2136, + ["attack_minimum_added_cold_damage_with_daggers"]=2137, + ["attack_minimum_added_cold_damage_with_maces"]=2138, + ["attack_minimum_added_cold_damage_with_staves"]=2139, + ["attack_minimum_added_cold_damage_with_swords"]=2140, + ["attack_minimum_added_cold_damage_with_wand"]=2141, + ["attack_minimum_added_fire_damage"]=1408, + ["attack_minimum_added_fire_damage_per_10_strength"]=4943, + ["attack_minimum_added_fire_damage_with_axes"]=2126, + ["attack_minimum_added_fire_damage_with_bow"]=2127, + ["attack_minimum_added_fire_damage_with_claws"]=2128, + ["attack_minimum_added_fire_damage_with_daggers"]=2129, + ["attack_minimum_added_fire_damage_with_maces"]=2130, + ["attack_minimum_added_fire_damage_with_staves"]=2131, + ["attack_minimum_added_fire_damage_with_swords"]=2132, + ["attack_minimum_added_fire_damage_with_wand"]=2133, + ["attack_minimum_added_lightning_damage"]=1428, + ["attack_minimum_added_lightning_damage_per_10_dex"]=4945, + ["attack_minimum_added_lightning_damage_per_10_int"]=4946, + ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4947, + ["attack_minimum_added_lightning_damage_with_axes"]=2142, + ["attack_minimum_added_lightning_damage_with_bows"]=2143, + ["attack_minimum_added_lightning_damage_with_claws"]=2144, + ["attack_minimum_added_lightning_damage_with_daggers"]=2145, + ["attack_minimum_added_lightning_damage_with_maces"]=2146, + ["attack_minimum_added_lightning_damage_with_staves"]=2147, + ["attack_minimum_added_lightning_damage_with_swords"]=2148, + ["attack_minimum_added_lightning_damage_with_wand"]=2149, + ["attack_minimum_added_melee_lightning_damage_while_unarmed"]=2486, + ["attack_minimum_added_physical_damage"]=1314, + ["attack_minimum_added_physical_damage_if_have_crit_recently"]=4948, + ["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=4383, + ["attack_minimum_added_physical_damage_per_25_dexterity"]=3455, + ["attack_minimum_added_physical_damage_per_25_strength"]=4949, + ["attack_minimum_added_physical_damage_per_level"]=4950, + ["attack_minimum_added_physical_damage_while_holding_a_shield"]=2125, + ["attack_minimum_added_physical_damage_while_unarmed"]=2124, + ["attack_minimum_added_physical_damage_with_axes"]=2116, + ["attack_minimum_added_physical_damage_with_bow"]=2117, + ["attack_minimum_added_physical_damage_with_claws"]=2118, + ["attack_minimum_added_physical_damage_with_daggers"]=2119, + ["attack_minimum_added_physical_damage_with_maces"]=2120, + ["attack_minimum_added_physical_damage_with_staves"]=2121, + ["attack_minimum_added_physical_damage_with_swords"]=2122, + ["attack_minimum_added_physical_damage_with_wands"]=2123, + ["attack_minimum_added_physical_damage_with_weapons"]=1316, + ["attack_physical_damage_%_to_add_as_cold"]=3835, + ["attack_physical_damage_%_to_add_as_fire"]=3834, + ["attack_physical_damage_%_to_add_as_lightning"]=3836, + ["attack_physical_damage_%_to_convert_to_cold"]=4952, + ["attack_physical_damage_%_to_convert_to_fire"]=4953, + ["attack_physical_damage_%_to_convert_to_lightning"]=4954, + ["attack_projectiles_fork"]=4955, + ["attack_projectiles_fork_additional_times"]=4956, + ["attack_projectiles_return"]=2882, + ["attack_repeat_count"]=1946, + ["attack_skill_additional_num_projectiles_while_wielding_claws_daggers"]=4957, + ["attack_skill_ailment_damage_+%_while_wielding_axes_swords"]=4958, + ["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=2766, + ["attack_skills_additional_ballista_totems_allowed"]=4305, + ["attack_skills_additional_totems_allowed"]=4306, + ["attack_skills_damage_+%_while_dual_wielding"]=1325, + ["attack_skills_damage_+%_while_holding_shield"]=1254, + ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=4959, + ["attack_speed_+%"]=1458, + ["attack_speed_+%_during_flask_effect"]=3360, + ["attack_speed_+%_final_per_blitz_charge"]=4965, + ["attack_speed_+%_for_4_seconds_on_attack"]=3594, + ["attack_speed_+%_if_cast_a_mark_spell_recently"]=4966, + ["attack_speed_+%_if_changed_stance_recently"]=10394, + ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4967, + ["attack_speed_+%_if_enemy_killed_recently"]=4968, + ["attack_speed_+%_if_enemy_not_killed_recently"]=4293, + ["attack_speed_+%_if_have_been_hit_recently"]=4969, + ["attack_speed_+%_if_have_blocked_recently"]=4970, + ["attack_speed_+%_if_have_crit_recently"]=4971, + ["attack_speed_+%_if_havent_cast_dash_recently"]=4972, + ["attack_speed_+%_if_not_gained_frenzy_charge_recently"]=4973, + ["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=4974, + ["attack_speed_+%_if_you_have_at_least_600_strength"]=4975, + ["attack_speed_+%_per_10_dex"]=2594, + ["attack_speed_+%_per_200_accuracy_rating"]=4298, + ["attack_speed_+%_per_25_dex"]=4976, + ["attack_speed_+%_per_enemy_in_close_range"]=4960, + ["attack_speed_+%_per_explicit_map_mod_affecting_area"]=4961, + ["attack_speed_+%_per_fortification"]=4962, + ["attack_speed_+%_per_frenzy_charge"]=2094, + ["attack_speed_+%_per_minion_up_to_80%"]=4963, + ["attack_speed_+%_per_rage"]=4977, + ["attack_speed_+%_when_hit"]=3263, + ["attack_speed_+%_when_on_full_life"]=1269, + ["attack_speed_+%_when_on_low_life"]=1268, + ["attack_speed_+%_while_affected_by_precision"]=4978, + ["attack_speed_+%_while_chilled"]=4979, + ["attack_speed_+%_while_holding_shield"]=1465, + ["attack_speed_+%_while_ignited"]=2998, + ["attack_speed_+%_while_in_sand_stance"]=4964, + ["attack_speed_+%_while_leeching"]=3270, + ["attack_speed_+%_while_not_on_low_mana"]=4980, + ["attack_speed_+%_while_phasing"]=4981, + ["attack_speed_+%_with_channelling_skills"]=4982, + ["attack_speed_+%_with_movement_skills"]=1480, + ["attack_speed_while_dual_wielding_+%"]=1463, + ["attack_speed_while_fortified_+%"]=3275, + ["attacks_bleed_on_hit_while_you_have_cat_stealth"]=4984, + ["attacks_bleed_on_stun"]=2534, + ["attacks_cause_bleeding_vs_cursed_enemies"]=4985, + ["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=4987, + ["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=4988, + ["attacks_chance_to_blind_on_hit_%"]=4989, + ["attacks_chance_to_poison_%_on_max_frenzy_charges"]=2100, + ["attacks_chance_to_taunt_on_hit_%"]=4990, + ["attacks_corrosion_on_hit_%"]=4991, + ["attacks_deal_no_physical_damage"]=2529, + ["attacks_do_not_cost_mana"]=1939, + ["attacks_impale_on_hit_%_chance"]=4992, + ["attacks_inflict_unnerve_on_crit"]=4993, + ["attacks_intimidate_on_hit_%"]=4994, + ["attacks_num_of_additional_chains"]=4189, + ["attacks_num_of_additional_chains_when_in_main_hand"]=4255, + ["attacks_number_of_additional_projectiles"]=4256, + ["attacks_number_of_additional_projectiles_when_in_off_hand"]=4257, + ["attacks_poison_while_at_max_frenzy_charges"]=2099, + ["attacks_use_life_in_place_of_mana"]=11023, + ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4997, + ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4998, + ["attacks_with_this_weapon_maximum_es_%_to_add_as_cold_damage"]=4995, + ["attacks_with_this_weapon_maximum_mana_%_to_add_as_fire_damage"]=4996, + ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4997, + ["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=4998, + ["attacks_with_two_handed_weapons_impale_on_hit_%_chance"]=4999, + ["attacks_you_use_yourself_attack_speed_+%_final_from_lioneye_glare"]=1948, + ["attacks_you_use_yourself_repeat_count"]=1947, + ["attribute_requirement_+%_for_equipped_armour"]=5000, + ["attribute_requirement_+%_for_equipped_weapons"]=5001, + ["attribute_requirements_can_be_satisfied_by_%_of_ascendance"]=1237, + ["aura_effect_+%"]=2877, + ["aura_effect_+%_on_self_from_allied_auras"]=5003, + ["aura_effect_on_self_from_skills_+%_per_herald_effecting_you"]=5002, + ["aura_effect_on_self_from_your_skills_+%"]=3629, + ["aura_grant_shield_defences_to_nearby_allies"]=3524, + ["aura_melee_physical_damage_+%_per_10_strength"]=3510, + ["aura_skill_gem_level_+"]=5004, + ["auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies"]=3519, + ["auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"]=3520, + ["auras_grant_damage_+%_to_you_and_your_allies"]=3518, + ["auras_grant_life_mana_es_recovery_rate_+%_to_you_and_your_allies"]=5005, + ["avatar_of_fire_rotation_active"]=11030, + ["avians_flight_duration_ms_+"]=5006, + ["avians_might_duration_ms_+"]=5007, + ["avoid_ailments_%_from_crit"]=5008, + ["avoid_ailments_%_on_consecrated_ground"]=3615, + ["avoid_ailments_%_while_holding_shield"]=5009, + ["avoid_all_elemental_ailment_%_per_summoned_golem"]=5010, + ["avoid_all_elemental_status_%"]=1890, + ["avoid_all_elemental_status_%_per_stackable_unique_jewel"]=4218, + ["avoid_blind_%"]=2625, + ["avoid_chained_projectile_%_chance"]=5011, + ["avoid_chaos_damage_%"]=3436, + ["avoid_chill_freeze_while_casting_%"]=5012, + ["avoid_cold_damage_%"]=3434, + ["avoid_corrupted_blood_%_chance"]=5013, + ["avoid_damage_%"]=5014, + ["avoid_elemental_ailments_%_while_affected_by_elusive"]=5015, + ["avoid_elemental_ailments_%_while_phasing"]=5016, + ["avoid_elemental_damage_%_per_frenzy_charge"]=3432, + ["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=5017, + ["avoid_elemental_damage_while_phasing_%"]=5018, + ["avoid_fire_damage_%"]=3433, + ["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=5019, + ["avoid_freeze_chill_ignite_%_while_have_onslaught"]=3096, + ["avoid_freeze_chill_ignite_%_with_her_blessing"]=3340, + ["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=4143, + ["avoid_ignite_%_when_on_low_life"]=1894, + ["avoid_impale_%"]=5020, + ["avoid_interruption_while_casting_%"]=1945, + ["avoid_knockback_%"]=1568, + ["avoid_lightning_damage_%"]=3435, + ["avoid_maim_%_chance"]=5021, + ["avoid_non_damaging_ailments_%_per_missing_barkskin_stack"]=5022, + ["avoid_physical_damage_%"]=3431, + ["avoid_physical_damage_%_while_phasing"]=5023, + ["avoid_projectiles_%_chance_if_taken_projectile_damage_recently"]=5024, + ["avoid_projectiles_while_phasing_%_chance"]=5025, + ["avoid_shock_%_while_chilled"]=5026, + ["avoid_status_ailments_%_during_flask_effect"]=3359, + ["avoid_stun_%"]=1897, + ["avoid_stun_%_for_4_seconds_on_kill"]=3386, + ["avoid_stun_%_while_channeling_snipe"]=5028, + ["avoid_stun_%_while_channelling"]=5029, + ["avoid_stun_%_while_holding_shield"]=5030, + ["avoid_stun_35%_per_active_herald"]=5027, + ["axe_accuracy_rating"]=2054, + ["axe_accuracy_rating_+%"]=1486, + ["axe_ailment_damage_+%"]=1352, + ["axe_attack_speed_+%"]=1468, + ["axe_critical_strike_chance_+%"]=1519, + ["axe_critical_strike_multiplier_+"]=1542, + ["axe_damage_+%"]=1349, + ["axe_hit_and_ailment_damage_+%"]=1350, + ["axe_mastery_hit_and_ailment_damage_+%_final_vs_enemies_on_low_life"]=5031, + ["axe_or_sword_ailment_damage_+%"]=1399, + ["axe_or_sword_hit_and_ailment_damage_+%"]=1398, + ["azmeri_primalist_wisps_found_+%"]=5032, + ["azmeri_voodoo_shaman_wisps_found_+%"]=5033, + ["azmeri_warden_wisps_found_+%"]=5034, + ["ball_lightning_damage_+%"]=3227, + ["ball_lightning_number_of_additional_projectiles"]=5035, + ["ball_lightning_projectile_speed_+%"]=3951, + ["ball_lightning_radius_+%"]=3884, + ["banner_affected_enemies_damage_taken_+%"]=5036, + ["banner_affected_enemies_explode_for_10%_life_as_physical_on_kill_chance_%"]=5037, + ["banner_affected_enemies_maimed"]=5038, + ["banner_area_of_effect_+%"]=5039, + ["banner_aura_effect_+%"]=3422, + ["banner_buff_lingers_for_X_seconds_after_leaving_area"]=5040, + ["banner_duration_+%"]=5041, + ["banner_gain_X_endurance_charges_when_placed_with_max_resources"]=5042, + ["banner_gain_X_frenzy_charges_when_placed_with_max_resources"]=5043, + ["banner_gain_X_resources_on_warcry"]=5044, + ["banner_grant_1_fortify_when_placed_per_X_resources_from_runegraft"]=5045, + ["banner_grant_x_damage_over_time_multiplier_per_2_valour_consumed"]=5046, + ["banner_mana_reservation_+%"]=5047, + ["banner_recover_X%_life_when_placed_per_5_resources"]=5048, + ["banner_remove_random_ailment_when_placed_with_X_resources"]=5049, + ["banner_resist_all_elements_%"]=5050, + ["banner_resource_gained_+%"]=5051, + ["banner_resource_maximum_+"]=5052, + ["banner_skills_mana_reservation_efficiency_+%"]=5054, + ["banner_skills_mana_reservation_efficiency_-2%_per_1"]=5053, + ["banner_skills_reserve_no_mana"]=5055, + ["barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge"]=5056, + ["barrage_attack_speed_+%"]=3920, + ["barrage_damage_+%"]=3721, + ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=3324, + ["barrage_num_of_additional_projectiles"]=4009, + ["basalt_flask_armour_+%_final"]=5057, + ["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3847, + ["base_actor_scale_+%"]=2104, + ["base_adaptation_rating"]=1578, + ["base_additional_physical_damage_reduction_%"]=2320, + ["base_aggravate_bleeding_on_attack_hit_chance_%"]=4676, + ["base_ailment_damage_+%"]=5058, + ["base_all_ailment_duration_+%"]=1907, + ["base_all_ailment_duration_+%_if_you_have_not_applied_that_ailment_recently"]=5059, + ["base_all_ailment_duration_on_self_+%"]=5060, + ["base_all_damage_can_cause_elemental_ailments_you_are_suffering_from"]=2922, + ["base_always_inflict_elemental_ailments_you_are_suffering_from"]=5061, + ["base_armour_%_applies_to_chaos_damage"]=5062, + ["base_armour_%_applies_to_lightning_damage"]=5063, + ["base_armour_applies_to_chaos_damage"]=5064, + ["base_armour_applies_to_lightning_damage"]=5065, + ["base_arrow_speed_+%"]=1844, + ["base_arrows_always_pierce"]=5066, + ["base_attack_block_luck"]=5067, + ["base_attack_damage_penetrates_chaos_resist_%"]=3623, + ["base_attack_damage_penetrates_cold_resist_%"]=3621, + ["base_attack_damage_penetrates_elemental_resist_%"]=3618, + ["base_attack_damage_penetrates_fire_resist_%"]=3620, + ["base_attack_damage_penetrates_lightning_resist_%"]=3622, + ["base_attack_skill_cost_efficiency_+%"]=5068, + ["base_attack_skill_cost_life_instead_of_mana_%"]=3854, + ["base_attack_speed_+%_per_frenzy_charge"]=2096, + ["base_aura_area_of_effect_+%"]=2271, + ["base_aura_skills_affecting_allies_also_affect_enemies"]=5069, + ["base_avoid_bleed_%"]=4276, + ["base_avoid_chill_%"]=1891, + ["base_avoid_chill_%_while_have_onslaught"]=3088, + ["base_avoid_freeze_%"]=1892, + ["base_avoid_ignite_%"]=1893, + ["base_avoid_poison_%"]=1896, + ["base_avoid_projectiles_%_chance"]=5070, + ["base_avoid_shock_%"]=1895, + ["base_avoid_stun_%"]=1898, + ["base_bleed_duration_+%"]=5071, + ["base_block_%_damage_taken"]=5073, + ["base_block_luck"]=5072, + ["base_bone_golem_granted_buff_effect_+%"]=5074, + ["base_can_gain_banner_resource"]=1185, + ["base_cannot_be_chilled"]=1884, + ["base_cannot_be_damaged"]=1637, + ["base_cannot_be_frozen"]=1885, + ["base_cannot_be_frozen_if_6_redeemer_items"]=4546, + ["base_cannot_be_ignited"]=1886, + ["base_cannot_be_shocked"]=1888, + ["base_cannot_be_stunned"]=2220, + ["base_cannot_be_stunned_if_6_elder_items"]=4547, + ["base_cannot_evade"]=1965, + ["base_cannot_gain_bleeding"]=4275, + ["base_cannot_gain_endurance_charges"]=5075, + ["base_cannot_leech"]=2515, + ["base_cannot_leech_energy_shield"]=5076, + ["base_cannot_leech_life"]=2617, + ["base_cannot_leech_mana"]=2618, + ["base_cast_speed_+%"]=1494, + ["base_chance_to_deal_triple_damage_%"]=5077, + ["base_chance_to_freeze_%"]=2076, + ["base_chance_to_ignite_%"]=2073, + ["base_chance_to_poison_on_hit_%"]=3232, + ["base_chance_to_shock_%"]=2080, + ["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1993, + ["base_chaos_damage_can_ignite"]=5078, + ["base_chaos_damage_damages_energy_shield_%"]=5079, + ["base_chaos_damage_resistance_%"]=1688, + ["base_chaos_damage_taken_per_minute"]=1994, + ["base_chaos_golem_granted_buff_effect_+%"]=4160, + ["base_charge_duration_+%"]=5080, + ["base_cold_damage_%_to_convert_to_chaos"]=2016, + ["base_cold_damage_%_to_convert_to_fire"]=2015, + ["base_cold_damage_can_poison"]=2923, + ["base_cold_damage_heals"]=3093, + ["base_cold_damage_resistance_%"]=1678, + ["base_cold_immunity"]=4162, + ["base_convert_%_physical_damage_to_random_element"]=2008, + ["base_cooldown_refresh_chance_%"]=5081, + ["base_cooldown_speed_+%"]=5082, + ["base_cooldown_speed_+%_if_2_shaper_items"]=4507, + ["base_cost_+%"]=1928, + ["base_cost_efficiency_+%_of_retaliation_skills"]=5083, + ["base_critical_strike_multiplier_+"]=1535, + ["base_curse_duration_+%"]=1828, + ["base_damage_bypass_ward_%"]=5084, + ["base_damage_removed_from_mana_before_life_%"]=2750, + ["base_damage_taken_+%"]=2285, + ["base_deal_no_chaos_damage"]=5085, + ["base_deal_no_cold_damage"]=2850, + ["base_deal_no_fire_damage"]=5086, + ["base_deal_no_lightning_damage"]=5087, + ["base_deal_no_physical_damage"]=2848, + ["base_elemental_damage_heals"]=3095, + ["base_elemental_skill_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items"]=5088, + ["base_elemental_status_ailment_duration_+%"]=1908, + ["base_elemental_support_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items"]=5089, + ["base_enemy_critical_strike_chance_+%_against_self"]=3188, + ["base_enemy_extra_damage_rolls"]=5090, + ["base_energy_shield_gained_on_enemy_death"]=2621, + ["base_energy_shield_leech_from_chaos_damage_permyriad"]=5091, + ["base_energy_shield_leech_from_cold_damage_permyriad"]=5092, + ["base_energy_shield_leech_from_elemental_damage_permyriad"]=5093, + ["base_energy_shield_leech_from_elemental_damage_permyriad_if_2_shaper_items"]=4508, + ["base_energy_shield_leech_from_fire_damage_permyriad"]=5094, + ["base_energy_shield_leech_from_lightning_damage_permyriad"]=5095, + ["base_energy_shield_leech_from_physical_damage_permyriad"]=5096, + ["base_energy_shield_leech_from_physical_damage_permyriad_if_2_elder_items"]=4509, + ["base_energy_shield_leech_from_spell_damage_permyriad"]=1769, + ["base_energy_shield_regeneration_rate_per_minute"]=2695, + ["base_energy_shield_regeneration_rate_per_minute_%"]=2696, + ["base_es_cost_+"]=1934, + ["base_evasion_rating"]=1590, + ["base_extra_damage_rolls"]=5097, + ["base_fire_damage_%_to_convert_to_chaos"]=2017, + ["base_fire_damage_%_to_convert_to_chaos_60%_value"]=2018, + ["base_fire_damage_can_poison"]=2924, + ["base_fire_damage_heals"]=3092, + ["base_fire_damage_resistance_%"]=1672, + ["base_fire_elemental_maximum_life_+%"]=1819, + ["base_fire_golem_granted_buff_effect_+%"]=4157, + ["base_fire_hit_damage_taken_%_as_physical"]=2494, + ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2495, + ["base_fire_immunity"]=1653, + ["base_frenzy_charge_duration_+%"]=2174, + ["base_frozen_effect_on_self_+%"]=5098, + ["base_ghost_totem_duration"]=5099, + ["base_global_chance_to_knockback_%"]=2042, + ["base_ice_golem_granted_buff_effect_+%"]=4158, + ["base_immune_to_chill"]=2952, + ["base_immune_to_cold_ailments"]=5100, + ["base_immune_to_freeze"]=5101, + ["base_immune_to_ignite"]=5102, + ["base_immune_to_shock"]=5103, + ["base_inflict_cold_exposure_on_hit_%_chance"]=5104, + ["base_inflict_fire_exposure_on_hit_%_chance"]=5105, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=5106, + ["base_item_found_quantity_+%"]=1639, + ["base_item_found_rarity_+%"]=1643, + ["base_killed_monster_dropped_item_quantity_+%"]=2060, + ["base_killed_monster_dropped_item_rarity_+%"]=2059, + ["base_leech_is_instant_on_critical"]=2588, + ["base_life_cost_+"]=1935, + ["base_life_cost_+%"]=1929, + ["base_life_cost_efficiency_+%"]=5107, + ["base_life_gain_per_target"]=1787, + ["base_life_gained_on_enemy_death"]=1795, + ["base_life_gained_on_spell_hit"]=1786, + ["base_life_leech_applies_recovery_to_energy_shield"]=5108, + ["base_life_leech_from_attack_damage_permyriad"]=1711, + ["base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1740, + ["base_life_leech_from_chaos_damage_permyriad"]=1729, + ["base_life_leech_from_cold_damage_permyriad"]=1722, + ["base_life_leech_from_elemental_damage_permyriad"]=1733, + ["base_life_leech_from_fire_damage_permyriad"]=1717, + ["base_life_leech_from_lightning_damage_permyriad"]=1726, + ["base_life_leech_from_physical_damage_permyriad"]=1713, + ["base_life_leech_from_spell_damage_permyriad"]=1710, + ["base_life_leech_is_instant"]=2586, + ["base_life_leech_permyriad_vs_frozen_enemies"]=1738, + ["base_life_leech_permyriad_vs_shocked_enemies"]=1735, + ["base_life_regeneration_rate_per_minute"]=1620, + ["base_life_reservation_+%"]=2274, + ["base_life_reservation_efficiency_+%"]=2273, + ["base_lightning_damage_%_to_convert_to_chaos"]=2013, + ["base_lightning_damage_%_to_convert_to_chaos_60%_value"]=2014, + ["base_lightning_damage_%_to_convert_to_cold"]=2012, + ["base_lightning_damage_%_to_convert_to_fire"]=2011, + ["base_lightning_damage_can_poison"]=2925, + ["base_lightning_damage_heals"]=3094, + ["base_lightning_damage_resistance_%"]=1683, + ["base_lightning_golem_granted_buff_effect_+%"]=4159, + ["base_lightning_immunity"]=4163, + ["base_main_hand_damage_+%"]=1330, + ["base_main_hand_maim_on_hit_%"]=5109, + ["base_mana_cost_+"]=1936, + ["base_mana_cost_+_with_channelling_skills"]=10231, + ["base_mana_cost_+_with_non_channelling_skills"]=10233, + ["base_mana_cost_-%"]=1930, + ["base_mana_cost_efficiency_+%"]=5110, + ["base_mana_cost_efficiency_+%_for_2_seconds_when_you_spend_800_mana"]=5111, + ["base_mana_cost_efficiency_+%_of_curse_skills"]=5112, + ["base_mana_cost_efficiency_+%_of_link_skills"]=5113, + ["base_mana_cost_efficiency_+%_of_mark_skills"]=5114, + ["base_mana_cost_efficiency_+%_of_minion_skills"]=5115, + ["base_mana_cost_efficiency_+%_of_retaliation_skills"]=5116, + ["base_mana_cost_efficiency_+%_of_trap_and_mine_skills"]=5117, + ["base_mana_cost_efficiency_+%_per_10_devotion"]=5118, + ["base_mana_cost_efficiency_+%_per_endurance_charge"]=5119, + ["base_mana_cost_efficiency_+%_while_on_low_mana"]=5120, + ["base_mana_gained_on_enemy_death"]=1810, + ["base_mana_leech_from_attack_damage_permyriad"]=1752, + ["base_mana_leech_from_chaos_damage_permyriad"]=1761, + ["base_mana_leech_from_cold_damage_permyriad"]=1757, + ["base_mana_leech_from_elemental_damage_permyriad"]=1763, + ["base_mana_leech_from_fire_damage_permyriad"]=1755, + ["base_mana_leech_from_lightning_damage_permyriad"]=1759, + ["base_mana_leech_from_physical_damage_permyriad"]=1753, + ["base_mana_leech_from_spell_damage_permyriad"]=1751, + ["base_mana_leech_permyriad_vs_shocked_enemies"]=1765, + ["base_mana_regeneration_rate_per_minute"]=1629, + ["base_mana_reservation_+%"]=2276, + ["base_mana_reservation_efficiency_+%"]=2275, + ["base_max_fortification"]=5121, + ["base_max_fortification_per_endurance_charge"]=4453, + ["base_maximum_chaos_damage_resistance_%"]=1687, + ["base_maximum_chaos_damage_resistance_%_if_4_hunter_items"]=4528, + ["base_maximum_cold_damage_resistance_%"]=1676, + ["base_maximum_cold_damage_resistance_%_if_4_redeemer_items"]=4529, + ["base_maximum_energy_shield"]=1604, + ["base_maximum_energy_shield_per_blue_socket_on_item"]=2778, + ["base_maximum_fire_damage_resistance_%"]=1670, + ["base_maximum_fire_damage_resistance_%_if_4_warlord_items"]=4530, + ["base_maximum_fragile_regrowth"]=4462, + ["base_maximum_life"]=1615, + ["base_maximum_life_per_red_socket_on_item"]=2767, + ["base_maximum_lightning_damage_on_charge_expiry"]=2607, + ["base_maximum_lightning_damage_resistance_%"]=1681, + ["base_maximum_lightning_damage_resistance_%_if_4_crusader_items"]=4531, + ["base_maximum_mana"]=1626, + ["base_maximum_mana_per_green_socket_on_item"]=2773, + ["base_maximum_spell_block_%"]=2036, + ["base_maximum_spell_block_%_if_4_shaper_items"]=4532, + ["base_melee_critical_strike_chance_while_unarmed_%"]=3631, + ["base_minimum_endurance_charges"]=1850, + ["base_minimum_frenzy_charges"]=1855, + ["base_minimum_lightning_damage_on_charge_expiry"]=2607, + ["base_minimum_power_charges"]=1860, + ["base_minion_dot_multiplier_+"]=1290, + ["base_minion_duration_+%"]=5122, + ["base_movement_velocity_+%"]=1845, + ["base_movement_velocity_+%_if_4_hunter_items"]=4533, + ["base_no_mana"]=2226, + ["base_non_chaos_damage_bypass_energy_shield_%"]=680, + ["base_number_of_animated_weapons_allowed"]=9690, + ["base_number_of_arbalists"]=9691, + ["base_number_of_champions_of_light_allowed"]=5123, + ["base_number_of_essence_spirits_allowed"]=796, + ["base_number_of_golems_allowed"]=3750, + ["base_number_of_herald_scorpions_allowed"]=5124, + ["base_number_of_raging_spirits_allowed"]=2210, + ["base_number_of_relics_allowed"]=5125, + ["base_number_of_remote_mines_allowed"]=2300, + ["base_number_of_sacred_wisps_allowed"]=5126, + ["base_number_of_sigils_allowed_per_target"]=5127, + ["base_number_of_skeletons_allowed"]=2209, + ["base_number_of_spectres_allowed"]=2208, + ["base_number_of_support_ghosts_allowed"]=5128, + ["base_number_of_totems_allowed"]=2298, + ["base_number_of_traps_allowed"]=2299, + ["base_number_of_zombies_allowed"]=2207, + ["base_off_hand_attack_speed_+%"]=1464, + ["base_off_hand_chance_to_blind_on_hit_%"]=5129, + ["base_off_hand_damage_+%"]=1331, + ["base_onlsaught_on_hit_%_chance"]=5130, + ["base_penetrate_elemental_resistances_%"]=3619, + ["base_physical_damage_%_to_convert_to_chaos"]=2009, + ["base_physical_damage_%_to_convert_to_chaos_per_level"]=5132, + ["base_physical_damage_%_to_convert_to_cold"]=2004, + ["base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=5133, + ["base_physical_damage_%_to_convert_to_fire"]=2002, + ["base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=5134, + ["base_physical_damage_%_to_convert_to_lightning"]=2006, + ["base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=5135, + ["base_physical_damage_over_time_taken_+%"]=5131, + ["base_physical_damage_reduction_and_evasion_rating"]=4326, + ["base_physical_damage_reduction_rating"]=1585, + ["base_poison_damage_+%"]=3241, + ["base_poison_duration_+%"]=3229, + ["base_projectile_speed_+%"]=1843, + ["base_rage_cost_+%"]=1931, + ["base_rage_cost_efficiency_+%"]=5136, + ["base_raven_maximum_life_+%"]=1820, + ["base_reduce_enemy_cold_resistance_%"]=3041, + ["base_reduce_enemy_fire_resistance_%"]=3039, + ["base_reduce_enemy_lightning_resistance_%"]=3042, + ["base_remove_elemental_ailments_from_you_when_you_inflict_them"]=10068, + ["base_reservation_+%"]=2278, + ["base_reservation_efficiency_+%"]=2277, + ["base_resist_all_elements_%"]=1666, + ["base_self_chill_duration_-%"]=1919, + ["base_self_critical_strike_multiplier_-%"]=1559, + ["base_self_freeze_duration_-%"]=1921, + ["base_self_ignite_duration_-%"]=1922, + ["base_self_shock_duration_-%"]=1920, + ["base_should_have_onslaught_from_stat"]=3657, + ["base_skill_area_of_effect_+%"]=1927, + ["base_skill_area_of_effect_+%_per_red_socket_on_item"]=2769, + ["base_skill_cost_efficiency_+%"]=5137, + ["base_skill_cost_life_instead_of_mana"]=202, + ["base_skill_cost_life_instead_of_mana_%"]=5138, + ["base_skill_gain_es_cost_%_of_mana_cost"]=5139, + ["base_skill_gain_life_cost_%_of_mana_cost"]=5140, + ["base_skill_reserve_life_instead_of_mana"]=203, + ["base_skills_cost_es_instead_of_mana_life"]=5141, + ["base_spectre_maximum_life_+%"]=1817, + ["base_spell_block_%"]=1207, + ["base_spell_block_luck"]=1206, + ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=5142, + ["base_spell_critical_strike_chance"]=1503, + ["base_spell_critical_strike_multiplier_+"]=1539, + ["base_spell_damage_%_suppressed"]=1189, + ["base_spell_mana_cost_efficiency_+%"]=5143, + ["base_spell_projectile_block_%"]=5144, + ["base_spell_skill_cost_efficiency_+%"]=5145, + ["base_spell_suppression_chance_%"]=1191, + ["base_spell_suppression_chance_150%_of_value"]=1190, + ["base_spells_you_cast_yourself_mana_cost_efficiency_+%"]=5146, + ["base_spells_you_cast_yourself_skill_cost_efficiency_+%"]=5147, + ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=3050, + ["base_stone_golem_granted_buff_effect_+%"]=4156, + ["base_strength_and_intelligence"]=496, + ["base_stun_duration_+%"]=1910, + ["base_stun_recovery_+%"]=1949, + ["base_stun_threshold_reduction_+%"]=1564, + ["base_tincture_mod_effect_+%"]=5148, + ["base_total_number_of_sigils_allowed"]=5149, + ["base_unaffected_by_bleeding"]=5150, + ["base_unaffected_by_poison"]=5151, + ["base_unaffected_by_poison_if_2_hunter_items"]=4510, + ["base_ward"]=1573, + ["base_weapon_trap_rotation_speed_+%"]=5152, + ["base_weapon_trap_total_rotation_%"]=5153, + ["base_your_auras_are_disabled"]=5154, + ["base_zombie_maximum_life_+%"]=1818, + ["battlemages_cry_buff_effect_+%"]=5155, + ["battlemages_cry_exerts_x_additional_attacks"]=5156, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=5159, + ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=5160, + ["bear_trap_cooldown_speed_+%"]=3938, + ["bear_trap_damage_+%"]=3766, + ["bear_trap_damage_taken_+%_from_traps_and_mines"]=5161, + ["bear_trap_movement_speed_+%_final"]=5162, + ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=5163, + ["berserk_buff_effect_+%"]=5164, + ["berserk_rage_loss_+%"]=5165, + ["berserker_damage_+%_final"]=4114, + ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=5166, + ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=5167, + ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=5168, + ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=5169, + ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=5170, + ["bird_aspect_reserves_no_mana"]=5171, + ["blackhole_damage_taken_+%"]=5172, + ["blackhole_pulse_frequency_+%"]=5173, + ["blackstar_moonlight_cold_damage_taken_+%_final"]=5174, + ["blackstar_moonlight_fire_damage_taken_+%_final"]=5175, + ["blackstar_sunlight_cold_damage_taken_+%_final"]=5176, + ["blackstar_sunlight_fire_damage_taken_+%_final"]=5177, + ["blade_blase_damage_+%"]=5178, + ["blade_blast_skill_area_of_effect_+%"]=5179, + ["blade_blast_trigger_detonation_area_of_effect_+%"]=5180, + ["blade_trap_damage_+%"]=5181, + ["blade_trap_skill_area_of_effect_+%"]=5182, + ["blade_trap_skill_area_of_effect_+%_final"]=5183, + ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=5184, + ["blade_vortex_blade_deal_no_non_physical_damage"]=5185, + ["blade_vortex_critical_strike_multiplier_+_per_blade"]=5186, + ["blade_vortex_damage_+%"]=3789, + ["blade_vortex_duration_+%"]=3985, + ["blade_vortex_radius_+%"]=3901, + ["bladefall_critical_strike_chance_+%"]=4004, + ["bladefall_damage_+%"]=3790, + ["bladefall_number_of_volleys"]=5187, + ["bladefall_radius_+%"]=3902, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=5188, + ["bladestorm_damage_+%"]=5189, + ["bladestorm_maximum_number_of_storms_allowed"]=5190, + ["bladestorm_sandstorm_movement_speed_+%"]=5191, + ["blast_rain_%_chance_for_additional_blast"]=4168, + ["blast_rain_artillery_ballista_all_damage_can_poison"]=5192, + ["blast_rain_artillery_ballista_poison_damage_+100%_final_chance"]=5193, + ["blast_rain_damage_+%"]=3786, + ["blast_rain_number_of_blasts"]=4051, + ["blast_rain_radius_+%"]=3898, + ["blast_rain_single_additional_projectile"]=4052, + ["blazing_salvo_damage_+%"]=5194, + ["blazing_salvo_number_of_additional_projectiles"]=5195, + ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=5196, + ["bleed_damage_+%_per_endurance_charge"]=5197, + ["bleed_damage_+%_vs_maimed_enemies_final"]=4308, + ["bleed_dot_multiplier_+_per_impale_on_enemy"]=5198, + ["bleed_dot_multiplier_+_per_rage_if_equipped_axe"]=5199, + ["bleed_duration_per_12_intelligence_+%"]=3859, + ["bleed_on_bow_attack_chance_%"]=2538, + ["bleed_on_crit_%_with_attacks"]=2535, + ["bleed_on_hit_with_attacks_%"]=2539, + ["bleed_on_melee_attack_chance_%"]=2537, + ["bleed_on_melee_crit_chance_%"]=2536, + ["bleed_on_melee_critical_strike"]=4339, + ["bleeding_damage_+%"]=3228, + ["bleeding_damage_+%_vs_maimed_enemies"]=5200, + ["bleeding_damage_+%_vs_poisoned_enemies"]=5201, + ["bleeding_damage_on_self_converted_to_chaos"]=2499, + ["bleeding_dot_multiplier_+"]=1296, + ["bleeding_dot_multiplier_+_per_endurance_charge"]=5203, + ["bleeding_dot_multiplier_+_vs_poisoned_enemies"]=5204, + ["bleeding_dot_multiplier_per_frenzy_charge_+"]=5202, + ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3541, + ["bleeding_monsters_movement_velocity_+%"]=3024, + ["bleeding_on_self_expire_speed_+%_while_moving"]=5205, + ["bleeding_reflected_to_self"]=5206, + ["bleeding_stacks_up_to_x_times"]=5207, + ["blight_arc_tower_additional_chains"]=5208, + ["blight_arc_tower_additional_repeats"]=5209, + ["blight_arc_tower_chance_to_sap_%"]=5210, + ["blight_arc_tower_damage_+%"]=5211, + ["blight_arc_tower_range_+%"]=5212, + ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=5213, + ["blight_cast_speed_+%"]=5214, + ["blight_chilling_tower_chill_effect_+%"]=5215, + ["blight_chilling_tower_damage_+%"]=5216, + ["blight_chilling_tower_duration_+%"]=5217, + ["blight_chilling_tower_freeze_for_ms"]=5218, + ["blight_chilling_tower_range_+%"]=5219, + ["blight_damage_+%"]=3799, + ["blight_duration_+%"]=3987, + ["blight_empowering_tower_buff_effect_+%"]=5220, + ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=5223, + ["blight_empowering_tower_grant_cast_speed_+%"]=5221, + ["blight_empowering_tower_grant_damage_+%"]=5222, + ["blight_empowering_tower_range_+%"]=5224, + ["blight_fireball_tower_additional_projectiles_+"]=5225, + ["blight_fireball_tower_cast_speed_+%"]=5226, + ["blight_fireball_tower_damage_+%"]=5227, + ["blight_fireball_tower_projectiles_nova"]=5228, + ["blight_fireball_tower_range_+%"]=5229, + ["blight_flamethrower_tower_cast_speed_+%"]=5230, + ["blight_flamethrower_tower_chance_to_scorch_%"]=5231, + ["blight_flamethrower_tower_damage_+%"]=5232, + ["blight_flamethrower_tower_full_damage_fire_enemies"]=5233, + ["blight_flamethrower_tower_range_+%"]=5234, + ["blight_freezebolt_tower_chance_to_brittle_%"]=5235, + ["blight_freezebolt_tower_damage_+%"]=5236, + ["blight_freezebolt_tower_full_damage_cold_enemies"]=5237, + ["blight_freezebolt_tower_projectiles_+"]=5238, + ["blight_freezebolt_tower_range_+%"]=5239, + ["blight_glacialcage_tower_area_of_effect_+%"]=5240, + ["blight_glacialcage_tower_cooldown_recovery_+%"]=5241, + ["blight_glacialcage_tower_duration_+%"]=5242, + ["blight_glacialcage_tower_enemy_damage_taken_+%"]=5243, + ["blight_glacialcage_tower_range_+%"]=5244, + ["blight_hinder_enemy_chaos_damage_taken_+%"]=5245, + ["blight_imbuing_tower_buff_effect_+%"]=5246, + ["blight_imbuing_tower_grant_critical_strike_+%"]=5247, + ["blight_imbuing_tower_grant_damage_+%"]=5248, + ["blight_imbuing_tower_grants_onslaught"]=5249, + ["blight_imbuing_tower_range_+%"]=5250, + ["blight_lightningstorm_tower_area_of_effect_+%"]=5251, + ["blight_lightningstorm_tower_damage_+%"]=5252, + ["blight_lightningstorm_tower_delay_+%"]=5253, + ["blight_lightningstorm_tower_range_+%"]=5254, + ["blight_lightningstorm_tower_storms_on_enemies"]=5255, + ["blight_meteor_tower_additional_meteor_+"]=5256, + ["blight_meteor_tower_always_stun"]=5257, + ["blight_meteor_tower_creates_burning_ground_ms"]=5258, + ["blight_meteor_tower_damage_+%"]=5259, + ["blight_meteor_tower_range_+%"]=5260, + ["blight_radius_+%"]=3907, + ["blight_scout_tower_additional_minions_+"]=5261, + ["blight_scout_tower_minion_damage_+%"]=5262, + ["blight_scout_tower_minion_life_+%"]=5263, + ["blight_scout_tower_minion_movement_speed_+%"]=5264, + ["blight_scout_tower_minions_inflict_malediction"]=5265, + ["blight_scout_tower_range_+%"]=5266, + ["blight_secondary_skill_effect_duration_+%"]=5267, + ["blight_seismic_tower_additional_cascades_+"]=5268, + ["blight_seismic_tower_cascade_range_+%"]=5269, + ["blight_seismic_tower_damage_+%"]=5270, + ["blight_seismic_tower_range_+%"]=5271, + ["blight_seismic_tower_stun_duration_+%"]=5272, + ["blight_sentinel_tower_minion_damage_+%"]=5273, + ["blight_sentinel_tower_minion_life_+%"]=5274, + ["blight_sentinel_tower_minion_movement_speed_+%"]=5275, + ["blight_sentinel_tower_minions_life_leech_%"]=5276, + ["blight_sentinel_tower_range_+%"]=5277, + ["blight_shocking_tower_damage_+%"]=5278, + ["blight_shocking_tower_range_+%"]=5279, + ["blight_shocknova_tower_full_damage_lightning_enemies"]=5280, + ["blight_shocknova_tower_shock_additional_repeats"]=5281, + ["blight_shocknova_tower_shock_effect_+%"]=5282, + ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=5283, + ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=5284, + ["blight_smothering_tower_buff_effect_+%"]=5285, + ["blight_smothering_tower_freeze_shock_ignite_%"]=5286, + ["blight_smothering_tower_grant_damage_+%"]=5287, + ["blight_smothering_tower_grant_movement_speed_+%"]=5288, + ["blight_smothering_tower_range_+%"]=5289, + ["blight_stonegaze_tower_cooldown_recovery_+%"]=5290, + ["blight_stonegaze_tower_duration_+%"]=5291, + ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=5292, + ["blight_stonegaze_tower_petrify_tick_speed_+%"]=5293, + ["blight_stonegaze_tower_range_+%"]=5294, + ["blight_summoning_tower_minion_damage_+%"]=5295, + ["blight_summoning_tower_minion_life_+%"]=5296, + ["blight_summoning_tower_minion_movement_speed_+%"]=5297, + ["blight_summoning_tower_minions_summoned_+"]=5298, + ["blight_summoning_tower_range_+%"]=5299, + ["blight_temporal_tower_buff_effect_+%"]=5300, + ["blight_temporal_tower_grant_you_action_speed_-%"]=5301, + ["blight_temporal_tower_grants_stun_immunity"]=5302, + ["blight_temporal_tower_range_+%"]=5303, + ["blight_temporal_tower_tick_speed_+%"]=5304, + ["blight_tertiary_skill_effect_duration"]=5305, + ["blight_tower_arc_damage_+%"]=5306, + ["blight_tower_chilling_cost_+%"]=5307, + ["blight_tower_damage_per_tower_type_+%"]=5308, + ["blight_tower_fireball_additional_projectile"]=5309, + ["blighted_map_chest_reward_lucky_count"]=5310, + ["blighted_map_tower_damage_+%_final"]=5311, + ["blind_chilled_enemies_on_hit_%"]=5312, + ["blind_does_not_affect_chance_to_hit"]=5313, + ["blind_does_not_affect_light_radius"]=5314, + ["blind_duration_+%"]=3495, + ["blind_effect_+%"]=5315, + ["blind_enemies_when_hit_%_chance"]=5316, + ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=5317, + ["blind_nearby_enemies_when_gaining_her_blessing_%"]=3339, + ["blind_nearby_enemies_when_ignited_%"]=3100, + ["blind_reflected_to_self"]=5318, + ["blink_and_mirror_arrow_clones_inherit_gloves"]=5319, + ["blink_and_mirror_arrow_cooldown_speed_+%"]=5320, + ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3927, + ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3779, + ["blink_arrow_cooldown_speed_+%"]=3943, + ["block_%_damage_taken_from_elemental"]=5325, + ["block_%_if_blocked_an_attack_recently"]=5326, + ["block_%_while_affected_by_determination"]=5327, + ["block_and_stun_+%_recovery_per_fortification"]=5321, + ["block_causes_monster_flee_%"]=3018, + ["block_chance_%_per_50_strength"]=1200, + ["block_chance_%_vs_cursed_enemies"]=5322, + ["block_chance_%_vs_taunted_enemies"]=4249, + ["block_chance_%_while_holding_shield"]=1211, + ["block_chance_+%"]=1213, + ["block_chance_+%_per_100_life_spent_recently"]=5323, + ["block_chance_from_equipped_shield_is_%"]=5324, + ["block_chance_on_damage_taken_%"]=3276, + ["block_recovery_+%"]=1214, + ["block_spells_chance_%_while_holding_shield"]=5328, + ["block_while_dual_wielding_%"]=1209, + ["block_while_dual_wielding_claws_%"]=1210, + ["blood_footprints_from_item"]=11045, + ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=4165, + ["blood_rage_grants_additional_attack_speed_+%"]=4164, + ["blood_sand_armour_mana_reservation_+%"]=5329, + ["blood_sand_mana_reservation_efficiency_+%"]=5331, + ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=5330, + ["blood_sand_stance_buff_effect_+%"]=5332, + ["blood_spears_area_of_effect_+%"]=5333, + ["blood_spears_base_number_of_spears"]=5334, + ["blood_spears_damage_+%"]=5335, + ["bloodline_ground_brine_duration_ms"]=5336, + ["bloodreap_damage_+%"]=5337, + ["bloodreap_skill_area_of_effect_+%"]=5338, + ["body_armour_defences_doubled_while_no_gems_in_body_armour"]=5339, + ["body_armour_evasion_rating_+%"]=5340, + ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=5341, + ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=5342, + ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=5343, + ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=5344, + ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=5345, + ["body_armour_implicit_gain_power_charge_every_x_ms"]=5346, + ["body_armour_trigger_socketed_spell_on_unarmed_melee_critical_hit_cooldown"]=797, + ["bone_golem_damage_+%"]=5347, + ["bone_golem_elemental_resistances_%"]=5348, + ["bone_lance_cast_speed_+%"]=5349, + ["bone_lance_damage_+%"]=5350, + ["bone_offering_block_chance_+%"]=4180, + ["bone_offering_duration_+%"]=3961, + ["bone_offering_effect_+%"]=1219, + ["boneshatter_chance_to_gain_+1_trauma"]=5351, + ["boneshatter_damage_+%"]=5352, + ["boneshatter_stun_duration_+%"]=5353, + ["boots_implicit_accuracy_rating_+%_final"]=5354, + ["boots_implicit_ground_brittle_duration_ms"]=5355, + ["boots_implicit_ground_sapping_duration_ms"]=5356, + ["boots_implicit_ground_scorched_duration_ms"]=5357, + ["boots_mod_effect_+%"]=5358, + ["boss_maximum_life_+%_final"]=5359, + ["bow_accuracy_rating"]=2052, + ["bow_accuracy_rating_+%"]=1491, + ["bow_ailment_damage_+%"]=1382, + ["bow_attack_speed_+%"]=1473, + ["bow_attacks_have_culling_strike"]=5360, + ["bow_attacks_turn_frenzy_charges_into_additional_arrows"]=1840, + ["bow_attacks_usable_without_mana_cost"]=5361, + ["bow_critical_strike_chance_+%"]=1512, + ["bow_critical_strike_multiplier_+"]=1543, + ["bow_damage_+%"]=1379, + ["bow_elemental_damage_+%"]=1385, + ["bow_enemy_block_-%"]=1952, + ["bow_hit_and_ailment_damage_+%"]=1380, + ["bow_physical_damage_+%_while_holding_shield"]=2034, + ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=3010, + ["bow_stun_duration_+%"]=1912, + ["bow_stun_threshold_reduction_+%"]=1566, + ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=5362, + ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=5363, + ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=5364, + ["brands_reattach_on_activation"]=5365, + ["breach_ring_chayula_implicit"]=5366, + ["breach_ring_esh_implicit"]=5367, + ["breach_ring_tul_implicit"]=5368, + ["breach_ring_uulnetol_implicit"]=5369, + ["breach_ring_xoph_implicit"]=5370, + ["breachstone_commanders_%_drop_additional_fragments"]=5371, + ["breachstone_commanders_%_drop_additional_maps"]=5372, + ["breachstone_commanders_%_drop_additional_scarabs"]=5373, + ["breachstone_commanders_%_drop_additional_unique_items"]=5374, + ["breachstone_commanders_drop_additional_currency_items"]=5375, + ["breachstone_commanders_drop_additional_divination_cards"]=5376, + ["brequel_currency_fruit_X_lucky_rolls"]=5377, + ["brequel_currency_fruit_additional_10_items_%"]=10815, + ["brequel_currency_fruit_additional_3_items_%"]=5378, + ["brequel_currency_fruit_additional_item_%"]=5379, + ["brequel_currency_fruit_basic_currency_converted_to_shards"]=5380, + ["brequel_currency_fruit_can_create_graft_currency"]=5381, + ["brequel_currency_fruit_can_create_mutated_currency"]=5382, + ["brequel_currency_fruit_full_stack_chance_%"]=5383, + ["brequel_currency_fruit_gold_chance_%"]=5384, + ["brequel_currency_fruit_graft_currency_chance_+%"]=5385, + ["brequel_currency_fruit_mutated_currency_chance_+%"]=5386, + ["brequel_equipment_fruit_1h_weapon_chance_+%"]=5387, + ["brequel_equipment_fruit_2h_weapon_chance_+%"]=5388, + ["brequel_equipment_fruit_X_divine_rolls"]=5389, + ["brequel_equipment_fruit_additional_item_%"]=5390, + ["brequel_equipment_fruit_additional_item_level_%"]=5391, + ["brequel_equipment_fruit_amulet_chance_+%"]=5392, + ["brequel_equipment_fruit_armour_chance_+%"]=5393, + ["brequel_equipment_fruit_attack_modifier_chance_+%"]=5394, + ["brequel_equipment_fruit_attribute_modifier_chance_+%"]=5395, + ["brequel_equipment_fruit_belt_chance_+%"]=5396, + ["brequel_equipment_fruit_body_armour_chance_+%"]=5397, + ["brequel_equipment_fruit_boots_chance_+%"]=5398, + ["brequel_equipment_fruit_caster_modifier_chance_+%"]=5399, + ["brequel_equipment_fruit_chaos_modifier_chance_+%"]=5400, + ["brequel_equipment_fruit_cold_modifier_chance_+%"]=5401, + ["brequel_equipment_fruit_critical_modifier_chance_+%"]=5402, + ["brequel_equipment_fruit_defence_modifier_chance_+%"]=5403, + ["brequel_equipment_fruit_dexterity_requirement_chance_+%_final"]=5404, + ["brequel_equipment_fruit_fire_modifier_chance_+%"]=5405, + ["brequel_equipment_fruit_fractured_chance_%"]=5406, + ["brequel_equipment_fruit_gloves_chance_+%"]=5407, + ["brequel_equipment_fruit_helmet_chance_+%"]=5408, + ["brequel_equipment_fruit_intelligence_requirement_chance_+%_final"]=5409, + ["brequel_equipment_fruit_item_level_+"]=10816, + ["brequel_equipment_fruit_item_rarity_+%"]=5410, + ["brequel_equipment_fruit_jewel_chance_+%"]=5411, + ["brequel_equipment_fruit_jewel_enabled"]=5412, + ["brequel_equipment_fruit_jewellery_chance_+%"]=5413, + ["brequel_equipment_fruit_life_modifier_chance_+%"]=5414, + ["brequel_equipment_fruit_lightning_modifier_chance_+%"]=5415, + ["brequel_equipment_fruit_mana_modifier_chance_+%"]=5416, + ["brequel_equipment_fruit_mod_tier_rating_+"]=5417, + ["brequel_equipment_fruit_physical_modifier_chance_+%"]=5418, + ["brequel_equipment_fruit_quiver_chance_+%"]=5419, + ["brequel_equipment_fruit_ranged_weapon_chance_+%"]=5420, + ["brequel_equipment_fruit_remove_lowest_level_modifier"]=5421, + ["brequel_equipment_fruit_resistance_modifier_chance_+%"]=5422, + ["brequel_equipment_fruit_ring_chance_+%"]=5423, + ["brequel_equipment_fruit_shield_chance_+%"]=5424, + ["brequel_equipment_fruit_speed_modifier_chance_+%"]=5425, + ["brequel_equipment_fruit_strength_requirement_chance_+%_final"]=5426, + ["brequel_equipment_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls"]=5427, + ["brequel_equipment_fruit_weapon_and_armour_random_quality"]=5428, + ["brequel_equipment_fruit_weapon_chance_+%"]=5429, + ["brequel_graft_fruit_additional_item_%"]=5430, + ["brequel_graft_fruit_esh_chance_+%"]=5431, + ["brequel_graft_fruit_item_level_+"]=5432, + ["brequel_graft_fruit_item_rarity_+%"]=5433, + ["brequel_graft_fruit_mod_tier_rating_+"]=5434, + ["brequel_graft_fruit_random_quality"]=5435, + ["brequel_graft_fruit_tul_chance_+%"]=5436, + ["brequel_graft_fruit_uul_netol_chance_+%"]=5437, + ["brequel_graft_fruit_xoph_chance_+%"]=5438, + ["brequel_misc_fruit_additional_item_%"]=5157, + ["brequel_misc_fruit_common_rewards_chance_+%"]=5439, + ["brequel_misc_fruit_currency_fruit_chance_+%"]=5440, + ["brequel_misc_fruit_equipment_fruit_chance_+%"]=5441, + ["brequel_misc_fruit_graft_fruit_chance_+%"]=5442, + ["brequel_misc_fruit_other_fruits_enabled"]=5443, + ["brequel_misc_fruit_rarer_rewards_chance_+%"]=5444, + ["brequel_misc_fruit_unique_fruit_chance_+%"]=5445, + ["brequel_unique_fruit_1h_weapon_chance_+%"]=5446, + ["brequel_unique_fruit_2h_weapon_chance_+%"]=5447, + ["brequel_unique_fruit_X_divine_rolls"]=5448, + ["brequel_unique_fruit_X_lucky_rolls"]=5449, + ["brequel_unique_fruit_additional_item_%"]=5450, + ["brequel_unique_fruit_amulet_chance_+%"]=5451, + ["brequel_unique_fruit_armour_chance_+%"]=5452, + ["brequel_unique_fruit_belt_chance_+%"]=5453, + ["brequel_unique_fruit_body_armour_chance_+%"]=5454, + ["brequel_unique_fruit_boots_chance_+%"]=5455, + ["brequel_unique_fruit_dexterity_requirement_chance_+%"]=5456, + ["brequel_unique_fruit_flask_chance_+%"]=5457, + ["brequel_unique_fruit_gloves_chance_+%"]=5458, + ["brequel_unique_fruit_helmet_chance_+%"]=5459, + ["brequel_unique_fruit_intelligence_requirement_chance_+%"]=5460, + ["brequel_unique_fruit_jewel_chance_+%"]=5461, + ["brequel_unique_fruit_jewellery_chance_+%"]=5462, + ["brequel_unique_fruit_multiple_mutation_chance_%"]=5463, + ["brequel_unique_fruit_mutation_chance_+%"]=5464, + ["brequel_unique_fruit_non_mutated_items_are_corrupted"]=5465, + ["brequel_unique_fruit_quiver_chance_+%"]=5466, + ["brequel_unique_fruit_ranged_weapon_chance_+%"]=5467, + ["brequel_unique_fruit_ring_chance_+%"]=5468, + ["brequel_unique_fruit_shield_chance_+%"]=5469, + ["brequel_unique_fruit_special_unique_chance_+%"]=5158, + ["brequel_unique_fruit_strength_requirement_chance_+%"]=5470, + ["brequel_unique_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls"]=5471, + ["brequel_unique_fruit_weapon_and_armour_random_quality"]=5472, + ["brequel_unique_fruit_weapon_chance_+%"]=5473, + ["buff_affects_party"]=1832, + ["buff_auras_dont_affect_allies"]=3078, + ["buff_duration_+%"]=1827, + ["buff_effect_+%_on_low_energy_shield"]=5474, + ["buff_effect_on_self_+%"]=2191, + ["buff_party_effect_radius_+%"]=1833, + ["buff_time_passed_+%"]=5476, + ["buff_time_passed_+%_only_buff_category"]=5475, + ["burn_damage_+%"]=1924, + ["burning_and_explosive_arrow_shatter_on_killing_blow"]=5477, + ["burning_arrow_damage_+%"]=3688, + ["burning_arrow_debuff_effect_+%"]=5478, + ["burning_arrow_ignite_chance_%"]=4016, + ["burning_arrow_physical_damage_%_to_add_as_fire_damage"]=4017, + ["burning_damage_+%_if_ignited_an_enemy_recently"]=4361, + ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=5479, + ["burning_damage_taken_+%"]=2598, + ["burning_ground_effect_on_self_+%"]=2197, + ["can_apply_additional_scorch"]=5480, + ["can_apply_additional_tincture"]=5481, + ["can_be_ghostflame_crafted_as_though_rare"]=5482, + ["can_catch_corrupted_fish"]=2913, + ["can_catch_exotic_fish"]=2912, + ["can_catch_mutated_fish"]=5483, + ["can_catch_scourged_fish"]=5484, ["can_equip_grafts"]=46, - ["can_gain_banner_resource_while_banner_is_placed"]=1161, - ["can_inflict_multiple_ignites"]=2618, - ["can_only_have_one_ancestor_totem_buff"]=5411, - ["can_only_inflict_wither_against_full_life_enemies"]=5412, - ["can_see_corpse_types"]=768, - ["can_trigger_summon_elemental_relic_on_nearby_ally_kill_or_on_hit_rare_or_unique"]=5413, - ["cannot_adapt_to_cold"]=5414, - ["cannot_adapt_to_fire"]=5415, - ["cannot_adapt_to_lightning"]=5416, - ["cannot_be_affected_by_flasks"]=3771, - ["cannot_be_bled_by_bleeding_enemies"]=5417, - ["cannot_be_blinded"]=2998, - ["cannot_be_blinded_while_affected_by_precision"]=5418, - ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=5419, - ["cannot_be_chilled_or_frozen_while_moving"]=5420, - ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=5421, - ["cannot_be_chilled_while_burning"]=5422, - ["cannot_be_crit_if_you_have_been_stunned_recently"]=5423, - ["cannot_be_cursed_with_silence"]=3118, - ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=5424, - ["cannot_be_frozen_if_you_have_been_frozen_recently"]=5425, - ["cannot_be_frozen_with_dex_higher_than_int"]=5426, - ["cannot_be_ignited_by_ignited_enemies"]=5427, - ["cannot_be_ignited_if_you_have_been_ignited_recently"]=5428, - ["cannot_be_ignited_while_at_maximum_endurance_charges"]=5429, - ["cannot_be_ignited_while_flame_golem_summoned"]=5430, - ["cannot_be_ignited_with_strength_higher_than_dex"]=5431, - ["cannot_be_inflicted_by_corrupted_blood"]=5432, - ["cannot_be_killed_by_elemental_reflect"]=2700, - ["cannot_be_knocked_back"]=1545, - ["cannot_be_poisoned"]=3393, - ["cannot_be_poisoned_if_x_poisons_on_you"]=5433, - ["cannot_be_poisoned_while_bleeding"]=5434, - ["cannot_be_shocked_if_you_have_been_shocked_recently"]=5435, - ["cannot_be_shocked_or_ignited_while_moving"]=5436, - ["cannot_be_shocked_while_at_maximum_endurance_charges"]=4202, - ["cannot_be_shocked_while_at_maximum_power_charges"]=5437, - ["cannot_be_shocked_while_frozen"]=2922, - ["cannot_be_shocked_while_lightning_golem_summoned"]=5438, - ["cannot_be_shocked_with_int_higher_than_strength"]=5439, - ["cannot_be_stunned"]=2196, - ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=4351, - ["cannot_be_stunned_by_blocked_hits"]=5440, - ["cannot_be_stunned_by_hits_of_only_physical_damage"]=5441, - ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=4350, - ["cannot_be_stunned_by_suppressed_spell_damage"]=5442, - ["cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"]=5443, - ["cannot_be_stunned_if_have_not_been_hit_recently"]=5444, - ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=4371, - ["cannot_be_stunned_if_you_have_been_stunned_recently"]=5445, - ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=5446, - ["cannot_be_stunned_if_you_have_ghost_dance"]=5447, - ["cannot_be_stunned_when_on_low_life"]=2198, - ["cannot_be_stunned_while_at_max_endurance_charges"]=4075, - ["cannot_be_stunned_while_bleeding"]=5448, - ["cannot_be_stunned_while_fortified"]=5449, - ["cannot_be_stunned_while_leeching"]=3236, - ["cannot_be_stunned_while_no_gems_in_helmet"]=5450, - ["cannot_be_stunned_while_using_chaos_skill"]=5451, - ["cannot_be_stunned_with_25_rage"]=9816, - ["cannot_block_attacks"]=2282, - ["cannot_block_spells"]=5452, - ["cannot_block_while_no_energy_shield"]=2757, - ["cannot_cast_curses"]=2708, - ["cannot_cast_spells"]=5453, - ["cannot_cause_bleeding"]=2513, - ["cannot_crit_non_shocked_enemies"]=4161, - ["cannot_critical_strike_with_attacks"]=5454, - ["cannot_fish_from_water"]=5455, - ["cannot_freeze_shock_ignite_on_critical"]=2701, - ["cannot_gain_charges"]=5456, - ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=5457, - ["cannot_gain_damaging_ailments"]=5458, - ["cannot_gain_endurance_charges_while_have_onslaught"]=2778, - ["cannot_gain_power_charges"]=5459, - ["cannot_gain_rage_during_soul_gain_prevention"]=5460, - ["cannot_have_energy_shield_leeched_from"]=5461, - ["cannot_have_life_leeched_from"]=2464, - ["cannot_have_mana_leeched_from"]=2465, - ["cannot_have_more_than_1_damaging_ailment"]=5462, - ["cannot_have_more_than_1_non_damaging_ailment"]=5463, - ["cannot_increase_quantity_of_dropped_items"]=2574, - ["cannot_increase_rarity_of_dropped_items"]=2573, - ["cannot_inflict_status_ailments"]=1886, - ["cannot_knockback"]=3035, - ["cannot_leech_life_from_critical_strikes"]=4301, - ["cannot_leech_or_regenerate_mana"]=2593, - ["cannot_leech_when_on_low_life"]=2594, - ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=4372, - ["cannot_penetrate_or_ignore_elemental_resistances"]=5464, - ["cannot_poison_enemies_with_x_poisons"]=5465, - ["cannot_receive_elemental_ailments_from_cursed_enemies"]=5466, - ["cannot_receive_elemental_ailments_while_no_gems_in_body_armour"]=5467, - ["cannot_recharge_energy_shield"]=5468, - ["cannot_regenerate_energy_shield"]=5469, - ["cannot_resist_cold_damage"]=2215, - ["cannot_stun"]=1879, - ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=4440, - ["cannot_take_reflected_elemental_damage"]=5470, - ["cannot_take_reflected_elemental_damage_if_4_shaper_items"]=4496, - ["cannot_take_reflected_physical_damage"]=5471, - ["cannot_take_reflected_physical_damage_if_4_elder_items"]=4497, - ["cannot_taunt_enemies"]=5472, - ["cannot_use_flask_in_fifth_slot"]=5473, - ["cannot_use_life_flasks"]=96, - ["cannot_use_mana_flasks"]=5474, - ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=5475, - ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=5476, - ["cast_blink_arrow_on_attack_with_mirror_arrow"]=5477, - ["cast_body_swap_on_detonate_dead_cast"]=5478, - ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=5479, - ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=5480, - ["cast_hydrosphere_while_channeling_winter_orb"]=5481, - ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=5482, - ["cast_linked_spells_on_shocked_enemy_kill_%"]=777, - ["cast_mirror_arrow_on_attack_with_blink_arrow"]=5483, - ["cast_socketed_minion_skills_on_bow_kill_%"]=778, - ["cast_socketed_spells_on_X_life_spent"]=779, - ["cast_socketed_spells_on_X_mana_spent"]=780, - ["cast_socketed_spells_on_life_spent_%_chance"]=779, - ["cast_socketed_spells_on_mana_spent_%_chance"]=780, - ["cast_speed_+%_during_flask_effect"]=5490, - ["cast_speed_+%_final_while_holding_fishing_rod"]=5484, - ["cast_speed_+%_for_4_seconds_on_attack"]=3559, - ["cast_speed_+%_if_enemy_killed_recently"]=5491, - ["cast_speed_+%_if_have_crit_recently"]=5492, - ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=5493, - ["cast_speed_+%_per_20_dexterity"]=5485, - ["cast_speed_+%_per_corpse_consumed_recently"]=5494, - ["cast_speed_+%_per_frenzy_charge"]=2025, - ["cast_speed_+%_per_num_unique_spells_cast_recently"]=5486, - ["cast_speed_+%_per_power_charge"]=1475, - ["cast_speed_+%_when_on_full_life"]=2024, - ["cast_speed_+%_when_on_low_life"]=2023, - ["cast_speed_+%_while_affected_by_zealotry"]=5495, - ["cast_speed_+%_while_chilled"]=5496, - ["cast_speed_+%_while_holding_bow"]=1474, - ["cast_speed_+%_while_holding_shield"]=1472, - ["cast_speed_+%_while_holding_staff"]=1473, - ["cast_speed_+%_while_ignited"]=2965, - ["cast_speed_for_brand_skills_+%"]=5487, - ["cast_speed_for_chaos_skills_+%"]=1416, - ["cast_speed_for_cold_skills_+%"]=1400, - ["cast_speed_for_elemental_skills_+%"]=5488, - ["cast_speed_for_fire_skills_+%"]=1389, - ["cast_speed_for_lightning_skills_+%"]=1408, - ["cast_speed_for_minion_skills_+%"]=5489, - ["cast_speed_increase_from_arcane_surge_also_applies_to_move_speed"]=4465, - ["cast_speed_while_dual_wielding_+%"]=1471, - ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=5497, - ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=5498, - ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=5499, - ["cat_aspect_reserves_no_mana"]=5500, - ["cats_stealth_duration_ms_+"]=5501, - ["cause_maim_on_critical_strike_attack"]=4098, - ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=5502, - ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=5503, - ["caustic_arrow_damage_+%"]=3712, - ["caustic_arrow_damage_over_time_+%"]=5504, - ["caustic_arrow_duration_+%"]=3959, - ["caustic_arrow_hit_damage_+%"]=5505, - ["caustic_arrow_radius_+%"]=3856, - ["caustic_arrow_withered_base_duration_ms"]=3713, - ["caustic_arrow_withered_on_hit_%"]=3713, - ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3465, - ["celestial_footprints_from_item"]=10879, - ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=5506, - ["chain_strike_cone_radius_+_per_12_rage"]=5507, - ["chain_strike_damage_+%"]=5508, - ["chain_strike_gain_rage_on_hit_%_chance"]=5509, - ["chaining_range_+%"]=5510, - ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=5511, - ["chance_%_elemental_ailments_redirected_to_nearby_minion"]=5566, - ["chance_%_to_convert_armour_to_blessed_orb"]=5512, - ["chance_%_to_convert_armour_to_cartographers_chisel"]=5513, - ["chance_%_to_convert_armour_to_chromatic_orb"]=5514, - ["chance_%_to_convert_armour_to_fusing_orb"]=5515, - ["chance_%_to_convert_armour_to_jewellers_orb"]=5516, - ["chance_%_to_convert_armour_to_orb_of_alteration"]=5517, - ["chance_%_to_convert_armour_to_orb_of_binding"]=5518, - ["chance_%_to_convert_armour_to_orb_of_scouring"]=5519, - ["chance_%_to_convert_armour_to_orb_of_unmaking"]=5520, - ["chance_%_to_convert_jewellery_to_divine_orb"]=5521, - ["chance_%_to_convert_jewellery_to_exalted_orb"]=5522, - ["chance_%_to_convert_jewellery_to_orb_of_annulment"]=5523, - ["chance_%_to_convert_weapon_to_chaos_orb"]=5524, - ["chance_%_to_convert_weapon_to_enkindling_orb"]=5525, - ["chance_%_to_convert_weapon_to_gemcutters_prism"]=5526, - ["chance_%_to_convert_weapon_to_glassblowers_bauble"]=5527, - ["chance_%_to_convert_weapon_to_instilling_orb"]=5528, - ["chance_%_to_convert_weapon_to_orb_of_regret"]=5529, - ["chance_%_to_convert_weapon_to_regal_orb"]=5530, - ["chance_%_to_convert_weapon_to_vaal_orb"]=5531, - ["chance_%_to_drop_additional_ancient_orb"]=5532, - ["chance_%_to_drop_additional_awakened_sextant"]=5533, - ["chance_%_to_drop_additional_blessed_orb"]=5534, - ["chance_%_to_drop_additional_cartographers_chisel"]=5535, - ["chance_%_to_drop_additional_chaos_orb"]=5536, - ["chance_%_to_drop_additional_chromatic_orb"]=5537, - ["chance_%_to_drop_additional_cleansing_currency"]=5567, - ["chance_%_to_drop_additional_cleansing_influenced_item"]=5568, - ["chance_%_to_drop_additional_currency"]=5569, - ["chance_%_to_drop_additional_divination_cards"]=5570, - ["chance_%_to_drop_additional_divination_cards_corrupted"]=5571, - ["chance_%_to_drop_additional_divination_cards_currency"]=5572, - ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5573, - ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5574, - ["chance_%_to_drop_additional_divination_cards_currency_league"]=5575, - ["chance_%_to_drop_additional_divination_cards_gems"]=5576, - ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5577, - ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5578, - ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5579, - ["chance_%_to_drop_additional_divination_cards_map"]=5580, - ["chance_%_to_drop_additional_divination_cards_map_unique"]=5581, - ["chance_%_to_drop_additional_divination_cards_unique"]=5582, - ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5583, - ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5584, - ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5585, - ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5586, - ["chance_%_to_drop_additional_divine_orb"]=5538, - ["chance_%_to_drop_additional_eldritch_chaos_orb"]=5539, - ["chance_%_to_drop_additional_eldritch_exalted_orb"]=5540, - ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=5541, - ["chance_%_to_drop_additional_enkindling_orb"]=5542, - ["chance_%_to_drop_additional_exalted_orb"]=5543, - ["chance_%_to_drop_additional_fusing_orb"]=5544, - ["chance_%_to_drop_additional_gem"]=5587, - ["chance_%_to_drop_additional_gemcutters_prism"]=5545, - ["chance_%_to_drop_additional_glassblowers_bauble"]=5546, - ["chance_%_to_drop_additional_grand_eldritch_ember"]=5547, - ["chance_%_to_drop_additional_grand_eldritch_ichor"]=5548, - ["chance_%_to_drop_additional_greater_eldritch_ember"]=5549, - ["chance_%_to_drop_additional_greater_eldritch_ichor"]=5550, - ["chance_%_to_drop_additional_instilling_orb"]=5551, - ["chance_%_to_drop_additional_jewellers_orb"]=5552, - ["chance_%_to_drop_additional_lesser_eldritch_ember"]=5553, - ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=5554, - ["chance_%_to_drop_additional_maps"]=5588, - ["chance_%_to_drop_additional_orb_of_alteration"]=5555, - ["chance_%_to_drop_additional_orb_of_annulment"]=5556, - ["chance_%_to_drop_additional_orb_of_binding"]=5557, - ["chance_%_to_drop_additional_orb_of_regret"]=5558, - ["chance_%_to_drop_additional_orb_of_scouring"]=5559, - ["chance_%_to_drop_additional_orb_of_unmaking"]=5560, - ["chance_%_to_drop_additional_regal_orb"]=5561, - ["chance_%_to_drop_additional_scarab"]=5589, - ["chance_%_to_drop_additional_scarab_abyss"]=5590, - ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5591, - ["chance_%_to_drop_additional_scarab_abyss_polished"]=5592, - ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5593, - ["chance_%_to_drop_additional_scarab_anarchy"]=5594, - ["chance_%_to_drop_additional_scarab_beasts"]=5595, - ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5596, - ["chance_%_to_drop_additional_scarab_beasts_polished"]=5597, - ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5598, - ["chance_%_to_drop_additional_scarab_betrayal"]=5599, - ["chance_%_to_drop_additional_scarab_beyond"]=5600, - ["chance_%_to_drop_additional_scarab_blight"]=5601, - ["chance_%_to_drop_additional_scarab_blight_gilded"]=5602, - ["chance_%_to_drop_additional_scarab_blight_polished"]=5603, - ["chance_%_to_drop_additional_scarab_blight_rusted"]=5604, - ["chance_%_to_drop_additional_scarab_breach"]=5605, - ["chance_%_to_drop_additional_scarab_breach_gilded"]=5606, - ["chance_%_to_drop_additional_scarab_breach_polished"]=5607, - ["chance_%_to_drop_additional_scarab_breach_rusted"]=5608, - ["chance_%_to_drop_additional_scarab_delirium"]=5609, - ["chance_%_to_drop_additional_scarab_divination"]=5610, - ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5611, - ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5612, - ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5613, - ["chance_%_to_drop_additional_scarab_domination"]=5614, - ["chance_%_to_drop_additional_scarab_elder_gilded"]=5615, - ["chance_%_to_drop_additional_scarab_elder_polished"]=5616, - ["chance_%_to_drop_additional_scarab_elder_rusted"]=5617, - ["chance_%_to_drop_additional_scarab_essence"]=5618, - ["chance_%_to_drop_additional_scarab_expedition"]=5619, - ["chance_%_to_drop_additional_scarab_harvest"]=5620, - ["chance_%_to_drop_additional_scarab_incursion"]=5621, - ["chance_%_to_drop_additional_scarab_influence"]=5622, - ["chance_%_to_drop_additional_scarab_legion"]=5623, - ["chance_%_to_drop_additional_scarab_legion_gilded"]=5624, - ["chance_%_to_drop_additional_scarab_legion_polished"]=5625, - ["chance_%_to_drop_additional_scarab_legion_rusted"]=5626, - ["chance_%_to_drop_additional_scarab_maps"]=5627, - ["chance_%_to_drop_additional_scarab_maps_gilded"]=5628, - ["chance_%_to_drop_additional_scarab_maps_polished"]=5629, - ["chance_%_to_drop_additional_scarab_maps_rusted"]=5630, - ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5631, - ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5632, - ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5633, - ["chance_%_to_drop_additional_scarab_misc"]=5634, - ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5635, - ["chance_%_to_drop_additional_scarab_perandus_polished"]=5636, - ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5637, - ["chance_%_to_drop_additional_scarab_ritual"]=5638, - ["chance_%_to_drop_additional_scarab_settlers"]=5639, - ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5640, - ["chance_%_to_drop_additional_scarab_shaper_polished"]=5641, - ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5642, - ["chance_%_to_drop_additional_scarab_strongbox"]=5643, - ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5644, - ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5645, - ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5646, - ["chance_%_to_drop_additional_scarab_sulphite"]=5647, - ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5648, - ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5649, - ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5650, - ["chance_%_to_drop_additional_scarab_torment"]=5651, - ["chance_%_to_drop_additional_scarab_torment_gilded"]=5652, - ["chance_%_to_drop_additional_scarab_torment_polished"]=5653, - ["chance_%_to_drop_additional_scarab_torment_rusted"]=5654, - ["chance_%_to_drop_additional_scarab_ultimatum"]=5655, - ["chance_%_to_drop_additional_scarab_uniques"]=5656, - ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5657, - ["chance_%_to_drop_additional_scarab_uniques_polished"]=5658, - ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5659, - ["chance_%_to_drop_additional_tangled_currency"]=5660, - ["chance_%_to_drop_additional_tangled_influenced_item"]=5661, - ["chance_%_to_drop_additional_unique"]=5662, - ["chance_%_to_drop_additional_vaal_orb"]=5562, - ["chance_%_to_drop_additional_veiled_chaos_orb"]=5563, - ["chance_%_to_return_to_full_life_on_reaching_low_life"]=5663, - ["chance_for_double_items_from_heist_chests_%"]=5564, - ["chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%"]=3574, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5565, - ["chance_per_second_of_fire_spreading_between_enemies_%"]=1900, - ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=3339, - ["chance_to_be_frozen_%"]=2971, - ["chance_to_be_frozen_shocked_ignited_%"]=2974, - ["chance_to_be_hindered_when_hit_by_spells_%"]=5664, - ["chance_to_be_ignited_%"]=2972, - ["chance_to_be_maimed_when_hit_%"]=5665, - ["chance_to_be_poisoned_%"]=3394, - ["chance_to_be_sapped_when_hit_%"]=5666, - ["chance_to_be_scorched_when_hit_%"]=5667, - ["chance_to_be_shocked_%"]=2973, - ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5668, - ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5669, - ["chance_to_block_attack_damage_if_used_retaliation_recently_%"]=5670, - ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5671, - ["chance_to_block_attacks_%_while_channelling"]=5672, - ["chance_to_block_spells_%_if_cast_a_spell_recently"]=5674, - ["chance_to_block_spells_%_if_damaged_by_a_hit_recently"]=5675, - ["chance_to_block_spells_%_if_used_retaliation_recently"]=5673, - ["chance_to_block_spells_%_while_affected_by_discipline"]=5676, - ["chance_to_block_spells_%_while_channelling"]=5677, - ["chance_to_counter_strike_when_hit_%"]=2853, - ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5678, - ["chance_to_crush_on_hit_%"]=5679, - ["chance_to_curse_self_with_punishment_on_kill_%"]=3145, - ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5680, - ["chance_to_deal_double_damage_%"]=5683, - ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5684, - ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5685, - ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5686, - ["chance_to_deal_double_damage_%_per_10_intelligence"]=5687, - ["chance_to_deal_double_damage_%_per_4_rage"]=5688, - ["chance_to_deal_double_damage_%_per_500_strength"]=5689, - ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5681, - ["chance_to_deal_double_damage_%_while_focused"]=5690, - ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5691, - ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5682, - ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=10727, - ["chance_to_deal_double_damage_while_on_full_life_%"]=5692, - ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5693, - ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5694, - ["chance_to_double_armour_effect_on_hit_%"]=5695, - ["chance_to_double_armour_effect_on_hit_%_per_enemy_hit_taken_recently_capped"]=5696, - ["chance_to_double_stun_duration_%"]=3588, - ["chance_to_evade_%_while_you_have_energy_shield"]=5700, - ["chance_to_evade_attacks_%"]=5697, - ["chance_to_evade_attacks_%_if_havent_been_hit_recently"]=5698, - ["chance_to_evade_attacks_%_while_affected_by_grace"]=5699, - ["chance_to_fork_extra_projectile_%"]=5701, - ["chance_to_fortify_on_melee_hit_+%"]=2288, - ["chance_to_fortify_on_melee_hit_+%_if_6_warlord_items"]=4510, - ["chance_to_fortify_on_melee_stun_%"]=5702, - ["chance_to_freeze_%_while_using_flask"]=2947, - ["chance_to_freeze_enemies_for_1_second_when_hit_%"]=5703, - ["chance_to_freeze_shock_ignite_%"]=2825, - ["chance_to_freeze_shock_ignite_%_during_flask_effect"]=4250, - ["chance_to_freeze_shock_ignite_%_while_affected_by_a_herald"]=5704, - ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5705, - ["chance_to_gain_3_additional_exerted_attacks_%"]=5706, - ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5707, - ["chance_to_gain_arohonguis_embrace_%_on_kill"]=688, - ["chance_to_gain_chaotic_might_on_crit_for_4_seconds_%"]=5708, - ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5709, - ["chance_to_gain_endurance_charge_on_block_%"]=2148, - ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1846, - ["chance_to_gain_endurance_charge_on_crit_%"]=1843, - ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5710, - ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1844, - ["chance_to_gain_endurance_charge_when_hit_%"]=2775, - ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5711, - ["chance_to_gain_endurance_charge_when_you_taunt_enemy_%"]=5712, - ["chance_to_gain_frenzy_charge_on_block_%"]=5714, - ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5713, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1847, - ["chance_to_gain_frenzy_charge_on_stun_%"]=5715, - ["chance_to_gain_hinekoras_embrace_%_on_kill"]=689, - ["chance_to_gain_kitavas_embrace_%_on_kill"]=690, - ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=4378, - ["chance_to_gain_ngamahus_embrace_%_on_kill"]=691, - ["chance_to_gain_old_unholy_might_on_kill_for_10_seconds_%"]=5725, - ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5716, - ["chance_to_gain_onslaught_on_flask_use_%"]=5717, - ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5718, - ["chance_to_gain_onslaught_on_kill_%"]=3017, - ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5719, - ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3404, - ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5720, - ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1848, - ["chance_to_gain_power_charge_on_melee_stun_%"]=2794, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5721, - ["chance_to_gain_power_charge_on_stun_%"]=2795, - ["chance_to_gain_power_charge_when_block_%"]=2152, - ["chance_to_gain_ramakos_embrace_%_on_kill"]=692, - ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2787, - ["chance_to_gain_random_standard_charge_on_hit_%"]=5722, - ["chance_to_gain_rongokurais_embrace_%_on_kill"]=693, - ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5723, - ["chance_to_gain_tasalios_embrace_%_on_kill"]=694, - ["chance_to_gain_tawhoas_embrace_%_on_kill"]=695, - ["chance_to_gain_tukohamas_embrace_%_on_kill"]=696, - ["chance_to_gain_unholy_might_on_block_%"]=3070, - ["chance_to_gain_unholy_might_on_block_ms"]=3070, - ["chance_to_gain_unholy_might_on_crit_for_4_seconds_%"]=5724, - ["chance_to_gain_unholy_might_on_kill_for_3_seconds_%"]=3401, - ["chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=3402, - ["chance_to_gain_unholy_might_on_melee_kill_%"]=3107, - ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=3133, - ["chance_to_gain_vaal_soul_on_kill_%"]=3128, - ["chance_to_gain_valakos_embrace_%_on_kill"]=697, - ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5726, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=3409, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5727, - ["chance_to_grant_nearby_enemies_old_unholy_might_on_kill_%"]=3407, - ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=3406, - ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5728, - ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=3408, - ["chance_to_ignite_%_while_ignited"]=2966, - ["chance_to_ignite_%_while_using_flask"]=2946, - ["chance_to_ignite_freeze_shock_and_poison_+%_vs_cursed_enemies"]=5729, - ["chance_to_ignore_hexproof_%"]=5730, - ["chance_to_inflict_additional_impale_%"]=5731, - ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5732, - ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5733, - ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5734, - ["chance_to_inflict_frostburn_%"]=2054, - ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5735, - ["chance_to_inflict_sap_on_enemy_on_block_%"]=5736, - ["chance_to_inflict_sapped_%"]=2058, - ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5737, - ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5738, - ["chance_to_intimidate_on_hit_%"]=5739, - ["chance_to_leave_2_ground_blades_%"]=5740, - ["chance_to_not_gain_tincture_toxicity_%"]=5741, - ["chance_to_place_an_additional_mine_%"]=3572, - ["chance_to_poison_%_vs_cursed_enemies"]=4232, - ["chance_to_poison_on_critical_strike_with_bow_%"]=1477, - ["chance_to_poison_on_critical_strike_with_dagger_%"]=1478, - ["chance_to_poison_on_hit_%_per_power_charge"]=5742, - ["chance_to_poison_on_hit_with_attacks_%"]=3199, - ["chance_to_poison_on_melee_hit_%"]=4283, - ["chance_to_remove_1_tincture_toxicity_on_kill_%"]=5743, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5744, - ["chance_to_scorch_%"]=2051, - ["chance_to_shock_%_while_using_flask"]=2948, - ["chance_to_shock_chilled_enemies_%"]=5745, - ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5746, - ["chance_to_summon_two_totems_%"]=5747, - ["chance_to_taunt_on_hit_%"]=3454, - ["chance_to_throw_4_additional_traps_%"]=5748, - ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=781, - ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=568, - ["chance_to_unnerve_on_hit_%"]=5749, - ["chance_to_unnerve_on_hit_with_spells_%"]=5750, - ["channelled_skill_damage_+%"]=5751, - ["channelled_skill_damage_+%_per_10_devotion"]=5752, - ["chaos_critical_strike_chance_+%"]=1509, - ["chaos_critical_strike_multiplier_+"]=1535, - ["chaos_damage_%_taken_from_mana_before_life"]=5760, - ["chaos_damage_+%"]=1409, - ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5761, - ["chaos_damage_+%_per_equipped_corrupted_item"]=3123, - ["chaos_damage_+%_per_level"]=3001, - ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5762, - ["chaos_damage_can_chill"]=2892, - ["chaos_damage_can_freeze"]=2893, - ["chaos_damage_can_ignite_chill_and_shock"]=2911, - ["chaos_damage_can_shock"]=2894, - ["chaos_damage_cannot_poison"]=2912, - ["chaos_damage_chance_to_poison_%"]=3056, - ["chaos_damage_does_not_bypass_energy_shield"]=2534, - ["chaos_damage_does_not_bypass_energy_shield_while_not_low_life"]=5753, - ["chaos_damage_does_not_bypass_energy_shield_while_not_low_mana"]=5754, - ["chaos_damage_over_time_+%"]=1238, - ["chaos_damage_over_time_heals_while_leeching_life"]=5756, - ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5757, - ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1282, - ["chaos_damage_over_time_multiplier_+_with_attacks"]=1285, - ["chaos_damage_per_minute_while_affected_by_flask"]=5759, - ["chaos_damage_poisons"]=3055, - ["chaos_damage_resistance_%_per_endurance_charge"]=5763, - ["chaos_damage_resistance_%_per_poison_stack"]=5765, - ["chaos_damage_resistance_%_when_on_low_life"]=2579, - ["chaos_damage_resistance_%_when_stationary"]=5766, - ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5767, - ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5768, - ["chaos_damage_resistance_is_doubled"]=5764, - ["chaos_damage_resisted_by_highest_resistance"]=5769, - ["chaos_damage_resisted_by_lowest_resistance"]=5770, - ["chaos_damage_taken_+"]=2863, - ["chaos_damage_taken_+%"]=2267, - ["chaos_damage_taken_goes_to_life_over_4_seconds_%"]=5771, - ["chaos_damage_taken_over_time_+%"]=1972, - ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5772, - ["chaos_damage_to_return_to_melee_attacker"]=2230, - ["chaos_damage_to_return_when_hit"]=2235, - ["chaos_damage_with_attack_skills_+%"]=5773, - ["chaos_damage_with_spell_skills_+%"]=5774, - ["chaos_dot_multiplier_+"]=1283, - ["chaos_golem_damage_+%"]=3721, - ["chaos_golem_elemental_resistances_%"]=4012, - ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5775, - ["chaos_hit_and_dot_damage_%_taken_as_fire"]=5776, - ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=5777, - ["chaos_immunity"]=2191, - ["chaos_inoculation_keystone_energy_shield_+%_final"]=2217, - ["chaos_non_ailment_damage_over_time_multiplier_+"]=1284, - ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=4092, - ["chaos_resistance_+_while_using_flask"]=3325, - ["chaos_skill_chance_to_hinder_on_hit_%"]=5778, - ["chaos_skill_chance_to_ignite_%"]=5779, - ["chaos_skill_effect_duration_+%"]=1920, - ["chaos_skill_gem_level_+"]=5780, - ["chaos_skill_gem_level_+_if_6_hunter_items"]=4511, - ["chaos_skills_area_of_effect_+%"]=5781, - ["chaos_spell_skill_gem_level_+"]=1637, - ["chaos_weakness_ignores_hexproof"]=2625, - ["chaos_weakness_mana_reservation_+%"]=4069, - ["charge_duration_+%"]=3050, - ["charged_attack_damage_+%"]=4165, - ["charged_attack_radius_+%"]=4172, - ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3875, - ["charged_dash_damage_+%"]=3756, - ["charged_dash_movement_speed_+%_final"]=5782, - ["charges_gained_+%"]=2207, - ["chest_drop_additional_corrupted_item_divination_cards"]=5783, - ["chest_drop_additional_currency_item_divination_cards"]=5784, - ["chest_drop_additional_divination_cards_from_current_world_area"]=5785, - ["chest_drop_additional_divination_cards_from_same_set"]=5786, - ["chest_drop_additional_unique_item_divination_cards"]=5787, - ["chest_item_quantity_+%"]=1618, - ["chest_item_rarity_+%"]=1624, - ["chest_number_of_additional_pirate_uniques_to_drop"]=5788, - ["chest_trap_defuse_%"]=1934, - ["chieftain_body_armour_supported_by_level_x_ancestral_call"]=642, - ["chieftain_body_armour_supported_by_level_x_fist_of_war"]=643, - ["chieftain_burning_damage_+%_final"]=2052, - ["chill_and_freeze_duration_+%"]=5789, - ["chill_and_freeze_duration_based_on_%_energy_shield"]=2615, - ["chill_attackers_for_4_seconds_on_block_%_chance"]=5790, - ["chill_duration_+%"]=1880, - ["chill_effect_+%"]=5793, - ["chill_effect_+%_while_mana_leeching"]=5791, - ["chill_effect_+%_with_critical_strikes"]=5794, - ["chill_effect_is_reversed"]=5792, - ["chill_effectiveness_on_self_+%"]=1669, - ["chill_enemy_when_hit_duration_ms"]=3164, - ["chill_minimum_slow_%"]=4464, - ["chill_minimum_slow_%_from_mastery"]=5795, - ["chill_nearby_enemies_when_you_focus"]=5796, - ["chill_on_you_proliferates_to_nearby_enemies_within_x_radius"]=3648, - ["chill_prevention_ms_when_chilled"]=2917, - ["chilled_ground_effect_+%"]=5797, - ["chilled_ground_effect_on_self_+%"]=2173, - ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3431, - ["chilled_ground_when_hit_with_attack_%"]=5798, - ["chilled_monsters_take_+%_burning_damage"]=2790, - ["chilled_while_bleeding"]=5799, - ["chilled_while_poisoned"]=5800, - ["chilling_areas_also_grant_curse_effect_+%"]=5801, - ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5802, - ["chills_from_your_hits_cause_shattering"]=5803, - ["chronomancer_reserves_no_mana"]=5804, - ["circle_of_power_critical_strike_chance_+%_per_stage"]=5805, - ["circle_of_power_max_added_lightning_per_stage"]=5806, - ["circle_of_power_min_added_lightning_per_stage"]=5806, - ["circle_of_power_upgrade_cost_+%"]=5807, - ["clarity_mana_reservation_+%"]=4057, - ["clarity_mana_reservation_efficiency_+%"]=5809, - ["clarity_mana_reservation_efficiency_-2%_per_1"]=5808, - ["clarity_reserves_no_mana"]=5810, - ["claw_accuracy_rating"]=2032, - ["claw_accuracy_rating_+%"]=1464, - ["claw_ailment_damage_+%"]=1340, - ["claw_attack_speed_+%"]=1446, - ["claw_critical_strike_chance_+%"]=1490, - ["claw_critical_strike_multiplier_+"]=1523, - ["claw_damage_+%"]=1337, - ["claw_damage_+%_while_on_low_life"]=5812, - ["claw_damage_against_enemies_on_low_life_+%"]=5811, - ["claw_hit_and_ailment_damage_+%"]=1338, - ["claw_or_dagger_ailment_damage_+%"]=1377, - ["claw_or_dagger_hit_and_ailment_damage_+%"]=1376, - ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2975, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5814, - ["cleave_attack_speed_+%"]=3876, - ["cleave_damage_+%"]=3653, - ["cleave_fortify_on_hit"]=5813, - ["cleave_radius_+%"]=3830, - ["close_range_enemies_avoid_your_projectiles"]=9480, - ["cluster_burst_spawn_amount"]=4135, - ["cobra_lash_and_venom_gyre_bleeding_damage_+100%_final_chance"]=5815, - ["cobra_lash_and_venom_gyre_skill_physical_damage_%_to_convert_to_chaos"]=5816, - ["cobra_lash_damage_+%"]=5817, - ["cobra_lash_number_of_additional_chains"]=5818, - ["cobra_lash_projectile_speed_+%"]=5819, - ["cold_ailment_duration_+%"]=5820, - ["cold_ailment_effect_+%"]=5822, - ["cold_ailment_effect_+%_against_shocked_enemies"]=5821, - ["cold_ailments_effect_+%_final_if_hit_highest_cold"]=5823, - ["cold_and_chaos_damage_resistance_%"]=5824, - ["cold_and_lightning_damage_resistance_%"]=2824, - ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=5825, - ["cold_attack_damage_+%"]=1225, - ["cold_attack_damage_+%_while_holding_a_shield"]=1228, - ["cold_axe_damage_+%"]=1330, - ["cold_bow_damage_+%"]=1360, - ["cold_claw_damage_+%"]=1342, - ["cold_critical_strike_chance_+%"]=1507, - ["cold_critical_strike_multiplier_+"]=1533, - ["cold_dagger_damage_+%"]=1348, - ["cold_damage_%_to_add_as_chaos"]=1964, - ["cold_damage_%_to_add_as_chaos_per_frenzy_charge"]=5831, - ["cold_damage_%_to_add_as_fire"]=1963, - ["cold_damage_%_to_add_as_fire_per_1%_chill_effect_on_enemy"]=5826, - ["cold_damage_%_to_add_as_fire_vs_frozen_enemies"]=5827, - ["cold_damage_+%"]=1390, - ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5832, - ["cold_damage_+%_per_1%_block_chance"]=3608, - ["cold_damage_+%_per_25_dexterity"]=5833, - ["cold_damage_+%_per_25_intelligence"]=5834, - ["cold_damage_+%_per_25_strength"]=5835, - ["cold_damage_+%_per_cold_resistance_above_75"]=5828, - ["cold_damage_+%_per_frenzy_charge"]=5836, - ["cold_damage_+%_per_missing_cold_resistance"]=5837, - ["cold_damage_+%_while_affected_by_hatred"]=5838, - ["cold_damage_+%_while_affected_by_herald_of_ice"]=5839, - ["cold_damage_+%_while_off_hand_is_empty"]=5840, - ["cold_damage_can_ignite"]=2895, - ["cold_damage_can_shock"]=2896, - ["cold_damage_cannot_chill"]=2910, - ["cold_damage_cannot_freeze"]=2909, - ["cold_damage_over_time_+%"]=1237, - ["cold_damage_over_time_multiplier_+_per_4%_overcapped_cold_resistance"]=5829, - ["cold_damage_over_time_multiplier_+_per_power_charge"]=5830, - ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1279, - ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5841, - ["cold_damage_resistance_+%"]=1657, - ["cold_damage_resistance_is_%"]=1654, - ["cold_damage_taken_%_as_fire"]=3202, - ["cold_damage_taken_%_as_lightning"]=3203, - ["cold_damage_taken_+"]=5843, - ["cold_damage_taken_+%"]=3413, - ["cold_damage_taken_+%_if_have_been_hit_recently"]=5844, - ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5842, - ["cold_damage_taken_per_minute_per_frenzy_charge_while_moving"]=10728, - ["cold_damage_to_return_to_melee_attacker"]=2227, - ["cold_damage_to_return_when_hit"]=2233, - ["cold_damage_while_dual_wielding_+%"]=1305, - ["cold_damage_with_attack_skills_+%"]=5845, - ["cold_damage_with_spell_skills_+%"]=5846, - ["cold_dot_multiplier_+"]=1280, - ["cold_exposure_on_hit_magnitude"]=5847, - ["cold_exposure_you_inflict_applies_extra_cold_resistance_+%"]=5848, - ["cold_hit_and_dot_damage_%_taken_as_fire"]=5849, - ["cold_hit_and_dot_damage_%_taken_as_lightning"]=5850, - ["cold_hit_damage_+%_vs_shocked_enemies"]=5851, - ["cold_mace_damage_+%"]=1354, - ["cold_penetration_%_vs_chilled_enemies"]=5852, - ["cold_projectile_mine_critical_multiplier_+"]=5853, - ["cold_projectile_mine_damage_+%"]=5854, - ["cold_projectile_mine_throwing_speed_+%"]=5856, - ["cold_projectile_mine_throwing_speed_negated_+%"]=5855, - ["cold_resistance_cannot_be_penetrated"]=5857, - ["cold_skill_chance_to_inflict_cold_exposure_%"]=5858, - ["cold_skill_gem_level_+"]=5860, - ["cold_skill_gem_level_+_if_6_redeemer_items"]=4512, - ["cold_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped"]=5859, - ["cold_skills_chance_to_poison_on_hit_%"]=5861, - ["cold_snap_cooldown_speed_+%"]=3900, - ["cold_snap_damage_+%"]=3727, - ["cold_snap_gain_power_charge_on_kill_%"]=3284, - ["cold_snap_radius_+%"]=3857, - ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5862, - ["cold_spell_physical_damage_%_to_convert_to_cold"]=5863, - ["cold_spell_skill_gem_level_+"]=1635, - ["cold_staff_damage_+%"]=1336, - ["cold_sword_damage_+%"]=1367, - ["cold_wand_damage_+%"]=1373, - ["cold_weakness_ignores_hexproof"]=2626, - ["combust_area_of_effect_+%"]=5864, - ["combust_is_disabled"]=5865, - ["conductivity_curse_effect_+%"]=4034, - ["conductivity_duration_+%"]=3941, - ["conductivity_mana_reservation_+%"]=4070, - ["conductivity_no_reservation"]=5866, - ["consecrate_ground_for_3_seconds_when_hit_%"]=3577, - ["consecrate_ground_on_kill_%_for_3_seconds"]=3432, - ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=4151, - ["consecrate_on_block_%_chance_to_create"]=2597, - ["consecrate_on_crit_%_chance_to_create"]=2663, - ["consecrated_ground_additional_physical_damage_reduction_%"]=5867, - ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5868, - ["consecrated_ground_area_+%"]=5869, - ["consecrated_ground_damaging_ailment_duration_on_self_+%"]=5870, - ["consecrated_ground_effect_+%"]=5871, - ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5876, - ["consecrated_ground_enemy_damage_taken_+%"]=5872, - ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5873, - ["consecrated_ground_immune_to_curses"]=5874, - ["consecrated_ground_immune_to_status_ailments"]=5875, - ["consecrated_ground_on_death"]=5877, - ["consecrated_ground_on_hit"]=5878, - ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5879, - ["consecrated_ground_while_stationary_radius"]=5880, - ["consecrated_ground_while_stationary_radius_if_2_crusader_items"]=4473, - ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5881, - ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5882, - ["consecrated_path_and_purifying_flame_skill_fire_damage_%_to_convert_to_chaos"]=5883, - ["consecrated_path_area_of_effect_+%"]=5884, - ["consecrated_path_damage_+%"]=5885, - ["consume_all_impales_remaining_hits_on_hit_%_chance"]=5886, - ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5887, - ["consume_up_to_50%_life_flask_charges_on_attack_for_ailment_dot_multiplier_+_per_charge"]=5888, - ["contagion_damage_+%"]=3752, - ["contagion_display_spread_on_death"]=5889, - ["contagion_duration_+%"]=3946, - ["contagion_radius_+%"]=3863, - ["contagion_spread_on_hit_affected_enemy_%"]=5889, - ["conversation_trap_converted_enemy_damage_+%"]=5890, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5891, - ["conversion_trap_cooldown_speed_+%"]=3913, - ["convert_all_elemental_damage_to_chaos"]=5892, - ["convert_all_physical_damage_to_fire"]=2200, - ["converted_enemies_damage_+%"]=3747, - ["convocation_buff_effect_+%"]=4047, - ["convocation_cooldown_speed_+%"]=3901, - ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5893, - ["cooldown_recovery_+%_per_power_charge"]=5894, - ["cooldown_speed_+%_per_brand_up_to_40%"]=5896, - ["cooldown_speed_+%_per_green_skill_gem"]=5895, - ["corpse_erruption_base_maximum_number_of_geyers"]=5897, - ["corpse_eruption_cast_speed_+%"]=5898, - ["corpse_eruption_damage_+%"]=5899, - ["corpse_warp_cast_speed_+%"]=5900, - ["corpse_warp_damage_+%"]=5901, - ["corpses_drop_loot_again_on_warcry_chance_%"]=5902, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5903, - ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=5904, - ["corrupted_gem_experience_gain_+%"]=3135, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=5905, - ["corrupting_fever_damage_+%"]=5906, - ["corrupting_fever_duration_+%"]=5907, - ["count_as_blocking_attack_from_shield_attack_first_target"]=5908, - ["count_as_having_max_endurance_charges"]=5909, - ["count_as_having_max_endurance_frenzy_power_charges"]=5910, - ["count_as_having_max_frenzy_charges"]=5911, - ["count_as_having_max_power_charges"]=5912, - ["counter_attacks_maximum_added_cold_damage"]=4229, - ["counter_attacks_maximum_added_physical_damage"]=4222, - ["counter_attacks_minimum_added_cold_damage"]=4229, - ["counter_attacks_minimum_added_physical_damage"]=4222, - ["counterattacks_cooldown_recovery_+%"]=5913, - ["counterattacks_deal_double_damage"]=5914, - ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5915, - ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5916, - ["cover_in_ash_on_hit_%"]=5917, - ["cover_in_ash_on_hit_%_while_you_are_burning"]=5918, - ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5919, - ["cover_in_frost_on_hit"]=5920, - ["cover_in_frost_on_hit_%"]=5921, - ["crab_aspect_crab_barrier_max_+"]=4373, - ["crackling_lance_cast_speed_+%"]=5923, - ["crackling_lance_damage_+%"]=5924, - ["create_additional_brand_%_chance"]=5925, - ["create_blighted_spore_on_killing_rare_enemy"]=5926, - ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5927, - ["create_consecrated_ground_on_kill_%"]=5928, - ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5929, - ["create_fungal_ground_instead_of_consecrated_ground"]=5930, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=5931, - ["create_profane_ground_instead_of_consecrated_ground"]=5932, - ["create_sand_mirage_on_contact_for_damaging_non_channel_spells"]=215, - ["create_smoke_cloud_on_kill_%_chance"]=5933, - ["creeping_frost_cold_snap_all_damage_can_sap"]=5934, - ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5935, - ["cremation_base_fires_projectile_every_x_ms"]=5936, - ["critical_ailment_dot_multiplier_+"]=1268, - ["critical_bleeding_dot_multiplier_+"]=1273, - ["critical_ignite_dot_multiplier_+"]=1276, - ["critical_multiplier_+%_per_10_max_es_on_shield"]=5938, - ["critical_poison_dot_multiplier_+"]=1286, - ["critical_strike_%_chance_to_deal_double_damage"]=6001, - ["critical_strike_chance_+%"]=1483, - ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5945, - ["critical_strike_chance_+%_during_any_flask_effect"]=5946, - ["critical_strike_chance_+%_final_while_affected_by_precision"]=5939, - ["critical_strike_chance_+%_final_while_unhinged"]=5947, - ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3478, - ["critical_strike_chance_+%_for_forking_arrows"]=4327, - ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5948, - ["critical_strike_chance_+%_if_enemy_killed_recently"]=5949, - ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5950, - ["critical_strike_chance_+%_if_have_not_crit_recently"]=5951, - ["critical_strike_chance_+%_if_havent_blocked_recently"]=5952, - ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5953, - ["critical_strike_chance_+%_per_10_strength"]=5954, - ["critical_strike_chance_+%_per_25_intelligence"]=5955, - ["critical_strike_chance_+%_per_8_strength"]=2963, - ["critical_strike_chance_+%_per_blitz_charge"]=5956, - ["critical_strike_chance_+%_per_brand"]=5957, - ["critical_strike_chance_+%_per_endurance_charge"]=5958, - ["critical_strike_chance_+%_per_frenzy_charge"]=5959, - ["critical_strike_chance_+%_per_intensity"]=5960, - ["critical_strike_chance_+%_per_level"]=2986, - ["critical_strike_chance_+%_per_lightning_adaptation"]=4443, - ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5961, - ["critical_strike_chance_+%_per_power_charge"]=3190, - ["critical_strike_chance_+%_per_righteous_charge"]=5962, - ["critical_strike_chance_+%_per_stackable_unique_jewel"]=4183, - ["critical_strike_chance_+%_vs_bleeding_enemies"]=3214, - ["critical_strike_chance_+%_vs_blinded_enemies"]=3430, - ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=4080, - ["critical_strike_chance_+%_vs_enemies_with_lightning_exposure"]=5940, - ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3554, - ["critical_strike_chance_+%_vs_marked_enemy"]=5963, - ["critical_strike_chance_+%_vs_poisoned_enemies"]=3316, - ["critical_strike_chance_+%_vs_shocked_enemies"]=5937, - ["critical_strike_chance_+%_vs_taunted_enemies"]=5964, - ["critical_strike_chance_+%_when_in_main_hand"]=4208, - ["critical_strike_chance_+%_while_affected_by_wrath"]=5965, - ["critical_strike_chance_+%_while_channelling"]=5966, - ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=10871, - ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5970, - ["critical_strike_chance_+%_with_at_least_200_int"]=4388, - ["critical_strike_chance_against_cursed_enemies_+%"]=5941, - ["critical_strike_chance_against_enemies_on_full_life_+%"]=3790, - ["critical_strike_chance_increased_by_lightning_resistance"]=5942, - ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5943, - ["critical_strike_chance_increased_by_spell_suppression_chance"]=5944, - ["critical_strike_chance_while_dual_wielding_+%"]=1504, - ["critical_strike_chance_while_wielding_shield_+%"]=1497, - ["critical_strike_damage_cannot_be_reflected"]=5971, - ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5999, - ["critical_strike_multiplier_+%_with_claws_daggers"]=6000, - ["critical_strike_multiplier_+_during_any_flask_effect"]=5977, - ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5978, - ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5979, - ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5980, - ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5981, - ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5982, - ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5983, - ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5972, - ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5984, - ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5985, - ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5986, - ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5987, - ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5988, - ["critical_strike_multiplier_+_per_1%_block_chance"]=3213, - ["critical_strike_multiplier_+_per_25_dexterity"]=5973, - ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5989, - ["critical_strike_multiplier_+_per_power_charge"]=3306, - ["critical_strike_multiplier_+_vs_bleeding_enemies"]=3211, - ["critical_strike_multiplier_+_vs_burning_enemies"]=3212, - ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3580, - ["critical_strike_multiplier_+_vs_stunned_enemies"]=5974, - ["critical_strike_multiplier_+_vs_taunted_enemies"]=5990, - ["critical_strike_multiplier_+_vs_unique_enemies"]=5991, - ["critical_strike_multiplier_+_while_affected_by_anger"]=5992, - ["critical_strike_multiplier_+_while_affected_by_precision"]=5993, - ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=2078, - ["critical_strike_multiplier_+_with_herald_skills"]=5997, - ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5975, - ["critical_strike_multiplier_is_100"]=1539, - ["critical_strike_multiplier_is_300"]=5976, - ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3457, - ["critical_strike_multiplier_while_dual_wielding_+"]=1527, - ["critical_strike_multiplier_with_dagger_+"]=1517, - ["critical_strikes_always_knockback_shocked_enemies"]=6002, - ["critical_strikes_deal_no_damage"]=6003, - ["critical_strikes_do_not_always_apply_non_damaging_ailments"]=6004, - ["critical_strikes_do_not_always_freeze"]=2055, - ["critical_strikes_do_not_always_ignite"]=6005, - ["critical_strikes_ignore_elemental_resistances"]=3476, - ["critical_strikes_on_you_do_not_always_inflict_elemental_ailments"]=6006, - ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=6007, - ["critical_support_gem_level_+"]=6008, - ["crits_have_culling_strike"]=3464, - ["cruelty_effect_+%"]=6009, - ["crush_for_2_seconds_on_hit_%_chance"]=6010, - ["crush_on_hit_ms_vs_full_life_enemies"]=6011, - ["culling_strike_on_burning_enemies"]=2860, - ["culling_strike_on_enemies_affected_by_poachers_mark"]=6012, - ["culling_strike_on_frozen_enemies"]=6013, - ["culling_strike_vs_cursed_enemies"]=6014, - ["culling_strike_vs_marked_enemy"]=6015, + ["can_gain_banner_resource_while_banner_is_placed"]=1185, + ["can_have_active_mercenary_follower"]=5485, + ["can_inflict_multiple_ignites"]=2644, + ["can_only_have_one_ancestor_totem_buff"]=5486, + ["can_only_inflict_wither_against_full_life_enemies"]=5487, + ["can_see_corpse_types"]=789, + ["can_trigger_summon_elemental_relic_on_nearby_ally_kill_or_on_hit_rare_or_unique"]=5488, + ["cannot_adapt_to_cold"]=5489, + ["cannot_adapt_to_fire"]=5490, + ["cannot_adapt_to_lightning"]=5491, + ["cannot_be_affected_by_flasks"]=3807, + ["cannot_be_bled_by_bleeding_enemies"]=5492, + ["cannot_be_blinded"]=3032, + ["cannot_be_blinded_while_affected_by_precision"]=5493, + ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=5494, + ["cannot_be_chilled_or_frozen_while_moving"]=5495, + ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=5496, + ["cannot_be_chilled_while_burning"]=5497, + ["cannot_be_crit_if_you_have_been_stunned_recently"]=5498, + ["cannot_be_cursed_with_silence"]=3152, + ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=5499, + ["cannot_be_frozen_if_you_have_been_frozen_recently"]=5500, + ["cannot_be_frozen_with_dex_higher_than_int"]=5501, + ["cannot_be_ignited_by_ignited_enemies"]=5502, + ["cannot_be_ignited_if_you_have_been_ignited_recently"]=5503, + ["cannot_be_ignited_while_at_maximum_endurance_charges"]=5504, + ["cannot_be_ignited_while_flame_golem_summoned"]=5505, + ["cannot_be_ignited_with_strength_higher_than_dex"]=5506, + ["cannot_be_inflicted_by_corrupted_blood"]=5507, + ["cannot_be_killed_by_elemental_reflect"]=2727, + ["cannot_be_knocked_back"]=3222, + ["cannot_be_poisoned"]=3429, + ["cannot_be_poisoned_if_x_poisons_on_you"]=5508, + ["cannot_be_poisoned_while_bleeding"]=5509, + ["cannot_be_shocked_if_you_have_been_shocked_recently"]=5510, + ["cannot_be_shocked_or_ignited_while_moving"]=5511, + ["cannot_be_shocked_while_at_maximum_endurance_charges"]=4238, + ["cannot_be_shocked_while_at_maximum_power_charges"]=5512, + ["cannot_be_shocked_while_frozen"]=2956, + ["cannot_be_shocked_while_lightning_golem_summoned"]=5513, + ["cannot_be_shocked_with_int_higher_than_strength"]=5514, + ["cannot_be_stunned"]=2219, + ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=4389, + ["cannot_be_stunned_by_blocked_hits"]=5515, + ["cannot_be_stunned_by_hits_of_only_physical_damage"]=5516, + ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=4388, + ["cannot_be_stunned_by_suppressed_spell_damage"]=5517, + ["cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"]=5518, + ["cannot_be_stunned_if_have_not_been_hit_recently"]=5519, + ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=4409, + ["cannot_be_stunned_if_you_have_been_stunned_recently"]=5520, + ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=5521, + ["cannot_be_stunned_if_you_have_ghost_dance"]=5522, + ["cannot_be_stunned_when_on_low_life"]=2221, + ["cannot_be_stunned_while_at_max_endurance_charges"]=4111, + ["cannot_be_stunned_while_bleeding"]=5523, + ["cannot_be_stunned_while_fortified"]=5524, + ["cannot_be_stunned_while_leeching"]=3272, + ["cannot_be_stunned_while_no_gems_in_helmet"]=5525, + ["cannot_be_stunned_while_using_chaos_skill"]=5526, + ["cannot_be_stunned_with_25_rage"]=9958, + ["cannot_block_attacks"]=2305, + ["cannot_block_spells"]=5527, + ["cannot_block_while_no_energy_shield"]=2791, + ["cannot_cast_curses"]=2735, + ["cannot_cast_spells"]=5528, + ["cannot_cause_bleeding"]=2539, + ["cannot_crit_non_shocked_enemies"]=4197, + ["cannot_critical_strike_with_attacks"]=5529, + ["cannot_fish_from_water"]=5530, + ["cannot_freeze_shock_ignite_on_critical"]=2728, + ["cannot_gain_charges"]=5531, + ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=5532, + ["cannot_gain_damaging_ailments"]=5533, + ["cannot_gain_endurance_charges_while_have_onslaught"]=2812, + ["cannot_gain_power_charges"]=5534, + ["cannot_gain_rage_during_soul_gain_prevention"]=5535, + ["cannot_have_energy_shield_leeched_from"]=5536, + ["cannot_have_life_leeched_from"]=2489, + ["cannot_have_mana_leeched_from"]=2490, + ["cannot_have_more_than_1_damaging_ailment"]=5537, + ["cannot_have_more_than_1_non_damaging_ailment"]=5538, + ["cannot_increase_quantity_of_dropped_items"]=2600, + ["cannot_increase_rarity_of_dropped_items"]=2599, + ["cannot_inflict_status_ailments"]=1909, + ["cannot_knockback"]=3069, + ["cannot_leech_life_from_critical_strikes"]=4337, + ["cannot_leech_or_regenerate_mana"]=2619, + ["cannot_leech_when_on_low_life"]=2620, + ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=4410, + ["cannot_penetrate_or_ignore_elemental_resistances"]=5539, + ["cannot_poison_enemies_with_x_poisons"]=5540, + ["cannot_receive_elemental_ailments_from_cursed_enemies"]=5541, + ["cannot_receive_elemental_ailments_while_no_gems_in_body_armour"]=5542, + ["cannot_recharge_energy_shield"]=5543, + ["cannot_regenerate_energy_shield"]=5544, + ["cannot_resist_cold_damage"]=2238, + ["cannot_stun"]=1902, + ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=4478, + ["cannot_take_reflected_elemental_damage"]=5545, + ["cannot_take_reflected_elemental_damage_if_4_shaper_items"]=4534, + ["cannot_take_reflected_physical_damage"]=5546, + ["cannot_take_reflected_physical_damage_if_4_elder_items"]=4535, + ["cannot_taunt_enemies"]=5547, + ["cannot_use_flask_in_fifth_slot"]=5548, + ["cannot_use_life_flasks"]=100, + ["cannot_use_mana_flasks"]=5549, + ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=5550, + ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=5551, + ["cast_blink_arrow_on_attack_with_mirror_arrow"]=5552, + ["cast_body_swap_on_detonate_dead_cast"]=5553, + ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=5554, + ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=5555, + ["cast_hydrosphere_while_channeling_winter_orb"]=5556, + ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=5557, + ["cast_linked_spells_on_shocked_enemy_kill_%"]=798, + ["cast_mirror_arrow_on_attack_with_blink_arrow"]=5558, + ["cast_socketed_minion_skills_on_bow_kill_%"]=799, + ["cast_socketed_spells_on_X_life_spent"]=800, + ["cast_socketed_spells_on_X_mana_spent"]=801, + ["cast_socketed_spells_on_life_spent_%_chance"]=800, + ["cast_socketed_spells_on_mana_spent_%_chance"]=801, + ["cast_speed_+%_during_flask_effect"]=5565, + ["cast_speed_+%_final_while_holding_fishing_rod"]=5559, + ["cast_speed_+%_for_4_seconds_on_attack"]=3595, + ["cast_speed_+%_if_enemy_killed_recently"]=5566, + ["cast_speed_+%_if_have_crit_recently"]=5567, + ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=5568, + ["cast_speed_+%_per_20_dexterity"]=5560, + ["cast_speed_+%_per_corpse_consumed_recently"]=5569, + ["cast_speed_+%_per_frenzy_charge"]=2048, + ["cast_speed_+%_per_num_unique_spells_cast_recently"]=5561, + ["cast_speed_+%_per_power_charge"]=5570, + ["cast_speed_+%_when_on_full_life"]=2047, + ["cast_speed_+%_when_on_low_life"]=2046, + ["cast_speed_+%_while_affected_by_zealotry"]=5571, + ["cast_speed_+%_while_chilled"]=5572, + ["cast_speed_+%_while_holding_bow"]=1498, + ["cast_speed_+%_while_holding_shield"]=1496, + ["cast_speed_+%_while_holding_staff"]=1497, + ["cast_speed_+%_while_ignited"]=2999, + ["cast_speed_for_brand_skills_+%"]=5562, + ["cast_speed_for_chaos_skills_+%"]=1440, + ["cast_speed_for_cold_skills_+%"]=1424, + ["cast_speed_for_elemental_skills_+%"]=5563, + ["cast_speed_for_fire_skills_+%"]=1413, + ["cast_speed_for_lightning_skills_+%"]=1432, + ["cast_speed_for_minion_skills_+%"]=5564, + ["cast_speed_increase_from_arcane_surge_also_applies_to_move_speed"]=4503, + ["cast_speed_while_dual_wielding_+%"]=1495, + ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=5573, + ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=5574, + ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=5575, + ["cat_aspect_reserves_no_mana"]=5576, + ["cats_stealth_duration_ms_+"]=5577, + ["cause_maim_on_critical_strike_attack"]=4134, + ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=5578, + ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=5579, + ["caustic_arrow_damage_+%"]=3748, + ["caustic_arrow_damage_over_time_+%"]=5580, + ["caustic_arrow_duration_+%"]=3995, + ["caustic_arrow_hit_damage_+%"]=5581, + ["caustic_arrow_radius_+%"]=3892, + ["caustic_arrow_withered_base_duration_ms"]=3749, + ["caustic_arrow_withered_on_hit_%"]=3749, + ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3501, + ["celestial_footprints_from_item"]=11046, + ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=5582, + ["chain_strike_cone_radius_+_per_12_rage"]=5583, + ["chain_strike_damage_+%"]=5584, + ["chain_strike_gain_rage_on_hit_%_chance"]=5585, + ["chaining_range_+%"]=5586, + ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=5587, + ["chance_%_elemental_ailments_redirected_to_nearby_minion"]=5643, + ["chance_%_to_convert_armour_to_blessed_orb"]=5588, + ["chance_%_to_convert_armour_to_cartographers_chisel"]=5589, + ["chance_%_to_convert_armour_to_chromatic_orb"]=5590, + ["chance_%_to_convert_armour_to_fusing_orb"]=5591, + ["chance_%_to_convert_armour_to_jewellers_orb"]=5592, + ["chance_%_to_convert_armour_to_orb_of_alteration"]=5593, + ["chance_%_to_convert_armour_to_orb_of_binding"]=5594, + ["chance_%_to_convert_armour_to_orb_of_scouring"]=5595, + ["chance_%_to_convert_armour_to_orb_of_unmaking"]=5596, + ["chance_%_to_convert_jewellery_to_divine_orb"]=5597, + ["chance_%_to_convert_jewellery_to_exalted_orb"]=5598, + ["chance_%_to_convert_jewellery_to_orb_of_annulment"]=5599, + ["chance_%_to_convert_weapon_to_chaos_orb"]=5600, + ["chance_%_to_convert_weapon_to_enkindling_orb"]=5601, + ["chance_%_to_convert_weapon_to_gemcutters_prism"]=5602, + ["chance_%_to_convert_weapon_to_glassblowers_bauble"]=5603, + ["chance_%_to_convert_weapon_to_instilling_orb"]=5604, + ["chance_%_to_convert_weapon_to_orb_of_regret"]=5605, + ["chance_%_to_convert_weapon_to_regal_orb"]=5606, + ["chance_%_to_convert_weapon_to_vaal_orb"]=5607, + ["chance_%_to_drop_additional_ancient_orb"]=5608, + ["chance_%_to_drop_additional_awakened_sextant"]=5609, + ["chance_%_to_drop_additional_blessed_orb"]=5610, + ["chance_%_to_drop_additional_cartographers_chisel"]=5611, + ["chance_%_to_drop_additional_chaos_orb"]=5612, + ["chance_%_to_drop_additional_chromatic_orb"]=5613, + ["chance_%_to_drop_additional_cleansing_currency"]=5644, + ["chance_%_to_drop_additional_cleansing_influenced_item"]=5645, + ["chance_%_to_drop_additional_currency"]=5646, + ["chance_%_to_drop_additional_divination_cards"]=5647, + ["chance_%_to_drop_additional_divination_cards_corrupted"]=5648, + ["chance_%_to_drop_additional_divination_cards_currency"]=5649, + ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5650, + ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5651, + ["chance_%_to_drop_additional_divination_cards_currency_league"]=5652, + ["chance_%_to_drop_additional_divination_cards_gems"]=5653, + ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5654, + ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5655, + ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5656, + ["chance_%_to_drop_additional_divination_cards_map"]=5657, + ["chance_%_to_drop_additional_divination_cards_map_unique"]=5658, + ["chance_%_to_drop_additional_divination_cards_unique"]=5659, + ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5660, + ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5661, + ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5662, + ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5663, + ["chance_%_to_drop_additional_divine_orb"]=5614, + ["chance_%_to_drop_additional_eldritch_chaos_orb"]=5615, + ["chance_%_to_drop_additional_eldritch_exalted_orb"]=5616, + ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=5617, + ["chance_%_to_drop_additional_enkindling_orb"]=5618, + ["chance_%_to_drop_additional_exalted_orb"]=5619, + ["chance_%_to_drop_additional_fusing_orb"]=5620, + ["chance_%_to_drop_additional_gem"]=5664, + ["chance_%_to_drop_additional_gemcutters_prism"]=5621, + ["chance_%_to_drop_additional_glassblowers_bauble"]=5622, + ["chance_%_to_drop_additional_grand_eldritch_ember"]=5623, + ["chance_%_to_drop_additional_grand_eldritch_ichor"]=5624, + ["chance_%_to_drop_additional_greater_eldritch_ember"]=5625, + ["chance_%_to_drop_additional_greater_eldritch_ichor"]=5626, + ["chance_%_to_drop_additional_instilling_orb"]=5627, + ["chance_%_to_drop_additional_jewellers_orb"]=5628, + ["chance_%_to_drop_additional_lesser_eldritch_ember"]=5629, + ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=5630, + ["chance_%_to_drop_additional_maps"]=5665, + ["chance_%_to_drop_additional_orb_of_alteration"]=5631, + ["chance_%_to_drop_additional_orb_of_annulment"]=5632, + ["chance_%_to_drop_additional_orb_of_binding"]=5633, + ["chance_%_to_drop_additional_orb_of_regret"]=5634, + ["chance_%_to_drop_additional_orb_of_scouring"]=5635, + ["chance_%_to_drop_additional_orb_of_unmaking"]=5636, + ["chance_%_to_drop_additional_regal_orb"]=5637, + ["chance_%_to_drop_additional_scarab"]=5666, + ["chance_%_to_drop_additional_scarab_abyss"]=5667, + ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5668, + ["chance_%_to_drop_additional_scarab_abyss_polished"]=5669, + ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5670, + ["chance_%_to_drop_additional_scarab_anarchy"]=5671, + ["chance_%_to_drop_additional_scarab_beasts"]=5672, + ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5673, + ["chance_%_to_drop_additional_scarab_beasts_polished"]=5674, + ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5675, + ["chance_%_to_drop_additional_scarab_betrayal"]=5676, + ["chance_%_to_drop_additional_scarab_beyond"]=5677, + ["chance_%_to_drop_additional_scarab_blight"]=5678, + ["chance_%_to_drop_additional_scarab_blight_gilded"]=5679, + ["chance_%_to_drop_additional_scarab_blight_polished"]=5680, + ["chance_%_to_drop_additional_scarab_blight_rusted"]=5681, + ["chance_%_to_drop_additional_scarab_breach"]=5682, + ["chance_%_to_drop_additional_scarab_breach_gilded"]=5683, + ["chance_%_to_drop_additional_scarab_breach_polished"]=5684, + ["chance_%_to_drop_additional_scarab_breach_rusted"]=5685, + ["chance_%_to_drop_additional_scarab_delirium"]=5686, + ["chance_%_to_drop_additional_scarab_divination"]=5687, + ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5688, + ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5689, + ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5690, + ["chance_%_to_drop_additional_scarab_domination"]=5691, + ["chance_%_to_drop_additional_scarab_elder_gilded"]=5692, + ["chance_%_to_drop_additional_scarab_elder_polished"]=5693, + ["chance_%_to_drop_additional_scarab_elder_rusted"]=5694, + ["chance_%_to_drop_additional_scarab_essence"]=5695, + ["chance_%_to_drop_additional_scarab_expedition"]=5696, + ["chance_%_to_drop_additional_scarab_harvest"]=5697, + ["chance_%_to_drop_additional_scarab_incursion"]=5698, + ["chance_%_to_drop_additional_scarab_influence"]=5699, + ["chance_%_to_drop_additional_scarab_legion"]=5700, + ["chance_%_to_drop_additional_scarab_legion_gilded"]=5701, + ["chance_%_to_drop_additional_scarab_legion_polished"]=5702, + ["chance_%_to_drop_additional_scarab_legion_rusted"]=5703, + ["chance_%_to_drop_additional_scarab_maps"]=5704, + ["chance_%_to_drop_additional_scarab_maps_gilded"]=5705, + ["chance_%_to_drop_additional_scarab_maps_polished"]=5706, + ["chance_%_to_drop_additional_scarab_maps_rusted"]=5707, + ["chance_%_to_drop_additional_scarab_mercenaries"]=5708, + ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5709, + ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5710, + ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5711, + ["chance_%_to_drop_additional_scarab_misc"]=5712, + ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5713, + ["chance_%_to_drop_additional_scarab_perandus_polished"]=5714, + ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5715, + ["chance_%_to_drop_additional_scarab_ritual"]=5716, + ["chance_%_to_drop_additional_scarab_settlers"]=5717, + ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5718, + ["chance_%_to_drop_additional_scarab_shaper_polished"]=5719, + ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5720, + ["chance_%_to_drop_additional_scarab_strongbox"]=5721, + ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5722, + ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5723, + ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5724, + ["chance_%_to_drop_additional_scarab_sulphite"]=5725, + ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5726, + ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5727, + ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5728, + ["chance_%_to_drop_additional_scarab_torment"]=5729, + ["chance_%_to_drop_additional_scarab_torment_gilded"]=5730, + ["chance_%_to_drop_additional_scarab_torment_polished"]=5731, + ["chance_%_to_drop_additional_scarab_torment_rusted"]=5732, + ["chance_%_to_drop_additional_scarab_ultimatum"]=5733, + ["chance_%_to_drop_additional_scarab_uniques"]=5734, + ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5735, + ["chance_%_to_drop_additional_scarab_uniques_polished"]=5736, + ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5737, + ["chance_%_to_drop_additional_tangled_currency"]=5738, + ["chance_%_to_drop_additional_tangled_influenced_item"]=5739, + ["chance_%_to_drop_additional_unique"]=5740, + ["chance_%_to_drop_additional_vaal_orb"]=5638, + ["chance_%_to_drop_additional_veiled_chaos_orb"]=5639, + ["chance_%_to_gain_brine_charge_instead_of_endurance_charge"]=5640, + ["chance_%_to_return_to_full_life_on_reaching_low_life"]=5741, + ["chance_for_double_items_from_heist_chests_%"]=5641, + ["chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%"]=3610, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5642, + ["chance_per_second_of_fire_spreading_between_enemies_%"]=1923, + ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=3375, + ["chance_to_be_frozen_%"]=3005, + ["chance_to_be_frozen_shocked_ignited_%"]=3008, + ["chance_to_be_hindered_when_hit_by_spells_%"]=5742, + ["chance_to_be_ignited_%"]=3006, + ["chance_to_be_maimed_when_hit_%"]=5743, + ["chance_to_be_poisoned_%"]=3430, + ["chance_to_be_sapped_when_hit_%"]=5744, + ["chance_to_be_scorched_when_hit_%"]=5745, + ["chance_to_be_shocked_%"]=3007, + ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5746, + ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5747, + ["chance_to_block_attack_damage_if_used_retaliation_recently_%"]=5748, + ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5749, + ["chance_to_block_attacks_%_while_channelling"]=5750, + ["chance_to_block_spells_%_if_cast_a_spell_recently"]=5752, + ["chance_to_block_spells_%_if_damaged_by_a_hit_recently"]=5753, + ["chance_to_block_spells_%_if_used_retaliation_recently"]=5751, + ["chance_to_block_spells_%_while_affected_by_discipline"]=5754, + ["chance_to_block_spells_%_while_channelling"]=5755, + ["chance_to_counter_strike_when_hit_%"]=2887, + ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5756, + ["chance_to_crush_on_hit_%"]=5757, + ["chance_to_curse_self_with_punishment_on_kill_%"]=3179, + ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5758, + ["chance_to_deal_double_damage_%"]=5761, + ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5762, + ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5763, + ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5764, + ["chance_to_deal_double_damage_%_per_10_intelligence"]=5765, + ["chance_to_deal_double_damage_%_per_4_rage"]=5766, + ["chance_to_deal_double_damage_%_per_500_strength"]=5767, + ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5759, + ["chance_to_deal_double_damage_%_while_focused"]=5768, + ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5769, + ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5760, + ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=10884, + ["chance_to_deal_double_damage_while_on_full_life_%"]=5770, + ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5771, + ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5772, + ["chance_to_double_armour_effect_on_hit_%"]=5773, + ["chance_to_double_armour_effect_on_hit_%_per_enemy_hit_taken_recently_capped"]=5774, + ["chance_to_double_stun_duration_%"]=3624, + ["chance_to_evade_%_while_you_have_energy_shield"]=5778, + ["chance_to_evade_attacks_%"]=5775, + ["chance_to_evade_attacks_%_if_havent_been_hit_recently"]=5776, + ["chance_to_evade_attacks_%_while_affected_by_grace"]=5777, + ["chance_to_fork_extra_projectile_%"]=5779, + ["chance_to_fortify_on_melee_hit_+%"]=2311, + ["chance_to_fortify_on_melee_hit_+%_if_6_warlord_items"]=4548, + ["chance_to_fortify_on_melee_stun_%"]=5780, + ["chance_to_freeze_%_while_using_flask"]=2981, + ["chance_to_freeze_enemies_for_1_second_when_hit_%"]=5781, + ["chance_to_freeze_shock_ignite_%"]=2859, + ["chance_to_freeze_shock_ignite_%_during_flask_effect"]=4286, + ["chance_to_freeze_shock_ignite_%_while_affected_by_a_herald"]=5782, + ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5783, + ["chance_to_gain_3_additional_exerted_attacks_%"]=5784, + ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5785, + ["chance_to_gain_arohonguis_embrace_%_on_kill"]=700, + ["chance_to_gain_chaotic_might_on_crit_for_4_seconds_%"]=5786, + ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5787, + ["chance_to_gain_endurance_charge_on_block_%"]=2171, + ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1869, + ["chance_to_gain_endurance_charge_on_crit_%"]=1866, + ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5788, + ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1867, + ["chance_to_gain_endurance_charge_when_hit_%"]=2809, + ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5789, + ["chance_to_gain_endurance_charge_when_you_taunt_enemy_%"]=5790, + ["chance_to_gain_frenzy_charge_on_block_%"]=5792, + ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5791, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1870, + ["chance_to_gain_frenzy_charge_on_stun_%"]=5793, + ["chance_to_gain_hinekoras_embrace_%_on_kill"]=701, + ["chance_to_gain_kitavas_embrace_%_on_kill"]=702, + ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=4416, + ["chance_to_gain_ngamahus_embrace_%_on_kill"]=703, + ["chance_to_gain_old_unholy_might_on_kill_for_10_seconds_%"]=5803, + ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5794, + ["chance_to_gain_onslaught_on_flask_use_%"]=5795, + ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5796, + ["chance_to_gain_onslaught_on_kill_%"]=3051, + ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5797, + ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3440, + ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5798, + ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1871, + ["chance_to_gain_power_charge_on_melee_stun_%"]=2828, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5799, + ["chance_to_gain_power_charge_on_stun_%"]=2829, + ["chance_to_gain_power_charge_when_block_%"]=2175, + ["chance_to_gain_ramakos_embrace_%_on_kill"]=704, + ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2821, + ["chance_to_gain_random_standard_charge_on_hit_%"]=5800, + ["chance_to_gain_rongokurais_embrace_%_on_kill"]=705, + ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5801, + ["chance_to_gain_tasalios_embrace_%_on_kill"]=706, + ["chance_to_gain_tawhoas_embrace_%_on_kill"]=707, + ["chance_to_gain_tukohamas_embrace_%_on_kill"]=708, + ["chance_to_gain_unholy_might_on_block_%"]=3104, + ["chance_to_gain_unholy_might_on_block_ms"]=3104, + ["chance_to_gain_unholy_might_on_crit_for_4_seconds_%"]=5802, + ["chance_to_gain_unholy_might_on_kill_for_3_seconds_%"]=3437, + ["chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=3438, + ["chance_to_gain_unholy_might_on_melee_kill_%"]=3141, + ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=3167, + ["chance_to_gain_vaal_soul_on_kill_%"]=3162, + ["chance_to_gain_valakos_embrace_%_on_kill"]=709, + ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5804, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=3445, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5805, + ["chance_to_grant_nearby_enemies_old_unholy_might_on_kill_%"]=3443, + ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=3442, + ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5806, + ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=3444, + ["chance_to_ignite_%_while_ignited"]=3000, + ["chance_to_ignite_%_while_using_flask"]=2980, + ["chance_to_ignite_freeze_shock_and_poison_+%_vs_cursed_enemies"]=5807, + ["chance_to_ignore_hexproof_%"]=5808, + ["chance_to_inflict_additional_impale_%"]=5809, + ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5810, + ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5811, + ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5812, + ["chance_to_inflict_frostburn_%"]=2077, + ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5813, + ["chance_to_inflict_sap_on_enemy_on_block_%"]=5814, + ["chance_to_inflict_sapped_%"]=2081, + ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5815, + ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5816, + ["chance_to_intimidate_on_hit_%"]=5817, + ["chance_to_leave_2_ground_blades_%"]=5818, + ["chance_to_not_gain_tincture_toxicity_%"]=5819, + ["chance_to_place_an_additional_mine_%"]=3608, + ["chance_to_poison_%_vs_cursed_enemies"]=4268, + ["chance_to_poison_on_critical_strike_with_bow_%"]=1500, + ["chance_to_poison_on_critical_strike_with_dagger_%"]=1501, + ["chance_to_poison_on_hit_%_per_power_charge"]=5820, + ["chance_to_poison_on_hit_with_attacks_%"]=3234, + ["chance_to_poison_on_melee_hit_%"]=4319, + ["chance_to_remove_1_tincture_toxicity_on_kill_%"]=5821, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5822, + ["chance_to_scorch_%"]=2074, + ["chance_to_shock_%_while_using_flask"]=2982, + ["chance_to_shock_chilled_enemies_%"]=5823, + ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5824, + ["chance_to_summon_two_totems_%"]=5825, + ["chance_to_taunt_on_hit_%"]=3490, + ["chance_to_throw_4_additional_traps_%"]=5826, + ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=802, + ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=579, + ["chance_to_unnerve_on_hit_%"]=5827, + ["chance_to_unnerve_on_hit_with_spells_%"]=5828, + ["channelled_skill_damage_+%"]=5829, + ["channelled_skill_damage_+%_per_10_devotion"]=5830, + ["chaos_critical_strike_chance_+%"]=1532, + ["chaos_critical_strike_multiplier_+"]=1558, + ["chaos_damage_%_taken_from_mana_before_life"]=5838, + ["chaos_damage_+%"]=1433, + ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5839, + ["chaos_damage_+%_per_equipped_corrupted_item"]=3157, + ["chaos_damage_+%_per_level"]=3035, + ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5840, + ["chaos_damage_can_chill"]=2926, + ["chaos_damage_can_freeze"]=2927, + ["chaos_damage_can_ignite_chill_and_shock"]=2945, + ["chaos_damage_can_shock"]=2928, + ["chaos_damage_cannot_poison"]=2946, + ["chaos_damage_chance_to_poison_%"]=3090, + ["chaos_damage_does_not_bypass_energy_shield"]=2560, + ["chaos_damage_does_not_bypass_energy_shield_while_not_low_life"]=5831, + ["chaos_damage_does_not_bypass_energy_shield_while_not_low_mana"]=5832, + ["chaos_damage_over_time_+%"]=1261, + ["chaos_damage_over_time_heals_while_leeching_life"]=5834, + ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5835, + ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1306, + ["chaos_damage_over_time_multiplier_+_with_attacks"]=1309, + ["chaos_damage_per_minute_while_affected_by_flask"]=5837, + ["chaos_damage_poisons"]=3089, + ["chaos_damage_resistance_%_per_1%_cold_resistance"]=5841, + ["chaos_damage_resistance_%_per_1%_fire_resistance"]=5842, + ["chaos_damage_resistance_%_per_1%_lightning_resistance"]=5843, + ["chaos_damage_resistance_%_per_endurance_charge"]=5844, + ["chaos_damage_resistance_%_per_poison_stack"]=5846, + ["chaos_damage_resistance_%_when_on_low_life"]=2605, + ["chaos_damage_resistance_%_when_stationary"]=5847, + ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5848, + ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5849, + ["chaos_damage_resistance_is_doubled"]=5845, + ["chaos_damage_resisted_by_highest_resistance"]=5850, + ["chaos_damage_resisted_by_lowest_resistance"]=5851, + ["chaos_damage_taken_+"]=2897, + ["chaos_damage_taken_+%"]=2290, + ["chaos_damage_taken_goes_to_life_over_4_seconds_%"]=5852, + ["chaos_damage_taken_over_time_+%"]=1995, + ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5853, + ["chaos_damage_to_return_to_melee_attacker"]=2253, + ["chaos_damage_to_return_when_hit"]=2258, + ["chaos_damage_with_attack_skills_+%"]=5854, + ["chaos_damage_with_spell_skills_+%"]=5855, + ["chaos_dot_multiplier_+"]=1307, + ["chaos_golem_damage_+%"]=3757, + ["chaos_golem_elemental_resistances_%"]=4048, + ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5856, + ["chaos_hit_and_dot_damage_%_taken_as_fire"]=5857, + ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=5858, + ["chaos_immunity"]=2214, + ["chaos_inoculation_keystone_energy_shield_+%_final"]=2240, + ["chaos_non_ailment_damage_over_time_multiplier_+"]=1308, + ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=4128, + ["chaos_resistance_+_while_using_flask"]=3361, + ["chaos_skill_chance_to_hinder_on_hit_%"]=5859, + ["chaos_skill_chance_to_ignite_%"]=5860, + ["chaos_skill_effect_duration_+%"]=1943, + ["chaos_skill_gem_level_+"]=5861, + ["chaos_skill_gem_level_+_if_6_hunter_items"]=4549, + ["chaos_skills_area_of_effect_+%"]=5862, + ["chaos_spell_skill_gem_level_+"]=1660, + ["chaos_weakness_ignores_hexproof"]=2651, + ["chaos_weakness_mana_reservation_+%"]=4105, + ["charge_duration_+%"]=3084, + ["charged_attack_damage_+%"]=4201, + ["charged_attack_radius_+%"]=4208, + ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3911, + ["charged_dash_damage_+%"]=3792, + ["charged_dash_movement_speed_+%_final"]=5863, + ["charges_gained_+%"]=2230, + ["chart_magic_monsters_voyage_display_stat"]=2391, + ["chart_rare_monsters_possessed_display_stat"]=9017, + ["chart_rare_monsters_voyage_display_stat"]=2392, + ["chest_drop_additional_corrupted_item_divination_cards"]=5864, + ["chest_drop_additional_currency_item_divination_cards"]=5865, + ["chest_drop_additional_divination_cards_from_current_world_area"]=5866, + ["chest_drop_additional_divination_cards_from_same_set"]=5867, + ["chest_drop_additional_unique_item_divination_cards"]=5868, + ["chest_item_quantity_+%"]=1641, + ["chest_item_rarity_+%"]=1647, + ["chest_number_of_additional_pirate_uniques_to_drop"]=5869, + ["chest_trap_defuse_%"]=1957, + ["chieftain_body_armour_supported_by_level_x_ancestral_call"]=653, + ["chieftain_body_armour_supported_by_level_x_fist_of_war"]=654, + ["chieftain_burning_damage_+%_final"]=2075, + ["chill_and_freeze_duration_+%"]=5870, + ["chill_and_freeze_duration_based_on_%_energy_shield"]=2641, + ["chill_attackers_for_4_seconds_on_block_%_chance"]=5871, + ["chill_duration_+%"]=1903, + ["chill_effect_+%"]=5875, + ["chill_effect_+%_while_mana_leeching"]=5872, + ["chill_effect_+%_with_critical_strikes"]=5876, + ["chill_effect_is_reversed"]=5873, + ["chill_effect_is_reversed_when_on_chilled_ground"]=5874, + ["chill_effectiveness_on_self_+%"]=1692, + ["chill_enemy_when_hit_duration_ms"]=3198, + ["chill_minimum_slow_%"]=4502, + ["chill_minimum_slow_%_from_mastery"]=5877, + ["chill_nearby_enemies_when_you_focus"]=5878, + ["chill_on_you_proliferates_to_nearby_enemies_within_x_radius"]=3684, + ["chill_prevention_ms_when_chilled"]=2951, + ["chilled_ground_effect_+%"]=5879, + ["chilled_ground_effect_on_self_+%"]=2196, + ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3467, + ["chilled_ground_when_hit_with_attack_%"]=5880, + ["chilled_monsters_take_+%_burning_damage"]=2824, + ["chilled_while_bleeding"]=5881, + ["chilled_while_poisoned"]=5882, + ["chilling_areas_also_grant_curse_effect_+%"]=5883, + ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5884, + ["chills_from_your_hits_cause_shattering"]=5885, + ["chronomancer_reserves_no_mana"]=5886, + ["circle_of_power_critical_strike_chance_+%_per_stage"]=5887, + ["circle_of_power_max_added_lightning_per_stage"]=5888, + ["circle_of_power_min_added_lightning_per_stage"]=5888, + ["circle_of_power_upgrade_cost_+%"]=5889, + ["clarity_mana_reservation_+%"]=4093, + ["clarity_mana_reservation_efficiency_+%"]=5891, + ["clarity_mana_reservation_efficiency_-2%_per_1"]=5890, + ["clarity_reserves_no_mana"]=5892, + ["claw_accuracy_rating"]=2055, + ["claw_accuracy_rating_+%"]=1488, + ["claw_ailment_damage_+%"]=1364, + ["claw_attack_speed_+%"]=1470, + ["claw_critical_strike_chance_+%"]=1513, + ["claw_critical_strike_multiplier_+"]=1546, + ["claw_damage_+%"]=1361, + ["claw_damage_+%_while_on_low_life"]=5894, + ["claw_damage_against_enemies_on_low_life_+%"]=5893, + ["claw_hit_and_ailment_damage_+%"]=1362, + ["claw_or_dagger_ailment_damage_+%"]=1401, + ["claw_or_dagger_hit_and_ailment_damage_+%"]=1400, + ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=3009, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5896, + ["cleave_attack_speed_+%"]=3912, + ["cleave_damage_+%"]=3689, + ["cleave_fortify_on_hit"]=5895, + ["cleave_radius_+%"]=3866, + ["close_range_enemies_avoid_your_projectiles"]=9613, + ["cluster_burst_spawn_amount"]=4171, + ["cobra_lash_and_venom_gyre_bleeding_damage_+100%_final_chance"]=5897, + ["cobra_lash_and_venom_gyre_skill_physical_damage_%_to_convert_to_chaos"]=5898, + ["cobra_lash_damage_+%"]=5899, + ["cobra_lash_number_of_additional_chains"]=5900, + ["cobra_lash_projectile_speed_+%"]=5901, + ["cold_ailment_duration_+%"]=5902, + ["cold_ailment_effect_+%"]=5904, + ["cold_ailment_effect_+%_against_shocked_enemies"]=5903, + ["cold_ailments_effect_+%_final_if_hit_highest_cold"]=5905, + ["cold_and_chaos_damage_resistance_%"]=5906, + ["cold_and_lightning_damage_resistance_%"]=2858, + ["cold_and_lightning_damage_taken_%_as_fire"]=3239, + ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=5907, + ["cold_attack_damage_+%"]=1248, + ["cold_attack_damage_+%_while_holding_a_shield"]=1251, + ["cold_axe_damage_+%"]=1354, + ["cold_bow_damage_+%"]=1384, + ["cold_claw_damage_+%"]=1366, + ["cold_critical_strike_chance_+%"]=1530, + ["cold_critical_strike_multiplier_+"]=1556, + ["cold_dagger_damage_+%"]=1372, + ["cold_damage_%_to_add_as_chaos"]=1987, + ["cold_damage_%_to_add_as_chaos_per_frenzy_charge"]=5913, + ["cold_damage_%_to_add_as_fire"]=1986, + ["cold_damage_%_to_add_as_fire_per_1%_chill_effect_on_enemy"]=5908, + ["cold_damage_%_to_add_as_fire_vs_frozen_enemies"]=5909, + ["cold_damage_+%"]=1414, + ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5914, + ["cold_damage_+%_per_1%_block_chance"]=3644, + ["cold_damage_+%_per_25_dexterity"]=5915, + ["cold_damage_+%_per_25_intelligence"]=5916, + ["cold_damage_+%_per_25_strength"]=5917, + ["cold_damage_+%_per_cold_resistance_above_75"]=5910, + ["cold_damage_+%_per_frenzy_charge"]=5918, + ["cold_damage_+%_per_missing_cold_resistance"]=5919, + ["cold_damage_+%_while_affected_by_hatred"]=5920, + ["cold_damage_+%_while_affected_by_herald_of_ice"]=5921, + ["cold_damage_+%_while_off_hand_is_empty"]=5922, + ["cold_damage_can_ignite"]=2929, + ["cold_damage_can_shock"]=2930, + ["cold_damage_cannot_chill"]=2944, + ["cold_damage_cannot_freeze"]=2943, + ["cold_damage_over_time_+%"]=1260, + ["cold_damage_over_time_multiplier_+_per_4%_overcapped_cold_resistance"]=5911, + ["cold_damage_over_time_multiplier_+_per_power_charge"]=5912, + ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1303, + ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5923, + ["cold_damage_resistance_+%"]=1680, + ["cold_damage_resistance_is_%"]=1677, + ["cold_damage_taken_%_as_fire"]=3237, + ["cold_damage_taken_%_as_lightning"]=3238, + ["cold_damage_taken_+"]=5925, + ["cold_damage_taken_+%"]=3449, + ["cold_damage_taken_+%_if_have_been_hit_recently"]=5926, + ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5924, + ["cold_damage_taken_per_minute_per_frenzy_charge_while_moving"]=10885, + ["cold_damage_to_return_to_melee_attacker"]=2250, + ["cold_damage_to_return_when_hit"]=2256, + ["cold_damage_while_dual_wielding_+%"]=1329, + ["cold_damage_with_attack_skills_+%"]=5927, + ["cold_damage_with_spell_skills_+%"]=5928, + ["cold_dot_multiplier_+"]=1304, + ["cold_exposure_on_hit_magnitude"]=5929, + ["cold_exposure_you_inflict_applies_extra_cold_resistance_+%"]=5930, + ["cold_hit_and_dot_damage_%_taken_as_fire"]=5931, + ["cold_hit_and_dot_damage_%_taken_as_lightning"]=5932, + ["cold_hit_damage_+%_vs_shocked_enemies"]=5933, + ["cold_mace_damage_+%"]=1378, + ["cold_penetration_%_vs_chilled_enemies"]=5934, + ["cold_projectile_mine_critical_multiplier_+"]=5935, + ["cold_projectile_mine_damage_+%"]=5936, + ["cold_projectile_mine_throwing_speed_+%"]=5938, + ["cold_projectile_mine_throwing_speed_negated_+%"]=5937, + ["cold_resistance_cannot_be_penetrated"]=5939, + ["cold_skill_chance_to_inflict_cold_exposure_%"]=5940, + ["cold_skill_gem_level_+"]=5942, + ["cold_skill_gem_level_+_if_6_redeemer_items"]=4550, + ["cold_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped"]=5941, + ["cold_skills_chance_to_poison_on_hit_%"]=5943, + ["cold_snap_cooldown_speed_+%"]=3936, + ["cold_snap_damage_+%"]=3763, + ["cold_snap_gain_power_charge_on_kill_%"]=3320, + ["cold_snap_radius_+%"]=3893, + ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5944, + ["cold_spell_physical_damage_%_to_convert_to_cold"]=5945, + ["cold_spell_skill_gem_level_+"]=1658, + ["cold_staff_damage_+%"]=1360, + ["cold_sword_damage_+%"]=1391, + ["cold_wand_damage_+%"]=1397, + ["cold_weakness_ignores_hexproof"]=2652, + ["combust_area_of_effect_+%"]=5946, + ["combust_is_disabled"]=5947, + ["conductivity_curse_effect_+%"]=4070, + ["conductivity_duration_+%"]=3977, + ["conductivity_mana_reservation_+%"]=4106, + ["conductivity_no_reservation"]=5948, + ["consecrate_ground_for_3_seconds_when_hit_%"]=3613, + ["consecrate_ground_on_kill_%_for_3_seconds"]=3468, + ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=4187, + ["consecrate_on_block_%_chance_to_create"]=2623, + ["consecrate_on_crit_%_chance_to_create"]=2689, + ["consecrated_ground_additional_physical_damage_reduction_%"]=5949, + ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5950, + ["consecrated_ground_area_+%"]=5951, + ["consecrated_ground_damaging_ailment_duration_on_self_+%"]=5952, + ["consecrated_ground_effect_+%"]=5953, + ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5958, + ["consecrated_ground_enemy_damage_taken_+%"]=5954, + ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5955, + ["consecrated_ground_immune_to_curses"]=5956, + ["consecrated_ground_immune_to_status_ailments"]=5957, + ["consecrated_ground_on_death"]=5959, + ["consecrated_ground_on_hit"]=5960, + ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5961, + ["consecrated_ground_while_stationary_radius"]=5962, + ["consecrated_ground_while_stationary_radius_if_2_crusader_items"]=4511, + ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5963, + ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5964, + ["consecrated_path_and_purifying_flame_skill_fire_damage_%_to_convert_to_chaos"]=5965, + ["consecrated_path_area_of_effect_+%"]=5966, + ["consecrated_path_damage_+%"]=5967, + ["consume_abyssal_jewel_when_socketed_display_stat"]=5968, + ["consume_all_impales_remaining_hits_on_hit_%_chance"]=5969, + ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5970, + ["consume_up_to_50%_life_flask_charges_on_attack_for_ailment_dot_multiplier_+_per_charge"]=5971, + ["contagion_damage_+%"]=3788, + ["contagion_display_spread_on_death"]=5972, + ["contagion_duration_+%"]=3982, + ["contagion_radius_+%"]=3899, + ["contagion_spread_on_hit_affected_enemy_%"]=5972, + ["conversation_trap_converted_enemy_damage_+%"]=5973, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5974, + ["conversion_trap_cooldown_speed_+%"]=3949, + ["convert_all_elemental_damage_to_chaos"]=5975, + ["convert_all_physical_damage_to_fire"]=2223, + ["converted_enemies_damage_+%"]=3783, + ["convocation_buff_effect_+%"]=4083, + ["convocation_cooldown_speed_+%"]=3937, + ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5976, + ["cooldown_recovery_+%_per_power_charge"]=5977, + ["cooldown_speed_+%_per_brand_up_to_40%"]=5979, + ["cooldown_speed_+%_per_green_skill_gem"]=5978, + ["corpse_erruption_base_maximum_number_of_geyers"]=5980, + ["corpse_eruption_cast_speed_+%"]=5981, + ["corpse_eruption_damage_+%"]=5982, + ["corpse_warp_cast_speed_+%"]=5983, + ["corpse_warp_damage_+%"]=5984, + ["corpses_drop_loot_again_on_warcry_chance_%"]=5985, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5986, + ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=5987, + ["corrupted_gem_experience_gain_+%"]=3169, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=5988, + ["corrupting_fever_damage_+%"]=5989, + ["corrupting_fever_duration_+%"]=5990, + ["count_as_blocking_attack_from_shield_attack_first_target"]=5991, + ["count_as_having_max_endurance_charges"]=5992, + ["count_as_having_max_endurance_frenzy_power_charges"]=5993, + ["count_as_having_max_frenzy_charges"]=5994, + ["count_as_having_max_power_charges"]=5995, + ["counter_attacks_maximum_added_cold_damage"]=4265, + ["counter_attacks_maximum_added_physical_damage"]=4258, + ["counter_attacks_minimum_added_cold_damage"]=4265, + ["counter_attacks_minimum_added_physical_damage"]=4258, + ["counterattacks_cooldown_recovery_+%"]=5996, + ["counterattacks_deal_double_damage"]=5997, + ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5998, + ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5999, + ["cover_in_ash_on_hit_%"]=6000, + ["cover_in_ash_on_hit_%_while_you_are_burning"]=6001, + ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=6002, + ["cover_in_frost_on_hit"]=6003, + ["cover_in_frost_on_hit_%"]=6004, + ["crab_aspect_crab_barrier_max_+"]=4411, + ["crackling_lance_cast_speed_+%"]=6006, + ["crackling_lance_damage_+%"]=6007, + ["create_additional_brand_%_chance"]=6008, + ["create_blighted_spore_on_killing_rare_enemy"]=6009, + ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=6010, + ["create_consecrated_ground_on_kill_%"]=6011, + ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=6012, + ["create_fungal_ground_instead_of_consecrated_ground"]=6013, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=6014, + ["create_profane_ground_instead_of_consecrated_ground"]=6015, + ["create_sand_mirage_on_contact_for_damaging_non_channel_spells"]=221, + ["create_smoke_cloud_on_kill_%_chance"]=6016, + ["creeping_frost_cold_snap_all_damage_can_sap"]=6017, + ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=6018, + ["cremation_base_fires_projectile_every_x_ms"]=6019, + ["critical_ailment_dot_multiplier_+"]=1292, + ["critical_bleeding_dot_multiplier_+"]=1297, + ["critical_ignite_dot_multiplier_+"]=1300, + ["critical_multiplier_+%_per_10_max_es_on_shield"]=6021, + ["critical_poison_dot_multiplier_+"]=1310, + ["critical_strike_%_chance_to_deal_double_damage"]=6084, + ["critical_strike_chance_+%"]=1506, + ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=6028, + ["critical_strike_chance_+%_during_any_flask_effect"]=6029, + ["critical_strike_chance_+%_final_while_affected_by_precision"]=6022, + ["critical_strike_chance_+%_final_while_unhinged"]=6030, + ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3514, + ["critical_strike_chance_+%_for_forking_arrows"]=4364, + ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=6031, + ["critical_strike_chance_+%_if_enemy_killed_recently"]=6032, + ["critical_strike_chance_+%_if_have_been_shocked_recently"]=6033, + ["critical_strike_chance_+%_if_have_not_crit_recently"]=6034, + ["critical_strike_chance_+%_if_havent_blocked_recently"]=6035, + ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=6036, + ["critical_strike_chance_+%_per_10_strength"]=6037, + ["critical_strike_chance_+%_per_25_intelligence"]=6038, + ["critical_strike_chance_+%_per_8_strength"]=2997, + ["critical_strike_chance_+%_per_blitz_charge"]=6039, + ["critical_strike_chance_+%_per_brand"]=6040, + ["critical_strike_chance_+%_per_endurance_charge"]=6041, + ["critical_strike_chance_+%_per_frenzy_charge"]=6042, + ["critical_strike_chance_+%_per_intensity"]=6043, + ["critical_strike_chance_+%_per_level"]=3020, + ["critical_strike_chance_+%_per_lightning_adaptation"]=4481, + ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=6044, + ["critical_strike_chance_+%_per_power_charge"]=3225, + ["critical_strike_chance_+%_per_righteous_charge"]=6045, + ["critical_strike_chance_+%_per_stackable_unique_jewel"]=4219, + ["critical_strike_chance_+%_vs_bleeding_enemies"]=3250, + ["critical_strike_chance_+%_vs_blinded_enemies"]=3466, + ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=4116, + ["critical_strike_chance_+%_vs_enemies_with_lightning_exposure"]=6023, + ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3590, + ["critical_strike_chance_+%_vs_marked_enemy"]=6046, + ["critical_strike_chance_+%_vs_poisoned_enemies"]=3352, + ["critical_strike_chance_+%_vs_shocked_enemies"]=6020, + ["critical_strike_chance_+%_vs_taunted_enemies"]=6047, + ["critical_strike_chance_+%_when_in_main_hand"]=4244, + ["critical_strike_chance_+%_while_affected_by_wrath"]=6048, + ["critical_strike_chance_+%_while_channelling"]=6049, + ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=11038, + ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=6053, + ["critical_strike_chance_+%_with_at_least_200_int"]=4426, + ["critical_strike_chance_against_cursed_enemies_+%"]=6024, + ["critical_strike_chance_against_enemies_on_full_life_+%"]=3826, + ["critical_strike_chance_increased_by_lightning_resistance"]=6025, + ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=6026, + ["critical_strike_chance_increased_by_spell_suppression_chance"]=6027, + ["critical_strike_chance_while_dual_wielding_+%"]=1527, + ["critical_strike_chance_while_wielding_shield_+%"]=1520, + ["critical_strike_damage_cannot_be_reflected"]=6054, + ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=6082, + ["critical_strike_multiplier_+%_with_claws_daggers"]=6083, + ["critical_strike_multiplier_+_during_any_flask_effect"]=6060, + ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=6061, + ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=6062, + ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=6063, + ["critical_strike_multiplier_+_if_enemy_killed_recently"]=6064, + ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=6065, + ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=6066, + ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=6055, + ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=6067, + ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=6068, + ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=6069, + ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=6070, + ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=6071, + ["critical_strike_multiplier_+_per_1%_block_chance"]=3249, + ["critical_strike_multiplier_+_per_25_dexterity"]=6056, + ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=6072, + ["critical_strike_multiplier_+_per_power_charge"]=3342, + ["critical_strike_multiplier_+_vs_bleeding_enemies"]=3247, + ["critical_strike_multiplier_+_vs_burning_enemies"]=3248, + ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3616, + ["critical_strike_multiplier_+_vs_stunned_enemies"]=6057, + ["critical_strike_multiplier_+_vs_taunted_enemies"]=6073, + ["critical_strike_multiplier_+_vs_unique_enemies"]=6074, + ["critical_strike_multiplier_+_while_affected_by_anger"]=6075, + ["critical_strike_multiplier_+_while_affected_by_precision"]=6076, + ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=2101, + ["critical_strike_multiplier_+_with_herald_skills"]=6080, + ["critical_strike_multiplier_for_arrows_that_pierce_+"]=6058, + ["critical_strike_multiplier_is_100"]=1562, + ["critical_strike_multiplier_is_300"]=6059, + ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3493, + ["critical_strike_multiplier_while_dual_wielding_+"]=1550, + ["critical_strike_multiplier_with_dagger_+"]=1540, + ["critical_strikes_always_knockback_shocked_enemies"]=6085, + ["critical_strikes_deal_no_damage"]=6086, + ["critical_strikes_do_not_always_apply_non_damaging_ailments"]=6087, + ["critical_strikes_do_not_always_freeze"]=2078, + ["critical_strikes_do_not_always_ignite"]=6088, + ["critical_strikes_ignore_elemental_resistances"]=3512, + ["critical_strikes_on_you_do_not_always_inflict_elemental_ailments"]=6089, + ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=6090, + ["critical_support_gem_level_+"]=6091, + ["crits_have_culling_strike"]=3500, + ["cruelty_effect_+%"]=6092, + ["crush_for_2_seconds_on_hit_%_chance"]=6093, + ["crush_on_hit_ms_vs_full_life_enemies"]=6094, + ["culling_strike_on_burning_enemies"]=2894, + ["culling_strike_on_enemies_affected_by_poachers_mark"]=6095, + ["culling_strike_on_frozen_enemies"]=6096, + ["culling_strike_vs_cursed_enemies"]=6097, + ["culling_strike_vs_marked_enemy"]=6098, ["current_endurance_charges"]=12, ["current_frenzy_charges"]=13, ["current_power_charges"]=14, - ["curse_apply_as_aura"]=3475, - ["curse_area_of_effect_+%"]=2249, - ["curse_aura_skill_area_of_effect_+%"]=6016, - ["curse_aura_skills_mana_reservation_efficiency_+%"]=6019, - ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=6018, - ["curse_aura_skills_reservation_efficiency_+%"]=6017, - ["curse_cast_speed_+%"]=2238, - ["curse_effect_+%"]=2620, - ["curse_effect_+%_if_200_mana_spent_recently"]=6022, - ["curse_effect_on_self_+%"]=2194, - ["curse_effect_on_self_+%_while_on_consecrated_ground"]=6020, - ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=6021, - ["curse_mana_cost_+%"]=6023, - ["curse_on_block_%_chance_flammability_with_+20%_effect"]=3010, - ["curse_on_block_level_5_vulnerability"]=3009, - ["curse_on_hit_%_conductivity"]=2538, - ["curse_on_hit_%_despair"]=2539, - ["curse_on_hit_%_elemental_weakness"]=2540, - ["curse_on_hit_%_enfeeble"]=2537, - ["curse_on_hit_%_flammability"]=2541, - ["curse_on_hit_%_frostbite"]=2542, - ["curse_on_hit_%_temporal_chains"]=2543, - ["curse_on_hit_%_vulnerability"]=2544, - ["curse_on_hit_level_10_vulnerability_%"]=2548, - ["curse_on_hit_level_assassins_mark"]=782, - ["curse_on_hit_level_cold_weakness"]=2550, - ["curse_on_hit_level_conductivity"]=2551, - ["curse_on_hit_level_despair"]=2552, - ["curse_on_hit_level_elemental_weakness"]=2549, - ["curse_on_hit_level_enfeeble"]=2553, - ["curse_on_hit_level_flammability"]=2554, - ["curse_on_hit_level_frostbite"]=2555, - ["curse_on_hit_level_poachers_mark"]=783, - ["curse_on_hit_level_poachers_mark_bypass_hexproof"]=784, - ["curse_on_hit_level_temporal_chains"]=2546, - ["curse_on_hit_level_vulnerability"]=2547, - ["curse_on_hit_level_warlords_mark"]=785, - ["curse_on_melee_block_level_15_punishment"]=3011, - ["curse_on_projectile_block_level_15_temporal_chains"]=3012, - ["curse_on_spell_block_level_15_elemental_weakness"]=3013, - ["curse_pillar_curse_effect_+%_final"]=2621, - ["curse_skill_effect_duration_+%"]=6024, - ["curse_skill_gem_level_+"]=6025, - ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2545, - ["curse_with_punishment_on_hit_%"]=6026, - ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=6028, - ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=6029, - ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=6030, - ["cursed_enemies_are_exorcised_on_kill"]=6027, - ["cursed_with_silence_when_hit_%_chance"]=6031, - ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=6032, - ["curses_never_expire"]=2188, - ["curses_reflected_to_self"]=6033, - ["curses_you_inflict_remain_after_death"]=6034, - ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=6035, - ["cyclone_and_sweep_melee_knockback"]=6036, - ["cyclone_attack_speed_+%"]=3886, - ["cyclone_damage_+%"]=3700, - ["cyclone_max_stages_movement_speed_+%"]=6037, - ["dagger_accuracy_rating"]=2030, - ["dagger_accuracy_rating_+%"]=1465, - ["dagger_ailment_damage_+%"]=1346, - ["dagger_attack_speed_+%"]=1447, - ["dagger_critical_strike_chance_+%"]=1491, - ["dagger_damage_+%"]=1343, - ["dagger_hit_and_ailment_damage_+%"]=1344, - ["damage_+%"]=1215, - ["damage_+%_against_enemies_marked_by_you"]=6061, - ["damage_+%_during_flask_effect"]=4106, - ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=6062, - ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=6038, - ["damage_+%_final_to_grant_packmate_on_death"]=6039, - ["damage_+%_final_to_you_and_nearby_allies_per_nearby_corpses_up_to_10%"]=6040, - ["damage_+%_final_with_at_least_1_nearby_ally"]=6063, - ["damage_+%_for_4_seconds_on_crit"]=3477, - ["damage_+%_for_4_seconds_on_detonation"]=3501, - ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=4109, - ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=4085, - ["damage_+%_for_each_herald_affecting_you"]=6064, - ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=4217, - ["damage_+%_for_each_trap_and_mine_active"]=4100, - ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=6065, - ["damage_+%_for_you_and_allies_affected_by_your_auras"]=4093, - ["damage_+%_if_enemy_killed_recently"]=6066, - ["damage_+%_if_enemy_killed_recently_final"]=4242, - ["damage_+%_if_enemy_shattered_recently"]=6067, - ["damage_+%_if_firing_atleast_7_projectiles"]=6068, - ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3722, - ["damage_+%_if_have_been_ignited_recently"]=6069, - ["damage_+%_if_have_crit_in_past_8_seconds"]=6070, - ["damage_+%_if_only_one_enemy_nearby"]=6071, - ["damage_+%_if_skill_costs_life"]=6072, - ["damage_+%_if_used_travel_skill_recently"]=6073, - ["damage_+%_if_you_have_consumed_a_corpse_recently"]=4277, - ["damage_+%_if_you_have_frozen_enemy_recently"]=6074, - ["damage_+%_if_you_have_shocked_recently"]=6075, - ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=4115, - ["damage_+%_on_consecrated_ground"]=3576, - ["damage_+%_on_full_energy_shield"]=6097, - ["damage_+%_per_1%_block_chance"]=6083, - ["damage_+%_per_1%_increased_item_found_quantity"]=6084, - ["damage_+%_per_100_dexterity"]=6076, - ["damage_+%_per_100_intelligence"]=6077, - ["damage_+%_per_100_strength"]=6078, - ["damage_+%_per_10_dex"]=6079, - ["damage_+%_per_10_levels"]=2862, - ["damage_+%_per_15_dex"]=6080, - ["damage_+%_per_15_int"]=6081, - ["damage_+%_per_15_strength"]=6082, - ["damage_+%_per_5_of_your_lowest_attribute"]=6085, - ["damage_+%_per_abyss_jewel_type"]=4191, - ["damage_+%_per_active_curse_on_self"]=1240, - ["damage_+%_per_active_golem"]=6086, - ["damage_+%_per_active_link"]=6087, - ["damage_+%_per_active_trap"]=3490, - ["damage_+%_per_crab_charge"]=4374, - ["damage_+%_per_endurance_charge"]=3223, - ["damage_+%_per_equipped_magic_item"]=3104, - ["damage_+%_per_fire_adaptation"]=4441, - ["damage_+%_per_frenzy_charge"]=3310, - ["damage_+%_per_frenzy_power_or_endurance_charge"]=6088, - ["damage_+%_per_poison_stack"]=6041, - ["damage_+%_per_poison_up_to_75%"]=6089, - ["damage_+%_per_power_charge"]=6090, - ["damage_+%_per_raised_zombie"]=6042, - ["damage_+%_per_shock"]=2799, - ["damage_+%_per_warcry_used_recently"]=6091, - ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=6092, - ["damage_+%_to_rare_and_unique_enemies"]=3232, - ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=4110, - ["damage_+%_vs_abyssal_monsters"]=6093, - ["damage_+%_vs_bleeding_enemies"]=3504, - ["damage_+%_vs_blinded_enemies"]=2835, - ["damage_+%_vs_burning_enemies"]=3472, - ["damage_+%_vs_chilled_enemies"]=6094, - ["damage_+%_vs_demons"]=2789, - ["damage_+%_vs_enemies_affected_by_status_ailments"]=3486, - ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2834, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1264, - ["damage_+%_vs_frozen_enemies"]=1260, - ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1265, - ["damage_+%_vs_hindered_enemies"]=4131, - ["damage_+%_vs_ignited_enemies"]=2977, - ["damage_+%_vs_magic_monsters"]=6095, - ["damage_+%_vs_rare_monsters"]=2831, - ["damage_+%_vs_taunted_enemies"]=6096, - ["damage_+%_when_currently_has_no_energy_shield"]=2758, - ["damage_+%_when_not_on_low_life"]=3228, - ["damage_+%_when_on_burning_ground"]=2171, - ["damage_+%_when_on_full_life"]=6098, - ["damage_+%_when_on_low_life"]=1239, - ["damage_+%_while_affected_by_a_herald"]=6099, - ["damage_+%_while_channelling"]=6100, - ["damage_+%_while_dead"]=3120, - ["damage_+%_while_es_leeching"]=1244, - ["damage_+%_while_es_not_full"]=4102, - ["damage_+%_while_fortified"]=3221, - ["damage_+%_while_ignited"]=2826, - ["damage_+%_while_in_blood_stance"]=6101, - ["damage_+%_while_leeching"]=3087, - ["damage_+%_while_life_leeching"]=1241, - ["damage_+%_while_mana_leeching"]=1243, - ["damage_+%_while_totem_active"]=3229, - ["damage_+%_while_unarmed"]=3599, - ["damage_+%_while_wielding_bow_if_totem_summoned"]=6102, - ["damage_+%_while_wielding_two_different_weapon_types"]=6103, - ["damage_+%_while_wielding_wand"]=1368, - ["damage_+%_while_you_have_a_summoned_golem"]=6104, - ["damage_+%_while_you_have_unbroken_ward"]=6043, - ["damage_+%_with_bow_skills"]=6044, - ["damage_+%_with_herald_skills"]=6105, - ["damage_+%_with_hits_and_ailments"]=6106, - ["damage_+%_with_maces_sceptres_staves"]=6107, - ["damage_+%_with_movement_skills"]=1455, - ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=6108, - ["damage_+%_with_one_handed_weapons"]=3359, - ["damage_+%_with_shield_skills"]=6109, - ["damage_+%_with_shield_skills_per_2%_attack_block"]=6110, - ["damage_+%_with_two_handed_weapons"]=3360, - ["damage_+1%_per_X_strength_when_in_main_hand"]=2800, - ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3479, - ["damage_cannot_be_reflected"]=6045, - ["damage_from_hits_always_and_only_bypasses_energy_shield_when_not_blocked"]=6046, - ["damage_over_time_+%"]=1234, - ["damage_over_time_+%_per_100_max_life"]=6047, - ["damage_over_time_+%_per_frenzy_charge"]=2157, - ["damage_over_time_+%_per_power_charge"]=2158, - ["damage_over_time_+%_while_affected_by_a_herald"]=6049, - ["damage_over_time_+%_while_dual_wielding"]=2159, - ["damage_over_time_+%_while_holding_a_shield"]=2160, - ["damage_over_time_+%_while_wielding_two_handed_weapon"]=2161, - ["damage_over_time_+%_with_attack_skills"]=6050, - ["damage_over_time_+%_with_bow_skills"]=6051, - ["damage_over_time_+%_with_herald_skills"]=6052, - ["damage_over_time_+%_with_spells"]=1248, - ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=6048, - ["damage_over_time_multiplier_+_with_attacks"]=1270, - ["damage_over_time_multiplier_+_with_spells"]=1269, - ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=6053, - ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=6055, - ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=6056, - ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=6057, - ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=6058, - ["damage_penetrates_%_elemental_resistance_while_you_have_broken_ward"]=6054, - ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=6059, - ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=6060, - ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=6111, - ["damage_reduction_rating_%_with_active_totem"]=3363, - ["damage_reduction_rating_from_body_armour_doubled"]=3361, - ["damage_reflected_to_enemies_%_gained_as_life"]=2735, - ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=6112, - ["damage_removed_from_mana_before_life_%_while_focused"]=6113, - ["damage_removed_from_marked_target_before_life_or_es_%"]=6114, - ["damage_removed_from_radiant_sentinel_before_life_or_es_%"]=6115, - ["damage_removed_from_spectres_before_life_or_es_%"]=6116, - ["damage_removed_from_void_spawns_before_life_or_es_per_void_spawns_%"]=6117, - ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=6118, - ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=6136, - ["damage_taken_%_recovered_as_life_from_stunning_hits"]=6137, - ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=6138, - ["damage_taken_+%_final_if_used_retaliation_recently"]=6119, - ["damage_taken_+%_final_per_5_rage_from_painshed_capped_at_50%_less"]=6120, - ["damage_taken_+%_final_per_gale_force"]=6139, - ["damage_taken_+%_final_per_totem"]=6140, - ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=6121, - ["damage_taken_+%_for_4_seconds_on_kill"]=3349, - ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3456, - ["damage_taken_+%_from_bleeding_enemies"]=3340, - ["damage_taken_+%_from_blinded_enemies"]=3308, - ["damage_taken_+%_from_ghosts"]=2272, - ["damage_taken_+%_from_hits"]=2264, - ["damage_taken_+%_from_skeletons"]=2271, - ["damage_taken_+%_from_taunted_enemies"]=4111, - ["damage_taken_+%_if_have_been_frozen_recently"]=6141, - ["damage_taken_+%_if_have_not_been_hit_recently"]=6142, - ["damage_taken_+%_if_not_hit_recently_final"]=4211, - ["damage_taken_+%_if_taunted_an_enemy_recently"]=4246, - ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=6122, - ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=4197, - ["damage_taken_+%_on_full_life"]=6143, - ["damage_taken_+%_on_low_life"]=6144, - ["damage_taken_+%_per_frenzy_charge"]=2954, - ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3639, - ["damage_taken_+%_vs_demons"]=2788, - ["damage_taken_+%_while_affected_by_elusive"]=6123, - ["damage_taken_+%_while_es_full"]=2268, - ["damage_taken_+%_while_leeching"]=6145, - ["damage_taken_+%_while_phasing"]=6146, - ["damage_taken_+_from_suppressed_hits"]=6124, - ["damage_taken_bypasses_ward_if_hits_deal_less_than_%_of_ward"]=6125, - ["damage_taken_from_criticals_recouped_as_life_%"]=6126, - ["damage_taken_from_suppressed_hits_is_unlucky"]=6127, - ["damage_taken_from_traps_and_mines_+%"]=3318, - ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=6128, - ["damage_taken_goes_to_life_over_4_seconds_%"]=6129, - ["damage_taken_goes_to_mana_%"]=2479, - ["damage_taken_goes_to_mana_%_per_power_charge"]=3189, - ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=6130, - ["damage_taken_over_time_+%_final_during_life_flask_effect"]=6131, - ["damage_taken_per_250_dexterity_+%"]=6132, - ["damage_taken_per_250_intelligence_+%"]=6133, - ["damage_taken_per_250_strength_+%"]=6134, - ["damage_taken_per_ghost_dance_stack_+%"]=6135, - ["damage_taken_recouped_as_life_%_per_socketed_red_gem"]=6147, - ["damage_taken_while_frozen_recouped_as_life_%"]=6148, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=3039, - ["damage_vs_enemies_on_full_life_+%"]=6149, - ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=3021, - ["damage_vs_enemies_on_low_life_+%"]=2832, - ["damage_vs_enemies_on_low_life_+%_final"]=2833, - ["damage_vs_enemies_on_low_life_per_power_charge_+%"]=3022, - ["damage_vs_shocked_enemies_+%"]=1262, - ["damage_while_dual_wielding_+%"]=1302, - ["damage_while_no_damage_taken_+%"]=3241, - ["damage_while_no_frenzy_charges_+%"]=3789, - ["damage_with_cold_skills_+%"]=1399, - ["damage_with_fire_skills_+%"]=1388, - ["damage_with_lightning_skills_+%"]=1407, - ["damaging_ailment_damage_+%_while_suffering_from_that_ailment"]=6150, - ["damaging_ailments_deal_damage_+%_faster"]=6151, - ["dark_pact_minions_recover_%_life_on_hit"]=6152, - ["dark_ritual_area_of_effect_+%"]=6153, - ["dark_ritual_damage_+%"]=6154, - ["dark_ritual_linked_curse_effect_+%"]=6155, - ["daytime_fish_caught_size_+%"]=6156, - ["deadeye_accuracy_rating_+%_final_per_frenzy_charge"]=6157, - ["deadeye_damage_taken_+%_final_from_marked_enemy"]=6158, - ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=6159, - ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=6160, - ["deal_300%_of_physical_damage_as_random_ailment_%_chance"]=6161, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=6162, - ["deal_chaos_damage_per_second_for_8_seconds_on_curse"]=6163, - ["deal_double_damage_to_enemies_on_full_life"]=6164, - ["deal_no_damage_when_not_on_low_life"]=6165, - ["deal_no_damage_yourself"]=2274, - ["deal_no_elemental_damage"]=6166, - ["deal_no_elemental_physical_damage"]=6167, - ["deal_no_non_chaos_damage"]=6168, - ["deal_no_non_elemental_damage"]=6169, - ["deal_no_non_fire_damage"]=2817, - ["deal_no_non_lightning_damage"]=2818, - ["deal_no_non_physical_damage"]=2815, - ["deal_triple_damage_if_spent_at_least_Xms_on_single_attack_recently"]=6170, - ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2717, - ["deaths_oath_debuff_on_kill_duration_ms"]=2717, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=6171, - ["debilitate_enemies_for_x_milliseconds_when_suppressing_their_spell"]=6172, - ["debilitate_when_hit_ms"]=6173, - ["debuff_time_passed_+%"]=6175, - ["debuff_time_passed_-%_while_affected_by_haste"]=6174, - ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=6176, - ["decoy_totem_life_+%"]=4020, - ["decoy_totem_radius_+%"]=3858, - ["defences_+%_while_wielding_staff"]=6180, - ["defences_+%_while_you_have_four_linked_targets"]=6177, - ["defences_are_zero"]=6178, - ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=6179, - ["defend_with_%_armour_against_ranged_attacks"]=6181, - ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=6182, - ["defiance_banner_aura_effect_+%"]=6183, - ["defiance_banner_mana_reservation_efficiency_+%"]=6184, - ["degen_effect_+%"]=2269, - ["delirium_aura_effect_+%"]=6185, - ["delirium_mana_reservation_+%"]=6186, - ["delirium_reserves_no_mana"]=6187, - ["delve_biome_area_contains_x_extra_packs_of_insects"]=6188, - ["delve_biome_azurite_collected_+%"]=2312, - ["delve_biome_boss_drops_additional_unique_item"]=2303, - ["delve_biome_boss_drops_extra_precursor_component_ring"]=2304, - ["delve_biome_boss_drops_x_additional_fossils"]=2305, - ["delve_biome_boss_hits_always_crit"]=2306, - ["delve_biome_boss_life_+%_final"]=2307, - ["delve_biome_boss_physical_damage_%_to_add_as_cold"]=2308, - ["delve_biome_boss_physical_damage_%_to_add_as_fire"]=2309, - ["delve_biome_boss_physical_damage_%_to_add_as_lightning"]=2310, - ["delve_biome_city_chambers_can_contain_special_delve_chest"]=2314, - ["delve_biome_contains_delve_boss"]=2302, - ["delve_biome_encounters_extra_reward_chest_%_chance"]=2315, - ["delve_biome_monster_drop_fossil_chance_%"]=2316, - ["delve_biome_monster_projectiles_always_pierce"]=6189, - ["delve_biome_node_tier_upgrade_+%"]=2318, - ["delve_biome_off_path_reward_chests_always_azurite"]=2320, - ["delve_biome_off_path_reward_chests_always_currency"]=2321, - ["delve_biome_off_path_reward_chests_always_fossils"]=2322, - ["delve_biome_off_path_reward_chests_always_resonators"]=2323, - ["delve_biome_off_path_reward_chests_azurite_chance_+%_final"]=2324, - ["delve_biome_off_path_reward_chests_currency_chance_+%_final"]=2325, - ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=2326, - ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=2327, - ["delve_biome_sulphite_cost_+%_final"]=2313, - ["delve_boss_life_+%_final_from_biome"]=6190, - ["demigod_footprints_from_item"]=10880, - ["desecrate_cooldown_speed_+%"]=3906, - ["desecrate_creates_X_additional_corpses"]=4276, - ["desecrate_damage_+%"]=3742, - ["desecrate_duration_+%"]=3943, - ["desecrate_maximum_number_of_corpses"]=6191, - ["desecrate_number_of_corpses_to_create"]=4145, - ["desecrate_on_block_%_chance_to_create"]=2598, - ["desecrated_ground_effect_on_self_+%"]=2176, - ["despair_curse_effect_+%"]=6192, - ["despair_duration_+%"]=6193, - ["despair_no_reservation"]=6194, - ["destructive_link_duration_+%"]=6195, - ["detect_player_has_foolishly_drawn_attention"]=523, - ["determination_aura_effect_+%"]=3391, - ["determination_aura_effect_+%_while_at_minimum_endurance_charges"]=3098, - ["determination_mana_reservation_+%"]=4060, - ["determination_mana_reservation_efficiency_+%"]=6197, - ["determination_mana_reservation_efficiency_-2%_per_1"]=6196, - ["determination_reserves_no_mana"]=6198, - ["detonate_dead_%_chance_to_detonate_additional_corpse"]=4018, - ["detonate_dead_damage_+%"]=3711, - ["detonate_dead_radius_+%"]=3853, - ["devouring_totem_%_chance_to_consume_additional_corpse"]=4027, - ["devouring_totem_leech_per_second_+%"]=4021, - ["dexterity_+%"]=1209, - ["dexterity_+%_if_2_redeemer_items"]=4474, - ["dexterity_+%_if_strength_higher_than_intelligence"]=6200, - ["dexterity_accuracy_bonus_grants_accuracy_rating_+3_per_dexterity_instead"]=6199, - ["dexterity_skill_gem_level_+"]=6201, - ["disable_amulet_slot"]=6202, - ["disable_belt_slot"]=6203, - ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=553, - ["disable_chest_slot"]=2607, - ["disable_skill_if_melee_attack"]=2520, - ["disable_utility_flasks"]=6204, - ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=6205, - ["discharge_area_of_effect_+%_final"]=6206, - ["discharge_chance_not_to_consume_charges_%"]=3440, - ["discharge_cooldown_override_ms"]=6207, - ["discharge_damage_+%"]=3438, - ["discharge_damage_+%_final"]=6208, - ["discharge_radius_+"]=6209, - ["discharge_radius_+%"]=3439, - ["discharge_triggered_damage_+%_final"]=6210, - ["discipline_aura_effect_+%"]=3392, - ["discipline_aura_effect_+%_while_at_minimum_power_charges"]=6211, - ["discipline_mana_reservation_+%"]=4061, - ["discipline_mana_reservation_efficiency_+%"]=6213, - ["discipline_mana_reservation_efficiency_-2%_per_1"]=6212, - ["discipline_reserves_no_mana"]=6214, - ["disintegrate_secondary_beam_angle_+%"]=6215, - ["dispel_bleed_on_guard_skill_use"]=6216, - ["dispel_corrupted_blood_on_guard_skill_use"]=6217, - ["dispel_status_ailments_on_flask_use"]=3322, - ["dispel_status_ailments_on_rampage_threshold"]=2979, - ["display_abberaths_hooves_skill_level"]=786, - ["display_added_damage_type_replacement_no_elemental_hit"]=10729, - ["display_additive_damage_modifiers_in_large_radius_of_non_unique_jewels_instead_apply_to_fire_damage"]=6218, - ["display_ailment_bearer_charge_interval"]=4461, - ["display_altar_chaos_aura"]=6219, - ["display_altar_cold_aura"]=6220, - ["display_altar_fire_aura"]=6221, - ["display_altar_lightning_aura"]=6222, - ["display_altar_tangle_tentalces_daemon"]=6223, - ["display_altleague_event"]=6224, - ["display_area_contains_alluring_vaal_side_area"]=6225, - ["display_area_contains_corrupting_tempest"]=6226, - ["display_area_contains_improved_labyrinth_trial"]=6227, - ["display_area_contains_uber_radiating_tempest"]=6228, - ["display_attack_with_commandment_of_force_on_hit_%"]=3534, - ["display_attack_with_commandment_of_fury_on_hit_%"]=3546, - ["display_attack_with_commandment_of_ire_when_hit_%"]=4045, - ["display_attack_with_commandment_of_light_when_critically_hit_%"]=3538, - ["display_attack_with_commandment_of_spite_when_hit_%"]=3550, - ["display_attack_with_decree_of_force_on_hit_%"]=3533, - ["display_attack_with_decree_of_fury_on_hit_%"]=3545, - ["display_attack_with_decree_of_ire_when_hit_%"]=4044, - ["display_attack_with_decree_of_light_when_critically_hit_%"]=3537, - ["display_attack_with_decree_of_spite_when_hit_%"]=3549, - ["display_attack_with_edict_of_force_on_hit_%"]=3532, - ["display_attack_with_edict_of_fury_on_hit_%"]=3544, - ["display_attack_with_edict_of_ire_when_hit_%"]=4043, - ["display_attack_with_edict_of_light_when_critically_hit_%"]=3536, - ["display_attack_with_edict_of_spite_when_hit_%"]=3548, - ["display_attack_with_word_of_force_on_hit_%"]=3531, - ["display_attack_with_word_of_fury_on_hit_%"]=3543, - ["display_attack_with_word_of_ire_when_hit_%"]=4042, - ["display_attack_with_word_of_light_when_critically_hit_%"]=3535, - ["display_attack_with_word_of_spite_when_hit_%"]=3547, - ["display_bow_range_+"]=3088, - ["display_cast_commandment_of_blades_on_hit_%_"]=3510, - ["display_cast_commandment_of_flames_on_hit_%"]=3563, - ["display_cast_commandment_of_frost_on_kill_%"]=3567, - ["display_cast_commandment_of_inferno_on_kill_%"]=3518, - ["display_cast_commandment_of_reflection_when_hit_%"]=3530, - ["display_cast_commandment_of_tempest_on_hit_%"]=3522, - ["display_cast_commandment_of_the_grave_on_kill_%"]=3526, - ["display_cast_commandment_of_thunder_on_kill_%"]=3571, - ["display_cast_commandment_of_war_on_kill_%"]=3542, - ["display_cast_commandment_of_winter_when_hit_%"]=3514, - ["display_cast_decree_of_blades_on_hit_%__"]=3509, - ["display_cast_decree_of_flames_on_hit_%"]=3562, - ["display_cast_decree_of_frost_on_kill_%"]=3566, - ["display_cast_decree_of_inferno_on_kill_%"]=3517, - ["display_cast_decree_of_reflection_when_hit_%"]=3529, - ["display_cast_decree_of_tempest_on_hit_%"]=3521, - ["display_cast_decree_of_the_grave_on_kill_%"]=3525, - ["display_cast_decree_of_thunder_on_kill_%"]=3570, - ["display_cast_decree_of_war_on_kill_%"]=3541, - ["display_cast_decree_of_winter_when_hit_%"]=3513, - ["display_cast_edict_of_blades_on_hit_%_"]=3508, - ["display_cast_edict_of_flames_on_hit_%"]=3561, - ["display_cast_edict_of_frost_on_kill_%"]=3565, - ["display_cast_edict_of_inferno_on_kill_%"]=3516, - ["display_cast_edict_of_reflection_when_hit_%"]=3528, - ["display_cast_edict_of_tempest_on_hit_%"]=3520, - ["display_cast_edict_of_the_grave_on_kill_%"]=3524, - ["display_cast_edict_of_thunder_on_kill_%"]=3569, - ["display_cast_edict_of_war_on_kill_%"]=3540, - ["display_cast_edict_of_winter_when_hit_%"]=3512, - ["display_cast_fire_burst_on_kill"]=787, - ["display_cast_word_of_blades_on_hit_%"]=3507, - ["display_cast_word_of_flames_on_hit_%"]=3560, - ["display_cast_word_of_frost_on_kill_%"]=3564, - ["display_cast_word_of_inferno_on_kill_%"]=3515, - ["display_cast_word_of_reflection_when_hit_%"]=3527, - ["display_cast_word_of_tempest_on_hit_%"]=3519, - ["display_cast_word_of_the_grave_on_kill_%"]=3523, - ["display_cast_word_of_thunder_on_kill_%"]=3568, - ["display_cast_word_of_war_on_kill_%"]=3539, - ["display_cast_word_of_winter_when_hit_%"]=3511, - ["display_cover_nearby_enemies_in_ash_if_havent_moved_in_past_X_seconds"]=5922, - ["display_cowards_trial_waves_of_monsters"]=6229, - ["display_cowards_trial_waves_of_undead_monsters"]=6230, - ["display_dark_ritual_curse_max_skill_level_requirement"]=6231, - ["display_golden_radiance"]=2519, - ["display_heist_contract_lockdown_timer_+%"]=6232, - ["display_herald_of_thunder_storm"]=5931, + ["curse_apply_as_aura"]=3511, + ["curse_area_of_effect_+%"]=2272, + ["curse_aura_skill_area_of_effect_+%"]=6099, + ["curse_aura_skills_mana_reservation_efficiency_+%"]=6102, + ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=6101, + ["curse_aura_skills_reservation_efficiency_+%"]=6100, + ["curse_aura_skills_reserve_life"]=6111, + ["curse_cast_speed_+%"]=2261, + ["curse_effect_+%"]=2646, + ["curse_effect_+%_if_200_mana_spent_recently"]=6105, + ["curse_effect_on_self_+%"]=2217, + ["curse_effect_on_self_+%_while_on_consecrated_ground"]=6103, + ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=6104, + ["curse_mana_cost_+%"]=6106, + ["curse_on_block_%_chance_flammability_with_+20%_effect"]=3044, + ["curse_on_block_level_5_vulnerability"]=3043, + ["curse_on_hit_%_conductivity"]=2564, + ["curse_on_hit_%_despair"]=2565, + ["curse_on_hit_%_elemental_weakness"]=2566, + ["curse_on_hit_%_enfeeble"]=2563, + ["curse_on_hit_%_flammability"]=2567, + ["curse_on_hit_%_frostbite"]=2568, + ["curse_on_hit_%_temporal_chains"]=2569, + ["curse_on_hit_%_vulnerability"]=2570, + ["curse_on_hit_level_10_vulnerability_%"]=2574, + ["curse_on_hit_level_assassins_mark"]=803, + ["curse_on_hit_level_cold_weakness"]=2576, + ["curse_on_hit_level_conductivity"]=2577, + ["curse_on_hit_level_despair"]=2578, + ["curse_on_hit_level_elemental_weakness"]=2575, + ["curse_on_hit_level_enfeeble"]=2579, + ["curse_on_hit_level_flammability"]=2580, + ["curse_on_hit_level_frostbite"]=2581, + ["curse_on_hit_level_poachers_mark"]=804, + ["curse_on_hit_level_poachers_mark_bypass_hexproof"]=805, + ["curse_on_hit_level_temporal_chains"]=2572, + ["curse_on_hit_level_vulnerability"]=2573, + ["curse_on_hit_level_warlords_mark"]=806, + ["curse_on_melee_block_level_15_punishment"]=3045, + ["curse_on_melee_strike_hit_level_flammability_ignoring_curse_limit"]=6107, + ["curse_on_projectile_block_level_15_temporal_chains"]=3046, + ["curse_on_spell_block_level_15_elemental_weakness"]=3047, + ["curse_pillar_curse_effect_+%_final"]=2647, + ["curse_skill_effect_duration_+%"]=6108, + ["curse_skill_gem_level_+"]=6109, + ["curse_skills_cost_life_instead_of_mana"]=6110, + ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2571, + ["curse_with_punishment_on_hit_%"]=6112, + ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=6114, + ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=6115, + ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=6116, + ["cursed_enemies_are_exorcised_on_kill"]=6113, + ["cursed_with_silence_when_hit_%_chance"]=6117, + ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=6118, + ["curses_never_expire"]=2211, + ["curses_reflected_to_self"]=6119, + ["curses_you_inflict_remain_after_death"]=6120, + ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=6121, + ["cyclone_and_sweep_melee_knockback"]=6122, + ["cyclone_attack_speed_+%"]=3922, + ["cyclone_damage_+%"]=3736, + ["cyclone_max_stages_movement_speed_+%"]=6123, + ["dagger_accuracy_rating"]=2053, + ["dagger_accuracy_rating_+%"]=1489, + ["dagger_ailment_damage_+%"]=1370, + ["dagger_attack_speed_+%"]=1471, + ["dagger_critical_strike_chance_+%"]=1514, + ["dagger_damage_+%"]=1367, + ["dagger_hit_and_ailment_damage_+%"]=1368, + ["damage_+%"]=1238, + ["damage_+%_against_enemies_marked_by_you"]=6147, + ["damage_+%_during_flask_effect"]=4142, + ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=6148, + ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=6124, + ["damage_+%_final_to_grant_packmate_on_death"]=6125, + ["damage_+%_final_to_you_and_nearby_allies_per_nearby_corpses_up_to_10%"]=6126, + ["damage_+%_final_with_at_least_1_nearby_ally"]=6149, + ["damage_+%_for_4_seconds_on_crit"]=3513, + ["damage_+%_for_4_seconds_on_detonation"]=3537, + ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=4145, + ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=4121, + ["damage_+%_for_each_herald_affecting_you"]=6150, + ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=4253, + ["damage_+%_for_each_trap_and_mine_active"]=4136, + ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=6151, + ["damage_+%_for_you_and_allies_affected_by_your_auras"]=4129, + ["damage_+%_if_enemy_killed_recently"]=6152, + ["damage_+%_if_enemy_killed_recently_final"]=4278, + ["damage_+%_if_enemy_shattered_recently"]=6153, + ["damage_+%_if_firing_atleast_7_projectiles"]=6154, + ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3758, + ["damage_+%_if_have_been_ignited_recently"]=6155, + ["damage_+%_if_have_crit_in_past_8_seconds"]=6156, + ["damage_+%_if_only_one_enemy_nearby"]=6157, + ["damage_+%_if_skill_costs_life"]=6158, + ["damage_+%_if_used_travel_skill_recently"]=6159, + ["damage_+%_if_you_have_consumed_a_corpse_recently"]=4313, + ["damage_+%_if_you_have_frozen_enemy_recently"]=6160, + ["damage_+%_if_you_have_shocked_recently"]=6161, + ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=4151, + ["damage_+%_on_consecrated_ground"]=3612, + ["damage_+%_on_full_energy_shield"]=6183, + ["damage_+%_per_1%_block_chance"]=6169, + ["damage_+%_per_1%_increased_item_found_quantity"]=6170, + ["damage_+%_per_100_dexterity"]=6162, + ["damage_+%_per_100_intelligence"]=6163, + ["damage_+%_per_100_strength"]=6164, + ["damage_+%_per_10_dex"]=6165, + ["damage_+%_per_10_levels"]=2896, + ["damage_+%_per_15_dex"]=6166, + ["damage_+%_per_15_int"]=6167, + ["damage_+%_per_15_strength"]=6168, + ["damage_+%_per_5_of_your_lowest_attribute"]=6171, + ["damage_+%_per_abyss_jewel_type"]=4227, + ["damage_+%_per_active_curse_on_self"]=1263, + ["damage_+%_per_active_golem"]=6172, + ["damage_+%_per_active_link"]=6173, + ["damage_+%_per_active_trap"]=3526, + ["damage_+%_per_crab_charge"]=4412, + ["damage_+%_per_endurance_charge"]=3259, + ["damage_+%_per_equipped_magic_item"]=3138, + ["damage_+%_per_fire_adaptation"]=4479, + ["damage_+%_per_frenzy_charge"]=3346, + ["damage_+%_per_frenzy_power_or_endurance_charge"]=6174, + ["damage_+%_per_poison_stack"]=6127, + ["damage_+%_per_poison_up_to_75%"]=6175, + ["damage_+%_per_power_charge"]=6176, + ["damage_+%_per_raised_zombie"]=6128, + ["damage_+%_per_shock"]=2833, + ["damage_+%_per_warcry_used_recently"]=6177, + ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=6178, + ["damage_+%_to_rare_and_unique_enemies"]=3268, + ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=4146, + ["damage_+%_vs_abyssal_monsters"]=6179, + ["damage_+%_vs_bleeding_enemies"]=3540, + ["damage_+%_vs_blinded_enemies"]=2869, + ["damage_+%_vs_burning_enemies"]=3508, + ["damage_+%_vs_chilled_enemies"]=6180, + ["damage_+%_vs_demons"]=2823, + ["damage_+%_vs_enemies_affected_by_status_ailments"]=3522, + ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2868, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1287, + ["damage_+%_vs_frozen_enemies"]=1283, + ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1288, + ["damage_+%_vs_hindered_enemies"]=4167, + ["damage_+%_vs_ignited_enemies"]=3011, + ["damage_+%_vs_magic_monsters"]=6181, + ["damage_+%_vs_rare_monsters"]=2865, + ["damage_+%_vs_taunted_enemies"]=6182, + ["damage_+%_when_currently_has_no_energy_shield"]=2792, + ["damage_+%_when_not_on_low_life"]=3264, + ["damage_+%_when_on_burning_ground"]=2194, + ["damage_+%_when_on_full_life"]=6184, + ["damage_+%_when_on_low_life"]=1262, + ["damage_+%_while_affected_by_a_herald"]=6185, + ["damage_+%_while_channelling"]=6186, + ["damage_+%_while_dead"]=3154, + ["damage_+%_while_es_leeching"]=1267, + ["damage_+%_while_es_not_full"]=4138, + ["damage_+%_while_fortified"]=3257, + ["damage_+%_while_ignited"]=2860, + ["damage_+%_while_in_blood_stance"]=6187, + ["damage_+%_while_leeching"]=3121, + ["damage_+%_while_life_leeching"]=1264, + ["damage_+%_while_mana_leeching"]=1266, + ["damage_+%_while_totem_active"]=3265, + ["damage_+%_while_unarmed"]=3635, + ["damage_+%_while_wielding_bow_if_totem_summoned"]=6188, + ["damage_+%_while_wielding_two_different_weapon_types"]=6189, + ["damage_+%_while_wielding_wand"]=1392, + ["damage_+%_while_you_have_a_summoned_golem"]=6190, + ["damage_+%_while_you_have_unbroken_ward"]=6129, + ["damage_+%_with_bow_skills"]=6130, + ["damage_+%_with_herald_skills"]=6191, + ["damage_+%_with_hits_and_ailments"]=6192, + ["damage_+%_with_maces_sceptres_staves"]=6193, + ["damage_+%_with_movement_skills"]=1479, + ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=6194, + ["damage_+%_with_one_handed_weapons"]=3395, + ["damage_+%_with_shield_skills"]=6195, + ["damage_+%_with_shield_skills_per_2%_attack_block"]=6196, + ["damage_+%_with_two_handed_weapons"]=3396, + ["damage_+1%_per_X_strength_when_in_main_hand"]=2834, + ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3515, + ["damage_cannot_be_reflected"]=6131, + ["damage_from_hits_always_and_only_bypasses_energy_shield_when_not_blocked"]=6132, + ["damage_over_time_+%"]=1257, + ["damage_over_time_+%_per_100_max_life"]=6133, + ["damage_over_time_+%_per_frenzy_charge"]=2180, + ["damage_over_time_+%_per_power_charge"]=2181, + ["damage_over_time_+%_while_affected_by_a_herald"]=6135, + ["damage_over_time_+%_while_dual_wielding"]=2182, + ["damage_over_time_+%_while_holding_a_shield"]=2183, + ["damage_over_time_+%_while_wielding_two_handed_weapon"]=2184, + ["damage_over_time_+%_with_attack_skills"]=6136, + ["damage_over_time_+%_with_bow_skills"]=6137, + ["damage_over_time_+%_with_herald_skills"]=6138, + ["damage_over_time_+%_with_spells"]=1271, + ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=6134, + ["damage_over_time_multiplier_+_with_attacks"]=1294, + ["damage_over_time_multiplier_+_with_spells"]=1293, + ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=6139, + ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=6141, + ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=6142, + ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=6143, + ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=6144, + ["damage_penetrates_%_elemental_resistance_while_you_have_broken_ward"]=6140, + ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=6145, + ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=6146, + ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=6197, + ["damage_reduction_rating_%_with_active_totem"]=3399, + ["damage_reduction_rating_from_body_armour_doubled"]=3397, + ["damage_reflected_to_enemies_%_gained_as_life"]=2762, + ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=6198, + ["damage_removed_from_mana_before_life_%_while_focused"]=6199, + ["damage_removed_from_marked_target_before_life_or_es_%"]=6200, + ["damage_removed_from_radiant_sentinel_before_life_or_es_%"]=6201, + ["damage_removed_from_spectres_before_life_or_es_%"]=6202, + ["damage_removed_from_void_spawns_before_life_or_es_per_void_spawns_%"]=6203, + ["damage_removed_from_your_nearest_permanent_mercenary_before_life_or_es_%_if_their_current_life_is_higher_than_yours"]=6204, + ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=6205, + ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=6223, + ["damage_taken_%_recovered_as_life_from_stunning_hits"]=6224, + ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=6225, + ["damage_taken_+%_final_if_used_retaliation_recently"]=6206, + ["damage_taken_+%_final_per_5_rage_from_painshed_capped_at_50%_less"]=6207, + ["damage_taken_+%_final_per_gale_force"]=6226, + ["damage_taken_+%_final_per_totem"]=6227, + ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=6208, + ["damage_taken_+%_for_4_seconds_on_kill"]=3385, + ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3492, + ["damage_taken_+%_from_bleeding_enemies"]=3376, + ["damage_taken_+%_from_blinded_enemies"]=3344, + ["damage_taken_+%_from_ghosts"]=2295, + ["damage_taken_+%_from_hits"]=2287, + ["damage_taken_+%_from_skeletons"]=2294, + ["damage_taken_+%_from_taunted_enemies"]=4147, + ["damage_taken_+%_if_have_been_frozen_recently"]=6228, + ["damage_taken_+%_if_have_not_been_hit_recently"]=6229, + ["damage_taken_+%_if_not_hit_recently_final"]=4247, + ["damage_taken_+%_if_taunted_an_enemy_recently"]=4282, + ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=6209, + ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=4233, + ["damage_taken_+%_on_full_life"]=6230, + ["damage_taken_+%_on_low_life"]=6231, + ["damage_taken_+%_per_frenzy_charge"]=2988, + ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3675, + ["damage_taken_+%_vs_demons"]=2822, + ["damage_taken_+%_while_affected_by_elusive"]=6210, + ["damage_taken_+%_while_es_full"]=2291, + ["damage_taken_+%_while_leeching"]=6232, + ["damage_taken_+%_while_phasing"]=6233, + ["damage_taken_+_from_suppressed_hits"]=6211, + ["damage_taken_bypasses_ward_if_hits_deal_less_than_%_of_ward"]=6212, + ["damage_taken_from_criticals_recouped_as_life_%"]=6213, + ["damage_taken_from_suppressed_hits_is_unlucky"]=6214, + ["damage_taken_from_traps_and_mines_+%"]=3354, + ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=6215, + ["damage_taken_goes_to_life_over_4_seconds_%"]=6216, + ["damage_taken_goes_to_mana_%"]=2504, + ["damage_taken_goes_to_mana_%_per_power_charge"]=3224, + ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=6217, + ["damage_taken_over_time_+%_final_during_life_flask_effect"]=6218, + ["damage_taken_per_250_dexterity_+%"]=6219, + ["damage_taken_per_250_intelligence_+%"]=6220, + ["damage_taken_per_250_strength_+%"]=6221, + ["damage_taken_per_ghost_dance_stack_+%"]=6222, + ["damage_taken_recouped_as_life_%_per_socketed_red_gem"]=6234, + ["damage_taken_while_frozen_recouped_as_life_%"]=6235, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=3073, + ["damage_vs_enemies_on_full_life_+%"]=6236, + ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=3055, + ["damage_vs_enemies_on_low_life_+%"]=2866, + ["damage_vs_enemies_on_low_life_+%_final"]=2867, + ["damage_vs_enemies_on_low_life_per_power_charge_+%"]=3056, + ["damage_vs_shocked_enemies_+%"]=1285, + ["damage_while_dual_wielding_+%"]=1326, + ["damage_while_no_damage_taken_+%"]=3277, + ["damage_while_no_frenzy_charges_+%"]=3825, + ["damage_with_cold_skills_+%"]=1423, + ["damage_with_fire_skills_+%"]=1412, + ["damage_with_lightning_skills_+%"]=1431, + ["damaging_ailment_damage_+%_while_suffering_from_that_ailment"]=6237, + ["damaging_ailments_deal_damage_+%_faster"]=6238, + ["dark_pact_minions_recover_%_life_on_hit"]=6239, + ["dark_ritual_area_of_effect_+%"]=6240, + ["dark_ritual_damage_+%"]=6241, + ["dark_ritual_linked_curse_effect_+%"]=6242, + ["daytime_fish_caught_size_+%"]=6243, + ["deadeye_accuracy_rating_+%_final_per_frenzy_charge"]=6244, + ["deadeye_damage_taken_+%_final_from_marked_enemy"]=6245, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=6246, + ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=6247, + ["deal_300%_of_physical_damage_as_random_ailment_%_chance"]=6248, + ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=6249, + ["deal_chaos_damage_per_second_for_8_seconds_on_curse"]=6250, + ["deal_double_damage_to_enemies_on_full_life"]=6251, + ["deal_no_damage_when_not_on_low_life"]=6252, + ["deal_no_damage_yourself"]=2297, + ["deal_no_elemental_damage"]=6253, + ["deal_no_elemental_physical_damage"]=6254, + ["deal_no_non_chaos_damage"]=6255, + ["deal_no_non_elemental_damage"]=6256, + ["deal_no_non_fire_damage"]=2851, + ["deal_no_non_lightning_damage"]=2852, + ["deal_no_non_physical_damage"]=2849, + ["deal_triple_damage_if_spent_at_least_Xms_on_single_attack_recently"]=6257, + ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2744, + ["deaths_oath_debuff_on_kill_duration_ms"]=2744, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=6258, + ["debilitate_enemies_for_x_milliseconds_when_suppressing_their_spell"]=6259, + ["debilitate_when_hit_ms"]=6260, + ["debuff_time_passed_+%"]=6262, + ["debuff_time_passed_-%_while_affected_by_haste"]=6261, + ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=6263, + ["decoy_totem_life_+%"]=4056, + ["decoy_totem_radius_+%"]=3894, + ["defences_+%_while_wielding_staff"]=6267, + ["defences_+%_while_you_have_four_linked_targets"]=6264, + ["defences_are_zero"]=6265, + ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=6266, + ["defend_with_%_armour_against_ranged_attacks"]=6268, + ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=6269, + ["defiance_banner_aura_effect_+%"]=6270, + ["defiance_banner_mana_reservation_efficiency_+%"]=6271, + ["degen_effect_+%"]=2292, + ["delirium_aura_effect_+%"]=6272, + ["delirium_mana_reservation_+%"]=6273, + ["delirium_reserves_no_mana"]=6274, + ["delve_biome_area_contains_x_extra_packs_of_insects"]=6275, + ["delve_biome_azurite_collected_+%"]=2335, + ["delve_biome_boss_drops_additional_unique_item"]=2326, + ["delve_biome_boss_drops_extra_precursor_component_ring"]=2327, + ["delve_biome_boss_drops_x_additional_fossils"]=2328, + ["delve_biome_boss_hits_always_crit"]=2329, + ["delve_biome_boss_life_+%_final"]=2330, + ["delve_biome_boss_physical_damage_%_to_add_as_cold"]=2331, + ["delve_biome_boss_physical_damage_%_to_add_as_fire"]=2332, + ["delve_biome_boss_physical_damage_%_to_add_as_lightning"]=2333, + ["delve_biome_city_chambers_can_contain_special_delve_chest"]=2337, + ["delve_biome_contains_delve_boss"]=2325, + ["delve_biome_encounters_extra_reward_chest_%_chance"]=2338, + ["delve_biome_monster_drop_fossil_chance_%"]=2339, + ["delve_biome_monster_projectiles_always_pierce"]=6276, + ["delve_biome_node_tier_upgrade_+%"]=2341, + ["delve_biome_off_path_reward_chests_always_azurite"]=2343, + ["delve_biome_off_path_reward_chests_always_currency"]=2344, + ["delve_biome_off_path_reward_chests_always_fossils"]=2345, + ["delve_biome_off_path_reward_chests_always_resonators"]=2346, + ["delve_biome_off_path_reward_chests_azurite_chance_+%_final"]=2347, + ["delve_biome_off_path_reward_chests_currency_chance_+%_final"]=2348, + ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=2349, + ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=2350, + ["delve_biome_sulphite_cost_+%_final"]=2336, + ["delve_boss_life_+%_final_from_biome"]=6277, + ["demigod_footprints_from_item"]=11047, + ["desecrate_cooldown_speed_+%"]=3942, + ["desecrate_creates_X_additional_corpses"]=4312, + ["desecrate_damage_+%"]=3778, + ["desecrate_duration_+%"]=3979, + ["desecrate_maximum_number_of_corpses"]=6278, + ["desecrate_number_of_corpses_to_create"]=4181, + ["desecrate_on_block_%_chance_to_create"]=2624, + ["desecrated_ground_effect_on_self_+%"]=2199, + ["despair_curse_effect_+%"]=6279, + ["despair_duration_+%"]=6280, + ["despair_no_reservation"]=6281, + ["destructive_link_duration_+%"]=6282, + ["detect_player_has_foolishly_drawn_attention"]=534, + ["determination_aura_effect_+%"]=3427, + ["determination_aura_effect_+%_while_at_minimum_endurance_charges"]=3132, + ["determination_mana_reservation_+%"]=4096, + ["determination_mana_reservation_efficiency_+%"]=6284, + ["determination_mana_reservation_efficiency_-2%_per_1"]=6283, + ["determination_reserves_no_mana"]=6285, + ["detonate_dead_%_chance_to_detonate_additional_corpse"]=4054, + ["detonate_dead_damage_+%"]=3747, + ["detonate_dead_radius_+%"]=3889, + ["devouring_totem_%_chance_to_consume_additional_corpse"]=4063, + ["devouring_totem_leech_per_second_+%"]=4057, + ["dexterity_+%"]=1232, + ["dexterity_+%_if_2_redeemer_items"]=4512, + ["dexterity_+%_if_strength_higher_than_intelligence"]=6287, + ["dexterity_accuracy_bonus_grants_accuracy_rating_+3_per_dexterity_instead"]=6286, + ["dexterity_skill_gem_level_+"]=6288, + ["disable_amulet_slot"]=6289, + ["disable_belt_slot"]=6290, + ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=564, + ["disable_chest_slot"]=2633, + ["disable_skill_if_melee_attack"]=2546, + ["disable_utility_flasks"]=6291, + ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=6292, + ["discharge_area_of_effect_+%_final"]=6293, + ["discharge_chance_not_to_consume_charges_%"]=3476, + ["discharge_cooldown_override_ms"]=6294, + ["discharge_damage_+%"]=3474, + ["discharge_damage_+%_final"]=6295, + ["discharge_radius_+"]=6296, + ["discharge_radius_+%"]=3475, + ["discharge_triggered_damage_+%_final"]=6297, + ["discipline_aura_effect_+%"]=3428, + ["discipline_aura_effect_+%_while_at_minimum_power_charges"]=6298, + ["discipline_mana_reservation_+%"]=4097, + ["discipline_mana_reservation_efficiency_+%"]=6300, + ["discipline_mana_reservation_efficiency_-2%_per_1"]=6299, + ["discipline_reserves_no_mana"]=6301, + ["disintegrate_secondary_beam_angle_+%"]=6302, + ["dispel_bleed_on_guard_skill_use"]=6303, + ["dispel_corrupted_blood_on_guard_skill_use"]=6304, + ["dispel_status_ailments_on_flask_use"]=3358, + ["dispel_status_ailments_on_rampage_threshold"]=3013, + ["display_abberaths_hooves_skill_level"]=807, + ["display_added_damage_type_replacement_no_elemental_hit"]=10886, + ["display_additive_damage_modifiers_in_large_radius_of_non_unique_jewels_instead_apply_to_fire_damage"]=6305, + ["display_ailment_bearer_charge_interval"]=4499, + ["display_altar_chaos_aura"]=6306, + ["display_altar_cold_aura"]=6307, + ["display_altar_fire_aura"]=6308, + ["display_altar_lightning_aura"]=6309, + ["display_altar_tangle_tentalces_daemon"]=6310, + ["display_altleague_event"]=6311, + ["display_area_contains_alluring_vaal_side_area"]=6312, + ["display_area_contains_corrupting_tempest"]=6313, + ["display_area_contains_improved_labyrinth_trial"]=6314, + ["display_area_contains_uber_radiating_tempest"]=6315, + ["display_attack_with_commandment_of_force_on_hit_%"]=3570, + ["display_attack_with_commandment_of_fury_on_hit_%"]=3582, + ["display_attack_with_commandment_of_ire_when_hit_%"]=4081, + ["display_attack_with_commandment_of_light_when_critically_hit_%"]=3574, + ["display_attack_with_commandment_of_spite_when_hit_%"]=3586, + ["display_attack_with_decree_of_force_on_hit_%"]=3569, + ["display_attack_with_decree_of_fury_on_hit_%"]=3581, + ["display_attack_with_decree_of_ire_when_hit_%"]=4080, + ["display_attack_with_decree_of_light_when_critically_hit_%"]=3573, + ["display_attack_with_decree_of_spite_when_hit_%"]=3585, + ["display_attack_with_edict_of_force_on_hit_%"]=3568, + ["display_attack_with_edict_of_fury_on_hit_%"]=3580, + ["display_attack_with_edict_of_ire_when_hit_%"]=4079, + ["display_attack_with_edict_of_light_when_critically_hit_%"]=3572, + ["display_attack_with_edict_of_spite_when_hit_%"]=3584, + ["display_attack_with_word_of_force_on_hit_%"]=3567, + ["display_attack_with_word_of_fury_on_hit_%"]=3579, + ["display_attack_with_word_of_ire_when_hit_%"]=4078, + ["display_attack_with_word_of_light_when_critically_hit_%"]=3571, + ["display_attack_with_word_of_spite_when_hit_%"]=3583, + ["display_bow_range_+"]=3122, + ["display_cast_commandment_of_blades_on_hit_%_"]=3546, + ["display_cast_commandment_of_flames_on_hit_%"]=3599, + ["display_cast_commandment_of_frost_on_kill_%"]=3603, + ["display_cast_commandment_of_inferno_on_kill_%"]=3554, + ["display_cast_commandment_of_reflection_when_hit_%"]=3566, + ["display_cast_commandment_of_tempest_on_hit_%"]=3558, + ["display_cast_commandment_of_the_grave_on_kill_%"]=3562, + ["display_cast_commandment_of_thunder_on_kill_%"]=3607, + ["display_cast_commandment_of_war_on_kill_%"]=3578, + ["display_cast_commandment_of_winter_when_hit_%"]=3550, + ["display_cast_decree_of_blades_on_hit_%__"]=3545, + ["display_cast_decree_of_flames_on_hit_%"]=3598, + ["display_cast_decree_of_frost_on_kill_%"]=3602, + ["display_cast_decree_of_inferno_on_kill_%"]=3553, + ["display_cast_decree_of_reflection_when_hit_%"]=3565, + ["display_cast_decree_of_tempest_on_hit_%"]=3557, + ["display_cast_decree_of_the_grave_on_kill_%"]=3561, + ["display_cast_decree_of_thunder_on_kill_%"]=3606, + ["display_cast_decree_of_war_on_kill_%"]=3577, + ["display_cast_decree_of_winter_when_hit_%"]=3549, + ["display_cast_edict_of_blades_on_hit_%_"]=3544, + ["display_cast_edict_of_flames_on_hit_%"]=3597, + ["display_cast_edict_of_frost_on_kill_%"]=3601, + ["display_cast_edict_of_inferno_on_kill_%"]=3552, + ["display_cast_edict_of_reflection_when_hit_%"]=3564, + ["display_cast_edict_of_tempest_on_hit_%"]=3556, + ["display_cast_edict_of_the_grave_on_kill_%"]=3560, + ["display_cast_edict_of_thunder_on_kill_%"]=3605, + ["display_cast_edict_of_war_on_kill_%"]=3576, + ["display_cast_edict_of_winter_when_hit_%"]=3548, + ["display_cast_fire_burst_on_kill"]=808, + ["display_cast_word_of_blades_on_hit_%"]=3543, + ["display_cast_word_of_flames_on_hit_%"]=3596, + ["display_cast_word_of_frost_on_kill_%"]=3600, + ["display_cast_word_of_inferno_on_kill_%"]=3551, + ["display_cast_word_of_reflection_when_hit_%"]=3563, + ["display_cast_word_of_tempest_on_hit_%"]=3555, + ["display_cast_word_of_the_grave_on_kill_%"]=3559, + ["display_cast_word_of_thunder_on_kill_%"]=3604, + ["display_cast_word_of_war_on_kill_%"]=3575, + ["display_cast_word_of_winter_when_hit_%"]=3547, + ["display_cover_nearby_enemies_in_ash_if_havent_moved_in_past_X_seconds"]=6005, + ["display_cowards_trial_waves_of_monsters"]=6316, + ["display_cowards_trial_waves_of_undead_monsters"]=6317, + ["display_dark_ritual_curse_max_skill_level_requirement"]=6318, + ["display_golden_radiance"]=2545, + ["display_heist_contract_lockdown_timer_+%"]=6319, + ["display_herald_of_thunder_storm"]=6014, ["display_item_generation_can_roll_minion_affixes"]=41, ["display_item_generation_can_roll_totem_affixes"]=42, - ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=6233, - ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=6234, - ["display_legion_uber_fragment_improved_rewards_+%"]=6235, - ["display_link_stuff"]=7509, - ["display_mana_cost_reduction_%"]=1973, - ["display_map_augmentable_boss"]=6236, - ["display_map_boss_gives_experience_+%"]=2865, - ["display_map_contains_grandmasters"]=3037, - ["display_map_final_boss_drops_higher_level_gear"]=2864, - ["display_map_has_oxygen"]=3014, - ["display_map_inhabited_by_lunaris_fanatics"]=6237, - ["display_map_inhabited_by_solaris_fanatics"]=6238, - ["display_map_inhabited_by_wild_beasts"]=2355, - ["display_map_labyrinth_chests_fortune"]=6239, - ["display_map_labyrinth_enchant_belts"]=6240, - ["display_map_large_chest"]=2566, - ["display_map_larger_maze"]=2565, - ["display_map_mission_id"]=117, - ["display_map_no_monsters"]=2459, - ["display_map_restless_dead"]=2564, - ["display_memory_line_abyss_beyond_monsters_from_cracks"]=6241, - ["display_memory_line_ambush_contains_standalone_map_boss"]=6242, - ["display_memory_line_ambush_strongbox_chain"]=6243, - ["display_memory_line_anarchy_rogue_exiles_equipped_with_unique_items"]=6244, - ["display_memory_line_anarchy_rogue_exiles_in_packs"]=6245, - ["display_memory_line_bestiary_capturable_harvest_monsters"]=6246, - ["display_memory_line_bestiary_great_migration"]=6247, - ["display_memory_line_betrayal_constant_interventions"]=6248, - ["display_memory_line_breach_area_is_breached"]=6249, - ["display_memory_line_breach_miniature_flash_breaches"]=6250, - ["display_memory_line_domination_multiple_modded_shrines"]=6251, - ["display_memory_line_domination_shrines_to_pantheon_gods"]=6252, - ["display_memory_line_essence_multiple_rare_monsters"]=6253, - ["display_memory_line_essence_rogue_exiles"]=6254, - ["display_memory_line_harbinger_player_is_a_harbinger"]=6255, - ["display_memory_line_harbinger_portals_everywhere"]=6256, - ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=6257, - ["display_memory_line_incursion_reverse"]=6258, - ["display_memory_line_torment_player_is_possessed"]=6259, - ["display_memory_line_torment_rares_uniques_are_possessed"]=6260, - ["display_minion_maximum_life"]=1974, - ["display_monster_has_acceleration_shrine"]=6261, - ["display_monster_has_adrenaline"]=6262, - ["display_monster_has_cannot_recover_life_aura"]=6263, - ["display_monster_has_chilled_ground_trail_daemon"]=658, - ["display_monster_has_flask_gain_aura"]=6264, - ["display_monster_has_hinder_daemon"]=6265, - ["display_monster_has_lightning_thorns_daemon"]=6266, - ["display_monster_has_periodic_freeze_daemon"]=6267, - ["display_monster_has_proximity_shield_daemon"]=659, - ["display_monster_has_righteous_fire_daemon"]=6268, - ["display_monster_has_shroud_walker_daemon"]=6269, - ["display_monster_has_tailwind_aura"]=6270, - ["display_monster_no_drops"]=6271, - ["display_passives_in_large_radius_of_non_unique_jewels_grant_additional_strength"]=6272, - ["display_reave_base_maximum_stacks"]=6273, - ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=548, - ["display_stat_uber_barrels"]=8313, - ["display_strongbox_drops_additional_shaper_or_elder_cards"]=6274, - ["display_tattoo_grants_random_ascendancy_notable_of_class"]=6275, - ["display_tattoo_grants_random_keystone"]=6276, - ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=788, - ["display_violent_pace_skill_level"]=6277, - ["divination_buff_on_flask_used_duration_cs"]=922, - ["divine_tempest_beam_width_+%"]=6278, - ["divine_tempest_damage_+%"]=6279, - ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=6280, - ["do_not_chain"]=1811, - ["doedre_aura_damage_+%_final"]=6281, - ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=3025, - ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=3028, - ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=3027, - ["dominance_defences_+%_on_nearby_allies_per_100_strength"]=3026, - ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=6282, - ["dominating_blow_duration_+%"]=3922, - ["dominating_blow_minion_damage_+%"]=3725, - ["dominating_blow_skill_attack_damage_+%"]=3726, - ["dot_multiplier_+"]=1266, - ["dot_multiplier_+_if_crit_in_past_8_seconds"]=6283, - ["dot_multiplier_+_while_affected_by_malevolence"]=6284, - ["dot_multiplier_+_with_bow_skills"]=6285, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=6286, - ["double_animate_weapons_limit"]=6287, - ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=6289, - ["double_damage_chance_%_if_below_100_strength"]=6288, - ["double_slash_critical_strike_chance_+%"]=4171, - ["double_slash_damage_+%"]=4164, - ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=6290, - ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=6290, - ["double_slash_radius_+%"]=4173, - ["double_strike_attack_speed_+%"]=3877, - ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=6291, - ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=3256, - ["double_strike_critical_strike_chance_+%"]=3960, - ["double_strike_damage_+%"]=3654, - ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=6292, - ["dread_banner_aura_effect_+%"]=6293, - ["dread_banner_mana_reservation_efficiency_+%"]=6294, - ["dropped_items_are_converted_to_divination_cards"]=6295, - ["dropped_items_are_converted_to_maps"]=6296, - ["dropped_items_are_converted_to_scarabs_based_on_rarity"]=6297, - ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=6298, - ["dual_strike_attack_speed_+%"]=3878, - ["dual_strike_attack_speed_+%_while_wielding_claw"]=6299, - ["dual_strike_critical_strike_chance_+%"]=3961, - ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=6300, - ["dual_strike_damage_+%"]=3655, - ["dual_strike_intimidate_on_hit_while_wielding_axe"]=6301, - ["dual_strike_main_hand_deals_double_damage_%"]=6302, - ["dual_strike_melee_splash_while_wielding_mace"]=6303, - ["dual_strike_melee_splash_with_off_hand_weapon"]=6304, - ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=6305, - ["dual_wield_inherent_bonuses_are_doubled"]=6306, - ["dual_wield_or_shield_block_%"]=1189, - ["duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final"]=6307, - ["duration_of_ailments_on_self_+%_per_fortification"]=6308, - ["earthquake_and_earthshatter_shatter_on_killing_blow"]=6309, - ["earthquake_damage_+%"]=3757, - ["earthquake_damage_+%_per_100ms_duration"]=6310, - ["earthquake_duration_+%"]=3950, - ["earthquake_radius_+%"]=3868, - ["earthshatter_area_of_effect_+%"]=6311, - ["earthshatter_damage_+%"]=6312, - ["eat_soul_after_hex_90%_curse_expire"]=6313, - ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=6314, - ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=6315, - ["elemental_ailments_on_you_proliferate_to_nearby_enemies_within_x_radius"]=6316, - ["elemental_ailments_reflected_to_self"]=6317, - ["elemental_critical_strike_chance_+%"]=1508, - ["elemental_critical_strike_multiplier_+"]=1534, - ["elemental_damage_%_taken_as_chaos_if_4_hunter_items"]=4498, - ["elemental_damage_%_to_add_as_chaos"]=1966, - ["elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped"]=4358, - ["elemental_damage_+%"]=2004, - ["elemental_damage_+%_during_flask_effect"]=4249, - ["elemental_damage_+%_final_per_righteous_charge"]=6322, - ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=6323, - ["elemental_damage_+%_if_enemy_chilled_recently"]=6324, - ["elemental_damage_+%_if_enemy_ignited_recently"]=6325, - ["elemental_damage_+%_if_enemy_shocked_recently"]=6326, - ["elemental_damage_+%_if_have_crit_recently"]=6327, - ["elemental_damage_+%_if_used_a_warcry_recently"]=6328, - ["elemental_damage_+%_per_10_devotion"]=6329, - ["elemental_damage_+%_per_10_dexterity"]=6330, - ["elemental_damage_+%_per_12_int"]=6331, - ["elemental_damage_+%_per_12_strength"]=6332, - ["elemental_damage_+%_per_different_enemy_elemental_ailment"]=6318, - ["elemental_damage_+%_per_divine_charge"]=4413, - ["elemental_damage_+%_per_frenzy_charge"]=2162, - ["elemental_damage_+%_per_level"]=3000, - ["elemental_damage_+%_per_lightning_cold_fire_resistance_above_75"]=6319, - ["elemental_damage_+%_per_missing_lightning_cold_fire_resistance"]=6320, - ["elemental_damage_+%_per_power_charge"]=6333, - ["elemental_damage_+%_per_sextant_affecting_area"]=6334, - ["elemental_damage_+%_per_stackable_unique_jewel"]=4184, - ["elemental_damage_+%_while_affected_by_a_herald"]=6335, - ["elemental_damage_+%_while_in_area_affected_by_sextant"]=6336, - ["elemental_damage_additional_rolls_lucky_shocked"]=6321, - ["elemental_damage_can_shock"]=2897, - ["elemental_damage_reduction_%_per_endurance_charge"]=2299, - ["elemental_damage_resistance_+%"]=6337, - ["elemental_damage_resisted_by_lowest_elemental_resistance"]=6338, - ["elemental_damage_taken_%_as_chaos"]=2477, - ["elemental_damage_taken_+%"]=3317, - ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=3345, - ["elemental_damage_taken_+%_during_flask_effect"]=4108, - ["elemental_damage_taken_+%_final_per_raised_zombie"]=6339, - ["elemental_damage_taken_+%_if_been_hit_recently"]=6341, - ["elemental_damage_taken_+%_if_not_hit_recently"]=6342, - ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=6343, - ["elemental_damage_taken_+%_per_endurance_charge"]=6344, - ["elemental_damage_taken_+%_while_on_consecrated_ground"]=4079, - ["elemental_damage_taken_+%_while_stationary"]=6345, - ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=6340, - ["elemental_damage_with_attack_skills_+%"]=6346, - ["elemental_damage_with_attack_skills_+%_per_power_charge"]=6347, - ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2781, - ["elemental_equilibrium_effect_+%"]=2219, - ["elemental_golem_granted_buff_effect_+%"]=4119, - ["elemental_golem_immunity_to_elemental_damage"]=4116, - ["elemental_golems_maximum_life_is_doubled"]=6348, - ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=6349, - ["elemental_hit_attack_speed_+%"]=3885, - ["elemental_hit_cannot_roll_cold_damage"]=6350, - ["elemental_hit_cannot_roll_fire_damage"]=6351, - ["elemental_hit_cannot_roll_lightning_damage"]=6352, - ["elemental_hit_chance_to_freeze_shock_ignite_%"]=4002, - ["elemental_hit_damage_+%"]=3699, - ["elemental_hit_damage_taken_%_as_physical"]=6353, - ["elemental_hit_deals_50%_less_cold_damage"]=6354, - ["elemental_hit_deals_50%_less_fire_damage"]=6355, - ["elemental_hit_deals_50%_less_lightning_damage"]=6356, - ["elemental_overload_rotation_active"]=10864, - ["elemental_penetration_%_during_flask_effect"]=4291, - ["elemental_penetration_%_if_you_have_a_power_charge"]=6357, - ["elemental_penetration_%_while_chilled"]=6358, - ["elemental_reflect_damage_taken_+%"]=2733, - ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=6359, - ["elemental_resistance_%_per_10_devotion"]=6364, - ["elemental_resistance_%_per_empty_white_socket"]=4460, - ["elemental_resistance_%_per_minion_up_to_30%"]=6360, - ["elemental_resistance_%_per_stackable_unique_jewel"]=4185, - ["elemental_resistance_%_when_on_low_life"]=1646, - ["elemental_resistance_%_while_no_gems_in_helmet"]=6361, - ["elemental_resistance_+%_per_15_ascendance"]=1212, - ["elemental_resistance_cannot_be_lowered_by_curses"]=6362, - ["elemental_resistance_cannot_be_penetrated"]=6363, - ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=4094, - ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=6365, - ["elemental_skill_chance_to_blind_nearby_enemies_%"]=6366, - ["elemental_skills_deal_triple_damage"]=6367, - ["elemental_status_effect_aura_radius"]=2241, - ["elemental_weakness_curse_effect_+%"]=4035, - ["elemental_weakness_duration_+%"]=3940, - ["elemental_weakness_ignores_hexproof"]=2627, - ["elemental_weakness_no_reservation"]=6368, - ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3645, - ["elementalist_area_of_effect_+%_for_5_seconds"]=6369, - ["elementalist_chill_maximum_magnitude_override"]=6370, - ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3641, - ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3638, - ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3640, - ["elementalist_elemental_damage_+%_for_5_seconds"]=6371, - ["elementalist_elemental_status_effect_aura_radius"]=3646, - ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3643, - ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=6372, - ["elementalist_ignite_damage_+%_final"]=6373, - ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3642, - ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=4264, - ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3644, - ["elusive_effect_+%"]=6374, - ["elusive_effect_on_self_+%_per_power_charge"]=4417, - ["elusive_has_50%_chance_to_be_removed_and_reapplied_at_%_elusive_effect"]=6375, - ["elusive_loss_rate_+%"]=6376, - ["elusive_minimum_effect_%"]=6377, - ["elusive_ticks_up_instead_for_x_ms"]=6378, - ["ember_projectile_spread_area_+%"]=6379, - ["emberglow_ignite_duration_+%_final"]=6380, - ["empowered_attack_damage_+%"]=6381, - ["empowered_attack_double_damage_%_chance"]=6382, - ["enable_ring_slot_3"]=6383, - ["enchantment_boots_added_cold_damage_when_hit_maximum"]=3263, - ["enchantment_boots_added_cold_damage_when_hit_minimum"]=3263, - ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=3262, - ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=3331, - ["enchantment_boots_life_leech_on_kill_permyriad"]=3265, - ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=3191, - ["enchantment_boots_mana_costs_when_hit_+%"]=3259, - ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=6384, - ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3333, - ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=3266, - ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=3264, - ["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3333, - ["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=3266, - ["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=3264, - ["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=3267, - ["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=3332, - ["enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"]=3268, - ["enchantment_boots_stun_avoid_%_on_kill"]=3260, - ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3575, - ["endurance_charge_duration_+%"]=2149, - ["endurance_charge_on_hit_%_vs_no_armour"]=6385, - ["endurance_charge_on_kill_%"]=2653, - ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=6386, - ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=6387, - ["endurance_charge_on_off_hand_kill_%"]=3473, - ["endurance_only_conduit"]=2284, - ["enduring_cry_buff_effect_+%"]=4134, - ["enduring_cry_cooldown_speed_+%"]=3911, - ["enduring_cry_grants_x_additional_endurance_charges"]=6388, - ["enemies_blinded_by_you_cannot_inflict_damaging_ailments"]=6389, - ["enemies_blinded_by_you_have_malediction"]=6390, - ["enemies_blinded_by_you_while_blinded_have_malediction"]=6391, - ["enemies_chaos_resistance_%_while_cursed"]=4084, - ["enemies_chill_as_unfrozen"]=1935, - ["enemies_chilled_by_bane_and_contagion"]=6392, - ["enemies_chilled_by_hits_deal_damage_lessened_by_chill_effect"]=6393, - ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=6394, - ["enemies_chilled_by_your_hits_are_shocked"]=6395, - ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=6396, - ["enemies_damage_taken_+%_while_cursed"]=3782, - ["enemies_explode_for_%_life_as_physical_damage"]=6397, - ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=6398, - ["enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance"]=6399, - ["enemies_explode_on_kill"]=6400, - ["enemies_explode_on_kill_while_unhinged"]=6401, - ["enemies_extra_damage_rolls_with_lightning_damage"]=6403, - ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=6404, - ["enemies_extra_damage_rolls_with_physical_damage"]=6402, - ["enemies_hitting_you_drop_burning_ground_%"]=6405, - ["enemies_hitting_you_drop_chilled_ground_%"]=6406, - ["enemies_hitting_you_drop_shocked_ground_%"]=6407, - ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=6408, - ["enemies_in_presence_and_you_count_as_moving_when_affected_by_elemental_ailments"]=6409, - ["enemies_killed_on_fungal_ground_explode_for_10%_chaos_damage_%_chance"]=6410, - ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=6411, - ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=6412, - ["enemies_near_link_skill_target_have_exposure"]=6413, - ["enemies_near_marked_enemy_are_blinded"]=6414, - ["enemies_pacified_by_you_take_+%_damage"]=6415, - ["enemies_poisoned_by_you_cannot_deal_critical_strikes"]=6416, - ["enemies_poisoned_by_you_cannot_regen_life"]=6417, - ["enemies_poisoned_by_you_chaos_resistance_+%"]=6418, - ["enemies_poisoned_by_you_have_physical_damage_%_converted_to_chaos"]=6419, - ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=6420, - ["enemies_shocked_by_your_hits_are_chilled"]=6421, - ["enemies_shocked_by_your_hits_are_debilitated"]=6422, - ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=6423, - ["enemies_taunted_by_you_cannot_evade_attacks"]=6424, - ["enemies_taunted_by_your_warcies_are_intimidated"]=6425, - ["enemies_taunted_by_your_warcries_are_unnerved"]=6426, - ["enemies_that_hit_you_inflict_temporal_chains"]=6427, - ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=6428, - ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=4422, - ["enemies_you_bleed_grant_flask_charges_+%"]=2517, - ["enemies_you_blind_have_critical_strike_chance_+%"]=6429, - ["enemies_you_curse_are_intimidated"]=6430, - ["enemies_you_curse_are_unnerved"]=6431, - ["enemies_you_curse_cannot_recharge_energy_shield"]=6432, - ["enemies_you_curse_have_15%_hinder"]=6433, - ["enemies_you_curse_have_malediction"]=3783, - ["enemies_you_expose_have_self_elemental_status_duration_+%"]=6434, - ["enemies_you_hinder_have_life_regeneration_rate_+%"]=6435, - ["enemies_you_ignite_take_chaos_damage_from_ignite_instead"]=6436, - ["enemies_you_ignite_wither_does_not_expire"]=6437, - ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=6438, - ["enemies_you_maim_have_damage_taken_over_time_+%"]=6439, - ["enemies_you_shock_cast_speed_+%"]=4313, - ["enemies_you_shock_movement_speed_+%"]=4314, - ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=6440, - ["enemies_you_wither_have_all_resistances_%"]=6441, - ["enemy_additional_critical_strike_chance_against_self"]=3155, - ["enemy_aggro_radius_+%"]=3167, - ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=3156, - ["enemy_evasion_+%_if_you_have_hit_them_recently"]=6442, - ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=6443, - ["enemy_extra_damage_rolls_when_on_full_life"]=6444, - ["enemy_extra_damage_rolls_when_on_low_life"]=2580, - ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=3141, - ["enemy_hits_%_chance_to_treat_elemental_resistances_as_90%"]=6445, - ["enemy_hits_roll_low_damage"]=2577, - ["enemy_knockback_direction_is_reversed"]=3041, - ["enemy_life_leech_from_any_damage_permyriad_while_focused"]=7388, - ["enemy_life_leech_from_chaos_damage_permyriad"]=1707, - ["enemy_life_leech_from_cold_damage_permyriad"]=1700, - ["enemy_life_leech_from_fire_damage_permyriad"]=1695, - ["enemy_life_leech_from_lightning_damage_permyriad"]=1704, - ["enemy_life_leech_from_physical_attack_damage_permyriad"]=1672, - ["enemy_life_leech_from_physical_damage_permyriad"]=1691, - ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=6446, - ["enemy_mana_leech_from_chaos_damage_permyriad"]=1739, - ["enemy_mana_leech_from_fire_damage_permyriad"]=1733, - ["enemy_mana_leech_from_lightning_damage_permyriad"]=1737, - ["enemy_mana_leech_from_physical_attack_damage_permyriad"]=1722, - ["enemy_mana_leech_from_physical_damage_permyriad"]=1731, - ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2661, - ["enemy_phys_reduction_%_penalty_vs_hit"]=3002, - ["enemy_physical_damage_%_as_extra_fire_vs_you"]=1955, - ["enemy_shock_on_kill"]=1936, - ["enemy_zero_elemental_resistance_when_hit"]=6447, - ["energy_shield_%_gained_on_block"]=2491, - ["energy_shield_%_of_armour_rating_gained_on_block"]=2492, - ["energy_shield_%_of_evasion_rating_gained_on_block"]=6448, - ["energy_shield_%_to_lose_on_block"]=2763, - ["energy_shield_+%_if_both_rings_have_evasion_mod"]=6449, - ["energy_shield_+%_per_10_strength"]=6467, - ["energy_shield_+%_per_power_charge"]=6468, - ["energy_shield_+%_while_you_have_broken_ward"]=6450, - ["energy_shield_+1%_per_X_strength_when_in_off_hand_from_foulborn_doon_cuebiyari"]=6451, - ["energy_shield_+_per_8_evasion_on_boots"]=6452, - ["energy_shield_additive_modifiers_instead_apply_to_ward"]=6453, - ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2671, - ["energy_shield_delay_-%"]=1586, - ["energy_shield_delay_-%_while_affected_by_discipline"]=6454, - ["energy_shield_delay_during_flask_effect_-%"]=3601, - ["energy_shield_from_gloves_and_boots_+%"]=6455, - ["energy_shield_from_helmet_+%"]=6456, - ["energy_shield_gain_per_target"]=1771, - ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=6457, - ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=6458, - ["energy_shield_gained_on_block"]=1783, - ["energy_shield_gained_on_enemy_death_per_level"]=2997, - ["energy_shield_increased_by_chaos_resistance"]=6459, - ["energy_shield_leech_does_not_stop_on_full_energy_shield"]=6460, - ["energy_shield_leech_from_any_damage_permyriad"]=1745, - ["energy_shield_leech_from_attacks_does_not_stop_on_full_energy_shield"]=6461, - ["energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=6462, - ["energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy"]=1747, - ["energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad"]=6463, - ["energy_shield_leech_permyriad_vs_frozen_enemies"]=6464, - ["energy_shield_leech_speed_+%"]=2183, - ["energy_shield_lost_per_minute_%"]=6465, - ["energy_shield_per_level"]=6466, - ["energy_shield_protects_mana"]=3140, - ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=6469, - ["energy_shield_recharge_apply_to_mana"]=6470, - ["energy_shield_recharge_not_delayed_by_damage"]=1587, - ["energy_shield_recharge_rate_+%"]=1589, - ["energy_shield_recharge_rate_+%_per_different_mastery"]=6471, - ["energy_shield_recharge_rate_during_flask_effect_+%"]=3603, - ["energy_shield_recharge_rate_per_minute_%"]=1588, - ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=4227, - ["energy_shield_recharge_start_when_stunned"]=6472, - ["energy_shield_recharges_on_block_%"]=3446, - ["energy_shield_recharges_on_kill_%"]=6473, - ["energy_shield_recharges_on_skill_use_chance_%"]=6474, - ["energy_shield_recharges_on_suppress_%"]=3447, - ["energy_shield_recovery_rate_+%"]=1592, - ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=6475, - ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=6476, - ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=6477, - ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=6478, - ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=6479, - ["energy_shield_regeneration_%_per_minute_while_shocked"]=3049, - ["energy_shield_regeneration_rate_+%"]=6487, - ["energy_shield_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=6480, - ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=6483, - ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=6484, - ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1825, - ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=6481, - ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=6482, - ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=6485, - ["energy_shield_regeneration_rate_per_second"]=6486, - ["enfeeble_curse_effect_+%"]=4036, - ["enfeeble_duration_+%"]=3939, - ["enfeeble_ignores_hexproof"]=2628, - ["enfeeble_no_reservation"]=6488, - ["ensnaring_arrow_area_of_effect_+%"]=6489, - ["ensnaring_arrow_debuff_effect_+%"]=6490, - ["envy_reserves_no_mana"]=6491, - ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=6492, - ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=4251, - ["es_regeneration_per_minute_%_while_stationary"]=6493, - ["essence_buff_ground_fire_damage_to_deal_per_second"]=4333, - ["essence_buff_ground_fire_duration_ms"]=4333, - ["essence_display_elemental_damage_taken_while_not_moving_+%"]=4336, - ["essence_drain_damage_+%"]=3751, - ["essence_drain_soulrend_base_projectile_speed_+%"]=6494, - ["essence_drain_soulrend_number_of_additional_projectiles"]=6495, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6496, - ["ethereal_knives_damage_+%"]=3672, - ["ethereal_knives_number_of_additional_projectiles"]=6497, - ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6498, - ["ethereal_knives_projectile_speed_+%"]=3919, - ["ethereal_knives_projectiles_nova"]=6499, - ["evasion_+%_if_hit_recently"]=4212, - ["evasion_+%_per_10_intelligence"]=6501, - ["evasion_and_physical_damage_reduction_rating_+%"]=1567, - ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6512, - ["evasion_rating_%_to_add_as_armour"]=6513, - ["evasion_rating_+%"]=1573, - ["evasion_rating_+%_during_focus"]=6502, - ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6500, - ["evasion_rating_+%_if_have_cast_dash_recently"]=6517, - ["evasion_rating_+%_if_have_not_been_hit_recently"]=6518, - ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6519, - ["evasion_rating_+%_per_10_intelligence"]=6503, - ["evasion_rating_+%_per_500_maximum_mana"]=6504, - ["evasion_rating_+%_per_endurance_charge"]=6505, - ["evasion_rating_+%_per_frenzy_charge"]=1580, - ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6520, - ["evasion_rating_+%_when_on_full_life"]=6521, - ["evasion_rating_+%_when_on_low_life"]=2559, - ["evasion_rating_+%_while_leeching"]=6522, - ["evasion_rating_+%_while_moving"]=6523, - ["evasion_rating_+%_while_onslaught_is_active"]=1575, - ["evasion_rating_+%_while_phasing"]=2529, - ["evasion_rating_+%_while_stationary"]=6506, - ["evasion_rating_+%_while_tincture_active"]=6524, - ["evasion_rating_+%_while_you_have_energy_shield"]=6525, - ["evasion_rating_+%_while_you_have_unbroken_ward"]=6507, - ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6514, - ["evasion_rating_+_per_10_player_life"]=6508, - ["evasion_rating_+_per_1_armour_on_gloves"]=6509, - ["evasion_rating_+_per_1_helmet_energy_shield"]=1571, - ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=4403, - ["evasion_rating_+_when_on_full_life"]=1570, - ["evasion_rating_+_when_on_low_life"]=1569, - ["evasion_rating_+_while_phasing"]=6515, - ["evasion_rating_+_while_you_have_tailwind"]=6516, - ["evasion_rating_from_helmet_and_boots_+%"]=6510, - ["evasion_rating_increased_by_overcapped_cold_resistance"]=6511, - ["evasion_rating_plus_in_sand_stance"]=10241, - ["evasion_rating_while_es_full_+%_final"]=4101, - ["every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds"]=6526, - ["every_4_seconds_%_chance_freeze_non_frozen_enemies_for_300ms"]=6527, - ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6528, - ["every_fourth_retaliation_used_is_a_critical_strike"]=6529, - ["excommunicate_on_melee_attack_hit_for_X_ms"]=6530, - ["exerted_attack_knockback_chance_%"]=6531, - ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6532, - ["expanding_fire_cone_additional_maximum_number_of_stages"]=6533, - ["expanding_fire_cone_area_of_effect_+%"]=6534, - ["expedition_chest_logbook_chance_%"]=6535, - ["expedition_monsters_logbook_chance_+%"]=6536, - ["experience_gain_+%"]=1627, - ["experience_loss_on_death_-%"]=1628, - ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6537, - ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3330, - ["explode_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6538, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=3328, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6539, - ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3329, - ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=10730, - ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6540, - ["explode_on_death_for_%_life_as_fire_damage"]=6541, - ["explode_on_kill_%_chaos_damage_to_deal"]=3327, - ["explode_on_kill_%_fire_damage_to_deal"]=2730, - ["explosive_arrow_attack_speed_+%"]=4155, - ["explosive_arrow_damage_+%"]=3703, - ["explosive_arrow_duration_+%"]=6542, - ["explosive_arrow_radius_+%"]=3849, - ["explosive_concoction_damage_+%"]=6543, - ["explosive_concoction_flask_charges_consumed_+%"]=6544, - ["explosive_concoction_skill_area_of_effect_+%"]=6545, - ["exposure_effect_+%"]=6546, - ["exposure_you_inflict_applies_extra_%_to_affected_resistance"]=6547, - ["exposure_you_inflict_has_minimum_resistance_%"]=6548, - ["exsanguinate_additional_chain_chance_%"]=6549, - ["exsanguinate_and_reap_skill_physical_damage_%_to_convert_to_fire"]=6550, - ["exsanguinate_damage_+%"]=6551, - ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6552, - ["exsanguinate_duration_+%"]=6553, - ["extinguish_on_hit_%_chance"]=6554, - ["extra_chaos_damage_rolls"]=5755, - ["extra_critical_rolls"]=2698, - ["extra_critical_rolls_during_focus"]=6555, - ["extra_critical_rolls_while_on_low_life"]=6556, - ["extra_damage_rolls_with_cold_damage_if_have_suppressed_spell_damage_recently"]=6557, - ["extra_damage_rolls_with_fire_damage_if_have_blocked_attack_recently"]=6558, - ["extra_damage_rolls_with_lightning_damage_if_have_blocked_spell_recently"]=6559, - ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6560, - ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=4451, - ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=4452, - ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6561, - ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=3269, - ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6562, - ["extra_gore"]=10881, - ["extra_target_targeting_distance_+%"]=6563, - ["extreme_luck_unluck"]=6564, - ["eye_of_winter_damage_+%"]=6565, - ["eye_of_winter_projectile_speed_+%"]=6566, - ["eye_of_winter_spiral_fire_frequency_+%"]=6567, - ["faster_bleed_%"]=6569, - ["faster_bleed_per_frenzy_charge_%"]=6568, - ["faster_burn_%"]=2588, - ["faster_burn_from_attacks_%"]=2590, - ["faster_poison_%"]=6570, - ["final_pack_summons_nameless_seer"]=6571, - ["final_repeat_of_spells_area_of_effect_+%"]=6572, - ["fire_ailment_duration_+%"]=6573, - ["fire_and_chaos_damage_resistance_%"]=6574, - ["fire_and_cold_damage_resistance_%"]=2822, - ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=6575, - ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6576, - ["fire_and_lightning_damage_resistance_%"]=2823, - ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=6577, - ["fire_attack_damage_+%"]=1226, - ["fire_attack_damage_+%_while_holding_a_shield"]=1229, - ["fire_axe_damage_+%"]=1329, - ["fire_beam_cast_speed_+%"]=6578, - ["fire_beam_damage_+%"]=6579, - ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6580, - ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6581, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=6582, - ["fire_beam_length_+%"]=6583, - ["fire_bow_damage_+%"]=1359, - ["fire_claw_damage_+%"]=1341, - ["fire_critical_strike_chance_+%"]=1505, - ["fire_critical_strike_multiplier_+"]=1531, - ["fire_dagger_damage_+%"]=1347, - ["fire_damage_%_to_add_as_chaos"]=1965, - ["fire_damage_%_to_add_as_chaos_per_endurance_charge"]=6585, - ["fire_damage_+%"]=1381, - ["fire_damage_+%_if_you_have_been_hit_recently"]=6586, - ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6587, - ["fire_damage_+%_per_20_strength"]=6588, - ["fire_damage_+%_per_endurance_charge"]=6589, - ["fire_damage_+%_per_fire_resistance_above_75"]=6590, - ["fire_damage_+%_per_missing_fire_resistance"]=6591, - ["fire_damage_+%_to_blinded_enemies"]=3244, - ["fire_damage_+%_vs_bleeding_enemies"]=6592, - ["fire_damage_+%_while_affected_by_anger"]=6593, - ["fire_damage_+%_while_affected_by_herald_of_ash"]=6594, - ["fire_damage_can_chill"]=2898, - ["fire_damage_can_freeze"]=2899, - ["fire_damage_can_shock"]=2900, - ["fire_damage_cannot_ignite"]=2908, - ["fire_damage_over_time_+%"]=1236, - ["fire_damage_over_time_multiplier_+%_while_burning"]=6584, - ["fire_damage_over_time_multiplier_+_with_attacks"]=1277, - ["fire_damage_resistance_%_when_on_low_life"]=1651, - ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6595, - ["fire_damage_resistance_+%"]=1652, - ["fire_damage_resistance_is_%"]=1648, - ["fire_damage_taken_%_as_cold"]=3200, - ["fire_damage_taken_%_as_lightning"]=3201, - ["fire_damage_taken_%_causes_additional_physical_damage"]=2478, - ["fire_damage_taken_+"]=2261, - ["fire_damage_taken_+%"]=2266, - ["fire_damage_taken_+%_while_moving"]=6598, - ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6596, - ["fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently"]=10731, - ["fire_damage_taken_per_second_while_flame_touched"]=6597, - ["fire_damage_taken_when_enemy_ignited"]=6599, - ["fire_damage_to_return_on_block"]=6600, - ["fire_damage_to_return_to_melee_attacker"]=2228, - ["fire_damage_to_return_when_hit"]=2232, - ["fire_damage_while_dual_wielding_+%"]=1304, - ["fire_damage_with_attack_skills_+%"]=6601, - ["fire_damage_with_spell_skills_+%"]=6602, - ["fire_dot_multiplier_+"]=1275, - ["fire_dot_multiplier_+_per_rage"]=6603, - ["fire_exposure_on_hit_magnitude"]=6604, - ["fire_exposure_on_hit_magnitude_vs_max_stacks_resentment_debuff"]=6605, - ["fire_exposure_you_inflict_applies_extra_fire_resistance_+%"]=6606, - ["fire_hit_and_dot_damage_%_taken_as_lightning"]=6607, - ["fire_mace_damage_+%"]=1353, - ["fire_nova_mine_cast_speed_+%"]=3896, - ["fire_nova_mine_damage_+%"]=3686, - ["fire_nova_mine_num_of_additional_repeats"]=3992, - ["fire_penetration_%_if_you_have_blocked_recently"]=6608, - ["fire_resistance_cannot_be_penetrated"]=6609, - ["fire_skill_chance_to_inflict_fire_exposure_%"]=6610, - ["fire_skill_gem_level_+"]=6611, - ["fire_skill_gem_level_+_if_6_warlord_items"]=4513, - ["fire_skills_chance_to_poison_on_hit_%"]=6612, - ["fire_spell_physical_damage_%_to_convert_to_fire"]=6613, - ["fire_spell_skill_gem_level_+"]=1634, - ["fire_staff_damage_+%"]=1335, - ["fire_storm_damage_+%"]=3687, - ["fire_sword_damage_+%"]=1366, - ["fire_trap_burning_damage_+%"]=3983, - ["fire_trap_burning_ground_duration_+%"]=6614, - ["fire_trap_cooldown_speed_+%"]=3898, - ["fire_trap_damage_+%"]=3656, - ["fire_trap_number_of_additional_traps_to_throw"]=6615, - ["fire_wand_damage_+%"]=1372, - ["fire_weakness_ignores_hexproof"]=2629, - ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6616, - ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6617, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=3277, - ["fireball_cannot_ignite"]=6618, - ["fireball_cast_speed_+%"]=3895, - ["fireball_chance_to_scorch_%"]=6619, - ["fireball_damage_+%"]=3657, - ["fireball_ignite_chance_%"]=3984, - ["fireball_radius_up_to_+%_at_longer_ranges"]=3276, - ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=6620, - ["firestorm_duration_+%"]=3953, - ["firestorm_explosion_area_of_effect_+%"]=3993, - ["first_X_stacks_of_tincture_toxicity_have_no_effect"]=6621, - ["first_and_final_barrage_projectiles_return"]=6622, - ["fish_quantity_+%"]=2873, - ["fish_rarity_+%"]=2874, - ["fish_rot_when_caught"]=6623, - ["fishing_bestiary_lures_at_fishing_holes"]=6624, - ["fishing_bite_sensitivity_+%"]=3607, - ["fishing_can_catch_divine_fish"]=6625, - ["fishing_chance_to_catch_boots_+%"]=6626, - ["fishing_chance_to_catch_divine_orb_+%"]=6627, - ["fishing_corrupted_fish_cleansed_chance_%"]=6628, - ["fishing_fish_always_tell_truth_with_this_rod"]=6629, - ["fishing_ghastly_fisherman_cannot_spawn"]=6630, - ["fishing_ghastly_fisherman_spawns_behind_you"]=6631, - ["fishing_hook_type"]=2871, - ["fishing_krillson_affection_per_fish_gifted_+%"]=6632, - ["fishing_life_of_fish_with_this_rod_+%"]=6633, - ["fishing_line_strength_+%"]=2868, - ["fishing_lure_type"]=2870, - ["fishing_magmatic_fish_are_cooked"]=6634, - ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6635, - ["fishing_pool_consumption_+%"]=2869, - ["fishing_range_+%"]=2872, - ["fishing_reeling_stability_+%"]=6636, - ["fishing_tasalio_ire_per_fish_caught_+%"]=6637, - ["fishing_valako_aid_per_stormy_day_+%"]=6638, - ["fishing_wish_effect_of_ancient_fish_+%"]=6639, - ["fishing_wish_per_fish_+"]=6640, - ["flame_dash_cooldown_speed_+%"]=3905, - ["flame_dash_damage_+%"]=3736, - ["flame_golem_damage_+%"]=3718, - ["flame_golem_elemental_resistances_%"]=4009, - ["flame_link_duration_+%"]=6641, - ["flame_surge_critical_strike_chance_+%"]=3965, - ["flame_surge_damage_+%"]=3688, - ["flame_surge_damage_+%_vs_burning_enemies"]=3994, - ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6642, - ["flame_totem_damage_+%"]=3728, - ["flame_totem_num_of_additional_projectiles"]=3977, - ["flame_totem_projectile_speed_+%"]=3920, - ["flame_wall_damage_+%"]=6643, - ["flame_wall_maximum_added_fire_damage"]=6644, - ["flame_wall_minimum_added_fire_damage"]=6644, - ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6645, - ["flameblast_and_incinerate_cannot_inflict_status_ailments"]=6646, - ["flameblast_critical_strike_chance_+%"]=3964, - ["flameblast_damage_+%"]=3704, - ["flameblast_radius_+%"]=3850, - ["flameblast_starts_with_X_additional_stages"]=6647, - ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6648, - ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6649, - ["flamethrower_tower_trap_cast_speed_+%"]=6650, - ["flamethrower_tower_trap_cooldown_speed_+%"]=6651, - ["flamethrower_tower_trap_damage_+%"]=6652, - ["flamethrower_tower_trap_duration_+%"]=6653, - ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6654, - ["flamethrower_tower_trap_throwing_speed_+%"]=6655, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6656, - ["flammability_curse_effect_+%"]=4037, - ["flammability_duration_+%"]=3938, - ["flammability_mana_reservation_+%"]=4071, - ["flammability_no_reservation"]=6657, - ["flask_charges_+%_from_enemies_with_status_ailments"]=4273, - ["flask_charges_gained_+%_during_flask_effect"]=3207, - ["flask_charges_gained_+%_if_crit_recently"]=6658, - ["flask_charges_gained_+%_per_tincture_toxicity"]=6661, - ["flask_charges_gained_from_kills_+%_final_from_unique"]=6659, - ["flask_charges_gained_from_marked_enemy_+%"]=6660, - ["flask_charges_recovered_per_3_seconds"]=3502, - ["flask_charges_used_+%"]=2208, - ["flask_duration_+%"]=2211, - ["flask_duration_+%_per_level"]=6662, - ["flask_duration_on_minions_+%"]=2212, - ["flask_effect_+%"]=2766, - ["flask_effect_+%_per_level"]=6663, - ["flask_life_and_mana_to_recover_+%"]=6664, - ["flask_life_recovery_+%_while_affected_by_vitality"]=6665, - ["flask_life_recovery_rate_+%"]=2213, - ["flask_life_to_recover_+%"]=2083, - ["flask_mana_charges_used_+%"]=2209, - ["flask_mana_recovery_rate_+%"]=2214, - ["flask_mana_to_recover_+%"]=2084, - ["flask_minion_heal_%"]=2926, - ["flask_recovery_is_instant"]=6666, - ["flask_recovery_speed_+%"]=2085, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6667, - ["flasks_%_chance_to_not_consume_charges"]=4254, - ["flasks_adjacent_to_active_tinctures_gain_X_charges_on_weapon_hit"]=6668, - ["flasks_adjacent_to_active_tinctures_have_effect_+%_if_hit_with_weapon_recently"]=6669, - ["flasks_apply_to_your_linked_targets"]=6670, - ["flasks_apply_to_your_zombies_and_spectres"]=3772, - ["flasks_dispel_burning"]=2779, - ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6671, - ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6672, - ["flesh_and_stone_area_of_effect_+%"]=6673, - ["flesh_offering_attack_speed_+%"]=4146, - ["flesh_offering_duration_+%"]=3926, - ["flesh_offering_effect_+%"]=1197, - ["flesh_stone_mana_reservation_efficiency_+%"]=6675, - ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6674, - ["flesh_stone_no_reservation"]=6676, - ["flicker_strike_cooldown_speed_+%"]=3899, - ["flicker_strike_damage_+%"]=3677, - ["flicker_strike_damage_+%_per_frenzy_charge"]=3989, - ["flicker_strike_more_attack_speed_+%_final"]=1436, - ["focus_cooldown_modifier_ms"]=6677, - ["focus_cooldown_speed_+%"]=6678, - ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6679, - ["forbidden_rite_damage_+%"]=6680, - ["forbidden_rite_number_of_additional_projectiles"]=6681, - ["forbidden_rite_projectile_speed_+%"]=6682, - ["forking_angle_+%"]=6683, - ["fortification_gained_from_hits_+%"]=6684, - ["fortification_gained_from_hits_+%_against_unique_enemies"]=6685, - ["fortify_duration_+%"]=2289, - ["fortify_duration_+%_per_10_strength"]=6686, - ["fortify_on_hit"]=6687, - ["four_seconds_after_being_hit_lose_life_equal_to_x%_of_hit"]=6688, - ["freeze_as_though_dealt_damage_+%"]=2916, - ["freeze_chilled_enemies_as_though_dealt_damage_+%"]=6689, - ["freeze_duration_+%"]=1882, - ["freeze_duration_against_cursed_enemies_+%"]=6690, - ["freeze_mine_cold_resistance_+_while_frozen"]=2802, - ["freeze_mine_damage_+%"]=3737, - ["freeze_mine_radius_+%"]=3860, - ["freeze_minimum_duration_X_ms"]=6691, - ["freeze_on_you_proliferates_to_nearby_enemies_within_x_radius"]=3649, - ["freeze_prevention_ms_when_frozen"]=2919, - ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6692, - ["freezing_pulse_and_eye_of_winter_poison_damage_+100%_final_chance"]=6693, - ["freezing_pulse_cast_speed_+%"]=3894, - ["freezing_pulse_damage_+%"]=3658, - ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6694, - ["freezing_pulse_number_of_additional_projectiles"]=6695, - ["freezing_pulse_projectile_speed_+%"]=3916, - ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=4001, - ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6696, - ["frenzy_charge_duration_+%_per_frenzy_charge"]=2075, - ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6697, - ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6698, - ["frenzy_damage_+%"]=3697, - ["frenzy_damage_+%_per_frenzy_charge"]=4000, - ["frenzy_only_conduit"]=2285, - ["from_self_maximum_added_attack_chaos_damage_taken"]=1412, - ["from_self_maximum_added_attack_cold_damage_taken"]=1394, - ["from_self_maximum_added_attack_fire_damage_taken"]=1385, - ["from_self_maximum_added_attack_lightning_damage_taken"]=1405, - ["from_self_maximum_added_attack_physical_damage_taken"]=1291, - ["from_self_maximum_added_cold_damage_taken"]=1391, - ["from_self_maximum_added_cold_damage_taken_per_frenzy_charge"]=4296, - ["from_self_maximum_added_fire_damage_taken"]=1382, - ["from_self_maximum_added_lightning_damage_taken"]=1402, - ["from_self_minimum_added_attack_chaos_damage_taken"]=1412, - ["from_self_minimum_added_attack_cold_damage_taken"]=1394, - ["from_self_minimum_added_attack_fire_damage_taken"]=1385, - ["from_self_minimum_added_attack_lightning_damage_taken"]=1405, - ["from_self_minimum_added_attack_physical_damage_taken"]=1291, - ["from_self_minimum_added_cold_damage_taken"]=1391, - ["from_self_minimum_added_cold_damage_taken_per_frenzy_charge"]=4296, - ["from_self_minimum_added_fire_damage_taken"]=1382, - ["from_self_minimum_added_lightning_damage_taken"]=1402, - ["frost_blades_damage_+%"]=3433, - ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6699, - ["frost_blades_number_of_additional_projectiles_in_chain"]=3435, - ["frost_blades_projectile_speed_+%"]=3434, - ["frost_bolt_cast_speed_+%"]=4174, - ["frost_bolt_damage_+%"]=4162, - ["frost_bolt_freeze_chance_%"]=4175, - ["frost_bolt_nova_cooldown_speed_+%"]=6700, - ["frost_bolt_nova_damage_+%"]=4163, - ["frost_bolt_nova_duration_+%"]=4176, - ["frost_bolt_nova_radius_+%"]=4170, - ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6702, - ["frost_bomb_buff_duration_+%"]=6701, - ["frost_bomb_cooldown_speed_+%"]=3912, - ["frost_bomb_damage_+%"]=3760, - ["frost_bomb_radius_+%"]=3869, - ["frost_fury_additional_max_number_of_stages"]=6703, - ["frost_fury_area_of_effect_+%_per_stage"]=6704, - ["frost_fury_damage_+%"]=6705, - ["frost_globe_added_cooldown_count"]=6706, - ["frost_globe_health_per_stage"]=6707, - ["frost_wall_cooldown_speed_+%"]=3903, - ["frost_wall_damage_+%"]=3731, - ["frost_wall_duration_+%"]=3929, - ["frostbite_curse_effect_+%"]=4038, - ["frostbite_duration_+%"]=3937, - ["frostbite_mana_reservation_+%"]=4072, - ["frostbite_no_reservation"]=6708, - ["frostbolt_number_of_additional_projectiles"]=6709, - ["frostbolt_projectile_acceleration"]=6710, - ["frozen_legion_%_chance_to_summon_additional_statue"]=6714, - ["frozen_legion_added_cooldown_count"]=6711, - ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6712, - ["frozen_legion_cooldown_speed_+%"]=6713, - ["frozen_monsters_take_%_increased_damage"]=6715, - ["frozen_monsters_take_increased_damage"]=2485, - ["frozen_sweep_damage_+%"]=6716, - ["frozen_sweep_damage_+%_final"]=6717, - ["full_life_threshold_%_override"]=6718, - ["fungal_ground_while_stationary_radius"]=6719, - ["gain_%_es_when_spirit_charge_expires_or_consumed"]=4410, - ["gain_%_life_when_spirit_charge_expires_or_consumed"]=4409, - ["gain_%_of_phys_as_extra_chaos_per_elder_item_equipped"]=6818, - ["gain_%_of_two_hand_weapon_physical_damage_as_added_spell_damage"]=6720, - ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6819, - ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6826, - ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6721, - ["gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=6722, - ["gain_20%_chance_to_explode_enemies_for_100%_life_on_kill_for_X_seconds_every_10_seconds"]=6767, - ["gain_X%_armour_per_50_mana_reserved"]=6723, - ["gain_X_endurance_charges_per_second"]=6724, - ["gain_X_energy_shield_on_killing_shocked_enemy"]=2596, - ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6725, - ["gain_X_frenzy_charges_after_spending_200_mana"]=6726, - ["gain_X_frenzy_charges_per_second"]=6727, - ["gain_X_life_on_stun"]=6728, - ["gain_X_power_charges_on_using_a_warcry"]=6729, - ["gain_X_power_charges_per_second"]=6730, - ["gain_X_random_charges_every_6_seconds"]=6731, - ["gain_X_random_rare_monster_mods_on_kill"]=3083, - ["gain_X_vaal_souls_on_rampage_threshold"]=2981, - ["gain_a_endurance_charge_every_X_seconds_while_stationary"]=6732, - ["gain_a_frenzy_charge_every_X_seconds_while_moving"]=6733, - ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=4159, - ["gain_absorption_charges_instead_of_power_charges"]=6734, - ["gain_accuracy_rating_equal_to_2_times_strength"]=6735, - ["gain_accuracy_rating_equal_to_intelligence"]=6736, - ["gain_accuracy_rating_equal_to_strength"]=6737, - ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6738, - ["gain_adrenaline_for_X_seconds_on_kill"]=6739, - ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6740, - ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6741, - ["gain_adrenaline_on_gaining_flame_touched"]=6742, - ["gain_adrenaline_when_ward_breaks_ms"]=6743, - ["gain_affliction_charges_instead_of_frenzy_charges"]=6744, - ["gain_alchemists_genius_on_flask_use_%"]=6745, - ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6746, - ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6747, - ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6748, - ["gain_arcane_surge_on_200_life_spent"]=6749, - ["gain_arcane_surge_on_crit_%_chance"]=6750, - ["gain_arcane_surge_on_hit_%_chance"]=6753, - ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6751, - ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6752, - ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6754, - ["gain_arcane_surge_on_kill_chance_%"]=6755, - ["gain_arcane_surge_on_movement_skill_use"]=4463, - ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6756, - ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6757, - ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6758, - ["gain_arcane_surge_when_you_summon_a_totem"]=6759, - ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6760, - ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=4077, - ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6761, - ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3471, - ["gain_blitz_charge_%_chance_on_crit"]=6762, - ["gain_brutal_charges_instead_of_endurance_charges"]=6763, - ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3829, - ["gain_celestial_charge_per_X_spent_es"]=6764, - ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6765, - ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6766, - ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=10732, - ["gain_convergence_on_hitting_unique_enemy"]=4467, - ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=10857, - ["gain_crimson_dance_while_you_have_cat_stealth"]=10858, - ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6768, - ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3470, - ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=10733, - ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=4308, - ["gain_divine_charge_on_hit_%"]=4412, - ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=4414, - ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=4082, - ["gain_elemental_conflux_if_6_unique_influence_amoung_equipped_non_amulet_items"]=4083, - ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=4125, - ["gain_elusive_on_crit_%_chance"]=4305, - ["gain_elusive_on_kill_chance_%"]=4306, - ["gain_elusive_on_reaching_low_life"]=6769, - ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1845, - ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6773, - ["gain_endurance_charge_%_when_hit_while_channelling"]=6774, - ["gain_endurance_charge_if_attack_freezes"]=6770, - ["gain_endurance_charge_on_main_hand_kill_%"]=3348, - ["gain_endurance_charge_on_melee_stun"]=2793, - ["gain_endurance_charge_on_melee_stun_%"]=2793, - ["gain_endurance_charge_on_power_charge_expiry"]=2660, - ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6771, - ["gain_endurance_charge_per_second_if_have_been_hit_recently_if_4_warlord_items"]=4499, - ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6772, - ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6775, - ["gain_flask_chance_on_crit_%"]=3415, - ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6776, - ["gain_flask_charge_when_crit_%"]=2086, - ["gain_flask_charge_when_crit_amount"]=2086, - ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6777, - ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6778, - ["gain_frenzy_and_power_charge_on_kill_%"]=2659, - ["gain_frenzy_charge_%_when_hit_while_channelling"]=6789, - ["gain_frenzy_charge_if_attack_ignites"]=2861, - ["gain_frenzy_charge_on_critical_strike_%"]=6780, - ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6779, - ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6781, - ["gain_frenzy_charge_on_hit_%_while_blinded"]=6782, - ["gain_frenzy_charge_on_hit_while_bleeding"]=6783, - ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6784, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6785, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6786, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6787, - ["gain_frenzy_charge_on_main_hand_kill_%"]=3347, - ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3629, - ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6788, - ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6790, - ["gain_her_blessing_for_3_seconds_on_ignite_%"]=3302, - ["gain_her_embrace_for_x_ms_on_enemy_ignited"]=6791, - ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=10859, - ["gain_iron_reflexes_while_stationary"]=10865, - ["gain_life_and_mana_leech_on_kill_permyriad"]=3248, - ["gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit"]=3469, - ["gain_life_leech_on_kill_permyriad"]=4281, - ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=4201, - ["gain_life_regeneration_per_minute_%_for_1_second_every_4_seconds_if_2_hunter_items"]=4475, - ["gain_magic_monster_mods_on_kill_%_chance"]=6792, - ["gain_max_rage_on_losing_temporal_chains_debuff"]=6793, - ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6794, - ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=4263, - ["gain_maximum_endurance_charges_when_crit_chance_%"]=6795, - ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6796, - ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6797, - ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6798, - ["gain_maximum_life_instead_of_maximum_es_from_armour"]=6799, - ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6800, - ["gain_maximum_power_charges_on_vaal_skill_use"]=6801, - ["gain_mind_over_matter_while_at_maximum_power_charges"]=10860, - ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6802, - ["gain_no_armour_from_body_armour"]=3362, - ["gain_no_inherent_bonus_from_dexterity"]=2039, - ["gain_no_inherent_bonus_from_intelligence"]=2040, - ["gain_no_inherent_bonus_from_strength"]=2041, - ["gain_no_inherent_evasion_rating_+%_from_dexterity"]=6803, - ["gain_no_maximum_life_from_strength"]=2042, - ["gain_no_maximum_mana_from_intelligence"]=2043, - ["gain_onslaught_during_life_flask_effect"]=6804, - ["gain_onslaught_during_soul_gain_prevention"]=6805, - ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6806, - ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=4235, - ["gain_onslaught_if_you_have_swapped_stance_recently"]=6807, - ["gain_onslaught_ms_on_using_a_warcry"]=6808, - ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2777, - ["gain_onslaught_on_200_mana_spent"]=6809, - ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6810, - ["gain_onslaught_on_hit_duration_ms"]=6811, - ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6812, - ["gain_onslaught_on_stun_duration_ms"]=2774, - ["gain_onslaught_when_ignited_ms"]=3065, - ["gain_onslaught_while_at_maximum_endurance_charges"]=6813, - ["gain_onslaught_while_frenzy_charges_full"]=4104, - ["gain_onslaught_while_not_on_low_mana"]=6814, - ["gain_onslaught_while_on_low_life"]=6815, - ["gain_onslaught_while_you_have_cats_agility"]=6816, - ["gain_onslaught_while_you_have_fortify"]=6817, - ["gain_perfect_agony_if_you_have_crit_recently"]=6820, - ["gain_permilliage_total_phys_damage_prevented_recently_as_es_regen_per_sec_if_6_crusader_items"]=4514, - ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2528, - ["gain_phasing_if_enemy_killed_recently"]=6821, - ["gain_phasing_if_suppressed_spell_recently"]=6822, - ["gain_phasing_while_affected_by_haste"]=6823, - ["gain_phasing_while_at_maximum_frenzy_charges"]=2526, - ["gain_phasing_while_you_have_cats_stealth"]=6824, - ["gain_phasing_while_you_have_low_life"]=6825, - ["gain_phasing_while_you_have_onslaught"]=2527, - ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2980, - ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=10877, - ["gain_power_charge_for_each_second_channeling_spell"]=6827, - ["gain_power_charge_on_critical_strike_with_wands_%"]=6828, - ["gain_power_charge_on_curse_cast_%"]=6829, - ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6830, - ["gain_power_charge_on_hit_while_bleeding"]=6831, - ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6832, - ["gain_power_charge_on_mana_flask_use_%_chance"]=6833, - ["gain_power_charge_on_non_critical_strike_%"]=3429, - ["gain_power_charge_on_vaal_skill_use_%"]=6834, - ["gain_power_charge_per_enemy_you_crit"]=2571, - ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6835, - ["gain_power_charge_when_throwing_trap_%"]=2962, - ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6836, - ["gain_rage_on_hit"]=9817, - ["gain_rage_on_hitting_rare_unique_enemy_%"]=9814, - ["gain_rage_on_kill"]=9813, - ["gain_rage_when_you_use_a_warcry"]=9815, - ["gain_rampage_while_at_maximum_endurance_charges"]=3292, - ["gain_random_charge_on_block"]=6837, - ["gain_random_charge_per_second_while_stationary"]=6838, - ["gain_random_retaliation_requirement_on_retaliation_used_chance_%"]=6839, - ["gain_rare_monster_mods_on_kill_ms"]=2841, - ["gain_resolute_technique_while_do_not_have_elemental_overload"]=10866, - ["gain_sacrificial_zeal_on_skill_use_%_cost_as_damage_per_minute"]=6840, - ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6841, - ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6842, - ["gain_shrine_buff_every_x_ms"]=6843, - ["gain_shrine_buff_every_x_ms_from_ascendancy"]=6844, - ["gain_shrine_buff_on_rare_or_unique_kill_centiseconds"]=6845, - ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6846, - ["gain_siphoning_charge_on_skill_use_%_chance"]=4360, - ["gain_soul_eater_during_flask_effect"]=3451, - ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6847, - ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6848, - ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=3138, - ["gain_spell_cost_as_energy_shield_every_fifth_cast"]=6849, - ["gain_spell_cost_as_mana_every_fifth_cast"]=6850, - ["gain_spirit_charge_every_x_ms"]=4406, - ["gain_spirit_charge_on_kill_%_chance"]=4407, - ["gain_unholy_might_for_2_seconds_on_crit"]=2940, - ["gain_unholy_might_for_2_seconds_on_melee_crit"]=2939, - ["gain_unholy_might_for_4_seconds_on_crit"]=2941, - ["gain_unholy_might_on_rampage_threshold_ms"]=2999, - ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6851, - ["gain_vaal_pact_if_you_have_crit_recently"]=6852, - ["gain_vaal_pact_while_at_maximum_endurance_charges"]=10861, - ["gain_vaal_pact_while_focused"]=6853, - ["gain_vaal_soul_on_hit_cooldown_ms"]=6854, - ["gain_wand_accuracy_rating_equal_to_intelligence"]=6855, - ["gain_x_blood_phylactery_per_20_life_spent_on_upfront_cost_of_spells"]=6856, - ["gain_x_endurance_charge_when_ward_breaks"]=6857, - ["gain_x_es_on_trap_triggered_by_an_enemy"]=4268, - ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6858, - ["gain_x_fragile_regrowth_per_second"]=6859, - ["gain_x_frenzy_charge_when_ward_breaks"]=6860, - ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=4448, - ["gain_x_life_on_trap_triggered_by_an_enemy"]=4267, - ["gain_x_life_when_endurance_charge_expires_or_consumed"]=3038, - ["gain_x_power_charge_when_ward_breaks"]=6861, - ["gain_x_rage_on_attack_crit"]=6862, - ["gain_x_rage_on_attack_hit"]=6863, - ["gain_x_rage_on_bow_hit"]=6864, - ["gain_x_rage_on_hit_with_axes"]=6865, - ["gain_x_rage_on_hit_with_axes_swords"]=6866, - ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6867, - ["gain_x_rage_on_melee_crit"]=6868, - ["gain_x_rage_on_melee_hit"]=6869, - ["gain_x_rage_per_200_mana_spent"]=6870, - ["gain_x_rage_when_hit"]=6871, - ["gain_x_rage_when_you_use_a_life_flask"]=6872, - ["gain_x_ward_per_10_armour_on_helmet"]=6873, - ["gain_x_ward_per_10_energy_shield_on_boots"]=6874, - ["gain_x_ward_per_10_evasion_on_gloves"]=6875, - ["galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined"]=6876, - ["galvanic_arrow_area_damage_+%"]=10052, - ["galvanic_arrow_projectile_speed_+%"]=6877, - ["galvanic_field_beam_frequency_+%"]=6878, - ["galvanic_field_cast_speed_+%"]=6879, - ["galvanic_field_damage_+%"]=6880, - ["galvanic_field_number_of_chains"]=6881, - ["gem_display_rune_blast_is_gem"]=9972, - ["gem_experience_gain_+%"]=1903, - ["generals_cry_cooldown_speed_+%"]=6882, - ["generals_cry_maximum_warriors_+"]=6883, - ["ghost_dance_max_stacks"]=6884, - ["ghost_dance_restore_%_evasion_as_energy_shield_when_hit"]=6885, - ["ghost_totem_skill_damage_+%_final"]=6886, - ["glacial_cascade_damage_+%"]=3705, - ["glacial_cascade_number_of_additional_bursts"]=6887, - ["glacial_cascade_physical_damage_%_to_add_as_cold"]=6888, - ["glacial_cascade_physical_damage_%_to_convert_to_cold"]=4003, - ["glacial_cascade_radius_+%"]=3851, - ["glacial_hammer_damage_+%"]=3659, - ["glacial_hammer_freeze_chance_%"]=3985, - ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=3254, - ["glacial_hammer_melee_splash_with_cold_damage"]=6889, - ["glacial_hammer_physical_damage_%_to_add_as_cold_damage"]=4004, - ["glacial_hammer_physical_damage_%_to_convert_to_cold"]=6890, - ["gladiator_accuracy_rating_+%_final_while_wielding_sword"]=4533, - ["gladiator_area_of_effect_+%_final_while_wielding_mace"]=4744, - ["gladiator_critical_strike_chance_+%_final_while_wielding_dagger"]=6891, - ["gladiator_damage_+%_final_against_enemies_on_low_life_while_wielding_axe"]=6895, - ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_2_seconds_in_your_presence_up_to_50%"]=6892, - ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_second_in_your_presence_up_to_100%"]=6893, - ["global_added_chaos_damage_%_of_ward"]=2092, - ["global_always_hit"]=2068, - ["global_attack_speed_+%_per_green_socket_on_item"]=2745, - ["global_attack_speed_+%_per_level"]=6896, - ["global_bleed_on_hit"]=2513, - ["global_cannot_crit"]=2202, - ["global_chance_to_blind_on_hit_%"]=2982, - ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6897, - ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6898, - ["global_critical_strike_chance_+%_while_holding_bow"]=2498, - ["global_critical_strike_chance_+%_while_holding_staff"]=2496, - ["global_critical_strike_chance_while_dual_wielding_+%"]=4289, - ["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=2746, - ["global_critical_strike_multiplier_+_while_holding_bow"]=2499, - ["global_critical_strike_multiplier_+_while_holding_staff"]=2497, - ["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=2079, - ["global_critical_strike_multiplier_while_dual_wielding_+"]=4288, - ["global_defences_+%"]=2857, - ["global_defences_+%_if_no_defence_modifiers_on_equipment_except_body_armour"]=6899, - ["global_defences_+%_per_active_minion"]=6900, - ["global_defences_+%_per_active_minion_not_from_vaal_skills"]=2858, - ["global_defences_+%_per_frenzy_charge"]=6902, - ["global_defences_+%_per_raised_spectre"]=6901, - ["global_defences_+%_per_white_socket_on_item"]=2755, - ["global_evasion_rating_+_while_moving"]=6903, - ["global_graft_skill_cooldown_speed_+%"]=6904, - ["global_graft_skill_duration_+%"]=6905, - ["global_graft_skill_level_+"]=6906, - ["global_hit_causes_monster_flee_%"]=2066, - ["global_item_attribute_requirements_+%"]=2576, - ["global_knockback"]=1544, - ["global_knockback_on_crit"]=1975, - ["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=2741, - ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2751, - ["global_maximum_added_chaos_damage"]=1410, - ["global_maximum_added_cold_damage"]=1392, - ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6908, - ["global_maximum_added_fire_damage"]=1383, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=10346, - ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6909, - ["global_maximum_added_lightning_damage"]=1403, - ["global_maximum_added_lightning_damage_minus_1_per_level"]=6907, - ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6910, - ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6911, - ["global_maximum_added_physical_damage"]=1289, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6912, - ["global_melee_range_+_per_white_socket_on_item"]=2756, - ["global_minimum_added_chaos_damage"]=1410, - ["global_minimum_added_cold_damage"]=1392, - ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6908, - ["global_minimum_added_fire_damage"]=1383, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=10346, - ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6909, - ["global_minimum_added_lightning_damage"]=1403, - ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6910, - ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6911, - ["global_minimum_added_physical_damage"]=1289, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6912, - ["global_physical_damage_reduction_rating_while_moving"]=6913, - ["global_poison_on_hit"]=3196, - ["global_reduce_enemy_block_%"]=1930, - ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2742, - ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6914, - ["gloves_freeze_proliferation_radius"]=2245, - ["gloves_ignite_proliferation_radius"]=2242, - ["gloves_mod_effect_+%"]=6915, - ["gloves_shock_proliferation_radius"]=2246, - ["glows_in_area_with_unique_fish"]=4152, - ["goat_footprints_from_item"]=10882, - ["golem_attack_and_cast_speed_+%"]=6916, - ["golem_attack_maximum_added_physical_damage"]=6917, - ["golem_attack_minimum_added_physical_damage"]=6917, - ["golem_buff_effect_+%"]=6918, - ["golem_buff_effect_+%_per_summoned_golem"]=6919, - ["golem_cooldown_recovery_+%"]=3355, - ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3723, - ["golem_damage_+%_per_active_golem"]=4224, - ["golem_damage_+%_per_active_golem_type"]=4223, - ["golem_immunity_to_elemental_damage"]=4117, - ["golem_life_regeneration_per_minute_%"]=6920, - ["golem_maximum_energy_shield_+%"]=6921, - ["golem_maximum_life_+%"]=6922, - ["golem_maximum_mana_+%"]=6923, - ["golem_movement_speed_+%"]=6924, - ["golem_physical_damage_reduction_rating"]=6925, - ["golem_scale_+%"]=3716, - ["golem_skill_cooldown_recovery_+%"]=3354, - ["golems_larger_aggro_radius"]=10784, - ["grace_aura_effect_+%"]=3387, - ["grace_aura_effect_+%_while_at_minimum_frenzy_charges"]=6926, - ["grace_mana_reservation_+%"]=4067, - ["grace_mana_reservation_efficiency_+%"]=6928, - ["grace_mana_reservation_efficiency_-2%_per_1"]=6927, - ["grace_reserves_no_mana"]=6929, - ["graft_slot_2_unlocked"]=6930, - ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2923, - ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6931, - ["grant_map_boss_X_azmeri_dust_primal_on_death"]=6932, - ["grant_map_boss_X_azmeri_dust_voodoo_on_death"]=6933, - ["grant_map_boss_X_azmeri_dust_warden_on_death"]=6934, - ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6935, - ["grant_void_arrow_every_x_ms"]=6936, - ["grasping_vines_on_hit_while_life_flask_active_up_to_x"]=6937, - ["gratuitous_violence_physical_damage_over_time_+%_final"]=6938, - ["ground_slam_and_sunder_poison_on_non_poisoned_enemies_damage_+%"]=6939, - ["ground_slam_angle_+%"]=3282, - ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6940, - ["ground_slam_damage_+%"]=3660, - ["ground_slam_radius_+%"]=3831, - ["ground_smoke_on_rampage_threshold_ms"]=2991, - ["ground_smoke_when_hit_%"]=2600, - ["ground_tar_on_block_base_area_of_effect_radius"]=6941, - ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2535, - ["ground_tar_when_hit_%_chance"]=6942, - ["guard_buff_take_damage_from_linked_target"]=6943, - ["guard_skill_cooldown_recovery_+%"]=6944, - ["guard_skill_effect_duration_+%"]=6945, - ["guardian_auras_grant_life_regeneration_per_minute_%"]=3804, - ["guardian_damage_+%_final_to_you_and_nearby_allies_per_nearby_ally_up_to_15%"]=6946, - ["guardian_every_4_seconds_remove_curses_on_you"]=6947, - ["guardian_every_4_seconds_remove_elemental_ailments_on_you"]=6948, - ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3810, - ["guardian_nearby_allies_share_charges"]=4141, - ["guardian_nearby_enemies_cannot_gain_charges"]=3805, - ["guardian_remove_curses_and_status_ailments_every_10_seconds"]=3809, - ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3806, - ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3808, - ["guardian_reserved_mana_granted_to_you_and_allies_as_armour_%"]=3807, - ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=3338, - ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6949, - ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6950, - ["half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped"]=3137, - ["hallowing_flame_magnitude_+%"]=6951, - ["hallowing_flame_magnitude_+%_per_2%_attack_block_chance"]=6952, - ["hard_mode_utility_flask_gain_charges_while_active"]=6953, - ["harvest_encounter_fluid_granted_+%"]=6954, - ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6955, - ["has_curse_limit_equal_to_maximum_power_charges"]=6956, - ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6957, - ["has_onslaught_if_totem_summoned_recently"]=6958, - ["has_stun_prevention_flask"]=6959, - ["has_unique_brutal_shrine_effect"]=6960, - ["has_unique_massive_shrine_effect"]=6961, - ["haste_aura_effect_+%"]=3388, - ["haste_mana_reservation_+%"]=4068, - ["haste_mana_reservation_efficiency_+%"]=6963, - ["haste_mana_reservation_efficiency_-2%_per_1"]=6962, - ["haste_reserves_no_mana"]=6964, - ["hatred_aura_effect_+%"]=3390, - ["hatred_aura_effect_+%_while_at_maximum_frenzy_charges"]=6965, - ["hatred_mana_reservation_+%"]=4058, - ["hatred_mana_reservation_efficiency_+%"]=6967, - ["hatred_mana_reservation_efficiency_-2%_per_1"]=6966, - ["hatred_reserves_no_mana"]=6968, - ["heavy_strike_attack_speed_+%"]=3879, - ["heavy_strike_chance_to_deal_double_damage_%"]=3258, - ["heavy_strike_damage_+%"]=3661, - ["heist_additional_abyss_rewards_from_reward_chests_%"]=6969, - ["heist_additional_armour_rewards_from_reward_chests_%"]=6970, - ["heist_additional_blight_rewards_from_reward_chests_%"]=6971, - ["heist_additional_breach_rewards_from_reward_chests_%"]=6972, - ["heist_additional_corrupted_rewards_from_reward_chests_%"]=6973, - ["heist_additional_delirium_rewards_from_reward_chests_%"]=6974, - ["heist_additional_delve_rewards_from_reward_chests_%"]=6975, - ["heist_additional_divination_rewards_from_reward_chests_%"]=6976, - ["heist_additional_essences_rewards_from_reward_chests_%"]=6977, - ["heist_additional_gems_rewards_from_reward_chests_%"]=6978, - ["heist_additional_gold_rewards_from_reward_chests_%"]=6979, - ["heist_additional_harbinger_rewards_from_reward_chests_%"]=6980, - ["heist_additional_jewellery_rewards_from_reward_chests_%"]=6981, - ["heist_additional_legion_rewards_from_reward_chests_%"]=6982, - ["heist_additional_metamorph_rewards_from_reward_chests_%"]=6983, - ["heist_additional_perandus_rewards_from_reward_chests_%"]=6984, - ["heist_additional_talisman_rewards_from_reward_chests_%"]=6985, - ["heist_additional_uniques_rewards_from_reward_chests_%"]=6986, - ["heist_additional_weapons_rewards_from_reward_chests_%"]=6987, - ["heist_alert_level_gained_on_monster_death"]=6988, - ["heist_alert_level_gained_per_10_sec"]=6989, - ["heist_blueprint_reward_always_currency_or_scarab"]=6990, - ["heist_blueprint_reward_always_enchanted_equipment"]=6991, - ["heist_blueprint_reward_always_experimented"]=6992, - ["heist_blueprint_reward_always_trinket"]=6993, - ["heist_blueprint_reward_always_unique"]=6994, - ["heist_chests_chance_for_secondary_objectives_%"]=6995, - ["heist_chests_double_blighted_maps_and_catalysts_%"]=6996, - ["heist_chests_double_breach_splinters_%"]=6997, - ["heist_chests_double_catalysts_%"]=6998, - ["heist_chests_double_currency_%"]=6999, - ["heist_chests_double_delirium_orbs_and_splinters_%"]=7000, - ["heist_chests_double_divination_cards_%"]=7001, - ["heist_chests_double_essences_%"]=7002, - ["heist_chests_double_jewels_%"]=7003, - ["heist_chests_double_legion_splinters_%"]=7004, - ["heist_chests_double_map_fragments_%"]=7005, - ["heist_chests_double_maps_%"]=7006, - ["heist_chests_double_oils_%"]=7007, - ["heist_chests_double_scarabs_%"]=7008, - ["heist_chests_double_sextants_%"]=7009, - ["heist_chests_double_uniques_%"]=7010, - ["heist_chests_unique_rarity_%"]=7011, - ["heist_coins_dropped_by_monsters_double_%"]=7013, + ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=6320, + ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=6321, + ["display_legion_uber_fragment_improved_rewards_+%"]=6322, + ["display_link_stuff"]=7610, + ["display_mana_cost_reduction_%"]=1996, + ["display_map_augmentable_boss"]=6323, + ["display_map_boss_gives_experience_+%"]=2899, + ["display_map_contains_grandmasters"]=3071, + ["display_map_final_boss_drops_higher_level_gear"]=2898, + ["display_map_has_oxygen"]=3048, + ["display_map_inhabited_by_lunaris_fanatics"]=6324, + ["display_map_inhabited_by_solaris_fanatics"]=6325, + ["display_map_inhabited_by_wild_beasts"]=2378, + ["display_map_labyrinth_chests_fortune"]=6326, + ["display_map_labyrinth_enchant_belts"]=6327, + ["display_map_large_chest"]=2592, + ["display_map_larger_maze"]=2591, + ["display_map_mission_id"]=120, + ["display_map_no_monsters"]=2484, + ["display_map_restless_dead"]=2590, + ["display_memory_line_abyss_beyond_monsters_from_cracks"]=6328, + ["display_memory_line_ambush_contains_standalone_map_boss"]=6329, + ["display_memory_line_ambush_strongbox_chain"]=6330, + ["display_memory_line_anarchy_rogue_exiles_equipped_with_unique_items"]=6331, + ["display_memory_line_anarchy_rogue_exiles_in_packs"]=6332, + ["display_memory_line_bestiary_capturable_harvest_monsters"]=6333, + ["display_memory_line_bestiary_great_migration"]=6334, + ["display_memory_line_betrayal_constant_interventions"]=6335, + ["display_memory_line_breach_area_is_breached"]=6336, + ["display_memory_line_breach_miniature_flash_breaches"]=6337, + ["display_memory_line_domination_multiple_modded_shrines"]=6338, + ["display_memory_line_domination_shrines_to_pantheon_gods"]=6339, + ["display_memory_line_essence_multiple_rare_monsters"]=6340, + ["display_memory_line_essence_rogue_exiles"]=6341, + ["display_memory_line_harbinger_player_is_a_harbinger"]=6342, + ["display_memory_line_harbinger_portals_everywhere"]=6343, + ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=6344, + ["display_memory_line_incursion_reverse"]=6345, + ["display_memory_line_torment_player_is_possessed"]=6346, + ["display_memory_line_torment_rares_uniques_are_possessed"]=6347, + ["display_minion_maximum_life"]=1997, + ["display_monster_has_acceleration_shrine"]=6348, + ["display_monster_has_adrenaline"]=6349, + ["display_monster_has_cannot_recover_life_aura"]=6350, + ["display_monster_has_chilled_ground_trail_daemon"]=669, + ["display_monster_has_flask_gain_aura"]=6351, + ["display_monster_has_hinder_daemon"]=6352, + ["display_monster_has_lightning_thorns_daemon"]=6353, + ["display_monster_has_periodic_freeze_daemon"]=6354, + ["display_monster_has_proximity_shield_daemon"]=670, + ["display_monster_has_righteous_fire_daemon"]=6355, + ["display_monster_has_shroud_walker_daemon"]=6356, + ["display_monster_has_tailwind_aura"]=6357, + ["display_monster_no_drops"]=6358, + ["display_passives_in_large_radius_of_non_unique_jewels_grant_additional_strength"]=6359, + ["display_reave_base_maximum_stacks"]=6360, + ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=559, + ["display_stat_uber_barrels"]=8427, + ["display_strongbox_drops_additional_shaper_or_elder_cards"]=6361, + ["display_tattoo_grants_random_ascendancy_notable_of_class"]=6362, + ["display_tattoo_grants_random_keystone"]=6363, + ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=809, + ["display_violent_pace_skill_level"]=6364, + ["divination_buff_on_flask_used_duration_cs"]=946, + ["divine_tempest_beam_width_+%"]=6365, + ["divine_tempest_damage_+%"]=6366, + ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=6367, + ["do_not_chain"]=1834, + ["doedre_aura_damage_+%_final"]=6368, + ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=3059, + ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=3062, + ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=3061, + ["dominance_defences_+%_on_nearby_allies_per_100_strength"]=3060, + ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=6369, + ["dominating_blow_duration_+%"]=3958, + ["dominating_blow_minion_damage_+%"]=3761, + ["dominating_blow_skill_attack_damage_+%"]=3762, + ["dot_multiplier_+"]=1289, + ["dot_multiplier_+_if_crit_in_past_8_seconds"]=6370, + ["dot_multiplier_+_while_affected_by_malevolence"]=6371, + ["dot_multiplier_+_with_bow_skills"]=6372, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=6373, + ["double_animate_weapons_limit"]=6374, + ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=6376, + ["double_damage_chance_%_if_below_100_strength"]=6375, + ["double_slash_critical_strike_chance_+%"]=4207, + ["double_slash_damage_+%"]=4200, + ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=6377, + ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=6377, + ["double_slash_radius_+%"]=4209, + ["double_strike_attack_speed_+%"]=3913, + ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=6378, + ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=3292, + ["double_strike_critical_strike_chance_+%"]=3996, + ["double_strike_damage_+%"]=3690, + ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=6379, + ["dread_banner_aura_effect_+%"]=6380, + ["dread_banner_mana_reservation_efficiency_+%"]=6381, + ["dropped_items_are_converted_to_divination_cards"]=6382, + ["dropped_items_are_converted_to_maps"]=6383, + ["dropped_items_are_converted_to_scarabs_based_on_rarity"]=6384, + ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=6385, + ["dual_strike_attack_speed_+%"]=3914, + ["dual_strike_attack_speed_+%_while_wielding_claw"]=6386, + ["dual_strike_critical_strike_chance_+%"]=3997, + ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=6387, + ["dual_strike_damage_+%"]=3691, + ["dual_strike_intimidate_on_hit_while_wielding_axe"]=6388, + ["dual_strike_main_hand_deals_double_damage_%"]=6389, + ["dual_strike_melee_splash_while_wielding_mace"]=6390, + ["dual_strike_melee_splash_with_off_hand_weapon"]=6391, + ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=6392, + ["dual_wield_inherent_bonuses_are_doubled"]=6393, + ["dual_wield_or_shield_block_%"]=1212, + ["duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final"]=6394, + ["duration_of_ailments_on_self_+%_per_fortification"]=6395, + ["earthquake_and_earthshatter_shatter_on_killing_blow"]=6396, + ["earthquake_damage_+%"]=3793, + ["earthquake_damage_+%_per_100ms_duration"]=6397, + ["earthquake_duration_+%"]=3986, + ["earthquake_radius_+%"]=3904, + ["earthshatter_area_of_effect_+%"]=6398, + ["earthshatter_damage_+%"]=6399, + ["eat_soul_after_hex_90%_curse_expire"]=6400, + ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=6401, + ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=6402, + ["elemental_ailments_on_you_proliferate_to_nearby_enemies_within_x_radius"]=6403, + ["elemental_ailments_reflected_to_self"]=6404, + ["elemental_critical_strike_chance_+%"]=1531, + ["elemental_critical_strike_multiplier_+"]=1557, + ["elemental_damage_%_taken_as_chaos_if_4_hunter_items"]=4536, + ["elemental_damage_%_to_add_as_chaos"]=1989, + ["elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped"]=4396, + ["elemental_damage_+%"]=2027, + ["elemental_damage_+%_during_flask_effect"]=4285, + ["elemental_damage_+%_final_per_righteous_charge"]=6409, + ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=6410, + ["elemental_damage_+%_if_enemy_chilled_recently"]=6411, + ["elemental_damage_+%_if_enemy_ignited_recently"]=6412, + ["elemental_damage_+%_if_enemy_shocked_recently"]=6413, + ["elemental_damage_+%_if_have_crit_recently"]=6414, + ["elemental_damage_+%_if_used_a_warcry_recently"]=6415, + ["elemental_damage_+%_per_10_devotion"]=6416, + ["elemental_damage_+%_per_10_dexterity"]=6417, + ["elemental_damage_+%_per_12_int"]=6418, + ["elemental_damage_+%_per_12_strength"]=6419, + ["elemental_damage_+%_per_different_enemy_elemental_ailment"]=6405, + ["elemental_damage_+%_per_divine_charge"]=4451, + ["elemental_damage_+%_per_frenzy_charge"]=2185, + ["elemental_damage_+%_per_level"]=3034, + ["elemental_damage_+%_per_lightning_cold_fire_resistance_above_75"]=6406, + ["elemental_damage_+%_per_missing_lightning_cold_fire_resistance"]=6407, + ["elemental_damage_+%_per_power_charge"]=6420, + ["elemental_damage_+%_per_sextant_affecting_area"]=6421, + ["elemental_damage_+%_per_stackable_unique_jewel"]=4220, + ["elemental_damage_+%_while_affected_by_a_herald"]=6422, + ["elemental_damage_+%_while_in_area_affected_by_sextant"]=6423, + ["elemental_damage_additional_rolls_lucky_shocked"]=6408, + ["elemental_damage_can_shock"]=2931, + ["elemental_damage_reduction_%_per_endurance_charge"]=2322, + ["elemental_damage_resistance_+%"]=6424, + ["elemental_damage_resisted_by_lowest_elemental_resistance"]=6425, + ["elemental_damage_taken_%_as_chaos"]=2502, + ["elemental_damage_taken_+%"]=3353, + ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=3381, + ["elemental_damage_taken_+%_during_flask_effect"]=4144, + ["elemental_damage_taken_+%_final_per_raised_zombie"]=6426, + ["elemental_damage_taken_+%_if_been_hit_recently"]=6428, + ["elemental_damage_taken_+%_if_not_hit_recently"]=6429, + ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=6430, + ["elemental_damage_taken_+%_per_endurance_charge"]=6431, + ["elemental_damage_taken_+%_while_on_consecrated_ground"]=4115, + ["elemental_damage_taken_+%_while_stationary"]=6432, + ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=6427, + ["elemental_damage_with_attack_skills_+%"]=6433, + ["elemental_damage_with_attack_skills_+%_per_power_charge"]=6434, + ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2815, + ["elemental_equilibrium_effect_+%"]=2242, + ["elemental_golem_granted_buff_effect_+%"]=4155, + ["elemental_golem_immunity_to_elemental_damage"]=4152, + ["elemental_golems_maximum_life_is_doubled"]=6435, + ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=6436, + ["elemental_hit_attack_speed_+%"]=3921, + ["elemental_hit_cannot_roll_cold_damage"]=6437, + ["elemental_hit_cannot_roll_fire_damage"]=6438, + ["elemental_hit_cannot_roll_lightning_damage"]=6439, + ["elemental_hit_chance_to_freeze_shock_ignite_%"]=4038, + ["elemental_hit_damage_+%"]=3735, + ["elemental_hit_damage_taken_%_as_physical"]=6440, + ["elemental_hit_deals_50%_less_cold_damage"]=6441, + ["elemental_hit_deals_50%_less_fire_damage"]=6442, + ["elemental_hit_deals_50%_less_lightning_damage"]=6443, + ["elemental_overload_rotation_active"]=11031, + ["elemental_penetration_%_during_flask_effect"]=4327, + ["elemental_penetration_%_if_you_have_a_power_charge"]=6444, + ["elemental_penetration_%_while_chilled"]=6445, + ["elemental_reflect_damage_taken_+%"]=2760, + ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=6446, + ["elemental_resistance_%_per_10_devotion"]=6451, + ["elemental_resistance_%_per_empty_white_socket"]=4498, + ["elemental_resistance_%_per_minion_up_to_30%"]=6447, + ["elemental_resistance_%_per_stackable_unique_jewel"]=4221, + ["elemental_resistance_%_when_on_low_life"]=1669, + ["elemental_resistance_%_while_no_gems_in_helmet"]=6448, + ["elemental_resistance_+%_per_15_ascendance"]=1235, + ["elemental_resistance_cannot_be_lowered_by_curses"]=6449, + ["elemental_resistance_cannot_be_penetrated"]=6450, + ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=4130, + ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=6452, + ["elemental_skill_chance_to_blind_nearby_enemies_%"]=6453, + ["elemental_skills_deal_triple_damage"]=6454, + ["elemental_status_effect_aura_radius"]=2264, + ["elemental_weakness_curse_effect_+%"]=4071, + ["elemental_weakness_duration_+%"]=3976, + ["elemental_weakness_ignores_hexproof"]=2653, + ["elemental_weakness_no_reservation"]=6455, + ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3681, + ["elementalist_area_of_effect_+%_for_5_seconds"]=6456, + ["elementalist_chill_maximum_magnitude_override"]=6457, + ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3677, + ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3674, + ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3676, + ["elementalist_elemental_damage_+%_for_5_seconds"]=6458, + ["elementalist_elemental_status_effect_aura_radius"]=3682, + ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3679, + ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=6459, + ["elementalist_ignite_damage_+%_final"]=6460, + ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3678, + ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=4300, + ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3680, + ["elusive_effect_+%"]=6461, + ["elusive_effect_on_self_+%_per_power_charge"]=4455, + ["elusive_has_50%_chance_to_be_removed_and_reapplied_at_%_elusive_effect"]=6462, + ["elusive_loss_rate_+%"]=6463, + ["elusive_minimum_effect_%"]=6464, + ["elusive_ticks_up_instead_for_x_ms"]=6465, + ["ember_projectile_spread_area_+%"]=6466, + ["emberglow_ignite_duration_+%_final"]=6467, + ["empowered_attack_damage_+%"]=6468, + ["empowered_attack_double_damage_%_chance"]=6469, + ["enable_ring_slot_3"]=6470, + ["enchantment_boots_added_cold_damage_when_hit_maximum"]=3299, + ["enchantment_boots_added_cold_damage_when_hit_minimum"]=3299, + ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=3298, + ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=3367, + ["enchantment_boots_life_leech_on_kill_permyriad"]=3301, + ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=3226, + ["enchantment_boots_mana_costs_when_hit_+%"]=3295, + ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=6471, + ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3369, + ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=3302, + ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=3300, + ["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3369, + ["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=3302, + ["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=3300, + ["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=3303, + ["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=3368, + ["enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"]=3304, + ["enchantment_boots_stun_avoid_%_on_kill"]=3296, + ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3611, + ["endurance_charge_duration_+%"]=2172, + ["endurance_charge_on_hit_%_vs_no_armour"]=6472, + ["endurance_charge_on_kill_%"]=2679, + ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=6473, + ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=6474, + ["endurance_charge_on_off_hand_kill_%"]=3509, + ["endurance_only_conduit"]=2307, + ["enduring_cry_buff_effect_+%"]=4170, + ["enduring_cry_cooldown_speed_+%"]=3947, + ["enduring_cry_grants_x_additional_endurance_charges"]=6475, + ["enemies_blinded_by_you_cannot_inflict_damaging_ailments"]=6476, + ["enemies_blinded_by_you_have_malediction"]=6477, + ["enemies_blinded_by_you_while_blinded_have_malediction"]=6478, + ["enemies_chaos_resistance_%_while_cursed"]=4120, + ["enemies_chill_as_unfrozen"]=1958, + ["enemies_chilled_by_bane_and_contagion"]=6479, + ["enemies_chilled_by_hits_deal_damage_lessened_by_chill_effect"]=6480, + ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=6481, + ["enemies_chilled_by_your_hits_are_shocked"]=6482, + ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=6483, + ["enemies_damage_taken_+%_while_cursed"]=3818, + ["enemies_explode_for_%_life_as_physical_damage"]=6484, + ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=6485, + ["enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance"]=6486, + ["enemies_explode_on_kill"]=6487, + ["enemies_explode_on_kill_while_unhinged"]=6488, + ["enemies_extra_damage_rolls_with_lightning_damage"]=6490, + ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=6491, + ["enemies_extra_damage_rolls_with_physical_damage"]=6489, + ["enemies_hitting_you_drop_burning_ground_%"]=6492, + ["enemies_hitting_you_drop_chilled_ground_%"]=6493, + ["enemies_hitting_you_drop_shocked_ground_%"]=6494, + ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=6495, + ["enemies_in_presence_and_you_count_as_moving_when_affected_by_elemental_ailments"]=6496, + ["enemies_killed_on_fungal_ground_explode_for_10%_chaos_damage_%_chance"]=6497, + ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=6498, + ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=6499, + ["enemies_near_link_skill_target_have_exposure"]=6500, + ["enemies_near_marked_enemy_are_blinded"]=6501, + ["enemies_pacified_by_you_take_+%_damage"]=6502, + ["enemies_poisoned_by_you_cannot_deal_critical_strikes"]=6503, + ["enemies_poisoned_by_you_cannot_regen_life"]=6504, + ["enemies_poisoned_by_you_chaos_resistance_+%"]=6505, + ["enemies_poisoned_by_you_have_physical_damage_%_converted_to_chaos"]=6506, + ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=6507, + ["enemies_shocked_by_your_hits_are_chilled"]=6508, + ["enemies_shocked_by_your_hits_are_debilitated"]=6509, + ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=6510, + ["enemies_taunted_by_you_cannot_evade_attacks"]=6511, + ["enemies_taunted_by_your_warcies_are_intimidated"]=6512, + ["enemies_taunted_by_your_warcries_are_unnerved"]=6513, + ["enemies_that_hit_you_inflict_temporal_chains"]=6514, + ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=6515, + ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=4460, + ["enemies_you_bleed_grant_flask_charges_+%"]=2543, + ["enemies_you_blind_have_critical_strike_chance_+%"]=6516, + ["enemies_you_curse_are_intimidated"]=6517, + ["enemies_you_curse_are_unnerved"]=6518, + ["enemies_you_curse_cannot_recharge_energy_shield"]=6519, + ["enemies_you_curse_have_15%_hinder"]=6520, + ["enemies_you_curse_have_malediction"]=3819, + ["enemies_you_expose_have_self_elemental_status_duration_+%"]=6521, + ["enemies_you_hinder_have_life_regeneration_rate_+%"]=6522, + ["enemies_you_ignite_take_chaos_damage_from_ignite_instead"]=6523, + ["enemies_you_ignite_wither_does_not_expire"]=6524, + ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=6525, + ["enemies_you_maim_have_damage_taken_over_time_+%"]=6526, + ["enemies_you_shock_cast_speed_+%"]=4349, + ["enemies_you_shock_movement_speed_+%"]=4350, + ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=6527, + ["enemies_you_wither_have_all_resistances_%"]=6528, + ["enemy_additional_critical_strike_chance_against_self"]=3189, + ["enemy_aggro_radius_+%"]=3201, + ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=3190, + ["enemy_evasion_+%_if_you_have_hit_them_recently"]=6529, + ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=6530, + ["enemy_extra_damage_rolls_when_on_full_life"]=6531, + ["enemy_extra_damage_rolls_when_on_low_life"]=2606, + ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=3175, + ["enemy_hits_%_chance_to_treat_elemental_resistances_as_90%"]=6532, + ["enemy_hits_roll_low_damage"]=2603, + ["enemy_knockback_direction_is_reversed"]=3075, + ["enemy_life_leech_from_any_damage_permyriad_while_focused"]=7488, + ["enemy_life_leech_from_chaos_damage_permyriad"]=1730, + ["enemy_life_leech_from_cold_damage_permyriad"]=1723, + ["enemy_life_leech_from_fire_damage_permyriad"]=1718, + ["enemy_life_leech_from_lightning_damage_permyriad"]=1727, + ["enemy_life_leech_from_physical_attack_damage_permyriad"]=1695, + ["enemy_life_leech_from_physical_damage_permyriad"]=1714, + ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=6533, + ["enemy_mana_leech_from_chaos_damage_permyriad"]=1762, + ["enemy_mana_leech_from_fire_damage_permyriad"]=1756, + ["enemy_mana_leech_from_lightning_damage_permyriad"]=1760, + ["enemy_mana_leech_from_physical_attack_damage_permyriad"]=1745, + ["enemy_mana_leech_from_physical_damage_permyriad"]=1754, + ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2687, + ["enemy_phys_reduction_%_penalty_vs_hit"]=3036, + ["enemy_physical_damage_%_as_extra_fire_vs_you"]=1978, + ["enemy_shock_on_kill"]=1959, + ["enemy_zero_elemental_resistance_when_hit"]=6534, + ["energy_shield_%_gained_on_block"]=2517, + ["energy_shield_%_of_armour_rating_gained_on_block"]=2518, + ["energy_shield_%_of_evasion_rating_gained_on_block"]=6535, + ["energy_shield_%_to_lose_on_block"]=2797, + ["energy_shield_+%_if_both_rings_have_evasion_mod"]=6536, + ["energy_shield_+%_per_10_strength"]=6554, + ["energy_shield_+%_per_power_charge"]=6555, + ["energy_shield_+%_while_you_have_broken_ward"]=6537, + ["energy_shield_+1%_per_X_strength_when_in_off_hand_from_foulborn_doon_cuebiyari"]=6538, + ["energy_shield_+_per_8_evasion_on_boots"]=6539, + ["energy_shield_additive_modifiers_instead_apply_to_ward"]=6540, + ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2697, + ["energy_shield_delay_-%"]=1608, + ["energy_shield_delay_-%_while_affected_by_discipline"]=6541, + ["energy_shield_delay_during_flask_effect_-%"]=3637, + ["energy_shield_from_gloves_and_boots_+%"]=6542, + ["energy_shield_from_helmet_+%"]=6543, + ["energy_shield_gain_per_target"]=1794, + ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=6544, + ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=6545, + ["energy_shield_gained_on_block"]=1806, + ["energy_shield_gained_on_enemy_death_per_level"]=3031, + ["energy_shield_increased_by_chaos_resistance"]=6546, + ["energy_shield_leech_does_not_stop_on_full_energy_shield"]=6547, + ["energy_shield_leech_from_any_damage_permyriad"]=1768, + ["energy_shield_leech_from_attacks_does_not_stop_on_full_energy_shield"]=6548, + ["energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=6549, + ["energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy"]=1770, + ["energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad"]=6550, + ["energy_shield_leech_permyriad_vs_frozen_enemies"]=6551, + ["energy_shield_leech_speed_+%"]=2206, + ["energy_shield_lost_per_minute_%"]=6552, + ["energy_shield_per_level"]=6553, + ["energy_shield_protects_mana"]=3174, + ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=6556, + ["energy_shield_recharge_apply_to_mana"]=6557, + ["energy_shield_recharge_not_delayed_by_damage"]=1609, + ["energy_shield_recharge_rate_+%"]=1611, + ["energy_shield_recharge_rate_+%_per_different_mastery"]=6558, + ["energy_shield_recharge_rate_during_flask_effect_+%"]=3639, + ["energy_shield_recharge_rate_per_minute_%"]=1610, + ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=4263, + ["energy_shield_recharge_start_when_stunned"]=6559, + ["energy_shield_recharges_on_block_%"]=3482, + ["energy_shield_recharges_on_kill_%"]=6560, + ["energy_shield_recharges_on_skill_use_chance_%"]=6561, + ["energy_shield_recharges_on_suppress_%"]=3483, + ["energy_shield_recovery_rate_+%"]=1614, + ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=6562, + ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=6563, + ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=6564, + ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=6565, + ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=6566, + ["energy_shield_regeneration_%_per_minute_while_shocked"]=3083, + ["energy_shield_regeneration_rate_+%"]=6574, + ["energy_shield_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=6567, + ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=6570, + ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=6571, + ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1848, + ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=6568, + ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=6569, + ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=6572, + ["energy_shield_regeneration_rate_per_second"]=6573, + ["enfeeble_curse_effect_+%"]=4072, + ["enfeeble_duration_+%"]=3975, + ["enfeeble_ignores_hexproof"]=2654, + ["enfeeble_no_reservation"]=6575, + ["ensnaring_arrow_area_of_effect_+%"]=6576, + ["ensnaring_arrow_debuff_effect_+%"]=6577, + ["envy_reserves_no_mana"]=6578, + ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=6579, + ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=4287, + ["es_regeneration_per_minute_%_while_stationary"]=6580, + ["essence_buff_ground_fire_damage_to_deal_per_second"]=4371, + ["essence_buff_ground_fire_duration_ms"]=4371, + ["essence_display_elemental_damage_taken_while_not_moving_+%"]=4374, + ["essence_drain_damage_+%"]=3787, + ["essence_drain_soulrend_base_projectile_speed_+%"]=6581, + ["essence_drain_soulrend_number_of_additional_projectiles"]=6582, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6583, + ["ethereal_knives_damage_+%"]=3708, + ["ethereal_knives_number_of_additional_projectiles"]=6584, + ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6585, + ["ethereal_knives_projectile_speed_+%"]=3955, + ["ethereal_knives_projectiles_nova"]=6586, + ["evasion_+%_if_hit_recently"]=4248, + ["evasion_+%_per_10_intelligence"]=6588, + ["evasion_and_physical_damage_reduction_rating_+%"]=1589, + ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6599, + ["evasion_rating_%_to_add_as_armour"]=6600, + ["evasion_rating_+%"]=1595, + ["evasion_rating_+%_during_focus"]=6589, + ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6587, + ["evasion_rating_+%_if_have_cast_dash_recently"]=6604, + ["evasion_rating_+%_if_have_not_been_hit_recently"]=6605, + ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6606, + ["evasion_rating_+%_per_10_intelligence"]=6590, + ["evasion_rating_+%_per_500_maximum_mana"]=6591, + ["evasion_rating_+%_per_endurance_charge"]=6592, + ["evasion_rating_+%_per_frenzy_charge"]=1602, + ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6607, + ["evasion_rating_+%_when_on_full_life"]=6608, + ["evasion_rating_+%_when_on_low_life"]=2585, + ["evasion_rating_+%_while_leeching"]=6609, + ["evasion_rating_+%_while_moving"]=6610, + ["evasion_rating_+%_while_onslaught_is_active"]=1597, + ["evasion_rating_+%_while_phasing"]=2555, + ["evasion_rating_+%_while_stationary"]=6593, + ["evasion_rating_+%_while_tincture_active"]=6611, + ["evasion_rating_+%_while_you_have_energy_shield"]=6612, + ["evasion_rating_+%_while_you_have_unbroken_ward"]=6594, + ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6601, + ["evasion_rating_+_per_10_player_life"]=6595, + ["evasion_rating_+_per_1_armour_on_gloves"]=6596, + ["evasion_rating_+_per_1_helmet_energy_shield"]=1593, + ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=4441, + ["evasion_rating_+_when_on_full_life"]=1592, + ["evasion_rating_+_when_on_low_life"]=1591, + ["evasion_rating_+_while_phasing"]=6602, + ["evasion_rating_+_while_you_have_tailwind"]=6603, + ["evasion_rating_from_helmet_and_boots_+%"]=6597, + ["evasion_rating_increased_by_overcapped_cold_resistance"]=6598, + ["evasion_rating_plus_in_sand_stance"]=10388, + ["evasion_rating_while_es_full_+%_final"]=4137, + ["every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds"]=6613, + ["every_4_seconds_%_chance_freeze_non_frozen_enemies_for_300ms"]=6614, + ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6615, + ["every_fourth_retaliation_used_is_a_critical_strike"]=6616, + ["excommunicate_on_melee_attack_hit_for_X_ms"]=6617, + ["exerted_attack_knockback_chance_%"]=6618, + ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6619, + ["expanding_fire_cone_additional_maximum_number_of_stages"]=6620, + ["expanding_fire_cone_area_of_effect_+%"]=6621, + ["expedition_chest_logbook_chance_%"]=6622, + ["expedition_monsters_logbook_chance_+%"]=6623, + ["experience_gain_+%"]=1650, + ["experience_loss_on_death_-%"]=1651, + ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6624, + ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3366, + ["explode_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6625, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=3364, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6626, + ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3365, + ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=10887, + ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6627, + ["explode_on_death_for_%_life_as_fire_damage"]=6628, + ["explode_on_kill_%_chaos_damage_to_deal"]=3363, + ["explode_on_kill_%_fire_damage_to_deal"]=2757, + ["exploding_toad_trigger_%_chance_from_unique"]=10888, + ["explosive_arrow_attack_speed_+%"]=4191, + ["explosive_arrow_damage_+%"]=3739, + ["explosive_arrow_duration_+%"]=6629, + ["explosive_arrow_radius_+%"]=3885, + ["explosive_concoction_damage_+%"]=6630, + ["explosive_concoction_flask_charges_consumed_+%"]=6631, + ["explosive_concoction_skill_area_of_effect_+%"]=6632, + ["exposure_effect_+%"]=6633, + ["exposure_you_inflict_applies_extra_%_to_affected_resistance"]=6634, + ["exposure_you_inflict_has_minimum_resistance_%"]=6635, + ["exsanguinate_additional_chain_chance_%"]=6636, + ["exsanguinate_and_reap_skill_physical_damage_%_to_convert_to_fire"]=6637, + ["exsanguinate_damage_+%"]=6638, + ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6639, + ["exsanguinate_duration_+%"]=6640, + ["extinguish_on_hit_%_chance"]=6641, + ["extra_chaos_damage_rolls"]=5833, + ["extra_critical_rolls"]=2724, + ["extra_critical_rolls_during_focus"]=6642, + ["extra_critical_rolls_while_on_low_life"]=6643, + ["extra_damage_rolls_with_cold_damage_if_have_suppressed_spell_damage_recently"]=6644, + ["extra_damage_rolls_with_fire_damage_if_have_blocked_attack_recently"]=6645, + ["extra_damage_rolls_with_lightning_damage_if_have_blocked_spell_recently"]=6646, + ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6647, + ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=4489, + ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=4490, + ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6648, + ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=3305, + ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6649, + ["extra_gore"]=11048, + ["extra_target_targeting_distance_+%"]=6650, + ["extreme_luck_unluck"]=6651, + ["eye_of_winter_damage_+%"]=6652, + ["eye_of_winter_projectile_speed_+%"]=6653, + ["eye_of_winter_spiral_fire_frequency_+%"]=6654, + ["faster_bleed_%"]=6656, + ["faster_bleed_per_frenzy_charge_%"]=6655, + ["faster_burn_%"]=2614, + ["faster_burn_from_attacks_%"]=2616, + ["faster_poison_%"]=6657, + ["final_pack_summons_nameless_seer"]=6658, + ["final_repeat_of_spells_area_of_effect_+%"]=6659, + ["fire_ailment_duration_+%"]=6660, + ["fire_and_chaos_damage_resistance_%"]=6661, + ["fire_and_cold_damage_resistance_%"]=2856, + ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=6662, + ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6663, + ["fire_and_lightning_damage_resistance_%"]=2857, + ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=6664, + ["fire_attack_damage_+%"]=1249, + ["fire_attack_damage_+%_while_holding_a_shield"]=1252, + ["fire_axe_damage_+%"]=1353, + ["fire_beam_cast_speed_+%"]=6665, + ["fire_beam_damage_+%"]=6666, + ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6667, + ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6668, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=6669, + ["fire_beam_length_+%"]=6670, + ["fire_bow_damage_+%"]=1383, + ["fire_claw_damage_+%"]=1365, + ["fire_critical_strike_chance_+%"]=1528, + ["fire_critical_strike_multiplier_+"]=1554, + ["fire_dagger_damage_+%"]=1371, + ["fire_damage_%_to_add_as_chaos"]=1988, + ["fire_damage_%_to_add_as_chaos_per_endurance_charge"]=6672, + ["fire_damage_+%"]=1405, + ["fire_damage_+%_if_you_have_been_hit_recently"]=6673, + ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6674, + ["fire_damage_+%_per_20_strength"]=6675, + ["fire_damage_+%_per_endurance_charge"]=6676, + ["fire_damage_+%_per_fire_resistance_above_75"]=6677, + ["fire_damage_+%_per_missing_fire_resistance"]=6678, + ["fire_damage_+%_to_blinded_enemies"]=3280, + ["fire_damage_+%_vs_bleeding_enemies"]=6679, + ["fire_damage_+%_while_affected_by_anger"]=6680, + ["fire_damage_+%_while_affected_by_herald_of_ash"]=6681, + ["fire_damage_can_chill"]=2932, + ["fire_damage_can_freeze"]=2933, + ["fire_damage_can_shock"]=2934, + ["fire_damage_cannot_ignite"]=2942, + ["fire_damage_over_time_+%"]=1259, + ["fire_damage_over_time_multiplier_+%_while_burning"]=6671, + ["fire_damage_over_time_multiplier_+_with_attacks"]=1301, + ["fire_damage_resistance_%_when_on_low_life"]=1674, + ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6682, + ["fire_damage_resistance_+%"]=1675, + ["fire_damage_resistance_is_%"]=1671, + ["fire_damage_taken_%_as_cold"]=3235, + ["fire_damage_taken_%_as_lightning"]=3236, + ["fire_damage_taken_%_causes_additional_physical_damage"]=2503, + ["fire_damage_taken_+"]=2284, + ["fire_damage_taken_+%"]=2289, + ["fire_damage_taken_+%_while_moving"]=6685, + ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6683, + ["fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently"]=10889, + ["fire_damage_taken_per_second_while_flame_touched"]=6684, + ["fire_damage_taken_when_enemy_ignited"]=6686, + ["fire_damage_to_return_on_block"]=6687, + ["fire_damage_to_return_to_melee_attacker"]=2251, + ["fire_damage_to_return_when_hit"]=2255, + ["fire_damage_while_dual_wielding_+%"]=1328, + ["fire_damage_with_attack_skills_+%"]=6688, + ["fire_damage_with_spell_skills_+%"]=6689, + ["fire_dot_multiplier_+"]=1299, + ["fire_dot_multiplier_+_per_rage"]=6690, + ["fire_exposure_on_hit_magnitude"]=6691, + ["fire_exposure_on_hit_magnitude_vs_max_stacks_resentment_debuff"]=6692, + ["fire_exposure_you_inflict_applies_extra_fire_resistance_+%"]=6693, + ["fire_hit_and_dot_damage_%_taken_as_lightning"]=6694, + ["fire_mace_damage_+%"]=1377, + ["fire_nova_mine_cast_speed_+%"]=3932, + ["fire_nova_mine_damage_+%"]=3722, + ["fire_nova_mine_num_of_additional_repeats"]=4028, + ["fire_penetration_%_if_you_have_blocked_recently"]=6695, + ["fire_resistance_cannot_be_penetrated"]=6696, + ["fire_skill_chance_to_inflict_fire_exposure_%"]=6697, + ["fire_skill_gem_level_+"]=6698, + ["fire_skill_gem_level_+_if_6_warlord_items"]=4551, + ["fire_skills_chance_to_poison_on_hit_%"]=6699, + ["fire_spell_physical_damage_%_to_convert_to_fire"]=6700, + ["fire_spell_skill_gem_level_+"]=1657, + ["fire_staff_damage_+%"]=1359, + ["fire_storm_damage_+%"]=3723, + ["fire_sword_damage_+%"]=1390, + ["fire_trap_burning_damage_+%"]=4019, + ["fire_trap_burning_ground_duration_+%"]=6701, + ["fire_trap_cooldown_speed_+%"]=3934, + ["fire_trap_damage_+%"]=3692, + ["fire_trap_number_of_additional_traps_to_throw"]=6702, + ["fire_wand_damage_+%"]=1396, + ["fire_weakness_ignores_hexproof"]=2655, + ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6703, + ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6704, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=3313, + ["fireball_cannot_ignite"]=6705, + ["fireball_cast_speed_+%"]=3931, + ["fireball_chance_to_scorch_%"]=6706, + ["fireball_damage_+%"]=3693, + ["fireball_ignite_chance_%"]=4020, + ["fireball_radius_up_to_+%_at_longer_ranges"]=3312, + ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=6707, + ["firestorm_duration_+%"]=3989, + ["firestorm_explosion_area_of_effect_+%"]=4029, + ["first_X_stacks_of_tincture_toxicity_have_no_effect"]=6708, + ["first_and_final_barrage_projectiles_return"]=6709, + ["fish_quantity_+%"]=2907, + ["fish_rarity_+%"]=2908, + ["fish_rarity_+%_per_dead_fish"]=6710, + ["fish_rot_when_caught"]=6711, + ["fishing_abyssal_fish"]=6712, + ["fishing_bestiary_lures_at_fishing_holes"]=6713, + ["fishing_bite_sensitivity_+%"]=3643, + ["fishing_can_catch_divine_fish"]=6714, + ["fishing_chance_to_catch_boots_+%"]=6715, + ["fishing_chance_to_catch_divine_orb_+%"]=6716, + ["fishing_corrupted_fish_cleansed_chance_%"]=6717, + ["fishing_fish_always_tell_truth_with_this_rod"]=6718, + ["fishing_ghastly_fisherman_cannot_spawn"]=6719, + ["fishing_ghastly_fisherman_spawns_behind_you"]=6720, + ["fishing_hook_type"]=2905, + ["fishing_krillson_affection_per_fish_gifted_+%"]=6721, + ["fishing_life_of_fish_with_this_rod_+%"]=6722, + ["fishing_line_strength_+%"]=2902, + ["fishing_lure_type"]=2904, + ["fishing_magmatic_fish_are_cooked"]=6723, + ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6724, + ["fishing_pool_consumption_+%"]=2903, + ["fishing_range_+%"]=2906, + ["fishing_reeling_stability_+%"]=6725, + ["fishing_tasalio_ire_per_fish_caught_+%"]=6726, + ["fishing_valako_aid_per_stormy_day_+%"]=6727, + ["fishing_wish_effect_of_ancient_fish_+%"]=6728, + ["fishing_wish_per_fish_+"]=6729, + ["flame_dash_cooldown_speed_+%"]=3941, + ["flame_dash_damage_+%"]=3772, + ["flame_golem_damage_+%"]=3754, + ["flame_golem_elemental_resistances_%"]=4045, + ["flame_link_duration_+%"]=6730, + ["flame_surge_critical_strike_chance_+%"]=4001, + ["flame_surge_damage_+%"]=3724, + ["flame_surge_damage_+%_vs_burning_enemies"]=4030, + ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6731, + ["flame_totem_damage_+%"]=3764, + ["flame_totem_num_of_additional_projectiles"]=4013, + ["flame_totem_projectile_speed_+%"]=3956, + ["flame_wall_damage_+%"]=6732, + ["flame_wall_maximum_added_fire_damage"]=6733, + ["flame_wall_minimum_added_fire_damage"]=6733, + ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6734, + ["flameblast_and_incinerate_cannot_inflict_status_ailments"]=6735, + ["flameblast_critical_strike_chance_+%"]=4000, + ["flameblast_damage_+%"]=3740, + ["flameblast_radius_+%"]=3886, + ["flameblast_starts_with_X_additional_stages"]=6736, + ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6737, + ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6738, + ["flamethrower_tower_trap_cast_speed_+%"]=6739, + ["flamethrower_tower_trap_cooldown_speed_+%"]=6740, + ["flamethrower_tower_trap_damage_+%"]=6741, + ["flamethrower_tower_trap_duration_+%"]=6742, + ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6743, + ["flamethrower_tower_trap_throwing_speed_+%"]=6744, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6745, + ["flammability_curse_effect_+%"]=4073, + ["flammability_duration_+%"]=3974, + ["flammability_mana_reservation_+%"]=4107, + ["flammability_no_reservation"]=6746, + ["flask_charges_+%_from_enemies_with_status_ailments"]=4309, + ["flask_charges_gained_+%_during_flask_effect"]=3243, + ["flask_charges_gained_+%_if_crit_recently"]=6747, + ["flask_charges_gained_+%_per_tincture_toxicity"]=6750, + ["flask_charges_gained_from_kills_+%_final_from_unique"]=6748, + ["flask_charges_gained_from_marked_enemy_+%"]=6749, + ["flask_charges_recovered_per_3_seconds"]=3538, + ["flask_charges_used_+%"]=2231, + ["flask_duration_+%"]=2234, + ["flask_duration_+%_per_level"]=6751, + ["flask_duration_on_minions_+%"]=2235, + ["flask_effect_+%"]=2800, + ["flask_effect_+%_per_level"]=6752, + ["flask_life_and_mana_to_recover_+%"]=6753, + ["flask_life_recovery_+%_while_affected_by_vitality"]=6754, + ["flask_life_recovery_rate_+%"]=2236, + ["flask_life_to_recover_+%"]=2106, + ["flask_mana_charges_used_+%"]=2232, + ["flask_mana_recovery_rate_+%"]=2237, + ["flask_mana_to_recover_+%"]=2107, + ["flask_minion_heal_%"]=2960, + ["flask_recovery_is_instant"]=6755, + ["flask_recovery_speed_+%"]=2108, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6756, + ["flasks_%_chance_to_not_consume_charges"]=4290, + ["flasks_adjacent_to_active_tinctures_gain_X_charges_on_weapon_hit"]=6757, + ["flasks_adjacent_to_active_tinctures_have_effect_+%_if_hit_with_weapon_recently"]=6758, + ["flasks_apply_to_your_linked_targets"]=6759, + ["flasks_apply_to_your_zombies_and_spectres"]=3808, + ["flasks_dispel_burning"]=2813, + ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6760, + ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6761, + ["flesh_and_stone_area_of_effect_+%"]=6762, + ["flesh_offering_attack_speed_+%"]=4182, + ["flesh_offering_duration_+%"]=3962, + ["flesh_offering_effect_+%"]=1220, + ["flesh_stone_mana_reservation_efficiency_+%"]=6764, + ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6763, + ["flesh_stone_no_reservation"]=6765, + ["flicker_strike_cooldown_speed_+%"]=3935, + ["flicker_strike_damage_+%"]=3713, + ["flicker_strike_damage_+%_per_frenzy_charge"]=4025, + ["flicker_strike_more_attack_speed_+%_final"]=1460, + ["focus_cooldown_modifier_ms"]=6766, + ["focus_cooldown_speed_+%"]=6767, + ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6768, + ["forbidden_rite_damage_+%"]=6769, + ["forbidden_rite_number_of_additional_projectiles"]=6770, + ["forbidden_rite_projectile_speed_+%"]=6771, + ["forking_angle_+%"]=6772, + ["fortification_gained_from_hits_+%"]=6773, + ["fortification_gained_from_hits_+%_against_unique_enemies"]=6774, + ["fortify_duration_+%"]=2312, + ["fortify_duration_+%_per_10_strength"]=6775, + ["fortify_on_hit"]=6776, + ["four_seconds_after_being_hit_lose_life_equal_to_x%_of_hit"]=6777, + ["freeze_as_though_dealt_damage_+%"]=2950, + ["freeze_chilled_enemies_as_though_dealt_damage_+%"]=6778, + ["freeze_duration_+%"]=1905, + ["freeze_duration_against_cursed_enemies_+%"]=6779, + ["freeze_mine_cold_resistance_+_while_frozen"]=2836, + ["freeze_mine_damage_+%"]=3773, + ["freeze_mine_radius_+%"]=3896, + ["freeze_minimum_duration_X_ms"]=6780, + ["freeze_on_you_proliferates_to_nearby_enemies_within_x_radius"]=3685, + ["freeze_prevention_ms_when_frozen"]=2953, + ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6781, + ["freezing_pulse_and_eye_of_winter_poison_damage_+100%_final_chance"]=6782, + ["freezing_pulse_cast_speed_+%"]=3930, + ["freezing_pulse_damage_+%"]=3694, + ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6783, + ["freezing_pulse_number_of_additional_projectiles"]=6784, + ["freezing_pulse_projectile_speed_+%"]=3952, + ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=4037, + ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6785, + ["frenzy_charge_duration_+%_per_frenzy_charge"]=2098, + ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6786, + ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6787, + ["frenzy_damage_+%"]=3733, + ["frenzy_damage_+%_per_frenzy_charge"]=4036, + ["frenzy_only_conduit"]=2308, + ["from_self_maximum_added_attack_chaos_damage_taken"]=1436, + ["from_self_maximum_added_attack_cold_damage_taken"]=1418, + ["from_self_maximum_added_attack_fire_damage_taken"]=1409, + ["from_self_maximum_added_attack_lightning_damage_taken"]=1429, + ["from_self_maximum_added_attack_physical_damage_taken"]=1315, + ["from_self_maximum_added_cold_damage_taken"]=1415, + ["from_self_maximum_added_cold_damage_taken_per_frenzy_charge"]=4332, + ["from_self_maximum_added_fire_damage_taken"]=1406, + ["from_self_maximum_added_lightning_damage_taken"]=1426, + ["from_self_minimum_added_attack_chaos_damage_taken"]=1436, + ["from_self_minimum_added_attack_cold_damage_taken"]=1418, + ["from_self_minimum_added_attack_fire_damage_taken"]=1409, + ["from_self_minimum_added_attack_lightning_damage_taken"]=1429, + ["from_self_minimum_added_attack_physical_damage_taken"]=1315, + ["from_self_minimum_added_cold_damage_taken"]=1415, + ["from_self_minimum_added_cold_damage_taken_per_frenzy_charge"]=4332, + ["from_self_minimum_added_fire_damage_taken"]=1406, + ["from_self_minimum_added_lightning_damage_taken"]=1426, + ["frost_blades_damage_+%"]=3469, + ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6788, + ["frost_blades_number_of_additional_projectiles_in_chain"]=3471, + ["frost_blades_projectile_speed_+%"]=3470, + ["frost_bolt_cast_speed_+%"]=4210, + ["frost_bolt_damage_+%"]=4198, + ["frost_bolt_freeze_chance_%"]=4211, + ["frost_bolt_nova_cooldown_speed_+%"]=6789, + ["frost_bolt_nova_damage_+%"]=4199, + ["frost_bolt_nova_duration_+%"]=4212, + ["frost_bolt_nova_radius_+%"]=4206, + ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6791, + ["frost_bomb_buff_duration_+%"]=6790, + ["frost_bomb_cooldown_speed_+%"]=3948, + ["frost_bomb_damage_+%"]=3796, + ["frost_bomb_radius_+%"]=3905, + ["frost_fury_additional_max_number_of_stages"]=6792, + ["frost_fury_area_of_effect_+%_per_stage"]=6793, + ["frost_fury_damage_+%"]=6794, + ["frost_globe_added_cooldown_count"]=6795, + ["frost_globe_health_per_stage"]=6796, + ["frost_wall_cooldown_speed_+%"]=3939, + ["frost_wall_damage_+%"]=3767, + ["frost_wall_duration_+%"]=3965, + ["frostbite_curse_effect_+%"]=4074, + ["frostbite_duration_+%"]=3973, + ["frostbite_mana_reservation_+%"]=4108, + ["frostbite_no_reservation"]=6797, + ["frostbolt_number_of_additional_projectiles"]=6798, + ["frostbolt_projectile_acceleration"]=6799, + ["frozen_legion_%_chance_to_summon_additional_statue"]=6803, + ["frozen_legion_added_cooldown_count"]=6800, + ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6801, + ["frozen_legion_cooldown_speed_+%"]=6802, + ["frozen_monsters_take_%_increased_damage"]=6804, + ["frozen_monsters_take_increased_damage"]=2511, + ["frozen_sweep_damage_+%"]=6805, + ["frozen_sweep_damage_+%_final"]=6806, + ["full_life_threshold_%_override"]=6807, + ["fungal_ground_while_stationary_radius"]=6808, + ["gain_%_es_when_spirit_charge_expires_or_consumed"]=4448, + ["gain_%_life_when_spirit_charge_expires_or_consumed"]=4447, + ["gain_%_of_phys_as_extra_chaos_per_elder_item_equipped"]=6910, + ["gain_%_of_two_hand_weapon_physical_damage_as_added_spell_damage"]=6809, + ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6911, + ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6918, + ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6810, + ["gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=6811, + ["gain_20%_chance_to_explode_enemies_for_100%_life_on_kill_for_X_seconds_every_10_seconds"]=6858, + ["gain_X%_armour_per_100_mana_reserved"]=6812, + ["gain_X%_armour_per_50_mana_reserved"]=6813, + ["gain_X_endurance_charges_per_second"]=6814, + ["gain_X_energy_shield_on_killing_shocked_enemy"]=2622, + ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6815, + ["gain_X_frenzy_charges_after_spending_200_mana"]=6816, + ["gain_X_frenzy_charges_per_second"]=6817, + ["gain_X_life_on_stun"]=6818, + ["gain_X_power_charges_on_using_a_warcry"]=6819, + ["gain_X_power_charges_per_second"]=6820, + ["gain_X_random_charges_every_6_seconds"]=6821, + ["gain_X_random_rare_monster_mods_on_kill"]=3117, + ["gain_X_vaal_souls_on_rampage_threshold"]=3015, + ["gain_a_endurance_charge_every_X_seconds_while_stationary"]=6822, + ["gain_a_frenzy_charge_every_X_seconds_while_moving"]=6823, + ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=4195, + ["gain_absorption_charges_instead_of_power_charges"]=6824, + ["gain_accuracy_rating_equal_to_2_times_strength"]=6825, + ["gain_accuracy_rating_equal_to_intelligence"]=6826, + ["gain_accuracy_rating_equal_to_strength"]=6827, + ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6828, + ["gain_adrenaline_for_X_seconds_on_kill"]=6829, + ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6830, + ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6831, + ["gain_adrenaline_on_gaining_flame_touched"]=6832, + ["gain_adrenaline_when_ward_breaks_ms"]=6833, + ["gain_affliction_charges_instead_of_frenzy_charges"]=6834, + ["gain_alchemists_genius_on_flask_use_%"]=6835, + ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6836, + ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6837, + ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6838, + ["gain_arcane_surge_on_200_life_spent"]=6839, + ["gain_arcane_surge_on_crit_%_chance"]=6840, + ["gain_arcane_surge_on_hit_%_chance"]=6843, + ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6841, + ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6842, + ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6844, + ["gain_arcane_surge_on_kill_chance_%"]=6845, + ["gain_arcane_surge_on_movement_skill_use"]=4501, + ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6846, + ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6847, + ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6848, + ["gain_arcane_surge_when_you_summon_a_totem"]=6849, + ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6850, + ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=4113, + ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6851, + ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3507, + ["gain_blitz_charge_%_chance_on_crit"]=6852, + ["gain_blood_shrine_buff_every_x_ms_from_unique"]=6853, + ["gain_boons_instead_of_afflictions_when_using_a_pact_skill"]=10907, + ["gain_brutal_charges_instead_of_endurance_charges"]=6854, + ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3865, + ["gain_celestial_charge_per_X_spent_es"]=6855, + ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6856, + ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6857, + ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=10890, + ["gain_convergence_on_hitting_unique_enemy"]=4505, + ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=11024, + ["gain_crimson_dance_while_you_have_cat_stealth"]=11025, + ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6859, + ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3506, + ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=10891, + ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=4344, + ["gain_divine_charge_on_hit_%"]=4450, + ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=4452, + ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=4118, + ["gain_elemental_conflux_if_6_unique_influence_amoung_equipped_non_amulet_items"]=4119, + ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=4161, + ["gain_elusive_on_crit_%_chance"]=4341, + ["gain_elusive_on_kill_chance_%"]=4342, + ["gain_elusive_on_reaching_low_life"]=6860, + ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1868, + ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6864, + ["gain_endurance_charge_%_when_hit_while_channelling"]=6865, + ["gain_endurance_charge_if_attack_freezes"]=6861, + ["gain_endurance_charge_on_main_hand_kill_%"]=3384, + ["gain_endurance_charge_on_melee_stun"]=2827, + ["gain_endurance_charge_on_melee_stun_%"]=2827, + ["gain_endurance_charge_on_power_charge_expiry"]=2686, + ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6862, + ["gain_endurance_charge_per_second_if_have_been_hit_recently_if_4_warlord_items"]=4537, + ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6863, + ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6866, + ["gain_flask_chance_on_crit_%"]=3451, + ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6867, + ["gain_flask_charge_when_crit_%"]=2109, + ["gain_flask_charge_when_crit_amount"]=2109, + ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6868, + ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6869, + ["gain_frenzy_and_power_charge_on_kill_%"]=2685, + ["gain_frenzy_charge_%_when_hit_while_channelling"]=6880, + ["gain_frenzy_charge_if_attack_ignites"]=2895, + ["gain_frenzy_charge_on_critical_strike_%"]=6871, + ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6870, + ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6872, + ["gain_frenzy_charge_on_hit_%_while_blinded"]=6873, + ["gain_frenzy_charge_on_hit_while_bleeding"]=6874, + ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6875, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6876, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6877, + ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6878, + ["gain_frenzy_charge_on_main_hand_kill_%"]=3383, + ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3665, + ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6879, + ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6881, + ["gain_her_blessing_for_3_seconds_on_ignite_%"]=3338, + ["gain_her_embrace_for_x_ms_on_enemy_ignited"]=6882, + ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=11026, + ["gain_iron_reflexes_while_stationary"]=11032, + ["gain_life_and_mana_leech_on_kill_permyriad"]=3284, + ["gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit"]=3505, + ["gain_life_leech_on_kill_permyriad"]=4317, + ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=4237, + ["gain_life_regeneration_per_minute_%_for_1_second_every_4_seconds_if_2_hunter_items"]=4513, + ["gain_magic_monster_mods_on_kill_%_chance"]=6883, + ["gain_max_rage_on_losing_temporal_chains_debuff"]=6884, + ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6885, + ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=4299, + ["gain_maximum_endurance_charges_when_crit_chance_%"]=6886, + ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6887, + ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6888, + ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6889, + ["gain_maximum_life_instead_of_maximum_es_from_armour"]=6890, + ["gain_maximum_life_instead_of_maximum_es_from_armour_at_x%_of_the_value"]=6891, + ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6892, + ["gain_maximum_power_charges_on_vaal_skill_use"]=6893, + ["gain_mind_over_matter_while_at_maximum_power_charges"]=11027, + ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6894, + ["gain_no_armour_from_body_armour"]=3398, + ["gain_no_inherent_bonus_from_dexterity"]=2062, + ["gain_no_inherent_bonus_from_intelligence"]=2063, + ["gain_no_inherent_bonus_from_strength"]=2064, + ["gain_no_inherent_evasion_rating_+%_from_dexterity"]=6895, + ["gain_no_maximum_life_from_strength"]=2065, + ["gain_no_maximum_mana_from_intelligence"]=2066, + ["gain_onslaught_during_life_flask_effect"]=6896, + ["gain_onslaught_during_soul_gain_prevention"]=6897, + ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6898, + ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=4271, + ["gain_onslaught_if_you_have_swapped_stance_recently"]=6899, + ["gain_onslaught_ms_on_using_a_warcry"]=6900, + ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2811, + ["gain_onslaught_on_200_mana_spent"]=6901, + ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6902, + ["gain_onslaught_on_hit_duration_ms"]=6903, + ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6904, + ["gain_onslaught_on_stun_duration_ms"]=2808, + ["gain_onslaught_when_ignited_ms"]=3099, + ["gain_onslaught_while_at_maximum_endurance_charges"]=6905, + ["gain_onslaught_while_frenzy_charges_full"]=4140, + ["gain_onslaught_while_not_on_low_mana"]=6906, + ["gain_onslaught_while_on_low_life"]=6907, + ["gain_onslaught_while_you_have_cats_agility"]=6908, + ["gain_onslaught_while_you_have_fortify"]=6909, + ["gain_perfect_agony_if_you_have_crit_recently"]=6912, + ["gain_permilliage_total_phys_damage_prevented_recently_as_es_regen_per_sec_if_6_crusader_items"]=4552, + ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2554, + ["gain_phasing_if_enemy_killed_recently"]=6913, + ["gain_phasing_if_suppressed_spell_recently"]=6914, + ["gain_phasing_while_affected_by_haste"]=6915, + ["gain_phasing_while_at_maximum_frenzy_charges"]=2552, + ["gain_phasing_while_you_have_cats_stealth"]=6916, + ["gain_phasing_while_you_have_low_life"]=6917, + ["gain_phasing_while_you_have_onslaught"]=2553, + ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=3014, + ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=11044, + ["gain_power_charge_for_each_second_channeling_spell"]=6919, + ["gain_power_charge_on_critical_strike_with_wands_%"]=6920, + ["gain_power_charge_on_curse_cast_%"]=6921, + ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6922, + ["gain_power_charge_on_hit_while_bleeding"]=6923, + ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6924, + ["gain_power_charge_on_mana_flask_use_%_chance"]=6925, + ["gain_power_charge_on_non_critical_strike_%"]=3465, + ["gain_power_charge_on_vaal_skill_use_%"]=6926, + ["gain_power_charge_per_enemy_you_crit"]=2597, + ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6927, + ["gain_power_charge_when_throwing_trap_%"]=2996, + ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6928, + ["gain_rage_on_hit"]=9959, + ["gain_rage_on_hitting_rare_unique_enemy_%"]=9956, + ["gain_rage_on_kill"]=9955, + ["gain_rage_when_you_use_a_warcry"]=9957, + ["gain_rampage_while_at_maximum_endurance_charges"]=3328, + ["gain_random_charge_on_block"]=6929, + ["gain_random_charge_per_second_while_stationary"]=6930, + ["gain_random_retaliation_requirement_on_retaliation_used_chance_%"]=6931, + ["gain_rare_monster_mods_on_kill_ms"]=2875, + ["gain_resolute_technique_while_do_not_have_elemental_overload"]=11033, + ["gain_sacrificial_zeal_on_skill_use_%_cost_as_damage_per_minute"]=6932, + ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6933, + ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6934, + ["gain_shrine_buff_every_x_ms"]=6935, + ["gain_shrine_buff_every_x_ms_from_ascendancy"]=6936, + ["gain_shrine_buff_on_rare_or_unique_kill_centiseconds"]=6937, + ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6938, + ["gain_siphoning_charge_on_skill_use_%_chance"]=4398, + ["gain_soul_eater_during_flask_effect"]=3487, + ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6939, + ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6940, + ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=3172, + ["gain_spell_cost_as_energy_shield_every_fifth_cast"]=6941, + ["gain_spell_cost_as_mana_every_fifth_cast"]=6942, + ["gain_spirit_charge_every_x_ms"]=4444, + ["gain_spirit_charge_on_kill_%_chance"]=4445, + ["gain_spirit_infusion_every_x_ms_while_channelling_spells"]=6943, + ["gain_unholy_might_for_2_seconds_on_crit"]=2974, + ["gain_unholy_might_for_2_seconds_on_melee_crit"]=2973, + ["gain_unholy_might_for_4_seconds_on_crit"]=2975, + ["gain_unholy_might_on_rampage_threshold_ms"]=3033, + ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6944, + ["gain_vaal_pact_if_you_have_crit_recently"]=6945, + ["gain_vaal_pact_while_at_maximum_endurance_charges"]=11028, + ["gain_vaal_pact_while_focused"]=6946, + ["gain_vaal_soul_on_hit_cooldown_ms"]=6947, + ["gain_wand_accuracy_rating_equal_to_intelligence"]=6948, + ["gain_x_blood_phylactery_per_20_life_spent_on_upfront_cost_of_spells"]=6949, + ["gain_x_endurance_charge_when_ward_breaks"]=6950, + ["gain_x_es_on_trap_triggered_by_an_enemy"]=4304, + ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6951, + ["gain_x_fragile_regrowth_per_second"]=6952, + ["gain_x_frenzy_charge_when_ward_breaks"]=6953, + ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=4486, + ["gain_x_life_on_trap_triggered_by_an_enemy"]=4303, + ["gain_x_life_when_endurance_charge_expires_or_consumed"]=3072, + ["gain_x_power_charge_when_ward_breaks"]=6954, + ["gain_x_rage_on_attack_crit"]=6955, + ["gain_x_rage_on_attack_hit"]=6956, + ["gain_x_rage_on_bow_hit"]=6957, + ["gain_x_rage_on_hit_with_axes"]=6958, + ["gain_x_rage_on_hit_with_axes_swords"]=6959, + ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6960, + ["gain_x_rage_on_melee_crit"]=6961, + ["gain_x_rage_on_melee_hit"]=6962, + ["gain_x_rage_per_200_mana_spent"]=6963, + ["gain_x_rage_when_hit"]=6964, + ["gain_x_rage_when_you_use_a_life_flask"]=6965, + ["gain_x_ward_per_10_armour_on_helmet"]=6966, + ["gain_x_ward_per_10_energy_shield_on_boots"]=6967, + ["gain_x_ward_per_10_evasion_on_gloves"]=6968, + ["galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined"]=6969, + ["galvanic_arrow_area_damage_+%"]=10196, + ["galvanic_arrow_projectile_speed_+%"]=6970, + ["galvanic_field_beam_frequency_+%"]=6971, + ["galvanic_field_cast_speed_+%"]=6972, + ["galvanic_field_damage_+%"]=6973, + ["galvanic_field_number_of_chains"]=6974, + ["gem_display_rune_blast_is_gem"]=10116, + ["gem_experience_gain_+%"]=1926, + ["generals_cry_cooldown_speed_+%"]=6975, + ["generals_cry_maximum_warriors_+"]=6976, + ["ghost_cutlass_melee_damage_+%_final_while_burning"]=943, + ["ghost_dance_max_stacks"]=6977, + ["ghost_dance_restore_%_evasion_as_energy_shield_when_hit"]=6978, + ["ghost_lantern_%_chance_for_burning_enemy_to_create_soul"]=6979, + ["ghost_totem_skill_damage_+%_final"]=6980, + ["glacial_cascade_damage_+%"]=3741, + ["glacial_cascade_number_of_additional_bursts"]=6981, + ["glacial_cascade_physical_damage_%_to_add_as_cold"]=6982, + ["glacial_cascade_physical_damage_%_to_convert_to_cold"]=4039, + ["glacial_cascade_radius_+%"]=3887, + ["glacial_hammer_damage_+%"]=3695, + ["glacial_hammer_freeze_chance_%"]=4021, + ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=3290, + ["glacial_hammer_melee_splash_with_cold_damage"]=6983, + ["glacial_hammer_physical_damage_%_to_add_as_cold_damage"]=4040, + ["glacial_hammer_physical_damage_%_to_convert_to_cold"]=6984, + ["gladiator_accuracy_rating_+%_final_while_wielding_sword"]=4577, + ["gladiator_area_of_effect_+%_final_while_wielding_mace"]=4788, + ["gladiator_critical_strike_chance_+%_final_while_wielding_dagger"]=6985, + ["gladiator_damage_+%_final_against_enemies_on_low_life_while_wielding_axe"]=6989, + ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_2_seconds_in_your_presence_up_to_50%"]=6986, + ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_second_in_your_presence_up_to_100%"]=6987, + ["global_added_chaos_damage_%_of_ward"]=2115, + ["global_always_hit"]=2091, + ["global_attack_speed_+%_per_green_socket_on_item"]=2774, + ["global_attack_speed_+%_per_level"]=6990, + ["global_bleed_on_hit"]=2539, + ["global_cannot_crit"]=2225, + ["global_chance_to_blind_on_hit_%"]=3016, + ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6991, + ["global_critical_strike_chance_+%_per_blue_socket_on_item"]=2779, + ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6992, + ["global_critical_strike_chance_+%_while_holding_bow"]=2524, + ["global_critical_strike_chance_+%_while_holding_staff"]=2522, + ["global_critical_strike_chance_while_dual_wielding_+%"]=4325, + ["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=2775, + ["global_critical_strike_multiplier_+_while_holding_bow"]=2525, + ["global_critical_strike_multiplier_+_while_holding_staff"]=2523, + ["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=2102, + ["global_critical_strike_multiplier_while_dual_wielding_+"]=4324, + ["global_defences_+%"]=2891, + ["global_defences_+%_if_no_defence_modifiers_on_equipment_except_body_armour"]=6993, + ["global_defences_+%_per_active_minion"]=6994, + ["global_defences_+%_per_active_minion_not_from_vaal_skills"]=2892, + ["global_defences_+%_per_empty_gem_socket_on_item"]=2788, + ["global_defences_+%_per_frenzy_charge"]=6996, + ["global_defences_+%_per_raised_spectre"]=6995, + ["global_defences_+%_per_white_socket_on_item"]=2789, + ["global_evasion_rating_+_while_moving"]=6997, + ["global_graft_skill_cooldown_speed_+%"]=6998, + ["global_graft_skill_duration_+%"]=6999, + ["global_graft_skill_level_+"]=7000, + ["global_hit_causes_monster_flee_%"]=2089, + ["global_item_attribute_requirements_+%"]=2602, + ["global_knockback"]=1567, + ["global_knockback_on_crit"]=1998, + ["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=2768, + ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2783, + ["global_maximum_added_chaos_damage"]=1434, + ["global_maximum_added_cold_damage"]=1416, + ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=7002, + ["global_maximum_added_fire_damage"]=1407, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=10496, + ["global_maximum_added_fire_damage_vs_ignited_enemies"]=7003, + ["global_maximum_added_lightning_damage"]=1427, + ["global_maximum_added_lightning_damage_minus_1_per_level"]=7001, + ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=7004, + ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=7005, + ["global_maximum_added_physical_damage"]=1313, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=7006, + ["global_melee_range_+_per_white_socket_on_item"]=2790, + ["global_minimum_added_chaos_damage"]=1434, + ["global_minimum_added_cold_damage"]=1416, + ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=7002, + ["global_minimum_added_fire_damage"]=1407, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=10496, + ["global_minimum_added_fire_damage_vs_ignited_enemies"]=7003, + ["global_minimum_added_lightning_damage"]=1427, + ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=7004, + ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=7005, + ["global_minimum_added_physical_damage"]=1313, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=7006, + ["global_physical_damage_reduction_rating_while_moving"]=7007, + ["global_poison_on_hit"]=3231, + ["global_reduce_enemy_block_%"]=1953, + ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2770, + ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=7008, + ["gloves_freeze_proliferation_radius"]=2268, + ["gloves_ignite_proliferation_radius"]=2265, + ["gloves_mod_effect_+%"]=7009, + ["gloves_shock_proliferation_radius"]=2269, + ["glows_in_area_with_unique_fish"]=4188, + ["goat_footprints_from_item"]=11049, + ["golem_attack_and_cast_speed_+%"]=7010, + ["golem_attack_maximum_added_physical_damage"]=7011, + ["golem_attack_minimum_added_physical_damage"]=7011, + ["golem_buff_effect_+%"]=7012, + ["golem_buff_effect_+%_per_summoned_golem"]=7013, + ["golem_cooldown_recovery_+%"]=3391, + ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3759, + ["golem_damage_+%_per_active_golem"]=4260, + ["golem_damage_+%_per_active_golem_type"]=4259, + ["golem_immunity_to_elemental_damage"]=4153, + ["golem_life_regeneration_per_minute_%"]=7014, + ["golem_maximum_energy_shield_+%"]=7015, + ["golem_maximum_life_+%"]=7016, + ["golem_maximum_mana_+%"]=7017, + ["golem_movement_speed_+%"]=7018, + ["golem_physical_damage_reduction_rating"]=7019, + ["golem_scale_+%"]=3752, + ["golem_skill_cooldown_recovery_+%"]=3390, + ["golems_larger_aggro_radius"]=10947, + ["grace_aura_effect_+%"]=3423, + ["grace_aura_effect_+%_while_at_minimum_frenzy_charges"]=7020, + ["grace_mana_reservation_+%"]=4103, + ["grace_mana_reservation_efficiency_+%"]=7022, + ["grace_mana_reservation_efficiency_-2%_per_1"]=7021, + ["grace_reserves_no_mana"]=7023, + ["graft_slot_2_unlocked"]=7024, + ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2957, + ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=7025, + ["grant_map_boss_X_azmeri_dust_primal_on_death"]=7026, + ["grant_map_boss_X_azmeri_dust_voodoo_on_death"]=7027, + ["grant_map_boss_X_azmeri_dust_warden_on_death"]=7028, + ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=7029, + ["grant_void_arrow_every_x_ms"]=7030, + ["grasping_vines_on_hit_while_life_flask_active_up_to_x"]=7031, + ["gratuitous_violence_physical_damage_over_time_+%_final"]=7032, + ["greatwolf_damage_+%"]=7033, + ["ground_slam_and_sunder_poison_on_non_poisoned_enemies_damage_+%"]=7034, + ["ground_slam_angle_+%"]=3318, + ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=7035, + ["ground_slam_damage_+%"]=3696, + ["ground_slam_radius_+%"]=3867, + ["ground_smoke_on_rampage_threshold_ms"]=3025, + ["ground_smoke_when_hit_%"]=2626, + ["ground_tar_on_block_base_area_of_effect_radius"]=7036, + ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2561, + ["ground_tar_when_hit_%_chance"]=7037, + ["guard_buff_take_damage_from_linked_target"]=7038, + ["guard_skill_cooldown_recovery_+%"]=7039, + ["guard_skill_effect_duration_+%"]=7040, + ["guardian_auras_grant_life_regeneration_per_minute_%"]=3840, + ["guardian_damage_+%_final_to_you_and_nearby_allies_per_nearby_ally_up_to_15%"]=7041, + ["guardian_every_4_seconds_remove_curses_on_you"]=7042, + ["guardian_every_4_seconds_remove_elemental_ailments_on_you"]=7043, + ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3846, + ["guardian_nearby_allies_share_charges"]=4177, + ["guardian_nearby_enemies_cannot_gain_charges"]=3841, + ["guardian_remove_curses_and_status_ailments_every_10_seconds"]=3845, + ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3842, + ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3844, + ["guardian_reserved_mana_granted_to_you_and_allies_as_armour_%"]=3843, + ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=3374, + ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=7044, + ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=7045, + ["half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped"]=3171, + ["hallowing_flame_magnitude_+%"]=7046, + ["hallowing_flame_magnitude_+%_per_2%_attack_block_chance"]=7047, + ["hard_mode_utility_flask_gain_charges_while_active"]=7048, + ["harvest_encounter_fluid_granted_+%"]=7049, + ["has_avoid_shock_as_avoid_all_elemental_ailments"]=7050, + ["has_curse_limit_equal_to_maximum_power_charges"]=7051, + ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=7052, + ["has_onslaught_if_totem_summoned_recently"]=7053, + ["has_stun_prevention_flask"]=7054, + ["has_unique_brutal_shrine_effect"]=7055, + ["has_unique_massive_shrine_effect"]=7056, + ["haste_aura_effect_+%"]=3424, + ["haste_mana_reservation_+%"]=4104, + ["haste_mana_reservation_efficiency_+%"]=7058, + ["haste_mana_reservation_efficiency_-2%_per_1"]=7057, + ["haste_reserves_no_mana"]=7059, + ["hatred_aura_effect_+%"]=3426, + ["hatred_aura_effect_+%_while_at_maximum_frenzy_charges"]=7060, + ["hatred_mana_reservation_+%"]=4094, + ["hatred_mana_reservation_efficiency_+%"]=7062, + ["hatred_mana_reservation_efficiency_-2%_per_1"]=7061, + ["hatred_reserves_no_mana"]=7063, + ["hazard_belt_mod_mine_damage_+%_final_if_trap_triggered_recently"]=7064, + ["hazard_belt_mod_trap_damage_+%_final_if_detonated_mine_recently"]=7065, + ["heavy_strike_attack_speed_+%"]=3915, + ["heavy_strike_chance_to_deal_double_damage_%"]=3294, + ["heavy_strike_damage_+%"]=3697, + ["heist_additional_abyss_rewards_from_reward_chests_%"]=7066, + ["heist_additional_armour_rewards_from_reward_chests_%"]=7067, + ["heist_additional_blight_rewards_from_reward_chests_%"]=7068, + ["heist_additional_breach_rewards_from_reward_chests_%"]=7069, + ["heist_additional_corrupted_rewards_from_reward_chests_%"]=7070, + ["heist_additional_delirium_rewards_from_reward_chests_%"]=7071, + ["heist_additional_delve_rewards_from_reward_chests_%"]=7072, + ["heist_additional_divination_rewards_from_reward_chests_%"]=7073, + ["heist_additional_essences_rewards_from_reward_chests_%"]=7074, + ["heist_additional_gems_rewards_from_reward_chests_%"]=7075, + ["heist_additional_gold_rewards_from_reward_chests_%"]=7076, + ["heist_additional_harbinger_rewards_from_reward_chests_%"]=7077, + ["heist_additional_jewellery_rewards_from_reward_chests_%"]=7078, + ["heist_additional_legion_rewards_from_reward_chests_%"]=7079, + ["heist_additional_metamorph_rewards_from_reward_chests_%"]=7080, + ["heist_additional_perandus_rewards_from_reward_chests_%"]=7081, + ["heist_additional_talisman_rewards_from_reward_chests_%"]=7082, + ["heist_additional_uniques_rewards_from_reward_chests_%"]=7083, + ["heist_additional_weapons_rewards_from_reward_chests_%"]=7084, + ["heist_alert_level_gained_on_monster_death"]=7085, + ["heist_alert_level_gained_per_10_sec"]=7086, + ["heist_blueprint_reward_always_currency_or_scarab"]=7087, + ["heist_blueprint_reward_always_enchanted_equipment"]=7088, + ["heist_blueprint_reward_always_experimented"]=7089, + ["heist_blueprint_reward_always_trinket"]=7090, + ["heist_blueprint_reward_always_unique"]=7091, + ["heist_chests_chance_for_secondary_objectives_%"]=7092, + ["heist_chests_double_blighted_maps_and_catalysts_%"]=7093, + ["heist_chests_double_breach_splinters_%"]=7094, + ["heist_chests_double_catalysts_%"]=7095, + ["heist_chests_double_currency_%"]=7096, + ["heist_chests_double_delirium_orbs_and_splinters_%"]=7097, + ["heist_chests_double_divination_cards_%"]=7098, + ["heist_chests_double_essences_%"]=7099, + ["heist_chests_double_jewels_%"]=7100, + ["heist_chests_double_legion_splinters_%"]=7101, + ["heist_chests_double_map_fragments_%"]=7102, + ["heist_chests_double_maps_%"]=7103, + ["heist_chests_double_oils_%"]=7104, + ["heist_chests_double_scarabs_%"]=7105, + ["heist_chests_double_sextants_%"]=7106, + ["heist_chests_double_uniques_%"]=7107, + ["heist_chests_unique_rarity_%"]=7108, + ["heist_coins_dropped_by_monsters_double_%"]=7110, ["heist_coins_from_monsters_+%"]=32, - ["heist_coins_from_world_chests_double_%"]=7012, - ["heist_contract_alert_level_+%"]=7016, - ["heist_contract_alert_level_from_chests_+%"]=7014, - ["heist_contract_alert_level_from_monsters_+%"]=7015, - ["heist_contract_gang_cost_+%"]=7017, - ["heist_contract_gang_takes_no_cut"]=7018, - ["heist_contract_generate_secondary_objectives_chance_%"]=7019, - ["heist_contract_guarding_monsters_damage_+%"]=7020, - ["heist_contract_guarding_monsters_take_damage_+%"]=7021, - ["heist_contract_magical_unlock_count"]=7023, - ["heist_contract_mechanical_unlock_count"]=7022, - ["heist_contract_no_travel_cost"]=7024, - ["heist_contract_npc_cost_+%"]=7025, - ["heist_contract_objective_completion_time_+%"]=7026, - ["heist_contract_patrol_additional_elite_chance_+%"]=7027, - ["heist_contract_patrol_damage_+%"]=7028, - ["heist_contract_patrol_take_damage_+%"]=7029, - ["heist_contract_side_area_monsters_damage_+%"]=7030, - ["heist_contract_side_area_monsters_take_damage_+%"]=7031, - ["heist_contract_total_cost_+%_final"]=7032, - ["heist_contract_travel_cost_+%"]=7033, - ["heist_currency_alchemy_drops_as_blessed_%"]=7034, - ["heist_currency_alchemy_drops_as_divine_%"]=7035, - ["heist_currency_alchemy_drops_as_exalted_%"]=7036, - ["heist_currency_alteration_drops_as_alchemy_%"]=7037, - ["heist_currency_alteration_drops_as_chaos_%"]=7038, - ["heist_currency_alteration_drops_as_regal_%"]=7039, - ["heist_currency_augmentation_drops_as_alchemy_%"]=7040, - ["heist_currency_augmentation_drops_as_chaos_%"]=7041, - ["heist_currency_augmentation_drops_as_regal_%"]=7042, - ["heist_currency_chaos_drops_as_ancient_%"]=7043, - ["heist_currency_chaos_drops_as_blessed_%"]=7044, - ["heist_currency_chaos_drops_as_divine_%"]=7045, - ["heist_currency_chaos_drops_as_exalted_%"]=7046, - ["heist_currency_chromatic_drops_as_fusing_%"]=7047, - ["heist_currency_chromatic_drops_as_jewellers_%"]=7048, - ["heist_currency_jewellers_drops_as_fusing_%"]=7049, - ["heist_currency_regal_drops_as_ancient_%"]=7050, - ["heist_currency_regal_drops_as_blessed_%"]=7051, - ["heist_currency_regal_drops_as_divine_%"]=7052, - ["heist_currency_regal_drops_as_exalted_%"]=7053, - ["heist_currency_regret_drops_as_annulment_%"]=7054, - ["heist_currency_scouring_drops_as_annulment_%"]=7055, - ["heist_currency_scouring_drops_as_regret_%"]=7056, - ["heist_currency_transmutation_drops_as_alchemy_%"]=7057, - ["heist_currency_transmutation_drops_as_chaos_%"]=7058, - ["heist_currency_transmutation_drops_as_regal_%"]=7059, - ["heist_drops_double_currency_%"]=7060, + ["heist_coins_from_world_chests_double_%"]=7109, + ["heist_contract_alert_level_+%"]=7113, + ["heist_contract_alert_level_from_chests_+%"]=7111, + ["heist_contract_alert_level_from_monsters_+%"]=7112, + ["heist_contract_gang_cost_+%"]=7114, + ["heist_contract_gang_takes_no_cut"]=7115, + ["heist_contract_generate_secondary_objectives_chance_%"]=7116, + ["heist_contract_guarding_monsters_damage_+%"]=7117, + ["heist_contract_guarding_monsters_take_damage_+%"]=7118, + ["heist_contract_magical_unlock_count"]=7120, + ["heist_contract_mechanical_unlock_count"]=7119, + ["heist_contract_no_travel_cost"]=7121, + ["heist_contract_npc_cost_+%"]=7122, + ["heist_contract_objective_completion_time_+%"]=7123, + ["heist_contract_patrol_additional_elite_chance_+%"]=7124, + ["heist_contract_patrol_damage_+%"]=7125, + ["heist_contract_patrol_take_damage_+%"]=7126, + ["heist_contract_side_area_monsters_damage_+%"]=7127, + ["heist_contract_side_area_monsters_take_damage_+%"]=7128, + ["heist_contract_total_cost_+%_final"]=7129, + ["heist_contract_travel_cost_+%"]=7130, + ["heist_currency_alchemy_drops_as_blessed_%"]=7131, + ["heist_currency_alchemy_drops_as_divine_%"]=7132, + ["heist_currency_alchemy_drops_as_exalted_%"]=7133, + ["heist_currency_alteration_drops_as_alchemy_%"]=7134, + ["heist_currency_alteration_drops_as_chaos_%"]=7135, + ["heist_currency_alteration_drops_as_regal_%"]=7136, + ["heist_currency_augmentation_drops_as_alchemy_%"]=7137, + ["heist_currency_augmentation_drops_as_chaos_%"]=7138, + ["heist_currency_augmentation_drops_as_regal_%"]=7139, + ["heist_currency_chaos_drops_as_ancient_%"]=7140, + ["heist_currency_chaos_drops_as_blessed_%"]=7141, + ["heist_currency_chaos_drops_as_divine_%"]=7142, + ["heist_currency_chaos_drops_as_exalted_%"]=7143, + ["heist_currency_chromatic_drops_as_fusing_%"]=7144, + ["heist_currency_chromatic_drops_as_jewellers_%"]=7145, + ["heist_currency_fusing_drops_as_chromatic_%"]=7146, + ["heist_currency_jewellers_drops_as_chromatic_%"]=7147, + ["heist_currency_jewellers_drops_as_fusing_%"]=7148, + ["heist_currency_regal_drops_as_ancient_%"]=7149, + ["heist_currency_regal_drops_as_blessed_%"]=7150, + ["heist_currency_regal_drops_as_divine_%"]=7151, + ["heist_currency_regal_drops_as_exalted_%"]=7152, + ["heist_currency_regret_drops_as_annulment_%"]=7153, + ["heist_currency_scouring_drops_as_annulment_%"]=7154, + ["heist_currency_scouring_drops_as_regret_%"]=7155, + ["heist_currency_transmutation_drops_as_alchemy_%"]=7156, + ["heist_currency_transmutation_drops_as_chaos_%"]=7157, + ["heist_currency_transmutation_drops_as_regal_%"]=7158, + ["heist_drops_double_currency_%"]=7159, ["heist_enchantment_ailment_mod_effect_+%"]=62, ["heist_enchantment_attribute_mod_effect_+%"]=63, ["heist_enchantment_casterdamage_mod_effect_+%"]=64, @@ -252351,2770 +256364,2819 @@ return { ["heist_enchantment_physical_mod_effect_+%"]=74, ["heist_enchantment_resistance_mod_effect_+%"]=75, ["heist_enchantment_speed_mod_effect_+%"]=76, - ["heist_guards_are_magic"]=7061, - ["heist_guards_are_rare"]=7062, - ["heist_interruption_resistance_%"]=7063, - ["heist_item_quantity_+%"]=7064, - ["heist_item_rarity_+%"]=7065, - ["heist_items_are_fully_linked_%"]=7066, - ["heist_items_drop_corrupted_%"]=7067, - ["heist_items_drop_identified_%"]=7068, - ["heist_items_have_elder_influence_%"]=7069, - ["heist_items_have_one_additional_socket_%"]=7070, - ["heist_items_have_shaper_influence_%"]=7071, - ["heist_job_agility_level_+"]=7072, - ["heist_job_brute_force_level_+"]=7073, - ["heist_job_counter_thaumaturgy_level_+"]=7074, - ["heist_job_deception_level_+"]=7075, - ["heist_job_demolition_level_+"]=7076, - ["heist_job_demolition_speed_+%"]=7077, - ["heist_job_engineering_level_+"]=7078, - ["heist_job_lockpicking_level_+"]=7079, - ["heist_job_lockpicking_speed_+%"]=7080, - ["heist_job_perception_level_+"]=7081, - ["heist_job_trap_disarmament_level_+"]=7082, - ["heist_job_trap_disarmament_speed_+%"]=7083, - ["heist_lockdown_is_instant"]=7084, - ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=7085, - ["heist_npc_blueprint_reveal_cost_+%"]=7086, - ["heist_npc_contract_generates_gianna_intelligence"]=7087, - ["heist_npc_contract_generates_niles_intelligence"]=7088, - ["heist_npc_display_huck_combat"]=7089, - ["heist_npc_karst_alert_level_from_chests_+%_final"]=7090, - ["heist_npc_nenet_alert_level_+%_final"]=7091, - ["heist_npc_tullina_alert_level_+%_final"]=7092, - ["heist_npc_vinderi_alert_level_+%_final"]=7093, - ["heist_patrols_are_magic"]=7094, - ["heist_patrols_are_rare"]=7095, - ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=7096, - ["heist_player_armour_+%_final_per_25%_alert_level"]=7097, - ["heist_player_cold_resistance_%_per_25%_alert_level"]=7098, - ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=7099, - ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=7100, - ["heist_player_experience_gain_+%"]=7101, - ["heist_player_fire_resistance_%_per_25%_alert_level"]=7102, - ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=7103, - ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=7104, - ["heist_player_lightning_resistance_%_per_25%_alert_level"]=7105, - ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=7106, - ["heist_reinforcements_attack_speed_+%"]=7107, - ["heist_reinforcements_cast_speed_+%"]=7108, - ["heist_reinforcements_movements_speed_+%"]=7109, - ["heist_side_reward_room_monsters_+%"]=7110, - ["hellscape_boots_action_speed_+%_minimum_value"]=3219, - ["hellscape_extra_item_slots"]=7111, - ["hellscape_extra_map_slots"]=7112, - ["hellscaping_add_corruption_implicit_chance_%"]=7113, - ["hellscaping_add_explicit_mod_chance_%"]=7114, - ["hellscaping_additional_link_chance_%"]=7115, - ["hellscaping_additional_socket_chance_%"]=7116, - ["hellscaping_additional_upside_chance_%"]=7117, - ["hellscaping_downsides_tier_downgrade_chance_%"]=7118, - ["hellscaping_speed_+%_per_map_hellscape_tier"]=7119, - ["hellscaping_upgrade_mod_tier_chance_%"]=7125, - ["hellscaping_upsides_tier_upgrade_chance_%"]=7126, - ["helmet_mod_freeze_as_though_damage_+%_final"]=7127, - ["helmet_mod_shock_as_though_damage_+%_final"]=7128, - ["herald_effect_on_self_+%"]=7129, - ["herald_mana_reservation_override_45%"]=7130, - ["herald_of_agony_buff_drop_off_speed_+%"]=7131, - ["herald_of_agony_buff_effect_+%"]=7132, - ["herald_of_agony_mana_reservation_+%"]=7135, - ["herald_of_agony_mana_reservation_efficiency_+%"]=7134, - ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=7133, - ["herald_of_ash_buff_effect_+%"]=7136, - ["herald_of_ash_damage_+%"]=3738, - ["herald_of_ash_mana_reservation_+%"]=4054, - ["herald_of_ash_mana_reservation_efficiency_+%"]=7138, - ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=7137, - ["herald_of_ash_spell_fire_damage_+%_final"]=7139, - ["herald_of_ice_buff_effect_+%"]=7140, - ["herald_of_ice_damage_+%"]=3739, - ["herald_of_ice_mana_reservation_+%"]=4055, - ["herald_of_ice_mana_reservation_efficiency_+%"]=7142, - ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=7141, - ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=7143, - ["herald_of_light_buff_effect_+%"]=7144, - ["herald_of_light_minion_area_of_effect_+%"]=7145, - ["herald_of_purity_mana_reservation_+%"]=7148, - ["herald_of_purity_mana_reservation_efficiency_+%"]=7147, - ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=7146, - ["herald_of_thunder_bolt_frequency_+%"]=7149, - ["herald_of_thunder_buff_effect_+%"]=7150, - ["herald_of_thunder_damage_+%"]=3740, - ["herald_of_thunder_mana_reservation_+%"]=4056, - ["herald_of_thunder_mana_reservation_efficiency_+%"]=7152, - ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=7151, - ["herald_scorpion_number_of_additional_projectiles"]=7153, - ["herald_skill_gem_level_+"]=7154, - ["herald_skills_mana_reservation_+%"]=7157, - ["herald_skills_mana_reservation_efficiency_+%"]=7156, - ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=7155, - ["hex_remove_at_effect_variance"]=7163, - ["hex_skill_cast_speed_+%"]=2239, - ["hex_skill_duration_+%"]=7158, - ["hexblast_%_chance_to_not_consume_hex"]=7161, - ["hexblast_and_doomblast_life_leech_on_overkill_damage_%"]=7159, - ["hexblast_damage_+%"]=7160, - ["hexblast_display_innate_remove_hex_100%_chance"]=7161, - ["hexblast_skill_area_of_effect_+%"]=7162, - ["hexes_expire_on_reaching_200%_effect"]=7163, - ["hexproof_if_right_ring_is_magic_item"]=7164, - ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=7165, - ["hierophant_boots_supported_by_life_leech"]=641, - ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=7166, - ["hierophant_gloves_supported_by_increased_area_of_effect"]=640, - ["hierophant_helmet_supported_by_elemental_penetration"]=639, - ["hierophant_mana_cost_+%_final"]=7167, - ["hierophant_mana_reservation_+%_final"]=7168, - ["hierophant_passive_damage_+%_final_per_totem"]=3769, - ["hinder_effect_on_self_+%"]=7169, - ["hinder_enemy_chaos_damage_+%"]=7170, - ["hinder_enemy_chaos_damage_taken_+%"]=7171, - ["hinekora_belt_every_5_seconds_rotating_buff"]=7172, - ["hit_and_ailment_damage_+%_vs_bleeding_enemies"]=7173, - ["hit_and_ailment_damage_+%_vs_blinded_enemies"]=7174, - ["hit_and_ailment_damage_+%_vs_chilled_enemies"]=7175, - ["hit_and_ailment_damage_+%_vs_cursed_enemies"]=7176, - ["hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments"]=7177, - ["hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs"]=7178, - ["hit_and_ailment_damage_+%_vs_unique_enemies"]=7179, - ["hit_damage_+%"]=7181, - ["hit_damage_+%_vs_ignited_enemies"]=7180, - ["hits_against_marked_enemy_cannot_be_blocked_or_suppressed"]=7182, - ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=7183, - ["hits_can_only_kill_frozen_enemies"]=3045, - ["hits_cannot_be_evaded_vs_blinded_enemies"]=7184, - ["hits_cannot_inflict_more_than_one_impale"]=7185, - ["hits_from_maces_and_sceptres_crush_enemies"]=7186, - ["hits_have_critical_strike_multipler_+_per_monster_power"]=7187, - ["hits_have_leech_%_is_instant_per_monster_power"]=7188, - ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=7189, - ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=7190, - ["hits_ignore_enemy_cold_resistance_if_all_equipped_rings_are_cryonic"]=7191, - ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=7192, - ["hits_ignore_enemy_lightning_resistance_if_all_equipped_rings_are_synaptic"]=7193, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7195, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_have_sacrificial_zeal"]=7196, - ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=7194, - ["hoarfrost_on_non_freezing_freezing_hit"]=7197, - ["holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond"]=7198, - ["holy_hammers_damage_+%_final_if_consuming_power_charge"]=7199, - ["holy_path_teleport_range_+%"]=7200, - ["holy_relic_area_of_effect_+%"]=7201, - ["holy_relic_buff_effect_+%"]=7202, - ["holy_relic_cooldown_recovery_+%"]=7203, - ["holy_relic_damage_+%"]=7204, - ["horrible_ugly_life_leech_from_chaos_damage_perhundredthousand"]=1708, - ["horrible_ugly_life_leech_from_cold_damage_perhundredthousand"]=1701, - ["horrible_ugly_life_leech_from_fire_damage_perhundredthousand"]=1696, - ["horrible_ugly_life_leech_from_lightning_damage_perhundredthousand"]=1705, - ["horrible_ugly_life_leech_from_physical_damage_perhundredthousand"]=1692, - ["hydro_sphere_pulse_frequency_+%"]=7205, - ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=7206, - ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=7207, - ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=7208, - ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=7209, - ["ice_crash_damage_+%"]=3706, - ["ice_crash_first_stage_damage_+%_final"]=7210, - ["ice_crash_physical_damage_%_to_add_as_cold_damage"]=4005, - ["ice_crash_radius_+%"]=3854, - ["ice_dash_cooldown_speed_+%"]=7211, - ["ice_dash_duration_+%"]=7212, - ["ice_dash_travel_distance_+%"]=7213, - ["ice_golem_damage_+%"]=3719, - ["ice_golem_elemental_resistances_%"]=4010, - ["ice_nova_chill_minimum_slow_%"]=7214, - ["ice_nova_damage_+%"]=3689, - ["ice_nova_freeze_chance_%"]=3986, - ["ice_nova_radius_+%"]=3841, - ["ice_shot_additional_pierce_per_10_old"]=7215, - ["ice_shot_area_angle_+%"]=7216, - ["ice_shot_damage_+%"]=3673, - ["ice_shot_duration_+%"]=3958, - ["ice_shot_pierce_+"]=7217, - ["ice_shot_radius_+%"]=3837, - ["ice_siphon_trap_chill_effect_+%"]=7218, - ["ice_siphon_trap_damage_+%"]=7219, - ["ice_siphon_trap_damage_taken_+%_per_beam"]=7220, - ["ice_siphon_trap_duration_+%"]=7221, - ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3995, - ["ice_spear_and_ball_lightning_projectiles_nova"]=7222, - ["ice_spear_and_ball_lightning_projectiles_return"]=7223, - ["ice_spear_damage_+%"]=3690, - ["ice_spear_distance_before_form_change_+%"]=7224, - ["ice_spear_number_of_additional_projectiles"]=7225, - ["ice_spear_second_form_critical_strike_chance_+%"]=4147, - ["ice_spear_second_form_critical_strike_multiplier_+"]=4148, - ["ice_spear_second_form_projectile_speed_+%_final"]=4149, - ["ice_trap_cold_resistance_penetration_%"]=7226, - ["ice_trap_cooldown_speed_+%"]=3914, - ["ice_trap_damage_+%"]=3755, - ["ice_trap_radius_+%"]=3867, - ["ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy"]=2839, - ["ignite_damage_+%_final_if_hit_highest_fire"]=7227, - ["ignite_damage_+%_vs_chilled_enemies"]=7228, - ["ignite_damage_against_cursed_enemies_+%"]=7229, - ["ignite_deal_no_damage"]=7230, - ["ignite_dot_multiplier_+"]=1278, - ["ignite_duration_+%"]=1883, - ["ignite_duration_-%"]=7231, - ["ignite_prevention_ms_when_ignited"]=2920, - ["ignite_slower_burn_%"]=2589, - ["ignited_enemies_explode_for_%_life_as_fire_damage"]=7232, - ["ignited_enemies_explode_on_kill"]=2617, - ["ignites_and_chill_apply_elemental_resistance_+"]=7233, - ["ignites_apply_fire_resistance_+"]=7234, - ["ignites_reflected_to_self"]=3063, - ["ignore_armour_movement_penalties"]=2205, - ["ignore_hexproof"]=2624, - ["ignores_enemy_cold_resistance"]=7235, - ["ignores_enemy_fire_resistance"]=7236, - ["ignores_enemy_lightning_resistance"]=7237, - ["immortal_call_%_chance_to_not_consume_endurance_charges"]=4049, - ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=7238, - ["immortal_call_duration_+%"]=3924, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=7239, - ["immune_to_all_status_ailments"]=7240, - ["immune_to_ally_buff_auras"]=3042, - ["immune_to_bleeding"]=4238, - ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=7241, - ["immune_to_bleeding_while_leeching"]=4241, - ["immune_to_burning_shocks_and_chilled_ground"]=7242, - ["immune_to_curses"]=7243, - ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=7244, - ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=7245, - ["immune_to_curses_while_at_least_X_rage"]=7246, - ["immune_to_curses_while_channelling"]=7247, - ["immune_to_elemental_ailments_while_bleeding"]=7248, - ["immune_to_elemental_ailments_while_on_consecrated_ground"]=7249, - ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=7250, - ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=7251, - ["immune_to_elemental_status_ailments_during_flask_effect"]=4248, - ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=10734, - ["immune_to_exposure"]=7252, - ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=7253, - ["immune_to_freeze_and_chill_while_ignited"]=7254, - ["immune_to_freeze_while_affected_by_purity_of_ice"]=7255, - ["immune_to_hinder"]=7256, - ["immune_to_ignite_and_shock"]=7257, - ["immune_to_ignite_while_affected_by_purity_of_fire"]=7258, - ["immune_to_maim"]=7259, - ["immune_to_poison"]=3637, - ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=7260, - ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=7261, - ["immune_to_reflected_damage"]=7262, - ["immune_to_shock_while_affected_by_purity_of_lightning"]=7263, - ["immune_to_status_ailments_while_focused"]=7264, - ["immune_to_status_ailments_while_phased"]=3492, - ["immune_to_wither"]=7265, - ["impacting_steel_%_chance_to_not_consume_ammo"]=7266, - ["impale_debuff_effect_+%"]=7267, - ["impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding"]=7268, - ["impale_effect_+%_for_impales_inficted_by_spells"]=7270, - ["impale_effect_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=7271, - ["impale_effect_+%_for_impales_inflicted_on_non_impaled_enemies"]=7272, - ["impale_effect_+%_for_impales_past_1000_millisecond"]=7273, - ["impale_effect_+%_max_as_distance_travelled_increases"]=7274, - ["impale_effect_+%_per_impale_on_you"]=7269, - ["impale_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7275, - ["impale_inflicted_by_two_handed_weapons_debuff_effect_+%"]=7276, - ["impale_on_hit_%_chance"]=7277, - ["impale_on_hit_%_chance_with_axes_swords"]=7278, - ["impale_phys_reduction_%_penalty"]=3003, - ["impaled_debuff_duration_+%"]=7279, - ["impaled_debuff_number_of_reflected_hits"]=7280, - ["impales_do_not_consume_hit_on_hit_%_chance"]=7281, - ["impales_do_not_consume_hit_on_melee_hit_%_chance"]=7282, - ["impales_do_not_consume_hit_strongest_impale_on_melee_hit_%_chance"]=7283, - ["impurity_cold_damage_taken_+%_final"]=7284, - ["impurity_fire_damage_taken_+%_final"]=7285, - ["impurity_lightning_damage_taken_+%_final"]=7286, - ["incinerate_damage_+%"]=3691, - ["incinerate_damage_+%_per_stage"]=4029, - ["incinerate_projectile_speed_+%"]=3921, - ["incinerate_starts_with_X_additional_stages"]=7287, - ["increase_crit_chance_by_lowest_of_str_or_int"]=7288, - ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1511, - ["infernal_blow_damage_+%"]=3662, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=7290, - ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=7291, - ["infernal_blow_physical_damage_%_to_add_as_fire_damage"]=3982, - ["infernal_blow_radius_+%"]=3832, - ["infernal_cry_area_of_effect_+%"]=7292, - ["infernal_cry_cooldown_speed_+%"]=7293, - ["infernal_cry_exerted_attacks_ignite_damage_+%_final_from_jewel"]=7294, - ["inflict_all_exposure_on_enemies_when_suppressing_their_spell"]=7295, - ["inflict_all_exposure_on_hit"]=7296, - ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=7297, - ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=7298, - ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=7299, - ["inflict_fire_exposure_nearby_on_reaching_maximum_rage"]=7300, - ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=7301, - ["inflict_hallowing_flame_on_hit_while_on_consecrated_ground"]=7302, - ["inflict_hallowing_flame_on_melee_hit_chance_%"]=7303, - ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=7304, - ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=7305, - ["inflict_mania_on_nearby_enemies_every_second_while_affected_by_glorious_madness"]=7306, - ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=7307, - ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=7308, - ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=7309, - ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=7310, - ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=7311, - ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=7312, - ["infusion_effect_+%"]=7313, - ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=7314, - ["inquisitor_aura_elemental_damage_+%_final"]=3617, - ["inspiration_charge_duration_+%"]=7315, - ["intelligence_+%"]=1210, - ["intelligence_+%_if_2_crusader_items"]=4476, - ["intelligence_+%_per_equipped_unique"]=2616, - ["intelligence_is_0"]=7316, - ["intelligence_skill_gem_level_+"]=7317, - ["intensity_loss_frequency_while_moving_+%"]=7318, - ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=7319, - ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=7320, - ["intimidate_nearby_enemies_on_use_for_ms"]=7321, - ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=7322, - ["intimidating_cry_area_of_effect_+%"]=7323, - ["intimidating_cry_cooldown_speed_+%"]=7324, - ["intuitive_link_duration_+%"]=7325, - ["iron_flasks_gain_x_charge_when_ward_breaks"]=7326, - ["iron_reflexes_rotation_active"]=10867, - ["is_blighted_map"]=7327, - ["is_hindered"]=4130, - ["is_petrified"]=3630, + ["heist_guards_are_magic"]=7160, + ["heist_guards_are_rare"]=7161, + ["heist_interruption_resistance_%"]=7162, + ["heist_item_quantity_+%"]=7163, + ["heist_item_rarity_+%"]=7164, + ["heist_items_are_fully_linked_%"]=7165, + ["heist_items_drop_corrupted_%"]=7166, + ["heist_items_drop_identified_%"]=7167, + ["heist_items_have_elder_influence_%"]=7168, + ["heist_items_have_one_additional_socket_%"]=7169, + ["heist_items_have_shaper_influence_%"]=7170, + ["heist_job_agility_level_+"]=7171, + ["heist_job_brute_force_level_+"]=7172, + ["heist_job_counter_thaumaturgy_level_+"]=7173, + ["heist_job_deception_level_+"]=7174, + ["heist_job_demolition_level_+"]=7175, + ["heist_job_demolition_speed_+%"]=7176, + ["heist_job_engineering_level_+"]=7177, + ["heist_job_lockpicking_level_+"]=7178, + ["heist_job_lockpicking_speed_+%"]=7179, + ["heist_job_perception_level_+"]=7180, + ["heist_job_trap_disarmament_level_+"]=7181, + ["heist_job_trap_disarmament_speed_+%"]=7182, + ["heist_lockdown_is_instant"]=7183, + ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=7184, + ["heist_npc_blueprint_reveal_cost_+%"]=7185, + ["heist_npc_contract_generates_gianna_intelligence"]=7186, + ["heist_npc_contract_generates_niles_intelligence"]=7187, + ["heist_npc_display_huck_combat"]=7188, + ["heist_npc_karst_alert_level_from_chests_+%_final"]=7189, + ["heist_npc_nenet_alert_level_+%_final"]=7190, + ["heist_npc_tullina_alert_level_+%_final"]=7191, + ["heist_npc_vinderi_alert_level_+%_final"]=7192, + ["heist_patrols_are_magic"]=7193, + ["heist_patrols_are_rare"]=7194, + ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=7195, + ["heist_player_armour_+%_final_per_25%_alert_level"]=7196, + ["heist_player_cold_resistance_%_per_25%_alert_level"]=7197, + ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=7198, + ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=7199, + ["heist_player_experience_gain_+%"]=7200, + ["heist_player_fire_resistance_%_per_25%_alert_level"]=7201, + ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=7202, + ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=7203, + ["heist_player_lightning_resistance_%_per_25%_alert_level"]=7204, + ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=7205, + ["heist_reinforcements_attack_speed_+%"]=7206, + ["heist_reinforcements_cast_speed_+%"]=7207, + ["heist_reinforcements_movements_speed_+%"]=7208, + ["heist_side_reward_room_monsters_+%"]=7209, + ["hellscape_boots_action_speed_+%_minimum_value"]=3255, + ["hellscape_extra_item_slots"]=7210, + ["hellscape_extra_map_slots"]=7211, + ["hellscaping_add_corruption_implicit_chance_%"]=7212, + ["hellscaping_add_explicit_mod_chance_%"]=7213, + ["hellscaping_additional_link_chance_%"]=7214, + ["hellscaping_additional_socket_chance_%"]=7215, + ["hellscaping_additional_upside_chance_%"]=7216, + ["hellscaping_downsides_tier_downgrade_chance_%"]=7217, + ["hellscaping_speed_+%_per_map_hellscape_tier"]=7218, + ["hellscaping_upgrade_mod_tier_chance_%"]=7224, + ["hellscaping_upsides_tier_upgrade_chance_%"]=7225, + ["helmet_mod_freeze_as_though_damage_+%_final"]=7226, + ["helmet_mod_shock_as_though_damage_+%_final"]=7227, + ["herald_effect_on_self_+%"]=7228, + ["herald_mana_reservation_override_45%"]=7229, + ["herald_of_agony_buff_drop_off_speed_+%"]=7230, + ["herald_of_agony_buff_effect_+%"]=7231, + ["herald_of_agony_mana_reservation_+%"]=7234, + ["herald_of_agony_mana_reservation_efficiency_+%"]=7233, + ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=7232, + ["herald_of_ash_buff_effect_+%"]=7235, + ["herald_of_ash_damage_+%"]=3774, + ["herald_of_ash_mana_reservation_+%"]=4090, + ["herald_of_ash_mana_reservation_efficiency_+%"]=7237, + ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=7236, + ["herald_of_ash_spell_fire_damage_+%_final"]=7238, + ["herald_of_ice_buff_effect_+%"]=7239, + ["herald_of_ice_damage_+%"]=3775, + ["herald_of_ice_mana_reservation_+%"]=4091, + ["herald_of_ice_mana_reservation_efficiency_+%"]=7241, + ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=7240, + ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=7242, + ["herald_of_light_buff_effect_+%"]=7243, + ["herald_of_light_minion_area_of_effect_+%"]=7244, + ["herald_of_purity_mana_reservation_+%"]=7247, + ["herald_of_purity_mana_reservation_efficiency_+%"]=7246, + ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=7245, + ["herald_of_thunder_bolt_frequency_+%"]=7248, + ["herald_of_thunder_buff_effect_+%"]=7249, + ["herald_of_thunder_damage_+%"]=3776, + ["herald_of_thunder_mana_reservation_+%"]=4092, + ["herald_of_thunder_mana_reservation_efficiency_+%"]=7251, + ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=7250, + ["herald_scorpion_number_of_additional_projectiles"]=7252, + ["herald_skill_gem_level_+"]=7253, + ["herald_skills_mana_reservation_+%"]=7256, + ["herald_skills_mana_reservation_efficiency_+%"]=7255, + ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=7254, + ["hex_remove_at_effect_variance"]=7262, + ["hex_skill_cast_speed_+%"]=2262, + ["hex_skill_duration_+%"]=7257, + ["hexblast_%_chance_to_not_consume_hex"]=7260, + ["hexblast_and_doomblast_life_leech_on_overkill_damage_%"]=7258, + ["hexblast_damage_+%"]=7259, + ["hexblast_display_innate_remove_hex_100%_chance"]=7260, + ["hexblast_skill_area_of_effect_+%"]=7261, + ["hexes_expire_on_reaching_200%_effect"]=7262, + ["hexproof_if_right_ring_is_magic_item"]=7263, + ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=7264, + ["hierophant_boots_supported_by_life_leech"]=652, + ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=7265, + ["hierophant_gloves_supported_by_increased_area_of_effect"]=651, + ["hierophant_helmet_supported_by_elemental_penetration"]=650, + ["hierophant_mana_cost_+%_final"]=7266, + ["hierophant_mana_reservation_+%_final"]=7267, + ["hierophant_passive_damage_+%_final_per_totem"]=3805, + ["hinder_effect_on_self_+%"]=7268, + ["hinder_enemy_chaos_damage_+%"]=7269, + ["hinder_enemy_chaos_damage_taken_+%"]=7270, + ["hinekora_belt_every_5_seconds_rotating_buff"]=7271, + ["hit_and_ailment_damage_+%_vs_bleeding_enemies"]=7272, + ["hit_and_ailment_damage_+%_vs_blinded_enemies"]=7273, + ["hit_and_ailment_damage_+%_vs_chilled_enemies"]=7274, + ["hit_and_ailment_damage_+%_vs_cursed_enemies"]=7275, + ["hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments"]=7276, + ["hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs"]=7277, + ["hit_and_ailment_damage_+%_vs_unique_enemies"]=7278, + ["hit_damage_+%"]=7280, + ["hit_damage_+%_vs_ignited_enemies"]=7279, + ["hits_against_marked_enemy_cannot_be_blocked_or_suppressed"]=7281, + ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=7282, + ["hits_can_only_kill_frozen_enemies"]=3079, + ["hits_cannot_be_evaded_vs_blinded_enemies"]=7283, + ["hits_cannot_inflict_more_than_one_impale"]=7284, + ["hits_from_maces_and_sceptres_crush_enemies"]=7285, + ["hits_have_critical_strike_multipler_+_per_monster_power"]=7286, + ["hits_have_leech_%_is_instant_per_monster_power"]=7287, + ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=7288, + ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=7289, + ["hits_ignore_enemy_cold_resistance_if_all_equipped_rings_are_cryonic"]=7290, + ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=7291, + ["hits_ignore_enemy_lightning_resistance_if_all_equipped_rings_are_synaptic"]=7292, + ["hits_ignore_enemy_monster_physical_damage_reduction"]=7293, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7295, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_have_sacrificial_zeal"]=7296, + ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=7294, + ["hoarfrost_on_non_freezing_freezing_hit"]=7297, + ["holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond"]=7298, + ["holy_hammers_damage_+%_final_if_consuming_power_charge"]=7299, + ["holy_path_teleport_range_+%"]=7300, + ["holy_relic_area_of_effect_+%"]=7301, + ["holy_relic_buff_effect_+%"]=7302, + ["holy_relic_cooldown_recovery_+%"]=7303, + ["holy_relic_damage_+%"]=7304, + ["horrible_ugly_life_leech_from_chaos_damage_perhundredthousand"]=1731, + ["horrible_ugly_life_leech_from_cold_damage_perhundredthousand"]=1724, + ["horrible_ugly_life_leech_from_fire_damage_perhundredthousand"]=1719, + ["horrible_ugly_life_leech_from_lightning_damage_perhundredthousand"]=1728, + ["horrible_ugly_life_leech_from_physical_damage_perhundredthousand"]=1715, + ["hydro_sphere_pulse_frequency_+%"]=7305, + ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=7306, + ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=7307, + ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=7308, + ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=7309, + ["ice_crash_damage_+%"]=3742, + ["ice_crash_first_stage_damage_+%_final"]=7310, + ["ice_crash_physical_damage_%_to_add_as_cold_damage"]=4041, + ["ice_crash_radius_+%"]=3890, + ["ice_dash_cooldown_speed_+%"]=7311, + ["ice_dash_duration_+%"]=7312, + ["ice_dash_travel_distance_+%"]=7313, + ["ice_golem_damage_+%"]=3755, + ["ice_golem_elemental_resistances_%"]=4046, + ["ice_nova_chill_minimum_slow_%"]=7314, + ["ice_nova_damage_+%"]=3725, + ["ice_nova_freeze_chance_%"]=4022, + ["ice_nova_radius_+%"]=3877, + ["ice_shot_additional_pierce_per_10_old"]=7315, + ["ice_shot_area_angle_+%"]=7316, + ["ice_shot_damage_+%"]=3709, + ["ice_shot_duration_+%"]=3994, + ["ice_shot_pierce_+"]=7317, + ["ice_shot_radius_+%"]=3873, + ["ice_siphon_trap_chill_effect_+%"]=7318, + ["ice_siphon_trap_damage_+%"]=7319, + ["ice_siphon_trap_damage_taken_+%_per_beam"]=7320, + ["ice_siphon_trap_duration_+%"]=7321, + ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=4031, + ["ice_spear_and_ball_lightning_projectiles_nova"]=7322, + ["ice_spear_and_ball_lightning_projectiles_return"]=7323, + ["ice_spear_damage_+%"]=3726, + ["ice_spear_distance_before_form_change_+%"]=7324, + ["ice_spear_number_of_additional_projectiles"]=7325, + ["ice_spear_second_form_critical_strike_chance_+%"]=4183, + ["ice_spear_second_form_critical_strike_multiplier_+"]=4184, + ["ice_spear_second_form_projectile_speed_+%_final"]=4185, + ["ice_trap_cold_resistance_penetration_%"]=7326, + ["ice_trap_cooldown_speed_+%"]=3950, + ["ice_trap_damage_+%"]=3791, + ["ice_trap_radius_+%"]=3903, + ["ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy"]=2873, + ["ignite_damage_+%_final_if_hit_highest_fire"]=7327, + ["ignite_damage_+%_vs_chilled_enemies"]=7328, + ["ignite_damage_against_cursed_enemies_+%"]=7329, + ["ignite_deal_no_damage"]=7330, + ["ignite_dot_multiplier_+"]=1302, + ["ignite_duration_+%"]=1906, + ["ignite_duration_-%"]=7331, + ["ignite_prevention_ms_when_ignited"]=2954, + ["ignite_slower_burn_%"]=2615, + ["ignited_enemies_explode_for_%_life_as_fire_damage"]=7332, + ["ignited_enemies_explode_on_kill"]=2643, + ["ignites_and_chill_apply_elemental_resistance_+"]=7333, + ["ignites_apply_fire_resistance_+"]=7334, + ["ignites_reflected_to_self"]=3097, + ["ignore_armour_movement_penalties"]=2228, + ["ignore_hexproof"]=2650, + ["ignores_enemy_cold_resistance"]=7335, + ["ignores_enemy_fire_resistance"]=7336, + ["ignores_enemy_lightning_resistance"]=7337, + ["immortal_call_%_chance_to_not_consume_endurance_charges"]=4085, + ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=7338, + ["immortal_call_duration_+%"]=3960, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=7339, + ["immune_to_all_status_ailments"]=7340, + ["immune_to_ally_buff_auras"]=3076, + ["immune_to_bleeding"]=4274, + ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=7341, + ["immune_to_bleeding_while_leeching"]=4277, + ["immune_to_burning_shocks_and_chilled_ground"]=7342, + ["immune_to_curses"]=7343, + ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=7344, + ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=7345, + ["immune_to_curses_while_at_least_X_rage"]=7346, + ["immune_to_curses_while_channelling"]=7347, + ["immune_to_elemental_ailments_while_bleeding"]=7348, + ["immune_to_elemental_ailments_while_on_consecrated_ground"]=7349, + ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=7350, + ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=7351, + ["immune_to_elemental_status_ailments_during_flask_effect"]=4284, + ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=10892, + ["immune_to_exposure"]=7352, + ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=7353, + ["immune_to_freeze_and_chill_while_ignited"]=7354, + ["immune_to_freeze_while_affected_by_purity_of_ice"]=7355, + ["immune_to_hinder"]=7356, + ["immune_to_ignite_and_shock"]=7357, + ["immune_to_ignite_while_affected_by_purity_of_fire"]=7358, + ["immune_to_maim"]=7359, + ["immune_to_poison"]=3673, + ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=7360, + ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=7361, + ["immune_to_reflected_damage"]=7362, + ["immune_to_shock_while_affected_by_purity_of_lightning"]=7363, + ["immune_to_status_ailments_while_focused"]=7364, + ["immune_to_status_ailments_while_phased"]=3528, + ["immune_to_wither"]=7365, + ["impacting_steel_%_chance_to_not_consume_ammo"]=7366, + ["impale_debuff_effect_+%"]=7367, + ["impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding"]=7368, + ["impale_effect_+%_for_impales_inficted_by_spells"]=7370, + ["impale_effect_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=7371, + ["impale_effect_+%_for_impales_inflicted_on_non_impaled_enemies"]=7372, + ["impale_effect_+%_for_impales_past_1000_millisecond"]=7373, + ["impale_effect_+%_max_as_distance_travelled_increases"]=7374, + ["impale_effect_+%_per_impale_on_you"]=7369, + ["impale_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7375, + ["impale_inflicted_by_two_handed_weapons_debuff_effect_+%"]=7376, + ["impale_on_hit_%_chance"]=7377, + ["impale_on_hit_%_chance_with_axes_swords"]=7378, + ["impale_phys_reduction_%_penalty"]=3037, + ["impaled_debuff_duration_+%"]=7379, + ["impaled_debuff_number_of_reflected_hits"]=7380, + ["impales_do_not_consume_hit_on_hit_%_chance"]=7381, + ["impales_do_not_consume_hit_on_melee_hit_%_chance"]=7382, + ["impales_do_not_consume_hit_strongest_impale_on_melee_hit_%_chance"]=7383, + ["impurity_cold_damage_taken_+%_final"]=7384, + ["impurity_fire_damage_taken_+%_final"]=7385, + ["impurity_lightning_damage_taken_+%_final"]=7386, + ["incinerate_damage_+%"]=3727, + ["incinerate_damage_+%_per_stage"]=4065, + ["incinerate_projectile_speed_+%"]=3957, + ["incinerate_starts_with_X_additional_stages"]=7387, + ["increase_crit_chance_by_lowest_of_str_or_int"]=7388, + ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1534, + ["infernal_blow_damage_+%"]=3698, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=7390, + ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=7391, + ["infernal_blow_physical_damage_%_to_add_as_fire_damage"]=4018, + ["infernal_blow_radius_+%"]=3868, + ["infernal_cry_area_of_effect_+%"]=7392, + ["infernal_cry_cooldown_speed_+%"]=7393, + ["infernal_cry_exerted_attacks_ignite_damage_+%_final_from_jewel"]=7394, + ["inflict_all_exposure_on_enemies_when_suppressing_their_spell"]=7395, + ["inflict_all_exposure_on_hit"]=7396, + ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=7397, + ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=7398, + ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=7399, + ["inflict_fire_exposure_nearby_on_reaching_maximum_rage"]=7400, + ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=7401, + ["inflict_hallowing_flame_on_hit_while_on_consecrated_ground"]=7402, + ["inflict_hallowing_flame_on_melee_hit_chance_%"]=7403, + ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=7404, + ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=7405, + ["inflict_mania_on_nearby_enemies_every_second_while_affected_by_glorious_madness"]=7406, + ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=7407, + ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=7408, + ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=7409, + ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=7410, + ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=7411, + ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=7412, + ["infusion_effect_+%"]=7413, + ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=7414, + ["inquisitor_aura_elemental_damage_+%_final"]=3653, + ["inspiration_charge_duration_+%"]=7415, + ["intelligence_+%"]=1233, + ["intelligence_+%_if_2_crusader_items"]=4514, + ["intelligence_+%_per_equipped_unique"]=2642, + ["intelligence_is_0"]=7416, + ["intelligence_skill_gem_level_+"]=7417, + ["intensity_loss_frequency_while_moving_+%"]=7418, + ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=7419, + ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=7420, + ["intimidate_nearby_enemies_on_use_for_ms"]=7421, + ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=7422, + ["intimidating_cry_area_of_effect_+%"]=7423, + ["intimidating_cry_cooldown_speed_+%"]=7424, + ["intuitive_link_duration_+%"]=7425, + ["iron_flasks_gain_x_charge_when_ward_breaks"]=7426, + ["iron_reflexes_rotation_active"]=11034, + ["is_blighted_map"]=7427, + ["is_hindered"]=4166, + ["is_petrified"]=3666, ["item_drop_slots"]=9, - ["item_drops_on_death"]=2582, - ["item_found_gold_+%"]=7328, - ["item_found_quality_+%"]=1625, - ["item_found_quantity_+%"]=1615, - ["item_found_quantity_+%_if_wearing_a_magic_item"]=4234, - ["item_found_quantity_+%_per_chest_opened_recently"]=7329, - ["item_found_quantity_+%_per_white_socket_on_item"]=2752, - ["item_found_quantity_+%_when_on_low_life"]=1617, - ["item_found_rarity_+%"]=1619, - ["item_found_rarity_+%_if_wearing_a_normal_item"]=4233, - ["item_found_rarity_+%_per_white_socket_on_item"]=2754, - ["item_found_rarity_+%_when_on_low_life"]=1623, - ["item_found_rarity_+%_while_phasing"]=2530, - ["item_found_rarity_+1%_per_X_rampage_stacks"]=7330, - ["item_found_relevancy_+%"]=1626, + ["item_drops_on_death"]=2608, + ["item_found_gold_+%"]=7428, + ["item_found_quality_+%"]=1648, + ["item_found_quantity_+%"]=1638, + ["item_found_quantity_+%_if_wearing_a_magic_item"]=4270, + ["item_found_quantity_+%_per_chest_opened_recently"]=7429, + ["item_found_quantity_+%_per_white_socket_on_item"]=2784, + ["item_found_quantity_+%_when_on_low_life"]=1640, + ["item_found_rarity_+%"]=1642, + ["item_found_rarity_+%_if_wearing_a_normal_item"]=4269, + ["item_found_rarity_+%_per_white_socket_on_item"]=2787, + ["item_found_rarity_+%_when_on_low_life"]=1646, + ["item_found_rarity_+%_while_phasing"]=2556, + ["item_found_rarity_+1%_per_X_rampage_stacks"]=7430, + ["item_found_relevancy_+%"]=1649, ["item_generation_can_have_multiple_crafted_mods"]=50, ["item_generation_cannot_change_prefixes"]=43, ["item_generation_cannot_change_suffixes"]=47, ["item_generation_cannot_roll_attack_affixes"]=49, ["item_generation_cannot_roll_caster_affixes"]=48, ["item_generation_local_maximum_mod_required_level_override"]=61, - ["item_is_haunted"]=7331, - ["item_rarity_+%_while_using_flask"]=2780, - ["jewellery_hellscaping_speed_+%"]=7121, - ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2819, - ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=7332, - ["keystone_acrobatics"]=10792, - ["keystone_ailment_crit"]=10793, - ["keystone_ancestral_bond"]=10794, - ["keystone_avatar_of_fire"]=10795, - ["keystone_battlemage"]=10796, - ["keystone_blood_magic"]=10797, - ["keystone_call_to_arms"]=10798, - ["keystone_chaos_inoculation"]=10799, - ["keystone_conduit"]=10800, - ["keystone_corrupted_defences"]=10801, - ["keystone_crimson_dance"]=10802, - ["keystone_divine_flesh"]=10803, - ["keystone_divine_shield"]=10804, - ["keystone_eldritch_battery"]=10805, - ["keystone_elemental_equilibrium"]=10806, - ["keystone_elemental_overload"]=10807, - ["keystone_emperors_heart"]=10808, - ["keystone_eternal_youth"]=10809, - ["keystone_everlasting_sacrifice"]=10810, - ["keystone_everlasting_sacrifice_if_at_least_6_corrupted_items_equipped"]=7334, - ["keystone_ghost_dance"]=10811, - ["keystone_ghost_reaver"]=10812, - ["keystone_glancing_blows"]=10813, - ["keystone_herald_of_doom"]=10814, - ["keystone_hex_master"]=10815, - ["keystone_hollow_palm_technique"]=10816, - ["keystone_impale"]=10817, - ["keystone_iron_reflexes"]=10818, - ["keystone_lethe_shade"]=10819, - ["keystone_magebane"]=10820, - ["keystone_mana_shield"]=10821, - ["keystone_medveds_exchange"]=10822, - ["keystone_minion_instability"]=10823, - ["keystone_miracle_of_thaumaturgy"]=10824, - ["keystone_pain_attunement"]=10825, - ["keystone_point_blank"]=10826, - ["keystone_precise_technique"]=10827, - ["keystone_prismatic_bulwark"]=10828, - ["keystone_projectile_evasion"]=10829, - ["keystone_quiet_might"]=10830, - ["keystone_retaliation_hits"]=10832, - ["keystone_runebinder"]=10833, - ["keystone_sacred_bastion"]=10834, - ["keystone_sacrifice_of_blood"]=10835, - ["keystone_sacrifice_of_blood_if_at_least_8_corrupted_items_equipped"]=7335, - ["keystone_secrets_of_suffering"]=10836, - ["keystone_shared_suffering"]=10837, - ["keystone_shepherd_of_souls"]=10838, - ["keystone_shepherd_of_souls_if_at_least_4_corrupted_items_equipped"]=7333, - ["keystone_solipsism"]=10839, - ["keystone_soul_tether"]=10840, - ["keystone_strong_bowman"]=10841, - ["keystone_supreme_ego"]=10842, - ["keystone_tinctures_drain_life"]=10843, - ["keystone_uhtreds_fury"]=10844, - ["keystone_unwavering_stance"]=10845, - ["keystone_vaal_pact"]=10846, - ["keystone_versatile_combatant"]=10847, - ["keystone_voranas_adaption"]=10848, - ["keystone_wicked_ward"]=10849, - ["keystone_wind_dancer"]=10850, - ["kill_enemy_on_hit_if_under_10%_life"]=2063, - ["kill_enemy_on_hit_if_under_15%_life"]=4236, - ["kill_enemy_on_hit_if_under_20%_life"]=4237, - ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=7336, - ["killed_monster_dropped_gold_+%"]=7337, - ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2718, - ["killed_monster_dropped_item_rarity_+%_on_crit"]=2666, - ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2721, - ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2719, - ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3600, - ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2720, - ["killing_blow_consumes_corpse_restore_10%_life_chance_%"]=7338, - ["kills_count_twice_for_rampage_%"]=7339, - ["kinetic_blast_%_chance_for_additional_blast"]=4140, - ["kinetic_blast_damage_+%"]=3707, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=7340, - ["kinetic_blast_radius_+%"]=3855, - ["kinetic_bolt_attack_speed_+%"]=7341, - ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=7342, - ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=7343, - ["kinetic_bolt_projectile_speed_+%"]=7344, - ["kinetic_wand_base_number_of_zig_zags"]=7345, - ["kinetic_wand_implicit_cannot_roll_caster_modifiers"]=7346, - ["knockback_distance_+%"]=2026, - ["knockback_on_counterattack_%"]=3647, - ["knockback_on_crit_with_bow"]=1976, - ["knockback_on_crit_with_projectile_damage"]=7347, - ["knockback_on_crit_with_staff"]=1977, - ["knockback_on_crit_with_wand"]=1978, - ["knockback_with_bow"]=1547, - ["knockback_with_staff"]=1548, - ["knockback_with_wand"]=1549, - ["labyrinth_darkshrine_additional_divine_font_use_display"]=7348, - ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=7349, - ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=7350, - ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=7351, - ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=7352, - ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=7353, - ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=7354, - ["labyrinth_owner_x_addition_enchants"]=7355, - ["lancing_steel_%_chance_to_not_consume_ammo"]=7359, - ["lancing_steel_damage_+%"]=7356, - ["lancing_steel_impale_chance_%"]=7357, - ["lancing_steel_number_of_additional_projectiles"]=7358, - ["lancing_steel_primary_proj_pierce_num"]=7360, - ["leap_slam_attack_speed_+%"]=3882, - ["leap_slam_damage_+%"]=3678, - ["leap_slam_radius_+%"]=3839, - ["leech_%_is_instant"]=7363, - ["leech_%_is_instant_while_wielding_claw"]=6894, - ["leech_X_life_per_spell_cast"]=2854, - ["leech_energy_shield_instead_of_life"]=7361, - ["leech_mastery_hit_damage_+%_final_vs_leech_immune"]=7362, + ["item_is_haunted"]=7431, + ["item_rarity_+%_while_using_flask"]=2814, + ["jewellery_hellscaping_speed_+%"]=7220, + ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2853, + ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=7432, + ["keystone_acrobatics"]=10955, + ["keystone_ailment_crit"]=10956, + ["keystone_ancestral_bond"]=10957, + ["keystone_avatar_of_fire"]=10958, + ["keystone_battlemage"]=10959, + ["keystone_blood_magic"]=10960, + ["keystone_call_to_arms"]=10961, + ["keystone_chaos_inoculation"]=10962, + ["keystone_cold_purist"]=10963, + ["keystone_conduit"]=10964, + ["keystone_corrupted_defences"]=10965, + ["keystone_crimson_dance"]=10966, + ["keystone_divine_flesh"]=10967, + ["keystone_divine_shield"]=10968, + ["keystone_eldritch_battery"]=10969, + ["keystone_elemental_equilibrium"]=10970, + ["keystone_elemental_overload"]=10971, + ["keystone_emperors_heart"]=10972, + ["keystone_eternal_youth"]=10973, + ["keystone_everlasting_sacrifice"]=10974, + ["keystone_everlasting_sacrifice_if_at_least_6_corrupted_items_equipped"]=7434, + ["keystone_fire_purist"]=10975, + ["keystone_ghost_dance"]=10976, + ["keystone_ghost_reaver"]=10977, + ["keystone_glancing_blows"]=10978, + ["keystone_herald_of_doom"]=10979, + ["keystone_hex_master"]=10980, + ["keystone_hollow_palm_technique"]=10981, + ["keystone_impale"]=10982, + ["keystone_iron_reflexes"]=10983, + ["keystone_lethe_shade"]=10984, + ["keystone_lightning_purist"]=10985, + ["keystone_magebane"]=10986, + ["keystone_mana_shield"]=10987, + ["keystone_medveds_exchange"]=10988, + ["keystone_minion_instability"]=10989, + ["keystone_miracle_of_thaumaturgy"]=10990, + ["keystone_pain_attunement"]=10991, + ["keystone_point_blank"]=10992, + ["keystone_precise_technique"]=10993, + ["keystone_prismatic_bulwark"]=10994, + ["keystone_projectile_evasion"]=10995, + ["keystone_pure_elementalist"]=10996, + ["keystone_quiet_might"]=10997, + ["keystone_retaliation_hits"]=10999, + ["keystone_runebinder"]=11000, + ["keystone_sacred_bastion"]=11001, + ["keystone_sacrifice_of_blood"]=11002, + ["keystone_sacrifice_of_blood_if_at_least_8_corrupted_items_equipped"]=7435, + ["keystone_secrets_of_suffering"]=11003, + ["keystone_shared_suffering"]=11004, + ["keystone_shepherd_of_souls"]=11005, + ["keystone_shepherd_of_souls_if_at_least_4_corrupted_items_equipped"]=7433, + ["keystone_solipsism"]=11006, + ["keystone_soul_tether"]=11007, + ["keystone_strong_bowman"]=11008, + ["keystone_supreme_ego"]=11009, + ["keystone_tinctures_drain_life"]=11010, + ["keystone_uhtreds_fury"]=11011, + ["keystone_unwavering_stance"]=11012, + ["keystone_vaal_pact"]=11013, + ["keystone_versatile_combatant"]=11014, + ["keystone_voranas_adaption"]=11015, + ["keystone_wicked_ward"]=11016, + ["keystone_wind_dancer"]=11017, + ["kill_enemy_on_hit_if_under_10%_life"]=2086, + ["kill_enemy_on_hit_if_under_15%_life"]=4272, + ["kill_enemy_on_hit_if_under_20%_life"]=4273, + ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=7436, + ["killed_monster_dropped_gold_+%"]=7437, + ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2745, + ["killed_monster_dropped_item_rarity_+%_on_crit"]=2692, + ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2748, + ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2746, + ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3636, + ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2747, + ["killing_blow_consumes_corpse_restore_10%_life_chance_%"]=7438, + ["kills_count_twice_for_rampage_%"]=7439, + ["kinetic_blast_%_chance_for_additional_blast"]=4176, + ["kinetic_blast_damage_+%"]=3743, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=7440, + ["kinetic_blast_radius_+%"]=3891, + ["kinetic_bolt_attack_speed_+%"]=7441, + ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=7442, + ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=7443, + ["kinetic_bolt_projectile_speed_+%"]=7444, + ["kinetic_wand_base_number_of_zig_zags"]=7445, + ["kinetic_wand_implicit_cannot_roll_caster_modifiers"]=7446, + ["knockback_distance_+%"]=2049, + ["knockback_on_counterattack_%"]=3683, + ["knockback_on_crit_with_bow"]=1999, + ["knockback_on_crit_with_projectile_damage"]=7447, + ["knockback_on_crit_with_staff"]=2000, + ["knockback_on_crit_with_wand"]=2001, + ["knockback_with_bow"]=1569, + ["knockback_with_staff"]=1570, + ["knockback_with_wand"]=1571, + ["labyrinth_darkshrine_additional_divine_font_use_display"]=7448, + ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=7449, + ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=7450, + ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=7451, + ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=7452, + ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=7453, + ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=7454, + ["labyrinth_owner_x_addition_enchants"]=7455, + ["lancing_steel_%_chance_to_not_consume_ammo"]=7459, + ["lancing_steel_damage_+%"]=7456, + ["lancing_steel_impale_chance_%"]=7457, + ["lancing_steel_number_of_additional_projectiles"]=7458, + ["lancing_steel_primary_proj_pierce_num"]=7460, + ["leap_slam_attack_speed_+%"]=3918, + ["leap_slam_damage_+%"]=3714, + ["leap_slam_radius_+%"]=3875, + ["leech_%_is_instant"]=7463, + ["leech_%_is_instant_per_maximum_power_charge"]=10893, + ["leech_%_is_instant_while_wielding_claw"]=6988, + ["leech_X_life_per_spell_cast"]=2888, + ["leech_energy_shield_instead_of_life"]=7461, + ["leech_mastery_hit_damage_+%_final_vs_leech_immune"]=7462, level=8, - ["life_%_gained_on_kill_if_spent_life_recently"]=2957, - ["life_+%_with_no_corrupted_equipped_items"]=4225, - ["life_and_energy_shield_degeneration_permyriad_per_minute_per_minion"]=7364, - ["life_and_energy_shield_recovery_rate_+%"]=7365, - ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=7366, - ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=7367, - ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=7368, - ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=7369, - ["life_and_mana_gain_per_hit"]=1765, - ["life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"]=7370, - ["life_and_mana_leech_from_physical_damage_permyriad"]=1679, - ["life_degeneration_%_per_minute_not_in_grace"]=1967, - ["life_degeneration_per_minute_not_in_grace"]=1599, - ["life_degeneration_permyriad_per_minute_per_minion"]=7371, - ["life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen"]=3552, - ["life_flask_charges_recovered_per_3_seconds"]=7372, - ["life_flask_charges_recovered_per_3_seconds_on_low_life"]=7373, - ["life_flask_effects_are_not_removed_at_full_life"]=7374, - ["life_flask_recovery_is_instant_while_on_low_life"]=7375, - ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=7376, - ["life_flasks_gain_X_charges_on_suppressing_spell"]=7377, - ["life_flasks_gain_a_charge_on_hit_once_per_second"]=7378, - ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=7379, - ["life_gain_on_ignited_enemy_hit"]=1767, - ["life_gain_per_target"]=1761, - ["life_gain_per_target_hit_while_affected_by_vitality"]=7380, - ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=7381, - ["life_gained_on_attack_hit_vs_cursed_enemies"]=7382, - ["life_gained_on_bleeding_enemy_hit"]=3594, - ["life_gained_on_block"]=1781, - ["life_gained_on_cull"]=7383, - ["life_gained_on_enemy_death_per_frenzy_charge"]=2956, - ["life_gained_on_enemy_death_per_level"]=2995, - ["life_gained_on_hit_per_enemy_status_ailment"]=3099, - ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=7384, - ["life_gained_on_killing_ignited_enemies"]=1777, - ["life_gained_on_spell_hit_per_enemy_status_ailment"]=3100, - ["life_gained_on_taunting_enemy"]=1807, - ["life_leech_%_is_instant"]=7400, - ["life_leech_%_is_instant_per_defiance"]=7401, - ["life_leech_%_is_instant_per_equipped_claw"]=7402, - ["life_leech_applies_to_enemies_%"]=3209, - ["life_leech_applies_to_energy_shield_on_full_life"]=7385, - ["life_leech_does_not_stop_at_full_life"]=3235, - ["life_leech_from_any_damage_permyriad"]=1685, - ["life_leech_from_any_damage_permyriad_per_siphoning_charge"]=4364, - ["life_leech_from_any_damage_permyriad_while_affected_by_vitality"]=7386, - ["life_leech_from_any_damage_permyriad_while_focused"]=7387, - ["life_leech_from_any_damage_permyriad_with_at_least_5_total_power_frenzy_endurance_charges"]=7389, - ["life_leech_from_attack_damage_permyriad_per_frenzy_charge"]=7390, - ["life_leech_from_attack_damage_permyriad_vs_bleeding_enemies"]=1720, - ["life_leech_from_attack_damage_permyriad_vs_maimed_enemies"]=7391, - ["life_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=4204, - ["life_leech_from_attack_damage_permyriad_vs_taunted_enemies"]=7392, - ["life_leech_from_fire_damage_permyriad_while_affected_by_anger"]=7393, - ["life_leech_from_fire_damage_while_ignited_permyriad"]=7394, - ["life_leech_from_minion_damage_%"]=7395, - ["life_leech_from_physical_attack_damage_permyriad"]=1673, - ["life_leech_from_physical_damage_with_bow_permyriad"]=1678, - ["life_leech_from_physical_damage_with_claw_permyriad"]=1677, - ["life_leech_from_skills_used_by_totems_permyriad"]=2606, - ["life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance"]=4400, - ["life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"]=7396, - ["life_leech_is_instant_for_exerted_attacks"]=7397, - ["life_leech_on_damage_taken_%_permyriad"]=7399, - ["life_leech_on_damage_taken_%_permyriad_per_socketed_red_gem"]=7398, - ["life_leech_on_overkill_damage_%"]=3233, - ["life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments"]=3336, - ["life_leech_permyriad_on_crit"]=1719, - ["life_leech_permyriad_vs_cursed_enemies"]=4284, - ["life_leech_permyriad_vs_poisoned_enemies"]=7403, - ["life_leech_speed_+%"]=2181, - ["life_leech_speed_+%_per_equipped_corrupted_item"]=3124, - ["life_leech_speed_is_doubled"]=7404, - ["life_leech_uses_chaos_damage_when_X_corrupted_items_equipped"]=3136, - ["life_loss_%_per_minute_if_have_been_hit_recently"]=7405, - ["life_loss_%_per_minute_per_rage_while_not_losing_rage"]=7406, - ["life_mana_es_leech_speed_+%"]=7407, - ["life_mana_es_recovery_rate_+%_per_different_tribe_tattoos_allocated"]=7408, - ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=7409, - ["life_mastery_count_maximum_life_+%_final"]=7410, - ["life_per_level"]=7411, - ["life_recoup_also_applies_to_energy_shield"]=7412, - ["life_recoup_applies_to_energy_shield_instead"]=7413, - ["life_recovery_+%_from_flasks_while_on_low_life"]=7416, - ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=7414, - ["life_recovery_from_regeneration_is_not_applied"]=7415, - ["life_recovery_rate_+%"]=1602, - ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7417, - ["life_recovery_rate_+%_if_havent_killed_recently"]=7418, - ["life_recovery_rate_+%_while_affected_by_vitality"]=7419, - ["life_regen_per_minute_per_endurance_charge"]=3034, - ["life_regenerate_rate_per_second_%_while_totem_active"]=4076, - ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=7433, - ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=7434, - ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=7420, - ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=7424, - ["life_regeneration_per_minute_%_per_fortification"]=7425, - ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=7426, - ["life_regeneration_per_minute_%_while_burning"]=7427, - ["life_regeneration_per_minute_%_while_channelling"]=7428, - ["life_regeneration_per_minute_%_while_fortified"]=3222, - ["life_regeneration_per_minute_%_while_frozen"]=3765, - ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=4396, - ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=4397, - ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=4395, - ["life_regeneration_per_minute_in_blood_stance"]=10239, - ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=7421, - ["life_regeneration_per_minute_per_active_buff"]=7422, - ["life_regeneration_per_minute_per_nearby_corpse"]=7423, - ["life_regeneration_per_minute_while_affected_by_vitality"]=7429, - ["life_regeneration_per_minute_while_ignited"]=7430, - ["life_regeneration_per_minute_while_moving"]=7431, - ["life_regeneration_per_minute_while_you_have_avians_flight"]=7432, - ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=4226, - ["life_regeneration_rate_+%"]=1601, - ["life_regeneration_rate_+%_while_es_full"]=3101, - ["life_regeneration_rate_per_minute_%"]=1968, - ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=7437, - ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7438, - ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=7439, - ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=7440, - ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7441, - ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=7435, - ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=4247, - ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=7442, - ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=7443, - ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1600, - ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=4425, - ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2652, - ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=7444, - ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=7445, - ["life_regeneration_rate_per_minute_%_per_power_charge"]=7446, - ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=7447, - ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=7448, - ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=2172, - ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1969, - ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=7436, - ["life_regeneration_rate_per_minute_%_while_moving"]=7449, - ["life_regeneration_rate_per_minute_%_while_stationary"]=7450, - ["life_regeneration_rate_per_minute_%_while_using_flask"]=7451, - ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=7452, - ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=3125, - ["life_regeneration_rate_per_minute_per_level"]=2985, - ["life_regeneration_rate_per_minute_while_on_low_life"]=7453, - ["life_reserved_by_stat_%"]=2463, - ["light_radius_+%"]=2524, - ["light_radius_+%_while_phased"]=2533, - ["light_radius_additive_modifiers_apply_to_area_%_value"]=2522, - ["light_radius_additive_modifiers_apply_to_damage"]=2523, - ["light_radius_increases_apply_to_accuracy"]=7454, - ["light_radius_increases_apply_to_area_of_effect"]=7455, - ["light_radius_scales_with_energy_shield"]=2765, - ["lightning_ailment_duration_+%"]=7456, - ["lightning_ailment_effect_+%"]=7458, - ["lightning_ailment_effect_+%_against_chilled_enemies"]=7457, - ["lightning_ailments_effect_+%_final_if_hit_highest_lightning"]=7459, - ["lightning_and_chaos_damage_resistance_%"]=7460, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=7463, - ["lightning_arrow_and_ice_shot_all_damage_can_ignite"]=7461, - ["lightning_arrow_and_ice_shot_ignite_damage_+100%_final_chance"]=7462, - ["lightning_arrow_damage_+%"]=3679, - ["lightning_arrow_maximum_number_of_extra_targets"]=4150, - ["lightning_arrow_radius_+%"]=3840, - ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=7464, - ["lightning_conduit_area_of_effect_+%"]=7465, - ["lightning_conduit_cast_speed_+%"]=7466, - ["lightning_conduit_damage_+%"]=7467, - ["lightning_critical_strike_chance_+%"]=1506, - ["lightning_critical_strike_multiplier_+"]=1532, - ["lightning_damage_%_taken_from_mana_before_life"]=4192, - ["lightning_damage_%_to_add_as_chaos"]=1962, - ["lightning_damage_%_to_add_as_chaos_per_power_charge"]=7470, - ["lightning_damage_%_to_add_as_cold"]=1961, - ["lightning_damage_%_to_add_as_cold_per_2%_shock_effect_on_enemy"]=7471, - ["lightning_damage_%_to_add_as_cold_vs_chilled_enemies"]=7472, - ["lightning_damage_%_to_add_as_fire"]=1960, - ["lightning_damage_+%"]=1401, - ["lightning_damage_+%_per_10_intelligence"]=4156, - ["lightning_damage_+%_per_frenzy_charge"]=2955, - ["lightning_damage_+%_per_lightning_resistance_above_75"]=7469, - ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=7473, - ["lightning_damage_+%_while_affected_by_wrath"]=7474, - ["lightning_damage_can_chill"]=2901, - ["lightning_damage_can_freeze"]=2907, - ["lightning_damage_can_ignite"]=7468, - ["lightning_damage_cannot_shock"]=2913, - ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=7475, - ["lightning_damage_resistance_+%"]=1663, - ["lightning_damage_resistance_is_%"]=1659, - ["lightning_damage_taken_%_as_cold"]=3206, - ["lightning_damage_taken_%_as_fire"]=3204, - ["lightning_damage_taken_+"]=7477, - ["lightning_damage_taken_+%"]=3412, - ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=7476, - ["lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently"]=10735, - ["lightning_damage_to_return_to_melee_attacker"]=2229, - ["lightning_damage_to_return_when_hit"]=2234, - ["lightning_damage_with_attack_skills_+%"]=7478, - ["lightning_damage_with_spell_skills_+%"]=7479, - ["lightning_dot_multiplier_+"]=1281, - ["lightning_explosion_mine_aura_effect_+%"]=7480, - ["lightning_explosion_mine_damage_+%"]=7481, - ["lightning_explosion_mine_throwing_speed_+%"]=7482, - ["lightning_exposure_on_hit_magnitude"]=7483, - ["lightning_golem_damage_+%"]=3720, - ["lightning_golem_elemental_resistances_%"]=4011, - ["lightning_hit_and_dot_damage_%_taken_as_fire"]=7484, - ["lightning_hit_damage_+%_vs_chilled_enemies"]=7485, - ["lightning_resistance_cannot_be_penetrated"]=7486, - ["lightning_resistance_does_not_apply_to_lighting_damage"]=7487, - ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7488, - ["lightning_skill_gem_level_+"]=7490, - ["lightning_skill_gem_level_+_if_6_crusader_items"]=4515, - ["lightning_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped"]=7489, - ["lightning_skill_mana_cost_+%_final_while_shocked"]=7491, - ["lightning_skill_stun_threshold_+%"]=7492, - ["lightning_skills_chance_to_poison_on_hit_%"]=7493, - ["lightning_spell_physical_damage_%_to_convert_to_lightning"]=7494, - ["lightning_spell_skill_gem_level_+"]=1636, - ["lightning_strike_additional_pierce"]=3978, - ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7495, - ["lightning_strike_and_frost_blades_ignite_damage_+100%_final_chance"]=7496, - ["lightning_strike_damage_+%"]=3663, - ["lightning_strike_num_of_additional_projectiles"]=3969, - ["lightning_tendrils_critical_strike_chance_+%"]=4136, - ["lightning_tendrils_damage_+%"]=3664, - ["lightning_tendrils_radius_+%"]=3833, - ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7497, - ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7498, - ["lightning_tower_trap_additional_number_of_beams"]=7499, - ["lightning_tower_trap_cast_speed_+%"]=7500, - ["lightning_tower_trap_cooldown_speed_+%"]=7501, - ["lightning_tower_trap_damage_+%"]=7502, - ["lightning_tower_trap_duration_+%"]=7503, - ["lightning_tower_trap_throwing_speed_+%"]=7504, - ["lightning_trap_additional_pierce"]=3979, - ["lightning_trap_cooldown_speed_+%"]=3444, - ["lightning_trap_damage_+%"]=3442, - ["lightning_trap_lightning_resistance_penetration_%"]=7505, - ["lightning_trap_number_of_additional_projectiles"]=3443, - ["lightning_trap_shock_effect_+%"]=7506, - ["lightning_warp_cast_speed_+%"]=3897, - ["lightning_warp_damage_+%"]=3680, - ["lightning_warp_duration_+%"]=3957, - ["lightning_weakness_ignores_hexproof"]=2630, - ["link_buff_effect_+%_on_animate_guardian"]=7507, - ["link_effect_+%_when_50%_expired"]=7508, - ["link_grace_period_8_second_override"]=7509, - ["link_skill_buff_effect_+%"]=7510, - ["link_skill_buff_effect_+%_if_linked_target_recently"]=7511, - ["link_skill_cast_speed_+%"]=7512, - ["link_skill_cost_life_instead_of_mana"]=7513, - ["link_skill_duration_+%"]=7514, - ["link_skill_gem_level_+"]=7515, - ["link_skill_link_target_cannot_die_for_X_seconds"]=7516, - ["link_skill_lose_no_experience_on_link_target_death"]=7517, - ["link_skill_mana_cost_+%"]=7518, - ["link_skill_range_+%"]=7519, - ["link_skills_allies_in_beam_lucky_elemental_damage"]=7520, - ["link_skills_allies_in_beam_max_elemental_resistance_%"]=7521, - ["link_skills_can_target_animate_guardian"]=7522, - ["link_skills_can_target_minions"]=7523, - ["link_skills_enemies_in_beam_aoe_cannot_inflict_elemental_ailments"]=7524, - ["link_skills_enemies_in_beam_elemental_resistance_%"]=7525, - ["link_skills_grant_damage_+%"]=7526, - ["link_skills_grant_damage_taken_+%"]=7527, - ["link_skills_grant_minions_damage_taken_+%_final_from_hallowed_monarch"]=7528, - ["link_skills_grant_random_linked_minion_rare_monster_mods_on_kill_centiseconds"]=7529, - ["link_skills_grant_redirect_curses_to_link_source"]=7530, - ["link_skills_grant_redirect_elemental_ailments_to_link_source"]=7531, - ["link_to_X_additional_random_allies"]=7532, - ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7533, - ["local_accuracy_rating"]=2048, - ["local_accuracy_rating_+%"]=2049, - ["local_accuracy_rating_+%_per_2%_quality"]=7534, - ["local_adaptation_rating"]=1557, - ["local_adaptation_rating_+%"]=1559, - ["local_additional_block_chance_%"]=2273, - ["local_affliction_jewel_display_small_nodes_grant_nothing"]=7535, - ["local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute"]=7572, - ["local_affliction_jewel_small_nodes_grant_all_attributes"]=7536, - ["local_affliction_jewel_small_nodes_grant_armour"]=7537, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald"]=7538, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills"]=7539, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills"]=7540, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills"]=7541, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills"]=7542, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills"]=7543, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills"]=7544, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills"]=7545, - ["local_affliction_jewel_small_nodes_grant_attack_speed_+%"]=7546, - ["local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%"]=7547, - ["local_affliction_jewel_small_nodes_grant_base_cast_speed_+%"]=7548, - ["local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+"]=7549, - ["local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%"]=7550, - ["local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%"]=7551, - ["local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%"]=7552, - ["local_affliction_jewel_small_nodes_grant_chaos_resistance_%"]=7553, - ["local_affliction_jewel_small_nodes_grant_charges_gained_+%"]=7554, - ["local_affliction_jewel_small_nodes_grant_cold_resistance_%"]=7555, - ["local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%"]=7556, - ["local_affliction_jewel_small_nodes_grant_damage_+%"]=7558, - ["local_affliction_jewel_small_nodes_grant_damage_over_time_+%"]=7557, - ["local_affliction_jewel_small_nodes_grant_dex"]=7559, - ["local_affliction_jewel_small_nodes_grant_elemental_resistance_%"]=7560, - ["local_affliction_jewel_small_nodes_grant_evasion"]=7561, - ["local_affliction_jewel_small_nodes_grant_fire_resistance_%"]=7562, - ["local_affliction_jewel_small_nodes_grant_int"]=7563, - ["local_affliction_jewel_small_nodes_grant_lightning_resistance_%"]=7564, - ["local_affliction_jewel_small_nodes_grant_mana_regeneration_+%"]=7565, - ["local_affliction_jewel_small_nodes_grant_maximum_energy_shield"]=7566, - ["local_affliction_jewel_small_nodes_grant_maximum_life"]=7567, - ["local_affliction_jewel_small_nodes_grant_maximum_mana"]=7568, - ["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%"]=7569, - ["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=7570, - ["local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%"]=7571, - ["local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%"]=7573, - ["local_affliction_jewel_small_nodes_grant_str"]=7574, - ["local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%"]=7575, - ["local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%"]=7576, - ["local_affliction_jewel_small_nodes_grant_warcry_duration_+%"]=7577, - ["local_affliction_jewel_small_nodes_have_effect_+%"]=7578, - ["local_affliction_notable_adrenaline"]=7579, - ["local_affliction_notable_advance_guard"]=7580, - ["local_affliction_notable_aerialist"]=7581, - ["local_affliction_notable_aerodynamics"]=7582, - ["local_affliction_notable_agent_of_destruction"]=7583, - ["local_affliction_notable_aggressive_defence"]=7584, - ["local_affliction_notable_alchemist"]=7585, - ["local_affliction_notable_ancestral_echo"]=7586, - ["local_affliction_notable_ancestral_guidance"]=7587, - ["local_affliction_notable_ancestral_inspiration"]=7588, - ["local_affliction_notable_ancestral_might"]=7589, - ["local_affliction_notable_ancestral_preservation"]=7590, - ["local_affliction_notable_ancestral_reach"]=7591, - ["local_affliction_notable_antifreeze"]=7592, - ["local_affliction_notable_antivenom"]=7593, - ["local_affliction_notable_arcane_focus"]=7594, - ["local_affliction_notable_arcane_heroism"]=7595, - ["local_affliction_notable_arcane_pyrotechnics"]=7596, - ["local_affliction_notable_arcing_shot"]=7597, - ["local_affliction_notable_assert_dominance"]=7598, - ["local_affliction_notable_astonishing_affliction"]=7599, - ["local_affliction_notable_basics_of_pain"]=7600, - ["local_affliction_notable_battle_hardened"]=7601, - ["local_affliction_notable_battlefield_dominator"]=7602, - ["local_affliction_notable_blacksmith"]=7603, - ["local_affliction_notable_blanketed_snow"]=7604, - ["local_affliction_notable_blast_freeze"]=7605, - ["local_affliction_notable_blessed"]=7606, - ["local_affliction_notable_blessed_rebirth"]=7607, - ["local_affliction_notable_blood_artist"]=7608, - ["local_affliction_notable_bloodscent"]=7609, - ["local_affliction_notable_blowback"]=7610, - ["local_affliction_notable_bodyguards"]=7611, - ["local_affliction_notable_born_of_chaos"]=7612, - ["local_affliction_notable_brand_loyalty"]=7613, - ["local_affliction_notable_brewed_for_potency"]=7614, - ["local_affliction_notable_broadside"]=7615, - ["local_affliction_notable_brush_with_death"]=7616, - ["local_affliction_notable_brutal_infamy"]=7617, - ["local_affliction_notable_burden_projection"]=7618, - ["local_affliction_notable_burning_bright"]=7619, - ["local_affliction_notable_calamitous"]=7620, - ["local_affliction_notable_call_to_the_slaughter"]=7621, - ["local_affliction_notable_capacitor"]=7622, - ["local_affliction_notable_careful_handling"]=7623, - ["local_affliction_notable_chilling_presence"]=7624, - ["local_affliction_notable_chip_away"]=7625, - ["local_affliction_notable_circling_oblivion"]=7626, - ["local_affliction_notable_clarity_of_purpose"]=7627, - ["local_affliction_notable_cold_blooded_killer"]=7628, - ["local_affliction_notable_cold_conduction"]=7629, - ["local_affliction_notable_cold_to_the_core"]=7630, - ["local_affliction_notable_combat_rhythm"]=7631, - ["local_affliction_notable_compound_injury"]=7632, - ["local_affliction_notable_confident_combatant"]=7633, - ["local_affliction_notable_conjured_wall"]=7634, - ["local_affliction_notable_conservation_of_energy"]=7635, - ["local_affliction_notable_cooked_alive"]=7636, - ["local_affliction_notable_corrosive_elements"]=7637, - ["local_affliction_notable_cremator"]=7638, - ["local_affliction_notable_cry_wolf"]=7639, - ["local_affliction_notable_cult_leader"]=7640, - ["local_affliction_notable_daring_ideas"]=7641, - ["local_affliction_notable_dark_discourse"]=7642, - ["local_affliction_notable_dark_ideation"]=7643, - ["local_affliction_notable_dark_messenger"]=7644, - ["local_affliction_notable_darting_movements"]=7645, - ["local_affliction_notable_deadly_repartee"]=7646, - ["local_affliction_notable_deep_chill"]=7647, - ["local_affliction_notable_deep_cuts"]=7648, - ["local_affliction_notable_depression"]=7649, - ["local_affliction_notable_determined_preparation"]=7650, - ["local_affliction_notable_devastator"]=7651, - ["local_affliction_notable_disciples"]=7652, - ["local_affliction_notable_disciplined_preparation"]=7653, - ["local_affliction_notable_disease_vector"]=7654, - ["local_affliction_notable_disorienting_display"]=7655, - ["local_affliction_notable_disorienting_wounds"]=7656, - ["local_affliction_notable_distilled_perfection"]=7657, - ["local_affliction_notable_doedres_apathy"]=7658, - ["local_affliction_notable_doedres_gluttony"]=7659, - ["local_affliction_notable_doryanis_lesson"]=7660, - ["local_affliction_notable_dragon_hunter"]=7661, - ["local_affliction_notable_dread_march"]=7662, - ["local_affliction_notable_drive_the_destruction"]=7663, - ["local_affliction_notable_eldritch_inspiration"]=7664, - ["local_affliction_notable_elegant_form"]=7665, - ["local_affliction_notable_empowered_envoy"]=7666, - ["local_affliction_notable_endbringer"]=7667, - ["local_affliction_notable_enduring_composure"]=7668, - ["local_affliction_notable_enduring_focus"]=7669, - ["local_affliction_notable_enduring_ward"]=7670, - ["local_affliction_notable_energy_from_naught"]=7671, - ["local_affliction_notable_essence_rush"]=7672, - ["local_affliction_notable_eternal_suffering"]=7673, - ["local_affliction_notable_evil_eye"]=7674, - ["local_affliction_notable_expansive_might"]=7675, - ["local_affliction_notable_expendability"]=7676, - ["local_affliction_notable_expert_sabotage"]=7677, - ["local_affliction_notable_explosive_force"]=7678, - ["local_affliction_notable_exposure_therapy"]=7679, - ["local_affliction_notable_eye_of_the_storm"]=7680, - ["local_affliction_notable_eye_to_eye"]=7681, - ["local_affliction_notable_fan_of_blades"]=7682, - ["local_affliction_notable_fan_the_flames"]=7683, - ["local_affliction_notable_fasting"]=7684, - ["local_affliction_notable_fearsome_warrior"]=7685, - ["local_affliction_notable_feast_of_flesh"]=7686, - ["local_affliction_notable_feasting_fiends"]=7687, - ["local_affliction_notable_feed_the_fury"]=7688, - ["local_affliction_notable_fettle"]=7689, - ["local_affliction_notable_fiery_aegis"]=7690, - ["local_affliction_notable_fire_attunement"]=7691, - ["local_affliction_notable_first_among_equals"]=7692, - ["local_affliction_notable_flaming_doom"]=7693, - ["local_affliction_notable_flexible_sentry"]=7694, - ["local_affliction_notable_flow_of_life"]=7695, - ["local_affliction_notable_follow_through"]=7696, - ["local_affliction_notable_force_multiplier"]=7697, - ["local_affliction_notable_frost_breath"]=7698, - ["local_affliction_notable_fuel_the_fight"]=7699, - ["local_affliction_notable_furious_assault"]=7700, - ["local_affliction_notable_genius"]=7701, - ["local_affliction_notable_gladiatorial_combat"]=7702, - ["local_affliction_notable_gladiators_fortitude"]=7703, - ["local_affliction_notable_graceful_execution"]=7704, - ["local_affliction_notable_graceful_preparation"]=7705, - ["local_affliction_notable_grand_design"]=7706, - ["local_affliction_notable_grim_oath"]=7707, - ["local_affliction_notable_grounded_commander"]=7708, - ["local_affliction_notable_guerilla_tactics"]=7709, - ["local_affliction_notable_haemorrhage"]=7710, - ["local_affliction_notable_haunting_shout"]=7711, - ["local_affliction_notable_heart_of_iron"]=7712, - ["local_affliction_notable_heavy_hitter"]=7713, - ["local_affliction_notable_heavy_trauma"]=7714, - ["local_affliction_notable_heraldry"]=7715, - ["local_affliction_notable_hex_breaker"]=7716, - ["local_affliction_notable_hibernator"]=7717, - ["local_affliction_notable_hit_and_run"]=7718, - ["local_affliction_notable_holistic_health"]=7719, - ["local_affliction_notable_holy_conquest"]=7720, - ["local_affliction_notable_holy_word"]=7721, - ["local_affliction_notable_hounds_mark"]=7722, - ["local_affliction_notable_hulking_corpses"]=7723, - ["local_affliction_notable_improvisor"]=7724, - ["local_affliction_notable_insatiable_killer"]=7725, - ["local_affliction_notable_inspired_oppression"]=7726, - ["local_affliction_notable_insulated"]=7727, - ["local_affliction_notable_intensity"]=7728, - ["local_affliction_notable_invigorating_portents"]=7729, - ["local_affliction_notable_iron_breaker"]=7730, - ["local_affliction_notable_lasting_impression"]=7731, - ["local_affliction_notable_lead_by_example"]=7732, - ["local_affliction_notable_life_from_death"]=7733, - ["local_affliction_notable_lightnings_call"]=7734, - ["local_affliction_notable_liquid_inspiration"]=7735, - ["local_affliction_notable_low_tolerance"]=7736, - ["local_affliction_notable_mage_bane"]=7737, - ["local_affliction_notable_mage_hunter"]=7738, - ["local_affliction_notable_magnifier"]=7739, - ["local_affliction_notable_martial_mastery"]=7740, - ["local_affliction_notable_martial_momentum"]=7741, - ["local_affliction_notable_martial_prowess"]=7742, - ["local_affliction_notable_master_of_command"]=7743, - ["local_affliction_notable_master_of_fear"]=7744, - ["local_affliction_notable_master_of_fire"]=7745, - ["local_affliction_notable_master_of_the_maelstrom"]=7746, - ["local_affliction_notable_master_the_fundamentals"]=7747, - ["local_affliction_notable_menders_wellspring"]=7748, - ["local_affliction_notable_militarism"]=7749, - ["local_affliction_notable_mindfulness"]=7750, - ["local_affliction_notable_mob_mentality"]=7751, - ["local_affliction_notable_molten_ones_mark"]=7752, - ["local_affliction_notable_mystical_ward"]=7753, - ["local_affliction_notable_natural_vigour"]=7754, - ["local_affliction_notable_no_witnesses"]=7755, - ["local_affliction_notable_non_flammable"]=7756, - ["local_affliction_notable_numbing_elixir"]=7757, - ["local_affliction_notable_one_with_the_shield"]=7758, - ["local_affliction_notable_openness"]=7759, - ["local_affliction_notable_opportunistic_fusilade"]=7760, - ["local_affliction_notable_overlord"]=7761, - ["local_affliction_notable_overshock"]=7762, - ["local_affliction_notable_overwhelming_malice"]=7763, - ["local_affliction_notable_paralysis"]=7764, - ["local_affliction_notable_peace_amidst_chaos"]=7765, - ["local_affliction_notable_peak_vigour"]=7766, - ["local_affliction_notable_phlebotomist"]=7767, - ["local_affliction_notable_powerful_assault"]=7768, - ["local_affliction_notable_powerful_ward"]=7769, - ["local_affliction_notable_practiced_caster"]=7770, - ["local_affliction_notable_precise_commander"]=7771, - ["local_affliction_notable_precise_focus"]=7772, - ["local_affliction_notable_precise_retaliation"]=7773, - ["local_affliction_notable_pressure_points"]=7774, - ["local_affliction_notable_primordial_bond"]=7775, - ["local_affliction_notable_prismatic_carapace"]=7776, - ["local_affliction_notable_prismatic_dance"]=7777, - ["local_affliction_notable_prismatic_heart"]=7778, - ["local_affliction_notable_prodigious_defense"]=7779, - ["local_affliction_notable_provocateur"]=7780, - ["local_affliction_notable_pure_agony"]=7781, - ["local_affliction_notable_pure_aptitude"]=7782, - ["local_affliction_notable_pure_commander"]=7783, - ["local_affliction_notable_pure_guile"]=7784, - ["local_affliction_notable_pure_might"]=7785, - ["local_affliction_notable_purposeful_harbinger"]=7786, - ["local_affliction_notable_quick_and_deadly"]=7787, - ["local_affliction_notable_quick_getaway"]=7788, - ["local_affliction_notable_rapid_infusion"]=7789, - ["local_affliction_notable_rattling_bellow"]=7790, - ["local_affliction_notable_raze_and_pillage"]=7791, - ["local_affliction_notable_readiness"]=7792, - ["local_affliction_notable_remarkable"]=7793, - ["local_affliction_notable_rend"]=7794, - ["local_affliction_notable_renewal"]=7795, - ["local_affliction_notable_repeater"]=7796, - ["local_affliction_notable_replenishing_presence"]=7797, - ["local_affliction_notable_riot_queller"]=7798, - ["local_affliction_notable_rot_resistant"]=7799, - ["local_affliction_notable_rote_reinforcement"]=7800, - ["local_affliction_notable_rotten_claws"]=7801, - ["local_affliction_notable_run_through"]=7802, - ["local_affliction_notable_sadist"]=7803, - ["local_affliction_notable_sage"]=7804, - ["local_affliction_notable_sap_psyche"]=7805, - ["local_affliction_notable_savage_response"]=7806, - ["local_affliction_notable_savour_the_moment"]=7807, - ["local_affliction_notable_scintillating_idea"]=7808, - ["local_affliction_notable_seal_mender"]=7809, - ["local_affliction_notable_second_skin"]=7810, - ["local_affliction_notable_seeker_runes"]=7811, - ["local_affliction_notable_self_fulfilling_prophecy"]=7812, - ["local_affliction_notable_septic_spells"]=7813, - ["local_affliction_notable_set_and_forget"]=7814, - ["local_affliction_notable_shifting_shadow"]=7815, - ["local_affliction_notable_shrieking_bolts"]=7816, - ["local_affliction_notable_skeletal_atrophy"]=7817, - ["local_affliction_notable_skullbreaker"]=7818, - ["local_affliction_notable_sleepless_sentries"]=7819, - ["local_affliction_notable_smite_the_weak"]=7820, - ["local_affliction_notable_smoking_remains"]=7821, - ["local_affliction_notable_snaring_spirits"]=7822, - ["local_affliction_notable_snowstorm"]=7823, - ["local_affliction_notable_special_reserve"]=7824, - ["local_affliction_notable_spiked_concoction"]=7825, - ["local_affliction_notable_spring_back"]=7826, - ["local_affliction_notable_stalwart_commander"]=7827, - ["local_affliction_notable_steady_torment"]=7828, - ["local_affliction_notable_stoic_focus"]=7829, - ["local_affliction_notable_storm_drinker"]=7830, - ["local_affliction_notable_stormrider"]=7831, - ["local_affliction_notable_storms_hand"]=7832, - ["local_affliction_notable_streamlined"]=7833, - ["local_affliction_notable_strike_leader"]=7834, - ["local_affliction_notable_stubborn_student"]=7835, - ["local_affliction_notable_student_of_decay"]=7836, - ["local_affliction_notable_sublime_sensation"]=7837, - ["local_affliction_notable_summer_commander"]=7838, - ["local_affliction_notable_supercharge"]=7839, - ["local_affliction_notable_surefooted_striker"]=7840, - ["local_affliction_notable_surging_vitality"]=7841, - ["local_affliction_notable_surprise_sabotage"]=7842, - ["local_affliction_notable_tempered_arrowheads"]=7843, - ["local_affliction_notable_thaumophage"]=7844, - ["local_affliction_notable_thunderstruck"]=7845, - ["local_affliction_notable_titanic_swings"]=7846, - ["local_affliction_notable_touch_of_cruelty"]=7847, - ["local_affliction_notable_towering_threat"]=7848, - ["local_affliction_notable_unholy_grace"]=7849, - ["local_affliction_notable_unspeakable_gifts"]=7850, - ["local_affliction_notable_untouchable"]=7851, - ["local_affliction_notable_unwavering_focus"]=7852, - ["local_affliction_notable_unwaveringly_evil"]=7853, - ["local_affliction_notable_vast_power"]=7854, - ["local_affliction_notable_vengeful_commander"]=7855, - ["local_affliction_notable_veteran_defender"]=7856, - ["local_affliction_notable_vicious_bite"]=7857, - ["local_affliction_notable_vicious_guard_"]=7858, - ["local_affliction_notable_vicious_skewering"]=7859, - ["local_affliction_notable_victim_maker"]=7860, - ["local_affliction_notable_vile_reinvigoration"]=7861, - ["local_affliction_notable_vital_focus"]=7862, - ["local_affliction_notable_vivid_hues"]=7863, - ["local_affliction_notable_wall_of_muscle"]=7864, - ["local_affliction_notable_wardbreaker"]=7865, - ["local_affliction_notable_warning_call"]=7866, - ["local_affliction_notable_wasting_affliction"]=7867, - ["local_affliction_notable_weight_advantage"]=7868, - ["local_affliction_notable_whispers_of_death"]=7869, - ["local_affliction_notable_wicked_pall"]=7870, - ["local_affliction_notable_widespread_destruction"]=7871, - ["local_affliction_notable_will_shaper"]=7872, - ["local_affliction_notable_wind_up"]=7873, - ["local_affliction_notable_winter_commander"]=7874, - ["local_affliction_notable_winter_prowler"]=7875, - ["local_affliction_notable_wish_for_death"]=7876, - ["local_affliction_notable_wizardry"]=7877, - ["local_affliction_notable_wound_aggravation"]=7878, - ["local_affliction_notable_wrapped_in_flame"]=7879, - ["local_all_damage_can_poison"]=2494, - ["local_all_sockets_are_blue"]=97, - ["local_all_sockets_are_green"]=98, - ["local_all_sockets_are_red"]=99, - ["local_all_sockets_are_white"]=100, - ["local_all_sockets_linked"]=95, - ["local_always_hit"]=2067, - ["local_apply_extra_herald_mod_when_synthesised"]=10736, - ["local_area_of_effect_+%_per_4%_quality"]=7880, - ["local_armour_and_energy_shield_+%"]=1576, - ["local_armour_and_evasion_+%"]=1577, - ["local_armour_and_evasion_and_energy_shield_+%"]=1579, - ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7881, - ["local_attack_cast_movement_speed_+%_during_flask_effect"]=1072, - ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=1073, - ["local_attack_damage_+%_if_item_corrupted"]=7882, - ["local_attack_maximum_added_physical_damage_per_3_levels"]=1293, - ["local_attack_minimum_added_physical_damage_per_3_levels"]=1293, - ["local_attack_speed_+%"]=1437, - ["local_attack_speed_+%_per_8%_quality"]=7883, - ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7884, - ["local_attacks_impale_on_hit_%_chance"]=7885, - ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7886, - ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7887, - ["local_attacks_with_this_weapon_elemental_damage_+%"]=2953, - ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2968, - ["local_attribute_requirements_+%"]=1099, - ["local_avoid_chill_%_during_flask_effect"]=987, - ["local_avoid_freeze_%_during_flask_effect"]=988, - ["local_avoid_ignite_%_during_flask_effect"]=989, - ["local_avoid_shock_%_during_flask_effect"]=990, - ["local_base_evasion_rating"]=1572, - ["local_base_physical_damage_reduction_rating"]=1564, - ["local_bleed_on_critical_strike_chance_%"]=7888, - ["local_bleed_on_hit"]=2504, - ["local_bleeding_ailment_dot_multiplier_+"]=7889, - ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7890, - ["local_block_chance_+%"]=114, - ["local_can_be_anointed"]=7891, - ["local_can_have_X_additional_runesmith_enchantments"]=7892, + ["life_%_gained_on_kill_if_spent_life_recently"]=2991, + ["life_+%_with_no_corrupted_equipped_items"]=4261, + ["life_and_energy_shield_degeneration_permyriad_per_minute_per_minion"]=7464, + ["life_and_energy_shield_recovery_rate_+%"]=7465, + ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=7466, + ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=7467, + ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=7468, + ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=7469, + ["life_and_mana_gain_per_hit"]=1788, + ["life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"]=7470, + ["life_and_mana_leech_from_physical_damage_permyriad"]=1702, + ["life_degeneration_%_per_minute_not_in_grace"]=1990, + ["life_degeneration_per_10_seconds_not_in_grace"]=1621, + ["life_degeneration_per_minute_not_in_grace"]=1622, + ["life_degeneration_permyriad_per_minute_per_minion"]=7471, + ["life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen"]=3588, + ["life_flask_charges_recovered_per_3_seconds"]=7472, + ["life_flask_charges_recovered_per_3_seconds_on_low_life"]=7473, + ["life_flask_effects_are_not_removed_at_full_life"]=7474, + ["life_flask_recovery_is_instant_while_on_low_life"]=7475, + ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=7476, + ["life_flasks_gain_X_charges_on_suppressing_spell"]=7477, + ["life_flasks_gain_a_charge_on_hit_once_per_second"]=7478, + ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=7479, + ["life_gain_on_ignited_enemy_hit"]=1790, + ["life_gain_per_target"]=1784, + ["life_gain_per_target_hit_while_affected_by_vitality"]=7480, + ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=7481, + ["life_gained_on_attack_hit_vs_cursed_enemies"]=7482, + ["life_gained_on_bleeding_enemy_hit"]=3630, + ["life_gained_on_block"]=1804, + ["life_gained_on_cull"]=7483, + ["life_gained_on_enemy_death_per_frenzy_charge"]=2990, + ["life_gained_on_enemy_death_per_level"]=3029, + ["life_gained_on_hit_per_enemy_status_ailment"]=3133, + ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=7484, + ["life_gained_on_killing_ignited_enemies"]=1800, + ["life_gained_on_spell_hit_per_enemy_status_ailment"]=3134, + ["life_gained_on_taunting_enemy"]=1830, + ["life_leech_%_is_instant"]=7500, + ["life_leech_%_is_instant_per_defiance"]=7501, + ["life_leech_%_is_instant_per_equipped_claw"]=7502, + ["life_leech_applies_to_enemies_%"]=3245, + ["life_leech_applies_to_energy_shield_on_full_life"]=7485, + ["life_leech_does_not_stop_at_full_life"]=3271, + ["life_leech_from_any_damage_permyriad"]=1708, + ["life_leech_from_any_damage_permyriad_per_siphoning_charge"]=4402, + ["life_leech_from_any_damage_permyriad_while_affected_by_vitality"]=7486, + ["life_leech_from_any_damage_permyriad_while_focused"]=7487, + ["life_leech_from_any_damage_permyriad_with_at_least_5_total_power_frenzy_endurance_charges"]=7489, + ["life_leech_from_attack_damage_permyriad_per_frenzy_charge"]=7490, + ["life_leech_from_attack_damage_permyriad_vs_bleeding_enemies"]=1743, + ["life_leech_from_attack_damage_permyriad_vs_maimed_enemies"]=7491, + ["life_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=4240, + ["life_leech_from_attack_damage_permyriad_vs_taunted_enemies"]=7492, + ["life_leech_from_fire_damage_permyriad_while_affected_by_anger"]=7493, + ["life_leech_from_fire_damage_while_ignited_permyriad"]=7494, + ["life_leech_from_minion_damage_%"]=7495, + ["life_leech_from_physical_attack_damage_permyriad"]=1696, + ["life_leech_from_physical_damage_with_bow_permyriad"]=1701, + ["life_leech_from_physical_damage_with_claw_permyriad"]=1700, + ["life_leech_from_skills_used_by_totems_permyriad"]=2632, + ["life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance"]=4438, + ["life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"]=7496, + ["life_leech_is_instant_for_exerted_attacks"]=7497, + ["life_leech_on_damage_taken_%_permyriad"]=7499, + ["life_leech_on_damage_taken_%_permyriad_per_socketed_red_gem"]=7498, + ["life_leech_on_overkill_damage_%"]=3269, + ["life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments"]=3372, + ["life_leech_permyriad_on_crit"]=1742, + ["life_leech_permyriad_vs_cursed_enemies"]=4320, + ["life_leech_permyriad_vs_poisoned_enemies"]=7503, + ["life_leech_speed_+%"]=2204, + ["life_leech_speed_+%_per_equipped_corrupted_item"]=3158, + ["life_leech_speed_is_doubled"]=7504, + ["life_leech_uses_chaos_damage_when_X_corrupted_items_equipped"]=3170, + ["life_loss_%_per_minute_if_have_been_hit_recently"]=7505, + ["life_loss_%_per_minute_per_rage_while_not_losing_rage"]=7506, + ["life_mana_es_leech_speed_+%"]=7507, + ["life_mana_es_recovery_rate_+%_per_different_tribe_tattoos_allocated"]=7508, + ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=7509, + ["life_mastery_count_maximum_life_+%_final"]=7510, + ["life_per_level"]=7511, + ["life_recoup_also_applies_to_energy_shield"]=7512, + ["life_recoup_applies_to_energy_shield_instead"]=7513, + ["life_recovery_+%_from_flasks_while_on_low_life"]=7516, + ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=7514, + ["life_recovery_from_regeneration_is_not_applied"]=7515, + ["life_recovery_rate_+%"]=1625, + ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7517, + ["life_recovery_rate_+%_if_havent_killed_recently"]=7518, + ["life_recovery_rate_+%_while_affected_by_vitality"]=7519, + ["life_regen_per_minute_per_endurance_charge"]=3068, + ["life_regenerate_rate_per_second_%_while_totem_active"]=4112, + ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=7533, + ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=7534, + ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=7520, + ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=7524, + ["life_regeneration_per_minute_%_per_fortification"]=7525, + ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=7526, + ["life_regeneration_per_minute_%_while_burning"]=7527, + ["life_regeneration_per_minute_%_while_channelling"]=7528, + ["life_regeneration_per_minute_%_while_fortified"]=3258, + ["life_regeneration_per_minute_%_while_frozen"]=3801, + ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=4434, + ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=4435, + ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=4433, + ["life_regeneration_per_minute_in_blood_stance"]=10386, + ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=7521, + ["life_regeneration_per_minute_per_active_buff"]=7522, + ["life_regeneration_per_minute_per_nearby_corpse"]=7523, + ["life_regeneration_per_minute_while_affected_by_vitality"]=7529, + ["life_regeneration_per_minute_while_ignited"]=7530, + ["life_regeneration_per_minute_while_moving"]=7531, + ["life_regeneration_per_minute_while_you_have_avians_flight"]=7532, + ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=4262, + ["life_regeneration_rate_+%"]=1624, + ["life_regeneration_rate_+%_while_es_full"]=3135, + ["life_regeneration_rate_per_minute_%"]=1991, + ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=7537, + ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7538, + ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=7539, + ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=7540, + ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7541, + ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=7535, + ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=4283, + ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=7542, + ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=7543, + ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1623, + ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=4463, + ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2678, + ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=7544, + ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=7545, + ["life_regeneration_rate_per_minute_%_per_power_charge"]=7546, + ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=7547, + ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=7548, + ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=2195, + ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1992, + ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=7536, + ["life_regeneration_rate_per_minute_%_while_moving"]=7549, + ["life_regeneration_rate_per_minute_%_while_stationary"]=7550, + ["life_regeneration_rate_per_minute_%_while_using_flask"]=7551, + ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=7552, + ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=3159, + ["life_regeneration_rate_per_minute_per_level"]=3019, + ["life_regeneration_rate_per_minute_while_on_low_life"]=7553, + ["life_reserved_by_stat_%"]=2488, + ["light_radius_+%"]=2550, + ["light_radius_+%_while_phased"]=2559, + ["light_radius_additive_modifiers_apply_to_area_%_value"]=2548, + ["light_radius_additive_modifiers_apply_to_buff_effect_of_link_skills_if_link_target_is_your_permanent_mercenary"]=7554, + ["light_radius_additive_modifiers_apply_to_damage"]=2549, + ["light_radius_increases_apply_to_accuracy"]=7555, + ["light_radius_increases_apply_to_area_of_effect"]=7556, + ["light_radius_scales_with_energy_shield"]=2799, + ["lightning_ailment_duration_+%"]=7557, + ["lightning_ailment_effect_+%"]=7559, + ["lightning_ailment_effect_+%_against_chilled_enemies"]=7558, + ["lightning_ailments_effect_+%_final_if_hit_highest_lightning"]=7560, + ["lightning_and_chaos_damage_resistance_%"]=7561, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=7564, + ["lightning_arrow_and_ice_shot_all_damage_can_ignite"]=7562, + ["lightning_arrow_and_ice_shot_ignite_damage_+100%_final_chance"]=7563, + ["lightning_arrow_damage_+%"]=3715, + ["lightning_arrow_maximum_number_of_extra_targets"]=4186, + ["lightning_arrow_radius_+%"]=3876, + ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=7565, + ["lightning_conduit_area_of_effect_+%"]=7566, + ["lightning_conduit_cast_speed_+%"]=7567, + ["lightning_conduit_damage_+%"]=7568, + ["lightning_critical_strike_chance_+%"]=1529, + ["lightning_critical_strike_multiplier_+"]=1555, + ["lightning_damage_%_taken_from_mana_before_life"]=4228, + ["lightning_damage_%_to_add_as_chaos"]=1985, + ["lightning_damage_%_to_add_as_chaos_per_power_charge"]=7571, + ["lightning_damage_%_to_add_as_cold"]=1984, + ["lightning_damage_%_to_add_as_cold_per_2%_shock_effect_on_enemy"]=7572, + ["lightning_damage_%_to_add_as_cold_vs_chilled_enemies"]=7573, + ["lightning_damage_%_to_add_as_fire"]=1983, + ["lightning_damage_+%"]=1425, + ["lightning_damage_+%_per_10_intelligence"]=4192, + ["lightning_damage_+%_per_frenzy_charge"]=2989, + ["lightning_damage_+%_per_lightning_resistance_above_75"]=7570, + ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=7574, + ["lightning_damage_+%_while_affected_by_wrath"]=7575, + ["lightning_damage_can_chill"]=2935, + ["lightning_damage_can_freeze"]=2941, + ["lightning_damage_can_ignite"]=7569, + ["lightning_damage_cannot_shock"]=2947, + ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=7576, + ["lightning_damage_resistance_+%"]=1686, + ["lightning_damage_resistance_is_%"]=1682, + ["lightning_damage_taken_%_as_cold"]=3242, + ["lightning_damage_taken_%_as_fire"]=3240, + ["lightning_damage_taken_+"]=7578, + ["lightning_damage_taken_+%"]=3448, + ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=7577, + ["lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently"]=10894, + ["lightning_damage_to_return_to_melee_attacker"]=2252, + ["lightning_damage_to_return_when_hit"]=2257, + ["lightning_damage_with_attack_skills_+%"]=7579, + ["lightning_damage_with_spell_skills_+%"]=7580, + ["lightning_dot_multiplier_+"]=1305, + ["lightning_explosion_mine_aura_effect_+%"]=7581, + ["lightning_explosion_mine_damage_+%"]=7582, + ["lightning_explosion_mine_throwing_speed_+%"]=7583, + ["lightning_exposure_on_hit_magnitude"]=7584, + ["lightning_golem_damage_+%"]=3756, + ["lightning_golem_elemental_resistances_%"]=4047, + ["lightning_hit_and_dot_damage_%_taken_as_fire"]=7585, + ["lightning_hit_damage_+%_vs_chilled_enemies"]=7586, + ["lightning_resistance_cannot_be_penetrated"]=7587, + ["lightning_resistance_does_not_apply_to_lighting_damage"]=7588, + ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7589, + ["lightning_skill_gem_level_+"]=7591, + ["lightning_skill_gem_level_+_if_6_crusader_items"]=4553, + ["lightning_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped"]=7590, + ["lightning_skill_mana_cost_+%_final_while_shocked"]=7592, + ["lightning_skill_stun_threshold_+%"]=7593, + ["lightning_skills_chance_to_poison_on_hit_%"]=7594, + ["lightning_spell_physical_damage_%_to_convert_to_lightning"]=7595, + ["lightning_spell_skill_gem_level_+"]=1659, + ["lightning_strike_additional_pierce"]=4014, + ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7596, + ["lightning_strike_and_frost_blades_ignite_damage_+100%_final_chance"]=7597, + ["lightning_strike_damage_+%"]=3699, + ["lightning_strike_num_of_additional_projectiles"]=4005, + ["lightning_tendrils_critical_strike_chance_+%"]=4172, + ["lightning_tendrils_damage_+%"]=3700, + ["lightning_tendrils_radius_+%"]=3869, + ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7598, + ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7599, + ["lightning_tower_trap_additional_number_of_beams"]=7600, + ["lightning_tower_trap_cast_speed_+%"]=7601, + ["lightning_tower_trap_cooldown_speed_+%"]=7602, + ["lightning_tower_trap_damage_+%"]=7603, + ["lightning_tower_trap_duration_+%"]=7604, + ["lightning_tower_trap_throwing_speed_+%"]=7605, + ["lightning_trap_additional_pierce"]=4015, + ["lightning_trap_cooldown_speed_+%"]=3480, + ["lightning_trap_damage_+%"]=3478, + ["lightning_trap_lightning_resistance_penetration_%"]=7606, + ["lightning_trap_number_of_additional_projectiles"]=3479, + ["lightning_trap_shock_effect_+%"]=7607, + ["lightning_warp_cast_speed_+%"]=3933, + ["lightning_warp_damage_+%"]=3716, + ["lightning_warp_duration_+%"]=3993, + ["lightning_weakness_ignores_hexproof"]=2656, + ["link_buff_effect_+%_on_animate_guardian"]=7608, + ["link_effect_+%_when_50%_expired"]=7609, + ["link_grace_period_8_second_override"]=7610, + ["link_skill_buff_effect_+%"]=7611, + ["link_skill_buff_effect_+%_if_linked_target_recently"]=7612, + ["link_skill_cast_speed_+%"]=7613, + ["link_skill_cost_+%_final"]=7614, + ["link_skill_cost_life_instead_of_mana"]=7615, + ["link_skill_duration_+%"]=7616, + ["link_skill_gem_level_+"]=7617, + ["link_skill_have_infinite_attachment_duration"]=7618, + ["link_skill_link_target_cannot_die_for_X_seconds"]=7619, + ["link_skill_lose_no_experience_on_link_target_death"]=7620, + ["link_skill_mana_cost_+%"]=7621, + ["link_skill_range_+%"]=7622, + ["link_skills_allies_in_beam_lucky_elemental_damage"]=7623, + ["link_skills_allies_in_beam_max_elemental_resistance_%"]=7624, + ["link_skills_can_target_animate_guardian"]=7625, + ["link_skills_can_target_minions"]=7626, + ["link_skills_enemies_in_beam_aoe_cannot_inflict_elemental_ailments"]=7627, + ["link_skills_enemies_in_beam_elemental_resistance_%"]=7628, + ["link_skills_grant_damage_+%"]=7629, + ["link_skills_grant_damage_taken_+%"]=7630, + ["link_skills_grant_minions_damage_taken_+%_final_from_hallowed_monarch"]=7631, + ["link_skills_grant_random_linked_minion_rare_monster_mods_on_kill_centiseconds"]=7632, + ["link_skills_grant_redirect_curses_to_link_source"]=7633, + ["link_skills_grant_redirect_elemental_ailments_to_link_source"]=7634, + ["link_to_X_additional_random_allies"]=7635, + ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7636, + ["local_1%_of_physical_to_add_as_fire_damage_per_x%_life_reserved"]=7637, + ["local_accuracy_rating"]=2071, + ["local_accuracy_rating_+%"]=2072, + ["local_accuracy_rating_+%_per_2%_quality"]=7638, + ["local_adaptation_rating"]=1579, + ["local_adaptation_rating_+%"]=1581, + ["local_additional_block_chance_%"]=2296, + ["local_affliction_jewel_display_small_nodes_grant_nothing"]=7639, + ["local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute"]=7676, + ["local_affliction_jewel_small_nodes_grant_all_attributes"]=7640, + ["local_affliction_jewel_small_nodes_grant_armour"]=7641, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald"]=7642, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills"]=7643, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills"]=7644, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills"]=7645, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills"]=7646, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills"]=7647, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills"]=7648, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills"]=7649, + ["local_affliction_jewel_small_nodes_grant_attack_speed_+%"]=7650, + ["local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%"]=7651, + ["local_affliction_jewel_small_nodes_grant_base_cast_speed_+%"]=7652, + ["local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+"]=7653, + ["local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%"]=7654, + ["local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%"]=7655, + ["local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%"]=7656, + ["local_affliction_jewel_small_nodes_grant_chaos_resistance_%"]=7657, + ["local_affliction_jewel_small_nodes_grant_charges_gained_+%"]=7658, + ["local_affliction_jewel_small_nodes_grant_cold_resistance_%"]=7659, + ["local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%"]=7660, + ["local_affliction_jewel_small_nodes_grant_damage_+%"]=7662, + ["local_affliction_jewel_small_nodes_grant_damage_over_time_+%"]=7661, + ["local_affliction_jewel_small_nodes_grant_dex"]=7663, + ["local_affliction_jewel_small_nodes_grant_elemental_resistance_%"]=7664, + ["local_affliction_jewel_small_nodes_grant_evasion"]=7665, + ["local_affliction_jewel_small_nodes_grant_fire_resistance_%"]=7666, + ["local_affliction_jewel_small_nodes_grant_int"]=7667, + ["local_affliction_jewel_small_nodes_grant_lightning_resistance_%"]=7668, + ["local_affliction_jewel_small_nodes_grant_mana_regeneration_+%"]=7669, + ["local_affliction_jewel_small_nodes_grant_maximum_energy_shield"]=7670, + ["local_affliction_jewel_small_nodes_grant_maximum_life"]=7671, + ["local_affliction_jewel_small_nodes_grant_maximum_mana"]=7672, + ["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%"]=7673, + ["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=7674, + ["local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%"]=7675, + ["local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%"]=7677, + ["local_affliction_jewel_small_nodes_grant_str"]=7678, + ["local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%"]=7679, + ["local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%"]=7680, + ["local_affliction_jewel_small_nodes_grant_warcry_duration_+%"]=7681, + ["local_affliction_jewel_small_nodes_have_effect_+%"]=7682, + ["local_affliction_notable_adrenaline"]=7683, + ["local_affliction_notable_advance_guard"]=7684, + ["local_affliction_notable_aerialist"]=7685, + ["local_affliction_notable_aerodynamics"]=7686, + ["local_affliction_notable_agent_of_destruction"]=7687, + ["local_affliction_notable_aggressive_defence"]=7688, + ["local_affliction_notable_alchemist"]=7689, + ["local_affliction_notable_ancestral_echo"]=7690, + ["local_affliction_notable_ancestral_guidance"]=7691, + ["local_affliction_notable_ancestral_inspiration"]=7692, + ["local_affliction_notable_ancestral_might"]=7693, + ["local_affliction_notable_ancestral_preservation"]=7694, + ["local_affliction_notable_ancestral_reach"]=7695, + ["local_affliction_notable_antifreeze"]=7696, + ["local_affliction_notable_antivenom"]=7697, + ["local_affliction_notable_arcane_focus"]=7698, + ["local_affliction_notable_arcane_heroism"]=7699, + ["local_affliction_notable_arcane_pyrotechnics"]=7700, + ["local_affliction_notable_arcing_shot"]=7701, + ["local_affliction_notable_assert_dominance"]=7702, + ["local_affliction_notable_astonishing_affliction"]=7703, + ["local_affliction_notable_basics_of_pain"]=7704, + ["local_affliction_notable_battle_hardened"]=7705, + ["local_affliction_notable_battlefield_dominator"]=7706, + ["local_affliction_notable_blacksmith"]=7707, + ["local_affliction_notable_blanketed_snow"]=7708, + ["local_affliction_notable_blast_freeze"]=7709, + ["local_affliction_notable_blessed"]=7710, + ["local_affliction_notable_blessed_rebirth"]=7711, + ["local_affliction_notable_blood_artist"]=7712, + ["local_affliction_notable_bloodscent"]=7713, + ["local_affliction_notable_blowback"]=7714, + ["local_affliction_notable_bodyguards"]=7715, + ["local_affliction_notable_born_of_chaos"]=7716, + ["local_affliction_notable_brand_loyalty"]=7717, + ["local_affliction_notable_brewed_for_potency"]=7718, + ["local_affliction_notable_broadside"]=7719, + ["local_affliction_notable_brush_with_death"]=7720, + ["local_affliction_notable_brutal_infamy"]=7721, + ["local_affliction_notable_burden_projection"]=7722, + ["local_affliction_notable_burning_bright"]=7723, + ["local_affliction_notable_calamitous"]=7724, + ["local_affliction_notable_call_to_the_slaughter"]=7725, + ["local_affliction_notable_capacitor"]=7726, + ["local_affliction_notable_careful_handling"]=7727, + ["local_affliction_notable_chilling_presence"]=7728, + ["local_affliction_notable_chip_away"]=7729, + ["local_affliction_notable_circling_oblivion"]=7730, + ["local_affliction_notable_clarity_of_purpose"]=7731, + ["local_affliction_notable_cold_blooded_killer"]=7732, + ["local_affliction_notable_cold_conduction"]=7733, + ["local_affliction_notable_cold_to_the_core"]=7734, + ["local_affliction_notable_combat_rhythm"]=7735, + ["local_affliction_notable_compound_injury"]=7736, + ["local_affliction_notable_confident_combatant"]=7737, + ["local_affliction_notable_conjured_wall"]=7738, + ["local_affliction_notable_conservation_of_energy"]=7739, + ["local_affliction_notable_cooked_alive"]=7740, + ["local_affliction_notable_corrosive_elements"]=7741, + ["local_affliction_notable_cremator"]=7742, + ["local_affliction_notable_cry_wolf"]=7743, + ["local_affliction_notable_cult_leader"]=7744, + ["local_affliction_notable_daring_ideas"]=7745, + ["local_affliction_notable_dark_discourse"]=7746, + ["local_affliction_notable_dark_ideation"]=7747, + ["local_affliction_notable_dark_messenger"]=7748, + ["local_affliction_notable_darting_movements"]=7749, + ["local_affliction_notable_deadly_repartee"]=7750, + ["local_affliction_notable_deep_chill"]=7751, + ["local_affliction_notable_deep_cuts"]=7752, + ["local_affliction_notable_depression"]=7753, + ["local_affliction_notable_determined_preparation"]=7754, + ["local_affliction_notable_devastator"]=7755, + ["local_affliction_notable_disciples"]=7756, + ["local_affliction_notable_disciplined_preparation"]=7757, + ["local_affliction_notable_disease_vector"]=7758, + ["local_affliction_notable_disorienting_display"]=7759, + ["local_affliction_notable_disorienting_wounds"]=7760, + ["local_affliction_notable_distilled_perfection"]=7761, + ["local_affliction_notable_doedres_apathy"]=7762, + ["local_affliction_notable_doedres_gluttony"]=7763, + ["local_affliction_notable_doryanis_lesson"]=7764, + ["local_affliction_notable_dragon_hunter"]=7765, + ["local_affliction_notable_dread_march"]=7766, + ["local_affliction_notable_drive_the_destruction"]=7767, + ["local_affliction_notable_eldritch_inspiration"]=7768, + ["local_affliction_notable_elegant_form"]=7769, + ["local_affliction_notable_empowered_envoy"]=7770, + ["local_affliction_notable_endbringer"]=7771, + ["local_affliction_notable_enduring_composure"]=7772, + ["local_affliction_notable_enduring_focus"]=7773, + ["local_affliction_notable_enduring_ward"]=7774, + ["local_affliction_notable_energy_from_naught"]=7775, + ["local_affliction_notable_essence_rush"]=7776, + ["local_affliction_notable_eternal_suffering"]=7777, + ["local_affliction_notable_evil_eye"]=7778, + ["local_affliction_notable_expansive_might"]=7779, + ["local_affliction_notable_expendability"]=7780, + ["local_affliction_notable_expert_sabotage"]=7781, + ["local_affliction_notable_explosive_force"]=7782, + ["local_affliction_notable_exposure_therapy"]=7783, + ["local_affliction_notable_eye_of_the_storm"]=7784, + ["local_affliction_notable_eye_to_eye"]=7785, + ["local_affliction_notable_fan_of_blades"]=7786, + ["local_affliction_notable_fan_the_flames"]=7787, + ["local_affliction_notable_fasting"]=7788, + ["local_affliction_notable_fearsome_warrior"]=7789, + ["local_affliction_notable_feast_of_flesh"]=7790, + ["local_affliction_notable_feasting_fiends"]=7791, + ["local_affliction_notable_feed_the_fury"]=7792, + ["local_affliction_notable_fettle"]=7793, + ["local_affliction_notable_fiery_aegis"]=7794, + ["local_affliction_notable_fire_attunement"]=7795, + ["local_affliction_notable_first_among_equals"]=7796, + ["local_affliction_notable_flaming_doom"]=7797, + ["local_affliction_notable_flexible_sentry"]=7798, + ["local_affliction_notable_flow_of_life"]=7799, + ["local_affliction_notable_follow_through"]=7800, + ["local_affliction_notable_force_multiplier"]=7801, + ["local_affliction_notable_frost_breath"]=7802, + ["local_affliction_notable_fuel_the_fight"]=7803, + ["local_affliction_notable_furious_assault"]=7804, + ["local_affliction_notable_genius"]=7805, + ["local_affliction_notable_gladiatorial_combat"]=7806, + ["local_affliction_notable_gladiators_fortitude"]=7807, + ["local_affliction_notable_graceful_execution"]=7808, + ["local_affliction_notable_graceful_preparation"]=7809, + ["local_affliction_notable_grand_design"]=7810, + ["local_affliction_notable_grim_oath"]=7811, + ["local_affliction_notable_grounded_commander"]=7812, + ["local_affliction_notable_guerilla_tactics"]=7813, + ["local_affliction_notable_haemorrhage"]=7814, + ["local_affliction_notable_haunting_shout"]=7815, + ["local_affliction_notable_heart_of_iron"]=7816, + ["local_affliction_notable_heavy_hitter"]=7817, + ["local_affliction_notable_heavy_trauma"]=7818, + ["local_affliction_notable_heraldry"]=7819, + ["local_affliction_notable_hex_breaker"]=7820, + ["local_affliction_notable_hibernator"]=7821, + ["local_affliction_notable_hit_and_run"]=7822, + ["local_affliction_notable_holistic_health"]=7823, + ["local_affliction_notable_holy_conquest"]=7824, + ["local_affliction_notable_holy_word"]=7825, + ["local_affliction_notable_hounds_mark"]=7826, + ["local_affliction_notable_hulking_corpses"]=7827, + ["local_affliction_notable_improvisor"]=7828, + ["local_affliction_notable_insatiable_killer"]=7829, + ["local_affliction_notable_inspired_oppression"]=7830, + ["local_affliction_notable_insulated"]=7831, + ["local_affliction_notable_intensity"]=7832, + ["local_affliction_notable_invigorating_portents"]=7833, + ["local_affliction_notable_iron_breaker"]=7834, + ["local_affliction_notable_lasting_impression"]=7835, + ["local_affliction_notable_lead_by_example"]=7836, + ["local_affliction_notable_life_from_death"]=7837, + ["local_affliction_notable_lightnings_call"]=7838, + ["local_affliction_notable_liquid_inspiration"]=7839, + ["local_affliction_notable_low_tolerance"]=7840, + ["local_affliction_notable_mage_bane"]=7841, + ["local_affliction_notable_mage_hunter"]=7842, + ["local_affliction_notable_magnifier"]=7843, + ["local_affliction_notable_martial_mastery"]=7844, + ["local_affliction_notable_martial_momentum"]=7845, + ["local_affliction_notable_martial_prowess"]=7846, + ["local_affliction_notable_master_of_command"]=7847, + ["local_affliction_notable_master_of_fear"]=7848, + ["local_affliction_notable_master_of_fire"]=7849, + ["local_affliction_notable_master_of_the_maelstrom"]=7850, + ["local_affliction_notable_master_the_fundamentals"]=7851, + ["local_affliction_notable_menders_wellspring"]=7852, + ["local_affliction_notable_militarism"]=7853, + ["local_affliction_notable_mindfulness"]=7854, + ["local_affliction_notable_mob_mentality"]=7855, + ["local_affliction_notable_molten_ones_mark"]=7856, + ["local_affliction_notable_mystical_ward"]=7857, + ["local_affliction_notable_natural_vigour"]=7858, + ["local_affliction_notable_no_witnesses"]=7859, + ["local_affliction_notable_non_flammable"]=7860, + ["local_affliction_notable_numbing_elixir"]=7861, + ["local_affliction_notable_one_with_the_shield"]=7862, + ["local_affliction_notable_openness"]=7863, + ["local_affliction_notable_opportunistic_fusilade"]=7864, + ["local_affliction_notable_overlord"]=7865, + ["local_affliction_notable_overshock"]=7866, + ["local_affliction_notable_overwhelming_malice"]=7867, + ["local_affliction_notable_paralysis"]=7868, + ["local_affliction_notable_peace_amidst_chaos"]=7869, + ["local_affliction_notable_peak_vigour"]=7870, + ["local_affliction_notable_phlebotomist"]=7871, + ["local_affliction_notable_powerful_assault"]=7872, + ["local_affliction_notable_powerful_ward"]=7873, + ["local_affliction_notable_practiced_caster"]=7874, + ["local_affliction_notable_precise_commander"]=7875, + ["local_affliction_notable_precise_focus"]=7876, + ["local_affliction_notable_precise_retaliation"]=7877, + ["local_affliction_notable_pressure_points"]=7878, + ["local_affliction_notable_primordial_bond"]=7879, + ["local_affliction_notable_prismatic_carapace"]=7880, + ["local_affliction_notable_prismatic_dance"]=7881, + ["local_affliction_notable_prismatic_heart"]=7882, + ["local_affliction_notable_prodigious_defense"]=7883, + ["local_affliction_notable_provocateur"]=7884, + ["local_affliction_notable_pure_agony"]=7885, + ["local_affliction_notable_pure_aptitude"]=7886, + ["local_affliction_notable_pure_commander"]=7887, + ["local_affliction_notable_pure_guile"]=7888, + ["local_affliction_notable_pure_might"]=7889, + ["local_affliction_notable_purposeful_harbinger"]=7890, + ["local_affliction_notable_quick_and_deadly"]=7891, + ["local_affliction_notable_quick_getaway"]=7892, + ["local_affliction_notable_rapid_infusion"]=7893, + ["local_affliction_notable_rattling_bellow"]=7894, + ["local_affliction_notable_raze_and_pillage"]=7895, + ["local_affliction_notable_readiness"]=7896, + ["local_affliction_notable_remarkable"]=7897, + ["local_affliction_notable_rend"]=7898, + ["local_affliction_notable_renewal"]=7899, + ["local_affliction_notable_repeater"]=7900, + ["local_affliction_notable_replenishing_presence"]=7901, + ["local_affliction_notable_riot_queller"]=7902, + ["local_affliction_notable_rot_resistant"]=7903, + ["local_affliction_notable_rote_reinforcement"]=7904, + ["local_affliction_notable_rotten_claws"]=7905, + ["local_affliction_notable_run_through"]=7906, + ["local_affliction_notable_sadist"]=7907, + ["local_affliction_notable_sage"]=7908, + ["local_affliction_notable_sap_psyche"]=7909, + ["local_affliction_notable_savage_response"]=7910, + ["local_affliction_notable_savour_the_moment"]=7911, + ["local_affliction_notable_scintillating_idea"]=7912, + ["local_affliction_notable_seal_mender"]=7913, + ["local_affliction_notable_second_skin"]=7914, + ["local_affliction_notable_seeker_runes"]=7915, + ["local_affliction_notable_self_fulfilling_prophecy"]=7916, + ["local_affliction_notable_septic_spells"]=7917, + ["local_affliction_notable_set_and_forget"]=7918, + ["local_affliction_notable_shifting_shadow"]=7919, + ["local_affliction_notable_shrieking_bolts"]=7920, + ["local_affliction_notable_skeletal_atrophy"]=7921, + ["local_affliction_notable_skullbreaker"]=7922, + ["local_affliction_notable_sleepless_sentries"]=7923, + ["local_affliction_notable_smite_the_weak"]=7924, + ["local_affliction_notable_smoking_remains"]=7925, + ["local_affliction_notable_snaring_spirits"]=7926, + ["local_affliction_notable_snowstorm"]=7927, + ["local_affliction_notable_special_reserve"]=7928, + ["local_affliction_notable_spiked_concoction"]=7929, + ["local_affliction_notable_spring_back"]=7930, + ["local_affliction_notable_stalwart_commander"]=7931, + ["local_affliction_notable_steady_torment"]=7932, + ["local_affliction_notable_stoic_focus"]=7933, + ["local_affliction_notable_storm_drinker"]=7934, + ["local_affliction_notable_stormrider"]=7935, + ["local_affliction_notable_storms_hand"]=7936, + ["local_affliction_notable_streamlined"]=7937, + ["local_affliction_notable_strike_leader"]=7938, + ["local_affliction_notable_stubborn_student"]=7939, + ["local_affliction_notable_student_of_decay"]=7940, + ["local_affliction_notable_sublime_sensation"]=7941, + ["local_affliction_notable_summer_commander"]=7942, + ["local_affliction_notable_supercharge"]=7943, + ["local_affliction_notable_surefooted_striker"]=7944, + ["local_affliction_notable_surging_vitality"]=7945, + ["local_affliction_notable_surprise_sabotage"]=7946, + ["local_affliction_notable_tempered_arrowheads"]=7947, + ["local_affliction_notable_thaumophage"]=7948, + ["local_affliction_notable_thunderstruck"]=7949, + ["local_affliction_notable_titanic_swings"]=7950, + ["local_affliction_notable_touch_of_cruelty"]=7951, + ["local_affliction_notable_towering_threat"]=7952, + ["local_affliction_notable_unholy_grace"]=7953, + ["local_affliction_notable_unspeakable_gifts"]=7954, + ["local_affliction_notable_untouchable"]=7955, + ["local_affliction_notable_unwavering_focus"]=7956, + ["local_affliction_notable_unwaveringly_evil"]=7957, + ["local_affliction_notable_vast_power"]=7958, + ["local_affliction_notable_vengeful_commander"]=7959, + ["local_affliction_notable_veteran_defender"]=7960, + ["local_affliction_notable_vicious_bite"]=7961, + ["local_affliction_notable_vicious_guard_"]=7962, + ["local_affliction_notable_vicious_skewering"]=7963, + ["local_affliction_notable_victim_maker"]=7964, + ["local_affliction_notable_vile_reinvigoration"]=7965, + ["local_affliction_notable_vital_focus"]=7966, + ["local_affliction_notable_vivid_hues"]=7967, + ["local_affliction_notable_wall_of_muscle"]=7968, + ["local_affliction_notable_wardbreaker"]=7969, + ["local_affliction_notable_warning_call"]=7970, + ["local_affliction_notable_wasting_affliction"]=7971, + ["local_affliction_notable_weight_advantage"]=7972, + ["local_affliction_notable_whispers_of_death"]=7973, + ["local_affliction_notable_wicked_pall"]=7974, + ["local_affliction_notable_widespread_destruction"]=7975, + ["local_affliction_notable_will_shaper"]=7976, + ["local_affliction_notable_wind_up"]=7977, + ["local_affliction_notable_winter_commander"]=7978, + ["local_affliction_notable_winter_prowler"]=7979, + ["local_affliction_notable_wish_for_death"]=7980, + ["local_affliction_notable_wizardry"]=7981, + ["local_affliction_notable_wound_aggravation"]=7982, + ["local_affliction_notable_wrapped_in_flame"]=7983, + ["local_all_damage_can_poison"]=2520, + ["local_all_sockets_are_blue"]=101, + ["local_all_sockets_are_green"]=102, + ["local_all_sockets_are_red"]=103, + ["local_all_sockets_are_white"]=104, + ["local_all_sockets_linked"]=96, + ["local_always_hit"]=2090, + ["local_always_hit_burning_enemies"]=7984, + ["local_apply_extra_herald_mod_when_synthesised"]=10895, + ["local_area_of_effect_+%_per_4%_quality"]=7985, + ["local_armour_and_energy_shield_+%"]=1598, + ["local_armour_and_evasion_+%"]=1599, + ["local_armour_and_evasion_and_energy_shield_+%"]=1601, + ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7986, + ["local_attack_cast_movement_speed_+%_during_flask_effect"]=1096, + ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=1097, + ["local_attack_damage_+%_if_item_corrupted"]=7987, + ["local_attack_maximum_added_physical_damage_per_3_levels"]=1317, + ["local_attack_minimum_added_physical_damage_per_3_levels"]=1317, + ["local_attack_speed_+%"]=1461, + ["local_attack_speed_+%_per_8%_quality"]=7989, + ["local_attack_speed_+%_per_socketed_searching_jewel"]=7988, + ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7990, + ["local_attacks_impale_on_hit_%_chance"]=7991, + ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7992, + ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7993, + ["local_attacks_with_this_weapon_elemental_damage_+%"]=2987, + ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=3002, + ["local_attribute_requirements_+%"]=1123, + ["local_avoid_chill_%_during_flask_effect"]=1011, + ["local_avoid_freeze_%_during_flask_effect"]=1012, + ["local_avoid_ignite_%_during_flask_effect"]=1013, + ["local_avoid_shock_%_during_flask_effect"]=1014, + ["local_base_evasion_rating"]=1594, + ["local_base_physical_damage_reduction_rating"]=1586, + ["local_bleed_on_critical_strike_chance_%"]=7994, + ["local_bleed_on_hit"]=2530, + ["local_bleeding_ailment_dot_multiplier_+"]=7995, + ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7996, + ["local_block_chance_+%"]=118, + ["local_can_be_anointed"]=7997, + ["local_can_have_X_additional_runesmith_enchantments"]=7998, ["local_can_have_additional_crafted_mods"]=51, - ["local_can_have_any_one_hand_runesmith_enchantments"]=7893, - ["local_can_only_deal_damage_with_this_weapon"]=2736, - ["local_can_only_socket_corrupted_gems"]=7894, - ["local_can_socket_gems_ignoring_colour"]=115, - ["local_cannot_be_used_with_chaos_innoculation"]=1100, - ["local_cannot_have_blue_sockets"]=88, - ["local_cannot_have_green_sockets"]=89, - ["local_cannot_have_red_sockets"]=90, - ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4936, - ["local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon"]=7895, - ["local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon"]=7896, - ["local_chance_for_poison_damage_+300%_final_inflicted_with_weapon"]=7897, - ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=10874, - ["local_chance_to_bleed_on_crit_50%"]=7898, - ["local_chance_to_bleed_on_hit_%"]=2507, - ["local_chance_to_bleed_on_hit_25%"]=2505, - ["local_chance_to_bleed_on_hit_50%"]=2506, - ["local_chance_to_blind_on_hit_%"]=2287, - ["local_chance_to_intimidate_on_hit_%"]=7899, - ["local_chance_to_poison_on_hit_%_during_flask_effect"]=991, - ["local_chaos_damage_taken_per_minute_during_flask_effect"]=1067, - ["local_chaos_penetration_%"]=7900, - ["local_charges_added_+%"]=869, - ["local_charges_used_+%"]=870, - ["local_chill_on_hit_ms_if_in_off_hand"]=7901, - ["local_cold_penetration_%"]=3787, - ["local_cold_resistance_%_per_2%_quality"]=7902, - ["local_concoction_can_consume_sulphur_flasks"]=7903, - ["local_connectivity_of_sockets_+%"]=1946, - ["local_consecrate_ground_on_flask_use_radius"]=902, - ["local_crafting_bench_options_cost_nothing"]=7904, - ["local_critical_strike_chance"]=1487, - ["local_critical_strike_chance_+%"]=1488, - ["local_critical_strike_chance_+%_if_item_corrupted"]=7905, - ["local_critical_strike_chance_+%_per_4%_quality"]=7906, - ["local_critical_strike_multiplier_+"]=1513, - ["local_crits_have_culling_strike"]=7907, - ["local_culling_strike_if_crit_recently"]=7908, - ["local_culling_strike_vs_bleeding_enemies"]=7909, - ["local_damage_+%_if_item_corrupted"]=7910, - ["local_damage_taken_+%_if_item_corrupted"]=7911, - ["local_dexterity_per_2%_quality"]=7912, - ["local_dexterity_requirement_+"]=1101, - ["local_dexterity_requirement_+%"]=1102, - ["local_disable_gem_experience_gain"]=1943, - ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=789, - ["local_display_aura_allies_have_culling_strike"]=2557, - ["local_display_aura_allies_have_increased_item_rarity_+%"]=1621, - ["local_display_aura_base_chaos_damage_to_deal_per_minute"]=2716, - ["local_display_aura_curse_effect_on_self_+%"]=2725, - ["local_display_aura_damage_+%"]=2724, - ["local_display_aura_damage_+%_allies_only"]=2930, - ["local_display_avoid_interruption_%_while_using_socketed_attack_skills"]=569, - ["local_display_cast_animate_weapon_on_kill_%_chance"]=790, - ["local_display_cast_cold_aegis_on_gain_skill"]=791, - ["local_display_cast_elemental_aegis_on_gain_skill"]=792, - ["local_display_cast_fire_aegis_on_gain_skill"]=793, - ["local_display_cast_fire_burst_on_hit"]=7913, - ["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=698, - ["local_display_cast_level_X_consecrate_on_crit"]=699, - ["local_display_cast_level_x_manifest_dancing_dervish"]=3364, - ["local_display_cast_level_x_shock_ground_on_hit"]=794, - ["local_display_cast_level_x_shock_ground_when_hit"]=700, - ["local_display_cast_lightning_aegis_on_gain_skill"]=795, - ["local_display_cast_lightning_on_critical_strike"]=796, - ["local_display_cast_lightning_on_melee_hit_with_this_weapon"]=797, - ["local_display_cast_physical_aegis_on_gain_skill"]=798, - ["local_display_cast_primal_aegis_on_gain_skill"]=799, - ["local_display_cast_summon_arbalists_on_gain_skill"]=800, - ["local_display_cast_triggerbots_on_gain_skill"]=801, - ["local_display_chance_to_trigger_socketed_spell_on_kill_%"]=802, - ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=7914, - ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=7915, - ["local_display_fire_and_cold_resist_debuff"]=7916, - ["local_display_fire_burst_on_hit_%"]=803, - ["local_display_gain_fragile_growth_each_second"]=4423, - ["local_display_gain_power_charge_on_spending_mana"]=7917, - ["local_display_grant_level_x_petrification_statue"]=701, - ["local_display_grant_level_x_snipe_skill"]=83, - ["local_display_grants_biting_braid_skill_level_x"]=7918, - ["local_display_grants_level_X_affliction"]=84, - ["local_display_grants_level_X_envy"]=679, - ["local_display_grants_level_X_pacify"]=85, - ["local_display_grants_level_X_penance_mark"]=86, - ["local_display_grants_level_X_queens_demand_skill"]=774, - ["local_display_grants_level_X_reckoning"]=680, - ["local_display_grants_level_X_vengeance"]=651, - ["local_display_grants_level_x_blood_offering_skill"]=703, - ["local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect"]=704, - ["local_display_grants_level_x_curse_pillar_skill"]=705, - ["local_display_grants_level_x_despair"]=652, - ["local_display_grants_level_x_hidden_blade"]=804, - ["local_display_grants_level_x_misty_reflection"]=706, - ["local_display_grants_level_x_summon_stone_golem"]=650, - ["local_display_grants_level_x_wintertide_brand"]=707, + ["local_can_have_any_one_hand_runesmith_enchantments"]=7999, + ["local_can_only_deal_damage_with_this_weapon"]=2763, + ["local_can_only_socket_corrupted_gems"]=8000, + ["local_can_socket_gems_ignoring_colour"]=194, + ["local_cannot_be_used_with_chaos_innoculation"]=1124, + ["local_cannot_have_blue_sockets"]=89, + ["local_cannot_have_green_sockets"]=90, + ["local_cannot_have_non_abyssal_sockets"]=8001, + ["local_cannot_have_red_sockets"]=91, + ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4986, + ["local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon"]=8002, + ["local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon"]=8003, + ["local_chance_for_poison_damage_+300%_final_inflicted_with_weapon"]=8004, + ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=11041, + ["local_chance_to_bleed_on_crit_50%"]=8005, + ["local_chance_to_bleed_on_hit_%"]=2533, + ["local_chance_to_bleed_on_hit_25%"]=2531, + ["local_chance_to_bleed_on_hit_50%"]=2532, + ["local_chance_to_blind_on_hit_%"]=2310, + ["local_chance_to_gain_phasing_on_hit_%"]=8006, + ["local_chance_to_intimidate_on_hit_%"]=8007, + ["local_chance_to_poison_on_hit_%_during_flask_effect"]=1015, + ["local_chaos_damage_taken_per_minute_during_flask_effect"]=1091, + ["local_chaos_penetration_%"]=8008, + ["local_charges_added_+%"]=890, + ["local_charges_used_+%"]=891, + ["local_chill_on_hit_ms_if_in_off_hand"]=8009, + ["local_cold_penetration_%"]=3823, + ["local_cold_resistance_%_per_2%_quality"]=8010, + ["local_concoction_can_consume_sulphur_flasks"]=8011, + ["local_connectivity_of_sockets_+%"]=1969, + ["local_consecrate_ground_on_flask_use_radius"]=925, + ["local_crafting_bench_options_cost_nothing"]=8012, + ["local_critical_strike_chance"]=1510, + ["local_critical_strike_chance_+%"]=1511, + ["local_critical_strike_chance_+%_if_item_corrupted"]=8014, + ["local_critical_strike_chance_+%_per_4%_quality"]=8015, + ["local_critical_strike_chance_+%_per_socketed_hypnotic_jewel"]=8013, + ["local_critical_strike_multiplier_+"]=1536, + ["local_crits_have_culling_strike"]=8016, + ["local_culling_strike_if_crit_recently"]=8017, + ["local_culling_strike_vs_bleeding_enemies"]=8018, + ["local_damage_+%_if_item_corrupted"]=8019, + ["local_damage_taken_+%_if_item_corrupted"]=8020, + ["local_dexterity_per_2%_quality"]=8021, + ["local_dexterity_requirement_+"]=1125, + ["local_dexterity_requirement_+%"]=1126, + ["local_disable_gem_experience_gain"]=1966, + ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=810, + ["local_display_aura_allies_have_culling_strike"]=2583, + ["local_display_aura_allies_have_increased_item_rarity_+%"]=1644, + ["local_display_aura_base_chaos_damage_to_deal_per_minute"]=2743, + ["local_display_aura_curse_effect_on_self_+%"]=2752, + ["local_display_aura_damage_+%"]=2751, + ["local_display_aura_damage_+%_allies_only"]=2964, + ["local_display_avoid_interruption_%_while_using_socketed_attack_skills"]=580, + ["local_display_cast_animate_weapon_on_kill_%_chance"]=811, + ["local_display_cast_cold_aegis_on_gain_skill"]=812, + ["local_display_cast_elemental_aegis_on_gain_skill"]=813, + ["local_display_cast_fire_aegis_on_gain_skill"]=814, + ["local_display_cast_fire_burst_on_hit"]=8022, + ["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=710, + ["local_display_cast_level_X_consecrate_on_crit"]=711, + ["local_display_cast_level_x_manifest_dancing_dervish"]=3400, + ["local_display_cast_level_x_shock_ground_on_hit"]=815, + ["local_display_cast_level_x_shock_ground_when_hit"]=712, + ["local_display_cast_lightning_aegis_on_gain_skill"]=816, + ["local_display_cast_lightning_on_critical_strike"]=817, + ["local_display_cast_lightning_on_melee_hit_with_this_weapon"]=818, + ["local_display_cast_physical_aegis_on_gain_skill"]=819, + ["local_display_cast_primal_aegis_on_gain_skill"]=820, + ["local_display_cast_summon_arbalists_on_gain_skill"]=821, + ["local_display_cast_triggerbots_on_gain_skill"]=822, + ["local_display_chance_to_trigger_socketed_spell_on_kill_%"]=823, + ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=8023, + ["local_display_deepwater_chart_implicit"]=8024, + ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=8025, + ["local_display_fire_and_cold_resist_debuff"]=8026, + ["local_display_fire_burst_on_hit_%"]=824, + ["local_display_gain_fragile_growth_each_second"]=4461, + ["local_display_gain_power_charge_on_spending_mana"]=10914, + ["local_display_grant_level_x_petrification_statue"]=713, + ["local_display_grant_level_x_snipe_skill"]=84, + ["local_display_grants_biting_braid_skill_level_x"]=8027, + ["local_display_grants_level_X_affliction"]=85, + ["local_display_grants_level_X_envy"]=691, + ["local_display_grants_level_X_ghost_cannons"]=676, + ["local_display_grants_level_X_pacify"]=86, + ["local_display_grants_level_X_penance_mark"]=87, + ["local_display_grants_level_X_queens_demand_skill"]=795, + ["local_display_grants_level_X_reckoning"]=692, + ["local_display_grants_level_X_vengeance"]=662, + ["local_display_grants_level_x_blood_offering_skill"]=715, + ["local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect"]=716, + ["local_display_grants_level_x_curse_pillar_skill"]=717, + ["local_display_grants_level_x_despair"]=663, + ["local_display_grants_level_x_hidden_blade"]=825, + ["local_display_grants_level_x_misty_reflection"]=718, + ["local_display_grants_level_x_summon_stone_golem"]=661, + ["local_display_grants_level_x_wintertide_brand"]=719, ["local_display_grants_restless_dead_skill_level_x"]=44, - ["local_display_grants_sand_mirage_skill_level_x"]=7919, - ["local_display_grants_skil_convocation_level"]=708, - ["local_display_grants_skill_abyssal_cry_level"]=709, - ["local_display_grants_skill_accuracy_crits_aura_level"]=710, - ["local_display_grants_skill_ailment_bearer"]=711, - ["local_display_grants_skill_anger_level"]=674, - ["local_display_grants_skill_animosity_phys_degen_level"]=7920, - ["local_display_grants_skill_barkskin"]=712, - ["local_display_grants_skill_battlemages_cry_level"]=713, - ["local_display_grants_skill_bear_trap_level"]=649, - ["local_display_grants_skill_bird_aspect_level"]=714, - ["local_display_grants_skill_blight_level"]=681, - ["local_display_grants_skill_blood_sacrament_level"]=666, - ["local_display_grants_skill_bone_armour"]=715, - ["local_display_grants_skill_brand_detonate_level"]=716, - ["local_display_grants_skill_breach_hand_trap_level"]=717, - ["local_display_grants_skill_call_of_steel"]=718, - ["local_display_grants_skill_cat_aspect_level"]=719, - ["local_display_grants_skill_clarity_level"]=665, - ["local_display_grants_skill_conductivity_level"]=660, - ["local_display_grants_skill_corpse_sacrifice"]=720, - ["local_display_grants_skill_crab_aspect_level"]=721, - ["local_display_grants_skill_critical_weakness_level"]=671, - ["local_display_grants_skill_dash_level"]=722, - ["local_display_grants_skill_death_aura_level"]=686, - ["local_display_grants_skill_death_wish_level"]=723, - ["local_display_grants_skill_decoy_totem_level"]=724, - ["local_display_grants_skill_determination_level"]=675, - ["local_display_grants_skill_discipline_level"]=678, - ["local_display_grants_skill_doryanis_touch_level"]=684, - ["local_display_grants_skill_elemental_weakness_level"]=683, - ["local_display_grants_skill_embrace_madness_level"]=725, - ["local_display_grants_skill_enduring_cry_level"]=726, - ["local_display_grants_skill_evisceration"]=727, - ["local_display_grants_skill_flammability_level"]=656, - ["local_display_grants_skill_frostbite_level"]=661, - ["local_display_grants_skill_frostblink_level"]=646, - ["local_display_grants_skill_gluttony_of_elements_level"]=670, - ["local_display_grants_skill_grace_level"]=676, - ["local_display_grants_skill_haste_level"]=663, - ["local_display_grants_skill_hatred_level"]=673, - ["local_display_grants_skill_herald_of_agony_level"]=728, - ["local_display_grants_skill_herald_of_ash_level"]=729, - ["local_display_grants_skill_herald_of_ice_level"]=730, - ["local_display_grants_skill_herald_of_purity_level"]=731, - ["local_display_grants_skill_herald_of_the_breach_level"]=732, - ["local_display_grants_skill_herald_of_thunder_level"]=733, - ["local_display_grants_skill_icestorm_level"]=687, - ["local_display_grants_skill_intimidating_cry_level"]=734, - ["local_display_grants_skill_lightning_warp_level"]=735, - ["local_display_grants_skill_malevolence_level"]=736, - ["local_display_grants_skill_minion_sacrifice"]=737, - ["local_display_grants_skill_mirage_chieftain"]=738, - ["local_display_grants_skill_penance"]=739, - ["local_display_grants_skill_pride_level"]=740, - ["local_display_grants_skill_projectile_weakness_level"]=682, - ["local_display_grants_skill_purity_level"]=669, - ["local_display_grants_skill_purity_of_cold_level"]=653, - ["local_display_grants_skill_purity_of_fire_level"]=647, - ["local_display_grants_skill_purity_of_lightning_level"]=655, - ["local_display_grants_skill_quieten"]=741, - ["local_display_grants_skill_rallying_cry_level"]=742, - ["local_display_grants_skill_resentment_fire_degen_level"]=7921, - ["local_display_grants_skill_scorching_ray_level"]=677, - ["local_display_grants_skill_smite_level"]=743, - ["local_display_grants_skill_spider_aspect_level"]=744, - ["local_display_grants_skill_summon_radiant_sentinel"]=745, - ["local_display_grants_skill_temporal_chains_level"]=662, - ["local_display_grants_skill_touch_of_fire_level"]=746, - ["local_display_grants_skill_unhinge_level"]=747, - ["local_display_grants_skill_vaal_impurity_of_fire_level"]=748, - ["local_display_grants_skill_vaal_impurity_of_ice_level"]=749, - ["local_display_grants_skill_vaal_impurity_of_lightning_level"]=750, - ["local_display_grants_skill_vampiric_icon_level"]=751, - ["local_display_grants_skill_vitality_level"]=667, - ["local_display_grants_skill_voodoo_doll"]=752, - ["local_display_grants_skill_vulnerability_level"]=685, - ["local_display_grants_skill_weapon_storm"]=753, - ["local_display_grants_skill_wrath_level"]=672, - ["local_display_grants_skill_zealotry_level"]=754, - ["local_display_grants_solartwine_skill_level_x"]=7922, - ["local_display_grants_summon_beast_companion"]=654, - ["local_display_grants_summon_void_spawn"]=755, - ["local_display_grants_unholy_might"]=2938, - ["local_display_grants_unleash_power"]=756, - ["local_display_guardian_alternating_block_chance"]=7923, - ["local_display_has_additional_implicit_mod"]=664, - ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3424, - ["local_display_illusory_warp_level"]=648, - ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1622, - ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=8170, - ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=3366, - ["local_display_manifest_dancing_dervish_disables_weapons"]=3365, - ["local_display_minions_grant_onslaught"]=3367, - ["local_display_mod_aura_mana_regeration_rate_+%"]=7924, - ["local_display_molten_burst_on_melee_hit_%"]=805, - ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=7925, - ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=7926, - ["local_display_nearby_allies_critical_strike_multiplier_+"]=7927, - ["local_display_nearby_allies_extra_damage_rolls"]=7928, - ["local_display_nearby_allies_have_fortify"]=7929, - ["local_display_nearby_enemies_all_resistances_%"]=3023, - ["local_display_nearby_enemies_are_blinded"]=3420, - ["local_display_nearby_enemies_are_chilled"]=7930, - ["local_display_nearby_enemies_are_covered_in_ash"]=7931, - ["local_display_nearby_enemies_are_crushed"]=3421, - ["local_display_nearby_enemies_are_debilitated"]=7932, - ["local_display_nearby_enemies_are_intimidated"]=7933, - ["local_display_nearby_enemies_cannot_crit"]=7934, - ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3425, - ["local_display_nearby_enemies_flask_charges_granted_+%"]=3426, - ["local_display_nearby_enemies_have_fire_exposure"]=7935, - ["local_display_nearby_enemies_have_malediction"]=3422, - ["local_display_nearby_enemies_movement_speed_+%"]=3427, - ["local_display_nearby_enemies_scorched"]=3423, - ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3428, - ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=4228, - ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=3188, - ["local_display_nearby_enemy_chaos_damage_resistance_%"]=7936, - ["local_display_nearby_enemy_cold_damage_resistance_%"]=7937, - ["local_display_nearby_enemy_elemental_damage_taken_+%"]=7938, - ["local_display_nearby_enemy_fire_damage_resistance_%"]=7939, - ["local_display_nearby_enemy_life_reserved_by_stat_%"]=7940, - ["local_display_nearby_enemy_lightning_damage_resistance_%"]=7941, - ["local_display_nearby_enemy_no_chaos_damage_resistance"]=7942, - ["local_display_nearby_enemy_physical_damage_taken_+%"]=7943, - ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=4449, - ["local_display_raise_spider_on_kill_%_chance"]=806, - ["local_display_self_crushed"]=7944, - ["local_display_socketed_attack_damage_+%_final"]=570, - ["local_display_socketed_attacks_additional_critical_strike_chance"]=571, - ["local_display_socketed_attacks_critical_strike_multiplier_+"]=572, - ["local_display_socketed_attacks_mana_cost_+"]=573, - ["local_display_socketed_curse_gems_have_mana_reservation_+%"]=638, - ["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=544, - ["local_display_socketed_gems_additional_critical_strike_chance_%"]=565, - ["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=574, - ["local_display_socketed_gems_chain_X_additional_times"]=564, - ["local_display_socketed_gems_curse_auras_also_affect_you"]=575, - ["local_display_socketed_gems_damage_+%_final_while_on_low_life"]=576, - ["local_display_socketed_gems_damage_over_time_+%_final"]=626, - ["local_display_socketed_gems_elemental_damage_+%_final"]=577, - ["local_display_socketed_gems_exposure_on_hit"]=578, - ["local_display_socketed_gems_get_added_chaos_damage_level"]=482, - ["local_display_socketed_gems_get_added_fire_damage_level"]=486, - ["local_display_socketed_gems_get_added_lightning_damage_level"]=491, - ["local_display_socketed_gems_get_additional_accuracy_level"]=504, - ["local_display_socketed_gems_get_blind_level"]=494, - ["local_display_socketed_gems_get_blood_magic_level"]=483, - ["local_display_socketed_gems_get_cast_on_crit_level"]=496, - ["local_display_socketed_gems_get_cast_on_death_level"]=502, - ["local_display_socketed_gems_get_cast_when_stunned_level"]=501, - ["local_display_socketed_gems_get_chance_to_bleed_level"]=508, - ["local_display_socketed_gems_get_cold_to_fire_level"]=487, - ["local_display_socketed_gems_get_concentrated_area_level"]=477, - ["local_display_socketed_gems_get_curse_reflection"]=562, - ["local_display_socketed_gems_get_echo_level"]=517, - ["local_display_socketed_gems_get_elemental_proliferation_level"]=490, - ["local_display_socketed_gems_get_faster_attacks_level"]=493, - ["local_display_socketed_gems_get_faster_cast_level"]=524, - ["local_display_socketed_gems_get_faster_projectiles_level"]=506, - ["local_display_socketed_gems_get_fire_penetration_level"]=489, - ["local_display_socketed_gems_get_flee_level"]=522, - ["local_display_socketed_gems_get_fork_level"]=510, - ["local_display_socketed_gems_get_generosity_level"]=519, - ["local_display_socketed_gems_get_increased_area_level"]=248, - ["local_display_socketed_gems_get_increased_critical_damage_level"]=509, - ["local_display_socketed_gems_get_increased_duration_level"]=484, - ["local_display_socketed_gems_get_iron_will_level"]=525, - ["local_display_socketed_gems_get_item_quantity_+%"]=560, - ["local_display_socketed_gems_get_life_leech_level"]=507, - ["local_display_socketed_gems_get_mana_multplier_%"]=554, - ["local_display_socketed_gems_get_melee_physical_damage_level"]=492, - ["local_display_socketed_gems_get_melee_splash_level"]=495, - ["local_display_socketed_gems_get_multistrike_level"]=505, - ["local_display_socketed_gems_get_pierce_level"]=534, - ["local_display_socketed_gems_get_reduced_mana_cost_level"]=518, - ["local_display_socketed_gems_get_remote_mine_level"]=521, - ["local_display_socketed_gems_get_spell_totem_level"]=488, - ["local_display_socketed_gems_get_stun_level"]=503, - ["local_display_socketed_gems_get_trap_level"]=478, - ["local_display_socketed_gems_get_weapon_elemental_damage_level"]=511, - ["local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"]=558, - ["local_display_socketed_gems_have_blood_magic"]=551, - ["local_display_socketed_gems_have_chance_to_flee_%"]=559, - ["local_display_socketed_gems_have_elemental_equilibrium"]=627, - ["local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent"]=630, - ["local_display_socketed_gems_have_iron_will"]=563, - ["local_display_socketed_gems_have_mana_reservation_+%"]=552, - ["local_display_socketed_gems_have_number_of_additional_projectiles"]=631, - ["local_display_socketed_gems_have_secrets_of_suffering"]=629, - ["local_display_socketed_gems_mana_cost_-%"]=579, - ["local_display_socketed_gems_maximum_added_fire_damage"]=580, - ["local_display_socketed_gems_minimum_added_fire_damage"]=580, - ["local_display_socketed_gems_physical_damage_%_to_add_as_lightning"]=581, - ["local_display_socketed_gems_projectile_damage_+%_final"]=582, - ["local_display_socketed_gems_projectile_spells_cooldown_modifier_ms"]=583, - ["local_display_socketed_gems_projectiles_nova"]=633, - ["local_display_socketed_gems_skill_effect_duration_+%"]=635, - ["local_display_socketed_gems_supported_by_X_lesser_poison"]=547, - ["local_display_socketed_gems_supported_by_X_vile_toxins"]=546, - ["local_display_socketed_gems_supported_by_level_1_greater_spell_echo"]=249, - ["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=250, - ["local_display_socketed_gems_supported_by_level_x_archmage"]=251, - ["local_display_socketed_gems_supported_by_level_x_aura_duration"]=252, - ["local_display_socketed_gems_supported_by_level_x_automation"]=253, - ["local_display_socketed_gems_supported_by_level_x_barrage"]=254, - ["local_display_socketed_gems_supported_by_level_x_behead"]=255, - ["local_display_socketed_gems_supported_by_level_x_bloodlust"]=256, - ["local_display_socketed_gems_supported_by_level_x_bloodsoaked_banner"]=257, - ["local_display_socketed_gems_supported_by_level_x_bloodthirst"]=258, - ["local_display_socketed_gems_supported_by_level_x_bonechill"]=259, - ["local_display_socketed_gems_supported_by_level_x_bonespire"]=260, - ["local_display_socketed_gems_supported_by_level_x_brutality"]=261, - ["local_display_socketed_gems_supported_by_level_x_call_to_arms"]=262, - ["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=263, - ["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=264, - ["local_display_socketed_gems_supported_by_level_x_cast_on_ward_break"]=265, - ["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=266, - ["local_display_socketed_gems_supported_by_level_x_chain"]=267, - ["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=268, - ["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=269, - ["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=429, - ["local_display_socketed_gems_supported_by_level_x_charged_mines"]=270, - ["local_display_socketed_gems_supported_by_level_x_close_combat"]=271, - ["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=479, - ["local_display_socketed_gems_supported_by_level_x_companionship"]=272, - ["local_display_socketed_gems_supported_by_level_x_consecrated_cry"]=273, - ["local_display_socketed_gems_supported_by_level_x_controlled_blaze"]=274, - ["local_display_socketed_gems_supported_by_level_x_cooldown_recovery"]=275, - ["local_display_socketed_gems_supported_by_level_x_corrupting_cry"]=276, - ["local_display_socketed_gems_supported_by_level_x_cull_the_weak"]=277, - ["local_display_socketed_gems_supported_by_level_x_culling_strike"]=278, - ["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=279, - ["local_display_socketed_gems_supported_by_level_x_cursed_ground"]=280, - ["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=281, - ["local_display_socketed_gems_supported_by_level_x_deathmark"]=282, - ["local_display_socketed_gems_supported_by_level_x_decay"]=283, - ["local_display_socketed_gems_supported_by_level_x_devour"]=284, - ["local_display_socketed_gems_supported_by_level_x_divine_sentinel"]=285, - ["local_display_socketed_gems_supported_by_level_x_earthbreaker"]=286, - ["local_display_socketed_gems_supported_by_level_x_eclipse"]=287, - ["local_display_socketed_gems_supported_by_level_x_edify"]=288, - ["local_display_socketed_gems_supported_by_level_x_efficacy"]=289, - ["local_display_socketed_gems_supported_by_level_x_eldritch_blasphemy"]=290, - ["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=291, - ["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=292, - ["local_display_socketed_gems_supported_by_level_x_empower"]=293, - ["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=550, - ["local_display_socketed_gems_supported_by_level_x_energy_leech"]=294, - ["local_display_socketed_gems_supported_by_level_x_enhance"]=295, - ["local_display_socketed_gems_supported_by_level_x_enlighten"]=296, - ["local_display_socketed_gems_supported_by_level_x_eternal_blessing"]=297, - ["local_display_socketed_gems_supported_by_level_x_excommunicate"]=298, - ["local_display_socketed_gems_supported_by_level_x_expert_retaliation"]=299, - ["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=300, - ["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=301, - ["local_display_socketed_gems_supported_by_level_x_fissure"]=302, - ["local_display_socketed_gems_supported_by_level_x_fist_of_war"]=303, - ["local_display_socketed_gems_supported_by_level_x_flamewood"]=304, - ["local_display_socketed_gems_supported_by_level_x_focused_channelling"]=305, - ["local_display_socketed_gems_supported_by_level_x_focussed_ballista"]=306, - ["local_display_socketed_gems_supported_by_level_x_fortify"]=520, - ["local_display_socketed_gems_supported_by_level_x_foulgrasp"]=307, - ["local_display_socketed_gems_supported_by_level_x_fragility"]=308, - ["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=309, - ["local_display_socketed_gems_supported_by_level_x_fresh_meat"]=310, - ["local_display_socketed_gems_supported_by_level_x_frigid_bond"]=311, - ["local_display_socketed_gems_supported_by_level_x_frostmage"]=312, - ["local_display_socketed_gems_supported_by_level_x_gluttony"]=313, - ["local_display_socketed_gems_supported_by_level_x_greater_ancestral_call"]=314, - ["local_display_socketed_gems_supported_by_level_x_greater_chain"]=315, - ["local_display_socketed_gems_supported_by_level_x_greater_devour"]=316, - ["local_display_socketed_gems_supported_by_level_x_greater_fork"]=317, - ["local_display_socketed_gems_supported_by_level_x_greater_kinetic_instability"]=318, - ["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=319, - ["local_display_socketed_gems_supported_by_level_x_greater_multistrike"]=320, - ["local_display_socketed_gems_supported_by_level_x_greater_spell_cascade"]=321, - ["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=322, - ["local_display_socketed_gems_supported_by_level_x_greater_unleash"]=323, - ["local_display_socketed_gems_supported_by_level_x_greater_volley"]=324, - ["local_display_socketed_gems_supported_by_level_x_guardians_blessing"]=325, - ["local_display_socketed_gems_supported_by_level_x_hallow"]=326, - ["local_display_socketed_gems_supported_by_level_x_harrowing_throng"]=327, - ["local_display_socketed_gems_supported_by_level_x_hex_bloom"]=328, - ["local_display_socketed_gems_supported_by_level_x_hexpass"]=329, - ["local_display_socketed_gems_supported_by_level_x_hextoad"]=330, - ["local_display_socketed_gems_supported_by_level_x_hiveborn"]=331, - ["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=332, - ["local_display_socketed_gems_supported_by_level_x_immolate"]=333, - ["local_display_socketed_gems_supported_by_level_x_impale"]=334, - ["local_display_socketed_gems_supported_by_level_x_impending_doom"]=335, - ["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=336, - ["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=337, - ["local_display_socketed_gems_supported_by_level_x_increased_duration"]=338, - ["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=339, - ["local_display_socketed_gems_supported_by_level_x_intensify"]=340, - ["local_display_socketed_gems_supported_by_level_x_invention"]=341, - ["local_display_socketed_gems_supported_by_level_x_invert_the_rules"]=342, - ["local_display_socketed_gems_supported_by_level_x_iron_grip"]=343, - ["local_display_socketed_gems_supported_by_level_x_item_quantity"]=344, - ["local_display_socketed_gems_supported_by_level_x_item_rarity"]=345, - ["local_display_socketed_gems_supported_by_level_x_kinetic_instability"]=346, - ["local_display_socketed_gems_supported_by_level_x_lethal_dose"]=347, - ["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=348, - ["local_display_socketed_gems_supported_by_level_x_lifetap"]=349, - ["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=350, - ["local_display_socketed_gems_supported_by_level_x_living_lightning"]=351, - ["local_display_socketed_gems_supported_by_level_x_locus_mine"]=352, - ["local_display_socketed_gems_supported_by_level_x_machinations"]=353, - ["local_display_socketed_gems_supported_by_level_x_magnetism"]=354, - ["local_display_socketed_gems_supported_by_level_x_maim"]=355, - ["local_display_socketed_gems_supported_by_level_x_manaforged_arrows"]=356, - ["local_display_socketed_gems_supported_by_level_x_mark_on_hit"]=357, - ["local_display_socketed_gems_supported_by_level_x_meat_shield"]=358, - ["local_display_socketed_gems_supported_by_level_x_melee_crit_minion"]=359, - ["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=360, - ["local_display_socketed_gems_supported_by_level_x_minefield"]=361, - ["local_display_socketed_gems_supported_by_level_x_minion_pact"]=362, - ["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=363, - ["local_display_socketed_gems_supported_by_level_x_multi_totem"]=364, - ["local_display_socketed_gems_supported_by_level_x_multi_trap"]=480, - ["local_display_socketed_gems_supported_by_level_x_multicast"]=365, - ["local_display_socketed_gems_supported_by_level_x_nightblade"]=366, - ["local_display_socketed_gems_supported_by_level_x_obliteration"]=367, - ["local_display_socketed_gems_supported_by_level_x_onslaught"]=368, - ["local_display_socketed_gems_supported_by_level_x_overcharge"]=369, - ["local_display_socketed_gems_supported_by_level_x_overexertion"]=370, - ["local_display_socketed_gems_supported_by_level_x_overheat"]=371, - ["local_display_socketed_gems_supported_by_level_x_overloaded_intensity"]=372, - ["local_display_socketed_gems_supported_by_level_x_pacifism"]=373, - ["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=374, - ["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=375, - ["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=376, - ["local_display_socketed_gems_supported_by_level_x_pinpoint"]=377, - ["local_display_socketed_gems_supported_by_level_x_point_blank"]=378, - ["local_display_socketed_gems_supported_by_level_x_poison"]=379, - ["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=380, - ["local_display_socketed_gems_supported_by_level_x_prismatic_burst"]=381, - ["local_display_socketed_gems_supported_by_level_x_pulverise"]=382, - ["local_display_socketed_gems_supported_by_level_x_pyre"]=383, - ["local_display_socketed_gems_supported_by_level_x_rage"]=384, - ["local_display_socketed_gems_supported_by_level_x_rain"]=385, - ["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=386, - ["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=387, - ["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=388, - ["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=389, - ["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=390, - ["local_display_socketed_gems_supported_by_level_x_returning_projectiles"]=391, - ["local_display_socketed_gems_supported_by_level_x_rings_of_light"]=392, - ["local_display_socketed_gems_supported_by_level_x_rupture"]=393, - ["local_display_socketed_gems_supported_by_level_x_ruthless"]=394, - ["local_display_socketed_gems_supported_by_level_x_sacred_wisps"]=395, - ["local_display_socketed_gems_supported_by_level_x_sacrifice"]=396, - ["local_display_socketed_gems_supported_by_level_x_sadism"]=397, - ["local_display_socketed_gems_supported_by_level_x_scornful_herald"]=398, - ["local_display_socketed_gems_supported_by_level_x_second_wind"]=399, - ["local_display_socketed_gems_supported_by_level_x_shockwave"]=400, - ["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=401, - ["local_display_socketed_gems_supported_by_level_x_snipe"]=402, - ["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=403, - ["local_display_socketed_gems_supported_by_level_x_spell_focus"]=404, - ["local_display_socketed_gems_supported_by_level_x_spellblade"]=405, - ["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=406, - ["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=407, - ["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=408, - ["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=409, - ["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=410, - ["local_display_socketed_gems_supported_by_level_x_swiftbrand"]=411, - ["local_display_socketed_gems_supported_by_level_x_tornados"]=412, - ["local_display_socketed_gems_supported_by_level_x_transfusion"]=413, - ["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=481, - ["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=414, - ["local_display_socketed_gems_supported_by_level_x_trauma"]=415, - ["local_display_socketed_gems_supported_by_level_x_trinity"]=416, - ["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=417, - ["local_display_socketed_gems_supported_by_level_x_undead_army"]=418, - ["local_display_socketed_gems_supported_by_level_x_unholy_trinity"]=419, - ["local_display_socketed_gems_supported_by_level_x_unleash"]=420, - ["local_display_socketed_gems_supported_by_level_x_urgent_orders"]=421, - ["local_display_socketed_gems_supported_by_level_x_vaal_sacrifice"]=422, - ["local_display_socketed_gems_supported_by_level_x_vaal_temptation"]=423, - ["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=424, - ["local_display_socketed_gems_supported_by_level_x_void_shockwave"]=425, - ["local_display_socketed_gems_supported_by_level_x_voidstorm"]=426, - ["local_display_socketed_gems_supported_by_level_x_volatility"]=427, - ["local_display_socketed_gems_supported_by_level_x_ward"]=428, - ["local_display_socketed_gems_supported_by_pierce_level"]=533, - ["local_display_socketed_gems_supported_by_x_added_cold_damage"]=542, - ["local_display_socketed_gems_supported_by_x_cold_penetration"]=537, - ["local_display_socketed_gems_supported_by_x_controlled_destruction"]=549, - ["local_display_socketed_gems_supported_by_x_focused_channelling_level"]=527, - ["local_display_socketed_gems_supported_by_x_hypothermia"]=535, - ["local_display_socketed_gems_supported_by_x_ice_bite"]=536, - ["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=531, - ["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=530, - ["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=528, - ["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=532, - ["local_display_socketed_gems_supported_by_x_innervate_level"]=545, - ["local_display_socketed_gems_supported_by_x_intensify_level"]=430, - ["local_display_socketed_gems_supported_by_x_knockback_level"]=526, - ["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=529, - ["local_display_socketed_gems_supported_by_x_mana_leech"]=538, - ["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=543, - ["local_display_socketed_gems_supported_by_x_returning_projectiles_level"]=431, - ["local_display_socketed_gems_supported_by_x_summon_phantasm_level"]=432, - ["local_display_socketed_golem_attack_and_cast_speed_+%"]=221, - ["local_display_socketed_golem_buff_effect_+%"]=222, - ["local_display_socketed_golem_chance_to_taunt_%"]=223, - ["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=224, - ["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=225, - ["local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield"]=226, - ["local_display_socketed_melee_gems_have_area_radius_+%"]=555, - ["local_display_socketed_movement_skills_have_no_mana_cost"]=584, - ["local_display_socketed_non_curse_aura_gems_effect_+%"]=628, - ["local_display_socketed_projectile_spells_duration_+%_final"]=636, - ["local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire"]=556, - ["local_display_socketed_skills_attack_speed_+%"]=585, - ["local_display_socketed_skills_cast_speed_+%"]=586, - ["local_display_socketed_skills_deal_double_damage"]=587, - ["local_display_socketed_skills_fork"]=588, - ["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=557, - ["local_display_socketed_spell_damage_+%_final"]=589, - ["local_display_socketed_spells_additional_critical_strike_chance"]=590, - ["local_display_socketed_spells_additional_projectiles"]=632, - ["local_display_socketed_spells_critical_strike_multiplier_+"]=591, - ["local_display_socketed_spells_mana_cost_+%"]=592, - ["local_display_socketed_spells_projectiles_circle"]=634, - ["local_display_socketed_spells_repeat_count"]=566, - ["local_display_socketed_trap_skills_create_smoke_cloud"]=637, - ["local_display_socketed_travel_skills_damage_+%_final"]=593, - ["local_display_socketed_triggered_skills_deal_double_damage"]=433, - ["local_display_socketed_vaal_skills_area_of_effect_+%"]=594, - ["local_display_socketed_vaal_skills_aura_effect_+%"]=595, - ["local_display_socketed_vaal_skills_damage_+%_final"]=596, - ["local_display_socketed_vaal_skills_effect_duration_+%"]=597, - ["local_display_socketed_vaal_skills_elusive_on_use"]=598, - ["local_display_socketed_vaal_skills_extra_damage_rolls"]=599, - ["local_display_socketed_vaal_skills_ignore_monster_phys_reduction"]=600, - ["local_display_socketed_vaal_skills_ignore_monster_resistances"]=601, - ["local_display_socketed_vaal_skills_no_soul_gain_prevention_duration"]=602, - ["local_display_socketed_vaal_skills_projectile_speed_+%"]=603, - ["local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%"]=604, - ["local_display_socketed_vaal_skills_soul_requirement_+%_final"]=605, - ["local_display_socketed_vaal_skills_store_uses_+"]=606, - ["local_display_socketed_warcry_skills_cooldown_use_+"]=607, - ["local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills"]=608, - ["local_display_starfall_on_melee_critical_hit_%"]=807, - ["local_display_summon_harbinger_x_on_equip"]=657, - ["local_display_summon_raging_spirit_on_kill_%"]=808, - ["local_display_summon_wolf_on_kill_%"]=809, - ["local_display_summon_writhing_worm_every_2000_ms"]=644, - ["local_display_supported_by_level_10_controlled_destruction"]=434, - ["local_display_supported_by_level_10_intensify"]=435, - ["local_display_supported_by_level_10_spell_echo"]=436, - ["local_display_supported_by_level_x_awakened_added_chaos_damage"]=437, - ["local_display_supported_by_level_x_awakened_added_cold_damage"]=438, - ["local_display_supported_by_level_x_awakened_added_fire_damage"]=439, - ["local_display_supported_by_level_x_awakened_added_lightning_damage"]=440, - ["local_display_supported_by_level_x_awakened_ancestral_call"]=441, - ["local_display_supported_by_level_x_awakened_arrow_nova"]=442, - ["local_display_supported_by_level_x_awakened_blasphemy"]=443, - ["local_display_supported_by_level_x_awakened_brutality"]=444, - ["local_display_supported_by_level_x_awakened_burning_damage"]=445, - ["local_display_supported_by_level_x_awakened_cast_on_crit"]=446, - ["local_display_supported_by_level_x_awakened_cast_while_channelling"]=447, - ["local_display_supported_by_level_x_awakened_chain"]=448, - ["local_display_supported_by_level_x_awakened_cold_penetration"]=449, - ["local_display_supported_by_level_x_awakened_controlled_destruction"]=450, - ["local_display_supported_by_level_x_awakened_curse_on_hit"]=451, - ["local_display_supported_by_level_x_awakened_deadly_ailments"]=452, - ["local_display_supported_by_level_x_awakened_elemental_focus"]=453, - ["local_display_supported_by_level_x_awakened_empower"]=454, - ["local_display_supported_by_level_x_awakened_enhance"]=455, - ["local_display_supported_by_level_x_awakened_enlighten"]=456, - ["local_display_supported_by_level_x_awakened_fire_penetration"]=457, - ["local_display_supported_by_level_x_awakened_fork"]=458, - ["local_display_supported_by_level_x_awakened_generosity"]=459, - ["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=460, - ["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=461, - ["local_display_supported_by_level_x_awakened_lightning_penetration"]=462, - ["local_display_supported_by_level_x_awakened_melee_physical_damage"]=463, - ["local_display_supported_by_level_x_awakened_melee_splash"]=464, - ["local_display_supported_by_level_x_awakened_minion_damage"]=465, - ["local_display_supported_by_level_x_awakened_multistrike"]=466, - ["local_display_supported_by_level_x_awakened_spell_cascade"]=467, - ["local_display_supported_by_level_x_awakened_spell_echo"]=468, - ["local_display_supported_by_level_x_awakened_swift_affliction"]=469, - ["local_display_supported_by_level_x_awakened_unbound_ailments"]=470, - ["local_display_supported_by_level_x_awakened_unleash"]=471, - ["local_display_supported_by_level_x_awakened_vicious_projectiles"]=472, - ["local_display_supported_by_level_x_awakened_void_manipulation"]=473, - ["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=474, - ["local_display_tailwind_if_socketed_vaal_skill_used_recently"]=609, - ["local_display_tattoo_trigger_level_x_ahuana"]=757, - ["local_display_tattoo_trigger_level_x_akoya"]=758, - ["local_display_tattoo_trigger_level_x_ikiaho"]=759, - ["local_display_tattoo_trigger_level_x_kahuturoa"]=760, - ["local_display_tattoo_trigger_level_x_kaom"]=761, - ["local_display_tattoo_trigger_level_x_kiloava"]=762, - ["local_display_tattoo_trigger_level_x_maata"]=763, - ["local_display_tattoo_trigger_level_x_rakiata"]=764, - ["local_display_tattoo_trigger_level_x_tawhanuku"]=765, - ["local_display_tattoo_trigger_level_x_utula"]=766, - ["local_display_touched_by_tormented_illegal_fisherman"]=7945, - ["local_display_trickster_heartstopper_rotating_buff"]=7946, - ["local_display_trigger_commandment_of_inferno_on_crit_%"]=810, - ["local_display_trigger_corpse_walk_on_equip_level"]=811, - ["local_display_trigger_death_walk_on_equip_level"]=813, - ["local_display_trigger_ignition_blast_on_ignited_enemy_death"]=814, - ["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=815, - ["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=816, - ["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=817, - ["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=818, - ["local_display_trigger_level_20_shade_form_on_skill_use_%"]=819, - ["local_display_trigger_level_20_shade_form_when_hit_%"]=820, - ["local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance"]=769, - ["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=821, - ["local_display_trigger_level_X_assassins_mark_when_you_critically_hit_rare_or_unique_enemy_with_attacks"]=7947, - ["local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy"]=822, - ["local_display_trigger_level_X_atziri_flameblast"]=823, - ["local_display_trigger_level_X_atziri_storm_call"]=824, - ["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=702, - ["local_display_trigger_level_X_darktongue_kiss_on_curse"]=770, - ["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=825, - ["local_display_trigger_level_X_offering_every_5_seconds"]=826, - ["local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy"]=827, - ["local_display_trigger_level_X_shield_shatter_on_block"]=828, - ["local_display_trigger_level_X_void_gaze_on_skill_use"]=771, - ["local_display_trigger_level_X_ward_shatter_on_ward_break"]=829, - ["local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy"]=830, - ["local_display_trigger_level_x_create_fungal_ground_on_kill"]=812, - ["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=831, - ["local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon"]=832, - ["local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill"]=833, - ["local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength"]=834, - ["local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy"]=835, - ["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=836, - ["local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon"]=772, - ["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=837, - ["local_display_trigger_level_x_reflection_skill_on_equip"]=838, - ["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=839, - ["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=840, - ["local_display_trigger_level_x_stalking_pustule_on_kill"]=841, - ["local_display_trigger_level_x_storm_cascade_on_attack"]=773, - ["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=842, - ["local_display_trigger_level_x_summon_spectral_tiger_on_crit"]=7948, - ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=859, - ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=843, - ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=845, - ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=844, - ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=846, - ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=847, - ["local_display_trigger_void_sphere_on_kill_%_chance"]=848, - ["local_display_use_level_X_abyssal_cry_on_hit"]=849, - ["local_display_you_get_elemental_ailments_instead_of_allies"]=7949, - ["local_double_damage_to_chilled_enemies"]=3784, - ["local_double_damage_with_attacks"]=7950, - ["local_double_damage_with_attacks_chance_%"]=7951, - ["local_elemental_damage_+%"]=7952, - ["local_elemental_damage_+%_per_2%_quality"]=7953, - ["local_elemental_penetration_%"]=3785, - ["local_emberglow_ignite_proliferation_radius"]=7954, - ["local_energy_shield"]=1583, - ["local_energy_shield_+%"]=1584, - ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7955, - ["local_evasion_and_energy_shield_+%"]=1578, - ["local_evasion_rating_+%"]=1574, - ["local_evasion_rating_and_energy_shield"]=7956, + ["local_display_grants_sand_mirage_skill_level_x"]=8028, + ["local_display_grants_skil_convocation_level"]=720, + ["local_display_grants_skill_abyssal_cry_level"]=721, + ["local_display_grants_skill_accuracy_crits_aura_level"]=722, + ["local_display_grants_skill_ailment_bearer"]=723, + ["local_display_grants_skill_anger_level"]=686, + ["local_display_grants_skill_animosity_phys_degen_level"]=8029, + ["local_display_grants_skill_arakaali_aspect_level"]=724, + ["local_display_grants_skill_barkskin"]=725, + ["local_display_grants_skill_battlemages_cry_level"]=726, + ["local_display_grants_skill_bear_trap_level"]=660, + ["local_display_grants_skill_bird_aspect_level"]=727, + ["local_display_grants_skill_blight_level"]=693, + ["local_display_grants_skill_blood_sacrament_level"]=678, + ["local_display_grants_skill_bone_armour"]=728, + ["local_display_grants_skill_brand_detonate_level"]=729, + ["local_display_grants_skill_breach_hand_trap_level"]=730, + ["local_display_grants_skill_brine_king_aspect_level"]=731, + ["local_display_grants_skill_call_of_steel"]=732, + ["local_display_grants_skill_cat_aspect_level"]=733, + ["local_display_grants_skill_clarity_level"]=677, + ["local_display_grants_skill_conductivity_level"]=671, + ["local_display_grants_skill_corpse_sacrifice"]=734, + ["local_display_grants_skill_crab_aspect_level"]=735, + ["local_display_grants_skill_create_barnacle_level"]=736, + ["local_display_grants_skill_critical_weakness_level"]=683, + ["local_display_grants_skill_dash_level"]=737, + ["local_display_grants_skill_death_aura_level"]=698, + ["local_display_grants_skill_death_wish_level"]=738, + ["local_display_grants_skill_decoy_totem_level"]=739, + ["local_display_grants_skill_determination_level"]=687, + ["local_display_grants_skill_discipline_level"]=690, + ["local_display_grants_skill_doryanis_touch_level"]=696, + ["local_display_grants_skill_elemental_weakness_level"]=695, + ["local_display_grants_skill_embrace_madness_level"]=740, + ["local_display_grants_skill_enduring_cry_level"]=741, + ["local_display_grants_skill_evisceration"]=742, + ["local_display_grants_skill_flammability_level"]=667, + ["local_display_grants_skill_frostbite_level"]=672, + ["local_display_grants_skill_frostblink_level"]=657, + ["local_display_grants_skill_ghost_furnace_level"]=743, + ["local_display_grants_skill_gluttony_of_elements_level"]=682, + ["local_display_grants_skill_grace_level"]=688, + ["local_display_grants_skill_haste_level"]=674, + ["local_display_grants_skill_hatred_level"]=685, + ["local_display_grants_skill_herald_of_agony_level"]=744, + ["local_display_grants_skill_herald_of_ash_level"]=745, + ["local_display_grants_skill_herald_of_ice_level"]=746, + ["local_display_grants_skill_herald_of_purity_level"]=747, + ["local_display_grants_skill_herald_of_the_breach_level"]=748, + ["local_display_grants_skill_herald_of_thunder_level"]=749, + ["local_display_grants_skill_icestorm_level"]=699, + ["local_display_grants_skill_intimidating_cry_level"]=750, + ["local_display_grants_skill_lightning_warp_level"]=751, + ["local_display_grants_skill_lunaris_aspect_level"]=752, + ["local_display_grants_skill_malevolence_level"]=753, + ["local_display_grants_skill_minion_sacrifice"]=754, + ["local_display_grants_skill_mirage_chieftain"]=755, + ["local_display_grants_skill_penance"]=756, + ["local_display_grants_skill_pride_level"]=757, + ["local_display_grants_skill_projectile_weakness_level"]=694, + ["local_display_grants_skill_purity_level"]=681, + ["local_display_grants_skill_purity_of_cold_level"]=664, + ["local_display_grants_skill_purity_of_fire_level"]=658, + ["local_display_grants_skill_purity_of_lightning_level"]=666, + ["local_display_grants_skill_quieten"]=758, + ["local_display_grants_skill_rallying_cry_level"]=759, + ["local_display_grants_skill_resentment_fire_degen_level"]=8030, + ["local_display_grants_skill_scorching_ray_level"]=689, + ["local_display_grants_skill_smite_level"]=760, + ["local_display_grants_skill_solaris_aspect_level"]=761, + ["local_display_grants_skill_spider_aspect_level"]=762, + ["local_display_grants_skill_summon_radiant_sentinel"]=763, + ["local_display_grants_skill_temporal_chains_level"]=673, + ["local_display_grants_skill_touch_of_fire_level"]=764, + ["local_display_grants_skill_unhinge_level"]=765, + ["local_display_grants_skill_vaal_impurity_of_fire_level"]=766, + ["local_display_grants_skill_vaal_impurity_of_ice_level"]=767, + ["local_display_grants_skill_vaal_impurity_of_lightning_level"]=768, + ["local_display_grants_skill_vampiric_icon_level"]=769, + ["local_display_grants_skill_vitality_level"]=679, + ["local_display_grants_skill_voodoo_doll"]=770, + ["local_display_grants_skill_vulnerability_level"]=697, + ["local_display_grants_skill_weapon_storm"]=771, + ["local_display_grants_skill_wrath_level"]=684, + ["local_display_grants_skill_zealotry_level"]=772, + ["local_display_grants_solartwine_skill_level_x"]=8031, + ["local_display_grants_summon_beast_companion"]=665, + ["local_display_grants_summon_void_spawn"]=773, + ["local_display_grants_unholy_might"]=2972, + ["local_display_grants_unleash_power"]=774, + ["local_display_guardian_alternating_block_chance"]=8032, + ["local_display_has_additional_implicit_mod"]=675, + ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3460, + ["local_display_illusory_warp_level"]=659, + ["local_display_inflict_barnacles_on_nearby_enemies_every_second"]=775, + ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1645, + ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=8283, + ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=3402, + ["local_display_manifest_dancing_dervish_disables_weapons"]=3401, + ["local_display_minions_grant_onslaught"]=3403, + ["local_display_mod_aura_mana_regeration_rate_+%"]=8033, + ["local_display_molten_burst_on_melee_hit_%"]=826, + ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=8034, + ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=8035, + ["local_display_nearby_allies_critical_strike_multiplier_+"]=8036, + ["local_display_nearby_allies_extra_damage_rolls"]=8037, + ["local_display_nearby_allies_have_fortify"]=8038, + ["local_display_nearby_enemies_all_resistances_%"]=3057, + ["local_display_nearby_enemies_are_blinded"]=3456, + ["local_display_nearby_enemies_are_chilled"]=8039, + ["local_display_nearby_enemies_are_covered_in_ash"]=8040, + ["local_display_nearby_enemies_are_crushed"]=3457, + ["local_display_nearby_enemies_are_debilitated"]=8041, + ["local_display_nearby_enemies_are_intimidated"]=8042, + ["local_display_nearby_enemies_cannot_crit"]=8043, + ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3461, + ["local_display_nearby_enemies_flask_charges_granted_+%"]=3462, + ["local_display_nearby_enemies_have_fire_exposure"]=8044, + ["local_display_nearby_enemies_have_malediction"]=3458, + ["local_display_nearby_enemies_movement_speed_+%"]=3463, + ["local_display_nearby_enemies_scorched"]=3459, + ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3464, + ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=4264, + ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=3223, + ["local_display_nearby_enemy_chaos_damage_resistance_%"]=8045, + ["local_display_nearby_enemy_cold_damage_resistance_%"]=8046, + ["local_display_nearby_enemy_elemental_damage_taken_+%"]=8047, + ["local_display_nearby_enemy_fire_damage_resistance_%"]=8048, + ["local_display_nearby_enemy_life_reserved_by_stat_%"]=8049, + ["local_display_nearby_enemy_lightning_damage_resistance_%"]=8050, + ["local_display_nearby_enemy_no_chaos_damage_resistance"]=8051, + ["local_display_nearby_enemy_physical_damage_taken_+%"]=8052, + ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=4487, + ["local_display_raise_spider_on_kill_%_chance"]=827, + ["local_display_self_crushed"]=8053, + ["local_display_socketed_attack_damage_+%_final"]=581, + ["local_display_socketed_attacks_additional_critical_strike_chance"]=582, + ["local_display_socketed_attacks_critical_strike_multiplier_+"]=583, + ["local_display_socketed_attacks_mana_cost_+"]=584, + ["local_display_socketed_curse_gems_have_mana_reservation_+%"]=649, + ["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=555, + ["local_display_socketed_gems_additional_critical_strike_chance_%"]=576, + ["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=585, + ["local_display_socketed_gems_chain_X_additional_times"]=575, + ["local_display_socketed_gems_curse_auras_also_affect_you"]=586, + ["local_display_socketed_gems_damage_+%_final_while_on_low_life"]=587, + ["local_display_socketed_gems_damage_over_time_+%_final"]=637, + ["local_display_socketed_gems_elemental_damage_+%_final"]=588, + ["local_display_socketed_gems_exposure_on_hit"]=589, + ["local_display_socketed_gems_get_added_chaos_damage_level"]=493, + ["local_display_socketed_gems_get_added_fire_damage_level"]=497, + ["local_display_socketed_gems_get_added_lightning_damage_level"]=502, + ["local_display_socketed_gems_get_additional_accuracy_level"]=515, + ["local_display_socketed_gems_get_blind_level"]=505, + ["local_display_socketed_gems_get_blood_magic_level"]=494, + ["local_display_socketed_gems_get_cast_on_crit_level"]=507, + ["local_display_socketed_gems_get_cast_on_death_level"]=513, + ["local_display_socketed_gems_get_cast_when_stunned_level"]=512, + ["local_display_socketed_gems_get_chance_to_bleed_level"]=519, + ["local_display_socketed_gems_get_cold_to_fire_level"]=498, + ["local_display_socketed_gems_get_concentrated_area_level"]=488, + ["local_display_socketed_gems_get_curse_reflection"]=573, + ["local_display_socketed_gems_get_echo_level"]=528, + ["local_display_socketed_gems_get_elemental_proliferation_level"]=501, + ["local_display_socketed_gems_get_faster_attacks_level"]=504, + ["local_display_socketed_gems_get_faster_cast_level"]=535, + ["local_display_socketed_gems_get_faster_projectiles_level"]=517, + ["local_display_socketed_gems_get_fire_penetration_level"]=500, + ["local_display_socketed_gems_get_flee_level"]=533, + ["local_display_socketed_gems_get_fork_level"]=521, + ["local_display_socketed_gems_get_generosity_level"]=530, + ["local_display_socketed_gems_get_increased_area_level"]=257, + ["local_display_socketed_gems_get_increased_critical_damage_level"]=520, + ["local_display_socketed_gems_get_increased_duration_level"]=495, + ["local_display_socketed_gems_get_iron_will_level"]=536, + ["local_display_socketed_gems_get_item_quantity_+%"]=571, + ["local_display_socketed_gems_get_life_leech_level"]=518, + ["local_display_socketed_gems_get_mana_multplier_%"]=565, + ["local_display_socketed_gems_get_melee_physical_damage_level"]=503, + ["local_display_socketed_gems_get_melee_splash_level"]=506, + ["local_display_socketed_gems_get_multistrike_level"]=516, + ["local_display_socketed_gems_get_pierce_level"]=545, + ["local_display_socketed_gems_get_reduced_mana_cost_level"]=529, + ["local_display_socketed_gems_get_remote_mine_level"]=532, + ["local_display_socketed_gems_get_spell_totem_level"]=499, + ["local_display_socketed_gems_get_stun_level"]=514, + ["local_display_socketed_gems_get_trap_level"]=489, + ["local_display_socketed_gems_get_weapon_elemental_damage_level"]=522, + ["local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"]=569, + ["local_display_socketed_gems_have_blood_magic"]=562, + ["local_display_socketed_gems_have_chance_to_flee_%"]=570, + ["local_display_socketed_gems_have_elemental_equilibrium"]=638, + ["local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent"]=641, + ["local_display_socketed_gems_have_iron_will"]=574, + ["local_display_socketed_gems_have_mana_reservation_+%"]=563, + ["local_display_socketed_gems_have_number_of_additional_projectiles"]=642, + ["local_display_socketed_gems_have_secrets_of_suffering"]=640, + ["local_display_socketed_gems_mana_cost_-%"]=590, + ["local_display_socketed_gems_maximum_added_fire_damage"]=591, + ["local_display_socketed_gems_minimum_added_fire_damage"]=591, + ["local_display_socketed_gems_physical_damage_%_to_add_as_lightning"]=592, + ["local_display_socketed_gems_projectile_damage_+%_final"]=593, + ["local_display_socketed_gems_projectile_spells_cooldown_modifier_ms"]=594, + ["local_display_socketed_gems_projectiles_nova"]=644, + ["local_display_socketed_gems_skill_effect_duration_+%"]=646, + ["local_display_socketed_gems_supported_by_X_lesser_poison"]=558, + ["local_display_socketed_gems_supported_by_X_vile_toxins"]=557, + ["local_display_socketed_gems_supported_by_level_1_greater_spell_echo"]=258, + ["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=259, + ["local_display_socketed_gems_supported_by_level_x_archmage"]=260, + ["local_display_socketed_gems_supported_by_level_x_aura_duration"]=261, + ["local_display_socketed_gems_supported_by_level_x_automation"]=262, + ["local_display_socketed_gems_supported_by_level_x_barrage"]=263, + ["local_display_socketed_gems_supported_by_level_x_behead"]=264, + ["local_display_socketed_gems_supported_by_level_x_bloodlust"]=265, + ["local_display_socketed_gems_supported_by_level_x_bloodsoaked_banner"]=266, + ["local_display_socketed_gems_supported_by_level_x_bloodthirst"]=267, + ["local_display_socketed_gems_supported_by_level_x_bonechill"]=268, + ["local_display_socketed_gems_supported_by_level_x_bonespire"]=269, + ["local_display_socketed_gems_supported_by_level_x_brutality"]=270, + ["local_display_socketed_gems_supported_by_level_x_call_to_arms"]=271, + ["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=272, + ["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=273, + ["local_display_socketed_gems_supported_by_level_x_cast_on_ward_break"]=274, + ["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=275, + ["local_display_socketed_gems_supported_by_level_x_chain"]=276, + ["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=277, + ["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=278, + ["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=439, + ["local_display_socketed_gems_supported_by_level_x_charged_mines"]=279, + ["local_display_socketed_gems_supported_by_level_x_close_combat"]=280, + ["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=490, + ["local_display_socketed_gems_supported_by_level_x_companionship"]=281, + ["local_display_socketed_gems_supported_by_level_x_consecrated_cry"]=282, + ["local_display_socketed_gems_supported_by_level_x_controlled_blaze"]=283, + ["local_display_socketed_gems_supported_by_level_x_cooldown_recovery"]=284, + ["local_display_socketed_gems_supported_by_level_x_corrupting_cry"]=285, + ["local_display_socketed_gems_supported_by_level_x_crustaceous_grasp"]=8054, + ["local_display_socketed_gems_supported_by_level_x_crystalfall"]=286, + ["local_display_socketed_gems_supported_by_level_x_cull_the_weak"]=287, + ["local_display_socketed_gems_supported_by_level_x_culling_strike"]=288, + ["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=289, + ["local_display_socketed_gems_supported_by_level_x_cursed_ground"]=290, + ["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=291, + ["local_display_socketed_gems_supported_by_level_x_deathmark"]=292, + ["local_display_socketed_gems_supported_by_level_x_decay"]=293, + ["local_display_socketed_gems_supported_by_level_x_devour"]=294, + ["local_display_socketed_gems_supported_by_level_x_divine_sentinel"]=295, + ["local_display_socketed_gems_supported_by_level_x_earthbreaker"]=296, + ["local_display_socketed_gems_supported_by_level_x_eclipse"]=297, + ["local_display_socketed_gems_supported_by_level_x_edify"]=298, + ["local_display_socketed_gems_supported_by_level_x_efficacy"]=299, + ["local_display_socketed_gems_supported_by_level_x_eldritch_blasphemy"]=300, + ["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=301, + ["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=302, + ["local_display_socketed_gems_supported_by_level_x_empower"]=303, + ["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=561, + ["local_display_socketed_gems_supported_by_level_x_energy_leech"]=304, + ["local_display_socketed_gems_supported_by_level_x_enhance"]=305, + ["local_display_socketed_gems_supported_by_level_x_enlighten"]=306, + ["local_display_socketed_gems_supported_by_level_x_eternal_blessing"]=307, + ["local_display_socketed_gems_supported_by_level_x_excommunicate"]=308, + ["local_display_socketed_gems_supported_by_level_x_expert_retaliation"]=309, + ["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=310, + ["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=311, + ["local_display_socketed_gems_supported_by_level_x_fissure"]=312, + ["local_display_socketed_gems_supported_by_level_x_fist_of_war"]=313, + ["local_display_socketed_gems_supported_by_level_x_flamewood"]=314, + ["local_display_socketed_gems_supported_by_level_x_focused_channelling"]=315, + ["local_display_socketed_gems_supported_by_level_x_focussed_ballista"]=316, + ["local_display_socketed_gems_supported_by_level_x_fortify"]=531, + ["local_display_socketed_gems_supported_by_level_x_foulgrasp"]=317, + ["local_display_socketed_gems_supported_by_level_x_fragility"]=318, + ["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=319, + ["local_display_socketed_gems_supported_by_level_x_fresh_meat"]=320, + ["local_display_socketed_gems_supported_by_level_x_frigid_bond"]=321, + ["local_display_socketed_gems_supported_by_level_x_frostmage"]=322, + ["local_display_socketed_gems_supported_by_level_x_gluttony"]=323, + ["local_display_socketed_gems_supported_by_level_x_greater_ancestral_call"]=324, + ["local_display_socketed_gems_supported_by_level_x_greater_chain"]=325, + ["local_display_socketed_gems_supported_by_level_x_greater_devour"]=326, + ["local_display_socketed_gems_supported_by_level_x_greater_fork"]=327, + ["local_display_socketed_gems_supported_by_level_x_greater_kinetic_instability"]=328, + ["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=329, + ["local_display_socketed_gems_supported_by_level_x_greater_multistrike"]=330, + ["local_display_socketed_gems_supported_by_level_x_greater_spell_cascade"]=331, + ["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=332, + ["local_display_socketed_gems_supported_by_level_x_greater_unleash"]=333, + ["local_display_socketed_gems_supported_by_level_x_greater_volley"]=334, + ["local_display_socketed_gems_supported_by_level_x_guardians_blessing"]=335, + ["local_display_socketed_gems_supported_by_level_x_hallow"]=336, + ["local_display_socketed_gems_supported_by_level_x_harrowing_throng"]=337, + ["local_display_socketed_gems_supported_by_level_x_hex_bloom"]=338, + ["local_display_socketed_gems_supported_by_level_x_hexpass"]=339, + ["local_display_socketed_gems_supported_by_level_x_hextoad"]=340, + ["local_display_socketed_gems_supported_by_level_x_hiveborn"]=341, + ["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=342, + ["local_display_socketed_gems_supported_by_level_x_immolate"]=343, + ["local_display_socketed_gems_supported_by_level_x_impale"]=344, + ["local_display_socketed_gems_supported_by_level_x_impending_doom"]=345, + ["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=346, + ["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=347, + ["local_display_socketed_gems_supported_by_level_x_increased_duration"]=348, + ["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=349, + ["local_display_socketed_gems_supported_by_level_x_intensify"]=350, + ["local_display_socketed_gems_supported_by_level_x_invention"]=351, + ["local_display_socketed_gems_supported_by_level_x_invert_the_rules"]=352, + ["local_display_socketed_gems_supported_by_level_x_iron_grip"]=353, + ["local_display_socketed_gems_supported_by_level_x_item_quantity"]=354, + ["local_display_socketed_gems_supported_by_level_x_item_rarity"]=355, + ["local_display_socketed_gems_supported_by_level_x_kinetic_instability"]=356, + ["local_display_socketed_gems_supported_by_level_x_lethal_dose"]=357, + ["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=358, + ["local_display_socketed_gems_supported_by_level_x_lifetap"]=359, + ["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=360, + ["local_display_socketed_gems_supported_by_level_x_living_lightning"]=361, + ["local_display_socketed_gems_supported_by_level_x_locus_mine"]=362, + ["local_display_socketed_gems_supported_by_level_x_machinations"]=363, + ["local_display_socketed_gems_supported_by_level_x_magnetism"]=364, + ["local_display_socketed_gems_supported_by_level_x_maim"]=365, + ["local_display_socketed_gems_supported_by_level_x_manaforged_arrows"]=366, + ["local_display_socketed_gems_supported_by_level_x_mark_on_hit"]=367, + ["local_display_socketed_gems_supported_by_level_x_meat_shield"]=368, + ["local_display_socketed_gems_supported_by_level_x_melee_crit_minion"]=369, + ["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=370, + ["local_display_socketed_gems_supported_by_level_x_minefield"]=371, + ["local_display_socketed_gems_supported_by_level_x_minion_pact"]=372, + ["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=373, + ["local_display_socketed_gems_supported_by_level_x_multi_totem"]=374, + ["local_display_socketed_gems_supported_by_level_x_multi_trap"]=491, + ["local_display_socketed_gems_supported_by_level_x_multicast"]=375, + ["local_display_socketed_gems_supported_by_level_x_nightblade"]=376, + ["local_display_socketed_gems_supported_by_level_x_obliteration"]=377, + ["local_display_socketed_gems_supported_by_level_x_onslaught"]=378, + ["local_display_socketed_gems_supported_by_level_x_overcharge"]=379, + ["local_display_socketed_gems_supported_by_level_x_overexertion"]=380, + ["local_display_socketed_gems_supported_by_level_x_overheat"]=381, + ["local_display_socketed_gems_supported_by_level_x_overloaded_intensity"]=382, + ["local_display_socketed_gems_supported_by_level_x_pacifism"]=383, + ["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=384, + ["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=385, + ["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=386, + ["local_display_socketed_gems_supported_by_level_x_pinpoint"]=387, + ["local_display_socketed_gems_supported_by_level_x_point_blank"]=388, + ["local_display_socketed_gems_supported_by_level_x_poison"]=389, + ["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=390, + ["local_display_socketed_gems_supported_by_level_x_prismatic_burst"]=391, + ["local_display_socketed_gems_supported_by_level_x_pulverise"]=392, + ["local_display_socketed_gems_supported_by_level_x_pyre"]=393, + ["local_display_socketed_gems_supported_by_level_x_rage"]=394, + ["local_display_socketed_gems_supported_by_level_x_rain"]=395, + ["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=396, + ["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=397, + ["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=398, + ["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=399, + ["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=400, + ["local_display_socketed_gems_supported_by_level_x_returning_projectiles"]=401, + ["local_display_socketed_gems_supported_by_level_x_rings_of_light"]=402, + ["local_display_socketed_gems_supported_by_level_x_rupture"]=403, + ["local_display_socketed_gems_supported_by_level_x_ruthless"]=404, + ["local_display_socketed_gems_supported_by_level_x_sacred_wisps"]=405, + ["local_display_socketed_gems_supported_by_level_x_sacrifice"]=406, + ["local_display_socketed_gems_supported_by_level_x_sadism"]=407, + ["local_display_socketed_gems_supported_by_level_x_scornful_herald"]=408, + ["local_display_socketed_gems_supported_by_level_x_second_wind"]=409, + ["local_display_socketed_gems_supported_by_level_x_shockwave"]=410, + ["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=411, + ["local_display_socketed_gems_supported_by_level_x_snipe"]=412, + ["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=413, + ["local_display_socketed_gems_supported_by_level_x_spell_focus"]=414, + ["local_display_socketed_gems_supported_by_level_x_spellblade"]=415, + ["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=416, + ["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=417, + ["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=418, + ["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=419, + ["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=420, + ["local_display_socketed_gems_supported_by_level_x_swiftbrand"]=421, + ["local_display_socketed_gems_supported_by_level_x_tornados"]=422, + ["local_display_socketed_gems_supported_by_level_x_transfusion"]=423, + ["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=492, + ["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=424, + ["local_display_socketed_gems_supported_by_level_x_trauma"]=425, + ["local_display_socketed_gems_supported_by_level_x_trinity"]=426, + ["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=427, + ["local_display_socketed_gems_supported_by_level_x_undead_army"]=428, + ["local_display_socketed_gems_supported_by_level_x_unholy_trinity"]=429, + ["local_display_socketed_gems_supported_by_level_x_unleash"]=430, + ["local_display_socketed_gems_supported_by_level_x_urgent_orders"]=431, + ["local_display_socketed_gems_supported_by_level_x_vaal_sacrifice"]=432, + ["local_display_socketed_gems_supported_by_level_x_vaal_temptation"]=433, + ["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=434, + ["local_display_socketed_gems_supported_by_level_x_void_shockwave"]=435, + ["local_display_socketed_gems_supported_by_level_x_voidstorm"]=436, + ["local_display_socketed_gems_supported_by_level_x_volatility"]=437, + ["local_display_socketed_gems_supported_by_level_x_ward"]=438, + ["local_display_socketed_gems_supported_by_pierce_level"]=544, + ["local_display_socketed_gems_supported_by_x_added_cold_damage"]=553, + ["local_display_socketed_gems_supported_by_x_cold_penetration"]=548, + ["local_display_socketed_gems_supported_by_x_combustion_level"]=440, + ["local_display_socketed_gems_supported_by_x_controlled_destruction"]=560, + ["local_display_socketed_gems_supported_by_x_focused_channelling_level"]=538, + ["local_display_socketed_gems_supported_by_x_hypothermia"]=546, + ["local_display_socketed_gems_supported_by_x_ice_bite"]=547, + ["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=542, + ["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=541, + ["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=539, + ["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=543, + ["local_display_socketed_gems_supported_by_x_innervate_level"]=556, + ["local_display_socketed_gems_supported_by_x_intensify_level"]=441, + ["local_display_socketed_gems_supported_by_x_knockback_level"]=537, + ["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=540, + ["local_display_socketed_gems_supported_by_x_mana_leech"]=549, + ["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=554, + ["local_display_socketed_gems_supported_by_x_returning_projectiles_level"]=442, + ["local_display_socketed_gems_supported_by_x_summon_phantasm_level"]=443, + ["local_display_socketed_golem_attack_and_cast_speed_+%"]=228, + ["local_display_socketed_golem_buff_effect_+%"]=229, + ["local_display_socketed_golem_chance_to_taunt_%"]=230, + ["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=231, + ["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=232, + ["local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield"]=233, + ["local_display_socketed_melee_gems_have_area_radius_+%"]=566, + ["local_display_socketed_movement_skills_have_no_mana_cost"]=595, + ["local_display_socketed_non_curse_aura_gems_effect_+%"]=639, + ["local_display_socketed_projectile_spells_duration_+%_final"]=647, + ["local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire"]=567, + ["local_display_socketed_skills_attack_speed_+%"]=596, + ["local_display_socketed_skills_cast_speed_+%"]=597, + ["local_display_socketed_skills_deal_double_damage"]=598, + ["local_display_socketed_skills_fork"]=599, + ["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=568, + ["local_display_socketed_spell_damage_+%_final"]=600, + ["local_display_socketed_spells_additional_critical_strike_chance"]=601, + ["local_display_socketed_spells_additional_projectiles"]=643, + ["local_display_socketed_spells_critical_strike_multiplier_+"]=602, + ["local_display_socketed_spells_mana_cost_+%"]=603, + ["local_display_socketed_spells_projectiles_circle"]=645, + ["local_display_socketed_spells_repeat_count"]=577, + ["local_display_socketed_trap_skills_create_smoke_cloud"]=648, + ["local_display_socketed_travel_skills_damage_+%_final"]=604, + ["local_display_socketed_triggered_skills_deal_double_damage"]=444, + ["local_display_socketed_vaal_skills_area_of_effect_+%"]=605, + ["local_display_socketed_vaal_skills_aura_effect_+%"]=606, + ["local_display_socketed_vaal_skills_damage_+%_final"]=607, + ["local_display_socketed_vaal_skills_effect_duration_+%"]=608, + ["local_display_socketed_vaal_skills_elusive_on_use"]=609, + ["local_display_socketed_vaal_skills_extra_damage_rolls"]=610, + ["local_display_socketed_vaal_skills_ignore_monster_phys_reduction"]=611, + ["local_display_socketed_vaal_skills_ignore_monster_resistances"]=612, + ["local_display_socketed_vaal_skills_no_soul_gain_prevention_duration"]=613, + ["local_display_socketed_vaal_skills_projectile_speed_+%"]=614, + ["local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%"]=615, + ["local_display_socketed_vaal_skills_soul_requirement_+%_final"]=616, + ["local_display_socketed_vaal_skills_store_uses_+"]=617, + ["local_display_socketed_warcry_skills_cooldown_use_+"]=618, + ["local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills"]=619, + ["local_display_starfall_on_melee_critical_hit_%"]=828, + ["local_display_summon_harbinger_x_on_equip"]=668, + ["local_display_summon_raging_spirit_on_kill_%"]=829, + ["local_display_summon_wolf_on_kill_%"]=830, + ["local_display_summon_writhing_worm_every_2000_ms"]=655, + ["local_display_supported_by_crab_totem"]=234, + ["local_display_supported_by_level_10_controlled_destruction"]=445, + ["local_display_supported_by_level_10_intensify"]=446, + ["local_display_supported_by_level_10_spell_echo"]=447, + ["local_display_supported_by_level_x_awakened_added_chaos_damage"]=448, + ["local_display_supported_by_level_x_awakened_added_cold_damage"]=449, + ["local_display_supported_by_level_x_awakened_added_fire_damage"]=450, + ["local_display_supported_by_level_x_awakened_added_lightning_damage"]=451, + ["local_display_supported_by_level_x_awakened_ancestral_call"]=452, + ["local_display_supported_by_level_x_awakened_arrow_nova"]=453, + ["local_display_supported_by_level_x_awakened_blasphemy"]=454, + ["local_display_supported_by_level_x_awakened_brutality"]=455, + ["local_display_supported_by_level_x_awakened_burning_damage"]=456, + ["local_display_supported_by_level_x_awakened_cast_on_crit"]=457, + ["local_display_supported_by_level_x_awakened_cast_while_channelling"]=458, + ["local_display_supported_by_level_x_awakened_chain"]=459, + ["local_display_supported_by_level_x_awakened_cold_penetration"]=460, + ["local_display_supported_by_level_x_awakened_controlled_destruction"]=461, + ["local_display_supported_by_level_x_awakened_curse_on_hit"]=462, + ["local_display_supported_by_level_x_awakened_deadly_ailments"]=463, + ["local_display_supported_by_level_x_awakened_elemental_focus"]=464, + ["local_display_supported_by_level_x_awakened_empower"]=465, + ["local_display_supported_by_level_x_awakened_enhance"]=466, + ["local_display_supported_by_level_x_awakened_enlighten"]=467, + ["local_display_supported_by_level_x_awakened_fire_penetration"]=468, + ["local_display_supported_by_level_x_awakened_fork"]=469, + ["local_display_supported_by_level_x_awakened_generosity"]=470, + ["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=471, + ["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=472, + ["local_display_supported_by_level_x_awakened_lightning_penetration"]=473, + ["local_display_supported_by_level_x_awakened_melee_physical_damage"]=474, + ["local_display_supported_by_level_x_awakened_melee_splash"]=475, + ["local_display_supported_by_level_x_awakened_minion_damage"]=476, + ["local_display_supported_by_level_x_awakened_multistrike"]=477, + ["local_display_supported_by_level_x_awakened_spell_cascade"]=478, + ["local_display_supported_by_level_x_awakened_spell_echo"]=479, + ["local_display_supported_by_level_x_awakened_swift_affliction"]=480, + ["local_display_supported_by_level_x_awakened_unbound_ailments"]=481, + ["local_display_supported_by_level_x_awakened_unleash"]=482, + ["local_display_supported_by_level_x_awakened_vicious_projectiles"]=483, + ["local_display_supported_by_level_x_awakened_void_manipulation"]=484, + ["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=485, + ["local_display_tailwind_if_socketed_vaal_skill_used_recently"]=620, + ["local_display_tattoo_trigger_level_x_ahuana"]=776, + ["local_display_tattoo_trigger_level_x_akoya"]=777, + ["local_display_tattoo_trigger_level_x_ikiaho"]=778, + ["local_display_tattoo_trigger_level_x_kahuturoa"]=779, + ["local_display_tattoo_trigger_level_x_kaom"]=780, + ["local_display_tattoo_trigger_level_x_kiloava"]=781, + ["local_display_tattoo_trigger_level_x_maata"]=782, + ["local_display_tattoo_trigger_level_x_rakiata"]=783, + ["local_display_tattoo_trigger_level_x_tawhanuku"]=784, + ["local_display_tattoo_trigger_level_x_utula"]=785, + ["local_display_touched_by_tormented_illegal_fisherman"]=8055, + ["local_display_trickster_heartstopper_rotating_buff"]=8056, + ["local_display_trigger_brine_rot_aura_on_gain_skill"]=786, + ["local_display_trigger_brine_torrent"]=787, + ["local_display_trigger_commandment_of_inferno_on_crit_%"]=831, + ["local_display_trigger_corpse_walk_on_equip_level"]=832, + ["local_display_trigger_death_walk_on_equip_level"]=834, + ["local_display_trigger_ignition_blast_on_ignited_enemy_death"]=835, + ["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=836, + ["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=837, + ["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=838, + ["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=839, + ["local_display_trigger_level_20_shade_form_on_skill_use_%"]=840, + ["local_display_trigger_level_20_shade_form_when_hit_%"]=841, + ["local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance"]=790, + ["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=842, + ["local_display_trigger_level_X_assassins_mark_when_you_critically_hit_rare_or_unique_enemy_with_attacks"]=8057, + ["local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy"]=843, + ["local_display_trigger_level_X_atziri_flameblast"]=844, + ["local_display_trigger_level_X_atziri_storm_call"]=845, + ["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=714, + ["local_display_trigger_level_X_darktongue_kiss_on_curse"]=791, + ["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=846, + ["local_display_trigger_level_X_offering_every_5_seconds"]=847, + ["local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy"]=848, + ["local_display_trigger_level_X_shield_shatter_on_block"]=849, + ["local_display_trigger_level_X_void_gaze_on_skill_use"]=792, + ["local_display_trigger_level_X_ward_shatter_on_ward_break"]=850, + ["local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy"]=851, + ["local_display_trigger_level_x_create_fungal_ground_on_kill"]=833, + ["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=852, + ["local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon"]=853, + ["local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill"]=854, + ["local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength"]=855, + ["local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy"]=856, + ["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=857, + ["local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon"]=793, + ["local_display_trigger_level_x_molten_burst_on_melee_hit"]=195, + ["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=858, + ["local_display_trigger_level_x_reflection_skill_on_equip"]=859, + ["local_display_trigger_level_x_sands_of_time_on_casting_spell"]=222, + ["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=860, + ["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=861, + ["local_display_trigger_level_x_stalking_pustule_on_kill"]=862, + ["local_display_trigger_level_x_storm_cascade_on_attack"]=794, + ["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=863, + ["local_display_trigger_level_x_summon_spectral_tiger_on_crit"]=8058, + ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=880, + ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=864, + ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=866, + ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=865, + ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=867, + ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=868, + ["local_display_trigger_void_sphere_on_kill_%_chance"]=869, + ["local_display_use_level_X_abyssal_cry_on_hit"]=870, + ["local_display_you_get_elemental_ailments_instead_of_allies"]=8059, + ["local_double_damage_to_chilled_enemies"]=3820, + ["local_double_damage_with_attacks"]=8060, + ["local_double_damage_with_attacks_chance_%"]=8061, + ["local_elemental_damage_+%"]=8062, + ["local_elemental_damage_+%_per_2%_quality"]=8063, + ["local_elemental_penetration_%"]=3821, + ["local_emberglow_ignite_proliferation_radius"]=8064, + ["local_enchant_stat_magnitude_+%"]=81, + ["local_energy_shield"]=1605, + ["local_energy_shield_+%"]=1606, + ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=8065, + ["local_evasion_and_energy_shield_+%"]=1600, + ["local_evasion_rating_+%"]=1596, + ["local_evasion_rating_and_energy_shield"]=8066, ["local_explicit_elemental_damage_mod_effect_+%"]=77, ["local_explicit_minion_mod_effect_+%"]=78, - ["local_explicit_mod_effect_+%"]=81, + ["local_explicit_mod_effect_+%"]=82, + ["local_explicit_mod_effect_+%_per_global_socketed_abyss_jewel"]=8067, ["local_explicit_physical_and_chaos_damage_mod_effect_+%"]=79, - ["local_extra_max_charges"]=861, - ["local_extra_socket"]=1941, - ["local_fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_during_effect"]=980, - ["local_fire_damage_from_life_%"]=2969, - ["local_fire_penetration_%"]=3786, - ["local_fire_resistance_%_per_2%_quality"]=7957, - ["local_flask_-%_of_your_damage_cannot_be_reflected"]=992, - ["local_flask_accuracy_rating_+%_during_effect"]=967, - ["local_flask_adapt_each_element"]=939, - ["local_flask_adaptation_rating_+%_during_effect"]=965, - ["local_flask_adaptations_apply_to_all_elements_during_effect"]=966, - ["local_flask_additional_physical_damage_reduction_%"]=993, - ["local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life"]=923, - ["local_flask_adds_knockback_during_flask_effect"]=994, - ["local_flask_adds_knockback_while_healing"]=979, - ["local_flask_amount_to_recover_+%"]=878, - ["local_flask_amount_to_recover_+%_when_on_low_life"]=883, - ["local_flask_area_of_consecrated_ground_+%"]=904, - ["local_flask_area_of_effect_+%_during_flask_effect"]=995, - ["local_flask_armour_+%_while_healing"]=960, - ["local_flask_attack_speed_+%_while_healing"]=968, - ["local_flask_avoid_stun_chance_%_during_flask_effect"]=996, - ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood"]=924, - ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s"]=925, - ["local_flask_cannot_be_stunned_during_flask_effect"]=997, - ["local_flask_cannot_gain_charges_during_flask_effect"]=1089, - ["local_flask_cast_speed_+%_while_healing"]=969, - ["local_flask_chance_to_freeze_shock_ignite_%_while_healing"]=998, - ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen"]=926, - ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s"]=927, - ["local_flask_chilled_ground_on_flask_use_radius"]=903, - ["local_flask_consume_charges_used_+%_when_used"]=870, - ["local_flask_consume_extra_max_charges_when_used"]=861, - ["local_flask_consume_flask_duration_+%_when_used"]=881, - ["local_flask_consume_flask_effect_+%_when_used"]=959, - ["local_flask_consumes_max_charges_on_use"]=905, - ["local_flask_consumes_x_endurance_charges_on_use"]=906, - ["local_flask_consumes_x_frenzy_charges_on_use"]=907, - ["local_flask_consumes_x_power_charges_on_use"]=908, - ["local_flask_critical_strike_chance_+%_during_flask_effect"]=1000, - ["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=999, - ["local_flask_culling_strike_during_flask_effect"]=1001, - ["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=899, - ["local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends"]=886, - ["local_flask_deciseconds_to_recover"]=880, - ["local_flask_dispels_burning_and_ignite_immunity_during_effect"]=940, - ["local_flask_dispels_freeze_and_chill"]=938, - ["local_flask_duration_+%"]=881, - ["local_flask_duration_+%_final"]=882, - ["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=1002, - ["local_flask_effect_+%"]=959, - ["local_flask_effect_ends_when_hit_by_player"]=887, - ["local_flask_effect_not_removed_at_full_mana"]=888, - ["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=1068, - ["local_flask_energy_shield_+%_while_healing"]=962, - ["local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing"]=974, - ["local_flask_energy_shield_recharge_not_delayed_by_damage_during_effect"]=1003, - ["local_flask_evasion_+%_while_healing"]=961, - ["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=863, - ["local_flask_gain_X_charges_when_hit"]=864, - ["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=909, - ["local_flask_gain_endurance_charge_per_second_during_flask_effect"]=1004, - ["local_flask_gain_endurance_charges_on_use"]=910, - ["local_flask_gain_frenzy_charges_on_use"]=911, - ["local_flask_gain_power_charges_on_use"]=912, - ["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge_consumed"]=913, - ["local_flask_gain_x_vaal_souls_on_use"]=914, - ["local_flask_ghost_reaver"]=1092, - ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life"]=936, - ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana"]=937, - ["local_flask_ignite_immunity_if_ignited_and_remove_burning"]=928, - ["local_flask_ignite_immunity_if_ignited_and_remove_burning_s"]=929, - ["local_flask_ignite_proliferation_radius_during_effect"]=1005, - ["local_flask_ignited_enemies_during_effect_have_malediction"]=1006, - ["local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect"]=1007, - ["local_flask_immune_to_damage"]=1008, - ["local_flask_immune_to_freeze_and_chill_during_flask_effect"]=1009, - ["local_flask_immune_to_hinder_for_x_seconds_if_hindered"]=930, - ["local_flask_immune_to_maim_for_x_seconds_if_maimed"]=931, - ["local_flask_immune_to_poison_during_flask_effect"]=1010, - ["local_flask_immune_to_shock_during_flask_effect"]=1011, - ["local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use"]=915, - ["local_flask_is_petrified"]=1012, - ["local_flask_item_found_rarity_+%_during_flask_effect"]=1013, - ["local_flask_life_gain_on_skill_use_%_mana_cost"]=986, - ["local_flask_life_leech_expected_ignite_damage_permyriad_during_effect"]=1014, - ["local_flask_life_leech_from_attack_damage_permyriad_while_healing"]=975, - ["local_flask_life_leech_is_instant_during_flask_effect"]=1015, - ["local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect"]=1016, - ["local_flask_life_leech_permyriad_while_healing"]=976, - ["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=875, - ["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=1017, - ["local_flask_life_to_recover"]=872, - ["local_flask_life_to_recover_+%"]=873, - ["local_flask_lose_all_charges_on_entering_new_area"]=871, - ["local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use"]=916, - ["local_flask_mana_leech_permyriad_while_healing"]=978, - ["local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect"]=889, - ["local_flask_mana_to_recover"]=876, - ["local_flask_mana_to_recover_+%"]=877, - ["local_flask_minion_heal_%"]=874, - ["local_flask_movement_speed_+%_while_healing"]=970, - ["local_flask_no_mana_recovery_during_effect"]=1018, - ["local_flask_non_damaging_ailment_effect_+%_during_flask_effect"]=1019, - ["local_flask_number_of_additional_curses_allowed_during_effect"]=1020, - ["local_flask_number_of_additional_projectiles_during_flask_effect"]=1021, - ["local_flask_physical_damage_can_ignite_during_effect"]=1022, - ["local_flask_poison_immunity_if_poisoned"]=932, - ["local_flask_poison_immunity_if_poisoned_s"]=933, - ["local_flask_prevents_death_while_healing"]=1075, - ["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=1071, - ["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=1069, - ["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=1070, - ["local_flask_recover_instantly_when_on_low_life"]=884, - ["local_flask_recovers_instantly"]=890, - ["local_flask_recovery_amount_%_to_recover_instantly"]=885, - ["local_flask_recovery_speed_+%"]=879, - ["local_flask_remove_curses_on_use"]=921, - ["local_flask_remove_effect_when_ward_breaks"]=891, - ["local_flask_removes_%_maximum_energy_shield_on_use"]=898, - ["local_flask_removes_%_of_life_recovery_from_life_on_use"]=894, - ["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=895, - ["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=893, - ["local_flask_resistances_+%_while_healing"]=972, - ["local_flask_restore_ward"]=941, - ["local_flask_shock_immunity_if_shocked"]=934, - ["local_flask_shock_immunity_if_shocked_s"]=935, - ["local_flask_skill_mana_cost_+%_during_flask_effect"]=1023, - ["local_flask_stun_recovery_+%_while_healing"]=971, - ["local_flask_taunt_enemies_on_use_radius"]=917, - ["local_flask_unholy_might_during_flask_effect"]=1074, - ["local_flask_use_causes_area_knockback"]=918, - ["local_flask_use_causes_monster_flee_chance_%"]=919, - ["local_flask_use_on_adjacent_flask_use"]=943, - ["local_flask_use_on_affected_by_bleed"]=944, - ["local_flask_use_on_affected_by_chill"]=945, - ["local_flask_use_on_affected_by_freeze"]=946, - ["local_flask_use_on_affected_by_ignite"]=947, - ["local_flask_use_on_affected_by_poison"]=948, - ["local_flask_use_on_affected_by_shock"]=949, - ["local_flask_use_on_damage_blocked"]=950, - ["local_flask_use_on_flask_effect_ended"]=951, - ["local_flask_use_on_full_charges"]=952, - ["local_flask_use_on_guard_skill_expired"]=953, - ["local_flask_use_on_guard_skill_used"]=954, - ["local_flask_use_on_hitting_rare_unique_enemy_while_inactive"]=955, - ["local_flask_use_on_taking_savage_hit"]=956, - ["local_flask_use_on_travel_skill_used"]=957, - ["local_flask_use_on_using_a_life_flask"]=958, - ["local_flask_vaal_souls_gained_per_minute_during_effect"]=1024, - ["local_flask_ward_+%_during_effect"]=963, - ["local_flask_ward_does_not_break_during_effect"]=964, - ["local_flask_zealots_oath"]=1093, - ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7958, - ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7959, - ["local_gain_immortal_ambition_if_all_socketed_gems_red"]=7960, - ["local_gain_vaal_pact_if_all_socketed_gems_red"]=10862, - ["local_gain_x_soul_eater_stacks_on_kill_vs_rare_or_unique_with_this_weapon"]=7961, - ["local_gem_experience_gain_+%"]=1944, - ["local_gem_level_+"]=181, - ["local_gems_socketed_have_no_attribute_requirements"]=7962, - ["local_gems_socketed_in_blue_sockets_have_no_attribute_requirements"]=7963, - ["local_grant_eldritch_battery_during_flask_effect"]=1094, - ["local_grant_perfect_agony_during_flask_effect"]=1095, - ["local_grant_skeleton_warriors_triple_damage_on_hit"]=4437, - ["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=3033, - ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=3031, - ["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=3030, - ["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=3032, - ["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=3033, - ["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=3031, - ["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=3030, - ["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=3032, - ["local_has_X_abyss_sockets"]=92, - ["local_has_X_sockets"]=93, - ["local_has_X_white_sockets"]=101, - ["local_has_no_sockets"]=91, - ["local_hit_causes_monster_flee_%"]=2065, - ["local_hit_damage_+%_vs_frozen_enemies"]=4393, - ["local_hit_damage_+%_vs_ignited_enemies"]=4392, - ["local_hit_damage_+%_vs_shocked_enemies"]=4394, - ["local_hits_always_inflict_elemental_ailments"]=4391, - ["local_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7964, - ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7965, - ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7966, - ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7967, - ["local_ignite_damage_+%_final_with_this_weapon"]=7968, - ["local_immune_to_curses_if_item_corrupted"]=7969, + ["local_extra_max_charges"]=882, + ["local_extra_socket"]=1964, + ["local_fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_during_effect"]=1004, + ["local_fire_damage_from_life_%"]=3003, + ["local_fire_penetration_%"]=3822, + ["local_fire_resistance_%_per_2%_quality"]=8068, + ["local_flask_-%_of_your_damage_cannot_be_reflected"]=1016, + ["local_flask_accuracy_rating_+%_during_effect"]=991, + ["local_flask_adapt_each_element"]=963, + ["local_flask_adaptation_rating_+%_during_effect"]=989, + ["local_flask_adaptations_apply_to_all_elements_during_effect"]=990, + ["local_flask_additional_physical_damage_reduction_%"]=1017, + ["local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life"]=947, + ["local_flask_adds_knockback_during_flask_effect"]=1018, + ["local_flask_adds_knockback_while_healing"]=1003, + ["local_flask_amount_to_recover_+%"]=899, + ["local_flask_amount_to_recover_+%_when_on_low_life"]=906, + ["local_flask_area_of_consecrated_ground_+%"]=927, + ["local_flask_area_of_effect_+%_during_flask_effect"]=1019, + ["local_flask_armour_+%_while_healing"]=984, + ["local_flask_attack_speed_+%_while_healing"]=992, + ["local_flask_avoid_stun_chance_%_during_flask_effect"]=1020, + ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood"]=948, + ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s"]=949, + ["local_flask_cannot_be_stunned_during_flask_effect"]=1021, + ["local_flask_cannot_gain_charges_during_flask_effect"]=1113, + ["local_flask_cast_speed_+%_while_healing"]=993, + ["local_flask_chance_to_freeze_shock_ignite_%_while_healing"]=1022, + ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen"]=950, + ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s"]=951, + ["local_flask_chilled_ground_on_flask_use_radius"]=926, + ["local_flask_consume_charges_used_+%_when_used"]=891, + ["local_flask_consume_extra_max_charges_when_used"]=882, + ["local_flask_consume_flask_duration_+%_when_used"]=904, + ["local_flask_consume_flask_effect_+%_when_used"]=983, + ["local_flask_consumes_max_charges_on_use"]=928, + ["local_flask_consumes_x_endurance_charges_on_use"]=929, + ["local_flask_consumes_x_frenzy_charges_on_use"]=930, + ["local_flask_consumes_x_power_charges_on_use"]=931, + ["local_flask_critical_strike_chance_+%_during_flask_effect"]=1024, + ["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=1023, + ["local_flask_culling_strike_during_flask_effect"]=1025, + ["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=922, + ["local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends"]=909, + ["local_flask_deciseconds_to_recover"]=901, + ["local_flask_dispels_burning_and_ignite_immunity_during_effect"]=964, + ["local_flask_dispels_freeze_and_chill"]=962, + ["local_flask_duration_+%"]=904, + ["local_flask_duration_+%_final"]=905, + ["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=1026, + ["local_flask_effect_+%"]=983, + ["local_flask_effect_ends_when_hit_by_player"]=910, + ["local_flask_effect_not_removed_at_full_mana"]=911, + ["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=1092, + ["local_flask_energy_shield_+%_while_healing"]=986, + ["local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing"]=998, + ["local_flask_energy_shield_recharge_not_delayed_by_damage_during_effect"]=1027, + ["local_flask_evasion_+%_while_healing"]=985, + ["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=884, + ["local_flask_gain_X_charges_when_hit"]=885, + ["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=932, + ["local_flask_gain_endurance_charge_per_second_during_flask_effect"]=1028, + ["local_flask_gain_endurance_charges_on_use"]=933, + ["local_flask_gain_frenzy_charges_on_use"]=934, + ["local_flask_gain_power_charges_on_use"]=935, + ["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge_consumed"]=936, + ["local_flask_gain_x_vaal_souls_on_use"]=937, + ["local_flask_ghost_reaver"]=1116, + ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life"]=960, + ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana"]=961, + ["local_flask_ignite_immunity_if_ignited_and_remove_burning"]=952, + ["local_flask_ignite_immunity_if_ignited_and_remove_burning_s"]=953, + ["local_flask_ignite_proliferation_radius_during_effect"]=1029, + ["local_flask_ignited_enemies_during_effect_have_malediction"]=1030, + ["local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect"]=1031, + ["local_flask_immune_to_damage"]=1032, + ["local_flask_immune_to_freeze_and_chill_during_flask_effect"]=1033, + ["local_flask_immune_to_hinder_for_x_seconds_if_hindered"]=954, + ["local_flask_immune_to_maim_for_x_seconds_if_maimed"]=955, + ["local_flask_immune_to_poison_during_flask_effect"]=1034, + ["local_flask_immune_to_shock_during_flask_effect"]=1035, + ["local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use"]=938, + ["local_flask_is_petrified"]=1036, + ["local_flask_item_found_rarity_+%_during_flask_effect"]=1037, + ["local_flask_life_gain_on_skill_use_%_mana_cost"]=1010, + ["local_flask_life_leech_expected_ignite_damage_permyriad_during_effect"]=1038, + ["local_flask_life_leech_from_attack_damage_permyriad_while_healing"]=999, + ["local_flask_life_leech_is_instant_during_flask_effect"]=1039, + ["local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect"]=1040, + ["local_flask_life_leech_permyriad_while_healing"]=1000, + ["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=896, + ["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=1041, + ["local_flask_life_to_recover"]=893, + ["local_flask_life_to_recover_+%"]=894, + ["local_flask_lose_all_charges_on_entering_new_area"]=892, + ["local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use"]=939, + ["local_flask_mana_leech_permyriad_while_healing"]=1002, + ["local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect"]=912, + ["local_flask_mana_to_recover"]=897, + ["local_flask_mana_to_recover_+%"]=898, + ["local_flask_minion_heal_%"]=895, + ["local_flask_movement_speed_+%_while_healing"]=994, + ["local_flask_no_mana_recovery_during_effect"]=1042, + ["local_flask_non_damaging_ailment_effect_+%_during_flask_effect"]=1043, + ["local_flask_number_of_additional_curses_allowed_during_effect"]=1044, + ["local_flask_number_of_additional_projectiles_during_flask_effect"]=1045, + ["local_flask_physical_damage_can_ignite_during_effect"]=1046, + ["local_flask_poison_immunity_if_poisoned"]=956, + ["local_flask_poison_immunity_if_poisoned_s"]=957, + ["local_flask_prevents_death_while_healing"]=1099, + ["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=1095, + ["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=1093, + ["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=1094, + ["local_flask_recover_instantly_when_on_low_life"]=907, + ["local_flask_recovers_instantly"]=913, + ["local_flask_recovery_amount_%_to_recover_instantly"]=908, + ["local_flask_recovery_speed_+%"]=900, + ["local_flask_remove_curses_on_use"]=945, + ["local_flask_remove_effect_when_ward_breaks"]=914, + ["local_flask_removes_%_maximum_energy_shield_on_use"]=921, + ["local_flask_removes_%_of_life_recovery_from_life_on_use"]=917, + ["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=918, + ["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=916, + ["local_flask_resistances_+%_while_healing"]=996, + ["local_flask_restore_ward"]=965, + ["local_flask_shock_immunity_if_shocked"]=958, + ["local_flask_shock_immunity_if_shocked_s"]=959, + ["local_flask_skill_mana_cost_+%_during_flask_effect"]=1047, + ["local_flask_stun_recovery_+%_while_healing"]=995, + ["local_flask_taunt_enemies_on_use_radius"]=940, + ["local_flask_unholy_might_during_flask_effect"]=1098, + ["local_flask_use_causes_area_knockback"]=941, + ["local_flask_use_causes_monster_flee_chance_%"]=942, + ["local_flask_use_on_adjacent_flask_use"]=967, + ["local_flask_use_on_affected_by_bleed"]=968, + ["local_flask_use_on_affected_by_chill"]=969, + ["local_flask_use_on_affected_by_freeze"]=970, + ["local_flask_use_on_affected_by_ignite"]=971, + ["local_flask_use_on_affected_by_poison"]=972, + ["local_flask_use_on_affected_by_shock"]=973, + ["local_flask_use_on_damage_blocked"]=974, + ["local_flask_use_on_flask_effect_ended"]=975, + ["local_flask_use_on_full_charges"]=976, + ["local_flask_use_on_guard_skill_expired"]=977, + ["local_flask_use_on_guard_skill_used"]=978, + ["local_flask_use_on_hitting_rare_unique_enemy_while_inactive"]=979, + ["local_flask_use_on_taking_savage_hit"]=980, + ["local_flask_use_on_travel_skill_used"]=981, + ["local_flask_use_on_using_a_life_flask"]=982, + ["local_flask_vaal_souls_gained_per_minute_during_effect"]=1048, + ["local_flask_ward_+%_during_effect"]=987, + ["local_flask_ward_does_not_break_during_effect"]=988, + ["local_flask_zealots_oath"]=1117, + ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=8069, + ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=8070, + ["local_gain_immortal_ambition_if_all_socketed_gems_red"]=8071, + ["local_gain_vaal_pact_if_all_socketed_gems_red"]=11029, + ["local_gain_x_soul_eater_stacks_on_kill_vs_rare_or_unique_with_this_weapon"]=8072, + ["local_gem_experience_gain_+%"]=1967, + ["local_gem_level_+"]=184, + ["local_gems_socketed_have_no_attribute_requirements"]=8073, + ["local_gems_socketed_in_blue_sockets_have_no_attribute_requirements"]=8074, + ["local_grant_eldritch_battery_during_flask_effect"]=1118, + ["local_grant_perfect_agony_during_flask_effect"]=1119, + ["local_grant_skeleton_warriors_triple_damage_on_hit"]=4475, + ["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=3067, + ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=3065, + ["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=3064, + ["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=3066, + ["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=3067, + ["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=3065, + ["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=3064, + ["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=3066, + ["local_has_X_abyss_sockets"]=93, + ["local_has_X_sockets"]=94, + ["local_has_X_white_sockets"]=105, + ["local_has_no_sockets"]=92, + ["local_hit_causes_monster_flee_%"]=2088, + ["local_hit_damage_+%_vs_frozen_enemies"]=4431, + ["local_hit_damage_+%_vs_ignited_enemies"]=4430, + ["local_hit_damage_+%_vs_shocked_enemies"]=4432, + ["local_hits_always_inflict_elemental_ailments"]=4429, + ["local_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=8075, + ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=8076, + ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=8077, + ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=8078, + ["local_ignite_damage_+%_final_with_this_weapon"]=8079, + ["local_immune_to_curses_if_item_corrupted"]=8080, ["local_implicit_mod_cannot_be_changed"]=45, - ["local_implicit_modifier_magnitudes_doubled"]=7970, - ["local_implicit_modifier_magnitudes_tripled"]=7971, - ["local_implicit_stat_magnitude_+%"]=82, - ["local_inflict_hallowing_flame_on_hit"]=87, - ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7972, - ["local_intelligence_per_2%_quality"]=7973, - ["local_intelligence_requirement_+"]=1103, - ["local_intelligence_requirement_+%"]=1104, - ["local_is_alternate_tree_jewel"]=10737, - ["local_is_max_quality"]=1938, - ["local_is_survival_jewel"]=10738, + ["local_implicit_modifier_magnitudes_doubled"]=8081, + ["local_implicit_modifier_magnitudes_tripled"]=8082, + ["local_implicit_stat_magnitude_+%"]=83, + ["local_inflict_hallowing_flame_on_hit"]=88, + ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=8083, + ["local_intelligence_per_2%_quality"]=8084, + ["local_intelligence_requirement_+"]=1127, + ["local_intelligence_requirement_+%"]=1128, + ["local_is_alternate_tree_jewel"]=10896, + ["local_is_max_quality"]=1961, + ["local_is_survival_jewel"]=10897, ["local_item_allow_modification_while_corrupted"]=35, ["local_item_can_have_x_additional_enchantments"]=37, - ["local_item_can_roll_all_influences"]=7974, - ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2583, + ["local_item_can_roll_all_influences"]=8085, + ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2609, ["local_item_implicit_modifier_limit"]=38, - ["local_item_quality_+"]=7975, - ["local_item_sell_price_doubled"]=7976, - ["local_item_stats_are_doubled_in_breach"]=7977, + ["local_item_quality_+"]=8086, + ["local_item_sell_price_doubled"]=8087, + ["local_item_stats_are_doubled_in_breach"]=8088, ["local_jewel_+%_effect_per_passive_between_jewel_and_class_start"]=33, - ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7978, - ["local_jewel_allocated_notable_passives_in_radius_grant_nothing"]=7979, - ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7980, - ["local_jewel_copy_stats_from_unallocated_notable_passives_in_radius"]=7981, - ["local_jewel_disable_combust_with_40_strength_in_radius"]=7982, - ["local_jewel_expansion_jewels_count"]=7983, - ["local_jewel_expansion_jewels_count_override"]=7984, - ["local_jewel_expansion_keystone_disciple_of_kitava"]=7985, - ["local_jewel_expansion_keystone_hollow_palm_technique"]=7986, - ["local_jewel_expansion_keystone_kineticism"]=7987, - ["local_jewel_expansion_keystone_lone_messenger"]=7988, - ["local_jewel_expansion_keystone_natures_patience"]=7989, - ["local_jewel_expansion_keystone_pitfighter"]=7990, - ["local_jewel_expansion_keystone_secrets_of_suffering"]=7991, - ["local_jewel_expansion_keystone_veterans_awareness"]=7992, - ["local_jewel_expansion_passive_node_count"]=4527, - ["local_jewel_expansion_passive_node_index"]=7993, - ["local_jewel_fireball_cannot_ignite"]=7994, - ["local_jewel_fireball_chance_to_scorch_%"]=7995, - ["local_jewel_infernal_cry_exerted_attacks_ignite_damage_+%_final_with_for_strength_in_radius"]=7996, - ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7998, - ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7997, - ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=8000, - ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7999, - ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=8001, - ["local_jewel_nearby_passives_dex_to_int"]=3074, - ["local_jewel_nearby_passives_dex_to_str"]=3073, - ["local_jewel_nearby_passives_int_to_dex"]=3076, - ["local_jewel_nearby_passives_int_to_str"]=3075, - ["local_jewel_nearby_passives_str_to_dex"]=3071, - ["local_jewel_nearby_passives_str_to_int"]=3072, + ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=8089, + ["local_jewel_allocated_notable_passives_in_radius_grant_nothing"]=8090, + ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=8091, + ["local_jewel_copy_stats_from_unallocated_notable_passives_in_radius"]=8092, + ["local_jewel_disable_combust_with_40_strength_in_radius"]=8093, + ["local_jewel_expansion_jewels_count"]=8094, + ["local_jewel_expansion_jewels_count_override"]=8095, + ["local_jewel_expansion_keystone_disciple_of_kitava"]=8096, + ["local_jewel_expansion_keystone_hollow_palm_technique"]=8097, + ["local_jewel_expansion_keystone_kineticism"]=8098, + ["local_jewel_expansion_keystone_lone_messenger"]=8099, + ["local_jewel_expansion_keystone_natures_patience"]=8100, + ["local_jewel_expansion_keystone_pitfighter"]=8101, + ["local_jewel_expansion_keystone_secrets_of_suffering"]=8102, + ["local_jewel_expansion_keystone_veterans_awareness"]=8103, + ["local_jewel_expansion_passive_node_count"]=4565, + ["local_jewel_expansion_passive_node_index"]=8104, + ["local_jewel_fireball_cannot_ignite"]=8105, + ["local_jewel_fireball_chance_to_scorch_%"]=8106, + ["local_jewel_infernal_cry_exerted_attacks_ignite_damage_+%_final_with_for_strength_in_radius"]=8107, + ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=8109, + ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=8108, + ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=8111, + ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=8110, + ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=8112, + ["local_jewel_nearby_passives_dex_to_int"]=3108, + ["local_jewel_nearby_passives_dex_to_str"]=3107, + ["local_jewel_nearby_passives_int_to_dex"]=3110, + ["local_jewel_nearby_passives_int_to_str"]=3109, + ["local_jewel_nearby_passives_str_to_dex"]=3105, + ["local_jewel_nearby_passives_str_to_int"]=3106, ["local_jewel_variable_ring_radius_value"]=36, - ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=8002, - ["local_knockback"]=1550, - ["local_left_ring_slot_-%_of_your_elemental_damage_cannot_be_reflected"]=8003, - ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2678, - ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2679, - ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=8004, - ["local_left_ring_slot_curse_effect_on_self_+%"]=2680, - ["local_left_ring_slot_energy_shield"]=2695, - ["local_left_ring_slot_evasion_rating"]=2696, - ["local_left_ring_slot_fire_damage_taken_%_as_lightning"]=2681, - ["local_left_ring_slot_lightning_damage_taken_%_as_cold"]=2682, - ["local_left_ring_slot_mana_regeneration_rate_+%"]=2684, - ["local_left_ring_slot_mana_regeneration_rate_per_minute"]=2683, - ["local_left_ring_slot_maximum_mana"]=2694, - ["local_left_ring_slot_minion_damage_taken_+%"]=2685, - ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2677, - ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=8005, - ["local_left_ring_slot_projectiles_from_spells_fork"]=8006, - ["local_left_ring_slot_skill_effect_duration_+%"]=2686, - ["local_left_ring_slot_support_anticipation_rapid_fire_count"]=8007, - ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=8008, - ["local_level_requirement_-"]=1105, - ["local_life_and_mana_gain_per_target"]=1766, - ["local_life_and_mana_leech_from_physical_damage_permyriad"]=1680, - ["local_life_gain_per_target"]=1762, - ["local_life_gain_per_target_vs_blinded_enemies"]=8009, - ["local_life_gain_per_target_while_leeching"]=8010, - ["local_life_leech_from_any_damage_permyriad"]=8011, - ["local_life_leech_from_physical_damage_permyriad"]=1675, - ["local_life_leech_is_instant"]=2561, - ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=10527, - ["local_lightning_penetration_%"]=3788, - ["local_lightning_resistance_%_per_2%_quality"]=8012, - ["local_maim_on_hit"]=4157, - ["local_maim_on_hit_%"]=8013, - ["local_mana_gain_per_target"]=1769, - ["local_mana_leech_from_any_damage_permyriad"]=8014, - ["local_mana_leech_from_physical_damage_permyriad"]=1725, - ["local_mana_leech_is_instant"]=8015, - ["local_max_charges_+%"]=862, - ["local_maximum_added_chaos_damage"]=1414, - ["local_maximum_added_cold_damage"]=1395, - ["local_maximum_added_fire_damage"]=1386, - ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4894, - ["local_maximum_added_lightning_damage"]=1406, - ["local_maximum_added_physical_damage"]=1300, - ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4901, - ["local_maximum_energy_shield_+%_if_item_corrupted"]=8016, - ["local_maximum_life_+%_if_item_corrupted"]=8018, - ["local_maximum_life_per_2%_quality"]=8017, - ["local_maximum_mana_per_2%_quality"]=8019, + ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=8113, + ["local_knockback"]=1572, + ["local_left_ring_slot_-%_of_your_elemental_damage_cannot_be_reflected"]=8114, + ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2704, + ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2705, + ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=8115, + ["local_left_ring_slot_curse_effect_on_self_+%"]=2706, + ["local_left_ring_slot_energy_shield"]=2721, + ["local_left_ring_slot_evasion_rating"]=2722, + ["local_left_ring_slot_fire_damage_taken_%_as_lightning"]=2707, + ["local_left_ring_slot_lightning_damage_taken_%_as_cold"]=2708, + ["local_left_ring_slot_mana_regeneration_rate_+%"]=2710, + ["local_left_ring_slot_mana_regeneration_rate_per_minute"]=2709, + ["local_left_ring_slot_maximum_mana"]=2720, + ["local_left_ring_slot_minion_damage_taken_+%"]=2711, + ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2703, + ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=8116, + ["local_left_ring_slot_projectiles_from_spells_fork"]=8117, + ["local_left_ring_slot_skill_effect_duration_+%"]=2712, + ["local_left_ring_slot_support_anticipation_rapid_fire_count"]=8118, + ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=8119, + ["local_level_requirement_-"]=1129, + ["local_life_and_mana_gain_per_target"]=1789, + ["local_life_and_mana_leech_from_physical_damage_permyriad"]=1703, + ["local_life_gain_per_target"]=1785, + ["local_life_gain_per_target_vs_blinded_enemies"]=8120, + ["local_life_gain_per_target_while_leeching"]=8121, + ["local_life_leech_from_any_damage_permyriad"]=8122, + ["local_life_leech_from_physical_damage_permyriad"]=1698, + ["local_life_leech_is_instant"]=2587, + ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=10683, + ["local_lightning_penetration_%"]=3824, + ["local_lightning_resistance_%_per_2%_quality"]=8123, + ["local_maim_on_hit"]=4193, + ["local_maim_on_hit_%"]=8124, + ["local_mana_gain_per_target"]=1792, + ["local_mana_leech_from_any_damage_permyriad"]=8125, + ["local_mana_leech_from_physical_damage_permyriad"]=1748, + ["local_mana_leech_is_instant"]=8126, + ["local_max_charges_+%"]=883, + ["local_maximum_added_chaos_damage"]=1438, + ["local_maximum_added_cold_damage"]=1419, + ["local_maximum_added_fire_damage"]=1410, + ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4944, + ["local_maximum_added_lightning_damage"]=1430, + ["local_maximum_added_physical_damage"]=1324, + ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4951, + ["local_maximum_energy_shield_+%_if_item_corrupted"]=8127, + ["local_maximum_life_+%_if_item_corrupted"]=8129, + ["local_maximum_life_per_2%_quality"]=8128, + ["local_maximum_mana_per_2%_quality"]=8130, ["local_maximum_prefixes_allowed_+"]=39, - ["local_maximum_quality_+"]=8021, - ["local_maximum_quality_is_%"]=8020, - ["local_maximum_sockets_+"]=102, + ["local_maximum_quality_+"]=8132, + ["local_maximum_quality_is_%"]=8131, + ["local_maximum_sockets_+"]=106, ["local_maximum_suffixes_allowed_+"]=40, - ["local_minimum_added_chaos_damage"]=1414, - ["local_minimum_added_cold_damage"]=1395, - ["local_minimum_added_fire_damage"]=1386, - ["local_minimum_added_fire_damage_vs_bleeding_enemies"]=4894, - ["local_minimum_added_lightning_damage"]=1406, - ["local_minimum_added_physical_damage"]=1300, - ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4901, - ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=8022, - ["local_minions_chance_to_gain_unholy_might_on_spell_hit_4_seconds_%_with_minion_abyss_jewel_socketed"]=8023, - ["local_movement_speed_+%_if_item_corrupted"]=8024, - ["local_nearby_enemies_base_physical_damage_%_to_convert_to_fire"]=10752, - ["local_no_attribute_requirements"]=1106, - ["local_no_block_chance"]=3290, - ["local_no_critical_strike_multiplier"]=1514, - ["local_no_critical_strike_multiplier_during_flask_effect"]=1025, - ["local_no_energy_shield"]=1107, - ["local_num_additional_poisons_to_inflict_when_inflicting_poison"]=8025, - ["local_number_of_bloodworms_to_spawn_on_flask_use"]=942, - ["local_one_socket_each_colour_only"]=103, - ["local_physical_damage_%_to_convert_to_a_random_element"]=4389, - ["local_physical_damage_%_to_gain_as_cold_or_lightning"]=4390, - ["local_physical_damage_+%"]=1256, - ["local_physical_damage_reduction_rating_+%"]=1566, - ["local_poison_dot_multiplier_+"]=1288, - ["local_poison_duration_+%_during_flask_effect"]=1026, - ["local_poison_on_critical_strike_chance_%"]=8026, - ["local_poison_on_hit"]=2493, - ["local_poison_on_hit_%"]=8027, - ["local_prefix_mod_effect_+%"]=8028, - ["local_quality_does_not_increase_defences"]=1939, - ["local_quality_does_not_increase_physical_damage"]=1940, - ["local_quantity_of_sockets_+%"]=1945, - ["local_random_support_gem_index"]=475, - ["local_random_support_gem_index_1"]=476, - ["local_random_support_gem_level"]=475, - ["local_random_support_gem_level_1"]=476, - ["local_recharge_on_crit"]=865, - ["local_recharge_on_crit_%"]=866, - ["local_recharge_on_demon_killed"]=867, - ["local_recharge_on_take_crit"]=868, - ["local_resist_all_elements_%_if_item_corrupted"]=8029, - ["local_right_ring_slot_-%_of_your_physical_damage_cannot_be_reflected"]=8030, - ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2687, - ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2673, - ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2688, - ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=8031, - ["local_right_ring_slot_curse_effect_on_self_+%"]=2689, - ["local_right_ring_slot_energy_shield"]=2676, - ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2690, - ["local_right_ring_slot_lightning_damage_taken_%_as_fire"]=2691, - ["local_right_ring_slot_maximum_mana"]=2674, - ["local_right_ring_slot_minion_damage_taken_+%"]=2692, - ["local_right_ring_slot_no_mana_regeneration"]=2672, - ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=8032, - ["local_right_ring_slot_physical_damage_reduction_rating"]=2675, - ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=8033, - ["local_right_ring_slot_shockwave_support_added_cooldown_count"]=8034, - ["local_right_ring_slot_skill_effect_duration_+%"]=2693, - ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=8035, - ["local_ring_attack_speed_+%_final"]=8036, - ["local_ring_burning_damage_+%_final"]=8037, - ["local_ring_disable_other_ring"]=1629, - ["local_ring_duplicate_other_ring"]=2877, - ["local_ring_impaled_debuff_duration_+%_final"]=8038, - ["local_ring_nova_spells_area_of_effect_+%_final"]=8039, - ["local_self_bleed_duration_+%_during_flask_effect"]=1027, - ["local_self_chill_effect_+%_during_flask_effect"]=1028, - ["local_self_curse_effect_+%_during_flask_effect"]=1029, - ["local_self_freeze_duration_+%_during_flask_effect"]=1030, - ["local_self_ignite_duration_+%_during_flask_effect"]=1031, - ["local_self_poison_duration_+%_during_flask_effect"]=1032, - ["local_self_shock_effect_+%_during_flask_effect"]=1033, - ["local_sentinel_drone_difficulty_+%"]=8040, - ["local_shield_trigger_socketed_elemental_spell_on_block_display_cooldown"]=8041, - ["local_six_linked_random_sockets"]=94, - ["local_smoke_ground_on_flask_use_radius"]=920, - ["local_socketed_abyss_jewel_effect_+%"]=245, - ["local_socketed_active_skill_gem_level_+"]=214, - ["local_socketed_active_skill_gem_quality_+"]=230, - ["local_socketed_area_of_effect_gem_level_+"]=200, - ["local_socketed_area_of_effect_gem_quality_+"]=231, - ["local_socketed_aura_gem_level_+"]=205, - ["local_socketed_aura_gem_quality_+"]=232, - ["local_socketed_bow_gem_level_+"]=202, - ["local_socketed_bow_gem_quality_+"]=233, - ["local_socketed_chaos_gem_level_+"]=194, - ["local_socketed_chaos_gem_quality_+"]=234, - ["local_socketed_cold_gem_level_+"]=192, - ["local_socketed_cold_gem_quality_+"]=235, - ["local_socketed_curse_gem_level_+"]=208, - ["local_socketed_dexterity_gem_level_+"]=184, - ["local_socketed_dexterity_gem_quality_+"]=236, - ["local_socketed_duration_gem_level_+"]=199, - ["local_socketed_elemental_gem_level_+"]=237, - ["local_socketed_fire_gem_level_+"]=191, - ["local_socketed_fire_gem_quality_+"]=238, - ["local_socketed_gem_level_+"]=186, - ["local_socketed_gem_level_+_if_only_socketed_gem"]=8042, - ["local_socketed_gem_level_+_per_filled_socket"]=8043, - ["local_socketed_gem_quality_+"]=228, - ["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=190, - ["local_socketed_gems_in_green_sockets_get_quality_%"]=189, - ["local_socketed_gems_in_red_sockets_get_level_+"]=188, - ["local_socketed_golem_gem_level_+"]=227, - ["local_socketed_herald_gem_level_+"]=206, - ["local_socketed_hex_gem_level_+"]=209, - ["local_socketed_intelligence_gem_level_+"]=185, - ["local_socketed_intelligence_gem_quality_+"]=239, - ["local_socketed_lightning_gem_level_+"]=193, - ["local_socketed_lightning_gem_quality_+"]=240, - ["local_socketed_magic_ghastly_jewel_effect_+%"]=8044, - ["local_socketed_magic_hypnotic_jewel_effect_+%"]=8045, - ["local_socketed_magic_murderous_jewel_effect_+%"]=8046, - ["local_socketed_magic_searching_jewel_effect_+%"]=8047, - ["local_socketed_melee_gem_level_+"]=203, - ["local_socketed_melee_gem_quality_+"]=241, - ["local_socketed_minion_gem_level_+"]=204, - ["local_socketed_minion_gem_quality_+"]=242, - ["local_socketed_movement_gem_level_+"]=207, - ["local_socketed_non_vaal_gem_level_+"]=216, - ["local_socketed_projectile_gem_level_+"]=201, - ["local_socketed_projectile_gem_quality_+"]=243, - ["local_socketed_rare_ghastly_jewel_effect_+%"]=8048, - ["local_socketed_rare_hypnotic_jewel_effect_+%"]=8049, - ["local_socketed_rare_murderous_jewel_effect_+%"]=8050, - ["local_socketed_rare_searching_jewel_effect_+%"]=8051, - ["local_socketed_skill_gem_level_+1_per_x_player_levels"]=187, - ["local_socketed_spell_gem_level_+"]=198, - ["local_socketed_strength_gem_level_+"]=182, - ["local_socketed_strength_gem_quality_+"]=244, - ["local_socketed_support_gem_level_+"]=213, - ["local_socketed_support_gem_quality_+"]=229, - ["local_socketed_trap_and_mine_gem_level_+"]=211, - ["local_socketed_trap_gem_level_+"]=210, - ["local_socketed_vaal_gem_level_+"]=212, - ["local_socketed_warcry_gem_level_+"]=217, - ["local_spell_damage_+%_if_item_corrupted"]=8052, - ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=8053, - ["local_strength_and_intelligence_requirement_+"]=1108, - ["local_strength_per_2%_quality"]=8054, - ["local_strength_requirement_+"]=1109, - ["local_strength_requirement_+%"]=1110, - ["local_stun_threshold_reduction_+%"]=2521, - ["local_suffix_mod_effect_+%"]=8055, - ["local_support_gem_max_skill_level_requirement_to_support"]=2846, - ["local_treat_enemy_resistances_as_negated_on_elemental_damage_hit"]=8056, - ["local_treat_treat_enemy_chaos_resistances_as_negated_on_hit"]=2840, - ["local_unique_attacks_cast_socketed_lightning_spells_%"]=850, - ["local_unique_can_be_runesmith_enchanted"]=4462, - ["local_unique_can_have_crucible_unique_staff_passive_tree_mods"]=8057, - ["local_unique_can_have_shield_weapon_passive_tree"]=8058, - ["local_unique_can_have_two_handed_sword_weapon_passive_tree"]=8059, - ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=851, - ["local_unique_cast_socketed_spell_on_block"]=852, - ["local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect"]=984, - ["local_unique_counts_as_dual_wielding"]=2722, - ["local_unique_expedition_flask_ward_+%_final_during_flask_effect"]=1034, - ["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=1035, - ["local_unique_flask_avoid_chill_%_while_healing"]=983, - ["local_unique_flask_avoid_freeze_%_while_healing"]=985, - ["local_unique_flask_block_%_while_healing"]=1036, - ["local_unique_flask_cannot_recover_life_while_healing"]=1037, - ["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=901, - ["local_unique_flask_charges_gained_+%_during_flask_effect"]=1038, - ["local_unique_flask_critical_poison_dot_multiplier_+_during_flask_effect"]=1039, - ["local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect"]=1040, - ["local_unique_flask_damage_+%_vs_demons_while_healing"]=1042, - ["local_unique_flask_damage_over_time_+%_during_flask_effect"]=1041, - ["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=1043, - ["local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing"]=1044, - ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=1076, - ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=1077, - ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=1045, - ["local_unique_flask_instantly_recovers_%_maximum_life"]=900, - ["local_unique_flask_instantly_removes_%_maximum_life"]=896, - ["local_unique_flask_item_quantity_+%_while_healing"]=1046, - ["local_unique_flask_item_rarity_+%_while_healing"]=1047, - ["local_unique_flask_kiaras_determination"]=1048, - ["local_unique_flask_leech_is_instant_during_flask_effect"]=1088, - ["local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect"]=1086, - ["local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect"]=1087, - ["local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=1049, - ["local_unique_flask_light_radius_+%_while_healing"]=1050, - ["local_unique_flask_lightning_resistance_penetration_%_during_flask_effect"]=1081, - ["local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect"]=1084, - ["local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect"]=1085, - ["local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect"]=1084, - ["local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect"]=1085, - ["local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect"]=1051, - ["local_unique_flask_nearby_enemies_cursed_with_level_x_vulnerability_during_flask_effect"]=1052, - ["local_unique_flask_no_mana_cost_while_healing"]=1053, - ["local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect"]=1080, - ["local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing"]=1054, - ["local_unique_flask_physical_damage_%_to_add_as_cold_while_healing"]=982, - ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=981, - ["local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"]=892, - ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=1055, - ["local_unique_flask_shock_nearby_enemies_during_flask_effect"]=1078, - ["local_unique_flask_shocked_during_flask_effect"]=1079, - ["local_unique_flask_spell_block_%_while_healing"]=1056, - ["local_unique_flask_start_energy_shield_recharge"]=897, - ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=1057, - ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=1058, - ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=1059, - ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=1060, - ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=1061, - ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=1062, - ["local_unique_hungry_loop_has_consumed_gem"]=128, - ["local_unique_hungry_loop_number_of_gems_to_consume"]=128, - ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=3092, - ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=3093, - ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=3094, - ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=8060, - ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=3182, - ["local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start"]=10520, - ["local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start"]=10520, - ["local_unique_jewel_additional_life_per_X_int_in_radius"]=3158, - ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=3175, + ["local_minimum_added_chaos_damage"]=1438, + ["local_minimum_added_cold_damage"]=1419, + ["local_minimum_added_fire_damage"]=1410, + ["local_minimum_added_fire_damage_vs_bleeding_enemies"]=4944, + ["local_minimum_added_lightning_damage"]=1430, + ["local_minimum_added_physical_damage"]=1324, + ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4951, + ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=8133, + ["local_minions_chance_to_gain_unholy_might_on_spell_hit_4_seconds_%_with_minion_abyss_jewel_socketed"]=8134, + ["local_movement_speed_+%_if_item_corrupted"]=8135, + ["local_nearby_enemies_base_physical_damage_%_to_convert_to_fire"]=10915, + ["local_no_attribute_requirements"]=1130, + ["local_no_block_chance"]=3326, + ["local_no_critical_strike_multiplier"]=1537, + ["local_no_critical_strike_multiplier_during_flask_effect"]=1049, + ["local_no_energy_shield"]=1131, + ["local_num_additional_poisons_to_inflict_when_inflicting_poison"]=8136, + ["local_number_of_bloodworms_to_spawn_on_flask_use"]=966, + ["local_one_socket_each_colour_only"]=107, + ["local_pearl_random_support_gem_1_index"]=8137, + ["local_pearl_random_support_gem_1_level"]=8137, + ["local_pearl_random_support_gem_1_slot_index"]=8137, + ["local_pearl_random_support_gem_2_index"]=8138, + ["local_pearl_random_support_gem_2_level"]=8138, + ["local_pearl_random_support_gem_2_slot_index"]=8138, + ["local_physical_damage_%_to_convert_to_a_random_element"]=4427, + ["local_physical_damage_%_to_gain_as_cold_or_lightning"]=4428, + ["local_physical_damage_+%"]=1279, + ["local_physical_damage_+%_per_socketed_murderous_jewel"]=4360, + ["local_physical_damage_reduction_rating_+%"]=1588, + ["local_poison_dot_multiplier_+"]=1312, + ["local_poison_duration_+%_during_flask_effect"]=1050, + ["local_poison_on_critical_strike_chance_%"]=8139, + ["local_poison_on_hit"]=2519, + ["local_poison_on_hit_%"]=8140, + ["local_prefix_mod_effect_+%"]=8141, + ["local_quality_does_not_increase_defences"]=1962, + ["local_quality_does_not_increase_physical_damage"]=1963, + ["local_quantity_of_sockets_+%"]=1968, + ["local_random_support_gem_index"]=486, + ["local_random_support_gem_index_1"]=487, + ["local_random_support_gem_level"]=486, + ["local_random_support_gem_level_1"]=487, + ["local_recharge_on_crit"]=886, + ["local_recharge_on_crit_%"]=887, + ["local_recharge_on_demon_killed"]=888, + ["local_recharge_on_take_crit"]=889, + ["local_resist_all_elements_%_if_item_corrupted"]=8142, + ["local_right_ring_slot_-%_of_your_physical_damage_cannot_be_reflected"]=8143, + ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2713, + ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2699, + ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2714, + ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=8144, + ["local_right_ring_slot_curse_effect_on_self_+%"]=2715, + ["local_right_ring_slot_energy_shield"]=2702, + ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2716, + ["local_right_ring_slot_lightning_damage_taken_%_as_fire"]=2717, + ["local_right_ring_slot_maximum_mana"]=2700, + ["local_right_ring_slot_minion_damage_taken_+%"]=2718, + ["local_right_ring_slot_no_mana_regeneration"]=2698, + ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=8145, + ["local_right_ring_slot_physical_damage_reduction_rating"]=2701, + ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=8146, + ["local_right_ring_slot_shockwave_support_added_cooldown_count"]=8147, + ["local_right_ring_slot_skill_effect_duration_+%"]=2719, + ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=8148, + ["local_ring_attack_speed_+%_final"]=8149, + ["local_ring_burning_damage_+%_final"]=8150, + ["local_ring_disable_other_ring"]=1652, + ["local_ring_duplicate_other_ring"]=2911, + ["local_ring_impaled_debuff_duration_+%_final"]=8151, + ["local_ring_nova_spells_area_of_effect_+%_final"]=8152, + ["local_self_bleed_duration_+%_during_flask_effect"]=1051, + ["local_self_chill_effect_+%_during_flask_effect"]=1052, + ["local_self_curse_effect_+%_during_flask_effect"]=1053, + ["local_self_freeze_duration_+%_during_flask_effect"]=1054, + ["local_self_ignite_duration_+%_during_flask_effect"]=1055, + ["local_self_poison_duration_+%_during_flask_effect"]=1056, + ["local_self_shock_effect_+%_during_flask_effect"]=1057, + ["local_sentinel_drone_difficulty_+%"]=8153, + ["local_shield_trigger_socketed_elemental_spell_on_block_display_cooldown"]=8154, + ["local_six_linked_random_sockets"]=95, + ["local_smoke_ground_on_flask_use_radius"]=944, + ["local_socketed_abyss_jewel_effect_+%"]=254, + ["local_socketed_active_skill_gem_level_+"]=220, + ["local_socketed_active_skill_gem_quality_+"]=239, + ["local_socketed_area_of_effect_gem_level_+"]=206, + ["local_socketed_area_of_effect_gem_quality_+"]=240, + ["local_socketed_aura_gem_level_+"]=211, + ["local_socketed_aura_gem_quality_+"]=241, + ["local_socketed_bow_gem_level_+"]=208, + ["local_socketed_bow_gem_quality_+"]=242, + ["local_socketed_chaos_gem_level_+"]=200, + ["local_socketed_chaos_gem_quality_+"]=243, + ["local_socketed_cold_gem_level_+"]=197, + ["local_socketed_cold_gem_quality_+"]=244, + ["local_socketed_curse_gem_level_+"]=214, + ["local_socketed_dexterity_gem_level_+"]=187, + ["local_socketed_dexterity_gem_quality_+"]=245, + ["local_socketed_duration_gem_level_+"]=205, + ["local_socketed_elemental_gem_level_+"]=246, + ["local_socketed_fire_gem_level_+"]=196, + ["local_socketed_fire_gem_quality_+"]=247, + ["local_socketed_gem_level_+"]=189, + ["local_socketed_gem_level_+_if_only_socketed_gem"]=8155, + ["local_socketed_gem_level_+_per_filled_socket"]=8156, + ["local_socketed_gem_quality_+"]=237, + ["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=193, + ["local_socketed_gems_in_green_sockets_get_quality_%"]=192, + ["local_socketed_gems_in_red_sockets_get_level_+"]=191, + ["local_socketed_golem_gem_level_+"]=235, + ["local_socketed_herald_gem_level_+"]=212, + ["local_socketed_hex_gem_level_+"]=215, + ["local_socketed_intelligence_gem_level_+"]=188, + ["local_socketed_intelligence_gem_quality_+"]=248, + ["local_socketed_lightning_gem_level_+"]=198, + ["local_socketed_lightning_gem_quality_+"]=249, + ["local_socketed_magic_ghastly_jewel_effect_+%"]=8157, + ["local_socketed_magic_hypnotic_jewel_effect_+%"]=8158, + ["local_socketed_magic_murderous_jewel_effect_+%"]=8159, + ["local_socketed_magic_searching_jewel_effect_+%"]=8160, + ["local_socketed_melee_gem_level_+"]=209, + ["local_socketed_melee_gem_quality_+"]=250, + ["local_socketed_minion_gem_level_+"]=210, + ["local_socketed_minion_gem_quality_+"]=251, + ["local_socketed_movement_gem_level_+"]=213, + ["local_socketed_non_vaal_gem_level_+"]=223, + ["local_socketed_physical_gem_level_+"]=199, + ["local_socketed_projectile_gem_level_+"]=207, + ["local_socketed_projectile_gem_quality_+"]=252, + ["local_socketed_rare_ghastly_jewel_effect_+%"]=8161, + ["local_socketed_rare_hypnotic_jewel_effect_+%"]=8162, + ["local_socketed_rare_murderous_jewel_effect_+%"]=8163, + ["local_socketed_rare_searching_jewel_effect_+%"]=8164, + ["local_socketed_skill_gem_level_+1_per_x_player_levels"]=190, + ["local_socketed_spell_gem_level_+"]=204, + ["local_socketed_strength_gem_level_+"]=185, + ["local_socketed_strength_gem_quality_+"]=253, + ["local_socketed_support_gem_level_+"]=219, + ["local_socketed_support_gem_quality_+"]=238, + ["local_socketed_trap_and_mine_gem_level_+"]=217, + ["local_socketed_trap_gem_level_+"]=216, + ["local_socketed_vaal_gem_level_+"]=218, + ["local_socketed_warcry_gem_level_+"]=224, + ["local_spell_damage_+%_if_item_corrupted"]=8165, + ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=8166, + ["local_strength_and_intelligence_requirement_+"]=1132, + ["local_strength_per_2%_quality"]=8167, + ["local_strength_requirement_+"]=1133, + ["local_strength_requirement_+%"]=1134, + ["local_stun_threshold_reduction_+%"]=2547, + ["local_suffix_mod_effect_+%"]=8168, + ["local_support_gem_max_skill_level_requirement_to_support"]=2880, + ["local_treat_enemy_resistances_as_negated_on_elemental_damage_hit"]=8169, + ["local_treat_treat_enemy_chaos_resistances_as_negated_on_hit"]=2874, + ["local_unique_attacks_cast_socketed_lightning_spells_%"]=871, + ["local_unique_can_be_runesmith_enchanted"]=4500, + ["local_unique_can_have_crucible_unique_staff_passive_tree_mods"]=8170, + ["local_unique_can_have_shield_weapon_passive_tree"]=8171, + ["local_unique_can_have_two_handed_sword_weapon_passive_tree"]=8172, + ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=872, + ["local_unique_cast_socketed_spell_on_block"]=873, + ["local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect"]=1008, + ["local_unique_counts_as_dual_wielding"]=2749, + ["local_unique_expedition_flask_ward_+%_final_during_flask_effect"]=1058, + ["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=1059, + ["local_unique_flask_all_damage_from_critical_strikes_can_chill_during_effect"]=902, + ["local_unique_flask_all_damage_from_critical_strikes_can_freeze_during_effect"]=902, + ["local_unique_flask_all_damage_from_critical_strikes_can_inflict_brittle_during_effect"]=902, + ["local_unique_flask_all_damage_from_critical_strikes_can_sap_during_effect"]=903, + ["local_unique_flask_all_damage_from_critical_strikes_can_shock_during_effect"]=903, + ["local_unique_flask_avoid_chill_%_while_healing"]=1007, + ["local_unique_flask_avoid_freeze_%_while_healing"]=1009, + ["local_unique_flask_block_%_while_healing"]=1060, + ["local_unique_flask_cannot_recover_life_while_healing"]=1061, + ["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=924, + ["local_unique_flask_charges_gained_+%_during_flask_effect"]=1062, + ["local_unique_flask_critical_poison_dot_multiplier_+_during_flask_effect"]=1063, + ["local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect"]=1064, + ["local_unique_flask_damage_+%_vs_demons_while_healing"]=1066, + ["local_unique_flask_damage_over_time_+%_during_flask_effect"]=1065, + ["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=1067, + ["local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing"]=1068, + ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=1100, + ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=1101, + ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=1069, + ["local_unique_flask_instantly_recovers_%_maximum_life"]=923, + ["local_unique_flask_instantly_removes_%_maximum_life"]=919, + ["local_unique_flask_item_quantity_+%_while_healing"]=1070, + ["local_unique_flask_item_rarity_+%_while_healing"]=1071, + ["local_unique_flask_kiaras_determination"]=1072, + ["local_unique_flask_leech_is_instant_during_flask_effect"]=1112, + ["local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect"]=1110, + ["local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect"]=1111, + ["local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=1073, + ["local_unique_flask_light_radius_+%_while_healing"]=1074, + ["local_unique_flask_lightning_resistance_penetration_%_during_flask_effect"]=1105, + ["local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect"]=1108, + ["local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect"]=1109, + ["local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect"]=1108, + ["local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect"]=1109, + ["local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect"]=1075, + ["local_unique_flask_nearby_enemies_cursed_with_level_x_vulnerability_during_flask_effect"]=1076, + ["local_unique_flask_no_mana_cost_while_healing"]=1077, + ["local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect"]=1104, + ["local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing"]=1078, + ["local_unique_flask_physical_damage_%_to_add_as_cold_while_healing"]=1006, + ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=1005, + ["local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"]=915, + ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=1079, + ["local_unique_flask_shock_nearby_enemies_during_flask_effect"]=1102, + ["local_unique_flask_shocked_during_flask_effect"]=1103, + ["local_unique_flask_spell_block_%_while_healing"]=1080, + ["local_unique_flask_start_energy_shield_recharge"]=920, + ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=1081, + ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=1082, + ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=1083, + ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=1084, + ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=1085, + ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=1086, + ["local_unique_hungry_loop_has_consumed_gem"]=131, + ["local_unique_hungry_loop_number_of_gems_to_consume"]=131, + ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=3126, + ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=3127, + ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=3128, + ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=8173, + ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=3216, + ["local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start"]=10676, + ["local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start"]=10676, + ["local_unique_jewel_additional_life_per_X_int_in_radius"]=3192, + ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=3209, ["local_unique_jewel_alternate_tree_internal_revision"]=34, ["local_unique_jewel_alternate_tree_keystone"]=34, ["local_unique_jewel_alternate_tree_seed"]=34, ["local_unique_jewel_alternate_tree_version"]=34, - ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=3180, - ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=3278, - ["local_unique_jewel_armour_increases_applies_to_evasion"]=3089, - ["local_unique_jewel_attack_and_cast_speed_+%_with_passive_tree_connected_to_shadow_start"]=10521, - ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=3287, - ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=8061, - ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=8062, - ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=8063, - ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=8064, - ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=8065, - ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=8066, - ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=8067, - ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=8068, - ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=8069, - ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=3095, - ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=3159, - ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=3160, - ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=3148, - ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=3370, - ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=3369, - ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=8070, - ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=3172, - ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=3151, - ["local_unique_jewel_cold_resistance_also_grants_cold_damage_to_convert_to_chaos_%"]=8071, - ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=8072, - ["local_unique_jewel_cold_resistance_also_grants_maximum_mana_scaled_%"]=8073, - ["local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%"]=8074, - ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=3283, - ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=8075, - ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=3183, - ["local_unique_jewel_damage_+%_with_passive_tree_connected_to_scion_start"]=10521, - ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=3149, - ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=3162, - ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=8076, - ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=8077, - ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=8078, - ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=10739, - ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=8079, - ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=3251, - ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=8080, - ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=8081, - ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=8082, - ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=8083, - ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=8084, - ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=8085, - ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=8086, - ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=8087, - ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=8088, - ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=8089, - ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=8090, - ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=8091, - ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=8092, - ["local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start"]=10520, - ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=3152, - ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=3176, - ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=3371, - ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=3372, - ["local_unique_jewel_evasion_increases_applies_to_armour"]=3090, - ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=3147, - ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=8093, - ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=8094, - ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=3171, - ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=8095, - ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=8096, - ["local_unique_jewel_fire_resistance_also_grants_fire_damage_to_convert_to_chaos_%"]=8097, - ["local_unique_jewel_fire_resistance_also_grants_maximum_life_scaled_%"]=8098, - ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=8099, - ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=3275, - ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=3274, - ["local_unique_jewel_flask_charges_gained_+%_with_passive_tree_connected_to_ranger_start"]=10521, - ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=3170, - ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=3379, - ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=3378, - ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=8100, - ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=8101, - ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=8102, - ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=8103, - ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=8140, - ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=3179, - ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=8104, - ["local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius"]=8105, - ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=3249, - ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=3373, - ["local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius"]=3374, - ["local_unique_jewel_grants_x_empty_passives"]=8106, - ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=3281, - ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=3280, - ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=3253, - ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=8107, - ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=8108, - ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=8109, - ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=3115, - ["local_unique_jewel_life_increases_applies_to_energy_shield"]=3153, - ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=3161, - ["local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start"]=10520, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=8110, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=8111, - ["local_unique_jewel_life_regeneration_rate_per_minute_%_with_passive_tree_connected_to_marauder_start"]=10521, - ["local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"]=8112, - ["local_unique_jewel_lightning_resistance_also_grants_lightning_damage_to_convert_to_chaos_%"]=8113, - ["local_unique_jewel_lightning_resistance_also_grants_maximum_energy_shield_scaled_%"]=8114, - ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=8115, - ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=8116, - ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=8117, - ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=8118, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=8119, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=8120, - ["local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start"]=10520, - ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=3184, - ["local_unique_jewel_melee_applies_to_bow"]=3091, - ["local_unique_jewel_melee_range_+_with_passive_tree_connected_to_duelist_start"]=10521, - ["local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start"]=10520, - ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=8121, - ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=8122, - ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=3177, - ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=8123, - ["local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start"]=10520, - ["local_unique_jewel_nearby_disconnected_keystone_passives_can_be_allocated"]=10740, - ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=10741, - ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=8124, - ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=8125, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=10786, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=10787, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=10788, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=10786, - ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=3157, - ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=8126, - ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=3096, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=10789, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=10789, - ["local_unique_jewel_passives_in_radius_grant_additional_all_attributes"]=8127, - ["local_unique_jewel_passives_in_radius_grant_base_chaos_damage_resistance_%"]=8128, - ["local_unique_jewel_passives_in_radius_grant_base_maximum_life"]=8129, - ["local_unique_jewel_passives_in_radius_grant_base_maximum_mana"]=8130, - ["local_unique_jewel_passives_in_radius_grant_chaos_damage_+%"]=8131, - ["local_unique_jewel_passives_in_radius_grant_cold_damage_+%"]=8132, - ["local_unique_jewel_passives_in_radius_grant_critical_strike_chance_+%"]=8133, - ["local_unique_jewel_passives_in_radius_grant_evasion_rating_+%"]=8134, - ["local_unique_jewel_passives_in_radius_grant_fire_damage_+%"]=8135, - ["local_unique_jewel_passives_in_radius_grant_lightning_damage_+%"]=8136, - ["local_unique_jewel_passives_in_radius_grant_maximum_energy_shield_+%"]=8137, - ["local_unique_jewel_passives_in_radius_grant_physical_damage_+%"]=8138, - ["local_unique_jewel_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=8139, - ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=3174, - ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=3169, - ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=3173, - ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=3150, - ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=3178, - ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=3375, - ["local_unique_jewel_skill_effect_duration_+%_with_passive_tree_connected_to_witch_start"]=10521, - ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=8141, - ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=3376, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=8142, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=3377, - ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=8143, - ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=8144, - ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=8145, - ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=3250, - ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=8146, - ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=8147, - ["local_unique_jewel_spell_and_attack_block_%_with_passive_tree_connected_to_templar_start"]=10521, - ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=3181, - ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=8148, - ["local_unique_jewel_tattoos_in_radius_effect_+%"]=8149, - ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=3079, - ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=3163, - ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=3272, - ["local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius"]=3252, - ["local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius"]=8150, - ["local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius"]=3285, - ["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=3080, - ["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=3270, - ["local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%"]=3116, - ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=3117, - ["local_unique_jewel_with_no_notables_gain_X_random_rare_monster_mods_on_kill"]=3081, - ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=3102, - ["local_unique_jewel_with_x_small_nodes_gain_1_random_rare_monster_mods_on_kill"]=3082, - ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=8151, - ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=8152, - ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=1063, - ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=1090, - ["local_unique_regen_es_from_removed_life_duration_ms"]=3168, - ["local_unique_remove_life_and_regen_es_from_removed_life"]=3168, - ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=1091, - ["local_unique_vinktars_flask_shock_effect_+%_during_flask_effect"]=1082, - ["local_unique_vinktars_flask_shock_proliferation_radius_during_flask_effect"]=1083, - ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3803, - ["local_ward"]=1552, - ["local_ward_+%"]=1554, - ["local_weapon_crit_chance_is_%"]=8153, - ["local_weapon_crit_chance_is_100"]=3819, - ["local_weapon_enemy_phys_reduction_%_penalty"]=1257, - ["local_weapon_no_physical_damage"]=1256, - ["local_weapon_passive_tree_granted_passive_hash"]=8154, - ["local_weapon_range_+"]=2769, - ["local_weapon_range_+_per_10%_quality"]=8155, - ["local_weapon_trigger_socketed_fire_spell_on_hit_display_cooldown"]=8156, - ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=856, - ["local_weapon_uses_both_hands"]=1098, - ["local_wither_on_hit_vs_enemies_with_X_or_higher_poisons"]=8157, - ["local_withered_on_hit_for_2_seconds_%_chance"]=4435, - ["lose_%_of_es_on_crit"]=8164, - ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=8165, - ["lose_%_of_life_on_crit"]=8166, - ["lose_%_of_mana_when_you_use_an_attack_skill"]=8167, - ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3498, - ["lose_X_bark_on_enemy_spell_hit"]=10742, - ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=4418, - ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=4420, - ["lose_adrenaline_on_losing_flame_touched"]=8158, - ["lose_all_charges_on_starting_movement"]=8159, - ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=4311, - ["lose_all_defiance_on_reaching_x_defiance"]=8160, - ["lose_all_endurance_charges_when_reaching_maximum"]=2776, - ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=8161, - ["lose_all_fragile_regrowth_when_hit"]=4426, - ["lose_all_gale_force_when_hit"]=8162, - ["lose_all_power_charges_on_block"]=8163, - ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3627, - ["lose_an_endurance_charge_on_fortify_gain_%_chance"]=4419, - ["lose_endurance_charge_on_kill_%"]=2654, - ["lose_endurance_charges_on_rampage_end"]=3293, - ["lose_frenzy_charge_on_kill_%"]=2656, - ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=8168, - ["lose_power_charge_on_kill_%"]=2658, - ["lose_soul_eater_souls_on_flask_use"]=3452, - ["lose_spirit_charges_on_savage_hit_taken"]=4408, - ["lose_x_mana_when_you_use_skill"]=8169, - ["low_life_threshold_%_override"]=8171, - ["lucky_or_unlucky_effects_are_instead_unexciting"]=8172, - ["mace_accuracy_rating"]=2034, - ["mace_accuracy_rating_+%"]=1466, - ["mace_ailment_damage_+%"]=1352, - ["mace_attack_speed_+%"]=1448, - ["mace_critical_strike_chance_+%"]=1493, - ["mace_critical_strike_multiplier_+"]=1518, - ["mace_damage_+%"]=1349, - ["mace_elemental_damage_+%"]=2147, - ["mace_hit_and_ailment_damage_+%"]=1350, - ["mace_or_staff_ailment_damage_+%"]=1379, - ["mace_or_staff_hit_and_ailment_damage_+%"]=1378, - ["magic_flask_effect_+%_if_no_flasks_adjacent"]=8173, - ["magic_items_drop_identified"]=4179, - ["magic_monster_dropped_item_rarity_+%"]=8174, - ["magic_utility_flask_effect_+%"]=2767, - ["magic_utility_flasks_cannot_be_removed"]=4447, - ["magic_utility_flasks_cannot_be_used"]=4444, - ["magma_orb_damage_+%"]=3665, - ["magma_orb_num_of_additional_projectiles_in_chain"]=3975, - ["magma_orb_number_of_additional_projectiles"]=8175, - ["magma_orb_radius_+%"]=3834, - ["magma_orb_skill_area_of_effect_+%_per_bounce"]=8176, - ["maim_bleeding_enemies_on_hit_%"]=3341, - ["maim_effect_+%"]=8177, - ["maim_on_crit_%_with_attacks"]=8178, - ["maim_on_hit_%"]=8179, - ["maim_on_hit_%_vs_poisoned_enemies"]=3319, - ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=8180, - ["main_hand_attack_speed_+%_final"]=8181, + ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=3214, + ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=3314, + ["local_unique_jewel_armour_increases_applies_to_evasion"]=3123, + ["local_unique_jewel_attack_and_cast_speed_+%_with_passive_tree_connected_to_shadow_start"]=10677, + ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=3323, + ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=8174, + ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=8175, + ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=8176, + ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=8177, + ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=8178, + ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=8179, + ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=8180, + ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=8181, + ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=8182, + ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=3129, + ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=3193, + ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=3194, + ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=3182, + ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=3406, + ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=3405, + ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=8183, + ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=3206, + ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=3185, + ["local_unique_jewel_cold_resistance_also_grants_cold_damage_to_convert_to_chaos_%"]=8184, + ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=8185, + ["local_unique_jewel_cold_resistance_also_grants_maximum_mana_scaled_%"]=8186, + ["local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%"]=8187, + ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=3319, + ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=8188, + ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=3217, + ["local_unique_jewel_damage_+%_with_passive_tree_connected_to_scion_start"]=10677, + ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=3183, + ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=3196, + ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=8189, + ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=8190, + ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=8191, + ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=10898, + ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=8192, + ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=3287, + ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=8193, + ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=8194, + ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=8195, + ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=8196, + ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=8197, + ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=8198, + ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=8199, + ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=8200, + ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=8201, + ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=8202, + ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=8203, + ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=8204, + ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=8205, + ["local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start"]=10676, + ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=3186, + ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=3210, + ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=3407, + ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=3408, + ["local_unique_jewel_evasion_increases_applies_to_armour"]=3124, + ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=3181, + ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=8206, + ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=8207, + ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=3205, + ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=8208, + ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=8209, + ["local_unique_jewel_fire_resistance_also_grants_fire_damage_to_convert_to_chaos_%"]=8210, + ["local_unique_jewel_fire_resistance_also_grants_maximum_life_scaled_%"]=8211, + ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=8212, + ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=3311, + ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=3310, + ["local_unique_jewel_flask_charges_gained_+%_with_passive_tree_connected_to_ranger_start"]=10677, + ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=3204, + ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=3415, + ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=3414, + ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=8213, + ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=8214, + ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=8215, + ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=8216, + ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=8253, + ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=3213, + ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=8217, + ["local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius"]=8218, + ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=3285, + ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=3409, + ["local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius"]=3410, + ["local_unique_jewel_grants_x_empty_passives"]=8219, + ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=3317, + ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=3316, + ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=3289, + ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=8220, + ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=8221, + ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=8222, + ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=3149, + ["local_unique_jewel_life_increases_applies_to_energy_shield"]=3187, + ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=3195, + ["local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start"]=10676, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=8223, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=8224, + ["local_unique_jewel_life_regeneration_rate_per_minute_%_with_passive_tree_connected_to_marauder_start"]=10677, + ["local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"]=8225, + ["local_unique_jewel_lightning_resistance_also_grants_lightning_damage_to_convert_to_chaos_%"]=8226, + ["local_unique_jewel_lightning_resistance_also_grants_maximum_energy_shield_scaled_%"]=8227, + ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=8228, + ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=8229, + ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=8230, + ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=8231, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=8232, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=8233, + ["local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start"]=10676, + ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=3218, + ["local_unique_jewel_melee_applies_to_bow"]=3125, + ["local_unique_jewel_melee_range_+_with_passive_tree_connected_to_duelist_start"]=10677, + ["local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start"]=10676, + ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=8234, + ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=8235, + ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=3211, + ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=8236, + ["local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start"]=10676, + ["local_unique_jewel_nearby_disconnected_keystone_passives_can_be_allocated"]=10899, + ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=10900, + ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=8237, + ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=8238, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=10949, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=10950, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=10951, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=10949, + ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=3191, + ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=8239, + ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=3130, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=10952, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=10952, + ["local_unique_jewel_passives_in_radius_grant_additional_all_attributes"]=8240, + ["local_unique_jewel_passives_in_radius_grant_base_chaos_damage_resistance_%"]=8241, + ["local_unique_jewel_passives_in_radius_grant_base_maximum_life"]=8242, + ["local_unique_jewel_passives_in_radius_grant_base_maximum_mana"]=8243, + ["local_unique_jewel_passives_in_radius_grant_chaos_damage_+%"]=8244, + ["local_unique_jewel_passives_in_radius_grant_cold_damage_+%"]=8245, + ["local_unique_jewel_passives_in_radius_grant_critical_strike_chance_+%"]=8246, + ["local_unique_jewel_passives_in_radius_grant_evasion_rating_+%"]=8247, + ["local_unique_jewel_passives_in_radius_grant_fire_damage_+%"]=8248, + ["local_unique_jewel_passives_in_radius_grant_lightning_damage_+%"]=8249, + ["local_unique_jewel_passives_in_radius_grant_maximum_energy_shield_+%"]=8250, + ["local_unique_jewel_passives_in_radius_grant_physical_damage_+%"]=8251, + ["local_unique_jewel_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=8252, + ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=3208, + ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=3203, + ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=3207, + ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=3184, + ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=3212, + ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=3411, + ["local_unique_jewel_skill_effect_duration_+%_with_passive_tree_connected_to_witch_start"]=10677, + ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=8254, + ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=3412, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=8255, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=3413, + ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=8256, + ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=8257, + ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=8258, + ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=3286, + ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=8259, + ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=8260, + ["local_unique_jewel_spell_and_attack_block_%_with_passive_tree_connected_to_templar_start"]=10677, + ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=3215, + ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=8261, + ["local_unique_jewel_tattoos_in_radius_effect_+%"]=8262, + ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=3113, + ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=3197, + ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=3308, + ["local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius"]=3288, + ["local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius"]=8263, + ["local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius"]=3321, + ["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=3114, + ["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=3306, + ["local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%"]=3150, + ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=3151, + ["local_unique_jewel_with_no_notables_gain_X_random_rare_monster_mods_on_kill"]=3115, + ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=3136, + ["local_unique_jewel_with_x_small_nodes_gain_1_random_rare_monster_mods_on_kill"]=3116, + ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=8264, + ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=8265, + ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=1087, + ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=1114, + ["local_unique_regen_es_from_removed_life_duration_ms"]=3202, + ["local_unique_remove_life_and_regen_es_from_removed_life"]=3202, + ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=1115, + ["local_unique_vinktars_flask_shock_effect_+%_during_flask_effect"]=1106, + ["local_unique_vinktars_flask_shock_proliferation_radius_during_flask_effect"]=1107, + ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3839, + ["local_ward"]=1574, + ["local_ward_+%"]=1576, + ["local_weapon_crit_chance_is_%"]=8266, + ["local_weapon_crit_chance_is_100"]=3855, + ["local_weapon_enemy_phys_reduction_%_penalty"]=1280, + ["local_weapon_no_physical_damage"]=1279, + ["local_weapon_passive_tree_granted_passive_hash"]=8267, + ["local_weapon_range_+"]=2803, + ["local_weapon_range_+_per_10%_quality"]=8268, + ["local_weapon_trigger_socketed_fire_spell_on_hit_display_cooldown"]=8269, + ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=877, + ["local_weapon_uses_both_hands"]=1122, + ["local_wither_on_hit_vs_enemies_with_X_or_higher_poisons"]=8270, + ["local_withered_on_hit_for_2_seconds_%_chance"]=4473, + ["lose_%_of_es_on_crit"]=8277, + ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=8278, + ["lose_%_of_life_on_crit"]=8279, + ["lose_%_of_mana_when_you_use_an_attack_skill"]=8280, + ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3534, + ["lose_X_bark_on_enemy_spell_hit"]=10901, + ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=4456, + ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=4458, + ["lose_adrenaline_on_losing_flame_touched"]=8271, + ["lose_all_charges_on_starting_movement"]=8272, + ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=4347, + ["lose_all_defiance_on_reaching_x_defiance"]=8273, + ["lose_all_endurance_charges_when_reaching_maximum"]=2810, + ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=8274, + ["lose_all_fragile_regrowth_when_hit"]=4464, + ["lose_all_gale_force_when_hit"]=8275, + ["lose_all_power_charges_on_block"]=8276, + ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3663, + ["lose_an_endurance_charge_on_fortify_gain_%_chance"]=4457, + ["lose_endurance_charge_on_kill_%"]=2680, + ["lose_endurance_charges_on_rampage_end"]=3329, + ["lose_frenzy_charge_on_kill_%"]=2682, + ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=8281, + ["lose_power_charge_on_kill_%"]=2684, + ["lose_soul_eater_souls_on_flask_use"]=3488, + ["lose_spirit_charges_on_savage_hit_taken"]=4446, + ["lose_x_mana_when_you_use_skill"]=8282, + ["low_life_threshold_%_override"]=8284, + ["lucky_or_unlucky_effects_are_instead_unexciting"]=8285, + ["mace_accuracy_rating"]=2057, + ["mace_accuracy_rating_+%"]=1490, + ["mace_ailment_damage_+%"]=1376, + ["mace_attack_speed_+%"]=1472, + ["mace_critical_strike_chance_+%"]=1516, + ["mace_critical_strike_multiplier_+"]=1541, + ["mace_damage_+%"]=1373, + ["mace_elemental_damage_+%"]=2170, + ["mace_hit_and_ailment_damage_+%"]=1374, + ["mace_or_staff_ailment_damage_+%"]=1403, + ["mace_or_staff_hit_and_ailment_damage_+%"]=1402, + ["magic_flask_effect_+%_if_no_flasks_adjacent"]=8286, + ["magic_items_drop_identified"]=4215, + ["magic_monster_dropped_item_rarity_+%"]=8287, + ["magic_utility_flask_effect_+%"]=2801, + ["magic_utility_flasks_cannot_be_removed"]=4485, + ["magic_utility_flasks_cannot_be_used"]=4482, + ["magma_orb_damage_+%"]=3701, + ["magma_orb_num_of_additional_projectiles_in_chain"]=4011, + ["magma_orb_number_of_additional_projectiles"]=8288, + ["magma_orb_radius_+%"]=3870, + ["magma_orb_skill_area_of_effect_+%_per_bounce"]=8289, + ["maim_bleeding_enemies_on_hit_%"]=3377, + ["maim_effect_+%"]=8290, + ["maim_on_crit_%_with_attacks"]=8291, + ["maim_on_hit_%"]=8292, + ["maim_on_hit_%_vs_poisoned_enemies"]=3355, + ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=8293, + ["main_hand_attack_speed_+%_final"]=8294, ["main_hand_base_weapon_attack_duration_ms"]=21, - ["main_hand_claw_life_gain_on_hit"]=8182, - ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=8183, - ["main_hand_damage_+%_while_dual_wielding"]=8184, + ["main_hand_claw_life_gain_on_hit"]=8295, + ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=8296, + ["main_hand_damage_+%_while_dual_wielding"]=8297, ["main_hand_maximum_attack_distance"]=25, ["main_hand_minimum_attack_distance"]=23, ["main_hand_quality"]=18, - ["main_hand_trigger_socketed_spell_on_freezing_hit"]=853, + ["main_hand_trigger_socketed_spell_on_freezing_hit"]=874, ["main_hand_weapon_type"]=10, - ["malediction_on_hit"]=8185, - ["malevolence_mana_reservation_efficiency_+%"]=8187, - ["malevolence_mana_reservation_efficiency_-2%_per_1"]=8186, - ["mamba_strike_area_of_effect_+%"]=8188, - ["mamba_strike_damage_+%"]=8189, - ["mamba_strike_duration_+%"]=8190, - ["mana_%_gained_on_block"]=8211, - ["mana_%_to_add_as_energy_shield"]=2199, - ["mana_%_to_add_as_energy_shield_at_devotion_threshold"]=8212, - ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=3414, - ["mana_cost_+%_for_2_seconds_when_you_spend_800_mana"]=8191, - ["mana_cost_+%_for_channelling_skills"]=8192, - ["mana_cost_+%_for_trap_and_mine_skills"]=8193, - ["mana_cost_+%_for_trap_skills"]=8194, - ["mana_cost_+%_on_consecrated_ground"]=3578, - ["mana_cost_+%_on_totemified_aura_skills"]=3134, - ["mana_cost_+%_per_10_devotion"]=8195, - ["mana_cost_+%_per_200_mana_spent_recently"]=4369, - ["mana_cost_+%_when_on_low_life"]=1910, - ["mana_cost_+%_while_not_low_mana"]=3110, - ["mana_cost_+%_while_on_full_energy_shield"]=1909, - ["mana_cost_-%_per_endurance_charge"]=3291, - ["mana_degeneration_per_minute"]=8196, - ["mana_degeneration_per_minute_%"]=8197, - ["mana_degeneration_per_minute_not_in_grace"]=1607, - ["mana_flask_effects_are_not_removed_at_full_mana"]=8198, - ["mana_flask_recovery_is_instant_while_on_low_mana"]=8199, - ["mana_flasks_gain_X_charges_every_3_seconds"]=8200, - ["mana_gain_per_target"]=1768, - ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=8201, - ["mana_gained_on_attack_hit_vs_cursed_enemies"]=8202, - ["mana_gained_on_block"]=1782, - ["mana_gained_on_cull"]=8203, - ["mana_gained_on_enemy_death_per_level"]=2996, - ["mana_gained_on_hitting_taunted_enemy"]=1808, - ["mana_gained_on_spell_hit"]=8204, - ["mana_gained_on_spell_hit_vs_cursed_enemies"]=8205, - ["mana_gained_when_hit"]=2732, - ["mana_increased_per_x_overcapped_lightning_resistance_choir_of_the_storm"]=8206, - ["mana_leech_from_any_damage_permyriad"]=1726, - ["mana_leech_from_attack_damage_permyriad_per_power_charge"]=8207, - ["mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=4205, - ["mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=8208, - ["mana_leech_from_physical_attack_damage_permyriad"]=1723, - ["mana_leech_from_physical_damage_permyriad_per_power_charge"]=1744, - ["mana_leech_from_physical_damage_with_bow_permyriad"]=1684, - ["mana_leech_from_physical_damage_with_claw_permyriad"]=1683, - ["mana_leech_permyriad_vs_frozen_enemies"]=8209, - ["mana_leech_speed_+%"]=2182, - ["mana_leech_speed_+%_per_equipped_corrupted_item"]=3126, - ["mana_per_level"]=8210, - ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=8213, - ["mana_recovery_from_regeneration_is_not_applied"]=8214, - ["mana_recovery_rate_+%"]=1610, - ["mana_recovery_rate_+%_if_havent_killed_recently"]=8216, - ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=8215, - ["mana_recovery_rate_+%_while_affected_by_clarity"]=8217, - ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=4103, - ["mana_regeneration_rate_+%"]=1608, - ["mana_regeneration_rate_+%_during_flask_effect"]=3208, - ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=8232, - ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=8233, - ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=8234, - ["mana_regeneration_rate_+%_per_1%_spell_block_chance"]=8218, - ["mana_regeneration_rate_+%_per_power_charge"]=2003, - ["mana_regeneration_rate_+%_per_raised_spectre"]=8235, - ["mana_regeneration_rate_+%_while_moving"]=8236, - ["mana_regeneration_rate_+%_while_phasing"]=2531, - ["mana_regeneration_rate_+%_while_shocked"]=2532, - ["mana_regeneration_rate_+%_while_stationary"]=4340, - ["mana_regeneration_rate_per_minute_%"]=1605, - ["mana_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=8219, - ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=8224, - ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=8225, - ["mana_regeneration_rate_per_minute_%_per_active_totem"]=8226, - ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1609, - ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=8220, - ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=8221, - ["mana_regeneration_rate_per_minute_per_10_devotion"]=8222, - ["mana_regeneration_rate_per_minute_per_power_charge"]=8223, - ["mana_regeneration_rate_per_minute_while_dual_wielding"]=8227, - ["mana_regeneration_rate_per_minute_while_holding_shield"]=8228, - ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=8229, - ["mana_regeneration_rate_per_minute_while_wielding_staff"]=8230, - ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=8231, - ["mana_reservation_+%_per_250_total_attributes"]=8242, - ["mana_reservation_+%_with_curse_skills"]=8243, - ["mana_reservation_+%_with_skills_that_throw_mines"]=8237, - ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=8238, - ["mana_reservation_efficiency_+%_per_250_total_attributes"]=8241, - ["mana_reservation_efficiency_-2%_per_1"]=2256, - ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=8239, - ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=8240, - ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=8244, - ["manabond_and_stormbind_skill_lightning_damage_%_to_convert_to_cold"]=8245, - ["manabond_damage_+%"]=8246, - ["manabond_lightning_penetration_%_while_on_low_mana"]=8247, - ["manabond_skill_area_of_effect_+%"]=8248, - ["manifest_dancing_dervish_number_of_additional_copies"]=8249, - ["map_25%_chance_for_rare_monsters_to_be_possessed_up_to_x_times"]=8250, - ["map_X_additional_random_unallocated_notables"]=8251, - ["map_X_bestiary_packs_are_harvest_beasts"]=8252, - ["map_abyss_depths_chance_+%"]=8254, - ["map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods"]=132, - ["map_abyss_monster_spawn_amount_+%"]=130, - ["map_abyss_monsters_enhanced_per_chasm_closed"]=8255, - ["map_abyss_scarab_more_likely_%"]=10753, - ["map_actor_scale_+%"]=8256, - ["map_additional_number_of_packs_to_choose"]=2319, - ["map_additional_player_maximum_resistances_%"]=2386, - ["map_additional_rare_in_rare_pack_%_chance"]=8257, - ["map_additional_rare_in_synthesised_rare_pack_%_chance"]=8258, - ["map_additional_red_beasts"]=8259, - ["map_adds_X_extra_synthesis_mods"]=8260, - ["map_adds_X_extra_synthesis_special_mods"]=8261, - ["map_affliction_pack_size_+%"]=8262, - ["map_affliction_reward_kills_+%"]=8263, - ["map_all_magic_monsters_in_union_of_souls"]=8264, - ["map_allow_shrines"]=2647, - ["map_always_has_weather"]=2646, - ["map_ambush_chests"]=2636, - ["map_anarchy_scarab_more_likely_%"]=10754, - ["map_architects_drops_additional_map_currency"]=8275, - ["map_area_contains_arcanists_strongbox"]=8277, - ["map_area_contains_avatar_of_ambush"]=8278, - ["map_area_contains_avatar_of_anarchy"]=8279, - ["map_area_contains_avatar_of_beyond"]=8280, - ["map_area_contains_avatar_of_bloodlines"]=8281, - ["map_area_contains_avatar_of_breach"]=8282, - ["map_area_contains_avatar_of_domination"]=8283, - ["map_area_contains_avatar_of_essence"]=8284, - ["map_area_contains_avatar_of_invasion"]=8285, - ["map_area_contains_avatar_of_nemesis"]=8286, - ["map_area_contains_avatar_of_onslaught"]=8287, - ["map_area_contains_avatar_of_perandus"]=8288, - ["map_area_contains_avatar_of_prophecy"]=8289, - ["map_area_contains_avatar_of_rampage"]=8290, - ["map_area_contains_avatar_of_talisman"]=8291, - ["map_area_contains_avatar_of_tempest"]=8292, - ["map_area_contains_avatar_of_torment"]=8293, - ["map_area_contains_avatar_of_warbands"]=8294, - ["map_area_contains_cartographers_strongbox"]=8295, - ["map_area_contains_currency_chest"]=8296, - ["map_area_contains_gemcutters_strongbox"]=8297, - ["map_area_contains_grandmaster_ally"]=8298, - ["map_area_contains_jewellery_chest"]=8299, - ["map_area_contains_map_chest"]=8300, - ["map_area_contains_metamorphs"]=8301, - ["map_area_contains_perandus_coin_chest"]=8302, - ["map_area_contains_rituals"]=539, - ["map_area_contains_tormented_embezzler"]=8303, - ["map_area_contains_tormented_seditionist"]=8304, - ["map_area_contains_tormented_vaal_cultist"]=8305, - ["map_area_contains_ultimatum"]=514, - ["map_area_contains_unique_item_chest"]=8306, - ["map_area_contains_unique_strongbox"]=8307, - ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=8308, - ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=8309, - ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=8310, - ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=8311, - ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=8312, - ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=8313, - ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=8314, - ["map_area_contains_x_rare_monsters_with_inner_treasure"]=8437, - ["map_area_ritual_additional_chance_%"]=8315, + ["malediction_on_hit"]=8298, + ["malevolence_mana_reservation_efficiency_+%"]=8300, + ["malevolence_mana_reservation_efficiency_-2%_per_1"]=8299, + ["mamba_strike_area_of_effect_+%"]=8301, + ["mamba_strike_damage_+%"]=8302, + ["mamba_strike_duration_+%"]=8303, + ["mana_%_gained_on_block"]=8324, + ["mana_%_to_add_as_energy_shield"]=2222, + ["mana_%_to_add_as_energy_shield_at_devotion_threshold"]=8325, + ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=3450, + ["mana_cost_+%_for_2_seconds_when_you_spend_800_mana"]=8304, + ["mana_cost_+%_for_channelling_skills"]=8305, + ["mana_cost_+%_for_trap_and_mine_skills"]=8306, + ["mana_cost_+%_for_trap_skills"]=8307, + ["mana_cost_+%_on_consecrated_ground"]=3614, + ["mana_cost_+%_on_totemified_aura_skills"]=3168, + ["mana_cost_+%_per_10_devotion"]=8308, + ["mana_cost_+%_per_200_mana_spent_recently"]=4407, + ["mana_cost_+%_when_on_low_life"]=1933, + ["mana_cost_+%_while_not_low_mana"]=3144, + ["mana_cost_+%_while_on_full_energy_shield"]=1932, + ["mana_cost_-%_per_endurance_charge"]=3327, + ["mana_degeneration_per_minute"]=8309, + ["mana_degeneration_per_minute_%"]=8310, + ["mana_degeneration_per_minute_not_in_grace"]=1630, + ["mana_flask_effects_are_not_removed_at_full_mana"]=8311, + ["mana_flask_recovery_is_instant_while_on_low_mana"]=8312, + ["mana_flasks_gain_X_charges_every_3_seconds"]=8313, + ["mana_gain_per_target"]=1791, + ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=8314, + ["mana_gained_on_attack_hit_vs_cursed_enemies"]=8315, + ["mana_gained_on_block"]=1805, + ["mana_gained_on_cull"]=8316, + ["mana_gained_on_enemy_death_per_level"]=3030, + ["mana_gained_on_hitting_taunted_enemy"]=1831, + ["mana_gained_on_spell_hit"]=8317, + ["mana_gained_on_spell_hit_vs_cursed_enemies"]=8318, + ["mana_gained_when_hit"]=2759, + ["mana_increased_per_x_overcapped_lightning_resistance_choir_of_the_storm"]=8319, + ["mana_leech_from_any_damage_permyriad"]=1749, + ["mana_leech_from_attack_damage_permyriad_per_power_charge"]=8320, + ["mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=4241, + ["mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=8321, + ["mana_leech_from_physical_attack_damage_permyriad"]=1746, + ["mana_leech_from_physical_damage_permyriad_per_power_charge"]=1767, + ["mana_leech_from_physical_damage_with_bow_permyriad"]=1707, + ["mana_leech_from_physical_damage_with_claw_permyriad"]=1706, + ["mana_leech_permyriad_vs_frozen_enemies"]=8322, + ["mana_leech_speed_+%"]=2205, + ["mana_leech_speed_+%_per_equipped_corrupted_item"]=3160, + ["mana_per_level"]=8323, + ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=8326, + ["mana_recovery_from_regeneration_is_not_applied"]=8327, + ["mana_recovery_rate_+%"]=1633, + ["mana_recovery_rate_+%_if_havent_killed_recently"]=8329, + ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=8328, + ["mana_recovery_rate_+%_while_affected_by_clarity"]=8330, + ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=4139, + ["mana_regeneration_rate_+%"]=1631, + ["mana_regeneration_rate_+%_during_flask_effect"]=3244, + ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=8345, + ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=8346, + ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=8347, + ["mana_regeneration_rate_+%_per_1%_spell_block_chance"]=8331, + ["mana_regeneration_rate_+%_per_power_charge"]=2026, + ["mana_regeneration_rate_+%_per_raised_spectre"]=8348, + ["mana_regeneration_rate_+%_while_moving"]=8349, + ["mana_regeneration_rate_+%_while_phasing"]=2557, + ["mana_regeneration_rate_+%_while_shocked"]=2558, + ["mana_regeneration_rate_+%_while_stationary"]=4378, + ["mana_regeneration_rate_per_minute_%"]=1628, + ["mana_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=8332, + ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=8337, + ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=8338, + ["mana_regeneration_rate_per_minute_%_per_active_totem"]=8339, + ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1632, + ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=8333, + ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=8334, + ["mana_regeneration_rate_per_minute_per_10_devotion"]=8335, + ["mana_regeneration_rate_per_minute_per_power_charge"]=8336, + ["mana_regeneration_rate_per_minute_while_dual_wielding"]=8340, + ["mana_regeneration_rate_per_minute_while_holding_shield"]=8341, + ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=8342, + ["mana_regeneration_rate_per_minute_while_wielding_staff"]=8343, + ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=8344, + ["mana_reservation_+%_per_250_total_attributes"]=8355, + ["mana_reservation_+%_with_curse_skills"]=8356, + ["mana_reservation_+%_with_skills_that_throw_mines"]=8350, + ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=8351, + ["mana_reservation_efficiency_+%_per_250_total_attributes"]=8354, + ["mana_reservation_efficiency_-2%_per_1"]=2279, + ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=8352, + ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=8353, + ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=8357, + ["manabond_and_stormbind_skill_lightning_damage_%_to_convert_to_cold"]=8358, + ["manabond_damage_+%"]=8359, + ["manabond_lightning_penetration_%_while_on_low_mana"]=8360, + ["manabond_skill_area_of_effect_+%"]=8361, + ["manifest_dancing_dervish_number_of_additional_copies"]=8362, + ["map_25%_chance_for_rare_monsters_to_be_possessed_up_to_x_times"]=8363, + ["map_X_additional_random_unallocated_notables"]=8364, + ["map_X_bestiary_packs_are_harvest_beasts"]=8365, + ["map_abyss_chasm_monster_quantity_+%"]=8367, + ["map_abyss_depths_chance_+%"]=8368, + ["map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods"]=135, + ["map_abyss_monster_spawn_amount_+%"]=133, + ["map_abyss_monsters_enhanced_per_chasm_closed"]=8369, + ["map_abyss_scarab_more_likely_%"]=10916, + ["map_actor_scale_+%"]=8370, + ["map_additional_number_of_packs_to_choose"]=2342, + ["map_additional_player_maximum_resistances_%"]=2409, + ["map_additional_rare_in_rare_pack_%_chance"]=8371, + ["map_additional_rare_in_synthesised_rare_pack_%_chance"]=8372, + ["map_additional_red_beasts"]=8373, + ["map_adds_X_extra_synthesis_mods"]=8374, + ["map_adds_X_extra_synthesis_special_mods"]=8375, + ["map_affliction_pack_size_+%"]=8376, + ["map_affliction_reward_kills_+%"]=8377, + ["map_all_magic_monsters_in_union_of_souls"]=8378, + ["map_allow_shrines"]=2673, + ["map_always_has_weather"]=2672, + ["map_ambush_chests"]=2662, + ["map_anarchy_scarab_more_likely_%"]=10917, + ["map_architects_drops_additional_map_currency"]=8389, + ["map_area_contains_arcanists_strongbox"]=8391, + ["map_area_contains_avatar_of_ambush"]=8392, + ["map_area_contains_avatar_of_anarchy"]=8393, + ["map_area_contains_avatar_of_beyond"]=8394, + ["map_area_contains_avatar_of_bloodlines"]=8395, + ["map_area_contains_avatar_of_breach"]=8396, + ["map_area_contains_avatar_of_domination"]=8397, + ["map_area_contains_avatar_of_essence"]=8398, + ["map_area_contains_avatar_of_invasion"]=8399, + ["map_area_contains_avatar_of_nemesis"]=8400, + ["map_area_contains_avatar_of_onslaught"]=8401, + ["map_area_contains_avatar_of_perandus"]=8402, + ["map_area_contains_avatar_of_prophecy"]=8403, + ["map_area_contains_avatar_of_rampage"]=8404, + ["map_area_contains_avatar_of_talisman"]=8405, + ["map_area_contains_avatar_of_tempest"]=8406, + ["map_area_contains_avatar_of_torment"]=8407, + ["map_area_contains_avatar_of_warbands"]=8408, + ["map_area_contains_cartographers_strongbox"]=8409, + ["map_area_contains_currency_chest"]=8410, + ["map_area_contains_gemcutters_strongbox"]=8411, + ["map_area_contains_grandmaster_ally"]=8412, + ["map_area_contains_jewellery_chest"]=8413, + ["map_area_contains_map_chest"]=8414, + ["map_area_contains_metamorphs"]=8415, + ["map_area_contains_perandus_coin_chest"]=8416, + ["map_area_contains_rituals"]=550, + ["map_area_contains_tormented_embezzler"]=8417, + ["map_area_contains_tormented_seditionist"]=8418, + ["map_area_contains_tormented_vaal_cultist"]=8419, + ["map_area_contains_ultimatum"]=525, + ["map_area_contains_unique_item_chest"]=8420, + ["map_area_contains_unique_strongbox"]=8421, + ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=8422, + ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=8423, + ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=8424, + ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=8425, + ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=8426, + ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=8427, + ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=8428, + ["map_area_contains_x_rare_monsters_with_inner_treasure"]=8551, + ["map_area_ritual_additional_chance_%"]=8429, ["map_astrolabe_abyss_monster_reward_and_difficulty"]=52, ["map_astrolabe_blight_monster_reward_and_difficulty"]=53, - ["map_astrolabe_boss_reward_and_difficulty"]=8316, + ["map_astrolabe_boss_reward_and_difficulty"]=8430, ["map_astrolabe_breach_monster_reward_and_difficulty"]=54, ["map_astrolabe_delirium_monster_reward_and_difficulty"]=55, ["map_astrolabe_expedition_monster_reward_and_difficulty"]=56, @@ -255122,3983 +259184,4036 @@ return { ["map_astrolabe_legion_monster_reward_and_difficulty"]=58, ["map_astrolabe_ritual_monster_reward_and_difficulty"]=59, ["map_astrolabe_ultimatum_monster_reward_and_difficulty"]=60, - ["map_atlas_influence_type"]=8276, - ["map_base_ground_desecration_damage_to_deal_per_minute"]=2335, - ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=2329, - ["map_base_ground_fire_damage_to_deal_per_minute"]=2328, - ["map_bestiary_league"]=8259, - ["map_bestiary_monster_damage_+%_final"]=8317, - ["map_bestiary_monster_life_+%_final"]=8318, - ["map_bestiary_scarab_more_likely_%"]=10755, - ["map_betrayal_intelligence_+%"]=8319, - ["map_betrayal_scarab_more_likely_%"]=10756, - ["map_beyond_basic_currency_quantity_+%_final_from_pale_faction"]=8326, - ["map_beyond_demon_desecrate_on_spawn_damage_per_second"]=2649, - ["map_beyond_demon_faction_chance_+%"]=8320, - ["map_beyond_divination_card_quantity_+%_final_from_demon_faction"]=8327, - ["map_beyond_flesh_faction_chance_+%"]=8321, - ["map_beyond_pale_faction_chance_+%"]=8322, - ["map_beyond_portal_chance_+%"]=8323, - ["map_beyond_portal_spawn_additional_demon_%_chance"]=8324, - ["map_beyond_rules"]=2650, - ["map_beyond_scarab_more_likely_%"]=10757, - ["map_beyond_unique_item_quantity_+%_final_from_flesh_faction"]=8325, - ["map_blight_chest_%_chance_for_additional_drop"]=8328, - ["map_blight_chests_repeat_drops_count"]=8329, - ["map_blight_empowering_towers_and_upgrades_enhance_enemies"]=8330, - ["map_blight_encounter_oil_reward_chance_+%"]=8331, - ["map_blight_encounter_spawn_rate_+%"]=8332, - ["map_blight_lane_additional_chest_chance_%"]=8333, - ["map_blight_lane_additional_chests"]=8334, - ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=8335, - ["map_blight_scarab_more_likely_%"]=10758, - ["map_blight_tower_cost_+%"]=8336, - ["map_blight_tower_cost_doubled"]=8337, - ["map_blight_up_to_X_additional_bosses"]=8338, - ["map_blighted_map_encounter_duration_-_sec"]=8339, - ["map_bloodline_packs_drop_x_additional_currency_items"]=8340, - ["map_bloodline_packs_drop_x_additional_rare_items"]=8341, - ["map_blueprint_drop_revealed_chance_%"]=8342, - ["map_boss_accompanied_by_bodyguards"]=8343, - ["map_boss_accompanied_by_harbinger"]=8344, - ["map_boss_additional_currency_to_drop"]=8345, - ["map_boss_additional_scarabs_to_drop"]=8346, - ["map_boss_additional_uniques_to_drop"]=8347, - ["map_boss_area_of_effect_+%"]=2454, - ["map_boss_attack_and_cast_speed_+%"]=2452, - ["map_boss_chance_to_be_surrounded_by_spirits_%"]=8348, - ["map_boss_damage_+%"]=2446, - ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2447, - ["map_boss_dropped_item_quantity_+%"]=8349, - ["map_boss_dropped_unique_items_+"]=8350, - ["map_boss_drops_X_fractured_incursion_items"]=8351, - ["map_boss_drops_additional_currency_shards"]=8352, - ["map_boss_drops_corrupted_items"]=8353, - ["map_boss_drops_x_additional_vaal_items"]=8359, - ["map_boss_is_possessed"]=8354, - ["map_boss_item_rarity_+%"]=8355, - ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2448, - ["map_boss_maximum_life_+%"]=2453, - ["map_boss_replaced_with_atziri"]=8356, - ["map_boss_rose_petal_quantity_+%"]=8357, - ["map_boss_surrounded_by_tormented_spirits"]=8358, - ["map_breach_chance_to_be_esh_+%"]=8360, - ["map_breach_chance_to_be_tul_+%"]=8361, - ["map_breach_chance_to_be_uul_netol_+%"]=8362, - ["map_breach_chance_to_be_xoph_+%"]=8363, - ["map_breach_hands_are_small"]=119, - ["map_breach_has_boss"]=2639, - ["map_breach_has_large_chest"]=8364, - ["map_breach_monster_count_and_speed_+%_per_breach_opened"]=133, - ["map_breach_monster_quantity_+%"]=8365, - ["map_breach_monsters_damage_+%"]=176, - ["map_breach_monsters_life_+%"]=165, - ["map_breach_rules"]=2637, - ["map_breach_scarab_more_likely_%"]=10759, - ["map_breach_size_+%"]=144, - ["map_breach_splinters_drop_as_stones_permyriad"]=145, - ["map_breach_time_passed_+%"]=134, - ["map_breach_type_override"]=8366, - ["map_breaches_num_additional_chests_to_spawn"]=8367, - ["map_can_only_damage_enemies_in_X_radius"]=8368, - ["map_cannot_evade"]=8369, - ["map_chance_for_area_%_to_contain_harvest"]=8370, - ["map_chance_for_breach_bosses_to_drop_breachstone_%"]=146, - ["map_chance_to_not_consume_sextant_use_%"]=8371, - ["map_chest_item_quantity_+%"]=2455, - ["map_chest_item_rarity_+%"]=2456, - ["map_consume_X_petals_on_rare_monster_death_all_natural_drops_same_class"]=8372, - ["map_consume_X_petals_on_rare_monster_death_convert_non_uniques_to_gold"]=8373, - ["map_consume_X_petals_on_rare_monster_death_drop_no_items_with_mods"]=8374, - ["map_consume_X_petals_on_rare_monster_death_revive_once"]=8375, - ["map_consume_X_petals_on_rare_monster_death_steal_mods"]=8376, - ["map_contains_X_additional_tricksters"]=8429, - ["map_contains_X_additional_uber_harbingers"]=8430, - ["map_contains_X_additional_untainted_packs"]=8431, - ["map_contains_X_additional_village_ores"]=8377, - ["map_contains_X_harvest_bear_bosses"]=8433, - ["map_contains_X_harvest_bird_bosses"]=8434, - ["map_contains_X_harvest_cat_bosses"]=8435, - ["map_contains_X_rogue_giants"]=8378, - ["map_contains_X_sirus_storms"]=8438, - ["map_contains_abyss_depths"]=8379, - ["map_contains_additional_atlas_bosses"]=8380, - ["map_contains_additional_chrysalis_talisman"]=8381, - ["map_contains_additional_clutching_talisman"]=8382, - ["map_contains_additional_fangjaw_talisman"]=8383, - ["map_contains_additional_mandible_talisman"]=8384, - ["map_contains_additional_packs_of_chaos_monsters"]=8385, - ["map_contains_additional_packs_of_cold_monsters"]=8386, - ["map_contains_additional_packs_of_fire_monsters"]=8387, - ["map_contains_additional_packs_of_lightning_monsters"]=8388, - ["map_contains_additional_packs_of_physical_monsters"]=8389, - ["map_contains_additional_packs_of_vaal_monsters"]=8390, - ["map_contains_additional_reviving_packs"]=8591, - ["map_contains_additional_three_rat_talisman"]=8392, - ["map_contains_additional_tormented_betrayers"]=8393, - ["map_contains_additional_tormented_graverobbers"]=8394, - ["map_contains_additional_tormented_heretics"]=8395, - ["map_contains_additional_unique_talisman"]=8396, - ["map_contains_additional_unstable_breaches"]=8397, - ["map_contains_additional_writhing_talisman"]=8398, - ["map_contains_an_unspecified_breach"]=2640, - ["map_contains_chayula_breach"]=8399, - ["map_contains_citadel"]=8400, - ["map_contains_corrupted_strongbox"]=8401, - ["map_contains_creeping_agony"]=8402, - ["map_contains_evil_einhar"]=8403, - ["map_contains_frogs"]=8404, - ["map_contains_keepers_of_the_trove_bloodline_pack"]=8405, - ["map_contains_master"]=8406, - ["map_contains_nevalis_monkey"]=8407, - ["map_contains_perandus_boss"]=8408, - ["map_contains_talisman_boss_with_higher_tier"]=8409, - ["map_contains_the_elderslayers"]=8410, - ["map_contains_the_feared"]=8411, - ["map_contains_the_forgotten"]=8412, - ["map_contains_the_formed"]=8413, - ["map_contains_the_hidden"]=8414, - ["map_contains_the_remembered"]=8415, - ["map_contains_the_twisted"]=8416, - ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=8417, - ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=8417, - ["map_contains_uul_netol_breach"]=8418, - ["map_contains_wealthy_pack"]=8419, - ["map_contains_x_additional_animated_weapon_packs"]=8420, - ["map_contains_x_additional_healing_packs"]=8421, - ["map_contains_x_additional_magic_packs"]=8422, - ["map_contains_x_additional_normal_packs"]=8423, - ["map_contains_x_additional_packs_on_their_own_team"]=8424, - ["map_contains_x_additional_packs_that_convert_on_death"]=8425, - ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=8426, - ["map_contains_x_additional_poison_packs"]=8427, - ["map_contains_x_additional_rare_packs"]=8428, - ["map_contains_x_additional_sulphite_golem_packs"]=8391, - ["map_contains_x_fewer_portals"]=8432, - ["map_contains_x_labyrinth_hazards"]=8436, - ["map_contracts_drop_with_additional_special_implicit_%_chance"]=8439, - ["map_corpse_cannot_be_destroyed"]=8678, - ["map_cowards_trial_extra_ghosts"]=8440, - ["map_cowards_trial_extra_oriath_citizens"]=8441, - ["map_cowards_trial_extra_phantasms"]=8442, - ["map_cowards_trial_extra_raging_spirits"]=8443, - ["map_cowards_trial_extra_rhoas"]=8444, - ["map_cowards_trial_extra_skeleton_cannons"]=8445, - ["map_cowards_trial_extra_zombies"]=8446, - ["map_crucible_combining_+_chance_%_for_upgraded_tiers"]=147, - ["map_crucible_combining_additional_sell_node"]=148, - ["map_crucible_combining_item_has_30_quality"]=149, - ["map_crucible_combining_item_has_corruption_implicit"]=150, - ["map_crucible_combining_item_has_mod_values_rerolled"]=151, - ["map_crucible_combining_item_is_fully_linked"]=152, - ["map_crucible_combining_more_likely_skills_are_kept"]=153, - ["map_crucible_combining_tiers_cannot_be_downgraded"]=154, - ["map_crucible_contains_forge_that_can_apply_weapon_tree_to_unique"]=135, - ["map_crucible_contains_forge_that_can_remove_weapon_tree"]=136, - ["map_crucible_forge_display"]=137, - ["map_crucible_forge_display_uber"]=138, - ["map_crucible_rare_unique_monster_drop_itemised_weapon_tree_experience_%_chance"]=155, - ["map_crucible_rare_unique_monster_drop_melee_weapon_with_tree_%_chance"]=156, - ["map_crucible_rare_unique_monster_drop_ranged_weapon_with_tree_%_chance"]=157, - ["map_crucible_rare_unique_monster_drop_shield_with_tree_%_chance"]=158, - ["map_crucible_rare_unique_monster_drop_unique_weapon_divination_cards_%_chance"]=159, - ["map_crucible_unique_monster_drop_unique_melee_weapon_%_chance"]=166, - ["map_crucible_unique_monster_drop_unique_ranged_weapon_%_chance"]=167, - ["map_crucible_unique_monster_drop_unique_shield_%_chance"]=168, - ["map_crucible_unique_monster_drop_unique_with_weapon_tree_%_chance"]=160, - ["map_crucible_unique_monsters_+%"]=8447, - ["map_custom_league_damage_taken_+%_final"]=8448, - ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=8450, - ["map_damage_+%_per_poison_stack"]=8449, - ["map_damage_removed_from_player_life_before_totem_life_%"]=8451, - ["map_damage_taken_+%_from_beyond_monsters"]=8452, - ["map_damage_taken_+%_per_nearby_ally"]=8453, - ["map_damage_taken_while_stationary_+%"]=8454, - ["map_damage_while_stationary_+%"]=8455, - ["map_death_and_taxes_boss_drops_additional_currency"]=8456, - ["map_debuff_time_passed_+%"]=8457, - ["map_delirium_scarab_more_likely_%"]=10760, - ["map_delve_rules"]=8458, - ["map_delve_scarab_more_likely_%"]=10761, - ["map_disable_ultimatum_from_chance"]=513, - ["map_display_area_contains_unbridged_gaps_to_cross"]=2317, - ["map_display_insanity"]=8843, - ["map_display_strongbox_monsters_are_enraged"]=8460, - ["map_display_unique_boss_drops_X_maps"]=2356, - ["map_divination_card_drop_chance_+%"]=8461, - ["map_divination_scarab_more_likely_%"]=10762, - ["map_doesnt_consume_sextant_use"]=8462, - ["map_domination_scarab_more_likely_%"]=10763, - ["map_dropped_equipment_are_converted_to_currency_based_on_rarity"]=8463, - ["map_dropped_items_are_fractured_chance_%"]=8464, - ["map_dropped_maps_are_corrupted_with_8_mods"]=8465, - ["map_dropped_maps_are_duplicated_chance_permillage"]=8466, - ["map_duplicate_captured_beasts_chance_%"]=8467, - ["map_duplicate_essence_monsters_with_shrieking_essence"]=177, - ["map_duplicate_x_rare_monsters"]=8468, - ["map_duplicate_x_synthesised_rare_monsters"]=8469, - ["map_elder_boss_variation"]=8470, - ["map_elder_rare_chance_+%"]=8471, - ["map_endgame_affliction_reward_1"]=8472, - ["map_endgame_affliction_reward_2"]=8473, - ["map_endgame_affliction_reward_3"]=8474, - ["map_endgame_affliction_reward_4"]=8475, - ["map_endgame_affliction_reward_5"]=8476, - ["map_endgame_affliction_reward_6"]=8477, - ["map_endgame_affliction_reward_7"]=8478, - ["map_endgame_affliction_reward_8"]=8479, - ["map_endgame_affliction_reward_9"]=8480, - ["map_endgame_fog_depth"]=8481, - ["map_equipment_drops_identified"]=8482, - ["map_essence_corruption_cannot_release_monsters"]=169, - ["map_essence_monolith_contains_additional_essence_of_corruption"]=8483, - ["map_essence_monolith_contains_essence_of_corruption_%"]=8484, - ["map_essence_monsters_are_corrupted"]=8485, - ["map_essence_monsters_chance_for_3_additional_essences_%"]=8486, - ["map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance"]=179, - ["map_essence_monsters_have_additional_essences"]=8487, - ["map_essence_monsters_higher_tier"]=8488, - ["map_essence_releasing_imprisoned_monsters_grants_random_essence_to_other_imprisoned_monsters_chance_%"]=161, - ["map_essence_scarab_more_likely_%"]=10764, - ["map_essences_are_1_tier_higher_chance_%"]=162, - ["map_essences_contains_rogue_exiles"]=139, - ["map_exarch_traps"]=8489, - ["map_expedition_artifact_quantity_+%"]=8490, - ["map_expedition_chest_double_drops_chance_%"]=8491, - ["map_expedition_chest_marker_count_+"]=8492, - ["map_expedition_common_chest_marker_count_+"]=8493, - ["map_expedition_elite_marker_count_+%"]=8494, - ["map_expedition_encounter_additional_chance_%"]=8495, - ["map_expedition_epic_chest_marker_count_+"]=8496, - ["map_expedition_explosion_radius_+%"]=8497, - ["map_expedition_explosives_+%"]=8498, - ["map_expedition_extra_relic_suffix_chance_%"]=8499, - ["map_expedition_faridun_elite_marker_count_+"]=8500, - ["map_expedition_faridun_monster_marker_count_+"]=8501, - ["map_expedition_league"]=497, - ["map_expedition_maximum_placement_distance_+%"]=8502, - ["map_expedition_number_of_monster_markers_+%"]=8503, - ["map_expedition_relics_+"]=8504, - ["map_expedition_relics_+%"]=8505, - ["map_expedition_saga_additional_terrain_features"]=8506, - ["map_expedition_saga_contains_boss"]=8507, - ["map_expedition_scarab_more_likely_%"]=10765, - ["map_expedition_uncommon_chest_marker_count_+"]=8508, - ["map_expedition_vendor_currency_drop_as_logbook"]=8509, - ["map_expedition_vendor_reroll_currency_quantity_+%"]=8510, - ["map_expedition_x_extra_relic_suffixes"]=8511, - ["map_experience_gain_+%"]=1096, - ["map_extra_monoliths"]=8512, - ["map_first_invasion_boss_killed_drops_x_additional_currency"]=8513, - ["map_first_strongbox_contains_x_additional_rare_monsters"]=8514, - ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=8515, - ["map_fishy_effect_0"]=8459, - ["map_fishy_effect_1"]=8459, - ["map_fishy_effect_2"]=8459, - ["map_fishy_effect_3"]=8459, - ["map_fixed_seed"]=2341, - ["map_flask_charges_recovered_per_3_seconds_%"]=8516, - ["map_force_side_area"]=8517, - ["map_force_stone_circle"]=2365, - ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=8518, - ["map_gauntlet_unique_monster_life_+%"]=8519, - ["map_grants_players_level_20_dash_skill"]=8520, - ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=8521, - ["map_ground_haste_action_speed_+%"]=8522, - ["map_ground_ice"]=2330, - ["map_ground_ice_base_magnitude"]=2331, - ["map_ground_lightning"]=2332, - ["map_ground_lightning_base_magnitude"]=2333, - ["map_ground_orion_meteor"]=8523, - ["map_ground_tar_movement_speed_+%"]=2334, - ["map_harbinger_additional_currency_shard_stack_chance_%"]=8524, - ["map_harbinger_cooldown_speed_+%"]=120, - ["map_harbinger_portal_drops_additional_fragments"]=8525, - ["map_harbinger_scarab_more_likely_%"]=10766, - ["map_harbingers_%_chance_to_be_replaced_as_atlas_boss"]=8527, - ["map_harbingers_drops_additional_currency_shards"]=8526, - ["map_harvest_chance_for_other_plot_to_not_wither_%"]=8528, - ["map_harvest_crafting_outcomes_X_lucky_rolls"]=8529, - ["map_harvest_double_lifeforce_dropped"]=8530, - ["map_harvest_monster_life_+%_final_from_sextant"]=8531, - ["map_harvest_scarab_more_likely_%"]=10767, - ["map_harvest_seed_t2_upgrade_%_chance"]=163, - ["map_harvest_seed_t3_upgrade_%_chance"]=170, - ["map_harvest_seeds_%_chance_to_spawn_additional_monster"]=8532, - ["map_harvest_seeds_1_of_every_2_plot_type_override"]=8533, - ["map_harvest_seeds_are_at_least_t2"]=140, - ["map_harvest_t3_chance_+%"]=8534, - ["map_has_X_seconds_between_waves"]=2458, - ["map_has_X_waves_of_monsters"]=2457, - ["map_has_monoliths"]=8535, - ["map_has_x%_quality"]=8536, - ["map_heist_contract_additional_reveals_granted"]=8537, - ["map_heist_contract_chest_no_rewards_%_chance"]=8538, - ["map_heist_contract_npc_items_cannot_drop"]=8539, - ["map_heist_contract_primary_target_value_+%_final"]=8540, - ["map_heist_monster_life_+%_final_from_sextant"]=8541, - ["map_heist_npc_perks_effect_+%_final"]=8542, - ["map_hellscape_additional_boss"]=1134, - ["map_hellscape_blood_consumed_+%_final"]=1111, - ["map_hellscape_fire_damage_taken_when_switching"]=1117, - ["map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated"]=1113, - ["map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time"]=1112, - ["map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource"]=1114, - ["map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource"]=1115, - ["map_hellscape_gimmick_shift_randomly"]=1116, - ["map_hellscape_item_drop_quantity_+%"]=1135, - ["map_hellscape_item_drop_rarity_+%"]=1136, - ["map_hellscape_lightning_damage_taken_when_switching"]=1118, - ["map_hellscape_monster_damage_+%_final"]=1119, - ["map_hellscape_monster_damage_taken_+%_final"]=1120, - ["map_hellscape_monster_life_+%_final"]=1121, - ["map_hellscape_monster_life_regeneration_rate_per_minute_%"]=1122, - ["map_hellscape_monster_slain_experience_+%_final"]=1137, - ["map_hellscape_pack_size_+%"]=1138, - ["map_hellscape_physical_damage_taken_when_switching"]=1123, - ["map_hellscape_rare_monster_drop_additional_abyss_jewel"]=1139, - ["map_hellscape_rare_monster_drop_additional_basic_currency_item"]=1140, - ["map_hellscape_rare_monster_drop_additional_blight_oil"]=1141, - ["map_hellscape_rare_monster_drop_additional_breach_splinters"]=1142, - ["map_hellscape_rare_monster_drop_additional_delirium_splinters"]=1143, - ["map_hellscape_rare_monster_drop_additional_delve_fossil"]=1144, - ["map_hellscape_rare_monster_drop_additional_enchanted_item"]=1145, - ["map_hellscape_rare_monster_drop_additional_essence"]=1146, - ["map_hellscape_rare_monster_drop_additional_expedition_currency"]=1147, - ["map_hellscape_rare_monster_drop_additional_fractured_item"]=1148, - ["map_hellscape_rare_monster_drop_additional_gem"]=1149, - ["map_hellscape_rare_monster_drop_additional_incubator"]=1150, - ["map_hellscape_rare_monster_drop_additional_influence_item"]=1151, - ["map_hellscape_rare_monster_drop_additional_legion_splinters"]=1152, - ["map_hellscape_rare_monster_drop_additional_map_item"]=1153, - ["map_hellscape_rare_monster_drop_additional_metamorph_catalyst"]=1154, - ["map_hellscape_rare_monster_drop_additional_scarab"]=1155, - ["map_hellscape_rare_monster_drop_additional_scourged_item"]=1156, - ["map_hellscape_rare_monster_drop_additional_stacked_decks"]=1157, - ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1158, - ["map_hellscape_rare_monster_drop_additional_unique_item"]=1159, - ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1160, - ["map_hellscaping_speed_+%"]=7122, - ["map_high_tier_maps_convert_to_conqueror_maps_%"]=8543, - ["map_high_tier_maps_convert_to_elder_maps_%"]=8544, - ["map_high_tier_maps_convert_to_shaper_maps_%"]=8545, - ["map_high_tier_maps_convert_to_synth_maps_%"]=8546, - ["map_ichor_pump_one_durability"]=611, - ["map_impales_on_players_detonate_when_players_have_X_impale_debuffs"]=8548, - ["map_implicit_item_drop_quantity_+%"]=8549, - ["map_implicit_item_drop_rarity_+%"]=8550, - ["map_implicit_pack_size_+%"]=8551, - ["map_imprisoned_monsters_action_speed_+%"]=8552, - ["map_imprisoned_monsters_damage_+%"]=8553, - ["map_imprisoned_monsters_damage_taken_+%"]=8554, - ["map_incursion_architects_are_possessed_chance_%"]=116, - ["map_incursion_architects_drop_incursion_rare_chance_%"]=121, - ["map_incursion_boss_possessed_by_tormented_arsonist"]=8555, - ["map_incursion_boss_possessed_by_tormented_blasphemer"]=8556, - ["map_incursion_boss_possessed_by_tormented_cannibal"]=8557, - ["map_incursion_boss_possessed_by_tormented_charlatan"]=8558, - ["map_incursion_boss_possessed_by_tormented_corrupter"]=8559, - ["map_incursion_boss_possessed_by_tormented_counterfeiter"]=8560, - ["map_incursion_boss_possessed_by_tormented_cutthroat"]=8561, - ["map_incursion_boss_possessed_by_tormented_embezzler"]=8562, - ["map_incursion_boss_possessed_by_tormented_experimenter"]=8563, - ["map_incursion_boss_possessed_by_tormented_fisherman"]=8564, - ["map_incursion_boss_possessed_by_tormented_freezer"]=8565, - ["map_incursion_boss_possessed_by_tormented_librarian"]=8566, - ["map_incursion_boss_possessed_by_tormented_martyr"]=8567, - ["map_incursion_boss_possessed_by_tormented_mutilator"]=8568, - ["map_incursion_boss_possessed_by_tormented_necromancer"]=8569, - ["map_incursion_boss_possessed_by_tormented_poisoner"]=8570, - ["map_incursion_boss_possessed_by_tormented_rogue"]=8571, - ["map_incursion_boss_possessed_by_tormented_smuggler"]=8572, - ["map_incursion_boss_possessed_by_tormented_spy"]=8573, - ["map_incursion_boss_possessed_by_tormented_thief"]=8574, - ["map_incursion_boss_possessed_by_tormented_thug"]=8575, - ["map_incursion_boss_possessed_by_tormented_warlord"]=8576, - ["map_incursion_memory_line_monster_damage_+%_final"]=4323, - ["map_incursion_memory_line_monster_life_+%_final"]=4322, - ["map_incursion_scarab_more_likely_%"]=10768, - ["map_incursion_spawn_large_caustic_plants"]=8577, - ["map_incursion_spawn_parasitic_caustic_plants"]=8578, - ["map_influence_pack_size_+%"]=8579, - ["map_inscribed_ultimatum_reward_currency_items_chance_+%"]=8583, - ["map_inscribed_ultimatum_reward_divination_cards_chance_+%"]=8584, - ["map_inscribed_ultimatum_reward_unique_items_chance_+%"]=8585, - ["map_invasion_bosses_are_twinned"]=8586, - ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=8587, - ["map_invasion_bosses_dropped_items_are_fully_linked"]=8588, - ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=8589, - ["map_invasion_monster_packs"]=2643, - ["map_invasion_monsters_guarded_by_x_magic_packs"]=8590, - ["map_is_branchy"]=2311, - ["map_is_overrun_by_faridun"]=8592, - ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=8593, + ["map_atlas_influence_type"]=8390, + ["map_base_ground_desecration_damage_to_deal_per_minute"]=2358, + ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=2352, + ["map_base_ground_fire_damage_to_deal_per_minute"]=2351, + ["map_bestiary_league"]=8373, + ["map_bestiary_monster_damage_+%_final"]=8431, + ["map_bestiary_monster_life_+%_final"]=8432, + ["map_bestiary_scarab_more_likely_%"]=10918, + ["map_betrayal_intelligence_+%"]=8433, + ["map_betrayal_scarab_more_likely_%"]=10919, + ["map_beyond_basic_currency_quantity_+%_final_from_pale_faction"]=8440, + ["map_beyond_demon_desecrate_on_spawn_damage_per_second"]=2675, + ["map_beyond_demon_faction_chance_+%"]=8434, + ["map_beyond_divination_card_quantity_+%_final_from_demon_faction"]=8441, + ["map_beyond_flesh_faction_chance_+%"]=8435, + ["map_beyond_pale_faction_chance_+%"]=8436, + ["map_beyond_portal_chance_+%"]=8437, + ["map_beyond_portal_spawn_additional_demon_%_chance"]=8438, + ["map_beyond_rules"]=2676, + ["map_beyond_scarab_more_likely_%"]=10920, + ["map_beyond_unique_item_quantity_+%_final_from_flesh_faction"]=8439, + ["map_blight_chest_%_chance_for_additional_drop"]=8442, + ["map_blight_chests_repeat_drops_count"]=8443, + ["map_blight_empowering_towers_and_upgrades_enhance_enemies"]=8444, + ["map_blight_encounter_oil_reward_chance_+%"]=8445, + ["map_blight_encounter_spawn_rate_+%"]=8446, + ["map_blight_lane_additional_chest_chance_%"]=8447, + ["map_blight_lane_additional_chests"]=8448, + ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=8449, + ["map_blight_scarab_more_likely_%"]=10921, + ["map_blight_tower_cost_+%"]=8450, + ["map_blight_tower_cost_doubled"]=8451, + ["map_blight_up_to_X_additional_bosses"]=8452, + ["map_blighted_map_encounter_duration_-_sec"]=8453, + ["map_bloodline_packs_drop_x_additional_currency_items"]=8454, + ["map_bloodline_packs_drop_x_additional_rare_items"]=8455, + ["map_blueprint_drop_revealed_chance_%"]=8456, + ["map_boss_accompanied_by_bodyguards"]=8457, + ["map_boss_accompanied_by_harbinger"]=8458, + ["map_boss_additional_currency_to_drop"]=8459, + ["map_boss_additional_scarabs_to_drop"]=8460, + ["map_boss_additional_uniques_to_drop"]=8461, + ["map_boss_area_of_effect_+%"]=2479, + ["map_boss_attack_and_cast_speed_+%"]=2477, + ["map_boss_chance_to_be_surrounded_by_spirits_%"]=8462, + ["map_boss_damage_+%"]=2471, + ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2472, + ["map_boss_dropped_item_quantity_+%"]=8463, + ["map_boss_dropped_unique_items_+"]=8464, + ["map_boss_drops_X_fractured_incursion_items"]=8465, + ["map_boss_drops_additional_currency_shards"]=8466, + ["map_boss_drops_corrupted_items"]=8467, + ["map_boss_drops_x_additional_vaal_items"]=8473, + ["map_boss_is_possessed"]=8468, + ["map_boss_item_rarity_+%"]=8469, + ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2473, + ["map_boss_maximum_life_+%"]=2478, + ["map_boss_replaced_with_atziri"]=8470, + ["map_boss_rose_petal_quantity_+%"]=8471, + ["map_boss_surrounded_by_tormented_spirits"]=8472, + ["map_breach_chance_to_be_esh_+%"]=8474, + ["map_breach_chance_to_be_tul_+%"]=8475, + ["map_breach_chance_to_be_uul_netol_+%"]=8476, + ["map_breach_chance_to_be_xoph_+%"]=8477, + ["map_breach_hands_are_small"]=122, + ["map_breach_has_boss"]=2665, + ["map_breach_has_large_chest"]=8478, + ["map_breach_monster_count_and_speed_+%_per_breach_opened"]=136, + ["map_breach_monster_quantity_+%"]=8479, + ["map_breach_monsters_damage_+%"]=179, + ["map_breach_monsters_life_+%"]=168, + ["map_breach_rules"]=2663, + ["map_breach_scarab_more_likely_%"]=10922, + ["map_breach_size_+%"]=147, + ["map_breach_splinters_drop_as_stones_permyriad"]=148, + ["map_breach_time_passed_+%"]=137, + ["map_breach_type_override"]=8480, + ["map_breaches_num_additional_chests_to_spawn"]=8481, + ["map_can_only_damage_enemies_in_X_radius"]=8482, + ["map_cannot_evade"]=8483, + ["map_chance_for_area_%_to_contain_harvest"]=8484, + ["map_chance_for_breach_bosses_to_drop_breachstone_%"]=149, + ["map_chance_to_not_consume_sextant_use_%"]=8485, + ["map_chest_item_quantity_+%"]=2480, + ["map_chest_item_rarity_+%"]=2481, + ["map_consume_X_petals_on_rare_monster_death_all_natural_drops_same_class"]=8486, + ["map_consume_X_petals_on_rare_monster_death_convert_non_uniques_to_gold"]=8487, + ["map_consume_X_petals_on_rare_monster_death_drop_no_items_with_mods"]=8488, + ["map_consume_X_petals_on_rare_monster_death_revive_once"]=8489, + ["map_consume_X_petals_on_rare_monster_death_steal_mods"]=8490, + ["map_contains_X_additional_tricksters"]=8543, + ["map_contains_X_additional_uber_harbingers"]=8544, + ["map_contains_X_additional_untainted_packs"]=8545, + ["map_contains_X_additional_village_ores"]=8491, + ["map_contains_X_harvest_bear_bosses"]=8547, + ["map_contains_X_harvest_bird_bosses"]=8548, + ["map_contains_X_harvest_cat_bosses"]=8549, + ["map_contains_X_rogue_giants"]=8492, + ["map_contains_X_sirus_storms"]=8552, + ["map_contains_abyss_depths"]=8493, + ["map_contains_additional_atlas_bosses"]=8494, + ["map_contains_additional_chrysalis_talisman"]=8495, + ["map_contains_additional_clutching_talisman"]=8496, + ["map_contains_additional_fangjaw_talisman"]=8497, + ["map_contains_additional_mandible_talisman"]=8498, + ["map_contains_additional_packs_of_chaos_monsters"]=8499, + ["map_contains_additional_packs_of_cold_monsters"]=8500, + ["map_contains_additional_packs_of_fire_monsters"]=8501, + ["map_contains_additional_packs_of_lightning_monsters"]=8502, + ["map_contains_additional_packs_of_physical_monsters"]=8503, + ["map_contains_additional_packs_of_vaal_monsters"]=8504, + ["map_contains_additional_reviving_packs"]=8707, + ["map_contains_additional_three_rat_talisman"]=8506, + ["map_contains_additional_tormented_betrayers"]=8507, + ["map_contains_additional_tormented_graverobbers"]=8508, + ["map_contains_additional_tormented_heretics"]=8509, + ["map_contains_additional_unique_talisman"]=8510, + ["map_contains_additional_unstable_breaches"]=8511, + ["map_contains_additional_writhing_talisman"]=8512, + ["map_contains_an_unspecified_breach"]=2666, + ["map_contains_chayula_breach"]=8513, + ["map_contains_citadel"]=8514, + ["map_contains_corrupted_strongbox"]=8515, + ["map_contains_creeping_agony"]=8516, + ["map_contains_evil_einhar"]=8517, + ["map_contains_frogs"]=8518, + ["map_contains_keepers_of_the_trove_bloodline_pack"]=8519, + ["map_contains_master"]=8520, + ["map_contains_nevalis_monkey"]=8521, + ["map_contains_perandus_boss"]=8522, + ["map_contains_talisman_boss_with_higher_tier"]=8523, + ["map_contains_the_elderslayers"]=8524, + ["map_contains_the_feared"]=8525, + ["map_contains_the_forgotten"]=8526, + ["map_contains_the_formed"]=8527, + ["map_contains_the_hidden"]=8528, + ["map_contains_the_remembered"]=8529, + ["map_contains_the_twisted"]=8530, + ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=8531, + ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=8531, + ["map_contains_uul_netol_breach"]=8532, + ["map_contains_wealthy_pack"]=8533, + ["map_contains_x_additional_animated_weapon_packs"]=8534, + ["map_contains_x_additional_healing_packs"]=8535, + ["map_contains_x_additional_magic_packs"]=8536, + ["map_contains_x_additional_normal_packs"]=8537, + ["map_contains_x_additional_packs_on_their_own_team"]=8538, + ["map_contains_x_additional_packs_that_convert_on_death"]=8539, + ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=8540, + ["map_contains_x_additional_poison_packs"]=8541, + ["map_contains_x_additional_rare_packs"]=8542, + ["map_contains_x_additional_sulphite_golem_packs"]=8505, + ["map_contains_x_fewer_portals"]=8546, + ["map_contains_x_labyrinth_hazards"]=8550, + ["map_contracts_drop_with_additional_special_implicit_%_chance"]=8553, + ["map_corpse_cannot_be_destroyed"]=8798, + ["map_cowards_trial_extra_ghosts"]=8554, + ["map_cowards_trial_extra_oriath_citizens"]=8555, + ["map_cowards_trial_extra_phantasms"]=8556, + ["map_cowards_trial_extra_raging_spirits"]=8557, + ["map_cowards_trial_extra_rhoas"]=8558, + ["map_cowards_trial_extra_skeleton_cannons"]=8559, + ["map_cowards_trial_extra_zombies"]=8560, + ["map_crucible_combining_+_chance_%_for_upgraded_tiers"]=150, + ["map_crucible_combining_additional_sell_node"]=151, + ["map_crucible_combining_item_has_30_quality"]=152, + ["map_crucible_combining_item_has_corruption_implicit"]=153, + ["map_crucible_combining_item_has_mod_values_rerolled"]=154, + ["map_crucible_combining_item_is_fully_linked"]=155, + ["map_crucible_combining_more_likely_skills_are_kept"]=156, + ["map_crucible_combining_tiers_cannot_be_downgraded"]=157, + ["map_crucible_contains_forge_that_can_apply_weapon_tree_to_unique"]=138, + ["map_crucible_contains_forge_that_can_remove_weapon_tree"]=139, + ["map_crucible_forge_display"]=140, + ["map_crucible_forge_display_uber"]=141, + ["map_crucible_rare_unique_monster_drop_itemised_weapon_tree_experience_%_chance"]=158, + ["map_crucible_rare_unique_monster_drop_melee_weapon_with_tree_%_chance"]=159, + ["map_crucible_rare_unique_monster_drop_ranged_weapon_with_tree_%_chance"]=160, + ["map_crucible_rare_unique_monster_drop_shield_with_tree_%_chance"]=161, + ["map_crucible_rare_unique_monster_drop_unique_weapon_divination_cards_%_chance"]=162, + ["map_crucible_unique_monster_drop_unique_melee_weapon_%_chance"]=169, + ["map_crucible_unique_monster_drop_unique_ranged_weapon_%_chance"]=170, + ["map_crucible_unique_monster_drop_unique_shield_%_chance"]=171, + ["map_crucible_unique_monster_drop_unique_with_weapon_tree_%_chance"]=163, + ["map_crucible_unique_monsters_+%"]=8561, + ["map_custom_league_damage_taken_+%_final"]=8562, + ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=8564, + ["map_damage_+%_per_poison_stack"]=8563, + ["map_damage_removed_from_player_life_before_totem_life_%"]=8565, + ["map_damage_taken_+%_from_beyond_monsters"]=8566, + ["map_damage_taken_+%_per_nearby_ally"]=8567, + ["map_damage_taken_while_stationary_+%"]=8568, + ["map_damage_while_stationary_+%"]=8569, + ["map_death_and_taxes_boss_drops_additional_currency"]=8570, + ["map_debuff_time_passed_+%"]=8571, + ["map_delirium_scarab_more_likely_%"]=10923, + ["map_delve_rules"]=8572, + ["map_delve_scarab_more_likely_%"]=10924, + ["map_disable_ultimatum_from_chance"]=524, + ["map_display_area_contains_unbridged_gaps_to_cross"]=2340, + ["map_display_insanity"]=8963, + ["map_display_strongbox_monsters_are_enraged"]=8574, + ["map_display_unique_boss_drops_X_maps"]=2379, + ["map_divination_card_drop_chance_+%"]=8575, + ["map_divination_scarab_more_likely_%"]=10925, + ["map_doesnt_consume_sextant_use"]=8576, + ["map_domination_scarab_more_likely_%"]=10926, + ["map_dropped_equipment_are_converted_to_currency_based_on_rarity"]=8577, + ["map_dropped_items_are_fractured_chance_%"]=8578, + ["map_dropped_maps_are_corrupted_with_8_mods"]=8579, + ["map_dropped_maps_are_duplicated_chance_permillage"]=8580, + ["map_duplicate_captured_beasts_chance_%"]=8581, + ["map_duplicate_essence_monsters_with_shrieking_essence"]=180, + ["map_duplicate_x_rare_monsters"]=8582, + ["map_duplicate_x_synthesised_rare_monsters"]=8583, + ["map_elder_boss_variation"]=8584, + ["map_elder_rare_chance_+%"]=8585, + ["map_endgame_affliction_reward_1"]=8586, + ["map_endgame_affliction_reward_2"]=8587, + ["map_endgame_affliction_reward_3"]=8588, + ["map_endgame_affliction_reward_4"]=8589, + ["map_endgame_affliction_reward_5"]=8590, + ["map_endgame_affliction_reward_6"]=8591, + ["map_endgame_affliction_reward_7"]=8592, + ["map_endgame_affliction_reward_8"]=8593, + ["map_endgame_affliction_reward_9"]=8594, + ["map_endgame_fog_depth"]=8595, + ["map_equipment_drops_identified"]=8596, + ["map_essence_corruption_cannot_release_monsters"]=172, + ["map_essence_monolith_contains_additional_essence_of_corruption"]=8597, + ["map_essence_monolith_contains_essence_of_corruption_%"]=8598, + ["map_essence_monsters_are_corrupted"]=8599, + ["map_essence_monsters_chance_for_3_additional_essences_%"]=8600, + ["map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance"]=182, + ["map_essence_monsters_have_additional_essences"]=8601, + ["map_essence_monsters_higher_tier"]=8602, + ["map_essence_releasing_imprisoned_monsters_grants_random_essence_to_other_imprisoned_monsters_chance_%"]=164, + ["map_essence_scarab_more_likely_%"]=10927, + ["map_essences_are_1_tier_higher_chance_%"]=165, + ["map_essences_contains_rogue_exiles"]=142, + ["map_exarch_traps"]=8603, + ["map_exile_accompanied_by_wild_mercenary_chance_%"]=8604, + ["map_expedition_artifact_quantity_+%"]=8605, + ["map_expedition_chest_double_drops_chance_%"]=8606, + ["map_expedition_chest_marker_count_+"]=8607, + ["map_expedition_common_chest_marker_count_+"]=8608, + ["map_expedition_elite_marker_count_+%"]=8609, + ["map_expedition_encounter_additional_chance_%"]=8610, + ["map_expedition_epic_chest_marker_count_+"]=8611, + ["map_expedition_explosion_radius_+%"]=8612, + ["map_expedition_explosives_+%"]=8613, + ["map_expedition_extra_relic_suffix_chance_%"]=8614, + ["map_expedition_faridun_elite_marker_count_+"]=8615, + ["map_expedition_faridun_monster_marker_count_+"]=8616, + ["map_expedition_league"]=508, + ["map_expedition_maximum_placement_distance_+%"]=8617, + ["map_expedition_number_of_monster_markers_+%"]=8618, + ["map_expedition_relics_+"]=8619, + ["map_expedition_relics_+%"]=8620, + ["map_expedition_saga_additional_terrain_features"]=8621, + ["map_expedition_saga_contains_boss"]=8622, + ["map_expedition_scarab_more_likely_%"]=10928, + ["map_expedition_uncommon_chest_marker_count_+"]=8623, + ["map_expedition_vendor_currency_drop_as_logbook"]=8624, + ["map_expedition_vendor_reroll_currency_quantity_+%"]=8625, + ["map_expedition_x_extra_relic_suffixes"]=8626, + ["map_experience_gain_+%"]=1120, + ["map_extra_monoliths"]=8627, + ["map_final_abyss_pit_spawn_abyss_miniboss"]=8628, + ["map_first_invasion_boss_killed_drops_x_additional_currency"]=8629, + ["map_first_strongbox_contains_x_additional_rare_monsters"]=8630, + ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=8631, + ["map_fishy_effect_0"]=8573, + ["map_fishy_effect_1"]=8573, + ["map_fishy_effect_2"]=8573, + ["map_fishy_effect_3"]=8573, + ["map_fixed_seed"]=2364, + ["map_flask_charges_recovered_per_3_seconds_%"]=8632, + ["map_force_side_area"]=8633, + ["map_force_stone_circle"]=2388, + ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=8634, + ["map_gauntlet_unique_monster_life_+%"]=8635, + ["map_grants_players_level_20_dash_skill"]=8636, + ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=8637, + ["map_ground_haste_action_speed_+%"]=8638, + ["map_ground_ice"]=2353, + ["map_ground_ice_base_magnitude"]=2354, + ["map_ground_lightning"]=2355, + ["map_ground_lightning_base_magnitude"]=2356, + ["map_ground_orion_meteor"]=8639, + ["map_ground_tar_movement_speed_+%"]=2357, + ["map_harbinger_additional_currency_shard_stack_chance_%"]=8640, + ["map_harbinger_cooldown_speed_+%"]=123, + ["map_harbinger_portal_drops_additional_fragments"]=8641, + ["map_harbinger_scarab_more_likely_%"]=10929, + ["map_harbingers_%_chance_to_be_replaced_as_atlas_boss"]=8643, + ["map_harbingers_drops_additional_currency_shards"]=8642, + ["map_harvest_chance_for_other_plot_to_not_wither_%"]=8644, + ["map_harvest_crafting_outcomes_X_lucky_rolls"]=8645, + ["map_harvest_double_lifeforce_dropped"]=8646, + ["map_harvest_monster_life_+%_final_from_sextant"]=8647, + ["map_harvest_scarab_more_likely_%"]=10930, + ["map_harvest_seed_t2_upgrade_%_chance"]=166, + ["map_harvest_seed_t3_upgrade_%_chance"]=173, + ["map_harvest_seeds_%_chance_to_spawn_additional_monster"]=8648, + ["map_harvest_seeds_1_of_every_2_plot_type_override"]=8649, + ["map_harvest_seeds_are_at_least_t2"]=143, + ["map_harvest_t3_chance_+%"]=8650, + ["map_has_X_seconds_between_waves"]=2483, + ["map_has_X_waves_of_monsters"]=2482, + ["map_has_monoliths"]=8651, + ["map_has_x%_quality"]=8652, + ["map_heist_contract_additional_reveals_granted"]=8653, + ["map_heist_contract_chest_no_rewards_%_chance"]=8654, + ["map_heist_contract_npc_items_cannot_drop"]=8655, + ["map_heist_contract_primary_target_value_+%_final"]=8656, + ["map_heist_monster_life_+%_final_from_sextant"]=8657, + ["map_heist_npc_perks_effect_+%_final"]=8658, + ["map_hellscape_additional_boss"]=1158, + ["map_hellscape_blood_consumed_+%_final"]=1135, + ["map_hellscape_fire_damage_taken_when_switching"]=1141, + ["map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated"]=1137, + ["map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time"]=1136, + ["map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource"]=1138, + ["map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource"]=1139, + ["map_hellscape_gimmick_shift_randomly"]=1140, + ["map_hellscape_item_drop_quantity_+%"]=1159, + ["map_hellscape_item_drop_rarity_+%"]=1160, + ["map_hellscape_lightning_damage_taken_when_switching"]=1142, + ["map_hellscape_monster_damage_+%_final"]=1143, + ["map_hellscape_monster_damage_taken_+%_final"]=1144, + ["map_hellscape_monster_life_+%_final"]=1145, + ["map_hellscape_monster_life_regeneration_rate_per_minute_%"]=1146, + ["map_hellscape_monster_slain_experience_+%_final"]=1161, + ["map_hellscape_pack_size_+%"]=1162, + ["map_hellscape_physical_damage_taken_when_switching"]=1147, + ["map_hellscape_rare_monster_drop_additional_abyss_jewel"]=1163, + ["map_hellscape_rare_monster_drop_additional_basic_currency_item"]=1164, + ["map_hellscape_rare_monster_drop_additional_blight_oil"]=1165, + ["map_hellscape_rare_monster_drop_additional_breach_splinters"]=1166, + ["map_hellscape_rare_monster_drop_additional_delirium_splinters"]=1167, + ["map_hellscape_rare_monster_drop_additional_delve_fossil"]=1168, + ["map_hellscape_rare_monster_drop_additional_enchanted_item"]=1169, + ["map_hellscape_rare_monster_drop_additional_essence"]=1170, + ["map_hellscape_rare_monster_drop_additional_expedition_currency"]=1171, + ["map_hellscape_rare_monster_drop_additional_fractured_item"]=1172, + ["map_hellscape_rare_monster_drop_additional_gem"]=1173, + ["map_hellscape_rare_monster_drop_additional_incubator"]=1174, + ["map_hellscape_rare_monster_drop_additional_influence_item"]=1175, + ["map_hellscape_rare_monster_drop_additional_legion_splinters"]=1176, + ["map_hellscape_rare_monster_drop_additional_map_item"]=1177, + ["map_hellscape_rare_monster_drop_additional_metamorph_catalyst"]=1178, + ["map_hellscape_rare_monster_drop_additional_scarab"]=1179, + ["map_hellscape_rare_monster_drop_additional_scourged_item"]=1180, + ["map_hellscape_rare_monster_drop_additional_stacked_decks"]=1181, + ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1182, + ["map_hellscape_rare_monster_drop_additional_unique_item"]=1183, + ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1184, + ["map_hellscaping_speed_+%"]=7221, + ["map_high_tier_maps_convert_to_conqueror_maps_%"]=8659, + ["map_high_tier_maps_convert_to_elder_maps_%"]=8660, + ["map_high_tier_maps_convert_to_shaper_maps_%"]=8661, + ["map_high_tier_maps_convert_to_synth_maps_%"]=8662, + ["map_ichor_pump_one_durability"]=622, + ["map_impales_on_players_detonate_when_players_have_X_impale_debuffs"]=8664, + ["map_implicit_item_drop_quantity_+%"]=8665, + ["map_implicit_item_drop_rarity_+%"]=8666, + ["map_implicit_pack_size_+%"]=8667, + ["map_imprisoned_monsters_action_speed_+%"]=8668, + ["map_imprisoned_monsters_damage_+%"]=8669, + ["map_imprisoned_monsters_damage_taken_+%"]=8670, + ["map_incursion_architects_are_possessed_chance_%"]=119, + ["map_incursion_architects_drop_incursion_rare_chance_%"]=124, + ["map_incursion_boss_possessed_by_tormented_arsonist"]=8671, + ["map_incursion_boss_possessed_by_tormented_blasphemer"]=8672, + ["map_incursion_boss_possessed_by_tormented_cannibal"]=8673, + ["map_incursion_boss_possessed_by_tormented_charlatan"]=8674, + ["map_incursion_boss_possessed_by_tormented_corrupter"]=8675, + ["map_incursion_boss_possessed_by_tormented_counterfeiter"]=8676, + ["map_incursion_boss_possessed_by_tormented_cutthroat"]=8677, + ["map_incursion_boss_possessed_by_tormented_embezzler"]=8678, + ["map_incursion_boss_possessed_by_tormented_experimenter"]=8679, + ["map_incursion_boss_possessed_by_tormented_fisherman"]=8680, + ["map_incursion_boss_possessed_by_tormented_freezer"]=8681, + ["map_incursion_boss_possessed_by_tormented_librarian"]=8682, + ["map_incursion_boss_possessed_by_tormented_martyr"]=8683, + ["map_incursion_boss_possessed_by_tormented_mutilator"]=8684, + ["map_incursion_boss_possessed_by_tormented_necromancer"]=8685, + ["map_incursion_boss_possessed_by_tormented_poisoner"]=8686, + ["map_incursion_boss_possessed_by_tormented_rogue"]=8687, + ["map_incursion_boss_possessed_by_tormented_smuggler"]=8688, + ["map_incursion_boss_possessed_by_tormented_spy"]=8689, + ["map_incursion_boss_possessed_by_tormented_thief"]=8690, + ["map_incursion_boss_possessed_by_tormented_thug"]=8691, + ["map_incursion_boss_possessed_by_tormented_warlord"]=8692, + ["map_incursion_memory_line_monster_damage_+%_final"]=4359, + ["map_incursion_memory_line_monster_life_+%_final"]=4358, + ["map_incursion_scarab_more_likely_%"]=10931, + ["map_incursion_spawn_large_caustic_plants"]=8693, + ["map_incursion_spawn_parasitic_caustic_plants"]=8694, + ["map_influence_pack_size_+%"]=8695, + ["map_inscribed_ultimatum_reward_currency_items_chance_+%"]=8699, + ["map_inscribed_ultimatum_reward_divination_cards_chance_+%"]=8700, + ["map_inscribed_ultimatum_reward_unique_items_chance_+%"]=8701, + ["map_invasion_bosses_are_twinned"]=8702, + ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=8703, + ["map_invasion_bosses_dropped_items_are_fully_linked"]=8704, + ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=8705, + ["map_invasion_monster_packs"]=2669, + ["map_invasion_monsters_guarded_by_x_magic_packs"]=8706, + ["map_is_branchy"]=2334, + ["map_is_overrun_by_faridun"]=8708, + ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=8709, ["map_item_drop_quantity_+%"]=28, - ["map_item_drop_quantity_+%_final_from_zana_influence"]=8594, + ["map_item_drop_quantity_+%_final_from_zana_influence"]=8710, ["map_item_drop_rarity_+%"]=29, - ["map_item_found_rarity_+%_per_15_rampage_stacks"]=8595, - ["map_item_level_override"]=1097, - ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=8596, - ["map_item_zana_influence_+"]=8597, - ["map_items_drop_corrupted"]=3068, - ["map_items_drop_corrupted_%"]=10851, - ["map_kill_enemy_on_hit_if_under_20%_life"]=8675, - ["map_labyrinth_izaro_area_of_effect_+%"]=8598, - ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=8599, - ["map_labyrinth_izaro_damage_+%"]=8600, - ["map_labyrinth_izaro_life_+%"]=8601, - ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=8602, - ["map_labyrinth_monsters_damage_+%"]=8603, - ["map_labyrinth_monsters_life_+%"]=8604, - ["map_leaguestone_area_contains_x_additional_leaguestones"]=8605, - ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=8606, - ["map_leaguestone_contains_warband_leader"]=8607, - ["map_leaguestone_explicit_warband_type_override"]=8608, - ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=8609, - ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=8610, - ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=8611, - ["map_leaguestone_monolith_contains_essence_type"]=8612, - ["map_leaguestone_override_base_num_breaches"]=8613, - ["map_leaguestone_override_base_num_invasion_bosses"]=8614, - ["map_leaguestone_override_base_num_monoliths"]=8615, - ["map_leaguestone_override_base_num_perandus_chests"]=8616, - ["map_leaguestone_override_base_num_prophecy_coins"]=8617, - ["map_leaguestone_override_base_num_rogue_exiles"]=8618, - ["map_leaguestone_override_base_num_shrines"]=8619, - ["map_leaguestone_override_base_num_strongboxes"]=8620, - ["map_leaguestone_override_base_num_talismans"]=8621, - ["map_leaguestone_override_base_num_tormented_spirits"]=8622, - ["map_leaguestone_override_base_num_warband_packs"]=8623, - ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=8624, - ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=8625, - ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=8626, - ["map_leaguestone_shrine_monster_rarity_override"]=8627, - ["map_leaguestone_shrine_override_type"]=8628, - ["map_leaguestone_strongboxes_rarity_override"]=8629, - ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=8631, - ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=8632, - ["map_leaguestone_x_monsters_spawn_abaxoth"]=8633, - ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=8634, - ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=8635, - ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=8636, - ["map_legion_additional_number_of_sergeants"]=8637, - ["map_legion_generals_spawn_both_generals"]=8638, - ["map_legion_league_extra_spawns"]=1132, - ["map_legion_league_force_general"]=8639, - ["map_legion_league_force_war_chest"]=8640, - ["map_legion_monster_life_+%_final_from_sextant"]=8641, - ["map_legion_monster_splinter_emblem_drops_duplicated"]=8642, - ["map_legion_scarab_more_likely_%"]=10769, - ["map_lethal_after_X_seconds"]=8643, - ["map_level_+"]=8644, - ["map_magic_items_drop_as_normal"]=8646, - ["map_magic_monster_life_regeneration_rate_per_minute_%"]=4316, - ["map_magic_monsters_are_maimed"]=8647, - ["map_magic_monsters_damage_taken_+%"]=8648, - ["map_magic_pack_size_+%"]=8649, - ["map_map_item_drop_chance_+%"]=8650, - ["map_maps_scarab_more_likely_%"]=10770, - ["map_melee_physical_damage_taken_%_to_deal_to_attacker"]=8651, - ["map_metamorph_all_metamorphs_have_rewards"]=8652, - ["map_metamorph_boss_drops_additional_itemised_organs"]=8653, - ["map_metamorph_catalyst_drops_duplicated"]=8654, - ["map_metamorph_itemised_boss_min_rewards"]=8655, - ["map_metamorph_itemised_boss_more_difficult"]=8656, - ["map_metamorph_life_+%_final_from_sextant"]=8657, - ["map_metamorphosis_league"]=8658, - ["map_mini_monolith_monsters_are_magic"]=8659, - ["map_minimap_revealed"]=2342, - ["map_minion_attack_speed_+%"]=8660, - ["map_minion_cast_speed_+%"]=8661, - ["map_minion_movement_speed_+%"]=8662, - ["map_monster_action_speed_cannot_be_reduced_below_base"]=8663, - ["map_monster_add_x_grasping_vines_on_hit"]=8673, - ["map_monster_all_damage_can_ignite_freeze_shock"]=8664, - ["map_monster_and_player_onslaught_effect_+%"]=8665, - ["map_monster_attack_cast_and_movement_speed_+%"]=8666, - ["map_monster_beyond_portal_chance_+%"]=8667, - ["map_monster_chance_to_gain_endurance_charge_when_hit_%"]=8668, - ["map_monster_curse_effect_on_self_+%"]=8669, - ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=8670, - ["map_monster_damage_taken_+%_while_possessed"]=8671, - ["map_monster_debuff_time_passed_+%"]=8672, - ["map_monster_drop_higher_level_gear"]=3619, - ["map_monster_item_rarity_+permyriad_final_per_empowered_soul"]=8674, - ["map_monster_malediction_on_hit"]=8676, - ["map_monster_maximum_endurance_charges"]=2429, - ["map_monster_maximum_frenzy_charges"]=2426, - ["map_monster_maximum_power_charges"]=2432, - ["map_monster_melee_attacks_apply_random_curses"]=2435, - ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2436, - ["map_monster_movement_speed_cannot_be_reduced_below_base"]=8677, - ["map_monster_no_drops"]=2444, - ["map_monster_non_damaging_ailment_effect_+%_on_self"]=8679, - ["map_monster_petal_chance_+%"]=8680, - ["map_monster_projectile_chain_from_terrain_chance_%"]=8681, - ["map_monster_rare_and_unique_rose_petal_quantity_+%"]=8682, - ["map_monster_rose_petal_quantity_+%"]=8683, - ["map_monster_skills_chain_X_additional_times"]=2438, - ["map_monster_slain_experience_+%"]=8684, - ["map_monster_unaffected_by_shock"]=2396, - ["map_monsters_%_chance_to_inflict_status_ailments"]=8727, - ["map_monsters_%_physical_damage_to_add_as_chaos"]=8728, - ["map_monsters_%_physical_damage_to_add_as_cold"]=2422, - ["map_monsters_%_physical_damage_to_add_as_fire"]=2421, - ["map_monsters_%_physical_damage_to_add_as_lightning"]=2423, - ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2424, - ["map_monsters_%_physical_damage_to_convert_to_cold"]=2419, - ["map_monsters_%_physical_damage_to_convert_to_fire"]=2418, - ["map_monsters_%_physical_damage_to_convert_to_lightning"]=2420, - ["map_monsters_accuracy_rating_+%"]=8685, - ["map_monsters_action_speed_-%"]=8686, - ["map_monsters_add_endurance_charge_on_hit_%"]=2430, - ["map_monsters_add_frenzy_charge_on_hit_%"]=2427, - ["map_monsters_add_power_charge_on_hit_%"]=2433, - ["map_monsters_additional_chaos_resistance"]=8687, - ["map_monsters_additional_cold_resistance"]=2413, - ["map_monsters_additional_elemental_resistance"]=8688, - ["map_monsters_additional_fire_resistance"]=2412, - ["map_monsters_additional_lightning_resistance"]=2414, - ["map_monsters_additional_maximum_all_elemental_resistances_%"]=8689, - ["map_monsters_additional_number_of_projecitles"]=2411, - ["map_monsters_additional_physical_damage_reduction"]=2415, - ["map_monsters_all_damage_can_chill"]=8690, - ["map_monsters_all_damage_can_freeze"]=8691, - ["map_monsters_all_damage_can_ignite"]=8692, - ["map_monsters_all_damage_can_poison"]=8693, - ["map_monsters_all_damage_can_shock"]=8694, - ["map_monsters_always_crit"]=8695, - ["map_monsters_always_hit"]=8696, - ["map_monsters_always_ignite"]=8697, - ["map_monsters_are_converted_on_kill"]=8698, - ["map_monsters_are_hexproof"]=2442, - ["map_monsters_are_immune_to_curses"]=2441, - ["map_monsters_area_of_effect_+%"]=2392, - ["map_monsters_attack_speed_+%"]=2407, - ["map_monsters_avoid_ailments_%"]=2397, - ["map_monsters_avoid_elemental_ailments_%"]=2398, - ["map_monsters_avoid_freeze_and_chill_%"]=2393, - ["map_monsters_avoid_ignite_%"]=2394, - ["map_monsters_avoid_poison_bleed_impale_%"]=8699, - ["map_monsters_avoid_shock_%"]=2395, - ["map_monsters_base_bleed_duration_+%"]=8700, - ["map_monsters_base_block_%"]=8701, - ["map_monsters_base_chance_to_freeze_%"]=8702, - ["map_monsters_base_chance_to_ignite_%"]=8703, - ["map_monsters_base_chance_to_shock_%"]=8704, - ["map_monsters_base_poison_duration_+%"]=8705, - ["map_monsters_base_self_critical_strike_multiplier_-%"]=3635, - ["map_monsters_base_spell_block_%"]=8706, - ["map_monsters_can_be_empowered_by_x_wildwood_wisps"]=8707, - ["map_monsters_cannot_be_leeched_from"]=2401, - ["map_monsters_cannot_be_stunned"]=2416, - ["map_monsters_cannot_be_taunted"]=8708, - ["map_monsters_cast_speed_+%"]=2408, - ["map_monsters_chance_to_blind_on_hit_%"]=8709, - ["map_monsters_chance_to_impale_%"]=8547, - ["map_monsters_chance_to_inflict_brittle_%"]=8710, - ["map_monsters_chance_to_inflict_sapped_%"]=8711, - ["map_monsters_chance_to_scorch_%"]=8712, - ["map_monsters_convert_all_physical_damage_to_fire"]=2439, - ["map_monsters_critical_strike_chance_+%"]=2399, - ["map_monsters_critical_strike_multiplier_+"]=2400, - ["map_monsters_curse_effect_+%"]=2443, - ["map_monsters_curse_effect_on_self_+%_final"]=8713, - ["map_monsters_damage_+%"]=2404, - ["map_monsters_damage_taken_+%"]=8714, - ["map_monsters_drop_ground_fire_on_death_base_radius"]=2440, - ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=8715, - ["map_monsters_energy_shield_leech_resistance_%"]=8716, - ["map_monsters_enrage_on_low_life"]=8717, - ["map_monsters_freeze_duration_+%"]=8718, - ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2428, - ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2425, - ["map_monsters_gain_x_power_charges_every_20_seconds"]=2431, - ["map_monsters_global_bleed_on_hit"]=8719, - ["map_monsters_global_poison_on_hit"]=8720, - ["map_monsters_have_onslaught"]=2405, - ["map_monsters_ignite_duration_+%"]=8721, - ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2434, - ["map_monsters_life_+%"]=2391, - ["map_monsters_life_leech_resistance_%"]=2402, - ["map_monsters_maim_on_hit_%_chance"]=8722, - ["map_monsters_mana_leech_resistance_%"]=2403, - ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=8723, - ["map_monsters_movement_speed_+%"]=2406, - ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=8724, - ["map_monsters_near_shrines_are_chilled"]=8725, - ["map_monsters_penetrate_elemental_resistances_%"]=8726, - ["map_monsters_petrification_for_X_seconds_on_hit"]=8274, - ["map_monsters_physical_damage_%_to_add_as_random_element"]=8729, - ["map_monsters_poison_on_hit"]=2417, - ["map_monsters_reduce_enemy_chaos_resistance_%"]=8730, - ["map_monsters_reduce_enemy_cold_resistance_%"]=8731, - ["map_monsters_reduce_enemy_fire_resistance_%"]=8732, - ["map_monsters_reduce_enemy_lightning_resistance_%"]=8733, - ["map_monsters_reflect_%_elemental_damage"]=2410, - ["map_monsters_reflect_%_physical_damage"]=2409, - ["map_monsters_reflect_curses"]=2437, - ["map_monsters_remove_%_of_mana_on_hit"]=8736, - ["map_monsters_remove_charges_on_hit_%"]=8734, - ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=8735, - ["map_monsters_shock_effect_+%"]=8737, - ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=8738, - ["map_monsters_spell_damage_%_suppressed"]=8739, - ["map_monsters_spell_suppression_chance_%"]=8740, - ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=8741, - ["map_monsters_steal_charges"]=8742, - ["map_monsters_summon_specific_monsters_on_death"]=8743, - ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=8744, - ["map_monsters_unaffected_by_curses"]=8745, - ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=8747, - ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=8748, - ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=8749, - ["map_monstrous_treasure_no_monsters"]=8750, - ["map_movement_velocity_+%_per_poison_stack"]=8751, - ["map_nemesis_dropped_items_+"]=8752, - ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=8753, - ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=8754, - ["map_no_experience_gain"]=8755, - ["map_no_magic_items_drop"]=8756, - ["map_no_rare_items_drop"]=8757, - ["map_no_refills_in_town"]=2343, - ["map_no_stashes"]=8758, - ["map_no_uniques_drop_randomly"]=8759, - ["map_no_vendors"]=8760, - ["map_non_unique_equipment_drops_as_sell_price"]=3067, - ["map_non_unique_items_drop_normal"]=8761, - ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=8762, - ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2370, - ["map_normal_items_drop_as_magic"]=8763, - ["map_normal_monster_life_regeneration_rate_per_minute_%"]=4315, - ["map_nuke_everything"]=8764, - ["map_num_additional_random_scarab_effects"]=8765, - ["map_num_extra_abysses"]=129, - ["map_num_extra_blights_"]=610, - ["map_num_extra_gloom_shrines"]=8766, - ["map_num_extra_harbingers"]=8767, - ["map_num_extra_invasion_bosses"]=2644, - ["map_num_extra_resonating_shrines"]=8768, - ["map_num_extra_shrines"]=2359, - ["map_num_extra_strongboxes"]=2367, - ["map_number_of_additional_mines_to_place"]=8769, - ["map_number_of_additional_mods"]=8770, - ["map_number_of_additional_prefixes"]=8771, - ["map_number_of_additional_silver_coin_drops"]=8772, - ["map_number_of_additional_suffixes"]=8773, - ["map_number_of_additional_totems_allowed"]=8775, - ["map_number_of_additional_traps_to_throw"]=8774, - ["map_number_of_harbinger_portals"]=104, - ["map_number_of_magic_packs_+%"]=2368, - ["map_number_of_rare_packs_+%"]=2369, - ["map_on_complete_drop_additional_conqueror_map"]=2449, - ["map_on_complete_drop_additional_elder_guardian_map"]=2450, - ["map_on_complete_drop_additional_shaper_guardian_map"]=2451, - ["map_on_complete_drop_x_additional_forbidden_tomes"]=8776, - ["map_on_complete_drop_x_additional_maps"]=8777, - ["map_on_complete_drop_x_additional_memory_lines"]=8778, - ["map_owner_sulphite_gained_+%"]=8779, - ["map_packs_are_abomination_monsters"]=8780, - ["map_packs_are_animals"]=2349, - ["map_packs_are_bandits"]=2347, - ["map_packs_are_blackguards"]=8781, - ["map_packs_are_bone_husks"]=8580, - ["map_packs_are_demons"]=2350, - ["map_packs_are_ghosts"]=8782, - ["map_packs_are_goatmen"]=2348, - ["map_packs_are_humanoids"]=2351, - ["map_packs_are_kitava"]=8783, - ["map_packs_are_kitava_heralds"]=8581, - ["map_packs_are_lunaris"]=8784, - ["map_packs_are_porcupines"]=8582, - ["map_packs_are_sea_witches_and_spawn"]=2352, - ["map_packs_are_skeletons"]=2346, - ["map_packs_are_solaris"]=8785, - ["map_packs_are_spiders"]=8786, - ["map_packs_are_str_mission_totems"]=2345, - ["map_packs_are_totems"]=2344, - ["map_packs_are_undead_and_necromancers"]=2353, - ["map_packs_are_vaal"]=8787, - ["map_packs_fire_projectiles"]=2354, - ["map_packs_have_detonate_dead_totems"]=8788, - ["map_packs_have_pop_up_traps"]=4307, - ["map_packs_have_uber_tentacle_fiends"]=8789, - ["map_perandus_guards_are_rare"]=8790, - ["map_perandus_monsters_drop_perandus_coin_stack_%"]=8791, - ["map_percent_increased_effect_of_atlas_passives"]=8792, - ["map_petrificiation_statue_ambush"]=8793, - ["map_player_accuracy_rating_+%_final"]=8794, - ["map_player_action_speed_+%_per_recent_skill_use"]=8795, - ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1124, - ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=8796, - ["map_player_base_aura_skills_affecting_allies_also_affect_enemies"]=8797, - ["map_player_base_chaos_damage_taken_per_minute"]=2371, - ["map_player_block_chance_%_in_hellscape"]=1125, - ["map_player_buff_time_passed_+%_only_buff_category"]=8798, - ["map_player_can_be_touched_by_tormented_spirits"]=8799, - ["map_player_cannot_block"]=8800, - ["map_player_cannot_block_attacks"]=8801, - ["map_player_cannot_block_spells"]=8802, - ["map_player_cannot_expose"]=2373, - ["map_player_cannot_recharge_energy_shield"]=8803, - ["map_player_cannot_suppress_spell_damage"]=8804, - ["map_player_chance_to_evade_attacks_%_in_hellscape"]=1126, - ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=8805, - ["map_player_charges_gained_+%"]=8806, - ["map_player_cooldown_speed_+%_final"]=8807, - ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=3217, - ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=8808, - ["map_player_curse_effect_on_self_+%"]=8809, - ["map_player_damage_+%_vs_breach_monsters"]=8810, - ["map_player_damage_taken_+%_vs_breach_monsters"]=8811, - ["map_player_damage_taken_+%_while_rampaging"]=8812, - ["map_player_damage_while_dead_+%"]=8813, - ["map_player_death_mark_on_rare_unique_kill_ms"]=8814, - ["map_player_disable_soul_gain_prevention"]=8815, - ["map_player_es_loss_per_second_in_hellscape"]=1127, - ["map_player_flask_effect_+%_final"]=8816, - ["map_player_flask_recovery_is_instant"]=8817, - ["map_player_global_defences_+%"]=8818, - ["map_player_has_blood_magic_keystone"]=2372, - ["map_player_has_chaos_inoculation_keystone"]=2374, - ["map_player_has_level_X_conductivity"]=2382, - ["map_player_has_level_X_despair"]=2383, - ["map_player_has_level_X_elemental_weakness"]=2378, - ["map_player_has_level_X_enfeeble"]=2376, - ["map_player_has_level_X_flammability"]=2380, - ["map_player_has_level_X_frostbite"]=2381, - ["map_player_has_level_X_punishment"]=2379, - ["map_player_has_level_X_silence"]=2384, - ["map_player_has_level_X_temporal_chains"]=2377, - ["map_player_has_level_X_vulnerability"]=2375, - ["map_player_has_random_level_X_curse_every_10_seconds"]=8819, - ["map_player_life_and_es_recovery_speed_+%_final"]=8820, - ["map_player_life_loss_per_second_in_hellscape"]=1128, - ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=8821, - ["map_player_lose_no_experience_on_death"]=8822, - ["map_player_maximum_leech_rate_+%"]=8823, - ["map_player_movement_speed_+%_final_in_hellscape"]=1129, - ["map_player_movement_velocity_+%"]=8824, - ["map_player_no_regeneration"]=2385, - ["map_player_non_curse_aura_effect_+%"]=8825, - ["map_player_onslaught_on_kill_%"]=8826, - ["map_player_periodically_affected_by_random_marks"]=8827, - ["map_player_projectile_damage_+%_final"]=2388, - ["map_player_shrine_buff_effect_on_self_+%"]=8828, - ["map_player_shrine_effect_duration_+%"]=8829, - ["map_player_spell_suppression_chance_%_in_hellscape"]=1130, - ["map_player_status_recovery_speed_+%"]=2387, - ["map_player_travel_skills_disabled"]=8830, - ["map_players_action_speed_+%_while_chilled"]=3611, - ["map_players_additional_number_of_projectiles"]=2411, - ["map_players_and_monsters_chaos_damage_taken_+%"]=8831, - ["map_players_and_monsters_cold_damage_taken_+%"]=8832, - ["map_players_and_monsters_critical_strike_chance_+%"]=8833, - ["map_players_and_monsters_curses_are_reflected"]=8834, - ["map_players_and_monsters_damage_+%_per_curse"]=8835, - ["map_players_and_monsters_damage_taken_+%_while_stationary"]=8836, - ["map_players_and_monsters_fire_damage_taken_+%"]=8837, - ["map_players_and_monsters_have_onslaught_if_hit_recently"]=8838, - ["map_players_and_monsters_have_resolute_technique"]=8839, - ["map_players_and_monsters_lightning_damage_taken_+%"]=8840, - ["map_players_and_monsters_movement_speed_+%"]=8841, - ["map_players_and_monsters_physical_damage_taken_+%"]=8842, - ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=8844, - ["map_players_armour_+%_final"]=8845, - ["map_players_block_chance_+%"]=8846, - ["map_players_cannot_gain_endurance_charges"]=8847, - ["map_players_cannot_gain_flask_charges"]=8848, - ["map_players_cannot_gain_frenzy_charges"]=8849, - ["map_players_cannot_gain_power_charges"]=8850, - ["map_players_cannot_take_reflected_damage"]=8851, - ["map_players_convert_all_physical_damage_to_fire"]=2389, - ["map_players_cost_+%_per_skill_used_recently"]=8852, - ["map_players_damage_+%_final_per_equipped_item"]=8853, - ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=8854, - ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=8855, - ["map_players_gain_instability_on_kill"]=8856, - ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=8857, - ["map_players_gain_onslaught_during_flask_effect"]=8858, - ["map_players_gain_rampage_stacks"]=2648, - ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=8859, - ["map_players_gain_rare_monster_mods_on_kill_ms"]=3448, - ["map_players_gain_soul_eater_on_rare_kill_ms"]=3450, - ["map_players_have_point_blank"]=8860, - ["map_players_have_shroud_walker"]=8923, - ["map_players_minion_damage_+%_final_per_equipped_item"]=8861, - ["map_players_movement_skills_cooldown_speed_+%"]=8862, - ["map_players_movement_speed_+%"]=8863, - ["map_players_no_regeneration_including_es"]=8864, - ["map_players_resist_all_%"]=8865, - ["map_players_skill_area_of_effect_+%_final"]=8867, - ["map_players_spell_damage_%_suppressed"]=8868, - ["map_portal_expires_every_X_seconds"]=8869, - ["map_portal_limit"]=8870, - ["map_portals_do_not_expire"]=8871, - ["map_portals_expire_on_death_instead"]=8872, - ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=8873, - ["map_possessed_monsters_drop_map_chance_%"]=8874, - ["map_possessed_monsters_drop_polished_scarab_chance_%"]=8875, - ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=8876, - ["map_possessed_monsters_drop_unique_chance_%"]=8877, - ["map_possessed_monsters_drop_winged_scarab_chance_%"]=8878, - ["map_prefixes_do_not_apply"]=8879, - ["map_projectile_speed_+%"]=2390, - ["map_quality_instead_applies_to_pack_size"]=8880, - ["map_rampage_time_+%"]=8881, - ["map_random_unique_monster_is_possessed"]=8883, - ["map_random_zana_mod"]=8884, - ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=8885, - ["map_rare_breach_monsters_drop_additional_shards"]=8886, - ["map_rare_monster_essence_daemon"]=8887, - ["map_rare_monster_fracture_on_death_chance_%"]=8888, - ["map_rare_monster_items_drop_corrupted_%"]=8889, - ["map_rare_monster_life_regeneration_rate_per_minute_%"]=4317, - ["map_rare_monster_num_additional_modifiers"]=8890, - ["map_rare_monster_volatile_on_death_%"]=8891, - ["map_rare_monsters_are_hindered"]=8892, - ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=8893, - ["map_rare_monsters_drop_x_additional_rare_items"]=8894, - ["map_rare_monsters_have_final_gasp"]=8895, - ["map_rare_monsters_have_inner_treasure"]=8896, - ["map_rare_monsters_possessed_chance_%"]=8897, - ["map_rare_monsters_shaper_touched"]=8898, - ["map_rare_monsters_spawn_map_boss_on_death_chance_%"]=8899, - ["map_rare_unique_monsters_remove_%_life_mana_es_on_hit"]=8900, - ["map_rare_unique_monsters_spawn_tormented_spirit_on_low_life"]=8901, - ["map_reliquary_must_complete_abysses"]=131, - ["map_reliquary_must_complete_blights"]=612, - ["map_reliquary_must_complete_expedition"]=500, - ["map_reliquary_must_complete_incursions"]=118, - ["map_reliquary_must_complete_legions"]=1133, - ["map_reliquary_must_complete_rituals"]=541, - ["map_reliquary_must_complete_settlers_ore"]=8902, - ["map_reliquary_must_complete_strongboxes"]=8253, - ["map_reliquary_must_complete_ultimatum"]=516, - ["map_reliquary_must_complete_unstable_breaches"]=2641, - ["map_reliquary_must_open_heist_caches"]=220, - ["map_ritual_additional_reward_rerolls"]=8903, - ["map_ritual_cannot_recover_life_or_energy_shield_above_X_%"]=540, - ["map_ritual_number_of_free_rerolls"]=8904, - ["map_ritual_scarab_more_likely_%"]=10771, - ["map_ritual_tribute_+%"]=8905, - ["map_ritual_uber_rune_type_weighting_+%"]=8906, - ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=8907, - ["map_rogue_exile_drop_skill_gem_with_quality"]=8908, - ["map_rogue_exiles_are_doubled"]=8909, - ["map_rogue_exiles_are_doubled_chance_%"]=8910, - ["map_rogue_exiles_damage_+%"]=8911, - ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=8912, - ["map_rogue_exiles_drop_x_additional_jewels"]=8913, - ["map_rogue_exiles_dropped_items_are_corrupted"]=8914, - ["map_rogue_exiles_dropped_items_are_duplicated"]=8915, - ["map_rogue_exiles_dropped_items_are_fractured_chance_%"]=8916, - ["map_rogue_exiles_dropped_items_are_fully_linked"]=8917, - ["map_rogue_exiles_maximum_life_+%"]=8918, - ["map_runic_monster_damage_+%_final"]=499, - ["map_runic_monster_life_+%_final"]=498, - ["map_settlers_scarab_more_likely_%"]=10772, - ["map_shaper_rare_chance_+%"]=8919, - ["map_shrine_monster_life_+%_final"]=8920, - ["map_shrines_are_darkshrines"]=2360, - ["map_shrines_drop_x_currency_items_on_activation"]=8921, - ["map_shrines_grant_a_random_additional_effect"]=8922, - ["map_simulacrum_reward_level_+"]=8924, - ["map_size_+%"]=2301, - ["map_solo_mode"]=8925, - ["map_spawn_X_additional_incursion_architects"]=8926, - ["map_spawn_abysses"]=8927, - ["map_spawn_additional_empowered_vaal_chests"]=8928, - ["map_spawn_affliction_mirror"]=8929, - ["map_spawn_bestiary_encounters"]=8930, - ["map_spawn_betrayals"]=2638, - ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=8931, - ["map_spawn_cadiro_%_chance"]=8932, - ["map_spawn_exile_per_area_%"]=2635, - ["map_spawn_extra_exiles"]=2357, - ["map_spawn_extra_perandus_chests"]=8933, - ["map_spawn_extra_talismans"]=2364, - ["map_spawn_extra_torment_spirits"]=2366, - ["map_spawn_extra_warbands"]=2358, - ["map_spawn_harbingers"]=2361, - ["map_spawn_heist_smugglers_cache"]=218, - ["map_spawn_incursion_encounters"]=8934, - ["map_spawn_perandus_chests"]=2363, - ["map_spawn_settlers_ore"]=8935, - ["map_spawn_talismans"]=2362, - ["map_spawn_tormented_spirits"]=2645, - ["map_spawn_two_bosses"]=2445, - ["map_spawn_x_additional_heist_smugglers_caches"]=8936, - ["map_spawn_x_random_map_bosses"]=8937, - ["map_storm_area_of_effect_+%"]=8938, - ["map_strongbox_chain_length"]=122, - ["map_strongbox_items_dropped_are_mirrored"]=8939, - ["map_strongbox_monsters_attack_speed_+%"]=8940, - ["map_strongbox_monsters_damage_+%"]=178, - ["map_strongbox_monsters_item_quantity_+%"]=8941, - ["map_strongbox_monsters_life_+%"]=171, - ["map_strongbox_scarab_more_likely_%"]=10773, - ["map_strongboxes_additional_pack_chance_%"]=164, - ["map_strongboxes_are_corrupted"]=8942, - ["map_strongboxes_at_least_rare"]=8943, - ["map_strongboxes_chance_to_be_unique_+%"]=8944, - ["map_strongboxes_drop_x_additional_rare_items"]=8945, - ["map_strongboxes_minimum_rarity"]=8946, - ["map_strongboxes_vaal_orb_drop_chance_%"]=8630, - ["map_suffixes_do_not_apply"]=8947, - ["map_supporter_al_hezmin_spawn_daemon"]=8265, - ["map_supporter_all_influence_packs"]=8948, - ["map_supporter_all_spawn_daemon"]=8266, - ["map_supporter_atziri_spawn_daemon"]=8267, - ["map_supporter_baran_spawn_daemon"]=8268, - ["map_supporter_comet_spawn_daemon"]=8949, - ["map_supporter_curse_field_daemon_spawn"]=8950, - ["map_supporter_dangerous_area"]=8882, - ["map_supporter_drox_daemon"]=8269, - ["map_supporter_heist_cache"]=219, - ["map_supporter_maddening_tentacle_daemon_spawn"]=8645, - ["map_supporter_maven_follower"]=8951, - ["map_supporter_players_random_movement_velocity_+%_final_when_hit"]=8952, - ["map_supporter_players_sent_to_void_league_on_death"]=8866, - ["map_supporter_ruin_ghost_daemon_spawn"]=512, - ["map_supporter_sirus_spawn_daemon"]=8272, - ["map_supporter_uber_elder_spawn_daemon"]=8270, - ["map_supporter_uber_shaper_spawn_daemon"]=8271, - ["map_supporter_union_of_souls"]=9074, - ["map_supporter_veritania_spawn_daemon"]=8273, - ["map_supporter_volatile_on_death_chance_%"]=8746, - ["map_supporter_volatile_on_death_chance_legion"]=1131, - ["map_synthesis_league"]=8953, - ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=8954, - ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=8955, - ["map_synthesis_spawn_additional_fungal_chest_clusters"]=8956, - ["map_synthesis_spawn_additional_magic_ambush_chest"]=8957, - ["map_synthesis_spawn_additional_normal_ambush_chest"]=8958, - ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=8959, - ["map_synthesis_spawn_additional_rare_ambush_chest"]=8960, - ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=8961, - ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=8962, - ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=8963, - ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=8964, - ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=8965, - ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=8966, - ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=8967, - ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=8968, - ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=8969, - ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=8970, - ["map_synthesised_magic_monster_drop_additional_currency"]=8971, - ["map_synthesised_magic_monster_drop_additional_currency_shard"]=8972, - ["map_synthesised_magic_monster_drop_additional_quality_currency"]=8973, - ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=8974, - ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=8975, - ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=8976, - ["map_synthesised_magic_monster_items_drop_corrupted_%"]=8977, - ["map_synthesised_magic_monster_map_drop_chance_+%"]=8978, - ["map_synthesised_magic_monster_slain_experience_+%"]=8979, - ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=8980, - ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=8981, - ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=8982, - ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=8983, - ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=8984, - ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=8985, - ["map_synthesised_monster_additional_fossil_drop_chance_%"]=8986, - ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=8987, - ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=8988, - ["map_synthesised_monster_dropped_item_quantity_+%"]=8989, - ["map_synthesised_monster_dropped_item_rarity_+%"]=8990, - ["map_synthesised_monster_fractured_item_drop_chance_+%"]=8991, - ["map_synthesised_monster_items_drop_corrupted_%"]=8992, - ["map_synthesised_monster_map_drop_chance_+%"]=8993, - ["map_synthesised_monster_pack_size_+%"]=8994, - ["map_synthesised_monster_slain_experience_+%"]=8995, - ["map_synthesised_monster_unique_item_drop_chance_+%"]=8996, - ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=8997, - ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=8998, - ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=8999, - ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=9000, - ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=9001, - ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=9002, - ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=9003, - ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=9004, - ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=9005, - ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=9006, - ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=9007, - ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=9008, - ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=9009, - ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=9010, - ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=9011, - ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=9012, - ["map_synthesised_rare_monster_drop_additional_currency"]=9013, - ["map_synthesised_rare_monster_drop_additional_currency_shard"]=9014, - ["map_synthesised_rare_monster_drop_additional_quality_currency"]=9015, - ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=9016, - ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=9017, - ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=9018, - ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=9019, - ["map_synthesised_rare_monster_items_drop_corrupted_%"]=9020, - ["map_synthesised_rare_monster_map_drop_chance_+%"]=9021, - ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=9022, - ["map_synthesised_rare_monster_slain_experience_+%"]=9023, - ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=9024, - ["map_talismans_dropped_as_rare"]=9025, - ["map_talismans_higher_tier"]=9026, - ["map_tempest_area_of_effect_+%_visible"]=9027, - ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2340, - ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2336, + ["map_item_found_rarity_+%_per_15_rampage_stacks"]=8711, + ["map_item_level_override"]=1121, + ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=8712, + ["map_item_zana_influence_+"]=8713, + ["map_items_drop_corrupted"]=3102, + ["map_items_drop_corrupted_%"]=11018, + ["map_kill_enemy_on_hit_if_under_20%_life"]=8795, + ["map_labyrinth_izaro_area_of_effect_+%"]=8714, + ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=8715, + ["map_labyrinth_izaro_damage_+%"]=8716, + ["map_labyrinth_izaro_life_+%"]=8717, + ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=8718, + ["map_labyrinth_monsters_damage_+%"]=8719, + ["map_labyrinth_monsters_life_+%"]=8720, + ["map_leaguestone_area_contains_x_additional_leaguestones"]=8721, + ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=8722, + ["map_leaguestone_contains_warband_leader"]=8723, + ["map_leaguestone_explicit_warband_type_override"]=8724, + ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=8725, + ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=8726, + ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=8727, + ["map_leaguestone_monolith_contains_essence_type"]=8728, + ["map_leaguestone_override_base_num_breaches"]=8729, + ["map_leaguestone_override_base_num_invasion_bosses"]=8730, + ["map_leaguestone_override_base_num_monoliths"]=8731, + ["map_leaguestone_override_base_num_perandus_chests"]=8732, + ["map_leaguestone_override_base_num_prophecy_coins"]=8733, + ["map_leaguestone_override_base_num_rogue_exiles"]=8734, + ["map_leaguestone_override_base_num_shrines"]=8735, + ["map_leaguestone_override_base_num_strongboxes"]=8736, + ["map_leaguestone_override_base_num_talismans"]=8737, + ["map_leaguestone_override_base_num_tormented_spirits"]=8738, + ["map_leaguestone_override_base_num_warband_packs"]=8739, + ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=8740, + ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=8741, + ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=8742, + ["map_leaguestone_shrine_monster_rarity_override"]=8743, + ["map_leaguestone_shrine_override_type"]=8744, + ["map_leaguestone_strongboxes_rarity_override"]=8745, + ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=8747, + ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=8748, + ["map_leaguestone_x_monsters_spawn_abaxoth"]=8749, + ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=8750, + ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=8751, + ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=8752, + ["map_legion_additional_number_of_sergeants"]=8753, + ["map_legion_generals_spawn_both_generals"]=8754, + ["map_legion_league_extra_spawns"]=1156, + ["map_legion_league_force_general"]=8755, + ["map_legion_league_force_war_chest"]=8756, + ["map_legion_monster_life_+%_final_from_sextant"]=8757, + ["map_legion_monster_splinter_emblem_drops_duplicated"]=8758, + ["map_legion_scarab_more_likely_%"]=10932, + ["map_lethal_after_X_seconds"]=8759, + ["map_level_+"]=8760, + ["map_magic_items_drop_as_normal"]=8762, + ["map_magic_monster_life_regeneration_rate_per_minute_%"]=4352, + ["map_magic_monsters_are_maimed"]=8763, + ["map_magic_monsters_damage_taken_+%"]=8764, + ["map_magic_pack_size_+%"]=8765, + ["map_map_item_drop_chance_+%"]=8766, + ["map_maps_scarab_more_likely_%"]=10933, + ["map_melee_physical_damage_taken_%_to_deal_to_attacker"]=8767, + ["map_mercanary_accompanied_by_party"]=8768, + ["map_mercenaries_are_infamous"]=8769, + ["map_mercenary_all_unique_items"]=8770, + ["map_mercenary_league"]=8771, + ["map_metamorph_all_metamorphs_have_rewards"]=8772, + ["map_metamorph_boss_drops_additional_itemised_organs"]=8773, + ["map_metamorph_catalyst_drops_duplicated"]=8774, + ["map_metamorph_itemised_boss_min_rewards"]=8775, + ["map_metamorph_itemised_boss_more_difficult"]=8776, + ["map_metamorph_life_+%_final_from_sextant"]=8777, + ["map_metamorphosis_league"]=8778, + ["map_mini_monolith_monsters_are_magic"]=8779, + ["map_minimap_revealed"]=2365, + ["map_minion_attack_speed_+%"]=8780, + ["map_minion_cast_speed_+%"]=8781, + ["map_minion_movement_speed_+%"]=8782, + ["map_monster_action_speed_cannot_be_reduced_below_base"]=8783, + ["map_monster_add_x_grasping_vines_on_hit"]=8793, + ["map_monster_all_damage_can_ignite_freeze_shock"]=8784, + ["map_monster_and_player_onslaught_effect_+%"]=8785, + ["map_monster_attack_cast_and_movement_speed_+%"]=8786, + ["map_monster_beyond_portal_chance_+%"]=8787, + ["map_monster_chance_to_gain_endurance_charge_when_hit_%"]=8788, + ["map_monster_curse_effect_on_self_+%"]=8789, + ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=8790, + ["map_monster_damage_taken_+%_while_possessed"]=8791, + ["map_monster_debuff_time_passed_+%"]=8792, + ["map_monster_drop_higher_level_gear"]=3655, + ["map_monster_item_rarity_+permyriad_final_per_empowered_soul"]=8794, + ["map_monster_malediction_on_hit"]=8796, + ["map_monster_maximum_endurance_charges"]=2454, + ["map_monster_maximum_frenzy_charges"]=2451, + ["map_monster_maximum_power_charges"]=2457, + ["map_monster_melee_attacks_apply_random_curses"]=2460, + ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2461, + ["map_monster_movement_speed_cannot_be_reduced_below_base"]=8797, + ["map_monster_no_drops"]=2469, + ["map_monster_non_damaging_ailment_effect_+%_on_self"]=8799, + ["map_monster_petal_chance_+%"]=8800, + ["map_monster_projectile_chain_from_terrain_chance_%"]=8801, + ["map_monster_rare_and_unique_rose_petal_quantity_+%"]=8802, + ["map_monster_rose_petal_quantity_+%"]=8803, + ["map_monster_skills_chain_X_additional_times"]=2463, + ["map_monster_slain_experience_+%"]=8804, + ["map_monster_unaffected_by_shock"]=2419, + ["map_monsters_%_chance_to_inflict_status_ailments"]=8847, + ["map_monsters_%_physical_damage_to_add_as_chaos"]=8848, + ["map_monsters_%_physical_damage_to_add_as_cold"]=2447, + ["map_monsters_%_physical_damage_to_add_as_fire"]=2446, + ["map_monsters_%_physical_damage_to_add_as_lightning"]=2448, + ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2449, + ["map_monsters_%_physical_damage_to_convert_to_cold"]=2444, + ["map_monsters_%_physical_damage_to_convert_to_fire"]=2443, + ["map_monsters_%_physical_damage_to_convert_to_lightning"]=2445, + ["map_monsters_accuracy_rating_+%"]=8805, + ["map_monsters_action_speed_-%"]=8806, + ["map_monsters_add_endurance_charge_on_hit_%"]=2455, + ["map_monsters_add_frenzy_charge_on_hit_%"]=2452, + ["map_monsters_add_power_charge_on_hit_%"]=2458, + ["map_monsters_additional_chaos_resistance"]=8807, + ["map_monsters_additional_cold_resistance"]=2438, + ["map_monsters_additional_elemental_resistance"]=8808, + ["map_monsters_additional_fire_resistance"]=2437, + ["map_monsters_additional_lightning_resistance"]=2439, + ["map_monsters_additional_maximum_all_elemental_resistances_%"]=8809, + ["map_monsters_additional_number_of_projecitles"]=2436, + ["map_monsters_additional_physical_damage_reduction"]=2440, + ["map_monsters_all_damage_can_chill"]=8810, + ["map_monsters_all_damage_can_freeze"]=8811, + ["map_monsters_all_damage_can_ignite"]=8812, + ["map_monsters_all_damage_can_poison"]=8813, + ["map_monsters_all_damage_can_shock"]=8814, + ["map_monsters_always_crit"]=8815, + ["map_monsters_always_hit"]=8816, + ["map_monsters_always_ignite"]=8817, + ["map_monsters_are_converted_on_kill"]=8818, + ["map_monsters_are_hexproof"]=2467, + ["map_monsters_are_immune_to_curses"]=2466, + ["map_monsters_area_of_effect_+%"]=2415, + ["map_monsters_attack_speed_+%"]=2430, + ["map_monsters_avoid_ailments_%"]=2420, + ["map_monsters_avoid_elemental_ailments_%"]=2421, + ["map_monsters_avoid_freeze_and_chill_%"]=2416, + ["map_monsters_avoid_ignite_%"]=2417, + ["map_monsters_avoid_poison_bleed_impale_%"]=8819, + ["map_monsters_avoid_shock_%"]=2418, + ["map_monsters_base_bleed_duration_+%"]=8820, + ["map_monsters_base_block_%"]=8821, + ["map_monsters_base_chance_to_freeze_%"]=8822, + ["map_monsters_base_chance_to_ignite_%"]=8823, + ["map_monsters_base_chance_to_shock_%"]=8824, + ["map_monsters_base_poison_duration_+%"]=8825, + ["map_monsters_base_self_critical_strike_multiplier_-%"]=3671, + ["map_monsters_base_spell_block_%"]=8826, + ["map_monsters_can_be_empowered_by_x_wildwood_wisps"]=8827, + ["map_monsters_cannot_be_leeched_from"]=2424, + ["map_monsters_cannot_be_stunned"]=2441, + ["map_monsters_cannot_be_taunted"]=8828, + ["map_monsters_cast_speed_+%"]=2431, + ["map_monsters_chance_to_blind_on_hit_%"]=8829, + ["map_monsters_chance_to_impale_%"]=8663, + ["map_monsters_chance_to_inflict_brittle_%"]=8830, + ["map_monsters_chance_to_inflict_sapped_%"]=8831, + ["map_monsters_chance_to_scorch_%"]=8832, + ["map_monsters_convert_all_physical_damage_to_fire"]=2464, + ["map_monsters_critical_strike_chance_+%"]=2422, + ["map_monsters_critical_strike_multiplier_+"]=2423, + ["map_monsters_curse_effect_+%"]=2468, + ["map_monsters_curse_effect_on_self_+%_final"]=8833, + ["map_monsters_damage_+%"]=2427, + ["map_monsters_damage_taken_+%"]=8834, + ["map_monsters_drop_ground_fire_on_death_base_radius"]=2465, + ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=8835, + ["map_monsters_energy_shield_leech_resistance_%"]=8836, + ["map_monsters_enrage_on_low_life"]=8837, + ["map_monsters_freeze_duration_+%"]=8838, + ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2453, + ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2450, + ["map_monsters_gain_x_power_charges_every_20_seconds"]=2456, + ["map_monsters_global_bleed_on_hit"]=8839, + ["map_monsters_global_poison_on_hit"]=8840, + ["map_monsters_have_onslaught"]=2428, + ["map_monsters_ignite_duration_+%"]=8841, + ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2459, + ["map_monsters_life_+%"]=2414, + ["map_monsters_life_leech_resistance_%"]=2425, + ["map_monsters_maim_on_hit_%_chance"]=8842, + ["map_monsters_mana_leech_resistance_%"]=2426, + ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=8843, + ["map_monsters_movement_speed_+%"]=2429, + ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=8844, + ["map_monsters_near_shrines_are_chilled"]=8845, + ["map_monsters_penetrate_elemental_resistances_%"]=8846, + ["map_monsters_petrification_for_X_seconds_on_hit"]=8388, + ["map_monsters_physical_damage_%_to_add_as_random_element"]=8849, + ["map_monsters_poison_on_hit"]=2442, + ["map_monsters_reduce_enemy_chaos_resistance_%"]=8850, + ["map_monsters_reduce_enemy_cold_resistance_%"]=8851, + ["map_monsters_reduce_enemy_fire_resistance_%"]=8852, + ["map_monsters_reduce_enemy_lightning_resistance_%"]=8853, + ["map_monsters_reflect_%_elemental_damage"]=2434, + ["map_monsters_reflect_%_physical_damage"]=2432, + ["map_monsters_reflect_curses"]=2462, + ["map_monsters_remove_%_of_mana_on_hit"]=8856, + ["map_monsters_remove_charges_on_hit_%"]=8854, + ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=8855, + ["map_monsters_shock_effect_+%"]=8857, + ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=8858, + ["map_monsters_spell_damage_%_suppressed"]=8859, + ["map_monsters_spell_suppression_chance_%"]=8860, + ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=8861, + ["map_monsters_steal_charges"]=8862, + ["map_monsters_summon_specific_monsters_on_death"]=8863, + ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=8864, + ["map_monsters_unaffected_by_curses"]=8865, + ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=8867, + ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=8868, + ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=8869, + ["map_monstrous_treasure_no_monsters"]=8870, + ["map_movement_velocity_+%_per_poison_stack"]=8871, + ["map_nemesis_dropped_items_+"]=8872, + ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=8873, + ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=8874, + ["map_no_experience_gain"]=8875, + ["map_no_magic_items_drop"]=8876, + ["map_no_rare_items_drop"]=8877, + ["map_no_refills_in_town"]=2366, + ["map_no_stashes"]=8878, + ["map_no_uniques_drop_randomly"]=8879, + ["map_no_vendors"]=8880, + ["map_non_unique_equipment_drops_as_sell_price"]=3101, + ["map_non_unique_items_drop_normal"]=8881, + ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=8882, + ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2393, + ["map_normal_items_drop_as_magic"]=8883, + ["map_normal_monster_life_regeneration_rate_per_minute_%"]=4351, + ["map_nuke_everything"]=8884, + ["map_num_additional_random_scarab_effects"]=8885, + ["map_num_extra_abysses"]=132, + ["map_num_extra_blights_"]=621, + ["map_num_extra_gloom_shrines"]=8886, + ["map_num_extra_harbingers"]=8887, + ["map_num_extra_invasion_bosses"]=2670, + ["map_num_extra_resonating_shrines"]=8888, + ["map_num_extra_shrines"]=2382, + ["map_num_extra_strongboxes"]=2390, + ["map_number_of_additional_mines_to_place"]=8889, + ["map_number_of_additional_mods"]=8890, + ["map_number_of_additional_prefixes"]=8891, + ["map_number_of_additional_silver_coin_drops"]=8892, + ["map_number_of_additional_suffixes"]=8893, + ["map_number_of_additional_totems_allowed"]=8895, + ["map_number_of_additional_traps_to_throw"]=8894, + ["map_number_of_harbinger_portals"]=108, + ["map_number_of_magic_packs_+%"]=2391, + ["map_number_of_rare_packs_+%"]=2392, + ["map_on_complete_drop_additional_conqueror_map"]=2474, + ["map_on_complete_drop_additional_elder_guardian_map"]=2475, + ["map_on_complete_drop_additional_shaper_guardian_map"]=2476, + ["map_on_complete_drop_x_additional_forbidden_tomes"]=8896, + ["map_on_complete_drop_x_additional_maps"]=8897, + ["map_on_complete_drop_x_additional_memory_lines"]=8898, + ["map_owner_sulphite_gained_+%"]=8899, + ["map_packs_are_abomination_monsters"]=8900, + ["map_packs_are_animals"]=2372, + ["map_packs_are_bandits"]=2370, + ["map_packs_are_blackguards"]=8901, + ["map_packs_are_bone_husks"]=8696, + ["map_packs_are_demons"]=2373, + ["map_packs_are_ghosts"]=8902, + ["map_packs_are_goatmen"]=2371, + ["map_packs_are_humanoids"]=2374, + ["map_packs_are_kitava"]=8903, + ["map_packs_are_kitava_heralds"]=8697, + ["map_packs_are_lunaris"]=8904, + ["map_packs_are_porcupines"]=8698, + ["map_packs_are_sea_witches_and_spawn"]=2375, + ["map_packs_are_skeletons"]=2369, + ["map_packs_are_solaris"]=8905, + ["map_packs_are_spiders"]=8906, + ["map_packs_are_str_mission_totems"]=2368, + ["map_packs_are_totems"]=2367, + ["map_packs_are_undead_and_necromancers"]=2376, + ["map_packs_are_vaal"]=8907, + ["map_packs_fire_projectiles"]=2377, + ["map_packs_have_detonate_dead_totems"]=8908, + ["map_packs_have_pop_up_traps"]=4343, + ["map_packs_have_uber_tentacle_fiends"]=8909, + ["map_perandus_guards_are_rare"]=8910, + ["map_perandus_monsters_drop_perandus_coin_stack_%"]=8911, + ["map_percent_increased_effect_of_atlas_passives"]=8912, + ["map_petrificiation_statue_ambush"]=8913, + ["map_player_accuracy_rating_+%_final"]=8914, + ["map_player_action_speed_+%_per_recent_skill_use"]=8915, + ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1148, + ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=8916, + ["map_player_base_aura_skills_affecting_allies_also_affect_enemies"]=8917, + ["map_player_base_chaos_damage_taken_per_minute"]=2394, + ["map_player_block_chance_%_in_hellscape"]=1149, + ["map_player_buff_time_passed_+%_only_buff_category"]=8918, + ["map_player_can_be_touched_by_tormented_spirits"]=8919, + ["map_player_cannot_block"]=8920, + ["map_player_cannot_block_attacks"]=8921, + ["map_player_cannot_block_spells"]=8922, + ["map_player_cannot_expose"]=2396, + ["map_player_cannot_recharge_energy_shield"]=8923, + ["map_player_cannot_suppress_spell_damage"]=8924, + ["map_player_chance_to_evade_attacks_%_in_hellscape"]=1150, + ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=8925, + ["map_player_charges_gained_+%"]=8926, + ["map_player_cooldown_speed_+%_final"]=8927, + ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=3253, + ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=8928, + ["map_player_curse_effect_on_self_+%"]=8929, + ["map_player_damage_+%_vs_breach_monsters"]=8930, + ["map_player_damage_taken_+%_vs_breach_monsters"]=8931, + ["map_player_damage_taken_+%_while_rampaging"]=8932, + ["map_player_damage_while_dead_+%"]=8933, + ["map_player_death_mark_on_rare_unique_kill_ms"]=8934, + ["map_player_disable_soul_gain_prevention"]=8935, + ["map_player_es_loss_per_second_in_hellscape"]=1151, + ["map_player_flask_effect_+%_final"]=8936, + ["map_player_flask_recovery_is_instant"]=8937, + ["map_player_global_defences_+%"]=8938, + ["map_player_has_blood_magic_keystone"]=2395, + ["map_player_has_chaos_inoculation_keystone"]=2397, + ["map_player_has_level_X_conductivity"]=2405, + ["map_player_has_level_X_despair"]=2406, + ["map_player_has_level_X_elemental_weakness"]=2401, + ["map_player_has_level_X_enfeeble"]=2399, + ["map_player_has_level_X_flammability"]=2403, + ["map_player_has_level_X_frostbite"]=2404, + ["map_player_has_level_X_punishment"]=2402, + ["map_player_has_level_X_silence"]=2407, + ["map_player_has_level_X_temporal_chains"]=2400, + ["map_player_has_level_X_vulnerability"]=2398, + ["map_player_has_random_level_X_curse_every_10_seconds"]=8939, + ["map_player_life_and_es_recovery_speed_+%_final"]=8940, + ["map_player_life_loss_per_second_in_hellscape"]=1152, + ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=8941, + ["map_player_lose_no_experience_on_death"]=8942, + ["map_player_maximum_leech_rate_+%"]=8943, + ["map_player_movement_speed_+%_final_in_hellscape"]=1153, + ["map_player_movement_velocity_+%"]=8944, + ["map_player_no_regeneration"]=2408, + ["map_player_non_curse_aura_effect_+%"]=8945, + ["map_player_onslaught_on_kill_%"]=8946, + ["map_player_periodically_affected_by_random_marks"]=8947, + ["map_player_projectile_damage_+%_final"]=2411, + ["map_player_shrine_buff_effect_on_self_+%"]=8948, + ["map_player_shrine_effect_duration_+%"]=8949, + ["map_player_spell_suppression_chance_%_in_hellscape"]=1154, + ["map_player_status_recovery_speed_+%"]=2410, + ["map_player_travel_skills_disabled"]=8950, + ["map_players_action_speed_+%_while_chilled"]=3647, + ["map_players_additional_number_of_projectiles"]=2436, + ["map_players_and_monsters_chaos_damage_taken_+%"]=8951, + ["map_players_and_monsters_cold_damage_taken_+%"]=8952, + ["map_players_and_monsters_critical_strike_chance_+%"]=8953, + ["map_players_and_monsters_curses_are_reflected"]=8954, + ["map_players_and_monsters_damage_+%_per_curse"]=8955, + ["map_players_and_monsters_damage_taken_+%_while_stationary"]=8956, + ["map_players_and_monsters_fire_damage_taken_+%"]=8957, + ["map_players_and_monsters_have_onslaught_if_hit_recently"]=8958, + ["map_players_and_monsters_have_resolute_technique"]=8959, + ["map_players_and_monsters_lightning_damage_taken_+%"]=8960, + ["map_players_and_monsters_movement_speed_+%"]=8961, + ["map_players_and_monsters_physical_damage_taken_+%"]=8962, + ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=8964, + ["map_players_armour_+%_final"]=8965, + ["map_players_block_chance_+%"]=8966, + ["map_players_cannot_gain_endurance_charges"]=8967, + ["map_players_cannot_gain_flask_charges"]=8968, + ["map_players_cannot_gain_frenzy_charges"]=8969, + ["map_players_cannot_gain_power_charges"]=8970, + ["map_players_cannot_take_reflected_damage"]=8971, + ["map_players_convert_all_physical_damage_to_fire"]=2412, + ["map_players_cost_+%_per_skill_used_recently"]=8972, + ["map_players_damage_+%_final_per_equipped_item"]=8973, + ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=8974, + ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=8975, + ["map_players_gain_instability_on_kill"]=8976, + ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=8977, + ["map_players_gain_onslaught_during_flask_effect"]=8978, + ["map_players_gain_rampage_stacks"]=2674, + ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=8979, + ["map_players_gain_rare_monster_mods_on_kill_ms"]=3484, + ["map_players_gain_soul_eater_on_rare_kill_ms"]=3486, + ["map_players_have_point_blank"]=8980, + ["map_players_have_shroud_walker"]=9043, + ["map_players_minion_damage_+%_final_per_equipped_item"]=8981, + ["map_players_movement_skills_cooldown_speed_+%"]=8982, + ["map_players_movement_speed_+%"]=8983, + ["map_players_no_regeneration_including_es"]=8984, + ["map_players_resist_all_%"]=8985, + ["map_players_skill_area_of_effect_+%_final"]=8987, + ["map_players_spell_damage_%_suppressed"]=8988, + ["map_portal_expires_every_X_seconds"]=8989, + ["map_portal_limit"]=8990, + ["map_portals_do_not_expire"]=8991, + ["map_portals_expire_on_death_instead"]=8992, + ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=8993, + ["map_possessed_monsters_drop_map_chance_%"]=8994, + ["map_possessed_monsters_drop_polished_scarab_chance_%"]=8995, + ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=8996, + ["map_possessed_monsters_drop_unique_chance_%"]=8997, + ["map_possessed_monsters_drop_winged_scarab_chance_%"]=8998, + ["map_prefixes_do_not_apply"]=8999, + ["map_projectile_speed_+%"]=2413, + ["map_quality_instead_applies_to_pack_size"]=9000, + ["map_rampage_time_+%"]=9001, + ["map_random_unique_monster_is_possessed"]=9003, + ["map_random_zana_mod"]=9004, + ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=9005, + ["map_rare_breach_monsters_drop_additional_shards"]=9006, + ["map_rare_monster_essence_daemon"]=9007, + ["map_rare_monster_fracture_on_death_chance_%"]=9008, + ["map_rare_monster_items_drop_corrupted_%"]=9009, + ["map_rare_monster_life_regeneration_rate_per_minute_%"]=4353, + ["map_rare_monster_num_additional_modifiers"]=9010, + ["map_rare_monster_volatile_on_death_%"]=9011, + ["map_rare_monsters_are_hindered"]=9012, + ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=9013, + ["map_rare_monsters_drop_x_additional_rare_items"]=9014, + ["map_rare_monsters_elemental_thorns_for_x_damage"]=2435, + ["map_rare_monsters_have_final_gasp"]=9015, + ["map_rare_monsters_have_inner_treasure"]=9016, + ["map_rare_monsters_physical_thorns_for_x_damage"]=2433, + ["map_rare_monsters_possessed_chance_%"]=9017, + ["map_rare_monsters_shaper_touched"]=9018, + ["map_rare_monsters_spawn_map_boss_on_death_chance_%"]=9019, + ["map_rare_unique_monsters_remove_%_life_mana_es_on_hit"]=9020, + ["map_rare_unique_monsters_spawn_tormented_spirit_on_low_life"]=9021, + ["map_reliquary_must_complete_abysses"]=134, + ["map_reliquary_must_complete_blights"]=623, + ["map_reliquary_must_complete_expedition"]=511, + ["map_reliquary_must_complete_incursions"]=121, + ["map_reliquary_must_complete_legions"]=1157, + ["map_reliquary_must_complete_rituals"]=552, + ["map_reliquary_must_complete_settlers_ore"]=9022, + ["map_reliquary_must_complete_strongboxes"]=8366, + ["map_reliquary_must_complete_ultimatum"]=527, + ["map_reliquary_must_complete_unstable_breaches"]=2667, + ["map_reliquary_must_open_heist_caches"]=227, + ["map_ritual_additional_reward_rerolls"]=9023, + ["map_ritual_cannot_recover_life_or_energy_shield_above_X_%"]=551, + ["map_ritual_number_of_free_rerolls"]=9024, + ["map_ritual_scarab_more_likely_%"]=10934, + ["map_ritual_tribute_+%"]=9025, + ["map_ritual_uber_rune_type_weighting_+%"]=9026, + ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=9027, + ["map_rogue_exile_drop_skill_gem_with_quality"]=9028, + ["map_rogue_exiles_are_doubled"]=9029, + ["map_rogue_exiles_are_doubled_chance_%"]=9030, + ["map_rogue_exiles_damage_+%"]=9031, + ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=9032, + ["map_rogue_exiles_drop_x_additional_jewels"]=9033, + ["map_rogue_exiles_dropped_items_are_corrupted"]=9034, + ["map_rogue_exiles_dropped_items_are_duplicated"]=9035, + ["map_rogue_exiles_dropped_items_are_fractured_chance_%"]=9036, + ["map_rogue_exiles_dropped_items_are_fully_linked"]=9037, + ["map_rogue_exiles_maximum_life_+%"]=9038, + ["map_runic_monster_damage_+%_final"]=510, + ["map_runic_monster_life_+%_final"]=509, + ["map_settlers_scarab_more_likely_%"]=10935, + ["map_shaper_rare_chance_+%"]=9039, + ["map_shrine_monster_life_+%_final"]=9040, + ["map_shrines_are_darkshrines"]=2383, + ["map_shrines_drop_x_currency_items_on_activation"]=9041, + ["map_shrines_grant_a_random_additional_effect"]=9042, + ["map_simulacrum_reward_level_+"]=9044, + ["map_size_+%"]=2324, + ["map_solo_mode"]=9045, + ["map_spawn_X_additional_incursion_architects"]=9046, + ["map_spawn_abysses"]=9047, + ["map_spawn_additional_empowered_vaal_chests"]=9048, + ["map_spawn_affliction_mirror"]=9049, + ["map_spawn_bestiary_encounters"]=9050, + ["map_spawn_betrayals"]=2664, + ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=9051, + ["map_spawn_cadiro_%_chance"]=9052, + ["map_spawn_exile_per_area_%"]=2661, + ["map_spawn_extra_exiles"]=2380, + ["map_spawn_extra_perandus_chests"]=9053, + ["map_spawn_extra_talismans"]=2387, + ["map_spawn_extra_torment_spirits"]=2389, + ["map_spawn_extra_warbands"]=2381, + ["map_spawn_harbingers"]=2384, + ["map_spawn_heist_smugglers_cache"]=225, + ["map_spawn_incursion_encounters"]=9054, + ["map_spawn_perandus_chests"]=2386, + ["map_spawn_settlers_ore"]=9055, + ["map_spawn_talismans"]=2385, + ["map_spawn_tormented_spirits"]=2671, + ["map_spawn_two_bosses"]=2470, + ["map_spawn_x_additional_heist_smugglers_caches"]=9056, + ["map_spawn_x_random_map_bosses"]=9057, + ["map_storm_area_of_effect_+%"]=9058, + ["map_strongbox_chain_length"]=125, + ["map_strongbox_items_dropped_are_mirrored"]=9059, + ["map_strongbox_monsters_attack_speed_+%"]=9060, + ["map_strongbox_monsters_damage_+%"]=181, + ["map_strongbox_monsters_item_quantity_+%"]=9061, + ["map_strongbox_monsters_life_+%"]=174, + ["map_strongbox_scarab_more_likely_%"]=10936, + ["map_strongboxes_additional_pack_chance_%"]=167, + ["map_strongboxes_are_corrupted"]=9062, + ["map_strongboxes_at_least_rare"]=9063, + ["map_strongboxes_chance_to_be_unique_+%"]=9064, + ["map_strongboxes_drop_x_additional_rare_items"]=9065, + ["map_strongboxes_minimum_rarity"]=9066, + ["map_strongboxes_vaal_orb_drop_chance_%"]=8746, + ["map_suffixes_do_not_apply"]=9067, + ["map_supporter_al_hezmin_spawn_daemon"]=8379, + ["map_supporter_all_influence_packs"]=9068, + ["map_supporter_all_spawn_daemon"]=8380, + ["map_supporter_atziri_spawn_daemon"]=8381, + ["map_supporter_baran_spawn_daemon"]=8382, + ["map_supporter_comet_spawn_daemon"]=9069, + ["map_supporter_curse_field_daemon_spawn"]=9070, + ["map_supporter_dangerous_area"]=9002, + ["map_supporter_drox_daemon"]=8383, + ["map_supporter_heist_cache"]=226, + ["map_supporter_maddening_tentacle_daemon_spawn"]=8761, + ["map_supporter_maven_follower"]=9071, + ["map_supporter_players_random_movement_velocity_+%_final_when_hit"]=9072, + ["map_supporter_players_sent_to_void_league_on_death"]=8986, + ["map_supporter_ruin_ghost_daemon_spawn"]=523, + ["map_supporter_sirus_spawn_daemon"]=8386, + ["map_supporter_uber_elder_spawn_daemon"]=8384, + ["map_supporter_uber_shaper_spawn_daemon"]=8385, + ["map_supporter_union_of_souls"]=9194, + ["map_supporter_veritania_spawn_daemon"]=8387, + ["map_supporter_volatile_on_death_chance_%"]=8866, + ["map_supporter_volatile_on_death_chance_legion"]=1155, + ["map_synthesis_league"]=9073, + ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=9074, + ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=9075, + ["map_synthesis_spawn_additional_fungal_chest_clusters"]=9076, + ["map_synthesis_spawn_additional_magic_ambush_chest"]=9077, + ["map_synthesis_spawn_additional_normal_ambush_chest"]=9078, + ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=9079, + ["map_synthesis_spawn_additional_rare_ambush_chest"]=9080, + ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=9081, + ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=9082, + ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=9083, + ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=9084, + ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=9085, + ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=9086, + ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=9087, + ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=9088, + ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=9089, + ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=9090, + ["map_synthesised_magic_monster_drop_additional_currency"]=9091, + ["map_synthesised_magic_monster_drop_additional_currency_shard"]=9092, + ["map_synthesised_magic_monster_drop_additional_quality_currency"]=9093, + ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=9094, + ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=9095, + ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=9096, + ["map_synthesised_magic_monster_items_drop_corrupted_%"]=9097, + ["map_synthesised_magic_monster_map_drop_chance_+%"]=9098, + ["map_synthesised_magic_monster_slain_experience_+%"]=9099, + ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=9100, + ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=9101, + ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=9102, + ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=9103, + ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=9104, + ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=9105, + ["map_synthesised_monster_additional_fossil_drop_chance_%"]=9106, + ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=9107, + ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=9108, + ["map_synthesised_monster_dropped_item_quantity_+%"]=9109, + ["map_synthesised_monster_dropped_item_rarity_+%"]=9110, + ["map_synthesised_monster_fractured_item_drop_chance_+%"]=9111, + ["map_synthesised_monster_items_drop_corrupted_%"]=9112, + ["map_synthesised_monster_map_drop_chance_+%"]=9113, + ["map_synthesised_monster_pack_size_+%"]=9114, + ["map_synthesised_monster_slain_experience_+%"]=9115, + ["map_synthesised_monster_unique_item_drop_chance_+%"]=9116, + ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=9117, + ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=9118, + ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=9119, + ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=9120, + ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=9121, + ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=9122, + ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=9123, + ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=9124, + ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=9125, + ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=9126, + ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=9127, + ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=9128, + ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=9129, + ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=9130, + ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=9131, + ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=9132, + ["map_synthesised_rare_monster_drop_additional_currency"]=9133, + ["map_synthesised_rare_monster_drop_additional_currency_shard"]=9134, + ["map_synthesised_rare_monster_drop_additional_quality_currency"]=9135, + ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=9136, + ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=9137, + ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=9138, + ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=9139, + ["map_synthesised_rare_monster_items_drop_corrupted_%"]=9140, + ["map_synthesised_rare_monster_map_drop_chance_+%"]=9141, + ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=9142, + ["map_synthesised_rare_monster_slain_experience_+%"]=9143, + ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=9144, + ["map_talismans_dropped_as_rare"]=9145, + ["map_talismans_higher_tier"]=9146, + ["map_tempest_area_of_effect_+%_visible"]=9147, + ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2363, + ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2359, ["map_tempest_display_prefix"]=30, ["map_tempest_display_suffix"]=31, - ["map_tempest_frequency_+%"]=9028, - ["map_tempest_ground_ice"]=2337, - ["map_tempest_ground_lightning"]=2338, - ["map_tempest_ground_tar_movement_speed_+%"]=2339, - ["map_torment_scarab_more_likely_%"]=10774, - ["map_tormented_spirits_drop_x_additional_rare_items"]=9029, - ["map_tormented_spirits_duration_+%"]=9030, - ["map_tormented_spirits_movement_speed_+%"]=9031, - ["map_tormented_spirits_possess_players_instead_of_monsters"]=9032, - ["map_trialmaster_drops_stack_of_catalysts"]=9033, - ["map_uber_drowning_orb_ambush"]=9034, - ["map_uber_map_additional_synthesis_boss"]=9035, - ["map_uber_map_player_damage_cycle"]=9036, - ["map_uber_sawblades_ambush"]=9037, - ["map_uber_sirus_meteor_ambush"]=9038, - ["map_ultimatum_conquer_encounter_chance_+%"]=9039, - ["map_ultimatum_conquer_encounter_radius_+%"]=9040, - ["map_ultimatum_defense_encounter_altar_life_+%"]=9042, - ["map_ultimatum_defense_encounter_chance_+%"]=9041, - ["map_ultimatum_encounter_additional_chance_%"]=9043, - ["map_ultimatum_exterminate_encounter_chance_+%"]=9044, - ["map_ultimatum_exterminate_encounter_monsters_required_+%"]=9045, - ["map_ultimatum_lasts_13_rounds"]=9046, - ["map_ultimatum_modifiers_are_chosen_for_you"]=515, - ["map_ultimatum_modifiers_start_1_tier_higher"]=9047, - ["map_ultimatum_monster_experience_+%"]=9048, - ["map_ultimatum_monster_quantity_+%"]=9049, - ["map_ultimatum_rare_monster_quantity_+%"]=9050, - ["map_ultimatum_reward_abyss_chance_+%"]=9051, - ["map_ultimatum_reward_blight_chance_+%"]=9052, - ["map_ultimatum_reward_breach_chance_+%"]=9053, - ["map_ultimatum_reward_catalyst_chance_+%"]=9054, - ["map_ultimatum_reward_corrupted_rares_chance_+%"]=9055, - ["map_ultimatum_reward_currency_items_chance_+%"]=9056, - ["map_ultimatum_reward_delirium_chance_+%"]=9057, - ["map_ultimatum_reward_divination_cards_chance_+%"]=9058, - ["map_ultimatum_reward_duplicated_chance_%"]=9059, - ["map_ultimatum_reward_essence_chance_+%"]=9060, - ["map_ultimatum_reward_fossils_chance_+%"]=9061, - ["map_ultimatum_reward_fragments_chance_+%"]=9062, - ["map_ultimatum_reward_gem_chance_+%"]=9063, - ["map_ultimatum_reward_heist_chance_+%"]=9064, - ["map_ultimatum_reward_inscribed_ultimatums_chance_+%"]=9065, - ["map_ultimatum_reward_jewellery_chance_+%"]=9066, - ["map_ultimatum_reward_legion_chance_+%"]=9067, - ["map_ultimatum_reward_maps_chance_+%"]=9068, - ["map_ultimatum_reward_tiers_+"]=9069, - ["map_ultimatum_reward_unique_items_chance_+%"]=9070, - ["map_ultimatum_scarab_more_likely_%"]=10775, - ["map_ultimatum_survival_encounter_chance_+%"]=9071, - ["map_ultimatum_survival_encounter_time_+%"]=9072, - ["map_ultimatum_trialmaster_cannot_spawn"]=9073, - ["map_unique_boss_drops_divination_cards"]=9075, - ["map_unique_item_drop_chance_+%"]=9076, - ["map_unique_monster_items_drop_corrupted_%"]=9079, - ["map_unique_monsters_drop_corrupted_items"]=9077, - ["map_unique_monsters_have_X_shrine_effects"]=9078, - ["map_unique_side_area_return_portal_leads_to_new_unique_side_area_chance_%"]=9080, - ["map_uniques_scarab_more_likely_%"]=10776, - ["map_unstable_breach_spawns_boss"]=2642, - ["map_upgrade_X_packs_to_magic"]=9081, - ["map_upgrade_pack_to_magic_%_chance"]=9082, - ["map_upgrade_pack_to_rare_%_chance"]=9083, - ["map_upgrade_synthesised_pack_to_magic_%_chance"]=9084, - ["map_upgrade_synthesised_pack_to_rare_%_chance"]=9085, - ["map_vaal_monster_items_drop_corrupted_%"]=9086, - ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=9087, - ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=9088, - ["map_vaal_side_area_boss_damage_+%_final"]=9089, - ["map_vaal_side_area_boss_maximum_life_+%_final"]=9090, - ["map_vaal_side_area_chance_%"]=9091, - ["map_vaal_side_area_vaal_vessel_%_chance_to_duplicate_rewards"]=9092, - ["map_vaal_temple_spawn_additional_vaal_vessels"]=9093, - ["map_vaal_vessel_drop_X_divination_cards"]=9094, - ["map_vaal_vessel_drop_X_fossils"]=9095, - ["map_vaal_vessel_drop_X_level_21_gems"]=9096, - ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=9097, - ["map_vaal_vessel_drop_X_maps_with_vaal_implicits"]=9098, - ["map_vaal_vessel_drop_X_mortal_fragments"]=9099, - ["map_vaal_vessel_drop_X_prophecies"]=9100, - ["map_vaal_vessel_drop_X_quality_23_gems"]=9101, - ["map_vaal_vessel_drop_X_rare_temple_items"]=9102, - ["map_vaal_vessel_drop_X_sacrifice_fragments"]=9103, - ["map_vaal_vessel_drop_X_tower_of_ordeals"]=9104, - ["map_vaal_vessel_drop_X_trialmaster_fragments"]=9105, - ["map_vaal_vessel_drop_X_vaal_gems"]=9106, - ["map_vaal_vessel_drop_X_vaal_orbs"]=9107, - ["map_vaal_vessel_drop_X_vaal_temple_maps"]=9108, - ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=9109, - ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=9110, - ["map_vaal_vessel_item_drop_quantity_+%"]=9111, - ["map_vaal_vessel_item_drop_rarity_+%"]=9112, - ["map_village_secondary_ore_chance_+%"]=9113, - ["map_warbands_packs_have_additional_elites"]=9114, - ["map_warbands_packs_have_additional_grunts"]=9115, - ["map_warbands_packs_have_additional_supports"]=9116, - ["map_watchstone_additional_packs_of_elder_monsters"]=9117, - ["map_watchstone_additional_packs_of_shaper_monsters"]=9118, - ["map_watchstone_monsters_damage_+%_final"]=9119, - ["map_watchstone_monsters_life_+%_final"]=9120, - ["map_weapon_and_shields_drop_corrupted_with_implicit_%_chance"]=172, - ["map_weapon_and_shields_drop_fractured_%_chance"]=173, - ["map_weapon_and_shields_drop_fully_linked_%_chance"]=174, - ["map_weapon_and_shields_drop_fully_socketed_%_chance"]=175, - ["map_weapons_drop_animated"]=3069, - ["map_zana_influence"]=9121, - ["map_zana_influence_additional_petal_skill_chance_%"]=9122, - ["map_zana_influence_equipment_item_chance_+%"]=9123, - ["map_zana_influence_number_of_influenced_magic_packs_+%"]=9124, - ["map_zana_influence_number_of_influenced_rare_packs_+%"]=9125, - ["map_zana_influence_pack_+"]=9126, - ["marauder_hidden_ascendancy_damage_+%_final"]=9127, - ["marauder_hidden_ascendancy_damage_taken_+%_final"]=9128, - ["mark_skill_cast_speed_+%"]=2240, - ["mark_skill_duration_+%"]=9129, - ["mark_skill_mana_cost_+%"]=9130, - ["mark_skills_cost_no_mana"]=9131, - ["mark_skills_curse_effect_+%"]=2622, - ["mark_skills_curse_effect_+%_while_affected_by_elusive"]=9132, - ["marked_enemies_cannot_deal_critical_strikes"]=9133, - ["marked_enemies_cannot_evade"]=9134, - ["marked_enemies_cannot_regenerate_life"]=9135, - ["marked_enemy_accuracy_rating_+%"]=9136, - ["marked_enemy_damage_taken_+%"]=9137, - ["marks_you_inflict_remain_after_death"]=9138, - ["mastery_chance_to_evade_melee_attacks_+%_final"]=9139, - ["mastery_extra_damage_taken_from_suppressed_crit_+%_final"]=1537, - ["maven_fight_layout_override"]=9140, - ["max_adaptations_+"]=1560, - ["max_attack_added_chaos_damage_per_100_mana"]=1413, - ["max_chance_to_block_attacks_if_not_blocked_recently"]=9141, - ["max_charged_attack_stacks"]=4244, - ["max_endurance_charges"]=1828, - ["max_endurance_charges_if_6_warlord_items"]=4516, - ["max_fortification_+1_per_5"]=9142, - ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=10743, - ["max_fortification_while_focused_+1_per_5"]=9143, - ["max_fortification_while_stationary_+1_per_5"]=9144, - ["max_frenzy_charges"]=1833, - ["max_frenzy_charges_if_6_redeemer_items"]=4517, - ["max_power_charges"]=1838, - ["max_power_charges_if_6_crusader_items"]=4518, - ["max_steel_ammo"]=9145, - ["maximum_2_of_same_totem"]=2281, - ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1841, - ["maximum_active_sand_mirage_count"]=9146, - ["maximum_added_chaos_damage_if_have_crit_recently"]=9249, - ["maximum_added_chaos_damage_per_curse_on_enemy"]=9250, - ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=9251, - ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=9252, - ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=9253, - ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=9254, - ["maximum_added_cold_damage_if_have_crit_recently"]=9255, - ["maximum_added_cold_damage_per_frenzy_charge"]=4297, - ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=9256, - ["maximum_added_cold_damage_vs_chilled_enemies"]=9257, - ["maximum_added_cold_damage_while_affected_by_hatred"]=9258, - ["maximum_added_cold_damage_while_you_have_avians_might"]=9259, - ["maximum_added_fire_attack_damage_per_active_buff"]=1297, - ["maximum_added_fire_damage_if_blocked_recently"]=4299, - ["maximum_added_fire_damage_if_have_crit_recently"]=9260, - ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=9261, - ["maximum_added_fire_damage_per_active_buff"]=1299, - ["maximum_added_fire_damage_per_endurance_charge"]=9262, - ["maximum_added_fire_damage_to_attacks_per_1%_light_radius"]=9263, - ["maximum_added_fire_damage_to_attacks_per_10_strength"]=9264, - ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=9265, - ["maximum_added_fire_damage_vs_ignited_enemies"]=1296, - ["maximum_added_fire_spell_damage_per_active_buff"]=1298, - ["maximum_added_lightning_damage_if_have_crit_recently"]=9266, - ["maximum_added_lightning_damage_per_10_int"]=9147, - ["maximum_added_lightning_damage_per_power_charge"]=9267, - ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=9268, - ["maximum_added_lightning_damage_to_attacks_per_10_intelligence"]=9269, - ["maximum_added_lightning_damage_to_spells_per_power_charge"]=9270, - ["maximum_added_lightning_damage_while_you_have_avians_might"]=9271, - ["maximum_added_physical_damage_if_have_crit_recently"]=9272, - ["maximum_added_physical_damage_per_endurance_charge"]=9273, - ["maximum_added_physical_damage_per_impaled_on_enemy"]=9274, - ["maximum_added_physical_damage_vs_bleeding_enemies"]=2518, - ["maximum_added_physical_damage_vs_frozen_enemies"]=1295, - ["maximum_added_physical_damage_vs_poisoned_enemies"]=9275, - ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=9276, - ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=9277, - ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=9278, - ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1836, - ["maximum_arrow_fire_damage_added_for_each_pierce"]=4803, - ["maximum_attack_damage_+%_final_from_ascendancy"]=9148, - ["maximum_blitz_charges"]=9149, - ["maximum_block_%"]=2012, - ["maximum_block_%_if_4_elder_items"]=4500, - ["maximum_blood_phylactery_%_of_life"]=9150, - ["maximum_blood_scythe_charges"]=4379, - ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1831, - ["maximum_celestial_charges"]=9151, - ["maximum_challenger_charges"]=9152, - ["maximum_chaos_damage_to_return_to_melee_attacker"]=2225, - ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=9153, - ["maximum_cold_damage_to_return_to_melee_attacker"]=2223, - ["maximum_critical_strike_chance"]=2771, - ["maximum_critical_strike_chance_is_50%"]=9154, - ["maximum_divine_charges"]=4411, - ["maximum_endurance_charges_+_while_affected_by_determination"]=9155, - ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1829, - ["maximum_endurance_frenzy_power_charges_is_0"]=9156, - ["maximum_energy_shield_%_lost_on_kill"]=1780, - ["maximum_energy_shield_+%"]=1585, - ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1613, - ["maximum_energy_shield_+_if_no_defence_modifiers_on_equipment_except_body_armour"]=9157, - ["maximum_energy_shield_+_per_100_life_reserved"]=1590, - ["maximum_energy_shield_+_per_5_armour_on_shield"]=4401, - ["maximum_energy_shield_+_per_5_strength"]=3801, - ["maximum_energy_shield_+_per_X_body_armour_evasion_rating"]=1591, - ["maximum_energy_shield_from_body_armour_+%"]=9158, - ["maximum_energy_shield_increased_by_spell_block_chance"]=9159, - ["maximum_energy_shield_is_x%_of_maximum_life"]=9160, - ["maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield"]=1753, - ["maximum_energy_shield_leech_amount_per_leech_+%"]=1750, - ["maximum_energy_shield_leech_amount_per_leech_is_doubled"]=9161, - ["maximum_energy_shield_leech_rate_%_per_minute"]=1752, - ["maximum_energy_shield_leech_rate_+%"]=1758, - ["maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry"]=1759, - ["maximum_es_+%_per_equipped_corrupted_item"]=3122, - ["maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry"]=1760, - ["maximum_es_per_honoured_soul_tattoo_allocated"]=9162, - ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=3047, - ["maximum_fanaticism_charges"]=9163, - ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=9164, - ["maximum_fire_damage_to_return_to_melee_attacker"]=2222, - ["maximum_frenzy_charges_+_while_affected_by_grace"]=9165, - ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1834, - ["maximum_frenzy_power_endurance_charges"]=9166, - ["maximum_intensify_stacks"]=9167, - ["maximum_leech_rate_+%"]=9168, - ["maximum_life_%_lost_on_kill"]=1778, - ["maximum_life_%_to_add_as_maximum_armour"]=9184, - ["maximum_life_%_to_add_as_maximum_energy_shield"]=9185, - ["maximum_life_%_to_add_as_maximum_energy_shield_with_no_corrupted_equipped_items"]=9169, - ["maximum_life_%_to_convert_to_maximum_energy_shield"]=9186, - ["maximum_life_+%"]=1595, - ["maximum_life_+%_and_fire_resistance_-%"]=1611, - ["maximum_life_+%_for_corpses_you_create"]=9187, - ["maximum_life_+%_if_2_elder_items"]=4477, - ["maximum_life_+%_if_no_life_tags_on_body_armour"]=9188, - ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=9189, - ["maximum_life_+%_per_alive_packmate"]=9170, - ["maximum_life_+%_per_equipped_corrupted_item"]=3121, - ["maximum_life_+%_per_red_socket_on_staff"]=9171, - ["maximum_life_+%_per_stackable_unique_jewel"]=4186, - ["maximum_life_+%_to_grant_packmate_on_death"]=9172, - ["maximum_life_+%_while_no_gems_in_gloves"]=9173, - ["maximum_life_+_if_no_life_modifiers_on_equipment_except_body_armour"]=9174, - ["maximum_life_+_per_empty_red_socket"]=4457, - ["maximum_life_leech_amount_per_leech_%_max_life"]=9176, - ["maximum_life_leech_amount_per_leech_+%"]=1748, - ["maximum_life_leech_amount_per_leech_+%_per_5%_life_reserved"]=9175, - ["maximum_life_leech_rate_%_per_minute"]=1751, - ["maximum_life_leech_rate_%_per_minute_is_doubled"]=9177, - ["maximum_life_leech_rate_+%"]=1755, - ["maximum_life_leech_rate_+%_if_crit_recently"]=9178, - ["maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently"]=9179, - ["maximum_life_leech_rate_+1%_per_12_stat_value"]=1756, - ["maximum_life_mana_and_energy_shield_+%"]=1594, - ["maximum_life_per_10_dexterity"]=9180, - ["maximum_life_per_10_intelligence"]=9181, - ["maximum_life_per_10_levels"]=2785, - ["maximum_life_per_2%_increased_item_found_rarity"]=9182, - ["maximum_life_per_equipped_elder_item"]=4352, - ["maximum_life_per_honoured_heart_tattoo_allocated"]=9183, - ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=3046, - ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=9190, - ["maximum_lightning_damage_to_return_on_block"]=2611, - ["maximum_lightning_damage_to_return_to_melee_attacker"]=2224, - ["maximum_mana_%_gained_on_kill"]=1779, - ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=9195, - ["maximum_mana_+%"]=1604, - ["maximum_mana_+%_and_cold_resistance_-%"]=1612, - ["maximum_mana_+%_if_2_shaper_items"]=4478, - ["maximum_mana_+%_per_2%_spell_block_chance"]=3609, - ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=9197, - ["maximum_mana_+%_per_blue_socket_on_staff"]=9191, - ["maximum_mana_+1%_per_X_strength_when_in_main_hand_from_foulborn_doon_cuebiyari"]=9192, - ["maximum_mana_+_per_2_intelligence"]=9196, - ["maximum_mana_+_per_empty_blue_socket"]=4459, - ["maximum_mana_leech_amount_per_leech_%_max_mana"]=9193, - ["maximum_mana_leech_amount_per_leech_+%"]=1749, - ["maximum_mana_leech_rate_%_per_minute"]=1754, - ["maximum_mana_leech_rate_+%"]=1757, - ["maximum_mana_per_honoured_mind_tattoo_allocated"]=9194, - ["maximum_number_of_X_minion_type_doubled"]=9198, - ["maximum_number_of_blades_left_in_ground"]=9199, - ["maximum_number_of_projectiles_to_fire_is_1"]=183, - ["maximum_number_of_raised_spectres_is_x"]=9200, - ["maximum_physical_attack_damage_+%_final"]=9201, - ["maximum_physical_damage_reduction_%"]=1562, - ["maximum_physical_damage_to_reflect_to_self_on_attack"]=2220, - ["maximum_physical_damage_to_return_on_block"]=2610, - ["maximum_physical_damage_to_return_to_melee_attacker"]=2221, - ["maximum_power_and_endurance_charges_+"]=9202, - ["maximum_power_and_frenzy_charges_+"]=1839, - ["maximum_power_charges_+_while_affected_by_discipline"]=9203, - ["maximum_rage"]=9810, - ["maximum_rage_is_halved"]=9204, - ["maximum_rage_per_equipped_one_handed_sword"]=9205, - ["maximum_random_movement_velocity_+%_when_hit"]=9287, - ["maximum_siphoning_charges_per_elder_or_shaper_item_equipped"]=4359, - ["maximum_spell_block_chance_per_50_strength"]=2014, - ["maximum_spirit_charges_per_abyss_jewel_equipped"]=4404, - ["maximum_total_life_recovery_per_second_from_leech_+%_while_at_max_rage"]=9206, - ["maximum_total_life_recovery_per_second_from_leech_+%_while_have_defiance"]=4310, - ["maximum_unarmed_added_chaos_damage_for_each_poison_on_target"]=10511, - ["maximum_virulence_stacks"]=9207, - ["maximum_void_arrows"]=4380, - ["melee_ancestor_totem_damage_+%"]=3650, - ["melee_ancestor_totem_elemental_resistance_%"]=4139, - ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3826, - ["melee_ancestor_totem_placement_speed_+%"]=3997, - ["melee_attack_critical_strike_chance_against_enemies_that_are_excommunicated_%"]=9208, - ["melee_attack_number_of_spirit_strikes"]=9209, - ["melee_attack_speed_+%"]=1438, - ["melee_attacks_usable_without_life_cost"]=9210, - ["melee_attacks_usable_without_mana_cost"]=3019, - ["melee_cold_damage_+%"]=2007, - ["melee_cold_damage_+%_while_fortify_is_active"]=2293, - ["melee_cold_damage_+%_while_holding_shield"]=2010, - ["melee_critical_strike_chance_+%"]=1503, - ["melee_critical_strike_chance_+%_if_warcried_recently"]=9211, - ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=9212, - ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1528, - ["melee_damage_+%"]=1258, - ["melee_damage_+%_at_close_range"]=9214, - ["melee_damage_+%_during_flask_effect"]=9215, - ["melee_damage_+%_per_20_intelligence"]=9213, - ["melee_damage_+%_per_endurance_charge"]=4199, - ["melee_damage_+%_per_second_of_warcry_affecting_you"]=9216, - ["melee_damage_+%_vs_burning_enemies"]=1263, - ["melee_damage_+%_vs_frozen_enemies"]=1259, - ["melee_damage_+%_vs_shocked_enemies"]=1261, - ["melee_damage_+%_when_on_full_life"]=2662, - ["melee_damage_+%_while_fortified"]=4275, - ["melee_damage_taken_%_to_deal_to_attacker"]=2731, - ["melee_damage_taken_+%"]=2772, - ["melee_damage_vs_bleeding_enemies_+%"]=2516, - ["melee_fire_damage_+%"]=2006, - ["melee_fire_damage_+%_while_holding_shield"]=2009, - ["melee_hits_cannot_be_evaded_while_wielding_sword"]=9217, - ["melee_hits_grant_rampage_stacks"]=10790, - ["melee_knockback"]=9218, - ["melee_movement_skill_chance_to_fortify_on_hit_%"]=9219, - ["melee_physical_damage_+%"]=2005, - ["melee_physical_damage_+%_per_10_dexterity"]=9220, - ["melee_physical_damage_+%_per_10_strength_while_fortified"]=9221, - ["melee_physical_damage_+%_vs_ignited_enemies"]=4326, - ["melee_physical_damage_+%_while_fortify_is_active"]=2294, - ["melee_physical_damage_+%_while_holding_shield"]=2008, - ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2481, - ["melee_range_+"]=2558, - ["melee_range_+_while_at_least_5_enemies_nearby"]=9222, - ["melee_range_+_while_dual_wielding"]=9224, - ["melee_range_+_while_unarmed"]=3103, - ["melee_range_+_while_wielding_shield"]=9223, - ["melee_range_+_with_axe"]=9225, - ["melee_range_+_with_claw"]=9226, - ["melee_range_+_with_dagger"]=9227, - ["melee_range_+_with_mace"]=9228, - ["melee_range_+_with_one_handed"]=9229, - ["melee_range_+_with_staff"]=9230, - ["melee_range_+_with_sword"]=9231, - ["melee_range_+_with_two_handed"]=9232, - ["melee_skill_gem_level_+"]=9233, - ["melee_skills_area_of_effect_+%"]=9234, - ["melee_splash"]=1192, - ["melee_splash_while_wielding_mace"]=9235, - ["melee_strike_skill_strike_previous_location"]=9236, - ["melee_weapon_ailment_damage_+%"]=1312, - ["melee_weapon_critical_strike_multiplier_+"]=1526, - ["melee_weapon_hit_and_ailment_damage_+%"]=1308, - ["melee_weapon_range_+_if_you_have_killed_recently"]=9237, - ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=9238, - ["melee_weapon_range_+_while_fortified"]=9239, - ["memory_line_abyss_scourge_spawn_boss_chance_%"]=123, - ["memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete"]=141, - ["memory_line_big_harvest"]=124, - ["memory_line_breach_boss_spawn_chance_%"]=142, - ["memory_line_breach_covers_map"]=105, - ["memory_line_essence_monster_number_of_essences"]=125, - ["memory_line_has_penalty"]=9240, - ["memory_line_maximum_possessions_of_rare_unique_monsters"]=106, - ["memory_line_minimum_possessions_of_rare_unique_monsters"]=106, - ["memory_line_num_harvest_plots"]=107, - ["memory_line_number_of_abyss_scourge_cracks"]=108, - ["memory_line_number_of_breaches"]=109, - ["memory_line_number_of_essences"]=110, - ["memory_line_number_of_excursions"]=111, - ["memory_line_number_of_large_breach_chests"]=126, - ["memory_line_number_of_pantheon_shrines"]=4320, - ["memory_line_number_of_shrines"]=4319, - ["memory_line_number_of_strongboxes"]=112, - ["memory_line_player_is_harbinger"]=113, - ["memory_line_strongboxes_chance_to_be_operatives_%"]=143, - ["min_attack_added_chaos_damage_per_100_mana"]=1413, - ["mine_%_chance_to_detonate_twice"]=9246, - ["mine_area_damage_+%_if_detonated_mine_recently"]=9241, - ["mine_area_of_effect_+%"]=9242, - ["mine_area_of_effect_+%_if_detonated_mine_recently"]=9243, - ["mine_arming_speed_+%"]=4253, - ["mine_aura_effect_+%"]=9244, - ["mine_critical_strike_chance_+%"]=1499, - ["mine_critical_strike_multiplier_+"]=1530, - ["mine_damage_+%"]=1220, - ["mine_damage_leeched_as_life_to_you_permyriad"]=4260, - ["mine_damage_penetrates_%_elemental_resistance"]=2807, - ["mine_detonation_is_instant"]=2805, - ["mine_detonation_radius_+%"]=1950, - ["mine_detonation_speed_+%"]=9245, - ["mine_duration_+%"]=1948, - ["mine_extra_uses"]=3057, - ["mine_laying_speed_+%"]=1952, - ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3500, - ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=9247, - ["mines_invulnerable"]=9248, - ["mines_invulnerable_for_duration_ms"]=2810, - ["minimum_added_chaos_damage_if_have_crit_recently"]=9249, - ["minimum_added_chaos_damage_per_curse_on_enemy"]=9250, - ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=9251, - ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=9252, - ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=9253, - ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=9254, - ["minimum_added_cold_damage_if_have_crit_recently"]=9255, - ["minimum_added_cold_damage_per_frenzy_charge"]=4297, - ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=9256, - ["minimum_added_cold_damage_vs_chilled_enemies"]=9257, - ["minimum_added_cold_damage_while_affected_by_hatred"]=9258, - ["minimum_added_cold_damage_while_you_have_avians_might"]=9259, - ["minimum_added_fire_attack_damage_per_active_buff"]=1297, - ["minimum_added_fire_damage_if_blocked_recently"]=4299, - ["minimum_added_fire_damage_if_have_crit_recently"]=9260, - ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=9261, - ["minimum_added_fire_damage_per_active_buff"]=1299, - ["minimum_added_fire_damage_per_endurance_charge"]=9262, - ["minimum_added_fire_damage_to_attacks_per_1%_light_radius"]=9263, - ["minimum_added_fire_damage_to_attacks_per_10_strength"]=9264, - ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=9265, - ["minimum_added_fire_damage_vs_ignited_enemies"]=1296, - ["minimum_added_fire_spell_damage_per_active_buff"]=1298, - ["minimum_added_lightning_damage_if_have_crit_recently"]=9266, - ["minimum_added_lightning_damage_per_power_charge"]=9267, - ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=9268, - ["minimum_added_lightning_damage_to_attacks_per_10_intelligence"]=9269, - ["minimum_added_lightning_damage_to_spells_per_power_charge"]=9270, - ["minimum_added_lightning_damage_while_you_have_avians_might"]=9271, - ["minimum_added_physical_damage_if_have_crit_recently"]=9272, - ["minimum_added_physical_damage_per_endurance_charge"]=9273, - ["minimum_added_physical_damage_per_impaled_on_enemy"]=9274, - ["minimum_added_physical_damage_vs_bleeding_enemies"]=2518, - ["minimum_added_physical_damage_vs_frozen_enemies"]=1295, - ["minimum_added_physical_damage_vs_poisoned_enemies"]=9275, - ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=9276, - ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=9277, - ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=9278, - ["minimum_arrow_fire_damage_added_for_each_pierce"]=4803, - ["minimum_chaos_damage_to_return_to_melee_attacker"]=2225, - ["minimum_cold_damage_to_return_to_melee_attacker"]=2223, - ["minimum_endurance_charges_at_devotion_threshold"]=9279, - ["minimum_endurance_charges_per_stackable_unique_jewel"]=4187, - ["minimum_endurance_charges_while_on_low_life_+"]=9280, - ["minimum_fire_damage_to_return_to_melee_attacker"]=2222, - ["minimum_frenzy_charges_at_devotion_threshold"]=9281, - ["minimum_frenzy_charges_per_stackable_unique_jewel"]=4188, - ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=9282, - ["minimum_frenzy_power_endurance_charges"]=9283, - ["minimum_lightning_damage_to_return_on_block"]=2611, - ["minimum_lightning_damage_to_return_to_melee_attacker"]=2224, - ["minimum_physical_damage_to_reflect_to_self_on_attack"]=2220, - ["minimum_physical_damage_to_return_on_block"]=2610, - ["minimum_physical_damage_to_return_to_melee_attacker"]=2221, - ["minimum_power_charges_at_devotion_threshold"]=9284, - ["minimum_power_charges_per_stackable_unique_jewel"]=4189, - ["minimum_power_charges_while_on_low_life_+"]=9285, - ["minimum_rage"]=9286, - ["minimum_random_movement_velocity_+%_when_hit"]=9287, - ["minimum_unarmed_added_chaos_damage_for_each_poison_on_target"]=10511, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=9349, - ["minion_accuracy_rating"]=9288, - ["minion_accuracy_rating_+%"]=9290, - ["minion_accuracy_rating_per_10_devotion"]=9289, - ["minion_additional_base_critical_strike_chance"]=9291, - ["minion_additional_physical_damage_reduction_%"]=2298, - ["minion_additional_spell_block_%"]=2928, - ["minion_are_aggressive_if_have_blocked_recently"]=9292, - ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=9293, - ["minion_attack_and_cast_speed_+%"]=9294, - ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=9295, - ["minion_attack_and_cast_speed_+%_per_10_devotion"]=9296, - ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=3297, - ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=9297, - ["minion_attack_cooldown_recovery_+%"]=9298, - ["minion_attack_hits_knockback_chance_%"]=9299, - ["minion_attack_maximum_added_physical_damage"]=3792, - ["minion_attack_minimum_added_physical_damage"]=3792, - ["minion_attack_speed_+%"]=2931, - ["minion_attack_speed_+%_per_50_dex"]=9300, - ["minion_attacks_chance_to_blind_on_hit_%"]=9301, - ["minion_attacks_chance_to_taunt_on_hit_%"]=3455, - ["minion_base_fire_damage_%_to_convert_to_chaos"]=9302, - ["minion_base_physical_damage_%_to_convert_to_chaos"]=1987, - ["minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item"]=2753, - ["minion_base_physical_damage_%_to_convert_to_cold"]=1982, - ["minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item"]=2747, - ["minion_base_physical_damage_%_to_convert_to_fire"]=1980, - ["minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item"]=2743, - ["minion_base_physical_damage_%_to_convert_to_lightning"]=1984, - ["minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item"]=2749, - ["minion_bleed_on_hit_with_attacks_%"]=2514, - ["minion_block_%"]=2927, - ["minion_cannot_crit"]=9303, - ["minion_cast_speed_+%"]=2932, - ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3466, - ["minion_chance_to_deal_double_damage_%"]=9304, - ["minion_chance_to_deal_double_damage_%_per_fortification"]=2000, - ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=9305, - ["minion_chance_to_freeze_%"]=9306, - ["minion_chance_to_freeze_shock_ignite_%"]=9307, - ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3405, - ["minion_chance_to_gain_power_charge_on_hit_%"]=9308, - ["minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=3403, - ["minion_chance_to_ignite_%"]=9309, - ["minion_chance_to_impale_on_attack_hit_%"]=9310, - ["minion_chance_to_shock_%"]=9311, - ["minion_chaos_damage_does_not_bypass_energy_shield"]=4428, - ["minion_chaos_resistance_%"]=2937, - ["minion_cold_damage_resistance_%"]=4214, - ["minion_cooldown_recovery_+%"]=9312, - ["minion_critical_strike_chance_+%"]=9313, - ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=9314, - ["minion_critical_strike_multiplier_+"]=9315, - ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=4190, - ["minion_damage_+%"]=1997, - ["minion_damage_+%_final_while_on_low_life_from_catarina_bloodline"]=9316, - ["minion_damage_+%_if_enemy_hit_recently"]=9320, - ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1998, - ["minion_damage_+%_if_warcried_recently"]=9317, - ["minion_damage_+%_per_5_dex"]=2002, - ["minion_damage_+%_per_active_spectre"]=3299, - ["minion_damage_+%_per_fortification"]=2001, - ["minion_damage_+%_vs_abyssal_monsters"]=9321, - ["minion_damage_+%_while_affected_by_a_herald"]=9322, - ["minion_damage_against_ignited_enemies_+%"]=9318, - ["minion_damage_increases_and_reductions_also_affects_you"]=3774, - ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=9319, - ["minion_damage_taken_+%"]=9323, - ["minion_deal_no_non_cold_damage"]=9324, - ["minion_duration_+%_per_active_zombie"]=3298, - ["minion_elemental_damage_%_to_add_as_chaos"]=9325, - ["minion_elemental_resistance_%"]=2936, - ["minion_elemental_resistance_30%"]=9326, - ["minion_energy_shield_delay_-%"]=4429, - ["minion_energy_shield_leech_from_elemental_damage_permyriad"]=9327, - ["minion_evasion_rating_+%"]=9328, - ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=9329, - ["minion_fire_damage_resistance_%"]=9330, - ["minion_flask_charges_used_+%"]=2210, - ["minion_global_always_hit"]=9331, - ["minion_global_maximum_added_chaos_damage"]=3793, - ["minion_global_maximum_added_cold_damage"]=3794, - ["minion_global_maximum_added_fire_damage"]=3795, - ["minion_global_maximum_added_lightning_damage"]=3796, - ["minion_global_maximum_added_physical_damage"]=3797, - ["minion_global_minimum_added_chaos_damage"]=3793, - ["minion_global_minimum_added_cold_damage"]=3794, - ["minion_global_minimum_added_fire_damage"]=3795, - ["minion_global_minimum_added_lightning_damage"]=3796, - ["minion_global_minimum_added_physical_damage"]=3797, - ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=9332, - ["minion_has_unholy_might"]=9333, - ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=4430, - ["minion_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=9334, - ["minion_larger_aggro_radius"]=10785, - ["minion_life_%_to_gain_as_flesh_shield_on_nearby_minion_death"]=9335, - ["minion_life_increased_by_overcapped_fire_resistance"]=9336, - ["minion_life_leech_from_any_damage_permyriad"]=2934, - ["minion_life_leech_permyriad_vs_poisoned_enemies"]=9337, - ["minion_life_recovery_rate_+%"]=1789, - ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=3300, - ["minion_life_regeneration_rate_per_minute_%"]=2935, - ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=9338, - ["minion_life_regeneration_rate_per_second"]=9339, - ["minion_maim_on_hit_%"]=9340, - ["minion_malediction_on_hit"]=9341, - ["minion_maximum_all_elemental_resistances_%"]=9342, - ["minion_maximum_energy_shield_+%"]=1792, - ["minion_maximum_life_%_to_add_as_maximum_energy_shield"]=9343, - ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=4427, - ["minion_maximum_life_+%"]=1790, - ["minion_maximum_mana_+%"]=1791, - ["minion_melee_damage_+%"]=9344, - ["minion_minimum_power_charges"]=9345, - ["minion_movement_speed_+%"]=1793, - ["minion_movement_speed_+%_per_50_dex"]=9346, - ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=9347, - ["minion_no_critical_strike_multiplier"]=9348, - ["minion_no_extra_bleed_damage_while_moving"]=3215, - ["minion_physical_damage_%_to_add_as_cold"]=4215, - ["minion_physical_damage_%_to_add_as_fire"]=9350, - ["minion_physical_damage_reduction_rating"]=2929, - ["minion_projectile_speed_+%"]=9351, - ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=9353, - ["minion_raging_spirit_maximum_life_+%"]=9352, - ["minion_recover_%_maximum_life_on_minion_death"]=9354, - ["minion_recover_%_of_maximum_life_on_block"]=3085, - ["minion_recover_X_life_on_block"]=1786, - ["minion_skill_area_of_effect_+%"]=3048, - ["minion_skill_gem_level_+"]=1638, - ["minion_skill_gem_quality_+"]=9355, - ["minion_skill_mana_cost_+%"]=9356, - ["minion_spell_cooldown_recovery_+%"]=9357, - ["minion_spell_suppression_chance_%"]=9358, - ["minion_spells_chance_to_hinder_on_hit_%"]=9359, - ["minion_stun_threshold_reduction_+%"]=9360, - ["minion_summoned_recently_attack_and_cast_speed_+%"]=9361, - ["minion_summoned_recently_cannot_be_damaged"]=9362, - ["minion_summoned_recently_critical_strike_chance_+%"]=9363, - ["minion_summoned_recently_movement_speed_+%"]=9364, - ["minion_unholy_might_on_kill_duration_ms"]=2942, - ["minions_%_chance_to_blind_on_hit"]=4178, - ["minions_accuracy_is_equal_to_yours"]=9365, - ["minions_affected_by_affliction_have_onslaught"]=9366, - ["minions_attacks_overwhelm_%_physical_damage_reduction"]=9367, - ["minions_cannot_attack"]=9368, - ["minions_cannot_be_blinded"]=4177, - ["minions_cannot_be_damaged_after_summoned_ms"]=9369, - ["minions_cannot_be_killed_but_die_x_seconds_after_reaching_1_life"]=9370, - ["minions_cannot_cast_spells"]=9371, - ["minions_cannot_taunt_enemies"]=9372, - ["minions_chance_to_intimidate_on_hit_%"]=9373, - ["minions_chance_to_poison_on_hit_%"]=3198, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=9374, - ["minions_gain_half_your_strength_from_ascendancy"]=9375, - ["minions_gain_x_percent_of_your_resistances"]=9376, - ["minions_gain_your_spell_suppression_chance"]=9377, - ["minions_gain_your_strength"]=9378, - ["minions_get_shield_stats_instead_of_you"]=2216, - ["minions_go_crazy_on_crit_ms"]=9379, - ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=3352, - ["minions_have_%_chance_to_inflict_wither_on_hit"]=9384, - ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=9385, - ["minions_have_-%_of_thier_damage_cannot_be_reflected"]=9380, - ["minions_have_damage_+%_per_second_they_have_been_alive"]=9381, - ["minions_have_damage_taken_+%_per_second_they_have_been_alive"]=9382, - ["minions_have_no_armour_or_energy_shield"]=9383, - ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=2169, - ["minions_have_same_maximum_num_of_charges_as_owner"]=9386, - ["minions_have_same_num_of_charges_as_owner"]=9387, - ["minions_hits_can_only_kill_ignited_enemies"]=9388, - ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=9389, - ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=9390, - ["minions_recover_%_maximum_life_when_you_focus"]=9391, - ["minions_reflected_damage_taken_+%"]=9392, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=9393, - ["minions_use_parents_flasks_on_summon"]=2206, - ["minions_use_your_main_hand_base_crit_chance_from_weapon"]=9394, - ["mirage_archer_duration_+%"]=9400, - ["mirage_archers_do_not_attach"]=4438, - ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3890, - ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3744, - ["mirror_arrow_cooldown_speed_+%"]=3908, - ["missing_unreserved_life_%_gained_as_life_before_hit"]=9402, - ["missing_unreserved_life_%_gained_as_life_before_hit_per_defiance"]=9401, - ["missing_unreserved_mana_%_gained_as_mana_before_hit"]=9403, - ["mist_footprints_from_item"]=10883, - ["mod_granted_passive_hash"]=9404, - ["mod_granted_passive_hash_2"]=9405, - ["mod_granted_passive_hash_3"]=9406, - ["mod_granted_passive_hash_4"]=9407, - ["mod_granted_passive_hash_5"]=9408, - ["modifiers_to_attributes_instead_apply_to_ascendance"]=1211, - ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3597, - ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3598, - ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3596, - ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=9409, - ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3620, - ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=9410, - ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1830, - ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1835, - ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1840, - ["modifiers_to_minion_damage_also_affect_you"]=3773, - ["modifiers_to_minion_life_regeneration_also_affect_you"]=3779, - ["modifiers_to_minion_movement_speed_also_affect_you"]=3780, - ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=9411, - ["molten_shell_buff_effect_+%"]=4048, - ["molten_shell_damage_+%"]=3732, - ["molten_shell_duration_+%"]=9412, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=9413, - ["molten_strike_chain_count_+"]=9415, - ["molten_strike_damage_+%"]=3666, - ["molten_strike_num_of_additional_projectiles"]=3970, - ["molten_strike_projectiles_chain_when_impacting_ground"]=9414, - ["molten_strike_radius_+%"]=3836, - ["monster_base_block_%"]=1162, - ["monster_converts_on_death"]=9416, - ["monster_damage_+%_final_per_alive_packmate"]=9417, - ["monster_dropped_item_quantity_+%"]=9418, - ["monster_dropped_item_rarity_+%"]=9419, - ["monster_grants_no_flask_charges"]=9420, - ["monster_life_+%_final_from_map"]=1597, - ["monster_life_+%_final_from_rarity"]=1596, - ["monster_remove_x_flask_charges_from_all_flasks"]=9423, - ["monster_slain_experience_+%"]=9424, - ["mortar_barrage_mine_damage_+%"]=9425, - ["mortar_barrage_mine_num_projectiles"]=9426, - ["mortar_barrage_mine_throwing_speed_+%"]=9428, - ["mortar_barrage_mine_throwing_speed_halved_+%"]=9427, - ["movement_attack_skills_attack_speed_+%"]=9429, - ["movement_skills_cooldown_speed_+%"]=9430, - ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=9431, - ["movement_skills_cost_no_mana"]=3496, - ["movement_skills_deal_no_physical_damage"]=9432, - ["movement_skills_mana_cost_+%"]=4207, - ["movement_speed_+%_during_flask_effect"]=3210, - ["movement_speed_+%_for_4_seconds_on_block"]=3343, - ["movement_speed_+%_if_below_100_dexterity"]=9433, - ["movement_speed_+%_if_cast_a_mark_spell_recently"]=9441, - ["movement_speed_+%_if_crit_recently"]=9442, - ["movement_speed_+%_if_enemy_hit_recently"]=9443, - ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=9444, - ["movement_speed_+%_if_enemy_killed_recently"]=4285, - ["movement_speed_+%_if_have_cast_dash_recently"]=9445, - ["movement_speed_+%_if_have_not_taken_damage_recently"]=9446, - ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=9447, - ["movement_speed_+%_if_pierced_recently"]=4230, - ["movement_speed_+%_if_placed_trap_or_mine_recently"]=9434, - ["movement_speed_+%_if_used_a_warcry_recently"]=4203, - ["movement_speed_+%_on_throwing_trap"]=2796, - ["movement_speed_+%_per_5_rage"]=9448, - ["movement_speed_+%_per_chest_opened_recently"]=9449, - ["movement_speed_+%_per_endurance_charge"]=9450, - ["movement_speed_+%_per_nearby_corpse"]=9435, - ["movement_speed_+%_per_nearby_enemy"]=9451, - ["movement_speed_+%_per_nearby_enemy_up_to_50%"]=9436, - ["movement_speed_+%_per_poison_up_to_50%"]=9452, - ["movement_speed_+%_per_power_charge"]=9453, - ["movement_speed_+%_per_summoned_phantasm"]=9437, - ["movement_speed_+%_while_affected_by_grace"]=9454, - ["movement_speed_+%_while_bleeding"]=9455, - ["movement_speed_+%_while_dual_wielding"]=9456, - ["movement_speed_+%_while_fortified"]=3344, - ["movement_speed_+%_while_holding_shield"]=9457, - ["movement_speed_+%_while_not_affected_by_status_ailments"]=3334, - ["movement_speed_+%_while_not_using_flask"]=9458, - ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=9459, - ["movement_speed_+%_while_on_burning_ground"]=9460, - ["movement_speed_+%_while_poisoned"]=9461, - ["movement_speed_+%_while_you_have_cats_stealth"]=9462, - ["movement_speed_+%_while_you_have_energy_shield"]=9463, - ["movement_speed_+%_while_you_have_infusion"]=9464, - ["movement_speed_+%_while_you_have_two_linked_targets"]=9438, - ["movement_speed_bonus_when_throwing_trap_ms"]=2796, - ["movement_speed_cannot_be_reduced_below_base"]=3220, - ["movement_speed_is_%_of_base"]=9440, - ["movement_speed_is_equal_to_highest_linked_party_member"]=9439, - ["movement_velocity_+%_on_full_energy_shield"]=2993, - ["movement_velocity_+%_per_frenzy_charge"]=1826, - ["movement_velocity_+%_per_poison_stack"]=9465, - ["movement_velocity_+%_per_shock"]=2830, - ["movement_velocity_+%_per_totem"]=9468, - ["movement_velocity_+%_when_on_full_life"]=1824, - ["movement_velocity_+%_when_on_low_life"]=1823, - ["movement_velocity_+%_when_on_shocked_ground"]=2170, - ["movement_velocity_+%_while_at_maximum_power_charges"]=9469, - ["movement_velocity_+%_while_chilled"]=9470, - ["movement_velocity_+%_while_cursed"]=2651, - ["movement_velocity_+%_while_ignited"]=2829, - ["movement_velocity_+%_while_no_gems_in_boots"]=9466, - ["movement_velocity_+%_while_phasing"]=2634, - ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=9467, - ["movement_velocity_+1%_per_X_evasion_rating"]=2699, - ["movement_velocity_while_not_hit_+%"]=3247, - ["nearby_allies_have_onslaught"]=9471, - ["nearby_corpses_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=9472, - ["nearby_enemies_all_exposure_%_while_phasing"]=9473, - ["nearby_enemies_are_blinded_if_2_redeemer_items"]=4479, - ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=9474, - ["nearby_enemies_are_chilled"]=9475, - ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=9476, - ["nearby_enemies_are_crushed_while_you_have_X_rage"]=9477, - ["nearby_enemies_are_intimidated_if_2_warlord_items"]=4480, - ["nearby_enemies_are_intimidated_while_you_have_rage"]=9478, - ["nearby_enemies_are_unnerved"]=9479, - ["nearby_enemies_are_unnerved_if_2_elder_items"]=4481, - ["nearby_enemies_chilled_on_block"]=4295, - ["nearby_enemies_fire_dot_resistance_is_%_while_you_are_stationary"]=9481, - ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=9482, - ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=9483, - ["nearby_enemies_have_fire_exposure_while_you_are_at_maximum_rage"]=9484, - ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=9485, - ["nearby_enemies_lightning_resist_equal_to_yours"]=9486, - ["nearby_enemies_no_fire_dot_resistance_while_you_are_stationary"]=9487, - ["nearby_enemies_physical_damage_taken_+%_per_2fortification_on_you"]=9488, - ["nearby_non_player_allies_are_%_shocked_and_grant_you_charges_on_death"]=9489, - ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=9490, - ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3506, - ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=9491, - ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=9492, - ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=9493, - ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=9494, - ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=9495, - ["necromancer_minion_damage_+%_final"]=9496, - ["necropolis_corrupting_tempest_on_pack_death"]=9497, - ["necropolis_meteor_shower_on_pack_death"]=9498, - ["necropolis_pack_monster_level_+"]=9499, - ["necropolis_strongbox_on_pack_death"]=9500, - ["necropolis_tormented_spirit_on_pack_death"]=9501, - ["necrotic_footprints_from_item"]=9502, - ["never_block"]=3289, - ["never_freeze"]=2585, - ["never_freeze_or_chill"]=2586, - ["never_ignite"]=2584, - ["never_ignite_chill_freeze_shock"]=9503, - ["never_shock"]=2587, - ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=3166, - ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=3165, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=9504, - ["no_barrage_projectile_spread"]=9505, - ["no_critical_strike_multiplier"]=2702, - ["no_energy_shield"]=2190, - ["no_energy_shield_recharge_or_regeneration"]=2697, - ["no_energy_shield_recovery"]=3142, - ["no_evasion_rating"]=9506, - ["no_experience_gain"]=9507, - ["no_extra_bleed_damage_while_moving"]=3216, - ["no_extra_bleed_damage_while_target_is_moving"]=9508, - ["no_inherent_chance_to_block_while_dual_wielding"]=9509, - ["no_life_regeneration"]=2295, - ["no_mana"]=2204, - ["no_mana_regeneration"]=2296, - ["no_maximum_power_charges"]=3040, - ["no_physical_damage_reduction_rating"]=2189, - ["non_aura_hexes_gain_20%_effect_per_second"]=9510, - ["non_aura_vaal_skills_soul_requirement_+%"]=9511, - ["non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge"]=4362, - ["non_chaos_damage_%_to_add_as_chaos_damage_per_void_spawn"]=9512, - ["non_chaos_damage_to_add_as_chaos_damage_%"]=9513, - ["non_chilled_enemies_you_bleed_are_chilled"]=9514, - ["non_chilled_enemies_you_poison_are_chilled"]=9515, - ["non_critical_damage_multiplier_+%"]=2737, - ["non_critical_strikes_deal_no_damage"]=9516, - ["non_critical_strikes_penetrate_elemental_resistances_%"]=3581, - ["non_curse_aura_effect_+%"]=3590, - ["non_curse_aura_effect_+%_per_10_devotion"]=9518, - ["non_curse_aura_effect_+%_vs_enemies"]=3591, - ["non_curse_aura_effect_+%_while_linked"]=9519, - ["non_curse_aura_effect_+%_while_you_have_broken_ward"]=9517, - ["non_curse_auras_only_apply_to_you_and_linked_targets"]=9520, - ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=9521, - ["non_damaging_ailment_effect_+%"]=9524, - ["non_damaging_ailment_effect_+%_on_self"]=9525, - ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=9526, - ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=4355, - ["non_damaging_ailment_effect_+%_per_10_devotion"]=9527, - ["non_damaging_ailment_effect_+%_per_blue_skill_gem"]=9522, - ["non_damaging_ailment_effect_+%_per_equipped_elder_item"]=4356, - ["non_damaging_ailment_effect_+%_with_critical_strikes"]=9528, - ["non_damaging_ailment_effect_+%_with_critical_strikes_per_100_max_player_life"]=9523, - ["non_damaging_ailments_as_though_damage_+%_final"]=9529, - ["non_damaging_ailments_reflected_to_self"]=9530, - ["non_exceptional_support_gem_level_+"]=9532, - ["non_exceptional_support_gem_level_+_if_6_shaper_items"]=4522, - ["non_exerted_attacks_deal_no_damage"]=9533, - ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=4368, - ["non_instant_warcries_have_no_cooldown"]=9534, - ["non_piercing_projectiles_critical_strike_chance_+%"]=9535, - ["non_projectile_chaining_lightning_skill_additional_chains"]=9536, - ["non_travel_attack_skill_repeat_count"]=9537, - ["non_unique_flask_effect_+%"]=2768, - ["normal_monster_dropped_item_quantity_+%"]=9538, - ["nova_spells_cast_at_marked_target"]=9539, - ["nova_spells_cast_at_target_location"]=9540, - ["nova_spells_cast_at_target_location_description_mode"]=9540, - ["num_magic_utility_flasks_always_apply"]=4445, - ["num_magic_utility_flasks_always_apply_rightmost"]=4446, - ["num_of_additional_chains_at_max_frenzy_charges"]=1850, - ["number_of_additional_arrows"]=1818, - ["number_of_additional_arrows_if_havent_cast_dash_recently"]=1819, - ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=9541, - ["number_of_additional_chains_for_projectiles"]=4154, - ["number_of_additional_chains_for_projectiles_while_phasing"]=9542, - ["number_of_additional_clones"]=3112, - ["number_of_additional_curses_allowed"]=2192, - ["number_of_additional_curses_allowed_if_6_hunter_items"]=4519, - ["number_of_additional_curses_allowed_on_self"]=2193, - ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=9543, - ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=9544, - ["number_of_additional_hallowing_flame_allowed"]=9545, - ["number_of_additional_ignites_allowed"]=9546, - ["number_of_additional_mines_to_place"]=3573, - ["number_of_additional_mines_to_place_with_at_least_500_dex"]=9547, - ["number_of_additional_mines_to_place_with_at_least_500_int"]=9548, - ["number_of_additional_projectiles"]=1816, - ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=9549, - ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=9550, - ["number_of_additional_remote_mines_allowed"]=2280, - ["number_of_additional_searing_bond_totems_allowed"]=9551, - ["number_of_additional_shrapnel_ballistae_per_200_strength"]=3417, - ["number_of_additional_siege_ballistae_per_200_dexterity"]=3418, - ["number_of_additional_totems_allowed"]=2278, - ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3634, - ["number_of_additional_totems_allowed_per_maximum_power_charge"]=9552, - ["number_of_additional_traps_allowed"]=2279, - ["number_of_additional_traps_to_throw"]=9553, - ["number_of_allowed_firewalls"]=9554, - ["number_of_chains"]=1813, - ["number_of_crab_charges_lost_when_hit"]=4375, - ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=9557, - ["number_of_ghost_totems_allowed"]=9558, - ["number_of_golems_allowed_with_3_primordial_jewels"]=9559, - ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=3271, - ["number_of_projectiles_+%_final_from_skill"]=9560, - ["number_of_raging_spirits_is_limited_to_3"]=9561, - ["number_of_skeletons_allowed_per_2_old"]=9562, - ["number_of_support_ghosts_is_limited_to_3"]=9563, - ["number_of_zombies_allowed_+%"]=2612, - ["number_of_zombies_allowed_+1_per_X_intelligence_from_foulborn_baron"]=9564, - ["number_of_zombies_allowed_+1_per_X_strength"]=9565, - ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=3113, - ["occultist_chaos_damage_+%_final"]=9566, - ["occultist_cold_damage_+%_final"]=9567, - ["occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery"]=3768, - ["occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds"]=3781, - ["occultist_immune_to_stun_while_has_energy_shield"]=3767, - ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3766, - ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=9568, - ["off_hand_attack_speed_+%_while_dual_wielding"]=9569, - ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=9570, - ["off_hand_base_attack_time_+_ms"]=9571, + ["map_tempest_frequency_+%"]=9148, + ["map_tempest_ground_ice"]=2360, + ["map_tempest_ground_lightning"]=2361, + ["map_tempest_ground_tar_movement_speed_+%"]=2362, + ["map_torment_scarab_more_likely_%"]=10937, + ["map_tormented_spirits_drop_x_additional_rare_items"]=9149, + ["map_tormented_spirits_duration_+%"]=9150, + ["map_tormented_spirits_movement_speed_+%"]=9151, + ["map_tormented_spirits_possess_players_instead_of_monsters"]=9152, + ["map_trialmaster_drops_stack_of_catalysts"]=9153, + ["map_uber_drowning_orb_ambush"]=9154, + ["map_uber_map_additional_synthesis_boss"]=9155, + ["map_uber_map_player_damage_cycle"]=9156, + ["map_uber_sawblades_ambush"]=9157, + ["map_uber_sirus_meteor_ambush"]=9158, + ["map_ultimatum_conquer_encounter_chance_+%"]=9159, + ["map_ultimatum_conquer_encounter_radius_+%"]=9160, + ["map_ultimatum_defense_encounter_altar_life_+%"]=9162, + ["map_ultimatum_defense_encounter_chance_+%"]=9161, + ["map_ultimatum_encounter_additional_chance_%"]=9163, + ["map_ultimatum_exterminate_encounter_chance_+%"]=9164, + ["map_ultimatum_exterminate_encounter_monsters_required_+%"]=9165, + ["map_ultimatum_lasts_13_rounds"]=9166, + ["map_ultimatum_modifiers_are_chosen_for_you"]=526, + ["map_ultimatum_modifiers_start_1_tier_higher"]=9167, + ["map_ultimatum_monster_experience_+%"]=9168, + ["map_ultimatum_monster_quantity_+%"]=9169, + ["map_ultimatum_rare_monster_quantity_+%"]=9170, + ["map_ultimatum_reward_abyss_chance_+%"]=9171, + ["map_ultimatum_reward_blight_chance_+%"]=9172, + ["map_ultimatum_reward_breach_chance_+%"]=9173, + ["map_ultimatum_reward_catalyst_chance_+%"]=9174, + ["map_ultimatum_reward_corrupted_rares_chance_+%"]=9175, + ["map_ultimatum_reward_currency_items_chance_+%"]=9176, + ["map_ultimatum_reward_delirium_chance_+%"]=9177, + ["map_ultimatum_reward_divination_cards_chance_+%"]=9178, + ["map_ultimatum_reward_duplicated_chance_%"]=9179, + ["map_ultimatum_reward_essence_chance_+%"]=9180, + ["map_ultimatum_reward_fossils_chance_+%"]=9181, + ["map_ultimatum_reward_fragments_chance_+%"]=9182, + ["map_ultimatum_reward_gem_chance_+%"]=9183, + ["map_ultimatum_reward_heist_chance_+%"]=9184, + ["map_ultimatum_reward_inscribed_ultimatums_chance_+%"]=9185, + ["map_ultimatum_reward_jewellery_chance_+%"]=9186, + ["map_ultimatum_reward_legion_chance_+%"]=9187, + ["map_ultimatum_reward_maps_chance_+%"]=9188, + ["map_ultimatum_reward_tiers_+"]=9189, + ["map_ultimatum_reward_unique_items_chance_+%"]=9190, + ["map_ultimatum_scarab_more_likely_%"]=10938, + ["map_ultimatum_survival_encounter_chance_+%"]=9191, + ["map_ultimatum_survival_encounter_time_+%"]=9192, + ["map_ultimatum_trialmaster_cannot_spawn"]=9193, + ["map_unique_boss_drops_divination_cards"]=9195, + ["map_unique_item_drop_chance_+%"]=9196, + ["map_unique_monster_items_drop_corrupted_%"]=9199, + ["map_unique_monsters_drop_corrupted_items"]=9197, + ["map_unique_monsters_have_X_shrine_effects"]=9198, + ["map_unique_side_area_return_portal_leads_to_new_unique_side_area_chance_%"]=9200, + ["map_uniques_scarab_more_likely_%"]=10939, + ["map_unstable_breach_spawns_boss"]=2668, + ["map_upgrade_X_packs_to_magic"]=9201, + ["map_upgrade_pack_to_magic_%_chance"]=9202, + ["map_upgrade_pack_to_rare_%_chance"]=9203, + ["map_upgrade_synthesised_pack_to_magic_%_chance"]=9204, + ["map_upgrade_synthesised_pack_to_rare_%_chance"]=9205, + ["map_vaal_monster_items_drop_corrupted_%"]=9206, + ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=9207, + ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=9208, + ["map_vaal_side_area_boss_damage_+%_final"]=9209, + ["map_vaal_side_area_boss_maximum_life_+%_final"]=9210, + ["map_vaal_side_area_chance_%"]=9211, + ["map_vaal_side_area_vaal_vessel_%_chance_to_duplicate_rewards"]=9212, + ["map_vaal_temple_spawn_additional_vaal_vessels"]=9213, + ["map_vaal_vessel_drop_X_divination_cards"]=9214, + ["map_vaal_vessel_drop_X_fossils"]=9215, + ["map_vaal_vessel_drop_X_level_21_gems"]=9216, + ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=9217, + ["map_vaal_vessel_drop_X_maps_with_vaal_implicits"]=9218, + ["map_vaal_vessel_drop_X_mortal_fragments"]=9219, + ["map_vaal_vessel_drop_X_prophecies"]=9220, + ["map_vaal_vessel_drop_X_quality_23_gems"]=9221, + ["map_vaal_vessel_drop_X_rare_temple_items"]=9222, + ["map_vaal_vessel_drop_X_sacrifice_fragments"]=9223, + ["map_vaal_vessel_drop_X_tower_of_ordeals"]=9224, + ["map_vaal_vessel_drop_X_trialmaster_fragments"]=9225, + ["map_vaal_vessel_drop_X_vaal_gems"]=9226, + ["map_vaal_vessel_drop_X_vaal_orbs"]=9227, + ["map_vaal_vessel_drop_X_vaal_temple_maps"]=9228, + ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=9229, + ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=9230, + ["map_vaal_vessel_item_drop_quantity_+%"]=9231, + ["map_vaal_vessel_item_drop_rarity_+%"]=9232, + ["map_village_secondary_ore_chance_+%"]=9233, + ["map_warbands_packs_have_additional_elites"]=9234, + ["map_warbands_packs_have_additional_grunts"]=9235, + ["map_warbands_packs_have_additional_supports"]=9236, + ["map_watchstone_additional_packs_of_elder_monsters"]=9237, + ["map_watchstone_additional_packs_of_shaper_monsters"]=9238, + ["map_watchstone_monsters_damage_+%_final"]=9239, + ["map_watchstone_monsters_life_+%_final"]=9240, + ["map_weapon_and_shields_drop_corrupted_with_implicit_%_chance"]=175, + ["map_weapon_and_shields_drop_fractured_%_chance"]=176, + ["map_weapon_and_shields_drop_fully_linked_%_chance"]=177, + ["map_weapon_and_shields_drop_fully_socketed_%_chance"]=178, + ["map_weapons_drop_animated"]=3103, + ["map_wild_mercenary_reward_and_difficulty_per_wild_mercenary"]=9241, + ["map_zana_influence"]=9242, + ["map_zana_influence_additional_petal_skill_chance_%"]=9243, + ["map_zana_influence_equipment_item_chance_+%"]=9244, + ["map_zana_influence_number_of_influenced_magic_packs_+%"]=9245, + ["map_zana_influence_number_of_influenced_rare_packs_+%"]=9246, + ["map_zana_influence_pack_+"]=9247, + ["marauder_hidden_ascendancy_damage_+%_final"]=9248, + ["marauder_hidden_ascendancy_damage_taken_+%_final"]=9249, + ["mark_skill_cast_speed_+%"]=2263, + ["mark_skill_duration_+%"]=9250, + ["mark_skill_mana_cost_+%"]=9251, + ["mark_skills_cost_no_mana"]=9252, + ["mark_skills_curse_effect_+%"]=2648, + ["mark_skills_curse_effect_+%_per_maximum_power_charge"]=9253, + ["mark_skills_curse_effect_+%_while_affected_by_elusive"]=9254, + ["marked_enemies_cannot_deal_critical_strikes"]=9255, + ["marked_enemies_cannot_evade"]=9256, + ["marked_enemies_cannot_regenerate_life"]=9257, + ["marked_enemy_accuracy_rating_+%"]=9258, + ["marked_enemy_damage_taken_+%"]=9259, + ["marks_you_inflict_remain_after_death"]=9260, + ["mastery_chance_to_evade_melee_attacks_+%_final"]=9261, + ["mastery_extra_damage_taken_from_suppressed_crit_+%_final"]=1560, + ["maven_fight_layout_override"]=9262, + ["max_adaptations_+"]=1582, + ["max_attack_added_chaos_damage_per_100_mana"]=1437, + ["max_chance_to_block_attacks_if_not_blocked_recently"]=9263, + ["max_charged_attack_stacks"]=4280, + ["max_endurance_charges"]=1851, + ["max_endurance_charges_if_6_warlord_items"]=4554, + ["max_fortification_+1_per_5"]=9264, + ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=10902, + ["max_fortification_while_focused_+1_per_5"]=9265, + ["max_fortification_while_stationary_+1_per_5"]=9266, + ["max_frenzy_charges"]=1856, + ["max_frenzy_charges_if_6_redeemer_items"]=4555, + ["max_power_charges"]=1861, + ["max_power_charges_if_6_crusader_items"]=4556, + ["max_steel_ammo"]=9267, + ["maximum_1_totem_at_a_time"]=9268, + ["maximum_2_of_same_totem"]=2304, + ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1864, + ["maximum_active_sand_mirage_count"]=9269, + ["maximum_added_chaos_damage_if_have_crit_recently"]=9380, + ["maximum_added_chaos_damage_per_curse_on_enemy"]=9381, + ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=9382, + ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=9383, + ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=9384, + ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=9385, + ["maximum_added_cold_damage_if_have_crit_recently"]=9386, + ["maximum_added_cold_damage_per_frenzy_charge"]=4333, + ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=9387, + ["maximum_added_cold_damage_vs_chilled_enemies"]=9388, + ["maximum_added_cold_damage_while_affected_by_hatred"]=9389, + ["maximum_added_cold_damage_while_you_have_avians_might"]=9390, + ["maximum_added_fire_attack_damage_per_active_buff"]=1321, + ["maximum_added_fire_damage_if_blocked_recently"]=4335, + ["maximum_added_fire_damage_if_have_crit_recently"]=9391, + ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=9392, + ["maximum_added_fire_damage_per_active_buff"]=1323, + ["maximum_added_fire_damage_per_endurance_charge"]=9393, + ["maximum_added_fire_damage_to_attacks_per_1%_light_radius"]=9394, + ["maximum_added_fire_damage_to_attacks_per_10_strength"]=9395, + ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=9396, + ["maximum_added_fire_damage_vs_ignited_enemies"]=1320, + ["maximum_added_fire_spell_damage_per_active_buff"]=1322, + ["maximum_added_lightning_damage_if_have_crit_recently"]=9397, + ["maximum_added_lightning_damage_per_10_int"]=9270, + ["maximum_added_lightning_damage_per_power_charge"]=9398, + ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=9399, + ["maximum_added_lightning_damage_to_attacks_per_10_intelligence"]=9400, + ["maximum_added_lightning_damage_to_spells_per_power_charge"]=9401, + ["maximum_added_lightning_damage_while_you_have_avians_might"]=9402, + ["maximum_added_physical_damage_if_have_crit_recently"]=9403, + ["maximum_added_physical_damage_per_endurance_charge"]=9404, + ["maximum_added_physical_damage_per_impaled_on_enemy"]=9405, + ["maximum_added_physical_damage_vs_bleeding_enemies"]=2544, + ["maximum_added_physical_damage_vs_frozen_enemies"]=1319, + ["maximum_added_physical_damage_vs_poisoned_enemies"]=9406, + ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=9407, + ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=9408, + ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=9409, + ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1859, + ["maximum_arrow_fire_damage_added_for_each_pierce"]=4850, + ["maximum_attack_damage_+%_final_from_ascendancy"]=9271, + ["maximum_blitz_charges"]=9272, + ["maximum_block_%"]=2035, + ["maximum_block_%_if_4_elder_items"]=4538, + ["maximum_blood_phylactery_%_of_life"]=9273, + ["maximum_blood_scythe_charges"]=4417, + ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1854, + ["maximum_celestial_charges"]=9274, + ["maximum_challenger_charges"]=9275, + ["maximum_chaos_damage_to_return_to_melee_attacker"]=2248, + ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=9276, + ["maximum_cold_damage_to_return_to_melee_attacker"]=2246, + ["maximum_critical_strike_chance"]=2805, + ["maximum_critical_strike_chance_is_50%"]=9277, + ["maximum_divine_charges"]=4449, + ["maximum_endurance_charges_+_while_affected_by_determination"]=9278, + ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1852, + ["maximum_endurance_frenzy_power_charges_is_0"]=9279, + ["maximum_energy_shield_%_lost_on_kill"]=1803, + ["maximum_energy_shield_+%"]=1607, + ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1636, + ["maximum_energy_shield_+_if_no_defence_modifiers_on_equipment_except_body_armour"]=9280, + ["maximum_energy_shield_+_per_100_life_reserved"]=1612, + ["maximum_energy_shield_+_per_5_armour_on_shield"]=4439, + ["maximum_energy_shield_+_per_5_strength"]=3837, + ["maximum_energy_shield_+_per_X_body_armour_evasion_rating"]=1613, + ["maximum_energy_shield_from_body_armour_+%"]=9281, + ["maximum_energy_shield_increased_by_spell_block_chance"]=9282, + ["maximum_energy_shield_is_x%_of_maximum_life"]=9283, + ["maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield"]=1776, + ["maximum_energy_shield_leech_amount_per_leech_+%"]=1773, + ["maximum_energy_shield_leech_amount_per_leech_is_doubled"]=9284, + ["maximum_energy_shield_leech_rate_%_per_minute"]=1775, + ["maximum_energy_shield_leech_rate_+%"]=1781, + ["maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry"]=1782, + ["maximum_es_+%_per_equipped_corrupted_item"]=3156, + ["maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry"]=1783, + ["maximum_es_per_honoured_soul_tattoo_allocated"]=9285, + ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=3081, + ["maximum_fanaticism_charges"]=9286, + ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=9287, + ["maximum_fire_damage_to_return_to_melee_attacker"]=2245, + ["maximum_frenzy_charges_+_while_affected_by_grace"]=9288, + ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1857, + ["maximum_frenzy_power_endurance_charges"]=9289, + ["maximum_intensify_stacks"]=9290, + ["maximum_leech_rate_+%"]=9291, + ["maximum_life_%_lost_on_kill"]=1801, + ["maximum_life_%_to_add_as_maximum_armour"]=9308, + ["maximum_life_%_to_add_as_maximum_energy_shield"]=9309, + ["maximum_life_%_to_add_as_maximum_energy_shield_with_no_corrupted_equipped_items"]=9292, + ["maximum_life_%_to_convert_to_maximum_energy_shield"]=9310, + ["maximum_life_+%"]=1617, + ["maximum_life_+%_and_fire_resistance_-%"]=1634, + ["maximum_life_+%_for_corpses_you_create"]=9311, + ["maximum_life_+%_if_2_elder_items"]=4515, + ["maximum_life_+%_if_no_life_tags_on_body_armour"]=9312, + ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=9313, + ["maximum_life_+%_per_alive_packmate"]=9293, + ["maximum_life_+%_per_equipped_corrupted_item"]=3155, + ["maximum_life_+%_per_red_socket_on_staff"]=9294, + ["maximum_life_+%_per_stackable_unique_jewel"]=4222, + ["maximum_life_+%_to_grant_packmate_on_death"]=9295, + ["maximum_life_+%_while_no_gems_in_gloves"]=9296, + ["maximum_life_+_if_no_life_modifiers_on_equipment_except_body_armour"]=9297, + ["maximum_life_+_per_empty_red_socket"]=4495, + ["maximum_life_and_mana_+%_if_red_and_blue_socket_on_staff"]=9298, + ["maximum_life_leech_amount_per_leech_%_max_life"]=9300, + ["maximum_life_leech_amount_per_leech_+%"]=1771, + ["maximum_life_leech_amount_per_leech_+%_per_5%_life_reserved"]=9299, + ["maximum_life_leech_rate_%_per_minute"]=1774, + ["maximum_life_leech_rate_%_per_minute_is_doubled"]=9301, + ["maximum_life_leech_rate_+%"]=1778, + ["maximum_life_leech_rate_+%_if_crit_recently"]=9302, + ["maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently"]=9303, + ["maximum_life_leech_rate_+1%_per_12_stat_value"]=1779, + ["maximum_life_mana_and_energy_shield_+%"]=1616, + ["maximum_life_per_10_dexterity"]=9304, + ["maximum_life_per_10_intelligence"]=9305, + ["maximum_life_per_10_levels"]=2819, + ["maximum_life_per_2%_increased_item_found_rarity"]=9306, + ["maximum_life_per_equipped_elder_item"]=4390, + ["maximum_life_per_honoured_heart_tattoo_allocated"]=9307, + ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=3080, + ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=9314, + ["maximum_lightning_damage_to_return_on_block"]=2637, + ["maximum_lightning_damage_to_return_to_melee_attacker"]=2247, + ["maximum_mana_%_gained_on_kill"]=1802, + ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=9319, + ["maximum_mana_+%"]=1627, + ["maximum_mana_+%_and_cold_resistance_-%"]=1635, + ["maximum_mana_+%_if_2_shaper_items"]=4516, + ["maximum_mana_+%_per_2%_spell_block_chance"]=3645, + ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=9321, + ["maximum_mana_+%_per_blue_socket_on_staff"]=9315, + ["maximum_mana_+1%_per_X_strength_when_in_main_hand_from_foulborn_doon_cuebiyari"]=9316, + ["maximum_mana_+_per_2_intelligence"]=9320, + ["maximum_mana_+_per_empty_blue_socket"]=4497, + ["maximum_mana_leech_amount_per_leech_%_max_mana"]=9317, + ["maximum_mana_leech_amount_per_leech_+%"]=1772, + ["maximum_mana_leech_rate_%_per_minute"]=1777, + ["maximum_mana_leech_rate_+%"]=1780, + ["maximum_mana_per_honoured_mind_tattoo_allocated"]=9318, + ["maximum_number_of_X_minion_type_doubled"]=9322, + ["maximum_number_of_blades_left_in_ground"]=9323, + ["maximum_number_of_projectiles_to_fire_is_1"]=186, + ["maximum_number_of_raised_spectres_is_x"]=9324, + ["maximum_physical_attack_damage_+%_final"]=9325, + ["maximum_physical_damage_reduction_%"]=1584, + ["maximum_physical_damage_to_reflect_to_self_on_attack"]=2243, + ["maximum_physical_damage_to_return_on_block"]=2636, + ["maximum_physical_damage_to_return_to_melee_attacker"]=2244, + ["maximum_power_and_endurance_charges_+"]=9326, + ["maximum_power_and_frenzy_charges_+"]=1862, + ["maximum_power_charges_+_while_affected_by_discipline"]=9327, + ["maximum_rage"]=9952, + ["maximum_rage_is_halved"]=9328, + ["maximum_rage_per_equipped_one_handed_sword"]=9329, + ["maximum_random_movement_velocity_+%_when_hit"]=9418, + ["maximum_siphoning_charges_per_elder_or_shaper_item_equipped"]=4397, + ["maximum_spell_block_chance_per_50_strength"]=2037, + ["maximum_spirit_charges_per_abyss_jewel_equipped"]=4442, + ["maximum_total_life_recovery_per_second_from_leech_+%_while_at_max_rage"]=9330, + ["maximum_total_life_recovery_per_second_from_leech_+%_while_have_defiance"]=4346, + ["maximum_unarmed_added_chaos_damage_for_each_poison_on_target"]=10667, + ["maximum_virulence_stacks"]=9331, + ["maximum_void_arrows"]=4418, + ["melee_ancestor_totem_damage_+%"]=3686, + ["melee_ancestor_totem_elemental_resistance_%"]=4175, + ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3862, + ["melee_ancestor_totem_placement_speed_+%"]=4033, + ["melee_attack_critical_strike_chance_against_enemies_that_are_excommunicated_%"]=9332, + ["melee_attack_number_of_spirit_strikes"]=9333, + ["melee_attack_speed_+%"]=1462, + ["melee_attacks_usable_without_life_cost"]=9334, + ["melee_attacks_usable_without_mana_cost"]=3053, + ["melee_cold_damage_+%"]=2030, + ["melee_cold_damage_+%_while_fortify_is_active"]=2316, + ["melee_cold_damage_+%_while_holding_shield"]=2033, + ["melee_critical_strike_chance_+%"]=1526, + ["melee_critical_strike_chance_+%_if_warcried_recently"]=9335, + ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=9336, + ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1551, + ["melee_damage_+%"]=1281, + ["melee_damage_+%_at_close_range"]=9338, + ["melee_damage_+%_during_flask_effect"]=9339, + ["melee_damage_+%_per_20_intelligence"]=9337, + ["melee_damage_+%_per_endurance_charge"]=4235, + ["melee_damage_+%_per_second_of_warcry_affecting_you"]=9340, + ["melee_damage_+%_vs_burning_enemies"]=1286, + ["melee_damage_+%_vs_frozen_enemies"]=1282, + ["melee_damage_+%_vs_shocked_enemies"]=1284, + ["melee_damage_+%_when_on_full_life"]=2688, + ["melee_damage_+%_while_fortified"]=4311, + ["melee_damage_taken_%_to_deal_to_attacker"]=2758, + ["melee_damage_taken_+%"]=2806, + ["melee_damage_vs_bleeding_enemies_+%"]=2542, + ["melee_fire_damage_+%"]=2029, + ["melee_fire_damage_+%_while_holding_shield"]=2032, + ["melee_hits_cannot_be_evaded_while_wielding_sword"]=9341, + ["melee_hits_grant_rampage_stacks"]=10953, + ["melee_knockback"]=9342, + ["melee_movement_skill_chance_to_fortify_on_hit_%"]=9343, + ["melee_physical_damage_+%"]=2028, + ["melee_physical_damage_+%_per_10_dexterity"]=9344, + ["melee_physical_damage_+%_per_10_strength_while_fortified"]=9345, + ["melee_physical_damage_+%_vs_ignited_enemies"]=4363, + ["melee_physical_damage_+%_while_fortify_is_active"]=2317, + ["melee_physical_damage_+%_while_holding_shield"]=2031, + ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2506, + ["melee_range_+"]=2584, + ["melee_range_+_while_at_least_5_enemies_nearby"]=9346, + ["melee_range_+_while_dual_wielding"]=9348, + ["melee_range_+_while_unarmed"]=3137, + ["melee_range_+_while_wielding_shield"]=9347, + ["melee_range_+_with_axe"]=9349, + ["melee_range_+_with_claw"]=9350, + ["melee_range_+_with_dagger"]=9351, + ["melee_range_+_with_mace"]=9352, + ["melee_range_+_with_one_handed"]=9353, + ["melee_range_+_with_staff"]=9354, + ["melee_range_+_with_sword"]=9355, + ["melee_range_+_with_two_handed"]=9356, + ["melee_skill_gem_level_+"]=9357, + ["melee_skills_area_of_effect_+%"]=9358, + ["melee_splash"]=1215, + ["melee_splash_while_wielding_mace"]=9359, + ["melee_strike_skill_strike_previous_location"]=9360, + ["melee_weapon_ailment_damage_+%"]=1336, + ["melee_weapon_critical_strike_multiplier_+"]=1549, + ["melee_weapon_hit_and_ailment_damage_+%"]=1332, + ["melee_weapon_range_+_if_you_have_killed_recently"]=9361, + ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=9362, + ["melee_weapon_range_+_while_fortified"]=9363, + ["memory_line_abyss_scourge_spawn_boss_chance_%"]=126, + ["memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete"]=144, + ["memory_line_big_harvest"]=127, + ["memory_line_breach_boss_spawn_chance_%"]=145, + ["memory_line_breach_covers_map"]=109, + ["memory_line_essence_monster_number_of_essences"]=128, + ["memory_line_has_penalty"]=9364, + ["memory_line_maximum_possessions_of_rare_unique_monsters"]=110, + ["memory_line_minimum_possessions_of_rare_unique_monsters"]=110, + ["memory_line_num_harvest_plots"]=111, + ["memory_line_number_of_abyss_scourge_cracks"]=112, + ["memory_line_number_of_breaches"]=113, + ["memory_line_number_of_essences"]=114, + ["memory_line_number_of_excursions"]=115, + ["memory_line_number_of_large_breach_chests"]=129, + ["memory_line_number_of_pantheon_shrines"]=4356, + ["memory_line_number_of_shrines"]=4355, + ["memory_line_number_of_strongboxes"]=116, + ["memory_line_player_is_harbinger"]=117, + ["memory_line_strongboxes_chance_to_be_operatives_%"]=146, + ["mercenary_can_use_unique_amulet"]=9365, + ["mercenary_can_use_unique_belt"]=9366, + ["mercenary_can_use_unique_boots"]=9367, + ["mercenary_can_use_unique_gloves"]=9368, + ["mercenary_can_use_unique_helmet"]=9369, + ["mercenary_can_use_unique_ring"]=9370, + ["mercenary_can_use_unique_weapons_shields_and_quivers"]=9371, + ["min_attack_added_chaos_damage_per_100_mana"]=1437, + ["mine_%_chance_to_detonate_twice"]=9377, + ["mine_area_damage_+%_if_detonated_mine_recently"]=9372, + ["mine_area_of_effect_+%"]=9373, + ["mine_area_of_effect_+%_if_detonated_mine_recently"]=9374, + ["mine_arming_speed_+%"]=4289, + ["mine_aura_effect_+%"]=9375, + ["mine_critical_strike_chance_+%"]=1522, + ["mine_critical_strike_multiplier_+"]=1553, + ["mine_damage_+%"]=1243, + ["mine_damage_leeched_as_life_to_you_permyriad"]=4296, + ["mine_damage_penetrates_%_elemental_resistance"]=2841, + ["mine_detonation_is_instant"]=2839, + ["mine_detonation_radius_+%"]=1973, + ["mine_detonation_speed_+%"]=9376, + ["mine_duration_+%"]=1971, + ["mine_extra_uses"]=3091, + ["mine_laying_speed_+%"]=1975, + ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3536, + ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=9378, + ["mines_invulnerable"]=9379, + ["mines_invulnerable_for_duration_ms"]=2844, + ["minimum_added_chaos_damage_if_have_crit_recently"]=9380, + ["minimum_added_chaos_damage_per_curse_on_enemy"]=9381, + ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=9382, + ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=9383, + ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=9384, + ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=9385, + ["minimum_added_cold_damage_if_have_crit_recently"]=9386, + ["minimum_added_cold_damage_per_frenzy_charge"]=4333, + ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=9387, + ["minimum_added_cold_damage_vs_chilled_enemies"]=9388, + ["minimum_added_cold_damage_while_affected_by_hatred"]=9389, + ["minimum_added_cold_damage_while_you_have_avians_might"]=9390, + ["minimum_added_fire_attack_damage_per_active_buff"]=1321, + ["minimum_added_fire_damage_if_blocked_recently"]=4335, + ["minimum_added_fire_damage_if_have_crit_recently"]=9391, + ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=9392, + ["minimum_added_fire_damage_per_active_buff"]=1323, + ["minimum_added_fire_damage_per_endurance_charge"]=9393, + ["minimum_added_fire_damage_to_attacks_per_1%_light_radius"]=9394, + ["minimum_added_fire_damage_to_attacks_per_10_strength"]=9395, + ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=9396, + ["minimum_added_fire_damage_vs_ignited_enemies"]=1320, + ["minimum_added_fire_spell_damage_per_active_buff"]=1322, + ["minimum_added_lightning_damage_if_have_crit_recently"]=9397, + ["minimum_added_lightning_damage_per_power_charge"]=9398, + ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=9399, + ["minimum_added_lightning_damage_to_attacks_per_10_intelligence"]=9400, + ["minimum_added_lightning_damage_to_spells_per_power_charge"]=9401, + ["minimum_added_lightning_damage_while_you_have_avians_might"]=9402, + ["minimum_added_physical_damage_if_have_crit_recently"]=9403, + ["minimum_added_physical_damage_per_endurance_charge"]=9404, + ["minimum_added_physical_damage_per_impaled_on_enemy"]=9405, + ["minimum_added_physical_damage_vs_bleeding_enemies"]=2544, + ["minimum_added_physical_damage_vs_frozen_enemies"]=1319, + ["minimum_added_physical_damage_vs_poisoned_enemies"]=9406, + ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=9407, + ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=9408, + ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=9409, + ["minimum_arrow_fire_damage_added_for_each_pierce"]=4850, + ["minimum_chaos_damage_to_return_to_melee_attacker"]=2248, + ["minimum_cold_damage_to_return_to_melee_attacker"]=2246, + ["minimum_endurance_charges_at_devotion_threshold"]=9410, + ["minimum_endurance_charges_per_stackable_unique_jewel"]=4223, + ["minimum_endurance_charges_while_on_low_life_+"]=9411, + ["minimum_fire_damage_to_return_to_melee_attacker"]=2245, + ["minimum_frenzy_charges_at_devotion_threshold"]=9412, + ["minimum_frenzy_charges_per_stackable_unique_jewel"]=4224, + ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=9413, + ["minimum_frenzy_power_endurance_charges"]=9414, + ["minimum_lightning_damage_to_return_on_block"]=2637, + ["minimum_lightning_damage_to_return_to_melee_attacker"]=2247, + ["minimum_physical_damage_to_reflect_to_self_on_attack"]=2243, + ["minimum_physical_damage_to_return_on_block"]=2636, + ["minimum_physical_damage_to_return_to_melee_attacker"]=2244, + ["minimum_power_charges_at_devotion_threshold"]=9415, + ["minimum_power_charges_per_stackable_unique_jewel"]=4225, + ["minimum_power_charges_while_on_low_life_+"]=9416, + ["minimum_rage"]=9417, + ["minimum_random_movement_velocity_+%_when_hit"]=9418, + ["minimum_unarmed_added_chaos_damage_for_each_poison_on_target"]=10667, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=9481, + ["minion_accuracy_rating"]=9419, + ["minion_accuracy_rating_+%"]=9421, + ["minion_accuracy_rating_per_10_devotion"]=9420, + ["minion_additional_base_critical_strike_chance"]=9422, + ["minion_additional_physical_damage_reduction_%"]=2321, + ["minion_additional_spell_block_%"]=2962, + ["minion_are_aggressive_if_have_blocked_recently"]=9423, + ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=9424, + ["minion_attack_and_cast_speed_+%"]=9425, + ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=9426, + ["minion_attack_and_cast_speed_+%_per_10_devotion"]=9427, + ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=3333, + ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=9428, + ["minion_attack_cooldown_recovery_+%"]=9429, + ["minion_attack_hits_knockback_chance_%"]=9430, + ["minion_attack_maximum_added_physical_damage"]=3828, + ["minion_attack_minimum_added_physical_damage"]=3828, + ["minion_attack_speed_+%"]=2965, + ["minion_attack_speed_+%_per_50_dex"]=9431, + ["minion_attacks_chance_to_blind_on_hit_%"]=9432, + ["minion_attacks_chance_to_taunt_on_hit_%"]=3491, + ["minion_base_fire_damage_%_to_convert_to_chaos"]=9433, + ["minion_base_physical_damage_%_to_convert_to_chaos"]=2010, + ["minion_base_physical_damage_%_to_convert_to_chaos_per_empty_gem_socket"]=2785, + ["minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item"]=2786, + ["minion_base_physical_damage_%_to_convert_to_cold"]=2005, + ["minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item"]=2777, + ["minion_base_physical_damage_%_to_convert_to_cold_per_socketed_green_gem"]=2776, + ["minion_base_physical_damage_%_to_convert_to_fire"]=2003, + ["minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item"]=2772, + ["minion_base_physical_damage_%_to_convert_to_fire_per_socketed_red_gem"]=2771, + ["minion_base_physical_damage_%_to_convert_to_lightning"]=2007, + ["minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item"]=2781, + ["minion_base_physical_damage_%_to_convert_to_lightning_per_socketed_blue_gem"]=2780, + ["minion_bleed_on_hit_with_attacks_%"]=2540, + ["minion_block_%"]=2961, + ["minion_cannot_crit"]=9434, + ["minion_cast_speed_+%"]=2966, + ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3502, + ["minion_chance_to_deal_double_damage_%"]=9435, + ["minion_chance_to_deal_double_damage_%_per_fortification"]=2023, + ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=9436, + ["minion_chance_to_freeze_%"]=9437, + ["minion_chance_to_freeze_shock_ignite_%"]=9438, + ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3441, + ["minion_chance_to_gain_power_charge_on_hit_%"]=9439, + ["minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=3439, + ["minion_chance_to_ignite_%"]=9440, + ["minion_chance_to_impale_on_attack_hit_%"]=9442, + ["minion_chance_to_impale_on_attack_hit_%_per_socketed_ghastly_jewel"]=9441, + ["minion_chance_to_shock_%"]=9443, + ["minion_chaos_damage_does_not_bypass_energy_shield"]=4466, + ["minion_chaos_resistance_%"]=2971, + ["minion_cold_damage_resistance_%"]=4250, + ["minion_cooldown_recovery_+%"]=9444, + ["minion_critical_strike_chance_+%"]=9445, + ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=9446, + ["minion_critical_strike_multiplier_+"]=9447, + ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=4226, + ["minion_damage_+%"]=2020, + ["minion_damage_+%_final_while_on_low_life_from_catarina_bloodline"]=9448, + ["minion_damage_+%_if_enemy_hit_recently"]=9452, + ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=2021, + ["minion_damage_+%_if_warcried_recently"]=9449, + ["minion_damage_+%_per_5_dex"]=2025, + ["minion_damage_+%_per_active_spectre"]=3335, + ["minion_damage_+%_per_fortification"]=2024, + ["minion_damage_+%_vs_abyssal_monsters"]=9453, + ["minion_damage_+%_while_affected_by_a_herald"]=9454, + ["minion_damage_against_ignited_enemies_+%"]=9450, + ["minion_damage_increases_and_reductions_also_affects_you"]=3810, + ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=9451, + ["minion_damage_taken_+%"]=9455, + ["minion_deal_no_non_cold_damage"]=9456, + ["minion_duration_+%_per_active_zombie"]=3334, + ["minion_elemental_damage_%_to_add_as_chaos"]=9457, + ["minion_elemental_resistance_%"]=2970, + ["minion_elemental_resistance_30%"]=9458, + ["minion_energy_shield_delay_-%"]=4467, + ["minion_energy_shield_leech_from_elemental_damage_permyriad"]=9459, + ["minion_evasion_rating_+%"]=9460, + ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=9461, + ["minion_fire_damage_resistance_%"]=9462, + ["minion_flask_charges_used_+%"]=2233, + ["minion_global_always_hit"]=9463, + ["minion_global_maximum_added_chaos_damage"]=3829, + ["minion_global_maximum_added_cold_damage"]=3830, + ["minion_global_maximum_added_fire_damage"]=3831, + ["minion_global_maximum_added_lightning_damage"]=3832, + ["minion_global_maximum_added_physical_damage"]=3833, + ["minion_global_minimum_added_chaos_damage"]=3829, + ["minion_global_minimum_added_cold_damage"]=3830, + ["minion_global_minimum_added_fire_damage"]=3831, + ["minion_global_minimum_added_lightning_damage"]=3832, + ["minion_global_minimum_added_physical_damage"]=3833, + ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=9464, + ["minion_has_unholy_might"]=9465, + ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=4468, + ["minion_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=9466, + ["minion_larger_aggro_radius"]=10948, + ["minion_life_%_to_gain_as_flesh_shield_on_nearby_minion_death"]=9467, + ["minion_life_increased_by_overcapped_fire_resistance"]=9468, + ["minion_life_leech_from_any_damage_permyriad"]=2968, + ["minion_life_leech_permyriad_vs_poisoned_enemies"]=9469, + ["minion_life_recovery_rate_+%"]=1812, + ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=3336, + ["minion_life_regeneration_rate_per_minute_%"]=2969, + ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=9470, + ["minion_life_regeneration_rate_per_second"]=9471, + ["minion_maim_on_hit_%"]=9472, + ["minion_malediction_on_hit"]=9473, + ["minion_maximum_all_elemental_resistances_%"]=9474, + ["minion_maximum_energy_shield_+%"]=1815, + ["minion_maximum_life_%_to_add_as_maximum_energy_shield"]=9475, + ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=4465, + ["minion_maximum_life_+%"]=1813, + ["minion_maximum_mana_+%"]=1814, + ["minion_melee_damage_+%"]=9476, + ["minion_minimum_power_charges"]=9477, + ["minion_movement_speed_+%"]=1816, + ["minion_movement_speed_+%_per_50_dex"]=9478, + ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=9479, + ["minion_no_critical_strike_multiplier"]=9480, + ["minion_no_extra_bleed_damage_while_moving"]=3251, + ["minion_physical_damage_%_to_add_as_cold"]=4251, + ["minion_physical_damage_%_to_add_as_fire"]=9482, + ["minion_physical_damage_reduction_rating"]=2963, + ["minion_projectile_speed_+%"]=9483, + ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=9485, + ["minion_raging_spirit_maximum_life_+%"]=9484, + ["minion_recover_%_maximum_life_on_minion_death"]=9486, + ["minion_recover_%_of_maximum_life_on_block"]=3119, + ["minion_recover_X_life_on_block"]=1809, + ["minion_skill_area_of_effect_+%"]=3082, + ["minion_skill_gem_level_+"]=1661, + ["minion_skill_gem_quality_+"]=9487, + ["minion_skill_mana_cost_+%"]=9488, + ["minion_spell_cooldown_recovery_+%"]=9489, + ["minion_spell_suppression_chance_%"]=9490, + ["minion_spells_chance_to_hinder_on_hit_%"]=9491, + ["minion_stun_threshold_reduction_+%"]=9492, + ["minion_summoned_recently_attack_and_cast_speed_+%"]=9493, + ["minion_summoned_recently_cannot_be_damaged"]=9494, + ["minion_summoned_recently_critical_strike_chance_+%"]=9495, + ["minion_summoned_recently_movement_speed_+%"]=9496, + ["minion_unholy_might_on_kill_duration_ms"]=2976, + ["minions_%_chance_to_blind_on_hit"]=4214, + ["minions_accuracy_is_equal_to_yours"]=9497, + ["minions_affected_by_affliction_have_onslaught"]=9498, + ["minions_attacks_overwhelm_%_physical_damage_reduction"]=9499, + ["minions_cannot_attack"]=9500, + ["minions_cannot_be_blinded"]=4213, + ["minions_cannot_be_damaged_after_summoned_ms"]=9501, + ["minions_cannot_be_killed_but_die_x_seconds_after_reaching_1_life"]=9502, + ["minions_cannot_cast_spells"]=9503, + ["minions_cannot_taunt_enemies"]=9504, + ["minions_chance_to_intimidate_on_hit_%"]=9505, + ["minions_chance_to_poison_on_hit_%"]=3233, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=9506, + ["minions_gain_half_your_strength_from_ascendancy"]=9507, + ["minions_gain_x_percent_of_your_resistances"]=9508, + ["minions_gain_your_spell_suppression_chance"]=9509, + ["minions_gain_your_strength"]=9510, + ["minions_get_shield_stats_instead_of_you"]=2239, + ["minions_go_crazy_on_crit_ms"]=9511, + ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=3388, + ["minions_have_%_chance_to_inflict_wither_on_hit"]=9516, + ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=9517, + ["minions_have_-%_of_thier_damage_cannot_be_reflected"]=9512, + ["minions_have_damage_+%_per_second_they_have_been_alive"]=9513, + ["minions_have_damage_taken_+%_per_second_they_have_been_alive"]=9514, + ["minions_have_no_armour_or_energy_shield"]=9515, + ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=2192, + ["minions_have_same_maximum_num_of_charges_as_owner"]=9518, + ["minions_have_same_num_of_charges_as_owner"]=9519, + ["minions_hits_can_only_kill_ignited_enemies"]=9520, + ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=9521, + ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=9522, + ["minions_recover_%_maximum_life_when_you_focus"]=9523, + ["minions_reflected_damage_taken_+%"]=9524, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=9525, + ["minions_use_parents_flasks_on_summon"]=2229, + ["minions_use_your_main_hand_base_attack_duration_from_weapon"]=9526, + ["minions_use_your_main_hand_base_crit_chance_from_weapon"]=9527, + ["mirage_archer_duration_+%"]=9533, + ["mirage_archers_do_not_attach"]=4476, + ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3926, + ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3780, + ["mirror_arrow_cooldown_speed_+%"]=3944, + ["missing_unreserved_life_%_gained_as_life_before_hit"]=9535, + ["missing_unreserved_life_%_gained_as_life_before_hit_per_defiance"]=9534, + ["missing_unreserved_mana_%_gained_as_mana_before_hit"]=9536, + ["mist_footprints_from_item"]=11050, + ["mod_granted_passive_hash"]=9537, + ["mod_granted_passive_hash_2"]=9538, + ["mod_granted_passive_hash_3"]=9539, + ["mod_granted_passive_hash_4"]=9540, + ["mod_granted_passive_hash_5"]=9541, + ["modifiers_to_attributes_instead_apply_to_ascendance"]=1234, + ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3633, + ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3634, + ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3632, + ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=9542, + ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3656, + ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=9543, + ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1853, + ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1858, + ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1863, + ["modifiers_to_minion_damage_also_affect_you"]=3809, + ["modifiers_to_minion_life_regeneration_also_affect_you"]=3815, + ["modifiers_to_minion_movement_speed_also_affect_you"]=3816, + ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=9544, + ["molten_shell_buff_effect_+%"]=4084, + ["molten_shell_damage_+%"]=3768, + ["molten_shell_duration_+%"]=9545, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=9546, + ["molten_strike_chain_count_+"]=9548, + ["molten_strike_damage_+%"]=3702, + ["molten_strike_num_of_additional_projectiles"]=4006, + ["molten_strike_projectiles_chain_when_impacting_ground"]=9547, + ["molten_strike_radius_+%"]=3872, + ["monster_base_block_%"]=1186, + ["monster_converts_on_death"]=9549, + ["monster_damage_+%_final_per_alive_packmate"]=9550, + ["monster_dropped_item_quantity_+%"]=9551, + ["monster_dropped_item_rarity_+%"]=9552, + ["monster_grants_no_flask_charges"]=9553, + ["monster_life_+%_final_from_map"]=1619, + ["monster_life_+%_final_from_rarity"]=1618, + ["monster_remove_x_flask_charges_from_all_flasks"]=9556, + ["monster_slain_experience_+%"]=9557, + ["mortar_barrage_mine_damage_+%"]=9558, + ["mortar_barrage_mine_num_projectiles"]=9559, + ["mortar_barrage_mine_throwing_speed_+%"]=9561, + ["mortar_barrage_mine_throwing_speed_halved_+%"]=9560, + ["movement_attack_skills_attack_speed_+%"]=9562, + ["movement_skills_cooldown_speed_+%"]=9563, + ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=9564, + ["movement_skills_cost_no_mana"]=3532, + ["movement_skills_deal_no_physical_damage"]=9565, + ["movement_skills_mana_cost_+%"]=4243, + ["movement_speed_+%_during_flask_effect"]=3246, + ["movement_speed_+%_for_4_seconds_on_block"]=3379, + ["movement_speed_+%_if_below_100_dexterity"]=9566, + ["movement_speed_+%_if_cast_a_mark_spell_recently"]=9574, + ["movement_speed_+%_if_crit_recently"]=9575, + ["movement_speed_+%_if_enemy_hit_recently"]=9576, + ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=9577, + ["movement_speed_+%_if_enemy_killed_recently"]=4321, + ["movement_speed_+%_if_have_cast_dash_recently"]=9578, + ["movement_speed_+%_if_have_not_taken_damage_recently"]=9579, + ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=9580, + ["movement_speed_+%_if_pierced_recently"]=4266, + ["movement_speed_+%_if_placed_trap_or_mine_recently"]=9567, + ["movement_speed_+%_if_used_a_warcry_recently"]=4239, + ["movement_speed_+%_on_throwing_trap"]=2830, + ["movement_speed_+%_per_5_rage"]=9581, + ["movement_speed_+%_per_chest_opened_recently"]=9582, + ["movement_speed_+%_per_endurance_charge"]=9583, + ["movement_speed_+%_per_nearby_corpse"]=9568, + ["movement_speed_+%_per_nearby_enemy"]=9584, + ["movement_speed_+%_per_nearby_enemy_up_to_50%"]=9569, + ["movement_speed_+%_per_poison_up_to_50%"]=9585, + ["movement_speed_+%_per_power_charge"]=9586, + ["movement_speed_+%_per_summoned_phantasm"]=9570, + ["movement_speed_+%_while_affected_by_grace"]=9587, + ["movement_speed_+%_while_bleeding"]=9588, + ["movement_speed_+%_while_dual_wielding"]=9589, + ["movement_speed_+%_while_fortified"]=3380, + ["movement_speed_+%_while_holding_shield"]=9590, + ["movement_speed_+%_while_not_affected_by_status_ailments"]=3370, + ["movement_speed_+%_while_not_using_flask"]=9591, + ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=9592, + ["movement_speed_+%_while_on_burning_ground"]=9593, + ["movement_speed_+%_while_poisoned"]=9594, + ["movement_speed_+%_while_you_have_cats_stealth"]=9595, + ["movement_speed_+%_while_you_have_energy_shield"]=9596, + ["movement_speed_+%_while_you_have_infusion"]=9597, + ["movement_speed_+%_while_you_have_two_linked_targets"]=9571, + ["movement_speed_bonus_when_throwing_trap_ms"]=2830, + ["movement_speed_cannot_be_reduced_below_base"]=3256, + ["movement_speed_is_%_of_base"]=9573, + ["movement_speed_is_equal_to_highest_linked_party_member"]=9572, + ["movement_velocity_+%_on_full_energy_shield"]=3027, + ["movement_velocity_+%_per_frenzy_charge"]=1849, + ["movement_velocity_+%_per_poison_stack"]=9598, + ["movement_velocity_+%_per_shock"]=2864, + ["movement_velocity_+%_per_totem"]=9601, + ["movement_velocity_+%_when_on_full_life"]=1847, + ["movement_velocity_+%_when_on_low_life"]=1846, + ["movement_velocity_+%_when_on_shocked_ground"]=2193, + ["movement_velocity_+%_while_at_maximum_power_charges"]=9602, + ["movement_velocity_+%_while_chilled"]=9603, + ["movement_velocity_+%_while_cursed"]=2677, + ["movement_velocity_+%_while_ignited"]=2863, + ["movement_velocity_+%_while_no_gems_in_boots"]=9599, + ["movement_velocity_+%_while_phasing"]=2660, + ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=9600, + ["movement_velocity_+1%_per_X_evasion_rating"]=2726, + ["movement_velocity_+x%_per_1800_evasion_rating_up_to_25%"]=2725, + ["movement_velocity_while_not_hit_+%"]=3283, + ["nearby_allies_have_onslaught"]=9604, + ["nearby_corpses_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=9605, + ["nearby_enemies_all_exposure_%_while_phasing"]=9606, + ["nearby_enemies_are_blinded_if_2_redeemer_items"]=4517, + ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=9607, + ["nearby_enemies_are_chilled"]=9608, + ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=9609, + ["nearby_enemies_are_crushed_while_you_have_X_rage"]=9610, + ["nearby_enemies_are_intimidated_if_2_warlord_items"]=4518, + ["nearby_enemies_are_intimidated_while_you_have_rage"]=9611, + ["nearby_enemies_are_unnerved"]=9612, + ["nearby_enemies_are_unnerved_if_2_elder_items"]=4519, + ["nearby_enemies_chilled_on_block"]=4331, + ["nearby_enemies_fire_dot_resistance_is_%_while_you_are_stationary"]=9614, + ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=9615, + ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=9616, + ["nearby_enemies_have_fire_exposure_while_you_are_at_maximum_rage"]=9617, + ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=9618, + ["nearby_enemies_lightning_resist_equal_to_yours"]=9619, + ["nearby_enemies_no_fire_dot_resistance_while_you_are_stationary"]=9620, + ["nearby_enemies_physical_damage_taken_+%_per_2fortification_on_you"]=9621, + ["nearby_non_player_allies_are_%_shocked_and_grant_you_charges_on_death"]=9622, + ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=9623, + ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3542, + ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=9624, + ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=9625, + ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=9626, + ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=9627, + ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=9628, + ["necromancer_minion_damage_+%_final"]=9629, + ["necropolis_corrupting_tempest_on_pack_death"]=9630, + ["necropolis_meteor_shower_on_pack_death"]=9631, + ["necropolis_pack_monster_level_+"]=9632, + ["necropolis_strongbox_on_pack_death"]=9633, + ["necropolis_tormented_spirit_on_pack_death"]=9634, + ["necrotic_footprints_from_item"]=9635, + ["never_block"]=3325, + ["never_freeze"]=2611, + ["never_freeze_or_chill"]=2612, + ["never_ignite"]=2610, + ["never_ignite_chill_freeze_shock"]=9636, + ["never_shock"]=2613, + ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=3200, + ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=3199, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=9637, + ["no_barrage_projectile_spread"]=9638, + ["no_critical_strike_multiplier"]=2729, + ["no_energy_shield"]=2213, + ["no_energy_shield_recharge_or_regeneration"]=2723, + ["no_energy_shield_recovery"]=3176, + ["no_evasion_rating"]=9639, + ["no_experience_gain"]=9640, + ["no_extra_bleed_damage_while_moving"]=3252, + ["no_extra_bleed_damage_while_target_is_moving"]=9641, + ["no_inherent_chance_to_block_while_dual_wielding"]=9642, + ["no_life_regeneration"]=2318, + ["no_mana"]=2227, + ["no_mana_regeneration"]=2319, + ["no_maximum_power_charges"]=3074, + ["no_physical_damage_reduction"]=9643, + ["no_physical_damage_reduction_rating"]=2212, + ["non_aura_hexes_gain_20%_effect_per_second"]=9644, + ["non_aura_vaal_skills_soul_requirement_+%"]=9645, + ["non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge"]=4400, + ["non_chaos_damage_%_to_add_as_chaos_damage_per_void_spawn"]=9646, + ["non_chaos_damage_to_add_as_chaos_damage_%"]=9647, + ["non_chilled_enemies_you_bleed_are_chilled"]=9648, + ["non_chilled_enemies_you_poison_are_chilled"]=9649, + ["non_critical_damage_multiplier_+%"]=2764, + ["non_critical_strikes_deal_no_damage"]=9650, + ["non_critical_strikes_penetrate_elemental_resistances_%"]=3617, + ["non_curse_aura_effect_+%"]=3626, + ["non_curse_aura_effect_+%_per_10_devotion"]=9652, + ["non_curse_aura_effect_+%_vs_enemies"]=3627, + ["non_curse_aura_effect_+%_while_linked"]=9653, + ["non_curse_aura_effect_+%_while_you_have_broken_ward"]=9651, + ["non_curse_auras_only_apply_to_you_and_linked_targets"]=9654, + ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=9655, + ["non_damaging_ailment_effect_+%"]=9658, + ["non_damaging_ailment_effect_+%_on_self"]=9659, + ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=9660, + ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=4393, + ["non_damaging_ailment_effect_+%_per_10_devotion"]=9661, + ["non_damaging_ailment_effect_+%_per_blue_skill_gem"]=9656, + ["non_damaging_ailment_effect_+%_per_equipped_elder_item"]=4394, + ["non_damaging_ailment_effect_+%_with_critical_strikes"]=9662, + ["non_damaging_ailment_effect_+%_with_critical_strikes_per_100_max_player_life"]=9657, + ["non_damaging_ailments_as_though_damage_+%_final"]=9663, + ["non_damaging_ailments_reflected_to_self"]=9664, + ["non_exceptional_support_gem_level_+"]=9666, + ["non_exceptional_support_gem_level_+_if_6_shaper_items"]=4560, + ["non_exerted_attacks_deal_no_damage"]=9667, + ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=4406, + ["non_instant_warcries_have_no_cooldown"]=9668, + ["non_piercing_projectiles_critical_strike_chance_+%"]=9669, + ["non_projectile_chaining_lightning_skill_additional_chains"]=9670, + ["non_spectre_minions_use_your_main_hand_base_attack_duration_from_weapon"]=9671, + ["non_travel_attack_skill_repeat_count"]=9672, + ["non_unique_flask_effect_+%"]=2802, + ["normal_monster_dropped_item_quantity_+%"]=9673, + ["nova_spells_cast_at_marked_target"]=9674, + ["nova_spells_cast_at_target_location"]=9675, + ["nova_spells_cast_at_target_location_description_mode"]=9675, + ["num_magic_utility_flasks_always_apply"]=4483, + ["num_magic_utility_flasks_always_apply_rightmost"]=4484, + ["num_of_additional_chains_at_max_frenzy_charges"]=1873, + ["number_of_additional_arrows"]=1841, + ["number_of_additional_arrows_if_havent_cast_dash_recently"]=1842, + ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=9676, + ["number_of_additional_chains_for_projectiles"]=4190, + ["number_of_additional_chains_for_projectiles_while_phasing"]=9677, + ["number_of_additional_clones"]=3146, + ["number_of_additional_curses_allowed"]=2215, + ["number_of_additional_curses_allowed_if_6_hunter_items"]=4557, + ["number_of_additional_curses_allowed_on_self"]=2216, + ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=9678, + ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=9679, + ["number_of_additional_hallowing_flame_allowed"]=9680, + ["number_of_additional_ignites_allowed"]=9681, + ["number_of_additional_mines_to_place"]=3609, + ["number_of_additional_mines_to_place_with_at_least_500_dex"]=9682, + ["number_of_additional_mines_to_place_with_at_least_500_int"]=9683, + ["number_of_additional_projectiles"]=1839, + ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=9684, + ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=9685, + ["number_of_additional_remote_mines_allowed"]=2303, + ["number_of_additional_searing_bond_totems_allowed"]=9686, + ["number_of_additional_shrapnel_ballistae_per_200_strength"]=3453, + ["number_of_additional_siege_ballistae_per_200_dexterity"]=3454, + ["number_of_additional_totems_allowed"]=2301, + ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3670, + ["number_of_additional_totems_allowed_per_maximum_power_charge"]=9687, + ["number_of_additional_traps_allowed"]=2302, + ["number_of_additional_traps_to_throw"]=9688, + ["number_of_allowed_firewalls"]=9689, + ["number_of_chains"]=1836, + ["number_of_crab_charges_lost_when_hit"]=4413, + ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=9692, + ["number_of_ghost_totems_allowed"]=9693, + ["number_of_golems_allowed_with_3_primordial_jewels"]=9694, + ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=3307, + ["number_of_projectiles_+%_final_from_skill"]=9695, + ["number_of_raging_spirits_is_limited_to_3"]=9696, + ["number_of_skeletons_allowed_per_2_old"]=9697, + ["number_of_support_ghosts_is_limited_to_3"]=9698, + ["number_of_zombies_allowed_+%"]=2638, + ["number_of_zombies_allowed_+1_per_X_intelligence_from_foulborn_baron"]=9699, + ["number_of_zombies_allowed_+1_per_X_strength"]=9700, + ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=3147, + ["objects_linked_to_your_permanenet_mercenaries_do_not_die_when_they_die"]=9701, + ["occultist_chaos_damage_+%_final"]=9702, + ["occultist_cold_damage_+%_final"]=9703, + ["occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery"]=3804, + ["occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds"]=3817, + ["occultist_immune_to_stun_while_has_energy_shield"]=3803, + ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3802, + ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=9704, + ["off_hand_attack_speed_+%_while_dual_wielding"]=9705, + ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=9706, + ["off_hand_base_attack_time_+_ms"]=9707, ["off_hand_base_weapon_attack_duration_ms"]=22, - ["off_hand_claw_mana_gain_on_hit"]=9572, - ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=9573, - ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=9574, - ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=9575, + ["off_hand_claw_mana_gain_on_hit"]=9708, + ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=9709, + ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=9710, + ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=9711, ["off_hand_maximum_attack_distance"]=26, ["off_hand_minimum_attack_distance"]=24, ["off_hand_quality"]=19, - ["off_hand_treat_enemy_resistances_as_negated_on_elemental_damage_hit"]=9576, + ["off_hand_treat_enemy_resistances_as_negated_on_elemental_damage_hit"]=9712, ["off_hand_weapon_type"]=11, - ["offering_duration_+%"]=9577, - ["offering_skills_do_not_require_corpses"]=9578, - ["offering_spells_effect_+%"]=4087, - ["offerings_also_buff_you"]=1193, - ["offerings_kill_affected_damagable_targets_when_offering_duration_expires"]=9579, - ["old_dagger_implicit_critical_strike_chance_+30%"]=1484, - ["old_dagger_implicit_critical_strike_chance_+40%"]=1485, - ["old_dagger_implicit_critical_strike_chance_+50%"]=1486, - ["old_do_not_use_base_life_leech_from_cold_damage_permyriad"]=1698, - ["old_do_not_use_base_life_leech_from_elemental_damage_permyriad"]=1709, - ["old_do_not_use_base_life_leech_from_fire_damage_permyriad"]=1693, - ["old_do_not_use_base_life_leech_from_lightning_damage_permyriad"]=1702, - ["old_do_not_use_base_life_leech_from_physical_damage_permyriad"]=1689, - ["old_do_not_use_base_mana_leech_from_lightning_damage_permyriad"]=1735, - ["old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item"]=2750, - ["old_do_not_use_life_leech_%_vs_frozen_enemies"]=1713, - ["old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1716, - ["old_do_not_use_life_leech_from_physical_damage_%"]=1671, - ["old_do_not_use_life_leech_from_physical_damage_with_claw_%"]=1676, - ["old_do_not_use_life_leech_from_spell_damage_%"]=1686, - ["old_do_not_use_life_leech_permyriad_on_crit"]=1718, - ["old_do_not_use_life_leech_permyriad_vs_shocked_enemies"]=1711, - ["old_do_not_use_local_flask_life_leech_%_while_healing"]=973, - ["old_do_not_use_local_flask_mana_leech_%_while_healing"]=977, - ["old_do_not_use_local_life_leech_from_physical_damage_%"]=1674, - ["old_do_not_use_local_mana_leech_from_physical_damage_%"]=1724, - ["old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=1064, - ["old_do_not_use_mana_leech_%_vs_shocked_enemies"]=1741, - ["old_do_not_use_mana_leech_from_physical_damage_%"]=1721, - ["old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge"]=1743, - ["old_do_not_use_mana_leech_from_physical_damage_with_claw_%"]=1681, - ["old_do_not_use_mana_leech_from_spell_damage_%"]=1727, - ["old_do_not_use_minion_life_leech_from_any_damage_permyriad"]=2933, - ["old_do_not_use_spell_block_%_from_assumed_block_value"]=1179, - ["old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"]=1180, - ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=9580, - ["on_leaving_banner_area_recover_%_of_planted_banner_resources"]=9581, - ["on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"]=9582, - ["on_weapon_global_damage_+%"]=1216, - ["one_handed_attack_speed_+%"]=3342, - ["one_handed_melee_accuracy_rating_+%"]=1460, - ["one_handed_melee_attack_speed_+%"]=1443, - ["one_handed_melee_cold_damage_+%"]=1316, - ["one_handed_melee_critical_strike_chance_+%"]=1502, - ["one_handed_melee_critical_strike_multiplier_+"]=1525, - ["one_handed_melee_fire_damage_+%"]=1315, - ["one_handed_melee_physical_damage_+%"]=1309, - ["one_handed_melee_weapon_ailment_damage_+%"]=1313, - ["one_handed_melee_weapon_hit_and_ailment_damage_+%"]=1310, - ["one_handed_weapon_ailment_damage_+%"]=1314, - ["one_handed_weapon_hit_and_ailment_damage_+%"]=1311, - ["onslaught_buff_duration_on_culling_strike_ms"]=3052, - ["onslaught_buff_duration_on_kill_ms"]=2667, - ["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=2668, - ["onslaught_effect_+%"]=3314, - ["onslaught_on_crit_duration_ms"]=2703, - ["onslaught_on_vaal_skill_use_duration_ms"]=2944, - ["onslaught_time_granted_on_kill_ms"]=3017, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=3018, - ["open_nearby_chests_on_cast_chance_%"]=9583, - ["open_nearby_chests_on_warcry"]=9584, - ["orb_of_storm_strike_rate_while_channelling_+%"]=9585, - ["orb_of_storms_cast_speed_+%"]=9586, - ["orb_of_storms_damage_+%"]=3761, - ["overcapped_fire_resistance_gain_as_fire_penetration"]=3006, - ["override_maximum_damage_resistance_%"]=9587, - ["override_weapon_base_critical_strike_chance"]=9588, - ["overwhelm_phys_reduction_%_while_have_sacrificial_zeal"]=9589, - ["pack_accompanied_by_a_harbinger"]=9590, - ["pack_accompanied_by_a_map_boss"]=9591, - ["pack_accompanied_by_a_rogue_exile"]=9592, - ["pack_create_lesser_shrine_on_death"]=9593, - ["pack_is_tormented"]=9594, - ["pack_size_+%"]=9595, - ["pack_upgrade_to_magic_chance_%"]=9596, - ["pack_upgrade_to_rare_chance_%"]=9597, - ["pain_attunement_keystone_spell_damage_+%_final"]=2218, - ["pantheon_abberath_ignite_duration_on_self_+%_final"]=9598, - ["pantheon_shakari_self_poison_duration_+%_final"]=9599, - ["passive_applies_to_minions"]=3097, - ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=9600, - ["passive_mastery_damage_taken_over_time_+%_final"]=9601, - ["passive_mastery_hit_ailment_damage_+%_final_vs_enemies_with_5+_poisons"]=9602, - ["passive_mastery_less_projectile_speed_+%_final"]=9603, - ["passive_mastery_less_skill_effect_duration_+%_final"]=9604, - ["passive_mastery_maximum_physical_attack_damage_+%_final_with_daggers"]=9605, - ["passive_mastery_more_projectile_speed_+%_final"]=9606, - ["passive_mastery_more_skill_effect_duration_+%_final"]=9607, - ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=9608, - ["passive_mastery_shock_proliferation_radius"]=9609, - ["passive_mastery_stun_duration_+%_final_with_two_hand_weapon"]=9610, - ["passive_notable_ignite_proliferation_radius"]=2243, - ["passive_skill_hits_stun_as_if_dealing_melee_fire_damage_+%_final"]=9611, - ["passive_skill_ignites_from_stunning_melee_hits_deal_damage_+%_final"]=9612, - ["pathfinder_flask_life_to_recover_+%_final"]=9613, - ["pathfinder_poison_damage_+100%_final_chance_during_flask_effect"]=9614, - ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=4453, - ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=4454, - ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=4455, - ["pathfinder_skills_physical_damage_%_to_add_as_chaos_if_charges_consumed_from_amethyst_flask"]=4456, - ["penance_brand_area_of_effect_+%"]=9615, - ["penance_brand_cast_speed_+%"]=9616, - ["penance_brand_damage_+%"]=9617, - ["penance_mark_phantasms_chance_to_grant_vaal_soul_on_death_%"]=9618, - ["penance_mark_phantasms_grant_%_increased_flask_charges"]=9619, - ["penetrate_elemental_resistance_%_per_15_ascendance"]=1213, - ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=9620, - ["penetrate_elemental_resistance_per_frenzy_charge_%"]=3020, - ["perandus_double_number_of_coins_found"]=9621, - ["permanent_damage_+%_per_second_of_chill"]=9633, - ["permanent_damage_+%_per_second_of_freeze"]=9634, - ["permanently_intimidate_enemies_you_hit_on_full_life"]=4279, - ["permanently_intimidate_enemy_on_block"]=9635, - ["petrified_blood_mana_reservation_efficiency_+%"]=9637, - ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=9636, - ["petrified_blood_reservation_+%"]=9638, - ["phantasm_refresh_duration_on_hit_vs_rare_or_unique_%_chance"]=9639, - ["phase_on_vaal_skill_use_duration_ms"]=2945, - ["phase_run_%_chance_to_not_consume_frenzy_charges"]=4050, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=9640, - ["phase_run_skill_effect_duration_+%"]=4142, - ["phase_through_objects"]=2845, - ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=4266, - ["phasing_for_4_seconds_on_kill_%"]=3489, - ["phasing_if_blocked_recently"]=9641, - ["phasing_on_rampage_threshold_ms"]=2992, - ["phasing_on_trap_triggered_by_an_enemy_ms"]=4266, - ["phys_cascade_trap_cooldown_speed_+%"]=9642, - ["phys_cascade_trap_damage_+%"]=9643, - ["phys_cascade_trap_duration_+%"]=9644, - ["phys_cascade_trap_number_of_additional_cascades"]=9645, - ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=9646, - ["physical_attack_damage_+%"]=1227, - ["physical_attack_damage_+%_while_holding_a_shield"]=1232, - ["physical_attack_damage_taken_+"]=2258, - ["physical_axe_damage_+%"]=1327, - ["physical_bow_damage_+%"]=1357, - ["physical_claw_damage_+%"]=1339, - ["physical_claw_damage_+%_when_on_low_life"]=2608, - ["physical_dagger_damage_+%"]=1345, - ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=4287, - ["physical_damage_%_added_as_fire_damage_on_kill"]=3230, - ["physical_damage_%_taken_from_mana_before_life"]=4193, - ["physical_damage_%_to_add_as_chaos"]=1959, - ["physical_damage_%_to_add_as_chaos_if_have_used_amethyst_flask_recently"]=9647, - ["physical_damage_%_to_add_as_chaos_vs_bleeding_enemies"]=4265, - ["physical_damage_%_to_add_as_chaos_vs_poisoned_enemies"]=9656, - ["physical_damage_%_to_add_as_cold"]=1957, - ["physical_damage_%_to_add_as_cold_if_have_used_sapphire_flask_recently"]=9648, - ["physical_damage_%_to_add_as_each_element_if_6_shaper_items"]=4520, - ["physical_damage_%_to_add_as_each_element_per_spirit_charge"]=9649, - ["physical_damage_%_to_add_as_fire"]=1956, - ["physical_damage_%_to_add_as_fire_damage_while_affected_by_anger"]=9657, - ["physical_damage_%_to_add_as_fire_if_have_crit_recently"]=9658, - ["physical_damage_%_to_add_as_fire_if_have_used_ruby_flask_recently"]=9650, - ["physical_damage_%_to_add_as_fire_per_rage"]=9659, - ["physical_damage_%_to_add_as_lightning"]=1958, - ["physical_damage_%_to_add_as_lightning_damage_per_hallowing_flame_consumed_by_ally_up_to_80%"]=9651, - ["physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath"]=9660, - ["physical_damage_%_to_add_as_lightning_if_have_used_topaz_flask_recently"]=9652, - ["physical_damage_%_to_add_as_random_element"]=2960, - ["physical_damage_%_to_add_as_random_element_while_ignited"]=9661, - ["physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=9662, - ["physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=9663, - ["physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=10872, - ["physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=9664, - ["physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3495, - ["physical_damage_+%"]=1255, - ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=4255, - ["physical_damage_+%_if_skill_costs_life"]=9665, - ["physical_damage_+%_per_10_rage"]=9666, - ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=9653, - ["physical_damage_+%_vs_ignited_enemies"]=9667, - ["physical_damage_+%_vs_poisoned_enemies"]=2983, - ["physical_damage_+%_while_affected_by_herald_of_purity"]=9668, - ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=4258, - ["physical_damage_+%_while_frozen"]=3368, - ["physical_damage_+%_while_life_leeching"]=1242, - ["physical_damage_+%_while_you_have_resolute_technique"]=10870, - ["physical_damage_+%_with_axes_swords"]=9669, - ["physical_damage_+%_with_unholy_might"]=9670, - ["physical_damage_as_fire_damage_vs_ignited_enemies_%"]=2201, - ["physical_damage_can_chill"]=2903, - ["physical_damage_can_freeze"]=2904, - ["physical_damage_can_shock"]=2905, - ["physical_damage_cannot_poison"]=2914, - ["physical_damage_from_hits_%_taken_as_random_element"]=9654, - ["physical_damage_on_block_+%"]=3242, - ["physical_damage_over_time_+%"]=1235, - ["physical_damage_over_time_multiplier_+_with_attacks"]=1274, - ["physical_damage_over_time_per_10_dexterity_+%"]=3822, - ["physical_damage_over_time_taken_+%_while_moving"]=9655, - ["physical_damage_per_endurance_charge_+%"]=2163, - ["physical_damage_reduction_%_at_devotion_threshold"]=9671, - ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=9679, - ["physical_damage_reduction_%_per_endurance_charge"]=2300, - ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=9673, - ["physical_damage_reduction_%_per_nearby_enemy"]=9681, - ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=9675, - ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=4086, - ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3480, - ["physical_damage_reduction_percent_per_frenzy_charge"]=9672, - ["physical_damage_reduction_percent_per_power_charge"]=9674, - ["physical_damage_reduction_rating_%_while_not_moving"]=4337, - ["physical_damage_reduction_rating_+%"]=1565, - ["physical_damage_reduction_rating_+%_against_projectiles"]=2487, - ["physical_damage_reduction_rating_+%_per_endurance_charge"]=9680, - ["physical_damage_reduction_rating_+%_per_frenzy_charge"]=1581, - ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3610, - ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2842, - ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2801, - ["physical_damage_reduction_rating_during_soul_gain_prevention"]=9676, - ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=9677, - ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=4402, - ["physical_damage_reduction_rating_per_endurance_charge"]=9678, - ["physical_damage_reduction_rating_per_level"]=2784, - ["physical_damage_reduction_rating_while_frozen"]=2827, - ["physical_damage_taken_%_as_chaos"]=2475, - ["physical_damage_taken_%_as_cold"]=2472, - ["physical_damage_taken_%_as_cold_if_4_redeemer_items"]=4501, - ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=9682, - ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=9683, - ["physical_damage_taken_%_as_fire"]=2471, - ["physical_damage_taken_%_as_fire_if_4_warlord_items"]=4502, - ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=9684, - ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=9685, - ["physical_damage_taken_%_as_lightning"]=2473, - ["physical_damage_taken_%_as_lightning_if_4_crusader_items"]=4503, - ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=9686, - ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=9687, - ["physical_damage_taken_+"]=2259, - ["physical_damage_taken_+%"]=2265, - ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=4259, - ["physical_damage_taken_+%_while_frozen"]=2828, - ["physical_damage_taken_+%_while_moving"]=4339, - ["physical_damage_taken_+_per_level"]=2260, - ["physical_damage_taken_+_vs_beasts"]=2952, - ["physical_damage_taken_on_minion_death"]=3051, - ["physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently"]=4365, - ["physical_damage_taken_recouped_as_life_%"]=9688, - ["physical_damage_to_return_to_melee_attacker"]=2226, - ["physical_damage_to_return_when_hit"]=2231, - ["physical_damage_while_dual_wielding_+%"]=1303, - ["physical_damage_with_attack_skills_+%"]=9689, - ["physical_damage_with_spell_skills_+%"]=9690, - ["physical_dot_multiplier_+"]=1271, - ["physical_dot_multiplier_+_if_crit_recently"]=9691, - ["physical_dot_multiplier_+_if_spent_life_recently"]=9692, - ["physical_dot_multiplier_+_while_wielding_axes_swords"]=9693, - ["physical_hit_and_dot_damage_%_taken_as_fire"]=9694, - ["physical_mace_damage_+%"]=1351, - ["physical_ranged_attack_damage_taken_+"]=2270, - ["physical_reflect_damage_taken_+%"]=2734, - ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=9695, - ["physical_skill_effect_duration_per_12_intelligence_+%"]=3824, - ["physical_skill_gem_level_+"]=9696, - ["physical_skill_gem_level_+_if_6_elder_items"]=4521, - ["physical_spell_skill_gem_level_+"]=1633, - ["physical_staff_damage_+%"]=1331, - ["physical_sword_damage_+%"]=1362, - ["physical_wand_damage_+%"]=1369, - ["physical_weapon_damage_+%_per_10_str"]=2569, - ["piercing_attacks_cause_bleeding"]=3445, - ["piercing_projectiles_critical_strike_chance_+%"]=9697, - ["placed_banner_attack_damage_+%"]=9698, - ["placing_traps_cooldown_recovery_+%"]=3485, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=9699, - ["plague_bearer_maximum_stored_poison_damage_+%"]=9700, - ["plague_bearer_movement_speed_+%_while_infecting"]=9701, - ["player_can_be_touched_by_tormented_spirits"]=9702, - ["player_far_shot"]=10852, - ["player_gain_rampage_stacks"]=10791, - ["player_is_harbinger_spawn_pack_on_kill_chance"]=127, - ["poachers_mark_curse_effect_+%"]=4030, - ["poachers_mark_duration_+%"]=3931, - ["poison_cursed_enemies_on_hit"]=4231, - ["poison_damage_+%_per_frenzy_charge"]=9704, - ["poison_damage_+%_per_power_charge"]=9705, - ["poison_damage_+%_vs_bleeding_enemies"]=9706, - ["poison_damage_+%_with_over_300_dexterity"]=9707, - ["poison_dot_multiplier_+"]=1287, - ["poison_dot_multiplier_+_per_frenzy_charge"]=9708, - ["poison_dot_multiplier_+_vs_bleeding_enemies"]=9709, - ["poison_dot_multiplier_+_with_spells"]=9710, - ["poison_duration_+%_per_poison_applied_recently"]=9711, - ["poison_duration_+%_per_power_charge"]=9712, - ["poison_duration_+%_with_over_150_intelligence"]=9713, - ["poison_from_critical_strikes_damage_+%_final"]=4271, - ["poison_on_critical_strike"]=9714, - ["poison_on_critical_strike_with_bow"]=1479, - ["poison_on_critical_strike_with_dagger"]=1476, - ["poison_on_hit_during_flask_effect_%"]=3326, - ["poison_on_melee_critical_strike_%"]=2797, - ["poison_on_melee_hit"]=4282, - ["poison_on_non_poisoned_enemies_damage_+%"]=9715, - ["poison_reflected_to_self"]=9716, - ["poison_time_passed_+%"]=9717, - ["poisonous_concoction_damage_+%"]=9718, - ["poisonous_concoction_flask_charges_consumed_+%"]=9719, - ["poisonous_concoction_skill_area_of_effect_+%"]=9720, - ["portal_alternate_destination_chance_permyriad"]=9721, - ["posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers"]=9722, - ["power_charge_duration_+%"]=2166, - ["power_charge_duration_+%_final"]=9723, - ["power_charge_on_block_%_chance"]=4294, - ["power_charge_on_kill_percent_chance_while_holding_shield"]=9724, - ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=9725, - ["power_charge_on_spell_block_%_chance"]=9726, - ["power_frenzy_or_endurance_charge_on_kill_%"]=3636, - ["power_only_conduit"]=2286, - ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3996, - ["power_siphon_attack_speed_+%"]=3887, - ["power_siphon_damage_+%"]=3692, - ["power_siphon_number_of_additional_projectiles"]=9727, - ["precision_aura_effect_+%"]=3389, - ["precision_mana_reservation_+%"]=9732, - ["precision_mana_reservation_-50%_final"]=9731, - ["precision_mana_reservation_efficiency_+%"]=9730, - ["precision_mana_reservation_efficiency_+100%"]=9729, - ["precision_mana_reservation_efficiency_-2%_per_1"]=9728, - ["precision_reserves_no_mana"]=9733, - ["prevent_monster_heal"]=1932, - ["prevent_monster_heal_duration_+%"]=1933, - ["prevent_projectile_chaining_%_chance"]=9734, - ["pride_aura_effect_+%"]=9735, - ["pride_chance_to_deal_double_damage_%"]=9736, - ["pride_chance_to_impale_with_attacks_%"]=9737, - ["pride_intimidate_enemy_for_4_seconds_on_hit"]=9738, - ["pride_mana_reservation_+%"]=9741, - ["pride_mana_reservation_efficiency_+%"]=9740, - ["pride_mana_reservation_efficiency_-2%_per_1"]=9739, - ["pride_physical_damage_+%"]=9742, - ["pride_reserves_no_mana"]=9743, - ["pride_your_impaled_debuff_lasts_+_additional_hits"]=9744, - ["primalist_ascendancy_expanded_main_inventory"]=9745, - ["primordial_altar_burning_ground_on_death_%"]=9421, - ["primordial_altar_chilled_ground_on_death_%"]=9422, - ["primordial_jewel_count"]=10744, - ["prismatic_rain_beam_frequency_+%"]=9746, - ["prismatic_skills_always_inflict_frostburn"]=9747, - ["prismatic_skills_always_inflict_sapped"]=9748, - ["prismatic_skills_always_scorch"]=9749, - ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=9750, - ["profane_ground_you_create_inflicts_malediction_on_enemies"]=9751, - ["projecitle_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=9752, - ["projectile_attack_damage_+%"]=2021, - ["projectile_attack_damage_+%_during_flask_effect"]=9753, - ["projectile_attack_damage_+%_per_200_accuracy"]=4332, - ["projectile_attack_damage_+%_with_at_least_200_dex"]=4387, - ["projectile_attack_damage_+%_with_claw_or_dagger"]=9754, - ["projectile_attack_skill_critical_strike_chance_+%"]=4341, - ["projectile_attack_skill_critical_strike_multiplier_+"]=9755, - ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=4342, - ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=4343, - ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=4344, - ["projectile_base_number_of_targets_to_pierce"]=1814, - ["projectile_base_number_of_targets_to_pierce_if_2_hunter_items"]=4482, - ["projectile_chain_from_terrain_chance_%"]=1851, - ["projectile_damage_+%"]=2020, - ["projectile_damage_+%_in_blood_stance"]=10240, - ["projectile_damage_+%_max_as_distance_travelled_increases"]=4105, - ["projectile_damage_+%_max_before_distance_increase"]=9756, - ["projectile_damage_+%_per_16_dexterity"]=9757, - ["projectile_damage_+%_per_chain"]=9758, - ["projectile_damage_+%_per_pierced_enemy"]=9759, - ["projectile_damage_+%_per_power_charge"]=2665, - ["projectile_damage_+%_per_remaining_chain"]=9760, - ["projectile_damage_+%_vs_chained_enemy"]=9761, - ["projectile_damage_+%_vs_nearby_enemies"]=9762, - ["projectile_damage_taken_+%"]=2773, - ["projectile_freeze_chance_%"]=2728, - ["projectile_ignite_chance_%"]=2727, - ["projectile_non_chaos_damage_to_add_as_chaos_damage_%_if_chained"]=9763, - ["projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain"]=9764, - ["projectile_number_to_split"]=9765, - ["projectile_object_collision_behaviour_only_explode"]=9766, - ["projectile_return_%_chance"]=2847, - ["projectile_shock_chance_%"]=2729, - ["projectile_speed_+%_per_20_strength"]=9767, - ["projectile_speed_+%_per_frenzy_charge"]=2664, - ["projectile_speed_+%_with_daggers"]=9768, - ["projectile_speed_+1%_per_X_evasion_rating_up_to_75%"]=9769, - ["projectile_speed_variation_+%_final_with_melee_weapon_attacks"]=9770, - ["projectile_spell_cooldown_modifier_ms"]=9771, - ["projectile_weakness_curse_effect_+%"]=4031, - ["projectile_weakness_duration_+%"]=3932, - ["projectiles_always_pierce_you"]=9772, - ["projectiles_chain_any_number_of_additional_times_at_close_range"]=9773, - ["projectiles_fork"]=3606, - ["projectiles_from_spells_cannot_pierce"]=9774, - ["projectiles_move_at_player_speed"]=9775, - ["projectiles_pierce_1_additional_target_per_10_stat_value"]=9776, - ["projectiles_pierce_1_additional_target_per_15_stat_value"]=9777, - ["projectiles_pierce_all_nearby_targets"]=9778, - ["projectiles_pierce_while_phasing"]=9779, - ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=9780, - ["projectiles_return"]=2847, - ["protective_link_duration_+%"]=9781, - ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=9782, - ["puncture_damage_+%"]=3681, - ["puncture_duration_+%"]=3923, - ["puncture_maim_on_hit_%_chance"]=3990, - ["punishment_curse_effect_+%"]=4039, - ["punishment_duration_+%"]=3936, - ["punishment_ignores_hexproof"]=2631, - ["punishment_no_reservation"]=9783, - ["puppet_master_base_duration_ms"]=9784, - ["purge_additional_enemy_resistance_%"]=9785, - ["purge_damage_+%"]=9786, - ["purge_dot_multiplier_+_per_100ms_duration_expired"]=9787, - ["purge_duration_+%"]=9788, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=9789, - ["purity_of_elements_aura_effect_+%"]=3381, - ["purity_of_elements_mana_reservation_+%"]=4062, - ["purity_of_elements_mana_reservation_efficiency_+%"]=9791, - ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=9790, - ["purity_of_elements_reserves_no_mana"]=9792, - ["purity_of_fire_aura_effect_+%"]=3382, - ["purity_of_fire_mana_reservation_+%"]=4063, - ["purity_of_fire_mana_reservation_efficiency_+%"]=9794, - ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=9793, - ["purity_of_fire_reserves_no_mana"]=9795, - ["purity_of_ice_aura_effect_+%"]=3383, - ["purity_of_ice_mana_reservation_+%"]=4059, - ["purity_of_ice_mana_reservation_efficiency_+%"]=9797, - ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=9796, - ["purity_of_ice_reserves_no_mana"]=9798, - ["purity_of_lightning_aura_effect_+%"]=3384, - ["purity_of_lightning_mana_reservation_+%"]=4064, - ["purity_of_lightning_mana_reservation_efficiency_+%"]=9800, - ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=9799, - ["purity_of_lightning_reserves_no_mana"]=9801, - ["quality_display_animate_weapon_is_gem"]=9555, - ["quality_display_blade_trap_is_gem"]=5081, - ["quality_display_bladefall_is_gem"]=5115, - ["quality_display_bladestorm_is_gem"]=5118, - ["quality_display_essence_drain_is_gem"]=4017, - ["quality_display_firewall_is_gem"]=9554, - ["quality_display_forbidden_rite_is_gem"]=10118, - ["quality_display_herald_of_agony_is_gem"]=9207, - ["quality_display_hydrosphere_is_gem"]=7205, - ["quality_display_perforate_is_gem"]=5262, - ["quality_display_plague_bearer_is_gem"]=5903, - ["quality_display_rage_vortex_is_gem"]=9823, - ["quality_display_raise_zombie_is_gem"]=2184, - ["quality_display_snipe_is_gem"]=10113, - ["quality_display_spike_slam_is_gem"]=10230, - ["quality_display_summon_skeleton_is_gem"]=2186, - ["quality_display_tectonic_slam_is_gem"]=10389, - ["quality_display_tornado_shot_is_gem"]=3974, - ["quality_display_withering_step_is_gem"]=10104, - ["quantity_of_items_dropped_by_maimed_enemies_+%"]=4195, - ["quick_dodge_added_cooldown_count"]=9802, - ["quick_dodge_travel_distance_+%"]=9803, - ["quick_guard_additional_physical_damage_reduction_%"]=9804, - ["quicksilver_flasks_apply_to_nearby_allies"]=9805, - ["quiver_hellscaping_speed_+%"]=7124, - ["quiver_mod_effect_+%"]=9806, - ["quiver_projectiles_pierce_1_additional_target"]=9807, - ["quiver_projectiles_pierce_2_additional_targets"]=9808, - ["quiver_projectiles_pierce_3_additional_targets"]=9809, - ["rage_decay_speed_+%"]=9818, - ["rage_effect_+%"]=9819, - ["rage_effects_doubled"]=9812, - ["rage_effects_tripled"]=9811, - ["rage_grants_cast_speed_instead"]=9820, - ["rage_grants_spell_damage_instead"]=9821, - ["rage_loss_delay_ms"]=9822, - ["rage_slash_sacrifice_rage_%"]=9823, - ["rage_vortex_area_of_effect_+%"]=9824, - ["rage_vortex_damage_+%"]=9825, - ["raging_spirit_damage_+%"]=3675, - ["raging_spirits_always_ignite"]=9826, - ["raging_spirits_refresh_duration_on_hit_vs_rare_or_unique_%_chance"]=9827, - ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=9828, - ["raider_chance_to_evade_attacks_+%_final_during_onslaught"]=9829, - ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=9830, - ["raider_passive_evade_melee_attacks_while_onslaughted_+%_final"]=3320, - ["raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"]=3321, - ["raider_shock_maximum_effect_override_%"]=9831, - ["raider_shocks_you_apply_can_stack_up_to_50_times"]=9832, - ["rain_of_arrows_additional_sequence_chance_%"]=9833, - ["rain_of_arrows_attack_speed_+%"]=3881, - ["rain_of_arrows_damage_+%"]=3674, - ["rain_of_arrows_radius_+%"]=3838, - ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=9834, - ["rain_of_arrows_toxic_rain_active_skill_bleeding_damage_+%_final"]=9835, - ["raise_spectre_gem_level_+"]=1640, - ["raise_spectre_mana_cost_+%"]=9836, - ["raise_zombie_does_not_use_corpses"]=9837, - ["raise_zombie_gem_level_+"]=1639, - ["raised_beast_spectres_have_farruls_farric_presence"]=9838, - ["raised_beast_spectres_have_farruls_fertile_presence"]=9839, - ["raised_beast_spectres_have_farruls_wild_presence"]=9840, - ["raised_beast_spectres_have_x_random_modifiers_per_area"]=9841, - ["raised_zombie_%_chance_to_taunt"]=9842, - ["raised_zombies_are_usable_as_corpses_when_alive"]=9843, - ["raised_zombies_cover_in_ash_on_hit_%"]=9844, - ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=9845, - ["raised_zombies_have_avatar_of_fire"]=9846, - ["rallying_cry_buff_effect_+%"]=4138, - ["rallying_cry_buff_effect_1%_per_3_stat_value"]=9847, - ["rallying_cry_buff_effect_1%_per_5_stat_value"]=9848, - ["rallying_cry_duration_+%"]=3944, - ["rallying_cry_exerts_x_additional_attacks"]=9849, - ["random_curse_on_hit_%"]=2536, - ["random_curse_on_hit_%_against_uncursed_enemies"]=9850, - ["random_curse_when_hit_%_ignoring_curse_limit"]=9851, - ["random_projectile_direction"]=9852, - ["random_skill_gem_level_+_index"]=1642, - ["random_skill_gem_level_+_level"]=1642, - ["randomly_cursed_when_totems_die_curse_level"]=2575, - ["ranged_weapon_physical_damage_+%"]=2022, - ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=9853, - ["rare_beasts_keep_modifiers_when_raised_as_spectres"]=9854, - ["rare_or_unique_monster_dropped_item_rarity_+%"]=9855, - ["rarity_of_items_dropped_by_maimed_enemies_+%"]=4196, - ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=9856, - ["reave_attack_speed_per_reave_stack_+%"]=3987, - ["reave_damage_+%"]=3668, - ["reave_radius_+%"]=3835, - ["recall_sigil_target_search_range_+%"]=9857, - ["receive_bleeding_chance_%_when_hit_by_attack"]=9858, - ["received_attack_hits_have_impale_chance_%"]=9859, - ["recharge_flasks_on_crit"]=2989, - ["recharge_flasks_on_crit_while_affected_by_precision"]=9860, - ["reckoning_cooldown_speed_+%"]=3904, - ["reckoning_damage_+%"]=3733, - ["recoup_%_of_damage_taken_by_your_totems_as_life"]=9861, - ["recoup_effects_apply_over_3_seconds_instead"]=9862, - ["recoup_life_effects_apply_over_3_seconds_instead"]=9863, - ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=9864, - ["recover_%_energy_shield_when_you_block_spell_damage_while_wielding_a_staff"]=9882, - ["recover_%_es_on_kill_per_different_mastery"]=1697, - ["recover_%_life_on_kill_per_different_mastery"]=1682, - ["recover_%_life_when_gaining_adrenaline"]=9883, - ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=9884, - ["recover_%_life_when_you_chill_a_non_chilled_enemy"]=9865, - ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=9885, - ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=9886, - ["recover_%_mana_on_kill_per_different_mastery"]=1714, - ["recover_%_mana_when_attached_brand_expires"]=9887, - ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=9866, - ["recover_%_maximum_life_on_enemy_ignited"]=4325, - ["recover_%_maximum_life_on_flask_use"]=4366, - ["recover_%_maximum_life_on_kill"]=1773, - ["recover_%_maximum_life_on_killing_chilled_enemy"]=9888, - ["recover_%_maximum_life_on_killing_cursed_enemy"]=9867, - ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=9889, - ["recover_%_maximum_life_on_killing_poisoned_enemy"]=9890, - ["recover_%_maximum_life_on_mana_flask_use"]=4367, - ["recover_%_maximum_life_on_rampage_threshold"]=2978, - ["recover_%_maximum_life_on_suppressing_spell"]=9868, - ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=3078, - ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=9869, - ["recover_%_maximum_mana_on_activating_tincture"]=9891, - ["recover_%_maximum_mana_on_kill"]=1775, - ["recover_%_maximum_mana_on_kill_while_tincture_active"]=9892, - ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1776, - ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=9870, - ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=9893, - ["recover_%_maximum_mana_when_enemy_shocked"]=4194, - ["recover_%_of_maximum_life_on_block"]=3084, - ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=9894, - ["recover_%_of_skill_mana_cost_per_unspent_chain_up_to_50%"]=9895, - ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=9871, - ["recover_10%_of_maximum_mana_on_skill_use_%"]=3499, - ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=9872, - ["recover_X_life_on_block"]=1784, - ["recover_X_life_on_enemy_ignited"]=9873, - ["recover_X_life_on_suppressing_spell"]=9874, - ["recover_X_life_when_fortification_expires_per_fortification_lost"]=9875, - ["recover_X_mana_on_killing_frozen_enemy"]=9876, - ["recover_energy_shield_%_on_consuming_steel_shard"]=9877, - ["recover_energy_shield_%_on_kill"]=1774, - ["recover_es_as_well_as_life_from_life_regeneration"]=9878, - ["recover_from_blood_phylactery_on_savage_hit_taken"]=9879, - ["recover_life_for_ancestral_totem_equal_to_damage_taken_from_hits"]=9880, - ["recover_maximum_life_on_enemy_killed_chance_%"]=9881, - ["recover_permyriad_life_on_skill_use"]=9896, - ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=9897, - ["recover_x_energy_shield_on_spell_block"]=9898, - ["recover_x_energy_shield_on_suppressing_spell"]=9899, - ["reduce_enemy_chaos_resistance_%"]=9900, - ["reduce_enemy_chaos_resistance_with_weapons_%"]=3616, - ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=9901, - ["reduce_enemy_cold_resistance_with_weapons_%"]=3613, - ["reduce_enemy_dodge_%"]=1931, - ["reduce_enemy_elemental_resistance_%"]=3004, - ["reduce_enemy_elemental_resistance_with_weapons_%"]=3623, - ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=9902, - ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=9903, - ["reduce_enemy_fire_resistance_with_weapons_%"]=3614, - ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=9904, - ["reduce_enemy_lightning_resistance_with_weapons_%"]=3615, - ["reflect_%_of_physical_damage_prevented"]=9905, - ["reflect_chill_and_freeze_%_chance"]=9906, - ["reflect_curses"]=2500, - ["reflect_damage_taken_+%"]=4293, - ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=9907, - ["reflect_hexes_chance_%"]=2501, - ["reflect_non_damaging_ailments_%_chance"]=9908, - ["reflect_shocks"]=9909, - ["reflect_shocks_to_enemies_in_radius"]=9910, - ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=9911, - ["refresh_ignite_duration_on_critical_strike_chance_%"]=9912, - ["regenerate_%_armour_as_life_over_1_second_on_block"]=2856, - ["regenerate_%_energy_shield_over_1_second_when_stunned"]=9913, - ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=9914, - ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=9919, - ["regenerate_%_life_over_1_second_when_stunned"]=9915, - ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=9920, - ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=9921, - ["regenerate_1_rage_per_x_life_regeneration"]=9916, - ["regenerate_1_rage_per_x_mana_regeneration"]=9917, - ["regenerate_X_life_over_1_second_on_cast"]=2855, - ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=9918, - ["regenerate_energy_shield_instead_of_life"]=10831, - ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=9922, - ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=4022, - ["rejuvenation_totem_aura_effect_+%"]=4023, - ["remove_%_of_mana_on_hit"]=9934, - ["remove_ailments_and_burning_on_gaining_adrenaline"]=9923, - ["remove_all_damaging_ailments_on_warcry"]=9925, - ["remove_bleed_on_flask_use"]=3410, - ["remove_bleed_on_life_flask_use"]=9926, - ["remove_bleeding_on_warcry"]=9927, - ["remove_chill_and_freeze_on_flask_use"]=9928, - ["remove_corrupted_blood_when_you_use_a_flask"]=3411, - ["remove_curse_on_mana_flask_use"]=9929, - ["remove_damaging_ailments_on_swapping_stance"]=9930, - ["remove_elemental_ailments_on_curse_cast_%"]=9931, - ["remove_ignite_and_burning_on_flask_use"]=9932, - ["remove_maim_and_hinder_on_flask_use"]=9933, - ["remove_rage_on_reaching_max_to_gain_adrenaline_for_1_second_per_x_rage_lost"]=9935, - ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=9936, - ["remove_random_ailment_when_you_warcry"]=9937, - ["remove_random_charge_on_hit_%"]=9938, - ["remove_random_damaging_ailment_when_ward_restores"]=9939, - ["remove_random_elemental_ailment_on_mana_flask_use"]=9940, - ["remove_random_non_elemental_ailment_on_life_flask_use"]=9941, - ["remove_shock_on_flask_use"]=9942, - ["remove_x_curses_after_channelling_for_2_seconds"]=9943, - ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=9944, - ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=9945, - ["reservation_efficiency_-2%_per_1"]=2257, - ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=9946, - ["resist_all_%"]=9947, - ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=9948, - ["resist_all_elements_%_per_10_levels"]=2786, - ["resist_all_elements_%_per_endurance_charge"]=1644, - ["resist_all_elements_%_with_200_or_more_strength"]=4386, - ["resist_all_elements_+%_while_holding_shield"]=1645, - ["resolute_technique"]=10853, - ["restore_energy_shield_and_mana_when_you_focus_%"]=9949, - ["restore_life_and_mana_on_warcry_%"]=3224, - ["restore_life_on_warcry_%"]=3225, - ["restore_ward_on_block_%"]=9950, - ["restore_ward_on_hit_%"]=9951, - ["retaliation_skill_additional_use_window_duration_ms"]=9952, - ["retaliation_skill_area_of_effect_+%"]=9953, - ["retaliation_skill_cost_+%"]=9954, - ["retaliation_skill_damage_+%"]=9955, - ["retaliation_skill_keep_use_requirement_and_prevent_cooldown_on_use_chance_%"]=9956, - ["retaliation_skill_speed_+%"]=9957, - ["retaliation_skill_stun_duration_+%"]=9958, - ["retaliation_skill_stun_threshold_+%"]=9959, - ["retaliation_skills_all_ailment_duration_+%"]=9960, - ["retaliation_skills_become_usable_every_x_ms"]=9961, - ["retaliation_skills_debilitate_on_hit_ms"]=9962, - ["retaliation_skills_fortify_on_melee_hit"]=9963, - ["retaliation_skills_gain_X_rage_per_enemy_hit"]=9964, - ["retaliation_use_window_duration_+%"]=9965, - ["returned_projectile_speed_+%"]=9966, - ["returning_projectiles_always_pierce"]=9967, - ["revive_golems_if_killed_by_enemies_ms"]=9968, - ["revive_spectre_if_killed_by_enemies_ms"]=9969, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=9970, - ["righteous_fire_damage_+%"]=3698, - ["righteous_fire_radius_+%"]=3846, - ["righteous_fire_spell_damage_+%"]=4137, - ["riposte_cooldown_speed_+%"]=3909, - ["riposte_damage_+%"]=3745, - ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=9971, - ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=9972, - ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=9973, - ["runegraft_offhand_attack_speed_+%_final"]=9974, - ["ruthless_hits_intimidate_enemies_for_4_seconds"]=9975, - ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=9976, - ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=9977, - ["sacrifice_%_life_on_spell_skill"]=9980, - ["sacrifice_%_life_to_fire_additional_arrow_for_each_100_life"]=9978, - ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=9981, - ["sacrifice_minion_to_fire_X_additional_arrows"]=9979, - ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=9982, - ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=9983, - ["sanctify_damage_+%"]=9984, - ["sap_on_critical_strike_with_lightning_skills"]=9985, - ["saresh_bloodline_main_hand_supported_by_cruelty"]=9986, - ["scion_helmet_skill_maximum_totems_+"]=645, - ["scorch_effect_+%"]=9987, - ["scorch_enemies_in_close_range_on_block"]=9988, - ["scorched_earth_ground_scorch_duration_ms"]=4334, - ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=9989, - ["scourge_arrow_damage_+%"]=9990, - ["searing_bond_damage_+%"]=3693, - ["searing_bond_totem_placement_speed_+%"]=3998, - ["searing_totem_elemental_resistance_+%"]=4143, - ["secondary_maximum_base_chaos_damage"]=1426, - ["secondary_maximum_base_cold_damage"]=1424, - ["secondary_maximum_base_fire_damage"]=1423, - ["secondary_maximum_base_lightning_damage"]=1425, - ["secondary_maximum_base_physical_damage"]=1422, - ["secondary_minimum_base_chaos_damage"]=1426, - ["secondary_minimum_base_cold_damage"]=1424, - ["secondary_minimum_base_fire_damage"]=1423, - ["secondary_minimum_base_lightning_damage"]=1425, - ["secondary_minimum_base_physical_damage"]=1422, - ["secondary_skill_effect_duration_+%"]=9991, - ["seismic_cry_exerted_attack_damage_+%"]=9992, - ["seismic_cry_minimum_power"]=9993, - ["self_bleed_duration_+%"]=9994, - ["self_chill_duration_-%"]=1892, - ["self_cold_damage_on_reaching_maximum_power_charges"]=9995, - ["self_critical_strike_multiplier_+%_while_ignited"]=9996, - ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1538, - ["self_curse_duration_+%"]=2195, - ["self_curse_duration_+%_per_10_devotion"]=9997, - ["self_cursed_with_level_x_vulnerability"]=3146, - ["self_damaging_ailment_duration_+%_per_barkskin_stack"]=9998, - ["self_debilitated"]=9999, - ["self_elemental_status_duration_-%"]=1891, - ["self_elemental_status_duration_-%_per_10_devotion"]=10000, - ["self_fire_damage_on_skill_use"]=2236, - ["self_freeze_duration_-%"]=1894, - ["self_ignite_duration_-%"]=1895, - ["self_offering_effect_+%"]=1194, - ["self_physical_damage_on_movement_skill_use"]=10001, - ["self_physical_damage_on_skill_use_%_mana_cost"]=2237, - ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=10002, - ["self_poison_duration_+%"]=10003, - ["self_shock_duration_-%"]=1893, - ["self_take_no_extra_damage_from_critical_strikes"]=4312, - ["self_take_no_extra_damage_from_critical_strikes_if_energy_shield_recharge_started_recently"]=10004, - ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=10005, - ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=10006, - ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=10007, - ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=10008, - ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=10009, - ["self_take_no_extra_damage_from_critical_strikes_while_no_gems_in_gloves"]=10010, - ["sentinel_minion_cooldown_speed_+%"]=10011, - ["sentinel_of_purity_damage_+%"]=10012, - ["serpent_strike_maximum_snakes"]=10013, - ["shaper_apparition_ability"]=767, - ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=3024, - ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=3029, - ["share_endurance_charges_with_party_within_distance"]=2178, - ["share_frenzy_charges_with_party_within_distance"]=2179, - ["share_power_charges_with_party_within_distance"]=2180, - ["shatter_has_%_chance_to_cover_in_frost"]=10014, - ["shatter_on_kill_vs_bleeding_enemies"]=10015, - ["shatter_on_kill_vs_poisoned_enemies"]=10016, - ["shatter_on_killing_blow_chance_%"]=10017, - ["shattering_steel_%_chance_to_not_consume_ammo"]=10021, - ["shattering_steel_damage_+%"]=10018, - ["shattering_steel_fortify_on_hit_close_range"]=10019, - ["shattering_steel_number_of_additional_projectiles"]=10020, - ["shield_armour_+%"]=2018, - ["shield_attack_speed_+%"]=1452, - ["shield_block_%"]=1163, - ["shield_charge_attack_speed_+%"]=3883, - ["shield_charge_damage_+%"]=3682, - ["shield_charge_damage_per_target_hit_+%"]=4113, - ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=10022, - ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=10023, - ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=10023, - ["shield_crush_and_spectral_shield_throw_skill_physical_damage_%_to_convert_to_lightning"]=10024, - ["shield_crush_attack_speed_+%"]=10025, - ["shield_crush_damage_+%"]=10026, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=10027, - ["shield_defences_+%_per_10_devotion"]=10028, - ["shield_evasion_rating_+%"]=2015, - ["shield_maximum_energy_shield_+%"]=1996, - ["shield_physical_damage_reduction_rating_+%"]=2016, - ["shield_spell_block_%"]=1164, - ["shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy"]=2838, - ["shock_and_freeze_apply_elemental_damage_taken_+%"]=10029, - ["shock_attackers_for_4_seconds_on_block_%_chance"]=10030, - ["shock_duration_+%"]=1881, - ["shock_effect_+%"]=10033, - ["shock_effect_+%_while_es_leeching"]=10031, - ["shock_effect_+%_with_critical_strikes"]=10034, - ["shock_effect_against_cursed_enemies_+%"]=10032, - ["shock_maximum_magnitude_+"]=10036, - ["shock_maximum_magnitude_is_60%"]=10035, - ["shock_minimum_damage_taken_increase_%"]=4466, - ["shock_nearby_enemies_for_x_ms_when_you_focus"]=10038, - ["shock_nova_and_storm_call_all_damage_can_ignite"]=10039, - ["shock_nova_and_storm_call_ignite_damage_+100%_final_chance"]=10040, - ["shock_nova_damage_+%"]=3708, - ["shock_nova_radius_+%"]=3859, - ["shock_nova_ring_chance_to_shock_+%"]=10041, - ["shock_nova_ring_damage_+%"]=4014, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=10042, - ["shock_prevention_ms_when_shocked"]=2921, - ["shock_proliferation_radius_is_at_least_15"]=2247, - ["shock_self_for_x_ms_when_you_focus"]=10037, - ["shocked_chilled_effect_on_self_+%"]=10043, - ["shocked_effect_on_self_+%"]=10044, - ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=10045, - ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3628, - ["shocked_ground_base_magnitude_override"]=10046, - ["shocked_ground_effect_on_self_+%"]=2175, - ["shocked_ground_on_death_%"]=10047, - ["shocked_ground_when_hit_%"]=2601, - ["shocks_enemies_that_hit_actor_while_actor_is_casting"]=1937, - ["shocks_reflected_to_self"]=2798, - ["shockwave_slam_attack_speed_+%"]=3889, - ["shockwave_slam_damage_+%"]=3764, - ["shockwave_slam_explosion_damage_+%_final"]=3589, - ["shockwave_slam_radius_+%"]=3872, - ["shockwave_totem_cast_speed_+%"]=4026, - ["shockwave_totem_damage_+%"]=3709, - ["shockwave_totem_radius_+%"]=3874, - ["should_use_alternate_fortify"]=2290, - ["shrapnel_ballista_num_additional_arrows"]=10048, - ["shrapnel_ballista_num_pierce"]=10049, - ["shrapnel_ballista_projectile_speed_+%"]=10050, - ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=10051, - ["shrapnel_shot_damage_+%"]=3749, - ["shrapnel_shot_physical_damage_%_to_add_as_lightning_damage"]=4051, - ["shrapnel_shot_radius_+%"]=3861, - ["shrapnel_trap_area_of_effect_+%"]=10053, - ["shrapnel_trap_damage_+%"]=10054, - ["shrapnel_trap_number_of_additional_secondary_explosions"]=10055, - ["shrine_buff_effect_on_self_+%"]=2836, - ["shrine_effect_duration_+%"]=2837, - ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=4318, - ["siege_ballista_attack_speed_+%"]=3888, - ["siege_ballista_damage_+%"]=3762, - ["siege_ballista_totem_placement_speed_+%"]=4028, - ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=10056, - ["sigil_attached_target_damage_+%"]=10057, - ["sigil_attached_target_damage_taken_+%"]=10058, - ["sigil_critical_strike_chance_+%"]=10059, - ["sigil_critical_strike_multiplier_+"]=10060, - ["sigil_damage_+%"]=10061, - ["sigil_damage_+%_per_10_devotion"]=10062, - ["sigil_duration_+%"]=10063, - ["sigil_recall_cooldown_speed_+%"]=10064, - ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=10065, - ["sigil_repeat_frequency_+%"]=10066, - ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=10067, - ["sigil_target_search_range_+%"]=10068, - ["silver_flask_display_onslaught"]=3622, - ["silver_footprints_from_item"]=10884, - ["siphon_duration_+%"]=3947, - ["siphon_life_leech_from_damage_permyriad"]=4017, - ["skeletal_chains_area_of_effect_+%"]=10069, - ["skeletal_chains_cast_speed_+%"]=10070, - ["skeletal_chains_damage_+%"]=3758, - ["skeleton_attack_speed_+%"]=10071, - ["skeleton_cast_speed_+%"]=10072, - ["skeleton_duration_+%"]=1803, - ["skeleton_movement_speed_+%"]=10073, - ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=10075, - ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=10074, - ["skeletons_are_permanent_minions"]=10076, - ["skeletons_damage_+%"]=3683, - ["skill_area_of_effect_+%_if_enemy_killed_recently"]=4243, - ["skill_area_of_effect_+%_in_sand_stance"]=10245, - ["skill_area_of_effect_+%_per_active_mine"]=3491, - ["skill_area_of_effect_+%_per_power_charge"]=2153, - ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=2154, - ["skill_area_of_effect_+%_while_no_frenzy_charges"]=2080, - ["skill_area_of_effect_when_unarmed_+%"]=3077, - ["skill_cooldown_-%"]=1921, - ["skill_effect_duration_+%"]=1919, - ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=4245, - ["skill_effect_duration_+%_per_10_strength"]=2038, - ["skill_effect_duration_+%_per_red_skill_gem"]=10077, - ["skill_effect_duration_+%_while_affected_by_malevolence"]=10078, - ["skill_effect_duration_+%_with_bow_skills"]=10079, - ["skill_effect_duration_+%_with_non_curse_aura_skills"]=10080, - ["skill_effect_duration_per_100_int"]=3114, - ["skill_internal_monster_responsiveness_+%"]=1953, - ["skill_life_cost_+"]=1914, - ["skill_life_cost_+%_final_while_on_low_life"]=10083, - ["skill_life_cost_+_with_channelling_skills"]=10081, - ["skill_life_cost_+_with_non_channelling_skills"]=10082, - ["skill_mana_cost_+"]=1915, - ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=4357, - ["skill_mana_cost_+_while_affected_by_clarity"]=10084, - ["skill_mana_cost_+_with_channelling_skills"]=10085, - ["skill_mana_cost_+_with_non_channelling_skills"]=10087, - ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=10089, - ["skill_max_unleash_seals"]=10745, - ["skill_range_+%"]=1954, - ["skill_repeat_count"]=1917, + ["offering_duration_+%"]=9713, + ["offering_skills_do_not_require_corpses"]=9714, + ["offering_spells_effect_+%"]=4123, + ["offerings_also_buff_you"]=1216, + ["offerings_kill_affected_damagable_targets_when_offering_duration_expires"]=9715, + ["old_dagger_implicit_critical_strike_chance_+30%"]=1507, + ["old_dagger_implicit_critical_strike_chance_+40%"]=1508, + ["old_dagger_implicit_critical_strike_chance_+50%"]=1509, + ["old_do_not_use_base_life_leech_from_cold_damage_permyriad"]=1721, + ["old_do_not_use_base_life_leech_from_elemental_damage_permyriad"]=1732, + ["old_do_not_use_base_life_leech_from_fire_damage_permyriad"]=1716, + ["old_do_not_use_base_life_leech_from_lightning_damage_permyriad"]=1725, + ["old_do_not_use_base_life_leech_from_physical_damage_permyriad"]=1712, + ["old_do_not_use_base_mana_leech_from_lightning_damage_permyriad"]=1758, + ["old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item"]=2782, + ["old_do_not_use_life_leech_%_vs_frozen_enemies"]=1736, + ["old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1739, + ["old_do_not_use_life_leech_from_physical_damage_%"]=1694, + ["old_do_not_use_life_leech_from_physical_damage_with_claw_%"]=1699, + ["old_do_not_use_life_leech_from_spell_damage_%"]=1709, + ["old_do_not_use_life_leech_permyriad_on_crit"]=1741, + ["old_do_not_use_life_leech_permyriad_vs_shocked_enemies"]=1734, + ["old_do_not_use_local_flask_life_leech_%_while_healing"]=997, + ["old_do_not_use_local_flask_mana_leech_%_while_healing"]=1001, + ["old_do_not_use_local_life_leech_from_physical_damage_%"]=1697, + ["old_do_not_use_local_mana_leech_from_physical_damage_%"]=1747, + ["old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=1088, + ["old_do_not_use_mana_leech_%_vs_shocked_enemies"]=1764, + ["old_do_not_use_mana_leech_from_physical_damage_%"]=1744, + ["old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge"]=1766, + ["old_do_not_use_mana_leech_from_physical_damage_with_claw_%"]=1704, + ["old_do_not_use_mana_leech_from_spell_damage_%"]=1750, + ["old_do_not_use_minion_life_leech_from_any_damage_permyriad"]=2967, + ["old_do_not_use_spell_block_%_from_assumed_block_value"]=1203, + ["old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"]=1204, + ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=9716, + ["on_leaving_banner_area_recover_%_of_planted_banner_resources"]=9717, + ["on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"]=9718, + ["on_weapon_global_damage_+%"]=1239, + ["one_handed_attack_speed_+%"]=3378, + ["one_handed_melee_accuracy_rating_+%"]=1484, + ["one_handed_melee_attack_speed_+%"]=1467, + ["one_handed_melee_cold_damage_+%"]=1340, + ["one_handed_melee_critical_strike_chance_+%"]=1525, + ["one_handed_melee_critical_strike_multiplier_+"]=1548, + ["one_handed_melee_fire_damage_+%"]=1339, + ["one_handed_melee_physical_damage_+%"]=1333, + ["one_handed_melee_weapon_ailment_damage_+%"]=1337, + ["one_handed_melee_weapon_hit_and_ailment_damage_+%"]=1334, + ["one_handed_weapon_ailment_damage_+%"]=1338, + ["one_handed_weapon_hit_and_ailment_damage_+%"]=1335, + ["onslaught_buff_duration_on_culling_strike_ms"]=3086, + ["onslaught_buff_duration_on_kill_ms"]=2693, + ["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=2694, + ["onslaught_effect_+%"]=3350, + ["onslaught_on_crit_duration_ms"]=2730, + ["onslaught_on_vaal_skill_use_duration_ms"]=2978, + ["onslaught_time_granted_on_kill_ms"]=3051, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=3052, + ["open_nearby_chests_on_cast_chance_%"]=9719, + ["open_nearby_chests_on_warcry"]=9720, + ["orb_of_storm_strike_rate_while_channelling_+%"]=9721, + ["orb_of_storms_cast_speed_+%"]=9722, + ["orb_of_storms_damage_+%"]=3797, + ["overcapped_fire_resistance_gain_as_fire_penetration"]=3040, + ["override_maximum_damage_resistance_%"]=9723, + ["override_weapon_base_critical_strike_chance"]=9724, + ["overwhelm_phys_reduction_%_while_have_sacrificial_zeal"]=9725, + ["pack_accompanied_by_a_harbinger"]=9726, + ["pack_accompanied_by_a_map_boss"]=9727, + ["pack_accompanied_by_a_rogue_exile"]=9728, + ["pack_create_lesser_shrine_on_death"]=9729, + ["pack_is_tormented"]=9730, + ["pack_size_+%"]=9731, + ["pack_upgrade_to_magic_chance_%"]=9732, + ["pack_upgrade_to_rare_chance_%"]=9733, + ["pact_cast_speed_+%"]=10905, + ["pact_cooldown_speed_+%"]=10906, + ["pain_attunement_keystone_spell_damage_+%_final"]=2241, + ["pantheon_abberath_ignite_duration_on_self_+%_final"]=9734, + ["pantheon_shakari_self_poison_duration_+%_final"]=9735, + ["passive_applies_to_minions"]=3131, + ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=9736, + ["passive_mastery_damage_taken_over_time_+%_final"]=9737, + ["passive_mastery_hit_ailment_damage_+%_final_vs_enemies_with_5+_poisons"]=9738, + ["passive_mastery_less_projectile_speed_+%_final"]=9739, + ["passive_mastery_less_skill_effect_duration_+%_final"]=9740, + ["passive_mastery_maximum_physical_attack_damage_+%_final_with_daggers"]=9741, + ["passive_mastery_more_projectile_speed_+%_final"]=9742, + ["passive_mastery_more_skill_effect_duration_+%_final"]=9743, + ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=9744, + ["passive_mastery_shock_proliferation_radius"]=9745, + ["passive_mastery_stun_duration_+%_final_with_two_hand_weapon"]=9746, + ["passive_notable_ignite_proliferation_radius"]=2266, + ["passive_skill_hits_stun_as_if_dealing_melee_fire_damage_+%_final"]=9747, + ["passive_skill_ignites_from_stunning_melee_hits_deal_damage_+%_final"]=9748, + ["pathfinder_flask_life_to_recover_+%_final"]=9749, + ["pathfinder_poison_damage_+100%_final_chance_during_flask_effect"]=9750, + ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=4491, + ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=4492, + ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=4493, + ["pathfinder_skills_physical_damage_%_to_add_as_chaos_if_charges_consumed_from_amethyst_flask"]=4494, + ["penance_brand_area_of_effect_+%"]=9751, + ["penance_brand_cast_speed_+%"]=9752, + ["penance_brand_damage_+%"]=9753, + ["penance_mark_phantasms_chance_to_grant_vaal_soul_on_death_%"]=9754, + ["penance_mark_phantasms_grant_%_increased_flask_charges"]=9755, + ["penetrate_elemental_resistance_%_per_15_ascendance"]=1236, + ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=9756, + ["penetrate_elemental_resistance_per_frenzy_charge_%"]=3054, + ["perandus_double_number_of_coins_found"]=9757, + ["permanenet_mercenary_chance_to_taunt_on_hit_%"]=9769, + ["permanenet_mercenary_damage_+%_and_minion_damage_+%"]=9770, + ["permanenet_mercenary_damage_+%_final_and_minion_damage_+%_final_per_equipped_unique"]=9771, + ["permanenet_mercenary_damage_taken_recouped_as_life_%_if_life_lower_than_parents_life"]=9772, + ["permanenet_mercenary_maximum_life_+%_and_minion_maximum_life_+%"]=9773, + ["permanenet_mercenary_non_curse_aura_effect_+%"]=9774, + ["permanent_damage_+%_per_second_of_chill"]=9775, + ["permanent_damage_+%_per_second_of_freeze"]=9776, + ["permanently_intimidate_enemies_you_hit_on_full_life"]=4315, + ["permanently_intimidate_enemy_on_block"]=9777, + ["petrified_blood_mana_reservation_efficiency_+%"]=9779, + ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=9778, + ["petrified_blood_reservation_+%"]=9780, + ["phantasm_refresh_duration_on_hit_vs_rare_or_unique_%_chance"]=9781, + ["phase_on_vaal_skill_use_duration_ms"]=2979, + ["phase_run_%_chance_to_not_consume_frenzy_charges"]=4086, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=9782, + ["phase_run_skill_effect_duration_+%"]=4178, + ["phase_through_objects"]=2879, + ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=4302, + ["phasing_for_4_seconds_on_kill_%"]=3525, + ["phasing_if_blocked_recently"]=9783, + ["phasing_on_rampage_threshold_ms"]=3026, + ["phasing_on_trap_triggered_by_an_enemy_ms"]=4302, + ["phys_cascade_trap_cooldown_speed_+%"]=9784, + ["phys_cascade_trap_damage_+%"]=9785, + ["phys_cascade_trap_duration_+%"]=9786, + ["phys_cascade_trap_number_of_additional_cascades"]=9787, + ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=9788, + ["physical_attack_damage_+%"]=1250, + ["physical_attack_damage_+%_while_holding_a_shield"]=1255, + ["physical_attack_damage_taken_+"]=2281, + ["physical_axe_damage_+%"]=1351, + ["physical_bow_damage_+%"]=1381, + ["physical_claw_damage_+%"]=1363, + ["physical_claw_damage_+%_when_on_low_life"]=2634, + ["physical_dagger_damage_+%"]=1369, + ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=4323, + ["physical_damage_%_added_as_fire_damage_on_kill"]=3266, + ["physical_damage_%_taken_from_mana_before_life"]=4229, + ["physical_damage_%_to_add_as_chaos"]=1982, + ["physical_damage_%_to_add_as_chaos_if_have_used_amethyst_flask_recently"]=9789, + ["physical_damage_%_to_add_as_chaos_vs_bleeding_enemies"]=4301, + ["physical_damage_%_to_add_as_chaos_vs_poisoned_enemies"]=9798, + ["physical_damage_%_to_add_as_cold"]=1980, + ["physical_damage_%_to_add_as_cold_if_have_used_sapphire_flask_recently"]=9790, + ["physical_damage_%_to_add_as_each_element_if_6_shaper_items"]=4558, + ["physical_damage_%_to_add_as_each_element_per_spirit_charge"]=9791, + ["physical_damage_%_to_add_as_fire"]=1979, + ["physical_damage_%_to_add_as_fire_damage_while_affected_by_anger"]=9799, + ["physical_damage_%_to_add_as_fire_if_have_crit_recently"]=9800, + ["physical_damage_%_to_add_as_fire_if_have_used_ruby_flask_recently"]=9792, + ["physical_damage_%_to_add_as_fire_per_rage"]=9801, + ["physical_damage_%_to_add_as_lightning"]=1981, + ["physical_damage_%_to_add_as_lightning_damage_per_hallowing_flame_consumed_by_ally_up_to_80%"]=9793, + ["physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath"]=9802, + ["physical_damage_%_to_add_as_lightning_if_have_used_topaz_flask_recently"]=9794, + ["physical_damage_%_to_add_as_random_element"]=2994, + ["physical_damage_%_to_add_as_random_element_while_ignited"]=9803, + ["physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=9804, + ["physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=9805, + ["physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=11039, + ["physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=9806, + ["physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3531, + ["physical_damage_+%"]=1278, + ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=4291, + ["physical_damage_+%_if_skill_costs_life"]=9807, + ["physical_damage_+%_per_10_rage"]=9808, + ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=9795, + ["physical_damage_+%_vs_ignited_enemies"]=9809, + ["physical_damage_+%_vs_poisoned_enemies"]=3017, + ["physical_damage_+%_while_affected_by_herald_of_purity"]=9810, + ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=4294, + ["physical_damage_+%_while_frozen"]=3404, + ["physical_damage_+%_while_life_leeching"]=1265, + ["physical_damage_+%_while_you_have_resolute_technique"]=11037, + ["physical_damage_+%_with_axes_swords"]=9811, + ["physical_damage_+%_with_unholy_might"]=9812, + ["physical_damage_as_fire_damage_vs_ignited_enemies_%"]=2224, + ["physical_damage_can_chill"]=2937, + ["physical_damage_can_freeze"]=2938, + ["physical_damage_can_shock"]=2939, + ["physical_damage_cannot_poison"]=2948, + ["physical_damage_from_hits_%_taken_as_random_element"]=9796, + ["physical_damage_on_block_+%"]=3278, + ["physical_damage_over_time_+%"]=1258, + ["physical_damage_over_time_multiplier_+_with_attacks"]=1298, + ["physical_damage_over_time_per_10_dexterity_+%"]=3858, + ["physical_damage_over_time_taken_+%_while_moving"]=9797, + ["physical_damage_per_endurance_charge_+%"]=2186, + ["physical_damage_reduction_%_at_devotion_threshold"]=9813, + ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=9821, + ["physical_damage_reduction_%_per_endurance_charge"]=2323, + ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=9815, + ["physical_damage_reduction_%_per_nearby_enemy"]=9823, + ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=9817, + ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=4122, + ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3516, + ["physical_damage_reduction_percent_per_frenzy_charge"]=9814, + ["physical_damage_reduction_percent_per_power_charge"]=9816, + ["physical_damage_reduction_rating_%_while_not_moving"]=4375, + ["physical_damage_reduction_rating_+%"]=1587, + ["physical_damage_reduction_rating_+%_against_projectiles"]=2513, + ["physical_damage_reduction_rating_+%_per_endurance_charge"]=9822, + ["physical_damage_reduction_rating_+%_per_frenzy_charge"]=1603, + ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3646, + ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2876, + ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2835, + ["physical_damage_reduction_rating_during_soul_gain_prevention"]=9818, + ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=9819, + ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=4440, + ["physical_damage_reduction_rating_per_endurance_charge"]=9820, + ["physical_damage_reduction_rating_per_level"]=2818, + ["physical_damage_reduction_rating_while_frozen"]=2861, + ["physical_damage_taken_%_as_chaos"]=2500, + ["physical_damage_taken_%_as_cold"]=2497, + ["physical_damage_taken_%_as_cold_if_4_redeemer_items"]=4539, + ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=9824, + ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=9825, + ["physical_damage_taken_%_as_fire"]=2496, + ["physical_damage_taken_%_as_fire_if_4_warlord_items"]=4540, + ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=9826, + ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=9827, + ["physical_damage_taken_%_as_lightning"]=2498, + ["physical_damage_taken_%_as_lightning_if_4_crusader_items"]=4541, + ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=9828, + ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=9829, + ["physical_damage_taken_+"]=2282, + ["physical_damage_taken_+%"]=2288, + ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=4295, + ["physical_damage_taken_+%_while_frozen"]=2862, + ["physical_damage_taken_+%_while_moving"]=4377, + ["physical_damage_taken_+_per_level"]=2283, + ["physical_damage_taken_+_vs_beasts"]=2986, + ["physical_damage_taken_on_minion_death"]=3085, + ["physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently"]=4403, + ["physical_damage_taken_recouped_as_life_%"]=9830, + ["physical_damage_to_return_to_melee_attacker"]=2249, + ["physical_damage_to_return_when_hit"]=2254, + ["physical_damage_while_dual_wielding_+%"]=1327, + ["physical_damage_with_attack_skills_+%"]=9831, + ["physical_damage_with_spell_skills_+%"]=9832, + ["physical_dot_multiplier_+"]=1295, + ["physical_dot_multiplier_+_if_crit_recently"]=9833, + ["physical_dot_multiplier_+_if_spent_life_recently"]=9834, + ["physical_dot_multiplier_+_while_wielding_axes_swords"]=9835, + ["physical_hit_and_dot_damage_%_taken_as_fire"]=9836, + ["physical_mace_damage_+%"]=1375, + ["physical_ranged_attack_damage_taken_+"]=2293, + ["physical_reflect_damage_taken_+%"]=2761, + ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=9837, + ["physical_skill_effect_duration_per_12_intelligence_+%"]=3860, + ["physical_skill_gem_level_+"]=9838, + ["physical_skill_gem_level_+_if_6_elder_items"]=4559, + ["physical_spell_skill_gem_level_+"]=1656, + ["physical_staff_damage_+%"]=1355, + ["physical_sword_damage_+%"]=1386, + ["physical_wand_damage_+%"]=1393, + ["physical_weapon_damage_+%_per_10_str"]=2595, + ["piercing_attacks_cause_bleeding"]=3481, + ["piercing_projectiles_critical_strike_chance_+%"]=9839, + ["placed_banner_attack_damage_+%"]=9840, + ["placing_traps_cooldown_recovery_+%"]=3521, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=9841, + ["plague_bearer_maximum_stored_poison_damage_+%"]=9842, + ["plague_bearer_movement_speed_+%_while_infecting"]=9843, + ["player_can_be_touched_by_tormented_spirits"]=9844, + ["player_far_shot"]=11019, + ["player_gain_rampage_stacks"]=10954, + ["player_is_harbinger_spawn_pack_on_kill_chance"]=130, + ["poachers_mark_curse_effect_+%"]=4066, + ["poachers_mark_duration_+%"]=3967, + ["poison_cursed_enemies_on_hit"]=4267, + ["poison_damage_+%_per_frenzy_charge"]=9846, + ["poison_damage_+%_per_power_charge"]=9847, + ["poison_damage_+%_vs_bleeding_enemies"]=9848, + ["poison_damage_+%_with_over_300_dexterity"]=9849, + ["poison_dot_multiplier_+"]=1311, + ["poison_dot_multiplier_+_per_frenzy_charge"]=9850, + ["poison_dot_multiplier_+_vs_bleeding_enemies"]=9851, + ["poison_dot_multiplier_+_with_spells"]=9852, + ["poison_duration_+%_per_poison_applied_recently"]=9853, + ["poison_duration_+%_per_power_charge"]=9854, + ["poison_duration_+%_with_over_150_intelligence"]=9855, + ["poison_from_critical_strikes_damage_+%_final"]=4307, + ["poison_on_critical_strike"]=9856, + ["poison_on_critical_strike_with_bow"]=1502, + ["poison_on_critical_strike_with_dagger"]=1499, + ["poison_on_hit_during_flask_effect_%"]=3362, + ["poison_on_melee_critical_strike_%"]=2831, + ["poison_on_melee_hit"]=4318, + ["poison_on_non_poisoned_enemies_damage_+%"]=9857, + ["poison_reflected_to_self"]=9858, + ["poison_time_passed_+%"]=9859, + ["poisonous_concoction_damage_+%"]=9860, + ["poisonous_concoction_flask_charges_consumed_+%"]=9861, + ["poisonous_concoction_skill_area_of_effect_+%"]=9862, + ["portal_alternate_destination_chance_permyriad"]=9863, + ["posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers"]=9864, + ["power_charge_duration_+%"]=2189, + ["power_charge_duration_+%_final"]=9865, + ["power_charge_on_block_%_chance"]=4330, + ["power_charge_on_kill_percent_chance_while_holding_shield"]=9866, + ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=9867, + ["power_charge_on_spell_block_%_chance"]=9868, + ["power_frenzy_or_endurance_charge_on_kill_%"]=3672, + ["power_only_conduit"]=2309, + ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=4032, + ["power_siphon_attack_speed_+%"]=3923, + ["power_siphon_damage_+%"]=3728, + ["power_siphon_number_of_additional_projectiles"]=9869, + ["precision_aura_effect_+%"]=3425, + ["precision_mana_reservation_+%"]=9874, + ["precision_mana_reservation_-50%_final"]=9873, + ["precision_mana_reservation_efficiency_+%"]=9872, + ["precision_mana_reservation_efficiency_+100%"]=9871, + ["precision_mana_reservation_efficiency_-2%_per_1"]=9870, + ["precision_reserves_no_mana"]=9875, + ["prevent_monster_heal"]=1955, + ["prevent_monster_heal_duration_+%"]=1956, + ["prevent_projectile_chaining_%_chance"]=9876, + ["pride_aura_effect_+%"]=9877, + ["pride_chance_to_deal_double_damage_%"]=9878, + ["pride_chance_to_impale_with_attacks_%"]=9879, + ["pride_intimidate_enemy_for_4_seconds_on_hit"]=9880, + ["pride_mana_reservation_+%"]=9883, + ["pride_mana_reservation_efficiency_+%"]=9882, + ["pride_mana_reservation_efficiency_-2%_per_1"]=9881, + ["pride_physical_damage_+%"]=9884, + ["pride_reserves_no_mana"]=9885, + ["pride_your_impaled_debuff_lasts_+_additional_hits"]=9886, + ["primalist_ascendancy_expanded_main_inventory"]=9887, + ["primordial_altar_burning_ground_on_death_%"]=9554, + ["primordial_altar_chilled_ground_on_death_%"]=9555, + ["primordial_jewel_count"]=10903, + ["prismatic_rain_beam_frequency_+%"]=9888, + ["prismatic_skills_always_inflict_frostburn"]=9889, + ["prismatic_skills_always_inflict_sapped"]=9890, + ["prismatic_skills_always_scorch"]=9891, + ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=9892, + ["profane_ground_you_create_inflicts_malediction_on_enemies"]=9893, + ["projecitle_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=9894, + ["projectile_attack_damage_+%"]=2044, + ["projectile_attack_damage_+%_during_flask_effect"]=9895, + ["projectile_attack_damage_+%_per_200_accuracy"]=4370, + ["projectile_attack_damage_+%_per_400_accuracy"]=4369, + ["projectile_attack_damage_+%_with_at_least_200_dex"]=4425, + ["projectile_attack_damage_+%_with_claw_or_dagger"]=9896, + ["projectile_attack_skill_critical_strike_chance_+%"]=4379, + ["projectile_attack_skill_critical_strike_multiplier_+"]=9897, + ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=4380, + ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=4381, + ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=4382, + ["projectile_base_number_of_targets_to_pierce"]=1837, + ["projectile_base_number_of_targets_to_pierce_if_2_hunter_items"]=4520, + ["projectile_chain_from_terrain_chance_%"]=1874, + ["projectile_damage_+%"]=2043, + ["projectile_damage_+%_in_blood_stance"]=10387, + ["projectile_damage_+%_max_as_distance_travelled_increases"]=4141, + ["projectile_damage_+%_max_before_distance_increase"]=9898, + ["projectile_damage_+%_per_16_dexterity"]=9899, + ["projectile_damage_+%_per_chain"]=9900, + ["projectile_damage_+%_per_pierced_enemy"]=9901, + ["projectile_damage_+%_per_power_charge"]=2691, + ["projectile_damage_+%_per_remaining_chain"]=9902, + ["projectile_damage_+%_vs_chained_enemy"]=9903, + ["projectile_damage_+%_vs_nearby_enemies"]=9904, + ["projectile_damage_taken_+%"]=2807, + ["projectile_freeze_chance_%"]=2755, + ["projectile_ignite_chance_%"]=2754, + ["projectile_non_chaos_damage_to_add_as_chaos_damage_%_if_chained"]=9905, + ["projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain"]=9906, + ["projectile_number_to_split"]=9907, + ["projectile_object_collision_behaviour_only_explode"]=9908, + ["projectile_return_%_chance"]=2881, + ["projectile_shock_chance_%"]=2756, + ["projectile_speed_+%_per_20_strength"]=9909, + ["projectile_speed_+%_per_frenzy_charge"]=2690, + ["projectile_speed_+%_with_daggers"]=9910, + ["projectile_speed_+1%_per_X_evasion_rating_up_to_75%"]=9911, + ["projectile_speed_variation_+%_final_with_melee_weapon_attacks"]=9912, + ["projectile_spell_cooldown_modifier_ms"]=9913, + ["projectile_weakness_curse_effect_+%"]=4067, + ["projectile_weakness_duration_+%"]=3968, + ["projectiles_always_pierce_you"]=9914, + ["projectiles_chain_any_number_of_additional_times_at_close_range"]=9915, + ["projectiles_fork"]=3642, + ["projectiles_from_spells_cannot_pierce"]=9916, + ["projectiles_move_at_player_speed"]=9917, + ["projectiles_pierce_1_additional_target_per_10_stat_value"]=9918, + ["projectiles_pierce_1_additional_target_per_15_stat_value"]=9919, + ["projectiles_pierce_all_nearby_targets"]=9920, + ["projectiles_pierce_while_phasing"]=9921, + ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=9922, + ["projectiles_return"]=2881, + ["protective_link_duration_+%"]=9923, + ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=9924, + ["puncture_damage_+%"]=3717, + ["puncture_duration_+%"]=3959, + ["puncture_maim_on_hit_%_chance"]=4026, + ["punishment_curse_effect_+%"]=4075, + ["punishment_duration_+%"]=3972, + ["punishment_ignores_hexproof"]=2657, + ["punishment_no_reservation"]=9925, + ["puppet_master_base_duration_ms"]=9926, + ["purge_additional_enemy_resistance_%"]=9927, + ["purge_damage_+%"]=9928, + ["purge_dot_multiplier_+_per_100ms_duration_expired"]=9929, + ["purge_duration_+%"]=9930, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=9931, + ["purity_of_elements_aura_effect_+%"]=3417, + ["purity_of_elements_mana_reservation_+%"]=4098, + ["purity_of_elements_mana_reservation_efficiency_+%"]=9933, + ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=9932, + ["purity_of_elements_reserves_no_mana"]=9934, + ["purity_of_fire_aura_effect_+%"]=3418, + ["purity_of_fire_mana_reservation_+%"]=4099, + ["purity_of_fire_mana_reservation_efficiency_+%"]=9936, + ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=9935, + ["purity_of_fire_reserves_no_mana"]=9937, + ["purity_of_ice_aura_effect_+%"]=3419, + ["purity_of_ice_mana_reservation_+%"]=4095, + ["purity_of_ice_mana_reservation_efficiency_+%"]=9939, + ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=9938, + ["purity_of_ice_reserves_no_mana"]=9940, + ["purity_of_lightning_aura_effect_+%"]=3420, + ["purity_of_lightning_mana_reservation_+%"]=4100, + ["purity_of_lightning_mana_reservation_efficiency_+%"]=9942, + ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=9941, + ["purity_of_lightning_reserves_no_mana"]=9943, + ["quality_display_animate_weapon_is_gem"]=9690, + ["quality_display_blade_trap_is_gem"]=5153, + ["quality_display_bladefall_is_gem"]=5187, + ["quality_display_bladestorm_is_gem"]=5190, + ["quality_display_essence_drain_is_gem"]=4053, + ["quality_display_firewall_is_gem"]=9689, + ["quality_display_forbidden_rite_is_gem"]=10263, + ["quality_display_herald_of_agony_is_gem"]=9331, + ["quality_display_hydrosphere_is_gem"]=7305, + ["quality_display_perforate_is_gem"]=5334, + ["quality_display_plague_bearer_is_gem"]=5986, + ["quality_display_rage_vortex_is_gem"]=9966, + ["quality_display_raise_zombie_is_gem"]=2207, + ["quality_display_snipe_is_gem"]=10258, + ["quality_display_spike_slam_is_gem"]=10377, + ["quality_display_summon_skeleton_is_gem"]=2209, + ["quality_display_tectonic_slam_is_gem"]=10539, + ["quality_display_tornado_shot_is_gem"]=4010, + ["quality_display_withering_step_is_gem"]=10249, + ["quantity_of_items_dropped_by_maimed_enemies_+%"]=4231, + ["quick_dodge_added_cooldown_count"]=9944, + ["quick_dodge_travel_distance_+%"]=9945, + ["quick_guard_additional_physical_damage_reduction_%"]=9946, + ["quicksilver_flasks_apply_to_nearby_allies"]=9947, + ["quiver_hellscaping_speed_+%"]=7223, + ["quiver_mod_effect_+%"]=9948, + ["quiver_projectiles_pierce_1_additional_target"]=9949, + ["quiver_projectiles_pierce_2_additional_targets"]=9950, + ["quiver_projectiles_pierce_3_additional_targets"]=9951, + ["rage_decay_speed_+%"]=9960, + ["rage_effect_+%"]=9961, + ["rage_effects_doubled"]=9954, + ["rage_effects_tripled"]=9953, + ["rage_grants_cast_speed_instead"]=9962, + ["rage_grants_spell_damage_instead"]=9963, + ["rage_grants_spell_damage_instead_at_50%_value"]=9964, + ["rage_loss_delay_ms"]=9965, + ["rage_slash_sacrifice_rage_%"]=9966, + ["rage_vortex_area_of_effect_+%"]=9967, + ["rage_vortex_damage_+%"]=9968, + ["raging_spirit_damage_+%"]=3711, + ["raging_spirits_always_ignite"]=9969, + ["raging_spirits_refresh_duration_on_hit_vs_rare_or_unique_%_chance"]=9970, + ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=9971, + ["raider_chance_to_evade_attacks_+%_final_during_onslaught"]=9972, + ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=9973, + ["raider_passive_evade_melee_attacks_while_onslaughted_+%_final"]=3356, + ["raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"]=3357, + ["raider_shock_maximum_effect_override_%"]=9974, + ["raider_shocks_you_apply_can_stack_up_to_50_times"]=9975, + ["rain_of_arrows_additional_sequence_chance_%"]=9976, + ["rain_of_arrows_attack_speed_+%"]=3917, + ["rain_of_arrows_damage_+%"]=3710, + ["rain_of_arrows_radius_+%"]=3874, + ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=9977, + ["rain_of_arrows_toxic_rain_active_skill_bleeding_damage_+%_final"]=9978, + ["raise_spectre_gem_level_+"]=1663, + ["raise_spectre_mana_cost_+%"]=9979, + ["raise_zombie_does_not_use_corpses"]=9980, + ["raise_zombie_gem_level_+"]=1662, + ["raised_beast_spectres_have_farruls_farric_presence"]=9981, + ["raised_beast_spectres_have_farruls_fertile_presence"]=9982, + ["raised_beast_spectres_have_farruls_wild_presence"]=9983, + ["raised_beast_spectres_have_x_random_modifiers_per_area"]=9984, + ["raised_zombie_%_chance_to_taunt"]=9985, + ["raised_zombies_are_usable_as_corpses_when_alive"]=9986, + ["raised_zombies_cover_in_ash_on_hit_%"]=9987, + ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=9988, + ["raised_zombies_have_avatar_of_fire"]=9989, + ["rallying_cry_buff_effect_+%"]=4174, + ["rallying_cry_buff_effect_1%_per_3_stat_value"]=9990, + ["rallying_cry_buff_effect_1%_per_5_stat_value"]=9991, + ["rallying_cry_duration_+%"]=3980, + ["rallying_cry_exerts_x_additional_attacks"]=9992, + ["random_curse_on_hit_%"]=2562, + ["random_curse_on_hit_%_against_uncursed_enemies"]=9993, + ["random_curse_when_hit_%_ignoring_curse_limit"]=9994, + ["random_projectile_direction"]=9995, + ["random_skill_gem_level_+_index"]=1665, + ["random_skill_gem_level_+_level"]=1665, + ["randomly_cursed_when_totems_die_curse_level"]=2601, + ["ranged_weapon_physical_damage_+%"]=2045, + ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=9996, + ["rare_beasts_keep_modifiers_when_raised_as_spectres"]=9997, + ["rare_or_unique_monster_dropped_item_rarity_+%"]=9998, + ["rarity_of_items_dropped_by_maimed_enemies_+%"]=4232, + ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=9999, + ["reave_attack_speed_per_reave_stack_+%"]=4023, + ["reave_damage_+%"]=3704, + ["reave_radius_+%"]=3871, + ["recall_sigil_target_search_range_+%"]=10000, + ["receive_bleeding_chance_%_when_hit_by_attack"]=10001, + ["received_attack_hits_have_impale_chance_%"]=10002, + ["recharge_flasks_on_crit"]=3023, + ["recharge_flasks_on_crit_while_affected_by_precision"]=10003, + ["reckoning_cooldown_speed_+%"]=3940, + ["reckoning_damage_+%"]=3769, + ["recoup_%_of_damage_taken_by_your_totems_as_life"]=10004, + ["recoup_effects_apply_over_3_seconds_instead"]=10005, + ["recoup_life_effects_apply_over_3_seconds_instead"]=10006, + ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=10007, + ["recover_%_energy_shield_when_you_block_spell_damage_while_wielding_a_staff"]=10025, + ["recover_%_es_on_kill_per_different_mastery"]=1720, + ["recover_%_life_on_kill_per_different_mastery"]=1705, + ["recover_%_life_when_gaining_adrenaline"]=10026, + ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=10027, + ["recover_%_life_when_you_chill_a_non_chilled_enemy"]=10008, + ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=10028, + ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=10029, + ["recover_%_mana_on_kill_per_different_mastery"]=1737, + ["recover_%_mana_when_attached_brand_expires"]=10030, + ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=10009, + ["recover_%_maximum_life_on_enemy_ignited"]=4362, + ["recover_%_maximum_life_on_flask_use"]=4404, + ["recover_%_maximum_life_on_kill"]=1796, + ["recover_%_maximum_life_on_killing_chilled_enemy"]=10031, + ["recover_%_maximum_life_on_killing_cursed_enemy"]=10010, + ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=10032, + ["recover_%_maximum_life_on_killing_poisoned_enemy"]=10033, + ["recover_%_maximum_life_on_mana_flask_use"]=4405, + ["recover_%_maximum_life_on_rampage_threshold"]=3012, + ["recover_%_maximum_life_on_suppressing_spell"]=10011, + ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=3112, + ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=10012, + ["recover_%_maximum_mana_on_activating_tincture"]=10034, + ["recover_%_maximum_mana_on_kill"]=1798, + ["recover_%_maximum_mana_on_kill_while_tincture_active"]=10035, + ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1799, + ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=10013, + ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=10036, + ["recover_%_maximum_mana_when_enemy_shocked"]=4230, + ["recover_%_of_maximum_life_on_block"]=3118, + ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=10037, + ["recover_%_of_skill_mana_cost_per_unspent_chain_up_to_50%"]=10038, + ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=10014, + ["recover_10%_of_maximum_mana_on_skill_use_%"]=3535, + ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=10015, + ["recover_X_life_on_block"]=1807, + ["recover_X_life_on_enemy_ignited"]=10016, + ["recover_X_life_on_suppressing_spell"]=10017, + ["recover_X_life_when_fortification_expires_per_fortification_lost"]=10018, + ["recover_X_mana_on_killing_frozen_enemy"]=10019, + ["recover_energy_shield_%_on_consuming_steel_shard"]=10020, + ["recover_energy_shield_%_on_kill"]=1797, + ["recover_es_as_well_as_life_from_life_regeneration"]=10021, + ["recover_from_blood_phylactery_on_savage_hit_taken"]=10022, + ["recover_life_for_ancestral_totem_equal_to_damage_taken_from_hits"]=10023, + ["recover_maximum_life_on_enemy_killed_chance_%"]=10024, + ["recover_permyriad_life_on_skill_use"]=10039, + ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=10040, + ["recover_x_energy_shield_on_spell_block"]=10041, + ["recover_x_energy_shield_on_suppressing_spell"]=10042, + ["reduce_enemy_chaos_resistance_%"]=10043, + ["reduce_enemy_chaos_resistance_with_weapons_%"]=3652, + ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=10044, + ["reduce_enemy_cold_resistance_with_weapons_%"]=3649, + ["reduce_enemy_dodge_%"]=1954, + ["reduce_enemy_elemental_resistance_%"]=3038, + ["reduce_enemy_elemental_resistance_with_weapons_%"]=3659, + ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=10045, + ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=10046, + ["reduce_enemy_fire_resistance_with_weapons_%"]=3650, + ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=10047, + ["reduce_enemy_lightning_resistance_with_weapons_%"]=3651, + ["reflect_%_of_physical_damage_prevented"]=10048, + ["reflect_chill_and_freeze_%_chance"]=10049, + ["reflect_curses"]=2526, + ["reflect_damage_taken_+%"]=4329, + ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=10050, + ["reflect_hexes_chance_%"]=2527, + ["reflect_non_damaging_ailments_%_chance"]=10051, + ["reflect_shocks"]=10052, + ["reflect_shocks_to_enemies_in_radius"]=10053, + ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=10054, + ["refresh_ignite_duration_on_critical_strike_chance_%"]=10055, + ["regenerate_%_armour_as_life_over_1_second_on_block"]=2890, + ["regenerate_%_energy_shield_over_1_second_when_stunned"]=10056, + ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=10057, + ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=10062, + ["regenerate_%_life_over_1_second_when_stunned"]=10058, + ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=10063, + ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=10064, + ["regenerate_1_rage_per_x_life_regeneration"]=10059, + ["regenerate_1_rage_per_x_mana_regeneration"]=10060, + ["regenerate_X_life_over_1_second_on_cast"]=2889, + ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=10061, + ["regenerate_energy_shield_instead_of_life"]=10998, + ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=10065, + ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=4058, + ["rejuvenation_totem_aura_effect_+%"]=4059, + ["reliquarian_accuracy_rating_+%_final_while_at_maximum_frenzy_charges"]=10066, + ["remove_%_of_mana_on_hit"]=10078, + ["remove_ailments_and_burning_on_gaining_adrenaline"]=10067, + ["remove_all_damaging_ailments_on_warcry"]=10069, + ["remove_bleed_on_flask_use"]=3446, + ["remove_bleed_on_life_flask_use"]=10070, + ["remove_bleeding_on_warcry"]=10071, + ["remove_chill_and_freeze_on_flask_use"]=10072, + ["remove_corrupted_blood_when_you_use_a_flask"]=3447, + ["remove_curse_on_mana_flask_use"]=10073, + ["remove_damaging_ailments_on_swapping_stance"]=10074, + ["remove_elemental_ailments_on_curse_cast_%"]=10075, + ["remove_ignite_and_burning_on_flask_use"]=10076, + ["remove_maim_and_hinder_on_flask_use"]=10077, + ["remove_rage_on_reaching_max_to_gain_adrenaline_for_1_second_per_x_rage_lost"]=10079, + ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=10080, + ["remove_random_ailment_when_you_warcry"]=10081, + ["remove_random_charge_on_hit_%"]=10082, + ["remove_random_damaging_ailment_when_ward_restores"]=10083, + ["remove_random_elemental_ailment_on_mana_flask_use"]=10084, + ["remove_random_non_elemental_ailment_on_life_flask_use"]=10085, + ["remove_shock_on_flask_use"]=10086, + ["remove_x_curses_after_channelling_for_2_seconds"]=10087, + ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=10088, + ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=10089, + ["reservation_efficiency_-2%_per_1"]=2280, + ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=10090, + ["resist_all_%"]=10091, + ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=10092, + ["resist_all_elements_%_per_10_levels"]=2820, + ["resist_all_elements_%_per_endurance_charge"]=1667, + ["resist_all_elements_%_with_200_or_more_strength"]=4424, + ["resist_all_elements_+%_while_holding_shield"]=1668, + ["resolute_technique"]=11020, + ["restore_energy_shield_and_mana_when_you_focus_%"]=10093, + ["restore_life_and_mana_on_warcry_%"]=3260, + ["restore_life_on_warcry_%"]=3261, + ["restore_ward_on_block_%"]=10094, + ["restore_ward_on_hit_%"]=10095, + ["retaliation_skill_additional_use_window_duration_ms"]=10096, + ["retaliation_skill_area_of_effect_+%"]=10097, + ["retaliation_skill_cost_+%"]=10098, + ["retaliation_skill_damage_+%"]=10099, + ["retaliation_skill_keep_use_requirement_and_prevent_cooldown_on_use_chance_%"]=10100, + ["retaliation_skill_speed_+%"]=10101, + ["retaliation_skill_stun_duration_+%"]=10102, + ["retaliation_skill_stun_threshold_+%"]=10103, + ["retaliation_skills_all_ailment_duration_+%"]=10104, + ["retaliation_skills_become_usable_every_x_ms"]=10105, + ["retaliation_skills_debilitate_on_hit_ms"]=10106, + ["retaliation_skills_fortify_on_melee_hit"]=10107, + ["retaliation_skills_gain_X_rage_per_enemy_hit"]=10108, + ["retaliation_use_window_duration_+%"]=10109, + ["returned_projectile_speed_+%"]=10110, + ["returning_projectiles_always_pierce"]=10111, + ["revive_golems_if_killed_by_enemies_ms"]=10112, + ["revive_spectre_if_killed_by_enemies_ms"]=10113, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=10114, + ["righteous_fire_damage_+%"]=3734, + ["righteous_fire_radius_+%"]=3882, + ["righteous_fire_spell_damage_+%"]=4173, + ["riposte_cooldown_speed_+%"]=3945, + ["riposte_damage_+%"]=3781, + ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=10115, + ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=10116, + ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=10117, + ["runegraft_offhand_attack_speed_+%_final"]=10118, + ["ruthless_hits_intimidate_enemies_for_4_seconds"]=10119, + ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=10120, + ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=10121, + ["sacrifice_%_life_on_spell_skill"]=10124, + ["sacrifice_%_life_to_fire_additional_arrow_for_each_100_life"]=10122, + ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=10125, + ["sacrifice_minion_to_fire_X_additional_arrows"]=10123, + ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=10126, + ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=10127, + ["sanctify_damage_+%"]=10128, + ["sap_on_critical_strike_with_lightning_skills"]=10129, + ["saresh_bloodline_main_hand_supported_by_cruelty"]=10130, + ["scion_helmet_skill_maximum_totems_+"]=656, + ["scorch_effect_+%"]=10131, + ["scorch_enemies_in_close_range_on_block"]=10132, + ["scorched_earth_ground_scorch_duration_ms"]=4372, + ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=10133, + ["scourge_arrow_damage_+%"]=10134, + ["searing_bond_damage_+%"]=3729, + ["searing_bond_totem_placement_speed_+%"]=4034, + ["searing_totem_elemental_resistance_+%"]=4179, + ["secondary_maximum_base_chaos_damage"]=1450, + ["secondary_maximum_base_cold_damage"]=1448, + ["secondary_maximum_base_fire_damage"]=1447, + ["secondary_maximum_base_lightning_damage"]=1449, + ["secondary_maximum_base_physical_damage"]=1446, + ["secondary_minimum_base_chaos_damage"]=1450, + ["secondary_minimum_base_cold_damage"]=1448, + ["secondary_minimum_base_fire_damage"]=1447, + ["secondary_minimum_base_lightning_damage"]=1449, + ["secondary_minimum_base_physical_damage"]=1446, + ["secondary_skill_effect_duration_+%"]=10135, + ["seismic_cry_exerted_attack_damage_+%"]=10136, + ["seismic_cry_minimum_power"]=10137, + ["self_bleed_duration_+%"]=10138, + ["self_chill_duration_-%"]=1915, + ["self_cold_damage_on_reaching_maximum_power_charges"]=10139, + ["self_critical_strike_multiplier_+%_while_ignited"]=10140, + ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1561, + ["self_curse_duration_+%"]=2218, + ["self_curse_duration_+%_per_10_devotion"]=10141, + ["self_cursed_with_level_x_vulnerability"]=3180, + ["self_damaging_ailment_duration_+%_per_barkskin_stack"]=10142, + ["self_debilitated"]=10143, + ["self_elemental_status_duration_-%"]=1914, + ["self_elemental_status_duration_-%_per_10_devotion"]=10144, + ["self_fire_damage_on_skill_use"]=2259, + ["self_freeze_duration_-%"]=1917, + ["self_ignite_duration_-%"]=1918, + ["self_offering_effect_+%"]=1217, + ["self_physical_damage_on_movement_skill_use"]=10145, + ["self_physical_damage_on_skill_use_%_mana_cost"]=2260, + ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=10146, + ["self_poison_duration_+%"]=10147, + ["self_shock_duration_-%"]=1916, + ["self_take_no_extra_damage_from_critical_strikes"]=4348, + ["self_take_no_extra_damage_from_critical_strikes_if_energy_shield_recharge_started_recently"]=10148, + ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=10149, + ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=10150, + ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=10151, + ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=10152, + ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=10153, + ["self_take_no_extra_damage_from_critical_strikes_while_no_gems_in_gloves"]=10154, + ["sentinel_minion_cooldown_speed_+%"]=10155, + ["sentinel_of_purity_damage_+%"]=10156, + ["serpent_strike_maximum_snakes"]=10157, + ["shaper_apparition_ability"]=788, + ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=3058, + ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=3063, + ["share_endurance_charges_with_party_within_distance"]=2201, + ["share_frenzy_charges_with_party_within_distance"]=2202, + ["share_power_charges_with_party_within_distance"]=2203, + ["shatter_has_%_chance_to_cover_in_frost"]=10158, + ["shatter_on_kill_vs_bleeding_enemies"]=10159, + ["shatter_on_kill_vs_poisoned_enemies"]=10160, + ["shatter_on_killing_blow_chance_%"]=10161, + ["shattering_steel_%_chance_to_not_consume_ammo"]=10165, + ["shattering_steel_damage_+%"]=10162, + ["shattering_steel_fortify_on_hit_close_range"]=10163, + ["shattering_steel_number_of_additional_projectiles"]=10164, + ["shield_armour_+%"]=2041, + ["shield_attack_speed_+%"]=1476, + ["shield_block_%"]=1187, + ["shield_charge_attack_speed_+%"]=3919, + ["shield_charge_damage_+%"]=3718, + ["shield_charge_damage_per_target_hit_+%"]=4149, + ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=10166, + ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=10167, + ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=10167, + ["shield_crush_and_spectral_shield_throw_skill_physical_damage_%_to_convert_to_lightning"]=10168, + ["shield_crush_attack_speed_+%"]=10169, + ["shield_crush_damage_+%"]=10170, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=10171, + ["shield_defences_+%_per_10_devotion"]=10172, + ["shield_evasion_rating_+%"]=2038, + ["shield_maximum_energy_shield_+%"]=2019, + ["shield_physical_damage_reduction_rating_+%"]=2039, + ["shield_spell_block_%"]=1188, + ["shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy"]=2872, + ["shock_and_freeze_apply_elemental_damage_taken_+%"]=10173, + ["shock_attackers_for_4_seconds_on_block_%_chance"]=10174, + ["shock_duration_+%"]=1904, + ["shock_effect_+%"]=10177, + ["shock_effect_+%_while_es_leeching"]=10175, + ["shock_effect_+%_with_critical_strikes"]=10178, + ["shock_effect_against_cursed_enemies_+%"]=10176, + ["shock_maximum_magnitude_+"]=10180, + ["shock_maximum_magnitude_is_60%"]=10179, + ["shock_minimum_damage_taken_increase_%"]=4504, + ["shock_nearby_enemies_for_x_ms_when_you_focus"]=10182, + ["shock_nova_and_storm_call_all_damage_can_ignite"]=10183, + ["shock_nova_and_storm_call_ignite_damage_+100%_final_chance"]=10184, + ["shock_nova_damage_+%"]=3744, + ["shock_nova_radius_+%"]=3895, + ["shock_nova_ring_chance_to_shock_+%"]=10185, + ["shock_nova_ring_damage_+%"]=4050, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=10186, + ["shock_prevention_ms_when_shocked"]=2955, + ["shock_proliferation_radius_is_at_least_15"]=2270, + ["shock_self_for_x_ms_when_you_focus"]=10181, + ["shocked_chilled_effect_on_self_+%"]=10187, + ["shocked_effect_on_self_+%"]=10188, + ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=10189, + ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3664, + ["shocked_ground_base_magnitude_override"]=10190, + ["shocked_ground_effect_on_self_+%"]=2198, + ["shocked_ground_on_death_%"]=10191, + ["shocked_ground_when_hit_%"]=2627, + ["shocks_enemies_that_hit_actor_while_actor_is_casting"]=1960, + ["shocks_reflected_to_self"]=2832, + ["shockwave_slam_attack_speed_+%"]=3925, + ["shockwave_slam_damage_+%"]=3800, + ["shockwave_slam_explosion_damage_+%_final"]=3625, + ["shockwave_slam_radius_+%"]=3908, + ["shockwave_totem_cast_speed_+%"]=4062, + ["shockwave_totem_damage_+%"]=3745, + ["shockwave_totem_radius_+%"]=3910, + ["should_use_alternate_fortify"]=2313, + ["shrapnel_ballista_num_additional_arrows"]=10192, + ["shrapnel_ballista_num_pierce"]=10193, + ["shrapnel_ballista_projectile_speed_+%"]=10194, + ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=10195, + ["shrapnel_shot_damage_+%"]=3785, + ["shrapnel_shot_physical_damage_%_to_add_as_lightning_damage"]=4087, + ["shrapnel_shot_radius_+%"]=3897, + ["shrapnel_trap_area_of_effect_+%"]=10197, + ["shrapnel_trap_damage_+%"]=10198, + ["shrapnel_trap_number_of_additional_secondary_explosions"]=10199, + ["shrine_buff_effect_on_self_+%"]=2870, + ["shrine_buff_effect_on_self_+%_per_5%_maximum_life_reserved"]=10200, + ["shrine_effect_duration_+%"]=2871, + ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=4354, + ["siege_ballista_attack_speed_+%"]=3924, + ["siege_ballista_damage_+%"]=3798, + ["siege_ballista_totem_placement_speed_+%"]=4064, + ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=10201, + ["sigil_attached_target_damage_+%"]=10202, + ["sigil_attached_target_damage_taken_+%"]=10203, + ["sigil_critical_strike_chance_+%"]=10204, + ["sigil_critical_strike_multiplier_+"]=10205, + ["sigil_damage_+%"]=10206, + ["sigil_damage_+%_per_10_devotion"]=10207, + ["sigil_duration_+%"]=10208, + ["sigil_recall_cooldown_speed_+%"]=10209, + ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=10210, + ["sigil_repeat_frequency_+%"]=10211, + ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=10212, + ["sigil_target_search_range_+%"]=10213, + ["silver_flask_display_onslaught"]=3658, + ["silver_footprints_from_item"]=11051, + ["siphon_duration_+%"]=3983, + ["siphon_life_leech_from_damage_permyriad"]=4053, + ["skeletal_chains_area_of_effect_+%"]=10214, + ["skeletal_chains_cast_speed_+%"]=10215, + ["skeletal_chains_damage_+%"]=3794, + ["skeleton_attack_speed_+%"]=10216, + ["skeleton_cast_speed_+%"]=10217, + ["skeleton_duration_+%"]=1826, + ["skeleton_movement_speed_+%"]=10218, + ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=10220, + ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=10219, + ["skeletons_are_permanent_minions"]=10221, + ["skeletons_damage_+%"]=3719, + ["skill_area_of_effect_+%_if_enemy_killed_recently"]=4279, + ["skill_area_of_effect_+%_in_sand_stance"]=10392, + ["skill_area_of_effect_+%_per_active_mine"]=3527, + ["skill_area_of_effect_+%_per_power_charge"]=2176, + ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=2177, + ["skill_area_of_effect_+%_while_no_frenzy_charges"]=2103, + ["skill_area_of_effect_when_unarmed_+%"]=3111, + ["skill_cooldown_-%"]=1944, + ["skill_effect_duration_+%"]=1942, + ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=4281, + ["skill_effect_duration_+%_per_10_strength"]=2061, + ["skill_effect_duration_+%_per_red_skill_gem"]=10222, + ["skill_effect_duration_+%_while_affected_by_malevolence"]=10223, + ["skill_effect_duration_+%_with_bow_skills"]=10224, + ["skill_effect_duration_+%_with_non_curse_aura_skills"]=10225, + ["skill_effect_duration_per_100_int"]=3148, + ["skill_internal_monster_responsiveness_+%"]=1976, + ["skill_life_cost_+"]=1937, + ["skill_life_cost_+%_final_while_on_low_life"]=10228, + ["skill_life_cost_+_with_channelling_skills"]=10226, + ["skill_life_cost_+_with_non_channelling_skills"]=10227, + ["skill_mana_cost_+"]=1938, + ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=4395, + ["skill_mana_cost_+_while_affected_by_clarity"]=10229, + ["skill_mana_cost_+_with_channelling_skills"]=10230, + ["skill_mana_cost_+_with_non_channelling_skills"]=10232, + ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=10234, + ["skill_max_unleash_seals"]=10904, + ["skill_range_+%"]=1977, + ["skill_repeat_count"]=1940, ["skill_visual_scale_+%"]=20, - ["skills_cost_no_mana_while_focused"]=10090, - ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_8_steel_ammo"]=10091, - ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=10092, - ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=10093, - ["skills_supported_by_nightblade_have_elusive_effect_+%"]=10094, - ["skills_that_throw_mines_reserve_life"]=10095, - ["skip_life_sacrifice_chance_%"]=10096, - ["skitterbots_mana_reservation_efficiency_+%"]=10098, - ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=10097, - ["slam_ancestor_totem_damage_+%"]=4166, - ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3828, - ["slam_ancestor_totem_radius_+%"]=4169, - ["slash_ancestor_totem_damage_+%"]=4167, - ["slash_ancestor_totem_elemental_resistance_%"]=2812, - ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3827, - ["slash_ancestor_totem_radius_+%"]=4168, - ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=10099, - ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1199, - ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=10100, - ["slayer_damage_+%_final_against_unique_enemies"]=10101, - ["slayer_damage_+%_final_from_distance"]=10102, - ["slither_elusive_effect_+%"]=10103, - ["slither_wither_stacks"]=10104, - ["smite_aura_effect_+%"]=10105, - ["smite_chance_for_lighting_to_strike_extra_target_%"]=10106, - ["smite_damage_+%"]=10107, - ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=10108, - ["smoke_mine_base_movement_velocity_+%"]=4133, - ["smoke_mine_duration_+%"]=3928, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=10110, - ["snapping_adder_damage_+%"]=10109, - ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=10111, - ["snipe_attack_speed_+%"]=10112, - ["snipe_max_stacks"]=10113, - ["socketed_non_cluster_jewels_have_no_effect"]=10114, - ["soul_eater_from_unique"]=10115, - ["soul_eater_maximum_stacks"]=10116, - ["soul_eater_maximum_stacks_+"]=7289, - ["soul_eater_on_rare_kill_ms"]=3449, - ["soul_link_duration_+%"]=10117, - ["soulcord_have_acceleration_shrine_effect_if_affected_by_no_flasks"]=613, - ["soulcord_have_brutal_shrine_effect_if_affected_by_no_flasks"]=614, - ["soulcord_have_chilling_shrine_effect_if_affected_by_no_flasks"]=615, - ["soulcord_have_diamond_shrine_effect_if_affected_by_no_flasks"]=616, - ["soulcord_have_echoing_shrine_effect_if_affected_by_no_flasks"]=617, - ["soulcord_have_gloom_shrine_effect_if_affected_by_no_flasks"]=618, - ["soulcord_have_impenetrable_shrine_effect_if_affected_by_no_flasks"]=619, - ["soulcord_have_massive_shrine_effect_if_affected_by_no_flasks"]=620, - ["soulcord_have_replenishing_shrine_effect_if_affected_by_no_flasks"]=621, - ["soulcord_have_resistance_shrine_effect_if_affected_by_no_flasks"]=622, - ["soulcord_have_resonating_shrine_effect_if_affected_by_no_flasks"]=623, - ["soulcord_have_shocking_shrine_effect_if_affected_by_no_flasks"]=624, - ["soulcord_have_skeleton_shrine_effect_if_affected_by_no_flasks"]=625, - ["soulfeast_number_of_secondary_projectiles"]=10118, - ["soulrend_applies_hinder_movement_speed_+%"]=10119, - ["soulrend_damage_+%"]=10120, - ["soulrend_number_of_additional_projectiles"]=10121, - ["spark_damage_+%"]=3669, - ["spark_num_of_additional_projectiles"]=3971, - ["spark_number_of_additional_projectiles"]=10122, - ["spark_projectile_speed_+%"]=3917, - ["spark_projectiles_nova"]=10123, - ["spark_skill_effect_duration_+%"]=10124, - ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=10125, - ["spectral_helix_damage_+%"]=10126, - ["spectral_helix_projectile_speed_+%"]=10127, - ["spectral_helix_rotations_%"]=10128, - ["spectral_shield_throw_additional_chains"]=10129, - ["spectral_shield_throw_damage_+%"]=10130, - ["spectral_shield_throw_num_of_additional_projectiles"]=10131, - ["spectral_shield_throw_projectile_speed_+%"]=10132, - ["spectral_shield_throw_secondary_projectiles_pierce"]=10133, - ["spectral_shield_throw_shard_projectiles_+%_final"]=10134, - ["spectral_spiral_weapon_base_number_of_bounces"]=10135, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=10136, - ["spectral_throw_damage_+%"]=3670, - ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=3255, - ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=10137, - ["spectral_throw_projectile_deceleration_+%"]=3988, - ["spectral_throw_projectile_speed_+%"]=3918, - ["spectre_attack_and_cast_speed_+%"]=3893, - ["spectre_damage_+%"]=3481, - ["spectre_elemental_resistances_%"]=4006, - ["spectre_maximum_life_+"]=10138, - ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=10139, - ["spectres_additional_base_critical_strike_chance"]=10140, - ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=10141, - ["spectres_base_maximum_all_resistances_%"]=10142, - ["spectres_base_skill_area_of_effect_+%"]=10143, - ["spectres_critical_strike_chance_+%"]=10144, - ["spectres_gain_arcane_surge_when_you_do"]=10145, - ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=10146, - ["spectres_have_base_duration_ms"]=10147, - ["spectres_number_of_additional_projectiles"]=10148, - ["spell_additional_critical_strike_chance_permyriad"]=10150, - ["spell_additional_critical_strike_chance_permyriad_if_4_shaper_items"]=4504, - ["spell_and_attack_block_chance_is_lucky_if_blocked_recently"]=10151, - ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=10152, - ["spell_and_attack_maximum_added_cold_damage"]=1398, - ["spell_and_attack_maximum_added_fire_damage"]=1397, - ["spell_and_attack_maximum_added_lightning_damage"]=1433, - ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=10152, - ["spell_and_attack_minimum_added_cold_damage"]=1398, - ["spell_and_attack_minimum_added_fire_damage"]=1397, - ["spell_and_attack_minimum_added_lightning_damage"]=1433, - ["spell_area_of_effect_+%"]=10153, - ["spell_base_fire_damage_%_maximum_life"]=1418, - ["spell_base_life_cost_%"]=10154, - ["spell_block_%_if_blocked_a_spell_recently"]=10158, - ["spell_block_%_if_blocked_an_attack_recently"]=10159, - ["spell_block_%_per_5_attack_block"]=1785, - ["spell_block_%_per_minion"]=10155, - ["spell_block_%_while_at_max_power_charges"]=10160, - ["spell_block_%_while_on_low_life"]=1169, - ["spell_block_chance_%_per_50_strength"]=1177, - ["spell_block_chance_%_while_holding_staff_or_shield"]=10156, - ["spell_block_equals_attack_block"]=1181, - ["spell_block_is_maximum_if_not_blocked_recently"]=10157, - ["spell_block_while_dual_wielding_%"]=1168, - ["spell_block_with_bow_%"]=1173, - ["spell_block_with_staff_%"]=1174, - ["spell_bow_damage_+%"]=1252, - ["spell_chance_to_deal_double_damage_%"]=10161, - ["spell_chance_to_shock_frozen_enemies_%"]=2950, - ["spell_cold_damage_+%"]=1250, - ["spell_critical_strike_chance_+%"]=1482, - ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=10162, - ["spell_critical_strike_chance_+%_per_100_max_life"]=10163, - ["spell_critical_strike_chance_+%_per_raised_spectre"]=10164, - ["spell_critical_strike_chance_+%_while_dual_wielding"]=5967, - ["spell_critical_strike_chance_+%_while_holding_shield"]=5968, - ["spell_critical_strike_chance_+%_while_wielding_staff"]=5969, - ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5994, - ["spell_critical_strike_multiplier_+_while_holding_shield"]=5995, - ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5996, - ["spell_damage_%_suppressed_if_not_suppressed_spell_recently"]=10165, - ["spell_damage_%_suppressed_if_taken_a_savage_hit_recently"]=10166, - ["spell_damage_%_suppressed_per_bark_below_max"]=10167, - ["spell_damage_%_suppressed_per_hit_suppressed_recently"]=10168, - ["spell_damage_%_suppressed_while_on_full_energy_shield"]=1170, - ["spell_damage_+%"]=1247, - ["spell_damage_+%_during_flask_effect"]=10173, - ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=10169, - ["spell_damage_+%_for_4_seconds_on_cast"]=3555, - ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=10174, - ["spell_damage_+%_if_have_crit_recently"]=10170, - ["spell_damage_+%_if_other_ring_is_elder_item"]=4349, - ["spell_damage_+%_if_you_have_blocked_recently"]=10175, - ["spell_damage_+%_per_100_max_life"]=10176, - ["spell_damage_+%_per_100_maximum_mana_up_to_60%"]=10177, - ["spell_damage_+%_per_10_int"]=2762, - ["spell_damage_+%_per_10_strength"]=10178, - ["spell_damage_+%_per_16_dex"]=10179, - ["spell_damage_+%_per_16_int"]=10180, - ["spell_damage_+%_per_16_strength"]=10181, - ["spell_damage_+%_per_200_mana_spent_recently"]=4370, - ["spell_damage_+%_per_5%_block_chance"]=2761, - ["spell_damage_+%_per_5%_spell_block_chance"]=10182, - ["spell_damage_+%_per_500_maximum_mana"]=10171, - ["spell_damage_+%_per_level"]=2988, - ["spell_damage_+%_per_power_charge"]=2164, - ["spell_damage_+%_per_summoned_skeleton"]=10172, - ["spell_damage_+%_while_dual_wielding"]=1254, - ["spell_damage_+%_while_es_full"]=3105, - ["spell_damage_+%_while_holding_shield"]=1253, - ["spell_damage_+%_while_no_mana_reserved"]=3108, - ["spell_damage_+%_while_not_low_mana"]=3109, - ["spell_damage_+%_while_shocked"]=10183, - ["spell_damage_+%_while_you_have_arcane_surge"]=10184, - ["spell_damage_modifiers_apply_to_attack_damage"]=2709, - ["spell_damage_taken_+%_from_blinded_enemies"]=3245, - ["spell_damage_taken_+%_when_on_low_mana"]=2495, - ["spell_damage_taken_+_per_barkskin_stack"]=561, - ["spell_elemental_damage_+%"]=2091, - ["spell_fire_damage_+%"]=1249, - ["spell_hits_against_you_inflict_poison_%"]=10185, - ["spell_impale_on_crit_%_chance"]=10186, - ["spell_maximum_added_chaos_damage"]=1431, - ["spell_maximum_added_chaos_damage_while_dual_wielding"]=2130, - ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=2131, - ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=2132, - ["spell_maximum_added_cold_damage"]=1429, - ["spell_maximum_added_cold_damage_per_power_charge"]=1849, - ["spell_maximum_added_cold_damage_while_dual_wielding"]=2133, - ["spell_maximum_added_cold_damage_while_holding_a_shield"]=2134, - ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=2135, - ["spell_maximum_added_fire_damage"]=1428, - ["spell_maximum_added_fire_damage_while_dual_wielding"]=2136, - ["spell_maximum_added_fire_damage_while_holding_a_shield"]=2137, - ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=2138, - ["spell_maximum_added_lightning_damage"]=1430, - ["spell_maximum_added_lightning_damage_per_10_intelligence"]=10149, - ["spell_maximum_added_lightning_damage_while_dual_wielding"]=2139, - ["spell_maximum_added_lightning_damage_while_holding_a_shield"]=2140, - ["spell_maximum_added_lightning_damage_while_unarmed"]=2462, - ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=2141, - ["spell_maximum_added_physical_damage"]=1427, - ["spell_maximum_added_physical_damage_per_3_levels"]=1294, - ["spell_maximum_added_physical_damage_while_dual_wielding"]=2142, - ["spell_maximum_added_physical_damage_while_holding_a_shield"]=2143, - ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=2144, - ["spell_maximum_base_chaos_damage"]=1421, - ["spell_maximum_base_cold_damage"]=1419, - ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=1432, - ["spell_maximum_base_fire_damage"]=1418, - ["spell_maximum_base_lightning_damage"]=1420, - ["spell_maximum_base_physical_damage"]=1417, - ["spell_minimum_added_chaos_damage"]=1431, - ["spell_minimum_added_chaos_damage_while_dual_wielding"]=2130, - ["spell_minimum_added_chaos_damage_while_holding_a_shield"]=2131, - ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=2132, - ["spell_minimum_added_cold_damage"]=1429, - ["spell_minimum_added_cold_damage_per_power_charge"]=1849, - ["spell_minimum_added_cold_damage_while_dual_wielding"]=2133, - ["spell_minimum_added_cold_damage_while_holding_a_shield"]=2134, - ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=2135, - ["spell_minimum_added_fire_damage"]=1428, - ["spell_minimum_added_fire_damage_while_dual_wielding"]=2136, - ["spell_minimum_added_fire_damage_while_holding_a_shield"]=2137, - ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=2138, - ["spell_minimum_added_lightning_damage"]=1430, - ["spell_minimum_added_lightning_damage_per_10_intelligence"]=10149, - ["spell_minimum_added_lightning_damage_while_dual_wielding"]=2139, - ["spell_minimum_added_lightning_damage_while_holding_a_shield"]=2140, - ["spell_minimum_added_lightning_damage_while_unarmed"]=2462, - ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=2141, - ["spell_minimum_added_physical_damage"]=1427, - ["spell_minimum_added_physical_damage_per_3_levels"]=1294, - ["spell_minimum_added_physical_damage_while_dual_wielding"]=2142, - ["spell_minimum_added_physical_damage_while_holding_a_shield"]=2143, - ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=2144, - ["spell_minimum_base_chaos_damage"]=1421, - ["spell_minimum_base_cold_damage"]=1419, - ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=1432, - ["spell_minimum_base_fire_damage"]=1418, - ["spell_minimum_base_lightning_damage"]=1420, - ["spell_minimum_base_physical_damage"]=1417, - ["spell_physical_damage_%_to_convert_to_fire"]=10187, - ["spell_projectiles_arrive_instantly"]=10188, - ["spell_repeat_count"]=1918, - ["spell_skill_gem_level_+"]=1632, - ["spell_skills_always_crit_on_final_repeat"]=10189, - ["spell_skills_critical_strike_multiplier_+_on_final_repeat"]=10190, - ["spell_skills_deal_no_damage"]=10191, - ["spell_skills_never_crit_except_on_final_repeat"]=10192, - ["spell_staff_damage_+%"]=1251, - ["spell_suppression_chance_%_if_all_equipment_grants_evasion"]=10193, - ["spell_suppression_chance_%_if_enemy_hit_recently"]=10194, - ["spell_suppression_chance_%_if_suppressed_spell_recently"]=10209, - ["spell_suppression_chance_%_if_taken_spell_damage_recently"]=3261, - ["spell_suppression_chance_%_per_endurance_charge"]=10195, - ["spell_suppression_chance_%_per_equipped_dagger"]=10196, - ["spell_suppression_chance_%_per_fortification"]=2291, - ["spell_suppression_chance_%_per_frenzy_charge"]=2570, - ["spell_suppression_chance_%_per_hit_suppressed_recently"]=10197, - ["spell_suppression_chance_%_per_power_charge"]=10198, - ["spell_suppression_chance_%_while_affected_by_grace"]=10199, - ["spell_suppression_chance_%_while_affected_by_haste"]=10200, - ["spell_suppression_chance_%_while_channelling"]=10201, - ["spell_suppression_chance_%_while_holding_shield"]=10202, - ["spell_suppression_chance_%_while_moving"]=10203, - ["spell_suppression_chance_%_while_off_hand_empty"]=10204, - ["spell_suppression_chance_%_while_on_full_energy_shield"]=10210, - ["spell_suppression_chance_%_while_on_full_life"]=10211, - ["spell_suppression_chance_%_while_phasing"]=10205, - ["spell_suppression_chance_is_lucky"]=10206, - ["spell_suppression_chance_modifiers_apply_to_avoid_all_elemental_ailments_at_%_value"]=10207, - ["spell_suppression_chance_modifiers_apply_to_chance_to_double_armour_effect_on_hit_at_%_value"]=10208, - ["spells_chance_to_blind_on_hit_%"]=10212, - ["spells_chance_to_hinder_on_hit_%"]=10213, - ["spells_chance_to_knockback_on_hit_%"]=10214, - ["spells_chance_to_poison_on_hit_%"]=10215, - ["spells_corrosion_on_hit_%"]=10216, - ["spells_have_culling_strike"]=2556, - ["spells_impale_on_hit_%_chance"]=10217, - ["spells_inflict_intimidate_on_crit"]=10218, - ["spells_number_of_additional_projectiles"]=4331, - ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=10221, - ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=10219, - ["spells_you_cast_gain_added_physical_damage_%_life_cost_if_payable"]=10220, - ["spellslinger_cooldown_duration_+%"]=10222, - ["spellslinger_mana_reservation_+%"]=10225, - ["spellslinger_mana_reservation_efficiency_+%"]=10224, - ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=10223, - ["spend_energy_shield_for_costs_before_mana"]=3139, - ["spider_aspect_debuff_duration_+%"]=10226, - ["spider_aspect_reserves_no_mana"]=10227, - ["spider_aspect_skill_area_of_effect_+%"]=10228, - ["spider_aspect_web_interval_ms_override"]=10229, - ["spike_slam_num_spikes"]=10230, - ["spirit_offering_critical_strike_chance_+%"]=10231, - ["spirit_offering_critical_strike_multiplier_+"]=10232, - ["spirit_offering_duration_+%"]=3927, - ["spirit_offering_effect_+%"]=1198, - ["spirit_offering_physical_damage_%_to_add_as_chaos"]=4210, - ["split_arrow_critical_strike_chance_+%"]=3962, - ["split_arrow_damage_+%"]=3671, - ["split_arrow_num_of_additional_projectiles"]=3972, - ["split_arrow_number_of_additional_arrows"]=3185, - ["split_arrow_projectiles_fire_in_parallel_x_dist"]=10233, - ["splitting_steel_area_of_effect_+%"]=10235, - ["splitting_steel_damage_+%"]=10236, - ["spread_freeze_to_nearby_enemies"]=10237, - ["spread_ignite_to_nearby_enemies"]=10238, - ["spread_poison_to_nearby_enemies_on_kill"]=1065, - ["stacking_damage_+%_on_kill_for_4_seconds"]=3632, - ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=3335, - ["staff_accuracy_rating"]=2033, - ["staff_accuracy_rating_+%"]=1463, - ["staff_ailment_damage_+%"]=1334, - ["staff_attack_speed_+%"]=1445, - ["staff_block_%"]=1175, - ["staff_critical_strike_chance_+%"]=1494, - ["staff_critical_strike_multiplier_+"]=1524, - ["staff_damage_+%"]=1332, - ["staff_elemental_damage_+%"]=2146, - ["staff_hit_and_ailment_damage_+%"]=1333, - ["staff_stun_duration_+%"]=1890, - ["stance_skill_cooldown_speed_+%"]=10242, - ["stance_skill_reservation_+%"]=10244, - ["stance_skills_mana_reservation_efficiency_+%"]=10243, - ["stance_swap_cooldown_modifier_ms"]=10246, - ["start_at_zero_energy_shield"]=10840, - ["static_strike_additional_number_of_beam_targets"]=10248, - ["static_strike_damage_+%"]=3694, - ["static_strike_duration_+%"]=3954, - ["static_strike_radius_+%"]=3842, - ["status_ailments_removed_at_low_life"]=3346, - ["status_ailments_you_inflict_duration_+%_while_focused"]=10249, - ["status_ailments_you_inflict_duration_+%_with_bows"]=10250, - ["stealth_+%"]=10252, - ["stealth_+%_if_have_hit_with_claw_recently"]=10253, - ["stealth_+%_while_affected_by_elusive"]=10251, - ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4933, - ["steel_steal_area_of_effect_+%"]=10254, - ["steel_steal_cast_speed_+%"]=10255, - ["steel_steal_reflect_damage_+%"]=10256, - ["steelskin_damage_limit_+%"]=10257, - ["stibnite_flask_evasion_rating_+%_final"]=10258, - ["stone_golem_damage_+%"]=3717, - ["stone_golem_elemental_resistances_%"]=4008, - ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=10259, - ["storm_armageddon_sigils_can_target_reaper_minions"]=10260, - ["storm_blade_has_local_attack_speed_+%"]=10261, - ["storm_blade_has_local_lightning_penetration_%"]=10262, - ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"]=10263, - ["storm_blade_quality_chance_to_shock_%"]=10264, - ["storm_blade_quality_local_critical_strike_chance_+%"]=10265, - ["storm_brand_additional_chain_chance_%"]=10266, - ["storm_brand_attached_target_lightning_penetration_%"]=10267, - ["storm_brand_damage_+%"]=10268, - ["storm_burst_15_%_chance_to_create_additional_orb"]=10269, - ["storm_burst_additional_object_chance_%"]=10270, - ["storm_burst_area_of_effect_+%"]=10271, - ["storm_burst_avoid_interruption_while_casting_%"]=10272, - ["storm_burst_damage_+%"]=3759, - ["storm_burst_number_of_additional_projectiles"]=10273, - ["storm_call_damage_+%"]=3695, - ["storm_call_duration_+%"]=3955, - ["storm_call_radius_+%"]=3843, - ["storm_cloud_charge_count"]=3467, - ["storm_cloud_charged_damage_+%_final"]=3468, - ["storm_cloud_critical_strike_chance_+%"]=3967, - ["storm_cloud_radius_+%"]=3870, - ["storm_rain_damage_+%"]=10274, - ["storm_rain_num_additional_arrows"]=10275, - ["stormbind_skill_area_of_effect_+%"]=10276, - ["stormbind_skill_damage_+%"]=10277, - ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=10278, - ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=10279, - ["strength_+%"]=1208, - ["strength_+%_if_2_warlord_items"]=4483, - ["strength_applies_to_fish_reel_speed_at_20%_value"]=10280, - ["strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead"]=10281, - ["strength_skill_gem_level_+"]=10282, - ["strike_skills_fortify_on_hit"]=10283, - ["strike_skills_knockback_on_melee_hit"]=10284, - ["strong_casting"]=10854, - ["strongest_packmate_multiplier_+%_final"]=10285, - ["stun_duration_+%"]=2027, - ["stun_duration_+%_per_15_strength"]=10287, - ["stun_duration_+%_per_endurance_charge"]=10288, - ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=3357, - ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=3358, - ["stun_duration_on_critical_strike_+%"]=10286, - ["stun_duration_on_self_+%"]=4198, - ["stun_nearby_enemies_when_stunned_chance_%"]=10289, - ["stun_recovery_+%_per_frenzy_charge"]=1927, - ["stun_threshold_+%"]=3296, - ["stun_threshold_+%_per_rage"]=10292, - ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=10290, - ["stun_threshold_based_on_%_mana_instead_of_life"]=3295, - ["stun_threshold_based_on_energy_shield_instead_of_life"]=4300, - ["stun_threshold_increased_by_overcapped_fire_resistance"]=10291, - ["stun_threshold_reduction_+%_while_using_flask"]=2951, - ["stun_threshold_reduction_+%_with_500_or_more_strength"]=10293, - ["stuns_have_culling_strike"]=2064, - ["summon_2_totems"]=10294, - ["summon_arbalist_attack_speed_+%"]=10295, - ["summon_arbalist_chains_+"]=10296, - ["summon_arbalist_chance_to_bleed_%"]=10297, - ["summon_arbalist_chance_to_crush_on_hit_%"]=10298, - ["summon_arbalist_chance_to_deal_double_damage_%"]=10299, - ["summon_arbalist_chance_to_freeze_%"]=10315, - ["summon_arbalist_chance_to_ignite_%"]=10316, - ["summon_arbalist_chance_to_ignite_freeze_shock_%"]=10300, - ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=10318, - ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=10319, - ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=10320, - ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=10301, - ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=10302, - ["summon_arbalist_chance_to_poison_%"]=10303, - ["summon_arbalist_chance_to_shock_%"]=10317, - ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=10304, - ["summon_arbalist_number_of_additional_projectiles"]=10305, - ["summon_arbalist_number_of_splits"]=10306, - ["summon_arbalist_physical_damage_%_to_add_as_cold"]=10307, - ["summon_arbalist_physical_damage_%_to_add_as_fire"]=10308, - ["summon_arbalist_physical_damage_%_to_add_as_lightning"]=10309, - ["summon_arbalist_physical_damage_%_to_convert_to_cold"]=10310, - ["summon_arbalist_physical_damage_%_to_convert_to_fire"]=10311, - ["summon_arbalist_physical_damage_%_to_convert_to_lightning"]=10312, - ["summon_arbalist_projectiles_fork"]=10313, - ["summon_arbalist_targets_to_pierce"]=10314, - ["summon_fire_skitterbot"]=10321, - ["summon_raging_spirit_melee_splash_fire_damage_only"]=10322, - ["summon_reaper_cooldown_speed_+%"]=10323, - ["summon_skeleton_gem_level_+"]=1641, - ["summon_skeletons_additional_warrior_skeleton_%_chance"]=10325, - ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=10324, - ["summon_skeletons_cooldown_modifier_ms"]=10326, - ["summon_skeletons_num_additional_warrior_skeletons"]=4025, - ["summon_skitterbots_area_of_effect_+%"]=10327, - ["summon_skitterbots_mana_reservation_+%"]=10328, - ["summon_totem_cast_speed_+%"]=2602, - ["summoned_phantasms_grant_buff"]=10329, - ["summoned_phantasms_have_no_duration"]=10330, - ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3437, - ["summoned_raging_spirit_duration_+%"]=3436, - ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=10331, - ["summoned_reaper_damage_+%"]=10332, - ["summoned_reaper_physical_dot_multiplier_+"]=10333, - ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=10334, - ["summoned_skeleton_%_physical_to_chaos"]=10335, - ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=4436, - ["summoned_skeletons_cover_in_ash_on_hit_%"]=10336, - ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=10337, - ["summoned_skeletons_have_avatar_of_fire"]=10855, - ["summoned_skeletons_hits_cant_be_evaded"]=10338, - ["summoned_skitterbots_auras_also_affect_you"]=10339, - ["summoned_skitterbots_cooldown_recovery_+%"]=10340, - ["summoned_skitterbots_non_damaging_ailment_effect_+%"]=10341, - ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=10342, - ["sunder_wave_delay_+%"]=3873, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=10343, - ["support_anticipation_charge_gain_frequency_+%"]=10344, - ["support_anticipation_charge_gain_interval_ms"]=10745, - ["support_anticipation_rapid_fire_count"]=10745, - ["support_gem_elemental_damage_+%_final"]=3618, - ["support_gems_socketed_in_amulet_also_support_body_skills"]=246, - ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=247, - ["support_maimed_enemies_physical_damage_taken_+%"]=10345, - ["support_minion_maximum_life_+%_final"]=1788, - ["support_mirage_archer_base_duration"]=10347, - ["support_slashing_damage_+%_final_from_distance"]=10348, - ["support_slower_projectiles_damage_+%_final"]=2867, - ["supported_active_skill_gem_expereince_gained_+%"]=2915, - ["supported_active_skill_gem_level_+"]=2783, - ["supported_active_skill_gem_quality_%"]=2844, - ["supported_aura_skill_gem_level_+"]=10349, - ["supported_cold_skill_gem_level_+"]=10350, - ["supported_elemental_skill_gem_level_+"]=10351, - ["supported_fire_skill_gem_level_+"]=10352, - ["supported_lightning_skill_gem_level_+"]=10353, - ["suppressed_spell_damage_bypass_energy_shield_%"]=1171, - ["suppressed_spell_damage_cannot_inflict_elemental_ailments"]=10354, - ["suppressed_spell_damage_taken_%_recouped_as_es"]=1172, - ["sweep_add_endurance_charge_on_hit_%"]=3844, - ["sweep_damage_+%"]=3696, - ["sweep_knockback_chance_%"]=3999, - ["sweep_radius_+%"]=3845, - ["sword_accuracy_rating"]=2028, - ["sword_accuracy_rating_+%"]=1468, - ["sword_ailment_damage_+%"]=1365, - ["sword_attack_speed_+%"]=1450, - ["sword_critical_strike_chance_+%"]=1492, - ["sword_critical_strike_multiplier_+"]=1521, - ["sword_damage_+%"]=1363, - ["sword_hit_and_ailment_damage_+%"]=1364, - ["sword_physical_damage_%_to_add_as_fire"]=3064, - ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=10355, - ["synthesis_map_global_mod_values_doubled_on_this_node"]=10356, - ["synthesis_map_global_mod_values_tripled_on_this_node"]=10357, - ["synthesis_map_memories_do_not_collapse_on_this_node"]=10358, - ["synthesis_map_monster_slain_experience_+%_on_this_node"]=10359, - ["synthesis_map_nearby_memories_have_bonus"]=10360, - ["synthesis_map_node_additional_uses_+"]=10361, - ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=10362, - ["synthesis_map_node_grants_additional_global_mod"]=10363, - ["synthesis_map_node_grants_no_global_mod"]=10364, - ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=10365, - ["synthesis_map_node_item_quantity_increases_doubled"]=10366, - ["synthesis_map_node_item_rarity_increases_doubled"]=10367, - ["synthesis_map_node_level_+"]=10368, - ["synthesis_map_node_monsters_drop_no_items"]=10369, - ["synthesis_map_node_pack_size_increases_doubled"]=10370, - ["tailwind_effect_on_self_+%"]=10371, - ["tailwind_effect_on_self_+%_per_gale_force"]=10372, - ["tailwind_if_have_crit_recently"]=10373, - ["take_20%_less_area_damage_from_hits_%_chance_per_2%_overcapped_cold_resistance"]=10374, - ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=10375, - ["take_chaos_damage_from_ignite_instead"]=2476, - ["take_half_area_damage_from_hit_%_chance"]=10376, - ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=10377, - ["take_no_fire_damage_over_time_if_stopped_taking_fire_damage_over_time_recently"]=10378, - ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=10379, - ["targets_are_unaffected_by_your_hexes"]=2623, - ["taunt_duration_+%"]=1806, - ["taunt_on_projectile_hit_chance_%"]=10380, - ["taunted_enemies_by_warcry_damage_taken_+%"]=10381, - ["taunted_enemies_chance_to_be_stunned_+%"]=3238, - ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=4280, - ["taunted_enemies_damage_taken_+%"]=4304, - ["tectonic_slam_%_chance_to_do_charged_slam"]=10387, - ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=10382, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=10383, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=10384, - ["tectonic_slam_area_of_effect_+%"]=10385, - ["tectonic_slam_damage_+%"]=10386, - ["tectonic_slam_side_crack_additional_chance_%"]=10389, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=10388, - ["tempest_shield_buff_effect_+%"]=10390, - ["tempest_shield_damage_+%"]=3741, - ["tempest_shield_num_of_additional_projectiles_in_chain"]=4052, - ["temporal_chains_curse_effect_+%"]=4032, - ["temporal_chains_duration_+%"]=3933, - ["temporal_chains_effeciveness_+%"]=1668, - ["temporal_chains_ignores_hexproof"]=2632, - ["temporal_chains_mana_reservation_+%"]=4073, - ["temporal_chains_no_reservation"]=10391, - ["temporal_rift_cooldown_speed_+%"]=10392, - ["thaumaturgy_rotation_active"]=10393, - ["threshold_jewel_magma_orb_damage_+%_final"]=10394, - ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=10395, - ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=10396, - ["throw_X_additional_traps_if_dual_wielding"]=10397, - ["thrown_shield_secondary_projectile_damage_+%_final"]=10398, - ["tincture_cooldown_recovery_+%"]=10399, - ["tincture_effect_+%_at_high_toxicity"]=10401, - ["tincture_effect_+%_if_used_life_flask_recently"]=10402, - ["tincture_effect_+%_while_not_using_flask"]=10400, - ["tincture_effects_linger_for_ms_per_toxicity_up_to_6_seconds"]=10403, - ["tincture_mod_effect_+%_per_empty_flask_slot"]=10404, - ["tincture_toxicity_rate_+%"]=10405, - ["tinctures_can_apply_to_ranged_weapons"]=10406, - ["tinctures_deactivate_on_reaching_X_toxicity"]=10407, - ["tornado_damage_+%"]=10409, - ["tornado_damage_frequency_+%"]=10408, - ["tornado_movement_speed_+%"]=10410, - ["tornado_only_primary_duration_+%"]=10411, - ["tornado_shot_critical_strike_chance_+%"]=3966, - ["tornado_shot_damage_+%"]=3701, - ["tornado_shot_num_of_secondary_projectiles"]=3974, - ["tornado_skill_area_of_effect_+%"]=10412, - ["total_recovery_per_minute_from_life_leech_is_doubled"]=10413, - ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3812, - ["totem_additional_physical_damage_reduction_%"]=2813, - ["totem_attack_damage_leeched_as_mana_to_you_permyriad"]=10415, - ["totem_aura_enemy_damage_+%_final"]=3814, - ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3815, - ["totem_chaos_immunity"]=10416, - ["totem_chaos_resistance_%"]=10417, - ["totem_critical_strike_chance_+%"]=1510, - ["totem_critical_strike_multiplier_+"]=1540, - ["totem_damage_+%"]=1217, - ["totem_damage_+%_final_per_active_totem"]=3770, - ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=10418, - ["totem_damage_+%_per_10_devotion"]=10419, - ["totem_damage_leeched_as_life_to_you_permyriad"]=4261, - ["totem_duration_+%"]=1802, - ["totem_elemental_resistance_%"]=2811, - ["totem_energy_shield_+%"]=1800, - ["totem_fire_immunity"]=1631, - ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=10420, - ["totem_life_+%"]=1798, - ["totem_life_+%_final"]=10422, - ["totem_life_increased_by_overcapped_fire_resistance"]=10421, - ["totem_mana_+%"]=1799, - ["totem_maximum_energy_shield"]=10423, - ["totem_number_of_additional_projectiles"]=3106, - ["totem_physical_attack_damage_leeched_as_life_to_you_permyriad"]=10424, - ["totem_placement_range_+%"]=10425, - ["totem_range_+%"]=1801, - ["totem_skill_area_of_effect_+%"]=2605, - ["totem_skill_attack_speed_+%"]=2604, - ["totem_skill_cast_speed_+%"]=2603, - ["totem_skill_gem_level_+"]=10426, - ["totem_spells_damage_+%"]=10427, - ["totemified_skills_taunt_on_hit_%"]=3453, - ["totems_action_speed_cannot_be_modified_below_base"]=10414, - ["totems_attack_speed_+%_per_active_totem"]=4218, - ["totems_cannot_be_stunned"]=3086, - ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=3337, - ["totems_explode_on_death_for_%_life_as_physical"]=10428, - ["totems_explode_on_death_for_%_life_as_physical_divide_20"]=10429, - ["totems_gain_%_of_players_armour"]=3246, - ["totems_nearby_enemies_damage_taken_+%"]=10430, - ["totems_regenerate_%_life_per_minute"]=10432, - ["totems_regenerate_1_life_per_x_player_life_regeneration"]=10431, - ["totems_resist_all_elements_+%_per_active_totem"]=4200, - ["totems_spells_cast_speed_+%_per_active_totem"]=4206, - ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=10433, - ["toxic_rain_damage_+%"]=10434, - ["toxic_rain_num_of_additional_projectiles"]=10435, - ["toxic_rain_physical_damage_%_to_add_as_chaos"]=10436, - ["toxic_rain_skill_physical_damage_%_to_convert_to_chaos"]=10437, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2958, - ["trap_%_chance_to_trigger_twice"]=3821, - ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=10438, - ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2808, - ["trap_and_mine_maximum_added_physical_damage"]=3820, - ["trap_and_mine_minimum_added_physical_damage"]=3820, - ["trap_and_mine_throwing_speed_+%"]=10439, - ["trap_cooldown_speed_+%_per_recent_mine_detonation"]=10440, - ["trap_critical_strike_chance_+%"]=1498, - ["trap_critical_strike_multiplier_+"]=1529, - ["trap_damage_+%"]=1218, - ["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3817, - ["trap_damage_buildup_damage_+%_final_when_first_set"]=3816, - ["trap_damage_penetrates_%_elemental_resistance"]=2806, - ["trap_duration_+%"]=1947, - ["trap_mine_skill_num_of_additional_chains"]=10441, - ["trap_or_mine_damage_+%"]=1219, - ["trap_skill_added_cooldown_count"]=10442, - ["trap_skill_area_of_effect_+%"]=3503, - ["trap_skill_effect_duration_+%"]=10443, - ["trap_spread_+%"]=10444, - ["trap_throw_skills_have_blood_magic"]=10868, - ["trap_throwing_speed_+%"]=1951, - ["trap_throwing_speed_+%_per_frenzy_charge"]=10445, - ["trap_trigger_radius_+%"]=1949, - ["traps_and_mines_%_chance_to_poison"]=4114, - ["traps_cannot_be_triggered_by_enemies"]=10446, - ["traps_do_not_explode_on_timeout"]=2803, - ["traps_explode_on_timeout"]=2804, - ["traps_invulnerable"]=10447, - ["traps_invulnerable_for_duration_ms"]=2809, - ["travel_skill_cooldown_speed_+%"]=4405, - ["travel_skills_cannot_be_exerted"]=10448, - ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=4416, - ["travel_skills_crit_every_X_uses"]=10449, - ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=10450, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=10451, - ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=10452, - ["trickster_damage_+%_final_per_different_mastery"]=1670, - ["trickster_damage_over_time_+%_final"]=10453, - ["trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"]=3553, - ["trigger_level_20_summon_spectral_wolf_on_crit"]=10454, - ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=854, - ["trigger_socketed_spell_on_attack_%"]=855, - ["trigger_socketed_spell_on_skill_use_%"]=857, - ["trigger_socketed_spells_when_you_focus_%"]=858, - ["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=180, - ["triggerbots_damage_+%_final_with_triggered_spells"]=10455, - ["triggered_spell_spell_damage_+%"]=10456, - ["triggered_spells_all_damage_can_poison"]=10458, - ["triggered_spells_poison_on_hit"]=10457, - ["two_handed_attack_damage_+%_per_unlinked_socket_on_weapon"]=10459, - ["two_handed_melee_accuracy_rating_+%"]=1461, - ["two_handed_melee_area_damage_+%"]=10460, - ["two_handed_melee_area_of_effect_+%"]=10461, - ["two_handed_melee_attack_speed_+%"]=1442, - ["two_handed_melee_cold_damage_+%"]=1323, - ["two_handed_melee_critical_strike_chance_+%"]=1500, - ["two_handed_melee_critical_strike_multiplier_+"]=1501, - ["two_handed_melee_fire_damage_+%"]=1322, - ["two_handed_melee_physical_damage_+%"]=1317, - ["two_handed_melee_stun_duration_+%"]=1888, - ["two_handed_melee_weapon_ailment_damage_+%"]=1320, - ["two_handed_melee_weapon_hit_and_ailment_damage_+%"]=1318, - ["two_handed_weapon_ailment_damage_+%"]=1321, - ["two_handed_weapon_hit_and_ailment_damage_+%"]=1319, - ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=10462, - ["uber_domain_monster_all_resistances_+%_per_revival"]=10463, - ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=10464, - ["uber_domain_monster_avoid_stun_%_per_revival"]=10465, - ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=10466, - ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=10467, - ["uber_domain_monster_damage_+%_per_revival"]=10468, - ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=10469, - ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=10470, - ["uber_domain_monster_maximum_life_+%_per_revival"]=10471, - ["uber_domain_monster_movement_speed_+%_per_revival"]=10472, - ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=10473, - ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=10474, - ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=10475, - ["uber_domain_monster_reward_chance_+%"]=10476, - ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=10477, - ["unaffected_by_bleeding_while_affected_by_malevolence"]=10478, - ["unaffected_by_bleeding_while_leeching"]=10479, - ["unaffected_by_blind"]=10480, - ["unaffected_by_burning_ground"]=10481, - ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=10482, - ["unaffected_by_chill"]=10483, - ["unaffected_by_chill_if_2_redeemer_items"]=4484, - ["unaffected_by_chill_while_channelling"]=10484, - ["unaffected_by_chill_while_mana_leeching"]=10485, - ["unaffected_by_chilled_ground"]=10486, - ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=10487, - ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=10488, - ["unaffected_by_corrupted_blood_while_leeching"]=10489, - ["unaffected_by_curses"]=2502, - ["unaffected_by_curses_while_affected_by_zealotry"]=10490, - ["unaffected_by_damaging_ailments"]=10491, - ["unaffected_by_desecrated_ground"]=10492, - ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=10493, - ["unaffected_by_enfeeble_while_affected_by_grace"]=10494, - ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=10495, - ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=10496, - ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=10497, - ["unaffected_by_ignite"]=10498, - ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=10499, - ["unaffected_by_ignite_if_2_warlord_items"]=4485, - ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=10500, - ["unaffected_by_poison_while_affected_by_malevolence"]=10501, - ["unaffected_by_shock"]=10502, - ["unaffected_by_shock_if_2_crusader_items"]=4486, - ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=10503, - ["unaffected_by_shock_while_channelling"]=10504, - ["unaffected_by_shock_while_es_leeching"]=10505, - ["unaffected_by_shocked_ground"]=10506, - ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=10507, - ["unaffected_by_temporal_chains"]=10508, - ["unaffected_by_temporal_chains_while_affected_by_haste"]=10509, - ["unaffected_by_vulnerability_while_affected_by_determination"]=10510, - ["unarmed_attack_critical_strike_multiplier_+"]=5998, - ["unarmed_attack_number_of_spirit_strikes"]=10512, - ["unarmed_damage_+%_vs_bleeding_enemies"]=3592, - ["unarmed_melee_attack_critical_strike_multiplier_+"]=10513, - ["unarmed_melee_attack_speed_+%"]=1453, - ["unarmed_melee_physical_damage_+%"]=1324, - ["unattached_sigil_attachment_range_+%_per_second"]=10514, - ["unearth_additional_corpse_level"]=10515, - ["unholy_might_while_you_have_no_energy_shield"]=2760, - ["unique_add_power_charge_on_melee_knockback_%"]=2961, - ["unique_attacks_fire_X_additional_projectiles_while_in_off_hand"]=10516, - ["unique_attacks_have_area_+%_while_in_main_hand"]=10517, - ["unique_body_armour_unarmed_melee_attack_speed_+%_final"]=1454, - ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=4450, - ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=10873, - ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2994, - ["unique_chill_duration_+%_when_in_off_hand"]=2792, - ["unique_chin_sol_close_range_bow_damage_+%_final"]=2466, - ["unique_chin_sol_close_range_knockback"]=2468, - ["unique_cold_damage_can_also_ignite"]=2906, - ["unique_cold_damage_ignites"]=2881, - ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1656, - ["unique_critical_strike_chance_+%_final"]=2849, - ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2490, - ["unique_facebreaker_unarmed_melee_physical_damage_+%_final"]=2460, - ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1650, - ["unique_fire_damage_shocks"]=2880, - ["unique_foulborn_chin_sol_not_close_range_bow_damage_+%_final"]=2467, - ["unique_gain_onslaught_when_hit_duration_ms"]=2851, - ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2866, - ["unique_gain_power_charge_on_non_crit"]=2924, - ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=10518, - ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=10519, - ["unique_ignite_chance_%_when_in_main_hand"]=2791, - ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=10522, - ["unique_jewel_flask_duration_+%_final"]=10523, - ["unique_jewel_grants_notable_hash_part_1"]=10524, - ["unique_jewel_grants_notable_hash_part_2"]=10525, - ["unique_jewel_reserved_blood_maximum_life_+%_final"]=10526, - ["unique_lightning_damage_freezes"]=2882, - ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1662, - ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1415, - ["unique_local_maximum_added_cold_damage_when_in_off_hand"]=1396, - ["unique_local_maximum_added_fire_damage_when_in_main_hand"]=1387, - ["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=1415, - ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1396, - ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1387, - ["unique_loris_lantern_golden_light"]=2578, - ["unique_lose_a_power_charge_when_hit"]=10528, - ["unique_lose_all_endurance_charges_when_hit"]=2850, - ["unique_lose_all_power_charges_on_crit"]=2925, - ["unique_map_boss_class_of_rare_items_to_drop"]=2738, - ["unique_map_boss_number_of_rare_items_to_drop"]=2738, - ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2994, - ["unique_mine_damage_+%_final"]=1221, - ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2994, - ["unique_monster_dropped_item_rarity_+%"]=10529, - ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=3015, - ["unique_primordial_tether_golem_damage_+%_final"]=3724, - ["unique_primordial_tether_golem_life_+%_final"]=4118, - ["unique_quill_rain_damage_+%_final"]=2480, - ["unique_quiver_chill_as_though_damage_+%_final"]=10530, - ["unique_recover_%_maximum_life_on_x_altenator"]=10531, - ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=10532, - ["unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final"]=1223, - ["unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final"]=1224, - ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=10533, - ["unique_spell_block_%_when_in_off_hand"]=1185, - ["unique_spread_poison_to_nearby_allies_as_regeneration_on_kill"]=2876, - ["unique_spread_poison_to_nearby_enemies_during_flask_effect"]=1066, - ["unique_spread_poison_to_nearby_enemies_on_kill"]=2875, - ["unique_sunblast_throw_traps_in_circle_radius"]=10534, - ["unique_thread_of_hope_base_resist_all_elements_%"]=10741, - ["unique_volkuurs_clutch_poison_duration_+%_final"]=3195, - ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2949, - ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=10535, - ["unnerve_for_4_seconds_on_hit_with_wands"]=10536, - ["unnerve_nearby_enemies_on_use_for_ms"]=10537, - ["unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit"]=2563, + ["skills_cost_no_mana_while_focused"]=10235, + ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_8_steel_ammo"]=10236, + ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=10237, + ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=10238, + ["skills_supported_by_nightblade_have_elusive_effect_+%"]=10239, + ["skills_that_throw_mines_reserve_life"]=10240, + ["skip_life_sacrifice_chance_%"]=10241, + ["skitterbots_mana_reservation_efficiency_+%"]=10243, + ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=10242, + ["slam_ancestor_totem_damage_+%"]=4202, + ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3864, + ["slam_ancestor_totem_radius_+%"]=4205, + ["slash_ancestor_totem_damage_+%"]=4203, + ["slash_ancestor_totem_elemental_resistance_%"]=2846, + ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3863, + ["slash_ancestor_totem_radius_+%"]=4204, + ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=10244, + ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1222, + ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=10245, + ["slayer_damage_+%_final_against_unique_enemies"]=10246, + ["slayer_damage_+%_final_from_distance"]=10247, + ["slither_elusive_effect_+%"]=10248, + ["slither_wither_stacks"]=10249, + ["smite_aura_effect_+%"]=10250, + ["smite_chance_for_lighting_to_strike_extra_target_%"]=10251, + ["smite_damage_+%"]=10252, + ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=10253, + ["smoke_mine_base_movement_velocity_+%"]=4169, + ["smoke_mine_duration_+%"]=3964, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=10255, + ["snapping_adder_damage_+%"]=10254, + ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=10256, + ["snipe_attack_speed_+%"]=10257, + ["snipe_max_stacks"]=10258, + ["socketed_non_cluster_jewels_have_no_effect"]=10259, + ["soul_eater_from_unique"]=10260, + ["soul_eater_maximum_stacks"]=10261, + ["soul_eater_maximum_stacks_+"]=7389, + ["soul_eater_on_rare_kill_ms"]=3485, + ["soul_link_duration_+%"]=10262, + ["soulcord_have_acceleration_shrine_effect_if_affected_by_no_flasks"]=624, + ["soulcord_have_brutal_shrine_effect_if_affected_by_no_flasks"]=625, + ["soulcord_have_chilling_shrine_effect_if_affected_by_no_flasks"]=626, + ["soulcord_have_diamond_shrine_effect_if_affected_by_no_flasks"]=627, + ["soulcord_have_echoing_shrine_effect_if_affected_by_no_flasks"]=628, + ["soulcord_have_gloom_shrine_effect_if_affected_by_no_flasks"]=629, + ["soulcord_have_impenetrable_shrine_effect_if_affected_by_no_flasks"]=630, + ["soulcord_have_massive_shrine_effect_if_affected_by_no_flasks"]=631, + ["soulcord_have_replenishing_shrine_effect_if_affected_by_no_flasks"]=632, + ["soulcord_have_resistance_shrine_effect_if_affected_by_no_flasks"]=633, + ["soulcord_have_resonating_shrine_effect_if_affected_by_no_flasks"]=634, + ["soulcord_have_shocking_shrine_effect_if_affected_by_no_flasks"]=635, + ["soulcord_have_skeleton_shrine_effect_if_affected_by_no_flasks"]=636, + ["soulfeast_number_of_secondary_projectiles"]=10263, + ["soulrend_applies_hinder_movement_speed_+%"]=10264, + ["soulrend_damage_+%"]=10265, + ["soulrend_number_of_additional_projectiles"]=10266, + ["spark_damage_+%"]=3705, + ["spark_num_of_additional_projectiles"]=4007, + ["spark_number_of_additional_projectiles"]=10267, + ["spark_projectile_speed_+%"]=3953, + ["spark_projectiles_nova"]=10268, + ["spark_skill_effect_duration_+%"]=10269, + ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=10270, + ["spectral_helix_damage_+%"]=10271, + ["spectral_helix_projectile_speed_+%"]=10272, + ["spectral_helix_rotations_%"]=10273, + ["spectral_shield_throw_additional_chains"]=10274, + ["spectral_shield_throw_damage_+%"]=10275, + ["spectral_shield_throw_num_of_additional_projectiles"]=10276, + ["spectral_shield_throw_projectile_speed_+%"]=10277, + ["spectral_shield_throw_secondary_projectiles_pierce"]=10278, + ["spectral_shield_throw_shard_projectiles_+%_final"]=10279, + ["spectral_spiral_weapon_base_number_of_bounces"]=10280, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=10281, + ["spectral_throw_damage_+%"]=3706, + ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=3291, + ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=10282, + ["spectral_throw_projectile_deceleration_+%"]=4024, + ["spectral_throw_projectile_speed_+%"]=3954, + ["spectre_attack_and_cast_speed_+%"]=3929, + ["spectre_damage_+%"]=3517, + ["spectre_elemental_resistances_%"]=4042, + ["spectre_maximum_life_+"]=10283, + ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=10284, + ["spectres_additional_base_critical_strike_chance"]=10285, + ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=10286, + ["spectres_base_maximum_all_resistances_%"]=10287, + ["spectres_base_skill_area_of_effect_+%"]=10288, + ["spectres_critical_strike_chance_+%"]=10289, + ["spectres_gain_arcane_surge_when_you_do"]=10290, + ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=10291, + ["spectres_have_base_duration_ms"]=10292, + ["spectres_number_of_additional_projectiles"]=10293, + ["spell_additional_critical_strike_chance_permyriad"]=10295, + ["spell_additional_critical_strike_chance_permyriad_if_4_shaper_items"]=4542, + ["spell_and_attack_block_chance_is_lucky_if_blocked_recently"]=10296, + ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=10297, + ["spell_and_attack_maximum_added_cold_damage"]=1422, + ["spell_and_attack_maximum_added_fire_damage"]=1421, + ["spell_and_attack_maximum_added_lightning_damage"]=1457, + ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=10297, + ["spell_and_attack_minimum_added_cold_damage"]=1422, + ["spell_and_attack_minimum_added_fire_damage"]=1421, + ["spell_and_attack_minimum_added_lightning_damage"]=1457, + ["spell_area_of_effect_+%"]=10298, + ["spell_base_fire_damage_%_maximum_life"]=1442, + ["spell_base_life_cost_%"]=10299, + ["spell_block_%_if_blocked_a_spell_recently"]=10303, + ["spell_block_%_if_blocked_an_attack_recently"]=10304, + ["spell_block_%_per_5_attack_block"]=1808, + ["spell_block_%_per_minion"]=10300, + ["spell_block_%_while_at_max_power_charges"]=10305, + ["spell_block_%_while_on_low_life"]=1193, + ["spell_block_chance_%_per_50_strength"]=1201, + ["spell_block_chance_%_while_holding_staff_or_shield"]=10301, + ["spell_block_equals_attack_block"]=1205, + ["spell_block_is_maximum_if_not_blocked_recently"]=10302, + ["spell_block_while_dual_wielding_%"]=1192, + ["spell_block_with_bow_%"]=1197, + ["spell_block_with_staff_%"]=1198, + ["spell_bow_damage_+%"]=1275, + ["spell_chance_to_deal_double_damage_%"]=10306, + ["spell_chance_to_shock_frozen_enemies_%"]=2984, + ["spell_cold_damage_+%"]=1273, + ["spell_critical_strike_chance_+%"]=1505, + ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=10307, + ["spell_critical_strike_chance_+%_per_100_max_life"]=10308, + ["spell_critical_strike_chance_+%_per_raised_spectre"]=10309, + ["spell_critical_strike_chance_+%_while_dual_wielding"]=6050, + ["spell_critical_strike_chance_+%_while_holding_shield"]=6051, + ["spell_critical_strike_chance_+%_while_wielding_staff"]=6052, + ["spell_critical_strike_multiplier_+_while_dual_wielding"]=6077, + ["spell_critical_strike_multiplier_+_while_holding_shield"]=6078, + ["spell_critical_strike_multiplier_+_while_wielding_staff"]=6079, + ["spell_critical_strikes_bifurcate"]=10310, + ["spell_damage_%_suppressed_if_not_suppressed_spell_recently"]=10311, + ["spell_damage_%_suppressed_if_taken_a_savage_hit_recently"]=10312, + ["spell_damage_%_suppressed_per_bark_below_max"]=10313, + ["spell_damage_%_suppressed_per_hit_suppressed_recently"]=10314, + ["spell_damage_%_suppressed_while_on_full_energy_shield"]=1194, + ["spell_damage_+%"]=1270, + ["spell_damage_+%_during_flask_effect"]=10319, + ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=10315, + ["spell_damage_+%_for_4_seconds_on_cast"]=3591, + ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=10320, + ["spell_damage_+%_if_have_crit_recently"]=10316, + ["spell_damage_+%_if_other_ring_is_elder_item"]=4387, + ["spell_damage_+%_if_you_have_blocked_recently"]=10321, + ["spell_damage_+%_per_100_max_life"]=10322, + ["spell_damage_+%_per_100_maximum_mana_up_to_60%"]=10323, + ["spell_damage_+%_per_10_int"]=2796, + ["spell_damage_+%_per_10_strength"]=10324, + ["spell_damage_+%_per_16_dex"]=10325, + ["spell_damage_+%_per_16_int"]=10326, + ["spell_damage_+%_per_16_strength"]=10327, + ["spell_damage_+%_per_200_mana_spent_recently"]=4408, + ["spell_damage_+%_per_5%_block_chance"]=2795, + ["spell_damage_+%_per_5%_spell_block_chance"]=10328, + ["spell_damage_+%_per_500_maximum_mana"]=10317, + ["spell_damage_+%_per_level"]=3022, + ["spell_damage_+%_per_power_charge"]=2187, + ["spell_damage_+%_per_summoned_skeleton"]=10318, + ["spell_damage_+%_while_dual_wielding"]=1277, + ["spell_damage_+%_while_es_full"]=3139, + ["spell_damage_+%_while_holding_shield"]=1276, + ["spell_damage_+%_while_no_mana_reserved"]=3142, + ["spell_damage_+%_while_not_low_mana"]=3143, + ["spell_damage_+%_while_shocked"]=10329, + ["spell_damage_+%_while_you_have_arcane_surge"]=10330, + ["spell_damage_modifiers_apply_to_attack_damage"]=2736, + ["spell_damage_taken_+%_from_blinded_enemies"]=3281, + ["spell_damage_taken_+%_when_on_low_mana"]=2521, + ["spell_damage_taken_+_per_barkskin_stack"]=572, + ["spell_elemental_damage_+%"]=2114, + ["spell_fire_damage_+%"]=1272, + ["spell_hits_against_you_inflict_poison_%"]=10331, + ["spell_impale_on_crit_%_chance"]=10332, + ["spell_maximum_added_chaos_damage"]=1455, + ["spell_maximum_added_chaos_damage_while_dual_wielding"]=2153, + ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=2154, + ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=2155, + ["spell_maximum_added_cold_damage"]=1453, + ["spell_maximum_added_cold_damage_per_power_charge"]=1872, + ["spell_maximum_added_cold_damage_while_dual_wielding"]=2156, + ["spell_maximum_added_cold_damage_while_holding_a_shield"]=2157, + ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=2158, + ["spell_maximum_added_fire_damage"]=1452, + ["spell_maximum_added_fire_damage_while_dual_wielding"]=2159, + ["spell_maximum_added_fire_damage_while_holding_a_shield"]=2160, + ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=2161, + ["spell_maximum_added_lightning_damage"]=1454, + ["spell_maximum_added_lightning_damage_per_10_intelligence"]=10294, + ["spell_maximum_added_lightning_damage_while_dual_wielding"]=2162, + ["spell_maximum_added_lightning_damage_while_holding_a_shield"]=2163, + ["spell_maximum_added_lightning_damage_while_unarmed"]=2487, + ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=2164, + ["spell_maximum_added_physical_damage"]=1451, + ["spell_maximum_added_physical_damage_per_3_levels"]=1318, + ["spell_maximum_added_physical_damage_while_dual_wielding"]=2165, + ["spell_maximum_added_physical_damage_while_holding_a_shield"]=2166, + ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=2167, + ["spell_maximum_base_chaos_damage"]=1445, + ["spell_maximum_base_cold_damage"]=1443, + ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=1456, + ["spell_maximum_base_fire_damage"]=1442, + ["spell_maximum_base_lightning_damage"]=1444, + ["spell_maximum_base_physical_damage"]=1441, + ["spell_minimum_added_chaos_damage"]=1455, + ["spell_minimum_added_chaos_damage_while_dual_wielding"]=2153, + ["spell_minimum_added_chaos_damage_while_holding_a_shield"]=2154, + ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=2155, + ["spell_minimum_added_cold_damage"]=1453, + ["spell_minimum_added_cold_damage_per_power_charge"]=1872, + ["spell_minimum_added_cold_damage_while_dual_wielding"]=2156, + ["spell_minimum_added_cold_damage_while_holding_a_shield"]=2157, + ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=2158, + ["spell_minimum_added_fire_damage"]=1452, + ["spell_minimum_added_fire_damage_while_dual_wielding"]=2159, + ["spell_minimum_added_fire_damage_while_holding_a_shield"]=2160, + ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=2161, + ["spell_minimum_added_lightning_damage"]=1454, + ["spell_minimum_added_lightning_damage_per_10_intelligence"]=10294, + ["spell_minimum_added_lightning_damage_while_dual_wielding"]=2162, + ["spell_minimum_added_lightning_damage_while_holding_a_shield"]=2163, + ["spell_minimum_added_lightning_damage_while_unarmed"]=2487, + ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=2164, + ["spell_minimum_added_physical_damage"]=1451, + ["spell_minimum_added_physical_damage_per_3_levels"]=1318, + ["spell_minimum_added_physical_damage_while_dual_wielding"]=2165, + ["spell_minimum_added_physical_damage_while_holding_a_shield"]=2166, + ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=2167, + ["spell_minimum_base_chaos_damage"]=1445, + ["spell_minimum_base_cold_damage"]=1443, + ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=1456, + ["spell_minimum_base_fire_damage"]=1442, + ["spell_minimum_base_lightning_damage"]=1444, + ["spell_minimum_base_physical_damage"]=1441, + ["spell_physical_damage_%_to_convert_to_fire"]=10333, + ["spell_projectiles_arrive_instantly"]=10334, + ["spell_repeat_count"]=1941, + ["spell_skill_gem_level_+"]=1655, + ["spell_skills_always_crit_on_final_repeat"]=10335, + ["spell_skills_critical_strike_chance_+%_on_final_repeat"]=10336, + ["spell_skills_critical_strike_multiplier_+_on_final_repeat"]=10337, + ["spell_skills_deal_no_damage"]=10338, + ["spell_skills_never_crit_except_on_final_repeat"]=10339, + ["spell_staff_damage_+%"]=1274, + ["spell_suppression_chance_%_if_all_equipment_grants_evasion"]=10340, + ["spell_suppression_chance_%_if_enemy_hit_recently"]=10341, + ["spell_suppression_chance_%_if_suppressed_spell_recently"]=10356, + ["spell_suppression_chance_%_if_taken_spell_damage_recently"]=3297, + ["spell_suppression_chance_%_per_endurance_charge"]=10342, + ["spell_suppression_chance_%_per_equipped_dagger"]=10343, + ["spell_suppression_chance_%_per_fortification"]=2314, + ["spell_suppression_chance_%_per_frenzy_charge"]=2596, + ["spell_suppression_chance_%_per_hit_suppressed_recently"]=10344, + ["spell_suppression_chance_%_per_power_charge"]=10345, + ["spell_suppression_chance_%_while_affected_by_grace"]=10346, + ["spell_suppression_chance_%_while_affected_by_haste"]=10347, + ["spell_suppression_chance_%_while_channelling"]=10348, + ["spell_suppression_chance_%_while_holding_shield"]=10349, + ["spell_suppression_chance_%_while_moving"]=10350, + ["spell_suppression_chance_%_while_off_hand_empty"]=10351, + ["spell_suppression_chance_%_while_on_full_energy_shield"]=10357, + ["spell_suppression_chance_%_while_on_full_life"]=10358, + ["spell_suppression_chance_%_while_phasing"]=10352, + ["spell_suppression_chance_is_lucky"]=10353, + ["spell_suppression_chance_modifiers_apply_to_avoid_all_elemental_ailments_at_%_value"]=10354, + ["spell_suppression_chance_modifiers_apply_to_chance_to_double_armour_effect_on_hit_at_%_value"]=10355, + ["spells_chance_to_blind_on_hit_%"]=10359, + ["spells_chance_to_hinder_on_hit_%"]=10360, + ["spells_chance_to_knockback_on_hit_%"]=10361, + ["spells_chance_to_poison_on_hit_%"]=10362, + ["spells_corrosion_on_hit_%"]=10363, + ["spells_have_culling_strike"]=2582, + ["spells_impale_on_hit_%_chance"]=10364, + ["spells_inflict_intimidate_on_crit"]=10365, + ["spells_number_of_additional_projectiles"]=4368, + ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=10368, + ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=10366, + ["spells_you_cast_gain_added_physical_damage_%_life_cost_if_payable"]=10367, + ["spellslinger_cooldown_duration_+%"]=10369, + ["spellslinger_mana_reservation_+%"]=10372, + ["spellslinger_mana_reservation_efficiency_+%"]=10371, + ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=10370, + ["spend_energy_shield_for_costs_before_mana"]=3173, + ["spider_aspect_debuff_duration_+%"]=10373, + ["spider_aspect_reserves_no_mana"]=10374, + ["spider_aspect_skill_area_of_effect_+%"]=10375, + ["spider_aspect_web_interval_ms_override"]=10376, + ["spike_slam_num_spikes"]=10377, + ["spirit_offering_critical_strike_chance_+%"]=10378, + ["spirit_offering_critical_strike_multiplier_+"]=10379, + ["spirit_offering_duration_+%"]=3963, + ["spirit_offering_effect_+%"]=1221, + ["spirit_offering_physical_damage_%_to_add_as_chaos"]=4246, + ["split_arrow_critical_strike_chance_+%"]=3998, + ["split_arrow_damage_+%"]=3707, + ["split_arrow_num_of_additional_projectiles"]=4008, + ["split_arrow_number_of_additional_arrows"]=3219, + ["split_arrow_projectiles_fire_in_parallel_x_dist"]=10380, + ["splitting_steel_area_of_effect_+%"]=10382, + ["splitting_steel_damage_+%"]=10383, + ["spread_freeze_to_nearby_enemies"]=10384, + ["spread_ignite_to_nearby_enemies"]=10385, + ["spread_poison_to_nearby_enemies_on_kill"]=1089, + ["stacking_damage_+%_on_kill_for_4_seconds"]=3668, + ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=3371, + ["staff_accuracy_rating"]=2056, + ["staff_accuracy_rating_+%"]=1487, + ["staff_ailment_damage_+%"]=1358, + ["staff_attack_speed_+%"]=1469, + ["staff_block_%"]=1199, + ["staff_critical_strike_chance_+%"]=1517, + ["staff_critical_strike_multiplier_+"]=1547, + ["staff_damage_+%"]=1356, + ["staff_elemental_damage_+%"]=2169, + ["staff_hit_and_ailment_damage_+%"]=1357, + ["staff_stun_duration_+%"]=1913, + ["stance_skill_cooldown_speed_+%"]=10389, + ["stance_skill_reservation_+%"]=10391, + ["stance_skills_mana_reservation_efficiency_+%"]=10390, + ["stance_swap_cooldown_modifier_ms"]=10393, + ["start_at_zero_energy_shield"]=11007, + ["static_strike_additional_number_of_beam_targets"]=10395, + ["static_strike_damage_+%"]=3730, + ["static_strike_duration_+%"]=3990, + ["static_strike_radius_+%"]=3878, + ["status_ailments_removed_at_low_life"]=3382, + ["status_ailments_you_inflict_duration_+%_while_focused"]=10396, + ["status_ailments_you_inflict_duration_+%_with_bows"]=10397, + ["stealth_+%"]=10399, + ["stealth_+%_if_have_hit_with_claw_recently"]=10400, + ["stealth_+%_while_affected_by_elusive"]=10398, + ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4983, + ["steel_steal_area_of_effect_+%"]=10401, + ["steel_steal_cast_speed_+%"]=10402, + ["steel_steal_reflect_damage_+%"]=10403, + ["steelskin_damage_limit_+%"]=10404, + ["stibnite_flask_evasion_rating_+%_final"]=10405, + ["stone_golem_damage_+%"]=3753, + ["stone_golem_elemental_resistances_%"]=4044, + ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=10406, + ["storm_armageddon_sigils_can_target_reaper_minions"]=10407, + ["storm_blade_has_local_attack_speed_+%"]=10408, + ["storm_blade_has_local_lightning_penetration_%"]=10409, + ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"]=10410, + ["storm_blade_quality_chance_to_shock_%"]=10411, + ["storm_blade_quality_local_critical_strike_chance_+%"]=10412, + ["storm_brand_additional_chain_chance_%"]=10413, + ["storm_brand_attached_target_lightning_penetration_%"]=10414, + ["storm_brand_damage_+%"]=10415, + ["storm_burst_15_%_chance_to_create_additional_orb"]=10416, + ["storm_burst_additional_object_chance_%"]=10417, + ["storm_burst_area_of_effect_+%"]=10418, + ["storm_burst_avoid_interruption_while_casting_%"]=10419, + ["storm_burst_damage_+%"]=3795, + ["storm_burst_number_of_additional_projectiles"]=10420, + ["storm_call_damage_+%"]=3731, + ["storm_call_duration_+%"]=3991, + ["storm_call_radius_+%"]=3879, + ["storm_cloud_charge_count"]=3503, + ["storm_cloud_charged_damage_+%_final"]=3504, + ["storm_cloud_critical_strike_chance_+%"]=4003, + ["storm_cloud_radius_+%"]=3906, + ["storm_rain_damage_+%"]=10421, + ["storm_rain_num_additional_arrows"]=10422, + ["stormbind_skill_area_of_effect_+%"]=10423, + ["stormbind_skill_damage_+%"]=10424, + ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=10425, + ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=10426, + ["strength_+%"]=1231, + ["strength_+%_if_2_warlord_items"]=4521, + ["strength_applies_to_fish_reel_speed_at_20%_value"]=10427, + ["strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead"]=10428, + ["strength_skill_gem_level_+"]=10429, + ["strike_skills_fortify_on_hit"]=10430, + ["strike_skills_knockback_on_melee_hit"]=10431, + ["strong_casting"]=11021, + ["strongest_packmate_multiplier_+%_final"]=10432, + ["stun_duration_+%"]=2050, + ["stun_duration_+%_per_15_strength"]=10434, + ["stun_duration_+%_per_endurance_charge"]=10435, + ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=3393, + ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=3394, + ["stun_duration_on_critical_strike_+%"]=10433, + ["stun_duration_on_self_+%"]=4234, + ["stun_nearby_enemies_when_stunned_chance_%"]=10436, + ["stun_recovery_+%_per_frenzy_charge"]=1950, + ["stun_threshold_+%"]=3332, + ["stun_threshold_+%_per_rage"]=10439, + ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=10437, + ["stun_threshold_based_on_%_mana_instead_of_life"]=3331, + ["stun_threshold_based_on_energy_shield_instead_of_life"]=4336, + ["stun_threshold_increased_by_overcapped_fire_resistance"]=10438, + ["stun_threshold_reduction_+%_while_using_flask"]=2985, + ["stun_threshold_reduction_+%_with_500_or_more_strength"]=10440, + ["stuns_have_culling_strike"]=2087, + ["stygian_spire_totem_area_of_effect_+%_final_per_maximum_totem"]=10441, + ["stygian_spire_totem_damage_+%_final_per_maximum_totem"]=10442, + ["stygian_spire_totem_life_+%_final_per_maximum_totem"]=10443, + ["summon_2_totems"]=10444, + ["summon_arbalist_attack_speed_+%"]=10445, + ["summon_arbalist_chains_+"]=10446, + ["summon_arbalist_chance_to_bleed_%"]=10447, + ["summon_arbalist_chance_to_crush_on_hit_%"]=10448, + ["summon_arbalist_chance_to_deal_double_damage_%"]=10449, + ["summon_arbalist_chance_to_freeze_%"]=10465, + ["summon_arbalist_chance_to_ignite_%"]=10466, + ["summon_arbalist_chance_to_ignite_freeze_shock_%"]=10450, + ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=10468, + ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=10469, + ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=10470, + ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=10451, + ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=10452, + ["summon_arbalist_chance_to_poison_%"]=10453, + ["summon_arbalist_chance_to_shock_%"]=10467, + ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=10454, + ["summon_arbalist_number_of_additional_projectiles"]=10455, + ["summon_arbalist_number_of_splits"]=10456, + ["summon_arbalist_physical_damage_%_to_add_as_cold"]=10457, + ["summon_arbalist_physical_damage_%_to_add_as_fire"]=10458, + ["summon_arbalist_physical_damage_%_to_add_as_lightning"]=10459, + ["summon_arbalist_physical_damage_%_to_convert_to_cold"]=10460, + ["summon_arbalist_physical_damage_%_to_convert_to_fire"]=10461, + ["summon_arbalist_physical_damage_%_to_convert_to_lightning"]=10462, + ["summon_arbalist_projectiles_fork"]=10463, + ["summon_arbalist_targets_to_pierce"]=10464, + ["summon_fire_skitterbot"]=10471, + ["summon_raging_spirit_melee_splash_fire_damage_only"]=10472, + ["summon_reaper_cooldown_speed_+%"]=10473, + ["summon_skeleton_gem_level_+"]=1664, + ["summon_skeletons_additional_warrior_skeleton_%_chance"]=10475, + ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=10474, + ["summon_skeletons_cooldown_modifier_ms"]=10476, + ["summon_skeletons_num_additional_warrior_skeletons"]=4061, + ["summon_skitterbots_area_of_effect_+%"]=10477, + ["summon_skitterbots_mana_reservation_+%"]=10478, + ["summon_totem_cast_speed_+%"]=2628, + ["summoned_phantasms_grant_buff"]=10479, + ["summoned_phantasms_have_no_duration"]=10480, + ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3473, + ["summoned_raging_spirit_duration_+%"]=3472, + ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=10481, + ["summoned_reaper_damage_+%"]=10482, + ["summoned_reaper_physical_dot_multiplier_+"]=10483, + ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=10484, + ["summoned_skeleton_%_physical_to_chaos"]=10485, + ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=4474, + ["summoned_skeletons_cover_in_ash_on_hit_%"]=10486, + ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=10487, + ["summoned_skeletons_have_avatar_of_fire"]=11022, + ["summoned_skeletons_hits_cant_be_evaded"]=10488, + ["summoned_skitterbots_auras_also_affect_you"]=10489, + ["summoned_skitterbots_cooldown_recovery_+%"]=10490, + ["summoned_skitterbots_non_damaging_ailment_effect_+%"]=10491, + ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=10492, + ["sunder_wave_delay_+%"]=3909, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=10493, + ["support_anticipation_charge_gain_frequency_+%"]=10494, + ["support_anticipation_charge_gain_interval_ms"]=10904, + ["support_anticipation_rapid_fire_count"]=10904, + ["support_gem_elemental_damage_+%_final"]=3654, + ["support_gems_socketed_in_amulet_also_support_body_skills"]=255, + ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=256, + ["support_maimed_enemies_physical_damage_taken_+%"]=10495, + ["support_minion_maximum_life_+%_final"]=1811, + ["support_mirage_archer_base_duration"]=10497, + ["support_slashing_damage_+%_final_from_distance"]=10498, + ["support_slower_projectiles_damage_+%_final"]=2901, + ["supported_active_skill_gem_expereince_gained_+%"]=2949, + ["supported_active_skill_gem_level_+"]=2817, + ["supported_active_skill_gem_quality_%"]=2878, + ["supported_aura_skill_gem_level_+"]=10499, + ["supported_cold_skill_gem_level_+"]=10500, + ["supported_elemental_skill_gem_level_+"]=10501, + ["supported_fire_skill_gem_level_+"]=10502, + ["supported_lightning_skill_gem_level_+"]=10503, + ["suppressed_spell_damage_bypass_energy_shield_%"]=1195, + ["suppressed_spell_damage_cannot_inflict_elemental_ailments"]=10504, + ["suppressed_spell_damage_taken_%_recouped_as_es"]=1196, + ["sweep_add_endurance_charge_on_hit_%"]=3880, + ["sweep_damage_+%"]=3732, + ["sweep_knockback_chance_%"]=4035, + ["sweep_radius_+%"]=3881, + ["sword_accuracy_rating"]=2051, + ["sword_accuracy_rating_+%"]=1492, + ["sword_ailment_damage_+%"]=1389, + ["sword_attack_speed_+%"]=1474, + ["sword_critical_strike_chance_+%"]=1515, + ["sword_critical_strike_multiplier_+"]=1544, + ["sword_damage_+%"]=1387, + ["sword_hit_and_ailment_damage_+%"]=1388, + ["sword_physical_damage_%_to_add_as_fire"]=3098, + ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=10505, + ["synthesis_map_global_mod_values_doubled_on_this_node"]=10506, + ["synthesis_map_global_mod_values_tripled_on_this_node"]=10507, + ["synthesis_map_memories_do_not_collapse_on_this_node"]=10508, + ["synthesis_map_monster_slain_experience_+%_on_this_node"]=10509, + ["synthesis_map_nearby_memories_have_bonus"]=10510, + ["synthesis_map_node_additional_uses_+"]=10511, + ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=10512, + ["synthesis_map_node_grants_additional_global_mod"]=10513, + ["synthesis_map_node_grants_no_global_mod"]=10514, + ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=10515, + ["synthesis_map_node_item_quantity_increases_doubled"]=10516, + ["synthesis_map_node_item_rarity_increases_doubled"]=10517, + ["synthesis_map_node_level_+"]=10518, + ["synthesis_map_node_monsters_drop_no_items"]=10519, + ["synthesis_map_node_pack_size_increases_doubled"]=10520, + ["tailwind_effect_on_self_+%"]=10521, + ["tailwind_effect_on_self_+%_per_gale_force"]=10522, + ["tailwind_if_have_crit_recently"]=10523, + ["take_20%_less_area_damage_from_hits_%_chance_per_2%_overcapped_cold_resistance"]=10524, + ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=10525, + ["take_chaos_damage_from_ignite_instead"]=2501, + ["take_half_area_damage_from_hit_%_chance"]=10526, + ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=10527, + ["take_no_fire_damage_over_time_if_stopped_taking_fire_damage_over_time_recently"]=10528, + ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=10529, + ["targets_are_unaffected_by_your_hexes"]=2649, + ["taunt_duration_+%"]=1829, + ["taunt_on_projectile_hit_chance_%"]=10530, + ["taunted_enemies_by_warcry_damage_taken_+%"]=10531, + ["taunted_enemies_chance_to_be_stunned_+%"]=3274, + ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=4316, + ["taunted_enemies_damage_taken_+%"]=4340, + ["tectonic_slam_%_chance_to_do_charged_slam"]=10537, + ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=10532, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=10533, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=10534, + ["tectonic_slam_area_of_effect_+%"]=10535, + ["tectonic_slam_damage_+%"]=10536, + ["tectonic_slam_side_crack_additional_chance_%"]=10539, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=10538, + ["tempest_shield_buff_effect_+%"]=10540, + ["tempest_shield_damage_+%"]=3777, + ["tempest_shield_num_of_additional_projectiles_in_chain"]=4088, + ["temporal_chains_curse_effect_+%"]=4068, + ["temporal_chains_duration_+%"]=3969, + ["temporal_chains_effeciveness_+%"]=1691, + ["temporal_chains_ignores_hexproof"]=2658, + ["temporal_chains_mana_reservation_+%"]=4109, + ["temporal_chains_no_reservation"]=10541, + ["temporal_rift_cooldown_speed_+%"]=10542, + ["thaumaturgy_rotation_active"]=10543, + ["threshold_jewel_magma_orb_damage_+%_final"]=10544, + ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=10545, + ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=10546, + ["throw_X_additional_traps_if_dual_wielding"]=10547, + ["thrown_shield_secondary_projectile_damage_+%_final"]=10548, + ["tincture_cooldown_recovery_+%"]=10549, + ["tincture_effect_+%_at_high_toxicity"]=10551, + ["tincture_effect_+%_if_used_life_flask_recently"]=10552, + ["tincture_effect_+%_while_not_using_flask"]=10550, + ["tincture_effects_linger_for_ms_per_toxicity_up_to_6_seconds"]=10553, + ["tincture_mod_effect_+%_per_empty_flask_slot"]=10554, + ["tincture_toxicity_rate_+%"]=10555, + ["tinctures_can_apply_to_ranged_weapons"]=10556, + ["tinctures_deactivate_on_reaching_X_toxicity"]=10557, + ["tornado_damage_+%"]=10559, + ["tornado_damage_frequency_+%"]=10558, + ["tornado_movement_speed_+%"]=10560, + ["tornado_only_primary_duration_+%"]=10561, + ["tornado_shot_critical_strike_chance_+%"]=4002, + ["tornado_shot_damage_+%"]=3737, + ["tornado_shot_num_of_secondary_projectiles"]=4010, + ["tornado_skill_area_of_effect_+%"]=10562, + ["total_recovery_per_minute_from_life_leech_is_doubled"]=10563, + ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3848, + ["totem_additional_physical_damage_reduction_%"]=2847, + ["totem_attack_damage_leeched_as_mana_to_you_permyriad"]=10565, + ["totem_aura_enemy_damage_+%_final"]=3850, + ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3851, + ["totem_chaos_immunity"]=10566, + ["totem_chaos_resistance_%"]=10567, + ["totem_critical_strike_chance_+%"]=1533, + ["totem_critical_strike_multiplier_+"]=1563, + ["totem_damage_+%"]=1240, + ["totem_damage_+%_final_per_active_totem"]=3806, + ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=10568, + ["totem_damage_+%_per_10_devotion"]=10569, + ["totem_damage_leeched_as_life_to_you_permyriad"]=4297, + ["totem_duration_+%"]=1825, + ["totem_elemental_resistance_%"]=2845, + ["totem_energy_shield_+%"]=1823, + ["totem_fire_immunity"]=1654, + ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=10570, + ["totem_life_+%"]=1821, + ["totem_life_+%_final"]=10572, + ["totem_life_increased_by_overcapped_fire_resistance"]=10571, + ["totem_mana_+%"]=1822, + ["totem_maximum_energy_shield"]=10573, + ["totem_movement_speed_+%"]=236, + ["totem_number_of_additional_projectiles"]=3140, + ["totem_physical_attack_damage_leeched_as_life_to_you_permyriad"]=10574, + ["totem_placement_range_+%"]=10575, + ["totem_range_+%"]=1824, + ["totem_skill_area_of_effect_+%"]=2631, + ["totem_skill_attack_speed_+%"]=2630, + ["totem_skill_cast_speed_+%"]=2629, + ["totem_skill_gem_level_+"]=10576, + ["totem_spells_damage_+%"]=10577, + ["totemified_skills_taunt_on_hit_%"]=3489, + ["totems_action_speed_cannot_be_modified_below_base"]=10564, + ["totems_attack_speed_+%_per_active_totem"]=4254, + ["totems_cannot_be_stunned"]=3120, + ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=3373, + ["totems_explode_on_death_for_%_life_as_physical"]=10578, + ["totems_explode_on_death_for_%_life_as_physical_divide_20"]=10579, + ["totems_gain_%_of_players_armour"]=3282, + ["totems_nearby_enemies_damage_taken_+%"]=10580, + ["totems_regenerate_%_life_per_minute"]=10582, + ["totems_regenerate_1_life_per_x_player_life_regeneration"]=10581, + ["totems_resist_all_elements_+%_per_active_totem"]=4236, + ["totems_spells_cast_speed_+%_per_active_totem"]=4242, + ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=10583, + ["toxic_rain_damage_+%"]=10584, + ["toxic_rain_num_of_additional_projectiles"]=10585, + ["toxic_rain_physical_damage_%_to_add_as_chaos"]=10586, + ["toxic_rain_skill_physical_damage_%_to_convert_to_chaos"]=10587, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2992, + ["trap_%_chance_to_trigger_twice"]=3857, + ["trap_and_mine_area_of_effect_+%"]=10588, + ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=10589, + ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2842, + ["trap_and_mine_maximum_added_physical_damage"]=3856, + ["trap_and_mine_minimum_added_physical_damage"]=3856, + ["trap_and_mine_throwing_speed_+%"]=10590, + ["trap_cooldown_speed_+%_per_recent_mine_detonation"]=10591, + ["trap_critical_strike_chance_+%"]=1521, + ["trap_critical_strike_multiplier_+"]=1552, + ["trap_damage_+%"]=1241, + ["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3853, + ["trap_damage_buildup_damage_+%_final_when_first_set"]=3852, + ["trap_damage_penetrates_%_elemental_resistance"]=2840, + ["trap_duration_+%"]=1970, + ["trap_mine_skill_num_of_additional_chains"]=10592, + ["trap_or_mine_damage_+%"]=1242, + ["trap_skill_added_cooldown_count"]=10593, + ["trap_skill_area_of_effect_+%"]=3539, + ["trap_skill_effect_duration_+%"]=10594, + ["trap_spread_+%"]=10595, + ["trap_throw_skills_have_blood_magic"]=11035, + ["trap_throwing_speed_+%"]=1974, + ["trap_throwing_speed_+%_per_frenzy_charge"]=10596, + ["trap_trigger_radius_+%"]=1972, + ["traps_and_mines_%_chance_to_poison"]=4150, + ["traps_cannot_be_triggered_by_enemies"]=10597, + ["traps_do_not_explode_on_timeout"]=2837, + ["traps_explode_on_timeout"]=2838, + ["traps_invulnerable"]=10598, + ["traps_invulnerable_for_duration_ms"]=2843, + ["travel_skill_cooldown_speed_+%"]=4443, + ["travel_skills_cannot_be_exerted"]=10599, + ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=4454, + ["travel_skills_crit_every_X_uses"]=10600, + ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=10601, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=10602, + ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=10603, + ["trickster_damage_+%_final_per_different_mastery"]=1693, + ["trickster_damage_over_time_+%_final"]=10604, + ["trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"]=3589, + ["trigger_level_20_summon_spectral_wolf_on_crit"]=10605, + ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=875, + ["trigger_socketed_spell_on_attack_%"]=876, + ["trigger_socketed_spell_on_skill_use_%"]=878, + ["trigger_socketed_spells_when_you_focus_%"]=879, + ["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=183, + ["triggerbots_damage_+%_final_with_triggered_spells"]=10606, + ["triggered_spell_spell_damage_+%"]=10607, + ["triggered_spells_all_damage_can_poison"]=10609, + ["triggered_spells_poison_on_hit"]=10608, + ["two_handed_attack_damage_+%_per_unlinked_socket_on_weapon"]=10610, + ["two_handed_melee_accuracy_rating_+%"]=1485, + ["two_handed_melee_area_damage_+%"]=10611, + ["two_handed_melee_area_of_effect_+%"]=10612, + ["two_handed_melee_attack_speed_+%"]=1466, + ["two_handed_melee_cold_damage_+%"]=1347, + ["two_handed_melee_critical_strike_chance_+%"]=1523, + ["two_handed_melee_critical_strike_multiplier_+"]=1524, + ["two_handed_melee_fire_damage_+%"]=1346, + ["two_handed_melee_physical_damage_+%"]=1341, + ["two_handed_melee_stun_duration_+%"]=1911, + ["two_handed_melee_weapon_ailment_damage_+%"]=1344, + ["two_handed_melee_weapon_hit_and_ailment_damage_+%"]=1342, + ["two_handed_weapon_ailment_damage_+%"]=1345, + ["two_handed_weapon_hit_and_ailment_damage_+%"]=1343, + ["uber_domain_monster_accuracy_+%_per_revival"]=10613, + ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=10614, + ["uber_domain_monster_all_resistances_+%_per_revival"]=10615, + ["uber_domain_monster_area_of_effect_+%_per_revival"]=10616, + ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=10617, + ["uber_domain_monster_avoid_stun_%_per_revival"]=10618, + ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=10619, + ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=10620, + ["uber_domain_monster_damage_+%_per_revival"]=10621, + ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=10622, + ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=10623, + ["uber_domain_monster_maximum_life_+%_per_revival"]=10624, + ["uber_domain_monster_movement_speed_+%_per_revival"]=10625, + ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=10626, + ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=10627, + ["uber_domain_monster_physical_damage_%_to_add_as_chaos_per_revival"]=10628, + ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=10629, + ["uber_domain_monster_power_added_to_cocooned_items_+%"]=10630, + ["uber_domain_monster_reward_chance_+%"]=10631, + ["uber_domain_monster_tankiness_+%_per_revival"]=10632, + ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=10633, + ["unaffected_by_bleeding_while_affected_by_malevolence"]=10634, + ["unaffected_by_bleeding_while_leeching"]=10635, + ["unaffected_by_blind"]=10636, + ["unaffected_by_burning_ground"]=10637, + ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=10638, + ["unaffected_by_chill"]=10639, + ["unaffected_by_chill_if_2_redeemer_items"]=4522, + ["unaffected_by_chill_while_channelling"]=10640, + ["unaffected_by_chill_while_mana_leeching"]=10641, + ["unaffected_by_chilled_ground"]=10642, + ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=10643, + ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=10644, + ["unaffected_by_corrupted_blood_while_leeching"]=10645, + ["unaffected_by_curses"]=2528, + ["unaffected_by_curses_while_affected_by_zealotry"]=10646, + ["unaffected_by_damaging_ailments"]=10647, + ["unaffected_by_desecrated_ground"]=10648, + ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=10649, + ["unaffected_by_enfeeble_while_affected_by_grace"]=10650, + ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=10651, + ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=10652, + ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=10653, + ["unaffected_by_ignite"]=10654, + ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=10655, + ["unaffected_by_ignite_if_2_warlord_items"]=4523, + ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=10656, + ["unaffected_by_poison_while_affected_by_malevolence"]=10657, + ["unaffected_by_shock"]=10658, + ["unaffected_by_shock_if_2_crusader_items"]=4524, + ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=10659, + ["unaffected_by_shock_while_channelling"]=10660, + ["unaffected_by_shock_while_es_leeching"]=10661, + ["unaffected_by_shocked_ground"]=10662, + ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=10663, + ["unaffected_by_temporal_chains"]=10664, + ["unaffected_by_temporal_chains_while_affected_by_haste"]=10665, + ["unaffected_by_vulnerability_while_affected_by_determination"]=10666, + ["unarmed_attack_critical_strike_multiplier_+"]=6081, + ["unarmed_attack_number_of_spirit_strikes"]=10668, + ["unarmed_damage_+%_vs_bleeding_enemies"]=3628, + ["unarmed_melee_attack_critical_strike_multiplier_+"]=10669, + ["unarmed_melee_attack_speed_+%"]=1477, + ["unarmed_melee_physical_damage_+%"]=1348, + ["unattached_sigil_attachment_range_+%_per_second"]=10670, + ["unearth_additional_corpse_level"]=10671, + ["unholy_might_while_you_have_no_energy_shield"]=2794, + ["unique_add_power_charge_on_melee_knockback_%"]=2995, + ["unique_attacks_fire_X_additional_projectiles_while_in_off_hand"]=10672, + ["unique_attacks_have_area_+%_while_in_main_hand"]=10673, + ["unique_body_armour_unarmed_melee_attack_speed_+%_final"]=1478, + ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=4488, + ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=11040, + ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=3028, + ["unique_chill_duration_+%_when_in_off_hand"]=2826, + ["unique_chin_sol_close_range_bow_damage_+%_final"]=2491, + ["unique_chin_sol_close_range_knockback"]=2493, + ["unique_cold_damage_can_also_ignite"]=2940, + ["unique_cold_damage_ignites"]=2915, + ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1679, + ["unique_critical_strike_chance_+%_final"]=2883, + ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2516, + ["unique_facebreaker_unarmed_melee_physical_damage_+%_final"]=2485, + ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1673, + ["unique_fire_damage_shocks"]=2914, + ["unique_foulborn_chin_sol_not_close_range_bow_damage_+%_final"]=2492, + ["unique_gain_onslaught_when_hit_duration_ms"]=2885, + ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2900, + ["unique_gain_power_charge_on_non_crit"]=2958, + ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=10674, + ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=10675, + ["unique_ignite_chance_%_when_in_main_hand"]=2825, + ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=10678, + ["unique_jewel_flask_duration_+%_final"]=10679, + ["unique_jewel_grants_notable_hash_part_1"]=10680, + ["unique_jewel_grants_notable_hash_part_2"]=10681, + ["unique_jewel_reserved_blood_maximum_life_+%_final"]=10682, + ["unique_lightning_damage_freezes"]=2916, + ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1685, + ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1439, + ["unique_local_maximum_added_cold_damage_when_in_off_hand"]=1420, + ["unique_local_maximum_added_fire_damage_when_in_main_hand"]=1411, + ["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=1439, + ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1420, + ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1411, + ["unique_loris_lantern_golden_light"]=2604, + ["unique_lose_a_power_charge_when_hit"]=10684, + ["unique_lose_all_endurance_charges_when_hit"]=2884, + ["unique_lose_all_power_charges_on_crit"]=2959, + ["unique_map_boss_class_of_rare_items_to_drop"]=2765, + ["unique_map_boss_number_of_rare_items_to_drop"]=2765, + ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=3028, + ["unique_mine_damage_+%_final"]=1244, + ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=3028, + ["unique_monster_dropped_item_rarity_+%"]=10685, + ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=3049, + ["unique_primordial_tether_golem_damage_+%_final"]=3760, + ["unique_primordial_tether_golem_life_+%_final"]=4154, + ["unique_quill_rain_damage_+%_final"]=2505, + ["unique_quiver_chill_as_though_damage_+%_final"]=10686, + ["unique_recover_%_maximum_life_on_x_altenator"]=10687, + ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=10688, + ["unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final"]=1246, + ["unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final"]=1247, + ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=10689, + ["unique_spell_block_%_when_in_off_hand"]=1208, + ["unique_spread_poison_to_nearby_allies_as_regeneration_on_kill"]=2910, + ["unique_spread_poison_to_nearby_enemies_during_flask_effect"]=1090, + ["unique_spread_poison_to_nearby_enemies_on_kill"]=2909, + ["unique_sunblast_throw_traps_in_circle_radius"]=10690, + ["unique_thread_of_hope_base_resist_all_elements_%"]=10900, + ["unique_volkuurs_clutch_poison_duration_+%_final"]=3230, + ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2983, + ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=10691, + ["unnerve_for_4_seconds_on_hit_with_wands"]=10692, + ["unnerve_nearby_enemies_on_use_for_ms"]=10693, + ["unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit"]=2589, ["unveiled_mod_effect_+%"]=80, - ["utility_flask_charges_recovered_per_3_seconds"]=10538, - ["utility_flask_cold_damage_taken_+%_final"]=10539, - ["utility_flask_fire_damage_taken_+%_final"]=10540, - ["utility_flask_lightning_damage_taken_+%_final"]=10541, - ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2715, - ["vaal_skill_critical_strike_chance_+%"]=3131, - ["vaal_skill_critical_strike_multiplier_+"]=3132, - ["vaal_skill_damage_+%"]=3119, - ["vaal_skill_effect_duration_+%"]=3129, - ["vaal_skill_gem_level_+"]=10542, - ["vaal_skill_soul_gain_preventation_duration_+%"]=3130, - ["vaal_skill_soul_refund_chance_%"]=10543, - ["vaal_skill_soul_requirement_+%"]=10544, - ["vaal_skill_store_uses_+"]=10545, - ["vaal_skills_area_of_effect_+%"]=10546, - ["vaal_skills_aura_effect_+%"]=10547, - ["vaal_souls_gained_per_minute"]=10548, - ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=10549, - ["vampiric_link_duration_+%"]=10550, - ["vengeance_cooldown_speed_+%"]=3910, - ["vengeance_damage_+%"]=3746, - ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=10551, - ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=3273, - ["vigilant_strike_damage_+%"]=3734, - ["vigilant_strike_fortify_duration_+%"]=3930, - ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=10552, - ["viper_strike_attack_damage_per_poison_on_enemy_+%"]=3257, - ["viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy"]=10553, - ["viper_strike_critical_strike_chance_+%"]=3963, - ["viper_strike_damage_+%"]=3676, - ["viper_strike_dual_wield_attack_speed_+%_final"]=10554, - ["viper_strike_dual_wield_damage_+%_final"]=10555, - ["viper_strike_poison_duration_+%"]=3952, - ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=3416, - ["virtual_block_%_damage_taken"]=10556, - ["virtual_energy_shield_delay_-%"]=3602, - ["virtual_energy_shield_recharge_rate_+%"]=3604, - ["virtual_light_radius_+%"]=2525, - ["virtual_mana_gain_per_target"]=1770, - ["virtual_minion_damage_+%"]=1999, - ["virtual_number_of_ranged_animated_weapons_allowed"]=3294, - ["virtual_support_anticipation_charge_gain_interval_ms"]=10745, - ["virulent_arrow_additional_spores_at_max_stages"]=10558, - ["virulent_arrow_chance_to_poison_%_per_stage"]=10559, - ["vitality_mana_reservation_+%"]=4065, - ["vitality_mana_reservation_efficiency_+%"]=10561, - ["vitality_mana_reservation_efficiency_-2%_per_1"]=10560, - ["vitality_reserves_no_mana"]=10562, - ["void_sphere_cooldown_speed_+%"]=10563, - ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=10564, - ["volatile_dead_base_number_of_corpses_to_consume"]=10565, - ["volatile_dead_cast_speed_+%"]=10566, - ["volatile_dead_consume_additional_corpse"]=10567, - ["volatile_dead_damage_+%"]=10568, - ["volcanic_fissure_damage_+%"]=10569, - ["volcanic_fissure_number_of_additional_projectiles"]=10570, - ["volcanic_fissure_speed_+%"]=10571, - ["voltaxic_burst_damage_+%"]=10572, - ["voltaxic_burst_damage_+%_per_100ms_duration"]=10573, - ["voltaxic_burst_skill_area_of_effect_+%"]=10574, - ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=10575, - ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=10576, - ["vulnerability_curse_effect_+%"]=4040, - ["vulnerability_duration_+%"]=3935, - ["vulnerability_ignores_hexproof"]=2633, - ["vulnerability_mana_reservation_+%"]=4074, - ["vulnerability_no_reservation"]=10577, - ["wake_of_destruction_ground_lightning_duration_ms"]=4335, - ["wand_accuracy_rating"]=2035, - ["wand_accuracy_rating_+%"]=1469, - ["wand_ailment_damage_+%"]=1371, - ["wand_attack_speed_+%"]=1451, - ["wand_attacks_fire_an_additional_projectile"]=10578, - ["wand_critical_strike_chance_+%"]=1495, - ["wand_critical_strike_multiplier_+"]=1522, - ["wand_damage_+%"]=2967, - ["wand_damage_+%_if_crit_recently"]=10579, - ["wand_damage_+%_per_power_charge"]=2165, - ["wand_elemental_damage_+%"]=2145, - ["wand_hit_and_ailment_damage_+%"]=1370, - ["wand_physical_damage_%_to_add_as_chaos"]=10580, - ["wand_physical_damage_%_to_add_as_cold"]=2061, - ["wand_physical_damage_%_to_add_as_fire"]=2060, - ["wand_physical_damage_%_to_add_as_lightning"]=2062, - ["wand_physical_damage_%_to_convert_to_lightning"]=10581, - ["war_banner_aura_effect_+%"]=10582, - ["war_banner_mana_reservation_efficiency_+%"]=10583, - ["warcries_apply_cover_in_ash_for_X_ms"]=10584, - ["warcries_are_instant"]=3487, - ["warcries_cost_%_of_life"]=10585, - ["warcries_cost_no_mana"]=4158, - ["warcries_debilitate_enemies_for_1_second"]=10586, - ["warcries_exert_twice_as_many_attacks"]=10587, - ["warcries_have_infinite_power"]=10594, - ["warcries_have_minimum_10_power"]=10588, - ["warcries_inflict_hallowing_flame"]=10589, - ["warcries_knock_back_enemies"]=10590, - ["warcry_buff_effect_+%"]=10591, - ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=10592, - ["warcry_cooldown_modifier_ms"]=10593, - ["warcry_cooldown_speed_+%"]=3353, - ["warcry_count_power_from_enemies"]=10594, - ["warcry_damage_taken_goes_to_mana_%"]=3286, - ["warcry_duration_+%"]=3226, - ["warcry_empowers_next_x_melee_attacks"]=10595, - ["warcry_gain_mp_from_allies"]=10594, - ["warcry_gain_mp_from_corpses"]=10594, - ["warcry_grant_X_rage_per_5_power"]=10596, - ["warcry_monster_power_+%"]=10597, - ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=10598, - ["warcry_skill_area_of_effect_+%"]=10599, - ["warcry_skills_cooldown_is_4_seconds"]=10600, - ["warcry_speed_+%"]=3301, - ["warcry_speed_+%_if_not_warcried_recently"]=10601, - ["ward_%_chance_to_restore_on_flask_use"]=10602, - ["ward_+%"]=1553, - ["ward_+%_during_any_flask_effect"]=10603, - ["ward_delay_recovery_+%"]=1555, - ["ward_delay_recovery_+%_per_enemy_hit_taken_recently"]=10604, - ["ward_from_armour_item_+%"]=10605, - ["ward_instead_of_%_body_armour_and_evasion"]=10606, - ["warden_tincture_toxicity_rate_+%_final"]=10607, - ["warden_tracker"]=10608, - ["warlords_mark_curse_effect_+%"]=4041, - ["warlords_mark_duration_+%"]=3934, - ["water_sphere_cold_lightning_exposure_%"]=10609, - ["water_sphere_damage_+%"]=10610, - ["weapon_chaos_damage_+%"]=2090, - ["weapon_cold_damage_+%"]=2088, - ["weapon_elemental_damage_+%"]=1380, - ["weapon_elemental_damage_+%_per_power_charge"]=2707, - ["weapon_elemental_damage_+%_while_using_flask"]=2782, - ["weapon_fire_damage_+%"]=2087, - ["weapon_hellscaping_speed_+%"]=7123, - ["weapon_lightning_damage_+%"]=2089, - ["weapon_physical_damage_%_to_add_as_each_element"]=4286, - ["weapon_physical_damage_%_to_add_as_random_element"]=2959, - ["weapon_physical_damage_+%"]=2770, - ["weapon_tree_cast_speed_+%_final"]=10611, - ["weapon_tree_counterattacks_damage_+%_final"]=10612, - ["weapon_tree_damage_+%_final"]=10613, - ["weapon_tree_local_sell_price_ancient_orb"]=10614, - ["weapon_tree_local_sell_price_awakened_sextant"]=10615, - ["weapon_tree_local_sell_price_blessed_orb"]=10616, - ["weapon_tree_local_sell_price_chaos_orb"]=10617, - ["weapon_tree_local_sell_price_crystalline_geode"]=10618, - ["weapon_tree_local_sell_price_divine_orb"]=10619, - ["weapon_tree_local_sell_price_exalted_orb"]=10620, - ["weapon_tree_local_sell_price_for_additional_crucible_experience"]=10621, - ["weapon_tree_local_sell_price_for_additional_specific_currency"]=10622, - ["weapon_tree_local_sell_price_for_additional_specific_unique"]=10623, - ["weapon_tree_local_sell_price_gemcutters_prism"]=10624, - ["weapon_tree_local_sell_price_igneous_geode"]=10625, - ["weapon_tree_local_sell_price_mirror_shard"]=10626, - ["weapon_tree_local_sell_price_of_tree_nodes_doubled"]=10627, - ["weapon_tree_local_sell_price_orb_of_annulment"]=10628, - ["weapon_tree_local_sell_price_orb_of_regret"]=10629, - ["weapon_tree_local_sell_price_regal_orb"]=10630, - ["weapon_tree_local_sell_price_sacred_orb"]=10631, - ["weapon_tree_local_sell_price_scouring_orb"]=10632, - ["weapon_tree_local_sell_price_vaal_orb"]=10633, - ["weapon_tree_local_sell_price_vault_key"]=10634, - ["weapon_tree_maximum_mana_+%_final"]=10635, - ["weapon_tree_throw_traps_in_circle_radius"]=10636, - ["while_curse_is_25%_expired_hinder_enemy_%"]=10637, - ["while_curse_is_33%_expired_malediction"]=10638, - ["while_curse_is_50%_expired_curse_effect_+%"]=10639, - ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=10640, - ["while_stationary_gain_additional_physical_damage_reduction_%"]=10641, - ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=10642, - ["while_using_mace_stun_threshold_reduction_+%"]=1542, - ["while_using_sword_reduce_enemy_block_%"]=1928, - ["whirling_blades_attack_speed_+%"]=3892, - ["whirling_blades_damage_+%"]=3735, - ["wild_strike_damage_+%"]=3710, - ["wild_strike_num_of_additional_projectiles_in_chain"]=4024, - ["wild_strike_radius_+%"]=3852, - ["winter_brand_chill_effect_+%"]=10643, - ["winter_brand_damage_+%"]=10644, - ["winter_brand_max_number_of_stages_+"]=10645, - ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=10646, - ["with_bow_additional_block_%"]=2484, - ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=10647, - ["wither_duration_+%"]=3948, - ["wither_expire_speed_+%"]=10648, - ["wither_radius_+%"]=3864, - ["withered_effect_+%"]=10650, - ["withered_effect_on_self_+%"]=10649, - ["withered_on_hit_chance_%_vs_cursed_enemies"]=10651, - ["withered_on_hit_for_2_seconds_%_chance"]=4421, - ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=10652, - ["wrath_aura_effect_+%"]=3385, - ["wrath_aura_effect_+%_while_at_maximum_power_charges"]=10653, - ["wrath_mana_reservation_+%"]=4066, - ["wrath_mana_reservation_efficiency_+%"]=10655, - ["wrath_mana_reservation_efficiency_-2%_per_1"]=10654, - ["wrath_reserves_no_mana"]=10656, - ["x%_life_regeneration_applies_to_energy_shield"]=10657, - ["x%_life_regeneration_applies_to_energy_shield_with_no_corrupted_equipped_items"]=10658, - ["x_to_maximum_life_per_2_intelligence"]=2047, - ["you_and_allies_additional_block_%_if_have_attacked_recently"]=10661, - ["you_and_allies_additional_spell_block_%_if_cast_spell_recently"]=10662, - ["you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_resource"]=4095, - ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=4096, - ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=10663, - ["you_and_nearby_allies_critical_strike_chance_+%"]=10664, - ["you_and_nearby_allies_critical_strike_multiplier_+"]=10665, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=10666, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=10667, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=10668, - ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=10669, - ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=10670, - ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=10671, - ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=3351, - ["you_are_blind"]=10672, - ["you_are_cursed_with_conductivity"]=10673, - ["you_are_cursed_with_despair"]=10674, - ["you_are_cursed_with_elemental_weakness"]=10675, - ["you_are_cursed_with_enfeeble"]=10676, - ["you_are_cursed_with_flammability"]=10677, - ["you_are_cursed_with_frostbite"]=10678, - ["you_are_cursed_with_temporal_chains"]=10679, - ["you_are_cursed_with_vulnerability"]=10680, - ["you_cannot_be_hindered"]=10681, - ["you_cannot_have_non_animated_minions"]=10682, - ["you_cannot_have_non_golem_minions"]=3715, - ["you_cannot_have_non_spectre_minions"]=10683, - ["you_cannot_impale_impaled_enemies"]=10684, - ["you_cannot_inflict_curses"]=10685, - ["you_count_as_full_life_while_affected_by_vulnerability"]=3143, - ["you_count_as_low_life_while_affected_by_vulnerability"]=3144, - ["you_count_as_low_life_while_not_on_full_life"]=10686, - ["you_have_feeding_frenzy_if_have_blocked_recently"]=10687, - ["you_have_no_armour_or_energy_shield"]=10688, - ["you_have_your_maximum_fortification"]=10689, - ["you_have_zealots_oath_if_you_havent_been_hit_recently"]=10869, - ["your_aegis_skills_except_primal_are_disabled"]=860, - ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=10691, - ["your_attacks_cannot_be_blocked"]=10692, - ["your_auras_except_anger_are_disabled"]=10693, - ["your_auras_except_clarity_are_disabled"]=10694, - ["your_auras_except_determination_are_disabled"]=10695, - ["your_auras_except_discipline_are_disabled"]=10696, - ["your_auras_except_grace_are_disabled"]=10697, - ["your_auras_except_haste_are_disabled"]=10698, - ["your_auras_except_hatred_are_disabled"]=10699, - ["your_auras_except_malevolence_are_disabled"]=10700, - ["your_auras_except_precision_are_disabled"]=10701, - ["your_auras_except_pride_are_disabled"]=10702, - ["your_auras_except_purity_of_elements_are_disabled"]=10703, - ["your_auras_except_purity_of_fire_are_disabled"]=10704, - ["your_auras_except_purity_of_ice_are_disabled"]=10705, - ["your_auras_except_purity_of_lightning_are_disabled"]=10706, - ["your_auras_except_vitality_are_disabled"]=10707, - ["your_auras_except_wrath_are_disabled"]=10708, - ["your_auras_except_zealotry_are_disabled"]=10709, - ["your_charges_cannot_be_stolen"]=10710, - ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=10714, - ["your_consecrated_ground_grants_accuracy_rating_+%"]=10711, - ["your_consecrated_ground_grants_damage_+%"]=4256, - ["your_consecrated_ground_grants_mana_regeneration_rate_+%"]=10712, - ["your_consecrated_ground_grants_max_chaos_resistance_+"]=10713, - ["your_marks_transfer_to_nearby_enemies_on_death_%_chance"]=10715, - ["your_minions_gain_added_physical_damage_equal_to_%_of_energy_shield_on_helmet"]=10716, - ["your_movement_skills_are_disabled"]=10717, - ["your_profane_ground_also_affects_allies_granting_chaotic_might"]=10718, - ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=10719, - ["your_skeletons_gain_added_chaos_damage_equal_to_%_of_energy_shield_on_shield"]=10720, - ["your_spells_are_disabled"]=10721, - ["your_spells_cannot_be_suppressed"]=10722, - ["your_travel_skills_are_disabled"]=10723, - ["your_travel_skills_except_dash_are_disabled"]=10724, - ["your_warcry_skills_are_disabled"]=10725, - ["zealotry_aura_effect_+%"]=10746, - ["zealotry_mana_reservation_+%"]=10749, - ["zealotry_mana_reservation_efficiency_+%"]=10748, - ["zealotry_mana_reservation_efficiency_-2%_per_1"]=10747, - ["zealotry_reserves_no_mana"]=10750, - ["zero_chaos_resistance"]=10751, - ["zero_elemental_resistance"]=2859, - ["zombie_attack_speed_+%"]=3880, - ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=10777, - ["zombie_chaos_elemental_damage_resistance_%"]=2614, - ["zombie_damage_+%"]=3667, - ["zombie_damage_leeched_as_energy_shield_to_you_permyriad_if_over_1000_intelligence"]=10778, - ["zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength"]=10779, - ["zombie_elemental_resistances_%"]=4007, - ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2706, - ["zombie_maximum_life_+"]=2613, - ["zombie_physical_damage_+%"]=2705, - ["zombie_physical_damage_+%_final"]=10780, - ["zombie_scale_+%"]=2704, - ["zombie_slam_area_of_effect_+%"]=10781, - ["zombie_slam_cooldown_speed_+%"]=10782, - ["zombie_slam_damage_+%"]=10783 + ["utility_flask_charges_recovered_per_3_seconds"]=10694, + ["utility_flask_cold_damage_taken_+%_final"]=10695, + ["utility_flask_fire_damage_taken_+%_final"]=10696, + ["utility_flask_lightning_damage_taken_+%_final"]=10697, + ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2742, + ["vaal_skill_critical_strike_chance_+%"]=3165, + ["vaal_skill_critical_strike_multiplier_+"]=3166, + ["vaal_skill_damage_+%"]=3153, + ["vaal_skill_effect_duration_+%"]=3163, + ["vaal_skill_gem_level_+"]=10698, + ["vaal_skill_soul_gain_preventation_duration_+%"]=3164, + ["vaal_skill_soul_refund_chance_%"]=10699, + ["vaal_skill_soul_requirement_+%"]=10700, + ["vaal_skill_store_uses_+"]=10701, + ["vaal_skills_area_of_effect_+%"]=10702, + ["vaal_skills_aura_effect_+%"]=10703, + ["vaal_souls_gained_per_minute"]=10704, + ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=10705, + ["vampiric_link_duration_+%"]=10706, + ["vengeance_cooldown_speed_+%"]=3946, + ["vengeance_damage_+%"]=3782, + ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=10707, + ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=3309, + ["vigilant_strike_damage_+%"]=3770, + ["vigilant_strike_fortify_duration_+%"]=3966, + ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=10708, + ["viper_strike_attack_damage_per_poison_on_enemy_+%"]=3293, + ["viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy"]=10709, + ["viper_strike_critical_strike_chance_+%"]=3999, + ["viper_strike_damage_+%"]=3712, + ["viper_strike_dual_wield_attack_speed_+%_final"]=10710, + ["viper_strike_dual_wield_damage_+%_final"]=10711, + ["viper_strike_poison_duration_+%"]=3988, + ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=3452, + ["virtual_block_%_damage_taken"]=10712, + ["virtual_energy_shield_delay_-%"]=3638, + ["virtual_energy_shield_recharge_rate_+%"]=3640, + ["virtual_light_radius_+%"]=2551, + ["virtual_mana_gain_per_target"]=1793, + ["virtual_minion_damage_+%"]=2022, + ["virtual_number_of_ranged_animated_weapons_allowed"]=3330, + ["virtual_support_anticipation_charge_gain_interval_ms"]=10904, + ["virulent_arrow_additional_spores_at_max_stages"]=10714, + ["virulent_arrow_chance_to_poison_%_per_stage"]=10715, + ["vitality_mana_reservation_+%"]=4101, + ["vitality_mana_reservation_efficiency_+%"]=10717, + ["vitality_mana_reservation_efficiency_-2%_per_1"]=10716, + ["vitality_reserves_no_mana"]=10718, + ["void_sphere_cooldown_speed_+%"]=10719, + ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=10720, + ["volatile_dead_base_number_of_corpses_to_consume"]=10721, + ["volatile_dead_cast_speed_+%"]=10722, + ["volatile_dead_consume_additional_corpse"]=10723, + ["volatile_dead_damage_+%"]=10724, + ["volcanic_fissure_damage_+%"]=10725, + ["volcanic_fissure_number_of_additional_projectiles"]=10726, + ["volcanic_fissure_speed_+%"]=10727, + ["voltaxic_burst_damage_+%"]=10728, + ["voltaxic_burst_damage_+%_per_100ms_duration"]=10729, + ["voltaxic_burst_skill_area_of_effect_+%"]=10730, + ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=10731, + ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=10732, + ["vulnerability_curse_effect_+%"]=4076, + ["vulnerability_duration_+%"]=3971, + ["vulnerability_ignores_hexproof"]=2659, + ["vulnerability_mana_reservation_+%"]=4110, + ["vulnerability_no_reservation"]=10733, + ["wake_of_destruction_ground_lightning_duration_ms"]=4373, + ["wand_accuracy_rating"]=2058, + ["wand_accuracy_rating_+%"]=1493, + ["wand_ailment_damage_+%"]=1395, + ["wand_attack_speed_+%"]=1475, + ["wand_attacks_fire_an_additional_projectile"]=10734, + ["wand_critical_strike_chance_+%"]=1518, + ["wand_critical_strike_multiplier_+"]=1545, + ["wand_damage_+%"]=3001, + ["wand_damage_+%_if_crit_recently"]=10735, + ["wand_damage_+%_per_power_charge"]=2188, + ["wand_elemental_damage_+%"]=2168, + ["wand_hit_and_ailment_damage_+%"]=1394, + ["wand_physical_damage_%_to_add_as_chaos"]=10736, + ["wand_physical_damage_%_to_add_as_cold"]=2084, + ["wand_physical_damage_%_to_add_as_fire"]=2083, + ["wand_physical_damage_%_to_add_as_lightning"]=2085, + ["wand_physical_damage_%_to_convert_to_lightning"]=10737, + ["war_banner_aura_effect_+%"]=10738, + ["war_banner_mana_reservation_efficiency_+%"]=10739, + ["warcries_apply_cover_in_ash_for_X_ms"]=10740, + ["warcries_are_instant"]=3523, + ["warcries_cost_%_of_life"]=10741, + ["warcries_cost_no_mana"]=4194, + ["warcries_debilitate_enemies_for_1_second"]=10742, + ["warcries_exert_twice_as_many_attacks"]=10743, + ["warcries_have_infinite_power"]=10750, + ["warcries_have_minimum_10_power"]=10744, + ["warcries_inflict_hallowing_flame"]=10745, + ["warcries_knock_back_enemies"]=10746, + ["warcry_buff_effect_+%"]=10747, + ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=10748, + ["warcry_cooldown_modifier_ms"]=10749, + ["warcry_cooldown_speed_+%"]=3389, + ["warcry_count_power_from_enemies"]=10750, + ["warcry_damage_taken_goes_to_mana_%"]=3322, + ["warcry_duration_+%"]=3262, + ["warcry_empowers_next_x_melee_attacks"]=10751, + ["warcry_gain_mp_from_allies"]=10750, + ["warcry_gain_mp_from_corpses"]=10750, + ["warcry_grant_X_rage_per_5_power"]=10752, + ["warcry_monster_power_+%"]=10753, + ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=10754, + ["warcry_skill_area_of_effect_+%"]=10755, + ["warcry_skills_cooldown_is_4_seconds"]=10756, + ["warcry_speed_+%"]=3337, + ["warcry_speed_+%_if_not_warcried_recently"]=10757, + ["ward_%_chance_to_restore_on_flask_use"]=10758, + ["ward_+%"]=1575, + ["ward_+%_during_any_flask_effect"]=10759, + ["ward_delay_recovery_+%"]=1577, + ["ward_delay_recovery_+%_per_enemy_hit_taken_recently"]=10760, + ["ward_from_armour_item_+%"]=10761, + ["ward_instead_of_%_body_armour_and_evasion"]=10762, + ["warden_tincture_toxicity_rate_+%_final"]=10763, + ["warden_tracker"]=10764, + ["warlords_mark_curse_effect_+%"]=4077, + ["warlords_mark_duration_+%"]=3970, + ["water_sphere_cold_lightning_exposure_%"]=10765, + ["water_sphere_damage_+%"]=10766, + ["weapon_chaos_damage_+%"]=2113, + ["weapon_cold_damage_+%"]=2111, + ["weapon_elemental_damage_+%"]=1404, + ["weapon_elemental_damage_+%_per_power_charge"]=2734, + ["weapon_elemental_damage_+%_while_using_flask"]=2816, + ["weapon_fire_damage_+%"]=2110, + ["weapon_hellscaping_speed_+%"]=7222, + ["weapon_lightning_damage_+%"]=2112, + ["weapon_physical_damage_%_to_add_as_each_element"]=4322, + ["weapon_physical_damage_%_to_add_as_random_element"]=2993, + ["weapon_physical_damage_+%"]=2804, + ["weapon_tree_cast_speed_+%_final"]=10767, + ["weapon_tree_counterattacks_damage_+%_final"]=10768, + ["weapon_tree_damage_+%_final"]=10769, + ["weapon_tree_local_sell_price_ancient_orb"]=10770, + ["weapon_tree_local_sell_price_awakened_sextant"]=10771, + ["weapon_tree_local_sell_price_blessed_orb"]=10772, + ["weapon_tree_local_sell_price_chaos_orb"]=10773, + ["weapon_tree_local_sell_price_crystalline_geode"]=10774, + ["weapon_tree_local_sell_price_divine_orb"]=10775, + ["weapon_tree_local_sell_price_exalted_orb"]=10776, + ["weapon_tree_local_sell_price_for_additional_crucible_experience"]=10777, + ["weapon_tree_local_sell_price_for_additional_specific_currency"]=10778, + ["weapon_tree_local_sell_price_for_additional_specific_unique"]=10779, + ["weapon_tree_local_sell_price_gemcutters_prism"]=10780, + ["weapon_tree_local_sell_price_igneous_geode"]=10781, + ["weapon_tree_local_sell_price_mirror_shard"]=10782, + ["weapon_tree_local_sell_price_of_tree_nodes_doubled"]=10783, + ["weapon_tree_local_sell_price_orb_of_annulment"]=10784, + ["weapon_tree_local_sell_price_orb_of_regret"]=10785, + ["weapon_tree_local_sell_price_regal_orb"]=10786, + ["weapon_tree_local_sell_price_sacred_orb"]=10787, + ["weapon_tree_local_sell_price_scouring_orb"]=10788, + ["weapon_tree_local_sell_price_vaal_orb"]=10789, + ["weapon_tree_local_sell_price_vault_key"]=10790, + ["weapon_tree_maximum_mana_+%_final"]=10791, + ["weapon_tree_throw_traps_in_circle_radius"]=10792, + ["while_curse_is_25%_expired_hinder_enemy_%"]=10793, + ["while_curse_is_33%_expired_malediction"]=10794, + ["while_curse_is_50%_expired_curse_effect_+%"]=10795, + ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=10796, + ["while_stationary_gain_additional_physical_damage_reduction_%"]=10797, + ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=10798, + ["while_using_mace_stun_threshold_reduction_+%"]=1565, + ["while_using_sword_reduce_enemy_block_%"]=1951, + ["whirling_blades_attack_speed_+%"]=3928, + ["whirling_blades_damage_+%"]=3771, + ["wild_strike_damage_+%"]=3746, + ["wild_strike_num_of_additional_projectiles_in_chain"]=4060, + ["wild_strike_radius_+%"]=3888, + ["winter_brand_chill_effect_+%"]=10799, + ["winter_brand_damage_+%"]=10800, + ["winter_brand_max_number_of_stages_+"]=10801, + ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=10802, + ["with_bow_additional_block_%"]=2510, + ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=10803, + ["wither_duration_+%"]=3984, + ["wither_expire_speed_+%"]=10804, + ["wither_radius_+%"]=3900, + ["withered_effect_+%"]=10806, + ["withered_effect_on_self_+%"]=10805, + ["withered_on_hit_chance_%_vs_cursed_enemies"]=10807, + ["withered_on_hit_for_2_seconds_%_chance"]=4459, + ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=10808, + ["wrath_aura_effect_+%"]=3421, + ["wrath_aura_effect_+%_while_at_maximum_power_charges"]=10809, + ["wrath_mana_reservation_+%"]=4102, + ["wrath_mana_reservation_efficiency_+%"]=10811, + ["wrath_mana_reservation_efficiency_-2%_per_1"]=10810, + ["wrath_reserves_no_mana"]=10812, + ["x%_life_regeneration_applies_to_energy_shield"]=10813, + ["x%_life_regeneration_applies_to_energy_shield_with_no_corrupted_equipped_items"]=10814, + ["x_to_maximum_life_per_2_intelligence"]=2070, + ["you_and_allies_additional_block_%_if_have_attacked_recently"]=10817, + ["you_and_allies_additional_spell_block_%_if_cast_spell_recently"]=10818, + ["you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_resource"]=4131, + ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=4132, + ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=10819, + ["you_and_nearby_allies_critical_strike_chance_+%"]=10820, + ["you_and_nearby_allies_critical_strike_multiplier_+"]=10821, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=10822, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=10823, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=10824, + ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=10825, + ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=10826, + ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=10827, + ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=3387, + ["you_are_blind"]=10828, + ["you_are_cursed_with_conductivity"]=10829, + ["you_are_cursed_with_despair"]=10830, + ["you_are_cursed_with_elemental_weakness"]=10831, + ["you_are_cursed_with_enfeeble"]=10832, + ["you_are_cursed_with_flammability"]=10833, + ["you_are_cursed_with_frostbite"]=10834, + ["you_are_cursed_with_temporal_chains"]=10835, + ["you_are_cursed_with_vulnerability"]=10836, + ["you_cannot_be_hindered"]=10837, + ["you_cannot_have_non_animated_minions"]=10838, + ["you_cannot_have_non_golem_minions"]=3751, + ["you_cannot_have_non_spectre_minions"]=10839, + ["you_cannot_impale_impaled_enemies"]=10840, + ["you_cannot_inflict_curses"]=10841, + ["you_count_as_full_life_while_affected_by_vulnerability"]=3177, + ["you_count_as_low_life_while_affected_by_vulnerability"]=3178, + ["you_count_as_low_life_while_not_on_full_life"]=10842, + ["you_have_feeding_frenzy_if_have_blocked_recently"]=10843, + ["you_have_no_armour_or_energy_shield"]=10844, + ["you_have_your_maximum_fortification"]=10845, + ["you_have_zealots_oath_if_you_havent_been_hit_recently"]=11036, + ["your_aegis_skills_except_primal_are_disabled"]=881, + ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=10847, + ["your_attacks_cannot_be_blocked"]=10848, + ["your_auras_except_anger_are_disabled"]=10849, + ["your_auras_except_clarity_are_disabled"]=10850, + ["your_auras_except_determination_are_disabled"]=10851, + ["your_auras_except_discipline_are_disabled"]=10852, + ["your_auras_except_grace_are_disabled"]=10853, + ["your_auras_except_haste_are_disabled"]=10854, + ["your_auras_except_hatred_are_disabled"]=10855, + ["your_auras_except_malevolence_are_disabled"]=10856, + ["your_auras_except_precision_are_disabled"]=10857, + ["your_auras_except_pride_are_disabled"]=10858, + ["your_auras_except_purity_of_elements_are_disabled"]=10859, + ["your_auras_except_purity_of_fire_are_disabled"]=10860, + ["your_auras_except_purity_of_ice_are_disabled"]=10861, + ["your_auras_except_purity_of_lightning_are_disabled"]=10862, + ["your_auras_except_vitality_are_disabled"]=10863, + ["your_auras_except_wrath_are_disabled"]=10864, + ["your_auras_except_zealotry_are_disabled"]=10865, + ["your_charges_cannot_be_stolen"]=10866, + ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=10870, + ["your_consecrated_ground_grants_accuracy_rating_+%"]=10867, + ["your_consecrated_ground_grants_damage_+%"]=4292, + ["your_consecrated_ground_grants_mana_regeneration_rate_+%"]=10868, + ["your_consecrated_ground_grants_max_chaos_resistance_+"]=10869, + ["your_marks_transfer_to_nearby_enemies_on_death_%_chance"]=10871, + ["your_minions_gain_added_physical_damage_equal_to_%_of_energy_shield_on_helmet"]=10872, + ["your_movement_skills_are_disabled"]=10873, + ["your_profane_ground_also_affects_allies_granting_chaotic_might"]=10874, + ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=10875, + ["your_skeletons_gain_added_chaos_damage_equal_to_%_of_energy_shield_on_shield"]=10876, + ["your_spells_are_disabled"]=10877, + ["your_spells_cannot_be_suppressed"]=10878, + ["your_travel_skills_are_disabled"]=10879, + ["your_travel_skills_except_dash_are_disabled"]=10880, + ["your_warcry_skills_are_disabled"]=10881, + ["zealotry_aura_effect_+%"]=10908, + ["zealotry_mana_reservation_+%"]=10911, + ["zealotry_mana_reservation_efficiency_+%"]=10910, + ["zealotry_mana_reservation_efficiency_-2%_per_1"]=10909, + ["zealotry_reserves_no_mana"]=10912, + ["zero_chaos_resistance"]=10913, + ["zero_elemental_resistance"]=2893, + ["zombie_attack_speed_+%"]=3916, + ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=10940, + ["zombie_chaos_elemental_damage_resistance_%"]=2640, + ["zombie_damage_+%"]=3703, + ["zombie_damage_leeched_as_energy_shield_to_you_permyriad_if_over_1000_intelligence"]=10941, + ["zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength"]=10942, + ["zombie_elemental_resistances_%"]=4043, + ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2733, + ["zombie_maximum_life_+"]=2639, + ["zombie_physical_damage_+%"]=2732, + ["zombie_physical_damage_+%_final"]=10943, + ["zombie_scale_+%"]=2731, + ["zombie_slam_area_of_effect_+%"]=10944, + ["zombie_slam_cooldown_speed_+%"]=10945, + ["zombie_slam_damage_+%"]=10946 } \ No newline at end of file diff --git a/src/Data/TattooPassives.lua b/src/Data/TattooPassives.lua index 35562440d0..5f842fb86c 100644 --- a/src/Data/TattooPassives.lua +++ b/src/Data/TattooPassives.lua @@ -56,7 +56,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10884, + ["statOrder"] = 11051, }, }, ["targetType"] = "Keystone", @@ -85,7 +85,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10878, + ["statOrder"] = 11045, }, }, ["targetType"] = "Keystone", @@ -142,7 +142,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10889, + ["statOrder"] = 11056, }, }, ["targetType"] = "Keystone", @@ -170,7 +170,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10959, + ["statOrder"] = 11138, }, }, ["targetType"] = "Keystone", @@ -199,7 +199,37 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10876, + ["statOrder"] = 11043, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Bitter Frost"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Bitter Frost", + ["icon"] = "Art/2DArt/SkillIcons/passives/ColdPureElementalCasterKeystone.png", + ["id"] = "elementalist_cold_keystone_2990", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "Enemies Chilled by your Hits have Cold Damage taken increased by Chill Effect", + [2] = "Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect", + [3] = "Cannot deal non-Cold Damage", + [4] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_cold_purist"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11108, }, }, ["targetType"] = "Keystone", @@ -230,7 +260,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10890, + ["statOrder"] = 11057, }, }, ["targetType"] = "Keystone", @@ -259,7 +289,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10971, + ["statOrder"] = 11150, }, }, ["targetType"] = "Keystone", @@ -288,7 +318,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10932, + ["statOrder"] = 11107, }, }, ["targetType"] = "Keystone", @@ -316,7 +346,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10893, + ["statOrder"] = 11060, }, }, ["targetType"] = "Keystone", @@ -344,7 +374,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10888, + ["statOrder"] = 11055, }, }, ["targetType"] = "Keystone", @@ -374,7 +404,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10921, + ["statOrder"] = 11091, }, }, ["targetType"] = "Keystone", @@ -403,7 +433,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10936, + ["statOrder"] = 11112, }, }, ["targetType"] = "Keystone", @@ -433,7 +463,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10877, + ["statOrder"] = 11044, }, }, ["targetType"] = "Keystone", @@ -462,7 +492,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10892, + ["statOrder"] = 11059, }, }, ["targetType"] = "Keystone", @@ -492,7 +522,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10937, + ["statOrder"] = 11113, }, }, ["targetType"] = "Keystone", @@ -522,7 +552,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10939, + ["statOrder"] = 11115, }, }, ["targetType"] = "Keystone", @@ -552,7 +582,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10941, + ["statOrder"] = 11118, }, }, ["targetType"] = "Keystone", @@ -582,7 +612,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10942, + ["statOrder"] = 11119, }, }, ["targetType"] = "Keystone", @@ -612,7 +642,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10943, + ["statOrder"] = 11120, }, }, ["targetType"] = "Keystone", @@ -641,7 +671,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10945, + ["statOrder"] = 11122, }, }, ["targetType"] = "Keystone", @@ -1079,7 +1109,7 @@ return { ["not"] = false, ["overrideType"] = "UnknownTattoo", ["sd"] = { - [1] = "3% increased Global Defences", + [1] = "3% increased Defences", }, ["stats"] = { ["global_defences_+%"] = { @@ -1168,7 +1198,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10961, + ["statOrder"] = 11140, }, }, ["targetType"] = "Keystone", @@ -1196,7 +1226,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10886, + ["statOrder"] = 11053, }, }, ["targetType"] = "Keystone", @@ -1224,7 +1254,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10875, + ["statOrder"] = 11042, }, }, ["targetType"] = "Keystone", @@ -1252,7 +1282,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10979, + ["statOrder"] = 11162, }, }, ["targetType"] = "Keystone", @@ -1359,7 +1389,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10947, + ["statOrder"] = 11124, }, }, ["targetType"] = "Keystone", @@ -1704,7 +1734,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10948, + ["statOrder"] = 11126, }, }, ["targetType"] = "Keystone", @@ -1732,7 +1762,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10900, + ["statOrder"] = 11067, }, }, ["targetType"] = "Keystone", @@ -1760,7 +1790,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10891, + ["statOrder"] = 11058, }, }, ["targetType"] = "Keystone", @@ -1788,7 +1818,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 2192, + ["statOrder"] = 2215, }, }, ["targetType"] = "Keystone", @@ -1816,7 +1846,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10885, + ["statOrder"] = 11052, }, }, ["targetType"] = "Keystone", @@ -1846,7 +1876,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10929, + ["statOrder"] = 11104, }, }, ["targetType"] = "Keystone", @@ -1874,7 +1904,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10887, + ["statOrder"] = 11054, }, }, ["targetType"] = "Keystone", @@ -1903,7 +1933,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10955, + ["statOrder"] = 11133, }, }, ["targetType"] = "Keystone", @@ -1932,7 +1962,37 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10901, + ["statOrder"] = 11068, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Roiling Tempest"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Roiling Tempest", + ["icon"] = "Art/2DArt/SkillIcons/passives/LightningPureElementalCasterKeystone.png", + ["id"] = "elementalist_lightning_keystone_2991", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "25% more Maximum Lightning Damage", + [2] = "50% less Minimum Lightning Damage", + [3] = "Cannot deal non-Lightning Damage", + [4] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_lightning_purist"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11125, }, }, ["targetType"] = "Keystone", @@ -1961,7 +2021,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10960, + ["statOrder"] = 11139, }, }, ["targetType"] = "Keystone", @@ -2595,7 +2655,7 @@ return { ["overrideType"] = "AlternateMastery", ["sd"] = { [1] = "10% reduced Attributes", - [2] = "40% increased Global Defences", + [2] = "40% increased Defences", [3] = "Limited to 1 Runegraft of the Fortress", }, ["stats"] = { @@ -2928,7 +2988,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10965, + ["statOrder"] = 11144, }, }, ["targetType"] = "Keystone", @@ -2958,7 +3018,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10968, + ["statOrder"] = 11147, }, }, ["targetType"] = "Keystone", @@ -3620,7 +3680,7 @@ return { ["not"] = false, ["overrideType"] = "RamakoTattoo", ["sd"] = { - [1] = "5% increased Global Accuracy Rating", + [1] = "5% increased Accuracy Rating", }, ["stats"] = { ["accuracy_rating_+%"] = { @@ -4583,7 +4643,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10952, + ["statOrder"] = 11130, }, }, ["targetType"] = "Keystone", @@ -4613,7 +4673,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10946, + ["statOrder"] = 11123, }, }, ["targetType"] = "Keystone", @@ -4642,7 +4702,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10902, + ["statOrder"] = 11069, }, }, ["targetType"] = "Keystone", @@ -4671,7 +4731,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10894, + ["statOrder"] = 11061, }, }, ["targetType"] = "Keystone", @@ -4701,7 +4761,38 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10974, + ["statOrder"] = 11153, + }, + }, + ["targetType"] = "Keystone", + ["targetValue"] = "", + }, + ["Voracious Flame"] = { + ["MaximumConnected"] = 100, + ["MinimumConnected"] = 0, + ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png", + ["dn"] = "Voracious Flame", + ["icon"] = "Art/2DArt/SkillIcons/passives/FirePureElementalCasterKeystone.png", + ["id"] = "elementalist_fire_keystone_2989_", + ["isTattoo"] = true, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["overrideType"] = "KeystoneTattoo", + ["sd"] = { + [1] = "You can inflict an additional Ignite on each Enemy", + [2] = "Base Ignite Duration is 1 second", + [3] = "25% less Damage with Ignite", + [4] = "Cannot deal non-Fire Damage", + [5] = "Limited to 1 Keystone Tattoo", + }, + ["stats"] = { + ["keystone_fire_purist"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11116, }, }, ["targetType"] = "Keystone", @@ -4730,7 +4821,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10977, + ["statOrder"] = 11156, }, }, ["targetType"] = "Keystone", @@ -4760,7 +4851,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10978, + ["statOrder"] = 11157, }, }, ["targetType"] = "Keystone", @@ -4788,7 +4879,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10895, + ["statOrder"] = 11062, }, }, ["targetType"] = "Keystone", diff --git a/src/Data/TimelessJewelData/AbyssAmanamu.zip b/src/Data/TimelessJewelData/AbyssAmanamu.zip new file mode 100644 index 0000000000..8e60de73e1 Binary files /dev/null and b/src/Data/TimelessJewelData/AbyssAmanamu.zip differ diff --git a/src/Data/TimelessJewelData/AbyssKurgal.zip b/src/Data/TimelessJewelData/AbyssKurgal.zip new file mode 100644 index 0000000000..f0e518cb91 Binary files /dev/null and b/src/Data/TimelessJewelData/AbyssKurgal.zip differ diff --git a/src/Data/TimelessJewelData/AbyssTecrod.zip b/src/Data/TimelessJewelData/AbyssTecrod.zip new file mode 100644 index 0000000000..6425f12951 Binary files /dev/null and b/src/Data/TimelessJewelData/AbyssTecrod.zip differ diff --git a/src/Data/TimelessJewelData/AbyssUlaman.zip b/src/Data/TimelessJewelData/AbyssUlaman.zip new file mode 100644 index 0000000000..f141c8e83b Binary files /dev/null and b/src/Data/TimelessJewelData/AbyssUlaman.zip differ diff --git a/src/Data/TimelessJewelData/AbyssZorath.zip b/src/Data/TimelessJewelData/AbyssZorath.zip new file mode 100644 index 0000000000..963b1e5329 Binary files /dev/null and b/src/Data/TimelessJewelData/AbyssZorath.zip differ diff --git a/src/Data/TimelessJewelData/BrutalRestraint.zip b/src/Data/TimelessJewelData/BrutalRestraint.zip index cf952c1980..3a6e4728e2 100644 Binary files a/src/Data/TimelessJewelData/BrutalRestraint.zip and b/src/Data/TimelessJewelData/BrutalRestraint.zip differ diff --git a/src/Data/TimelessJewelData/ElegantHubris.zip b/src/Data/TimelessJewelData/ElegantHubris.zip index 33e19e9294..e4996a451a 100644 Binary files a/src/Data/TimelessJewelData/ElegantHubris.zip and b/src/Data/TimelessJewelData/ElegantHubris.zip differ diff --git a/src/Data/TimelessJewelData/GloriousVanity.zip.part0 b/src/Data/TimelessJewelData/GloriousVanity.zip.part0 index de65899cb6..0e3436cf31 100644 Binary files a/src/Data/TimelessJewelData/GloriousVanity.zip.part0 and b/src/Data/TimelessJewelData/GloriousVanity.zip.part0 differ diff --git a/src/Data/TimelessJewelData/GloriousVanity.zip.part1 b/src/Data/TimelessJewelData/GloriousVanity.zip.part1 index e9230914b0..3bbc1d9051 100644 Binary files a/src/Data/TimelessJewelData/GloriousVanity.zip.part1 and b/src/Data/TimelessJewelData/GloriousVanity.zip.part1 differ diff --git a/src/Data/TimelessJewelData/GloriousVanity.zip.part2 b/src/Data/TimelessJewelData/GloriousVanity.zip.part2 index 0c9eb4de19..9d49d7640a 100644 Binary files a/src/Data/TimelessJewelData/GloriousVanity.zip.part2 and b/src/Data/TimelessJewelData/GloriousVanity.zip.part2 differ diff --git a/src/Data/TimelessJewelData/GloriousVanity.zip.part3 b/src/Data/TimelessJewelData/GloriousVanity.zip.part3 index 904b9522d0..1bc274bd1b 100644 Binary files a/src/Data/TimelessJewelData/GloriousVanity.zip.part3 and b/src/Data/TimelessJewelData/GloriousVanity.zip.part3 differ diff --git a/src/Data/TimelessJewelData/GloriousVanity.zip.part4 b/src/Data/TimelessJewelData/GloriousVanity.zip.part4 index 8fdce0084f..3133fb2cd0 100644 Binary files a/src/Data/TimelessJewelData/GloriousVanity.zip.part4 and b/src/Data/TimelessJewelData/GloriousVanity.zip.part4 differ diff --git a/src/Data/TimelessJewelData/HeroicTragedy.zip b/src/Data/TimelessJewelData/HeroicTragedy.zip index fa207c5cb3..69aa5cec47 100644 Binary files a/src/Data/TimelessJewelData/HeroicTragedy.zip and b/src/Data/TimelessJewelData/HeroicTragedy.zip differ diff --git a/src/Data/TimelessJewelData/LegionPassives.lua b/src/Data/TimelessJewelData/LegionPassives.lua index afe7d5023e..53c8e5b70c 100644 --- a/src/Data/TimelessJewelData/LegionPassives.lua +++ b/src/Data/TimelessJewelData/LegionPassives.lua @@ -18,7 +18,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1357, + ["statOrder"] = 1381, }, }, }, @@ -37,7 +37,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1366, + ["statOrder"] = 1390, }, }, }, @@ -56,7 +56,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1377, + ["statOrder"] = 1401, }, }, }, @@ -75,7 +75,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 10924, + ["statOrder"] = 11094, }, }, }, @@ -94,7 +94,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1385, + ["statOrder"] = 1409, }, }, }, @@ -113,7 +113,7 @@ return { ["index"] = 1, ["max"] = 13, ["min"] = 8, - ["statOrder"] = 1973, + ["statOrder"] = 1996, }, }, }, @@ -132,7 +132,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1198, + ["statOrder"] = 1221, }, }, }, @@ -151,7 +151,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1223, + ["statOrder"] = 1246, }, }, }, @@ -170,7 +170,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 2035, + ["statOrder"] = 2058, }, }, }, @@ -189,7 +189,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1996, + ["statOrder"] = 2019, }, }, }, @@ -208,7 +208,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1210, + ["statOrder"] = 1233, }, }, }, @@ -227,7 +227,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1880, + ["statOrder"] = 1903, }, }, }, @@ -246,7 +246,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1796, + ["statOrder"] = 1819, }, }, }, @@ -265,7 +265,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 7, - ["statOrder"] = 10896, + ["statOrder"] = 11063, }, }, }, @@ -284,7 +284,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 10897, + ["statOrder"] = 11064, }, }, }, @@ -303,7 +303,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 3, - ["statOrder"] = 1410, + ["statOrder"] = 1434, }, }, }, @@ -322,7 +322,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 1446, + ["statOrder"] = 1470, }, }, }, @@ -341,7 +341,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 1798, + ["statOrder"] = 1821, }, }, }, @@ -360,7 +360,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 2026, + ["statOrder"] = 2049, }, }, }, @@ -379,7 +379,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 2029, + ["statOrder"] = 2052, }, }, }, @@ -398,7 +398,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 2033, + ["statOrder"] = 2056, }, }, }, @@ -417,7 +417,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1895, + ["statOrder"] = 1918, }, }, }, @@ -436,7 +436,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 1571, + ["statOrder"] = 1593, }, }, }, @@ -455,7 +455,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 4, - ["statOrder"] = 1580, + ["statOrder"] = 1603, }, }, }, @@ -474,7 +474,7 @@ return { ["index"] = 1, ["max"] = 17, ["min"] = 12, - ["statOrder"] = 1584, + ["statOrder"] = 1607, }, }, }, @@ -493,7 +493,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1541, + ["statOrder"] = 1563, }, }, }, @@ -512,7 +512,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1549, + ["statOrder"] = 1571, }, }, }, @@ -531,7 +531,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 3, - ["statOrder"] = 1561, + ["statOrder"] = 1583, }, }, }, @@ -550,7 +550,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 2458, + ["statOrder"] = 2483, }, }, }, @@ -569,7 +569,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 1160, + ["statOrder"] = 1183, }, }, }, @@ -588,7 +588,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 1843, + ["statOrder"] = 1866, }, }, }, @@ -607,7 +607,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 1143, + ["statOrder"] = 1167, }, }, }, @@ -626,7 +626,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 3566, + ["statOrder"] = 3602, }, }, }, @@ -645,7 +645,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 2596, + ["statOrder"] = 2622, }, }, }, @@ -664,7 +664,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1625, + ["statOrder"] = 1648, }, }, }, @@ -683,7 +683,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1631, + ["statOrder"] = 1654, }, }, }, @@ -702,7 +702,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1636, + ["statOrder"] = 1659, }, }, }, @@ -721,7 +721,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 1641, + ["statOrder"] = 1664, }, }, }, @@ -740,7 +740,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10862, + ["statOrder"] = 11029, }, }, }, @@ -759,7 +759,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10862, + ["statOrder"] = 11029, }, }, }, @@ -778,7 +778,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10862, + ["statOrder"] = 11029, }, }, }, @@ -797,7 +797,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10863, + ["statOrder"] = 11030, }, }, }, @@ -816,7 +816,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1541, + ["statOrder"] = 1563, }, }, }, @@ -835,7 +835,7 @@ return { ["index"] = 1, ["max"] = 0.4, ["min"] = 0.4, - ["statOrder"] = 1664, + ["statOrder"] = 1687, }, }, }, @@ -854,7 +854,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 5659, + ["statOrder"] = 5737, }, }, }, @@ -873,7 +873,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 1571, + ["statOrder"] = 1593, }, }, }, @@ -892,7 +892,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 5031, + ["statOrder"] = 5097, }, }, }, @@ -911,7 +911,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 1944, + ["statOrder"] = 1967, }, }, }, @@ -930,7 +930,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1625, + ["statOrder"] = 1648, }, }, }, @@ -949,7 +949,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1234, + ["statOrder"] = 1257, }, }, }, @@ -968,7 +968,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1512, + ["statOrder"] = 1535, }, }, }, @@ -987,7 +987,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 1479, + ["statOrder"] = 1502, }, }, }, @@ -1006,7 +1006,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1877, + ["statOrder"] = 1900, }, }, }, @@ -1025,7 +1025,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1193, + ["statOrder"] = 1216, }, }, }, @@ -1044,7 +1044,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1502, + ["statOrder"] = 1525, }, }, }, @@ -1063,7 +1063,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10924, + ["statOrder"] = 11094, }, }, }, @@ -1082,7 +1082,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 10567, + ["statOrder"] = 10723, }, }, }, @@ -1101,7 +1101,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 2578, + ["statOrder"] = 2604, }, }, }, @@ -1120,7 +1120,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1863, + ["statOrder"] = 1886, }, }, }, @@ -1139,7 +1139,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 2564, + ["statOrder"] = 2590, }, }, }, @@ -1158,7 +1158,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1517, + ["statOrder"] = 1540, }, }, }, @@ -1177,7 +1177,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1932, + ["statOrder"] = 1955, }, }, }, @@ -1196,7 +1196,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6845, + ["statOrder"] = 6938, }, }, }, @@ -1215,7 +1215,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2629, + ["statOrder"] = 2655, }, }, }, @@ -1234,7 +1234,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5715, + ["statOrder"] = 5793, }, }, }, @@ -1253,7 +1253,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10864, + ["statOrder"] = 11031, }, }, }, @@ -1272,7 +1272,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10864, + ["statOrder"] = 11031, }, }, }, @@ -1291,7 +1291,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10864, + ["statOrder"] = 11031, }, }, }, @@ -1310,7 +1310,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10865, + ["statOrder"] = 11032, }, }, }, @@ -1329,7 +1329,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1549, + ["statOrder"] = 1571, }, }, }, @@ -1348,7 +1348,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 2183, + ["statOrder"] = 2206, }, }, }, @@ -1367,7 +1367,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2046, + ["statOrder"] = 2069, }, }, }, @@ -1386,7 +1386,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 1571, + ["statOrder"] = 1593, }, }, }, @@ -1405,7 +1405,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10907, + ["statOrder"] = 11074, }, }, }, @@ -1424,7 +1424,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1798, + ["statOrder"] = 1821, }, }, }, @@ -1443,7 +1443,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1631, + ["statOrder"] = 1654, }, }, }, @@ -1462,7 +1462,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1996, + ["statOrder"] = 2019, }, }, }, @@ -1481,7 +1481,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1851, + ["statOrder"] = 1874, }, }, }, @@ -1500,7 +1500,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 10896, + ["statOrder"] = 11063, }, }, }, @@ -1519,7 +1519,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 3181, + ["statOrder"] = 3217, }, }, }, @@ -1538,7 +1538,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1973, + ["statOrder"] = 1996, }, }, }, @@ -1546,7 +1546,7 @@ return { ["dn"] = "Add Accuracy", ["id"] = "maraketh_notable_add_accuracy", ["sd"] = { - [1] = "5% increased Global Accuracy Rating", + [1] = "5% increased Accuracy Rating", }, ["sortedStats"] = { [1] = "accuracy_rating_+%", @@ -1557,7 +1557,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1434, + ["statOrder"] = 11079, }, }, }, @@ -1576,7 +1576,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1980, + ["statOrder"] = 2003, }, }, }, @@ -1595,7 +1595,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 3566, + ["statOrder"] = 3602, }, }, }, @@ -1614,7 +1614,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1769, + ["statOrder"] = 1792, }, }, }, @@ -1633,7 +1633,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1861, + ["statOrder"] = 1884, }, }, }, @@ -1652,7 +1652,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6546, + ["statOrder"] = 6633, }, }, }, @@ -1671,7 +1671,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 9500, + ["statOrder"] = 9634, }, }, }, @@ -1690,7 +1690,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1933, + ["statOrder"] = 1956, }, }, }, @@ -1709,7 +1709,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 6721, + ["statOrder"] = 6811, }, }, }, @@ -1728,7 +1728,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2631, + ["statOrder"] = 2657, }, }, }, @@ -1747,7 +1747,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 2643, + ["statOrder"] = 2669, }, }, }, @@ -1766,7 +1766,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10861, + ["statOrder"] = 11028, }, }, }, @@ -1785,7 +1785,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10861, + ["statOrder"] = 11028, }, }, }, @@ -1804,7 +1804,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 1529, + ["statOrder"] = 1551, }, }, }, @@ -1823,376 +1823,14046 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 1529, + ["statOrder"] = 1551, }, }, }, - }, - ["groups"] = { - [1000000000] = { - ["n"] = { - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 7, - [8] = 8, - [9] = 9, - [10] = 10, - [11] = 11, - [12] = 12, - [13] = 13, - [14] = 14, - [15] = 15, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 20, - [21] = 21, - [22] = 22, - [23] = 23, - [24] = 24, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 40, - [41] = 41, - [42] = 42, - [43] = 43, - [44] = 44, - [45] = 45, - [46] = 46, - [47] = 47, - [48] = 48, - [49] = 49, - [50] = 50, - [51] = 51, - [52] = 52, - [53] = 53, - [54] = 54, - [55] = 55, - [56] = 56, - [57] = 57, - [58] = 58, - [59] = 59, - [60] = 60, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 80, - [81] = 81, - [82] = 82, - [83] = 83, - [84] = 84, - [85] = 85, - [86] = 86, - [87] = 87, - [88] = 88, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 95, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, - [104] = 104, - [105] = 105, - [106] = 106, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, - [113] = 113, - [114] = 114, - [115] = 115, - [116] = 116, - [117] = 117, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, - [122] = 122, - [123] = 123, - [124] = 124, - [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 130, - [131] = 131, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 139, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 156, - [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 171, - [172] = 172, - [173] = 173, - [174] = 174, - [175] = 175, - [176] = 176, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 182, - }, - ["oo"] = { + [97] = { + ["dn"] = "Notable 1", + ["id"] = "abyss_murderous_notable_1", + ["sd"] = { + [1] = "+(21-30) to maximum Life", }, - ["x"] = -6500, - ["y"] = -6500, - }, - }, - ["nodes"] = { - [1] = { - ["da"] = 0, - ["dn"] = "Divine Flesh", - ["g"] = 1000000000, - ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DivineFlesh.dds", - ["id"] = "vaal_keystone_1", - ["in"] = { + ["sortedStats"] = { + [1] = "base_maximum_life", }, - ["isJewelSocket"] = false, - ["isMultipleChoice"] = false, - ["isMultipleChoiceOption"] = false, - ["ks"] = true, - ["m"] = false, - ["not"] = false, - ["o"] = 4, - ["oidx"] = 0, - ["out"] = { + ["stats"] = { + ["base_maximum_life"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 21, + ["statOrder"] = 1591, + }, }, - ["passivePointsGranted"] = 0, - ["sa"] = 0, + }, + [98] = { + ["dn"] = "Notable 2", + ["id"] = "abyss_murderous_notable_2", ["sd"] = { - [1] = "All Damage taken bypasses Energy Shield", - [2] = "50% of Elemental Damage taken as Chaos Damage", - [3] = "+5% to maximum Chaos Resistance", + [1] = "+(12-16) to Strength", }, ["sortedStats"] = { - [1] = "keystone_divine_flesh", - }, - ["spc"] = { + [1] = "additional_strength", }, ["stats"] = { - ["keystone_divine_flesh"] = { + ["additional_strength"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10935, + ["max"] = 16, + ["min"] = 12, + ["statOrder"] = 1200, }, }, }, - [2] = { - ["da"] = 0, - ["dn"] = "Eternal Youth", + [99] = { + ["dn"] = "Notable 3", + ["id"] = "abyss_murderous_notable_3", + ["sd"] = { + [1] = "+(6-8) to all Attributes", + }, + ["sortedStats"] = { + [1] = "additional_all_attributes", + }, + ["stats"] = { + ["additional_all_attributes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1199, + }, + }, + }, + [100] = { + ["dn"] = "Notable 4", + ["id"] = "abyss_murderous_notable_4", + ["sd"] = { + [1] = "+(12-15)% to Fire Resistance", + }, + ["sortedStats"] = { + [1] = "base_fire_damage_resistance_%", + }, + ["stats"] = { + ["base_fire_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 12, + ["statOrder"] = 1648, + }, + }, + }, + [101] = { + ["dn"] = "Notable 5", + ["id"] = "abyss_murderous_notable_5", + ["sd"] = { + [1] = "+(6-8)% to all Elemental Resistances", + }, + ["sortedStats"] = { + [1] = "base_resist_all_elements_%", + }, + ["stats"] = { + ["base_resist_all_elements_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1642, + }, + }, + }, + [102] = { + ["dn"] = "Notable 6", + ["id"] = "abyss_murderous_notable_6", + ["sd"] = { + [1] = "(3-5)% increased Attack Speed", + }, + ["sortedStats"] = { + [1] = "attack_speed_+%", + }, + ["stats"] = { + ["attack_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1434, + }, + }, + }, + [103] = { + ["dn"] = "Notable 7", + ["id"] = "abyss_murderous_notable_7", + ["sd"] = { + [1] = "Regenerate (9-16) Life per second", + }, + ["sortedStats"] = { + [1] = "base_life_regeneration_rate_per_minute", + }, + ["stats"] = { + ["base_life_regeneration_rate_per_minute"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 16, + ["min"] = 9, + ["statOrder"] = 1596, + }, + }, + }, + [104] = { + ["dn"] = "Notable 8", + ["id"] = "abyss_murderous_notable_8", + ["sd"] = { + [1] = "(3-8)% chance to Taunt Enemies on Hit with Attacks", + }, + ["sortedStats"] = { + [1] = "attacks_chance_to_taunt_on_hit_%", + }, + ["stats"] = { + ["attacks_chance_to_taunt_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 3, + ["statOrder"] = 4966, + }, + }, + }, + [105] = { + ["dn"] = "Notable 9", + ["id"] = "abyss_murderous_notable_9", + ["sd"] = { + [1] = "(31-40)% chance to Avoid being Ignited", + }, + ["sortedStats"] = { + [1] = "base_avoid_ignite_%", + }, + ["stats"] = { + ["base_avoid_ignite_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 1869, + }, + }, + }, + [106] = { + ["dn"] = "Notable 10", + ["id"] = "abyss_murderous_notable_10", + ["sd"] = { + [1] = "(21-30)% chance to Avoid being Stunned", + }, + ["sortedStats"] = { + [1] = "base_avoid_stun_%", + }, + ["stats"] = { + ["base_avoid_stun_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 21, + ["statOrder"] = 1874, + }, + }, + }, + [107] = { + ["dn"] = "Notable 11", + ["id"] = "abyss_murderous_notable_11", + ["sd"] = { + [1] = "+(61-100) to Armour", + }, + ["sortedStats"] = { + [1] = "base_physical_damage_reduction_rating", + }, + ["stats"] = { + ["base_physical_damage_reduction_rating"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 100, + ["min"] = 61, + ["statOrder"] = 1561, + }, + }, + }, + [108] = { + ["dn"] = "Notable 12", + ["id"] = "abyss_murderous_notable_12", + ["sd"] = { + [1] = "(3-5)% increased Impale Effect", + }, + ["sortedStats"] = { + [1] = "impale_debuff_effect_+%", + }, + ["stats"] = { + ["impale_debuff_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 7343, + }, + }, + }, + [109] = { + ["dn"] = "Notable 13", + ["id"] = "abyss_murderous_notable_13", + ["sd"] = { + [1] = "(15-20)% increased Damage if you've Killed Recently", + }, + ["sortedStats"] = { + [1] = "damage_+%_if_enemy_killed_recently", + }, + ["stats"] = { + ["damage_+%_if_enemy_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 6128, + }, + }, + }, + [110] = { + ["dn"] = "Notable 14", + ["id"] = "abyss_murderous_notable_14", + ["sd"] = { + [1] = "Regenerate (0.5-1)% of Life per second while moving", + }, + ["sortedStats"] = { + [1] = "life_regeneration_rate_per_minute_%_while_moving", + }, + ["stats"] = { + ["life_regeneration_rate_per_minute_%_while_moving"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 1, + ["min"] = 0.5, + ["statOrder"] = 7525, + }, + }, + }, + [111] = { + ["dn"] = "Notable 15", + ["id"] = "abyss_murderous_notable_15", + ["sd"] = { + [1] = "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", + }, + ["sortedStats"] = { + [1] = "block_chance_on_damage_taken_%", + }, + ["stats"] = { + ["block_chance_on_damage_taken_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 3252, + }, + }, + }, + [112] = { + ["dn"] = "Notable 16", + ["id"] = "abyss_murderous_notable_16", + ["sd"] = { + [1] = "Enemies Maimed by you take (4-5)% increased Damage Over Time", + }, + ["sortedStats"] = { + [1] = "enemies_you_maim_have_damage_taken_over_time_+%", + }, + ["stats"] = { + ["enemies_you_maim_have_damage_taken_over_time_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 4, + ["statOrder"] = 6502, + }, + }, + }, + [113] = { + ["dn"] = "Notable 17", + ["id"] = "abyss_murderous_notable_17", + ["sd"] = { + [1] = "Enemies Intimidated by you have 10% increased duration of stuns against them", + }, + ["sortedStats"] = { + [1] = "enemies_you_intimidate_have_stun_duration_on_self_+%", + }, + ["stats"] = { + ["enemies_you_intimidate_have_stun_duration_on_self_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6501, + }, + }, + }, + [114] = { + ["dn"] = "Notable 18", + ["id"] = "abyss_murderous_notable_18", + ["sd"] = { + [1] = "(5-6) to 0 Added Physical Damage with Dagger Attacks", + [2] = "0 to (7-8) Added Physical Damage with Dagger Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage_with_daggers", + [2] = "attack_minimum_added_physical_damage_with_daggers", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 7, + ["statOrder"] = 2095, + }, + ["attack_minimum_added_physical_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 5, + ["statOrder"] = 2095, + }, + }, + }, + [115] = { + ["dn"] = "Notable 19", + ["id"] = "abyss_murderous_notable_19", + ["sd"] = { + [1] = "(5-6) to 0 Added Physical Damage with Claw Attacks", + [2] = "0 to (7-8) Added Physical Damage with Claw Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage_with_claws", + [2] = "attack_minimum_added_physical_damage_with_claws", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 7, + ["statOrder"] = 2094, + }, + ["attack_minimum_added_physical_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 5, + ["statOrder"] = 2094, + }, + }, + }, + [116] = { + ["dn"] = "Notable 20", + ["id"] = "abyss_murderous_notable_20", + ["sd"] = { + [1] = "(5-6) to 0 Added Physical Damage with Sword Attacks", + [2] = "0 to (7-8) Added Physical Damage with Sword Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage_with_swords", + [2] = "attack_minimum_added_physical_damage_with_swords", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage_with_swords"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 7, + ["statOrder"] = 2098, + }, + ["attack_minimum_added_physical_damage_with_swords"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 5, + ["statOrder"] = 2098, + }, + }, + }, + [117] = { + ["dn"] = "Notable 21", + ["id"] = "abyss_murderous_notable_21", + ["sd"] = { + [1] = "(5-6) to 0 Added Physical Damage with Axe Attacks", + [2] = "0 to (7-8) Added Physical Damage with Axe Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage_with_axes", + [2] = "attack_minimum_added_physical_damage_with_axes", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage_with_axes"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 7, + ["statOrder"] = 2092, + }, + ["attack_minimum_added_physical_damage_with_axes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 5, + ["statOrder"] = 2092, + }, + }, + }, + [118] = { + ["dn"] = "Notable 22", + ["id"] = "abyss_murderous_notable_22", + ["sd"] = { + [1] = "(5-6) to 0 Added Physical Damage with Mace or Sceptre Attacks", + [2] = "0 to (7-8) Added Physical Damage with Mace or Sceptre Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage_with_maces", + [2] = "attack_minimum_added_physical_damage_with_maces", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage_with_maces"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 7, + ["statOrder"] = 2096, + }, + ["attack_minimum_added_physical_damage_with_maces"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 5, + ["statOrder"] = 2096, + }, + }, + }, + [119] = { + ["dn"] = "Notable 23", + ["id"] = "abyss_murderous_notable_23", + ["sd"] = { + [1] = "(5-6) to 0 Added Physical Damage with Staff Attacks", + [2] = "0 to (7-8) Added Physical Damage with Staff Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage_with_staves", + [2] = "attack_minimum_added_physical_damage_with_staves", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage_with_staves"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 7, + ["statOrder"] = 2097, + }, + ["attack_minimum_added_physical_damage_with_staves"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 5, + ["statOrder"] = 2097, + }, + }, + }, + [120] = { + ["dn"] = "Notable 24", + ["id"] = "abyss_murderous_notable_24", + ["sd"] = { + [1] = "(1-4) to 0 Added Lightning Damage with Dagger Attacks", + [2] = "0 to (33-35) Added Lightning Damage with Dagger Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage_with_daggers", + [2] = "attack_minimum_added_lightning_damage_with_daggers", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 35, + ["min"] = 33, + ["statOrder"] = 2121, + }, + ["attack_minimum_added_lightning_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2121, + }, + }, + }, + [121] = { + ["dn"] = "Notable 25", + ["id"] = "abyss_murderous_notable_25", + ["sd"] = { + [1] = "(1-4) to 0 Added Lightning Damage with Claw Attacks", + [2] = "0 to (33-35) Added Lightning Damage with Claw Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage_with_claws", + [2] = "attack_minimum_added_lightning_damage_with_claws", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 35, + ["min"] = 33, + ["statOrder"] = 2120, + }, + ["attack_minimum_added_lightning_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2120, + }, + }, + }, + [122] = { + ["dn"] = "Notable 26", + ["id"] = "abyss_murderous_notable_26", + ["sd"] = { + [1] = "(1-4) to 0 Added Lightning Damage with Sword Attacks", + [2] = "0 to (33-35) Added Lightning Damage with Sword Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage_with_swords", + [2] = "attack_minimum_added_lightning_damage_with_swords", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage_with_swords"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 35, + ["min"] = 33, + ["statOrder"] = 2124, + }, + ["attack_minimum_added_lightning_damage_with_swords"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2124, + }, + }, + }, + [123] = { + ["dn"] = "Notable 27", + ["id"] = "abyss_murderous_notable_27", + ["sd"] = { + [1] = "(1-4) to 0 Added Lightning Damage with Axe Attacks", + [2] = "0 to (33-35) Added Lightning Damage with Axe Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage_with_axes", + [2] = "attack_minimum_added_lightning_damage_with_axes", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage_with_axes"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 35, + ["min"] = 33, + ["statOrder"] = 2118, + }, + ["attack_minimum_added_lightning_damage_with_axes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2118, + }, + }, + }, + [124] = { + ["dn"] = "Notable 28", + ["id"] = "abyss_murderous_notable_28", + ["sd"] = { + [1] = "(1-4) to 0 Added Lightning Damage with Mace or Sceptre Attacks", + [2] = "0 to (33-35) Added Lightning Damage with Mace or Sceptre Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage_with_maces", + [2] = "attack_minimum_added_lightning_damage_with_maces", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage_with_maces"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 35, + ["min"] = 33, + ["statOrder"] = 2122, + }, + ["attack_minimum_added_lightning_damage_with_maces"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2122, + }, + }, + }, + [125] = { + ["dn"] = "Notable 29", + ["id"] = "abyss_murderous_notable_29", + ["sd"] = { + [1] = "(1-4) to 0 Added Lightning Damage with Staff Attacks", + [2] = "0 to (33-35) Added Lightning Damage with Staff Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage_with_staves", + [2] = "attack_minimum_added_lightning_damage_with_staves", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage_with_staves"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 35, + ["min"] = 33, + ["statOrder"] = 2123, + }, + ["attack_minimum_added_lightning_damage_with_staves"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2123, + }, + }, + }, + [126] = { + ["dn"] = "Notable 30", + ["id"] = "abyss_murderous_notable_30", + ["sd"] = { + [1] = "(12-13) to 0 Added Fire Damage with Dagger Attacks", + [2] = "0 to (20-22) Added Fire Damage with Dagger Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage_with_daggers", + [2] = "attack_minimum_added_fire_damage_with_daggers", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 22, + ["min"] = 20, + ["statOrder"] = 2105, + }, + ["attack_minimum_added_fire_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 12, + ["statOrder"] = 2105, + }, + }, + }, + [127] = { + ["dn"] = "Notable 31", + ["id"] = "abyss_murderous_notable_31", + ["sd"] = { + [1] = "(12-13) to 0 Added Fire Damage with Claw Attacks", + [2] = "0 to (20-22) Added Fire Damage with Claw Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage_with_claws", + [2] = "attack_minimum_added_fire_damage_with_claws", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 22, + ["min"] = 20, + ["statOrder"] = 2104, + }, + ["attack_minimum_added_fire_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 12, + ["statOrder"] = 2104, + }, + }, + }, + [128] = { + ["dn"] = "Notable 32", + ["id"] = "abyss_murderous_notable_32", + ["sd"] = { + [1] = "(12-13) to 0 Added Fire Damage with Sword Attacks", + [2] = "0 to (20-22) Added Fire Damage with Sword Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage_with_swords", + [2] = "attack_minimum_added_fire_damage_with_swords", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage_with_swords"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 22, + ["min"] = 20, + ["statOrder"] = 2108, + }, + ["attack_minimum_added_fire_damage_with_swords"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 12, + ["statOrder"] = 2108, + }, + }, + }, + [129] = { + ["dn"] = "Notable 33", + ["id"] = "abyss_murderous_notable_33", + ["sd"] = { + [1] = "(12-13) to 0 Added Fire Damage with Axe Attacks", + [2] = "0 to (20-22) Added Fire Damage with Axe Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage_with_axes", + [2] = "attack_minimum_added_fire_damage_with_axes", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage_with_axes"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 22, + ["min"] = 20, + ["statOrder"] = 2102, + }, + ["attack_minimum_added_fire_damage_with_axes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 12, + ["statOrder"] = 2102, + }, + }, + }, + [130] = { + ["dn"] = "Notable 34", + ["id"] = "abyss_murderous_notable_34", + ["sd"] = { + [1] = "(12-13) to 0 Added Fire Damage with Mace or Sceptre Attacks", + [2] = "0 to (20-22) Added Fire Damage with Mace or Sceptre Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage_with_maces", + [2] = "attack_minimum_added_fire_damage_with_maces", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage_with_maces"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 22, + ["min"] = 20, + ["statOrder"] = 2106, + }, + ["attack_minimum_added_fire_damage_with_maces"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 12, + ["statOrder"] = 2106, + }, + }, + }, + [131] = { + ["dn"] = "Notable 35", + ["id"] = "abyss_murderous_notable_35", + ["sd"] = { + [1] = "(12-13) to 0 Added Fire Damage with Staff Attacks", + [2] = "0 to (20-22) Added Fire Damage with Staff Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage_with_staves", + [2] = "attack_minimum_added_fire_damage_with_staves", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage_with_staves"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 22, + ["min"] = 20, + ["statOrder"] = 2107, + }, + ["attack_minimum_added_fire_damage_with_staves"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 12, + ["statOrder"] = 2107, + }, + }, + }, + [132] = { + ["dn"] = "Notable 36", + ["id"] = "abyss_murderous_notable_36", + ["sd"] = { + [1] = "(10-11) to 0 Added Cold Damage with Dagger Attacks", + [2] = "0 to (17-20) Added Cold Damage with Dagger Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage_with_daggers", + [2] = "attack_minimum_added_cold_damage_with_daggers", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 17, + ["statOrder"] = 2113, + }, + ["attack_minimum_added_cold_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 10, + ["statOrder"] = 2113, + }, + }, + }, + [133] = { + ["dn"] = "Notable 37", + ["id"] = "abyss_murderous_notable_37", + ["sd"] = { + [1] = "(10-11) to 0 Added Cold Damage with Claw Attacks", + [2] = "0 to (17-20) Added Cold Damage with Claw Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage_with_claws", + [2] = "attack_minimum_added_cold_damage_with_claws", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 17, + ["statOrder"] = 2112, + }, + ["attack_minimum_added_cold_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 10, + ["statOrder"] = 2112, + }, + }, + }, + [134] = { + ["dn"] = "Notable 38", + ["id"] = "abyss_murderous_notable_38", + ["sd"] = { + [1] = "(10-11) to 0 Added Cold Damage with Sword Attacks", + [2] = "0 to (17-20) Added Cold Damage with Sword Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage_with_swords", + [2] = "attack_minimum_added_cold_damage_with_swords", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage_with_swords"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 17, + ["statOrder"] = 2116, + }, + ["attack_minimum_added_cold_damage_with_swords"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 10, + ["statOrder"] = 2116, + }, + }, + }, + [135] = { + ["dn"] = "Notable 39", + ["id"] = "abyss_murderous_notable_39", + ["sd"] = { + [1] = "(10-11) to 0 Added Cold Damage with Axe Attacks", + [2] = "0 to (17-20) Added Cold Damage with Axe Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage_with_axes", + [2] = "attack_minimum_added_cold_damage_with_axes", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage_with_axes"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 17, + ["statOrder"] = 2110, + }, + ["attack_minimum_added_cold_damage_with_axes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 10, + ["statOrder"] = 2110, + }, + }, + }, + [136] = { + ["dn"] = "Notable 40", + ["id"] = "abyss_murderous_notable_40", + ["sd"] = { + [1] = "(10-11) to 0 Added Cold Damage with Mace or Sceptre Attacks", + [2] = "0 to (17-20) Added Cold Damage with Mace or Sceptre Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage_with_maces", + [2] = "attack_minimum_added_cold_damage_with_maces", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage_with_maces"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 17, + ["statOrder"] = 2114, + }, + ["attack_minimum_added_cold_damage_with_maces"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 10, + ["statOrder"] = 2114, + }, + }, + }, + [137] = { + ["dn"] = "Notable 41", + ["id"] = "abyss_murderous_notable_41", + ["sd"] = { + [1] = "(10-11) to 0 Added Cold Damage with Staff Attacks", + [2] = "0 to (17-20) Added Cold Damage with Staff Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage_with_staves", + [2] = "attack_minimum_added_cold_damage_with_staves", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage_with_staves"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 17, + ["statOrder"] = 2115, + }, + ["attack_minimum_added_cold_damage_with_staves"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 10, + ["statOrder"] = 2115, + }, + }, + }, + [138] = { + ["dn"] = "Notable 42", + ["id"] = "abyss_murderous_notable_42", + ["sd"] = { + [1] = "(10-11) to 0 Added Chaos Damage with Dagger Attacks", + [2] = "0 to (17-20) Added Chaos Damage with Dagger Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_chaos_damage_with_daggers", + [2] = "attack_minimum_added_chaos_damage_with_daggers", + }, + ["stats"] = { + ["attack_maximum_added_chaos_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 17, + ["statOrder"] = 2128, + }, + ["attack_minimum_added_chaos_damage_with_daggers"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 10, + ["statOrder"] = 2128, + }, + }, + }, + [139] = { + ["dn"] = "Notable 43", + ["id"] = "abyss_murderous_notable_43", + ["sd"] = { + [1] = "(10-11) to 0 Added Chaos Damage with Claw Attacks", + [2] = "0 to (17-20) Added Chaos Damage with Claw Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_chaos_damage_with_claws", + [2] = "attack_minimum_added_chaos_damage_with_claws", + }, + ["stats"] = { + ["attack_maximum_added_chaos_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 17, + ["statOrder"] = 2127, + }, + ["attack_minimum_added_chaos_damage_with_claws"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 10, + ["statOrder"] = 2127, + }, + }, + }, + [140] = { + ["dn"] = "Notable 44", + ["id"] = "abyss_murderous_notable_44", + ["sd"] = { + [1] = "3% increased Cooldown Recovery Rate", + }, + ["sortedStats"] = { + [1] = "base_cooldown_speed_+%", + }, + ["stats"] = { + ["base_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 5058, + }, + }, + }, + [141] = { + ["dn"] = "Notable 45", + ["id"] = "abyss_murderous_notable_45", + ["sd"] = { + [1] = "Adds (6-7) to 0 Fire Damage to Attacks", + [2] = "Adds 0 to (13-16) Fire Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage", + [2] = "attack_minimum_added_fire_damage", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 16, + ["min"] = 13, + ["statOrder"] = 1384, + }, + ["attack_minimum_added_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 6, + ["statOrder"] = 1384, + }, + }, + }, + [142] = { + ["dn"] = "Notable 46", + ["id"] = "abyss_murderous_notable_46", + ["sd"] = { + [1] = "Adds (6-7) to 0 Cold Damage to Attacks", + [2] = "Adds 0 to (11-13) Cold Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage", + [2] = "attack_minimum_added_cold_damage", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 13, + ["min"] = 11, + ["statOrder"] = 1393, + }, + ["attack_minimum_added_cold_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 6, + ["statOrder"] = 1393, + }, + }, + }, + [143] = { + ["dn"] = "Notable 47", + ["id"] = "abyss_murderous_notable_47", + ["sd"] = { + [1] = "Adds (1-2) to 0 Lightning Damage to Attacks", + [2] = "Adds 0 to (25-27) Lightning Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage", + [2] = "attack_minimum_added_lightning_damage", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 27, + ["min"] = 25, + ["statOrder"] = 1404, + }, + ["attack_minimum_added_lightning_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 1, + ["statOrder"] = 1404, + }, + }, + }, + [144] = { + ["dn"] = "Notable 48", + ["id"] = "abyss_murderous_notable_48", + ["sd"] = { + [1] = "Adds (2-3) to 0 Physical Damage to Attacks", + [2] = "Adds 0 to (4-5) Physical Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage", + [2] = "attack_minimum_added_physical_damage", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 5, + ["min"] = 4, + ["statOrder"] = 1290, + }, + ["attack_minimum_added_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1290, + }, + }, + }, + [145] = { + ["dn"] = "Notable 49", + ["id"] = "abyss_murderous_notable_49", + ["sd"] = { + [1] = "Adds (8-9) to 0 Chaos Damage to Attacks", + [2] = "Adds 0 to (14-17) Chaos Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_chaos_damage", + [2] = "attack_minimum_added_chaos_damage", + }, + ["stats"] = { + ["attack_maximum_added_chaos_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 1411, + }, + ["attack_minimum_added_chaos_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 9, + ["min"] = 8, + ["statOrder"] = 1411, + }, + }, + }, + [146] = { + ["dn"] = "Notable 50", + ["id"] = "abyss_murderous_notable_50", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_dual_wielding", + }, + ["stats"] = { + ["damage_over_time_+%_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2158, + }, + }, + }, + [147] = { + ["dn"] = "Notable 51", + ["id"] = "abyss_murderous_notable_51", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["damage_over_time_+%_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2160, + }, + }, + }, + [148] = { + ["dn"] = "Notable 52", + ["id"] = "abyss_murderous_notable_52", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while holding a Shield", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_holding_a_shield", + }, + ["stats"] = { + ["damage_over_time_+%_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2159, + }, + }, + }, + [149] = { + ["dn"] = "Notable 1", + ["id"] = "abyss_searching_notable_1", + ["sd"] = { + [1] = "+(21-30) to maximum Life", + }, + ["sortedStats"] = { + [1] = "base_maximum_life", + }, + ["stats"] = { + ["base_maximum_life"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 21, + ["statOrder"] = 1591, + }, + }, + }, + [150] = { + ["dn"] = "Notable 2", + ["id"] = "abyss_searching_notable_2", + ["sd"] = { + [1] = "10% increased Effect of Cold Ailments", + }, + ["sortedStats"] = { + [1] = "cold_ailment_effect_+%", + }, + ["stats"] = { + ["cold_ailment_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 5880, + }, + }, + }, + [151] = { + ["dn"] = "Notable 3", + ["id"] = "abyss_searching_notable_3", + ["sd"] = { + [1] = "+(12-16) to Dexterity", + }, + ["sortedStats"] = { + [1] = "additional_dexterity", + }, + ["stats"] = { + ["additional_dexterity"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 12, + ["statOrder"] = 1201, + }, + }, + }, + [152] = { + ["dn"] = "Notable 4", + ["id"] = "abyss_searching_notable_4", + ["sd"] = { + [1] = "+(6-8) to all Attributes", + }, + ["sortedStats"] = { + [1] = "additional_all_attributes", + }, + ["stats"] = { + ["additional_all_attributes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1199, + }, + }, + }, + [153] = { + ["dn"] = "Notable 5", + ["id"] = "abyss_searching_notable_5", + ["sd"] = { + [1] = "+(12-15)% to Cold Resistance", + }, + ["sortedStats"] = { + [1] = "base_cold_damage_resistance_%", + }, + ["stats"] = { + ["base_cold_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 12, + ["statOrder"] = 1654, + }, + }, + }, + [154] = { + ["dn"] = "Notable 6", + ["id"] = "abyss_searching_notable_6", + ["sd"] = { + [1] = "+(6-8)% to all Elemental Resistances", + }, + ["sortedStats"] = { + [1] = "base_resist_all_elements_%", + }, + ["stats"] = { + ["base_resist_all_elements_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1642, + }, + }, + }, + [155] = { + ["dn"] = "Notable 7", + ["id"] = "abyss_searching_notable_7", + ["sd"] = { + [1] = "(3-5)% increased Attack Speed", + }, + ["sortedStats"] = { + [1] = "attack_speed_+%", + }, + ["stats"] = { + ["attack_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1434, + }, + }, + }, + [156] = { + ["dn"] = "Notable 8", + ["id"] = "abyss_searching_notable_8", + ["sd"] = { + [1] = "(8-12)% increased Critical Strike Chance", + }, + ["sortedStats"] = { + [1] = "critical_strike_chance_+%", + }, + ["stats"] = { + ["critical_strike_chance_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 8, + ["statOrder"] = 11063, + }, + }, + }, + [157] = { + ["dn"] = "Notable 9", + ["id"] = "abyss_searching_notable_9", + ["sd"] = { + [1] = "+(4-8)% to Critical Strike Multiplier", + }, + ["sortedStats"] = { + [1] = "base_critical_strike_multiplier_+", + }, + ["stats"] = { + ["base_critical_strike_multiplier_+"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 4, + ["statOrder"] = 11064, + }, + }, + }, + [158] = { + ["dn"] = "Notable 10", + ["id"] = "abyss_searching_notable_10", + ["sd"] = { + [1] = "(10-18)% increased Damage over Time while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_dual_wielding", + }, + ["stats"] = { + ["damage_over_time_+%_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 10, + ["statOrder"] = 2158, + }, + }, + }, + [159] = { + ["dn"] = "Notable 11", + ["id"] = "abyss_searching_notable_11", + ["sd"] = { + [1] = "(10-18)% increased Damage over Time while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["damage_over_time_+%_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 10, + ["statOrder"] = 2160, + }, + }, + }, + [160] = { + ["dn"] = "Notable 12", + ["id"] = "abyss_searching_notable_12", + ["sd"] = { + [1] = "(10-18)% increased Damage over Time while holding a Shield", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_holding_a_shield", + }, + ["stats"] = { + ["damage_over_time_+%_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 10, + ["statOrder"] = 2159, + }, + }, + }, + [161] = { + ["dn"] = "Notable 13", + ["id"] = "abyss_searching_notable_13", + ["sd"] = { + [1] = "(3-6)% chance to Blind Enemies on Hit with Attacks", + }, + ["sortedStats"] = { + [1] = "attacks_chance_to_blind_on_hit_%", + }, + ["stats"] = { + ["attacks_chance_to_blind_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 4965, + }, + }, + }, + [162] = { + ["dn"] = "Notable 14", + ["id"] = "abyss_searching_notable_14", + ["sd"] = { + [1] = "(31-40)% chance to Avoid being Frozen", + }, + ["sortedStats"] = { + [1] = "base_avoid_freeze_%", + }, + ["stats"] = { + ["base_avoid_freeze_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 1868, + }, + }, + }, + [163] = { + ["dn"] = "Notable 15", + ["id"] = "abyss_searching_notable_15", + ["sd"] = { + [1] = "(31-40)% chance to Avoid Bleeding", + }, + ["sortedStats"] = { + [1] = "base_avoid_bleed_%", + }, + ["stats"] = { + ["base_avoid_bleed_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 4252, + }, + }, + }, + [164] = { + ["dn"] = "Notable 16", + ["id"] = "abyss_searching_notable_16", + ["sd"] = { + [1] = "+(31-120) to Accuracy Rating", + }, + ["sortedStats"] = { + [1] = "accuracy_rating", + }, + ["stats"] = { + ["accuracy_rating"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 120, + ["min"] = 31, + ["statOrder"] = 1457, + }, + }, + }, + [165] = { + ["dn"] = "Notable 17", + ["id"] = "abyss_searching_notable_17", + ["sd"] = { + [1] = "+(36-100) to Evasion Rating", + }, + ["sortedStats"] = { + [1] = "base_evasion_rating", + }, + ["stats"] = { + ["base_evasion_rating"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 100, + ["min"] = 36, + ["statOrder"] = 1566, + }, + }, + }, + [166] = { + ["dn"] = "Notable 18", + ["id"] = "abyss_searching_notable_18", + ["sd"] = { + [1] = "2% increased Cooldown Recovery Rate", + }, + ["sortedStats"] = { + [1] = "base_cooldown_speed_+%", + }, + ["stats"] = { + ["base_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 5058, + }, + }, + }, + [167] = { + ["dn"] = "Notable 19", + ["id"] = "abyss_searching_notable_19", + ["sd"] = { + [1] = "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", + }, + ["sortedStats"] = { + [1] = "additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently", + }, + ["stats"] = { + ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4617, + }, + }, + }, + [168] = { + ["dn"] = "Notable 20", + ["id"] = "abyss_searching_notable_20", + ["sd"] = { + [1] = "3% increased Movement Speed if you haven't taken Damage Recently", + }, + ["sortedStats"] = { + [1] = "movement_speed_+%_if_have_not_taken_damage_recently", + }, + ["stats"] = { + ["movement_speed_+%_if_have_not_taken_damage_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 9555, + }, + }, + }, + [169] = { + ["dn"] = "Notable 21", + ["id"] = "abyss_searching_notable_21", + ["sd"] = { + [1] = "+(8-10)% to Critical Strike Multiplier if you've Killed Recently", + }, + ["sortedStats"] = { + [1] = "critical_strike_multiplier_+_if_enemy_killed_recently", + }, + ["stats"] = { + ["critical_strike_multiplier_+_if_enemy_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 6040, + }, + }, + }, + [170] = { + ["dn"] = "Notable 22", + ["id"] = "abyss_searching_notable_22", + ["sd"] = { + [1] = "(20-30)% increased Evasion Rating while moving", + }, + ["sortedStats"] = { + [1] = "evasion_rating_+%_while_moving", + }, + ["stats"] = { + ["evasion_rating_+%_while_moving"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 6586, + }, + }, + }, + [171] = { + ["dn"] = "Notable 23", + ["id"] = "abyss_searching_notable_23", + ["sd"] = { + [1] = "(4-6)% increased Attack Speed if you've dealt a Critical Strike Recently", + }, + ["sortedStats"] = { + [1] = "attack_speed_+%_if_have_crit_recently", + }, + ["stats"] = { + ["attack_speed_+%_if_have_crit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 4947, + }, + }, + }, + [172] = { + ["dn"] = "Notable 24", + ["id"] = "abyss_searching_notable_24", + ["sd"] = { + [1] = "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + }, + ["sortedStats"] = { + [1] = "critical_strike_chance_+%_if_have_not_crit_recently", + }, + ["stats"] = { + ["critical_strike_chance_+%_if_have_not_crit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 6010, + }, + }, + }, + [173] = { + ["dn"] = "Notable 25", + ["id"] = "abyss_searching_notable_25", + ["sd"] = { + [1] = "5% chance to gain Phasing for 4 seconds on Kill", + }, + ["sortedStats"] = { + [1] = "phasing_for_4_seconds_on_kill_%", + }, + ["stats"] = { + ["phasing_for_4_seconds_on_kill_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 3501, + }, + }, + }, + [174] = { + ["dn"] = "Notable 26", + ["id"] = "abyss_searching_notable_26", + ["sd"] = { + [1] = "Enemies Blinded by you have (15-20)% reduced Critical Strike Chance", + }, + ["sortedStats"] = { + [1] = "enemies_you_blind_have_critical_strike_chance_+%", + }, + ["stats"] = { + ["enemies_you_blind_have_critical_strike_chance_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 6492, + }, + }, + }, + [175] = { + ["dn"] = "Notable 27", + ["id"] = "abyss_searching_notable_27", + ["sd"] = { + [1] = "Adds (6-7) to 0 Fire Damage to Attacks", + [2] = "Adds 0 to (13-16) Fire Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage", + [2] = "attack_minimum_added_fire_damage", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 16, + ["min"] = 13, + ["statOrder"] = 1384, + }, + ["attack_minimum_added_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 6, + ["statOrder"] = 1384, + }, + }, + }, + [176] = { + ["dn"] = "Notable 28", + ["id"] = "abyss_searching_notable_28", + ["sd"] = { + [1] = "Adds (6-7) to 0 Cold Damage to Attacks", + [2] = "Adds 0 to (11-13) Cold Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage", + [2] = "attack_minimum_added_cold_damage", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 13, + ["min"] = 11, + ["statOrder"] = 1393, + }, + ["attack_minimum_added_cold_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 6, + ["statOrder"] = 1393, + }, + }, + }, + [177] = { + ["dn"] = "Notable 29", + ["id"] = "abyss_searching_notable_29", + ["sd"] = { + [1] = "Adds (1-2) to 0 Lightning Damage to Attacks", + [2] = "Adds 0 to (25-27) Lightning Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage", + [2] = "attack_minimum_added_lightning_damage", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 27, + ["min"] = 25, + ["statOrder"] = 1404, + }, + ["attack_minimum_added_lightning_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 1, + ["statOrder"] = 1404, + }, + }, + }, + [178] = { + ["dn"] = "Notable 30", + ["id"] = "abyss_searching_notable_30", + ["sd"] = { + [1] = "Adds (2-3) to 0 Physical Damage to Attacks", + [2] = "Adds 0 to (4-5) Physical Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage", + [2] = "attack_minimum_added_physical_damage", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 5, + ["min"] = 4, + ["statOrder"] = 1290, + }, + ["attack_minimum_added_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1290, + }, + }, + }, + [179] = { + ["dn"] = "Notable 31", + ["id"] = "abyss_searching_notable_31", + ["sd"] = { + [1] = "Adds (8-9) to 0 Chaos Damage to Attacks", + [2] = "Adds 0 to (14-17) Chaos Damage to Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_chaos_damage", + [2] = "attack_minimum_added_chaos_damage", + }, + ["stats"] = { + ["attack_maximum_added_chaos_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 1411, + }, + ["attack_minimum_added_chaos_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 9, + ["min"] = 8, + ["statOrder"] = 1411, + }, + }, + }, + [180] = { + ["dn"] = "Notable 32", + ["id"] = "abyss_searching_notable_32", + ["sd"] = { + [1] = "4 to 0 Added Physical Damage with Wand Attacks", + [2] = "0 to (5-6) Added Physical Damage with Wand Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage_with_wands", + [2] = "attack_minimum_added_physical_damage_with_wands", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage_with_wands"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 6, + ["min"] = 5, + ["statOrder"] = 2099, + }, + ["attack_minimum_added_physical_damage_with_wands"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 2099, + }, + }, + }, + [181] = { + ["dn"] = "Notable 33", + ["id"] = "abyss_searching_notable_33", + ["sd"] = { + [1] = "4 to 0 Added Physical Damage with Bow Attacks", + [2] = "0 to (5-6) Added Physical Damage with Bow Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_physical_damage_with_bow", + [2] = "attack_minimum_added_physical_damage_with_bow", + }, + ["stats"] = { + ["attack_maximum_added_physical_damage_with_bow"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 6, + ["min"] = 5, + ["statOrder"] = 2093, + }, + ["attack_minimum_added_physical_damage_with_bow"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 2093, + }, + }, + }, + [182] = { + ["dn"] = "Notable 34", + ["id"] = "abyss_searching_notable_34", + ["sd"] = { + [1] = "(1-3) to 0 Added Lightning Damage with Wand Attacks", + [2] = "0 to (28-30) Added Lightning Damage with Wand Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage_with_wand", + [2] = "attack_minimum_added_lightning_damage_with_wand", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage_with_wand"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 28, + ["statOrder"] = 2125, + }, + ["attack_minimum_added_lightning_damage_with_wand"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 1, + ["statOrder"] = 2125, + }, + }, + }, + [183] = { + ["dn"] = "Notable 35", + ["id"] = "abyss_searching_notable_35", + ["sd"] = { + [1] = "(1-3) to 0 Added Lightning Damage with Bow Attacks", + [2] = "0 to (28-30) Added Lightning Damage with Bow Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_lightning_damage_with_bows", + [2] = "attack_minimum_added_lightning_damage_with_bows", + }, + ["stats"] = { + ["attack_maximum_added_lightning_damage_with_bows"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 28, + ["statOrder"] = 2119, + }, + ["attack_minimum_added_lightning_damage_with_bows"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 1, + ["statOrder"] = 2119, + }, + }, + }, + [184] = { + ["dn"] = "Notable 36", + ["id"] = "abyss_searching_notable_36", + ["sd"] = { + [1] = "(9-11) to 0 Added Fire Damage with Wand Attacks", + [2] = "0 to (16-19) Added Fire Damage with Wand Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage_with_wand", + [2] = "attack_minimum_added_fire_damage_with_wand", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage_with_wand"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 19, + ["min"] = 16, + ["statOrder"] = 2109, + }, + ["attack_minimum_added_fire_damage_with_wand"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 9, + ["statOrder"] = 2109, + }, + }, + }, + [185] = { + ["dn"] = "Notable 37", + ["id"] = "abyss_searching_notable_37", + ["sd"] = { + [1] = "(9-11) to 0 Added Fire Damage with Bow Attacks", + [2] = "0 to (16-19) Added Fire Damage with Bow Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_fire_damage_with_bow", + [2] = "attack_minimum_added_fire_damage_with_bow", + }, + ["stats"] = { + ["attack_maximum_added_fire_damage_with_bow"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 19, + ["min"] = 16, + ["statOrder"] = 2103, + }, + ["attack_minimum_added_fire_damage_with_bow"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 9, + ["statOrder"] = 2103, + }, + }, + }, + [186] = { + ["dn"] = "Notable 38", + ["id"] = "abyss_searching_notable_38", + ["sd"] = { + [1] = "(8-9) to 0 Added Cold Damage with Wand Attacks", + [2] = "0 to (14-16) Added Cold Damage with Wand Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage_with_wand", + [2] = "attack_minimum_added_cold_damage_with_wand", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage_with_wand"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 16, + ["min"] = 14, + ["statOrder"] = 2117, + }, + ["attack_minimum_added_cold_damage_with_wand"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 9, + ["min"] = 8, + ["statOrder"] = 2117, + }, + }, + }, + [187] = { + ["dn"] = "Notable 39", + ["id"] = "abyss_searching_notable_39", + ["sd"] = { + [1] = "(8-9) to 0 Added Cold Damage with Bow Attacks", + [2] = "0 to (14-16) Added Cold Damage with Bow Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_cold_damage_with_bows", + [2] = "attack_minimum_added_cold_damage_with_bows", + }, + ["stats"] = { + ["attack_maximum_added_cold_damage_with_bows"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 16, + ["min"] = 14, + ["statOrder"] = 2111, + }, + ["attack_minimum_added_cold_damage_with_bows"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 9, + ["min"] = 8, + ["statOrder"] = 2111, + }, + }, + }, + [188] = { + ["dn"] = "Notable 40", + ["id"] = "abyss_searching_notable_40", + ["sd"] = { + [1] = "(8-9) to 0 Added Chaos Damage with Bow Attacks", + [2] = "0 to (14-16) Added Chaos Damage with Bow Attacks", + }, + ["sortedStats"] = { + [1] = "attack_maximum_added_chaos_damage_with_bows", + [2] = "attack_minimum_added_chaos_damage_with_bows", + }, + ["stats"] = { + ["attack_maximum_added_chaos_damage_with_bows"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 16, + ["min"] = 14, + ["statOrder"] = 2126, + }, + ["attack_minimum_added_chaos_damage_with_bows"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 9, + ["min"] = 8, + ["statOrder"] = 2126, + }, + }, + }, + [189] = { + ["dn"] = "Notable 41", + ["id"] = "abyss_searching_notable_41", + ["sd"] = { + [1] = "3% increased Cooldown Recovery Rate", + }, + ["sortedStats"] = { + [1] = "base_cooldown_speed_+%", + }, + ["stats"] = { + ["base_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 5058, + }, + }, + }, + [190] = { + ["dn"] = "Notable 42", + ["id"] = "abyss_searching_notable_42", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_dual_wielding", + }, + ["stats"] = { + ["damage_over_time_+%_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2158, + }, + }, + }, + [191] = { + ["dn"] = "Notable 43", + ["id"] = "abyss_searching_notable_43", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["damage_over_time_+%_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2160, + }, + }, + }, + [192] = { + ["dn"] = "Notable 44", + ["id"] = "abyss_searching_notable_44", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while holding a Shield", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_holding_a_shield", + }, + ["stats"] = { + ["damage_over_time_+%_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2159, + }, + }, + }, + [193] = { + ["dn"] = "Notable 1", + ["id"] = "abyss_hypnotic_notable_1", + ["sd"] = { + [1] = "+(21-30) to maximum Mana", + }, + ["sortedStats"] = { + [1] = "base_maximum_mana", + }, + ["stats"] = { + ["base_maximum_mana"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 21, + ["statOrder"] = 1602, + }, + }, + }, + [194] = { + ["dn"] = "Notable 2", + ["id"] = "abyss_hypnotic_notable_2", + ["sd"] = { + [1] = "(10-15)% increased Effect of Lightning Ailments", + }, + ["sortedStats"] = { + [1] = "lightning_ailment_effect_+%", + }, + ["stats"] = { + ["lightning_ailment_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 10, + ["statOrder"] = 7535, + }, + }, + }, + [195] = { + ["dn"] = "Notable 3", + ["id"] = "abyss_hypnotic_notable_3", + ["sd"] = { + [1] = "+(12-16) to Intelligence", + }, + ["sortedStats"] = { + [1] = "additional_intelligence", + }, + ["stats"] = { + ["additional_intelligence"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 12, + ["statOrder"] = 1202, + }, + }, + }, + [196] = { + ["dn"] = "Notable 4", + ["id"] = "abyss_hypnotic_notable_4", + ["sd"] = { + [1] = "+(6-8) to all Attributes", + }, + ["sortedStats"] = { + [1] = "additional_all_attributes", + }, + ["stats"] = { + ["additional_all_attributes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1199, + }, + }, + }, + [197] = { + ["dn"] = "Notable 5", + ["id"] = "abyss_hypnotic_notable_5", + ["sd"] = { + [1] = "+(12-15)% to Lightning Resistance", + }, + ["sortedStats"] = { + [1] = "base_lightning_damage_resistance_%", + }, + ["stats"] = { + ["base_lightning_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 12, + ["statOrder"] = 1659, + }, + }, + }, + [198] = { + ["dn"] = "Notable 6", + ["id"] = "abyss_hypnotic_notable_6", + ["sd"] = { + [1] = "+(6-8)% to all Elemental Resistances", + }, + ["sortedStats"] = { + [1] = "base_resist_all_elements_%", + }, + ["stats"] = { + ["base_resist_all_elements_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1642, + }, + }, + }, + [199] = { + ["dn"] = "Notable 7", + ["id"] = "abyss_hypnotic_notable_7", + ["sd"] = { + [1] = "(2-4)% increased Cast Speed", + }, + ["sortedStats"] = { + [1] = "base_cast_speed_+%", + }, + ["stats"] = { + ["base_cast_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 1470, + }, + }, + }, + [200] = { + ["dn"] = "Notable 8", + ["id"] = "abyss_hypnotic_notable_8", + ["sd"] = { + [1] = "Regenerate (1.1-3) Mana per second", + }, + ["sortedStats"] = { + [1] = "base_mana_regeneration_rate_per_minute", + }, + ["stats"] = { + ["base_mana_regeneration_rate_per_minute"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 3, + ["min"] = 1.1, + ["statOrder"] = 1605, + }, + }, + }, + [201] = { + ["dn"] = "Notable 9", + ["id"] = "abyss_hypnotic_notable_9", + ["sd"] = { + [1] = "(3-8)% chance to Hinder Enemies on Hit with Spells", + }, + ["sortedStats"] = { + [1] = "spells_chance_to_hinder_on_hit_%", + }, + ["stats"] = { + ["spells_chance_to_hinder_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 3, + ["statOrder"] = 10336, + }, + }, + }, + [202] = { + ["dn"] = "Notable 10", + ["id"] = "abyss_hypnotic_notable_10", + ["sd"] = { + [1] = "(31-40)% chance to Avoid being Shocked", + }, + ["sortedStats"] = { + [1] = "base_avoid_shock_%", + }, + ["stats"] = { + ["base_avoid_shock_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 1871, + }, + }, + }, + [203] = { + ["dn"] = "Notable 11", + ["id"] = "abyss_hypnotic_notable_11", + ["sd"] = { + [1] = "2% of Damage taken Recouped as Mana", + }, + ["sortedStats"] = { + [1] = "damage_taken_goes_to_mana_%", + }, + ["stats"] = { + ["damage_taken_goes_to_mana_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 2480, + }, + }, + }, + [204] = { + ["dn"] = "Notable 12", + ["id"] = "abyss_hypnotic_notable_12", + ["sd"] = { + [1] = "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", + }, + ["sortedStats"] = { + [1] = "chance_to_block_spells_%_if_damaged_by_a_hit_recently", + }, + ["stats"] = { + ["chance_to_block_spells_%_if_damaged_by_a_hit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 5729, + }, + }, + }, + [205] = { + ["dn"] = "Notable 13", + ["id"] = "abyss_hypnotic_notable_13", + ["sd"] = { + [1] = "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently", + }, + ["sortedStats"] = { + [1] = "damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently", + }, + ["stats"] = { + ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 6118, + }, + }, + }, + [206] = { + ["dn"] = "Notable 14", + ["id"] = "abyss_hypnotic_notable_14", + ["sd"] = { + [1] = "(20-25)% increased Mana Regeneration Rate while moving", + }, + ["sortedStats"] = { + [1] = "mana_regeneration_rate_+%_while_moving", + }, + ["stats"] = { + ["mana_regeneration_rate_+%_while_moving"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 25, + ["min"] = 20, + ["statOrder"] = 8325, + }, + }, + }, + [207] = { + ["dn"] = "Notable 15", + ["id"] = "abyss_hypnotic_notable_15", + ["sd"] = { + [1] = "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", + }, + ["sortedStats"] = { + [1] = "cast_speed_+%_if_have_crit_recently", + }, + ["stats"] = { + ["cast_speed_+%_if_have_crit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 5, + ["statOrder"] = 5543, + }, + }, + }, + [208] = { + ["dn"] = "Notable 16", + ["id"] = "abyss_hypnotic_notable_16", + ["sd"] = { + [1] = "(10-15)% reduced Effect of Curses on you while on Consecrated Ground", + }, + ["sortedStats"] = { + [1] = "curse_effect_on_self_+%_while_on_consecrated_ground", + }, + ["stats"] = { + ["curse_effect_on_self_+%_while_on_consecrated_ground"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 10, + ["statOrder"] = 6079, + }, + }, + }, + [209] = { + ["dn"] = "Notable 17", + ["id"] = "abyss_hypnotic_notable_17", + ["sd"] = { + [1] = "Enemies Hindered by you have (15-20)% reduced Life Regeneration rate", + }, + ["sortedStats"] = { + [1] = "enemies_you_hinder_have_life_regeneration_rate_+%", + }, + ["stats"] = { + ["enemies_you_hinder_have_life_regeneration_rate_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 6498, + }, + }, + }, + [210] = { + ["dn"] = "Notable 18", + ["id"] = "abyss_hypnotic_notable_18", + ["sd"] = { + [1] = "Enemies Withered by you have -2% to all Resistances", + }, + ["sortedStats"] = { + [1] = "enemies_you_wither_have_all_resistances_%", + }, + ["stats"] = { + ["enemies_you_wither_have_all_resistances_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = -2, + ["min"] = -2, + ["statOrder"] = 6504, + }, + }, + }, + [211] = { + ["dn"] = "Notable 19", + ["id"] = "abyss_hypnotic_notable_19", + ["sd"] = { + [1] = "(13-16) to 0 Added Spell Fire Damage while Dual Wielding", + [2] = "0 to (18-21) Added Spell Fire Damage while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_fire_damage_while_dual_wielding", + [2] = "spell_minimum_added_fire_damage_while_dual_wielding", + }, + ["stats"] = { + ["spell_maximum_added_fire_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 21, + ["min"] = 18, + ["statOrder"] = 2135, + }, + ["spell_minimum_added_fire_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 13, + ["statOrder"] = 2135, + }, + }, + }, + [212] = { + ["dn"] = "Notable 20", + ["id"] = "abyss_hypnotic_notable_20", + ["sd"] = { + [1] = "(12-14) to 0 Added Spell Cold Damage while Dual Wielding", + [2] = "0 to (17-19) Added Spell Cold Damage while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_cold_damage_while_dual_wielding", + [2] = "spell_minimum_added_cold_damage_while_dual_wielding", + }, + ["stats"] = { + ["spell_maximum_added_cold_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 19, + ["min"] = 17, + ["statOrder"] = 2132, + }, + ["spell_minimum_added_cold_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 12, + ["statOrder"] = 2132, + }, + }, + }, + [213] = { + ["dn"] = "Notable 21", + ["id"] = "abyss_hypnotic_notable_21", + ["sd"] = { + [1] = "(1-4) to 0 Added Spell Lightning Damage while Dual Wielding", + [2] = "0 to (29-34) Added Spell Lightning Damage while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_lightning_damage_while_dual_wielding", + [2] = "spell_minimum_added_lightning_damage_while_dual_wielding", + }, + ["stats"] = { + ["spell_maximum_added_lightning_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 34, + ["min"] = 29, + ["statOrder"] = 2138, + }, + ["spell_minimum_added_lightning_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2138, + }, + }, + }, + [214] = { + ["dn"] = "Notable 22", + ["id"] = "abyss_hypnotic_notable_22", + ["sd"] = { + [1] = "(9-12) to 0 Added Spell Physical Damage while Dual Wielding", + [2] = "0 to (14-17) Added Spell Physical Damage while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_physical_damage_while_dual_wielding", + [2] = "spell_minimum_added_physical_damage_while_dual_wielding", + }, + ["stats"] = { + ["spell_maximum_added_physical_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 2141, + }, + ["spell_minimum_added_physical_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 2141, + }, + }, + }, + [215] = { + ["dn"] = "Notable 23", + ["id"] = "abyss_hypnotic_notable_23", + ["sd"] = { + [1] = "(9-12) to 0 Added Spell Chaos Damage while Dual Wielding", + [2] = "0 to (14-17) Added Spell Chaos Damage while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_chaos_damage_while_dual_wielding", + [2] = "spell_minimum_added_chaos_damage_while_dual_wielding", + }, + ["stats"] = { + ["spell_maximum_added_chaos_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 2129, + }, + ["spell_minimum_added_chaos_damage_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 2129, + }, + }, + }, + [216] = { + ["dn"] = "Notable 24", + ["id"] = "abyss_hypnotic_notable_24", + ["sd"] = { + [1] = "(13-16) to 0 Added Spell Fire Damage while wielding a Two Handed Weapon", + [2] = "0 to (18-21) Added Spell Fire Damage while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_fire_damage_while_wielding_two_handed_weapon", + [2] = "spell_minimum_added_fire_damage_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 21, + ["min"] = 18, + ["statOrder"] = 2137, + }, + ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 13, + ["statOrder"] = 2137, + }, + }, + }, + [217] = { + ["dn"] = "Notable 25", + ["id"] = "abyss_hypnotic_notable_25", + ["sd"] = { + [1] = "(12-14) to 0 Added Spell Cold Damage while wielding a Two Handed Weapon", + [2] = "0 to (17-19) Added Spell Cold Damage while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_cold_damage_while_wielding_two_handed_weapon", + [2] = "spell_minimum_added_cold_damage_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 19, + ["min"] = 17, + ["statOrder"] = 2134, + }, + ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 12, + ["statOrder"] = 2134, + }, + }, + }, + [218] = { + ["dn"] = "Notable 26", + ["id"] = "abyss_hypnotic_notable_26", + ["sd"] = { + [1] = "(1-4) to 0 Added Spell Lightning Damage while wielding a Two Handed Weapon", + [2] = "0 to (29-34) Added Spell Lightning Damage while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon", + [2] = "spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 34, + ["min"] = 29, + ["statOrder"] = 2140, + }, + ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2140, + }, + }, + }, + [219] = { + ["dn"] = "Notable 27", + ["id"] = "abyss_hypnotic_notable_27", + ["sd"] = { + [1] = "(9-12) to 0 Added Spell Physical Damage while wielding a Two Handed Weapon", + [2] = "0 to (14-17) Added Spell Physical Damage while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_physical_damage_while_wielding_two_handed_weapon", + [2] = "spell_minimum_added_physical_damage_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 2143, + }, + ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 2143, + }, + }, + }, + [220] = { + ["dn"] = "Notable 28", + ["id"] = "abyss_hypnotic_notable_28", + ["sd"] = { + [1] = "(9-12) to 0 Added Spell Chaos Damage while wielding a Two Handed Weapon", + [2] = "0 to (14-17) Added Spell Chaos Damage while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon", + [2] = "spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 2131, + }, + ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 2131, + }, + }, + }, + [221] = { + ["dn"] = "Notable 29", + ["id"] = "abyss_hypnotic_notable_29", + ["sd"] = { + [1] = "(13-16) to 0 Added Spell Fire Damage while holding a Shield", + [2] = "0 to (18-21) Added Spell Fire Damage while holding a Shield", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_fire_damage_while_holding_a_shield", + [2] = "spell_minimum_added_fire_damage_while_holding_a_shield", + }, + ["stats"] = { + ["spell_maximum_added_fire_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 21, + ["min"] = 18, + ["statOrder"] = 2136, + }, + ["spell_minimum_added_fire_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 13, + ["statOrder"] = 2136, + }, + }, + }, + [222] = { + ["dn"] = "Notable 30", + ["id"] = "abyss_hypnotic_notable_30", + ["sd"] = { + [1] = "(12-14) to 0 Added Spell Cold Damage while holding a Shield", + [2] = "0 to (17-19) Added Spell Cold Damage while holding a Shield", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_cold_damage_while_holding_a_shield", + [2] = "spell_minimum_added_cold_damage_while_holding_a_shield", + }, + ["stats"] = { + ["spell_maximum_added_cold_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 19, + ["min"] = 17, + ["statOrder"] = 2133, + }, + ["spell_minimum_added_cold_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 12, + ["statOrder"] = 2133, + }, + }, + }, + [223] = { + ["dn"] = "Notable 31", + ["id"] = "abyss_hypnotic_notable_31", + ["sd"] = { + [1] = "(1-4) to 0 Added Spell Lightning Damage while holding a Shield", + [2] = "0 to (29-34) Added Spell Lightning Damage while holding a Shield", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_lightning_damage_while_holding_a_shield", + [2] = "spell_minimum_added_lightning_damage_while_holding_a_shield", + }, + ["stats"] = { + ["spell_maximum_added_lightning_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 34, + ["min"] = 29, + ["statOrder"] = 2139, + }, + ["spell_minimum_added_lightning_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 1, + ["statOrder"] = 2139, + }, + }, + }, + [224] = { + ["dn"] = "Notable 32", + ["id"] = "abyss_hypnotic_notable_32", + ["sd"] = { + [1] = "(9-12) to 0 Added Spell Physical Damage while holding a Shield", + [2] = "0 to (14-17) Added Spell Physical Damage while holding a Shield", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_physical_damage_while_holding_a_shield", + [2] = "spell_minimum_added_physical_damage_while_holding_a_shield", + }, + ["stats"] = { + ["spell_maximum_added_physical_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 2142, + }, + ["spell_minimum_added_physical_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 2142, + }, + }, + }, + [225] = { + ["dn"] = "Notable 33", + ["id"] = "abyss_hypnotic_notable_33", + ["sd"] = { + [1] = "(9-12) to 0 Added Spell Chaos Damage while holding a Shield", + [2] = "0 to (14-17) Added Spell Chaos Damage while holding a Shield", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_chaos_damage_while_holding_a_shield", + [2] = "spell_minimum_added_chaos_damage_while_holding_a_shield", + }, + ["stats"] = { + ["spell_maximum_added_chaos_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 2130, + }, + ["spell_minimum_added_chaos_damage_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 2130, + }, + }, + }, + [226] = { + ["dn"] = "Notable 34", + ["id"] = "abyss_hypnotic_notable_34", + ["sd"] = { + [1] = "Adds (9-12) to 0 Fire Damage to Spells", + [2] = "Adds 0 to (14-17) Fire Damage to Spells", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_fire_damage", + [2] = "spell_minimum_added_fire_damage", + }, + ["stats"] = { + ["spell_maximum_added_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 17, + ["min"] = 14, + ["statOrder"] = 1428, + }, + ["spell_minimum_added_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1428, + }, + }, + }, + [227] = { + ["dn"] = "Notable 35", + ["id"] = "abyss_hypnotic_notable_35", + ["sd"] = { + [1] = "Adds (8-11) to 0 Cold Damage to Spells", + [2] = "Adds 0 to (13-16) Cold Damage to Spells", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_cold_damage", + [2] = "spell_minimum_added_cold_damage", + }, + ["stats"] = { + ["spell_maximum_added_cold_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 16, + ["min"] = 13, + ["statOrder"] = 1429, + }, + ["spell_minimum_added_cold_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 8, + ["statOrder"] = 1429, + }, + }, + }, + [228] = { + ["dn"] = "Notable 36", + ["id"] = "abyss_hypnotic_notable_36", + ["sd"] = { + [1] = "Adds (1-3) to 0 Lightning Damage to Spells", + [2] = "Adds 0 to (22-27) Lightning Damage to Spells", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_lightning_damage", + [2] = "spell_minimum_added_lightning_damage", + }, + ["stats"] = { + ["spell_maximum_added_lightning_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 27, + ["min"] = 22, + ["statOrder"] = 1430, + }, + ["spell_minimum_added_lightning_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 1, + ["statOrder"] = 1430, + }, + }, + }, + [229] = { + ["dn"] = "Notable 37", + ["id"] = "abyss_hypnotic_notable_37", + ["sd"] = { + [1] = "Adds (4-7) to 0 Physical Damage to Spells", + [2] = "Adds 0 to (10-13) Physical Damage to Spells", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_physical_damage", + [2] = "spell_minimum_added_physical_damage", + }, + ["stats"] = { + ["spell_maximum_added_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 13, + ["min"] = 10, + ["statOrder"] = 1427, + }, + ["spell_minimum_added_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 4, + ["statOrder"] = 1427, + }, + }, + }, + [230] = { + ["dn"] = "Notable 38", + ["id"] = "abyss_hypnotic_notable_38", + ["sd"] = { + [1] = "Adds (4-7) to 0 Chaos Damage to Spells", + [2] = "Adds 0 to (10-13) Chaos Damage to Spells", + }, + ["sortedStats"] = { + [1] = "spell_maximum_added_chaos_damage", + [2] = "spell_minimum_added_chaos_damage", + }, + ["stats"] = { + ["spell_maximum_added_chaos_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 13, + ["min"] = 10, + ["statOrder"] = 1431, + }, + ["spell_minimum_added_chaos_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 4, + ["statOrder"] = 1431, + }, + }, + }, + [231] = { + ["dn"] = "Notable 39", + ["id"] = "abyss_hypnotic_notable_39", + ["sd"] = { + [1] = "3% increased Cooldown Recovery Rate", + }, + ["sortedStats"] = { + [1] = "base_cooldown_speed_+%", + }, + ["stats"] = { + ["base_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 5058, + }, + }, + }, + [232] = { + ["dn"] = "Notable 40", + ["id"] = "abyss_hypnotic_notable_40", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_dual_wielding", + }, + ["stats"] = { + ["damage_over_time_+%_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2158, + }, + }, + }, + [233] = { + ["dn"] = "Notable 41", + ["id"] = "abyss_hypnotic_notable_41", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["damage_over_time_+%_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2160, + }, + }, + }, + [234] = { + ["dn"] = "Notable 42", + ["id"] = "abyss_hypnotic_notable_42", + ["sd"] = { + [1] = "(8-10)% increased Damage over Time while holding a Shield", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_holding_a_shield", + }, + ["stats"] = { + ["damage_over_time_+%_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 2159, + }, + }, + }, + [235] = { + ["dn"] = "Notable 1", + ["id"] = "abyss_ghastly_notable_1", + ["sd"] = { + [1] = "+(12-16) to Intelligence", + }, + ["sortedStats"] = { + [1] = "additional_intelligence", + }, + ["stats"] = { + ["additional_intelligence"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 12, + ["statOrder"] = 1202, + }, + }, + }, + [236] = { + ["dn"] = "Notable 2", + ["id"] = "abyss_ghastly_notable_2", + ["sd"] = { + [1] = "+(6-8) to all Attributes", + }, + ["sortedStats"] = { + [1] = "additional_all_attributes", + }, + ["stats"] = { + ["additional_all_attributes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1199, + }, + }, + }, + [237] = { + ["dn"] = "Notable 3", + ["id"] = "abyss_ghastly_notable_3", + ["sd"] = { + [1] = "+(5-7)% to Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "base_chaos_damage_resistance_%", + }, + ["stats"] = { + ["base_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 5, + ["statOrder"] = 1664, + }, + }, + }, + [238] = { + ["dn"] = "Notable 4", + ["id"] = "abyss_ghastly_notable_4", + ["sd"] = { + [1] = "Minions Regenerate (22-40) Life per second", + }, + ["sortedStats"] = { + [1] = "minion_life_regeneration_rate_per_second", + }, + ["stats"] = { + ["minion_life_regeneration_rate_per_second"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 22, + ["statOrder"] = 9447, + }, + }, + }, + [239] = { + ["dn"] = "Notable 5", + ["id"] = "abyss_ghastly_notable_5", + ["sd"] = { + [1] = "Regenerate (9-16) Energy Shield per second", + }, + ["sortedStats"] = { + [1] = "energy_shield_regeneration_rate_per_second", + }, + ["stats"] = { + ["energy_shield_regeneration_rate_per_second"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 9, + ["statOrder"] = 6549, + }, + }, + }, + [240] = { + ["dn"] = "Notable 6", + ["id"] = "abyss_ghastly_notable_6", + ["sd"] = { + [1] = "Minions have (3-5)% chance to Blind on Hit with Attacks", + }, + ["sortedStats"] = { + [1] = "minion_attacks_chance_to_blind_on_hit_%", + }, + ["stats"] = { + ["minion_attacks_chance_to_blind_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 9408, + }, + }, + }, + [241] = { + ["dn"] = "Notable 7", + ["id"] = "abyss_ghastly_notable_7", + ["sd"] = { + [1] = "Minions have (3-5)% chance to Taunt on Hit with Attacks", + }, + ["sortedStats"] = { + [1] = "minion_attacks_chance_to_taunt_on_hit_%", + }, + ["stats"] = { + ["minion_attacks_chance_to_taunt_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 3467, + }, + }, + }, + [242] = { + ["dn"] = "Notable 8", + ["id"] = "abyss_ghastly_notable_8", + ["sd"] = { + [1] = "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells", + }, + ["sortedStats"] = { + [1] = "minion_spells_chance_to_hinder_on_hit_%", + }, + ["stats"] = { + ["minion_spells_chance_to_hinder_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 9467, + }, + }, + }, + [243] = { + ["dn"] = "Notable 9", + ["id"] = "abyss_ghastly_notable_9", + ["sd"] = { + [1] = "Minions have 10% chance to Poison Enemies on Hit", + }, + ["sortedStats"] = { + [1] = "minions_chance_to_poison_on_hit_%", + }, + ["stats"] = { + ["minions_chance_to_poison_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 3209, + }, + }, + }, + [244] = { + ["dn"] = "Notable 10", + ["id"] = "abyss_ghastly_notable_10", + ["sd"] = { + [1] = "Minions have 10% chance to Ignite", + }, + ["sortedStats"] = { + [1] = "minion_chance_to_ignite_%", + }, + ["stats"] = { + ["minion_chance_to_ignite_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 9416, + }, + }, + }, + [245] = { + ["dn"] = "Notable 11", + ["id"] = "abyss_ghastly_notable_11", + ["sd"] = { + [1] = "Minions have 10% chance to cause Bleeding with Attacks", + }, + ["sortedStats"] = { + [1] = "minion_bleed_on_hit_with_attacks_%", + }, + ["stats"] = { + ["minion_bleed_on_hit_with_attacks_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2516, + }, + }, + }, + [246] = { + ["dn"] = "Notable 12", + ["id"] = "abyss_ghastly_notable_12", + ["sd"] = { + [1] = "(31-40)% chance to Avoid being Poisoned", + }, + ["sortedStats"] = { + [1] = "base_avoid_poison_%", + }, + ["stats"] = { + ["base_avoid_poison_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 1872, + }, + }, + }, + [247] = { + ["dn"] = "Notable 13", + ["id"] = "abyss_ghastly_notable_13", + ["sd"] = { + [1] = "Minions Regenerate (0.4-0.8)% of Life per second", + }, + ["sortedStats"] = { + [1] = "minion_life_regeneration_rate_per_minute_%", + }, + ["stats"] = { + ["minion_life_regeneration_rate_per_minute_%"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 0.8, + ["min"] = 0.4, + ["statOrder"] = 2945, + }, + }, + }, + [248] = { + ["dn"] = "Notable 14", + ["id"] = "abyss_ghastly_notable_14", + ["sd"] = { + [1] = "Minions Leech (0.3-0.5)% of Damage as Life", + }, + ["sortedStats"] = { + [1] = "minion_life_leech_from_any_damage_permyriad", + }, + ["stats"] = { + ["minion_life_leech_from_any_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 0.5, + ["min"] = 0.3, + ["statOrder"] = 2944, + }, + }, + }, + [249] = { + ["dn"] = "Notable 15", + ["id"] = "abyss_ghastly_notable_15", + ["sd"] = { + [1] = "Minions have (6-10)% increased Movement Speed", + }, + ["sortedStats"] = { + [1] = "minion_movement_speed_+%", + }, + ["stats"] = { + ["minion_movement_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1792, + }, + }, + }, + [250] = { + ["dn"] = "Notable 16", + ["id"] = "abyss_ghastly_notable_16", + ["sd"] = { + [1] = "Minions have (6-10)% increased maximum Life", + }, + ["sortedStats"] = { + [1] = "minion_maximum_life_+%", + }, + ["stats"] = { + ["minion_maximum_life_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1789, + }, + }, + }, + [251] = { + ["dn"] = "Notable 17", + ["id"] = "abyss_ghastly_notable_17", + ["sd"] = { + [1] = "Minions have +(6-10)% to all Elemental Resistances", + }, + ["sortedStats"] = { + [1] = "minion_elemental_resistance_%", + }, + ["stats"] = { + ["minion_elemental_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 2946, + }, + }, + }, + [252] = { + ["dn"] = "Notable 18", + ["id"] = "abyss_ghastly_notable_18", + ["sd"] = { + [1] = "Minions have +(7-11)% to Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "minion_chaos_resistance_%", + }, + ["stats"] = { + ["minion_chaos_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 7, + ["statOrder"] = 2947, + }, + }, + }, + [253] = { + ["dn"] = "Notable 19", + ["id"] = "abyss_ghastly_notable_19", + ["sd"] = { + [1] = "2% increased Effect of your Curses", + }, + ["sortedStats"] = { + [1] = "curse_effect_+%", + }, + ["stats"] = { + ["curse_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 2622, + }, + }, + }, + [254] = { + ["dn"] = "Notable 20", + ["id"] = "abyss_ghastly_notable_20", + ["sd"] = { + [1] = "(6-8)% increased Cast Speed if a Minion has been Killed Recently", + }, + ["sortedStats"] = { + [1] = "cast_speed_+%_if_player_minion_has_been_killed_recently", + }, + ["stats"] = { + ["cast_speed_+%_if_player_minion_has_been_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 5544, + }, + }, + }, + [255] = { + ["dn"] = "Notable 21", + ["id"] = "abyss_ghastly_notable_21", + ["sd"] = { + [1] = "Minions deal (10-15)% increased Damage if you've used a Minion Skill Recently", + }, + ["sortedStats"] = { + [1] = "minion_damage_+%_if_have_used_a_minion_skill_recently", + }, + ["stats"] = { + ["minion_damage_+%_if_have_used_a_minion_skill_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 10, + ["statOrder"] = 1997, + }, + }, + }, + [256] = { + ["dn"] = "Notable 22", + ["id"] = "abyss_ghastly_notable_22", + ["sd"] = { + [1] = "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", + }, + ["sortedStats"] = { + [1] = "minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently", + }, + ["stats"] = { + ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 9402, + }, + }, + }, + [257] = { + ["dn"] = "Notable 23", + ["id"] = "abyss_ghastly_notable_23", + ["sd"] = { + [1] = "Minions deal (15-18) to 0 additional Fire Damage", + [2] = "Minions deal 0 to (21-24) additional Fire Damage", + }, + ["sortedStats"] = { + [1] = "minion_global_maximum_added_fire_damage", + [2] = "minion_global_minimum_added_fire_damage", + }, + ["stats"] = { + ["minion_global_maximum_added_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 24, + ["min"] = 21, + ["statOrder"] = 3807, + }, + ["minion_global_minimum_added_fire_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 15, + ["statOrder"] = 3807, + }, + }, + }, + [258] = { + ["dn"] = "Notable 24", + ["id"] = "abyss_ghastly_notable_24", + ["sd"] = { + [1] = "Minions deal (15-18) to 0 additional Cold Damage", + [2] = "Minions deal 0 to (21-24) additional Cold Damage", + }, + ["sortedStats"] = { + [1] = "minion_global_maximum_added_cold_damage", + [2] = "minion_global_minimum_added_cold_damage", + }, + ["stats"] = { + ["minion_global_maximum_added_cold_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 24, + ["min"] = 21, + ["statOrder"] = 3806, + }, + ["minion_global_minimum_added_cold_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 15, + ["statOrder"] = 3806, + }, + }, + }, + [259] = { + ["dn"] = "Notable 25", + ["id"] = "abyss_ghastly_notable_25", + ["sd"] = { + [1] = "Minions deal (1-3) to 0 additional Lightning Damage", + [2] = "Minions deal 0 to (33-39) additional Lightning Damage", + }, + ["sortedStats"] = { + [1] = "minion_global_maximum_added_lightning_damage", + [2] = "minion_global_minimum_added_lightning_damage", + }, + ["stats"] = { + ["minion_global_maximum_added_lightning_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 39, + ["min"] = 33, + ["statOrder"] = 3808, + }, + ["minion_global_minimum_added_lightning_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 1, + ["statOrder"] = 3808, + }, + }, + }, + [260] = { + ["dn"] = "Notable 26", + ["id"] = "abyss_ghastly_notable_26", + ["sd"] = { + [1] = "Minions deal (9-12) to 0 additional Physical Damage", + [2] = "Minions deal 0 to (15-18) additional Physical Damage", + }, + ["sortedStats"] = { + [1] = "minion_global_maximum_added_physical_damage", + [2] = "minion_global_minimum_added_physical_damage", + }, + ["stats"] = { + ["minion_global_maximum_added_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 18, + ["min"] = 15, + ["statOrder"] = 3809, + }, + ["minion_global_minimum_added_physical_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 3809, + }, + }, + }, + [261] = { + ["dn"] = "Notable 27", + ["id"] = "abyss_ghastly_notable_27", + ["sd"] = { + [1] = "Minions deal (9-12) to 0 additional Chaos Damage", + [2] = "Minions deal 0 to (15-18) additional Chaos Damage", + }, + ["sortedStats"] = { + [1] = "minion_global_maximum_added_chaos_damage", + [2] = "minion_global_minimum_added_chaos_damage", + }, + ["stats"] = { + ["minion_global_maximum_added_chaos_damage"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 18, + ["min"] = 15, + ["statOrder"] = 3805, + }, + ["minion_global_minimum_added_chaos_damage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 3805, + }, + }, + }, + [262] = { + ["dn"] = "Notable 28", + ["id"] = "abyss_ghastly_notable_28", + ["sd"] = { + [1] = "3% increased Cooldown Recovery Rate", + }, + ["sortedStats"] = { + [1] = "base_cooldown_speed_+%", + }, + ["stats"] = { + ["base_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 5058, + }, + }, + }, + [263] = { + ["dn"] = "Notable 1", + ["id"] = "abyss_special_notable_1", + ["sd"] = { + [1] = "+(31-120) to Accuracy Rating", + }, + ["sortedStats"] = { + [1] = "accuracy_rating", + }, + ["stats"] = { + ["accuracy_rating"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 120, + ["min"] = 31, + ["statOrder"] = 1457, + }, + }, + }, + [264] = { + ["dn"] = "Notable 2", + ["id"] = "abyss_special_notable_2", + ["sd"] = { + [1] = "+(6-8) to all Attributes", + }, + ["sortedStats"] = { + [1] = "additional_all_attributes", + }, + ["stats"] = { + ["additional_all_attributes"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1199, + }, + }, + }, + [265] = { + ["dn"] = "Notable 3", + ["id"] = "abyss_special_notable_3", + ["sd"] = { + [1] = "+(12-16) to Dexterity", + }, + ["sortedStats"] = { + [1] = "additional_dexterity", + }, + ["stats"] = { + ["additional_dexterity"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 12, + ["statOrder"] = 1201, + }, + }, + }, + [266] = { + ["dn"] = "Notable 4", + ["id"] = "abyss_special_notable_4", + ["sd"] = { + [1] = "+(12-16) to Intelligence", + }, + ["sortedStats"] = { + [1] = "additional_intelligence", + }, + ["stats"] = { + ["additional_intelligence"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 12, + ["statOrder"] = 1202, + }, + }, + }, + [267] = { + ["dn"] = "Notable 5", + ["id"] = "abyss_special_notable_5", + ["sd"] = { + [1] = "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", + }, + ["sortedStats"] = { + [1] = "additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently", + }, + ["stats"] = { + ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 4617, + }, + }, + }, + [268] = { + ["dn"] = "Notable 6", + ["id"] = "abyss_special_notable_6", + ["sd"] = { + [1] = "+(12-16) to Strength", + }, + ["sortedStats"] = { + [1] = "additional_strength", + }, + ["stats"] = { + ["additional_strength"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 12, + ["statOrder"] = 1200, + }, + }, + }, + [269] = { + ["dn"] = "Notable 7", + ["id"] = "abyss_special_notable_7", + ["sd"] = { + [1] = "(3-5)% increased Attack Speed", + }, + ["sortedStats"] = { + [1] = "attack_speed_+%", + }, + ["stats"] = { + ["attack_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1434, + }, + }, + }, + [270] = { + ["dn"] = "Notable 8", + ["id"] = "abyss_special_notable_8", + ["sd"] = { + [1] = "(4-6)% increased Attack Speed if you've dealt a Critical Strike Recently", + }, + ["sortedStats"] = { + [1] = "attack_speed_+%_if_have_crit_recently", + }, + ["stats"] = { + ["attack_speed_+%_if_have_crit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 4947, + }, + }, + }, + [271] = { + ["dn"] = "Notable 9", + ["id"] = "abyss_special_notable_9", + ["sd"] = { + [1] = "(3-6)% chance to Blind Enemies on Hit with Attacks", + }, + ["sortedStats"] = { + [1] = "attacks_chance_to_blind_on_hit_%", + }, + ["stats"] = { + ["attacks_chance_to_blind_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 4965, + }, + }, + }, + [272] = { + ["dn"] = "Notable 10", + ["id"] = "abyss_special_notable_10", + ["sd"] = { + [1] = "(3-8)% chance to Taunt Enemies on Hit with Attacks", + }, + ["sortedStats"] = { + [1] = "attacks_chance_to_taunt_on_hit_%", + }, + ["stats"] = { + ["attacks_chance_to_taunt_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 3, + ["statOrder"] = 4966, + }, + }, + }, + [273] = { + ["dn"] = "Notable 11", + ["id"] = "abyss_special_notable_11", + ["sd"] = { + [1] = "(31-40)% chance to Avoid Bleeding", + }, + ["sortedStats"] = { + [1] = "base_avoid_bleed_%", + }, + ["stats"] = { + ["base_avoid_bleed_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 4252, + }, + }, + }, + [274] = { + ["dn"] = "Notable 12", + ["id"] = "abyss_special_notable_12", + ["sd"] = { + [1] = "(31-40)% chance to Avoid being Frozen", + }, + ["sortedStats"] = { + [1] = "base_avoid_freeze_%", + }, + ["stats"] = { + ["base_avoid_freeze_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 1868, + }, + }, + }, + [275] = { + ["dn"] = "Notable 13", + ["id"] = "abyss_special_notable_13", + ["sd"] = { + [1] = "(31-40)% chance to Avoid being Ignited", + }, + ["sortedStats"] = { + [1] = "base_avoid_ignite_%", + }, + ["stats"] = { + ["base_avoid_ignite_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 1869, + }, + }, + }, + [276] = { + ["dn"] = "Notable 14", + ["id"] = "abyss_special_notable_14", + ["sd"] = { + [1] = "(31-40)% chance to Avoid being Poisoned", + }, + ["sortedStats"] = { + [1] = "base_avoid_poison_%", + }, + ["stats"] = { + ["base_avoid_poison_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 1872, + }, + }, + }, + [277] = { + ["dn"] = "Notable 15", + ["id"] = "abyss_special_notable_15", + ["sd"] = { + [1] = "(31-40)% chance to Avoid being Shocked", + }, + ["sortedStats"] = { + [1] = "base_avoid_shock_%", + }, + ["stats"] = { + ["base_avoid_shock_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 31, + ["statOrder"] = 1871, + }, + }, + }, + [278] = { + ["dn"] = "Notable 16", + ["id"] = "abyss_special_notable_16", + ["sd"] = { + [1] = "(21-30)% chance to Avoid being Stunned", + }, + ["sortedStats"] = { + [1] = "base_avoid_stun_%", + }, + ["stats"] = { + ["base_avoid_stun_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 21, + ["statOrder"] = 1874, + }, + }, + }, + [279] = { + ["dn"] = "Notable 17", + ["id"] = "abyss_special_notable_17", + ["sd"] = { + [1] = "(2-4)% increased Cast Speed", + }, + ["sortedStats"] = { + [1] = "base_cast_speed_+%", + }, + ["stats"] = { + ["base_cast_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 1470, + }, + }, + }, + [280] = { + ["dn"] = "Notable 18", + ["id"] = "abyss_special_notable_18", + ["sd"] = { + [1] = "+(5-7)% to Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "base_chaos_damage_resistance_%", + }, + ["stats"] = { + ["base_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 5, + ["statOrder"] = 1664, + }, + }, + }, + [281] = { + ["dn"] = "Notable 19", + ["id"] = "abyss_special_notable_19", + ["sd"] = { + [1] = "+(12-15)% to Cold Resistance", + }, + ["sortedStats"] = { + [1] = "base_cold_damage_resistance_%", + }, + ["stats"] = { + ["base_cold_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 12, + ["statOrder"] = 1654, + }, + }, + }, + [282] = { + ["dn"] = "Notable 20", + ["id"] = "abyss_special_notable_20", + ["sd"] = { + [1] = "3% increased Cooldown Recovery Rate", + }, + ["sortedStats"] = { + [1] = "base_cooldown_speed_+%", + }, + ["stats"] = { + ["base_cooldown_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 5058, + }, + }, + }, + [283] = { + ["dn"] = "Notable 21", + ["id"] = "abyss_special_notable_21", + ["sd"] = { + [1] = "+(4-8)% to Critical Strike Multiplier", + }, + ["sortedStats"] = { + [1] = "base_critical_strike_multiplier_+", + }, + ["stats"] = { + ["base_critical_strike_multiplier_+"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 4, + ["statOrder"] = 11064, + }, + }, + }, + [284] = { + ["dn"] = "Notable 22", + ["id"] = "abyss_special_notable_22", + ["sd"] = { + [1] = "+(36-100) to Evasion Rating", + }, + ["sortedStats"] = { + [1] = "base_evasion_rating", + }, + ["stats"] = { + ["base_evasion_rating"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 100, + ["min"] = 36, + ["statOrder"] = 1566, + }, + }, + }, + [285] = { + ["dn"] = "Notable 23", + ["id"] = "abyss_special_notable_23", + ["sd"] = { + [1] = "+(12-15)% to Fire Resistance", + }, + ["sortedStats"] = { + [1] = "base_fire_damage_resistance_%", + }, + ["stats"] = { + ["base_fire_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 12, + ["statOrder"] = 1648, + }, + }, + }, + [286] = { + ["dn"] = "Notable 24", + ["id"] = "abyss_special_notable_24", + ["sd"] = { + [1] = "Regenerate (9-16) Life per second", + }, + ["sortedStats"] = { + [1] = "base_life_regeneration_rate_per_minute", + }, + ["stats"] = { + ["base_life_regeneration_rate_per_minute"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 16, + ["min"] = 9, + ["statOrder"] = 1596, + }, + }, + }, + [287] = { + ["dn"] = "Notable 25", + ["id"] = "abyss_special_notable_25", + ["sd"] = { + [1] = "+(12-15)% to Lightning Resistance", + }, + ["sortedStats"] = { + [1] = "base_lightning_damage_resistance_%", + }, + ["stats"] = { + ["base_lightning_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 12, + ["statOrder"] = 1659, + }, + }, + }, + [288] = { + ["dn"] = "Notable 26", + ["id"] = "abyss_special_notable_26", + ["sd"] = { + [1] = "Regenerate (1.1-3) Mana per second", + }, + ["sortedStats"] = { + [1] = "base_mana_regeneration_rate_per_minute", + }, + ["stats"] = { + ["base_mana_regeneration_rate_per_minute"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 3, + ["min"] = 1.1, + ["statOrder"] = 1605, + }, + }, + }, + [289] = { + ["dn"] = "Notable 27", + ["id"] = "abyss_special_notable_27", + ["sd"] = { + [1] = "+(21-30) to maximum Life", + }, + ["sortedStats"] = { + [1] = "base_maximum_life", + }, + ["stats"] = { + ["base_maximum_life"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 21, + ["statOrder"] = 1591, + }, + }, + }, + [290] = { + ["dn"] = "Notable 28", + ["id"] = "abyss_special_notable_28", + ["sd"] = { + [1] = "+(21-30) to maximum Mana", + }, + ["sortedStats"] = { + [1] = "base_maximum_mana", + }, + ["stats"] = { + ["base_maximum_mana"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 21, + ["statOrder"] = 1602, + }, + }, + }, + [291] = { + ["dn"] = "Notable 29", + ["id"] = "abyss_special_notable_29", + ["sd"] = { + [1] = "+(61-100) to Armour", + }, + ["sortedStats"] = { + [1] = "base_physical_damage_reduction_rating", + }, + ["stats"] = { + ["base_physical_damage_reduction_rating"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 100, + ["min"] = 61, + ["statOrder"] = 1561, + }, + }, + }, + [292] = { + ["dn"] = "Notable 30", + ["id"] = "abyss_special_notable_30", + ["sd"] = { + [1] = "+(6-8)% to all Elemental Resistances", + }, + ["sortedStats"] = { + [1] = "base_resist_all_elements_%", + }, + ["stats"] = { + ["base_resist_all_elements_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1642, + }, + }, + }, + [293] = { + ["dn"] = "Notable 31", + ["id"] = "abyss_special_notable_31", + ["sd"] = { + [1] = "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", + }, + ["sortedStats"] = { + [1] = "block_chance_on_damage_taken_%", + }, + ["stats"] = { + ["block_chance_on_damage_taken_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 3252, + }, + }, + }, + [294] = { + ["dn"] = "Notable 32", + ["id"] = "abyss_special_notable_32", + ["sd"] = { + [1] = "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", + }, + ["sortedStats"] = { + [1] = "cast_speed_+%_if_have_crit_recently", + }, + ["stats"] = { + ["cast_speed_+%_if_have_crit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 5, + ["statOrder"] = 5543, + }, + }, + }, + [295] = { + ["dn"] = "Notable 33", + ["id"] = "abyss_special_notable_33", + ["sd"] = { + [1] = "(6-8)% increased Cast Speed if a Minion has been Killed Recently", + }, + ["sortedStats"] = { + [1] = "cast_speed_+%_if_player_minion_has_been_killed_recently", + }, + ["stats"] = { + ["cast_speed_+%_if_player_minion_has_been_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 5544, + }, + }, + }, + [296] = { + ["dn"] = "Notable 34", + ["id"] = "abyss_special_notable_34", + ["sd"] = { + [1] = "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", + }, + ["sortedStats"] = { + [1] = "chance_to_block_spells_%_if_damaged_by_a_hit_recently", + }, + ["stats"] = { + ["chance_to_block_spells_%_if_damaged_by_a_hit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 5729, + }, + }, + }, + [297] = { + ["dn"] = "Notable 35", + ["id"] = "abyss_special_notable_35", + ["sd"] = { + [1] = "10% increased Effect of Cold Ailments", + }, + ["sortedStats"] = { + [1] = "cold_ailment_effect_+%", + }, + ["stats"] = { + ["cold_ailment_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 5880, + }, + }, + }, + [298] = { + ["dn"] = "Notable 36", + ["id"] = "abyss_special_notable_36", + ["sd"] = { + [1] = "(8-12)% increased Critical Strike Chance", + }, + ["sortedStats"] = { + [1] = "critical_strike_chance_+%", + }, + ["stats"] = { + ["critical_strike_chance_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 8, + ["statOrder"] = 11063, + }, + }, + }, + [299] = { + ["dn"] = "Notable 37", + ["id"] = "abyss_special_notable_37", + ["sd"] = { + [1] = "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", + }, + ["sortedStats"] = { + [1] = "critical_strike_chance_+%_if_have_not_crit_recently", + }, + ["stats"] = { + ["critical_strike_chance_+%_if_have_not_crit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 6010, + }, + }, + }, + [300] = { + ["dn"] = "Notable 38", + ["id"] = "abyss_special_notable_38", + ["sd"] = { + [1] = "+(8-10)% to Critical Strike Multiplier if you've Killed Recently", + }, + ["sortedStats"] = { + [1] = "critical_strike_multiplier_+_if_enemy_killed_recently", + }, + ["stats"] = { + ["critical_strike_multiplier_+_if_enemy_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 6040, + }, + }, + }, + [301] = { + ["dn"] = "Notable 39", + ["id"] = "abyss_special_notable_39", + ["sd"] = { + [1] = "2% increased Effect of your Curses", + }, + ["sortedStats"] = { + [1] = "curse_effect_+%", + }, + ["stats"] = { + ["curse_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 2622, + }, + }, + }, + [302] = { + ["dn"] = "Notable 40", + ["id"] = "abyss_special_notable_40", + ["sd"] = { + [1] = "(10-15)% reduced Effect of Curses on you while on Consecrated Ground", + }, + ["sortedStats"] = { + [1] = "curse_effect_on_self_+%_while_on_consecrated_ground", + }, + ["stats"] = { + ["curse_effect_on_self_+%_while_on_consecrated_ground"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 10, + ["statOrder"] = 6079, + }, + }, + }, + [303] = { + ["dn"] = "Notable 41", + ["id"] = "abyss_special_notable_41", + ["sd"] = { + [1] = "(15-20)% increased Damage if you've Killed Recently", + }, + ["sortedStats"] = { + [1] = "damage_+%_if_enemy_killed_recently", + }, + ["stats"] = { + ["damage_+%_if_enemy_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 6128, + }, + }, + }, + [304] = { + ["dn"] = "Notable 42", + ["id"] = "abyss_special_notable_42", + ["sd"] = { + [1] = "(10-18)% increased Damage over Time while Dual Wielding", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_dual_wielding", + }, + ["stats"] = { + ["damage_over_time_+%_while_dual_wielding"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 10, + ["statOrder"] = 2158, + }, + }, + }, + [305] = { + ["dn"] = "Notable 43", + ["id"] = "abyss_special_notable_43", + ["sd"] = { + [1] = "(10-18)% increased Damage over Time while holding a Shield", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_holding_a_shield", + }, + ["stats"] = { + ["damage_over_time_+%_while_holding_a_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 10, + ["statOrder"] = 2159, + }, + }, + }, + [306] = { + ["dn"] = "Notable 44", + ["id"] = "abyss_special_notable_44", + ["sd"] = { + [1] = "(10-18)% increased Damage over Time while wielding a Two Handed Weapon", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%_while_wielding_two_handed_weapon", + }, + ["stats"] = { + ["damage_over_time_+%_while_wielding_two_handed_weapon"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 18, + ["min"] = 10, + ["statOrder"] = 2160, + }, + }, + }, + [307] = { + ["dn"] = "Notable 45", + ["id"] = "abyss_special_notable_45", + ["sd"] = { + [1] = "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently", + }, + ["sortedStats"] = { + [1] = "damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently", + }, + ["stats"] = { + ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 6118, + }, + }, + }, + [308] = { + ["dn"] = "Notable 46", + ["id"] = "abyss_special_notable_46", + ["sd"] = { + [1] = "2% of Damage taken Recouped as Mana", + }, + ["sortedStats"] = { + [1] = "damage_taken_goes_to_mana_%", + }, + ["stats"] = { + ["damage_taken_goes_to_mana_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 2480, + }, + }, + }, + [309] = { + ["dn"] = "Notable 47", + ["id"] = "abyss_special_notable_47", + ["sd"] = { + [1] = "Enemies Blinded by you have (15-20)% reduced Critical Strike Chance", + }, + ["sortedStats"] = { + [1] = "enemies_you_blind_have_critical_strike_chance_+%", + }, + ["stats"] = { + ["enemies_you_blind_have_critical_strike_chance_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 6492, + }, + }, + }, + [310] = { + ["dn"] = "Notable 48", + ["id"] = "abyss_special_notable_48", + ["sd"] = { + [1] = "Enemies Hindered by you have (15-20)% reduced Life Regeneration rate", + }, + ["sortedStats"] = { + [1] = "enemies_you_hinder_have_life_regeneration_rate_+%", + }, + ["stats"] = { + ["enemies_you_hinder_have_life_regeneration_rate_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 6498, + }, + }, + }, + [311] = { + ["dn"] = "Notable 49", + ["id"] = "abyss_special_notable_49", + ["sd"] = { + [1] = "Enemies Intimidated by you have 10% increased duration of stuns against them", + }, + ["sortedStats"] = { + [1] = "enemies_you_intimidate_have_stun_duration_on_self_+%", + }, + ["stats"] = { + ["enemies_you_intimidate_have_stun_duration_on_self_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6501, + }, + }, + }, + [312] = { + ["dn"] = "Notable 50", + ["id"] = "abyss_special_notable_50", + ["sd"] = { + [1] = "Enemies Maimed by you take (4-5)% increased Damage Over Time", + }, + ["sortedStats"] = { + [1] = "enemies_you_maim_have_damage_taken_over_time_+%", + }, + ["stats"] = { + ["enemies_you_maim_have_damage_taken_over_time_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 4, + ["statOrder"] = 6502, + }, + }, + }, + [313] = { + ["dn"] = "Notable 51", + ["id"] = "abyss_special_notable_51", + ["sd"] = { + [1] = "Enemies Withered by you have -2% to all Resistances", + }, + ["sortedStats"] = { + [1] = "enemies_you_wither_have_all_resistances_%", + }, + ["stats"] = { + ["enemies_you_wither_have_all_resistances_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = -2, + ["min"] = -2, + ["statOrder"] = 6504, + }, + }, + }, + [314] = { + ["dn"] = "Notable 52", + ["id"] = "abyss_special_notable_52", + ["sd"] = { + [1] = "Regenerate (9-16) Energy Shield per second", + }, + ["sortedStats"] = { + [1] = "energy_shield_regeneration_rate_per_second", + }, + ["stats"] = { + ["energy_shield_regeneration_rate_per_second"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 16, + ["min"] = 9, + ["statOrder"] = 6549, + }, + }, + }, + [315] = { + ["dn"] = "Notable 53", + ["id"] = "abyss_special_notable_53", + ["sd"] = { + [1] = "(20-30)% increased Evasion Rating while moving", + }, + ["sortedStats"] = { + [1] = "evasion_rating_+%_while_moving", + }, + ["stats"] = { + ["evasion_rating_+%_while_moving"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 6586, + }, + }, + }, + [316] = { + ["dn"] = "Notable 54", + ["id"] = "abyss_special_notable_54", + ["sd"] = { + [1] = "(3-5)% increased Impale Effect", + }, + ["sortedStats"] = { + [1] = "impale_debuff_effect_+%", + }, + ["stats"] = { + ["impale_debuff_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 7343, + }, + }, + }, + [317] = { + ["dn"] = "Notable 55", + ["id"] = "abyss_special_notable_55", + ["sd"] = { + [1] = "Regenerate (0.5-1)% of Life per second while moving", + }, + ["sortedStats"] = { + [1] = "life_regeneration_rate_per_minute_%_while_moving", + }, + ["stats"] = { + ["life_regeneration_rate_per_minute_%_while_moving"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 1, + ["min"] = 0.5, + ["statOrder"] = 7525, + }, + }, + }, + [318] = { + ["dn"] = "Notable 56", + ["id"] = "abyss_special_notable_56", + ["sd"] = { + [1] = "(10-15)% increased Effect of Lightning Ailments", + }, + ["sortedStats"] = { + [1] = "lightning_ailment_effect_+%", + }, + ["stats"] = { + ["lightning_ailment_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 10, + ["statOrder"] = 7535, + }, + }, + }, + [319] = { + ["dn"] = "Notable 57", + ["id"] = "abyss_special_notable_57", + ["sd"] = { + [1] = "(20-25)% increased Mana Regeneration Rate while moving", + }, + ["sortedStats"] = { + [1] = "mana_regeneration_rate_+%_while_moving", + }, + ["stats"] = { + ["mana_regeneration_rate_+%_while_moving"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 25, + ["min"] = 20, + ["statOrder"] = 8325, + }, + }, + }, + [320] = { + ["dn"] = "Notable 58", + ["id"] = "abyss_special_notable_58", + ["sd"] = { + [1] = "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", + }, + ["sortedStats"] = { + [1] = "minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently", + }, + ["stats"] = { + ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 9402, + }, + }, + }, + [321] = { + ["dn"] = "Notable 59", + ["id"] = "abyss_special_notable_59", + ["sd"] = { + [1] = "Minions have (3-5)% chance to Blind on Hit with Attacks", + }, + ["sortedStats"] = { + [1] = "minion_attacks_chance_to_blind_on_hit_%", + }, + ["stats"] = { + ["minion_attacks_chance_to_blind_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 9408, + }, + }, + }, + [322] = { + ["dn"] = "Notable 60", + ["id"] = "abyss_special_notable_60", + ["sd"] = { + [1] = "Minions have (3-5)% chance to Taunt on Hit with Attacks", + }, + ["sortedStats"] = { + [1] = "minion_attacks_chance_to_taunt_on_hit_%", + }, + ["stats"] = { + ["minion_attacks_chance_to_taunt_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 3467, + }, + }, + }, + [323] = { + ["dn"] = "Notable 61", + ["id"] = "abyss_special_notable_61", + ["sd"] = { + [1] = "Minions have 10% chance to cause Bleeding with Attacks", + }, + ["sortedStats"] = { + [1] = "minion_bleed_on_hit_with_attacks_%", + }, + ["stats"] = { + ["minion_bleed_on_hit_with_attacks_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2516, + }, + }, + }, + [324] = { + ["dn"] = "Notable 62", + ["id"] = "abyss_special_notable_62", + ["sd"] = { + [1] = "Minions have 10% chance to Ignite", + }, + ["sortedStats"] = { + [1] = "minion_chance_to_ignite_%", + }, + ["stats"] = { + ["minion_chance_to_ignite_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 9416, + }, + }, + }, + [325] = { + ["dn"] = "Notable 63", + ["id"] = "abyss_special_notable_63", + ["sd"] = { + [1] = "Minions have +(7-11)% to Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "minion_chaos_resistance_%", + }, + ["stats"] = { + ["minion_chaos_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 7, + ["statOrder"] = 2947, + }, + }, + }, + [326] = { + ["dn"] = "Notable 64", + ["id"] = "abyss_special_notable_64", + ["sd"] = { + [1] = "Minions deal (10-15)% increased Damage if you've used a Minion Skill Recently", + }, + ["sortedStats"] = { + [1] = "minion_damage_+%_if_have_used_a_minion_skill_recently", + }, + ["stats"] = { + ["minion_damage_+%_if_have_used_a_minion_skill_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 10, + ["statOrder"] = 1997, + }, + }, + }, + [327] = { + ["dn"] = "Notable 65", + ["id"] = "abyss_special_notable_65", + ["sd"] = { + [1] = "Minions have +(6-10)% to all Elemental Resistances", + }, + ["sortedStats"] = { + [1] = "minion_elemental_resistance_%", + }, + ["stats"] = { + ["minion_elemental_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 2946, + }, + }, + }, + [328] = { + ["dn"] = "Notable 66", + ["id"] = "abyss_special_notable_66", + ["sd"] = { + [1] = "Minions Leech (0.3-0.5)% of Damage as Life", + }, + ["sortedStats"] = { + [1] = "minion_life_leech_from_any_damage_permyriad", + }, + ["stats"] = { + ["minion_life_leech_from_any_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 0.5, + ["min"] = 0.3, + ["statOrder"] = 2944, + }, + }, + }, + [329] = { + ["dn"] = "Notable 67", + ["id"] = "abyss_special_notable_67", + ["sd"] = { + [1] = "Minions Regenerate (0.4-0.8)% of Life per second", + }, + ["sortedStats"] = { + [1] = "minion_life_regeneration_rate_per_minute_%", + }, + ["stats"] = { + ["minion_life_regeneration_rate_per_minute_%"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 0.8, + ["min"] = 0.4, + ["statOrder"] = 2945, + }, + }, + }, + [330] = { + ["dn"] = "Notable 68", + ["id"] = "abyss_special_notable_68", + ["sd"] = { + [1] = "Minions Regenerate (22-40) Life per second", + }, + ["sortedStats"] = { + [1] = "minion_life_regeneration_rate_per_second", + }, + ["stats"] = { + ["minion_life_regeneration_rate_per_second"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 22, + ["statOrder"] = 9447, + }, + }, + }, + [331] = { + ["dn"] = "Notable 69", + ["id"] = "abyss_special_notable_69", + ["sd"] = { + [1] = "Minions have (6-10)% increased maximum Life", + }, + ["sortedStats"] = { + [1] = "minion_maximum_life_+%", + }, + ["stats"] = { + ["minion_maximum_life_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1789, + }, + }, + }, + [332] = { + ["dn"] = "Notable 70", + ["id"] = "abyss_special_notable_70", + ["sd"] = { + [1] = "Minions have (6-10)% increased Movement Speed", + }, + ["sortedStats"] = { + [1] = "minion_movement_speed_+%", + }, + ["stats"] = { + ["minion_movement_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1792, + }, + }, + }, + [333] = { + ["dn"] = "Notable 71", + ["id"] = "abyss_special_notable_71", + ["sd"] = { + [1] = "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells", + }, + ["sortedStats"] = { + [1] = "minion_spells_chance_to_hinder_on_hit_%", + }, + ["stats"] = { + ["minion_spells_chance_to_hinder_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 9467, + }, + }, + }, + [334] = { + ["dn"] = "Notable 72", + ["id"] = "abyss_special_notable_72", + ["sd"] = { + [1] = "Minions have 10% chance to Poison Enemies on Hit", + }, + ["sortedStats"] = { + [1] = "minions_chance_to_poison_on_hit_%", + }, + ["stats"] = { + ["minions_chance_to_poison_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 3209, + }, + }, + }, + [335] = { + ["dn"] = "Notable 73", + ["id"] = "abyss_special_notable_73", + ["sd"] = { + [1] = "3% increased Movement Speed if you haven't taken Damage Recently", + }, + ["sortedStats"] = { + [1] = "movement_speed_+%_if_have_not_taken_damage_recently", + }, + ["stats"] = { + ["movement_speed_+%_if_have_not_taken_damage_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 9555, + }, + }, + }, + [336] = { + ["dn"] = "Notable 74", + ["id"] = "abyss_special_notable_74", + ["sd"] = { + [1] = "5% chance to gain Phasing for 4 seconds on Kill", + }, + ["sortedStats"] = { + [1] = "phasing_for_4_seconds_on_kill_%", + }, + ["stats"] = { + ["phasing_for_4_seconds_on_kill_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 3501, + }, + }, + }, + [337] = { + ["dn"] = "Notable 75", + ["id"] = "abyss_special_notable_75", + ["sd"] = { + [1] = "(3-8)% chance to Hinder Enemies on Hit with Spells", + }, + ["sortedStats"] = { + [1] = "spells_chance_to_hinder_on_hit_%", + }, + ["stats"] = { + ["spells_chance_to_hinder_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 3, + ["statOrder"] = 10336, + }, + }, + }, + }, + ["groups"] = { + [1000000000] = { + ["n"] = { + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 38, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + }, + ["oo"] = { + }, + ["x"] = -6500, + ["y"] = -6500, + }, + }, + ["nodes"] = { + [1] = { + ["da"] = 0, + ["dn"] = "Divine Flesh", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DivineFlesh.dds", + ["id"] = "vaal_keystone_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 0, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "All Damage taken bypasses Energy Shield", + [2] = "50% of Elemental Damage taken as Chaos Damage", + [3] = "+5% to maximum Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "keystone_divine_flesh", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_divine_flesh"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11111, + }, + }, + }, + [2] = { + ["da"] = 0, + ["dn"] = "Eternal Youth", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalYouth.dds", + ["id"] = "vaal_keystone_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 3, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "50% less Life Regeneration Rate", + [2] = "50% less maximum Total Life Recovery per Second from Leech", + [3] = "Energy Shield Recharge instead applies to Life", + }, + ["sortedStats"] = { + [1] = "keystone_eternal_youth", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_eternal_youth"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11115, + }, + }, + }, + [3] = { + ["da"] = 0, + ["dn"] = "Immortal Ambition", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/SoulTetherKeystone.dds", + ["id"] = "vaal_keystone_2_v2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 6, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Energy Shield starts at zero", + [2] = "Cannot Recharge or Regenerate Energy Shield", + [3] = "Lose 5% of Energy Shield per second", + [4] = "Life Leech effects are not removed when Unreserved Life is Filled", + [5] = "Life Leech effects Recover Energy Shield instead while on Full Life", + }, + ["sortedStats"] = { + [1] = "keystone_soul_tether", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_soul_tether"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11145, + }, + }, + }, + [4] = { + ["da"] = 0, + ["dn"] = "Corrupted Soul", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/CorruptedDefences.dds", + ["id"] = "vaal_keystone_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 9, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "50% of Non-Chaos Damage taken bypasses Energy Shield", + [2] = "Gain 15% of Maximum Life as Extra Maximum Energy Shield", + }, + ["sortedStats"] = { + [1] = "keystone_corrupted_defences", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_corrupted_defences"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11109, + }, + }, + }, + [5] = { + ["da"] = 0, + ["dn"] = "Fire Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_fire_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 79420, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Fire Damage", + }, + ["sortedStats"] = { + [1] = "fire_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["fire_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1381, + }, + }, + }, + [6] = { + ["da"] = 0, + ["dn"] = "Cold Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_cold_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 69885, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Cold Damage", + }, + ["sortedStats"] = { + [1] = "cold_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["cold_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1390, + }, + }, + }, + [7] = { + ["da"] = 0, + ["dn"] = "Lightning Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_lightning_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 59010, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Lightning Damage", + }, + ["sortedStats"] = { + [1] = "lightning_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["lightning_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1401, + }, + }, + }, + [8] = { + ["da"] = 0, + ["dn"] = "Physical Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_physical_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 75322, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Physical Damage", + }, + ["sortedStats"] = { + [1] = "physical_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 11094, + }, + }, + }, + [9] = { + ["da"] = 0, + ["dn"] = "Chaos Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_chaos_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 8097, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Chaos Damage", + }, + ["sortedStats"] = { + [1] = "chaos_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["chaos_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1409, + }, + }, + }, + [10] = { + ["da"] = 0, + ["dn"] = "Minion Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_minion_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 66110, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Minions deal (8-13)% increased Damage", + }, + ["sortedStats"] = { + [1] = "minion_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["minion_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 13, + ["min"] = 8, + ["statOrder"] = 1996, + }, + }, + }, + [11] = { + ["da"] = 0, + ["dn"] = "Attack Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_attack_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 33933, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Attack Damage", + }, + ["sortedStats"] = { + [1] = "attack_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["attack_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1221, + }, + }, + }, + [12] = { + ["da"] = 0, + ["dn"] = "Spell Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_spell_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 73573, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Spell Damage", + }, + ["sortedStats"] = { + [1] = "spell_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["spell_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1246, + }, + }, + }, + [13] = { + ["da"] = 0, + ["dn"] = "Area Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_area_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 42668, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Area Damage", + }, + ["sortedStats"] = { + [1] = "area_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["area_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 2058, + }, + }, + }, + [14] = { + ["da"] = 0, + ["dn"] = "Projectile Damage", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_projectile_damage", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 56859, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Projectile Damage", + }, + ["sortedStats"] = { + [1] = "projectile_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["projectile_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 2019, + }, + }, + }, + [15] = { + ["da"] = 0, + ["dn"] = "Damage Over Time", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_damage_over_time", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 11446, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Damage over Time", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["damage_over_time_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1233, + }, + }, + }, + [16] = { + ["da"] = 0, + ["dn"] = "Area of Effect", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_area_of_effect", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 5489, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(4-7)% increased Area of Effect", + }, + ["sortedStats"] = { + [1] = "base_skill_area_of_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_skill_area_of_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 4, + ["statOrder"] = 1903, + }, + }, + }, + [17] = { + ["da"] = 0, + ["dn"] = "Projectile Speed", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_projectile_speed", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 97416, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Projectile Speed", + }, + ["sortedStats"] = { + [1] = "base_projectile_speed_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_projectile_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1819, + }, + }, + }, + [18] = { + ["da"] = 0, + ["dn"] = "Critical Strike Chance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_critical_strike_chance", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 70539, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-14)% increased Critical Strike Chance", + }, + ["sortedStats"] = { + [1] = "critical_strike_chance_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["critical_strike_chance_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 7, + ["statOrder"] = 11063, + }, + }, + }, + [19] = { + ["da"] = 0, + ["dn"] = "Critical Strike Multiplier", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_critical_strike_multiplier", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 17595, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(6-10)% to Critical Strike Multiplier", + }, + ["sortedStats"] = { + [1] = "base_critical_strike_multiplier_+", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_critical_strike_multiplier_+"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 11064, + }, + }, + }, + [20] = { + ["da"] = 0, + ["dn"] = "Attack Speed", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_attack_speed", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 97479, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(3-4)% increased Attack Speed", + }, + ["sortedStats"] = { + [1] = "attack_speed_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["attack_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 1434, + }, + }, + }, + [21] = { + ["da"] = 0, + ["dn"] = "Cast Speed", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_cast_speed", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 27693, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(2-3)% increased Cast Speed", + }, + ["sortedStats"] = { + [1] = "base_cast_speed_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_cast_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1470, + }, + }, + }, + [22] = { + ["da"] = 0, + ["dn"] = "Movement Speed", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_movement_speed", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 35409, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(2-3)% increased Movement Speed", + }, + ["sortedStats"] = { + [1] = "base_movement_velocity_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_movement_velocity_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1821, + }, + }, + }, + [23] = { + ["da"] = 0, + ["dn"] = "Ignite Chance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_chance_to_ignite", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 47236, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(3-6)% chance to Ignite", + }, + ["sortedStats"] = { + [1] = "base_chance_to_ignite_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_chance_to_ignite_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 2049, + }, + }, + }, + [24] = { + ["da"] = 0, + ["dn"] = "Freeze Chance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_chance_to_freeze", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 67900, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(3-6)% chance to Freeze", + }, + ["sortedStats"] = { + [1] = "base_chance_to_freeze_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_chance_to_freeze_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 2052, + }, + }, + }, + [25] = { + ["da"] = 0, + ["dn"] = "Shock Chance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_chance_to_shock", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 57514, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(3-6)% chance to Shock", + }, + ["sortedStats"] = { + [1] = "base_chance_to_shock_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_chance_to_shock_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 3, + ["statOrder"] = 2056, + }, + }, + }, + [26] = { + ["da"] = 0, + ["dn"] = "Skill Duration", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", + ["id"] = "vaal_small_duration", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 79693, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(4-7)% increased Skill Effect Duration", + }, + ["sortedStats"] = { + [1] = "skill_effect_duration_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["skill_effect_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 7, + ["min"] = 4, + ["statOrder"] = 1918, + }, + }, + }, + [27] = { + ["da"] = 0, + ["dn"] = "Life", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_life", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 45174, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(2-4)% increased maximum Life", + }, + ["sortedStats"] = { + [1] = "maximum_life_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["maximum_life_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 1593, + }, + }, + }, + [28] = { + ["da"] = 0, + ["dn"] = "Mana", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_mana", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 18201, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(4-6)% increased maximum Mana", + }, + ["sortedStats"] = { + [1] = "maximum_mana_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["maximum_mana_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1603, + }, + }, + }, + [29] = { + ["da"] = 0, + ["dn"] = "Mana Regeneration", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_mana_regeneration", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 65999, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(12-17)% increased Mana Regeneration Rate", + }, + ["sortedStats"] = { + [1] = "mana_regeneration_rate_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["mana_regeneration_rate_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 17, + ["min"] = 12, + ["statOrder"] = 1607, + }, + }, + }, + [30] = { + ["da"] = 0, + ["dn"] = "Armour", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_armour", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 21117, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Armour", + }, + ["sortedStats"] = { + [1] = "physical_damage_reduction_rating_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_reduction_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1563, + }, + }, + }, + [31] = { + ["da"] = 0, + ["dn"] = "Evasion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_evasion", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 59672, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(7-12)% increased Evasion Rating", + }, + ["sortedStats"] = { + [1] = "evasion_rating_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["evasion_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 7, + ["statOrder"] = 1571, + }, + }, + }, + [32] = { + ["da"] = 0, + ["dn"] = "Energy Shield", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_energy_shield", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 14411, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(3-5)% increased maximum Energy Shield", + }, + ["sortedStats"] = { + [1] = "maximum_energy_shield_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["maximum_energy_shield_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1583, + }, + }, + }, + [33] = { + ["da"] = 0, + ["dn"] = "Block", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_attack_block", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 82991, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+2% Chance to Block Attack Damage", + }, + ["sortedStats"] = { + [1] = "additional_block_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["additional_block_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 2483, + }, + }, + }, + [34] = { + ["da"] = 0, + ["dn"] = "Spell Block", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_spell_block", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 58330, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "2% Chance to Block Spell Damage", + }, + ["sortedStats"] = { + [1] = "base_spell_block_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_spell_block_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 1183, + }, + }, + }, + [35] = { + ["da"] = 0, + ["dn"] = "Avoid Elemental Ailments", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_attack_dodge", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 2479, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "3% chance to Avoid Elemental Ailments", + }, + ["sortedStats"] = { + [1] = "avoid_all_elemental_status_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["avoid_all_elemental_status_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 3, + ["statOrder"] = 1866, + }, + }, + }, + [36] = { + ["da"] = 0, + ["dn"] = "Spell Suppression", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_spell_dodge", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 83640, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+4% chance to Suppress Spell Damage", + }, + ["sortedStats"] = { + [1] = "base_spell_suppression_chance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_spell_suppression_chance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 1167, + }, + }, + }, + [37] = { + ["da"] = 0, + ["dn"] = "Aura Effect", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_aura_effect", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 4960, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(2-4)% increased effect of Non-Curse Auras from your Skills", + }, + ["sortedStats"] = { + [1] = "non_curse_aura_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["non_curse_aura_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 3602, + }, + }, + }, + [38] = { + ["da"] = 0, + ["dn"] = "Curse Effect", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_curse_effect", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 82957, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "2% increased Effect of your Curses", + }, + ["sortedStats"] = { + [1] = "curse_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["curse_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 2622, + }, + }, + }, + [39] = { + ["da"] = 0, + ["dn"] = "Fire Resistance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_fire_resistance", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 62650, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(9-14)% to Fire Resistance", + }, + ["sortedStats"] = { + [1] = "base_fire_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_fire_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1648, + }, + }, + }, + [40] = { + ["da"] = 0, + ["dn"] = "Cold Resistance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_cold_resistance", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 82675, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(9-14)% to Cold Resistance", + }, + ["sortedStats"] = { + [1] = "base_cold_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_cold_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1654, + }, + }, + }, + [41] = { + ["da"] = 0, + ["dn"] = "Lightning Resistance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_lightning_resistance", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 18075, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(9-14)% to Lightning Resistance", + }, + ["sortedStats"] = { + [1] = "base_lightning_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_lightning_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 14, + ["min"] = 9, + ["statOrder"] = 1659, + }, + }, + }, + [42] = { + ["da"] = 0, + ["dn"] = "Chaos Resistance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", + ["id"] = "vaal_small_chaos_resistance", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 25548, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(6-10)% to Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "base_chaos_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1664, + }, + }, + }, + [43] = { + ["da"] = 0, + ["dn"] = "Ritual of Immolation", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_fire_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 92114, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Fire Damage", + [2] = "Damage Penetrates (2-4)% Fire Resistance", + }, + ["sortedStats"] = { + [1] = "fire_damage_+%", + [2] = "base_reduce_enemy_fire_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_reduce_enemy_fire_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 3015, + }, + ["fire_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1381, + }, + }, + }, + [44] = { + ["da"] = 0, + ["dn"] = "Revitalising Flames", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_fire_damage_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 31696, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Fire Damage", + [2] = "0.2% of Fire Damage Leeched as Life", + }, + ["sortedStats"] = { + [1] = "fire_damage_+%", + [2] = "base_life_leech_from_fire_damage_permyriad", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_life_leech_from_fire_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.2, + ["min"] = 0.2, + ["statOrder"] = 1693, + }, + ["fire_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1381, + }, + }, + }, + [45] = { + ["da"] = 0, + ["dn"] = "Flesh to Flames", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_fire_damage_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 7855, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Fire Damage", + [2] = "10% of Physical Damage Converted to Fire Damage", + }, + ["sortedStats"] = { + [1] = "fire_damage_+%", + [2] = "base_physical_damage_%_to_convert_to_fire", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_physical_damage_%_to_convert_to_fire"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1978, + }, + ["fire_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1381, + }, + }, + }, + [46] = { + ["da"] = 0, + ["dn"] = "Ritual of Stillness", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_cold_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 35484, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Cold Damage", + [2] = "Damage Penetrates (2-4)% Cold Resistance", + }, + ["sortedStats"] = { + [1] = "cold_damage_+%", + [2] = "base_reduce_enemy_cold_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_reduce_enemy_cold_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 3017, + }, + ["cold_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1390, + }, + }, + }, + [47] = { + ["da"] = 0, + ["dn"] = "Revitalising Frost", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_cold_damage_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 92100, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Cold Damage", + [2] = "0.2% of Cold Damage Leeched as Life", + }, + ["sortedStats"] = { + [1] = "cold_damage_+%", + [2] = "base_life_leech_from_cold_damage_permyriad", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_life_leech_from_cold_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.2, + ["min"] = 0.2, + ["statOrder"] = 1698, + }, + ["cold_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1390, + }, + }, + }, + [48] = { + ["da"] = 0, + ["dn"] = "Flesh to Frost", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_cold_damage_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 2503, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Cold Damage", + [2] = "10% of Physical Damage Converted to Cold Damage", + }, + ["sortedStats"] = { + [1] = "cold_damage_+%", + [2] = "base_physical_damage_%_to_convert_to_cold", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_physical_damage_%_to_convert_to_cold"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1980, + }, + ["cold_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1390, + }, + }, + }, + [49] = { + ["da"] = 0, + ["dn"] = "Ritual of Thunder", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_lightning_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 67692, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Lightning Damage", + [2] = "Damage Penetrates (2-4)% Lightning Resistance", + }, + ["sortedStats"] = { + [1] = "lightning_damage_+%", + [2] = "base_reduce_enemy_lightning_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_reduce_enemy_lightning_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 3018, + }, + ["lightning_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1401, + }, + }, + }, + [50] = { + ["da"] = 0, + ["dn"] = "Revitalising Lightning", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_lightning_damage_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 74451, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Lightning Damage", + [2] = "0.2% of Lightning Damage Leeched as Life", + }, + ["sortedStats"] = { + [1] = "lightning_damage_+%", + [2] = "base_life_leech_from_lightning_damage_permyriad", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_life_leech_from_lightning_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.2, + ["min"] = 0.2, + ["statOrder"] = 1702, + }, + ["lightning_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1401, + }, + }, + }, + [51] = { + ["da"] = 0, + ["dn"] = "Flesh to Lightning", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_lightning_damage_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 55329, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Lightning Damage", + [2] = "10% of Physical Damage Converted to Lightning Damage", + }, + ["sortedStats"] = { + [1] = "lightning_damage_+%", + [2] = "base_physical_damage_%_to_convert_to_lightning", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_physical_damage_%_to_convert_to_lightning"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1982, + }, + ["lightning_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1401, + }, + }, + }, + [52] = { + ["da"] = 0, + ["dn"] = "Ritual of Might", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_physical_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 11777, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(2-4)% chance to deal Double Damage", + [2] = "(25-35)% increased Physical Damage", + }, + ["sortedStats"] = { + [1] = "chance_to_deal_double_damage_%", + [2] = "physical_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["chance_to_deal_double_damage_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 5737, + }, + ["physical_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 11094, + }, + }, + }, + [53] = { + ["da"] = 0, + ["dn"] = "Revitalising Winds", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_physical_damage_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 13357, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "0.2% of Physical Damage Leeched as Life", + [2] = "(25-35)% increased Physical Damage", + }, + ["sortedStats"] = { + [1] = "base_life_leech_from_physical_damage_permyriad", + [2] = "physical_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_life_leech_from_physical_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.2, + ["min"] = 0.2, + ["statOrder"] = 1689, + }, + ["physical_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 11094, + }, + }, + }, + [54] = { + ["da"] = 0, + ["dn"] = "Bloody Savagery", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_physical_damage_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 3316, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Bleeding you inflict deals Damage 10% faster", + [2] = "(25-35)% increased Physical Damage", + }, + ["sortedStats"] = { + [1] = "faster_bleed_%", + [2] = "physical_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["faster_bleed_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6632, + }, + ["physical_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 11094, + }, + }, + }, + [55] = { + ["da"] = 0, + ["dn"] = "Ritual of Shadows", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_chaos_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 49930, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Chaos Damage", + [2] = "25% chance to inflict Withered for 2 seconds on Hit", + }, + ["sortedStats"] = { + [1] = "chaos_damage_+%", + [2] = "withered_on_hit_for_2_seconds_%_chance", + }, + ["spc"] = { + }, + ["stats"] = { + ["chaos_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1409, + }, + ["withered_on_hit_for_2_seconds_%_chance"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 4435, + }, + }, + }, + [56] = { + ["da"] = 0, + ["dn"] = "Revitalising Darkness", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_chaos_damage_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 68927, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Chaos Damage", + [2] = "0.2% of Chaos Damage Leeched as Life", + }, + ["sortedStats"] = { + [1] = "chaos_damage_+%", + [2] = "base_life_leech_from_chaos_damage_permyriad", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_life_leech_from_chaos_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.2, + ["min"] = 0.2, + ["statOrder"] = 1705, + }, + ["chaos_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1409, + }, + }, + }, + [57] = { + ["da"] = 0, + ["dn"] = "Thaumaturgical Aptitude", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_spell_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 50654, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Spell Damage", + [2] = "(35-50)% increased Spell Critical Strike Chance", + }, + ["sortedStats"] = { + [1] = "spell_damage_+%", + [2] = "spell_critical_strike_chance_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["spell_critical_strike_chance_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 50, + ["min"] = 35, + ["statOrder"] = 1481, + }, + ["spell_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1246, + }, + }, + }, + [58] = { + ["da"] = 0, + ["dn"] = "Hierarchy", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_minion_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 85555, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Minions have (15-20)% increased maximum Life", + [2] = "Minions deal (25-35)% increased Damage", + }, + ["sortedStats"] = { + [1] = "minion_maximum_life_+%", + [2] = "minion_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["minion_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1996, + }, + ["minion_maximum_life_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1789, + }, + }, + }, + [59] = { + ["da"] = 0, + ["dn"] = "Exquisite Pain", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_damage_over_time_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 13953, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(25-35)% increased Damage over Time", + [2] = "(7-11)% increased Skill Effect Duration", + }, + ["sortedStats"] = { + [1] = "damage_over_time_+%", + [2] = "skill_effect_duration_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["damage_over_time_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 35, + ["min"] = 25, + ["statOrder"] = 1233, + }, + ["skill_effect_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 11, + ["min"] = 7, + ["statOrder"] = 1918, + }, + }, + }, + [60] = { + ["da"] = 0, + ["dn"] = "Ritual of Flesh", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_life_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 29305, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(6-10)% increased maximum Life", + [2] = "Regenerate (0.7-1.2)% of Life per second", + }, + ["sortedStats"] = { + [1] = "maximum_life_+%", + [2] = "life_regeneration_rate_per_minute_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["life_regeneration_rate_per_minute_%"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 1.2, + ["min"] = 0.7, + ["statOrder"] = 1967, + }, + ["maximum_life_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1593, + }, + }, + }, + [61] = { + ["da"] = 0, + ["dn"] = "Flesh Worship", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_life_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 87752, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(6-10)% increased maximum Life", + [2] = "0.4% of Attack Damage Leeched as Life", + }, + ["sortedStats"] = { + [1] = "maximum_life_+%", + [2] = "base_life_leech_from_attack_damage_permyriad", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_life_leech_from_attack_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.4, + ["min"] = 0.4, + ["statOrder"] = 1687, + }, + ["maximum_life_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1593, + }, + }, + }, + [62] = { + ["da"] = 0, + ["dn"] = "Ritual of Memory", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_mana_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 76549, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(17-23)% increased maximum Mana", + [2] = "(15-25)% increased Mana Regeneration Rate", + }, + ["sortedStats"] = { + [1] = "maximum_mana_+%", + [2] = "mana_regeneration_rate_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["mana_regeneration_rate_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 25, + ["min"] = 15, + ["statOrder"] = 1607, + }, + ["maximum_mana_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 23, + ["min"] = 17, + ["statOrder"] = 1603, + }, + }, + }, + [63] = { + ["da"] = 0, + ["dn"] = "Automaton Studies", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_armour_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 69557, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(30-40)% increased Armour", + [2] = "(3-4)% additional Physical Damage Reduction", + }, + ["sortedStats"] = { + [1] = "physical_damage_reduction_rating_+%", + [2] = "base_additional_physical_damage_reduction_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_additional_physical_damage_reduction_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 4, + ["min"] = 3, + ["statOrder"] = 2296, + }, + ["physical_damage_reduction_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 30, + ["statOrder"] = 1563, + }, + }, + }, + [64] = { + ["da"] = 0, + ["dn"] = "Construct Studies", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_evasion_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 64898, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(30-40)% increased Evasion Rating", + [2] = "(5-7)% chance to Blind Enemies on Hit", + }, + ["sortedStats"] = { + [1] = "evasion_rating_+%", + [2] = "global_chance_to_blind_on_hit_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["evasion_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 30, + ["statOrder"] = 1571, + }, + ["global_chance_to_blind_on_hit_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 7, + ["min"] = 5, + ["statOrder"] = 11074, + }, + }, + }, + [65] = { + ["da"] = 0, + ["dn"] = "Energy Flow Studies", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_energy_shield_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 83885, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(8-12)% increased maximum Energy Shield", + [2] = "(10-15)% increased Energy Shield Recharge Rate", + }, + ["sortedStats"] = { + [1] = "maximum_energy_shield_+%", + [2] = "energy_shield_recharge_rate_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["energy_shield_recharge_rate_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 10, + ["statOrder"] = 1587, + }, + ["maximum_energy_shield_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 8, + ["statOrder"] = 1583, + }, + }, + }, + [66] = { + ["da"] = 0, + ["dn"] = "Soul Worship", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_energy_shield_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 1049, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(8-12)% increased maximum Energy Shield", + [2] = "0.3% of Spell Damage Leeched as Energy Shield", + }, + ["sortedStats"] = { + [1] = "maximum_energy_shield_+%", + [2] = "base_energy_shield_leech_from_spell_damage_permyriad", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_energy_shield_leech_from_spell_damage_permyriad"] = { + ["fmt"] = "g", + ["index"] = 2, + ["max"] = 0.3, + ["min"] = 0.3, + ["statOrder"] = 1745, + }, + ["maximum_energy_shield_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 8, + ["statOrder"] = 1583, + }, + }, + }, + [67] = { + ["da"] = 0, + ["dn"] = "Blood-Quenched Bulwark", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_block_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 5394, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(6-10) Life gained when you Block", + [2] = "+8% Chance to Block Attack Damage", + }, + ["sortedStats"] = { + [1] = "life_gained_on_block", + [2] = "additional_block_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["additional_block_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 2483, + }, + ["life_gained_on_block"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 6, + ["statOrder"] = 1780, + }, + }, + }, + [68] = { + ["da"] = 0, + ["dn"] = "Thaumaturgical Protection", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_block_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 76907, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "8% Chance to Block Spell Damage", + [2] = "(20-30)% increased Defences from Equipped Shield", + }, + ["sortedStats"] = { + [1] = "base_spell_block_%", + [2] = "shield_armour_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_spell_block_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1183, + }, + ["shield_armour_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 2017, + }, + }, + }, + [69] = { + ["da"] = 0, + ["dn"] = "Jungle Paths", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_dodge_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 40498, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(8-10)% chance to Avoid Elemental Ailments", + [2] = "(8-10)% chance to Avoid being Stunned", + }, + ["sortedStats"] = { + [1] = "avoid_all_elemental_status_%", + [2] = "base_avoid_stun_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["avoid_all_elemental_status_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1866, + }, + ["base_avoid_stun_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1874, + }, + }, + }, + [70] = { + ["da"] = 0, + ["dn"] = "Temple Paths", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_dodge_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 95964, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+6% chance to Suppress Spell Damage", + [2] = "+(8-10)% to all Elemental Resistances", + }, + ["sortedStats"] = { + [1] = "base_spell_suppression_chance_%", + [2] = "base_resist_all_elements_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_resist_all_elements_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1642, + }, + ["base_spell_suppression_chance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 6, + ["statOrder"] = 1167, + }, + }, + }, + [71] = { + ["da"] = 0, + ["dn"] = "Commanding Presence", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_aura_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 98699, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% increased Area of Effect of Aura Skills", + [2] = "(7-10)% increased effect of Non-Curse Auras from your Skills", + }, + ["sortedStats"] = { + [1] = "base_aura_area_of_effect_+%", + [2] = "non_curse_aura_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_aura_area_of_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 2247, + }, + ["non_curse_aura_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 7, + ["statOrder"] = 3602, + }, + }, + }, + [72] = { + ["da"] = 0, + ["dn"] = "Ancient Hex", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_curse_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 38490, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(4-6)% increased Effect of your Curses", + [2] = "Curse Skills have 20% increased Skill Effect Duration", + }, + ["sortedStats"] = { + [1] = "curse_effect_+%", + [2] = "curse_skill_effect_duration_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["curse_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2622, + }, + ["curse_skill_effect_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 6084, + }, + }, + }, + [73] = { + ["da"] = 0, + ["dn"] = "Cult of Fire", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_fire_resistance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 29481, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+1% to maximum Fire Resistance", + [2] = "+(20-30)% to Fire Resistance", + }, + ["sortedStats"] = { + [1] = "base_maximum_fire_damage_resistance_%", + [2] = "base_fire_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_fire_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 1648, + }, + ["base_maximum_fire_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1646, + }, + }, + }, + [74] = { + ["da"] = 0, + ["dn"] = "Cult of Ice", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_cold_resistance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 27195, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+1% to maximum Cold Resistance", + [2] = "+(20-30)% to Cold Resistance", + }, + ["sortedStats"] = { + [1] = "base_maximum_cold_damage_resistance_%", + [2] = "base_cold_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_cold_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 1654, + }, + ["base_maximum_cold_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1652, + }, + }, + }, + [75] = { + ["da"] = 0, + ["dn"] = "Cult of Lightning", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_lightning_resistance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 88478, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+1% to maximum Lightning Resistance", + [2] = "+(20-30)% to Lightning Resistance", + }, + ["sortedStats"] = { + [1] = "base_maximum_lightning_damage_resistance_%", + [2] = "base_lightning_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_lightning_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 20, + ["statOrder"] = 1659, + }, + ["base_maximum_lightning_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1657, + }, + }, + }, + [76] = { + ["da"] = 0, + ["dn"] = "Cult of Chaos", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_chaos_resistance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 95624, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+1% to maximum Chaos Resistance", + [2] = "+(13-19)% to Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "base_maximum_chaos_damage_resistance_%", + [2] = "base_chaos_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 19, + ["min"] = 13, + ["statOrder"] = 1664, + }, + ["base_maximum_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 1663, + }, + }, + }, + [77] = { + ["da"] = 0, + ["dn"] = "Might of the Vaal", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", + ["id"] = "vaal_notable_random_offense", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 59351, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + }, + ["sortedStats"] = { + }, + ["spc"] = { + }, + ["stats"] = { + }, + }, + [78] = { + ["da"] = 0, + ["dn"] = "Legacy of the Vaal", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", + ["id"] = "vaal_notable_random_defence", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 75827, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + }, + ["sortedStats"] = { + }, + ["spc"] = { + }, + ["stats"] = { + }, + }, + [79] = { + ["da"] = 0, + ["dn"] = "Strength of Blood", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/StrengthOfBlood.dds", + ["id"] = "karui_keystone_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 12, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Life Recovery from Non-Instant Leech is not applied", + [2] = "2% additional Physical Damage Reduction for every 3% Life Recovery per second from Leech", + }, + ["sortedStats"] = { + [1] = "keystone_strength_of_blood", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_strength_of_blood"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11146, + }, + }, + }, + [80] = { + ["da"] = 0, + ["dn"] = "Tempered by War", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/TemperedByWar.dds", + ["id"] = "karui_keystone_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 15, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "50% of Cold and Lightning Damage taken as Fire Damage", + [2] = "50% less Cold Resistance", + [3] = "50% less Lightning Resistance", + }, + ["sortedStats"] = { + [1] = "keystone_tempered_by_war", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_tempered_by_war"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11149, + }, + }, + }, + [81] = { + ["da"] = 0, + ["dn"] = "Glancing Blows", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlancingBlows.dds", + ["id"] = "karui_keystone_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 18, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Chance to Block Attack Damage is doubled", + [2] = "Chance to Block Spell Damage is doubled", + [3] = "You take 65% of Damage from Blocked Hits", + }, + ["sortedStats"] = { + [1] = "keystone_glancing_blows", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_glancing_blows"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11120, + }, + }, + }, + [82] = { + ["da"] = 0, + ["dn"] = "Chainbreaker", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/FocusedRage.dds", + ["id"] = "karui_keystone_3_v2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 21, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Mana Recovery from Regeneration is not applied", + [2] = "1 Rage Regenerated for every 25 Mana Regeneration per Second", + [3] = "Does not delay Inherent Loss of Rage", + [4] = "Skills Cost +3 Rage", + }, + ["sortedStats"] = { + [1] = "keystone_focused_rage", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_focused_rage"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11117, + }, + }, + }, + [83] = { + ["da"] = 0, + ["dn"] = "Wind Dancer", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/WindDancer.dds", + ["id"] = "maraketh_keystone_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 24, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% less Attack Damage taken if you haven't been Hit by an Attack Recently", + [2] = "10% more chance to Evade Attacks if you have been Hit by an Attack Recently", + [3] = "20% more Attack Damage taken if you have been Hit by an Attack Recently", + }, + ["sortedStats"] = { + [1] = "keystone_wind_dancer", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_wind_dancer"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11157, + }, + }, + }, + [84] = { + ["da"] = 0, + ["dn"] = "The Traitor", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/OasisKeystone.dds", + ["id"] = "maraketh_keystone_1_v2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 27, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Flasks Gain 4 Charges per empty Flask Slot every 5 seconds", + }, + ["sortedStats"] = { + [1] = "keystone_oasis", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_oasis"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11132, + }, + }, + }, + [85] = { + ["da"] = 0, + ["dn"] = "Dance with Death", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/SharpandBrittle.dds", + ["id"] = "maraketh_keystone_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 30, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Can't use Helmets", + [2] = "Your Critical Strike Chance is Lucky", + [3] = "Your Damage with Critical Strikes is Lucky", + [4] = "Enemies' Damage with Critical Strikes against you is Lucky", + }, + ["sortedStats"] = { + [1] = "keystone_sharp_and_brittle", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_sharp_and_brittle"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11143, + }, + }, + }, + [86] = { + ["da"] = 0, + ["dn"] = "Second Sight", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/TheBlindMonk.dds", + ["id"] = "maraketh_keystone_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 33, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "You are Blind", + [2] = "Blind does not affect your Light Radius", + [3] = "25% more Melee Critical Strike Chance while Blinded", + }, + ["sortedStats"] = { + [1] = "keystone_blind_monk", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_blind_monk"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11106, + }, + }, + }, + [87] = { + ["da"] = 0, + ["dn"] = "The Agnostic", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + ["id"] = "templar_keystone_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 36, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Removes all Energy Shield", + [2] = "While not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life", + }, + ["sortedStats"] = { + [1] = "keystone_miracle_of_thaumaturgy", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_miracle_of_thaumaturgy"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11130, + }, + }, + }, + [88] = { + ["da"] = 0, + ["dn"] = "Transcendence", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/TranscendenceKeystone.dds", + ["id"] = "templar_keystone_1_v2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 39, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Armour applies to Fire, Cold and Lightning Damage taken from Hits instead of Physical Damage", + [2] = "-15% to all maximum Elemental Resistances", + }, + ["sortedStats"] = { + [1] = "keystone_prismatic_bulwark", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_prismatic_bulwark"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11135, + }, + }, + }, + [89] = { + ["da"] = 0, + ["dn"] = "Inner Conviction", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/InnerConviction.dds", + ["id"] = "templar_keystone_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 42, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "3% more Spell Damage per Power Charge", + [2] = "Gain Power Charges instead of Frenzy Charges", + }, + ["sortedStats"] = { + [1] = "keystone_quiet_might", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_quiet_might"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11137, + }, + }, + }, + [90] = { + ["da"] = 0, + ["dn"] = "Power of Purpose", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/PowerOfPurpose.dds", + ["id"] = "templar_keystone_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 45, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% of Maximum Mana is Converted to twice that much Armour", + }, + ["sortedStats"] = { + [1] = "keystone_mental_conditioning", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_mental_conditioning"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11129, + }, + }, + }, + [91] = { + ["da"] = 0, + ["dn"] = "Devotion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNode.dds", + ["id"] = "templar_devotion_node", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 6194, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+10 to Devotion", + }, + ["sortedStats"] = { + [1] = "base_devotion", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_devotion"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 11028, + }, + }, + }, + [92] = { + ["da"] = 0, + ["dn"] = "Heated Devotion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_fire_conversion", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 36277, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% of Physical Damage Converted to Fire Damage while you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "physical_damage_%_to_convert_to_fire_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_%_to_convert_to_fire_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 9781, + }, + }, + }, + [93] = { + ["da"] = 0, + ["dn"] = "Calming Devotion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_cold_conversion", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 64088, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% of Physical Damage Converted to Cold Damage while you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "physical_damage_%_to_convert_to_cold_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_%_to_convert_to_cold_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 9780, + }, + }, + }, + [94] = { + ["da"] = 0, + ["dn"] = "Thundrous Devotion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_lightning_conversion", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 94707, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% of Physical Damage Converted to Lightning Damage while you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "physical_damage_%_to_convert_to_lightning_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_%_to_convert_to_lightning_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 9782, + }, + }, + }, + [95] = { + ["da"] = 0, + ["dn"] = "Thoughts and Prayers", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_mana_added_as_energy_shield", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 74973, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Gain 5% of Maximum Mana as Extra Maximum Energy Shield while you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "mana_%_to_add_as_energy_shield_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["mana_%_to_add_as_energy_shield_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 8301, + }, + }, + }, + [96] = { + ["da"] = 0, + ["dn"] = "Zealot", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_arcane_surge", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 10172, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Gain Arcane Surge on Hit with Spells if you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "gain_arcane_surge_on_hit_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["gain_arcane_surge_on_hit_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6817, + }, + }, + }, + [97] = { + ["da"] = 0, + ["dn"] = "Enduring Faith", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_minimum_endurance_charge", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 17606, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+1 to Minimum Endurance Charges while you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "minimum_endurance_charges_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["minimum_endurance_charges_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9386, + }, + }, + }, + [98] = { + ["da"] = 0, + ["dn"] = "Powerful Faith", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_minimum_power_charge", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 5178, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+1 to Minimum Power Charges while you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "minimum_power_charges_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["minimum_power_charges_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9391, + }, + }, + }, + [99] = { + ["da"] = 0, + ["dn"] = "Frenzied Faith", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_minimum_frenzy_charge", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 22257, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+1 to Minimum Frenzy Charges while you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "minimum_frenzy_charges_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["minimum_frenzy_charges_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 9388, + }, + }, + }, + [100] = { + ["da"] = 0, + ["dn"] = "Cloistered", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_consecrated_ground_ailments", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 14760, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Immune to Elemental Ailments while on Consecrated Ground if you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 7326, + }, + }, + }, + [101] = { + ["da"] = 0, + ["dn"] = "Martyr's Might", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_additional_physical_reduction", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 42889, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "5% additional Physical Damage Reduction while you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "physical_damage_reduction_%_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_reduction_%_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 9789, + }, + }, + }, + [102] = { + ["da"] = 0, + ["dn"] = "Intolerance of Sin", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_max_resistances", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 60270, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+1% to all maximum Resistances if you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "additional_maximum_all_resistances_%_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["additional_maximum_all_resistances_%_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 4608, + }, + }, + }, + [103] = { + ["da"] = 0, + ["dn"] = "Smite the Wicked", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_fire_exposure", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 27127, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% chance to inflict Fire Exposure on Hit if you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 7377, + }, + }, + }, + [104] = { + ["da"] = 0, + ["dn"] = "Smite the Ignorant", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_cold_exposure", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 82503, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% chance to inflict Cold Exposure on Hit if you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 7374, + }, + }, + }, + [105] = { + ["da"] = 0, + ["dn"] = "Smite the Heretical", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", + ["id"] = "templar_notable_lightning_exposure", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 28525, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% chance to inflict Lightning Exposure on Hit if you have at least 150 Devotion", + }, + ["sortedStats"] = { + [1] = "inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold", + }, + ["spc"] = { + }, + ["stats"] = { + ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 7381, + }, + }, + }, + [106] = { + ["da"] = 0, + ["dn"] = "Supreme Decadence", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeDecadence.dds", + ["id"] = "eternal_keystone_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 48, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Life Recovery from Flasks also applies to Energy Shield", + [2] = "30% less Life Recovery from Flasks", + }, + ["sortedStats"] = { + [1] = "keystone_emperors_heart", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_emperors_heart"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11114, + }, + }, + }, + [107] = { + ["da"] = 0, + ["dn"] = "Supreme Grandstanding", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeGrandstand.dds", + ["id"] = "eternal_keystone_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 51, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Nearby Allies and Enemies Share Charges with you", + [2] = "Enemies Hitting you have 10% chance to gain an Endurance, ", + [3] = "Frenzy or Power Charge", + }, + ["sortedStats"] = { + [1] = "keystone_magnetic_charge", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_magnetic_charge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11127, + }, + }, + }, + [108] = { + ["da"] = 0, + ["dn"] = "Supreme Ego", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeEgo.dds", + ["id"] = "eternal_keystone_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 54, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Auras from your Skills can only affect you", + [2] = "Aura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve", + [3] = "40% more Mana Reservation of Aura Skills", + }, + ["sortedStats"] = { + [1] = "keystone_supreme_ego", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_supreme_ego"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11147, + }, + }, + }, + [109] = { + ["da"] = 0, + ["dn"] = "Supreme Ostentation", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeProdigy.dds", + ["id"] = "eternal_keystone_3_v2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 57, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Ignore Attribute Requirements", + [2] = "Gain no inherent bonuses from Attributes", + }, + ["sortedStats"] = { + [1] = "keystone_supreme_prodigy", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_supreme_prodigy"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11148, + }, + }, + }, + [110] = { + ["da"] = 0, + ["dn"] = "Price of Glory", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireBlank.dds", + ["id"] = "eternal_small_blank", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 20196, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + }, + ["sortedStats"] = { + }, + ["spc"] = { + }, + ["stats"] = { + }, + }, + [111] = { + ["da"] = 0, + ["dn"] = "Flawless Execution", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_crit_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 14977, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Critical Strike Chance", + }, + ["sortedStats"] = { + [1] = "critical_strike_chance_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["critical_strike_chance_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 11063, + }, + }, + }, + [112] = { + ["da"] = 0, + ["dn"] = "Brutal Execution", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_crit_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 76777, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+40% to Critical Strike Multiplier", + }, + ["sortedStats"] = { + [1] = "base_critical_strike_multiplier_+", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_critical_strike_multiplier_+"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 40, + ["min"] = 40, + ["statOrder"] = 11064, + }, + }, + }, + [113] = { + ["da"] = 0, + ["dn"] = "Eternal Resilience", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_endurance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 5183, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Gain 1 Endurance Charge every second if you've been Hit Recently", + }, + ["sortedStats"] = { + [1] = "gain_endurance_charge_per_second_if_have_been_hit_recently", + }, + ["spc"] = { + }, + ["stats"] = { + ["gain_endurance_charge_per_second_if_have_been_hit_recently"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6838, + }, + }, + }, + [114] = { + ["da"] = 0, + ["dn"] = "Eternal Fortitude", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_endurance_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 80316, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "8% increased Armour per Endurance Charge", + }, + ["sortedStats"] = { + [1] = "physical_damage_reduction_rating_+%_per_endurance_charge", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_reduction_rating_+%_per_endurance_charge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 9798, + }, + }, + }, + [115] = { + ["da"] = 0, + ["dn"] = "Eternal Dominance", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_endurance_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 68905, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% increased Damage per Endurance Charge", + }, + ["sortedStats"] = { + [1] = "damage_+%_per_endurance_charge", + }, + ["spc"] = { + }, + ["stats"] = { + ["damage_+%_per_endurance_charge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 3235, + }, + }, + }, + [116] = { + ["da"] = 0, + ["dn"] = "Eternal Fervour", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_frenzy_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 14480, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% chance to gain a Frenzy Charge on Hit", + }, + ["sortedStats"] = { + [1] = "add_frenzy_charge_on_skill_hit_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["add_frenzy_charge_on_skill_hit_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1856, + }, + }, + }, + [117] = { + ["da"] = 0, + ["dn"] = "Eternal Adaptiveness", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_frenzy_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 93682, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "8% increased Evasion Rating per Frenzy Charge", + }, + ["sortedStats"] = { + [1] = "evasion_rating_+%_per_frenzy_charge", + }, + ["spc"] = { + }, + ["stats"] = { + ["evasion_rating_+%_per_frenzy_charge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1578, + }, + }, + }, + [118] = { + ["da"] = 0, + ["dn"] = "Eternal Bloodlust", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_frenzy_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 80835, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% increased Damage per Frenzy Charge", + }, + ["sortedStats"] = { + [1] = "damage_+%_per_frenzy_charge", + }, + ["spc"] = { + }, + ["stats"] = { + ["damage_+%_per_frenzy_charge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 3322, + }, + }, + }, + [119] = { + ["da"] = 0, + ["dn"] = "Eternal Subjugation", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_power_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 38654, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% chance to gain a Power Charge on Critical Strike", + }, + ["sortedStats"] = { + [1] = "add_power_charge_on_critical_strike_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["add_power_charge_on_critical_strike_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1853, + }, + }, + }, + [120] = { + ["da"] = 0, + ["dn"] = "Eternal Separation", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_power_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 79623, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "4% increased Energy Shield per Power Charge", + }, + ["sortedStats"] = { + [1] = "energy_shield_+%_per_power_charge", + }, + ["spc"] = { + }, + ["stats"] = { + ["energy_shield_+%_per_power_charge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 6531, + }, + }, + }, + [121] = { + ["da"] = 0, + ["dn"] = "Eternal Exploitation", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_power_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 6774, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% increased Damage per Power Charge", + }, + ["sortedStats"] = { + [1] = "damage_+%_per_power_charge", + }, + ["spc"] = { + }, + ["stats"] = { + ["damage_+%_per_power_charge"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6152, + }, + }, + }, + [122] = { + ["da"] = 0, + ["dn"] = "Rites of Lunaris", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_chill_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 68329, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "30% increased Effect of Chill", + }, + ["sortedStats"] = { + [1] = "chill_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["chill_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 11087, + }, + }, + }, + [123] = { + ["da"] = 0, + ["dn"] = "Rites of Solaris", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_chill_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 52806, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% chance to Avoid being Chilled", + }, + ["sortedStats"] = { + [1] = "base_avoid_chill_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_avoid_chill_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1867, + }, + }, + }, + [124] = { + ["da"] = 0, + ["dn"] = "Virtue Gem Surgery", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_shock_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 79878, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "30% increased Effect of Shock", + }, + ["sortedStats"] = { + [1] = "shock_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["shock_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 11095, + }, + }, + }, + [125] = { + ["da"] = 0, + ["dn"] = "Rural Life", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_shock_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 7265, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% chance to Avoid being Shocked", + }, + ["sortedStats"] = { + [1] = "base_avoid_shock_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_avoid_shock_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1871, + }, + }, + }, + [126] = { + ["da"] = 0, + ["dn"] = "City Walls", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_block_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 51502, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+12% Chance to Block Attack Damage", + }, + ["sortedStats"] = { + [1] = "additional_block_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["additional_block_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 2483, + }, + }, + }, + [127] = { + ["da"] = 0, + ["dn"] = "Sceptre Pinnacle", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_block_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 69709, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "12% Chance to Block Spell Damage", + }, + ["sortedStats"] = { + [1] = "base_spell_block_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_spell_block_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 1183, + }, + }, + }, + [128] = { + ["da"] = 0, + ["dn"] = "Secret Tunnels", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_dodge_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 54984, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% chance to Avoid Elemental Ailments", + }, + ["sortedStats"] = { + [1] = "avoid_all_elemental_status_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["avoid_all_elemental_status_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1866, + }, + }, + }, + [129] = { + ["da"] = 0, + ["dn"] = "Purity Rebel", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_dodge_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 9731, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+12% chance to Suppress Spell Damage", + }, + ["sortedStats"] = { + [1] = "base_spell_suppression_chance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_spell_suppression_chance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 1167, + }, + }, + }, + [130] = { + ["da"] = 0, + ["dn"] = "Superiority", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_aura_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 65124, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "12% increased effect of Non-Curse Auras from your Skills", + }, + ["sortedStats"] = { + [1] = "non_curse_aura_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["non_curse_aura_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 3602, + }, + }, + }, + [131] = { + ["da"] = 0, + ["dn"] = "Slum Lord", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_minion_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 7309, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Minions deal 80% increased Damage", + }, + ["sortedStats"] = { + [1] = "minion_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["minion_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1996, + }, + }, + }, + [132] = { + ["da"] = 0, + ["dn"] = "Axiom Warden", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_minion_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 19927, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Minions have 80% increased maximum Life", + }, + ["sortedStats"] = { + [1] = "minion_maximum_life_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["minion_maximum_life_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1789, + }, + }, + }, + [133] = { + ["da"] = 0, + ["dn"] = "Gemling Inquisition", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_spell_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 80563, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Spell Damage", + }, + ["sortedStats"] = { + [1] = "spell_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["spell_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1246, + }, + }, + }, + [134] = { + ["da"] = 0, + ["dn"] = "Gemling Ambush", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_spell_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 68382, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Spell Critical Strike Chance", + }, + ["sortedStats"] = { + [1] = "spell_critical_strike_chance_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["spell_critical_strike_chance_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1481, + }, + }, + }, + [135] = { + ["da"] = 0, + ["dn"] = "Night of a Thousand Ribbons", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_fire_attack_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 99311, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Fire Damage with Attack Skills", + }, + ["sortedStats"] = { + [1] = "fire_damage_with_attack_skills_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["fire_damage_with_attack_skills_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 6664, + }, + }, + }, + [136] = { + ["da"] = 0, + ["dn"] = "Bloody Flowers' Rebellion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_cold_attack_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 67225, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Cold Damage with Attack Skills", + }, + ["sortedStats"] = { + [1] = "cold_damage_with_attack_skills_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["cold_damage_with_attack_skills_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 5903, + }, + }, + }, + [137] = { + ["da"] = 0, + ["dn"] = "Chitus' Heart", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_lightning_attack_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 82524, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Lightning Damage with Attack Skills", + }, + ["sortedStats"] = { + [1] = "lightning_damage_with_attack_skills_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["lightning_damage_with_attack_skills_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 7555, + }, + }, + }, + [138] = { + ["da"] = 0, + ["dn"] = "Gemling Training", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_physical_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 98014, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Physical Damage", + }, + ["sortedStats"] = { + [1] = "physical_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 11094, + }, + }, + }, + [139] = { + ["da"] = 0, + ["dn"] = "Rigwald's Might", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_physical_damage_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 36656, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Melee Physical Damage", + }, + ["sortedStats"] = { + [1] = "melee_physical_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["melee_physical_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 2004, + }, + }, + }, + [140] = { + ["da"] = 0, + ["dn"] = "Geofri's End", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_bleed_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 36158, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "50% increased Damage with Bleeding", + [2] = "Bleeding you inflict deals Damage 10% faster", + }, + ["sortedStats"] = { + [1] = "bleeding_damage_+%", + [2] = "faster_bleed_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["bleeding_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 3204, + }, + ["faster_bleed_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 6632, + }, + }, + }, + [141] = { + ["da"] = 0, + ["dn"] = "Lioneye's Focus", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_projectile_attack_damage_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 94297, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Projectile Attack Damage", + }, + ["sortedStats"] = { + [1] = "projectile_attack_damage_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["projectile_attack_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 2020, + }, + }, + }, + [142] = { + ["da"] = 0, + ["dn"] = "Voll's Coup", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_attack_speed_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 94732, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% increased Attack Speed", + }, + ["sortedStats"] = { + [1] = "attack_speed_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["attack_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1434, + }, + }, + }, + [143] = { + ["da"] = 0, + ["dn"] = "Dialla's Wit", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_cast_speed_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 81833, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% increased Cast Speed", + }, + ["sortedStats"] = { + [1] = "base_cast_speed_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_cast_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1470, + }, + }, + }, + [144] = { + ["da"] = 0, + ["dn"] = "Discerning Taste", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_rarity_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 86198, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "12% increased Mana Reservation Efficiency of Skills", + }, + ["sortedStats"] = { + [1] = "base_mana_reservation_efficiency_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_mana_reservation_efficiency_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 2251, + }, + }, + }, + [145] = { + ["da"] = 0, + ["dn"] = "Gleaming Legion", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_armour_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 67997, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Armour", + }, + ["sortedStats"] = { + [1] = "physical_damage_reduction_rating_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_reduction_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1563, + }, + }, + }, + [146] = { + ["da"] = 0, + ["dn"] = "Shadowy Streets", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_evasion_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 65414, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "80% increased Evasion Rating", + }, + ["sortedStats"] = { + [1] = "evasion_rating_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["evasion_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 80, + ["min"] = 80, + ["statOrder"] = 1571, + }, + }, + }, + [147] = { + ["da"] = 0, + ["dn"] = "Crematorium Worker", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_fire_resistance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 54300, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+50% to Fire Resistance", + }, + ["sortedStats"] = { + [1] = "base_fire_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_fire_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1648, + }, + }, + }, + [148] = { + ["da"] = 0, + ["dn"] = "Street Urchin", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_cold_resistance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 88577, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+50% to Cold Resistance", + }, + ["sortedStats"] = { + [1] = "base_cold_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_cold_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1654, + }, + }, + }, + [149] = { + ["da"] = 0, + ["dn"] = "Baleful Augmentation", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_lightning_resistance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 40681, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+50% to Lightning Resistance", + }, + ["sortedStats"] = { + [1] = "base_lightning_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_lightning_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1659, + }, + }, + }, + [150] = { + ["da"] = 0, + ["dn"] = "With Eyes Open", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_chaos_resistance_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 5337, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+37% to Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "base_chaos_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 37, + ["min"] = 37, + ["statOrder"] = 1664, + }, + }, + }, + [151] = { + ["da"] = 0, + ["dn"] = "Robust Diet", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_life_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 35290, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% increased maximum Life", + }, + ["sortedStats"] = { + [1] = "maximum_life_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["maximum_life_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 1593, + }, + }, + }, + [152] = { + ["da"] = 0, + ["dn"] = "Pooled Resources", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_mana_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 1685, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "30% increased maximum Mana", + }, + ["sortedStats"] = { + [1] = "maximum_mana_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["maximum_mana_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 1603, + }, + }, + }, + [153] = { + ["da"] = 0, + ["dn"] = "Laureate", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_mana_regen_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 9588, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "50% increased Mana Regeneration Rate", + }, + ["sortedStats"] = { + [1] = "mana_regeneration_rate_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["mana_regeneration_rate_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 50, + ["min"] = 50, + ["statOrder"] = 1607, + }, + }, + }, + [154] = { + ["da"] = 0, + ["dn"] = "War Games", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", + ["id"] = "eternal_notable_accuracy_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 56816, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "25% increased Accuracy Rating", + }, + ["sortedStats"] = { + [1] = "accuracy_rating_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["accuracy_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 11079, + }, + }, + }, + [155] = { + ["da"] = 0, + ["dn"] = "Freshly Brewed", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", + ["id"] = "eternal_notable_flask_duration_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 66099, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% increased Flask Effect Duration", + }, + ["sortedStats"] = { + [1] = "flask_duration_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["flask_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 2210, + }, + }, + }, + [156] = { + ["da"] = 0, + ["dn"] = "Warding Flasks", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 79440, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% increased Flask Effect Duration", + [2] = "20% increased Ward during any Flask Effect", + }, + ["sortedStats"] = { + [1] = "flask_duration_+%", + [2] = "ward_+%_during_any_flask_effect", + }, + ["spc"] = { + }, + ["stats"] = { + ["flask_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2210, + }, + ["ward_+%_during_any_flask_effect"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 10735, + }, + }, + }, + [157] = { + ["da"] = 0, + ["dn"] = "Starlight Swig", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 97049, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% increased Flask Charges gained", + [2] = "15% chance for Ward to be Restored when you Use a Flask", + }, + ["sortedStats"] = { + [1] = "charges_gained_+%", + [2] = "ward_%_chance_to_restore_on_flask_use", + }, + ["spc"] = { + }, + ["stats"] = { + ["charges_gained_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2206, + }, + ["ward_%_chance_to_restore_on_flask_use"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 10734, + }, + }, + }, + [158] = { + ["da"] = 0, + ["dn"] = "Enduring Sigil", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 33869, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% increased Endurance Charge Duration", + [2] = "Gain 1 Endurance Charge when Ward Breaks", + }, + ["sortedStats"] = { + [1] = "endurance_charge_duration_+%", + [2] = "gain_x_endurance_charge_when_ward_breaks", + }, + ["spc"] = { + }, + ["stats"] = { + ["endurance_charge_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 2148, + }, + ["gain_x_endurance_charge_when_ward_breaks"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6926, + }, + }, + }, + [159] = { + ["da"] = 0, + ["dn"] = "Powering Sigil", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_4", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 20074, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% increased Power Charge Duration", + [2] = "Gain 1 Power Charge when Ward Breaks", + }, + ["sortedStats"] = { + [1] = "power_charge_duration_+%", + [2] = "gain_x_power_charge_when_ward_breaks", + }, + ["spc"] = { + }, + ["stats"] = { + ["gain_x_power_charge_when_ward_breaks"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6930, + }, + ["power_charge_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 2165, + }, + }, + }, + [160] = { + ["da"] = 0, + ["dn"] = "Frenzying Sigil", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable_5", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 29349, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% increased Frenzy Charge Duration", + [2] = "Gain 1 Frenzy Charge when Ward Breaks", + }, + ["sortedStats"] = { + [1] = "base_frenzy_charge_duration_+%", + [2] = "gain_x_frenzy_charge_when_ward_breaks", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_frenzy_charge_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 2150, + }, + ["gain_x_frenzy_charge_when_ward_breaks"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 6929, + }, + }, + }, + [161] = { + ["da"] = 0, + ["dn"] = "Fortified Ward", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable_6", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 39254, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% faster Restoration of Ward", + [2] = "30% increased Armour while you have Unbroken Ward", + }, + ["sortedStats"] = { + [1] = "ward_delay_recovery_+%", + [2] = "armour_+%_while_you_have_unbroken_ward", + }, + ["spc"] = { + }, + ["stats"] = { + ["armour_+%_while_you_have_unbroken_ward"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 4799, + }, + ["ward_delay_recovery_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1553, + }, + }, + }, + [162] = { + ["da"] = 0, + ["dn"] = "Elusive Ward", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable_7", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 74833, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% faster Restoration of Ward", + [2] = "30% increased Evasion Rating while you have Unbroken Ward", + }, + ["sortedStats"] = { + [1] = "ward_delay_recovery_+%", + [2] = "evasion_rating_+%_while_you_have_unbroken_ward", + }, + ["spc"] = { + }, + ["stats"] = { + ["evasion_rating_+%_while_you_have_unbroken_ward"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 6570, + }, + ["ward_delay_recovery_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1553, + }, + }, + }, + [163] = { + ["da"] = 0, + ["dn"] = "Crown of Kalguur", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable_9", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 56253, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+2 to Ward per 10 Armour on Equipped Helmet", + }, + ["sortedStats"] = { + [1] = "gain_x_ward_per_10_armour_on_helmet", + }, + ["spc"] = { + }, + ["stats"] = { + ["gain_x_ward_per_10_armour_on_helmet"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 6942, + }, + }, + }, + [164] = { + ["da"] = 0, + ["dn"] = "Grip of Kalguur", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable_10", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 82715, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+4 to Ward per 10 Evasion Rating on Equipped Gloves", + }, + ["sortedStats"] = { + [1] = "gain_x_ward_per_10_evasion_on_gloves", + }, + ["spc"] = { + }, + ["stats"] = { + ["gain_x_ward_per_10_evasion_on_gloves"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 4, + ["statOrder"] = 6944, + }, + }, + }, + [165] = { + ["da"] = 0, + ["dn"] = "Stride of Kalguur", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_11", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 52436, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+8 to Ward per 10 Energy Shield on Equipped Boots", + }, + ["sortedStats"] = { + [1] = "gain_x_ward_per_10_energy_shield_on_boots", + }, + ["spc"] = { + }, + ["stats"] = { + ["gain_x_ward_per_10_energy_shield_on_boots"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 6943, + }, + }, + }, + [166] = { + ["da"] = 0, + ["dn"] = "Persisting Drive", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable_12", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 2468, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% faster Restoration of Ward", + [2] = "30% increased Damage while you have Unbroken Ward", + }, + ["sortedStats"] = { + [1] = "ward_delay_recovery_+%", + [2] = "damage_+%_while_you_have_unbroken_ward", + }, + ["spc"] = { + }, + ["stats"] = { + ["damage_+%_while_you_have_unbroken_ward"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 30, + ["min"] = 30, + ["statOrder"] = 6105, + }, + ["ward_delay_recovery_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 1553, + }, + }, + }, + [167] = { + ["da"] = 0, + ["dn"] = "Shattered Piercing ", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_13", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 30208, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "15% increased Elemental Damage", + [2] = "Damage Penetrates 8% Elemental Resistances while your Ward is Broken", + }, + ["sortedStats"] = { + [1] = "elemental_damage_+%", + [2] = "damage_penetrates_%_elemental_resistance_while_you_have_broken_ward", + }, + ["spc"] = { + }, + ["stats"] = { + ["damage_penetrates_%_elemental_resistance_while_you_have_broken_ward"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 6116, + }, + ["elemental_damage_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 15, + ["min"] = 15, + ["statOrder"] = 2003, + }, + }, + }, + [168] = { + ["da"] = 0, + ["dn"] = "Vengeful Runes", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_14", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 29546, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "8% increased Area of Effect of Aura Skills", + [2] = "12% increased effect of Non-Curse Auras from your skills while your Ward is Broken", + }, + ["sortedStats"] = { + [1] = "base_aura_area_of_effect_+%", + [2] = "non_curse_aura_effect_+%_while_you_have_broken_ward", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_aura_area_of_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 2247, + }, + ["non_curse_aura_effect_+%_while_you_have_broken_ward"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 9627, + }, + }, + }, + [169] = { + ["da"] = 0, + ["dn"] = "Mage's Ward", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_15", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 20764, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "5% Chance to Block Spell Damage", + [2] = "10% chance to Restore Ward when you Block", + }, + ["sortedStats"] = { + [1] = "base_spell_block_%", + [2] = "restore_ward_on_block_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_spell_block_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 1183, + }, + ["restore_ward_on_block_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10070, + }, + }, + }, + [170] = { + ["da"] = 0, + ["dn"] = "Warrior's Ward", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable_16", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 7170, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "5% Chance to Block Attack Damage", + [2] = "10% chance to Restore Ward when you Block", + }, + ["sortedStats"] = { + [1] = "monster_base_block_%", + [2] = "restore_ward_on_block_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["monster_base_block_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 5, + ["min"] = 5, + ["statOrder"] = 1162, + }, + ["restore_ward_on_block_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 10070, + }, + }, + }, + [171] = { + ["da"] = 0, + ["dn"] = "Starborn Birth", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_17", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 95734, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "25% increased Ward", + }, + ["sortedStats"] = { + [1] = "ward_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["ward_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 25, + ["min"] = 25, + ["statOrder"] = 1551, + }, + }, + }, + [172] = { + ["da"] = 0, + ["dn"] = "Pure Faith", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_18", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 81354, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "12% increased Ward", + [2] = "+8% to Chaos Resistance", + }, + ["sortedStats"] = { + [1] = "ward_+%", + [2] = "base_chaos_damage_resistance_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_chaos_damage_resistance_%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1664, + }, + ["ward_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 1551, + }, + }, + }, + [173] = { + ["da"] = 0, + ["dn"] = "Magic Faith", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_19", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 78304, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "12% increased Ward", + [2] = "8% increased maximum Energy Shield", + }, + ["sortedStats"] = { + [1] = "ward_+%", + [2] = "maximum_energy_shield_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["maximum_energy_shield_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 8, + ["min"] = 8, + ["statOrder"] = 1583, + }, + ["ward_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 1551, + }, + }, + }, + [174] = { + ["da"] = 0, + ["dn"] = "Guile Faith", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable_20", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 15373, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "12% increased Ward", + [2] = "16% increased Evasion Rating", + }, + ["sortedStats"] = { + [1] = "ward_+%", + [2] = "evasion_rating_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["evasion_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 16, + ["min"] = 16, + ["statOrder"] = 1571, + }, + ["ward_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 1551, + }, + }, + }, + [175] = { + ["da"] = 0, + ["dn"] = "Resolute Faith", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable_21", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 27792, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "12% increased Ward", + [2] = "16% increased Armour", + }, + ["sortedStats"] = { + [1] = "ward_+%", + [2] = "physical_damage_reduction_rating_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["physical_damage_reduction_rating_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 16, + ["min"] = 16, + ["statOrder"] = 1563, + }, + ["ward_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 1551, + }, + }, + }, + [176] = { + ["da"] = 0, + ["dn"] = "Starsoaked Time", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", + ["id"] = "kalguur_notable_22", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 27192, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% faster Restoration of Ward", + [2] = "20% faster start of Energy Shield Recharge", + }, + ["sortedStats"] = { + [1] = "ward_delay_recovery_+%", + [2] = "energy_shield_delay_-%", + }, + ["spc"] = { + }, + ["stats"] = { + ["energy_shield_delay_-%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1584, + }, + ["ward_delay_recovery_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 1553, + }, + }, + }, + [177] = { + ["da"] = 0, + ["dn"] = "Etched Runes", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable_23", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 45680, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "12% increased Ward", + [2] = "20% increased Ward from Equipped Armour Items", + }, + ["sortedStats"] = { + [1] = "ward_+%", + [2] = "ward_from_armour_item_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["ward_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 12, + ["statOrder"] = 1551, + }, + ["ward_from_armour_item_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 20, + ["min"] = 20, + ["statOrder"] = 10737, + }, + }, + }, + [178] = { + ["da"] = 0, + ["dn"] = "Cleansing Runes", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", + ["id"] = "kalguur_notable_24", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 79160, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Remove a random Damaging Ailment when Ward is Restored", + }, + ["sortedStats"] = { + [1] = "remove_random_damaging_ailment_when_ward_restores", + [2] = "self_damaging_ailment_duration_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["remove_random_damaging_ailment_when_ward_restores"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 10059, + }, + ["self_damaging_ailment_duration_+%"] = { + ["index"] = 2, + ["max"] = -25, + ["min"] = -25, + }, + }, + }, + [179] = { + ["da"] = 0, + ["dn"] = "Regenerative Runes", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", + ["id"] = "kalguur_notable_25", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = true, + ["o"] = 3, + ["oidx"] = 64617, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "10% increased Flask Effect Duration", + [2] = "Iron Flasks gain 2 charges when your Ward Breaks", + }, + ["sortedStats"] = { + [1] = "flask_duration_+%", + [2] = "iron_flasks_gain_x_charge_when_ward_breaks", + }, + ["spc"] = { + }, + ["stats"] = { + ["flask_duration_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 10, + ["min"] = 10, + ["statOrder"] = 2210, + }, + ["iron_flasks_gain_x_charge_when_ward_breaks"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 2, + ["min"] = 2, + ["statOrder"] = 7402, + }, + }, + }, + [180] = { + ["da"] = 0, + ["dn"] = "Black Scythe Training", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.dds", + ["id"] = "kalguur_keystone_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 60, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Removes all Energy Shield", + [2] = "Chance to Evade Hits is based off of 200% of your Ward instead of your Evasion Rating", + [3] = "Physical Damage Reduction from Hits is based off of 200% of your Ward instead of your Armour", + }, + ["sortedStats"] = { + [1] = "keystone_voranas_adaption", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_voranas_adaption"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11155, + }, + }, + }, + [181] = { + ["da"] = 0, + ["dn"] = "Celestial Mathematics", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.dds", + ["id"] = "kalguur_keystone_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 63, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "While you have Unbroken Ward, your next non-channelling Attack you Use yourself breaks your Ward to gain Added Cold Damage equal to 25% of Ward", + }, + ["sortedStats"] = { + [1] = "keystone_uhtreds_fury", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_uhtreds_fury"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11152, + }, + }, + }, + [182] = { + ["da"] = 0, + ["dn"] = "The Unbreaking Circle", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.dds", + ["id"] = "kalguur_keystone_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 66, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "40% less Ward", + [2] = "Ward has a 60% chance to not Break", + }, + ["sortedStats"] = { + [1] = "keystone_medveds_exchange", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_medveds_exchange"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11128, + }, + }, + }, + [183] = { + ["da"] = 0, + ["dn"] = "Overwhelming Hate", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlintingDespairMurderous1.dds", + ["id"] = "abyss_murderous_keystone", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 69, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "20% less maximum Life", + [2] = "Increases and reductions to Maximum Life also apply to Maximum Rage at 20% Value", + }, + ["sortedStats"] = { + [1] = "keystone_abyss_murderous", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_abyss_murderous"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11102, + }, + }, + }, + [184] = { + ["da"] = 0, + ["dn"] = "Weighted Exchange", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlintingDespairSearching1.dds", + ["id"] = "abyss_searching_keystone", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 72, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Take 15% more damage from Non-Critical Strikes", + [2] = "Take 30% less damage from Critical Strikes", + }, + ["sortedStats"] = { + [1] = "keystone_abyss_searching", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_abyss_searching"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11103, + }, + }, + }, + [185] = { + ["da"] = 0, + ["dn"] = "Reconstructed Essence", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlintingDespairHypnotic1.dds", + ["id"] = "abyss_hypnotic_keystone", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 75, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Life Recoup also recovers Mana", + [2] = "50% less recovery from Recoup", + }, + ["sortedStats"] = { + [1] = "keystone_abyss_hypnotic", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_abyss_hypnotic"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11101, + }, + }, + }, + [186] = { + ["da"] = 0, + ["dn"] = "The Loyal Few", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlintingDespairGhastly1.dds", + ["id"] = "abyss_ghastly_keystone", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = true, + ["m"] = false, + ["not"] = false, + ["o"] = 4, + ["oidx"] = 78, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Minions take 10% less Damage while you have a Zombie", + [2] = "Minions deal 10% more Damage while you have a Skeleton", + [3] = "Minions gain 10% of Non-Chaos Damage as extra Chaos Damage while you have a Spectre", + [4] = "Maximum number of raised Spectres, Skeletons and Zombies is 1", + }, + ["sortedStats"] = { + [1] = "keystone_abyss_ghastly", + }, + ["spc"] = { + }, + ["stats"] = { + ["keystone_abyss_ghastly"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11100, + }, + }, + }, + [187] = { + ["da"] = 0, + ["dn"] = "Sanguine Bargain", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlintingDespairMurderous2.dds", + ["id"] = "abyss_special_ascendancy_notable_1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 27124, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Attacks gain 1% more damage for each 2% of your Maximum Life they cost if Life Cost is not higher than the maximum you could spend", + [2] = "Attack Skills cost Life instead of Mana", + }, + ["sortedStats"] = { + [1] = "reclaimed_malevolence_notable_abyss_murderous", + }, + ["spc"] = { + }, + ["stats"] = { + ["reclaimed_malevolence_notable_abyss_murderous"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11160, + }, + }, + }, + [188] = { + ["da"] = 0, + ["dn"] = "Ephemeral Bolts", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlintingDespairSearching2.dds", + ["id"] = "abyss_special_ascendancy_notable_2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 82620, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Projectiles have 5 metres maximum Direct Flight", + [2] = "40% more Projectile Speed", + }, + ["sortedStats"] = { + [1] = "reclaimed_malevolence_notable_abyss_searching", + }, + ["spc"] = { + }, + ["stats"] = { + ["reclaimed_malevolence_notable_abyss_searching"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11161, + }, + }, + }, + [189] = { + ["da"] = 0, + ["dn"] = "From Below", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlintingDespairHypnotic2.dds", + ["id"] = "abyss_special_ascendancy_notable_3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 84022, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Insufficient Mana doesn't prevent your Spells", + [2] = "Cannot recover Mana", + }, + ["sortedStats"] = { + [1] = "reclaimed_malevolence_notable_abyss_hypnotic", + }, + ["spc"] = { + }, + ["stats"] = { + ["reclaimed_malevolence_notable_abyss_hypnotic"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11159, + }, + }, + }, + [190] = { + ["da"] = 0, + ["dn"] = "Spiteful Allies", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/GlintingDespairGhastly2.dds", + ["id"] = "abyss_special_ascendancy_notable_4", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 37694, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Minions Impale on Hit", + }, + ["sortedStats"] = { + [1] = "reclaimed_malevolence_notable_abyss_ghastly", + }, + ["spc"] = { + }, + ["stats"] = { + ["reclaimed_malevolence_notable_abyss_ghastly"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 1, + ["min"] = 1, + ["statOrder"] = 11158, + }, + }, + }, + [191] = { + ["da"] = 0, + ["dn"] = "Life", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute1", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 88895, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(9-12) to maximum Life", + }, + ["sortedStats"] = { + [1] = "base_maximum_life", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_maximum_life"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1591, + }, + }, + }, + [192] = { + ["da"] = 0, + ["dn"] = "Mana ", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute2", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 78681, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(8-11) to maximum Mana", + }, + ["sortedStats"] = { + [1] = "base_maximum_mana", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_maximum_mana"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 11, + ["min"] = 8, + ["statOrder"] = 1602, + }, + }, + }, + [193] = { + ["da"] = 0, + ["dn"] = "Energy Shield Regeneration", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute3", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 55867, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Regenerate (9-12) Energy Shield per second", + }, + ["sortedStats"] = { + [1] = "energy_shield_regeneration_rate_per_second", + }, + ["spc"] = { + }, + ["stats"] = { + ["energy_shield_regeneration_rate_per_second"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 6549, + }, + }, + }, + [194] = { + ["da"] = 0, + ["dn"] = "Life Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalYouth.dds", - ["id"] = "vaal_keystone_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute4", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 3, + ["o"] = 3, + ["oidx"] = 79194, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "50% less Life Regeneration Rate", - [2] = "50% less maximum Total Life Recovery per Second from Leech", - [3] = "Energy Shield Recharge instead applies to Life", + [1] = "Regenerate (4.5-6) Life per second", }, ["sortedStats"] = { - [1] = "keystone_eternal_youth", + [1] = "base_life_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["keystone_eternal_youth"] = { - ["fmt"] = "d", + ["base_life_regeneration_rate_per_minute"] = { + ["fmt"] = "g", + ["index"] = 1, + ["max"] = 6, + ["min"] = 4.5, + ["statOrder"] = 1596, + }, + }, + }, + [195] = { + ["da"] = 0, + ["dn"] = "Mana Regeneration", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute5", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 1855, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "Regenerate (0.6-1) Mana per second", + }, + ["sortedStats"] = { + [1] = "base_mana_regeneration_rate_per_minute", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_mana_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10939, + ["min"] = 0.6, + ["statOrder"] = 1605, }, }, }, - [3] = { + [196] = { ["da"] = 0, - ["dn"] = "Immortal Ambition", + ["dn"] = "Armour", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/SoulTetherKeystone.dds", - ["id"] = "vaal_keystone_2_v2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute6", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 6, + ["o"] = 3, + ["oidx"] = 55548, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Energy Shield starts at zero", - [2] = "Cannot Recharge or Regenerate Energy Shield", - [3] = "Lose 5% of Energy Shield per second", - [4] = "Life Leech effects are not removed when Unreserved Life is Filled", - [5] = "Life Leech effects Recover Energy Shield instead while on Full Life", + [1] = "+(36-60) to Armour", }, ["sortedStats"] = { - [1] = "keystone_soul_tether", + [1] = "base_physical_damage_reduction_rating", }, ["spc"] = { }, ["stats"] = { - ["keystone_soul_tether"] = { + ["base_physical_damage_reduction_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10966, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1561, }, }, }, - [4] = { + [197] = { ["da"] = 0, - ["dn"] = "Corrupted Soul", + ["dn"] = "Evasion Rating", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/CorruptedDefences.dds", - ["id"] = "vaal_keystone_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute7", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 9, + ["o"] = 3, + ["oidx"] = 87796, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(36-60) to Evasion Rating", + }, + ["sortedStats"] = { + [1] = "base_evasion_rating", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_evasion_rating"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1566, + }, + }, + }, + [198] = { + ["da"] = 0, + ["dn"] = "Energy Shield", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute8", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 29714, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "+(9-12) to maximum Energy Shield", + }, + ["sortedStats"] = { + [1] = "base_maximum_energy_shield", + }, + ["spc"] = { + }, + ["stats"] = { + ["base_maximum_energy_shield"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1580, + }, + }, + }, + [199] = { + ["da"] = 0, + ["dn"] = "Impale Effect", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute9", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 51555, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(2-4)% increased Impale Effect", + }, + ["sortedStats"] = { + [1] = "impale_debuff_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["impale_debuff_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 7343, + }, + }, + }, + [200] = { + ["da"] = 0, + ["dn"] = "Mana Recoup", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute10", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 60518, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(2-3)% of Damage taken Recouped as Mana", + }, + ["sortedStats"] = { + [1] = "damage_taken_goes_to_mana_%", + }, + ["spc"] = { + }, + ["stats"] = { + ["damage_taken_goes_to_mana_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2480, + }, + }, + }, + [201] = { + ["da"] = 0, + ["dn"] = "Cold Ailment Effect", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute11", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 32845, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(10-20)% increased Effect of Cold Ailments", + }, + ["sortedStats"] = { + [1] = "cold_ailment_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["cold_ailment_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 10, + ["statOrder"] = 5880, + }, + }, + }, + [202] = { + ["da"] = 0, + ["dn"] = "Lightning Ailment Effect", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute12", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 40214, + ["out"] = { + }, + ["passivePointsGranted"] = 0, + ["sa"] = 0, + ["sd"] = { + [1] = "(10-20)% increased Effect of Lightning Ailments", + }, + ["sortedStats"] = { + [1] = "lightning_ailment_effect_+%", + }, + ["spc"] = { + }, + ["stats"] = { + ["lightning_ailment_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 10, + ["statOrder"] = 7535, + }, + }, + }, + [203] = { + ["da"] = 0, + ["dn"] = "Strength", + ["g"] = 1000000000, + ["ia"] = 0, + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute13", + ["in"] = { + }, + ["isJewelSocket"] = false, + ["isMultipleChoice"] = false, + ["isMultipleChoiceOption"] = false, + ["ks"] = false, + ["m"] = false, + ["not"] = false, + ["o"] = 3, + ["oidx"] = 87392, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "50% of Non-Chaos Damage taken bypasses Energy Shield", - [2] = "Gain 15% of Maximum Life as Extra Maximum Energy Shield", + [1] = "+(8-10) to Strength", }, ["sortedStats"] = { - [1] = "keystone_corrupted_defences", + [1] = "additional_strength", }, ["spc"] = { }, ["stats"] = { - ["keystone_corrupted_defences"] = { + ["additional_strength"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10933, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1200, }, }, }, - [5] = { + [204] = { ["da"] = 0, - ["dn"] = "Fire Damage", + ["dn"] = "Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_fire_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute14", ["in"] = { }, ["isJewelSocket"] = false, @@ -2202,36 +15872,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 79420, + ["oidx"] = 88901, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Fire Damage", + [1] = "+(8-10) to Dexterity", }, ["sortedStats"] = { - [1] = "fire_damage_+%", + [1] = "additional_dexterity", }, ["spc"] = { }, ["stats"] = { - ["fire_damage_+%"] = { + ["additional_dexterity"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1357, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1201, }, }, }, - [6] = { + [205] = { ["da"] = 0, - ["dn"] = "Cold Damage", + ["dn"] = "Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_cold_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute15", ["in"] = { }, ["isJewelSocket"] = false, @@ -2241,36 +15911,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 69885, + ["oidx"] = 1088, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Cold Damage", + [1] = "+(8-10) to Intelligence", }, ["sortedStats"] = { - [1] = "cold_damage_+%", + [1] = "additional_intelligence", }, ["spc"] = { }, ["stats"] = { - ["cold_damage_+%"] = { + ["additional_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1366, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1202, }, }, }, - [7] = { + [206] = { ["da"] = 0, - ["dn"] = "Lightning Damage", + ["dn"] = "Strength and Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_lightning_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute16", ["in"] = { }, ["isJewelSocket"] = false, @@ -2280,36 +15950,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 59010, + ["oidx"] = 25300, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Lightning Damage", + [1] = "+(6-8) to Strength and Dexterity", }, ["sortedStats"] = { - [1] = "lightning_damage_+%", + [1] = "additional_strength_and_dexterity", }, ["spc"] = { }, ["stats"] = { - ["lightning_damage_+%"] = { + ["additional_strength_and_dexterity"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1377, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1203, }, }, }, - [8] = { + [207] = { ["da"] = 0, - ["dn"] = "Physical Damage", + ["dn"] = "Strength and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_physical_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute17", ["in"] = { }, ["isJewelSocket"] = false, @@ -2319,36 +15989,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 75322, + ["oidx"] = 5536, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Physical Damage", + [1] = "+(6-8) to Strength and Intelligence", }, ["sortedStats"] = { - [1] = "physical_damage_+%", + [1] = "additional_strength_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_+%"] = { + ["additional_strength_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 10924, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1204, }, }, }, - [9] = { + [208] = { ["da"] = 0, - ["dn"] = "Chaos Damage", + ["dn"] = "Dexterity and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_chaos_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute18", ["in"] = { }, ["isJewelSocket"] = false, @@ -2358,36 +16028,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 8097, + ["oidx"] = 40288, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Chaos Damage", + [1] = "+(6-8) to Dexterity and Intelligence", }, ["sortedStats"] = { - [1] = "chaos_damage_+%", + [1] = "additional_dexterity_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["chaos_damage_+%"] = { + ["additional_dexterity_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1385, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1205, }, }, }, - [10] = { + [209] = { ["da"] = 0, - ["dn"] = "Minion Damage", + ["dn"] = "Attributes", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_minion_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute19", ["in"] = { }, ["isJewelSocket"] = false, @@ -2397,36 +16067,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 66110, + ["oidx"] = 50505, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Minions deal (8-13)% increased Damage", + [1] = "+(4-6) to all Attributes", }, ["sortedStats"] = { - [1] = "minion_damage_+%", + [1] = "additional_all_attributes", }, ["spc"] = { }, ["stats"] = { - ["minion_damage_+%"] = { + ["additional_all_attributes"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 13, - ["min"] = 8, - ["statOrder"] = 1973, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1199, }, }, }, - [11] = { + [210] = { ["da"] = 0, - ["dn"] = "Attack Damage", + ["dn"] = "Fire Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_attack_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute20", ["in"] = { }, ["isJewelSocket"] = false, @@ -2436,36 +16106,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 33933, + ["oidx"] = 94233, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Attack Damage", + [1] = "+(6-8)% to Fire Resistance", }, ["sortedStats"] = { - [1] = "attack_damage_+%", + [1] = "base_fire_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["attack_damage_+%"] = { + ["base_fire_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1198, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1648, }, }, }, - [12] = { + [211] = { ["da"] = 0, - ["dn"] = "Spell Damage", + ["dn"] = "Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_spell_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute21", ["in"] = { }, ["isJewelSocket"] = false, @@ -2475,36 +16145,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 73573, + ["oidx"] = 33401, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Spell Damage", + [1] = "+(6-8)% to Cold Resistance", }, ["sortedStats"] = { - [1] = "spell_damage_+%", + [1] = "base_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["spell_damage_+%"] = { + ["base_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1223, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1654, }, }, }, - [13] = { + [212] = { ["da"] = 0, - ["dn"] = "Area Damage", + ["dn"] = "Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_area_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute22", ["in"] = { }, ["isJewelSocket"] = false, @@ -2514,36 +16184,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 42668, + ["oidx"] = 93327, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Area Damage", + [1] = "+(6-8)% to Lightning Resistance", }, ["sortedStats"] = { - [1] = "area_damage_+%", + [1] = "base_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["area_damage_+%"] = { + ["base_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 2035, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1659, }, }, }, - [14] = { + [213] = { ["da"] = 0, - ["dn"] = "Projectile Damage", + ["dn"] = "Fire and Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_projectile_damage", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute23", ["in"] = { }, ["isJewelSocket"] = false, @@ -2553,36 +16223,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 56859, + ["oidx"] = 14140, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Projectile Damage", + [1] = "+(4-6)% to Fire and Cold Resistances", }, ["sortedStats"] = { - [1] = "projectile_damage_+%", + [1] = "fire_and_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["projectile_damage_+%"] = { + ["fire_and_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1996, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2832, }, }, }, - [15] = { + [214] = { ["da"] = 0, - ["dn"] = "Damage Over Time", + ["dn"] = "Fire and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_damage_over_time", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute24", ["in"] = { }, ["isJewelSocket"] = false, @@ -2592,36 +16262,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 11446, + ["oidx"] = 55075, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Damage over Time", + [1] = "+(4-6)% to Fire and Lightning Resistances", }, ["sortedStats"] = { - [1] = "damage_over_time_+%", + [1] = "fire_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["damage_over_time_+%"] = { + ["fire_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1210, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2833, }, }, }, - [16] = { + [215] = { ["da"] = 0, - ["dn"] = "Area of Effect", + ["dn"] = "Cold and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_area_of_effect", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute25", ["in"] = { }, ["isJewelSocket"] = false, @@ -2631,36 +16301,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 5489, + ["oidx"] = 5174, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(4-7)% increased Area of Effect", + [1] = "+(4-6)% to Cold and Lightning Resistances", }, ["sortedStats"] = { - [1] = "base_skill_area_of_effect_+%", + [1] = "cold_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["base_skill_area_of_effect_+%"] = { + ["cold_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 7, + ["max"] = 6, ["min"] = 4, - ["statOrder"] = 1880, + ["statOrder"] = 2834, }, }, }, - [17] = { + [216] = { ["da"] = 0, - ["dn"] = "Projectile Speed", + ["dn"] = "Elemental Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_projectile_speed", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute26", ["in"] = { }, ["isJewelSocket"] = false, @@ -2670,36 +16340,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 97416, + ["oidx"] = 29868, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Projectile Speed", + [1] = "+(3-5)% to all Elemental Resistances", }, ["sortedStats"] = { - [1] = "base_projectile_speed_+%", + [1] = "base_resist_all_elements_%", }, ["spc"] = { }, ["stats"] = { - ["base_projectile_speed_+%"] = { + ["base_resist_all_elements_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1796, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1642, }, }, }, - [18] = { + [217] = { ["da"] = 0, - ["dn"] = "Critical Strike Chance", + ["dn"] = "Chaos Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_critical_strike_chance", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute27", ["in"] = { }, ["isJewelSocket"] = false, @@ -2709,36 +16379,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 70539, + ["oidx"] = 64578, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-14)% increased Critical Strike Chance", + [1] = "+(4-6)% to Chaos Resistance", }, ["sortedStats"] = { - [1] = "critical_strike_chance_+%", + [1] = "base_chaos_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["critical_strike_chance_+%"] = { + ["base_chaos_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 14, - ["min"] = 7, - ["statOrder"] = 10896, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1664, }, }, }, - [19] = { + [218] = { ["da"] = 0, - ["dn"] = "Critical Strike Multiplier", + ["dn"] = "Attack Speed", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_critical_strike_multiplier", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute28", ["in"] = { }, ["isJewelSocket"] = false, @@ -2748,36 +16418,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 17595, + ["oidx"] = 81826, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+(6-10)% to Critical Strike Multiplier", + [1] = "(2-3)% increased Attack Speed", }, ["sortedStats"] = { - [1] = "base_critical_strike_multiplier_+", + [1] = "attack_speed_+%", }, ["spc"] = { }, ["stats"] = { - ["base_critical_strike_multiplier_+"] = { + ["attack_speed_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 10897, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1434, }, }, }, - [20] = { + [219] = { ["da"] = 0, - ["dn"] = "Attack Speed", + ["dn"] = "Critical Strike Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_attack_speed", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute29", ["in"] = { }, ["isJewelSocket"] = false, @@ -2787,36 +16457,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 97479, + ["oidx"] = 90899, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(3-4)% increased Attack Speed", + [1] = "(6-8)% increased Critical Strike Chance", }, ["sortedStats"] = { - [1] = "attack_speed_+%", + [1] = "critical_strike_chance_+%", }, ["spc"] = { }, ["stats"] = { - ["attack_speed_+%"] = { + ["critical_strike_chance_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 4, - ["min"] = 3, - ["statOrder"] = 1410, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 11063, }, }, }, - [21] = { + [220] = { ["da"] = 0, - ["dn"] = "Cast Speed", + ["dn"] = "Critical Strike Multiplier", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_cast_speed", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute30", ["in"] = { }, ["isJewelSocket"] = false, @@ -2826,36 +16496,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 27693, + ["oidx"] = 57536, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(2-3)% increased Cast Speed", + [1] = "+(7-9)% to Critical Strike Multiplier", }, ["sortedStats"] = { - [1] = "base_cast_speed_+%", + [1] = "base_critical_strike_multiplier_+", }, ["spc"] = { }, ["stats"] = { - ["base_cast_speed_+%"] = { + ["base_critical_strike_multiplier_+"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 3, - ["min"] = 2, - ["statOrder"] = 1446, + ["max"] = 9, + ["min"] = 7, + ["statOrder"] = 11064, }, }, }, - [22] = { + [221] = { ["da"] = 0, - ["dn"] = "Movement Speed", + ["dn"] = "Blind Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_movement_speed", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute31", ["in"] = { }, ["isJewelSocket"] = false, @@ -2865,36 +16535,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 35409, + ["oidx"] = 55389, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(2-3)% increased Movement Speed", + [1] = "(2-3)% chance to Blind Enemies on Hit with Attacks", }, ["sortedStats"] = { - [1] = "base_movement_velocity_+%", + [1] = "attacks_chance_to_blind_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["base_movement_velocity_+%"] = { + ["attacks_chance_to_blind_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 1798, + ["statOrder"] = 4965, }, }, }, - [23] = { + [222] = { ["da"] = 0, - ["dn"] = "Ignite Chance", + ["dn"] = "Taunt Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_chance_to_ignite", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute32", ["in"] = { }, ["isJewelSocket"] = false, @@ -2904,36 +16574,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 47236, + ["oidx"] = 93616, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(3-6)% chance to Ignite", + [1] = "(2-3)% chance to Taunt Enemies on Hit with Attacks", }, ["sortedStats"] = { - [1] = "base_chance_to_ignite_%", + [1] = "attacks_chance_to_taunt_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["base_chance_to_ignite_%"] = { + ["attacks_chance_to_taunt_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 2026, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 4966, }, }, }, - [24] = { + [223] = { ["da"] = 0, - ["dn"] = "Freeze Chance", + ["dn"] = "Ignite Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_chance_to_freeze", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute33", ["in"] = { }, ["isJewelSocket"] = false, @@ -2943,36 +16613,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 67900, + ["oidx"] = 99322, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(3-6)% chance to Freeze", + [1] = "(15-20)% chance to Avoid being Ignited", }, ["sortedStats"] = { - [1] = "base_chance_to_freeze_%", + [1] = "base_avoid_ignite_%", }, ["spc"] = { }, ["stats"] = { - ["base_chance_to_freeze_%"] = { + ["base_avoid_ignite_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 2029, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1869, }, }, }, - [25] = { + [224] = { ["da"] = 0, - ["dn"] = "Shock Chance", + ["dn"] = "Freeze Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_chance_to_shock", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute34", ["in"] = { }, ["isJewelSocket"] = false, @@ -2982,36 +16652,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 57514, + ["oidx"] = 79942, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(3-6)% chance to Shock", + [1] = "(15-20)% chance to Avoid being Frozen", }, ["sortedStats"] = { - [1] = "base_chance_to_shock_%", + [1] = "base_avoid_freeze_%", }, ["spc"] = { }, ["stats"] = { - ["base_chance_to_shock_%"] = { + ["base_avoid_freeze_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 6, - ["min"] = 3, - ["statOrder"] = 2033, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1868, }, }, }, - [26] = { + [225] = { ["da"] = 0, - ["dn"] = "Skill Duration", + ["dn"] = "Shock Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalOffensive.dds", - ["id"] = "vaal_small_duration", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute35", ["in"] = { }, ["isJewelSocket"] = false, @@ -3021,36 +16691,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 79693, + ["oidx"] = 23145, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(4-7)% increased Skill Effect Duration", + [1] = "(15-20)% chance to Avoid being Shocked", }, ["sortedStats"] = { - [1] = "skill_effect_duration_+%", + [1] = "base_avoid_shock_%", }, ["spc"] = { }, ["stats"] = { - ["skill_effect_duration_+%"] = { + ["base_avoid_shock_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 7, - ["min"] = 4, - ["statOrder"] = 1895, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1871, }, }, }, - [27] = { + [226] = { ["da"] = 0, - ["dn"] = "Life", + ["dn"] = "Poison Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_life", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute36", ["in"] = { }, ["isJewelSocket"] = false, @@ -3060,36 +16730,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 45174, + ["oidx"] = 33128, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(2-4)% increased maximum Life", + [1] = "(15-20)% chance to Avoid being Poisoned", }, ["sortedStats"] = { - [1] = "maximum_life_+%", + [1] = "base_avoid_poison_%", }, ["spc"] = { }, ["stats"] = { - ["maximum_life_+%"] = { + ["base_avoid_poison_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 1571, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1872, }, }, }, - [28] = { + [227] = { ["da"] = 0, - ["dn"] = "Mana", + ["dn"] = "Bleed Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_mana", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute37", ["in"] = { }, ["isJewelSocket"] = false, @@ -3099,36 +16769,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 18201, + ["oidx"] = 39249, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(4-6)% increased maximum Mana", + [1] = "(15-20)% chance to Avoid Bleeding", }, ["sortedStats"] = { - [1] = "maximum_mana_+%", + [1] = "base_avoid_bleed_%", }, ["spc"] = { }, ["stats"] = { - ["maximum_mana_+%"] = { + ["base_avoid_bleed_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 6, - ["min"] = 4, - ["statOrder"] = 1580, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 4252, }, }, }, - [29] = { + [228] = { ["da"] = 0, - ["dn"] = "Mana Regeneration", + ["dn"] = "Stun Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_mana_regeneration", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute38", ["in"] = { }, ["isJewelSocket"] = false, @@ -3138,36 +16808,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 65999, + ["oidx"] = 35273, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(12-17)% increased Mana Regeneration Rate", + [1] = "(15-20)% chance to Avoid being Stunned", }, ["sortedStats"] = { - [1] = "mana_regeneration_rate_+%", + [1] = "base_avoid_stun_%", }, ["spc"] = { }, ["stats"] = { - ["mana_regeneration_rate_+%"] = { + ["base_avoid_stun_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 17, - ["min"] = 12, - ["statOrder"] = 1584, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1874, }, }, }, - [30] = { + [229] = { ["da"] = 0, - ["dn"] = "Armour", + ["dn"] = "Accuracy", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_armour", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.dds", + ["id"] = "abyss_murderous_small_attribute39", ["in"] = { }, ["isJewelSocket"] = false, @@ -3177,36 +16847,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 21117, + ["oidx"] = 28021, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Armour", + [1] = "+(31-60) to Accuracy Rating", }, ["sortedStats"] = { - [1] = "physical_damage_reduction_rating_+%", + [1] = "accuracy_rating", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_reduction_rating_+%"] = { + ["accuracy_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1541, + ["max"] = 60, + ["min"] = 31, + ["statOrder"] = 1457, }, }, }, - [31] = { + [230] = { ["da"] = 0, - ["dn"] = "Evasion", + ["dn"] = "Life", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_evasion", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute1", ["in"] = { }, ["isJewelSocket"] = false, @@ -3216,36 +16886,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 59672, + ["oidx"] = 19644, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(7-12)% increased Evasion Rating", + [1] = "+(9-12) to maximum Life", }, ["sortedStats"] = { - [1] = "evasion_rating_+%", + [1] = "base_maximum_life", }, ["spc"] = { }, ["stats"] = { - ["evasion_rating_+%"] = { + ["base_maximum_life"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 12, - ["min"] = 7, - ["statOrder"] = 1549, + ["min"] = 9, + ["statOrder"] = 1591, }, }, }, - [32] = { + [231] = { ["da"] = 0, - ["dn"] = "Energy Shield", + ["dn"] = "Mana ", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_energy_shield", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute2", ["in"] = { }, ["isJewelSocket"] = false, @@ -3255,36 +16925,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 14411, + ["oidx"] = 21331, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(3-5)% increased maximum Energy Shield", + [1] = "+(8-11) to maximum Mana", }, ["sortedStats"] = { - [1] = "maximum_energy_shield_+%", + [1] = "base_maximum_mana", }, ["spc"] = { }, ["stats"] = { - ["maximum_energy_shield_+%"] = { + ["base_maximum_mana"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 5, - ["min"] = 3, - ["statOrder"] = 1561, + ["max"] = 11, + ["min"] = 8, + ["statOrder"] = 1602, }, }, }, - [33] = { + [232] = { ["da"] = 0, - ["dn"] = "Block", + ["dn"] = "Energy Shield Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_attack_block", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute3", ["in"] = { }, ["isJewelSocket"] = false, @@ -3294,36 +16964,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 82991, + ["oidx"] = 99442, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+2% Chance to Block Attack Damage", + [1] = "Regenerate (9-12) Energy Shield per second", }, ["sortedStats"] = { - [1] = "additional_block_%", + [1] = "energy_shield_regeneration_rate_per_second", }, ["spc"] = { }, ["stats"] = { - ["additional_block_%"] = { + ["energy_shield_regeneration_rate_per_second"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 2458, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 6549, }, }, }, - [34] = { + [233] = { ["da"] = 0, - ["dn"] = "Spell Block", + ["dn"] = "Life Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_spell_block", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute4", ["in"] = { }, ["isJewelSocket"] = false, @@ -3333,36 +17003,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 58330, + ["oidx"] = 2420, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "2% Chance to Block Spell Damage", + [1] = "Regenerate (4.5-6) Life per second", }, ["sortedStats"] = { - [1] = "base_spell_block_%", + [1] = "base_life_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["base_spell_block_%"] = { - ["fmt"] = "d", + ["base_life_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 1160, + ["max"] = 6, + ["min"] = 4.5, + ["statOrder"] = 1596, }, }, }, - [35] = { + [234] = { ["da"] = 0, - ["dn"] = "Avoid Elemental Ailments", + ["dn"] = "Mana Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_attack_dodge", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute5", ["in"] = { }, ["isJewelSocket"] = false, @@ -3372,36 +17042,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 2479, + ["oidx"] = 20860, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "3% chance to Avoid Elemental Ailments", + [1] = "Regenerate (0.6-1) Mana per second", }, ["sortedStats"] = { - [1] = "avoid_all_elemental_status_%", + [1] = "base_mana_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["avoid_all_elemental_status_%"] = { - ["fmt"] = "d", + ["base_mana_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, - ["max"] = 3, - ["min"] = 3, - ["statOrder"] = 1843, + ["max"] = 1, + ["min"] = 0.6, + ["statOrder"] = 1605, }, }, }, - [36] = { + [235] = { ["da"] = 0, - ["dn"] = "Spell Suppression", + ["dn"] = "Armour", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_spell_dodge", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute6", ["in"] = { }, ["isJewelSocket"] = false, @@ -3411,36 +17081,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 83640, + ["oidx"] = 48261, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+4% chance to Suppress Spell Damage", + [1] = "+(36-60) to Armour", }, ["sortedStats"] = { - [1] = "base_spell_suppression_chance_%", + [1] = "base_physical_damage_reduction_rating", }, ["spc"] = { }, ["stats"] = { - ["base_spell_suppression_chance_%"] = { + ["base_physical_damage_reduction_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 1143, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1561, }, }, }, - [37] = { + [236] = { ["da"] = 0, - ["dn"] = "Aura Effect", + ["dn"] = "Evasion Rating", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_aura_effect", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute7", ["in"] = { }, ["isJewelSocket"] = false, @@ -3450,36 +17120,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 4960, + ["oidx"] = 6017, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(2-4)% increased effect of Non-Curse Auras from your Skills", + [1] = "+(36-60) to Evasion Rating", }, ["sortedStats"] = { - [1] = "non_curse_aura_effect_+%", + [1] = "base_evasion_rating", }, ["spc"] = { }, ["stats"] = { - ["non_curse_aura_effect_+%"] = { + ["base_evasion_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 3566, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1566, }, }, }, - [38] = { + [237] = { ["da"] = 0, - ["dn"] = "Curse Effect", + ["dn"] = "Energy Shield", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_curse_effect", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute8", ["in"] = { }, ["isJewelSocket"] = false, @@ -3489,36 +17159,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 82957, + ["oidx"] = 50410, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "2% increased Effect of your Curses", + [1] = "+(9-12) to maximum Energy Shield", }, ["sortedStats"] = { - [1] = "curse_effect_+%", + [1] = "base_maximum_energy_shield", }, ["spc"] = { }, ["stats"] = { - ["curse_effect_+%"] = { + ["base_maximum_energy_shield"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 2596, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1580, }, }, }, - [39] = { + [238] = { ["da"] = 0, - ["dn"] = "Fire Resistance", + ["dn"] = "Impale Effect", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_fire_resistance", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute9", ["in"] = { }, ["isJewelSocket"] = false, @@ -3528,36 +17198,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 62650, + ["oidx"] = 44196, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+(9-14)% to Fire Resistance", + [1] = "(2-4)% increased Impale Effect", }, ["sortedStats"] = { - [1] = "base_fire_damage_resistance_%", + [1] = "impale_debuff_effect_+%", }, ["spc"] = { }, ["stats"] = { - ["base_fire_damage_resistance_%"] = { + ["impale_debuff_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1625, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 7343, }, }, }, - [40] = { + [239] = { ["da"] = 0, - ["dn"] = "Cold Resistance", + ["dn"] = "Mana Recoup", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_cold_resistance", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute10", ["in"] = { }, ["isJewelSocket"] = false, @@ -3567,36 +17237,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 82675, + ["oidx"] = 20341, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+(9-14)% to Cold Resistance", + [1] = "(2-3)% of Damage taken Recouped as Mana", }, ["sortedStats"] = { - [1] = "base_cold_damage_resistance_%", + [1] = "damage_taken_goes_to_mana_%", }, ["spc"] = { }, ["stats"] = { - ["base_cold_damage_resistance_%"] = { + ["damage_taken_goes_to_mana_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1631, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2480, }, }, }, - [41] = { + [240] = { ["da"] = 0, - ["dn"] = "Lightning Resistance", + ["dn"] = "Cold Ailment Effect", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_lightning_resistance", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute11", ["in"] = { }, ["isJewelSocket"] = false, @@ -3606,36 +17276,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 18075, + ["oidx"] = 54200, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+(9-14)% to Lightning Resistance", + [1] = "(10-20)% increased Effect of Cold Ailments", }, ["sortedStats"] = { - [1] = "base_lightning_damage_resistance_%", + [1] = "cold_ailment_effect_+%", }, ["spc"] = { }, ["stats"] = { - ["base_lightning_damage_resistance_%"] = { + ["cold_ailment_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 14, - ["min"] = 9, - ["statOrder"] = 1636, + ["max"] = 20, + ["min"] = 10, + ["statOrder"] = 5880, }, }, }, - [42] = { + [241] = { ["da"] = 0, - ["dn"] = "Chaos Resistance", + ["dn"] = "Lightning Ailment Effect", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalDefensive.dds", - ["id"] = "vaal_small_chaos_resistance", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute12", ["in"] = { }, ["isJewelSocket"] = false, @@ -3645,36 +17315,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 25548, + ["oidx"] = 2450, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+(6-10)% to Chaos Resistance", + [1] = "(10-20)% increased Effect of Lightning Ailments", }, ["sortedStats"] = { - [1] = "base_chaos_damage_resistance_%", + [1] = "lightning_ailment_effect_+%", }, ["spc"] = { }, ["stats"] = { - ["base_chaos_damage_resistance_%"] = { + ["lightning_ailment_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 1641, + ["max"] = 20, + ["min"] = 10, + ["statOrder"] = 7535, }, }, }, - [43] = { + [242] = { ["da"] = 0, - ["dn"] = "Ritual of Immolation", + ["dn"] = "Strength", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_fire_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute13", ["in"] = { }, ["isJewelSocket"] = false, @@ -3682,47 +17352,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 92114, + ["oidx"] = 91756, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Fire Damage", - [2] = "Damage Penetrates (2-4)% Fire Resistance", + [1] = "+(8-10) to Strength", }, ["sortedStats"] = { - [1] = "fire_damage_+%", - [2] = "base_reduce_enemy_fire_resistance_%", - }, - ["spc"] = { + [1] = "additional_strength", }, - ["stats"] = { - ["base_reduce_enemy_fire_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 2981, - }, - ["fire_damage_+%"] = { + ["spc"] = { + }, + ["stats"] = { + ["additional_strength"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1357, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1200, }, }, }, - [44] = { + [243] = { ["da"] = 0, - ["dn"] = "Revitalising Flames", + ["dn"] = "Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_fire_damage_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute14", ["in"] = { }, ["isJewelSocket"] = false, @@ -3730,47 +17391,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 31696, + ["oidx"] = 1205, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Fire Damage", - [2] = "0.2% of Fire Damage Leeched as Life", + [1] = "+(8-10) to Dexterity", }, ["sortedStats"] = { - [1] = "fire_damage_+%", - [2] = "base_life_leech_from_fire_damage_permyriad", + [1] = "additional_dexterity", }, ["spc"] = { }, ["stats"] = { - ["base_life_leech_from_fire_damage_permyriad"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 0.2, - ["min"] = 0.2, - ["statOrder"] = 1670, - }, - ["fire_damage_+%"] = { + ["additional_dexterity"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1357, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1201, }, }, }, - [45] = { + [244] = { ["da"] = 0, - ["dn"] = "Flesh to Flames", + ["dn"] = "Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_fire_damage_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute15", ["in"] = { }, ["isJewelSocket"] = false, @@ -3778,47 +17430,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 7855, + ["oidx"] = 69797, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Fire Damage", - [2] = "10% of Physical Damage Converted to Fire Damage", + [1] = "+(8-10) to Intelligence", }, ["sortedStats"] = { - [1] = "fire_damage_+%", - [2] = "base_physical_damage_%_to_convert_to_fire", + [1] = "additional_intelligence", }, ["spc"] = { }, ["stats"] = { - ["base_physical_damage_%_to_convert_to_fire"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1955, - }, - ["fire_damage_+%"] = { + ["additional_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1357, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1202, }, }, }, - [46] = { + [245] = { ["da"] = 0, - ["dn"] = "Ritual of Stillness", + ["dn"] = "Strength and Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_cold_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute16", ["in"] = { }, ["isJewelSocket"] = false, @@ -3826,47 +17469,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 35484, + ["oidx"] = 50579, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Cold Damage", - [2] = "Damage Penetrates (2-4)% Cold Resistance", + [1] = "+(6-8) to Strength and Dexterity", }, ["sortedStats"] = { - [1] = "cold_damage_+%", - [2] = "base_reduce_enemy_cold_resistance_%", + [1] = "additional_strength_and_dexterity", }, ["spc"] = { }, ["stats"] = { - ["base_reduce_enemy_cold_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 2983, - }, - ["cold_damage_+%"] = { + ["additional_strength_and_dexterity"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1366, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1203, }, }, }, - [47] = { + [246] = { ["da"] = 0, - ["dn"] = "Revitalising Frost", + ["dn"] = "Strength and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_cold_damage_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute17", ["in"] = { }, ["isJewelSocket"] = false, @@ -3874,47 +17508,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 92100, + ["oidx"] = 93563, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Cold Damage", - [2] = "0.2% of Cold Damage Leeched as Life", + [1] = "+(6-8) to Strength and Intelligence", }, ["sortedStats"] = { - [1] = "cold_damage_+%", - [2] = "base_life_leech_from_cold_damage_permyriad", + [1] = "additional_strength_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["base_life_leech_from_cold_damage_permyriad"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 0.2, - ["min"] = 0.2, - ["statOrder"] = 1675, - }, - ["cold_damage_+%"] = { + ["additional_strength_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1366, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1204, }, }, }, - [48] = { + [247] = { ["da"] = 0, - ["dn"] = "Flesh to Frost", + ["dn"] = "Dexterity and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_cold_damage_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute18", ["in"] = { }, ["isJewelSocket"] = false, @@ -3922,47 +17547,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 2503, + ["oidx"] = 18807, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Cold Damage", - [2] = "10% of Physical Damage Converted to Cold Damage", + [1] = "+(6-8) to Dexterity and Intelligence", }, ["sortedStats"] = { - [1] = "cold_damage_+%", - [2] = "base_physical_damage_%_to_convert_to_cold", + [1] = "additional_dexterity_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["base_physical_damage_%_to_convert_to_cold"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1957, - }, - ["cold_damage_+%"] = { + ["additional_dexterity_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1366, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1205, }, }, }, - [49] = { + [248] = { ["da"] = 0, - ["dn"] = "Ritual of Thunder", + ["dn"] = "Attributes", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_lightning_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute19", ["in"] = { }, ["isJewelSocket"] = false, @@ -3970,47 +17586,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 67692, + ["oidx"] = 81217, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Lightning Damage", - [2] = "Damage Penetrates (2-4)% Lightning Resistance", + [1] = "+(4-6) to all Attributes", }, ["sortedStats"] = { - [1] = "lightning_damage_+%", - [2] = "base_reduce_enemy_lightning_resistance_%", + [1] = "additional_all_attributes", }, ["spc"] = { }, ["stats"] = { - ["base_reduce_enemy_lightning_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 2984, - }, - ["lightning_damage_+%"] = { + ["additional_all_attributes"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1377, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1199, }, }, }, - [50] = { + [249] = { ["da"] = 0, - ["dn"] = "Revitalising Lightning", + ["dn"] = "Fire Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_lightning_damage_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute20", ["in"] = { }, ["isJewelSocket"] = false, @@ -4018,47 +17625,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 74451, + ["oidx"] = 91332, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Lightning Damage", - [2] = "0.2% of Lightning Damage Leeched as Life", + [1] = "+(6-8)% to Fire Resistance", }, ["sortedStats"] = { - [1] = "lightning_damage_+%", - [2] = "base_life_leech_from_lightning_damage_permyriad", + [1] = "base_fire_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["base_life_leech_from_lightning_damage_permyriad"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 0.2, - ["min"] = 0.2, - ["statOrder"] = 1679, - }, - ["lightning_damage_+%"] = { + ["base_fire_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1377, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1648, }, }, }, - [51] = { + [250] = { ["da"] = 0, - ["dn"] = "Flesh to Lightning", + ["dn"] = "Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_lightning_damage_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute21", ["in"] = { }, ["isJewelSocket"] = false, @@ -4066,47 +17664,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 55329, + ["oidx"] = 65329, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Lightning Damage", - [2] = "10% of Physical Damage Converted to Lightning Damage", + [1] = "+(6-8)% to Cold Resistance", }, ["sortedStats"] = { - [1] = "lightning_damage_+%", - [2] = "base_physical_damage_%_to_convert_to_lightning", + [1] = "base_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["base_physical_damage_%_to_convert_to_lightning"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1959, - }, - ["lightning_damage_+%"] = { + ["base_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1377, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1654, }, }, }, - [52] = { + [251] = { ["da"] = 0, - ["dn"] = "Ritual of Might", + ["dn"] = "Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_physical_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute22", ["in"] = { }, ["isJewelSocket"] = false, @@ -4114,47 +17703,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 11777, + ["oidx"] = 31284, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(2-4)% chance to deal Double Damage", - [2] = "(25-35)% increased Physical Damage", + [1] = "+(6-8)% to Lightning Resistance", }, ["sortedStats"] = { - [1] = "chance_to_deal_double_damage_%", - [2] = "physical_damage_+%", + [1] = "base_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["chance_to_deal_double_damage_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 2, - ["statOrder"] = 5659, - }, - ["physical_damage_+%"] = { + ["base_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 10924, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1659, }, }, }, - [53] = { + [252] = { ["da"] = 0, - ["dn"] = "Revitalising Winds", + ["dn"] = "Fire and Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_physical_damage_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute23", ["in"] = { }, ["isJewelSocket"] = false, @@ -4162,47 +17742,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 13357, + ["oidx"] = 10883, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "0.2% of Physical Damage Leeched as Life", - [2] = "(25-35)% increased Physical Damage", + [1] = "+(4-6)% to Fire and Cold Resistances", }, ["sortedStats"] = { - [1] = "base_life_leech_from_physical_damage_permyriad", - [2] = "physical_damage_+%", + [1] = "fire_and_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["base_life_leech_from_physical_damage_permyriad"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 0.2, - ["min"] = 0.2, - ["statOrder"] = 1666, - }, - ["physical_damage_+%"] = { + ["fire_and_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 10924, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2832, }, }, }, - [54] = { + [253] = { ["da"] = 0, - ["dn"] = "Bloody Savagery", + ["dn"] = "Fire and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_physical_damage_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute24", ["in"] = { }, ["isJewelSocket"] = false, @@ -4210,47 +17781,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 3316, + ["oidx"] = 17069, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Bleeding you inflict deals Damage 10% faster", - [2] = "(25-35)% increased Physical Damage", + [1] = "+(4-6)% to Fire and Lightning Resistances", }, ["sortedStats"] = { - [1] = "faster_bleed_%", - [2] = "physical_damage_+%", + [1] = "fire_and_lightning_damage_resistance_%", }, ["spc"] = { }, - ["stats"] = { - ["faster_bleed_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 6545, - }, - ["physical_damage_+%"] = { + ["stats"] = { + ["fire_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 10924, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2833, }, }, }, - [55] = { + [254] = { ["da"] = 0, - ["dn"] = "Ritual of Shadows", + ["dn"] = "Cold and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_chaos_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute25", ["in"] = { }, ["isJewelSocket"] = false, @@ -4258,47 +17820,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 49930, + ["oidx"] = 823, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Chaos Damage", - [2] = "25% chance to inflict Withered for 2 seconds on Hit", + [1] = "+(4-6)% to Cold and Lightning Resistances", }, ["sortedStats"] = { - [1] = "chaos_damage_+%", - [2] = "withered_on_hit_for_2_seconds_%_chance", + [1] = "cold_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["chaos_damage_+%"] = { + ["cold_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1385, - }, - ["withered_on_hit_for_2_seconds_%_chance"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 25, - ["min"] = 25, - ["statOrder"] = 4397, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2834, }, }, }, - [56] = { + [255] = { ["da"] = 0, - ["dn"] = "Revitalising Darkness", + ["dn"] = "Elemental Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_chaos_damage_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute26", ["in"] = { }, ["isJewelSocket"] = false, @@ -4306,47 +17859,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 68927, + ["oidx"] = 84913, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Chaos Damage", - [2] = "0.2% of Chaos Damage Leeched as Life", + [1] = "+(3-5)% to all Elemental Resistances", }, ["sortedStats"] = { - [1] = "chaos_damage_+%", - [2] = "base_life_leech_from_chaos_damage_permyriad", + [1] = "base_resist_all_elements_%", }, ["spc"] = { }, ["stats"] = { - ["base_life_leech_from_chaos_damage_permyriad"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 0.2, - ["min"] = 0.2, - ["statOrder"] = 1682, - }, - ["chaos_damage_+%"] = { + ["base_resist_all_elements_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1385, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1642, }, }, }, - [57] = { + [256] = { ["da"] = 0, - ["dn"] = "Thaumaturgical Aptitude", + ["dn"] = "Chaos Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_spell_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute27", ["in"] = { }, ["isJewelSocket"] = false, @@ -4354,47 +17898,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 50654, + ["oidx"] = 21216, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Spell Damage", - [2] = "(35-50)% increased Spell Critical Strike Chance", + [1] = "+(4-6)% to Chaos Resistance", }, ["sortedStats"] = { - [1] = "spell_damage_+%", - [2] = "spell_critical_strike_chance_+%", + [1] = "base_chaos_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["spell_critical_strike_chance_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 50, - ["min"] = 35, - ["statOrder"] = 1458, - }, - ["spell_damage_+%"] = { + ["base_chaos_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1223, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1664, }, }, }, - [58] = { + [257] = { ["da"] = 0, - ["dn"] = "Hierarchy", + ["dn"] = "Attack Speed", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_minion_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute28", ["in"] = { }, ["isJewelSocket"] = false, @@ -4402,47 +17937,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 85555, + ["oidx"] = 27467, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Minions have (15-20)% increased maximum Life", - [2] = "Minions deal (25-35)% increased Damage", + [1] = "(2-3)% increased Attack Speed", }, ["sortedStats"] = { - [1] = "minion_maximum_life_+%", - [2] = "minion_damage_+%", + [1] = "attack_speed_+%", }, ["spc"] = { }, ["stats"] = { - ["minion_damage_+%"] = { + ["attack_speed_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1973, - }, - ["minion_maximum_life_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 15, - ["statOrder"] = 1766, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1434, }, }, }, - [59] = { + [258] = { ["da"] = 0, - ["dn"] = "Exquisite Pain", + ["dn"] = "Critical Strike Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_damage_over_time_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute29", ["in"] = { }, ["isJewelSocket"] = false, @@ -4450,47 +17976,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 13953, + ["oidx"] = 4261, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(25-35)% increased Damage over Time", - [2] = "(7-11)% increased Skill Effect Duration", + [1] = "(6-8)% increased Critical Strike Chance", }, ["sortedStats"] = { - [1] = "damage_over_time_+%", - [2] = "skill_effect_duration_+%", + [1] = "critical_strike_chance_+%", }, ["spc"] = { }, ["stats"] = { - ["damage_over_time_+%"] = { + ["critical_strike_chance_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 35, - ["min"] = 25, - ["statOrder"] = 1210, - }, - ["skill_effect_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 11, - ["min"] = 7, - ["statOrder"] = 1895, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 11063, }, }, }, - [60] = { + [259] = { ["da"] = 0, - ["dn"] = "Ritual of Flesh", + ["dn"] = "Critical Strike Multiplier", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_life_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute30", ["in"] = { }, ["isJewelSocket"] = false, @@ -4498,47 +18015,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 29305, + ["oidx"] = 72550, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(6-10)% increased maximum Life", - [2] = "Regenerate (0.7-1.2)% of Life per second", + [1] = "+(7-9)% to Critical Strike Multiplier", }, ["sortedStats"] = { - [1] = "maximum_life_+%", - [2] = "life_regeneration_rate_per_minute_%", + [1] = "base_critical_strike_multiplier_+", }, ["spc"] = { }, ["stats"] = { - ["life_regeneration_rate_per_minute_%"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 1.2, - ["min"] = 0.7, - ["statOrder"] = 1944, - }, - ["maximum_life_+%"] = { + ["base_critical_strike_multiplier_+"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 1571, + ["max"] = 9, + ["min"] = 7, + ["statOrder"] = 11064, }, }, }, - [61] = { + [260] = { ["da"] = 0, - ["dn"] = "Flesh Worship", + ["dn"] = "Blind Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_life_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute31", ["in"] = { }, ["isJewelSocket"] = false, @@ -4546,47 +18054,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 87752, + ["oidx"] = 37140, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(6-10)% increased maximum Life", - [2] = "0.4% of Attack Damage Leeched as Life", + [1] = "(2-3)% chance to Blind Enemies on Hit with Attacks", }, ["sortedStats"] = { - [1] = "maximum_life_+%", - [2] = "base_life_leech_from_attack_damage_permyriad", + [1] = "attacks_chance_to_blind_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["base_life_leech_from_attack_damage_permyriad"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 0.4, - ["min"] = 0.4, - ["statOrder"] = 1664, - }, - ["maximum_life_+%"] = { + ["attacks_chance_to_blind_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 1571, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 4965, }, }, }, - [62] = { + [261] = { ["da"] = 0, - ["dn"] = "Ritual of Memory", + ["dn"] = "Ignite Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_mana_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute32", ["in"] = { }, ["isJewelSocket"] = false, @@ -4594,47 +18093,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 76549, + ["oidx"] = 66288, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(17-23)% increased maximum Mana", - [2] = "(15-25)% increased Mana Regeneration Rate", + [1] = "(15-20)% chance to Avoid being Ignited", }, ["sortedStats"] = { - [1] = "maximum_mana_+%", - [2] = "mana_regeneration_rate_+%", + [1] = "base_avoid_ignite_%", }, ["spc"] = { }, ["stats"] = { - ["mana_regeneration_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 25, - ["min"] = 15, - ["statOrder"] = 1584, - }, - ["maximum_mana_+%"] = { + ["base_avoid_ignite_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 23, - ["min"] = 17, - ["statOrder"] = 1580, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1869, }, }, }, - [63] = { + [262] = { ["da"] = 0, - ["dn"] = "Automaton Studies", + ["dn"] = "Freeze Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_armour_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute33", ["in"] = { }, ["isJewelSocket"] = false, @@ -4642,47 +18132,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 69557, + ["oidx"] = 64997, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(30-40)% increased Armour", - [2] = "(3-4)% additional Physical Damage Reduction", + [1] = "(15-20)% chance to Avoid being Frozen", }, ["sortedStats"] = { - [1] = "physical_damage_reduction_rating_+%", - [2] = "base_additional_physical_damage_reduction_%", + [1] = "base_avoid_freeze_%", }, ["spc"] = { }, ["stats"] = { - ["base_additional_physical_damage_reduction_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 4, - ["min"] = 3, - ["statOrder"] = 2273, - }, - ["physical_damage_reduction_rating_+%"] = { + ["base_avoid_freeze_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 40, - ["min"] = 30, - ["statOrder"] = 1541, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1868, }, }, }, - [64] = { + [263] = { ["da"] = 0, - ["dn"] = "Construct Studies", + ["dn"] = "Shock Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_evasion_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute34", ["in"] = { }, ["isJewelSocket"] = false, @@ -4690,47 +18171,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 64898, + ["oidx"] = 41353, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(30-40)% increased Evasion Rating", - [2] = "(5-7)% chance to Blind Enemies on Hit", + [1] = "(15-20)% chance to Avoid being Shocked", }, ["sortedStats"] = { - [1] = "evasion_rating_+%", - [2] = "global_chance_to_blind_on_hit_%", + [1] = "base_avoid_shock_%", }, ["spc"] = { }, ["stats"] = { - ["evasion_rating_+%"] = { + ["base_avoid_shock_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 40, - ["min"] = 30, - ["statOrder"] = 1549, - }, - ["global_chance_to_blind_on_hit_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 7, - ["min"] = 5, - ["statOrder"] = 10907, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1871, }, }, }, - [65] = { + [264] = { ["da"] = 0, - ["dn"] = "Energy Flow Studies", + ["dn"] = "Poison Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_energy_shield_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute35", ["in"] = { }, ["isJewelSocket"] = false, @@ -4738,47 +18210,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 83885, + ["oidx"] = 67352, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, - ["sd"] = { - [1] = "(8-12)% increased maximum Energy Shield", - [2] = "(10-15)% increased Energy Shield Recharge Rate", + ["sd"] = { + [1] = "(15-20)% chance to Avoid being Poisoned", }, ["sortedStats"] = { - [1] = "maximum_energy_shield_+%", - [2] = "energy_shield_recharge_rate_+%", + [1] = "base_avoid_poison_%", }, ["spc"] = { }, ["stats"] = { - ["energy_shield_recharge_rate_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 10, - ["statOrder"] = 1565, - }, - ["maximum_energy_shield_+%"] = { + ["base_avoid_poison_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 8, - ["statOrder"] = 1561, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1872, }, }, }, - [66] = { + [265] = { ["da"] = 0, - ["dn"] = "Soul Worship", + ["dn"] = "Bleed Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_energy_shield_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute36", ["in"] = { }, ["isJewelSocket"] = false, @@ -4786,47 +18249,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 1049, + ["oidx"] = 57033, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(8-12)% increased maximum Energy Shield", - [2] = "0.3% of Spell Damage Leeched as Energy Shield", + [1] = "(15-20)% chance to Avoid Bleeding", }, ["sortedStats"] = { - [1] = "maximum_energy_shield_+%", - [2] = "base_energy_shield_leech_from_spell_damage_permyriad", + [1] = "base_avoid_bleed_%", }, ["spc"] = { }, ["stats"] = { - ["base_energy_shield_leech_from_spell_damage_permyriad"] = { - ["fmt"] = "g", - ["index"] = 2, - ["max"] = 0.3, - ["min"] = 0.3, - ["statOrder"] = 1722, - }, - ["maximum_energy_shield_+%"] = { + ["base_avoid_bleed_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 8, - ["statOrder"] = 1561, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 4252, }, }, }, - [67] = { + [266] = { ["da"] = 0, - ["dn"] = "Blood-Quenched Bulwark", + ["dn"] = "Stun Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_block_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute37", ["in"] = { }, ["isJewelSocket"] = false, @@ -4834,47 +18288,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 5394, + ["oidx"] = 4248, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(6-10) Life gained when you Block", - [2] = "+8% Chance to Block Attack Damage", + [1] = "(15-20)% chance to Avoid being Stunned", }, ["sortedStats"] = { - [1] = "life_gained_on_block", - [2] = "additional_block_%", + [1] = "base_avoid_stun_%", }, ["spc"] = { }, ["stats"] = { - ["additional_block_%"] = { + ["base_avoid_stun_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 2458, - }, - ["life_gained_on_block"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 6, - ["statOrder"] = 1757, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1874, }, }, }, - [68] = { + [267] = { ["da"] = 0, - ["dn"] = "Thaumaturgical Protection", + ["dn"] = "Accuracy", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_block_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.dds", + ["id"] = "abyss_searching_small_attribute38", ["in"] = { }, ["isJewelSocket"] = false, @@ -4882,47 +18327,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 76907, + ["oidx"] = 67444, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "8% Chance to Block Spell Damage", - [2] = "(20-30)% increased Defences from Equipped Shield", + [1] = "+(31-60) to Accuracy Rating", }, ["sortedStats"] = { - [1] = "base_spell_block_%", - [2] = "shield_armour_+%", + [1] = "accuracy_rating", }, ["spc"] = { }, ["stats"] = { - ["base_spell_block_%"] = { + ["accuracy_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 1160, - }, - ["shield_armour_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 30, - ["min"] = 20, - ["statOrder"] = 1994, + ["max"] = 60, + ["min"] = 31, + ["statOrder"] = 1457, }, }, }, - [69] = { + [268] = { ["da"] = 0, - ["dn"] = "Jungle Paths", + ["dn"] = "Life", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_dodge_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute1", ["in"] = { }, ["isJewelSocket"] = false, @@ -4930,47 +18366,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 40498, + ["oidx"] = 7065, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(8-10)% chance to Avoid Elemental Ailments", - [2] = "(8-10)% chance to Avoid being Stunned", + [1] = "+(9-12) to maximum Life", }, ["sortedStats"] = { - [1] = "avoid_all_elemental_status_%", - [2] = "base_avoid_stun_%", + [1] = "base_maximum_life", }, ["spc"] = { }, ["stats"] = { - ["avoid_all_elemental_status_%"] = { + ["base_maximum_life"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 8, - ["statOrder"] = 1843, - }, - ["base_avoid_stun_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 8, - ["statOrder"] = 1851, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1591, }, }, }, - [70] = { + [269] = { ["da"] = 0, - ["dn"] = "Temple Paths", + ["dn"] = "Mana ", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_dodge_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute2", ["in"] = { }, ["isJewelSocket"] = false, @@ -4978,47 +18405,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 95964, + ["oidx"] = 69156, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+6% chance to Suppress Spell Damage", - [2] = "+(8-10)% to all Elemental Resistances", + [1] = "+(8-11) to maximum Mana", }, ["sortedStats"] = { - [1] = "base_spell_suppression_chance_%", - [2] = "base_resist_all_elements_%", + [1] = "base_maximum_mana", }, ["spc"] = { }, ["stats"] = { - ["base_resist_all_elements_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 8, - ["statOrder"] = 1619, - }, - ["base_spell_suppression_chance_%"] = { + ["base_maximum_mana"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 6, - ["min"] = 6, - ["statOrder"] = 1143, + ["max"] = 11, + ["min"] = 8, + ["statOrder"] = 1602, }, }, }, - [71] = { + [270] = { ["da"] = 0, - ["dn"] = "Commanding Presence", + ["dn"] = "Energy Shield Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_aura_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute3", ["in"] = { }, ["isJewelSocket"] = false, @@ -5026,47 +18444,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 98699, + ["oidx"] = 95243, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "20% increased Area of Effect of Aura Skills", - [2] = "(7-10)% increased effect of Non-Curse Auras from your Skills", + [1] = "Regenerate (9-12) Energy Shield per second", }, ["sortedStats"] = { - [1] = "base_aura_area_of_effect_+%", - [2] = "non_curse_aura_effect_+%", + [1] = "energy_shield_regeneration_rate_per_second", }, ["spc"] = { }, ["stats"] = { - ["base_aura_area_of_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 2224, - }, - ["non_curse_aura_effect_+%"] = { + ["energy_shield_regeneration_rate_per_second"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 7, - ["statOrder"] = 3566, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 6549, }, }, }, - [72] = { + [271] = { ["da"] = 0, - ["dn"] = "Ancient Hex", + ["dn"] = "Life Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_curse_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute4", ["in"] = { }, ["isJewelSocket"] = false, @@ -5074,47 +18483,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 38490, + ["oidx"] = 11898, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "(4-6)% increased Effect of your Curses", - [2] = "Curse Skills have 20% increased Skill Effect Duration", + [1] = "Regenerate (4.5-6) Life per second", }, ["sortedStats"] = { - [1] = "curse_effect_+%", - [2] = "curse_skill_effect_duration_+%", + [1] = "base_life_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["curse_effect_+%"] = { - ["fmt"] = "d", + ["base_life_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, ["max"] = 6, - ["min"] = 4, - ["statOrder"] = 2596, - }, - ["curse_skill_effect_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 6000, + ["min"] = 4.5, + ["statOrder"] = 1596, }, }, }, - [73] = { + [272] = { ["da"] = 0, - ["dn"] = "Cult of Fire", + ["dn"] = "Mana Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_fire_resistance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute5", ["in"] = { }, ["isJewelSocket"] = false, @@ -5122,47 +18522,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 29481, + ["oidx"] = 56195, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+1% to maximum Fire Resistance", - [2] = "+(20-30)% to Fire Resistance", + [1] = "Regenerate (0.6-1) Mana per second", }, ["sortedStats"] = { - [1] = "base_maximum_fire_damage_resistance_%", - [2] = "base_fire_damage_resistance_%", + [1] = "base_mana_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["base_fire_damage_resistance_%"] = { - ["fmt"] = "d", + ["base_mana_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, - ["max"] = 30, - ["min"] = 20, - ["statOrder"] = 1625, - }, - ["base_maximum_fire_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1623, + ["min"] = 0.6, + ["statOrder"] = 1605, }, }, }, - [74] = { + [273] = { ["da"] = 0, - ["dn"] = "Cult of Ice", + ["dn"] = "Armour", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_cold_resistance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute6", ["in"] = { }, ["isJewelSocket"] = false, @@ -5170,47 +18561,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 27195, + ["oidx"] = 21068, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+1% to maximum Cold Resistance", - [2] = "+(20-30)% to Cold Resistance", + [1] = "+(36-60) to Armour", }, ["sortedStats"] = { - [1] = "base_maximum_cold_damage_resistance_%", - [2] = "base_cold_damage_resistance_%", + [1] = "base_physical_damage_reduction_rating", }, ["spc"] = { }, ["stats"] = { - ["base_cold_damage_resistance_%"] = { + ["base_physical_damage_reduction_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 30, - ["min"] = 20, - ["statOrder"] = 1631, - }, - ["base_maximum_cold_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1629, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1561, }, }, }, - [75] = { + [274] = { ["da"] = 0, - ["dn"] = "Cult of Lightning", + ["dn"] = "Evasion Rating", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_lightning_resistance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute7", ["in"] = { }, ["isJewelSocket"] = false, @@ -5218,47 +18600,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 88478, + ["oidx"] = 59069, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+1% to maximum Lightning Resistance", - [2] = "+(20-30)% to Lightning Resistance", + [1] = "+(36-60) to Evasion Rating", }, ["sortedStats"] = { - [1] = "base_maximum_lightning_damage_resistance_%", - [2] = "base_lightning_damage_resistance_%", + [1] = "base_evasion_rating", }, ["spc"] = { }, ["stats"] = { - ["base_lightning_damage_resistance_%"] = { + ["base_evasion_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 30, - ["min"] = 20, - ["statOrder"] = 1636, - }, - ["base_maximum_lightning_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1634, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1566, }, }, }, - [76] = { + [275] = { ["da"] = 0, - ["dn"] = "Cult of Chaos", + ["dn"] = "Energy Shield", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_chaos_resistance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute8", ["in"] = { }, ["isJewelSocket"] = false, @@ -5266,47 +18639,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 95624, + ["oidx"] = 78292, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+1% to maximum Chaos Resistance", - [2] = "+(13-19)% to Chaos Resistance", + [1] = "+(9-12) to maximum Energy Shield", }, ["sortedStats"] = { - [1] = "base_maximum_chaos_damage_resistance_%", - [2] = "base_chaos_damage_resistance_%", + [1] = "base_maximum_energy_shield", }, ["spc"] = { }, ["stats"] = { - ["base_chaos_damage_resistance_%"] = { + ["base_maximum_energy_shield"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 19, - ["min"] = 13, - ["statOrder"] = 1641, - }, - ["base_maximum_chaos_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 1640, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1580, }, }, }, - [77] = { + [276] = { ["da"] = 0, - ["dn"] = "Might of the Vaal", + ["dn"] = "Mana Recoup", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds", - ["id"] = "vaal_notable_random_offense", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute9", ["in"] = { }, ["isJewelSocket"] = false, @@ -5314,29 +18678,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 59351, + ["oidx"] = 28934, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { + [1] = "(2-3)% of Damage taken Recouped as Mana", }, ["sortedStats"] = { + [1] = "damage_taken_goes_to_mana_%", }, ["spc"] = { }, ["stats"] = { + ["damage_taken_goes_to_mana_%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2480, + }, }, }, - [78] = { + [277] = { ["da"] = 0, - ["dn"] = "Legacy of the Vaal", + ["dn"] = "Cold Ailment Effect", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds", - ["id"] = "vaal_notable_random_defence", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute10", ["in"] = { }, ["isJewelSocket"] = false, @@ -5344,515 +18717,506 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 75827, + ["oidx"] = 11897, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { + [1] = "(10-20)% increased Effect of Cold Ailments", }, ["sortedStats"] = { + [1] = "cold_ailment_effect_+%", }, ["spc"] = { }, ["stats"] = { + ["cold_ailment_effect_+%"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 20, + ["min"] = 10, + ["statOrder"] = 5880, + }, }, }, - [79] = { + [278] = { ["da"] = 0, - ["dn"] = "Strength of Blood", + ["dn"] = "Lightning Ailment Effect", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/StrengthOfBlood.dds", - ["id"] = "karui_keystone_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute11", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 12, + ["o"] = 3, + ["oidx"] = 31734, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Life Recovery from Non-Instant Leech is not applied", - [2] = "2% additional Physical Damage Reduction for every 3% Life Recovery per second from Leech", + [1] = "(10-20)% increased Effect of Lightning Ailments", }, ["sortedStats"] = { - [1] = "keystone_strength_of_blood", + [1] = "lightning_ailment_effect_+%", }, ["spc"] = { }, ["stats"] = { - ["keystone_strength_of_blood"] = { + ["lightning_ailment_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10967, + ["max"] = 20, + ["min"] = 10, + ["statOrder"] = 7535, }, }, }, - [80] = { + [279] = { ["da"] = 0, - ["dn"] = "Tempered by War", + ["dn"] = "Strength", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/TemperedByWar.dds", - ["id"] = "karui_keystone_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute12", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 15, + ["o"] = 3, + ["oidx"] = 65592, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "50% of Cold and Lightning Damage taken as Fire Damage", - [2] = "50% less Cold Resistance", - [3] = "50% less Lightning Resistance", + [1] = "+(8-10) to Strength", }, ["sortedStats"] = { - [1] = "keystone_tempered_by_war", + [1] = "additional_strength", }, ["spc"] = { }, ["stats"] = { - ["keystone_tempered_by_war"] = { + ["additional_strength"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10970, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1200, }, }, }, - [81] = { + [280] = { ["da"] = 0, - ["dn"] = "Glancing Blows", + ["dn"] = "Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/GlancingBlows.dds", - ["id"] = "karui_keystone_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute13", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 18, + ["o"] = 3, + ["oidx"] = 67482, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Chance to Block Attack Damage is doubled", - [2] = "Chance to Block Spell Damage is doubled", - [3] = "You take 65% of Damage from Blocked Hits", + [1] = "+(8-10) to Dexterity", }, ["sortedStats"] = { - [1] = "keystone_glancing_blows", + [1] = "additional_dexterity", }, ["spc"] = { }, ["stats"] = { - ["keystone_glancing_blows"] = { + ["additional_dexterity"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10943, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1201, }, }, }, - [82] = { + [281] = { ["da"] = 0, - ["dn"] = "Chainbreaker", + ["dn"] = "Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/FocusedRage.dds", - ["id"] = "karui_keystone_3_v2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute14", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 21, + ["o"] = 3, + ["oidx"] = 9669, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Mana Recovery from Regeneration is not applied", - [2] = "1 Rage Regenerated for every 25 Mana Regeneration per Second", - [3] = "Does not delay Inherent Loss of Rage", - [4] = "Skills Cost +3 Rage", + [1] = "+(8-10) to Intelligence", }, ["sortedStats"] = { - [1] = "keystone_focused_rage", + [1] = "additional_intelligence", }, ["spc"] = { }, ["stats"] = { - ["keystone_focused_rage"] = { + ["additional_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10940, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1202, }, }, }, - [83] = { + [282] = { ["da"] = 0, - ["dn"] = "Wind Dancer", + ["dn"] = "Strength and Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/WindDancer.dds", - ["id"] = "maraketh_keystone_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute15", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 24, + ["o"] = 3, + ["oidx"] = 47823, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "20% less Attack Damage taken if you haven't been Hit by an Attack Recently", - [2] = "10% more chance to Evade Attacks if you have been Hit by an Attack Recently", - [3] = "20% more Attack Damage taken if you have been Hit by an Attack Recently", + [1] = "+(6-8) to Strength and Dexterity", }, ["sortedStats"] = { - [1] = "keystone_wind_dancer", + [1] = "additional_strength_and_dexterity", }, ["spc"] = { }, ["stats"] = { - ["keystone_wind_dancer"] = { + ["additional_strength_and_dexterity"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10978, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1203, }, }, }, - [84] = { + [283] = { ["da"] = 0, - ["dn"] = "The Traitor", + ["dn"] = "Strength and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/OasisKeystone.dds", - ["id"] = "maraketh_keystone_1_v2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute16", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 27, + ["o"] = 3, + ["oidx"] = 74980, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Flasks Gain 4 Charges per empty Flask Slot every 5 seconds", + [1] = "+(6-8) to Strength and Intelligence", }, ["sortedStats"] = { - [1] = "keystone_oasis", + [1] = "additional_strength_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["keystone_oasis"] = { + ["additional_strength_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10954, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1204, }, }, }, - [85] = { + [284] = { ["da"] = 0, - ["dn"] = "Dance with Death", + ["dn"] = "Dexterity and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/SharpandBrittle.dds", - ["id"] = "maraketh_keystone_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute17", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 30, + ["o"] = 3, + ["oidx"] = 10189, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Can't use Helmets", - [2] = "Your Critical Strike Chance is Lucky", - [3] = "Your Damage with Critical Strikes is Lucky", - [4] = "Enemies' Damage with Critical Strikes against you is Lucky", + [1] = "+(6-8) to Dexterity and Intelligence", }, ["sortedStats"] = { - [1] = "keystone_sharp_and_brittle", + [1] = "additional_dexterity_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["keystone_sharp_and_brittle"] = { + ["additional_dexterity_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10964, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1205, }, }, }, - [86] = { + [285] = { ["da"] = 0, - ["dn"] = "Second Sight", + ["dn"] = "Attributes", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/TheBlindMonk.dds", - ["id"] = "maraketh_keystone_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute18", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 33, + ["o"] = 3, + ["oidx"] = 27945, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "You are Blind", - [2] = "Blind does not affect your Light Radius", - [3] = "25% more Melee Critical Strike Chance while Blinded", + [1] = "+(4-6) to all Attributes", }, ["sortedStats"] = { - [1] = "keystone_blind_monk", + [1] = "additional_all_attributes", }, ["spc"] = { }, ["stats"] = { - ["keystone_blind_monk"] = { + ["additional_all_attributes"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10931, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1199, }, }, }, - [87] = { + [286] = { ["da"] = 0, - ["dn"] = "The Agnostic", + ["dn"] = "Fire Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/MiracleMaker.dds", - ["id"] = "templar_keystone_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute19", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 36, + ["o"] = 3, + ["oidx"] = 47171, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Removes all Energy Shield", - [2] = "While not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life", + [1] = "+(6-8)% to Fire Resistance", }, ["sortedStats"] = { - [1] = "keystone_miracle_of_thaumaturgy", + [1] = "base_fire_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["keystone_miracle_of_thaumaturgy"] = { + ["base_fire_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10952, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1648, }, }, }, - [88] = { + [287] = { ["da"] = 0, - ["dn"] = "Transcendence", + ["dn"] = "Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/TranscendenceKeystone.dds", - ["id"] = "templar_keystone_1_v2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute20", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 39, + ["o"] = 3, + ["oidx"] = 1000, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Armour applies to Fire, Cold and Lightning Damage taken from Hits instead of Physical Damage", - [2] = "-15% to all maximum Elemental Resistances", + [1] = "+(6-8)% to Cold Resistance", }, ["sortedStats"] = { - [1] = "keystone_prismatic_bulwark", + [1] = "base_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["keystone_prismatic_bulwark"] = { + ["base_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10957, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1654, }, }, }, - [89] = { + [288] = { ["da"] = 0, - ["dn"] = "Inner Conviction", + ["dn"] = "Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/InnerConviction.dds", - ["id"] = "templar_keystone_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute21", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 42, + ["o"] = 3, + ["oidx"] = 29863, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "3% more Spell Damage per Power Charge", - [2] = "Gain Power Charges instead of Frenzy Charges", + [1] = "+(6-8)% to Lightning Resistance", }, ["sortedStats"] = { - [1] = "keystone_quiet_might", + [1] = "base_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["keystone_quiet_might"] = { + ["base_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10958, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1659, }, }, }, - [90] = { + [289] = { ["da"] = 0, - ["dn"] = "Power of Purpose", + ["dn"] = "Fire and Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/PowerOfPurpose.dds", - ["id"] = "templar_keystone_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute22", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 45, + ["o"] = 3, + ["oidx"] = 38723, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% of Maximum Mana is Converted to twice that much Armour", + [1] = "+(4-6)% to Fire and Cold Resistances", }, ["sortedStats"] = { - [1] = "keystone_mental_conditioning", + [1] = "fire_and_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["keystone_mental_conditioning"] = { + ["fire_and_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10951, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2832, }, }, }, - [91] = { + [290] = { ["da"] = 0, - ["dn"] = "Devotion", + ["dn"] = "Fire and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNode.dds", - ["id"] = "templar_devotion_node", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute23", ["in"] = { }, ["isJewelSocket"] = false, @@ -5862,36 +19226,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 6194, + ["oidx"] = 56838, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+10 to Devotion", + [1] = "+(4-6)% to Fire and Lightning Resistances", }, ["sortedStats"] = { - [1] = "base_devotion", + [1] = "fire_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["base_devotion"] = { + ["fire_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 10861, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2833, }, }, }, - [92] = { + [291] = { ["da"] = 0, - ["dn"] = "Heated Devotion", + ["dn"] = "Cold and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_fire_conversion", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute24", ["in"] = { }, ["isJewelSocket"] = false, @@ -5899,38 +19263,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 36277, + ["oidx"] = 60021, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% of Physical Damage Converted to Fire Damage while you have at least 150 Devotion", + [1] = "+(4-6)% to Cold and Lightning Resistances", }, ["sortedStats"] = { - [1] = "physical_damage_%_to_convert_to_fire_at_devotion_threshold", + [1] = "cold_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_%_to_convert_to_fire_at_devotion_threshold"] = { + ["cold_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 9639, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2834, }, }, }, - [93] = { + [292] = { ["da"] = 0, - ["dn"] = "Calming Devotion", + ["dn"] = "Elemental Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_cold_conversion", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute25", ["in"] = { }, ["isJewelSocket"] = false, @@ -5938,38 +19302,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 64088, + ["oidx"] = 55198, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% of Physical Damage Converted to Cold Damage while you have at least 150 Devotion", + [1] = "+(3-5)% to all Elemental Resistances", }, ["sortedStats"] = { - [1] = "physical_damage_%_to_convert_to_cold_at_devotion_threshold", + [1] = "base_resist_all_elements_%", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_%_to_convert_to_cold_at_devotion_threshold"] = { + ["base_resist_all_elements_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 9638, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1642, }, }, }, - [94] = { + [293] = { ["da"] = 0, - ["dn"] = "Thundrous Devotion", + ["dn"] = "Chaos Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_lightning_conversion", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute26", ["in"] = { }, ["isJewelSocket"] = false, @@ -5977,38 +19341,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 94707, + ["oidx"] = 32616, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% of Physical Damage Converted to Lightning Damage while you have at least 150 Devotion", + [1] = "+(4-6)% to Chaos Resistance", }, ["sortedStats"] = { - [1] = "physical_damage_%_to_convert_to_lightning_at_devotion_threshold", + [1] = "base_chaos_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_%_to_convert_to_lightning_at_devotion_threshold"] = { + ["base_chaos_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 9640, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1664, }, }, }, - [95] = { + [294] = { ["da"] = 0, - ["dn"] = "Thoughts and Prayers", + ["dn"] = "Cast Speed", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_mana_added_as_energy_shield", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute27", ["in"] = { }, ["isJewelSocket"] = false, @@ -6016,38 +19380,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 74973, + ["oidx"] = 49588, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Gain 5% of Maximum Mana as Extra Maximum Energy Shield while you have at least 150 Devotion", + [1] = "(2-3)% increased Cast Speed", }, ["sortedStats"] = { - [1] = "mana_%_to_add_as_energy_shield_at_devotion_threshold", + [1] = "base_cast_speed_+%", }, ["spc"] = { }, ["stats"] = { - ["mana_%_to_add_as_energy_shield_at_devotion_threshold"] = { + ["base_cast_speed_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 8188, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1470, }, }, }, - [96] = { + [295] = { ["da"] = 0, - ["dn"] = "Zealot", + ["dn"] = "Critical Strike Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_arcane_surge", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute28", ["in"] = { }, ["isJewelSocket"] = false, @@ -6055,38 +19419,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 10172, + ["oidx"] = 41934, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Gain Arcane Surge on Hit with Spells if you have at least 150 Devotion", + [1] = "(6-8)% increased Critical Strike Chance", }, ["sortedStats"] = { - [1] = "gain_arcane_surge_on_hit_at_devotion_threshold", + [1] = "critical_strike_chance_+%", }, ["spc"] = { }, ["stats"] = { - ["gain_arcane_surge_on_hit_at_devotion_threshold"] = { + ["critical_strike_chance_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6727, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 11063, }, }, }, - [97] = { + [296] = { ["da"] = 0, - ["dn"] = "Enduring Faith", + ["dn"] = "Critical Strike Multiplier", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_minimum_endurance_charge", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute29", ["in"] = { }, ["isJewelSocket"] = false, @@ -6094,38 +19458,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 17606, + ["oidx"] = 22560, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+1 to Minimum Endurance Charges while you have at least 150 Devotion", + [1] = "+(7-9)% to Critical Strike Multiplier", }, ["sortedStats"] = { - [1] = "minimum_endurance_charges_at_devotion_threshold", + [1] = "base_critical_strike_multiplier_+", }, ["spc"] = { }, ["stats"] = { - ["minimum_endurance_charges_at_devotion_threshold"] = { + ["base_critical_strike_multiplier_+"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 9255, + ["max"] = 9, + ["min"] = 7, + ["statOrder"] = 11064, }, }, }, - [98] = { + [297] = { ["da"] = 0, - ["dn"] = "Powerful Faith", + ["dn"] = "Hinder Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_minimum_power_charge", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute30", ["in"] = { }, ["isJewelSocket"] = false, @@ -6133,38 +19497,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 5178, + ["oidx"] = 45308, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+1 to Minimum Power Charges while you have at least 150 Devotion", + [1] = "(2-3)% chance to Hinder Enemies on Hit with Spells", }, ["sortedStats"] = { - [1] = "minimum_power_charges_at_devotion_threshold", + [1] = "spells_chance_to_hinder_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["minimum_power_charges_at_devotion_threshold"] = { + ["spells_chance_to_hinder_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 9260, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 10336, }, }, }, - [99] = { + [298] = { ["da"] = 0, - ["dn"] = "Frenzied Faith", + ["dn"] = "Ignite Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_minimum_frenzy_charge", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute31", ["in"] = { }, ["isJewelSocket"] = false, @@ -6172,38 +19536,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 22257, + ["oidx"] = 98220, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+1 to Minimum Frenzy Charges while you have at least 150 Devotion", + [1] = "(15-20)% chance to Avoid being Ignited", }, ["sortedStats"] = { - [1] = "minimum_frenzy_charges_at_devotion_threshold", + [1] = "base_avoid_ignite_%", }, ["spc"] = { }, ["stats"] = { - ["minimum_frenzy_charges_at_devotion_threshold"] = { + ["base_avoid_ignite_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 9257, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1869, }, }, }, - [100] = { + [299] = { ["da"] = 0, - ["dn"] = "Cloistered", + ["dn"] = "Freeze Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_consecrated_ground_ailments", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute32", ["in"] = { }, ["isJewelSocket"] = false, @@ -6211,38 +19575,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 14760, + ["oidx"] = 7137, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Immune to Elemental Ailments while on Consecrated Ground if you have at least 150 Devotion", + [1] = "(15-20)% chance to Avoid being Frozen", }, ["sortedStats"] = { - [1] = "immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold", + [1] = "base_avoid_freeze_%", }, ["spc"] = { }, ["stats"] = { - ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"] = { + ["base_avoid_freeze_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 7226, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1868, }, }, }, - [101] = { + [300] = { ["da"] = 0, - ["dn"] = "Martyr's Might", + ["dn"] = "Shock Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_additional_physical_reduction", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute33", ["in"] = { }, ["isJewelSocket"] = false, @@ -6250,38 +19614,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 42889, + ["oidx"] = 13428, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "5% additional Physical Damage Reduction while you have at least 150 Devotion", + [1] = "(15-20)% chance to Avoid being Shocked", }, ["sortedStats"] = { - [1] = "physical_damage_reduction_%_at_devotion_threshold", + [1] = "base_avoid_shock_%", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_reduction_%_at_devotion_threshold"] = { + ["base_avoid_shock_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 9647, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1871, }, }, }, - [102] = { + [301] = { ["da"] = 0, - ["dn"] = "Intolerance of Sin", + ["dn"] = "Poison Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_max_resistances", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute34", ["in"] = { }, ["isJewelSocket"] = false, @@ -6289,38 +19653,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 60270, + ["oidx"] = 67816, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+1% to all maximum Resistances if you have at least 150 Devotion", + [1] = "(15-20)% chance to Avoid being Poisoned", }, ["sortedStats"] = { - [1] = "additional_maximum_all_resistances_%_at_devotion_threshold", + [1] = "base_avoid_poison_%", }, ["spc"] = { }, ["stats"] = { - ["additional_maximum_all_resistances_%_at_devotion_threshold"] = { + ["base_avoid_poison_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 4565, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1872, }, }, }, - [103] = { + [302] = { ["da"] = 0, - ["dn"] = "Smite the Wicked", + ["dn"] = "Bleed Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_fire_exposure", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute35", ["in"] = { }, ["isJewelSocket"] = false, @@ -6328,38 +19692,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 27127, + ["oidx"] = 62260, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% chance to inflict Fire Exposure on Hit if you have at least 150 Devotion", + [1] = "(15-20)% chance to Avoid Bleeding", }, ["sortedStats"] = { - [1] = "inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold", + [1] = "base_avoid_bleed_%", }, ["spc"] = { }, ["stats"] = { - ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"] = { + ["base_avoid_bleed_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 7277, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 4252, }, }, }, - [104] = { + [303] = { ["da"] = 0, - ["dn"] = "Smite the Ignorant", + ["dn"] = "Stun Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_cold_exposure", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.dds", + ["id"] = "abyss_hypnotic_small_attribute36", ["in"] = { }, ["isJewelSocket"] = false, @@ -6367,38 +19731,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 82503, + ["oidx"] = 17537, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% chance to inflict Cold Exposure on Hit if you have at least 150 Devotion", + [1] = "(15-20)% chance to Avoid being Stunned", }, ["sortedStats"] = { - [1] = "inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold", + [1] = "base_avoid_stun_%", }, ["spc"] = { }, ["stats"] = { - ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"] = { + ["base_avoid_stun_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 7274, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1874, }, }, }, - [105] = { + [304] = { ["da"] = 0, - ["dn"] = "Smite the Heretical", + ["dn"] = "Life", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/DevotionNotable.dds", - ["id"] = "templar_notable_lightning_exposure", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute1", ["in"] = { }, ["isJewelSocket"] = false, @@ -6406,200 +19770,194 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 28525, + ["oidx"] = 95064, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% chance to inflict Lightning Exposure on Hit if you have at least 150 Devotion", + [1] = "+(9-12) to maximum Life", }, ["sortedStats"] = { - [1] = "inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold", + [1] = "base_maximum_life", }, ["spc"] = { }, ["stats"] = { - ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"] = { + ["base_maximum_life"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 7281, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1591, }, }, }, - [106] = { + [305] = { ["da"] = 0, - ["dn"] = "Supreme Decadence", + ["dn"] = "Mana ", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeDecadence.dds", - ["id"] = "eternal_keystone_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute2", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 48, + ["o"] = 3, + ["oidx"] = 95448, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Life Recovery from Flasks also applies to Energy Shield", - [2] = "30% less Life Recovery from Flasks", + [1] = "+(8-11) to maximum Mana", }, ["sortedStats"] = { - [1] = "keystone_emperors_heart", + [1] = "base_maximum_mana", }, ["spc"] = { }, ["stats"] = { - ["keystone_emperors_heart"] = { + ["base_maximum_mana"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10938, + ["max"] = 11, + ["min"] = 8, + ["statOrder"] = 1602, }, }, }, - [107] = { + [306] = { ["da"] = 0, - ["dn"] = "Supreme Grandstanding", + ["dn"] = "Energy Shield Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeGrandstand.dds", - ["id"] = "eternal_keystone_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute3", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 51, + ["o"] = 3, + ["oidx"] = 8122, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Nearby Allies and Enemies Share Charges with you", - [2] = "Enemies Hitting you have 10% chance to gain an Endurance, ", - [3] = "Frenzy or Power Charge", + [1] = "Regenerate (9-12) Energy Shield per second", }, ["sortedStats"] = { - [1] = "keystone_magnetic_charge", + [1] = "energy_shield_regeneration_rate_per_second", }, ["spc"] = { }, ["stats"] = { - ["keystone_magnetic_charge"] = { + ["energy_shield_regeneration_rate_per_second"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10949, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 6549, }, }, }, - [108] = { + [307] = { ["da"] = 0, - ["dn"] = "Supreme Ego", + ["dn"] = "Life Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeEgo.dds", - ["id"] = "eternal_keystone_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute4", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 54, + ["o"] = 3, + ["oidx"] = 43980, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Auras from your Skills can only affect you", - [2] = "Aura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve", - [3] = "40% more Mana Reservation of Aura Skills", + [1] = "Regenerate (4.5-6) Life per second", }, ["sortedStats"] = { - [1] = "keystone_supreme_ego", + [1] = "base_life_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["keystone_supreme_ego"] = { - ["fmt"] = "d", + ["base_life_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10968, + ["max"] = 6, + ["min"] = 4.5, + ["statOrder"] = 1596, }, }, }, - [109] = { + [308] = { ["da"] = 0, - ["dn"] = "Supreme Ostentation", + ["dn"] = "Mana Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/SupremeProdigy.dds", - ["id"] = "eternal_keystone_3_v2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute5", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 57, + ["o"] = 3, + ["oidx"] = 46039, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Ignore Attribute Requirements", - [2] = "Gain no inherent bonuses from Attributes", + [1] = "Regenerate (0.6-1) Mana per second", }, ["sortedStats"] = { - [1] = "keystone_supreme_prodigy", + [1] = "base_mana_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["keystone_supreme_prodigy"] = { - ["fmt"] = "d", + ["base_mana_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10969, + ["min"] = 0.6, + ["statOrder"] = 1605, }, }, }, - [110] = { + [309] = { ["da"] = 0, - ["dn"] = "Price of Glory", + ["dn"] = "Armour", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireBlank.dds", - ["id"] = "eternal_small_blank", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute6", ["in"] = { }, ["isJewelSocket"] = false, @@ -6609,27 +19967,36 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 20196, + ["oidx"] = 34853, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { + [1] = "+(36-60) to Armour", }, ["sortedStats"] = { + [1] = "base_physical_damage_reduction_rating", }, ["spc"] = { }, ["stats"] = { + ["base_physical_damage_reduction_rating"] = { + ["fmt"] = "d", + ["index"] = 1, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1561, + }, }, }, - [111] = { + [310] = { ["da"] = 0, - ["dn"] = "Flawless Execution", + ["dn"] = "Evasion Rating", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_crit_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute7", ["in"] = { }, ["isJewelSocket"] = false, @@ -6637,38 +20004,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 14977, + ["oidx"] = 66640, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Critical Strike Chance", + [1] = "+(36-60) to Evasion Rating", }, ["sortedStats"] = { - [1] = "critical_strike_chance_+%", + [1] = "base_evasion_rating", }, ["spc"] = { }, ["stats"] = { - ["critical_strike_chance_+%"] = { + ["base_evasion_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 10896, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1566, }, }, }, - [112] = { + [311] = { ["da"] = 0, - ["dn"] = "Brutal Execution", + ["dn"] = "Energy Shield", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_crit_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute8", ["in"] = { }, ["isJewelSocket"] = false, @@ -6676,38 +20043,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 76777, + ["oidx"] = 94069, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+40% to Critical Strike Multiplier", + [1] = "+(9-12) to maximum Energy Shield", }, ["sortedStats"] = { - [1] = "base_critical_strike_multiplier_+", + [1] = "base_maximum_energy_shield", }, ["spc"] = { }, ["stats"] = { - ["base_critical_strike_multiplier_+"] = { + ["base_maximum_energy_shield"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 40, - ["min"] = 40, - ["statOrder"] = 10897, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1580, }, }, }, - [113] = { + [312] = { ["da"] = 0, - ["dn"] = "Eternal Resilience", + ["dn"] = "Mana Recoup", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_endurance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute9", ["in"] = { }, ["isJewelSocket"] = false, @@ -6715,38 +20082,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 5183, + ["oidx"] = 6640, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Gain 1 Endurance Charge every second if you've been Hit Recently", + [1] = "(2-3)% of Damage taken Recouped as Mana", }, ["sortedStats"] = { - [1] = "gain_endurance_charge_per_second_if_have_been_hit_recently", + [1] = "damage_taken_goes_to_mana_%", }, ["spc"] = { }, ["stats"] = { - ["gain_endurance_charge_per_second_if_have_been_hit_recently"] = { + ["damage_taken_goes_to_mana_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6747, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2480, }, }, }, - [114] = { + [313] = { ["da"] = 0, - ["dn"] = "Eternal Fortitude", + ["dn"] = "Strength", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_endurance_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute10", ["in"] = { }, ["isJewelSocket"] = false, @@ -6754,38 +20121,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 80316, + ["oidx"] = 93998, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "8% increased Armour per Endurance Charge", + [1] = "+(8-10) to Strength", }, ["sortedStats"] = { - [1] = "physical_damage_reduction_rating_+%_per_endurance_charge", + [1] = "additional_strength", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_reduction_rating_+%_per_endurance_charge"] = { + ["additional_strength"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 8, + ["max"] = 10, ["min"] = 8, - ["statOrder"] = 9656, + ["statOrder"] = 1200, }, }, }, - [115] = { + [314] = { ["da"] = 0, - ["dn"] = "Eternal Dominance", + ["dn"] = "Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_endurance_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute11", ["in"] = { }, ["isJewelSocket"] = false, @@ -6793,38 +20160,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 68905, + ["oidx"] = 57475, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% increased Damage per Endurance Charge", + [1] = "+(8-10) to Dexterity", }, ["sortedStats"] = { - [1] = "damage_+%_per_endurance_charge", + [1] = "additional_dexterity", }, ["spc"] = { }, ["stats"] = { - ["damage_+%_per_endurance_charge"] = { + ["additional_dexterity"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 3199, + ["min"] = 8, + ["statOrder"] = 1201, }, }, }, - [116] = { + [315] = { ["da"] = 0, - ["dn"] = "Eternal Fervour", + ["dn"] = "Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_frenzy_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute12", ["in"] = { }, ["isJewelSocket"] = false, @@ -6832,38 +20199,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 14480, + ["oidx"] = 40883, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% chance to gain a Frenzy Charge on Hit", + [1] = "+(8-10) to Intelligence", }, ["sortedStats"] = { - [1] = "add_frenzy_charge_on_skill_hit_%", + [1] = "additional_intelligence", }, ["spc"] = { }, ["stats"] = { - ["add_frenzy_charge_on_skill_hit_%"] = { + ["additional_intelligence"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1833, + ["min"] = 8, + ["statOrder"] = 1202, }, }, }, - [117] = { + [316] = { ["da"] = 0, - ["dn"] = "Eternal Adaptiveness", + ["dn"] = "Strength and Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_frenzy_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute13", ["in"] = { }, ["isJewelSocket"] = false, @@ -6871,38 +20238,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 93682, + ["oidx"] = 18380, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "8% increased Evasion Rating per Frenzy Charge", + [1] = "+(6-8) to Strength and Dexterity", }, ["sortedStats"] = { - [1] = "evasion_rating_+%_per_frenzy_charge", + [1] = "additional_strength_and_dexterity", }, ["spc"] = { }, ["stats"] = { - ["evasion_rating_+%_per_frenzy_charge"] = { + ["additional_strength_and_dexterity"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 1556, + ["min"] = 6, + ["statOrder"] = 1203, }, }, }, - [118] = { + [317] = { ["da"] = 0, - ["dn"] = "Eternal Bloodlust", + ["dn"] = "Strength and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_frenzy_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute14", ["in"] = { }, ["isJewelSocket"] = false, @@ -6910,38 +20277,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 80835, + ["oidx"] = 47407, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% increased Damage per Frenzy Charge", + [1] = "+(6-8) to Strength and Intelligence", }, ["sortedStats"] = { - [1] = "damage_+%_per_frenzy_charge", + [1] = "additional_strength_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["damage_+%_per_frenzy_charge"] = { + ["additional_strength_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 3286, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1204, }, }, }, - [119] = { + [318] = { ["da"] = 0, - ["dn"] = "Eternal Subjugation", + ["dn"] = "Dexterity and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_power_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute15", ["in"] = { }, ["isJewelSocket"] = false, @@ -6949,38 +20316,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 38654, + ["oidx"] = 81366, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% chance to gain a Power Charge on Critical Strike", + [1] = "+(6-8) to Dexterity and Intelligence", }, ["sortedStats"] = { - [1] = "add_power_charge_on_critical_strike_%", + [1] = "additional_dexterity_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["add_power_charge_on_critical_strike_%"] = { + ["additional_dexterity_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1830, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1205, }, }, }, - [120] = { + [319] = { ["da"] = 0, - ["dn"] = "Eternal Separation", + ["dn"] = "Attributes", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_power_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute16", ["in"] = { }, ["isJewelSocket"] = false, @@ -6988,38 +20355,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 79623, + ["oidx"] = 68237, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "4% increased Energy Shield per Power Charge", + [1] = "+(4-6) to all Attributes", }, ["sortedStats"] = { - [1] = "energy_shield_+%_per_power_charge", + [1] = "additional_all_attributes", }, ["spc"] = { }, ["stats"] = { - ["energy_shield_+%_per_power_charge"] = { + ["additional_all_attributes"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 4, + ["max"] = 6, ["min"] = 4, - ["statOrder"] = 6444, + ["statOrder"] = 1199, }, }, }, - [121] = { + [320] = { ["da"] = 0, - ["dn"] = "Eternal Exploitation", + ["dn"] = "Fire Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_power_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute17", ["in"] = { }, ["isJewelSocket"] = false, @@ -7027,38 +20394,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 6774, + ["oidx"] = 20276, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% increased Damage per Power Charge", + [1] = "+(6-8)% to Fire Resistance", }, ["sortedStats"] = { - [1] = "damage_+%_per_power_charge", + [1] = "base_fire_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["damage_+%_per_power_charge"] = { + ["base_fire_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 6066, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1648, }, }, }, - [122] = { + [321] = { ["da"] = 0, - ["dn"] = "Rites of Lunaris", + ["dn"] = "Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_chill_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute18", ["in"] = { }, ["isJewelSocket"] = false, @@ -7066,38 +20433,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 68329, + ["oidx"] = 43388, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "30% increased Effect of Chill", + [1] = "+(6-8)% to Cold Resistance", }, ["sortedStats"] = { - [1] = "chill_effect_+%", + [1] = "base_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["chill_effect_+%"] = { + ["base_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 10917, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1654, }, }, }, - [123] = { + [322] = { ["da"] = 0, - ["dn"] = "Rites of Solaris", + ["dn"] = "Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_chill_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute19", ["in"] = { }, ["isJewelSocket"] = false, @@ -7105,38 +20472,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 52806, + ["oidx"] = 35894, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% chance to Avoid being Chilled", + [1] = "+(6-8)% to Lightning Resistance", }, ["sortedStats"] = { - [1] = "base_avoid_chill_%", + [1] = "base_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["base_avoid_chill_%"] = { + ["base_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1844, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1659, }, }, }, - [124] = { + [323] = { ["da"] = 0, - ["dn"] = "Virtue Gem Surgery", + ["dn"] = "Fire and Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_shock_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute20", ["in"] = { }, ["isJewelSocket"] = false, @@ -7144,38 +20511,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 79878, + ["oidx"] = 34185, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "30% increased Effect of Shock", + [1] = "+(4-6)% to Fire and Cold Resistances", }, ["sortedStats"] = { - [1] = "shock_effect_+%", + [1] = "fire_and_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["shock_effect_+%"] = { + ["fire_and_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 10925, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2832, }, }, }, - [125] = { + [324] = { ["da"] = 0, - ["dn"] = "Rural Life", + ["dn"] = "Fire and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_shock_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute21", ["in"] = { }, ["isJewelSocket"] = false, @@ -7183,38 +20550,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 7265, + ["oidx"] = 19799, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% chance to Avoid being Shocked", + [1] = "+(4-6)% to Fire and Lightning Resistances", }, ["sortedStats"] = { - [1] = "base_avoid_shock_%", + [1] = "fire_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["base_avoid_shock_%"] = { + ["fire_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1848, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2833, }, }, }, - [126] = { + [325] = { ["da"] = 0, - ["dn"] = "City Walls", + ["dn"] = "Cold and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_block_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute22", ["in"] = { }, ["isJewelSocket"] = false, @@ -7222,38 +20589,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 51502, + ["oidx"] = 16330, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+12% Chance to Block Attack Damage", + [1] = "+(4-6)% to Cold and Lightning Resistances", }, ["sortedStats"] = { - [1] = "additional_block_%", + [1] = "cold_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["additional_block_%"] = { + ["cold_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 2458, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2834, }, }, }, - [127] = { + [326] = { ["da"] = 0, - ["dn"] = "Sceptre Pinnacle", + ["dn"] = "Elemental Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_block_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute23", ["in"] = { }, ["isJewelSocket"] = false, @@ -7261,38 +20628,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 69709, + ["oidx"] = 33633, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "12% Chance to Block Spell Damage", + [1] = "+(3-5)% to all Elemental Resistances", }, ["sortedStats"] = { - [1] = "base_spell_block_%", + [1] = "base_resist_all_elements_%", }, ["spc"] = { }, ["stats"] = { - ["base_spell_block_%"] = { + ["base_resist_all_elements_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 1160, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1642, }, }, }, - [128] = { + [327] = { ["da"] = 0, - ["dn"] = "Secret Tunnels", + ["dn"] = "Chaos Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_dodge_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute24", ["in"] = { }, ["isJewelSocket"] = false, @@ -7300,38 +20667,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 54984, + ["oidx"] = 35417, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "20% chance to Avoid Elemental Ailments", + [1] = "+(4-6)% to Chaos Resistance", }, ["sortedStats"] = { - [1] = "avoid_all_elemental_status_%", + [1] = "base_chaos_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["avoid_all_elemental_status_%"] = { + ["base_chaos_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1843, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1664, }, }, }, - [129] = { + [328] = { ["da"] = 0, - ["dn"] = "Purity Rebel", + ["dn"] = "Cast Speed", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_dodge_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute25", ["in"] = { }, ["isJewelSocket"] = false, @@ -7339,38 +20706,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 9731, + ["oidx"] = 94569, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+12% chance to Suppress Spell Damage", + [1] = "(2-3)% increased Cast Speed", }, ["sortedStats"] = { - [1] = "base_spell_suppression_chance_%", + [1] = "base_cast_speed_+%", }, ["spc"] = { }, ["stats"] = { - ["base_spell_suppression_chance_%"] = { + ["base_cast_speed_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 1143, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1470, }, }, }, - [130] = { + [329] = { ["da"] = 0, - ["dn"] = "Superiority", + ["dn"] = "Minion Blind Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_aura_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute26", ["in"] = { }, ["isJewelSocket"] = false, @@ -7378,38 +20745,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 65124, + ["oidx"] = 39288, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "12% increased effect of Non-Curse Auras from your Skills", + [1] = "Minions have (2-3)% chance to Blind on Hit with Attacks", }, ["sortedStats"] = { - [1] = "non_curse_aura_effect_+%", + [1] = "minion_attacks_chance_to_blind_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["non_curse_aura_effect_+%"] = { + ["minion_attacks_chance_to_blind_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 3566, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 9408, }, }, }, - [131] = { + [330] = { ["da"] = 0, - ["dn"] = "Slum Lord", + ["dn"] = "Minion Taunt Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_minion_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute27", ["in"] = { }, ["isJewelSocket"] = false, @@ -7417,38 +20784,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 7309, + ["oidx"] = 45885, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Minions deal 80% increased Damage", + [1] = "Minions have (2-3)% chance to Taunt on Hit with Attacks", }, ["sortedStats"] = { - [1] = "minion_damage_+%", + [1] = "minion_attacks_chance_to_taunt_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["minion_damage_+%"] = { + ["minion_attacks_chance_to_taunt_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1973, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 3467, }, }, }, - [132] = { + [331] = { ["da"] = 0, - ["dn"] = "Axiom Warden", + ["dn"] = "Minion Hinder Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_minion_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute28", ["in"] = { }, ["isJewelSocket"] = false, @@ -7456,38 +20823,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 19927, + ["oidx"] = 95501, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Minions have 80% increased maximum Life", + [1] = "Minions have (2-3)% chance to Hinder Enemies on Hit with Spells", }, ["sortedStats"] = { - [1] = "minion_maximum_life_+%", + [1] = "minion_spells_chance_to_hinder_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["minion_maximum_life_+%"] = { + ["minion_spells_chance_to_hinder_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1766, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 9467, }, }, }, - [133] = { + [332] = { ["da"] = 0, - ["dn"] = "Gemling Inquisition", + ["dn"] = "Ignite Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_spell_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute29", ["in"] = { }, ["isJewelSocket"] = false, @@ -7495,38 +20862,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 80563, + ["oidx"] = 87649, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Spell Damage", + [1] = "(15-20)% chance to Avoid being Ignited", }, ["sortedStats"] = { - [1] = "spell_damage_+%", + [1] = "base_avoid_ignite_%", }, ["spc"] = { }, ["stats"] = { - ["spell_damage_+%"] = { + ["base_avoid_ignite_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1223, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1869, }, }, }, - [134] = { + [333] = { ["da"] = 0, - ["dn"] = "Gemling Ambush", + ["dn"] = "Freeze Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_spell_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute30", ["in"] = { }, ["isJewelSocket"] = false, @@ -7534,38 +20901,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 68382, + ["oidx"] = 70570, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Spell Critical Strike Chance", + [1] = "(15-20)% chance to Avoid being Frozen", }, ["sortedStats"] = { - [1] = "spell_critical_strike_chance_+%", + [1] = "base_avoid_freeze_%", }, ["spc"] = { }, ["stats"] = { - ["spell_critical_strike_chance_+%"] = { + ["base_avoid_freeze_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1458, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1868, }, }, }, - [135] = { + [334] = { ["da"] = 0, - ["dn"] = "Night of a Thousand Ribbons", + ["dn"] = "Shock Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_fire_attack_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute31", ["in"] = { }, ["isJewelSocket"] = false, @@ -7573,38 +20940,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 99311, + ["oidx"] = 17559, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Fire Damage with Attack Skills", + [1] = "(15-20)% chance to Avoid being Shocked", }, ["sortedStats"] = { - [1] = "fire_damage_with_attack_skills_+%", + [1] = "base_avoid_shock_%", }, ["spc"] = { }, ["stats"] = { - ["fire_damage_with_attack_skills_+%"] = { + ["base_avoid_shock_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 6577, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1871, }, }, }, - [136] = { + [335] = { ["da"] = 0, - ["dn"] = "Bloody Flowers' Rebellion", + ["dn"] = "Poison Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_cold_attack_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute32", ["in"] = { }, ["isJewelSocket"] = false, @@ -7612,38 +20979,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 67225, + ["oidx"] = 99956, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Cold Damage with Attack Skills", + [1] = "(15-20)% chance to Avoid being Poisoned", }, ["sortedStats"] = { - [1] = "cold_damage_with_attack_skills_+%", + [1] = "base_avoid_poison_%", }, ["spc"] = { }, ["stats"] = { - ["cold_damage_with_attack_skills_+%"] = { + ["base_avoid_poison_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 5821, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1872, }, }, }, - [137] = { + [336] = { ["da"] = 0, - ["dn"] = "Chitus' Heart", + ["dn"] = "Bleed Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_lightning_attack_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute33", ["in"] = { }, ["isJewelSocket"] = false, @@ -7651,38 +21018,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 82524, + ["oidx"] = 52933, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Lightning Damage with Attack Skills", + [1] = "(15-20)% chance to Avoid Bleeding", }, ["sortedStats"] = { - [1] = "lightning_damage_with_attack_skills_+%", + [1] = "base_avoid_bleed_%", }, ["spc"] = { }, ["stats"] = { - ["lightning_damage_with_attack_skills_+%"] = { + ["base_avoid_bleed_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 7454, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 4252, }, }, }, - [138] = { + [337] = { ["da"] = 0, - ["dn"] = "Gemling Training", + ["dn"] = "Stun Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_physical_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute34", ["in"] = { }, ["isJewelSocket"] = false, @@ -7690,38 +21057,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 98014, + ["oidx"] = 71887, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Physical Damage", + [1] = "(15-20)% chance to Avoid being Stunned", }, ["sortedStats"] = { - [1] = "physical_damage_+%", + [1] = "base_avoid_stun_%", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_+%"] = { + ["base_avoid_stun_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 10924, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1874, }, }, }, - [139] = { + [338] = { ["da"] = 0, - ["dn"] = "Rigwald's Might", + ["dn"] = "Minion Attack and Cast Speed", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_physical_damage_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.dds", + ["id"] = "abyss_ghastly_small_attribute35", ["in"] = { }, ["isJewelSocket"] = false, @@ -7729,38 +21096,47 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 36656, + ["oidx"] = 29046, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Melee Physical Damage", + [1] = "Minions have (2-3)% increased Attack Speed", + [2] = "Minions have (2-3)% increased Cast Speed", }, ["sortedStats"] = { - [1] = "melee_physical_damage_+%", + [1] = "minion_attack_speed_+%", + [2] = "minion_cast_speed_+%", }, ["spc"] = { }, ["stats"] = { - ["melee_physical_damage_+%"] = { + ["minion_attack_speed_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1981, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2941, + }, + ["minion_cast_speed_+%"] = { + ["fmt"] = "d", + ["index"] = 2, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2942, }, }, }, - [140] = { + [339] = { ["da"] = 0, - ["dn"] = "Geofri's End", + ["dn"] = "Life", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_bleed_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute1", ["in"] = { }, ["isJewelSocket"] = false, @@ -7768,47 +21144,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 36158, + ["oidx"] = 15916, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "50% increased Damage with Bleeding", - [2] = "Bleeding you inflict deals Damage 10% faster", + [1] = "+(9-12) to maximum Life", }, ["sortedStats"] = { - [1] = "bleeding_damage_+%", - [2] = "faster_bleed_%", + [1] = "base_maximum_life", }, ["spc"] = { }, ["stats"] = { - ["bleeding_damage_+%"] = { + ["base_maximum_life"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 3169, - }, - ["faster_bleed_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 6545, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1591, }, }, }, - [141] = { + [340] = { ["da"] = 0, - ["dn"] = "Lioneye's Focus", + ["dn"] = "Mana ", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_projectile_attack_damage_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute2", ["in"] = { }, ["isJewelSocket"] = false, @@ -7816,38 +21183,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 94297, + ["oidx"] = 97164, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Projectile Attack Damage", + [1] = "+(8-11) to maximum Mana", }, ["sortedStats"] = { - [1] = "projectile_attack_damage_+%", + [1] = "base_maximum_mana", }, ["spc"] = { }, ["stats"] = { - ["projectile_attack_damage_+%"] = { + ["base_maximum_mana"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1997, + ["max"] = 11, + ["min"] = 8, + ["statOrder"] = 1602, }, }, }, - [142] = { + [341] = { ["da"] = 0, - ["dn"] = "Voll's Coup", + ["dn"] = "Energy Shield Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_attack_speed_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute3", ["in"] = { }, ["isJewelSocket"] = false, @@ -7855,38 +21222,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 94732, + ["oidx"] = 81535, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% increased Attack Speed", + [1] = "Regenerate (9-12) Energy Shield per second", }, ["sortedStats"] = { - [1] = "attack_speed_+%", + [1] = "energy_shield_regeneration_rate_per_second", }, ["spc"] = { }, ["stats"] = { - ["attack_speed_+%"] = { + ["energy_shield_regeneration_rate_per_second"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1410, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 6549, }, }, }, - [143] = { + [342] = { ["da"] = 0, - ["dn"] = "Dialla's Wit", + ["dn"] = "Life Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_cast_speed_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute4", ["in"] = { }, ["isJewelSocket"] = false, @@ -7894,38 +21261,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 81833, + ["oidx"] = 60524, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% increased Cast Speed", + [1] = "Regenerate (4.5-6) Life per second", }, ["sortedStats"] = { - [1] = "base_cast_speed_+%", + [1] = "base_life_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["base_cast_speed_+%"] = { - ["fmt"] = "d", + ["base_life_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1446, + ["max"] = 6, + ["min"] = 4.5, + ["statOrder"] = 1596, }, }, }, - [144] = { + [343] = { ["da"] = 0, - ["dn"] = "Discerning Taste", + ["dn"] = "Mana Regeneration", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_rarity_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute5", ["in"] = { }, ["isJewelSocket"] = false, @@ -7933,38 +21300,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 86198, + ["oidx"] = 75296, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "12% increased Mana Reservation Efficiency of Skills", + [1] = "Regenerate (0.6-1) Mana per second", }, ["sortedStats"] = { - [1] = "base_mana_reservation_efficiency_+%", + [1] = "base_mana_regeneration_rate_per_minute", }, ["spc"] = { }, ["stats"] = { - ["base_mana_reservation_efficiency_+%"] = { - ["fmt"] = "d", + ["base_mana_regeneration_rate_per_minute"] = { + ["fmt"] = "g", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 2228, + ["max"] = 1, + ["min"] = 0.6, + ["statOrder"] = 1605, }, }, }, - [145] = { + [344] = { ["da"] = 0, - ["dn"] = "Gleaming Legion", + ["dn"] = "Armour", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_armour_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute6", ["in"] = { }, ["isJewelSocket"] = false, @@ -7972,38 +21339,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 67997, + ["oidx"] = 25942, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Armour", + [1] = "+(36-60) to Armour", }, ["sortedStats"] = { - [1] = "physical_damage_reduction_rating_+%", + [1] = "base_physical_damage_reduction_rating", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_reduction_rating_+%"] = { + ["base_physical_damage_reduction_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1541, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1561, }, }, }, - [146] = { + [345] = { ["da"] = 0, - ["dn"] = "Shadowy Streets", + ["dn"] = "Evasion Rating", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_evasion_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute7", ["in"] = { }, ["isJewelSocket"] = false, @@ -8011,38 +21378,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 65414, + ["oidx"] = 10040, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "80% increased Evasion Rating", + [1] = "+(36-60) to Evasion Rating", }, ["sortedStats"] = { - [1] = "evasion_rating_+%", + [1] = "base_evasion_rating", }, ["spc"] = { }, ["stats"] = { - ["evasion_rating_+%"] = { + ["base_evasion_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 80, - ["min"] = 80, - ["statOrder"] = 1549, + ["max"] = 60, + ["min"] = 36, + ["statOrder"] = 1566, }, }, }, - [147] = { + [346] = { ["da"] = 0, - ["dn"] = "Crematorium Worker", + ["dn"] = "Energy Shield", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_fire_resistance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute8", ["in"] = { }, ["isJewelSocket"] = false, @@ -8050,38 +21417,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 54300, + ["oidx"] = 30013, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+50% to Fire Resistance", + [1] = "+(9-12) to maximum Energy Shield", }, ["sortedStats"] = { - [1] = "base_fire_damage_resistance_%", + [1] = "base_maximum_energy_shield", }, ["spc"] = { }, ["stats"] = { - ["base_fire_damage_resistance_%"] = { + ["base_maximum_energy_shield"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 1625, + ["max"] = 12, + ["min"] = 9, + ["statOrder"] = 1580, }, }, }, - [148] = { + [347] = { ["da"] = 0, - ["dn"] = "Street Urchin", + ["dn"] = "Mana Recoup", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_cold_resistance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute9", ["in"] = { }, ["isJewelSocket"] = false, @@ -8089,38 +21456,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 88577, + ["oidx"] = 69758, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+50% to Cold Resistance", + [1] = "(2-3)% of Damage taken Recouped as Mana", }, ["sortedStats"] = { - [1] = "base_cold_damage_resistance_%", + [1] = "damage_taken_goes_to_mana_%", }, ["spc"] = { }, ["stats"] = { - ["base_cold_damage_resistance_%"] = { + ["damage_taken_goes_to_mana_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 1631, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2480, }, }, }, - [149] = { + [348] = { ["da"] = 0, - ["dn"] = "Baleful Augmentation", + ["dn"] = "Strength", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_lightning_resistance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute10", ["in"] = { }, ["isJewelSocket"] = false, @@ -8128,38 +21495,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 40681, + ["oidx"] = 6256, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+50% to Lightning Resistance", + [1] = "+(8-10) to Strength", }, ["sortedStats"] = { - [1] = "base_lightning_damage_resistance_%", + [1] = "additional_strength", }, ["spc"] = { }, ["stats"] = { - ["base_lightning_damage_resistance_%"] = { + ["additional_strength"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 1636, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1200, }, }, }, - [150] = { + [349] = { ["da"] = 0, - ["dn"] = "With Eyes Open", + ["dn"] = "Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_chaos_resistance_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute11", ["in"] = { }, ["isJewelSocket"] = false, @@ -8167,38 +21534,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 5337, + ["oidx"] = 70619, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+37% to Chaos Resistance", + [1] = "+(8-10) to Dexterity", }, ["sortedStats"] = { - [1] = "base_chaos_damage_resistance_%", + [1] = "additional_dexterity", }, ["spc"] = { }, ["stats"] = { - ["base_chaos_damage_resistance_%"] = { + ["additional_dexterity"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 37, - ["min"] = 37, - ["statOrder"] = 1641, + ["max"] = 10, + ["min"] = 8, + ["statOrder"] = 1201, }, }, }, - [151] = { + [350] = { ["da"] = 0, - ["dn"] = "Robust Diet", + ["dn"] = "Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_life_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute12", ["in"] = { }, ["isJewelSocket"] = false, @@ -8206,38 +21573,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 35290, + ["oidx"] = 89997, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% increased maximum Life", + [1] = "+(8-10) to Intelligence", }, ["sortedStats"] = { - [1] = "maximum_life_+%", + [1] = "additional_intelligence", }, ["spc"] = { }, ["stats"] = { - ["maximum_life_+%"] = { + ["additional_intelligence"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 1571, + ["min"] = 8, + ["statOrder"] = 1202, }, }, }, - [152] = { + [351] = { ["da"] = 0, - ["dn"] = "Pooled Resources", + ["dn"] = "Strength and Dexterity", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_mana_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute13", ["in"] = { }, ["isJewelSocket"] = false, @@ -8245,38 +21612,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 1685, + ["oidx"] = 50380, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "30% increased maximum Mana", + [1] = "+(6-8) to Strength and Dexterity", }, ["sortedStats"] = { - [1] = "maximum_mana_+%", + [1] = "additional_strength_and_dexterity", }, ["spc"] = { }, ["stats"] = { - ["maximum_mana_+%"] = { + ["additional_strength_and_dexterity"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 1580, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1203, }, }, }, - [153] = { + [352] = { ["da"] = 0, - ["dn"] = "Laureate", + ["dn"] = "Strength and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_mana_regen_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute14", ["in"] = { }, ["isJewelSocket"] = false, @@ -8284,38 +21651,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 9588, + ["oidx"] = 2326, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "50% increased Mana Regeneration Rate", + [1] = "+(6-8) to Strength and Intelligence", }, ["sortedStats"] = { - [1] = "mana_regeneration_rate_+%", + [1] = "additional_strength_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["mana_regeneration_rate_+%"] = { + ["additional_strength_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 50, - ["min"] = 50, - ["statOrder"] = 1584, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1204, }, }, }, - [154] = { + [353] = { ["da"] = 0, - ["dn"] = "War Games", + ["dn"] = "Dexterity and Intelligence", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds", - ["id"] = "eternal_notable_accuracy_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute15", ["in"] = { }, ["isJewelSocket"] = false, @@ -8323,38 +21690,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 56816, + ["oidx"] = 47657, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "25% increased Global Accuracy Rating", + [1] = "+(6-8) to Dexterity and Intelligence", }, ["sortedStats"] = { - [1] = "accuracy_rating_+%", + [1] = "additional_dexterity_and_intelligence", }, ["spc"] = { }, ["stats"] = { - ["accuracy_rating_+%"] = { + ["additional_dexterity_and_intelligence"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 25, - ["min"] = 25, - ["statOrder"] = 1434, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1205, }, }, }, - [155] = { + [354] = { ["da"] = 0, - ["dn"] = "Freshly Brewed", + ["dn"] = "Attributes", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds", - ["id"] = "eternal_notable_flask_duration_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute16", ["in"] = { }, ["isJewelSocket"] = false, @@ -8362,38 +21729,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 66099, + ["oidx"] = 41430, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "20% increased Flask Effect Duration", + [1] = "+(4-6) to all Attributes", }, ["sortedStats"] = { - [1] = "flask_duration_+%", + [1] = "additional_all_attributes", }, ["spc"] = { }, ["stats"] = { - ["flask_duration_+%"] = { + ["additional_all_attributes"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 2187, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1199, }, }, }, - [156] = { + [355] = { ["da"] = 0, - ["dn"] = "Warding Flasks", + ["dn"] = "Fire Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute17", ["in"] = { }, ["isJewelSocket"] = false, @@ -8401,47 +21768,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 79440, + ["oidx"] = 12334, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% increased Flask Effect Duration", - [2] = "20% increased Ward during any Flask Effect", + [1] = "+(6-8)% to Fire Resistance", }, ["sortedStats"] = { - [1] = "flask_duration_+%", - [2] = "ward_+%_during_any_flask_effect", + [1] = "base_fire_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["flask_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 2187, - }, - ["ward_+%_during_any_flask_effect"] = { + ["base_fire_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 10579, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1648, }, }, }, - [157] = { + [356] = { ["da"] = 0, - ["dn"] = "Starlight Swig", + ["dn"] = "Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute18", ["in"] = { }, ["isJewelSocket"] = false, @@ -8449,47 +21807,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 97049, + ["oidx"] = 66231, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% increased Flask Charges gained", - [2] = "15% chance for Ward to be Restored when you Use a Flask", + [1] = "+(6-8)% to Cold Resistance", }, ["sortedStats"] = { - [1] = "charges_gained_+%", - [2] = "ward_%_chance_to_restore_on_flask_use", + [1] = "base_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["charges_gained_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 2183, - }, - ["ward_%_chance_to_restore_on_flask_use"] = { + ["base_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 10578, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1654, }, }, }, - [158] = { + [357] = { ["da"] = 0, - ["dn"] = "Enduring Sigil", + ["dn"] = "Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute19", ["in"] = { }, ["isJewelSocket"] = false, @@ -8497,47 +21846,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 33869, + ["oidx"] = 99316, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "20% increased Endurance Charge Duration", - [2] = "Gain 1 Endurance Charge when Ward Breaks", + [1] = "+(6-8)% to Lightning Resistance", }, - ["sortedStats"] = { - [1] = "endurance_charge_duration_+%", - [2] = "gain_x_endurance_charge_when_ward_breaks", + ["sortedStats"] = { + [1] = "base_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["endurance_charge_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 2125, - }, - ["gain_x_endurance_charge_when_ward_breaks"] = { + ["base_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6833, + ["max"] = 8, + ["min"] = 6, + ["statOrder"] = 1659, }, }, }, - [159] = { + [358] = { ["da"] = 0, - ["dn"] = "Powering Sigil", + ["dn"] = "Fire and Cold Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_4", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute20", ["in"] = { }, ["isJewelSocket"] = false, @@ -8545,47 +21885,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 20074, + ["oidx"] = 86754, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "20% increased Power Charge Duration", - [2] = "Gain 1 Power Charge when Ward Breaks", + [1] = "+(4-6)% to Fire and Cold Resistances", }, ["sortedStats"] = { - [1] = "power_charge_duration_+%", - [2] = "gain_x_power_charge_when_ward_breaks", + [1] = "fire_and_cold_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["gain_x_power_charge_when_ward_breaks"] = { + ["fire_and_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6837, - }, - ["power_charge_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 2142, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2832, }, }, }, - [160] = { + [359] = { ["da"] = 0, - ["dn"] = "Frenzying Sigil", + ["dn"] = "Fire and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable_5", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute21", ["in"] = { }, ["isJewelSocket"] = false, @@ -8593,47 +21924,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 29349, + ["oidx"] = 62680, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "20% increased Frenzy Charge Duration", - [2] = "Gain 1 Frenzy Charge when Ward Breaks", + [1] = "+(4-6)% to Fire and Lightning Resistances", }, ["sortedStats"] = { - [1] = "base_frenzy_charge_duration_+%", - [2] = "gain_x_frenzy_charge_when_ward_breaks", + [1] = "fire_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["base_frenzy_charge_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 2127, - }, - ["gain_x_frenzy_charge_when_ward_breaks"] = { + ["fire_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 6836, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2833, }, }, }, - [161] = { + [360] = { ["da"] = 0, - ["dn"] = "Fortified Ward", + ["dn"] = "Cold and Lightning Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable_6", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute22", ["in"] = { }, ["isJewelSocket"] = false, @@ -8641,47 +21963,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 39254, + ["oidx"] = 52197, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% faster Restoration of Ward", - [2] = "30% increased Armour while you have Unbroken Ward", + [1] = "+(4-6)% to Cold and Lightning Resistances", }, ["sortedStats"] = { - [1] = "ward_delay_recovery_+%", - [2] = "armour_+%_while_you_have_unbroken_ward", + [1] = "cold_and_lightning_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["armour_+%_while_you_have_unbroken_ward"] = { + ["cold_and_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 4754, - }, - ["ward_delay_recovery_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1531, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 2834, }, }, }, - [162] = { + [361] = { ["da"] = 0, - ["dn"] = "Elusive Ward", + ["dn"] = "Elemental Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable_7", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute23", ["in"] = { }, ["isJewelSocket"] = false, @@ -8689,47 +22002,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 74833, + ["oidx"] = 56626, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% faster Restoration of Ward", - [2] = "30% increased Evasion Rating while you have Unbroken Ward", + [1] = "+(3-5)% to all Elemental Resistances", }, ["sortedStats"] = { - [1] = "ward_delay_recovery_+%", - [2] = "evasion_rating_+%_while_you_have_unbroken_ward", + [1] = "base_resist_all_elements_%", }, ["spc"] = { }, ["stats"] = { - ["evasion_rating_+%_while_you_have_unbroken_ward"] = { + ["base_resist_all_elements_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 6483, - }, - ["ward_delay_recovery_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1531, + ["max"] = 5, + ["min"] = 3, + ["statOrder"] = 1642, }, }, }, - [163] = { + [362] = { ["da"] = 0, - ["dn"] = "Crown of Kalguur", + ["dn"] = "Chaos Resistance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable_9", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute24", ["in"] = { }, ["isJewelSocket"] = false, @@ -8737,38 +22041,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 56253, + ["oidx"] = 76804, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+2 to Ward per 10 Armour on Equipped Helmet", + [1] = "+(4-6)% to Chaos Resistance", }, ["sortedStats"] = { - [1] = "gain_x_ward_per_10_armour_on_helmet", + [1] = "base_chaos_damage_resistance_%", }, ["spc"] = { }, ["stats"] = { - ["gain_x_ward_per_10_armour_on_helmet"] = { + ["base_chaos_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 6849, + ["max"] = 6, + ["min"] = 4, + ["statOrder"] = 1664, }, }, }, - [164] = { + [363] = { ["da"] = 0, - ["dn"] = "Grip of Kalguur", + ["dn"] = "Cast Speed", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable_10", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute25", ["in"] = { }, ["isJewelSocket"] = false, @@ -8776,38 +22080,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 82715, + ["oidx"] = 68568, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+4 to Ward per 10 Evasion Rating on Equipped Gloves", + [1] = "(2-3)% increased Cast Speed", }, ["sortedStats"] = { - [1] = "gain_x_ward_per_10_evasion_on_gloves", + [1] = "base_cast_speed_+%", }, ["spc"] = { }, ["stats"] = { - ["gain_x_ward_per_10_evasion_on_gloves"] = { + ["base_cast_speed_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 4, - ["min"] = 4, - ["statOrder"] = 6851, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1470, }, }, }, - [165] = { + [364] = { ["da"] = 0, - ["dn"] = "Stride of Kalguur", + ["dn"] = "Minion Blind Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_11", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute26", ["in"] = { }, ["isJewelSocket"] = false, @@ -8815,38 +22119,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 52436, + ["oidx"] = 71976, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "+8 to Ward per 10 Energy Shield on Equipped Boots", + [1] = "Minions have (2-3)% chance to Blind on Hit with Attacks", }, ["sortedStats"] = { - [1] = "gain_x_ward_per_10_energy_shield_on_boots", + [1] = "minion_attacks_chance_to_blind_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["gain_x_ward_per_10_energy_shield_on_boots"] = { + ["minion_attacks_chance_to_blind_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 6850, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 9408, }, }, }, - [166] = { + [365] = { ["da"] = 0, - ["dn"] = "Persisting Drive", + ["dn"] = "Minion Taunt Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable_12", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute27", ["in"] = { }, ["isJewelSocket"] = false, @@ -8854,47 +22158,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 2468, + ["oidx"] = 47786, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% faster Restoration of Ward", - [2] = "30% increased Damage while you have Unbroken Ward", + [1] = "Minions have (2-3)% chance to Taunt on Hit with Attacks", }, ["sortedStats"] = { - [1] = "ward_delay_recovery_+%", - [2] = "damage_+%_while_you_have_unbroken_ward", + [1] = "minion_attacks_chance_to_taunt_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["damage_+%_while_you_have_unbroken_ward"] = { + ["minion_attacks_chance_to_taunt_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 30, - ["min"] = 30, - ["statOrder"] = 6019, - }, - ["ward_delay_recovery_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1531, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 3467, }, }, }, - [167] = { + [366] = { ["da"] = 0, - ["dn"] = "Shattered Piercing ", + ["dn"] = "Minion Hinder Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_13", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute28", ["in"] = { }, ["isJewelSocket"] = false, @@ -8902,47 +22197,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 30208, + ["oidx"] = 13733, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "15% increased Elemental Damage", - [2] = "Damage Penetrates 8% Elemental Resistances while your Ward is Broken", + [1] = "Minions have (2-3)% chance to Hinder Enemies on Hit with Spells", }, ["sortedStats"] = { - [1] = "elemental_damage_+%", - [2] = "damage_penetrates_%_elemental_resistance_while_you_have_broken_ward", + [1] = "minion_spells_chance_to_hinder_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["damage_penetrates_%_elemental_resistance_while_you_have_broken_ward"] = { + ["minion_spells_chance_to_hinder_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 6030, - }, - ["elemental_damage_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 15, - ["min"] = 15, - ["statOrder"] = 1980, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 9467, }, }, }, - [168] = { + [367] = { ["da"] = 0, - ["dn"] = "Vengeful Runes", + ["dn"] = "Ignite Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_14", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute29", ["in"] = { }, ["isJewelSocket"] = false, @@ -8950,47 +22236,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 29546, + ["oidx"] = 43355, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "8% increased Area of Effect of Aura Skills", - [2] = "12% increased effect of Non-Curse Auras from your skills while your Ward is Broken", + [1] = "(15-20)% chance to Avoid being Ignited", }, ["sortedStats"] = { - [1] = "base_aura_area_of_effect_+%", - [2] = "non_curse_aura_effect_+%_while_you_have_broken_ward", + [1] = "base_avoid_ignite_%", }, ["spc"] = { }, ["stats"] = { - ["base_aura_area_of_effect_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 2224, - }, - ["non_curse_aura_effect_+%_while_you_have_broken_ward"] = { + ["base_avoid_ignite_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 9493, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1869, }, }, }, - [169] = { + [368] = { ["da"] = 0, - ["dn"] = "Mage's Ward", + ["dn"] = "Freeze Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_15", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute30", ["in"] = { }, ["isJewelSocket"] = false, @@ -8998,47 +22275,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 20764, + ["oidx"] = 22479, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "5% Chance to Block Spell Damage", - [2] = "10% chance to Restore Ward when you Block", + [1] = "(15-20)% chance to Avoid being Frozen", }, ["sortedStats"] = { - [1] = "base_spell_block_%", - [2] = "restore_ward_on_block_%", + [1] = "base_avoid_freeze_%", }, ["spc"] = { }, ["stats"] = { - ["base_spell_block_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 1160, - }, - ["restore_ward_on_block_%"] = { + ["base_avoid_freeze_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 9926, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1868, }, }, }, - [170] = { + [369] = { ["da"] = 0, - ["dn"] = "Warrior's Ward", + ["dn"] = "Shock Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable_16", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute31", ["in"] = { }, ["isJewelSocket"] = false, @@ -9046,47 +22314,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 7170, + ["oidx"] = 87047, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "5% Chance to Block Attack Damage", - [2] = "10% chance to Restore Ward when you Block", + [1] = "(15-20)% chance to Avoid being Shocked", }, ["sortedStats"] = { - [1] = "monster_base_block_%", - [2] = "restore_ward_on_block_%", + [1] = "base_avoid_shock_%", }, ["spc"] = { }, ["stats"] = { - ["monster_base_block_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 5, - ["min"] = 5, - ["statOrder"] = 1138, - }, - ["restore_ward_on_block_%"] = { + ["base_avoid_shock_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 9926, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1871, }, }, }, - [171] = { + [370] = { ["da"] = 0, - ["dn"] = "Starborn Birth", + ["dn"] = "Poison Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_17", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute32", ["in"] = { }, ["isJewelSocket"] = false, @@ -9094,38 +22353,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 95734, + ["oidx"] = 84753, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "25% increased Ward", + [1] = "(15-20)% chance to Avoid being Poisoned", }, ["sortedStats"] = { - [1] = "ward_+%", + [1] = "base_avoid_poison_%", }, ["spc"] = { }, ["stats"] = { - ["ward_+%"] = { + ["base_avoid_poison_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 25, - ["min"] = 25, - ["statOrder"] = 1529, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1872, }, }, }, - [172] = { + [371] = { ["da"] = 0, - ["dn"] = "Pure Faith", + ["dn"] = "Bleed Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_18", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute33", ["in"] = { }, ["isJewelSocket"] = false, @@ -9133,47 +22392,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 81354, + ["oidx"] = 44440, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "12% increased Ward", - [2] = "+8% to Chaos Resistance", + [1] = "(15-20)% chance to Avoid Bleeding", }, ["sortedStats"] = { - [1] = "ward_+%", - [2] = "base_chaos_damage_resistance_%", + [1] = "base_avoid_bleed_%", }, ["spc"] = { }, ["stats"] = { - ["base_chaos_damage_resistance_%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 1641, - }, - ["ward_+%"] = { + ["base_avoid_bleed_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 1529, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 4252, }, }, }, - [173] = { + [372] = { ["da"] = 0, - ["dn"] = "Magic Faith", + ["dn"] = "Stun Avoidance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_19", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute34", ["in"] = { }, ["isJewelSocket"] = false, @@ -9181,47 +22431,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 78304, + ["oidx"] = 63801, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "12% increased Ward", - [2] = "8% increased maximum Energy Shield", + [1] = "(15-20)% chance to Avoid being Stunned", }, ["sortedStats"] = { - [1] = "ward_+%", - [2] = "maximum_energy_shield_+%", + [1] = "base_avoid_stun_%", }, ["spc"] = { }, ["stats"] = { - ["maximum_energy_shield_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 8, - ["min"] = 8, - ["statOrder"] = 1561, - }, - ["ward_+%"] = { + ["base_avoid_stun_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 1529, + ["max"] = 20, + ["min"] = 15, + ["statOrder"] = 1874, }, }, }, - [174] = { + [373] = { ["da"] = 0, - ["dn"] = "Guile Faith", + ["dn"] = "Minion Attack and Cast Speed", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable_20", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute35", ["in"] = { }, ["isJewelSocket"] = false, @@ -9229,47 +22470,47 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 15373, + ["oidx"] = 83058, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "12% increased Ward", - [2] = "16% increased Evasion Rating", + [1] = "Minions have (2-3)% increased Attack Speed", + [2] = "Minions have (2-3)% increased Cast Speed", }, ["sortedStats"] = { - [1] = "ward_+%", - [2] = "evasion_rating_+%", + [1] = "minion_attack_speed_+%", + [2] = "minion_cast_speed_+%", }, ["spc"] = { }, ["stats"] = { - ["evasion_rating_+%"] = { + ["minion_attack_speed_+%"] = { ["fmt"] = "d", - ["index"] = 2, - ["max"] = 16, - ["min"] = 16, - ["statOrder"] = 1549, + ["index"] = 1, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2941, }, - ["ward_+%"] = { + ["minion_cast_speed_+%"] = { ["fmt"] = "d", - ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 1529, + ["index"] = 2, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 2942, }, }, }, - [175] = { + [374] = { ["da"] = 0, - ["dn"] = "Resolute Faith", + ["dn"] = "Hinder Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable_21", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute36", ["in"] = { }, ["isJewelSocket"] = false, @@ -9277,47 +22518,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 27792, + ["oidx"] = 20011, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "12% increased Ward", - [2] = "16% increased Armour", + [1] = "(2-3)% chance to Hinder Enemies on Hit with Spells", }, ["sortedStats"] = { - [1] = "ward_+%", - [2] = "physical_damage_reduction_rating_+%", + [1] = "spells_chance_to_hinder_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["physical_damage_reduction_rating_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 16, - ["min"] = 16, - ["statOrder"] = 1541, - }, - ["ward_+%"] = { + ["spells_chance_to_hinder_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 1529, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 10336, }, }, }, - [176] = { + [375] = { ["da"] = 0, - ["dn"] = "Starsoaked Time", + ["dn"] = "Cold Ailment Effect", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds", - ["id"] = "kalguur_notable_22", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute37", ["in"] = { }, ["isJewelSocket"] = false, @@ -9325,47 +22557,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 27192, + ["oidx"] = 22356, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "20% faster Restoration of Ward", - [2] = "20% faster start of Energy Shield Recharge", + [1] = "(10-20)% increased Effect of Cold Ailments", }, ["sortedStats"] = { - [1] = "ward_delay_recovery_+%", - [2] = "energy_shield_delay_-%", + [1] = "cold_ailment_effect_+%", }, ["spc"] = { }, ["stats"] = { - ["energy_shield_delay_-%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1562, - }, - ["ward_delay_recovery_+%"] = { + ["cold_ailment_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 1531, + ["min"] = 10, + ["statOrder"] = 5880, }, }, }, - [177] = { + [376] = { ["da"] = 0, - ["dn"] = "Etched Runes", + ["dn"] = "Lightning Ailment Effect", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable_23", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute38", ["in"] = { }, ["isJewelSocket"] = false, @@ -9373,47 +22596,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 45680, + ["oidx"] = 82022, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "12% increased Ward", - [2] = "20% increased Ward from Equipped Armour Items", + [1] = "(10-20)% increased Effect of Lightning Ailments", }, ["sortedStats"] = { - [1] = "ward_+%", - [2] = "ward_from_armour_item_+%", + [1] = "lightning_ailment_effect_+%", }, ["spc"] = { }, ["stats"] = { - ["ward_+%"] = { + ["lightning_ailment_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 12, - ["min"] = 12, - ["statOrder"] = 1529, - }, - ["ward_from_armour_item_+%"] = { - ["fmt"] = "d", - ["index"] = 2, ["max"] = 20, - ["min"] = 20, - ["statOrder"] = 10581, + ["min"] = 10, + ["statOrder"] = 7535, }, }, }, - [178] = { + [377] = { ["da"] = 0, - ["dn"] = "Cleansing Runes", + ["dn"] = "Blind Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds", - ["id"] = "kalguur_notable_24", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute39", ["in"] = { }, ["isJewelSocket"] = false, @@ -9421,44 +22635,38 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 79160, + ["oidx"] = 29871, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Remove a random Damaging Ailment when Ward is Restored", + [1] = "(2-3)% chance to Blind Enemies on Hit with Attacks", }, ["sortedStats"] = { - [1] = "remove_random_damaging_ailment_when_ward_restores", - [2] = "self_damaging_ailment_duration_+%", + [1] = "attacks_chance_to_blind_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["remove_random_damaging_ailment_when_ward_restores"] = { + ["attacks_chance_to_blind_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 9915, - }, - ["self_damaging_ailment_duration_+%"] = { - ["index"] = 2, - ["max"] = -25, - ["min"] = -25, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 4965, }, }, }, - [179] = { + [378] = { ["da"] = 0, - ["dn"] = "Regenerative Runes", + ["dn"] = "Accuracy", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds", - ["id"] = "kalguur_notable_25", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute40", ["in"] = { }, ["isJewelSocket"] = false, @@ -9466,157 +22674,145 @@ return { ["isMultipleChoiceOption"] = false, ["ks"] = false, ["m"] = false, - ["not"] = true, + ["not"] = false, ["o"] = 3, - ["oidx"] = 64617, + ["oidx"] = 66167, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "10% increased Flask Effect Duration", - [2] = "Iron Flasks gain 2 charges when your Ward Breaks", + [1] = "+(31-60) to Accuracy Rating", }, ["sortedStats"] = { - [1] = "flask_duration_+%", - [2] = "iron_flasks_gain_x_charge_when_ward_breaks", + [1] = "accuracy_rating", }, ["spc"] = { }, ["stats"] = { - ["flask_duration_+%"] = { - ["fmt"] = "d", - ["index"] = 2, - ["max"] = 10, - ["min"] = 10, - ["statOrder"] = 2187, - }, - ["iron_flasks_gain_x_charge_when_ward_breaks"] = { + ["accuracy_rating"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 2, - ["min"] = 2, - ["statOrder"] = 7302, + ["max"] = 60, + ["min"] = 31, + ["statOrder"] = 1457, }, }, }, - [180] = { + [379] = { ["da"] = 0, - ["dn"] = "Black Scythe Training", + ["dn"] = "Attack Speed", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.dds", - ["id"] = "kalguur_keystone_1", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute41", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 60, + ["o"] = 3, + ["oidx"] = 99369, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Removes all Energy Shield", - [2] = "Chance to Evade Hits is based off of 200% of your Ward instead of your Evasion Rating", - [3] = "Physical Damage Reduction from Hits is based off of 200% of your Ward instead of your Armour", + [1] = "(2-3)% increased Attack Speed", }, ["sortedStats"] = { - [1] = "keystone_voranas_adaption", + [1] = "attack_speed_+%", }, ["spc"] = { }, ["stats"] = { - ["keystone_voranas_adaption"] = { + ["attack_speed_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10976, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 1434, }, }, }, - [181] = { + [380] = { ["da"] = 0, - ["dn"] = "Celestial Mathematics", + ["dn"] = "Impale Effect", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.dds", - ["id"] = "kalguur_keystone_2", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute42", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 63, + ["o"] = 3, + ["oidx"] = 50523, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "While you have Unbroken Ward, your next non-channelling Attack you Use yourself breaks your Ward to gain Added Cold Damage equal to 25% of Ward", + [1] = "(2-4)% increased Impale Effect", }, ["sortedStats"] = { - [1] = "keystone_uhtreds_fury", + [1] = "impale_debuff_effect_+%", }, ["spc"] = { }, ["stats"] = { - ["keystone_uhtreds_fury"] = { + ["impale_debuff_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10973, + ["max"] = 4, + ["min"] = 2, + ["statOrder"] = 7343, }, }, }, - [182] = { + [381] = { ["da"] = 0, - ["dn"] = "The Unbreaking Circle", + ["dn"] = "Taunt Chance", ["g"] = 1000000000, ["ia"] = 0, - ["icon"] = "Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.dds", - ["id"] = "kalguur_keystone_3", + ["icon"] = "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.dds", + ["id"] = "abyss_special_small_attribute43", ["in"] = { }, ["isJewelSocket"] = false, ["isMultipleChoice"] = false, ["isMultipleChoiceOption"] = false, - ["ks"] = true, + ["ks"] = false, ["m"] = false, ["not"] = false, - ["o"] = 4, - ["oidx"] = 66, + ["o"] = 3, + ["oidx"] = 98702, ["out"] = { }, ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "40% less Ward", - [2] = "Ward has a 60% chance to not Break", + [1] = "(2-3)% chance to Taunt Enemies on Hit with Attacks", }, ["sortedStats"] = { - [1] = "keystone_medveds_exchange", + [1] = "attacks_chance_to_taunt_on_hit_%", }, ["spc"] = { }, ["stats"] = { - ["keystone_medveds_exchange"] = { + ["attacks_chance_to_taunt_on_hit_%"] = { ["fmt"] = "d", ["index"] = 1, - ["max"] = 1, - ["min"] = 1, - ["statOrder"] = 10950, + ["max"] = 3, + ["min"] = 2, + ["statOrder"] = 4966, }, }, }, diff --git a/src/Data/TimelessJewelData/LethalPride.zip b/src/Data/TimelessJewelData/LethalPride.zip index 0fdebbf436..7b07b878d9 100644 Binary files a/src/Data/TimelessJewelData/LethalPride.zip and b/src/Data/TimelessJewelData/LethalPride.zip differ diff --git a/src/Data/TimelessJewelData/MilitantFaith.zip b/src/Data/TimelessJewelData/MilitantFaith.zip index c5edbe3bd4..8314a09bde 100644 Binary files a/src/Data/TimelessJewelData/MilitantFaith.zip and b/src/Data/TimelessJewelData/MilitantFaith.zip differ diff --git a/src/Data/TimelessJewelData/NodeIndexMapping.lua b/src/Data/TimelessJewelData/NodeIndexMapping.lua index 3882cf4369..1905d69f72 100644 --- a/src/Data/TimelessJewelData/NodeIndexMapping.lua +++ b/src/Data/TimelessJewelData/NodeIndexMapping.lua @@ -1,6 +1,6 @@ nodeIDList = { } -nodeIDList["size"] = 1931 -nodeIDList["sizeNotable"] = 452 +nodeIDList["size"] = 1937 +nodeIDList["sizeNotable"] = 454 nodeIDList[6] = { index = 0, size = 28419 } nodeIDList[529] = { index = 1, size = 28520 } nodeIDList[544] = { index = 2, size = 28401 } @@ -121,1817 +121,1823 @@ nodeIDList[19730] = { index = 116, size = 28246 } nodeIDList[19794] = { index = 117, size = 28634 } nodeIDList[19858] = { index = 118, size = 28498 } nodeIDList[19897] = { index = 119, size = 28564 } -nodeIDList[20528] = { index = 120, size = 28411 } -nodeIDList[20832] = { index = 121, size = 28723 } -nodeIDList[20835] = { index = 122, size = 28587 } -nodeIDList[21228] = { index = 123, size = 28260 } -nodeIDList[21297] = { index = 124, size = 28468 } -nodeIDList[21330] = { index = 125, size = 28337 } -nodeIDList[21389] = { index = 126, size = 28620 } -nodeIDList[21413] = { index = 127, size = 28285 } -nodeIDList[21435] = { index = 128, size = 28514 } -nodeIDList[21460] = { index = 129, size = 28462 } -nodeIDList[21602] = { index = 130, size = 28468 } -nodeIDList[21634] = { index = 131, size = 28304 } -nodeIDList[21958] = { index = 132, size = 28569 } -nodeIDList[21973] = { index = 133, size = 28677 } -nodeIDList[22133] = { index = 134, size = 28426 } -nodeIDList[22356] = { index = 135, size = 28600 } -nodeIDList[22535] = { index = 136, size = 28347 } -nodeIDList[22702] = { index = 137, size = 28154 } -nodeIDList[22706] = { index = 138, size = 28426 } -nodeIDList[22972] = { index = 139, size = 28395 } -nodeIDList[23038] = { index = 140, size = 28579 } -nodeIDList[23066] = { index = 141, size = 28337 } -nodeIDList[23690] = { index = 142, size = 28290 } -nodeIDList[24050] = { index = 143, size = 28621 } -nodeIDList[24067] = { index = 144, size = 28588 } -nodeIDList[24133] = { index = 145, size = 28437 } -nodeIDList[24256] = { index = 146, size = 28415 } -nodeIDList[24324] = { index = 147, size = 28256 } -nodeIDList[24362] = { index = 148, size = 28473 } -nodeIDList[24383] = { index = 149, size = 28258 } -nodeIDList[24716] = { index = 150, size = 28554 } -nodeIDList[24721] = { index = 151, size = 28356 } -nodeIDList[24858] = { index = 152, size = 28573 } -nodeIDList[25058] = { index = 153, size = 28165 } -nodeIDList[25178] = { index = 154, size = 28116 } -nodeIDList[25367] = { index = 155, size = 28424 } -nodeIDList[25409] = { index = 156, size = 28463 } -nodeIDList[25411] = { index = 157, size = 28690 } -nodeIDList[25439] = { index = 158, size = 28480 } -nodeIDList[25456] = { index = 159, size = 28293 } -nodeIDList[25738] = { index = 160, size = 28625 } -nodeIDList[25970] = { index = 161, size = 28299 } -nodeIDList[25989] = { index = 162, size = 28659 } -nodeIDList[26023] = { index = 163, size = 28592 } -nodeIDList[26096] = { index = 164, size = 28475 } -nodeIDList[26294] = { index = 165, size = 28487 } -nodeIDList[26557] = { index = 166, size = 28551 } -nodeIDList[26564] = { index = 167, size = 28512 } -nodeIDList[26620] = { index = 168, size = 28631 } -nodeIDList[26763] = { index = 169, size = 28181 } -nodeIDList[26866] = { index = 170, size = 28387 } -nodeIDList[26960] = { index = 171, size = 28554 } -nodeIDList[27119] = { index = 172, size = 28544 } -nodeIDList[27137] = { index = 173, size = 28776 } -nodeIDList[27163] = { index = 174, size = 28141 } -nodeIDList[27190] = { index = 175, size = 28034 } -nodeIDList[27203] = { index = 176, size = 28265 } -nodeIDList[27301] = { index = 177, size = 28584 } -nodeIDList[27308] = { index = 178, size = 28407 } -nodeIDList[27422] = { index = 179, size = 28578 } -nodeIDList[27611] = { index = 180, size = 28534 } -nodeIDList[27623] = { index = 181, size = 28720 } -nodeIDList[27788] = { index = 182, size = 28687 } -nodeIDList[27806] = { index = 183, size = 28431 } -nodeIDList[27929] = { index = 184, size = 28429 } -nodeIDList[28034] = { index = 185, size = 28443 } -nodeIDList[28449] = { index = 186, size = 28340 } -nodeIDList[28503] = { index = 187, size = 28474 } -nodeIDList[28754] = { index = 188, size = 28560 } -nodeIDList[28878] = { index = 189, size = 28565 } -nodeIDList[29049] = { index = 190, size = 28462 } -nodeIDList[29381] = { index = 191, size = 28483 } -nodeIDList[29522] = { index = 192, size = 28360 } -nodeIDList[29861] = { index = 193, size = 28514 } -nodeIDList[30160] = { index = 194, size = 28564 } -nodeIDList[30225] = { index = 195, size = 28329 } -nodeIDList[30302] = { index = 196, size = 28619 } -nodeIDList[30439] = { index = 197, size = 28411 } -nodeIDList[30471] = { index = 198, size = 28342 } -nodeIDList[30693] = { index = 199, size = 28461 } -nodeIDList[30974] = { index = 200, size = 28317 } -nodeIDList[31033] = { index = 201, size = 28313 } -nodeIDList[31257] = { index = 202, size = 28373 } -nodeIDList[31359] = { index = 203, size = 28427 } -nodeIDList[31473] = { index = 204, size = 28381 } -nodeIDList[31508] = { index = 205, size = 28410 } -nodeIDList[31513] = { index = 206, size = 28467 } -nodeIDList[31585] = { index = 207, size = 28548 } -nodeIDList[32059] = { index = 208, size = 28256 } -nodeIDList[32176] = { index = 209, size = 28308 } -nodeIDList[32227] = { index = 210, size = 28391 } -nodeIDList[32245] = { index = 211, size = 28355 } -nodeIDList[32345] = { index = 212, size = 28364 } -nodeIDList[32455] = { index = 213, size = 28188 } -nodeIDList[32681] = { index = 214, size = 28250 } -nodeIDList[32738] = { index = 215, size = 28484 } -nodeIDList[32932] = { index = 216, size = 28750 } -nodeIDList[33082] = { index = 217, size = 28295 } -nodeIDList[33287] = { index = 218, size = 28329 } -nodeIDList[33435] = { index = 219, size = 28442 } -nodeIDList[33545] = { index = 220, size = 28278 } -nodeIDList[33582] = { index = 221, size = 28422 } -nodeIDList[33718] = { index = 222, size = 28330 } -nodeIDList[33725] = { index = 223, size = 28437 } -nodeIDList[33777] = { index = 224, size = 28616 } -nodeIDList[33903] = { index = 225, size = 28462 } -nodeIDList[34009] = { index = 226, size = 28221 } -nodeIDList[34173] = { index = 227, size = 28465 } -nodeIDList[34284] = { index = 228, size = 28428 } -nodeIDList[34506] = { index = 229, size = 28370 } -nodeIDList[34591] = { index = 230, size = 28531 } -nodeIDList[34601] = { index = 231, size = 28502 } -nodeIDList[34661] = { index = 232, size = 28323 } -nodeIDList[34666] = { index = 233, size = 28351 } -nodeIDList[34973] = { index = 234, size = 28344 } -nodeIDList[34978] = { index = 235, size = 28388 } -nodeIDList[35233] = { index = 236, size = 28383 } -nodeIDList[35436] = { index = 237, size = 28481 } -nodeIDList[35663] = { index = 238, size = 28509 } -nodeIDList[35685] = { index = 239, size = 28357 } -nodeIDList[35894] = { index = 240, size = 28241 } -nodeIDList[35958] = { index = 241, size = 28311 } -nodeIDList[36281] = { index = 242, size = 28184 } -nodeIDList[36490] = { index = 243, size = 28556 } -nodeIDList[36687] = { index = 244, size = 28381 } -nodeIDList[36736] = { index = 245, size = 28478 } -nodeIDList[36859] = { index = 246, size = 28364 } -nodeIDList[36874] = { index = 247, size = 28204 } -nodeIDList[36915] = { index = 248, size = 28501 } -nodeIDList[36949] = { index = 249, size = 28308 } -nodeIDList[37078] = { index = 250, size = 28443 } -nodeIDList[37326] = { index = 251, size = 28348 } -nodeIDList[37403] = { index = 252, size = 28317 } -nodeIDList[37425] = { index = 253, size = 28494 } -nodeIDList[37504] = { index = 254, size = 28396 } -nodeIDList[37647] = { index = 255, size = 28246 } -nodeIDList[38246] = { index = 256, size = 28279 } -nodeIDList[38516] = { index = 257, size = 28612 } -nodeIDList[38849] = { index = 258, size = 28308 } -nodeIDList[38922] = { index = 259, size = 28317 } -nodeIDList[39530] = { index = 260, size = 28556 } -nodeIDList[39657] = { index = 261, size = 28455 } -nodeIDList[39743] = { index = 262, size = 28442 } -nodeIDList[39761] = { index = 263, size = 28343 } -nodeIDList[39904] = { index = 264, size = 28650 } -nodeIDList[39986] = { index = 265, size = 28586 } -nodeIDList[40619] = { index = 266, size = 28516 } -nodeIDList[40645] = { index = 267, size = 28454 } -nodeIDList[40743] = { index = 268, size = 28202 } -nodeIDList[41119] = { index = 269, size = 28370 } -nodeIDList[41137] = { index = 270, size = 28477 } -nodeIDList[41305] = { index = 271, size = 28609 } -nodeIDList[41420] = { index = 272, size = 28258 } -nodeIDList[41472] = { index = 273, size = 28573 } -nodeIDList[41476] = { index = 274, size = 28288 } -nodeIDList[41595] = { index = 275, size = 28500 } -nodeIDList[41870] = { index = 276, size = 28141 } -nodeIDList[41989] = { index = 277, size = 28442 } -nodeIDList[42009] = { index = 278, size = 28471 } -nodeIDList[42041] = { index = 279, size = 28568 } -nodeIDList[42443] = { index = 280, size = 28529 } -nodeIDList[42649] = { index = 281, size = 28376 } -nodeIDList[42686] = { index = 282, size = 28631 } -nodeIDList[42720] = { index = 283, size = 28637 } -nodeIDList[42795] = { index = 284, size = 28597 } -nodeIDList[42804] = { index = 285, size = 28421 } -nodeIDList[42917] = { index = 286, size = 28486 } -nodeIDList[43385] = { index = 287, size = 28568 } -nodeIDList[43689] = { index = 288, size = 28581 } -nodeIDList[44102] = { index = 289, size = 28577 } -nodeIDList[44103] = { index = 290, size = 28409 } -nodeIDList[44191] = { index = 291, size = 28216 } -nodeIDList[44207] = { index = 292, size = 28513 } -nodeIDList[44347] = { index = 293, size = 28494 } -nodeIDList[44562] = { index = 294, size = 28365 } -nodeIDList[44788] = { index = 295, size = 28310 } -nodeIDList[44824] = { index = 296, size = 28640 } -nodeIDList[44955] = { index = 297, size = 28516 } -nodeIDList[44988] = { index = 298, size = 28510 } -nodeIDList[45067] = { index = 299, size = 28489 } -nodeIDList[45283] = { index = 300, size = 28516 } -nodeIDList[45317] = { index = 301, size = 28270 } -nodeIDList[45329] = { index = 302, size = 28698 } -nodeIDList[45350] = { index = 303, size = 28353 } -nodeIDList[45608] = { index = 304, size = 28255 } -nodeIDList[45657] = { index = 305, size = 28376 } -nodeIDList[45803] = { index = 306, size = 28496 } -nodeIDList[45945] = { index = 307, size = 28455 } -nodeIDList[46408] = { index = 308, size = 28597 } -nodeIDList[46471] = { index = 309, size = 28432 } -nodeIDList[46842] = { index = 310, size = 28497 } -nodeIDList[46904] = { index = 311, size = 28361 } -nodeIDList[46965] = { index = 312, size = 28470 } -nodeIDList[47065] = { index = 313, size = 28259 } -nodeIDList[47306] = { index = 314, size = 28438 } -nodeIDList[47471] = { index = 315, size = 28573 } -nodeIDList[47484] = { index = 316, size = 28602 } -nodeIDList[47743] = { index = 317, size = 28550 } -nodeIDList[48298] = { index = 318, size = 28432 } -nodeIDList[48438] = { index = 319, size = 28729 } -nodeIDList[48556] = { index = 320, size = 28592 } -nodeIDList[48614] = { index = 321, size = 28629 } -nodeIDList[48698] = { index = 322, size = 28377 } -nodeIDList[48807] = { index = 323, size = 28302 } -nodeIDList[48823] = { index = 324, size = 28124 } -nodeIDList[49254] = { index = 325, size = 28453 } -nodeIDList[49318] = { index = 326, size = 28457 } -nodeIDList[49379] = { index = 327, size = 28405 } -nodeIDList[49416] = { index = 328, size = 28544 } -nodeIDList[49445] = { index = 329, size = 28313 } -nodeIDList[49459] = { index = 330, size = 28430 } -nodeIDList[49538] = { index = 331, size = 28542 } -nodeIDList[49621] = { index = 332, size = 28422 } -nodeIDList[49645] = { index = 333, size = 28518 } -nodeIDList[49772] = { index = 334, size = 28444 } -nodeIDList[49969] = { index = 335, size = 28580 } -nodeIDList[50029] = { index = 336, size = 28188 } -nodeIDList[50197] = { index = 337, size = 28441 } -nodeIDList[50338] = { index = 338, size = 28623 } -nodeIDList[50690] = { index = 339, size = 28479 } -nodeIDList[50842] = { index = 340, size = 28632 } -nodeIDList[50858] = { index = 341, size = 28572 } -nodeIDList[51108] = { index = 342, size = 28633 } -nodeIDList[51212] = { index = 343, size = 28748 } -nodeIDList[51440] = { index = 344, size = 28535 } -nodeIDList[51559] = { index = 345, size = 28732 } -nodeIDList[51748] = { index = 346, size = 28392 } -nodeIDList[51881] = { index = 347, size = 28431 } -nodeIDList[52030] = { index = 348, size = 28391 } -nodeIDList[52031] = { index = 349, size = 28472 } -nodeIDList[52090] = { index = 350, size = 28294 } -nodeIDList[52157] = { index = 351, size = 28503 } -nodeIDList[52230] = { index = 352, size = 28406 } -nodeIDList[52714] = { index = 353, size = 28290 } -nodeIDList[52742] = { index = 354, size = 28535 } -nodeIDList[52789] = { index = 355, size = 28202 } -nodeIDList[53013] = { index = 356, size = 28342 } -nodeIDList[53042] = { index = 357, size = 28407 } -nodeIDList[53114] = { index = 358, size = 28483 } -nodeIDList[53118] = { index = 359, size = 28318 } -nodeIDList[53493] = { index = 360, size = 28522 } -nodeIDList[53573] = { index = 361, size = 28598 } -nodeIDList[53652] = { index = 362, size = 28145 } -nodeIDList[53757] = { index = 363, size = 28396 } -nodeIDList[53802] = { index = 364, size = 28606 } -nodeIDList[53840] = { index = 365, size = 28592 } -nodeIDList[54142] = { index = 366, size = 28387 } -nodeIDList[54268] = { index = 367, size = 28588 } -nodeIDList[54629] = { index = 368, size = 28323 } -nodeIDList[54694] = { index = 369, size = 28308 } -nodeIDList[54713] = { index = 370, size = 28602 } -nodeIDList[54776] = { index = 371, size = 28709 } -nodeIDList[54791] = { index = 372, size = 28340 } -nodeIDList[55002] = { index = 373, size = 28403 } -nodeIDList[55027] = { index = 374, size = 28592 } -nodeIDList[55114] = { index = 375, size = 28595 } -nodeIDList[55194] = { index = 376, size = 28499 } -nodeIDList[55380] = { index = 377, size = 28395 } -nodeIDList[55381] = { index = 378, size = 28648 } -nodeIDList[55485] = { index = 379, size = 28639 } -nodeIDList[55772] = { index = 380, size = 28523 } -nodeIDList[56029] = { index = 381, size = 28534 } -nodeIDList[56094] = { index = 382, size = 28396 } -nodeIDList[56276] = { index = 383, size = 28311 } -nodeIDList[56330] = { index = 384, size = 28339 } -nodeIDList[56359] = { index = 385, size = 28704 } -nodeIDList[56648] = { index = 386, size = 28552 } -nodeIDList[56716] = { index = 387, size = 28339 } -nodeIDList[57199] = { index = 388, size = 28557 } -nodeIDList[57839] = { index = 389, size = 28306 } -nodeIDList[57900] = { index = 390, size = 28617 } -nodeIDList[58032] = { index = 391, size = 28571 } -nodeIDList[58168] = { index = 392, size = 28334 } -nodeIDList[58198] = { index = 393, size = 28400 } -nodeIDList[58218] = { index = 394, size = 28436 } -nodeIDList[58382] = { index = 395, size = 28417 } -nodeIDList[58449] = { index = 396, size = 28277 } -nodeIDList[58831] = { index = 397, size = 28463 } -nodeIDList[58851] = { index = 398, size = 28411 } -nodeIDList[58921] = { index = 399, size = 28491 } -nodeIDList[59151] = { index = 400, size = 28397 } -nodeIDList[59423] = { index = 401, size = 28483 } -nodeIDList[59556] = { index = 402, size = 28548 } -nodeIDList[59605] = { index = 403, size = 28582 } -nodeIDList[59766] = { index = 404, size = 28502 } -nodeIDList[59866] = { index = 405, size = 28369 } -nodeIDList[59976] = { index = 406, size = 28500 } -nodeIDList[60002] = { index = 407, size = 28345 } -nodeIDList[60031] = { index = 408, size = 28384 } -nodeIDList[60180] = { index = 409, size = 28612 } -nodeIDList[60501] = { index = 410, size = 28380 } -nodeIDList[60619] = { index = 411, size = 28512 } -nodeIDList[60737] = { index = 412, size = 28294 } -nodeIDList[60781] = { index = 413, size = 28653 } -nodeIDList[61039] = { index = 414, size = 28224 } -nodeIDList[61190] = { index = 415, size = 28424 } -nodeIDList[61198] = { index = 416, size = 28491 } -nodeIDList[61308] = { index = 417, size = 28578 } -nodeIDList[61689] = { index = 418, size = 28367 } -nodeIDList[61981] = { index = 419, size = 28230 } -nodeIDList[61982] = { index = 420, size = 28444 } -nodeIDList[62094] = { index = 421, size = 28537 } -nodeIDList[62577] = { index = 422, size = 28571 } -nodeIDList[62802] = { index = 423, size = 28144 } -nodeIDList[62849] = { index = 424, size = 28388 } -nodeIDList[63033] = { index = 425, size = 28303 } -nodeIDList[63150] = { index = 426, size = 28270 } -nodeIDList[63207] = { index = 427, size = 28424 } -nodeIDList[63251] = { index = 428, size = 28447 } -nodeIDList[63422] = { index = 429, size = 28230 } -nodeIDList[63453] = { index = 430, size = 28612 } -nodeIDList[63635] = { index = 431, size = 28448 } -nodeIDList[63727] = { index = 432, size = 28438 } -nodeIDList[63921] = { index = 433, size = 28320 } -nodeIDList[63933] = { index = 434, size = 28477 } -nodeIDList[63944] = { index = 435, size = 28581 } -nodeIDList[63976] = { index = 436, size = 28364 } -nodeIDList[64077] = { index = 437, size = 28388 } -nodeIDList[64226] = { index = 438, size = 28261 } -nodeIDList[64355] = { index = 439, size = 28451 } -nodeIDList[64395] = { index = 440, size = 28568 } -nodeIDList[64882] = { index = 441, size = 28274 } -nodeIDList[65053] = { index = 442, size = 28616 } -nodeIDList[65093] = { index = 443, size = 28468 } -nodeIDList[65097] = { index = 444, size = 28466 } -nodeIDList[65107] = { index = 445, size = 28307 } -nodeIDList[65108] = { index = 446, size = 28583 } -nodeIDList[65210] = { index = 447, size = 28388 } -nodeIDList[65224] = { index = 448, size = 28304 } -nodeIDList[65273] = { index = 449, size = 28781 } -nodeIDList[65308] = { index = 450, size = 28397 } -nodeIDList[65502] = { index = 451, size = 28225 } -nodeIDList[94] = { index = 452, size = 15802 } -nodeIDList[127] = { index = 453, size = 15802 } -nodeIDList[223] = { index = 454, size = 15802 } -nodeIDList[224] = { index = 455, size = 15802 } -nodeIDList[238] = { index = 456, size = 15802 } -nodeIDList[265] = { index = 457, size = 15802 } -nodeIDList[367] = { index = 458, size = 15802 } -nodeIDList[420] = { index = 459, size = 15802 } -nodeIDList[444] = { index = 460, size = 15802 } -nodeIDList[465] = { index = 461, size = 15802 } -nodeIDList[476] = { index = 462, size = 15802 } -nodeIDList[487] = { index = 463, size = 15802 } -nodeIDList[494] = { index = 464, size = 15802 } -nodeIDList[651] = { index = 465, size = 15802 } -nodeIDList[655] = { index = 466, size = 15802 } -nodeIDList[720] = { index = 467, size = 15802 } -nodeIDList[739] = { index = 468, size = 15802 } -nodeIDList[864] = { index = 469, size = 15802 } -nodeIDList[885] = { index = 470, size = 15802 } -nodeIDList[903] = { index = 471, size = 15802 } -nodeIDList[918] = { index = 472, size = 15802 } -nodeIDList[930] = { index = 473, size = 15802 } -nodeIDList[1031] = { index = 474, size = 15802 } -nodeIDList[1159] = { index = 475, size = 15802 } -nodeIDList[1201] = { index = 476, size = 15802 } -nodeIDList[1203] = { index = 477, size = 15802 } -nodeIDList[1252] = { index = 478, size = 15802 } -nodeIDList[1346] = { index = 479, size = 15802 } -nodeIDList[1354] = { index = 480, size = 15802 } -nodeIDList[1427] = { index = 481, size = 15802 } -nodeIDList[1461] = { index = 482, size = 15802 } -nodeIDList[1550] = { index = 483, size = 15802 } -nodeIDList[1572] = { index = 484, size = 15802 } -nodeIDList[1593] = { index = 485, size = 15802 } -nodeIDList[1600] = { index = 486, size = 15802 } -nodeIDList[1609] = { index = 487, size = 15802 } -nodeIDList[1648] = { index = 488, size = 15802 } -nodeIDList[1652] = { index = 489, size = 15802 } -nodeIDList[1655] = { index = 490, size = 15802 } -nodeIDList[1696] = { index = 491, size = 15802 } -nodeIDList[1698] = { index = 492, size = 15802 } -nodeIDList[1722] = { index = 493, size = 15802 } -nodeIDList[1761] = { index = 494, size = 15802 } -nodeIDList[1767] = { index = 495, size = 15802 } -nodeIDList[1822] = { index = 496, size = 15802 } -nodeIDList[1891] = { index = 497, size = 15802 } -nodeIDList[1909] = { index = 498, size = 15802 } -nodeIDList[1957] = { index = 499, size = 15802 } -nodeIDList[2081] = { index = 500, size = 15802 } -nodeIDList[2092] = { index = 501, size = 15802 } -nodeIDList[2094] = { index = 502, size = 15802 } -nodeIDList[2121] = { index = 503, size = 15802 } -nodeIDList[2151] = { index = 504, size = 15802 } -nodeIDList[2185] = { index = 505, size = 15802 } -nodeIDList[2219] = { index = 506, size = 15802 } -nodeIDList[2260] = { index = 507, size = 15802 } -nodeIDList[2292] = { index = 508, size = 15802 } -nodeIDList[2348] = { index = 509, size = 15802 } -nodeIDList[2355] = { index = 510, size = 15802 } -nodeIDList[2392] = { index = 511, size = 15802 } -nodeIDList[2411] = { index = 512, size = 15802 } -nodeIDList[2413] = { index = 513, size = 15802 } -nodeIDList[2454] = { index = 514, size = 15802 } -nodeIDList[2474] = { index = 515, size = 15802 } -nodeIDList[2785] = { index = 516, size = 15802 } -nodeIDList[2913] = { index = 517, size = 15802 } -nodeIDList[3009] = { index = 518, size = 15802 } -nodeIDList[3089] = { index = 519, size = 15802 } -nodeIDList[3167] = { index = 520, size = 15802 } -nodeIDList[3187] = { index = 521, size = 15802 } -nodeIDList[3314] = { index = 522, size = 15802 } -nodeIDList[3319] = { index = 523, size = 15802 } -nodeIDList[3359] = { index = 524, size = 15802 } -nodeIDList[3362] = { index = 525, size = 15802 } -nodeIDList[3398] = { index = 526, size = 15802 } -nodeIDList[3424] = { index = 527, size = 15802 } -nodeIDList[3469] = { index = 528, size = 15802 } -nodeIDList[3533] = { index = 529, size = 15802 } -nodeIDList[3537] = { index = 530, size = 15802 } -nodeIDList[3634] = { index = 531, size = 15802 } -nodeIDList[3644] = { index = 532, size = 15802 } -nodeIDList[3656] = { index = 533, size = 15802 } -nodeIDList[3676] = { index = 534, size = 15802 } -nodeIDList[3863] = { index = 535, size = 15802 } -nodeIDList[3992] = { index = 536, size = 15802 } -nodeIDList[4011] = { index = 537, size = 15802 } -nodeIDList[4036] = { index = 538, size = 15802 } -nodeIDList[4105] = { index = 539, size = 15802 } -nodeIDList[4184] = { index = 540, size = 15802 } -nodeIDList[4219] = { index = 541, size = 15802 } -nodeIDList[4247] = { index = 542, size = 15802 } -nodeIDList[4269] = { index = 543, size = 15802 } -nodeIDList[4270] = { index = 544, size = 15802 } -nodeIDList[4300] = { index = 545, size = 15802 } -nodeIDList[4336] = { index = 546, size = 15802 } -nodeIDList[4367] = { index = 547, size = 15802 } -nodeIDList[4378] = { index = 548, size = 15802 } -nodeIDList[4397] = { index = 549, size = 15802 } -nodeIDList[4432] = { index = 550, size = 15802 } -nodeIDList[4502] = { index = 551, size = 15802 } -nodeIDList[4546] = { index = 552, size = 15802 } -nodeIDList[4565] = { index = 553, size = 15802 } -nodeIDList[4568] = { index = 554, size = 15802 } -nodeIDList[4573] = { index = 555, size = 15802 } -nodeIDList[4656] = { index = 556, size = 15802 } -nodeIDList[4713] = { index = 557, size = 15802 } -nodeIDList[4750] = { index = 558, size = 15802 } -nodeIDList[4944] = { index = 559, size = 15802 } -nodeIDList[4973] = { index = 560, size = 15802 } -nodeIDList[4977] = { index = 561, size = 15802 } -nodeIDList[5018] = { index = 562, size = 15802 } -nodeIDList[5022] = { index = 563, size = 15802 } -nodeIDList[5065] = { index = 564, size = 15802 } -nodeIDList[5068] = { index = 565, size = 15802 } -nodeIDList[5103] = { index = 566, size = 15802 } -nodeIDList[5129] = { index = 567, size = 15802 } -nodeIDList[5152] = { index = 568, size = 15802 } -nodeIDList[5197] = { index = 569, size = 15802 } -nodeIDList[5203] = { index = 570, size = 15802 } -nodeIDList[5233] = { index = 571, size = 15802 } -nodeIDList[5237] = { index = 572, size = 15802 } -nodeIDList[5296] = { index = 573, size = 15802 } -nodeIDList[5408] = { index = 574, size = 15802 } -nodeIDList[5462] = { index = 575, size = 15802 } -nodeIDList[5560] = { index = 576, size = 15802 } -nodeIDList[5591] = { index = 577, size = 15802 } -nodeIDList[5612] = { index = 578, size = 15802 } -nodeIDList[5613] = { index = 579, size = 15802 } -nodeIDList[5616] = { index = 580, size = 15802 } -nodeIDList[5622] = { index = 581, size = 15802 } -nodeIDList[5629] = { index = 582, size = 15802 } -nodeIDList[5632] = { index = 583, size = 15802 } -nodeIDList[5743] = { index = 584, size = 15802 } -nodeIDList[5802] = { index = 585, size = 15802 } -nodeIDList[5875] = { index = 586, size = 15802 } -nodeIDList[5916] = { index = 587, size = 15802 } -nodeIDList[5935] = { index = 588, size = 15802 } -nodeIDList[5972] = { index = 589, size = 15802 } -nodeIDList[6042] = { index = 590, size = 15802 } -nodeIDList[6043] = { index = 591, size = 15802 } -nodeIDList[6108] = { index = 592, size = 15802 } -nodeIDList[6109] = { index = 593, size = 15802 } -nodeIDList[6113] = { index = 594, size = 15802 } -nodeIDList[6139] = { index = 595, size = 15802 } -nodeIDList[6204] = { index = 596, size = 15802 } -nodeIDList[6245] = { index = 597, size = 15802 } -nodeIDList[6250] = { index = 598, size = 15802 } -nodeIDList[6264] = { index = 599, size = 15802 } -nodeIDList[6359] = { index = 600, size = 15802 } -nodeIDList[6363] = { index = 601, size = 15802 } -nodeIDList[6383] = { index = 602, size = 15802 } -nodeIDList[6446] = { index = 603, size = 15802 } -nodeIDList[6534] = { index = 604, size = 15802 } -nodeIDList[6538] = { index = 605, size = 15802 } -nodeIDList[6542] = { index = 606, size = 15802 } -nodeIDList[6580] = { index = 607, size = 15802 } -nodeIDList[6616] = { index = 608, size = 15802 } -nodeIDList[6633] = { index = 609, size = 15802 } -nodeIDList[6654] = { index = 610, size = 15802 } -nodeIDList[6685] = { index = 611, size = 15802 } -nodeIDList[6712] = { index = 612, size = 15802 } -nodeIDList[6718] = { index = 613, size = 15802 } -nodeIDList[6741] = { index = 614, size = 15802 } -nodeIDList[6764] = { index = 615, size = 15802 } -nodeIDList[6785] = { index = 616, size = 15802 } -nodeIDList[6797] = { index = 617, size = 15802 } -nodeIDList[6884] = { index = 618, size = 15802 } -nodeIDList[6913] = { index = 619, size = 15802 } -nodeIDList[6949] = { index = 620, size = 15802 } -nodeIDList[6981] = { index = 621, size = 15802 } -nodeIDList[7082] = { index = 622, size = 15802 } -nodeIDList[7092] = { index = 623, size = 15802 } -nodeIDList[7112] = { index = 624, size = 15802 } -nodeIDList[7153] = { index = 625, size = 15802 } -nodeIDList[7162] = { index = 626, size = 15802 } -nodeIDList[7187] = { index = 627, size = 15802 } -nodeIDList[7285] = { index = 628, size = 15802 } -nodeIDList[7335] = { index = 629, size = 15802 } -nodeIDList[7347] = { index = 630, size = 15802 } -nodeIDList[7364] = { index = 631, size = 15802 } -nodeIDList[7374] = { index = 632, size = 15802 } -nodeIDList[7388] = { index = 633, size = 15802 } -nodeIDList[7399] = { index = 634, size = 15802 } -nodeIDList[7444] = { index = 635, size = 15802 } -nodeIDList[7503] = { index = 636, size = 15802 } -nodeIDList[7594] = { index = 637, size = 15802 } -nodeIDList[7609] = { index = 638, size = 15802 } -nodeIDList[7614] = { index = 639, size = 15802 } -nodeIDList[7641] = { index = 640, size = 15802 } -nodeIDList[7659] = { index = 641, size = 15802 } -nodeIDList[7728] = { index = 642, size = 15802 } -nodeIDList[7786] = { index = 643, size = 15802 } -nodeIDList[7828] = { index = 644, size = 15802 } -nodeIDList[7898] = { index = 645, size = 15802 } -nodeIDList[7903] = { index = 646, size = 15802 } -nodeIDList[7920] = { index = 647, size = 15802 } -nodeIDList[7938] = { index = 648, size = 15802 } -nodeIDList[8012] = { index = 649, size = 15802 } -nodeIDList[8027] = { index = 650, size = 15802 } -nodeIDList[8139] = { index = 651, size = 15802 } -nodeIDList[8198] = { index = 652, size = 15802 } -nodeIDList[8302] = { index = 653, size = 15802 } -nodeIDList[8348] = { index = 654, size = 15802 } -nodeIDList[8410] = { index = 655, size = 15802 } -nodeIDList[8426] = { index = 656, size = 15802 } -nodeIDList[8500] = { index = 657, size = 15802 } -nodeIDList[8533] = { index = 658, size = 15802 } -nodeIDList[8544] = { index = 659, size = 15802 } -nodeIDList[8566] = { index = 660, size = 15802 } -nodeIDList[8620] = { index = 661, size = 15802 } -nodeIDList[8624] = { index = 662, size = 15802 } -nodeIDList[8640] = { index = 663, size = 15802 } -nodeIDList[8643] = { index = 664, size = 15802 } -nodeIDList[8879] = { index = 665, size = 15802 } -nodeIDList[8904] = { index = 666, size = 15802 } -nodeIDList[8930] = { index = 667, size = 15802 } -nodeIDList[8938] = { index = 668, size = 15802 } -nodeIDList[8948] = { index = 669, size = 15802 } -nodeIDList[9009] = { index = 670, size = 15802 } -nodeIDList[9052] = { index = 671, size = 15802 } -nodeIDList[9149] = { index = 672, size = 15802 } -nodeIDList[9171] = { index = 673, size = 15802 } -nodeIDList[9206] = { index = 674, size = 15802 } -nodeIDList[9262] = { index = 675, size = 15802 } -nodeIDList[9294] = { index = 676, size = 15802 } -nodeIDList[9355] = { index = 677, size = 15802 } -nodeIDList[9361] = { index = 678, size = 15802 } -nodeIDList[9370] = { index = 679, size = 15802 } -nodeIDList[9373] = { index = 680, size = 15802 } -nodeIDList[9386] = { index = 681, size = 15802 } -nodeIDList[9392] = { index = 682, size = 15802 } -nodeIDList[9402] = { index = 683, size = 15802 } -nodeIDList[9469] = { index = 684, size = 15802 } -nodeIDList[9505] = { index = 685, size = 15802 } -nodeIDList[9511] = { index = 686, size = 15802 } -nodeIDList[9650] = { index = 687, size = 15802 } -nodeIDList[9695] = { index = 688, size = 15802 } -nodeIDList[9769] = { index = 689, size = 15802 } -nodeIDList[9786] = { index = 690, size = 15802 } -nodeIDList[9877] = { index = 691, size = 15802 } -nodeIDList[9933] = { index = 692, size = 15802 } -nodeIDList[9976] = { index = 693, size = 15802 } -nodeIDList[9995] = { index = 694, size = 15802 } -nodeIDList[10017] = { index = 695, size = 15802 } -nodeIDList[10031] = { index = 696, size = 15802 } -nodeIDList[10073] = { index = 697, size = 15802 } -nodeIDList[10221] = { index = 698, size = 15802 } -nodeIDList[10282] = { index = 699, size = 15802 } -nodeIDList[10311] = { index = 700, size = 15802 } -nodeIDList[10490] = { index = 701, size = 15802 } -nodeIDList[10555] = { index = 702, size = 15802 } -nodeIDList[10575] = { index = 703, size = 15802 } -nodeIDList[10594] = { index = 704, size = 15802 } -nodeIDList[10763] = { index = 705, size = 15802 } -nodeIDList[10829] = { index = 706, size = 15802 } -nodeIDList[10840] = { index = 707, size = 15802 } -nodeIDList[10843] = { index = 708, size = 15802 } -nodeIDList[10851] = { index = 709, size = 15802 } -nodeIDList[10893] = { index = 710, size = 15802 } -nodeIDList[10904] = { index = 711, size = 15802 } -nodeIDList[10989] = { index = 712, size = 15802 } -nodeIDList[10992] = { index = 713, size = 15802 } -nodeIDList[11016] = { index = 714, size = 15802 } -nodeIDList[11018] = { index = 715, size = 15802 } -nodeIDList[11088] = { index = 716, size = 15802 } -nodeIDList[11128] = { index = 717, size = 15802 } -nodeIDList[11162] = { index = 718, size = 15802 } -nodeIDList[11190] = { index = 719, size = 15802 } -nodeIDList[11200] = { index = 720, size = 15802 } -nodeIDList[11334] = { index = 721, size = 15802 } -nodeIDList[11364] = { index = 722, size = 15802 } -nodeIDList[11431] = { index = 723, size = 15802 } -nodeIDList[11456] = { index = 724, size = 15802 } -nodeIDList[11489] = { index = 725, size = 15802 } -nodeIDList[11497] = { index = 726, size = 15802 } -nodeIDList[11515] = { index = 727, size = 15802 } -nodeIDList[11551] = { index = 728, size = 15802 } -nodeIDList[11568] = { index = 729, size = 15802 } -nodeIDList[11651] = { index = 730, size = 15802 } -nodeIDList[11659] = { index = 731, size = 15802 } -nodeIDList[11678] = { index = 732, size = 15802 } -nodeIDList[11688] = { index = 733, size = 15802 } -nodeIDList[11689] = { index = 734, size = 15802 } -nodeIDList[11700] = { index = 735, size = 15802 } -nodeIDList[11716] = { index = 736, size = 15802 } -nodeIDList[11792] = { index = 737, size = 15802 } -nodeIDList[11800] = { index = 738, size = 15802 } -nodeIDList[11811] = { index = 739, size = 15802 } -nodeIDList[11850] = { index = 740, size = 15802 } -nodeIDList[11859] = { index = 741, size = 15802 } -nodeIDList[11984] = { index = 742, size = 15802 } -nodeIDList[12068] = { index = 743, size = 15802 } -nodeIDList[12095] = { index = 744, size = 15802 } -nodeIDList[12189] = { index = 745, size = 15802 } -nodeIDList[12215] = { index = 746, size = 15802 } -nodeIDList[12236] = { index = 747, size = 15802 } -nodeIDList[12246] = { index = 748, size = 15802 } -nodeIDList[12247] = { index = 749, size = 15802 } -nodeIDList[12250] = { index = 750, size = 15802 } -nodeIDList[12379] = { index = 751, size = 15802 } -nodeIDList[12407] = { index = 752, size = 15802 } -nodeIDList[12412] = { index = 753, size = 15802 } -nodeIDList[12415] = { index = 754, size = 15802 } -nodeIDList[12439] = { index = 755, size = 15802 } -nodeIDList[12536] = { index = 756, size = 15802 } -nodeIDList[12664] = { index = 757, size = 15802 } -nodeIDList[12720] = { index = 758, size = 15802 } -nodeIDList[12783] = { index = 759, size = 15802 } -nodeIDList[12794] = { index = 760, size = 15802 } -nodeIDList[12801] = { index = 761, size = 15802 } -nodeIDList[12824] = { index = 762, size = 15802 } -nodeIDList[12831] = { index = 763, size = 15802 } -nodeIDList[12852] = { index = 764, size = 15802 } -nodeIDList[12888] = { index = 765, size = 15802 } -nodeIDList[12913] = { index = 766, size = 15802 } -nodeIDList[12948] = { index = 767, size = 15802 } -nodeIDList[13009] = { index = 768, size = 15802 } -nodeIDList[13168] = { index = 769, size = 15802 } -nodeIDList[13191] = { index = 770, size = 15802 } -nodeIDList[13202] = { index = 771, size = 15802 } -nodeIDList[13231] = { index = 772, size = 15802 } -nodeIDList[13232] = { index = 773, size = 15802 } -nodeIDList[13273] = { index = 774, size = 15802 } -nodeIDList[13322] = { index = 775, size = 15802 } -nodeIDList[13498] = { index = 776, size = 15802 } -nodeIDList[13559] = { index = 777, size = 15802 } -nodeIDList[13573] = { index = 778, size = 15802 } -nodeIDList[13714] = { index = 779, size = 15802 } -nodeIDList[13753] = { index = 780, size = 15802 } -nodeIDList[13782] = { index = 781, size = 15802 } -nodeIDList[13807] = { index = 782, size = 15802 } -nodeIDList[13885] = { index = 783, size = 15802 } -nodeIDList[13961] = { index = 784, size = 15802 } -nodeIDList[13965] = { index = 785, size = 15802 } -nodeIDList[14021] = { index = 786, size = 15802 } -nodeIDList[14040] = { index = 787, size = 15802 } -nodeIDList[14056] = { index = 788, size = 15802 } -nodeIDList[14057] = { index = 789, size = 15802 } -nodeIDList[14090] = { index = 790, size = 15802 } -nodeIDList[14151] = { index = 791, size = 15802 } -nodeIDList[14157] = { index = 792, size = 15802 } -nodeIDList[14182] = { index = 793, size = 15802 } -nodeIDList[14209] = { index = 794, size = 15802 } -nodeIDList[14211] = { index = 795, size = 15802 } -nodeIDList[14292] = { index = 796, size = 15802 } -nodeIDList[14384] = { index = 797, size = 15802 } -nodeIDList[14400] = { index = 798, size = 15802 } -nodeIDList[14419] = { index = 799, size = 15802 } -nodeIDList[14745] = { index = 800, size = 15802 } -nodeIDList[14767] = { index = 801, size = 15802 } -nodeIDList[14804] = { index = 802, size = 15802 } -nodeIDList[14930] = { index = 803, size = 15802 } -nodeIDList[14936] = { index = 804, size = 15802 } -nodeIDList[15021] = { index = 805, size = 15802 } -nodeIDList[15064] = { index = 806, size = 15802 } -nodeIDList[15073] = { index = 807, size = 15802 } -nodeIDList[15081] = { index = 808, size = 15802 } -nodeIDList[15086] = { index = 809, size = 15802 } -nodeIDList[15117] = { index = 810, size = 15802 } -nodeIDList[15124] = { index = 811, size = 15802 } -nodeIDList[15144] = { index = 812, size = 15802 } -nodeIDList[15163] = { index = 813, size = 15802 } -nodeIDList[15167] = { index = 814, size = 15802 } -nodeIDList[15228] = { index = 815, size = 15802 } -nodeIDList[15365] = { index = 816, size = 15802 } -nodeIDList[15405] = { index = 817, size = 15802 } -nodeIDList[15438] = { index = 818, size = 15802 } -nodeIDList[15451] = { index = 819, size = 15802 } -nodeIDList[15452] = { index = 820, size = 15802 } -nodeIDList[15491] = { index = 821, size = 15802 } -nodeIDList[15522] = { index = 822, size = 15802 } -nodeIDList[15543] = { index = 823, size = 15802 } -nodeIDList[15549] = { index = 824, size = 15802 } -nodeIDList[15599] = { index = 825, size = 15802 } -nodeIDList[15631] = { index = 826, size = 15802 } -nodeIDList[15678] = { index = 827, size = 15802 } -nodeIDList[15716] = { index = 828, size = 15802 } -nodeIDList[15727] = { index = 829, size = 15802 } -nodeIDList[15783] = { index = 830, size = 15802 } -nodeIDList[15837] = { index = 831, size = 15802 } -nodeIDList[15868] = { index = 832, size = 15802 } -nodeIDList[15880] = { index = 833, size = 15802 } -nodeIDList[15973] = { index = 834, size = 15802 } -nodeIDList[16079] = { index = 835, size = 15802 } -nodeIDList[16113] = { index = 836, size = 15802 } -nodeIDList[16167] = { index = 837, size = 15802 } -nodeIDList[16213] = { index = 838, size = 15802 } -nodeIDList[16245] = { index = 839, size = 15802 } -nodeIDList[16380] = { index = 840, size = 15802 } -nodeIDList[16544] = { index = 841, size = 15802 } -nodeIDList[16602] = { index = 842, size = 15802 } -nodeIDList[16743] = { index = 843, size = 15802 } -nodeIDList[16754] = { index = 844, size = 15802 } -nodeIDList[16756] = { index = 845, size = 15802 } -nodeIDList[16775] = { index = 846, size = 15802 } -nodeIDList[16790] = { index = 847, size = 15802 } -nodeIDList[16851] = { index = 848, size = 15802 } -nodeIDList[16860] = { index = 849, size = 15802 } -nodeIDList[16882] = { index = 850, size = 15802 } -nodeIDList[16954] = { index = 851, size = 15802 } -nodeIDList[16970] = { index = 852, size = 15802 } -nodeIDList[17020] = { index = 853, size = 15802 } -nodeIDList[17038] = { index = 854, size = 15802 } -nodeIDList[17201] = { index = 855, size = 15802 } -nodeIDList[17236] = { index = 856, size = 15802 } -nodeIDList[17251] = { index = 857, size = 15802 } -nodeIDList[17352] = { index = 858, size = 15802 } -nodeIDList[17383] = { index = 859, size = 15802 } -nodeIDList[17412] = { index = 860, size = 15802 } -nodeIDList[17421] = { index = 861, size = 15802 } -nodeIDList[17429] = { index = 862, size = 15802 } -nodeIDList[17527] = { index = 863, size = 15802 } -nodeIDList[17546] = { index = 864, size = 15802 } -nodeIDList[17566] = { index = 865, size = 15802 } -nodeIDList[17569] = { index = 866, size = 15802 } -nodeIDList[17579] = { index = 867, size = 15802 } -nodeIDList[17674] = { index = 868, size = 15802 } -nodeIDList[17735] = { index = 869, size = 15802 } -nodeIDList[17749] = { index = 870, size = 15802 } -nodeIDList[17788] = { index = 871, size = 15802 } -nodeIDList[17790] = { index = 872, size = 15802 } -nodeIDList[17814] = { index = 873, size = 15802 } -nodeIDList[17821] = { index = 874, size = 15802 } -nodeIDList[17833] = { index = 875, size = 15802 } -nodeIDList[17849] = { index = 876, size = 15802 } -nodeIDList[17908] = { index = 877, size = 15802 } -nodeIDList[17934] = { index = 878, size = 15802 } -nodeIDList[18009] = { index = 879, size = 15802 } -nodeIDList[18033] = { index = 880, size = 15802 } -nodeIDList[18103] = { index = 881, size = 15802 } -nodeIDList[18182] = { index = 882, size = 15802 } -nodeIDList[18202] = { index = 883, size = 15802 } -nodeIDList[18208] = { index = 884, size = 15802 } -nodeIDList[18239] = { index = 885, size = 15802 } -nodeIDList[18302] = { index = 886, size = 15802 } -nodeIDList[18359] = { index = 887, size = 15802 } -nodeIDList[18379] = { index = 888, size = 15802 } -nodeIDList[18402] = { index = 889, size = 15802 } -nodeIDList[18661] = { index = 890, size = 15802 } -nodeIDList[18670] = { index = 891, size = 15802 } -nodeIDList[18715] = { index = 892, size = 15802 } -nodeIDList[18747] = { index = 893, size = 15802 } -nodeIDList[18767] = { index = 894, size = 15802 } -nodeIDList[18770] = { index = 895, size = 15802 } -nodeIDList[18866] = { index = 896, size = 15802 } -nodeIDList[18901] = { index = 897, size = 15802 } -nodeIDList[18990] = { index = 898, size = 15802 } -nodeIDList[19008] = { index = 899, size = 15802 } -nodeIDList[19098] = { index = 900, size = 15802 } -nodeIDList[19196] = { index = 901, size = 15802 } -nodeIDList[19210] = { index = 902, size = 15802 } -nodeIDList[19228] = { index = 903, size = 15802 } -nodeIDList[19261] = { index = 904, size = 15802 } -nodeIDList[19287] = { index = 905, size = 15802 } -nodeIDList[19374] = { index = 906, size = 15802 } -nodeIDList[19388] = { index = 907, size = 15802 } -nodeIDList[19401] = { index = 908, size = 15802 } -nodeIDList[19501] = { index = 909, size = 15802 } -nodeIDList[19609] = { index = 910, size = 15802 } -nodeIDList[19635] = { index = 911, size = 15802 } -nodeIDList[19679] = { index = 912, size = 15802 } -nodeIDList[19711] = { index = 913, size = 15802 } -nodeIDList[19782] = { index = 914, size = 15802 } -nodeIDList[19884] = { index = 915, size = 15802 } -nodeIDList[19919] = { index = 916, size = 15802 } -nodeIDList[19939] = { index = 917, size = 15802 } -nodeIDList[19958] = { index = 918, size = 15802 } -nodeIDList[20010] = { index = 919, size = 15802 } -nodeIDList[20018] = { index = 920, size = 15802 } -nodeIDList[20127] = { index = 921, size = 15802 } -nodeIDList[20142] = { index = 922, size = 15802 } -nodeIDList[20167] = { index = 923, size = 15802 } -nodeIDList[20228] = { index = 924, size = 15802 } -nodeIDList[20310] = { index = 925, size = 15802 } -nodeIDList[20402] = { index = 926, size = 15802 } -nodeIDList[20467] = { index = 927, size = 15802 } -nodeIDList[20546] = { index = 928, size = 15802 } -nodeIDList[20551] = { index = 929, size = 15802 } -nodeIDList[20807] = { index = 930, size = 15802 } -nodeIDList[20812] = { index = 931, size = 15802 } -nodeIDList[20844] = { index = 932, size = 15802 } -nodeIDList[20852] = { index = 933, size = 15802 } -nodeIDList[20913] = { index = 934, size = 15802 } -nodeIDList[20953] = { index = 935, size = 15802 } -nodeIDList[20966] = { index = 936, size = 15802 } -nodeIDList[20987] = { index = 937, size = 15802 } -nodeIDList[21019] = { index = 938, size = 15802 } -nodeIDList[21033] = { index = 939, size = 15802 } -nodeIDList[21048] = { index = 940, size = 15802 } -nodeIDList[21075] = { index = 941, size = 15802 } -nodeIDList[21170] = { index = 942, size = 15802 } -nodeIDList[21184] = { index = 943, size = 15802 } -nodeIDList[21262] = { index = 944, size = 15802 } -nodeIDList[21301] = { index = 945, size = 15802 } -nodeIDList[21548] = { index = 946, size = 15802 } -nodeIDList[21575] = { index = 947, size = 15802 } -nodeIDList[21678] = { index = 948, size = 15802 } -nodeIDList[21693] = { index = 949, size = 15802 } -nodeIDList[21758] = { index = 950, size = 15802 } -nodeIDList[21835] = { index = 951, size = 15802 } -nodeIDList[21929] = { index = 952, size = 15802 } -nodeIDList[21934] = { index = 953, size = 15802 } -nodeIDList[21974] = { index = 954, size = 15802 } -nodeIDList[22061] = { index = 955, size = 15802 } -nodeIDList[22062] = { index = 956, size = 15802 } -nodeIDList[22090] = { index = 957, size = 15802 } -nodeIDList[22180] = { index = 958, size = 15802 } -nodeIDList[22217] = { index = 959, size = 15802 } -nodeIDList[22261] = { index = 960, size = 15802 } -nodeIDList[22266] = { index = 961, size = 15802 } -nodeIDList[22285] = { index = 962, size = 15802 } -nodeIDList[22315] = { index = 963, size = 15802 } -nodeIDList[22407] = { index = 964, size = 15802 } -nodeIDList[22423] = { index = 965, size = 15802 } -nodeIDList[22472] = { index = 966, size = 15802 } -nodeIDList[22473] = { index = 967, size = 15802 } -nodeIDList[22488] = { index = 968, size = 15802 } -nodeIDList[22497] = { index = 969, size = 15802 } -nodeIDList[22577] = { index = 970, size = 15802 } -nodeIDList[22618] = { index = 971, size = 15802 } -nodeIDList[22627] = { index = 972, size = 15802 } -nodeIDList[22647] = { index = 973, size = 15802 } -nodeIDList[22703] = { index = 974, size = 15802 } -nodeIDList[22728] = { index = 975, size = 15802 } -nodeIDList[22845] = { index = 976, size = 15802 } -nodeIDList[22893] = { index = 977, size = 15802 } -nodeIDList[22908] = { index = 978, size = 15802 } -nodeIDList[23027] = { index = 979, size = 15802 } -nodeIDList[23036] = { index = 980, size = 15802 } -nodeIDList[23122] = { index = 981, size = 15802 } -nodeIDList[23185] = { index = 982, size = 15802 } -nodeIDList[23199] = { index = 983, size = 15802 } -nodeIDList[23215] = { index = 984, size = 15802 } -nodeIDList[23237] = { index = 985, size = 15802 } -nodeIDList[23334] = { index = 986, size = 15802 } -nodeIDList[23438] = { index = 987, size = 15802 } -nodeIDList[23439] = { index = 988, size = 15802 } -nodeIDList[23449] = { index = 989, size = 15802 } -nodeIDList[23456] = { index = 990, size = 15802 } -nodeIDList[23471] = { index = 991, size = 15802 } -nodeIDList[23507] = { index = 992, size = 15802 } -nodeIDList[23616] = { index = 993, size = 15802 } -nodeIDList[23659] = { index = 994, size = 15802 } -nodeIDList[23760] = { index = 995, size = 15802 } -nodeIDList[23834] = { index = 996, size = 15802 } -nodeIDList[23852] = { index = 997, size = 15802 } -nodeIDList[23881] = { index = 998, size = 15802 } -nodeIDList[23886] = { index = 999, size = 15802 } -nodeIDList[23912] = { index = 1000, size = 15802 } -nodeIDList[23951] = { index = 1001, size = 15802 } -nodeIDList[24083] = { index = 1002, size = 15802 } -nodeIDList[24155] = { index = 1003, size = 15802 } -nodeIDList[24157] = { index = 1004, size = 15802 } -nodeIDList[24229] = { index = 1005, size = 15802 } -nodeIDList[24377] = { index = 1006, size = 15802 } -nodeIDList[24472] = { index = 1007, size = 15802 } -nodeIDList[24496] = { index = 1008, size = 15802 } -nodeIDList[24544] = { index = 1009, size = 15802 } -nodeIDList[24641] = { index = 1010, size = 15802 } -nodeIDList[24643] = { index = 1011, size = 15802 } -nodeIDList[24677] = { index = 1012, size = 15802 } -nodeIDList[24772] = { index = 1013, size = 15802 } -nodeIDList[24824] = { index = 1014, size = 15802 } -nodeIDList[24865] = { index = 1015, size = 15802 } -nodeIDList[24872] = { index = 1016, size = 15802 } -nodeIDList[24914] = { index = 1017, size = 15802 } -nodeIDList[24974] = { index = 1018, size = 15802 } -nodeIDList[25067] = { index = 1019, size = 15802 } -nodeIDList[25168] = { index = 1020, size = 15802 } -nodeIDList[25209] = { index = 1021, size = 15802 } -nodeIDList[25222] = { index = 1022, size = 15802 } -nodeIDList[25237] = { index = 1023, size = 15802 } -nodeIDList[25260] = { index = 1024, size = 15802 } -nodeIDList[25324] = { index = 1025, size = 15802 } -nodeIDList[25332] = { index = 1026, size = 15802 } -nodeIDList[25355] = { index = 1027, size = 15802 } -nodeIDList[25431] = { index = 1028, size = 15802 } -nodeIDList[25511] = { index = 1029, size = 15802 } -nodeIDList[25531] = { index = 1030, size = 15802 } -nodeIDList[25682] = { index = 1031, size = 15802 } -nodeIDList[25714] = { index = 1032, size = 15802 } -nodeIDList[25732] = { index = 1033, size = 15802 } -nodeIDList[25757] = { index = 1034, size = 15802 } -nodeIDList[25766] = { index = 1035, size = 15802 } -nodeIDList[25770] = { index = 1036, size = 15802 } -nodeIDList[25775] = { index = 1037, size = 15802 } -nodeIDList[25781] = { index = 1038, size = 15802 } -nodeIDList[25789] = { index = 1039, size = 15802 } -nodeIDList[25796] = { index = 1040, size = 15802 } -nodeIDList[25831] = { index = 1041, size = 15802 } -nodeIDList[25933] = { index = 1042, size = 15802 } -nodeIDList[25959] = { index = 1043, size = 15802 } -nodeIDList[26002] = { index = 1044, size = 15802 } -nodeIDList[26188] = { index = 1045, size = 15802 } -nodeIDList[26270] = { index = 1046, size = 15802 } -nodeIDList[26365] = { index = 1047, size = 15802 } -nodeIDList[26456] = { index = 1048, size = 15802 } -nodeIDList[26471] = { index = 1049, size = 15802 } -nodeIDList[26481] = { index = 1050, size = 15802 } -nodeIDList[26523] = { index = 1051, size = 15802 } -nodeIDList[26528] = { index = 1052, size = 15802 } -nodeIDList[26585] = { index = 1053, size = 15802 } -nodeIDList[26712] = { index = 1054, size = 15802 } -nodeIDList[26740] = { index = 1055, size = 15802 } -nodeIDList[26820] = { index = 1056, size = 15802 } -nodeIDList[27134] = { index = 1057, size = 15802 } -nodeIDList[27140] = { index = 1058, size = 15802 } -nodeIDList[27166] = { index = 1059, size = 15802 } -nodeIDList[27195] = { index = 1060, size = 15802 } -nodeIDList[27276] = { index = 1061, size = 15802 } -nodeIDList[27283] = { index = 1062, size = 15802 } -nodeIDList[27323] = { index = 1063, size = 15802 } -nodeIDList[27325] = { index = 1064, size = 15802 } -nodeIDList[27415] = { index = 1065, size = 15802 } -nodeIDList[27444] = { index = 1066, size = 15802 } -nodeIDList[27564] = { index = 1067, size = 15802 } -nodeIDList[27575] = { index = 1068, size = 15802 } -nodeIDList[27592] = { index = 1069, size = 15802 } -nodeIDList[27605] = { index = 1070, size = 15802 } -nodeIDList[27656] = { index = 1071, size = 15802 } -nodeIDList[27659] = { index = 1072, size = 15802 } -nodeIDList[27697] = { index = 1073, size = 15802 } -nodeIDList[27709] = { index = 1074, size = 15802 } -nodeIDList[27718] = { index = 1075, size = 15802 } -nodeIDList[27879] = { index = 1076, size = 15802 } -nodeIDList[27962] = { index = 1077, size = 15802 } -nodeIDList[28012] = { index = 1078, size = 15802 } -nodeIDList[28076] = { index = 1079, size = 15802 } -nodeIDList[28221] = { index = 1080, size = 15802 } -nodeIDList[28265] = { index = 1081, size = 15802 } -nodeIDList[28311] = { index = 1082, size = 15802 } -nodeIDList[28330] = { index = 1083, size = 15802 } -nodeIDList[28424] = { index = 1084, size = 15802 } -nodeIDList[28498] = { index = 1085, size = 15802 } -nodeIDList[28574] = { index = 1086, size = 15802 } -nodeIDList[28658] = { index = 1087, size = 15802 } -nodeIDList[28728] = { index = 1088, size = 15802 } -nodeIDList[28753] = { index = 1089, size = 15802 } -nodeIDList[28758] = { index = 1090, size = 15802 } -nodeIDList[28859] = { index = 1091, size = 15802 } -nodeIDList[28887] = { index = 1092, size = 15802 } -nodeIDList[29005] = { index = 1093, size = 15802 } -nodeIDList[29033] = { index = 1094, size = 15802 } -nodeIDList[29034] = { index = 1095, size = 15802 } -nodeIDList[29061] = { index = 1096, size = 15802 } -nodeIDList[29089] = { index = 1097, size = 15802 } -nodeIDList[29104] = { index = 1098, size = 15802 } -nodeIDList[29106] = { index = 1099, size = 15802 } -nodeIDList[29171] = { index = 1100, size = 15802 } -nodeIDList[29185] = { index = 1101, size = 15802 } -nodeIDList[29199] = { index = 1102, size = 15802 } -nodeIDList[29292] = { index = 1103, size = 15802 } -nodeIDList[29353] = { index = 1104, size = 15802 } -nodeIDList[29359] = { index = 1105, size = 15802 } -nodeIDList[29379] = { index = 1106, size = 15802 } -nodeIDList[29454] = { index = 1107, size = 15802 } -nodeIDList[29472] = { index = 1108, size = 15802 } -nodeIDList[29543] = { index = 1109, size = 15802 } -nodeIDList[29547] = { index = 1110, size = 15802 } -nodeIDList[29549] = { index = 1111, size = 15802 } -nodeIDList[29552] = { index = 1112, size = 15802 } -nodeIDList[29629] = { index = 1113, size = 15802 } -nodeIDList[29781] = { index = 1114, size = 15802 } -nodeIDList[29797] = { index = 1115, size = 15802 } -nodeIDList[29856] = { index = 1116, size = 15802 } -nodeIDList[29870] = { index = 1117, size = 15802 } -nodeIDList[29933] = { index = 1118, size = 15802 } -nodeIDList[29937] = { index = 1119, size = 15802 } -nodeIDList[30030] = { index = 1120, size = 15802 } -nodeIDList[30038] = { index = 1121, size = 15802 } -nodeIDList[30110] = { index = 1122, size = 15802 } -nodeIDList[30148] = { index = 1123, size = 15802 } -nodeIDList[30155] = { index = 1124, size = 15802 } -nodeIDList[30170] = { index = 1125, size = 15802 } -nodeIDList[30205] = { index = 1126, size = 15802 } -nodeIDList[30251] = { index = 1127, size = 15802 } -nodeIDList[30319] = { index = 1128, size = 15802 } -nodeIDList[30335] = { index = 1129, size = 15802 } -nodeIDList[30338] = { index = 1130, size = 15802 } -nodeIDList[30370] = { index = 1131, size = 15802 } -nodeIDList[30380] = { index = 1132, size = 15802 } -nodeIDList[30427] = { index = 1133, size = 15802 } -nodeIDList[30455] = { index = 1134, size = 15802 } -nodeIDList[30547] = { index = 1135, size = 15802 } -nodeIDList[30626] = { index = 1136, size = 15802 } -nodeIDList[30658] = { index = 1137, size = 15802 } -nodeIDList[30679] = { index = 1138, size = 15802 } -nodeIDList[30691] = { index = 1139, size = 15802 } -nodeIDList[30714] = { index = 1140, size = 15802 } -nodeIDList[30733] = { index = 1141, size = 15802 } -nodeIDList[30745] = { index = 1142, size = 15802 } -nodeIDList[30767] = { index = 1143, size = 15802 } -nodeIDList[30825] = { index = 1144, size = 15802 } -nodeIDList[30826] = { index = 1145, size = 15802 } -nodeIDList[30842] = { index = 1146, size = 15802 } -nodeIDList[30894] = { index = 1147, size = 15802 } -nodeIDList[30926] = { index = 1148, size = 15802 } -nodeIDList[30969] = { index = 1149, size = 15802 } -nodeIDList[31080] = { index = 1150, size = 15802 } -nodeIDList[31103] = { index = 1151, size = 15802 } -nodeIDList[31137] = { index = 1152, size = 15802 } -nodeIDList[31153] = { index = 1153, size = 15802 } -nodeIDList[31222] = { index = 1154, size = 15802 } -nodeIDList[31315] = { index = 1155, size = 15802 } -nodeIDList[31371] = { index = 1156, size = 15802 } -nodeIDList[31438] = { index = 1157, size = 15802 } -nodeIDList[31462] = { index = 1158, size = 15802 } -nodeIDList[31471] = { index = 1159, size = 15802 } -nodeIDList[31501] = { index = 1160, size = 15802 } -nodeIDList[31520] = { index = 1161, size = 15802 } -nodeIDList[31583] = { index = 1162, size = 15802 } -nodeIDList[31604] = { index = 1163, size = 15802 } -nodeIDList[31619] = { index = 1164, size = 15802 } -nodeIDList[31628] = { index = 1165, size = 15802 } -nodeIDList[31758] = { index = 1166, size = 15802 } -nodeIDList[31819] = { index = 1167, size = 15802 } -nodeIDList[31875] = { index = 1168, size = 15802 } -nodeIDList[31928] = { index = 1169, size = 15802 } -nodeIDList[31931] = { index = 1170, size = 15802 } -nodeIDList[31973] = { index = 1171, size = 15802 } -nodeIDList[32024] = { index = 1172, size = 15802 } -nodeIDList[32053] = { index = 1173, size = 15802 } -nodeIDList[32075] = { index = 1174, size = 15802 } -nodeIDList[32091] = { index = 1175, size = 15802 } -nodeIDList[32117] = { index = 1176, size = 15802 } -nodeIDList[32210] = { index = 1177, size = 15802 } -nodeIDList[32314] = { index = 1178, size = 15802 } -nodeIDList[32376] = { index = 1179, size = 15802 } -nodeIDList[32431] = { index = 1180, size = 15802 } -nodeIDList[32432] = { index = 1181, size = 15802 } -nodeIDList[32477] = { index = 1182, size = 15802 } -nodeIDList[32480] = { index = 1183, size = 15802 } -nodeIDList[32482] = { index = 1184, size = 15802 } -nodeIDList[32514] = { index = 1185, size = 15802 } -nodeIDList[32519] = { index = 1186, size = 15802 } -nodeIDList[32555] = { index = 1187, size = 15802 } -nodeIDList[32690] = { index = 1188, size = 15802 } -nodeIDList[32710] = { index = 1189, size = 15802 } -nodeIDList[32739] = { index = 1190, size = 15802 } -nodeIDList[32802] = { index = 1191, size = 15802 } -nodeIDList[32942] = { index = 1192, size = 15802 } -nodeIDList[33089] = { index = 1193, size = 15802 } -nodeIDList[33098] = { index = 1194, size = 15802 } -nodeIDList[33196] = { index = 1195, size = 15802 } -nodeIDList[33296] = { index = 1196, size = 15802 } -nodeIDList[33310] = { index = 1197, size = 15802 } -nodeIDList[33374] = { index = 1198, size = 15802 } -nodeIDList[33479] = { index = 1199, size = 15802 } -nodeIDList[33508] = { index = 1200, size = 15802 } -nodeIDList[33558] = { index = 1201, size = 15802 } -nodeIDList[33566] = { index = 1202, size = 15802 } -nodeIDList[33623] = { index = 1203, size = 15802 } -nodeIDList[33740] = { index = 1204, size = 15802 } -nodeIDList[33755] = { index = 1205, size = 15802 } -nodeIDList[33779] = { index = 1206, size = 15802 } -nodeIDList[33783] = { index = 1207, size = 15802 } -nodeIDList[33864] = { index = 1208, size = 15802 } -nodeIDList[33911] = { index = 1209, size = 15802 } -nodeIDList[33923] = { index = 1210, size = 15802 } -nodeIDList[33943] = { index = 1211, size = 15802 } -nodeIDList[33988] = { index = 1212, size = 15802 } -nodeIDList[34031] = { index = 1213, size = 15802 } -nodeIDList[34130] = { index = 1214, size = 15802 } -nodeIDList[34144] = { index = 1215, size = 15802 } -nodeIDList[34157] = { index = 1216, size = 15802 } -nodeIDList[34171] = { index = 1217, size = 15802 } -nodeIDList[34191] = { index = 1218, size = 15802 } -nodeIDList[34207] = { index = 1219, size = 15802 } -nodeIDList[34225] = { index = 1220, size = 15802 } -nodeIDList[34306] = { index = 1221, size = 15802 } -nodeIDList[34327] = { index = 1222, size = 15802 } -nodeIDList[34359] = { index = 1223, size = 15802 } -nodeIDList[34400] = { index = 1224, size = 15802 } -nodeIDList[34423] = { index = 1225, size = 15802 } -nodeIDList[34478] = { index = 1226, size = 15802 } -nodeIDList[34510] = { index = 1227, size = 15802 } -nodeIDList[34513] = { index = 1228, size = 15802 } -nodeIDList[34560] = { index = 1229, size = 15802 } -nodeIDList[34579] = { index = 1230, size = 15802 } -nodeIDList[34590] = { index = 1231, size = 15802 } -nodeIDList[34625] = { index = 1232, size = 15802 } -nodeIDList[34660] = { index = 1233, size = 15802 } -nodeIDList[34678] = { index = 1234, size = 15802 } -nodeIDList[34750] = { index = 1235, size = 15802 } -nodeIDList[34763] = { index = 1236, size = 15802 } -nodeIDList[34880] = { index = 1237, size = 15802 } -nodeIDList[34906] = { index = 1238, size = 15802 } -nodeIDList[34907] = { index = 1239, size = 15802 } -nodeIDList[34917] = { index = 1240, size = 15802 } -nodeIDList[34959] = { index = 1241, size = 15802 } -nodeIDList[35035] = { index = 1242, size = 15802 } -nodeIDList[35053] = { index = 1243, size = 15802 } -nodeIDList[35086] = { index = 1244, size = 15802 } -nodeIDList[35179] = { index = 1245, size = 15802 } -nodeIDList[35190] = { index = 1246, size = 15802 } -nodeIDList[35192] = { index = 1247, size = 15802 } -nodeIDList[35237] = { index = 1248, size = 15802 } -nodeIDList[35260] = { index = 1249, size = 15802 } -nodeIDList[35283] = { index = 1250, size = 15802 } -nodeIDList[35288] = { index = 1251, size = 15802 } -nodeIDList[35334] = { index = 1252, size = 15802 } -nodeIDList[35362] = { index = 1253, size = 15802 } -nodeIDList[35384] = { index = 1254, size = 15802 } -nodeIDList[35406] = { index = 1255, size = 15802 } -nodeIDList[35503] = { index = 1256, size = 15802 } -nodeIDList[35507] = { index = 1257, size = 15802 } -nodeIDList[35556] = { index = 1258, size = 15802 } -nodeIDList[35568] = { index = 1259, size = 15802 } -nodeIDList[35706] = { index = 1260, size = 15802 } -nodeIDList[35724] = { index = 1261, size = 15802 } -nodeIDList[35730] = { index = 1262, size = 15802 } -nodeIDList[35737] = { index = 1263, size = 15802 } -nodeIDList[35756] = { index = 1264, size = 15802 } -nodeIDList[35791] = { index = 1265, size = 15802 } -nodeIDList[35851] = { index = 1266, size = 15802 } -nodeIDList[35910] = { index = 1267, size = 15802 } -nodeIDList[35992] = { index = 1268, size = 15802 } -nodeIDList[36047] = { index = 1269, size = 15802 } -nodeIDList[36107] = { index = 1270, size = 15802 } -nodeIDList[36121] = { index = 1271, size = 15802 } -nodeIDList[36200] = { index = 1272, size = 15802 } -nodeIDList[36221] = { index = 1273, size = 15802 } -nodeIDList[36222] = { index = 1274, size = 15802 } -nodeIDList[36225] = { index = 1275, size = 15802 } -nodeIDList[36226] = { index = 1276, size = 15802 } -nodeIDList[36287] = { index = 1277, size = 15802 } -nodeIDList[36371] = { index = 1278, size = 15802 } -nodeIDList[36412] = { index = 1279, size = 15802 } -nodeIDList[36452] = { index = 1280, size = 15802 } -nodeIDList[36542] = { index = 1281, size = 15802 } -nodeIDList[36543] = { index = 1282, size = 15802 } -nodeIDList[36585] = { index = 1283, size = 15802 } -nodeIDList[36678] = { index = 1284, size = 15802 } -nodeIDList[36704] = { index = 1285, size = 15802 } -nodeIDList[36761] = { index = 1286, size = 15802 } -nodeIDList[36764] = { index = 1287, size = 15802 } -nodeIDList[36774] = { index = 1288, size = 15802 } -nodeIDList[36801] = { index = 1289, size = 15802 } -nodeIDList[36849] = { index = 1290, size = 15802 } -nodeIDList[36858] = { index = 1291, size = 15802 } -nodeIDList[36877] = { index = 1292, size = 15802 } -nodeIDList[36881] = { index = 1293, size = 15802 } -nodeIDList[36945] = { index = 1294, size = 15802 } -nodeIDList[36972] = { index = 1295, size = 15802 } -nodeIDList[37163] = { index = 1296, size = 15802 } -nodeIDList[37175] = { index = 1297, size = 15802 } -nodeIDList[37501] = { index = 1298, size = 15802 } -nodeIDList[37569] = { index = 1299, size = 15802 } -nodeIDList[37575] = { index = 1300, size = 15802 } -nodeIDList[37584] = { index = 1301, size = 15802 } -nodeIDList[37619] = { index = 1302, size = 15802 } -nodeIDList[37639] = { index = 1303, size = 15802 } -nodeIDList[37663] = { index = 1304, size = 15802 } -nodeIDList[37671] = { index = 1305, size = 15802 } -nodeIDList[37690] = { index = 1306, size = 15802 } -nodeIDList[37785] = { index = 1307, size = 15802 } -nodeIDList[37800] = { index = 1308, size = 15802 } -nodeIDList[37884] = { index = 1309, size = 15802 } -nodeIDList[37887] = { index = 1310, size = 15802 } -nodeIDList[37895] = { index = 1311, size = 15802 } -nodeIDList[37999] = { index = 1312, size = 15802 } -nodeIDList[38023] = { index = 1313, size = 15802 } -nodeIDList[38048] = { index = 1314, size = 15802 } -nodeIDList[38119] = { index = 1315, size = 15802 } -nodeIDList[38129] = { index = 1316, size = 15802 } -nodeIDList[38148] = { index = 1317, size = 15802 } -nodeIDList[38149] = { index = 1318, size = 15802 } -nodeIDList[38176] = { index = 1319, size = 15802 } -nodeIDList[38190] = { index = 1320, size = 15802 } -nodeIDList[38344] = { index = 1321, size = 15802 } -nodeIDList[38348] = { index = 1322, size = 15802 } -nodeIDList[38450] = { index = 1323, size = 15802 } -nodeIDList[38462] = { index = 1324, size = 15802 } -nodeIDList[38508] = { index = 1325, size = 15802 } -nodeIDList[38520] = { index = 1326, size = 15802 } -nodeIDList[38538] = { index = 1327, size = 15802 } -nodeIDList[38539] = { index = 1328, size = 15802 } -nodeIDList[38662] = { index = 1329, size = 15802 } -nodeIDList[38664] = { index = 1330, size = 15802 } -nodeIDList[38701] = { index = 1331, size = 15802 } -nodeIDList[38772] = { index = 1332, size = 15802 } -nodeIDList[38777] = { index = 1333, size = 15802 } -nodeIDList[38789] = { index = 1334, size = 15802 } -nodeIDList[38805] = { index = 1335, size = 15802 } -nodeIDList[38836] = { index = 1336, size = 15802 } -nodeIDList[38864] = { index = 1337, size = 15802 } -nodeIDList[38900] = { index = 1338, size = 15802 } -nodeIDList[38906] = { index = 1339, size = 15802 } -nodeIDList[38947] = { index = 1340, size = 15802 } -nodeIDList[38989] = { index = 1341, size = 15802 } -nodeIDList[38995] = { index = 1342, size = 15802 } -nodeIDList[39023] = { index = 1343, size = 15802 } -nodeIDList[39211] = { index = 1344, size = 15802 } -nodeIDList[39437] = { index = 1345, size = 15802 } -nodeIDList[39443] = { index = 1346, size = 15802 } -nodeIDList[39521] = { index = 1347, size = 15802 } -nodeIDList[39524] = { index = 1348, size = 15802 } -nodeIDList[39631] = { index = 1349, size = 15802 } -nodeIDList[39648] = { index = 1350, size = 15802 } -nodeIDList[39665] = { index = 1351, size = 15802 } -nodeIDList[39678] = { index = 1352, size = 15802 } -nodeIDList[39718] = { index = 1353, size = 15802 } -nodeIDList[39725] = { index = 1354, size = 15802 } -nodeIDList[39768] = { index = 1355, size = 15802 } -nodeIDList[39773] = { index = 1356, size = 15802 } -nodeIDList[39786] = { index = 1357, size = 15802 } -nodeIDList[39814] = { index = 1358, size = 15802 } -nodeIDList[39821] = { index = 1359, size = 15802 } -nodeIDList[39841] = { index = 1360, size = 15802 } -nodeIDList[39861] = { index = 1361, size = 15802 } -nodeIDList[39916] = { index = 1362, size = 15802 } -nodeIDList[39938] = { index = 1363, size = 15802 } -nodeIDList[40075] = { index = 1364, size = 15802 } -nodeIDList[40100] = { index = 1365, size = 15802 } -nodeIDList[40126] = { index = 1366, size = 15802 } -nodeIDList[40132] = { index = 1367, size = 15802 } -nodeIDList[40135] = { index = 1368, size = 15802 } -nodeIDList[40189] = { index = 1369, size = 15802 } -nodeIDList[40229] = { index = 1370, size = 15802 } -nodeIDList[40287] = { index = 1371, size = 15802 } -nodeIDList[40291] = { index = 1372, size = 15802 } -nodeIDList[40362] = { index = 1373, size = 15802 } -nodeIDList[40366] = { index = 1374, size = 15802 } -nodeIDList[40409] = { index = 1375, size = 15802 } -nodeIDList[40483] = { index = 1376, size = 15802 } -nodeIDList[40508] = { index = 1377, size = 15802 } -nodeIDList[40535] = { index = 1378, size = 15802 } -nodeIDList[40609] = { index = 1379, size = 15802 } -nodeIDList[40637] = { index = 1380, size = 15802 } -nodeIDList[40644] = { index = 1381, size = 15802 } -nodeIDList[40653] = { index = 1382, size = 15802 } -nodeIDList[40705] = { index = 1383, size = 15802 } -nodeIDList[40751] = { index = 1384, size = 15802 } -nodeIDList[40766] = { index = 1385, size = 15802 } -nodeIDList[40776] = { index = 1386, size = 15802 } -nodeIDList[40818] = { index = 1387, size = 15802 } -nodeIDList[40840] = { index = 1388, size = 15802 } -nodeIDList[40841] = { index = 1389, size = 15802 } -nodeIDList[40867] = { index = 1390, size = 15802 } -nodeIDList[40927] = { index = 1391, size = 15802 } -nodeIDList[41026] = { index = 1392, size = 15802 } -nodeIDList[41047] = { index = 1393, size = 15802 } -nodeIDList[41068] = { index = 1394, size = 15802 } -nodeIDList[41190] = { index = 1395, size = 15802 } -nodeIDList[41250] = { index = 1396, size = 15802 } -nodeIDList[41251] = { index = 1397, size = 15802 } -nodeIDList[41380] = { index = 1398, size = 15802 } -nodeIDList[41536] = { index = 1399, size = 15802 } -nodeIDList[41599] = { index = 1400, size = 15802 } -nodeIDList[41635] = { index = 1401, size = 15802 } -nodeIDList[41689] = { index = 1402, size = 15802 } -nodeIDList[41819] = { index = 1403, size = 15802 } -nodeIDList[41866] = { index = 1404, size = 15802 } -nodeIDList[41967] = { index = 1405, size = 15802 } -nodeIDList[42006] = { index = 1406, size = 15802 } -nodeIDList[42086] = { index = 1407, size = 15802 } -nodeIDList[42104] = { index = 1408, size = 15802 } -nodeIDList[42106] = { index = 1409, size = 15802 } -nodeIDList[42133] = { index = 1410, size = 15802 } -nodeIDList[42161] = { index = 1411, size = 15802 } -nodeIDList[42485] = { index = 1412, size = 15802 } -nodeIDList[42495] = { index = 1413, size = 15802 } -nodeIDList[42623] = { index = 1414, size = 15802 } -nodeIDList[42632] = { index = 1415, size = 15802 } -nodeIDList[42637] = { index = 1416, size = 15802 } -nodeIDList[42668] = { index = 1417, size = 15802 } -nodeIDList[42731] = { index = 1418, size = 15802 } -nodeIDList[42744] = { index = 1419, size = 15802 } -nodeIDList[42760] = { index = 1420, size = 15802 } -nodeIDList[42800] = { index = 1421, size = 15802 } -nodeIDList[42837] = { index = 1422, size = 15802 } -nodeIDList[42907] = { index = 1423, size = 15802 } -nodeIDList[42911] = { index = 1424, size = 15802 } -nodeIDList[42964] = { index = 1425, size = 15802 } -nodeIDList[42981] = { index = 1426, size = 15802 } -nodeIDList[43000] = { index = 1427, size = 15802 } -nodeIDList[43010] = { index = 1428, size = 15802 } -nodeIDList[43057] = { index = 1429, size = 15802 } -nodeIDList[43061] = { index = 1430, size = 15802 } -nodeIDList[43133] = { index = 1431, size = 15802 } -nodeIDList[43162] = { index = 1432, size = 15802 } -nodeIDList[43303] = { index = 1433, size = 15802 } -nodeIDList[43316] = { index = 1434, size = 15802 } -nodeIDList[43328] = { index = 1435, size = 15802 } -nodeIDList[43374] = { index = 1436, size = 15802 } -nodeIDList[43412] = { index = 1437, size = 15802 } -nodeIDList[43413] = { index = 1438, size = 15802 } -nodeIDList[43457] = { index = 1439, size = 15802 } -nodeIDList[43491] = { index = 1440, size = 15802 } -nodeIDList[43514] = { index = 1441, size = 15802 } -nodeIDList[43608] = { index = 1442, size = 15802 } -nodeIDList[43684] = { index = 1443, size = 15802 } -nodeIDList[43716] = { index = 1444, size = 15802 } -nodeIDList[43787] = { index = 1445, size = 15802 } -nodeIDList[43822] = { index = 1446, size = 15802 } -nodeIDList[43833] = { index = 1447, size = 15802 } -nodeIDList[44134] = { index = 1448, size = 15802 } -nodeIDList[44183] = { index = 1449, size = 15802 } -nodeIDList[44184] = { index = 1450, size = 15802 } -nodeIDList[44202] = { index = 1451, size = 15802 } -nodeIDList[44268] = { index = 1452, size = 15802 } -nodeIDList[44306] = { index = 1453, size = 15802 } -nodeIDList[44339] = { index = 1454, size = 15802 } -nodeIDList[44360] = { index = 1455, size = 15802 } -nodeIDList[44362] = { index = 1456, size = 15802 } -nodeIDList[44429] = { index = 1457, size = 15802 } -nodeIDList[44465] = { index = 1458, size = 15802 } -nodeIDList[44529] = { index = 1459, size = 15802 } -nodeIDList[44606] = { index = 1460, size = 15802 } -nodeIDList[44624] = { index = 1461, size = 15802 } -nodeIDList[44683] = { index = 1462, size = 15802 } -nodeIDList[44723] = { index = 1463, size = 15802 } -nodeIDList[44799] = { index = 1464, size = 15802 } -nodeIDList[44908] = { index = 1465, size = 15802 } -nodeIDList[44916] = { index = 1466, size = 15802 } -nodeIDList[44922] = { index = 1467, size = 15802 } -nodeIDList[44924] = { index = 1468, size = 15802 } -nodeIDList[44967] = { index = 1469, size = 15802 } -nodeIDList[44983] = { index = 1470, size = 15802 } -nodeIDList[45033] = { index = 1471, size = 15802 } -nodeIDList[45035] = { index = 1472, size = 15802 } -nodeIDList[45163] = { index = 1473, size = 15802 } -nodeIDList[45202] = { index = 1474, size = 15802 } -nodeIDList[45227] = { index = 1475, size = 15802 } -nodeIDList[45246] = { index = 1476, size = 15802 } -nodeIDList[45272] = { index = 1477, size = 15802 } -nodeIDList[45341] = { index = 1478, size = 15802 } -nodeIDList[45360] = { index = 1479, size = 15802 } -nodeIDList[45366] = { index = 1480, size = 15802 } -nodeIDList[45436] = { index = 1481, size = 15802 } -nodeIDList[45456] = { index = 1482, size = 15802 } -nodeIDList[45486] = { index = 1483, size = 15802 } -nodeIDList[45491] = { index = 1484, size = 15802 } -nodeIDList[45503] = { index = 1485, size = 15802 } -nodeIDList[45565] = { index = 1486, size = 15802 } -nodeIDList[45593] = { index = 1487, size = 15802 } -nodeIDList[45646] = { index = 1488, size = 15802 } -nodeIDList[45680] = { index = 1489, size = 15802 } -nodeIDList[45788] = { index = 1490, size = 15802 } -nodeIDList[45810] = { index = 1491, size = 15802 } -nodeIDList[45827] = { index = 1492, size = 15802 } -nodeIDList[45838] = { index = 1493, size = 15802 } -nodeIDList[45887] = { index = 1494, size = 15802 } -nodeIDList[46092] = { index = 1495, size = 15802 } -nodeIDList[46106] = { index = 1496, size = 15802 } -nodeIDList[46111] = { index = 1497, size = 15802 } -nodeIDList[46127] = { index = 1498, size = 15802 } -nodeIDList[46136] = { index = 1499, size = 15802 } -nodeIDList[46277] = { index = 1500, size = 15802 } -nodeIDList[46289] = { index = 1501, size = 15802 } -nodeIDList[46291] = { index = 1502, size = 15802 } -nodeIDList[46340] = { index = 1503, size = 15802 } -nodeIDList[46344] = { index = 1504, size = 15802 } -nodeIDList[46469] = { index = 1505, size = 15802 } -nodeIDList[46578] = { index = 1506, size = 15802 } -nodeIDList[46585] = { index = 1507, size = 15802 } -nodeIDList[46636] = { index = 1508, size = 15802 } -nodeIDList[46672] = { index = 1509, size = 15802 } -nodeIDList[46694] = { index = 1510, size = 15802 } -nodeIDList[46726] = { index = 1511, size = 15802 } -nodeIDList[46730] = { index = 1512, size = 15802 } -nodeIDList[46756] = { index = 1513, size = 15802 } -nodeIDList[46896] = { index = 1514, size = 15802 } -nodeIDList[46897] = { index = 1515, size = 15802 } -nodeIDList[46910] = { index = 1516, size = 15802 } -nodeIDList[47030] = { index = 1517, size = 15802 } -nodeIDList[47062] = { index = 1518, size = 15802 } -nodeIDList[47085] = { index = 1519, size = 15802 } -nodeIDList[47175] = { index = 1520, size = 15802 } -nodeIDList[47251] = { index = 1521, size = 15802 } -nodeIDList[47312] = { index = 1522, size = 15802 } -nodeIDList[47321] = { index = 1523, size = 15802 } -nodeIDList[47362] = { index = 1524, size = 15802 } -nodeIDList[47389] = { index = 1525, size = 15802 } -nodeIDList[47421] = { index = 1526, size = 15802 } -nodeIDList[47422] = { index = 1527, size = 15802 } -nodeIDList[47426] = { index = 1528, size = 15802 } -nodeIDList[47427] = { index = 1529, size = 15802 } -nodeIDList[47507] = { index = 1530, size = 15802 } -nodeIDList[47785] = { index = 1531, size = 15802 } -nodeIDList[47854] = { index = 1532, size = 15802 } -nodeIDList[47902] = { index = 1533, size = 15802 } -nodeIDList[47949] = { index = 1534, size = 15802 } -nodeIDList[48093] = { index = 1535, size = 15802 } -nodeIDList[48099] = { index = 1536, size = 15802 } -nodeIDList[48109] = { index = 1537, size = 15802 } -nodeIDList[48118] = { index = 1538, size = 15802 } -nodeIDList[48199] = { index = 1539, size = 15802 } -nodeIDList[48275] = { index = 1540, size = 15802 } -nodeIDList[48282] = { index = 1541, size = 15802 } -nodeIDList[48284] = { index = 1542, size = 15802 } -nodeIDList[48287] = { index = 1543, size = 15802 } -nodeIDList[48362] = { index = 1544, size = 15802 } -nodeIDList[48423] = { index = 1545, size = 15802 } -nodeIDList[48477] = { index = 1546, size = 15802 } -nodeIDList[48513] = { index = 1547, size = 15802 } -nodeIDList[48514] = { index = 1548, size = 15802 } -nodeIDList[48713] = { index = 1549, size = 15802 } -nodeIDList[48778] = { index = 1550, size = 15802 } -nodeIDList[48813] = { index = 1551, size = 15802 } -nodeIDList[48822] = { index = 1552, size = 15802 } -nodeIDList[48828] = { index = 1553, size = 15802 } -nodeIDList[48878] = { index = 1554, size = 15802 } -nodeIDList[48929] = { index = 1555, size = 15802 } -nodeIDList[48971] = { index = 1556, size = 15802 } -nodeIDList[49047] = { index = 1557, size = 15802 } -nodeIDList[49109] = { index = 1558, size = 15802 } -nodeIDList[49147] = { index = 1559, size = 15802 } -nodeIDList[49167] = { index = 1560, size = 15802 } -nodeIDList[49178] = { index = 1561, size = 15802 } -nodeIDList[49308] = { index = 1562, size = 15802 } -nodeIDList[49343] = { index = 1563, size = 15802 } -nodeIDList[49407] = { index = 1564, size = 15802 } -nodeIDList[49408] = { index = 1565, size = 15802 } -nodeIDList[49412] = { index = 1566, size = 15802 } -nodeIDList[49415] = { index = 1567, size = 15802 } -nodeIDList[49481] = { index = 1568, size = 15802 } -nodeIDList[49515] = { index = 1569, size = 15802 } -nodeIDList[49534] = { index = 1570, size = 15802 } -nodeIDList[49547] = { index = 1571, size = 15802 } -nodeIDList[49568] = { index = 1572, size = 15802 } -nodeIDList[49571] = { index = 1573, size = 15802 } -nodeIDList[49588] = { index = 1574, size = 15802 } -nodeIDList[49605] = { index = 1575, size = 15802 } -nodeIDList[49635] = { index = 1576, size = 15802 } -nodeIDList[49651] = { index = 1577, size = 15802 } -nodeIDList[49652] = { index = 1578, size = 15802 } -nodeIDList[49698] = { index = 1579, size = 15802 } -nodeIDList[49779] = { index = 1580, size = 15802 } -nodeIDList[49806] = { index = 1581, size = 15802 } -nodeIDList[49807] = { index = 1582, size = 15802 } -nodeIDList[49900] = { index = 1583, size = 15802 } -nodeIDList[49929] = { index = 1584, size = 15802 } -nodeIDList[49971] = { index = 1585, size = 15802 } -nodeIDList[49978] = { index = 1586, size = 15802 } -nodeIDList[50038] = { index = 1587, size = 15802 } -nodeIDList[50041] = { index = 1588, size = 15802 } -nodeIDList[50082] = { index = 1589, size = 15802 } -nodeIDList[50150] = { index = 1590, size = 15802 } -nodeIDList[50225] = { index = 1591, size = 15802 } -nodeIDList[50264] = { index = 1592, size = 15802 } -nodeIDList[50306] = { index = 1593, size = 15802 } -nodeIDList[50340] = { index = 1594, size = 15802 } -nodeIDList[50360] = { index = 1595, size = 15802 } -nodeIDList[50382] = { index = 1596, size = 15802 } -nodeIDList[50422] = { index = 1597, size = 15802 } -nodeIDList[50459] = { index = 1598, size = 15802 } -nodeIDList[50472] = { index = 1599, size = 15802 } -nodeIDList[50515] = { index = 1600, size = 15802 } -nodeIDList[50562] = { index = 1601, size = 15802 } -nodeIDList[50570] = { index = 1602, size = 15802 } -nodeIDList[50734] = { index = 1603, size = 15802 } -nodeIDList[50826] = { index = 1604, size = 15802 } -nodeIDList[50862] = { index = 1605, size = 15802 } -nodeIDList[50904] = { index = 1606, size = 15802 } -nodeIDList[50969] = { index = 1607, size = 15802 } -nodeIDList[50986] = { index = 1608, size = 15802 } -nodeIDList[51146] = { index = 1609, size = 15802 } -nodeIDList[51191] = { index = 1610, size = 15802 } -nodeIDList[51213] = { index = 1611, size = 15802 } -nodeIDList[51219] = { index = 1612, size = 15802 } -nodeIDList[51220] = { index = 1613, size = 15802 } -nodeIDList[51235] = { index = 1614, size = 15802 } -nodeIDList[51291] = { index = 1615, size = 15802 } -nodeIDList[51382] = { index = 1616, size = 15802 } -nodeIDList[51404] = { index = 1617, size = 15802 } -nodeIDList[51420] = { index = 1618, size = 15802 } -nodeIDList[51517] = { index = 1619, size = 15802 } -nodeIDList[51524] = { index = 1620, size = 15802 } -nodeIDList[51786] = { index = 1621, size = 15802 } -nodeIDList[51801] = { index = 1622, size = 15802 } -nodeIDList[51804] = { index = 1623, size = 15802 } -nodeIDList[51856] = { index = 1624, size = 15802 } -nodeIDList[51923] = { index = 1625, size = 15802 } -nodeIDList[51953] = { index = 1626, size = 15802 } -nodeIDList[51954] = { index = 1627, size = 15802 } -nodeIDList[51976] = { index = 1628, size = 15802 } -nodeIDList[52095] = { index = 1629, size = 15802 } -nodeIDList[52099] = { index = 1630, size = 15802 } -nodeIDList[52213] = { index = 1631, size = 15802 } -nodeIDList[52288] = { index = 1632, size = 15802 } -nodeIDList[52407] = { index = 1633, size = 15802 } -nodeIDList[52412] = { index = 1634, size = 15802 } -nodeIDList[52423] = { index = 1635, size = 15802 } -nodeIDList[52502] = { index = 1636, size = 15802 } -nodeIDList[52522] = { index = 1637, size = 15802 } -nodeIDList[52632] = { index = 1638, size = 15802 } -nodeIDList[52655] = { index = 1639, size = 15802 } -nodeIDList[52848] = { index = 1640, size = 15802 } -nodeIDList[52904] = { index = 1641, size = 15802 } -nodeIDList[53002] = { index = 1642, size = 15802 } -nodeIDList[53005] = { index = 1643, size = 15802 } -nodeIDList[53018] = { index = 1644, size = 15802 } -nodeIDList[53072] = { index = 1645, size = 15802 } -nodeIDList[53213] = { index = 1646, size = 15802 } -nodeIDList[53279] = { index = 1647, size = 15802 } -nodeIDList[53290] = { index = 1648, size = 15802 } -nodeIDList[53292] = { index = 1649, size = 15802 } -nodeIDList[53324] = { index = 1650, size = 15802 } -nodeIDList[53332] = { index = 1651, size = 15802 } -nodeIDList[53456] = { index = 1652, size = 15802 } -nodeIDList[53558] = { index = 1653, size = 15802 } -nodeIDList[53574] = { index = 1654, size = 15802 } -nodeIDList[53630] = { index = 1655, size = 15802 } -nodeIDList[53667] = { index = 1656, size = 15802 } -nodeIDList[53677] = { index = 1657, size = 15802 } -nodeIDList[53732] = { index = 1658, size = 15802 } -nodeIDList[53793] = { index = 1659, size = 15802 } -nodeIDList[53809] = { index = 1660, size = 15802 } -nodeIDList[53882] = { index = 1661, size = 15802 } -nodeIDList[53945] = { index = 1662, size = 15802 } -nodeIDList[53957] = { index = 1663, size = 15802 } -nodeIDList[53987] = { index = 1664, size = 15802 } -nodeIDList[54043] = { index = 1665, size = 15802 } -nodeIDList[54144] = { index = 1666, size = 15802 } -nodeIDList[54267] = { index = 1667, size = 15802 } -nodeIDList[54338] = { index = 1668, size = 15802 } -nodeIDList[54354] = { index = 1669, size = 15802 } -nodeIDList[54396] = { index = 1670, size = 15802 } -nodeIDList[54447] = { index = 1671, size = 15802 } -nodeIDList[54452] = { index = 1672, size = 15802 } -nodeIDList[54574] = { index = 1673, size = 15802 } -nodeIDList[54645] = { index = 1674, size = 15802 } -nodeIDList[54657] = { index = 1675, size = 15802 } -nodeIDList[54667] = { index = 1676, size = 15802 } -nodeIDList[54862] = { index = 1677, size = 15802 } -nodeIDList[54868] = { index = 1678, size = 15802 } -nodeIDList[54872] = { index = 1679, size = 15802 } -nodeIDList[54880] = { index = 1680, size = 15802 } -nodeIDList[54954] = { index = 1681, size = 15802 } -nodeIDList[54974] = { index = 1682, size = 15802 } -nodeIDList[55021] = { index = 1683, size = 15802 } -nodeIDList[55085] = { index = 1684, size = 15802 } -nodeIDList[55166] = { index = 1685, size = 15802 } -nodeIDList[55247] = { index = 1686, size = 15802 } -nodeIDList[55307] = { index = 1687, size = 15802 } -nodeIDList[55332] = { index = 1688, size = 15802 } -nodeIDList[55373] = { index = 1689, size = 15802 } -nodeIDList[55392] = { index = 1690, size = 15802 } -nodeIDList[55414] = { index = 1691, size = 15802 } -nodeIDList[55420] = { index = 1692, size = 15802 } -nodeIDList[55558] = { index = 1693, size = 15802 } -nodeIDList[55563] = { index = 1694, size = 15802 } -nodeIDList[55571] = { index = 1695, size = 15802 } -nodeIDList[55643] = { index = 1696, size = 15802 } -nodeIDList[55647] = { index = 1697, size = 15802 } -nodeIDList[55648] = { index = 1698, size = 15802 } -nodeIDList[55649] = { index = 1699, size = 15802 } -nodeIDList[55676] = { index = 1700, size = 15802 } -nodeIDList[55743] = { index = 1701, size = 15802 } -nodeIDList[55750] = { index = 1702, size = 15802 } -nodeIDList[55804] = { index = 1703, size = 15802 } -nodeIDList[55854] = { index = 1704, size = 15802 } -nodeIDList[55866] = { index = 1705, size = 15802 } -nodeIDList[55880] = { index = 1706, size = 15802 } -nodeIDList[55906] = { index = 1707, size = 15802 } -nodeIDList[55913] = { index = 1708, size = 15802 } -nodeIDList[55926] = { index = 1709, size = 15802 } -nodeIDList[55993] = { index = 1710, size = 15802 } -nodeIDList[56001] = { index = 1711, size = 15802 } -nodeIDList[56066] = { index = 1712, size = 15802 } -nodeIDList[56090] = { index = 1713, size = 15802 } -nodeIDList[56149] = { index = 1714, size = 15802 } -nodeIDList[56153] = { index = 1715, size = 15802 } -nodeIDList[56158] = { index = 1716, size = 15802 } -nodeIDList[56174] = { index = 1717, size = 15802 } -nodeIDList[56186] = { index = 1718, size = 15802 } -nodeIDList[56231] = { index = 1719, size = 15802 } -nodeIDList[56295] = { index = 1720, size = 15802 } -nodeIDList[56355] = { index = 1721, size = 15802 } -nodeIDList[56370] = { index = 1722, size = 15802 } -nodeIDList[56381] = { index = 1723, size = 15802 } -nodeIDList[56460] = { index = 1724, size = 15802 } -nodeIDList[56509] = { index = 1725, size = 15802 } -nodeIDList[56589] = { index = 1726, size = 15802 } -nodeIDList[56646] = { index = 1727, size = 15802 } -nodeIDList[56659] = { index = 1728, size = 15802 } -nodeIDList[56671] = { index = 1729, size = 15802 } -nodeIDList[56803] = { index = 1730, size = 15802 } -nodeIDList[56807] = { index = 1731, size = 15802 } -nodeIDList[56814] = { index = 1732, size = 15802 } -nodeIDList[56855] = { index = 1733, size = 15802 } -nodeIDList[56920] = { index = 1734, size = 15802 } -nodeIDList[56982] = { index = 1735, size = 15802 } -nodeIDList[57011] = { index = 1736, size = 15802 } -nodeIDList[57030] = { index = 1737, size = 15802 } -nodeIDList[57044] = { index = 1738, size = 15802 } -nodeIDList[57061] = { index = 1739, size = 15802 } -nodeIDList[57080] = { index = 1740, size = 15802 } -nodeIDList[57167] = { index = 1741, size = 15802 } -nodeIDList[57226] = { index = 1742, size = 15802 } -nodeIDList[57240] = { index = 1743, size = 15802 } -nodeIDList[57248] = { index = 1744, size = 15802 } -nodeIDList[57259] = { index = 1745, size = 15802 } -nodeIDList[57264] = { index = 1746, size = 15802 } -nodeIDList[57266] = { index = 1747, size = 15802 } -nodeIDList[57283] = { index = 1748, size = 15802 } -nodeIDList[57362] = { index = 1749, size = 15802 } -nodeIDList[57404] = { index = 1750, size = 15802 } -nodeIDList[57449] = { index = 1751, size = 15802 } -nodeIDList[57457] = { index = 1752, size = 15802 } -nodeIDList[57565] = { index = 1753, size = 15802 } -nodeIDList[57615] = { index = 1754, size = 15802 } -nodeIDList[57651] = { index = 1755, size = 15802 } -nodeIDList[57736] = { index = 1756, size = 15802 } -nodeIDList[57746] = { index = 1757, size = 15802 } -nodeIDList[57819] = { index = 1758, size = 15802 } -nodeIDList[57923] = { index = 1759, size = 15802 } -nodeIDList[57953] = { index = 1760, size = 15802 } -nodeIDList[57992] = { index = 1761, size = 15802 } -nodeIDList[58069] = { index = 1762, size = 15802 } -nodeIDList[58210] = { index = 1763, size = 15802 } -nodeIDList[58214] = { index = 1764, size = 15802 } -nodeIDList[58244] = { index = 1765, size = 15802 } -nodeIDList[58271] = { index = 1766, size = 15802 } -nodeIDList[58288] = { index = 1767, size = 15802 } -nodeIDList[58336] = { index = 1768, size = 15802 } -nodeIDList[58402] = { index = 1769, size = 15802 } -nodeIDList[58453] = { index = 1770, size = 15802 } -nodeIDList[58474] = { index = 1771, size = 15802 } -nodeIDList[58541] = { index = 1772, size = 15802 } -nodeIDList[58545] = { index = 1773, size = 15802 } -nodeIDList[58603] = { index = 1774, size = 15802 } -nodeIDList[58604] = { index = 1775, size = 15802 } -nodeIDList[58649] = { index = 1776, size = 15802 } -nodeIDList[58763] = { index = 1777, size = 15802 } -nodeIDList[58803] = { index = 1778, size = 15802 } -nodeIDList[58833] = { index = 1779, size = 15802 } -nodeIDList[58854] = { index = 1780, size = 15802 } -nodeIDList[58869] = { index = 1781, size = 15802 } -nodeIDList[58968] = { index = 1782, size = 15802 } -nodeIDList[59005] = { index = 1783, size = 15802 } -nodeIDList[59009] = { index = 1784, size = 15802 } -nodeIDList[59016] = { index = 1785, size = 15802 } -nodeIDList[59070] = { index = 1786, size = 15802 } -nodeIDList[59220] = { index = 1787, size = 15802 } -nodeIDList[59252] = { index = 1788, size = 15802 } -nodeIDList[59306] = { index = 1789, size = 15802 } -nodeIDList[59370] = { index = 1790, size = 15802 } -nodeIDList[59482] = { index = 1791, size = 15802 } -nodeIDList[59494] = { index = 1792, size = 15802 } -nodeIDList[59606] = { index = 1793, size = 15802 } -nodeIDList[59650] = { index = 1794, size = 15802 } -nodeIDList[59699] = { index = 1795, size = 15802 } -nodeIDList[59718] = { index = 1796, size = 15802 } -nodeIDList[59728] = { index = 1797, size = 15802 } -nodeIDList[59833] = { index = 1798, size = 15802 } -nodeIDList[59861] = { index = 1799, size = 15802 } -nodeIDList[59928] = { index = 1800, size = 15802 } -nodeIDList[60090] = { index = 1801, size = 15802 } -nodeIDList[60145] = { index = 1802, size = 15802 } -nodeIDList[60153] = { index = 1803, size = 15802 } -nodeIDList[60169] = { index = 1804, size = 15802 } -nodeIDList[60204] = { index = 1805, size = 15802 } -nodeIDList[60259] = { index = 1806, size = 15802 } -nodeIDList[60388] = { index = 1807, size = 15802 } -nodeIDList[60398] = { index = 1808, size = 15802 } -nodeIDList[60405] = { index = 1809, size = 15802 } -nodeIDList[60440] = { index = 1810, size = 15802 } -nodeIDList[60472] = { index = 1811, size = 15802 } -nodeIDList[60529] = { index = 1812, size = 15802 } -nodeIDList[60532] = { index = 1813, size = 15802 } -nodeIDList[60554] = { index = 1814, size = 15802 } -nodeIDList[60592] = { index = 1815, size = 15802 } -nodeIDList[60648] = { index = 1816, size = 15802 } -nodeIDList[60740] = { index = 1817, size = 15802 } -nodeIDList[60803] = { index = 1818, size = 15802 } -nodeIDList[60887] = { index = 1819, size = 15802 } -nodeIDList[60942] = { index = 1820, size = 15802 } -nodeIDList[60949] = { index = 1821, size = 15802 } -nodeIDList[60963] = { index = 1822, size = 15802 } -nodeIDList[60989] = { index = 1823, size = 15802 } -nodeIDList[61007] = { index = 1824, size = 15802 } -nodeIDList[61050] = { index = 1825, size = 15802 } -nodeIDList[61217] = { index = 1826, size = 15802 } -nodeIDList[61262] = { index = 1827, size = 15802 } -nodeIDList[61264] = { index = 1828, size = 15802 } -nodeIDList[61283] = { index = 1829, size = 15802 } -nodeIDList[61306] = { index = 1830, size = 15802 } -nodeIDList[61320] = { index = 1831, size = 15802 } -nodeIDList[61327] = { index = 1832, size = 15802 } -nodeIDList[61351] = { index = 1833, size = 15802 } -nodeIDList[61388] = { index = 1834, size = 15802 } -nodeIDList[61471] = { index = 1835, size = 15802 } -nodeIDList[61525] = { index = 1836, size = 15802 } -nodeIDList[61573] = { index = 1837, size = 15802 } -nodeIDList[61602] = { index = 1838, size = 15802 } -nodeIDList[61636] = { index = 1839, size = 15802 } -nodeIDList[61653] = { index = 1840, size = 15802 } -nodeIDList[61804] = { index = 1841, size = 15802 } -nodeIDList[61868] = { index = 1842, size = 15802 } -nodeIDList[61875] = { index = 1843, size = 15802 } -nodeIDList[61950] = { index = 1844, size = 15802 } -nodeIDList[62017] = { index = 1845, size = 15802 } -nodeIDList[62021] = { index = 1846, size = 15802 } -nodeIDList[62042] = { index = 1847, size = 15802 } -nodeIDList[62069] = { index = 1848, size = 15802 } -nodeIDList[62103] = { index = 1849, size = 15802 } -nodeIDList[62108] = { index = 1850, size = 15802 } -nodeIDList[62109] = { index = 1851, size = 15802 } -nodeIDList[62214] = { index = 1852, size = 15802 } -nodeIDList[62217] = { index = 1853, size = 15802 } -nodeIDList[62303] = { index = 1854, size = 15802 } -nodeIDList[62319] = { index = 1855, size = 15802 } -nodeIDList[62363] = { index = 1856, size = 15802 } -nodeIDList[62429] = { index = 1857, size = 15802 } -nodeIDList[62480] = { index = 1858, size = 15802 } -nodeIDList[62490] = { index = 1859, size = 15802 } -nodeIDList[62530] = { index = 1860, size = 15802 } -nodeIDList[62662] = { index = 1861, size = 15802 } -nodeIDList[62694] = { index = 1862, size = 15802 } -nodeIDList[62697] = { index = 1863, size = 15802 } -nodeIDList[62712] = { index = 1864, size = 15802 } -nodeIDList[62721] = { index = 1865, size = 15802 } -nodeIDList[62744] = { index = 1866, size = 15802 } -nodeIDList[62767] = { index = 1867, size = 15802 } -nodeIDList[62795] = { index = 1868, size = 15802 } -nodeIDList[62831] = { index = 1869, size = 15802 } -nodeIDList[62879] = { index = 1870, size = 15802 } -nodeIDList[62970] = { index = 1871, size = 15802 } -nodeIDList[63027] = { index = 1872, size = 15802 } -nodeIDList[63039] = { index = 1873, size = 15802 } -nodeIDList[63048] = { index = 1874, size = 15802 } -nodeIDList[63067] = { index = 1875, size = 15802 } -nodeIDList[63138] = { index = 1876, size = 15802 } -nodeIDList[63139] = { index = 1877, size = 15802 } -nodeIDList[63194] = { index = 1878, size = 15802 } -nodeIDList[63228] = { index = 1879, size = 15802 } -nodeIDList[63282] = { index = 1880, size = 15802 } -nodeIDList[63306] = { index = 1881, size = 15802 } -nodeIDList[63398] = { index = 1882, size = 15802 } -nodeIDList[63413] = { index = 1883, size = 15802 } -nodeIDList[63439] = { index = 1884, size = 15802 } -nodeIDList[63447] = { index = 1885, size = 15802 } -nodeIDList[63558] = { index = 1886, size = 15802 } -nodeIDList[63618] = { index = 1887, size = 15802 } -nodeIDList[63639] = { index = 1888, size = 15802 } -nodeIDList[63649] = { index = 1889, size = 15802 } -nodeIDList[63723] = { index = 1890, size = 15802 } -nodeIDList[63795] = { index = 1891, size = 15802 } -nodeIDList[63799] = { index = 1892, size = 15802 } -nodeIDList[63843] = { index = 1893, size = 15802 } -nodeIDList[63845] = { index = 1894, size = 15802 } -nodeIDList[63963] = { index = 1895, size = 15802 } -nodeIDList[63965] = { index = 1896, size = 15802 } -nodeIDList[64024] = { index = 1897, size = 15802 } -nodeIDList[64181] = { index = 1898, size = 15802 } -nodeIDList[64210] = { index = 1899, size = 15802 } -nodeIDList[64221] = { index = 1900, size = 15802 } -nodeIDList[64235] = { index = 1901, size = 15802 } -nodeIDList[64238] = { index = 1902, size = 15802 } -nodeIDList[64239] = { index = 1903, size = 15802 } -nodeIDList[64241] = { index = 1904, size = 15802 } -nodeIDList[64257] = { index = 1905, size = 15802 } -nodeIDList[64265] = { index = 1906, size = 15802 } -nodeIDList[64284] = { index = 1907, size = 15802 } -nodeIDList[64401] = { index = 1908, size = 15802 } -nodeIDList[64426] = { index = 1909, size = 15802 } -nodeIDList[64501] = { index = 1910, size = 15802 } -nodeIDList[64509] = { index = 1911, size = 15802 } -nodeIDList[64587] = { index = 1912, size = 15802 } -nodeIDList[64612] = { index = 1913, size = 15802 } -nodeIDList[64695] = { index = 1914, size = 15802 } -nodeIDList[64709] = { index = 1915, size = 15802 } -nodeIDList[64769] = { index = 1916, size = 15802 } -nodeIDList[64816] = { index = 1917, size = 15802 } -nodeIDList[64878] = { index = 1918, size = 15802 } -nodeIDList[64888] = { index = 1919, size = 15802 } -nodeIDList[65033] = { index = 1920, size = 15802 } -nodeIDList[65034] = { index = 1921, size = 15802 } -nodeIDList[65112] = { index = 1922, size = 15802 } -nodeIDList[65125] = { index = 1923, size = 15802 } -nodeIDList[65159] = { index = 1924, size = 15802 } -nodeIDList[65167] = { index = 1925, size = 15802 } -nodeIDList[65203] = { index = 1926, size = 15802 } -nodeIDList[65400] = { index = 1927, size = 15802 } -nodeIDList[65427] = { index = 1928, size = 15802 } -nodeIDList[65456] = { index = 1929, size = 15802 } -nodeIDList[65485] = { index = 1930, size = 15802 } +nodeIDList[20261] = { index = 120, size = 28193 } +nodeIDList[20528] = { index = 121, size = 28411 } +nodeIDList[20832] = { index = 122, size = 28723 } +nodeIDList[20835] = { index = 123, size = 28587 } +nodeIDList[21228] = { index = 124, size = 28260 } +nodeIDList[21297] = { index = 125, size = 28468 } +nodeIDList[21330] = { index = 126, size = 28337 } +nodeIDList[21389] = { index = 127, size = 28620 } +nodeIDList[21413] = { index = 128, size = 28285 } +nodeIDList[21435] = { index = 129, size = 28514 } +nodeIDList[21460] = { index = 130, size = 28462 } +nodeIDList[21602] = { index = 131, size = 28468 } +nodeIDList[21634] = { index = 132, size = 28304 } +nodeIDList[21958] = { index = 133, size = 28569 } +nodeIDList[21973] = { index = 134, size = 28677 } +nodeIDList[22133] = { index = 135, size = 28426 } +nodeIDList[22356] = { index = 136, size = 28600 } +nodeIDList[22535] = { index = 137, size = 28347 } +nodeIDList[22702] = { index = 138, size = 28154 } +nodeIDList[22706] = { index = 139, size = 28426 } +nodeIDList[22972] = { index = 140, size = 28395 } +nodeIDList[23038] = { index = 141, size = 28579 } +nodeIDList[23066] = { index = 142, size = 28337 } +nodeIDList[23690] = { index = 143, size = 28290 } +nodeIDList[24050] = { index = 144, size = 28621 } +nodeIDList[24067] = { index = 145, size = 28588 } +nodeIDList[24133] = { index = 146, size = 28437 } +nodeIDList[24256] = { index = 147, size = 28415 } +nodeIDList[24324] = { index = 148, size = 28256 } +nodeIDList[24362] = { index = 149, size = 28473 } +nodeIDList[24383] = { index = 150, size = 28258 } +nodeIDList[24716] = { index = 151, size = 28554 } +nodeIDList[24721] = { index = 152, size = 28356 } +nodeIDList[24858] = { index = 153, size = 28573 } +nodeIDList[25058] = { index = 154, size = 28165 } +nodeIDList[25178] = { index = 155, size = 28116 } +nodeIDList[25367] = { index = 156, size = 28424 } +nodeIDList[25409] = { index = 157, size = 28463 } +nodeIDList[25411] = { index = 158, size = 28690 } +nodeIDList[25439] = { index = 159, size = 28480 } +nodeIDList[25456] = { index = 160, size = 28293 } +nodeIDList[25738] = { index = 161, size = 28625 } +nodeIDList[25970] = { index = 162, size = 28299 } +nodeIDList[25989] = { index = 163, size = 28659 } +nodeIDList[26023] = { index = 164, size = 28592 } +nodeIDList[26096] = { index = 165, size = 28475 } +nodeIDList[26294] = { index = 166, size = 28487 } +nodeIDList[26557] = { index = 167, size = 28551 } +nodeIDList[26564] = { index = 168, size = 28512 } +nodeIDList[26620] = { index = 169, size = 28631 } +nodeIDList[26763] = { index = 170, size = 28181 } +nodeIDList[26866] = { index = 171, size = 28387 } +nodeIDList[26960] = { index = 172, size = 28554 } +nodeIDList[27119] = { index = 173, size = 28544 } +nodeIDList[27137] = { index = 174, size = 28776 } +nodeIDList[27163] = { index = 175, size = 28141 } +nodeIDList[27190] = { index = 176, size = 28034 } +nodeIDList[27203] = { index = 177, size = 28265 } +nodeIDList[27301] = { index = 178, size = 28584 } +nodeIDList[27308] = { index = 179, size = 28407 } +nodeIDList[27422] = { index = 180, size = 28578 } +nodeIDList[27611] = { index = 181, size = 28534 } +nodeIDList[27623] = { index = 182, size = 28720 } +nodeIDList[27788] = { index = 183, size = 28687 } +nodeIDList[27806] = { index = 184, size = 28431 } +nodeIDList[27929] = { index = 185, size = 28429 } +nodeIDList[28034] = { index = 186, size = 28443 } +nodeIDList[28449] = { index = 187, size = 28340 } +nodeIDList[28503] = { index = 188, size = 28474 } +nodeIDList[28754] = { index = 189, size = 28560 } +nodeIDList[28878] = { index = 190, size = 28565 } +nodeIDList[29049] = { index = 191, size = 28462 } +nodeIDList[29381] = { index = 192, size = 28483 } +nodeIDList[29522] = { index = 193, size = 28360 } +nodeIDList[29861] = { index = 194, size = 28514 } +nodeIDList[30160] = { index = 195, size = 28564 } +nodeIDList[30225] = { index = 196, size = 28329 } +nodeIDList[30302] = { index = 197, size = 28619 } +nodeIDList[30439] = { index = 198, size = 28411 } +nodeIDList[30471] = { index = 199, size = 28342 } +nodeIDList[30693] = { index = 200, size = 28461 } +nodeIDList[30974] = { index = 201, size = 28317 } +nodeIDList[31033] = { index = 202, size = 28313 } +nodeIDList[31257] = { index = 203, size = 28373 } +nodeIDList[31359] = { index = 204, size = 28427 } +nodeIDList[31473] = { index = 205, size = 28381 } +nodeIDList[31508] = { index = 206, size = 28410 } +nodeIDList[31513] = { index = 207, size = 28467 } +nodeIDList[31585] = { index = 208, size = 28548 } +nodeIDList[32059] = { index = 209, size = 28256 } +nodeIDList[32176] = { index = 210, size = 28308 } +nodeIDList[32227] = { index = 211, size = 28391 } +nodeIDList[32245] = { index = 212, size = 28355 } +nodeIDList[32345] = { index = 213, size = 28364 } +nodeIDList[32455] = { index = 214, size = 28188 } +nodeIDList[32681] = { index = 215, size = 28250 } +nodeIDList[32738] = { index = 216, size = 28484 } +nodeIDList[32932] = { index = 217, size = 28750 } +nodeIDList[33082] = { index = 218, size = 28295 } +nodeIDList[33287] = { index = 219, size = 28329 } +nodeIDList[33435] = { index = 220, size = 28442 } +nodeIDList[33545] = { index = 221, size = 28278 } +nodeIDList[33582] = { index = 222, size = 28422 } +nodeIDList[33718] = { index = 223, size = 28330 } +nodeIDList[33725] = { index = 224, size = 28437 } +nodeIDList[33777] = { index = 225, size = 28616 } +nodeIDList[33903] = { index = 226, size = 28462 } +nodeIDList[34009] = { index = 227, size = 28221 } +nodeIDList[34173] = { index = 228, size = 28465 } +nodeIDList[34284] = { index = 229, size = 28428 } +nodeIDList[34506] = { index = 230, size = 28370 } +nodeIDList[34591] = { index = 231, size = 28531 } +nodeIDList[34601] = { index = 232, size = 28502 } +nodeIDList[34661] = { index = 233, size = 28323 } +nodeIDList[34666] = { index = 234, size = 28351 } +nodeIDList[34973] = { index = 235, size = 28344 } +nodeIDList[34978] = { index = 236, size = 28388 } +nodeIDList[35233] = { index = 237, size = 28383 } +nodeIDList[35436] = { index = 238, size = 28481 } +nodeIDList[35663] = { index = 239, size = 28509 } +nodeIDList[35685] = { index = 240, size = 28357 } +nodeIDList[35894] = { index = 241, size = 28241 } +nodeIDList[35958] = { index = 242, size = 28311 } +nodeIDList[36281] = { index = 243, size = 28184 } +nodeIDList[36490] = { index = 244, size = 28556 } +nodeIDList[36687] = { index = 245, size = 28381 } +nodeIDList[36736] = { index = 246, size = 28478 } +nodeIDList[36859] = { index = 247, size = 28364 } +nodeIDList[36874] = { index = 248, size = 28204 } +nodeIDList[36915] = { index = 249, size = 28501 } +nodeIDList[36949] = { index = 250, size = 28308 } +nodeIDList[37078] = { index = 251, size = 28443 } +nodeIDList[37326] = { index = 252, size = 28348 } +nodeIDList[37403] = { index = 253, size = 28317 } +nodeIDList[37425] = { index = 254, size = 28494 } +nodeIDList[37504] = { index = 255, size = 28396 } +nodeIDList[37647] = { index = 256, size = 28246 } +nodeIDList[38246] = { index = 257, size = 28279 } +nodeIDList[38516] = { index = 258, size = 28612 } +nodeIDList[38849] = { index = 259, size = 28308 } +nodeIDList[38922] = { index = 260, size = 28317 } +nodeIDList[39530] = { index = 261, size = 28556 } +nodeIDList[39657] = { index = 262, size = 28455 } +nodeIDList[39743] = { index = 263, size = 28442 } +nodeIDList[39761] = { index = 264, size = 28343 } +nodeIDList[39904] = { index = 265, size = 28650 } +nodeIDList[39986] = { index = 266, size = 28586 } +nodeIDList[40619] = { index = 267, size = 28516 } +nodeIDList[40645] = { index = 268, size = 28454 } +nodeIDList[40743] = { index = 269, size = 28202 } +nodeIDList[41119] = { index = 270, size = 28370 } +nodeIDList[41137] = { index = 271, size = 28477 } +nodeIDList[41305] = { index = 272, size = 28609 } +nodeIDList[41420] = { index = 273, size = 28258 } +nodeIDList[41472] = { index = 274, size = 28573 } +nodeIDList[41476] = { index = 275, size = 28288 } +nodeIDList[41595] = { index = 276, size = 28500 } +nodeIDList[41870] = { index = 277, size = 28141 } +nodeIDList[41989] = { index = 278, size = 28442 } +nodeIDList[42009] = { index = 279, size = 28471 } +nodeIDList[42041] = { index = 280, size = 28568 } +nodeIDList[42443] = { index = 281, size = 28529 } +nodeIDList[42649] = { index = 282, size = 28376 } +nodeIDList[42686] = { index = 283, size = 28631 } +nodeIDList[42720] = { index = 284, size = 28637 } +nodeIDList[42795] = { index = 285, size = 28597 } +nodeIDList[42804] = { index = 286, size = 28421 } +nodeIDList[42917] = { index = 287, size = 28486 } +nodeIDList[43385] = { index = 288, size = 28568 } +nodeIDList[43689] = { index = 289, size = 28581 } +nodeIDList[44102] = { index = 290, size = 28577 } +nodeIDList[44103] = { index = 291, size = 28409 } +nodeIDList[44191] = { index = 292, size = 28216 } +nodeIDList[44207] = { index = 293, size = 28513 } +nodeIDList[44347] = { index = 294, size = 28494 } +nodeIDList[44562] = { index = 295, size = 28365 } +nodeIDList[44788] = { index = 296, size = 28310 } +nodeIDList[44824] = { index = 297, size = 28640 } +nodeIDList[44955] = { index = 298, size = 28516 } +nodeIDList[44988] = { index = 299, size = 28510 } +nodeIDList[45067] = { index = 300, size = 28489 } +nodeIDList[45283] = { index = 301, size = 28516 } +nodeIDList[45317] = { index = 302, size = 28270 } +nodeIDList[45329] = { index = 303, size = 28698 } +nodeIDList[45350] = { index = 304, size = 28353 } +nodeIDList[45608] = { index = 305, size = 28255 } +nodeIDList[45657] = { index = 306, size = 28376 } +nodeIDList[45803] = { index = 307, size = 28496 } +nodeIDList[45945] = { index = 308, size = 28455 } +nodeIDList[46408] = { index = 309, size = 28597 } +nodeIDList[46471] = { index = 310, size = 28432 } +nodeIDList[46842] = { index = 311, size = 28497 } +nodeIDList[46904] = { index = 312, size = 28361 } +nodeIDList[46965] = { index = 313, size = 28470 } +nodeIDList[47065] = { index = 314, size = 28259 } +nodeIDList[47306] = { index = 315, size = 28438 } +nodeIDList[47471] = { index = 316, size = 28573 } +nodeIDList[47484] = { index = 317, size = 28602 } +nodeIDList[47743] = { index = 318, size = 28550 } +nodeIDList[48298] = { index = 319, size = 28432 } +nodeIDList[48438] = { index = 320, size = 28729 } +nodeIDList[48556] = { index = 321, size = 28592 } +nodeIDList[48614] = { index = 322, size = 28629 } +nodeIDList[48698] = { index = 323, size = 28377 } +nodeIDList[48807] = { index = 324, size = 28302 } +nodeIDList[48823] = { index = 325, size = 28124 } +nodeIDList[49254] = { index = 326, size = 28453 } +nodeIDList[49318] = { index = 327, size = 28457 } +nodeIDList[49379] = { index = 328, size = 28405 } +nodeIDList[49416] = { index = 329, size = 28544 } +nodeIDList[49445] = { index = 330, size = 28313 } +nodeIDList[49459] = { index = 331, size = 28430 } +nodeIDList[49538] = { index = 332, size = 28542 } +nodeIDList[49621] = { index = 333, size = 28422 } +nodeIDList[49645] = { index = 334, size = 28518 } +nodeIDList[49772] = { index = 335, size = 28444 } +nodeIDList[49969] = { index = 336, size = 28580 } +nodeIDList[50029] = { index = 337, size = 28188 } +nodeIDList[50197] = { index = 338, size = 28441 } +nodeIDList[50338] = { index = 339, size = 28623 } +nodeIDList[50690] = { index = 340, size = 28479 } +nodeIDList[50842] = { index = 341, size = 28632 } +nodeIDList[50858] = { index = 342, size = 28572 } +nodeIDList[51108] = { index = 343, size = 28633 } +nodeIDList[51212] = { index = 344, size = 28748 } +nodeIDList[51440] = { index = 345, size = 28535 } +nodeIDList[51559] = { index = 346, size = 28732 } +nodeIDList[51748] = { index = 347, size = 28392 } +nodeIDList[51881] = { index = 348, size = 28431 } +nodeIDList[52030] = { index = 349, size = 28391 } +nodeIDList[52031] = { index = 350, size = 28472 } +nodeIDList[52090] = { index = 351, size = 28294 } +nodeIDList[52157] = { index = 352, size = 28503 } +nodeIDList[52230] = { index = 353, size = 28406 } +nodeIDList[52714] = { index = 354, size = 28290 } +nodeIDList[52742] = { index = 355, size = 28535 } +nodeIDList[52789] = { index = 356, size = 28202 } +nodeIDList[53013] = { index = 357, size = 28342 } +nodeIDList[53042] = { index = 358, size = 28407 } +nodeIDList[53114] = { index = 359, size = 28483 } +nodeIDList[53118] = { index = 360, size = 28318 } +nodeIDList[53493] = { index = 361, size = 28522 } +nodeIDList[53573] = { index = 362, size = 28598 } +nodeIDList[53652] = { index = 363, size = 28145 } +nodeIDList[53757] = { index = 364, size = 28396 } +nodeIDList[53802] = { index = 365, size = 28606 } +nodeIDList[53840] = { index = 366, size = 28592 } +nodeIDList[54142] = { index = 367, size = 28387 } +nodeIDList[54268] = { index = 368, size = 28588 } +nodeIDList[54629] = { index = 369, size = 28323 } +nodeIDList[54694] = { index = 370, size = 28308 } +nodeIDList[54713] = { index = 371, size = 28602 } +nodeIDList[54776] = { index = 372, size = 28709 } +nodeIDList[54791] = { index = 373, size = 28340 } +nodeIDList[55002] = { index = 374, size = 28403 } +nodeIDList[55027] = { index = 375, size = 28592 } +nodeIDList[55114] = { index = 376, size = 28595 } +nodeIDList[55194] = { index = 377, size = 28499 } +nodeIDList[55380] = { index = 378, size = 28395 } +nodeIDList[55381] = { index = 379, size = 28648 } +nodeIDList[55485] = { index = 380, size = 28639 } +nodeIDList[55772] = { index = 381, size = 28523 } +nodeIDList[56029] = { index = 382, size = 28534 } +nodeIDList[56094] = { index = 383, size = 28396 } +nodeIDList[56276] = { index = 384, size = 28311 } +nodeIDList[56330] = { index = 385, size = 28339 } +nodeIDList[56359] = { index = 386, size = 28704 } +nodeIDList[56648] = { index = 387, size = 28552 } +nodeIDList[56716] = { index = 388, size = 28339 } +nodeIDList[57199] = { index = 389, size = 28557 } +nodeIDList[57839] = { index = 390, size = 28306 } +nodeIDList[57900] = { index = 391, size = 28617 } +nodeIDList[58032] = { index = 392, size = 28571 } +nodeIDList[58168] = { index = 393, size = 28334 } +nodeIDList[58198] = { index = 394, size = 28400 } +nodeIDList[58218] = { index = 395, size = 28436 } +nodeIDList[58382] = { index = 396, size = 28417 } +nodeIDList[58449] = { index = 397, size = 28277 } +nodeIDList[58831] = { index = 398, size = 28463 } +nodeIDList[58851] = { index = 399, size = 28411 } +nodeIDList[58921] = { index = 400, size = 28491 } +nodeIDList[59151] = { index = 401, size = 28397 } +nodeIDList[59423] = { index = 402, size = 28483 } +nodeIDList[59556] = { index = 403, size = 28548 } +nodeIDList[59605] = { index = 404, size = 28582 } +nodeIDList[59766] = { index = 405, size = 28502 } +nodeIDList[59866] = { index = 406, size = 28369 } +nodeIDList[59976] = { index = 407, size = 28500 } +nodeIDList[60002] = { index = 408, size = 28345 } +nodeIDList[60031] = { index = 409, size = 28384 } +nodeIDList[60085] = { index = 410, size = 28299 } +nodeIDList[60180] = { index = 411, size = 28612 } +nodeIDList[60501] = { index = 412, size = 28380 } +nodeIDList[60619] = { index = 413, size = 28512 } +nodeIDList[60737] = { index = 414, size = 28294 } +nodeIDList[60781] = { index = 415, size = 28653 } +nodeIDList[61039] = { index = 416, size = 28224 } +nodeIDList[61190] = { index = 417, size = 28424 } +nodeIDList[61198] = { index = 418, size = 28491 } +nodeIDList[61308] = { index = 419, size = 28578 } +nodeIDList[61689] = { index = 420, size = 28367 } +nodeIDList[61981] = { index = 421, size = 28230 } +nodeIDList[61982] = { index = 422, size = 28444 } +nodeIDList[62094] = { index = 423, size = 28537 } +nodeIDList[62577] = { index = 424, size = 28571 } +nodeIDList[62802] = { index = 425, size = 28144 } +nodeIDList[62849] = { index = 426, size = 28388 } +nodeIDList[63033] = { index = 427, size = 28303 } +nodeIDList[63150] = { index = 428, size = 28270 } +nodeIDList[63207] = { index = 429, size = 28424 } +nodeIDList[63251] = { index = 430, size = 28447 } +nodeIDList[63422] = { index = 431, size = 28230 } +nodeIDList[63453] = { index = 432, size = 28612 } +nodeIDList[63635] = { index = 433, size = 28448 } +nodeIDList[63727] = { index = 434, size = 28438 } +nodeIDList[63921] = { index = 435, size = 28320 } +nodeIDList[63933] = { index = 436, size = 28477 } +nodeIDList[63944] = { index = 437, size = 28581 } +nodeIDList[63976] = { index = 438, size = 28364 } +nodeIDList[64077] = { index = 439, size = 28388 } +nodeIDList[64226] = { index = 440, size = 28261 } +nodeIDList[64355] = { index = 441, size = 28451 } +nodeIDList[64395] = { index = 442, size = 28568 } +nodeIDList[64882] = { index = 443, size = 28274 } +nodeIDList[65053] = { index = 444, size = 28616 } +nodeIDList[65093] = { index = 445, size = 28468 } +nodeIDList[65097] = { index = 446, size = 28466 } +nodeIDList[65107] = { index = 447, size = 28307 } +nodeIDList[65108] = { index = 448, size = 28583 } +nodeIDList[65210] = { index = 449, size = 28388 } +nodeIDList[65224] = { index = 450, size = 28304 } +nodeIDList[65273] = { index = 451, size = 28781 } +nodeIDList[65308] = { index = 452, size = 28397 } +nodeIDList[65502] = { index = 453, size = 28225 } +nodeIDList[94] = { index = 454, size = 15802 } +nodeIDList[127] = { index = 455, size = 15802 } +nodeIDList[223] = { index = 456, size = 15802 } +nodeIDList[224] = { index = 457, size = 15802 } +nodeIDList[238] = { index = 458, size = 15802 } +nodeIDList[265] = { index = 459, size = 15802 } +nodeIDList[367] = { index = 460, size = 15802 } +nodeIDList[420] = { index = 461, size = 15802 } +nodeIDList[444] = { index = 462, size = 15802 } +nodeIDList[465] = { index = 463, size = 15802 } +nodeIDList[476] = { index = 464, size = 15802 } +nodeIDList[487] = { index = 465, size = 15802 } +nodeIDList[494] = { index = 466, size = 15802 } +nodeIDList[651] = { index = 467, size = 15802 } +nodeIDList[655] = { index = 468, size = 15802 } +nodeIDList[720] = { index = 469, size = 15802 } +nodeIDList[739] = { index = 470, size = 15802 } +nodeIDList[864] = { index = 471, size = 15802 } +nodeIDList[885] = { index = 472, size = 15802 } +nodeIDList[903] = { index = 473, size = 15802 } +nodeIDList[918] = { index = 474, size = 15802 } +nodeIDList[930] = { index = 475, size = 15802 } +nodeIDList[1031] = { index = 476, size = 15802 } +nodeIDList[1159] = { index = 477, size = 15802 } +nodeIDList[1201] = { index = 478, size = 15802 } +nodeIDList[1203] = { index = 479, size = 15802 } +nodeIDList[1252] = { index = 480, size = 15802 } +nodeIDList[1346] = { index = 481, size = 15802 } +nodeIDList[1354] = { index = 482, size = 15802 } +nodeIDList[1427] = { index = 483, size = 15802 } +nodeIDList[1461] = { index = 484, size = 15802 } +nodeIDList[1550] = { index = 485, size = 15802 } +nodeIDList[1572] = { index = 486, size = 15802 } +nodeIDList[1593] = { index = 487, size = 15802 } +nodeIDList[1600] = { index = 488, size = 15802 } +nodeIDList[1609] = { index = 489, size = 15802 } +nodeIDList[1648] = { index = 490, size = 15802 } +nodeIDList[1652] = { index = 491, size = 15802 } +nodeIDList[1655] = { index = 492, size = 15802 } +nodeIDList[1696] = { index = 493, size = 15802 } +nodeIDList[1698] = { index = 494, size = 15802 } +nodeIDList[1722] = { index = 495, size = 15802 } +nodeIDList[1761] = { index = 496, size = 15802 } +nodeIDList[1767] = { index = 497, size = 15802 } +nodeIDList[1822] = { index = 498, size = 15802 } +nodeIDList[1891] = { index = 499, size = 15802 } +nodeIDList[1909] = { index = 500, size = 15802 } +nodeIDList[1957] = { index = 501, size = 15802 } +nodeIDList[2081] = { index = 502, size = 15802 } +nodeIDList[2092] = { index = 503, size = 15802 } +nodeIDList[2094] = { index = 504, size = 15802 } +nodeIDList[2121] = { index = 505, size = 15802 } +nodeIDList[2151] = { index = 506, size = 15802 } +nodeIDList[2185] = { index = 507, size = 15802 } +nodeIDList[2219] = { index = 508, size = 15802 } +nodeIDList[2260] = { index = 509, size = 15802 } +nodeIDList[2292] = { index = 510, size = 15802 } +nodeIDList[2348] = { index = 511, size = 15802 } +nodeIDList[2355] = { index = 512, size = 15802 } +nodeIDList[2392] = { index = 513, size = 15802 } +nodeIDList[2411] = { index = 514, size = 15802 } +nodeIDList[2413] = { index = 515, size = 15802 } +nodeIDList[2454] = { index = 516, size = 15802 } +nodeIDList[2474] = { index = 517, size = 15802 } +nodeIDList[2785] = { index = 518, size = 15802 } +nodeIDList[2913] = { index = 519, size = 15802 } +nodeIDList[3009] = { index = 520, size = 15802 } +nodeIDList[3089] = { index = 521, size = 15802 } +nodeIDList[3167] = { index = 522, size = 15802 } +nodeIDList[3187] = { index = 523, size = 15802 } +nodeIDList[3314] = { index = 524, size = 15802 } +nodeIDList[3319] = { index = 525, size = 15802 } +nodeIDList[3359] = { index = 526, size = 15802 } +nodeIDList[3362] = { index = 527, size = 15802 } +nodeIDList[3398] = { index = 528, size = 15802 } +nodeIDList[3424] = { index = 529, size = 15802 } +nodeIDList[3469] = { index = 530, size = 15802 } +nodeIDList[3533] = { index = 531, size = 15802 } +nodeIDList[3537] = { index = 532, size = 15802 } +nodeIDList[3634] = { index = 533, size = 15802 } +nodeIDList[3644] = { index = 534, size = 15802 } +nodeIDList[3656] = { index = 535, size = 15802 } +nodeIDList[3676] = { index = 536, size = 15802 } +nodeIDList[3863] = { index = 537, size = 15802 } +nodeIDList[3992] = { index = 538, size = 15802 } +nodeIDList[4011] = { index = 539, size = 15802 } +nodeIDList[4036] = { index = 540, size = 15802 } +nodeIDList[4105] = { index = 541, size = 15802 } +nodeIDList[4184] = { index = 542, size = 15802 } +nodeIDList[4219] = { index = 543, size = 15802 } +nodeIDList[4247] = { index = 544, size = 15802 } +nodeIDList[4269] = { index = 545, size = 15802 } +nodeIDList[4270] = { index = 546, size = 15802 } +nodeIDList[4300] = { index = 547, size = 15802 } +nodeIDList[4336] = { index = 548, size = 15802 } +nodeIDList[4367] = { index = 549, size = 15802 } +nodeIDList[4378] = { index = 550, size = 15802 } +nodeIDList[4397] = { index = 551, size = 15802 } +nodeIDList[4432] = { index = 552, size = 15802 } +nodeIDList[4502] = { index = 553, size = 15802 } +nodeIDList[4546] = { index = 554, size = 15802 } +nodeIDList[4565] = { index = 555, size = 15802 } +nodeIDList[4568] = { index = 556, size = 15802 } +nodeIDList[4573] = { index = 557, size = 15802 } +nodeIDList[4656] = { index = 558, size = 15802 } +nodeIDList[4713] = { index = 559, size = 15802 } +nodeIDList[4750] = { index = 560, size = 15802 } +nodeIDList[4944] = { index = 561, size = 15802 } +nodeIDList[4973] = { index = 562, size = 15802 } +nodeIDList[4977] = { index = 563, size = 15802 } +nodeIDList[5018] = { index = 564, size = 15802 } +nodeIDList[5022] = { index = 565, size = 15802 } +nodeIDList[5065] = { index = 566, size = 15802 } +nodeIDList[5068] = { index = 567, size = 15802 } +nodeIDList[5103] = { index = 568, size = 15802 } +nodeIDList[5129] = { index = 569, size = 15802 } +nodeIDList[5152] = { index = 570, size = 15802 } +nodeIDList[5197] = { index = 571, size = 15802 } +nodeIDList[5203] = { index = 572, size = 15802 } +nodeIDList[5233] = { index = 573, size = 15802 } +nodeIDList[5237] = { index = 574, size = 15802 } +nodeIDList[5296] = { index = 575, size = 15802 } +nodeIDList[5408] = { index = 576, size = 15802 } +nodeIDList[5462] = { index = 577, size = 15802 } +nodeIDList[5560] = { index = 578, size = 15802 } +nodeIDList[5591] = { index = 579, size = 15802 } +nodeIDList[5612] = { index = 580, size = 15802 } +nodeIDList[5613] = { index = 581, size = 15802 } +nodeIDList[5616] = { index = 582, size = 15802 } +nodeIDList[5622] = { index = 583, size = 15802 } +nodeIDList[5629] = { index = 584, size = 15802 } +nodeIDList[5632] = { index = 585, size = 15802 } +nodeIDList[5743] = { index = 586, size = 15802 } +nodeIDList[5802] = { index = 587, size = 15802 } +nodeIDList[5875] = { index = 588, size = 15802 } +nodeIDList[5916] = { index = 589, size = 15802 } +nodeIDList[5935] = { index = 590, size = 15802 } +nodeIDList[5972] = { index = 591, size = 15802 } +nodeIDList[6042] = { index = 592, size = 15802 } +nodeIDList[6043] = { index = 593, size = 15802 } +nodeIDList[6108] = { index = 594, size = 15802 } +nodeIDList[6109] = { index = 595, size = 15802 } +nodeIDList[6113] = { index = 596, size = 15802 } +nodeIDList[6139] = { index = 597, size = 15802 } +nodeIDList[6204] = { index = 598, size = 15802 } +nodeIDList[6245] = { index = 599, size = 15802 } +nodeIDList[6250] = { index = 600, size = 15802 } +nodeIDList[6264] = { index = 601, size = 15802 } +nodeIDList[6359] = { index = 602, size = 15802 } +nodeIDList[6363] = { index = 603, size = 15802 } +nodeIDList[6383] = { index = 604, size = 15802 } +nodeIDList[6446] = { index = 605, size = 15802 } +nodeIDList[6534] = { index = 606, size = 15802 } +nodeIDList[6538] = { index = 607, size = 15802 } +nodeIDList[6542] = { index = 608, size = 15802 } +nodeIDList[6580] = { index = 609, size = 15802 } +nodeIDList[6616] = { index = 610, size = 15802 } +nodeIDList[6633] = { index = 611, size = 15802 } +nodeIDList[6654] = { index = 612, size = 15802 } +nodeIDList[6685] = { index = 613, size = 15802 } +nodeIDList[6712] = { index = 614, size = 15802 } +nodeIDList[6718] = { index = 615, size = 15802 } +nodeIDList[6741] = { index = 616, size = 15802 } +nodeIDList[6764] = { index = 617, size = 15802 } +nodeIDList[6785] = { index = 618, size = 15802 } +nodeIDList[6797] = { index = 619, size = 15802 } +nodeIDList[6884] = { index = 620, size = 15802 } +nodeIDList[6913] = { index = 621, size = 15802 } +nodeIDList[6949] = { index = 622, size = 15802 } +nodeIDList[6981] = { index = 623, size = 15802 } +nodeIDList[7082] = { index = 624, size = 15802 } +nodeIDList[7092] = { index = 625, size = 15802 } +nodeIDList[7112] = { index = 626, size = 15802 } +nodeIDList[7153] = { index = 627, size = 15802 } +nodeIDList[7162] = { index = 628, size = 15802 } +nodeIDList[7187] = { index = 629, size = 15802 } +nodeIDList[7285] = { index = 630, size = 15802 } +nodeIDList[7335] = { index = 631, size = 15802 } +nodeIDList[7347] = { index = 632, size = 15802 } +nodeIDList[7364] = { index = 633, size = 15802 } +nodeIDList[7374] = { index = 634, size = 15802 } +nodeIDList[7388] = { index = 635, size = 15802 } +nodeIDList[7399] = { index = 636, size = 15802 } +nodeIDList[7444] = { index = 637, size = 15802 } +nodeIDList[7503] = { index = 638, size = 15802 } +nodeIDList[7594] = { index = 639, size = 15802 } +nodeIDList[7609] = { index = 640, size = 15802 } +nodeIDList[7614] = { index = 641, size = 15802 } +nodeIDList[7641] = { index = 642, size = 15802 } +nodeIDList[7659] = { index = 643, size = 15802 } +nodeIDList[7728] = { index = 644, size = 15802 } +nodeIDList[7786] = { index = 645, size = 15802 } +nodeIDList[7828] = { index = 646, size = 15802 } +nodeIDList[7898] = { index = 647, size = 15802 } +nodeIDList[7903] = { index = 648, size = 15802 } +nodeIDList[7920] = { index = 649, size = 15802 } +nodeIDList[7938] = { index = 650, size = 15802 } +nodeIDList[8012] = { index = 651, size = 15802 } +nodeIDList[8027] = { index = 652, size = 15802 } +nodeIDList[8139] = { index = 653, size = 15802 } +nodeIDList[8198] = { index = 654, size = 15802 } +nodeIDList[8302] = { index = 655, size = 15802 } +nodeIDList[8348] = { index = 656, size = 15802 } +nodeIDList[8410] = { index = 657, size = 15802 } +nodeIDList[8426] = { index = 658, size = 15802 } +nodeIDList[8500] = { index = 659, size = 15802 } +nodeIDList[8533] = { index = 660, size = 15802 } +nodeIDList[8544] = { index = 661, size = 15802 } +nodeIDList[8566] = { index = 662, size = 15802 } +nodeIDList[8620] = { index = 663, size = 15802 } +nodeIDList[8624] = { index = 664, size = 15802 } +nodeIDList[8640] = { index = 665, size = 15802 } +nodeIDList[8643] = { index = 666, size = 15802 } +nodeIDList[8879] = { index = 667, size = 15802 } +nodeIDList[8904] = { index = 668, size = 15802 } +nodeIDList[8930] = { index = 669, size = 15802 } +nodeIDList[8938] = { index = 670, size = 15802 } +nodeIDList[8948] = { index = 671, size = 15802 } +nodeIDList[9009] = { index = 672, size = 15802 } +nodeIDList[9052] = { index = 673, size = 15802 } +nodeIDList[9149] = { index = 674, size = 15802 } +nodeIDList[9171] = { index = 675, size = 15802 } +nodeIDList[9206] = { index = 676, size = 15802 } +nodeIDList[9262] = { index = 677, size = 15802 } +nodeIDList[9294] = { index = 678, size = 15802 } +nodeIDList[9355] = { index = 679, size = 15802 } +nodeIDList[9361] = { index = 680, size = 15802 } +nodeIDList[9370] = { index = 681, size = 15802 } +nodeIDList[9373] = { index = 682, size = 15802 } +nodeIDList[9386] = { index = 683, size = 15802 } +nodeIDList[9392] = { index = 684, size = 15802 } +nodeIDList[9402] = { index = 685, size = 15802 } +nodeIDList[9469] = { index = 686, size = 15802 } +nodeIDList[9505] = { index = 687, size = 15802 } +nodeIDList[9511] = { index = 688, size = 15802 } +nodeIDList[9650] = { index = 689, size = 15802 } +nodeIDList[9695] = { index = 690, size = 15802 } +nodeIDList[9769] = { index = 691, size = 15802 } +nodeIDList[9786] = { index = 692, size = 15802 } +nodeIDList[9877] = { index = 693, size = 15802 } +nodeIDList[9933] = { index = 694, size = 15802 } +nodeIDList[9976] = { index = 695, size = 15802 } +nodeIDList[9995] = { index = 696, size = 15802 } +nodeIDList[10017] = { index = 697, size = 15802 } +nodeIDList[10031] = { index = 698, size = 15802 } +nodeIDList[10073] = { index = 699, size = 15802 } +nodeIDList[10221] = { index = 700, size = 15802 } +nodeIDList[10282] = { index = 701, size = 15802 } +nodeIDList[10311] = { index = 702, size = 15802 } +nodeIDList[10490] = { index = 703, size = 15802 } +nodeIDList[10555] = { index = 704, size = 15802 } +nodeIDList[10575] = { index = 705, size = 15802 } +nodeIDList[10594] = { index = 706, size = 15802 } +nodeIDList[10763] = { index = 707, size = 15802 } +nodeIDList[10829] = { index = 708, size = 15802 } +nodeIDList[10840] = { index = 709, size = 15802 } +nodeIDList[10843] = { index = 710, size = 15802 } +nodeIDList[10851] = { index = 711, size = 15802 } +nodeIDList[10893] = { index = 712, size = 15802 } +nodeIDList[10904] = { index = 713, size = 15802 } +nodeIDList[10989] = { index = 714, size = 15802 } +nodeIDList[10992] = { index = 715, size = 15802 } +nodeIDList[11016] = { index = 716, size = 15802 } +nodeIDList[11018] = { index = 717, size = 15802 } +nodeIDList[11088] = { index = 718, size = 15802 } +nodeIDList[11128] = { index = 719, size = 15802 } +nodeIDList[11162] = { index = 720, size = 15802 } +nodeIDList[11190] = { index = 721, size = 15802 } +nodeIDList[11200] = { index = 722, size = 15802 } +nodeIDList[11334] = { index = 723, size = 15802 } +nodeIDList[11364] = { index = 724, size = 15802 } +nodeIDList[11431] = { index = 725, size = 15802 } +nodeIDList[11456] = { index = 726, size = 15802 } +nodeIDList[11489] = { index = 727, size = 15802 } +nodeIDList[11497] = { index = 728, size = 15802 } +nodeIDList[11515] = { index = 729, size = 15802 } +nodeIDList[11551] = { index = 730, size = 15802 } +nodeIDList[11568] = { index = 731, size = 15802 } +nodeIDList[11651] = { index = 732, size = 15802 } +nodeIDList[11659] = { index = 733, size = 15802 } +nodeIDList[11678] = { index = 734, size = 15802 } +nodeIDList[11688] = { index = 735, size = 15802 } +nodeIDList[11689] = { index = 736, size = 15802 } +nodeIDList[11700] = { index = 737, size = 15802 } +nodeIDList[11716] = { index = 738, size = 15802 } +nodeIDList[11792] = { index = 739, size = 15802 } +nodeIDList[11800] = { index = 740, size = 15802 } +nodeIDList[11811] = { index = 741, size = 15802 } +nodeIDList[11850] = { index = 742, size = 15802 } +nodeIDList[11859] = { index = 743, size = 15802 } +nodeIDList[11984] = { index = 744, size = 15802 } +nodeIDList[12032] = { index = 745, size = 15802 } +nodeIDList[12068] = { index = 746, size = 15802 } +nodeIDList[12095] = { index = 747, size = 15802 } +nodeIDList[12189] = { index = 748, size = 15802 } +nodeIDList[12215] = { index = 749, size = 15802 } +nodeIDList[12236] = { index = 750, size = 15802 } +nodeIDList[12246] = { index = 751, size = 15802 } +nodeIDList[12247] = { index = 752, size = 15802 } +nodeIDList[12250] = { index = 753, size = 15802 } +nodeIDList[12379] = { index = 754, size = 15802 } +nodeIDList[12407] = { index = 755, size = 15802 } +nodeIDList[12412] = { index = 756, size = 15802 } +nodeIDList[12415] = { index = 757, size = 15802 } +nodeIDList[12439] = { index = 758, size = 15802 } +nodeIDList[12536] = { index = 759, size = 15802 } +nodeIDList[12664] = { index = 760, size = 15802 } +nodeIDList[12720] = { index = 761, size = 15802 } +nodeIDList[12783] = { index = 762, size = 15802 } +nodeIDList[12794] = { index = 763, size = 15802 } +nodeIDList[12801] = { index = 764, size = 15802 } +nodeIDList[12824] = { index = 765, size = 15802 } +nodeIDList[12831] = { index = 766, size = 15802 } +nodeIDList[12852] = { index = 767, size = 15802 } +nodeIDList[12888] = { index = 768, size = 15802 } +nodeIDList[12913] = { index = 769, size = 15802 } +nodeIDList[12948] = { index = 770, size = 15802 } +nodeIDList[13009] = { index = 771, size = 15802 } +nodeIDList[13168] = { index = 772, size = 15802 } +nodeIDList[13191] = { index = 773, size = 15802 } +nodeIDList[13202] = { index = 774, size = 15802 } +nodeIDList[13231] = { index = 775, size = 15802 } +nodeIDList[13232] = { index = 776, size = 15802 } +nodeIDList[13273] = { index = 777, size = 15802 } +nodeIDList[13322] = { index = 778, size = 15802 } +nodeIDList[13498] = { index = 779, size = 15802 } +nodeIDList[13559] = { index = 780, size = 15802 } +nodeIDList[13573] = { index = 781, size = 15802 } +nodeIDList[13714] = { index = 782, size = 15802 } +nodeIDList[13753] = { index = 783, size = 15802 } +nodeIDList[13782] = { index = 784, size = 15802 } +nodeIDList[13807] = { index = 785, size = 15802 } +nodeIDList[13885] = { index = 786, size = 15802 } +nodeIDList[13961] = { index = 787, size = 15802 } +nodeIDList[13965] = { index = 788, size = 15802 } +nodeIDList[14021] = { index = 789, size = 15802 } +nodeIDList[14040] = { index = 790, size = 15802 } +nodeIDList[14056] = { index = 791, size = 15802 } +nodeIDList[14057] = { index = 792, size = 15802 } +nodeIDList[14090] = { index = 793, size = 15802 } +nodeIDList[14151] = { index = 794, size = 15802 } +nodeIDList[14157] = { index = 795, size = 15802 } +nodeIDList[14182] = { index = 796, size = 15802 } +nodeIDList[14209] = { index = 797, size = 15802 } +nodeIDList[14211] = { index = 798, size = 15802 } +nodeIDList[14292] = { index = 799, size = 15802 } +nodeIDList[14384] = { index = 800, size = 15802 } +nodeIDList[14400] = { index = 801, size = 15802 } +nodeIDList[14419] = { index = 802, size = 15802 } +nodeIDList[14745] = { index = 803, size = 15802 } +nodeIDList[14767] = { index = 804, size = 15802 } +nodeIDList[14804] = { index = 805, size = 15802 } +nodeIDList[14930] = { index = 806, size = 15802 } +nodeIDList[14936] = { index = 807, size = 15802 } +nodeIDList[15021] = { index = 808, size = 15802 } +nodeIDList[15064] = { index = 809, size = 15802 } +nodeIDList[15073] = { index = 810, size = 15802 } +nodeIDList[15081] = { index = 811, size = 15802 } +nodeIDList[15086] = { index = 812, size = 15802 } +nodeIDList[15117] = { index = 813, size = 15802 } +nodeIDList[15124] = { index = 814, size = 15802 } +nodeIDList[15144] = { index = 815, size = 15802 } +nodeIDList[15163] = { index = 816, size = 15802 } +nodeIDList[15167] = { index = 817, size = 15802 } +nodeIDList[15228] = { index = 818, size = 15802 } +nodeIDList[15365] = { index = 819, size = 15802 } +nodeIDList[15405] = { index = 820, size = 15802 } +nodeIDList[15438] = { index = 821, size = 15802 } +nodeIDList[15451] = { index = 822, size = 15802 } +nodeIDList[15452] = { index = 823, size = 15802 } +nodeIDList[15491] = { index = 824, size = 15802 } +nodeIDList[15522] = { index = 825, size = 15802 } +nodeIDList[15543] = { index = 826, size = 15802 } +nodeIDList[15549] = { index = 827, size = 15802 } +nodeIDList[15599] = { index = 828, size = 15802 } +nodeIDList[15631] = { index = 829, size = 15802 } +nodeIDList[15678] = { index = 830, size = 15802 } +nodeIDList[15716] = { index = 831, size = 15802 } +nodeIDList[15727] = { index = 832, size = 15802 } +nodeIDList[15783] = { index = 833, size = 15802 } +nodeIDList[15837] = { index = 834, size = 15802 } +nodeIDList[15868] = { index = 835, size = 15802 } +nodeIDList[15880] = { index = 836, size = 15802 } +nodeIDList[15973] = { index = 837, size = 15802 } +nodeIDList[16079] = { index = 838, size = 15802 } +nodeIDList[16113] = { index = 839, size = 15802 } +nodeIDList[16167] = { index = 840, size = 15802 } +nodeIDList[16213] = { index = 841, size = 15802 } +nodeIDList[16245] = { index = 842, size = 15802 } +nodeIDList[16380] = { index = 843, size = 15802 } +nodeIDList[16544] = { index = 844, size = 15802 } +nodeIDList[16602] = { index = 845, size = 15802 } +nodeIDList[16743] = { index = 846, size = 15802 } +nodeIDList[16754] = { index = 847, size = 15802 } +nodeIDList[16756] = { index = 848, size = 15802 } +nodeIDList[16775] = { index = 849, size = 15802 } +nodeIDList[16790] = { index = 850, size = 15802 } +nodeIDList[16851] = { index = 851, size = 15802 } +nodeIDList[16860] = { index = 852, size = 15802 } +nodeIDList[16882] = { index = 853, size = 15802 } +nodeIDList[16954] = { index = 854, size = 15802 } +nodeIDList[16970] = { index = 855, size = 15802 } +nodeIDList[17020] = { index = 856, size = 15802 } +nodeIDList[17038] = { index = 857, size = 15802 } +nodeIDList[17201] = { index = 858, size = 15802 } +nodeIDList[17236] = { index = 859, size = 15802 } +nodeIDList[17251] = { index = 860, size = 15802 } +nodeIDList[17352] = { index = 861, size = 15802 } +nodeIDList[17383] = { index = 862, size = 15802 } +nodeIDList[17412] = { index = 863, size = 15802 } +nodeIDList[17421] = { index = 864, size = 15802 } +nodeIDList[17429] = { index = 865, size = 15802 } +nodeIDList[17527] = { index = 866, size = 15802 } +nodeIDList[17546] = { index = 867, size = 15802 } +nodeIDList[17566] = { index = 868, size = 15802 } +nodeIDList[17569] = { index = 869, size = 15802 } +nodeIDList[17579] = { index = 870, size = 15802 } +nodeIDList[17674] = { index = 871, size = 15802 } +nodeIDList[17735] = { index = 872, size = 15802 } +nodeIDList[17749] = { index = 873, size = 15802 } +nodeIDList[17788] = { index = 874, size = 15802 } +nodeIDList[17790] = { index = 875, size = 15802 } +nodeIDList[17814] = { index = 876, size = 15802 } +nodeIDList[17821] = { index = 877, size = 15802 } +nodeIDList[17833] = { index = 878, size = 15802 } +nodeIDList[17849] = { index = 879, size = 15802 } +nodeIDList[17908] = { index = 880, size = 15802 } +nodeIDList[17934] = { index = 881, size = 15802 } +nodeIDList[18009] = { index = 882, size = 15802 } +nodeIDList[18033] = { index = 883, size = 15802 } +nodeIDList[18103] = { index = 884, size = 15802 } +nodeIDList[18182] = { index = 885, size = 15802 } +nodeIDList[18202] = { index = 886, size = 15802 } +nodeIDList[18208] = { index = 887, size = 15802 } +nodeIDList[18239] = { index = 888, size = 15802 } +nodeIDList[18302] = { index = 889, size = 15802 } +nodeIDList[18359] = { index = 890, size = 15802 } +nodeIDList[18379] = { index = 891, size = 15802 } +nodeIDList[18402] = { index = 892, size = 15802 } +nodeIDList[18661] = { index = 893, size = 15802 } +nodeIDList[18670] = { index = 894, size = 15802 } +nodeIDList[18715] = { index = 895, size = 15802 } +nodeIDList[18747] = { index = 896, size = 15802 } +nodeIDList[18767] = { index = 897, size = 15802 } +nodeIDList[18770] = { index = 898, size = 15802 } +nodeIDList[18866] = { index = 899, size = 15802 } +nodeIDList[18901] = { index = 900, size = 15802 } +nodeIDList[18990] = { index = 901, size = 15802 } +nodeIDList[19008] = { index = 902, size = 15802 } +nodeIDList[19098] = { index = 903, size = 15802 } +nodeIDList[19196] = { index = 904, size = 15802 } +nodeIDList[19210] = { index = 905, size = 15802 } +nodeIDList[19228] = { index = 906, size = 15802 } +nodeIDList[19261] = { index = 907, size = 15802 } +nodeIDList[19287] = { index = 908, size = 15802 } +nodeIDList[19374] = { index = 909, size = 15802 } +nodeIDList[19388] = { index = 910, size = 15802 } +nodeIDList[19401] = { index = 911, size = 15802 } +nodeIDList[19501] = { index = 912, size = 15802 } +nodeIDList[19609] = { index = 913, size = 15802 } +nodeIDList[19635] = { index = 914, size = 15802 } +nodeIDList[19679] = { index = 915, size = 15802 } +nodeIDList[19711] = { index = 916, size = 15802 } +nodeIDList[19782] = { index = 917, size = 15802 } +nodeIDList[19884] = { index = 918, size = 15802 } +nodeIDList[19919] = { index = 919, size = 15802 } +nodeIDList[19939] = { index = 920, size = 15802 } +nodeIDList[19958] = { index = 921, size = 15802 } +nodeIDList[20010] = { index = 922, size = 15802 } +nodeIDList[20018] = { index = 923, size = 15802 } +nodeIDList[20127] = { index = 924, size = 15802 } +nodeIDList[20142] = { index = 925, size = 15802 } +nodeIDList[20167] = { index = 926, size = 15802 } +nodeIDList[20228] = { index = 927, size = 15802 } +nodeIDList[20310] = { index = 928, size = 15802 } +nodeIDList[20402] = { index = 929, size = 15802 } +nodeIDList[20467] = { index = 930, size = 15802 } +nodeIDList[20546] = { index = 931, size = 15802 } +nodeIDList[20551] = { index = 932, size = 15802 } +nodeIDList[20807] = { index = 933, size = 15802 } +nodeIDList[20812] = { index = 934, size = 15802 } +nodeIDList[20844] = { index = 935, size = 15802 } +nodeIDList[20852] = { index = 936, size = 15802 } +nodeIDList[20913] = { index = 937, size = 15802 } +nodeIDList[20953] = { index = 938, size = 15802 } +nodeIDList[20966] = { index = 939, size = 15802 } +nodeIDList[20987] = { index = 940, size = 15802 } +nodeIDList[21019] = { index = 941, size = 15802 } +nodeIDList[21033] = { index = 942, size = 15802 } +nodeIDList[21048] = { index = 943, size = 15802 } +nodeIDList[21075] = { index = 944, size = 15802 } +nodeIDList[21170] = { index = 945, size = 15802 } +nodeIDList[21184] = { index = 946, size = 15802 } +nodeIDList[21262] = { index = 947, size = 15802 } +nodeIDList[21301] = { index = 948, size = 15802 } +nodeIDList[21548] = { index = 949, size = 15802 } +nodeIDList[21575] = { index = 950, size = 15802 } +nodeIDList[21678] = { index = 951, size = 15802 } +nodeIDList[21693] = { index = 952, size = 15802 } +nodeIDList[21758] = { index = 953, size = 15802 } +nodeIDList[21835] = { index = 954, size = 15802 } +nodeIDList[21929] = { index = 955, size = 15802 } +nodeIDList[21934] = { index = 956, size = 15802 } +nodeIDList[21974] = { index = 957, size = 15802 } +nodeIDList[22061] = { index = 958, size = 15802 } +nodeIDList[22062] = { index = 959, size = 15802 } +nodeIDList[22090] = { index = 960, size = 15802 } +nodeIDList[22180] = { index = 961, size = 15802 } +nodeIDList[22217] = { index = 962, size = 15802 } +nodeIDList[22261] = { index = 963, size = 15802 } +nodeIDList[22266] = { index = 964, size = 15802 } +nodeIDList[22285] = { index = 965, size = 15802 } +nodeIDList[22315] = { index = 966, size = 15802 } +nodeIDList[22407] = { index = 967, size = 15802 } +nodeIDList[22423] = { index = 968, size = 15802 } +nodeIDList[22472] = { index = 969, size = 15802 } +nodeIDList[22473] = { index = 970, size = 15802 } +nodeIDList[22488] = { index = 971, size = 15802 } +nodeIDList[22497] = { index = 972, size = 15802 } +nodeIDList[22577] = { index = 973, size = 15802 } +nodeIDList[22618] = { index = 974, size = 15802 } +nodeIDList[22627] = { index = 975, size = 15802 } +nodeIDList[22647] = { index = 976, size = 15802 } +nodeIDList[22703] = { index = 977, size = 15802 } +nodeIDList[22728] = { index = 978, size = 15802 } +nodeIDList[22845] = { index = 979, size = 15802 } +nodeIDList[22893] = { index = 980, size = 15802 } +nodeIDList[22908] = { index = 981, size = 15802 } +nodeIDList[23027] = { index = 982, size = 15802 } +nodeIDList[23036] = { index = 983, size = 15802 } +nodeIDList[23122] = { index = 984, size = 15802 } +nodeIDList[23185] = { index = 985, size = 15802 } +nodeIDList[23199] = { index = 986, size = 15802 } +nodeIDList[23215] = { index = 987, size = 15802 } +nodeIDList[23237] = { index = 988, size = 15802 } +nodeIDList[23334] = { index = 989, size = 15802 } +nodeIDList[23438] = { index = 990, size = 15802 } +nodeIDList[23439] = { index = 991, size = 15802 } +nodeIDList[23449] = { index = 992, size = 15802 } +nodeIDList[23456] = { index = 993, size = 15802 } +nodeIDList[23471] = { index = 994, size = 15802 } +nodeIDList[23507] = { index = 995, size = 15802 } +nodeIDList[23616] = { index = 996, size = 15802 } +nodeIDList[23659] = { index = 997, size = 15802 } +nodeIDList[23760] = { index = 998, size = 15802 } +nodeIDList[23834] = { index = 999, size = 15802 } +nodeIDList[23852] = { index = 1000, size = 15802 } +nodeIDList[23881] = { index = 1001, size = 15802 } +nodeIDList[23886] = { index = 1002, size = 15802 } +nodeIDList[23912] = { index = 1003, size = 15802 } +nodeIDList[23951] = { index = 1004, size = 15802 } +nodeIDList[24083] = { index = 1005, size = 15802 } +nodeIDList[24155] = { index = 1006, size = 15802 } +nodeIDList[24157] = { index = 1007, size = 15802 } +nodeIDList[24229] = { index = 1008, size = 15802 } +nodeIDList[24377] = { index = 1009, size = 15802 } +nodeIDList[24472] = { index = 1010, size = 15802 } +nodeIDList[24496] = { index = 1011, size = 15802 } +nodeIDList[24544] = { index = 1012, size = 15802 } +nodeIDList[24641] = { index = 1013, size = 15802 } +nodeIDList[24643] = { index = 1014, size = 15802 } +nodeIDList[24677] = { index = 1015, size = 15802 } +nodeIDList[24772] = { index = 1016, size = 15802 } +nodeIDList[24824] = { index = 1017, size = 15802 } +nodeIDList[24865] = { index = 1018, size = 15802 } +nodeIDList[24872] = { index = 1019, size = 15802 } +nodeIDList[24914] = { index = 1020, size = 15802 } +nodeIDList[24974] = { index = 1021, size = 15802 } +nodeIDList[25067] = { index = 1022, size = 15802 } +nodeIDList[25168] = { index = 1023, size = 15802 } +nodeIDList[25209] = { index = 1024, size = 15802 } +nodeIDList[25222] = { index = 1025, size = 15802 } +nodeIDList[25237] = { index = 1026, size = 15802 } +nodeIDList[25260] = { index = 1027, size = 15802 } +nodeIDList[25324] = { index = 1028, size = 15802 } +nodeIDList[25332] = { index = 1029, size = 15802 } +nodeIDList[25355] = { index = 1030, size = 15802 } +nodeIDList[25431] = { index = 1031, size = 15802 } +nodeIDList[25511] = { index = 1032, size = 15802 } +nodeIDList[25531] = { index = 1033, size = 15802 } +nodeIDList[25682] = { index = 1034, size = 15802 } +nodeIDList[25714] = { index = 1035, size = 15802 } +nodeIDList[25732] = { index = 1036, size = 15802 } +nodeIDList[25757] = { index = 1037, size = 15802 } +nodeIDList[25766] = { index = 1038, size = 15802 } +nodeIDList[25770] = { index = 1039, size = 15802 } +nodeIDList[25775] = { index = 1040, size = 15802 } +nodeIDList[25781] = { index = 1041, size = 15802 } +nodeIDList[25789] = { index = 1042, size = 15802 } +nodeIDList[25796] = { index = 1043, size = 15802 } +nodeIDList[25831] = { index = 1044, size = 15802 } +nodeIDList[25933] = { index = 1045, size = 15802 } +nodeIDList[25959] = { index = 1046, size = 15802 } +nodeIDList[26002] = { index = 1047, size = 15802 } +nodeIDList[26070] = { index = 1048, size = 15802 } +nodeIDList[26188] = { index = 1049, size = 15802 } +nodeIDList[26270] = { index = 1050, size = 15802 } +nodeIDList[26365] = { index = 1051, size = 15802 } +nodeIDList[26456] = { index = 1052, size = 15802 } +nodeIDList[26471] = { index = 1053, size = 15802 } +nodeIDList[26481] = { index = 1054, size = 15802 } +nodeIDList[26523] = { index = 1055, size = 15802 } +nodeIDList[26528] = { index = 1056, size = 15802 } +nodeIDList[26585] = { index = 1057, size = 15802 } +nodeIDList[26712] = { index = 1058, size = 15802 } +nodeIDList[26740] = { index = 1059, size = 15802 } +nodeIDList[26820] = { index = 1060, size = 15802 } +nodeIDList[27134] = { index = 1061, size = 15802 } +nodeIDList[27140] = { index = 1062, size = 15802 } +nodeIDList[27166] = { index = 1063, size = 15802 } +nodeIDList[27195] = { index = 1064, size = 15802 } +nodeIDList[27276] = { index = 1065, size = 15802 } +nodeIDList[27283] = { index = 1066, size = 15802 } +nodeIDList[27323] = { index = 1067, size = 15802 } +nodeIDList[27325] = { index = 1068, size = 15802 } +nodeIDList[27415] = { index = 1069, size = 15802 } +nodeIDList[27444] = { index = 1070, size = 15802 } +nodeIDList[27564] = { index = 1071, size = 15802 } +nodeIDList[27575] = { index = 1072, size = 15802 } +nodeIDList[27592] = { index = 1073, size = 15802 } +nodeIDList[27605] = { index = 1074, size = 15802 } +nodeIDList[27656] = { index = 1075, size = 15802 } +nodeIDList[27659] = { index = 1076, size = 15802 } +nodeIDList[27697] = { index = 1077, size = 15802 } +nodeIDList[27709] = { index = 1078, size = 15802 } +nodeIDList[27718] = { index = 1079, size = 15802 } +nodeIDList[27879] = { index = 1080, size = 15802 } +nodeIDList[27962] = { index = 1081, size = 15802 } +nodeIDList[28012] = { index = 1082, size = 15802 } +nodeIDList[28076] = { index = 1083, size = 15802 } +nodeIDList[28221] = { index = 1084, size = 15802 } +nodeIDList[28265] = { index = 1085, size = 15802 } +nodeIDList[28311] = { index = 1086, size = 15802 } +nodeIDList[28330] = { index = 1087, size = 15802 } +nodeIDList[28424] = { index = 1088, size = 15802 } +nodeIDList[28498] = { index = 1089, size = 15802 } +nodeIDList[28574] = { index = 1090, size = 15802 } +nodeIDList[28658] = { index = 1091, size = 15802 } +nodeIDList[28728] = { index = 1092, size = 15802 } +nodeIDList[28753] = { index = 1093, size = 15802 } +nodeIDList[28758] = { index = 1094, size = 15802 } +nodeIDList[28859] = { index = 1095, size = 15802 } +nodeIDList[28887] = { index = 1096, size = 15802 } +nodeIDList[29005] = { index = 1097, size = 15802 } +nodeIDList[29033] = { index = 1098, size = 15802 } +nodeIDList[29034] = { index = 1099, size = 15802 } +nodeIDList[29061] = { index = 1100, size = 15802 } +nodeIDList[29089] = { index = 1101, size = 15802 } +nodeIDList[29104] = { index = 1102, size = 15802 } +nodeIDList[29106] = { index = 1103, size = 15802 } +nodeIDList[29171] = { index = 1104, size = 15802 } +nodeIDList[29185] = { index = 1105, size = 15802 } +nodeIDList[29199] = { index = 1106, size = 15802 } +nodeIDList[29292] = { index = 1107, size = 15802 } +nodeIDList[29353] = { index = 1108, size = 15802 } +nodeIDList[29359] = { index = 1109, size = 15802 } +nodeIDList[29379] = { index = 1110, size = 15802 } +nodeIDList[29454] = { index = 1111, size = 15802 } +nodeIDList[29472] = { index = 1112, size = 15802 } +nodeIDList[29543] = { index = 1113, size = 15802 } +nodeIDList[29547] = { index = 1114, size = 15802 } +nodeIDList[29549] = { index = 1115, size = 15802 } +nodeIDList[29552] = { index = 1116, size = 15802 } +nodeIDList[29629] = { index = 1117, size = 15802 } +nodeIDList[29781] = { index = 1118, size = 15802 } +nodeIDList[29797] = { index = 1119, size = 15802 } +nodeIDList[29856] = { index = 1120, size = 15802 } +nodeIDList[29870] = { index = 1121, size = 15802 } +nodeIDList[29933] = { index = 1122, size = 15802 } +nodeIDList[29937] = { index = 1123, size = 15802 } +nodeIDList[30030] = { index = 1124, size = 15802 } +nodeIDList[30038] = { index = 1125, size = 15802 } +nodeIDList[30110] = { index = 1126, size = 15802 } +nodeIDList[30148] = { index = 1127, size = 15802 } +nodeIDList[30155] = { index = 1128, size = 15802 } +nodeIDList[30170] = { index = 1129, size = 15802 } +nodeIDList[30205] = { index = 1130, size = 15802 } +nodeIDList[30251] = { index = 1131, size = 15802 } +nodeIDList[30319] = { index = 1132, size = 15802 } +nodeIDList[30335] = { index = 1133, size = 15802 } +nodeIDList[30338] = { index = 1134, size = 15802 } +nodeIDList[30370] = { index = 1135, size = 15802 } +nodeIDList[30380] = { index = 1136, size = 15802 } +nodeIDList[30427] = { index = 1137, size = 15802 } +nodeIDList[30455] = { index = 1138, size = 15802 } +nodeIDList[30547] = { index = 1139, size = 15802 } +nodeIDList[30626] = { index = 1140, size = 15802 } +nodeIDList[30658] = { index = 1141, size = 15802 } +nodeIDList[30679] = { index = 1142, size = 15802 } +nodeIDList[30691] = { index = 1143, size = 15802 } +nodeIDList[30714] = { index = 1144, size = 15802 } +nodeIDList[30733] = { index = 1145, size = 15802 } +nodeIDList[30745] = { index = 1146, size = 15802 } +nodeIDList[30767] = { index = 1147, size = 15802 } +nodeIDList[30825] = { index = 1148, size = 15802 } +nodeIDList[30826] = { index = 1149, size = 15802 } +nodeIDList[30842] = { index = 1150, size = 15802 } +nodeIDList[30894] = { index = 1151, size = 15802 } +nodeIDList[30926] = { index = 1152, size = 15802 } +nodeIDList[30969] = { index = 1153, size = 15802 } +nodeIDList[31080] = { index = 1154, size = 15802 } +nodeIDList[31103] = { index = 1155, size = 15802 } +nodeIDList[31137] = { index = 1156, size = 15802 } +nodeIDList[31153] = { index = 1157, size = 15802 } +nodeIDList[31222] = { index = 1158, size = 15802 } +nodeIDList[31315] = { index = 1159, size = 15802 } +nodeIDList[31371] = { index = 1160, size = 15802 } +nodeIDList[31438] = { index = 1161, size = 15802 } +nodeIDList[31462] = { index = 1162, size = 15802 } +nodeIDList[31471] = { index = 1163, size = 15802 } +nodeIDList[31501] = { index = 1164, size = 15802 } +nodeIDList[31520] = { index = 1165, size = 15802 } +nodeIDList[31583] = { index = 1166, size = 15802 } +nodeIDList[31604] = { index = 1167, size = 15802 } +nodeIDList[31619] = { index = 1168, size = 15802 } +nodeIDList[31628] = { index = 1169, size = 15802 } +nodeIDList[31758] = { index = 1170, size = 15802 } +nodeIDList[31819] = { index = 1171, size = 15802 } +nodeIDList[31875] = { index = 1172, size = 15802 } +nodeIDList[31928] = { index = 1173, size = 15802 } +nodeIDList[31931] = { index = 1174, size = 15802 } +nodeIDList[31973] = { index = 1175, size = 15802 } +nodeIDList[32024] = { index = 1176, size = 15802 } +nodeIDList[32053] = { index = 1177, size = 15802 } +nodeIDList[32075] = { index = 1178, size = 15802 } +nodeIDList[32091] = { index = 1179, size = 15802 } +nodeIDList[32117] = { index = 1180, size = 15802 } +nodeIDList[32210] = { index = 1181, size = 15802 } +nodeIDList[32314] = { index = 1182, size = 15802 } +nodeIDList[32376] = { index = 1183, size = 15802 } +nodeIDList[32431] = { index = 1184, size = 15802 } +nodeIDList[32432] = { index = 1185, size = 15802 } +nodeIDList[32477] = { index = 1186, size = 15802 } +nodeIDList[32480] = { index = 1187, size = 15802 } +nodeIDList[32482] = { index = 1188, size = 15802 } +nodeIDList[32514] = { index = 1189, size = 15802 } +nodeIDList[32519] = { index = 1190, size = 15802 } +nodeIDList[32555] = { index = 1191, size = 15802 } +nodeIDList[32690] = { index = 1192, size = 15802 } +nodeIDList[32710] = { index = 1193, size = 15802 } +nodeIDList[32739] = { index = 1194, size = 15802 } +nodeIDList[32802] = { index = 1195, size = 15802 } +nodeIDList[32942] = { index = 1196, size = 15802 } +nodeIDList[33089] = { index = 1197, size = 15802 } +nodeIDList[33098] = { index = 1198, size = 15802 } +nodeIDList[33196] = { index = 1199, size = 15802 } +nodeIDList[33296] = { index = 1200, size = 15802 } +nodeIDList[33310] = { index = 1201, size = 15802 } +nodeIDList[33374] = { index = 1202, size = 15802 } +nodeIDList[33479] = { index = 1203, size = 15802 } +nodeIDList[33508] = { index = 1204, size = 15802 } +nodeIDList[33558] = { index = 1205, size = 15802 } +nodeIDList[33566] = { index = 1206, size = 15802 } +nodeIDList[33623] = { index = 1207, size = 15802 } +nodeIDList[33740] = { index = 1208, size = 15802 } +nodeIDList[33755] = { index = 1209, size = 15802 } +nodeIDList[33779] = { index = 1210, size = 15802 } +nodeIDList[33783] = { index = 1211, size = 15802 } +nodeIDList[33864] = { index = 1212, size = 15802 } +nodeIDList[33911] = { index = 1213, size = 15802 } +nodeIDList[33923] = { index = 1214, size = 15802 } +nodeIDList[33943] = { index = 1215, size = 15802 } +nodeIDList[33988] = { index = 1216, size = 15802 } +nodeIDList[34031] = { index = 1217, size = 15802 } +nodeIDList[34130] = { index = 1218, size = 15802 } +nodeIDList[34144] = { index = 1219, size = 15802 } +nodeIDList[34157] = { index = 1220, size = 15802 } +nodeIDList[34171] = { index = 1221, size = 15802 } +nodeIDList[34191] = { index = 1222, size = 15802 } +nodeIDList[34207] = { index = 1223, size = 15802 } +nodeIDList[34225] = { index = 1224, size = 15802 } +nodeIDList[34306] = { index = 1225, size = 15802 } +nodeIDList[34327] = { index = 1226, size = 15802 } +nodeIDList[34359] = { index = 1227, size = 15802 } +nodeIDList[34400] = { index = 1228, size = 15802 } +nodeIDList[34423] = { index = 1229, size = 15802 } +nodeIDList[34478] = { index = 1230, size = 15802 } +nodeIDList[34510] = { index = 1231, size = 15802 } +nodeIDList[34513] = { index = 1232, size = 15802 } +nodeIDList[34560] = { index = 1233, size = 15802 } +nodeIDList[34579] = { index = 1234, size = 15802 } +nodeIDList[34590] = { index = 1235, size = 15802 } +nodeIDList[34625] = { index = 1236, size = 15802 } +nodeIDList[34660] = { index = 1237, size = 15802 } +nodeIDList[34678] = { index = 1238, size = 15802 } +nodeIDList[34750] = { index = 1239, size = 15802 } +nodeIDList[34763] = { index = 1240, size = 15802 } +nodeIDList[34880] = { index = 1241, size = 15802 } +nodeIDList[34906] = { index = 1242, size = 15802 } +nodeIDList[34907] = { index = 1243, size = 15802 } +nodeIDList[34917] = { index = 1244, size = 15802 } +nodeIDList[34959] = { index = 1245, size = 15802 } +nodeIDList[35035] = { index = 1246, size = 15802 } +nodeIDList[35053] = { index = 1247, size = 15802 } +nodeIDList[35086] = { index = 1248, size = 15802 } +nodeIDList[35179] = { index = 1249, size = 15802 } +nodeIDList[35190] = { index = 1250, size = 15802 } +nodeIDList[35192] = { index = 1251, size = 15802 } +nodeIDList[35237] = { index = 1252, size = 15802 } +nodeIDList[35260] = { index = 1253, size = 15802 } +nodeIDList[35283] = { index = 1254, size = 15802 } +nodeIDList[35288] = { index = 1255, size = 15802 } +nodeIDList[35334] = { index = 1256, size = 15802 } +nodeIDList[35362] = { index = 1257, size = 15802 } +nodeIDList[35384] = { index = 1258, size = 15802 } +nodeIDList[35406] = { index = 1259, size = 15802 } +nodeIDList[35503] = { index = 1260, size = 15802 } +nodeIDList[35507] = { index = 1261, size = 15802 } +nodeIDList[35556] = { index = 1262, size = 15802 } +nodeIDList[35568] = { index = 1263, size = 15802 } +nodeIDList[35706] = { index = 1264, size = 15802 } +nodeIDList[35724] = { index = 1265, size = 15802 } +nodeIDList[35730] = { index = 1266, size = 15802 } +nodeIDList[35737] = { index = 1267, size = 15802 } +nodeIDList[35756] = { index = 1268, size = 15802 } +nodeIDList[35791] = { index = 1269, size = 15802 } +nodeIDList[35851] = { index = 1270, size = 15802 } +nodeIDList[35910] = { index = 1271, size = 15802 } +nodeIDList[35992] = { index = 1272, size = 15802 } +nodeIDList[36047] = { index = 1273, size = 15802 } +nodeIDList[36107] = { index = 1274, size = 15802 } +nodeIDList[36121] = { index = 1275, size = 15802 } +nodeIDList[36200] = { index = 1276, size = 15802 } +nodeIDList[36221] = { index = 1277, size = 15802 } +nodeIDList[36222] = { index = 1278, size = 15802 } +nodeIDList[36225] = { index = 1279, size = 15802 } +nodeIDList[36226] = { index = 1280, size = 15802 } +nodeIDList[36287] = { index = 1281, size = 15802 } +nodeIDList[36371] = { index = 1282, size = 15802 } +nodeIDList[36412] = { index = 1283, size = 15802 } +nodeIDList[36452] = { index = 1284, size = 15802 } +nodeIDList[36542] = { index = 1285, size = 15802 } +nodeIDList[36543] = { index = 1286, size = 15802 } +nodeIDList[36585] = { index = 1287, size = 15802 } +nodeIDList[36678] = { index = 1288, size = 15802 } +nodeIDList[36704] = { index = 1289, size = 15802 } +nodeIDList[36761] = { index = 1290, size = 15802 } +nodeIDList[36764] = { index = 1291, size = 15802 } +nodeIDList[36774] = { index = 1292, size = 15802 } +nodeIDList[36801] = { index = 1293, size = 15802 } +nodeIDList[36849] = { index = 1294, size = 15802 } +nodeIDList[36858] = { index = 1295, size = 15802 } +nodeIDList[36877] = { index = 1296, size = 15802 } +nodeIDList[36881] = { index = 1297, size = 15802 } +nodeIDList[36945] = { index = 1298, size = 15802 } +nodeIDList[36972] = { index = 1299, size = 15802 } +nodeIDList[37163] = { index = 1300, size = 15802 } +nodeIDList[37175] = { index = 1301, size = 15802 } +nodeIDList[37501] = { index = 1302, size = 15802 } +nodeIDList[37569] = { index = 1303, size = 15802 } +nodeIDList[37575] = { index = 1304, size = 15802 } +nodeIDList[37584] = { index = 1305, size = 15802 } +nodeIDList[37619] = { index = 1306, size = 15802 } +nodeIDList[37639] = { index = 1307, size = 15802 } +nodeIDList[37663] = { index = 1308, size = 15802 } +nodeIDList[37671] = { index = 1309, size = 15802 } +nodeIDList[37690] = { index = 1310, size = 15802 } +nodeIDList[37785] = { index = 1311, size = 15802 } +nodeIDList[37800] = { index = 1312, size = 15802 } +nodeIDList[37884] = { index = 1313, size = 15802 } +nodeIDList[37887] = { index = 1314, size = 15802 } +nodeIDList[37895] = { index = 1315, size = 15802 } +nodeIDList[37999] = { index = 1316, size = 15802 } +nodeIDList[38023] = { index = 1317, size = 15802 } +nodeIDList[38048] = { index = 1318, size = 15802 } +nodeIDList[38119] = { index = 1319, size = 15802 } +nodeIDList[38129] = { index = 1320, size = 15802 } +nodeIDList[38148] = { index = 1321, size = 15802 } +nodeIDList[38149] = { index = 1322, size = 15802 } +nodeIDList[38176] = { index = 1323, size = 15802 } +nodeIDList[38190] = { index = 1324, size = 15802 } +nodeIDList[38344] = { index = 1325, size = 15802 } +nodeIDList[38348] = { index = 1326, size = 15802 } +nodeIDList[38450] = { index = 1327, size = 15802 } +nodeIDList[38462] = { index = 1328, size = 15802 } +nodeIDList[38508] = { index = 1329, size = 15802 } +nodeIDList[38520] = { index = 1330, size = 15802 } +nodeIDList[38538] = { index = 1331, size = 15802 } +nodeIDList[38539] = { index = 1332, size = 15802 } +nodeIDList[38662] = { index = 1333, size = 15802 } +nodeIDList[38664] = { index = 1334, size = 15802 } +nodeIDList[38701] = { index = 1335, size = 15802 } +nodeIDList[38772] = { index = 1336, size = 15802 } +nodeIDList[38777] = { index = 1337, size = 15802 } +nodeIDList[38789] = { index = 1338, size = 15802 } +nodeIDList[38805] = { index = 1339, size = 15802 } +nodeIDList[38836] = { index = 1340, size = 15802 } +nodeIDList[38864] = { index = 1341, size = 15802 } +nodeIDList[38900] = { index = 1342, size = 15802 } +nodeIDList[38906] = { index = 1343, size = 15802 } +nodeIDList[38947] = { index = 1344, size = 15802 } +nodeIDList[38989] = { index = 1345, size = 15802 } +nodeIDList[38995] = { index = 1346, size = 15802 } +nodeIDList[39023] = { index = 1347, size = 15802 } +nodeIDList[39211] = { index = 1348, size = 15802 } +nodeIDList[39437] = { index = 1349, size = 15802 } +nodeIDList[39443] = { index = 1350, size = 15802 } +nodeIDList[39521] = { index = 1351, size = 15802 } +nodeIDList[39524] = { index = 1352, size = 15802 } +nodeIDList[39631] = { index = 1353, size = 15802 } +nodeIDList[39648] = { index = 1354, size = 15802 } +nodeIDList[39665] = { index = 1355, size = 15802 } +nodeIDList[39678] = { index = 1356, size = 15802 } +nodeIDList[39718] = { index = 1357, size = 15802 } +nodeIDList[39725] = { index = 1358, size = 15802 } +nodeIDList[39768] = { index = 1359, size = 15802 } +nodeIDList[39773] = { index = 1360, size = 15802 } +nodeIDList[39786] = { index = 1361, size = 15802 } +nodeIDList[39814] = { index = 1362, size = 15802 } +nodeIDList[39821] = { index = 1363, size = 15802 } +nodeIDList[39841] = { index = 1364, size = 15802 } +nodeIDList[39861] = { index = 1365, size = 15802 } +nodeIDList[39916] = { index = 1366, size = 15802 } +nodeIDList[39938] = { index = 1367, size = 15802 } +nodeIDList[40075] = { index = 1368, size = 15802 } +nodeIDList[40100] = { index = 1369, size = 15802 } +nodeIDList[40126] = { index = 1370, size = 15802 } +nodeIDList[40132] = { index = 1371, size = 15802 } +nodeIDList[40135] = { index = 1372, size = 15802 } +nodeIDList[40189] = { index = 1373, size = 15802 } +nodeIDList[40229] = { index = 1374, size = 15802 } +nodeIDList[40287] = { index = 1375, size = 15802 } +nodeIDList[40291] = { index = 1376, size = 15802 } +nodeIDList[40362] = { index = 1377, size = 15802 } +nodeIDList[40366] = { index = 1378, size = 15802 } +nodeIDList[40409] = { index = 1379, size = 15802 } +nodeIDList[40483] = { index = 1380, size = 15802 } +nodeIDList[40508] = { index = 1381, size = 15802 } +nodeIDList[40535] = { index = 1382, size = 15802 } +nodeIDList[40609] = { index = 1383, size = 15802 } +nodeIDList[40637] = { index = 1384, size = 15802 } +nodeIDList[40644] = { index = 1385, size = 15802 } +nodeIDList[40653] = { index = 1386, size = 15802 } +nodeIDList[40705] = { index = 1387, size = 15802 } +nodeIDList[40751] = { index = 1388, size = 15802 } +nodeIDList[40766] = { index = 1389, size = 15802 } +nodeIDList[40776] = { index = 1390, size = 15802 } +nodeIDList[40818] = { index = 1391, size = 15802 } +nodeIDList[40840] = { index = 1392, size = 15802 } +nodeIDList[40841] = { index = 1393, size = 15802 } +nodeIDList[40867] = { index = 1394, size = 15802 } +nodeIDList[40927] = { index = 1395, size = 15802 } +nodeIDList[41026] = { index = 1396, size = 15802 } +nodeIDList[41047] = { index = 1397, size = 15802 } +nodeIDList[41068] = { index = 1398, size = 15802 } +nodeIDList[41190] = { index = 1399, size = 15802 } +nodeIDList[41250] = { index = 1400, size = 15802 } +nodeIDList[41251] = { index = 1401, size = 15802 } +nodeIDList[41380] = { index = 1402, size = 15802 } +nodeIDList[41536] = { index = 1403, size = 15802 } +nodeIDList[41599] = { index = 1404, size = 15802 } +nodeIDList[41635] = { index = 1405, size = 15802 } +nodeIDList[41689] = { index = 1406, size = 15802 } +nodeIDList[41819] = { index = 1407, size = 15802 } +nodeIDList[41866] = { index = 1408, size = 15802 } +nodeIDList[41967] = { index = 1409, size = 15802 } +nodeIDList[42006] = { index = 1410, size = 15802 } +nodeIDList[42086] = { index = 1411, size = 15802 } +nodeIDList[42104] = { index = 1412, size = 15802 } +nodeIDList[42106] = { index = 1413, size = 15802 } +nodeIDList[42133] = { index = 1414, size = 15802 } +nodeIDList[42161] = { index = 1415, size = 15802 } +nodeIDList[42485] = { index = 1416, size = 15802 } +nodeIDList[42495] = { index = 1417, size = 15802 } +nodeIDList[42623] = { index = 1418, size = 15802 } +nodeIDList[42632] = { index = 1419, size = 15802 } +nodeIDList[42637] = { index = 1420, size = 15802 } +nodeIDList[42668] = { index = 1421, size = 15802 } +nodeIDList[42731] = { index = 1422, size = 15802 } +nodeIDList[42744] = { index = 1423, size = 15802 } +nodeIDList[42760] = { index = 1424, size = 15802 } +nodeIDList[42800] = { index = 1425, size = 15802 } +nodeIDList[42837] = { index = 1426, size = 15802 } +nodeIDList[42907] = { index = 1427, size = 15802 } +nodeIDList[42911] = { index = 1428, size = 15802 } +nodeIDList[42964] = { index = 1429, size = 15802 } +nodeIDList[42981] = { index = 1430, size = 15802 } +nodeIDList[43000] = { index = 1431, size = 15802 } +nodeIDList[43010] = { index = 1432, size = 15802 } +nodeIDList[43057] = { index = 1433, size = 15802 } +nodeIDList[43061] = { index = 1434, size = 15802 } +nodeIDList[43133] = { index = 1435, size = 15802 } +nodeIDList[43162] = { index = 1436, size = 15802 } +nodeIDList[43303] = { index = 1437, size = 15802 } +nodeIDList[43316] = { index = 1438, size = 15802 } +nodeIDList[43328] = { index = 1439, size = 15802 } +nodeIDList[43374] = { index = 1440, size = 15802 } +nodeIDList[43412] = { index = 1441, size = 15802 } +nodeIDList[43413] = { index = 1442, size = 15802 } +nodeIDList[43457] = { index = 1443, size = 15802 } +nodeIDList[43491] = { index = 1444, size = 15802 } +nodeIDList[43514] = { index = 1445, size = 15802 } +nodeIDList[43608] = { index = 1446, size = 15802 } +nodeIDList[43684] = { index = 1447, size = 15802 } +nodeIDList[43716] = { index = 1448, size = 15802 } +nodeIDList[43787] = { index = 1449, size = 15802 } +nodeIDList[43822] = { index = 1450, size = 15802 } +nodeIDList[43833] = { index = 1451, size = 15802 } +nodeIDList[44134] = { index = 1452, size = 15802 } +nodeIDList[44183] = { index = 1453, size = 15802 } +nodeIDList[44184] = { index = 1454, size = 15802 } +nodeIDList[44202] = { index = 1455, size = 15802 } +nodeIDList[44268] = { index = 1456, size = 15802 } +nodeIDList[44306] = { index = 1457, size = 15802 } +nodeIDList[44339] = { index = 1458, size = 15802 } +nodeIDList[44360] = { index = 1459, size = 15802 } +nodeIDList[44362] = { index = 1460, size = 15802 } +nodeIDList[44429] = { index = 1461, size = 15802 } +nodeIDList[44465] = { index = 1462, size = 15802 } +nodeIDList[44529] = { index = 1463, size = 15802 } +nodeIDList[44606] = { index = 1464, size = 15802 } +nodeIDList[44624] = { index = 1465, size = 15802 } +nodeIDList[44683] = { index = 1466, size = 15802 } +nodeIDList[44723] = { index = 1467, size = 15802 } +nodeIDList[44799] = { index = 1468, size = 15802 } +nodeIDList[44908] = { index = 1469, size = 15802 } +nodeIDList[44916] = { index = 1470, size = 15802 } +nodeIDList[44922] = { index = 1471, size = 15802 } +nodeIDList[44924] = { index = 1472, size = 15802 } +nodeIDList[44967] = { index = 1473, size = 15802 } +nodeIDList[44983] = { index = 1474, size = 15802 } +nodeIDList[45033] = { index = 1475, size = 15802 } +nodeIDList[45035] = { index = 1476, size = 15802 } +nodeIDList[45163] = { index = 1477, size = 15802 } +nodeIDList[45202] = { index = 1478, size = 15802 } +nodeIDList[45227] = { index = 1479, size = 15802 } +nodeIDList[45246] = { index = 1480, size = 15802 } +nodeIDList[45272] = { index = 1481, size = 15802 } +nodeIDList[45341] = { index = 1482, size = 15802 } +nodeIDList[45360] = { index = 1483, size = 15802 } +nodeIDList[45366] = { index = 1484, size = 15802 } +nodeIDList[45436] = { index = 1485, size = 15802 } +nodeIDList[45456] = { index = 1486, size = 15802 } +nodeIDList[45486] = { index = 1487, size = 15802 } +nodeIDList[45491] = { index = 1488, size = 15802 } +nodeIDList[45503] = { index = 1489, size = 15802 } +nodeIDList[45565] = { index = 1490, size = 15802 } +nodeIDList[45593] = { index = 1491, size = 15802 } +nodeIDList[45646] = { index = 1492, size = 15802 } +nodeIDList[45680] = { index = 1493, size = 15802 } +nodeIDList[45788] = { index = 1494, size = 15802 } +nodeIDList[45810] = { index = 1495, size = 15802 } +nodeIDList[45827] = { index = 1496, size = 15802 } +nodeIDList[45838] = { index = 1497, size = 15802 } +nodeIDList[45887] = { index = 1498, size = 15802 } +nodeIDList[46092] = { index = 1499, size = 15802 } +nodeIDList[46106] = { index = 1500, size = 15802 } +nodeIDList[46111] = { index = 1501, size = 15802 } +nodeIDList[46127] = { index = 1502, size = 15802 } +nodeIDList[46136] = { index = 1503, size = 15802 } +nodeIDList[46277] = { index = 1504, size = 15802 } +nodeIDList[46289] = { index = 1505, size = 15802 } +nodeIDList[46291] = { index = 1506, size = 15802 } +nodeIDList[46340] = { index = 1507, size = 15802 } +nodeIDList[46344] = { index = 1508, size = 15802 } +nodeIDList[46469] = { index = 1509, size = 15802 } +nodeIDList[46578] = { index = 1510, size = 15802 } +nodeIDList[46585] = { index = 1511, size = 15802 } +nodeIDList[46636] = { index = 1512, size = 15802 } +nodeIDList[46672] = { index = 1513, size = 15802 } +nodeIDList[46694] = { index = 1514, size = 15802 } +nodeIDList[46726] = { index = 1515, size = 15802 } +nodeIDList[46730] = { index = 1516, size = 15802 } +nodeIDList[46756] = { index = 1517, size = 15802 } +nodeIDList[46896] = { index = 1518, size = 15802 } +nodeIDList[46897] = { index = 1519, size = 15802 } +nodeIDList[46910] = { index = 1520, size = 15802 } +nodeIDList[47030] = { index = 1521, size = 15802 } +nodeIDList[47062] = { index = 1522, size = 15802 } +nodeIDList[47085] = { index = 1523, size = 15802 } +nodeIDList[47175] = { index = 1524, size = 15802 } +nodeIDList[47251] = { index = 1525, size = 15802 } +nodeIDList[47312] = { index = 1526, size = 15802 } +nodeIDList[47321] = { index = 1527, size = 15802 } +nodeIDList[47362] = { index = 1528, size = 15802 } +nodeIDList[47389] = { index = 1529, size = 15802 } +nodeIDList[47421] = { index = 1530, size = 15802 } +nodeIDList[47422] = { index = 1531, size = 15802 } +nodeIDList[47426] = { index = 1532, size = 15802 } +nodeIDList[47427] = { index = 1533, size = 15802 } +nodeIDList[47504] = { index = 1534, size = 15802 } +nodeIDList[47507] = { index = 1535, size = 15802 } +nodeIDList[47785] = { index = 1536, size = 15802 } +nodeIDList[47854] = { index = 1537, size = 15802 } +nodeIDList[47902] = { index = 1538, size = 15802 } +nodeIDList[47949] = { index = 1539, size = 15802 } +nodeIDList[48093] = { index = 1540, size = 15802 } +nodeIDList[48099] = { index = 1541, size = 15802 } +nodeIDList[48109] = { index = 1542, size = 15802 } +nodeIDList[48118] = { index = 1543, size = 15802 } +nodeIDList[48199] = { index = 1544, size = 15802 } +nodeIDList[48275] = { index = 1545, size = 15802 } +nodeIDList[48282] = { index = 1546, size = 15802 } +nodeIDList[48284] = { index = 1547, size = 15802 } +nodeIDList[48287] = { index = 1548, size = 15802 } +nodeIDList[48362] = { index = 1549, size = 15802 } +nodeIDList[48423] = { index = 1550, size = 15802 } +nodeIDList[48477] = { index = 1551, size = 15802 } +nodeIDList[48513] = { index = 1552, size = 15802 } +nodeIDList[48514] = { index = 1553, size = 15802 } +nodeIDList[48713] = { index = 1554, size = 15802 } +nodeIDList[48778] = { index = 1555, size = 15802 } +nodeIDList[48813] = { index = 1556, size = 15802 } +nodeIDList[48822] = { index = 1557, size = 15802 } +nodeIDList[48828] = { index = 1558, size = 15802 } +nodeIDList[48878] = { index = 1559, size = 15802 } +nodeIDList[48929] = { index = 1560, size = 15802 } +nodeIDList[48971] = { index = 1561, size = 15802 } +nodeIDList[49047] = { index = 1562, size = 15802 } +nodeIDList[49109] = { index = 1563, size = 15802 } +nodeIDList[49147] = { index = 1564, size = 15802 } +nodeIDList[49167] = { index = 1565, size = 15802 } +nodeIDList[49178] = { index = 1566, size = 15802 } +nodeIDList[49308] = { index = 1567, size = 15802 } +nodeIDList[49343] = { index = 1568, size = 15802 } +nodeIDList[49407] = { index = 1569, size = 15802 } +nodeIDList[49408] = { index = 1570, size = 15802 } +nodeIDList[49412] = { index = 1571, size = 15802 } +nodeIDList[49415] = { index = 1572, size = 15802 } +nodeIDList[49481] = { index = 1573, size = 15802 } +nodeIDList[49515] = { index = 1574, size = 15802 } +nodeIDList[49534] = { index = 1575, size = 15802 } +nodeIDList[49547] = { index = 1576, size = 15802 } +nodeIDList[49568] = { index = 1577, size = 15802 } +nodeIDList[49571] = { index = 1578, size = 15802 } +nodeIDList[49588] = { index = 1579, size = 15802 } +nodeIDList[49605] = { index = 1580, size = 15802 } +nodeIDList[49635] = { index = 1581, size = 15802 } +nodeIDList[49651] = { index = 1582, size = 15802 } +nodeIDList[49652] = { index = 1583, size = 15802 } +nodeIDList[49698] = { index = 1584, size = 15802 } +nodeIDList[49779] = { index = 1585, size = 15802 } +nodeIDList[49806] = { index = 1586, size = 15802 } +nodeIDList[49807] = { index = 1587, size = 15802 } +nodeIDList[49900] = { index = 1588, size = 15802 } +nodeIDList[49929] = { index = 1589, size = 15802 } +nodeIDList[49971] = { index = 1590, size = 15802 } +nodeIDList[49978] = { index = 1591, size = 15802 } +nodeIDList[50038] = { index = 1592, size = 15802 } +nodeIDList[50041] = { index = 1593, size = 15802 } +nodeIDList[50082] = { index = 1594, size = 15802 } +nodeIDList[50150] = { index = 1595, size = 15802 } +nodeIDList[50225] = { index = 1596, size = 15802 } +nodeIDList[50264] = { index = 1597, size = 15802 } +nodeIDList[50306] = { index = 1598, size = 15802 } +nodeIDList[50340] = { index = 1599, size = 15802 } +nodeIDList[50360] = { index = 1600, size = 15802 } +nodeIDList[50382] = { index = 1601, size = 15802 } +nodeIDList[50422] = { index = 1602, size = 15802 } +nodeIDList[50459] = { index = 1603, size = 15802 } +nodeIDList[50472] = { index = 1604, size = 15802 } +nodeIDList[50515] = { index = 1605, size = 15802 } +nodeIDList[50562] = { index = 1606, size = 15802 } +nodeIDList[50570] = { index = 1607, size = 15802 } +nodeIDList[50734] = { index = 1608, size = 15802 } +nodeIDList[50826] = { index = 1609, size = 15802 } +nodeIDList[50862] = { index = 1610, size = 15802 } +nodeIDList[50904] = { index = 1611, size = 15802 } +nodeIDList[50969] = { index = 1612, size = 15802 } +nodeIDList[50986] = { index = 1613, size = 15802 } +nodeIDList[51146] = { index = 1614, size = 15802 } +nodeIDList[51191] = { index = 1615, size = 15802 } +nodeIDList[51213] = { index = 1616, size = 15802 } +nodeIDList[51219] = { index = 1617, size = 15802 } +nodeIDList[51220] = { index = 1618, size = 15802 } +nodeIDList[51235] = { index = 1619, size = 15802 } +nodeIDList[51291] = { index = 1620, size = 15802 } +nodeIDList[51382] = { index = 1621, size = 15802 } +nodeIDList[51404] = { index = 1622, size = 15802 } +nodeIDList[51420] = { index = 1623, size = 15802 } +nodeIDList[51517] = { index = 1624, size = 15802 } +nodeIDList[51524] = { index = 1625, size = 15802 } +nodeIDList[51786] = { index = 1626, size = 15802 } +nodeIDList[51801] = { index = 1627, size = 15802 } +nodeIDList[51804] = { index = 1628, size = 15802 } +nodeIDList[51856] = { index = 1629, size = 15802 } +nodeIDList[51923] = { index = 1630, size = 15802 } +nodeIDList[51953] = { index = 1631, size = 15802 } +nodeIDList[51954] = { index = 1632, size = 15802 } +nodeIDList[51976] = { index = 1633, size = 15802 } +nodeIDList[52095] = { index = 1634, size = 15802 } +nodeIDList[52099] = { index = 1635, size = 15802 } +nodeIDList[52213] = { index = 1636, size = 15802 } +nodeIDList[52288] = { index = 1637, size = 15802 } +nodeIDList[52407] = { index = 1638, size = 15802 } +nodeIDList[52412] = { index = 1639, size = 15802 } +nodeIDList[52423] = { index = 1640, size = 15802 } +nodeIDList[52502] = { index = 1641, size = 15802 } +nodeIDList[52522] = { index = 1642, size = 15802 } +nodeIDList[52632] = { index = 1643, size = 15802 } +nodeIDList[52655] = { index = 1644, size = 15802 } +nodeIDList[52848] = { index = 1645, size = 15802 } +nodeIDList[52904] = { index = 1646, size = 15802 } +nodeIDList[53002] = { index = 1647, size = 15802 } +nodeIDList[53005] = { index = 1648, size = 15802 } +nodeIDList[53018] = { index = 1649, size = 15802 } +nodeIDList[53072] = { index = 1650, size = 15802 } +nodeIDList[53213] = { index = 1651, size = 15802 } +nodeIDList[53279] = { index = 1652, size = 15802 } +nodeIDList[53290] = { index = 1653, size = 15802 } +nodeIDList[53292] = { index = 1654, size = 15802 } +nodeIDList[53324] = { index = 1655, size = 15802 } +nodeIDList[53332] = { index = 1656, size = 15802 } +nodeIDList[53456] = { index = 1657, size = 15802 } +nodeIDList[53558] = { index = 1658, size = 15802 } +nodeIDList[53574] = { index = 1659, size = 15802 } +nodeIDList[53630] = { index = 1660, size = 15802 } +nodeIDList[53667] = { index = 1661, size = 15802 } +nodeIDList[53677] = { index = 1662, size = 15802 } +nodeIDList[53732] = { index = 1663, size = 15802 } +nodeIDList[53793] = { index = 1664, size = 15802 } +nodeIDList[53809] = { index = 1665, size = 15802 } +nodeIDList[53882] = { index = 1666, size = 15802 } +nodeIDList[53945] = { index = 1667, size = 15802 } +nodeIDList[53957] = { index = 1668, size = 15802 } +nodeIDList[53987] = { index = 1669, size = 15802 } +nodeIDList[54043] = { index = 1670, size = 15802 } +nodeIDList[54144] = { index = 1671, size = 15802 } +nodeIDList[54267] = { index = 1672, size = 15802 } +nodeIDList[54338] = { index = 1673, size = 15802 } +nodeIDList[54354] = { index = 1674, size = 15802 } +nodeIDList[54396] = { index = 1675, size = 15802 } +nodeIDList[54447] = { index = 1676, size = 15802 } +nodeIDList[54452] = { index = 1677, size = 15802 } +nodeIDList[54574] = { index = 1678, size = 15802 } +nodeIDList[54645] = { index = 1679, size = 15802 } +nodeIDList[54657] = { index = 1680, size = 15802 } +nodeIDList[54667] = { index = 1681, size = 15802 } +nodeIDList[54862] = { index = 1682, size = 15802 } +nodeIDList[54868] = { index = 1683, size = 15802 } +nodeIDList[54872] = { index = 1684, size = 15802 } +nodeIDList[54880] = { index = 1685, size = 15802 } +nodeIDList[54954] = { index = 1686, size = 15802 } +nodeIDList[54974] = { index = 1687, size = 15802 } +nodeIDList[55021] = { index = 1688, size = 15802 } +nodeIDList[55085] = { index = 1689, size = 15802 } +nodeIDList[55166] = { index = 1690, size = 15802 } +nodeIDList[55247] = { index = 1691, size = 15802 } +nodeIDList[55307] = { index = 1692, size = 15802 } +nodeIDList[55332] = { index = 1693, size = 15802 } +nodeIDList[55373] = { index = 1694, size = 15802 } +nodeIDList[55392] = { index = 1695, size = 15802 } +nodeIDList[55414] = { index = 1696, size = 15802 } +nodeIDList[55420] = { index = 1697, size = 15802 } +nodeIDList[55558] = { index = 1698, size = 15802 } +nodeIDList[55563] = { index = 1699, size = 15802 } +nodeIDList[55571] = { index = 1700, size = 15802 } +nodeIDList[55643] = { index = 1701, size = 15802 } +nodeIDList[55647] = { index = 1702, size = 15802 } +nodeIDList[55648] = { index = 1703, size = 15802 } +nodeIDList[55649] = { index = 1704, size = 15802 } +nodeIDList[55676] = { index = 1705, size = 15802 } +nodeIDList[55743] = { index = 1706, size = 15802 } +nodeIDList[55750] = { index = 1707, size = 15802 } +nodeIDList[55804] = { index = 1708, size = 15802 } +nodeIDList[55854] = { index = 1709, size = 15802 } +nodeIDList[55866] = { index = 1710, size = 15802 } +nodeIDList[55880] = { index = 1711, size = 15802 } +nodeIDList[55906] = { index = 1712, size = 15802 } +nodeIDList[55913] = { index = 1713, size = 15802 } +nodeIDList[55926] = { index = 1714, size = 15802 } +nodeIDList[55993] = { index = 1715, size = 15802 } +nodeIDList[56001] = { index = 1716, size = 15802 } +nodeIDList[56066] = { index = 1717, size = 15802 } +nodeIDList[56090] = { index = 1718, size = 15802 } +nodeIDList[56149] = { index = 1719, size = 15802 } +nodeIDList[56153] = { index = 1720, size = 15802 } +nodeIDList[56158] = { index = 1721, size = 15802 } +nodeIDList[56174] = { index = 1722, size = 15802 } +nodeIDList[56186] = { index = 1723, size = 15802 } +nodeIDList[56231] = { index = 1724, size = 15802 } +nodeIDList[56295] = { index = 1725, size = 15802 } +nodeIDList[56355] = { index = 1726, size = 15802 } +nodeIDList[56370] = { index = 1727, size = 15802 } +nodeIDList[56381] = { index = 1728, size = 15802 } +nodeIDList[56460] = { index = 1729, size = 15802 } +nodeIDList[56509] = { index = 1730, size = 15802 } +nodeIDList[56589] = { index = 1731, size = 15802 } +nodeIDList[56646] = { index = 1732, size = 15802 } +nodeIDList[56659] = { index = 1733, size = 15802 } +nodeIDList[56671] = { index = 1734, size = 15802 } +nodeIDList[56803] = { index = 1735, size = 15802 } +nodeIDList[56807] = { index = 1736, size = 15802 } +nodeIDList[56814] = { index = 1737, size = 15802 } +nodeIDList[56855] = { index = 1738, size = 15802 } +nodeIDList[56920] = { index = 1739, size = 15802 } +nodeIDList[56922] = { index = 1740, size = 15802 } +nodeIDList[56982] = { index = 1741, size = 15802 } +nodeIDList[57011] = { index = 1742, size = 15802 } +nodeIDList[57030] = { index = 1743, size = 15802 } +nodeIDList[57044] = { index = 1744, size = 15802 } +nodeIDList[57061] = { index = 1745, size = 15802 } +nodeIDList[57080] = { index = 1746, size = 15802 } +nodeIDList[57167] = { index = 1747, size = 15802 } +nodeIDList[57226] = { index = 1748, size = 15802 } +nodeIDList[57240] = { index = 1749, size = 15802 } +nodeIDList[57248] = { index = 1750, size = 15802 } +nodeIDList[57259] = { index = 1751, size = 15802 } +nodeIDList[57264] = { index = 1752, size = 15802 } +nodeIDList[57266] = { index = 1753, size = 15802 } +nodeIDList[57283] = { index = 1754, size = 15802 } +nodeIDList[57362] = { index = 1755, size = 15802 } +nodeIDList[57404] = { index = 1756, size = 15802 } +nodeIDList[57449] = { index = 1757, size = 15802 } +nodeIDList[57457] = { index = 1758, size = 15802 } +nodeIDList[57565] = { index = 1759, size = 15802 } +nodeIDList[57615] = { index = 1760, size = 15802 } +nodeIDList[57651] = { index = 1761, size = 15802 } +nodeIDList[57736] = { index = 1762, size = 15802 } +nodeIDList[57746] = { index = 1763, size = 15802 } +nodeIDList[57819] = { index = 1764, size = 15802 } +nodeIDList[57923] = { index = 1765, size = 15802 } +nodeIDList[57953] = { index = 1766, size = 15802 } +nodeIDList[57992] = { index = 1767, size = 15802 } +nodeIDList[58069] = { index = 1768, size = 15802 } +nodeIDList[58210] = { index = 1769, size = 15802 } +nodeIDList[58214] = { index = 1770, size = 15802 } +nodeIDList[58244] = { index = 1771, size = 15802 } +nodeIDList[58271] = { index = 1772, size = 15802 } +nodeIDList[58288] = { index = 1773, size = 15802 } +nodeIDList[58336] = { index = 1774, size = 15802 } +nodeIDList[58402] = { index = 1775, size = 15802 } +nodeIDList[58453] = { index = 1776, size = 15802 } +nodeIDList[58474] = { index = 1777, size = 15802 } +nodeIDList[58541] = { index = 1778, size = 15802 } +nodeIDList[58545] = { index = 1779, size = 15802 } +nodeIDList[58603] = { index = 1780, size = 15802 } +nodeIDList[58604] = { index = 1781, size = 15802 } +nodeIDList[58649] = { index = 1782, size = 15802 } +nodeIDList[58763] = { index = 1783, size = 15802 } +nodeIDList[58803] = { index = 1784, size = 15802 } +nodeIDList[58833] = { index = 1785, size = 15802 } +nodeIDList[58854] = { index = 1786, size = 15802 } +nodeIDList[58869] = { index = 1787, size = 15802 } +nodeIDList[58968] = { index = 1788, size = 15802 } +nodeIDList[59005] = { index = 1789, size = 15802 } +nodeIDList[59009] = { index = 1790, size = 15802 } +nodeIDList[59016] = { index = 1791, size = 15802 } +nodeIDList[59070] = { index = 1792, size = 15802 } +nodeIDList[59220] = { index = 1793, size = 15802 } +nodeIDList[59252] = { index = 1794, size = 15802 } +nodeIDList[59306] = { index = 1795, size = 15802 } +nodeIDList[59370] = { index = 1796, size = 15802 } +nodeIDList[59482] = { index = 1797, size = 15802 } +nodeIDList[59494] = { index = 1798, size = 15802 } +nodeIDList[59606] = { index = 1799, size = 15802 } +nodeIDList[59650] = { index = 1800, size = 15802 } +nodeIDList[59699] = { index = 1801, size = 15802 } +nodeIDList[59718] = { index = 1802, size = 15802 } +nodeIDList[59728] = { index = 1803, size = 15802 } +nodeIDList[59833] = { index = 1804, size = 15802 } +nodeIDList[59861] = { index = 1805, size = 15802 } +nodeIDList[59928] = { index = 1806, size = 15802 } +nodeIDList[60090] = { index = 1807, size = 15802 } +nodeIDList[60145] = { index = 1808, size = 15802 } +nodeIDList[60153] = { index = 1809, size = 15802 } +nodeIDList[60169] = { index = 1810, size = 15802 } +nodeIDList[60204] = { index = 1811, size = 15802 } +nodeIDList[60259] = { index = 1812, size = 15802 } +nodeIDList[60388] = { index = 1813, size = 15802 } +nodeIDList[60398] = { index = 1814, size = 15802 } +nodeIDList[60405] = { index = 1815, size = 15802 } +nodeIDList[60440] = { index = 1816, size = 15802 } +nodeIDList[60472] = { index = 1817, size = 15802 } +nodeIDList[60529] = { index = 1818, size = 15802 } +nodeIDList[60532] = { index = 1819, size = 15802 } +nodeIDList[60554] = { index = 1820, size = 15802 } +nodeIDList[60592] = { index = 1821, size = 15802 } +nodeIDList[60648] = { index = 1822, size = 15802 } +nodeIDList[60740] = { index = 1823, size = 15802 } +nodeIDList[60803] = { index = 1824, size = 15802 } +nodeIDList[60887] = { index = 1825, size = 15802 } +nodeIDList[60942] = { index = 1826, size = 15802 } +nodeIDList[60949] = { index = 1827, size = 15802 } +nodeIDList[60963] = { index = 1828, size = 15802 } +nodeIDList[60989] = { index = 1829, size = 15802 } +nodeIDList[61007] = { index = 1830, size = 15802 } +nodeIDList[61050] = { index = 1831, size = 15802 } +nodeIDList[61217] = { index = 1832, size = 15802 } +nodeIDList[61262] = { index = 1833, size = 15802 } +nodeIDList[61264] = { index = 1834, size = 15802 } +nodeIDList[61283] = { index = 1835, size = 15802 } +nodeIDList[61306] = { index = 1836, size = 15802 } +nodeIDList[61320] = { index = 1837, size = 15802 } +nodeIDList[61327] = { index = 1838, size = 15802 } +nodeIDList[61351] = { index = 1839, size = 15802 } +nodeIDList[61388] = { index = 1840, size = 15802 } +nodeIDList[61471] = { index = 1841, size = 15802 } +nodeIDList[61525] = { index = 1842, size = 15802 } +nodeIDList[61573] = { index = 1843, size = 15802 } +nodeIDList[61602] = { index = 1844, size = 15802 } +nodeIDList[61636] = { index = 1845, size = 15802 } +nodeIDList[61653] = { index = 1846, size = 15802 } +nodeIDList[61804] = { index = 1847, size = 15802 } +nodeIDList[61868] = { index = 1848, size = 15802 } +nodeIDList[61875] = { index = 1849, size = 15802 } +nodeIDList[61950] = { index = 1850, size = 15802 } +nodeIDList[62017] = { index = 1851, size = 15802 } +nodeIDList[62021] = { index = 1852, size = 15802 } +nodeIDList[62042] = { index = 1853, size = 15802 } +nodeIDList[62069] = { index = 1854, size = 15802 } +nodeIDList[62103] = { index = 1855, size = 15802 } +nodeIDList[62108] = { index = 1856, size = 15802 } +nodeIDList[62109] = { index = 1857, size = 15802 } +nodeIDList[62214] = { index = 1858, size = 15802 } +nodeIDList[62217] = { index = 1859, size = 15802 } +nodeIDList[62303] = { index = 1860, size = 15802 } +nodeIDList[62319] = { index = 1861, size = 15802 } +nodeIDList[62363] = { index = 1862, size = 15802 } +nodeIDList[62429] = { index = 1863, size = 15802 } +nodeIDList[62480] = { index = 1864, size = 15802 } +nodeIDList[62490] = { index = 1865, size = 15802 } +nodeIDList[62530] = { index = 1866, size = 15802 } +nodeIDList[62662] = { index = 1867, size = 15802 } +nodeIDList[62694] = { index = 1868, size = 15802 } +nodeIDList[62697] = { index = 1869, size = 15802 } +nodeIDList[62712] = { index = 1870, size = 15802 } +nodeIDList[62721] = { index = 1871, size = 15802 } +nodeIDList[62744] = { index = 1872, size = 15802 } +nodeIDList[62767] = { index = 1873, size = 15802 } +nodeIDList[62795] = { index = 1874, size = 15802 } +nodeIDList[62831] = { index = 1875, size = 15802 } +nodeIDList[62879] = { index = 1876, size = 15802 } +nodeIDList[62970] = { index = 1877, size = 15802 } +nodeIDList[63027] = { index = 1878, size = 15802 } +nodeIDList[63039] = { index = 1879, size = 15802 } +nodeIDList[63048] = { index = 1880, size = 15802 } +nodeIDList[63067] = { index = 1881, size = 15802 } +nodeIDList[63138] = { index = 1882, size = 15802 } +nodeIDList[63139] = { index = 1883, size = 15802 } +nodeIDList[63194] = { index = 1884, size = 15802 } +nodeIDList[63228] = { index = 1885, size = 15802 } +nodeIDList[63282] = { index = 1886, size = 15802 } +nodeIDList[63306] = { index = 1887, size = 15802 } +nodeIDList[63398] = { index = 1888, size = 15802 } +nodeIDList[63413] = { index = 1889, size = 15802 } +nodeIDList[63439] = { index = 1890, size = 15802 } +nodeIDList[63447] = { index = 1891, size = 15802 } +nodeIDList[63558] = { index = 1892, size = 15802 } +nodeIDList[63618] = { index = 1893, size = 15802 } +nodeIDList[63639] = { index = 1894, size = 15802 } +nodeIDList[63649] = { index = 1895, size = 15802 } +nodeIDList[63723] = { index = 1896, size = 15802 } +nodeIDList[63795] = { index = 1897, size = 15802 } +nodeIDList[63799] = { index = 1898, size = 15802 } +nodeIDList[63843] = { index = 1899, size = 15802 } +nodeIDList[63845] = { index = 1900, size = 15802 } +nodeIDList[63963] = { index = 1901, size = 15802 } +nodeIDList[63965] = { index = 1902, size = 15802 } +nodeIDList[64024] = { index = 1903, size = 15802 } +nodeIDList[64181] = { index = 1904, size = 15802 } +nodeIDList[64210] = { index = 1905, size = 15802 } +nodeIDList[64221] = { index = 1906, size = 15802 } +nodeIDList[64235] = { index = 1907, size = 15802 } +nodeIDList[64238] = { index = 1908, size = 15802 } +nodeIDList[64239] = { index = 1909, size = 15802 } +nodeIDList[64241] = { index = 1910, size = 15802 } +nodeIDList[64257] = { index = 1911, size = 15802 } +nodeIDList[64265] = { index = 1912, size = 15802 } +nodeIDList[64284] = { index = 1913, size = 15802 } +nodeIDList[64401] = { index = 1914, size = 15802 } +nodeIDList[64426] = { index = 1915, size = 15802 } +nodeIDList[64501] = { index = 1916, size = 15802 } +nodeIDList[64509] = { index = 1917, size = 15802 } +nodeIDList[64587] = { index = 1918, size = 15802 } +nodeIDList[64612] = { index = 1919, size = 15802 } +nodeIDList[64695] = { index = 1920, size = 15802 } +nodeIDList[64709] = { index = 1921, size = 15802 } +nodeIDList[64769] = { index = 1922, size = 15802 } +nodeIDList[64816] = { index = 1923, size = 15802 } +nodeIDList[64878] = { index = 1924, size = 15802 } +nodeIDList[64888] = { index = 1925, size = 15802 } +nodeIDList[65033] = { index = 1926, size = 15802 } +nodeIDList[65034] = { index = 1927, size = 15802 } +nodeIDList[65112] = { index = 1928, size = 15802 } +nodeIDList[65125] = { index = 1929, size = 15802 } +nodeIDList[65159] = { index = 1930, size = 15802 } +nodeIDList[65167] = { index = 1931, size = 15802 } +nodeIDList[65203] = { index = 1932, size = 15802 } +nodeIDList[65400] = { index = 1933, size = 15802 } +nodeIDList[65427] = { index = 1934, size = 15802 } +nodeIDList[65456] = { index = 1935, size = 15802 } +nodeIDList[65485] = { index = 1936, size = 15802 } nodeIDList["localIdToGlobalId"] = { } nodeIDList["localIdToGlobalId"][1] = { } nodeIDList["localIdToGlobalId"][1]["size"] = 116 @@ -1973,86 +1979,90 @@ nodeIDList["localIdToGlobalId"][1][34] = 34 nodeIDList["localIdToGlobalId"][1][35] = 35 nodeIDList["localIdToGlobalId"][1][36] = 36 nodeIDList["localIdToGlobalId"][1][37] = 37 -nodeIDList["localIdToGlobalId"][1][96] = 96 -nodeIDList["localIdToGlobalId"][1][97] = 97 -nodeIDList["localIdToGlobalId"][1][98] = 98 -nodeIDList["localIdToGlobalId"][1][99] = 99 -nodeIDList["localIdToGlobalId"][1][100] = 100 -nodeIDList["localIdToGlobalId"][1][101] = 101 -nodeIDList["localIdToGlobalId"][1][102] = 102 -nodeIDList["localIdToGlobalId"][1][103] = 103 -nodeIDList["localIdToGlobalId"][1][104] = 104 -nodeIDList["localIdToGlobalId"][1][105] = 105 -nodeIDList["localIdToGlobalId"][1][106] = 106 -nodeIDList["localIdToGlobalId"][1][107] = 107 -nodeIDList["localIdToGlobalId"][1][108] = 108 -nodeIDList["localIdToGlobalId"][1][109] = 109 -nodeIDList["localIdToGlobalId"][1][110] = 110 -nodeIDList["localIdToGlobalId"][1][111] = 111 -nodeIDList["localIdToGlobalId"][1][112] = 112 -nodeIDList["localIdToGlobalId"][1][113] = 113 -nodeIDList["localIdToGlobalId"][1][114] = 114 -nodeIDList["localIdToGlobalId"][1][115] = 115 -nodeIDList["localIdToGlobalId"][1][116] = 116 -nodeIDList["localIdToGlobalId"][1][117] = 117 -nodeIDList["localIdToGlobalId"][1][118] = 118 -nodeIDList["localIdToGlobalId"][1][119] = 119 -nodeIDList["localIdToGlobalId"][1][120] = 120 -nodeIDList["localIdToGlobalId"][1][121] = 121 -nodeIDList["localIdToGlobalId"][1][122] = 122 -nodeIDList["localIdToGlobalId"][1][123] = 123 -nodeIDList["localIdToGlobalId"][1][124] = 124 -nodeIDList["localIdToGlobalId"][1][125] = 125 -nodeIDList["localIdToGlobalId"][1][126] = 126 -nodeIDList["localIdToGlobalId"][1][127] = 127 -nodeIDList["localIdToGlobalId"][1][128] = 128 -nodeIDList["localIdToGlobalId"][1][129] = 129 -nodeIDList["localIdToGlobalId"][1][130] = 130 -nodeIDList["localIdToGlobalId"][1][131] = 131 -nodeIDList["localIdToGlobalId"][1][132] = 132 -nodeIDList["localIdToGlobalId"][1][133] = 133 -nodeIDList["localIdToGlobalId"][1][134] = 134 -nodeIDList["localIdToGlobalId"][1][135] = 135 -nodeIDList["localIdToGlobalId"][1][136] = 136 -nodeIDList["localIdToGlobalId"][1][137] = 137 -nodeIDList["localIdToGlobalId"][1][138] = 138 -nodeIDList["localIdToGlobalId"][1][139] = 139 -nodeIDList["localIdToGlobalId"][1][140] = 140 -nodeIDList["localIdToGlobalId"][1][141] = 141 -nodeIDList["localIdToGlobalId"][1][142] = 142 -nodeIDList["localIdToGlobalId"][1][143] = 143 -nodeIDList["localIdToGlobalId"][1][144] = 144 -nodeIDList["localIdToGlobalId"][1][145] = 145 -nodeIDList["localIdToGlobalId"][1][146] = 146 -nodeIDList["localIdToGlobalId"][1][147] = 147 -nodeIDList["localIdToGlobalId"][1][148] = 148 -nodeIDList["localIdToGlobalId"][1][149] = 149 -nodeIDList["localIdToGlobalId"][1][150] = 150 -nodeIDList["localIdToGlobalId"][1][151] = 151 -nodeIDList["localIdToGlobalId"][1][152] = 152 -nodeIDList["localIdToGlobalId"][1][153] = 153 -nodeIDList["localIdToGlobalId"][1][154] = 154 -nodeIDList["localIdToGlobalId"][1][155] = 155 -nodeIDList["localIdToGlobalId"][1][156] = 156 -nodeIDList["localIdToGlobalId"][1][157] = 157 -nodeIDList["localIdToGlobalId"][1][158] = 158 -nodeIDList["localIdToGlobalId"][1][159] = 159 -nodeIDList["localIdToGlobalId"][1][160] = 160 -nodeIDList["localIdToGlobalId"][1][161] = 161 -nodeIDList["localIdToGlobalId"][1][162] = 162 -nodeIDList["localIdToGlobalId"][1][163] = 163 -nodeIDList["localIdToGlobalId"][1][164] = 164 -nodeIDList["localIdToGlobalId"][1][165] = 165 -nodeIDList["localIdToGlobalId"][1][166] = 166 -nodeIDList["localIdToGlobalId"][1][167] = 167 -nodeIDList["localIdToGlobalId"][1][168] = 168 -nodeIDList["localIdToGlobalId"][1][169] = 169 -nodeIDList["localIdToGlobalId"][1][170] = 170 -nodeIDList["localIdToGlobalId"][1][171] = 171 -nodeIDList["localIdToGlobalId"][1][172] = 172 -nodeIDList["localIdToGlobalId"][1][173] = 173 +nodeIDList["localIdToGlobalId"][1][38] = 337 +nodeIDList["localIdToGlobalId"][1][39] = 338 +nodeIDList["localIdToGlobalId"][1][40] = 339 +nodeIDList["localIdToGlobalId"][1][41] = 340 +nodeIDList["localIdToGlobalId"][1][42] = 341 +nodeIDList["localIdToGlobalId"][1][43] = 342 +nodeIDList["localIdToGlobalId"][1][44] = 343 +nodeIDList["localIdToGlobalId"][1][45] = 344 +nodeIDList["localIdToGlobalId"][1][46] = 345 +nodeIDList["localIdToGlobalId"][1][47] = 346 +nodeIDList["localIdToGlobalId"][1][48] = 347 +nodeIDList["localIdToGlobalId"][1][49] = 348 +nodeIDList["localIdToGlobalId"][1][50] = 349 +nodeIDList["localIdToGlobalId"][1][51] = 350 +nodeIDList["localIdToGlobalId"][1][52] = 351 +nodeIDList["localIdToGlobalId"][1][53] = 352 +nodeIDList["localIdToGlobalId"][1][54] = 353 +nodeIDList["localIdToGlobalId"][1][55] = 354 +nodeIDList["localIdToGlobalId"][1][56] = 355 +nodeIDList["localIdToGlobalId"][1][57] = 356 +nodeIDList["localIdToGlobalId"][1][58] = 357 +nodeIDList["localIdToGlobalId"][1][59] = 358 +nodeIDList["localIdToGlobalId"][1][60] = 359 +nodeIDList["localIdToGlobalId"][1][61] = 360 +nodeIDList["localIdToGlobalId"][1][62] = 361 +nodeIDList["localIdToGlobalId"][1][63] = 362 +nodeIDList["localIdToGlobalId"][1][64] = 363 +nodeIDList["localIdToGlobalId"][1][65] = 364 +nodeIDList["localIdToGlobalId"][1][66] = 365 +nodeIDList["localIdToGlobalId"][1][67] = 366 +nodeIDList["localIdToGlobalId"][1][68] = 367 +nodeIDList["localIdToGlobalId"][1][69] = 368 +nodeIDList["localIdToGlobalId"][1][70] = 369 +nodeIDList["localIdToGlobalId"][1][71] = 370 +nodeIDList["localIdToGlobalId"][1][72] = 371 +nodeIDList["localIdToGlobalId"][1][73] = 372 +nodeIDList["localIdToGlobalId"][1][74] = 373 +nodeIDList["localIdToGlobalId"][1][75] = 374 +nodeIDList["localIdToGlobalId"][1][76] = 375 +nodeIDList["localIdToGlobalId"][1][77] = 376 +nodeIDList["localIdToGlobalId"][1][78] = 377 +nodeIDList["localIdToGlobalId"][1][79] = 378 +nodeIDList["localIdToGlobalId"][1][80] = 379 +nodeIDList["localIdToGlobalId"][1][81] = 380 +nodeIDList["localIdToGlobalId"][1][82] = 381 +nodeIDList["localIdToGlobalId"][1][83] = 382 +nodeIDList["localIdToGlobalId"][1][84] = 383 +nodeIDList["localIdToGlobalId"][1][85] = 384 +nodeIDList["localIdToGlobalId"][1][86] = 385 +nodeIDList["localIdToGlobalId"][1][87] = 386 +nodeIDList["localIdToGlobalId"][1][88] = 387 +nodeIDList["localIdToGlobalId"][1][89] = 388 +nodeIDList["localIdToGlobalId"][1][90] = 389 +nodeIDList["localIdToGlobalId"][1][91] = 390 +nodeIDList["localIdToGlobalId"][1][92] = 391 +nodeIDList["localIdToGlobalId"][1][93] = 392 +nodeIDList["localIdToGlobalId"][1][94] = 393 +nodeIDList["localIdToGlobalId"][1][95] = 394 +nodeIDList["localIdToGlobalId"][1][96] = 395 +nodeIDList["localIdToGlobalId"][1][97] = 396 +nodeIDList["localIdToGlobalId"][1][98] = 397 +nodeIDList["localIdToGlobalId"][1][99] = 398 +nodeIDList["localIdToGlobalId"][1][100] = 399 +nodeIDList["localIdToGlobalId"][1][101] = 400 +nodeIDList["localIdToGlobalId"][1][102] = 401 +nodeIDList["localIdToGlobalId"][1][103] = 402 +nodeIDList["localIdToGlobalId"][1][104] = 403 +nodeIDList["localIdToGlobalId"][1][105] = 404 +nodeIDList["localIdToGlobalId"][1][106] = 405 +nodeIDList["localIdToGlobalId"][1][107] = 406 +nodeIDList["localIdToGlobalId"][1][108] = 407 +nodeIDList["localIdToGlobalId"][1][109] = 408 +nodeIDList["localIdToGlobalId"][1][110] = 409 +nodeIDList["localIdToGlobalId"][1][111] = 410 +nodeIDList["localIdToGlobalId"][1][112] = 411 +nodeIDList["localIdToGlobalId"][1][113] = 412 +nodeIDList["localIdToGlobalId"][1][114] = 413 +nodeIDList["localIdToGlobalId"][1][115] = 414 nodeIDList["localIdToGlobalId"][2] = { } nodeIDList["localIdToGlobalId"][2]["size"] = 31 +nodeIDList["localIdToGlobalId"][2][0] = 415 +nodeIDList["localIdToGlobalId"][2][1] = 416 +nodeIDList["localIdToGlobalId"][2][2] = 417 +nodeIDList["localIdToGlobalId"][2][3] = 418 nodeIDList["localIdToGlobalId"][2][38] = 38 nodeIDList["localIdToGlobalId"][2][39] = 39 nodeIDList["localIdToGlobalId"][2][40] = 40 @@ -2080,12 +2090,12 @@ nodeIDList["localIdToGlobalId"][2][61] = 61 nodeIDList["localIdToGlobalId"][2][62] = 62 nodeIDList["localIdToGlobalId"][2][63] = 63 nodeIDList["localIdToGlobalId"][2][64] = 64 -nodeIDList["localIdToGlobalId"][2][174] = 174 -nodeIDList["localIdToGlobalId"][2][175] = 175 -nodeIDList["localIdToGlobalId"][2][176] = 176 -nodeIDList["localIdToGlobalId"][2][177] = 177 nodeIDList["localIdToGlobalId"][3] = { } nodeIDList["localIdToGlobalId"][3]["size"] = 31 +nodeIDList["localIdToGlobalId"][3][0] = 419 +nodeIDList["localIdToGlobalId"][3][1] = 420 +nodeIDList["localIdToGlobalId"][3][2] = 421 +nodeIDList["localIdToGlobalId"][3][3] = 422 nodeIDList["localIdToGlobalId"][3][65] = 65 nodeIDList["localIdToGlobalId"][3][66] = 66 nodeIDList["localIdToGlobalId"][3][67] = 67 @@ -2113,114 +2123,560 @@ nodeIDList["localIdToGlobalId"][3][88] = 88 nodeIDList["localIdToGlobalId"][3][89] = 89 nodeIDList["localIdToGlobalId"][3][90] = 90 nodeIDList["localIdToGlobalId"][3][91] = 91 -nodeIDList["localIdToGlobalId"][3][178] = 178 -nodeIDList["localIdToGlobalId"][3][179] = 179 -nodeIDList["localIdToGlobalId"][3][180] = 180 -nodeIDList["localIdToGlobalId"][3][181] = 181 nodeIDList["localIdToGlobalId"][4] = { } nodeIDList["localIdToGlobalId"][4]["size"] = 21 +nodeIDList["localIdToGlobalId"][4][0] = 423 +nodeIDList["localIdToGlobalId"][4][1] = 424 +nodeIDList["localIdToGlobalId"][4][2] = 425 +nodeIDList["localIdToGlobalId"][4][3] = 426 +nodeIDList["localIdToGlobalId"][4][4] = 427 +nodeIDList["localIdToGlobalId"][4][5] = 428 +nodeIDList["localIdToGlobalId"][4][6] = 429 +nodeIDList["localIdToGlobalId"][4][7] = 430 +nodeIDList["localIdToGlobalId"][4][8] = 431 +nodeIDList["localIdToGlobalId"][4][9] = 432 +nodeIDList["localIdToGlobalId"][4][10] = 433 +nodeIDList["localIdToGlobalId"][4][11] = 434 +nodeIDList["localIdToGlobalId"][4][12] = 435 +nodeIDList["localIdToGlobalId"][4][13] = 436 +nodeIDList["localIdToGlobalId"][4][14] = 437 +nodeIDList["localIdToGlobalId"][4][15] = 438 +nodeIDList["localIdToGlobalId"][4][16] = 439 +nodeIDList["localIdToGlobalId"][4][17] = 440 +nodeIDList["localIdToGlobalId"][4][18] = 441 nodeIDList["localIdToGlobalId"][4][92] = 92 nodeIDList["localIdToGlobalId"][4][93] = 93 -nodeIDList["localIdToGlobalId"][4][182] = 182 -nodeIDList["localIdToGlobalId"][4][183] = 183 -nodeIDList["localIdToGlobalId"][4][184] = 184 -nodeIDList["localIdToGlobalId"][4][185] = 185 -nodeIDList["localIdToGlobalId"][4][186] = 186 -nodeIDList["localIdToGlobalId"][4][187] = 187 -nodeIDList["localIdToGlobalId"][4][188] = 188 -nodeIDList["localIdToGlobalId"][4][189] = 189 -nodeIDList["localIdToGlobalId"][4][190] = 190 -nodeIDList["localIdToGlobalId"][4][191] = 191 -nodeIDList["localIdToGlobalId"][4][192] = 192 -nodeIDList["localIdToGlobalId"][4][193] = 193 -nodeIDList["localIdToGlobalId"][4][194] = 194 -nodeIDList["localIdToGlobalId"][4][195] = 195 -nodeIDList["localIdToGlobalId"][4][196] = 196 -nodeIDList["localIdToGlobalId"][4][197] = 197 -nodeIDList["localIdToGlobalId"][4][198] = 198 -nodeIDList["localIdToGlobalId"][4][199] = 199 -nodeIDList["localIdToGlobalId"][4][200] = 200 nodeIDList["localIdToGlobalId"][5] = { } nodeIDList["localIdToGlobalId"][5]["size"] = 50 -nodeIDList["localIdToGlobalId"][5][201] = 201 -nodeIDList["localIdToGlobalId"][5][202] = 202 -nodeIDList["localIdToGlobalId"][5][203] = 203 -nodeIDList["localIdToGlobalId"][5][204] = 204 -nodeIDList["localIdToGlobalId"][5][205] = 205 -nodeIDList["localIdToGlobalId"][5][206] = 206 -nodeIDList["localIdToGlobalId"][5][207] = 207 -nodeIDList["localIdToGlobalId"][5][208] = 208 -nodeIDList["localIdToGlobalId"][5][209] = 209 -nodeIDList["localIdToGlobalId"][5][210] = 210 -nodeIDList["localIdToGlobalId"][5][211] = 211 -nodeIDList["localIdToGlobalId"][5][212] = 212 -nodeIDList["localIdToGlobalId"][5][213] = 213 -nodeIDList["localIdToGlobalId"][5][214] = 214 -nodeIDList["localIdToGlobalId"][5][215] = 215 -nodeIDList["localIdToGlobalId"][5][216] = 216 -nodeIDList["localIdToGlobalId"][5][217] = 217 -nodeIDList["localIdToGlobalId"][5][218] = 218 -nodeIDList["localIdToGlobalId"][5][219] = 219 -nodeIDList["localIdToGlobalId"][5][220] = 220 -nodeIDList["localIdToGlobalId"][5][221] = 221 -nodeIDList["localIdToGlobalId"][5][222] = 222 -nodeIDList["localIdToGlobalId"][5][223] = 223 -nodeIDList["localIdToGlobalId"][5][224] = 224 -nodeIDList["localIdToGlobalId"][5][225] = 225 -nodeIDList["localIdToGlobalId"][5][226] = 226 -nodeIDList["localIdToGlobalId"][5][227] = 227 -nodeIDList["localIdToGlobalId"][5][228] = 228 -nodeIDList["localIdToGlobalId"][5][229] = 229 -nodeIDList["localIdToGlobalId"][5][230] = 230 -nodeIDList["localIdToGlobalId"][5][231] = 231 -nodeIDList["localIdToGlobalId"][5][232] = 232 -nodeIDList["localIdToGlobalId"][5][233] = 233 -nodeIDList["localIdToGlobalId"][5][234] = 234 -nodeIDList["localIdToGlobalId"][5][235] = 235 -nodeIDList["localIdToGlobalId"][5][236] = 236 -nodeIDList["localIdToGlobalId"][5][237] = 237 -nodeIDList["localIdToGlobalId"][5][238] = 238 -nodeIDList["localIdToGlobalId"][5][239] = 239 -nodeIDList["localIdToGlobalId"][5][240] = 240 -nodeIDList["localIdToGlobalId"][5][241] = 241 -nodeIDList["localIdToGlobalId"][5][242] = 242 -nodeIDList["localIdToGlobalId"][5][243] = 243 -nodeIDList["localIdToGlobalId"][5][244] = 244 -nodeIDList["localIdToGlobalId"][5][245] = 245 -nodeIDList["localIdToGlobalId"][5][246] = 246 -nodeIDList["localIdToGlobalId"][5][247] = 247 -nodeIDList["localIdToGlobalId"][5][248] = 248 -nodeIDList["localIdToGlobalId"][5][249] = 249 -nodeIDList["localIdToGlobalId"][5][250] = 250 +nodeIDList["localIdToGlobalId"][5][0] = 442 +nodeIDList["localIdToGlobalId"][5][1] = 443 +nodeIDList["localIdToGlobalId"][5][2] = 444 +nodeIDList["localIdToGlobalId"][5][3] = 445 +nodeIDList["localIdToGlobalId"][5][4] = 446 +nodeIDList["localIdToGlobalId"][5][5] = 447 +nodeIDList["localIdToGlobalId"][5][6] = 448 +nodeIDList["localIdToGlobalId"][5][7] = 449 +nodeIDList["localIdToGlobalId"][5][8] = 450 +nodeIDList["localIdToGlobalId"][5][9] = 451 +nodeIDList["localIdToGlobalId"][5][10] = 452 +nodeIDList["localIdToGlobalId"][5][11] = 453 +nodeIDList["localIdToGlobalId"][5][12] = 454 +nodeIDList["localIdToGlobalId"][5][13] = 455 +nodeIDList["localIdToGlobalId"][5][14] = 456 +nodeIDList["localIdToGlobalId"][5][15] = 457 +nodeIDList["localIdToGlobalId"][5][16] = 458 +nodeIDList["localIdToGlobalId"][5][17] = 459 +nodeIDList["localIdToGlobalId"][5][18] = 460 +nodeIDList["localIdToGlobalId"][5][19] = 461 +nodeIDList["localIdToGlobalId"][5][20] = 462 +nodeIDList["localIdToGlobalId"][5][21] = 463 +nodeIDList["localIdToGlobalId"][5][22] = 464 +nodeIDList["localIdToGlobalId"][5][23] = 465 +nodeIDList["localIdToGlobalId"][5][24] = 466 +nodeIDList["localIdToGlobalId"][5][25] = 467 +nodeIDList["localIdToGlobalId"][5][26] = 468 +nodeIDList["localIdToGlobalId"][5][27] = 469 +nodeIDList["localIdToGlobalId"][5][28] = 470 +nodeIDList["localIdToGlobalId"][5][29] = 471 +nodeIDList["localIdToGlobalId"][5][30] = 472 +nodeIDList["localIdToGlobalId"][5][31] = 473 +nodeIDList["localIdToGlobalId"][5][32] = 474 +nodeIDList["localIdToGlobalId"][5][33] = 475 +nodeIDList["localIdToGlobalId"][5][34] = 476 +nodeIDList["localIdToGlobalId"][5][35] = 477 +nodeIDList["localIdToGlobalId"][5][36] = 478 +nodeIDList["localIdToGlobalId"][5][37] = 479 +nodeIDList["localIdToGlobalId"][5][38] = 480 +nodeIDList["localIdToGlobalId"][5][39] = 481 +nodeIDList["localIdToGlobalId"][5][40] = 482 +nodeIDList["localIdToGlobalId"][5][41] = 483 +nodeIDList["localIdToGlobalId"][5][42] = 484 +nodeIDList["localIdToGlobalId"][5][43] = 485 +nodeIDList["localIdToGlobalId"][5][44] = 486 +nodeIDList["localIdToGlobalId"][5][45] = 487 +nodeIDList["localIdToGlobalId"][5][46] = 488 +nodeIDList["localIdToGlobalId"][5][47] = 489 +nodeIDList["localIdToGlobalId"][5][48] = 490 +nodeIDList["localIdToGlobalId"][5][49] = 491 nodeIDList["localIdToGlobalId"][6] = { } nodeIDList["localIdToGlobalId"][6]["size"] = 29 -nodeIDList["localIdToGlobalId"][6][0] = 256 -nodeIDList["localIdToGlobalId"][6][1] = 257 -nodeIDList["localIdToGlobalId"][6][2] = 258 -nodeIDList["localIdToGlobalId"][6][3] = 259 -nodeIDList["localIdToGlobalId"][6][4] = 260 -nodeIDList["localIdToGlobalId"][6][5] = 261 -nodeIDList["localIdToGlobalId"][6][6] = 262 -nodeIDList["localIdToGlobalId"][6][7] = 263 -nodeIDList["localIdToGlobalId"][6][8] = 264 -nodeIDList["localIdToGlobalId"][6][9] = 265 -nodeIDList["localIdToGlobalId"][6][10] = 266 -nodeIDList["localIdToGlobalId"][6][11] = 267 -nodeIDList["localIdToGlobalId"][6][12] = 268 -nodeIDList["localIdToGlobalId"][6][13] = 269 -nodeIDList["localIdToGlobalId"][6][14] = 270 -nodeIDList["localIdToGlobalId"][6][15] = 271 -nodeIDList["localIdToGlobalId"][6][16] = 272 -nodeIDList["localIdToGlobalId"][6][17] = 273 -nodeIDList["localIdToGlobalId"][6][18] = 274 -nodeIDList["localIdToGlobalId"][6][19] = 275 -nodeIDList["localIdToGlobalId"][6][20] = 276 -nodeIDList["localIdToGlobalId"][6][21] = 277 +nodeIDList["localIdToGlobalId"][6][0] = 492 +nodeIDList["localIdToGlobalId"][6][1] = 493 +nodeIDList["localIdToGlobalId"][6][2] = 494 +nodeIDList["localIdToGlobalId"][6][3] = 495 +nodeIDList["localIdToGlobalId"][6][4] = 496 +nodeIDList["localIdToGlobalId"][6][5] = 497 +nodeIDList["localIdToGlobalId"][6][6] = 498 +nodeIDList["localIdToGlobalId"][6][7] = 499 +nodeIDList["localIdToGlobalId"][6][8] = 500 +nodeIDList["localIdToGlobalId"][6][9] = 501 +nodeIDList["localIdToGlobalId"][6][10] = 502 +nodeIDList["localIdToGlobalId"][6][11] = 503 +nodeIDList["localIdToGlobalId"][6][12] = 504 +nodeIDList["localIdToGlobalId"][6][13] = 505 +nodeIDList["localIdToGlobalId"][6][14] = 506 +nodeIDList["localIdToGlobalId"][6][15] = 507 +nodeIDList["localIdToGlobalId"][6][16] = 508 +nodeIDList["localIdToGlobalId"][6][17] = 509 +nodeIDList["localIdToGlobalId"][6][18] = 510 +nodeIDList["localIdToGlobalId"][6][19] = 511 +nodeIDList["localIdToGlobalId"][6][20] = 512 +nodeIDList["localIdToGlobalId"][6][21] = 513 +nodeIDList["localIdToGlobalId"][6][22] = 514 +nodeIDList["localIdToGlobalId"][6][23] = 515 +nodeIDList["localIdToGlobalId"][6][24] = 516 +nodeIDList["localIdToGlobalId"][6][25] = 517 +nodeIDList["localIdToGlobalId"][6][26] = 518 nodeIDList["localIdToGlobalId"][6][94] = 94 nodeIDList["localIdToGlobalId"][6][95] = 95 -nodeIDList["localIdToGlobalId"][6][251] = 251 -nodeIDList["localIdToGlobalId"][6][252] = 252 -nodeIDList["localIdToGlobalId"][6][253] = 253 -nodeIDList["localIdToGlobalId"][6][254] = 254 -nodeIDList["localIdToGlobalId"][6][255] = 255 +nodeIDList["localIdToGlobalId"][7] = { } +nodeIDList["localIdToGlobalId"][7]["size"] = 92 +nodeIDList["localIdToGlobalId"][7][0] = 519 +nodeIDList["localIdToGlobalId"][7][1] = 527 +nodeIDList["localIdToGlobalId"][7][2] = 528 +nodeIDList["localIdToGlobalId"][7][3] = 529 +nodeIDList["localIdToGlobalId"][7][4] = 530 +nodeIDList["localIdToGlobalId"][7][5] = 531 +nodeIDList["localIdToGlobalId"][7][6] = 532 +nodeIDList["localIdToGlobalId"][7][7] = 533 +nodeIDList["localIdToGlobalId"][7][8] = 534 +nodeIDList["localIdToGlobalId"][7][9] = 535 +nodeIDList["localIdToGlobalId"][7][10] = 536 +nodeIDList["localIdToGlobalId"][7][11] = 537 +nodeIDList["localIdToGlobalId"][7][12] = 538 +nodeIDList["localIdToGlobalId"][7][13] = 539 +nodeIDList["localIdToGlobalId"][7][14] = 540 +nodeIDList["localIdToGlobalId"][7][15] = 541 +nodeIDList["localIdToGlobalId"][7][16] = 542 +nodeIDList["localIdToGlobalId"][7][17] = 543 +nodeIDList["localIdToGlobalId"][7][18] = 544 +nodeIDList["localIdToGlobalId"][7][19] = 545 +nodeIDList["localIdToGlobalId"][7][20] = 546 +nodeIDList["localIdToGlobalId"][7][21] = 547 +nodeIDList["localIdToGlobalId"][7][22] = 548 +nodeIDList["localIdToGlobalId"][7][23] = 549 +nodeIDList["localIdToGlobalId"][7][24] = 550 +nodeIDList["localIdToGlobalId"][7][25] = 551 +nodeIDList["localIdToGlobalId"][7][26] = 552 +nodeIDList["localIdToGlobalId"][7][27] = 553 +nodeIDList["localIdToGlobalId"][7][28] = 554 +nodeIDList["localIdToGlobalId"][7][29] = 555 +nodeIDList["localIdToGlobalId"][7][30] = 556 +nodeIDList["localIdToGlobalId"][7][31] = 557 +nodeIDList["localIdToGlobalId"][7][32] = 558 +nodeIDList["localIdToGlobalId"][7][33] = 559 +nodeIDList["localIdToGlobalId"][7][34] = 560 +nodeIDList["localIdToGlobalId"][7][35] = 561 +nodeIDList["localIdToGlobalId"][7][36] = 562 +nodeIDList["localIdToGlobalId"][7][37] = 563 +nodeIDList["localIdToGlobalId"][7][38] = 564 +nodeIDList["localIdToGlobalId"][7][39] = 565 +nodeIDList["localIdToGlobalId"][7][96] = 96 +nodeIDList["localIdToGlobalId"][7][97] = 97 +nodeIDList["localIdToGlobalId"][7][98] = 98 +nodeIDList["localIdToGlobalId"][7][99] = 99 +nodeIDList["localIdToGlobalId"][7][100] = 100 +nodeIDList["localIdToGlobalId"][7][101] = 101 +nodeIDList["localIdToGlobalId"][7][102] = 102 +nodeIDList["localIdToGlobalId"][7][103] = 103 +nodeIDList["localIdToGlobalId"][7][104] = 104 +nodeIDList["localIdToGlobalId"][7][105] = 105 +nodeIDList["localIdToGlobalId"][7][106] = 106 +nodeIDList["localIdToGlobalId"][7][107] = 107 +nodeIDList["localIdToGlobalId"][7][108] = 108 +nodeIDList["localIdToGlobalId"][7][109] = 109 +nodeIDList["localIdToGlobalId"][7][110] = 110 +nodeIDList["localIdToGlobalId"][7][111] = 111 +nodeIDList["localIdToGlobalId"][7][112] = 112 +nodeIDList["localIdToGlobalId"][7][113] = 113 +nodeIDList["localIdToGlobalId"][7][114] = 114 +nodeIDList["localIdToGlobalId"][7][115] = 115 +nodeIDList["localIdToGlobalId"][7][116] = 116 +nodeIDList["localIdToGlobalId"][7][117] = 117 +nodeIDList["localIdToGlobalId"][7][118] = 118 +nodeIDList["localIdToGlobalId"][7][119] = 119 +nodeIDList["localIdToGlobalId"][7][120] = 120 +nodeIDList["localIdToGlobalId"][7][121] = 121 +nodeIDList["localIdToGlobalId"][7][122] = 122 +nodeIDList["localIdToGlobalId"][7][123] = 123 +nodeIDList["localIdToGlobalId"][7][124] = 124 +nodeIDList["localIdToGlobalId"][7][125] = 125 +nodeIDList["localIdToGlobalId"][7][126] = 126 +nodeIDList["localIdToGlobalId"][7][127] = 127 +nodeIDList["localIdToGlobalId"][7][128] = 128 +nodeIDList["localIdToGlobalId"][7][129] = 129 +nodeIDList["localIdToGlobalId"][7][130] = 130 +nodeIDList["localIdToGlobalId"][7][131] = 131 +nodeIDList["localIdToGlobalId"][7][132] = 132 +nodeIDList["localIdToGlobalId"][7][133] = 133 +nodeIDList["localIdToGlobalId"][7][134] = 134 +nodeIDList["localIdToGlobalId"][7][135] = 135 +nodeIDList["localIdToGlobalId"][7][136] = 136 +nodeIDList["localIdToGlobalId"][7][137] = 137 +nodeIDList["localIdToGlobalId"][7][138] = 138 +nodeIDList["localIdToGlobalId"][7][139] = 139 +nodeIDList["localIdToGlobalId"][7][140] = 140 +nodeIDList["localIdToGlobalId"][7][141] = 141 +nodeIDList["localIdToGlobalId"][7][142] = 142 +nodeIDList["localIdToGlobalId"][7][143] = 143 +nodeIDList["localIdToGlobalId"][7][144] = 144 +nodeIDList["localIdToGlobalId"][7][145] = 145 +nodeIDList["localIdToGlobalId"][7][146] = 146 +nodeIDList["localIdToGlobalId"][7][147] = 147 +nodeIDList["localIdToGlobalId"][8] = { } +nodeIDList["localIdToGlobalId"][8]["size"] = 83 +nodeIDList["localIdToGlobalId"][8][0] = 520 +nodeIDList["localIdToGlobalId"][8][1] = 566 +nodeIDList["localIdToGlobalId"][8][2] = 567 +nodeIDList["localIdToGlobalId"][8][3] = 568 +nodeIDList["localIdToGlobalId"][8][4] = 569 +nodeIDList["localIdToGlobalId"][8][5] = 570 +nodeIDList["localIdToGlobalId"][8][6] = 571 +nodeIDList["localIdToGlobalId"][8][7] = 572 +nodeIDList["localIdToGlobalId"][8][8] = 573 +nodeIDList["localIdToGlobalId"][8][9] = 574 +nodeIDList["localIdToGlobalId"][8][10] = 575 +nodeIDList["localIdToGlobalId"][8][11] = 576 +nodeIDList["localIdToGlobalId"][8][12] = 577 +nodeIDList["localIdToGlobalId"][8][13] = 578 +nodeIDList["localIdToGlobalId"][8][14] = 579 +nodeIDList["localIdToGlobalId"][8][15] = 580 +nodeIDList["localIdToGlobalId"][8][16] = 581 +nodeIDList["localIdToGlobalId"][8][17] = 582 +nodeIDList["localIdToGlobalId"][8][18] = 583 +nodeIDList["localIdToGlobalId"][8][19] = 584 +nodeIDList["localIdToGlobalId"][8][20] = 585 +nodeIDList["localIdToGlobalId"][8][21] = 586 +nodeIDList["localIdToGlobalId"][8][22] = 587 +nodeIDList["localIdToGlobalId"][8][23] = 588 +nodeIDList["localIdToGlobalId"][8][24] = 589 +nodeIDList["localIdToGlobalId"][8][25] = 590 +nodeIDList["localIdToGlobalId"][8][26] = 591 +nodeIDList["localIdToGlobalId"][8][27] = 592 +nodeIDList["localIdToGlobalId"][8][28] = 593 +nodeIDList["localIdToGlobalId"][8][29] = 594 +nodeIDList["localIdToGlobalId"][8][30] = 595 +nodeIDList["localIdToGlobalId"][8][31] = 596 +nodeIDList["localIdToGlobalId"][8][32] = 597 +nodeIDList["localIdToGlobalId"][8][33] = 598 +nodeIDList["localIdToGlobalId"][8][34] = 599 +nodeIDList["localIdToGlobalId"][8][35] = 600 +nodeIDList["localIdToGlobalId"][8][36] = 601 +nodeIDList["localIdToGlobalId"][8][37] = 602 +nodeIDList["localIdToGlobalId"][8][38] = 603 +nodeIDList["localIdToGlobalId"][8][148] = 148 +nodeIDList["localIdToGlobalId"][8][149] = 149 +nodeIDList["localIdToGlobalId"][8][150] = 150 +nodeIDList["localIdToGlobalId"][8][151] = 151 +nodeIDList["localIdToGlobalId"][8][152] = 152 +nodeIDList["localIdToGlobalId"][8][153] = 153 +nodeIDList["localIdToGlobalId"][8][154] = 154 +nodeIDList["localIdToGlobalId"][8][155] = 155 +nodeIDList["localIdToGlobalId"][8][156] = 156 +nodeIDList["localIdToGlobalId"][8][157] = 157 +nodeIDList["localIdToGlobalId"][8][158] = 158 +nodeIDList["localIdToGlobalId"][8][159] = 159 +nodeIDList["localIdToGlobalId"][8][160] = 160 +nodeIDList["localIdToGlobalId"][8][161] = 161 +nodeIDList["localIdToGlobalId"][8][162] = 162 +nodeIDList["localIdToGlobalId"][8][163] = 163 +nodeIDList["localIdToGlobalId"][8][164] = 164 +nodeIDList["localIdToGlobalId"][8][165] = 165 +nodeIDList["localIdToGlobalId"][8][166] = 166 +nodeIDList["localIdToGlobalId"][8][167] = 167 +nodeIDList["localIdToGlobalId"][8][168] = 168 +nodeIDList["localIdToGlobalId"][8][169] = 169 +nodeIDList["localIdToGlobalId"][8][170] = 170 +nodeIDList["localIdToGlobalId"][8][171] = 171 +nodeIDList["localIdToGlobalId"][8][172] = 172 +nodeIDList["localIdToGlobalId"][8][173] = 173 +nodeIDList["localIdToGlobalId"][8][174] = 174 +nodeIDList["localIdToGlobalId"][8][175] = 175 +nodeIDList["localIdToGlobalId"][8][176] = 176 +nodeIDList["localIdToGlobalId"][8][177] = 177 +nodeIDList["localIdToGlobalId"][8][178] = 178 +nodeIDList["localIdToGlobalId"][8][179] = 179 +nodeIDList["localIdToGlobalId"][8][180] = 180 +nodeIDList["localIdToGlobalId"][8][181] = 181 +nodeIDList["localIdToGlobalId"][8][182] = 182 +nodeIDList["localIdToGlobalId"][8][183] = 183 +nodeIDList["localIdToGlobalId"][8][184] = 184 +nodeIDList["localIdToGlobalId"][8][185] = 185 +nodeIDList["localIdToGlobalId"][8][186] = 186 +nodeIDList["localIdToGlobalId"][8][187] = 187 +nodeIDList["localIdToGlobalId"][8][188] = 188 +nodeIDList["localIdToGlobalId"][8][189] = 189 +nodeIDList["localIdToGlobalId"][8][190] = 190 +nodeIDList["localIdToGlobalId"][8][191] = 191 +nodeIDList["localIdToGlobalId"][9] = { } +nodeIDList["localIdToGlobalId"][9]["size"] = 79 +nodeIDList["localIdToGlobalId"][9][0] = 521 +nodeIDList["localIdToGlobalId"][9][1] = 604 +nodeIDList["localIdToGlobalId"][9][2] = 605 +nodeIDList["localIdToGlobalId"][9][3] = 606 +nodeIDList["localIdToGlobalId"][9][4] = 607 +nodeIDList["localIdToGlobalId"][9][5] = 608 +nodeIDList["localIdToGlobalId"][9][6] = 609 +nodeIDList["localIdToGlobalId"][9][7] = 610 +nodeIDList["localIdToGlobalId"][9][8] = 611 +nodeIDList["localIdToGlobalId"][9][9] = 612 +nodeIDList["localIdToGlobalId"][9][10] = 613 +nodeIDList["localIdToGlobalId"][9][11] = 614 +nodeIDList["localIdToGlobalId"][9][12] = 615 +nodeIDList["localIdToGlobalId"][9][13] = 616 +nodeIDList["localIdToGlobalId"][9][14] = 617 +nodeIDList["localIdToGlobalId"][9][15] = 618 +nodeIDList["localIdToGlobalId"][9][16] = 619 +nodeIDList["localIdToGlobalId"][9][17] = 620 +nodeIDList["localIdToGlobalId"][9][18] = 621 +nodeIDList["localIdToGlobalId"][9][19] = 622 +nodeIDList["localIdToGlobalId"][9][20] = 623 +nodeIDList["localIdToGlobalId"][9][21] = 624 +nodeIDList["localIdToGlobalId"][9][22] = 625 +nodeIDList["localIdToGlobalId"][9][23] = 626 +nodeIDList["localIdToGlobalId"][9][24] = 627 +nodeIDList["localIdToGlobalId"][9][25] = 628 +nodeIDList["localIdToGlobalId"][9][26] = 629 +nodeIDList["localIdToGlobalId"][9][27] = 630 +nodeIDList["localIdToGlobalId"][9][28] = 631 +nodeIDList["localIdToGlobalId"][9][29] = 632 +nodeIDList["localIdToGlobalId"][9][30] = 633 +nodeIDList["localIdToGlobalId"][9][31] = 634 +nodeIDList["localIdToGlobalId"][9][32] = 635 +nodeIDList["localIdToGlobalId"][9][33] = 636 +nodeIDList["localIdToGlobalId"][9][34] = 637 +nodeIDList["localIdToGlobalId"][9][35] = 638 +nodeIDList["localIdToGlobalId"][9][36] = 639 +nodeIDList["localIdToGlobalId"][9][192] = 192 +nodeIDList["localIdToGlobalId"][9][193] = 193 +nodeIDList["localIdToGlobalId"][9][194] = 194 +nodeIDList["localIdToGlobalId"][9][195] = 195 +nodeIDList["localIdToGlobalId"][9][196] = 196 +nodeIDList["localIdToGlobalId"][9][197] = 197 +nodeIDList["localIdToGlobalId"][9][198] = 198 +nodeIDList["localIdToGlobalId"][9][199] = 199 +nodeIDList["localIdToGlobalId"][9][200] = 200 +nodeIDList["localIdToGlobalId"][9][201] = 201 +nodeIDList["localIdToGlobalId"][9][202] = 202 +nodeIDList["localIdToGlobalId"][9][203] = 203 +nodeIDList["localIdToGlobalId"][9][204] = 204 +nodeIDList["localIdToGlobalId"][9][205] = 205 +nodeIDList["localIdToGlobalId"][9][206] = 206 +nodeIDList["localIdToGlobalId"][9][207] = 207 +nodeIDList["localIdToGlobalId"][9][208] = 208 +nodeIDList["localIdToGlobalId"][9][209] = 209 +nodeIDList["localIdToGlobalId"][9][210] = 210 +nodeIDList["localIdToGlobalId"][9][211] = 211 +nodeIDList["localIdToGlobalId"][9][212] = 212 +nodeIDList["localIdToGlobalId"][9][213] = 213 +nodeIDList["localIdToGlobalId"][9][214] = 214 +nodeIDList["localIdToGlobalId"][9][215] = 215 +nodeIDList["localIdToGlobalId"][9][216] = 216 +nodeIDList["localIdToGlobalId"][9][217] = 217 +nodeIDList["localIdToGlobalId"][9][218] = 218 +nodeIDList["localIdToGlobalId"][9][219] = 219 +nodeIDList["localIdToGlobalId"][9][220] = 220 +nodeIDList["localIdToGlobalId"][9][221] = 221 +nodeIDList["localIdToGlobalId"][9][222] = 222 +nodeIDList["localIdToGlobalId"][9][223] = 223 +nodeIDList["localIdToGlobalId"][9][224] = 224 +nodeIDList["localIdToGlobalId"][9][225] = 225 +nodeIDList["localIdToGlobalId"][9][226] = 226 +nodeIDList["localIdToGlobalId"][9][227] = 227 +nodeIDList["localIdToGlobalId"][9][228] = 228 +nodeIDList["localIdToGlobalId"][9][229] = 229 +nodeIDList["localIdToGlobalId"][9][230] = 230 +nodeIDList["localIdToGlobalId"][9][231] = 231 +nodeIDList["localIdToGlobalId"][9][232] = 232 +nodeIDList["localIdToGlobalId"][9][233] = 233 +nodeIDList["localIdToGlobalId"][10] = { } +nodeIDList["localIdToGlobalId"][10]["size"] = 64 +nodeIDList["localIdToGlobalId"][10][0] = 256 +nodeIDList["localIdToGlobalId"][10][1] = 257 +nodeIDList["localIdToGlobalId"][10][2] = 258 +nodeIDList["localIdToGlobalId"][10][3] = 259 +nodeIDList["localIdToGlobalId"][10][4] = 260 +nodeIDList["localIdToGlobalId"][10][5] = 261 +nodeIDList["localIdToGlobalId"][10][6] = 522 +nodeIDList["localIdToGlobalId"][10][7] = 640 +nodeIDList["localIdToGlobalId"][10][8] = 641 +nodeIDList["localIdToGlobalId"][10][9] = 642 +nodeIDList["localIdToGlobalId"][10][10] = 643 +nodeIDList["localIdToGlobalId"][10][11] = 644 +nodeIDList["localIdToGlobalId"][10][12] = 645 +nodeIDList["localIdToGlobalId"][10][13] = 646 +nodeIDList["localIdToGlobalId"][10][14] = 647 +nodeIDList["localIdToGlobalId"][10][15] = 648 +nodeIDList["localIdToGlobalId"][10][16] = 649 +nodeIDList["localIdToGlobalId"][10][17] = 650 +nodeIDList["localIdToGlobalId"][10][18] = 651 +nodeIDList["localIdToGlobalId"][10][19] = 652 +nodeIDList["localIdToGlobalId"][10][20] = 653 +nodeIDList["localIdToGlobalId"][10][21] = 654 +nodeIDList["localIdToGlobalId"][10][22] = 655 +nodeIDList["localIdToGlobalId"][10][23] = 656 +nodeIDList["localIdToGlobalId"][10][24] = 657 +nodeIDList["localIdToGlobalId"][10][25] = 658 +nodeIDList["localIdToGlobalId"][10][26] = 659 +nodeIDList["localIdToGlobalId"][10][27] = 660 +nodeIDList["localIdToGlobalId"][10][28] = 661 +nodeIDList["localIdToGlobalId"][10][29] = 662 +nodeIDList["localIdToGlobalId"][10][30] = 663 +nodeIDList["localIdToGlobalId"][10][31] = 664 +nodeIDList["localIdToGlobalId"][10][32] = 665 +nodeIDList["localIdToGlobalId"][10][33] = 666 +nodeIDList["localIdToGlobalId"][10][34] = 667 +nodeIDList["localIdToGlobalId"][10][35] = 668 +nodeIDList["localIdToGlobalId"][10][36] = 669 +nodeIDList["localIdToGlobalId"][10][37] = 670 +nodeIDList["localIdToGlobalId"][10][38] = 671 +nodeIDList["localIdToGlobalId"][10][39] = 672 +nodeIDList["localIdToGlobalId"][10][40] = 673 +nodeIDList["localIdToGlobalId"][10][41] = 674 +nodeIDList["localIdToGlobalId"][10][234] = 234 +nodeIDList["localIdToGlobalId"][10][235] = 235 +nodeIDList["localIdToGlobalId"][10][236] = 236 +nodeIDList["localIdToGlobalId"][10][237] = 237 +nodeIDList["localIdToGlobalId"][10][238] = 238 +nodeIDList["localIdToGlobalId"][10][239] = 239 +nodeIDList["localIdToGlobalId"][10][240] = 240 +nodeIDList["localIdToGlobalId"][10][241] = 241 +nodeIDList["localIdToGlobalId"][10][242] = 242 +nodeIDList["localIdToGlobalId"][10][243] = 243 +nodeIDList["localIdToGlobalId"][10][244] = 244 +nodeIDList["localIdToGlobalId"][10][245] = 245 +nodeIDList["localIdToGlobalId"][10][246] = 246 +nodeIDList["localIdToGlobalId"][10][247] = 247 +nodeIDList["localIdToGlobalId"][10][248] = 248 +nodeIDList["localIdToGlobalId"][10][249] = 249 +nodeIDList["localIdToGlobalId"][10][250] = 250 +nodeIDList["localIdToGlobalId"][10][251] = 251 +nodeIDList["localIdToGlobalId"][10][252] = 252 +nodeIDList["localIdToGlobalId"][10][253] = 253 +nodeIDList["localIdToGlobalId"][10][254] = 254 +nodeIDList["localIdToGlobalId"][10][255] = 255 +nodeIDList["localIdToGlobalId"][11] = { } +nodeIDList["localIdToGlobalId"][11]["size"] = 122 +nodeIDList["localIdToGlobalId"][11][0] = 262 +nodeIDList["localIdToGlobalId"][11][1] = 263 +nodeIDList["localIdToGlobalId"][11][2] = 264 +nodeIDList["localIdToGlobalId"][11][3] = 265 +nodeIDList["localIdToGlobalId"][11][4] = 266 +nodeIDList["localIdToGlobalId"][11][5] = 267 +nodeIDList["localIdToGlobalId"][11][6] = 268 +nodeIDList["localIdToGlobalId"][11][7] = 269 +nodeIDList["localIdToGlobalId"][11][8] = 270 +nodeIDList["localIdToGlobalId"][11][9] = 271 +nodeIDList["localIdToGlobalId"][11][10] = 272 +nodeIDList["localIdToGlobalId"][11][11] = 273 +nodeIDList["localIdToGlobalId"][11][12] = 274 +nodeIDList["localIdToGlobalId"][11][13] = 275 +nodeIDList["localIdToGlobalId"][11][14] = 276 +nodeIDList["localIdToGlobalId"][11][15] = 277 +nodeIDList["localIdToGlobalId"][11][16] = 278 +nodeIDList["localIdToGlobalId"][11][17] = 279 +nodeIDList["localIdToGlobalId"][11][18] = 280 +nodeIDList["localIdToGlobalId"][11][19] = 281 +nodeIDList["localIdToGlobalId"][11][20] = 282 +nodeIDList["localIdToGlobalId"][11][21] = 283 +nodeIDList["localIdToGlobalId"][11][22] = 284 +nodeIDList["localIdToGlobalId"][11][23] = 285 +nodeIDList["localIdToGlobalId"][11][24] = 286 +nodeIDList["localIdToGlobalId"][11][25] = 287 +nodeIDList["localIdToGlobalId"][11][26] = 288 +nodeIDList["localIdToGlobalId"][11][27] = 289 +nodeIDList["localIdToGlobalId"][11][28] = 290 +nodeIDList["localIdToGlobalId"][11][29] = 291 +nodeIDList["localIdToGlobalId"][11][30] = 292 +nodeIDList["localIdToGlobalId"][11][31] = 293 +nodeIDList["localIdToGlobalId"][11][32] = 294 +nodeIDList["localIdToGlobalId"][11][33] = 295 +nodeIDList["localIdToGlobalId"][11][34] = 296 +nodeIDList["localIdToGlobalId"][11][35] = 297 +nodeIDList["localIdToGlobalId"][11][36] = 298 +nodeIDList["localIdToGlobalId"][11][37] = 299 +nodeIDList["localIdToGlobalId"][11][38] = 300 +nodeIDList["localIdToGlobalId"][11][39] = 301 +nodeIDList["localIdToGlobalId"][11][40] = 302 +nodeIDList["localIdToGlobalId"][11][41] = 303 +nodeIDList["localIdToGlobalId"][11][42] = 304 +nodeIDList["localIdToGlobalId"][11][43] = 305 +nodeIDList["localIdToGlobalId"][11][44] = 306 +nodeIDList["localIdToGlobalId"][11][45] = 307 +nodeIDList["localIdToGlobalId"][11][46] = 308 +nodeIDList["localIdToGlobalId"][11][47] = 309 +nodeIDList["localIdToGlobalId"][11][48] = 310 +nodeIDList["localIdToGlobalId"][11][49] = 311 +nodeIDList["localIdToGlobalId"][11][50] = 312 +nodeIDList["localIdToGlobalId"][11][51] = 313 +nodeIDList["localIdToGlobalId"][11][52] = 314 +nodeIDList["localIdToGlobalId"][11][53] = 315 +nodeIDList["localIdToGlobalId"][11][54] = 316 +nodeIDList["localIdToGlobalId"][11][55] = 317 +nodeIDList["localIdToGlobalId"][11][56] = 318 +nodeIDList["localIdToGlobalId"][11][57] = 319 +nodeIDList["localIdToGlobalId"][11][58] = 320 +nodeIDList["localIdToGlobalId"][11][59] = 321 +nodeIDList["localIdToGlobalId"][11][60] = 322 +nodeIDList["localIdToGlobalId"][11][61] = 323 +nodeIDList["localIdToGlobalId"][11][62] = 324 +nodeIDList["localIdToGlobalId"][11][63] = 325 +nodeIDList["localIdToGlobalId"][11][64] = 326 +nodeIDList["localIdToGlobalId"][11][65] = 327 +nodeIDList["localIdToGlobalId"][11][66] = 328 +nodeIDList["localIdToGlobalId"][11][67] = 329 +nodeIDList["localIdToGlobalId"][11][68] = 330 +nodeIDList["localIdToGlobalId"][11][69] = 331 +nodeIDList["localIdToGlobalId"][11][70] = 332 +nodeIDList["localIdToGlobalId"][11][71] = 333 +nodeIDList["localIdToGlobalId"][11][72] = 334 +nodeIDList["localIdToGlobalId"][11][73] = 335 +nodeIDList["localIdToGlobalId"][11][74] = 336 +nodeIDList["localIdToGlobalId"][11][75] = 523 +nodeIDList["localIdToGlobalId"][11][76] = 524 +nodeIDList["localIdToGlobalId"][11][77] = 525 +nodeIDList["localIdToGlobalId"][11][78] = 526 +nodeIDList["localIdToGlobalId"][11][79] = 675 +nodeIDList["localIdToGlobalId"][11][80] = 676 +nodeIDList["localIdToGlobalId"][11][81] = 677 +nodeIDList["localIdToGlobalId"][11][82] = 678 +nodeIDList["localIdToGlobalId"][11][83] = 679 +nodeIDList["localIdToGlobalId"][11][84] = 680 +nodeIDList["localIdToGlobalId"][11][85] = 681 +nodeIDList["localIdToGlobalId"][11][86] = 682 +nodeIDList["localIdToGlobalId"][11][87] = 683 +nodeIDList["localIdToGlobalId"][11][88] = 684 +nodeIDList["localIdToGlobalId"][11][89] = 685 +nodeIDList["localIdToGlobalId"][11][90] = 686 +nodeIDList["localIdToGlobalId"][11][91] = 687 +nodeIDList["localIdToGlobalId"][11][92] = 688 +nodeIDList["localIdToGlobalId"][11][93] = 689 +nodeIDList["localIdToGlobalId"][11][94] = 690 +nodeIDList["localIdToGlobalId"][11][95] = 691 +nodeIDList["localIdToGlobalId"][11][96] = 692 +nodeIDList["localIdToGlobalId"][11][97] = 693 +nodeIDList["localIdToGlobalId"][11][98] = 694 +nodeIDList["localIdToGlobalId"][11][99] = 695 +nodeIDList["localIdToGlobalId"][11][100] = 696 +nodeIDList["localIdToGlobalId"][11][101] = 697 +nodeIDList["localIdToGlobalId"][11][102] = 698 +nodeIDList["localIdToGlobalId"][11][103] = 699 +nodeIDList["localIdToGlobalId"][11][104] = 700 +nodeIDList["localIdToGlobalId"][11][105] = 701 +nodeIDList["localIdToGlobalId"][11][106] = 702 +nodeIDList["localIdToGlobalId"][11][107] = 703 +nodeIDList["localIdToGlobalId"][11][108] = 704 +nodeIDList["localIdToGlobalId"][11][109] = 705 +nodeIDList["localIdToGlobalId"][11][110] = 706 +nodeIDList["localIdToGlobalId"][11][111] = 707 +nodeIDList["localIdToGlobalId"][11][112] = 708 +nodeIDList["localIdToGlobalId"][11][113] = 709 +nodeIDList["localIdToGlobalId"][11][114] = 710 +nodeIDList["localIdToGlobalId"][11][115] = 711 +nodeIDList["localIdToGlobalId"][11][116] = 712 +nodeIDList["localIdToGlobalId"][11][117] = 713 +nodeIDList["localIdToGlobalId"][11][118] = 714 +nodeIDList["localIdToGlobalId"][11][119] = 715 +nodeIDList["localIdToGlobalId"][11][120] = 716 +nodeIDList["localIdToGlobalId"][11][121] = 717 return nodeIDList \ No newline at end of file diff --git a/src/Data/Uniques/Special/BoundByDestiny.lua b/src/Data/Uniques/Special/BoundByDestiny.lua index 3c54afb371..c95cccb663 100644 --- a/src/Data/Uniques/Special/BoundByDestiny.lua +++ b/src/Data/Uniques/Special/BoundByDestiny.lua @@ -2,58 +2,58 @@ -- Item data (c) Grinding Gear Games return { - ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4453 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [370215510] = { "(10-15)% increased maximum Life if 2 Elder Items are Equipped" }, } }, - ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4457 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [282325999] = { "Nearby Enemies are Unnerved if 2 Elder Items are Equipped" }, } }, - ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4447 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2589667827] = { "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped" }, } }, - ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4454 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2440345251] = { "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped" }, } }, - ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4445 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [430973012] = { "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped" }, } }, - ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4446 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1250221293] = { "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped" }, } }, - ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4448 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3525542360] = { "Unaffected by Poison if 2 Hunter Items are Equipped" }, } }, - ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4451 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3417925939] = { "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped" }, } }, - ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4458 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2813428845] = { "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped" }, } }, - ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4461 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [621302497] = { "Unaffected by Ignite if 2 Warlord Items are Equipped" }, } }, - ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4456 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1142276332] = { "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped" }, } }, - ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4459 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2003094183] = { "(10-15)% increased Strength if 2 Warlord Items are Equipped" }, } }, - ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4460 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3910756536] = { "Unaffected by Chill if 2 Redeemer Items are Equipped" }, } }, - ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4455 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3844045281] = { "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped" }, } }, - ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4450 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2543696990] = { "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped" }, } }, - ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4462 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1060931694] = { "Unaffected by Shock if 2 Crusader Items are Equipped" }, } }, - ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4449 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4172727064] = { "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped" }, } }, - ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4452 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2531873276] = { "(10-15)% increased Intelligence if 2 Crusader Items are Equipped" }, } }, - ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4476 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2662252183] = { "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped" }, } }, - ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4473 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [609019022] = { "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped" }, } }, - ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4465 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1481800004] = { "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped" }, } }, - ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4470 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1737470038] = { "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped" }, } }, - ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4472 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797685329] = { "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped" }, } }, - ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4480 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [4216579611] = { "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped" }, } }, - ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4474 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [2251969898] = { "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped" }, } }, - ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4471 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [502694677] = { "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped" }, } }, - ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4466 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1065101352] = { "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped" }, } }, - ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4478 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3003230483] = { "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped" }, } }, - ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4475, 4475.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4160015669] = { "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped" }, } }, - ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4468 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1417125941] = { "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped" }, } }, - ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4477 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [2351364973] = { "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped" }, } }, - ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4463 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1571123250] = { "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped" }, } }, - ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4467 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4123011890] = { "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped" }, } }, - ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4479 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [2006105838] = { "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped" }, } }, - ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4464 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4060882278] = { "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped" }, } }, - ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4469 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [901386819] = { "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped" }, } }, - ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4485 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3183988184] = { "Cannot be Stunned if 6 Elder Items are Equipped" }, } }, - ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4497 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [3564190077] = { "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped" }, } }, - ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4483 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3237046450] = { "(10-15)% increased Attributes if 6 Elder Items are Equipped" }, } }, - ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4496, 4496.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [725571864] = { "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped" }, } }, - ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4481 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [15754647] = { "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped" }, } }, - ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4498 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [1592303791] = { "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped" }, } }, - ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4495 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1397871191] = { "You can apply an additional Curse if 6 Hunter Items are Equipped" }, } }, - ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4487 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, tradeHashes = { [436225640] = { "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped" }, } }, - ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4482 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778002979] = { "Skills fire an additional Projectile if 6 Hunter Items are Equipped" }, } }, - ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4486 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2239810203] = { "Melee Hits Fortify if 6 Warlord Items are Equipped" }, } }, - ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4489 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [355220397] = { "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped" }, } }, - ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4492 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2657325376] = { "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped" }, } }, - ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4484 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3423343084] = { "Cannot be Frozen if 6 Redeemer Items are Equipped" }, } }, - ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4488 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [3496906750] = { "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped" }, } }, - ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1138578442] = { "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped" }, } }, - ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4490 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2588231083] = { "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped" }, } }, - ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4491 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1038851119] = { "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped" }, } }, - ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4494 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1460122571] = { "+1 to Maximum Power Charges if 6 Crusader Items are Equipped" }, } }, + ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4491 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [370215510] = { "(10-15)% increased maximum Life if 2 Elder Items are Equipped" }, } }, + ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4495 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [282325999] = { "Nearby Enemies are Unnerved if 2 Elder Items are Equipped" }, } }, + ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4485 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2589667827] = { "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped" }, } }, + ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4492 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2440345251] = { "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped" }, } }, + ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4483 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [430973012] = { "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped" }, } }, + ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4484 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1250221293] = { "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped" }, } }, + ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4486 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3525542360] = { "Unaffected by Poison if 2 Hunter Items are Equipped" }, } }, + ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4489 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3417925939] = { "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped" }, } }, + ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4496 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2813428845] = { "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped" }, } }, + ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4499 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [621302497] = { "Unaffected by Ignite if 2 Warlord Items are Equipped" }, } }, + ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4494 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1142276332] = { "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped" }, } }, + ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4497 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2003094183] = { "(10-15)% increased Strength if 2 Warlord Items are Equipped" }, } }, + ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4498 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3910756536] = { "Unaffected by Chill if 2 Redeemer Items are Equipped" }, } }, + ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3844045281] = { "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped" }, } }, + ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4488 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2543696990] = { "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped" }, } }, + ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4500 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1060931694] = { "Unaffected by Shock if 2 Crusader Items are Equipped" }, } }, + ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4487 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4172727064] = { "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped" }, } }, + ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4490 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2531873276] = { "(10-15)% increased Intelligence if 2 Crusader Items are Equipped" }, } }, + ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4514 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2662252183] = { "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped" }, } }, + ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4511 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [609019022] = { "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped" }, } }, + ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4503 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [1481800004] = { "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped" }, } }, + ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4508 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1737470038] = { "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped" }, } }, + ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4510 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3797685329] = { "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped" }, } }, + ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4518 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHashes = { [4216579611] = { "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped" }, } }, + ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4512 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [2251969898] = { "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped" }, } }, + ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4509 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [502694677] = { "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped" }, } }, + ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4504 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1065101352] = { "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped" }, } }, + ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4516 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3003230483] = { "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped" }, } }, + ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4513, 4513.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4160015669] = { "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped" }, } }, + ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4506 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [1417125941] = { "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped" }, } }, + ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4515 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [2351364973] = { "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped" }, } }, + ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4501 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1571123250] = { "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped" }, } }, + ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4505 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4123011890] = { "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped" }, } }, + ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4517 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [2006105838] = { "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped" }, } }, + ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4502 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4060882278] = { "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped" }, } }, + ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4507 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [901386819] = { "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped" }, } }, + ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4523 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3183988184] = { "Cannot be Stunned if 6 Elder Items are Equipped" }, } }, + ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4535 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [3564190077] = { "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped" }, } }, + ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4521 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3237046450] = { "(10-15)% increased Attributes if 6 Elder Items are Equipped" }, } }, + ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4534, 4534.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [725571864] = { "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped" }, } }, + ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4519 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [15754647] = { "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped" }, } }, + ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4536 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, tradeHashes = { [1592303791] = { "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped" }, } }, + ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4533 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1397871191] = { "You can apply an additional Curse if 6 Hunter Items are Equipped" }, } }, + ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4525 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, tradeHashes = { [436225640] = { "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped" }, } }, + ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4520 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3778002979] = { "Skills fire an additional Projectile if 6 Hunter Items are Equipped" }, } }, + ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4524 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2239810203] = { "Melee Hits Fortify if 6 Warlord Items are Equipped" }, } }, + ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4527 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [355220397] = { "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped" }, } }, + ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4530 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2657325376] = { "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped" }, } }, + ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4522 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3423343084] = { "Cannot be Frozen if 6 Redeemer Items are Equipped" }, } }, + ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4526 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [3496906750] = { "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped" }, } }, + ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4531 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1138578442] = { "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped" }, } }, + ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4528 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2588231083] = { "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped" }, } }, + ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4529 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1038851119] = { "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped" }, } }, + ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4532 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1460122571] = { "+1 to Maximum Power Charges if 6 Crusader Items are Equipped" }, } }, } \ No newline at end of file diff --git a/src/Data/Uniques/Special/WatchersEye.lua b/src/Data/Uniques/Special/WatchersEye.lua index c1bc29763b..b1a59ba549 100644 --- a/src/Data/Uniques/Special/WatchersEye.lua +++ b/src/Data/Uniques/Special/WatchersEye.lua @@ -2,149 +2,149 @@ -- Item data (c) Grinding Gear Games return { - ["DeterminationPhysicalDamageReduction"] = { affix = "", "(5-8)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4579 }, level = 1, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1873457881] = { "(5-8)% additional Physical Damage Reduction while affected by Determination" }, } }, - ["DeterminationAdditionalBlock"] = { affix = "", "+(5-8)% Chance to Block Attack Damage while affected by Determination", statOrder = { 5231 }, level = 1, group = "DeterminationAdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3692646597] = { "+(5-8)% Chance to Block Attack Damage while affected by Determination" }, } }, - ["DeterminationUnaffectedByVulnerability"] = { affix = "", "Unaffected by Vulnerability while affected by Determination", statOrder = { 10486 }, level = 1, group = "DeterminationUnaffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3207781478] = { "Unaffected by Vulnerability while affected by Determination" }, } }, - ["DeterminationReducedExtraDamageFromCrits"] = { affix = "", "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination", statOrder = { 6537 }, level = 1, group = "DeterminationReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [68410701] = { "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination" }, } }, - ["DeterminationReducedReflectedPhysicalDamage"] = { affix = "", "(50-75)% of Physical Damage from your Hits cannot be Reflected while affected by Determination", statOrder = { 9375 }, level = 1, group = "DeterminationReducedReflectedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2255585376] = { "(50-75)% of Physical Damage from your Hits cannot be Reflected while affected by Determination" }, } }, - ["DeterminationAdditionalArmour"] = { affix = "", "+(600-1000) to Armour while affected by Determination", statOrder = { 4765 }, level = 1, group = "DeterminationAdditionalArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3742808908] = { "+(600-1000) to Armour while affected by Determination" }, } }, - ["GraceAdditionalChanceToEvade"] = { affix = "", "+(5-8)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5675 }, level = 1, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [969576725] = { "+(5-8)% chance to Evade Attack Hits while affected by Grace" }, } }, - ["GraceChanceToDodge"] = { affix = "", "+(12-15)% chance to Suppress Spell Damage while affected by Grace", statOrder = { 10175 }, level = 1, group = "GraceChanceToDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4071658793] = { "+(12-15)% chance to Suppress Spell Damage while affected by Grace" }, } }, - ["GraceUnaffectedByEnfeeble"] = { affix = "", "Unaffected by Enfeeble while affected by Grace", statOrder = { 10470 }, level = 1, group = "GraceUnaffectedByEnfeeble", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2365917222] = { "Unaffected by Enfeeble while affected by Grace" }, } }, - ["GraceIncreasedMovementSpeed"] = { affix = "", "(10-15)% increased Movement Speed while affected by Grace", statOrder = { 9430 }, level = 1, group = "GraceIncreasedMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3329402420] = { "(10-15)% increased Movement Speed while affected by Grace" }, } }, - ["GraceBlindEnemiesWhenHit"] = { affix = "", "(30-50)% chance to Blind Enemies which Hit you while affected by Grace", statOrder = { 5221 }, level = 1, group = "GraceBlindEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2548097895] = { "(30-50)% chance to Blind Enemies which Hit you while affected by Grace" }, } }, - ["DisciplineEnergyShieldRegen"] = { affix = "", "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline", statOrder = { 6460 }, level = 1, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [991194404] = { "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline" }, } }, - ["DisciplineAdditionalSpellBlock"] = { affix = "", "+(5-8)% Chance to Block Spell Damage while affected by Discipline", statOrder = { 5652 }, level = 1, group = "DisciplineAdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1313498929] = { "+(5-8)% Chance to Block Spell Damage while affected by Discipline" }, } }, - ["DisciplineFasterStartOfRecharge"] = { affix = "", "(30-40)% faster start of Energy Shield Recharge while affected by Discipline", statOrder = { 6430 }, level = 1, group = "DisciplineFasterStartOfRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1016185292] = { "(30-40)% faster start of Energy Shield Recharge while affected by Discipline" }, } }, - ["DisciplineEnergyShieldPerHit"] = { affix = "", "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline", statOrder = { 6433 }, level = 1, group = "DisciplineEnergyShieldPerHit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3765507527] = { "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline" }, } }, - ["DisciplineEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline", statOrder = { 6453 }, level = 1, group = "DisciplineEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [80470845] = { "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline" }, } }, - ["WrathLightningPenetration"] = { affix = "", "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath", statOrder = { 9880 }, level = 1, group = "WrathLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1077131949] = { "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath" }, } }, - ["WrathLightningDamageManaLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath", statOrder = { 8184 }, level = 1, group = "WrathLightningDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [2889601846] = { "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath" }, } }, - ["WrathLightningDamageESLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", statOrder = { 6438 }, level = 1, group = "WrathLightningDamageESLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [121436064] = { "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath" }, } }, - ["WrathPhysicalAddedAsLightning_"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath", statOrder = { 9636 }, level = 1, group = "WrathPhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2255914633] = { "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath" }, } }, - ["WrathPhysicalConvertedToLightning"] = { affix = "", "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath", statOrder = { 5045 }, level = 1, group = "WrathPhysicalConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2106756686] = { "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath" }, } }, - ["WrathIncreasedLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Wrath", statOrder = { 7450 }, level = 1, group = "WrathIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [418293304] = { "(40-60)% increased Lightning Damage while affected by Wrath" }, } }, - ["WrathIncreasedCriticalStrikeChance"] = { affix = "", "(70-100)% increased Critical Strike Chance while affected by Wrath", statOrder = { 5941 }, level = 1, group = "WrathIncreasedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3357049845] = { "(70-100)% increased Critical Strike Chance while affected by Wrath" }, } }, - ["AngerFirePenetration"] = { affix = "", "Damage Penetrates (10-15)% Fire Resistance while affected by Anger", statOrder = { 9879 }, level = 1, group = "AngerFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3111519953] = { "Damage Penetrates (10-15)% Fire Resistance while affected by Anger" }, } }, - ["AngerFireDamageLifeLeech_"] = { affix = "", "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger", statOrder = { 7369 }, level = 1, group = "AngerFireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2312747856] = { "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger" }, } }, - ["AngerPhysicalAddedAsFire"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger", statOrder = { 9633 }, level = 1, group = "AngerPhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [4245204226] = { "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger" }, } }, - ["AngerPhysicalConvertedToFire"] = { affix = "", "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger", statOrder = { 5044 }, level = 1, group = "AngerPhysicalConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [3624529132] = { "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger" }, } }, - ["AngerIncreasedFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Anger", statOrder = { 6569 }, level = 1, group = "AngerIncreasedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3337107517] = { "(40-60)% increased Fire Damage while affected by Anger" }, } }, - ["AngerIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(30-50)% to Critical Strike Multiplier while affected by Anger", statOrder = { 5968 }, level = 1, group = "AngerIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3627458291] = { "+(30-50)% to Critical Strike Multiplier while affected by Anger" }, } }, - ["HatredColdPenetration"] = { affix = "", "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred", statOrder = { 9877 }, level = 1, group = "HatredColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1222888897] = { "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred" }, } }, - ["HatredAdditionalCriticalStrikeChance"] = { affix = "", "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred", statOrder = { 4552 }, level = 1, group = "HatredAdditionalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2753985507] = { "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred" }, } }, - ["HatredAddedColdDamage"] = { affix = "", "Adds (58-70) to (88-104) Cold Damage while affected by Hatred", statOrder = { 9234 }, level = 1, group = "HatredAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2643562209] = { "Adds (58-70) to (88-104) Cold Damage while affected by Hatred" }, } }, - ["HatredPhysicalConvertedToCold"] = { affix = "", "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred", statOrder = { 5043 }, level = 1, group = "HatredPhysicalConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [664849247] = { "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred" }, } }, - ["HatredIncreasedColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Hatred", statOrder = { 5814 }, level = 1, group = "HatredIncreasedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1413864591] = { "(40-60)% increased Cold Damage while affected by Hatred" }, } }, - ["VitalityDamageLifeLeech"] = { affix = "", "(0.8-1.2)% of Damage leeched as Life while affected by Vitality", statOrder = { 7362 }, level = 1, group = "VitalityDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3656959867] = { "(0.8-1.2)% of Damage leeched as Life while affected by Vitality" }, } }, - ["VitalityFlatLifeRegen"] = { affix = "", "Regenerate (100-140) Life per Second while affected by Vitality", statOrder = { 7405 }, level = 1, group = "VitalityFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3489570622] = { "Regenerate (100-140) Life per Second while affected by Vitality" }, } }, - ["VitalityPercentLifeRegen"] = { affix = "", "Regenerate (1-1.5)% of Life per second while affected by Vitality", statOrder = { 7412 }, level = 1, group = "VitalityPercentLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1165583295] = { "Regenerate (1-1.5)% of Life per second while affected by Vitality" }, } }, - ["VitalityLifeRecoveryRate"] = { affix = "", "(10-15)% increased Life Recovery Rate while affected by Vitality", statOrder = { 7395 }, level = 1, group = "VitalityLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2690790844] = { "(10-15)% increased Life Recovery Rate while affected by Vitality" }, } }, - ["VitalityLifeGainPerHit"] = { affix = "", "Gain (20-30) Life per Enemy Hit while affected by Vitality", statOrder = { 7356 }, level = 1, group = "VitalityLifeGainPerHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4259701244] = { "Gain (20-30) Life per Enemy Hit while affected by Vitality" }, } }, - ["VitalityLifeRecoveryFromFlasks_"] = { affix = "", "(50-70)% increased Life Recovery from Flasks while affected by Vitality", statOrder = { 6641 }, level = 1, group = "VitalityLifeRecoveryFromFlasks", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [362838683] = { "(50-70)% increased Life Recovery from Flasks while affected by Vitality" }, } }, - ["ClarityReducedManaCost"] = { affix = "", "-(10-5) to Total Mana Cost of Skills while affected by Clarity", statOrder = { 10060 }, level = 1, group = "ClarityReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2445618239] = { "-(10-5) to Total Mana Cost of Skills while affected by Clarity" }, } }, - ["ClarityReducedManaCostNonChannelled"] = { affix = "", "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity", statOrder = { 10065 }, level = 1, group = "ClarityReducedManaCostNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1853636813] = { "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity" }, } }, - ["ClarityDamageTakenFromManaBeforeLife"] = { affix = "", "(6-10)% of Damage taken from Mana before Life while affected by Clarity", statOrder = { 6088 }, level = 1, group = "ClarityDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2383304564] = { "(6-10)% of Damage taken from Mana before Life while affected by Clarity" }, } }, - ["ClarityRecoverManaOnSkillUse"] = { affix = "", "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", statOrder = { 9847 }, level = 1, group = "ClarityRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1699077932] = { "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity" }, } }, - ["ClarityManaAddedAsEnergyShield"] = { affix = "", "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", statOrder = { 9171 }, level = 1, group = "ClarityManaAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2831391506] = { "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity" }, } }, - ["ClarityManaRecoveryRate"] = { affix = "", "(10-15)% increased Mana Recovery Rate while affected by Clarity", statOrder = { 8193 }, level = 1, group = "ClarityManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [556659145] = { "(10-15)% increased Mana Recovery Rate while affected by Clarity" }, } }, - ["ClarityDamageTakenGainedAsMana"] = { affix = "", "(15-20)% of Damage taken while affected by Clarity Recouped as Mana", statOrder = { 6106 }, level = 1, group = "ClarityDamageTakenGainedAsMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [380220671] = { "(15-20)% of Damage taken while affected by Clarity Recouped as Mana" }, } }, - ["HasteChanceToDodgeSpells"] = { affix = "", "+(5-8)% chance to Suppress Spell Damage while affected by Haste", statOrder = { 10176 }, level = 1, group = "HasteChanceToDodgeSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2170859717] = { "+(5-8)% chance to Suppress Spell Damage while affected by Haste" }, } }, - ["HasteGainOnslaughtOnKill"] = { affix = "", "You gain Onslaught for 4 seconds on Kill while affected by Haste", statOrder = { 6788 }, level = 1, group = "HasteGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1424006185] = { "You gain Onslaught for 4 seconds on Kill while affected by Haste" }, } }, - ["HasteGainPhasing"] = { affix = "", "You have Phasing while affected by Haste", statOrder = { 6799 }, level = 1, group = "HasteGainPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1346311588] = { "You have Phasing while affected by Haste" }, } }, - ["HasteUnaffectedByTemporalChains"] = { affix = "", "Unaffected by Temporal Chains while affected by Haste", statOrder = { 10485 }, level = 1, group = "HasteUnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2806391472] = { "Unaffected by Temporal Chains while affected by Haste" }, } }, - ["HasteDebuffsExpireFaster"] = { affix = "", "Debuffs on you expire (15-20)% faster while affected by Haste", statOrder = { 6150 }, level = 1, group = "HasteDebuffsExpireFaster", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [207635700] = { "Debuffs on you expire (15-20)% faster while affected by Haste" }, } }, - ["HasteCooldownRecoveryForMovementSkills"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", statOrder = { 9407 }, level = 1, group = "HasteCooldownRecoveryForMovementSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3332055899] = { "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste" }, } }, - ["PurityOfFireTakePhysicalAsFire"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", statOrder = { 9661 }, level = 1, group = "PurityOfFireTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1798459983] = { "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire" }, } }, - ["PurityOfFireImmuneToIgnite"] = { affix = "", "Immune to Ignite while affected by Purity of Fire", statOrder = { 7234 }, level = 1, group = "PurityOfFireImmuneToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [371612541] = { "Immune to Ignite while affected by Purity of Fire" }, } }, - ["PurityOfFireUnaffectedByBurningGround"] = { affix = "", "Unaffected by Burning Ground while affected by Purity of Fire", statOrder = { 10458 }, level = 1, group = "PurityOfFireUnaffectedByBurningGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3308185931] = { "Unaffected by Burning Ground while affected by Purity of Fire" }, } }, - ["PurityOfFireUnaffectedByFlammability__"] = { affix = "", "Unaffected by Flammability while affected by Purity of Fire", statOrder = { 10471 }, level = 1, group = "PurityOfFireUnaffectedByFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1173690938] = { "Unaffected by Flammability while affected by Purity of Fire" }, } }, - ["PurityOfFireReducedReflectedFireDamage"] = { affix = "", "(50-75)% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire", statOrder = { 9373 }, level = 1, group = "PurityOfFireReducedReflectedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [435235774] = { "(50-75)% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire" }, } }, - ["PurityOfFireColdAndLightningTakenAsFire"] = { affix = "", "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", statOrder = { 5801 }, level = 1, group = "PurityOfFireColdAndLightningTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1723738042] = { "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" }, } }, - ["PurityOfIceTakePhysicalAsIce"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", statOrder = { 9659 }, level = 1, group = "PurityOfIceTakePhysicalAsIce", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1779027621] = { "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice" }, } }, - ["PurityOfIceImmuneToFreeze"] = { affix = "", "Immune to Freeze while affected by Purity of Ice", statOrder = { 7231 }, level = 1, group = "PurityOfIceImmuneToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2720072724] = { "Immune to Freeze while affected by Purity of Ice" }, } }, - ["PurityOfIceUnaffectedByChilledGround"] = { affix = "", "Unaffected by Chilled Ground while affected by Purity of Ice", statOrder = { 10463 }, level = 1, group = "PurityOfIceUnaffectedByChilledGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2647344903] = { "Unaffected by Chilled Ground while affected by Purity of Ice" }, } }, - ["PurityOfIceUnaffectedByFrostbite"] = { affix = "", "Unaffected by Frostbite while affected by Purity of Ice", statOrder = { 10473 }, level = 1, group = "PurityOfIceUnaffectedByFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4012281889] = { "Unaffected by Frostbite while affected by Purity of Ice" }, } }, - ["PurityOfIceReducedReflectedColdDamage"] = { affix = "", "(50-75)% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice", statOrder = { 9371 }, level = 1, group = "PurityOfIceReducedReflectedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2480601356] = { "(50-75)% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice" }, } }, - ["PurityOfIceFireAndLightningTakenAsCold"] = { affix = "", "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", statOrder = { 6553 }, level = 1, group = "PurityOfIceFireAndLightningTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2189467271] = { "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" }, } }, - ["PurityOfLightningTakePhysicalAsLightning"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", statOrder = { 9663 }, level = 1, group = "PurityOfLightningTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [254131992] = { "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning" }, } }, - ["PurityOfLightningImmuneToShock_"] = { affix = "", "Immune to Shock while affected by Purity of Lightning", statOrder = { 7239 }, level = 1, group = "PurityOfLightningImmuneToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [281949611] = { "Immune to Shock while affected by Purity of Lightning" }, } }, - ["PurityOfLightningUnaffectedByShockedGround"] = { affix = "", "Unaffected by Shocked Ground while affected by Purity of Lightning", statOrder = { 10483 }, level = 1, group = "PurityOfLightningUnaffectedByShockedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567659895] = { "Unaffected by Shocked Ground while affected by Purity of Lightning" }, } }, - ["PurityOfLightningUnaffectedByConductivity_____"] = { affix = "", "Unaffected by Conductivity while affected by Purity of Lightning", statOrder = { 10464 }, level = 1, group = "PurityOfLightningUnaffectedByConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1567542124] = { "Unaffected by Conductivity while affected by Purity of Lightning" }, } }, - ["PurityOfLightningReducedReflectedLightningDamage"] = { affix = "", "(50-75)% of Lightning Damage from your Hits cannot be Reflected while", "affected by Purity of Lightning", statOrder = { 9374, 9374.1 }, level = 1, group = "PurityOfLightningReducedReflectedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3023818840] = { "(50-75)% of Lightning Damage from your Hits cannot be Reflected while", "affected by Purity of Lightning" }, } }, - ["PurityOfLightningFireAndColdTakenAsLightning"] = { affix = "", "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", statOrder = { 6551, 6551.1 }, level = 1, group = "PurityOfLightningFireAndColdTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3953667743] = { "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning" }, } }, - ["PurityOfElementsTakePhysicalAsFire_"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", statOrder = { 9660 }, level = 1, group = "PurityOfElementsTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1722775216] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsTakePhysicalAsCold"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", statOrder = { 9658 }, level = 1, group = "PurityOfElementsTakePhysicalAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1710207583] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsTakePhysicalAsLightning"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", statOrder = { 9662 }, level = 1, group = "PurityOfElementsTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [873224517] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements" }, } }, - ["PurityOfElementsUnaffectedByElementalWeakness"] = { affix = "", "Unaffected by Elemental Weakness while affected by Purity of Elements", statOrder = { 10469 }, level = 1, group = "PurityOfElementsUnaffectedByElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3223142064] = { "Unaffected by Elemental Weakness while affected by Purity of Elements" }, } }, - ["PurityOfElementsReducedReflectedElementalDamage"] = { affix = "", "(50-75)% of Elemental Damage from your Hits cannot be Reflected while", "affected by Purity of Elements", statOrder = { 9372, 9372.1 }, level = 1, group = "PurityOfElementsReducedReflectedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1574578643] = { "(50-75)% of Elemental Damage from your Hits cannot be Reflected while", "affected by Purity of Elements" }, } }, - ["PurityOfElementsChaosResistance"] = { affix = "", "+(30-50)% to Chaos Resistance while affected by Purity of Elements", statOrder = { 5744 }, level = 1, group = "PurityOfElementsChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1138813382] = { "+(30-50)% to Chaos Resistance while affected by Purity of Elements" }, } }, - ["PurityOfElementsMaximumElementalResistances"] = { affix = "", "+1% to all maximum Elemental Resistances while affected by Purity of Elements", statOrder = { 4561 }, level = 1, group = "PurityOfElementsMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3234824465] = { "+1% to all maximum Elemental Resistances while affected by Purity of Elements" }, } }, - ["PrecisionIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(20-30)% to Critical Strike Multiplier while affected by Precision", statOrder = { 5969 }, level = 1, group = "PrecisionIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1817023621] = { "+(20-30)% to Critical Strike Multiplier while affected by Precision" }, } }, - ["PrecisionIncreasedAttackDamage"] = { affix = "", "(40-60)% increased Attack Damage while affected by Precision", statOrder = { 4862 }, level = 1, group = "PrecisionIncreasedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2048747572] = { "(40-60)% increased Attack Damage while affected by Precision" }, } }, - ["PrecisionFlaskChargeOnCrit_"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", statOrder = { 9836 }, level = 1, group = "PrecisionFlaskChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3772841281] = { "Gain a Flask Charge when you deal a Critical Strike while affected by Precision" }, } }, - ["PrecisionIncreasedAttackSpeed"] = { affix = "", "(10-15)% increased Attack Speed while affected by Precision", statOrder = { 4904 }, level = 1, group = "PrecisionIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3375743050] = { "(10-15)% increased Attack Speed while affected by Precision" }, } }, - ["PrecisionCannotBeBlinded"] = { affix = "", "Cannot be Blinded while affected by Precision", statOrder = { 5394 }, level = 1, group = "PrecisionCannotBeBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1653848515] = { "Cannot be Blinded while affected by Precision" }, } }, - ["PrideChanceForDoubleDamage"] = { affix = "", "(8-12)% chance to deal Double Damage while using Pride", statOrder = { 9712 }, level = 1, group = "PrideChanceForDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3371719014] = { "(8-12)% chance to deal Double Damage while using Pride" }, } }, - ["PrideIntimidateOnHit"] = { affix = "", "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", statOrder = { 9714 }, level = 1, group = "PrideIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3772848194] = { "Your Hits Intimidate Enemies for 4 seconds while you are using Pride" }, } }, - ["PrideIncreasedPhysicalDamage_"] = { affix = "", "(40-60)% increased Physical Damage while using Pride", statOrder = { 9718 }, level = 1, group = "PrideIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [576528026] = { "(40-60)% increased Physical Damage while using Pride" }, } }, - ["PrideChanceToImpale"] = { affix = "", "25% chance to Impale Enemies on Hit with Attacks while using Pride", statOrder = { 9713 }, level = 1, group = "PrideChanceToImpale", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4173751044] = { "25% chance to Impale Enemies on Hit with Attacks while using Pride" }, } }, - ["PrideImpaleAdditionalHits"] = { affix = "", "Impales you inflict last 2 additional Hits while using Pride", statOrder = { 9720 }, level = 1, group = "PrideImpaleAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1011863394] = { "Impales you inflict last 2 additional Hits while using Pride" }, } }, - ["SublimeVisionAnger"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Scorch while affected by Anger", "Aura Skills other than Anger are Disabled", statOrder = { 3569, 4657, 10669 }, level = 1, group = "SublimeVisionAnger", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1585991257] = { "Always Scorch while affected by Anger" }, [2185337019] = { "Aura Skills other than Anger are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionClarity"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "80% increased Effect of Arcane Surge on you while affected by Clarity", "Aura Skills other than Clarity are Disabled", statOrder = { 3569, 4705, 10670 }, level = 1, group = "SublimeVisionClarity", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1808477254] = { "80% increased Effect of Arcane Surge on you while affected by Clarity" }, [2010835448] = { "Aura Skills other than Clarity are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionDetermination"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Endurance Charges while affected by Determination", "Aura Skills other than Determination are Disabled", statOrder = { 3569, 9131, 10671 }, level = 1, group = "SublimeVisionDetermination", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [460973817] = { "Aura Skills other than Determination are Disabled" }, [2110586221] = { "+1 to Maximum Endurance Charges while affected by Determination" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionDiscipline"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Power Charges while affected by Discipline", "Aura Skills other than Discipline are Disabled", statOrder = { 3569, 9179, 10672 }, level = 1, group = "SublimeVisionDiscipline", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2204523353] = { "Aura Skills other than Discipline are Disabled" }, [1465672972] = { "+1 to Maximum Power Charges while affected by Discipline" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionGrace"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Frenzy Charges while affected by Grace", "Aura Skills other than Grace are Disabled", statOrder = { 3569, 9141, 10673 }, level = 1, group = "SublimeVisionGrace", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1747401945] = { "Aura Skills other than Grace are Disabled" }, [3458080964] = { "+1 to Maximum Frenzy Charges while affected by Grace" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionHaste"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "10% increased Action Speed while affected by Haste", "Aura Skills other than Haste are Disabled", statOrder = { 3569, 4523, 10674 }, level = 1, group = "SublimeVisionHaste", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1960426186] = { "10% increased Action Speed while affected by Haste" }, [3067441492] = { "Aura Skills other than Haste are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionHatred"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always inflict Brittle while affected by Hatred", "Aura Skills other than Hatred are Disabled", statOrder = { 3569, 4652, 10675 }, level = 1, group = "SublimeVisionHatred", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [13285831] = { "Always inflict Brittle while affected by Hatred" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [3348211884] = { "Aura Skills other than Hatred are Disabled" }, } }, - ["SublimeVisionMalevolence"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "You can apply an additional Curse while affected by Malevolence", "Aura Skills other than Malevolence are Disabled", statOrder = { 3569, 9519, 10676 }, level = 1, group = "SublimeVisionMalevolence", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [4102244881] = { "You can apply an additional Curse while affected by Malevolence" }, [3540033124] = { "Aura Skills other than Malevolence are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionPrecision"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "25% more Critical Strike chance while affected by Precision", "Aura Skills other than Precision are Disabled", statOrder = { 3569, 5915, 10677 }, level = 1, group = "SublimeVisionPrecision", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2800254163] = { "Aura Skills other than Precision are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2617837023] = { "25% more Critical Strike chance while affected by Precision" }, } }, - ["SublimeVisionPride"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies", "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", "Aura Skills other than Pride are Disabled", statOrder = { 3567, 6515, 10678 }, level = 1, group = "SublimeVisionPride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3970941380] = { "Aura Skills other than Pride are Disabled" }, [1961516633] = { "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, [1636209393] = { "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, - ["SublimeVisionPurityOfElements"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+3% to all maximum Elemental Resistances while affected by Purity of Elements", "Aura Skills other than Purity of Elements are Disabled", statOrder = { 3569, 4561, 10679 }, level = 1, group = "SublimeVisionPurityOfElements", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2225434657] = { "Aura Skills other than Purity of Elements are Disabled" }, [3234824465] = { "+3% to all maximum Elemental Resistances while affected by Purity of Elements" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["SublimeVisionPurityOfIce"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", "Aura Skills other than Purity of Ice are Disabled", statOrder = { 3569, 6553, 10681 }, level = 1, group = "SublimeVisionPurityOfIce", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2189467271] = { "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2517644375] = { "Aura Skills other than Purity of Ice are Disabled" }, } }, - ["SublimeVisionPurityOfLightning"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", "Aura Skills other than Purity of Lightning are Disabled", statOrder = { 3569, 6551, 6551.1, 10682 }, level = 1, group = "SublimeVisionPurityOfLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3953667743] = { "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2523986538] = { "Aura Skills other than Purity of Lightning are Disabled" }, } }, - ["SublimeVisionPurityOfFire"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", "Aura Skills other than Purity of Fire are Disabled", statOrder = { 3569, 5801, 10680 }, level = 1, group = "SublimeVisionPurityOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3192291777] = { "Aura Skills other than Purity of Fire are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [1723738042] = { "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" }, } }, - ["SublimeVisionVitality"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Regenerate 15% Life over one second when hit while affected by Vitality", "Aura Skills other than Vitality are Disabled", statOrder = { 3569, 9890, 10683 }, level = 1, group = "SublimeVisionVitality", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [110034065] = { "Aura Skills other than Vitality are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [1366273824] = { "Regenerate 15% Life over one second when hit while affected by Vitality" }, } }, - ["SublimeVisionWrath"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Sap while affected by Wrath", "Aura Skills other than Wrath are Disabled", statOrder = { 3569, 4656, 10684 }, level = 1, group = "SublimeVisionWrath", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2499038519] = { "Always Sap while affected by Wrath" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [3292388799] = { "Aura Skills other than Wrath are Disabled" }, } }, - ["SublimeVisionZealotry"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Unaffected by Curses while affected by Zealotry", "Aura Skills other than Zealotry are Disabled", statOrder = { 3569, 10466, 10685 }, level = 1, group = "SublimeVisionZealotry", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3403419549] = { "Unaffected by Curses while affected by Zealotry" }, [374559518] = { "Aura Skills other than Zealotry are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, - ["MalevolenceSkillEffectDuration"] = { affix = "", "(20-30)% increased Skill Effect Duration while affected by Malevolence", statOrder = { 10054 }, level = 1, group = "MalevolenceSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4127613649] = { "(20-30)% increased Skill Effect Duration while affected by Malevolence" }, } }, - ["MalevolenceChaosNonAilmentDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6260 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["MalevolenceColdDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6260 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["MalevolenceLifeAndEnergyShieldRecoveryRate"] = { affix = "", "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence", statOrder = { 7345 }, level = 1, group = "MalevolenceLifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3643449791] = { "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence" }, } }, - ["MalevolenceUnaffectedByPoison"] = { affix = "", "Unaffected by Poison while affected by Malevolence", statOrder = { 10477 }, level = 1, group = "MalevolenceUnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [34059570] = { "Unaffected by Poison while affected by Malevolence" }, } }, - ["MalevolenceUnaffectedByBleeding_"] = { affix = "", "Unaffected by Bleeding while affected by Malevolence", statOrder = { 10454 }, level = 1, group = "MalevolenceUnaffectedByBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4104891138] = { "Unaffected by Bleeding while affected by Malevolence" }, } }, - ["MalevolenceYourAilmentsDealDamageFaster__"] = { affix = "", "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence", statOrder = { 10667 }, level = 1, group = "MalevolenceYourAilmentsDealDamageFaster", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [3468843137] = { "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence" }, } }, - ["MalevolenceDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6260 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, - ["ZealotryCriticalStrikesPenetratesElementalResistances"] = { affix = "", "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry", statOrder = { 5983 }, level = 1, group = "ZealotryCriticalStrikesPenetratesElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [2091518682] = { "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry" }, } }, - ["ZealotryCastSpeed"] = { affix = "", "(10-15)% increased Cast Speed while affected by Zealotry", statOrder = { 5471 }, level = 1, group = "ZealotryCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2444534954] = { "(10-15)% increased Cast Speed while affected by Zealotry" }, } }, - ["ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { affix = "", "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds", statOrder = { 5852 }, level = 1, group = "ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2163419452] = { "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds" }, } }, - ["ZealotryConsecratedGroundEnemyDamageTaken"] = { affix = "", "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage", statOrder = { 5849 }, level = 1, group = "ZealotryConsecratedGroundEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2434030180] = { "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage" }, } }, - ["ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { affix = "", "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", statOrder = { 6724 }, level = 1, group = "ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1919069577] = { "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry" }, } }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1736 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3848992177] = { "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry" }, } }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateNew"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1735 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2731416566] = { "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry" }, } }, - ["ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { affix = "", "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", statOrder = { 5921 }, level = 1, group = "ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [214835567] = { "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry" }, } }, - ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9532 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1886245216] = { "+1 to number of Summoned Arbalists" }, } }, - ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10281 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2087104263] = { "Summoned Arbalists fire (2-4) additional Projectiles" }, } }, - ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10271 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4054463312] = { "Summoned Arbalists have (30-40)% increased Attack Speed" }, } }, - ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10290 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3741465646] = { "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets" }, } }, - ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10289 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2461270975] = { "Summoned Arbalists' Projectiles Fork" }, } }, - ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10272 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3010688059] = { "Summoned Arbalists' Projectiles Chain +2 times" }, } }, - ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10282 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1857935842] = { "Summoned Arbalists' Projectiles Split into 3" }, } }, - ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10275 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3057722139] = { "Summoned Arbalists have (25-35)% chance to deal Double Damage" }, } }, - ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10278 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3652224635] = { "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10277 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3964074505] = { "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10280 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976916585] = { "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit" }, } }, - ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10295 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3327243369] = { "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit" }, } }, - ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10294 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit" }, } }, - ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10296 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit" }, } }, - ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10274 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1658936540] = { "Summoned Arbalists have (10-20)% chance to Crush on Hit" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10287, 10292 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [831284309] = { "Summoned Arbalists have (10-20)% chance to Ignite" }, [2954406821] = { "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10286, 10291 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2052458107] = { "Summoned Arbalists have (10-20)% chance to Freeze" }, [1094808741] = { "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10288, 10293 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2144847042] = { "Summoned Arbalists have (10-20)% chance to Shock" }, [2934219859] = { "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10284, 10295 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1477474340] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage" }, [3327243369] = { "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10283, 10294 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit" }, [655918588] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage" }, } }, - ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10285, 10296 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit" }, [2631827343] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage" }, } }, - ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10273 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1841503755] = { "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding" }, } }, - ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10279 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894626576] = { "Summoned Arbalists have (40-60)% chance to Poison" }, } }, - ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10276 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [357325557] = { "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite" }, } }, + ["DeterminationPhysicalDamageReduction"] = { affix = "", "(5-8)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4622 }, level = 1, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1873457881] = { "(5-8)% additional Physical Damage Reduction while affected by Determination" }, } }, + ["DeterminationAdditionalBlock"] = { affix = "", "+(5-8)% Chance to Block Attack Damage while affected by Determination", statOrder = { 5303 }, level = 1, group = "DeterminationAdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3692646597] = { "+(5-8)% Chance to Block Attack Damage while affected by Determination" }, } }, + ["DeterminationUnaffectedByVulnerability"] = { affix = "", "Unaffected by Vulnerability while affected by Determination", statOrder = { 10642 }, level = 1, group = "DeterminationUnaffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3207781478] = { "Unaffected by Vulnerability while affected by Determination" }, } }, + ["DeterminationReducedExtraDamageFromCrits"] = { affix = "", "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination", statOrder = { 6624 }, level = 1, group = "DeterminationReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [68410701] = { "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination" }, } }, + ["DeterminationReducedReflectedPhysicalDamage"] = { affix = "", "Prevent +(50-75)% of Reflected Physical Damage you would take while affected by Determination", statOrder = { 9508 }, level = 1, group = "DeterminationReducedReflectedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2255585376] = { "Prevent +(50-75)% of Reflected Physical Damage you would take while affected by Determination" }, } }, + ["DeterminationAdditionalArmour"] = { affix = "", "+(600-1000) to Armour while affected by Determination", statOrder = { 4812 }, level = 1, group = "DeterminationAdditionalArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [3742808908] = { "+(600-1000) to Armour while affected by Determination" }, } }, + ["GraceAdditionalChanceToEvade"] = { affix = "", "+(5-8)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5753 }, level = 1, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [969576725] = { "+(5-8)% chance to Evade Attack Hits while affected by Grace" }, } }, + ["GraceChanceToDodge"] = { affix = "", "+(12-15)% chance to Suppress Spell Damage while affected by Grace", statOrder = { 10322 }, level = 1, group = "GraceChanceToDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4071658793] = { "+(12-15)% chance to Suppress Spell Damage while affected by Grace" }, } }, + ["GraceUnaffectedByEnfeeble"] = { affix = "", "Unaffected by Enfeeble while affected by Grace", statOrder = { 10626 }, level = 1, group = "GraceUnaffectedByEnfeeble", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2365917222] = { "Unaffected by Enfeeble while affected by Grace" }, } }, + ["GraceIncreasedMovementSpeed"] = { affix = "", "(10-15)% increased Movement Speed while affected by Grace", statOrder = { 9563 }, level = 1, group = "GraceIncreasedMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3329402420] = { "(10-15)% increased Movement Speed while affected by Grace" }, } }, + ["GraceBlindEnemiesWhenHit"] = { affix = "", "(30-50)% chance to Blind Enemies which Hit you while affected by Grace", statOrder = { 5293 }, level = 1, group = "GraceBlindEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2548097895] = { "(30-50)% chance to Blind Enemies which Hit you while affected by Grace" }, } }, + ["DisciplineEnergyShieldRegen"] = { affix = "", "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline", statOrder = { 6547 }, level = 1, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [991194404] = { "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline" }, } }, + ["DisciplineAdditionalSpellBlock"] = { affix = "", "+(5-8)% Chance to Block Spell Damage while affected by Discipline", statOrder = { 5730 }, level = 1, group = "DisciplineAdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1313498929] = { "+(5-8)% Chance to Block Spell Damage while affected by Discipline" }, } }, + ["DisciplineFasterStartOfRecharge"] = { affix = "", "(30-40)% faster start of Energy Shield Recharge while affected by Discipline", statOrder = { 6517 }, level = 1, group = "DisciplineFasterStartOfRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1016185292] = { "(30-40)% faster start of Energy Shield Recharge while affected by Discipline" }, } }, + ["DisciplineEnergyShieldPerHit"] = { affix = "", "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline", statOrder = { 6520 }, level = 1, group = "DisciplineEnergyShieldPerHit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3765507527] = { "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline" }, } }, + ["DisciplineEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline", statOrder = { 6540 }, level = 1, group = "DisciplineEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [80470845] = { "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline" }, } }, + ["WrathLightningPenetration"] = { affix = "", "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath", statOrder = { 10023 }, level = 1, group = "WrathLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1077131949] = { "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath" }, } }, + ["WrathLightningDamageManaLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath", statOrder = { 8297 }, level = 1, group = "WrathLightningDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [2889601846] = { "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath" }, } }, + ["WrathLightningDamageESLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", statOrder = { 6525 }, level = 1, group = "WrathLightningDamageESLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [121436064] = { "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath" }, } }, + ["WrathPhysicalAddedAsLightning_"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath", statOrder = { 9778 }, level = 1, group = "WrathPhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2255914633] = { "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath" }, } }, + ["WrathPhysicalConvertedToLightning"] = { affix = "", "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath", statOrder = { 5111 }, level = 1, group = "WrathPhysicalConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [2106756686] = { "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath" }, } }, + ["WrathIncreasedLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Wrath", statOrder = { 7551 }, level = 1, group = "WrathIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [418293304] = { "(40-60)% increased Lightning Damage while affected by Wrath" }, } }, + ["WrathIncreasedCriticalStrikeChance"] = { affix = "", "(70-100)% increased Critical Strike Chance while affected by Wrath", statOrder = { 6024 }, level = 1, group = "WrathIncreasedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3357049845] = { "(70-100)% increased Critical Strike Chance while affected by Wrath" }, } }, + ["AngerFirePenetration"] = { affix = "", "Damage Penetrates (10-15)% Fire Resistance while affected by Anger", statOrder = { 10022 }, level = 1, group = "AngerFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3111519953] = { "Damage Penetrates (10-15)% Fire Resistance while affected by Anger" }, } }, + ["AngerFireDamageLifeLeech_"] = { affix = "", "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger", statOrder = { 7469 }, level = 1, group = "AngerFireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [2312747856] = { "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger" }, } }, + ["AngerPhysicalAddedAsFire"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger", statOrder = { 9775 }, level = 1, group = "AngerPhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [4245204226] = { "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger" }, } }, + ["AngerPhysicalConvertedToFire"] = { affix = "", "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger", statOrder = { 5110 }, level = 1, group = "AngerPhysicalConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [3624529132] = { "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger" }, } }, + ["AngerIncreasedFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Anger", statOrder = { 6656 }, level = 1, group = "AngerIncreasedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3337107517] = { "(40-60)% increased Fire Damage while affected by Anger" }, } }, + ["AngerIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(30-50)% to Critical Strike Multiplier while affected by Anger", statOrder = { 6051 }, level = 1, group = "AngerIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3627458291] = { "+(30-50)% to Critical Strike Multiplier while affected by Anger" }, } }, + ["HatredColdPenetration"] = { affix = "", "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred", statOrder = { 10020 }, level = 1, group = "HatredColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1222888897] = { "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred" }, } }, + ["HatredAdditionalCriticalStrikeChance"] = { affix = "", "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred", statOrder = { 4595 }, level = 1, group = "HatredAdditionalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2753985507] = { "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred" }, } }, + ["HatredAddedColdDamage"] = { affix = "", "Adds (58-70) to (88-104) Cold Damage while affected by Hatred", statOrder = { 9365 }, level = 1, group = "HatredAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2643562209] = { "Adds (58-70) to (88-104) Cold Damage while affected by Hatred" }, } }, + ["HatredPhysicalConvertedToCold"] = { affix = "", "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred", statOrder = { 5109 }, level = 1, group = "HatredPhysicalConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [664849247] = { "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred" }, } }, + ["HatredIncreasedColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Hatred", statOrder = { 5896 }, level = 1, group = "HatredIncreasedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1413864591] = { "(40-60)% increased Cold Damage while affected by Hatred" }, } }, + ["VitalityDamageLifeLeech"] = { affix = "", "(0.8-1.2)% of Damage leeched as Life while affected by Vitality", statOrder = { 7462 }, level = 1, group = "VitalityDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3656959867] = { "(0.8-1.2)% of Damage leeched as Life while affected by Vitality" }, } }, + ["VitalityFlatLifeRegen"] = { affix = "", "Regenerate (100-140) Life per Second while affected by Vitality", statOrder = { 7505 }, level = 1, group = "VitalityFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3489570622] = { "Regenerate (100-140) Life per Second while affected by Vitality" }, } }, + ["VitalityPercentLifeRegen"] = { affix = "", "Regenerate (1-1.5)% of Life per second while affected by Vitality", statOrder = { 7512 }, level = 1, group = "VitalityPercentLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1165583295] = { "Regenerate (1-1.5)% of Life per second while affected by Vitality" }, } }, + ["VitalityLifeRecoveryRate"] = { affix = "", "(10-15)% increased Life Recovery Rate while affected by Vitality", statOrder = { 7495 }, level = 1, group = "VitalityLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2690790844] = { "(10-15)% increased Life Recovery Rate while affected by Vitality" }, } }, + ["VitalityLifeGainPerHit"] = { affix = "", "Gain (20-30) Life per Enemy Hit while affected by Vitality", statOrder = { 7456 }, level = 1, group = "VitalityLifeGainPerHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4259701244] = { "Gain (20-30) Life per Enemy Hit while affected by Vitality" }, } }, + ["VitalityLifeRecoveryFromFlasks_"] = { affix = "", "(50-70)% increased Life Recovery from Flasks while affected by Vitality", statOrder = { 6730 }, level = 1, group = "VitalityLifeRecoveryFromFlasks", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [362838683] = { "(50-70)% increased Life Recovery from Flasks while affected by Vitality" }, } }, + ["ClarityReducedManaCost"] = { affix = "", "-(10-5) to Total Mana Cost of Skills while affected by Clarity", statOrder = { 10205 }, level = 1, group = "ClarityReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2445618239] = { "-(10-5) to Total Mana Cost of Skills while affected by Clarity" }, } }, + ["ClarityReducedManaCostNonChannelled"] = { affix = "", "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity", statOrder = { 10210 }, level = 1, group = "ClarityReducedManaCostNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1853636813] = { "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity" }, } }, + ["ClarityDamageTakenFromManaBeforeLife"] = { affix = "", "(6-10)% of Damage taken from Mana before Life while affected by Clarity", statOrder = { 6174 }, level = 1, group = "ClarityDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2383304564] = { "(6-10)% of Damage taken from Mana before Life while affected by Clarity" }, } }, + ["ClarityRecoverManaOnSkillUse"] = { affix = "", "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", statOrder = { 9990 }, level = 1, group = "ClarityRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1699077932] = { "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity" }, } }, + ["ClarityManaAddedAsEnergyShield"] = { affix = "", "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", statOrder = { 9295 }, level = 1, group = "ClarityManaAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2831391506] = { "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity" }, } }, + ["ClarityManaRecoveryRate"] = { affix = "", "(10-15)% increased Mana Recovery Rate while affected by Clarity", statOrder = { 8306 }, level = 1, group = "ClarityManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [556659145] = { "(10-15)% increased Mana Recovery Rate while affected by Clarity" }, } }, + ["ClarityDamageTakenGainedAsMana"] = { affix = "", "(15-20)% of Damage taken while affected by Clarity Recouped as Mana", statOrder = { 6193 }, level = 1, group = "ClarityDamageTakenGainedAsMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [380220671] = { "(15-20)% of Damage taken while affected by Clarity Recouped as Mana" }, } }, + ["HasteChanceToDodgeSpells"] = { affix = "", "+(5-8)% chance to Suppress Spell Damage while affected by Haste", statOrder = { 10323 }, level = 1, group = "HasteChanceToDodgeSpells", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2170859717] = { "+(5-8)% chance to Suppress Spell Damage while affected by Haste" }, } }, + ["HasteGainOnslaughtOnKill"] = { affix = "", "You gain Onslaught for 4 seconds on Kill while affected by Haste", statOrder = { 6880 }, level = 1, group = "HasteGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1424006185] = { "You gain Onslaught for 4 seconds on Kill while affected by Haste" }, } }, + ["HasteGainPhasing"] = { affix = "", "You have Phasing while affected by Haste", statOrder = { 6891 }, level = 1, group = "HasteGainPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1346311588] = { "You have Phasing while affected by Haste" }, } }, + ["HasteUnaffectedByTemporalChains"] = { affix = "", "Unaffected by Temporal Chains while affected by Haste", statOrder = { 10641 }, level = 1, group = "HasteUnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2806391472] = { "Unaffected by Temporal Chains while affected by Haste" }, } }, + ["HasteDebuffsExpireFaster"] = { affix = "", "Debuffs on you expire (15-20)% faster while affected by Haste", statOrder = { 6237 }, level = 1, group = "HasteDebuffsExpireFaster", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [207635700] = { "Debuffs on you expire (15-20)% faster while affected by Haste" }, } }, + ["HasteCooldownRecoveryForMovementSkills"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", statOrder = { 9540 }, level = 1, group = "HasteCooldownRecoveryForMovementSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3332055899] = { "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste" }, } }, + ["PurityOfFireTakePhysicalAsFire"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", statOrder = { 9803 }, level = 1, group = "PurityOfFireTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1798459983] = { "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire" }, } }, + ["PurityOfFireImmuneToIgnite"] = { affix = "", "Immune to Ignite while affected by Purity of Fire", statOrder = { 7334 }, level = 1, group = "PurityOfFireImmuneToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [371612541] = { "Immune to Ignite while affected by Purity of Fire" }, } }, + ["PurityOfFireUnaffectedByBurningGround"] = { affix = "", "Unaffected by Burning Ground while affected by Purity of Fire", statOrder = { 10614 }, level = 1, group = "PurityOfFireUnaffectedByBurningGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3308185931] = { "Unaffected by Burning Ground while affected by Purity of Fire" }, } }, + ["PurityOfFireUnaffectedByFlammability__"] = { affix = "", "Unaffected by Flammability while affected by Purity of Fire", statOrder = { 10627 }, level = 1, group = "PurityOfFireUnaffectedByFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1173690938] = { "Unaffected by Flammability while affected by Purity of Fire" }, } }, + ["PurityOfFireReducedReflectedFireDamage"] = { affix = "", "Prevent +(50-75)% of Reflected Fire Damage you would take while affected by Purity of Fire", statOrder = { 9506 }, level = 1, group = "PurityOfFireReducedReflectedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [435235774] = { "Prevent +(50-75)% of Reflected Fire Damage you would take while affected by Purity of Fire" }, } }, + ["PurityOfFireColdAndLightningTakenAsFire"] = { affix = "", "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", statOrder = { 5883 }, level = 1, group = "PurityOfFireColdAndLightningTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1723738042] = { "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" }, } }, + ["PurityOfIceTakePhysicalAsIce"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", statOrder = { 9801 }, level = 1, group = "PurityOfIceTakePhysicalAsIce", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1779027621] = { "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice" }, } }, + ["PurityOfIceImmuneToFreeze"] = { affix = "", "Immune to Freeze while affected by Purity of Ice", statOrder = { 7331 }, level = 1, group = "PurityOfIceImmuneToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2720072724] = { "Immune to Freeze while affected by Purity of Ice" }, } }, + ["PurityOfIceUnaffectedByChilledGround"] = { affix = "", "Unaffected by Chilled Ground while affected by Purity of Ice", statOrder = { 10619 }, level = 1, group = "PurityOfIceUnaffectedByChilledGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2647344903] = { "Unaffected by Chilled Ground while affected by Purity of Ice" }, } }, + ["PurityOfIceUnaffectedByFrostbite"] = { affix = "", "Unaffected by Frostbite while affected by Purity of Ice", statOrder = { 10629 }, level = 1, group = "PurityOfIceUnaffectedByFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4012281889] = { "Unaffected by Frostbite while affected by Purity of Ice" }, } }, + ["PurityOfIceReducedReflectedColdDamage"] = { affix = "", "Prevent +(50-75)% of Reflected Cold Damage you would take while affected by Purity of Ice", statOrder = { 9504 }, level = 1, group = "PurityOfIceReducedReflectedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2480601356] = { "Prevent +(50-75)% of Reflected Cold Damage you would take while affected by Purity of Ice" }, } }, + ["PurityOfIceFireAndLightningTakenAsCold"] = { affix = "", "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", statOrder = { 6640 }, level = 1, group = "PurityOfIceFireAndLightningTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2189467271] = { "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" }, } }, + ["PurityOfLightningTakePhysicalAsLightning"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", statOrder = { 9805 }, level = 1, group = "PurityOfLightningTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [254131992] = { "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning" }, } }, + ["PurityOfLightningImmuneToShock_"] = { affix = "", "Immune to Shock while affected by Purity of Lightning", statOrder = { 7339 }, level = 1, group = "PurityOfLightningImmuneToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [281949611] = { "Immune to Shock while affected by Purity of Lightning" }, } }, + ["PurityOfLightningUnaffectedByShockedGround"] = { affix = "", "Unaffected by Shocked Ground while affected by Purity of Lightning", statOrder = { 10639 }, level = 1, group = "PurityOfLightningUnaffectedByShockedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567659895] = { "Unaffected by Shocked Ground while affected by Purity of Lightning" }, } }, + ["PurityOfLightningUnaffectedByConductivity_____"] = { affix = "", "Unaffected by Conductivity while affected by Purity of Lightning", statOrder = { 10620 }, level = 1, group = "PurityOfLightningUnaffectedByConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1567542124] = { "Unaffected by Conductivity while affected by Purity of Lightning" }, } }, + ["PurityOfLightningReducedReflectedLightningDamage"] = { affix = "", "Prevent +(50-75)% of Reflected Lightning Damage you would take while", "affected by Purity of Lightning", statOrder = { 9507, 9507.1 }, level = 1, group = "PurityOfLightningReducedReflectedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3023818840] = { "Prevent +(50-75)% of Reflected Lightning Damage you would take while", "affected by Purity of Lightning" }, } }, + ["PurityOfLightningFireAndColdTakenAsLightning"] = { affix = "", "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", statOrder = { 6638, 6638.1 }, level = 1, group = "PurityOfLightningFireAndColdTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3953667743] = { "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning" }, } }, + ["PurityOfElementsTakePhysicalAsFire_"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", statOrder = { 9802 }, level = 1, group = "PurityOfElementsTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [1722775216] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements" }, } }, + ["PurityOfElementsTakePhysicalAsCold"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", statOrder = { 9800 }, level = 1, group = "PurityOfElementsTakePhysicalAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1710207583] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements" }, } }, + ["PurityOfElementsTakePhysicalAsLightning"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", statOrder = { 9804 }, level = 1, group = "PurityOfElementsTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [873224517] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements" }, } }, + ["PurityOfElementsUnaffectedByElementalWeakness"] = { affix = "", "Unaffected by Elemental Weakness while affected by Purity of Elements", statOrder = { 10625 }, level = 1, group = "PurityOfElementsUnaffectedByElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3223142064] = { "Unaffected by Elemental Weakness while affected by Purity of Elements" }, } }, + ["PurityOfElementsReducedReflectedElementalDamage"] = { affix = "", "Prevent +(50-75)% of Reflected Elemental Damage you would take while", "affected by Purity of Elements", statOrder = { 9505, 9505.1 }, level = 1, group = "PurityOfElementsReducedReflectedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1574578643] = { "Prevent +(50-75)% of Reflected Elemental Damage you would take while", "affected by Purity of Elements" }, } }, + ["PurityOfElementsChaosResistance"] = { affix = "", "+(30-50)% to Chaos Resistance while affected by Purity of Elements", statOrder = { 5825 }, level = 1, group = "PurityOfElementsChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [1138813382] = { "+(30-50)% to Chaos Resistance while affected by Purity of Elements" }, } }, + ["PurityOfElementsMaximumElementalResistances"] = { affix = "", "+1% to all maximum Elemental Resistances while affected by Purity of Elements", statOrder = { 4604 }, level = 1, group = "PurityOfElementsMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [3234824465] = { "+1% to all maximum Elemental Resistances while affected by Purity of Elements" }, } }, + ["PrecisionIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(20-30)% to Critical Strike Multiplier while affected by Precision", statOrder = { 6052 }, level = 1, group = "PrecisionIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1817023621] = { "+(20-30)% to Critical Strike Multiplier while affected by Precision" }, } }, + ["PrecisionIncreasedAttackDamage"] = { affix = "", "(40-60)% increased Attack Damage while affected by Precision", statOrder = { 4912 }, level = 1, group = "PrecisionIncreasedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2048747572] = { "(40-60)% increased Attack Damage while affected by Precision" }, } }, + ["PrecisionFlaskChargeOnCrit_"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", statOrder = { 9979 }, level = 1, group = "PrecisionFlaskChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [3772841281] = { "Gain a Flask Charge when you deal a Critical Strike while affected by Precision" }, } }, + ["PrecisionIncreasedAttackSpeed"] = { affix = "", "(10-15)% increased Attack Speed while affected by Precision", statOrder = { 4954 }, level = 1, group = "PrecisionIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3375743050] = { "(10-15)% increased Attack Speed while affected by Precision" }, } }, + ["PrecisionCannotBeBlinded"] = { affix = "", "Cannot be Blinded while affected by Precision", statOrder = { 5469 }, level = 1, group = "PrecisionCannotBeBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1653848515] = { "Cannot be Blinded while affected by Precision" }, } }, + ["PrideChanceForDoubleDamage"] = { affix = "", "(8-12)% chance to deal Double Damage while using Pride", statOrder = { 9854 }, level = 1, group = "PrideChanceForDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3371719014] = { "(8-12)% chance to deal Double Damage while using Pride" }, } }, + ["PrideIntimidateOnHit"] = { affix = "", "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", statOrder = { 9856 }, level = 1, group = "PrideIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3772848194] = { "Your Hits Intimidate Enemies for 4 seconds while you are using Pride" }, } }, + ["PrideIncreasedPhysicalDamage_"] = { affix = "", "(40-60)% increased Physical Damage while using Pride", statOrder = { 9860 }, level = 1, group = "PrideIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [576528026] = { "(40-60)% increased Physical Damage while using Pride" }, } }, + ["PrideChanceToImpale"] = { affix = "", "25% chance to Impale Enemies on Hit with Attacks while using Pride", statOrder = { 9855 }, level = 1, group = "PrideChanceToImpale", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4173751044] = { "25% chance to Impale Enemies on Hit with Attacks while using Pride" }, } }, + ["PrideImpaleAdditionalHits"] = { affix = "", "Impales you inflict last 2 additional Hits while using Pride", statOrder = { 9862 }, level = 1, group = "PrideImpaleAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1011863394] = { "Impales you inflict last 2 additional Hits while using Pride" }, } }, + ["SublimeVisionAnger"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Scorch while affected by Anger", "Aura Skills other than Anger are Disabled", statOrder = { 3605, 4701, 10825 }, level = 1, group = "SublimeVisionAnger", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1585991257] = { "Always Scorch while affected by Anger" }, [2185337019] = { "Aura Skills other than Anger are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["SublimeVisionClarity"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "80% increased Effect of Arcane Surge on you while affected by Clarity", "Aura Skills other than Clarity are Disabled", statOrder = { 3605, 4749, 10826 }, level = 1, group = "SublimeVisionClarity", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1808477254] = { "80% increased Effect of Arcane Surge on you while affected by Clarity" }, [2010835448] = { "Aura Skills other than Clarity are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["SublimeVisionDetermination"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Endurance Charges while affected by Determination", "Aura Skills other than Determination are Disabled", statOrder = { 3605, 9254, 10827 }, level = 1, group = "SublimeVisionDetermination", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [460973817] = { "Aura Skills other than Determination are Disabled" }, [2110586221] = { "+1 to Maximum Endurance Charges while affected by Determination" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["SublimeVisionDiscipline"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Power Charges while affected by Discipline", "Aura Skills other than Discipline are Disabled", statOrder = { 3605, 9303, 10828 }, level = 1, group = "SublimeVisionDiscipline", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2204523353] = { "Aura Skills other than Discipline are Disabled" }, [1465672972] = { "+1 to Maximum Power Charges while affected by Discipline" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["SublimeVisionGrace"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Frenzy Charges while affected by Grace", "Aura Skills other than Grace are Disabled", statOrder = { 3605, 9264, 10829 }, level = 1, group = "SublimeVisionGrace", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1747401945] = { "Aura Skills other than Grace are Disabled" }, [3458080964] = { "+1 to Maximum Frenzy Charges while affected by Grace" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["SublimeVisionHaste"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "10% increased Action Speed while affected by Haste", "Aura Skills other than Haste are Disabled", statOrder = { 3605, 4567, 10830 }, level = 1, group = "SublimeVisionHaste", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1960426186] = { "10% increased Action Speed while affected by Haste" }, [3067441492] = { "Aura Skills other than Haste are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["SublimeVisionHatred"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always inflict Brittle while affected by Hatred", "Aura Skills other than Hatred are Disabled", statOrder = { 3605, 4696, 10831 }, level = 1, group = "SublimeVisionHatred", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [13285831] = { "Always inflict Brittle while affected by Hatred" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [3348211884] = { "Aura Skills other than Hatred are Disabled" }, } }, + ["SublimeVisionMalevolence"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "You can apply an additional Curse while affected by Malevolence", "Aura Skills other than Malevolence are Disabled", statOrder = { 3605, 9654, 10832 }, level = 1, group = "SublimeVisionMalevolence", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [4102244881] = { "You can apply an additional Curse while affected by Malevolence" }, [3540033124] = { "Aura Skills other than Malevolence are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["SublimeVisionPrecision"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "25% more Critical Strike chance while affected by Precision", "Aura Skills other than Precision are Disabled", statOrder = { 3605, 5998, 10833 }, level = 1, group = "SublimeVisionPrecision", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2800254163] = { "Aura Skills other than Precision are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2617837023] = { "25% more Critical Strike chance while affected by Precision" }, } }, + ["SublimeVisionPride"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies", "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", "Aura Skills other than Pride are Disabled", statOrder = { 3603, 6602, 10834 }, level = 1, group = "SublimeVisionPride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3970941380] = { "Aura Skills other than Pride are Disabled" }, [1961516633] = { "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, [1636209393] = { "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } }, + ["SublimeVisionPurityOfElements"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+3% to all maximum Elemental Resistances while affected by Purity of Elements", "Aura Skills other than Purity of Elements are Disabled", statOrder = { 3605, 4604, 10835 }, level = 1, group = "SublimeVisionPurityOfElements", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [2225434657] = { "Aura Skills other than Purity of Elements are Disabled" }, [3234824465] = { "+3% to all maximum Elemental Resistances while affected by Purity of Elements" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["SublimeVisionPurityOfIce"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", "Aura Skills other than Purity of Ice are Disabled", statOrder = { 3605, 6640, 10837 }, level = 1, group = "SublimeVisionPurityOfIce", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2189467271] = { "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2517644375] = { "Aura Skills other than Purity of Ice are Disabled" }, } }, + ["SublimeVisionPurityOfLightning"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", "Aura Skills other than Purity of Lightning are Disabled", statOrder = { 3605, 6638, 6638.1, 10838 }, level = 1, group = "SublimeVisionPurityOfLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3953667743] = { "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [2523986538] = { "Aura Skills other than Purity of Lightning are Disabled" }, } }, + ["SublimeVisionPurityOfFire"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", "Aura Skills other than Purity of Fire are Disabled", statOrder = { 3605, 5883, 10836 }, level = 1, group = "SublimeVisionPurityOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3192291777] = { "Aura Skills other than Purity of Fire are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [1723738042] = { "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire" }, } }, + ["SublimeVisionVitality"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Regenerate 15% Life over one second when hit while affected by Vitality", "Aura Skills other than Vitality are Disabled", statOrder = { 3605, 10033, 10839 }, level = 1, group = "SublimeVisionVitality", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [110034065] = { "Aura Skills other than Vitality are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [1366273824] = { "Regenerate 15% Life over one second when hit while affected by Vitality" }, } }, + ["SublimeVisionWrath"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Sap while affected by Wrath", "Aura Skills other than Wrath are Disabled", statOrder = { 3605, 4700, 10840 }, level = 1, group = "SublimeVisionWrath", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2499038519] = { "Always Sap while affected by Wrath" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, [3292388799] = { "Aura Skills other than Wrath are Disabled" }, } }, + ["SublimeVisionZealotry"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Unaffected by Curses while affected by Zealotry", "Aura Skills other than Zealotry are Disabled", statOrder = { 3605, 10622, 10841 }, level = 1, group = "SublimeVisionZealotry", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3403419549] = { "Unaffected by Curses while affected by Zealotry" }, [374559518] = { "Aura Skills other than Zealotry are Disabled" }, [472812693] = { "Auras from your Skills have (20-40)% increased Effect on you" }, } }, + ["MalevolenceSkillEffectDuration"] = { affix = "", "(20-30)% increased Skill Effect Duration while affected by Malevolence", statOrder = { 10199 }, level = 1, group = "MalevolenceSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4127613649] = { "(20-30)% increased Skill Effect Duration while affected by Malevolence" }, } }, + ["MalevolenceChaosNonAilmentDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6347 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, + ["MalevolenceColdDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6347 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, + ["MalevolenceLifeAndEnergyShieldRecoveryRate"] = { affix = "", "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence", statOrder = { 7445 }, level = 1, group = "MalevolenceLifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3643449791] = { "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence" }, } }, + ["MalevolenceUnaffectedByPoison"] = { affix = "", "Unaffected by Poison while affected by Malevolence", statOrder = { 10633 }, level = 1, group = "MalevolenceUnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [34059570] = { "Unaffected by Poison while affected by Malevolence" }, } }, + ["MalevolenceUnaffectedByBleeding_"] = { affix = "", "Unaffected by Bleeding while affected by Malevolence", statOrder = { 10610 }, level = 1, group = "MalevolenceUnaffectedByBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4104891138] = { "Unaffected by Bleeding while affected by Malevolence" }, } }, + ["MalevolenceYourAilmentsDealDamageFaster__"] = { affix = "", "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence", statOrder = { 10823 }, level = 1, group = "MalevolenceYourAilmentsDealDamageFaster", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [3468843137] = { "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence" }, } }, + ["MalevolenceDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6347 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2736708072] = { "+(18-22)% to Damage over Time Multiplier while affected by Malevolence" }, } }, + ["ZealotryCriticalStrikesPenetratesElementalResistances"] = { affix = "", "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry", statOrder = { 6066 }, level = 1, group = "ZealotryCriticalStrikesPenetratesElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [2091518682] = { "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry" }, } }, + ["ZealotryCastSpeed"] = { affix = "", "(10-15)% increased Cast Speed while affected by Zealotry", statOrder = { 5547 }, level = 1, group = "ZealotryCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2444534954] = { "(10-15)% increased Cast Speed while affected by Zealotry" }, } }, + ["ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { affix = "", "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds", statOrder = { 5934 }, level = 1, group = "ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2163419452] = { "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds" }, } }, + ["ZealotryConsecratedGroundEnemyDamageTaken"] = { affix = "", "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage", statOrder = { 5931 }, level = 1, group = "ZealotryConsecratedGroundEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2434030180] = { "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage" }, } }, + ["ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { affix = "", "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", statOrder = { 6814 }, level = 1, group = "ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1919069577] = { "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry" }, } }, + ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1759 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3848992177] = { "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry" }, } }, + ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateNew"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1758 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2731416566] = { "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry" }, } }, + ["ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { affix = "", "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", statOrder = { 6004 }, level = 1, group = "ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [214835567] = { "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry" }, } }, + ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9667 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1886245216] = { "+1 to number of Summoned Arbalists" }, } }, + ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10431 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2087104263] = { "Summoned Arbalists fire (2-4) additional Projectiles" }, } }, + ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10421 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4054463312] = { "Summoned Arbalists have (30-40)% increased Attack Speed" }, } }, + ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10440 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3741465646] = { "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets" }, } }, + ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10439 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2461270975] = { "Summoned Arbalists' Projectiles Fork" }, } }, + ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10422 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3010688059] = { "Summoned Arbalists' Projectiles Chain +2 times" }, } }, + ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10432 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1857935842] = { "Summoned Arbalists' Projectiles Split into 3" }, } }, + ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10425 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3057722139] = { "Summoned Arbalists have (25-35)% chance to deal Double Damage" }, } }, + ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10428 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3652224635] = { "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit" }, } }, + ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10427 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3964074505] = { "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit" }, } }, + ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10430 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3976916585] = { "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit" }, } }, + ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10445 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3327243369] = { "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit" }, } }, + ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10444 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit" }, } }, + ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10446 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit" }, } }, + ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10424 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1658936540] = { "Summoned Arbalists have (10-20)% chance to Crush on Hit" }, } }, + ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10437, 10442 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [831284309] = { "Summoned Arbalists have (10-20)% chance to Ignite" }, [2954406821] = { "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage" }, } }, + ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10436, 10441 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2052458107] = { "Summoned Arbalists have (10-20)% chance to Freeze" }, [1094808741] = { "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage" }, } }, + ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10438, 10443 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2144847042] = { "Summoned Arbalists have (10-20)% chance to Shock" }, [2934219859] = { "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage" }, } }, + ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10434, 10445 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1477474340] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage" }, [3327243369] = { "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit" }, } }, + ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10433, 10444 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [157070900] = { "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit" }, [655918588] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage" }, } }, + ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10435, 10446 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223656429] = { "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit" }, [2631827343] = { "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage" }, } }, + ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10423 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1841503755] = { "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding" }, } }, + ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10429 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894626576] = { "Summoned Arbalists have (40-60)% chance to Poison" }, } }, + ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10426 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [357325557] = { "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite" }, } }, } \ No newline at end of file diff --git a/src/Data/Uniques/amulet.lua b/src/Data/Uniques/amulet.lua index ac92677b02..9ad6322d51 100644 --- a/src/Data/Uniques/amulet.lua +++ b/src/Data/Uniques/amulet.lua @@ -250,7 +250,8 @@ Implicits: 1 {variant:3}(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies ]],[[ Blightwell -Clutching Talisman +{variant:1,2}Clutching Talisman +{variant:3}Shield Crab Talisman Variant: Pre 3.16.0 Variant: Pre 3.29.0 Variant: Current @@ -258,17 +259,17 @@ League: Talisman Hardcore Talisman Tier: 2 Requires Level 28 Implicits: 1 -{tags:defences}(15-25)% increased Global Defences +{variant:1,2}{tags:defences}(15-25)% increased Global Defences {variant:1,2}{tags:defences}+(20-30) to maximum Energy Shield {variant:3}{tags:defences}+(50-100) to maximum Energy Shield {tags:resistance}+(15-30)% to Fire Resistance {tags:resistance}+(15-30)% to Lightning Resistance +{variant:3}(15-30)% increased Flask Effect Duration {variant:1}{tags:defences}30% slower start of Energy Shield Recharge during any Flask Effect {variant:2,3}{tags:defences}50% slower start of Energy Shield Recharge during any Flask Effect {variant:1}{tags:defences}400% increased Energy Shield Recharge Rate during any Flask Effect {variant:2,3}{tags:defences}(150-200)% increased Energy Shield Recharge Rate during any Flask Effect -{variant:3}(10-15)% increased Flask Effect Duration -Corrupted +{variant:1,2}Corrupted ]],[[ Blood of Corruption Amber Amulet @@ -481,6 +482,7 @@ Implicits: 33 {variant:4}{tags:attack}(20-30)% increased Attack Damage {variant:8}{tags:caster}(20-30)% increased Spell Damage {variant:9}{tags:physical_damage}(20-30)% increased Global Physical Damage +{variant:33}+(12-18)% to Damage over Time Multiplier {variant:6}{tags:elemental_damage}(20-30)% increased Fire Damage {variant:5}{tags:elemental_damage}(20-30)% increased Cold Damage {variant:7}{tags:elemental_damage}(20-30)% increased Lightning Damage @@ -508,8 +510,7 @@ Implicits: 33 {variant:26}50% of Cold Damage from Hits taken as Lightning Damage {variant:30}50% of Lightning Damage from Hits taken as Fire Damage {variant:29}50% of Lightning Damage from Hits taken as Cold Damage -{variant:33}+(12-18)% to Damage over Time Multiplier -Implicit Modifier magnitudes are doubled +(50-100)% increased Enchantment Modifier magnitudes ]],[[ The Felbog Fang Citrine Amulet @@ -835,20 +836,25 @@ Implicits: 1 {tags:critical}Critical Strikes have Culling Strike ]],[[ Natural Hierarchy -Rotfeather Talisman +{variant:1}Rotfeather Talisman +{variant:2}Rhex Talisman Variant: Pre 3.29.0 Variant: Current League: Talisman Standard, Talisman Hardcore Talisman Tier: 3 Requires Level 44 Implicits: 1 -(25-35)% increased Damage +{variant:1}(25-35)% increased Damage {variant:1}{tags:physical_damage}(10-15)% increased Global Physical Damage {variant:1}{tags:elemental_damage}(25-30)% increased Fire Damage {variant:1}{tags:elemental_damage}(20-25)% increased Cold Damage {variant:1}{tags:elemental_damage}(15-20)% increased Lightning Damage {variant:1}{tags:chaos_damage}(30-35)% increased Chaos Damage -Corrupted +{variant:2}{tags:physical_damage,elemental_damage}Gain (10-15)% of Physical Damage as Extra Lightning Damage +{variant:2}{tags:elemental_damage}Gain (15-20)% of Lightning Damage as Extra Cold Damage +{variant:2}{tags:elemental_damage}Gain (20-25)% of Cold Damage as Extra Fire Damage +{variant:2}{tags:elemental_damage,chaos_damage}Gain (25-30)% of Fire Damage as Extra Chaos Damage +{variant:1}Corrupted ]],[[ Night's Hold Black Maw Talisman @@ -924,7 +930,8 @@ Blind you inflict is Reflected to you {variant:2}(10-20)% chance to gain a Frenzy Charge on Hit while Blinded ]],[[ Rigwald's Curse -Wereclaw Talisman +{variant:1,2}Wereclaw Talisman +{variant:3} Wolf Alpha Talisman League: Talisman Standard Variant: Pre 2.2.0 Variant: Pre 3.29.0 @@ -933,13 +940,13 @@ Talisman Tier: 2 Requires Level 28 Implicits: 2 {variant:1}{tags:critical}+(16-24)% to Global Critical Strike Multiplier -{variant:2,3}{tags:critical}+(24-36)% to Global Critical Strike Multiplier +{variant:2}{tags:critical}+(24-36)% to Global Critical Strike Multiplier {variant:1,2}{tags:critical}+7% to Unarmed Melee Attack Critical Strike Chance {variant:3}{tags:critical}+(5-10)% to Unarmed Melee Attack Critical Strike Chance {tags:attack}Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills {tags:attack,speed}Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills {tags:attack,critical}Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills -Corrupted +{variant:1,2}Corrupted ]],[[ Sacrificial Heart Paua Amulet diff --git a/src/Data/Uniques/body.lua b/src/Data/Uniques/body.lua index 12fa4feda5..0a8f6e718e 100644 --- a/src/Data/Uniques/body.lua +++ b/src/Data/Uniques/body.lua @@ -593,13 +593,13 @@ Sage's Robe Variant: Pre 3.19.0 Variant: Current Implicits: 0 -Gems can be Socketed in this Item ignoring Socket Colour {variant:1}Gems Socketed in Red Sockets have +1 to Level {variant:2}Gems Socketed in Red Sockets have +2 to Level {variant:1}Gems Socketed in Green Sockets have +10% to Quality -{variant:2}Gems Socketed in Green Sockets have +30% to Quality +{variant:2}Gems Socketed in Green Sockets have +20% to Quality {variant:1}Gems Socketed in Blue Sockets gain 25% increased Experience {variant:2}Gems Socketed in Blue Sockets gain 100% increased Experience +Gems Socketed always have the Quality bonus from Socket Colour Has no Attribute Requirements ]],[[ Doedre's Skin @@ -1352,9 +1352,9 @@ Variant: Pre 3.29.0 Variant: Current Implicits: 1 +(20-25) to maximum Mana +{variant:2}(80-100)% increased Implicit Modifier magnitudes (140-160)% increased Evasion and Energy Shield {variant:1}+(80-100) to maximum Life -{variant:2}(80-100)% increased Implicit Modifier magnitudes Temporal Rift has no Reservation (80-100)% of Damage taken Recouped as Life Debuffs on you expire (80-100)% faster diff --git a/src/Data/Uniques/boots.lua b/src/Data/Uniques/boots.lua index ceb94d9302..17ece3e698 100644 --- a/src/Data/Uniques/boots.lua +++ b/src/Data/Uniques/boots.lua @@ -124,9 +124,9 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 68, 120 Str Has no Sockets -Cannot be Knocked Back {variant:1}+(120-150) to maximum Life {variant:2}+(150-200) to maximum Life +Cannot be Knocked Back {variant:2}Action Speed cannot be modified to below Base Value Unwavering Stance ]],[[ diff --git a/src/Data/Uniques/bow.lua b/src/Data/Uniques/bow.lua index a7b3e7b7b7..828dfdf415 100644 --- a/src/Data/Uniques/bow.lua +++ b/src/Data/Uniques/bow.lua @@ -272,7 +272,7 @@ Adds (130-150) to (270-300) Cold Damage {variant:2}+(400-500) to Accuracy Rating {variant:1}+(400-500) to Accuracy Rating 4% increased Movement Speed per Frenzy Charge -2% chance to Avoid Elemental Damage from Hits per Frenzy Charge +2% chance to Avoid Damage of each Element from Hits per Frenzy Charge 12 to 14 Added Cold Damage per Frenzy Charge 0.5% of Attack Damage Leeched as Life per Frenzy Charge {variant:1}400 Cold Damage taken per second per Frenzy Charge while moving diff --git a/src/Data/Uniques/dagger.lua b/src/Data/Uniques/dagger.lua index 532b60dedf..a436713cc7 100644 --- a/src/Data/Uniques/dagger.lua +++ b/src/Data/Uniques/dagger.lua @@ -289,7 +289,7 @@ Variant: Pre 3.5.0 Variant: Current Requires Level 68, 76 Dex, 149 Int Implicits: 1 -40% increased Global Critical Strike Chance +(50-55)% increased Global Critical Strike Chance Adds (85-110) to (135-150) Physical Damage Adds (130-160) to (220-240) Fire Damage {variant:2}50% chance to cause Bleeding on Hit @@ -312,7 +312,7 @@ Variant: Pre 3.16.0 Variant: Current Requires Level 66, 95 Dex, 131 Int Implicits: 1 -30% increased Global Critical Strike Chance +(40-45)% increased Global Critical Strike Chance Adds (160-190) to (280-320) Cold Damage (10-15)% increased Attack Speed {variant:1}+(300-400) to Evasion Rating diff --git a/src/Data/Uniques/gloves.lua b/src/Data/Uniques/gloves.lua index 47f3dde842..d6d342239d 100644 --- a/src/Data/Uniques/gloves.lua +++ b/src/Data/Uniques/gloves.lua @@ -117,8 +117,8 @@ Requires Level 47, 68 Str Socketed Gems are Supported by Level 30 Rage (120-150)% increased Armour {variant:1}(10-25)% reduced Rage Cost of Skills -{variant:2}(20-40)% increased Rage Cost Efficiency Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls +{variant:2}(20-40)% increased Rage Cost Efficiency You cannot gain Rage during Soul Gain Prevention ]],[[ Empire's Grasp @@ -669,9 +669,9 @@ Socketed Gems are Supported by Level 5 Concentrated Effect (120-160)% increased Armour and Evasion +(50-70) to maximum Life {variant:1}4% reduced Mana Cost per Endurance Charge -{variant:2}10% increased Mana Cost Efficiency per Endurance Charge Gain Rampage while at Maximum Endurance Charges Lose all Endurance Charges when Rampage ends +{variant:2}10% increased Mana Cost Efficiency per Endurance Charge ]],[[ Tanu Ahi Wyrmscale Gauntlets @@ -840,14 +840,14 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 32, 26 Str, 26 Int (80-120)% increased Armour and Energy Shield -{variant:1}Minions convert 25% of Physical Damage to Fire Damage per Red Socket {variant:2}Minions convert 25% of Physical Damage to Fire Damage per Socketed Red Gem -{variant:1}Minions convert 25% of Physical Damage to Cold Damage per Green Socket +{variant:1}Minions convert 25% of Physical Damage to Fire Damage per Red Socket {variant:2}Minions convert 25% of Physical Damage to Cold Damage per Socketed Green Gem -{variant:1}Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket +{variant:1}Minions convert 25% of Physical Damage to Cold Damage per Green Socket {variant:2}Minions convert 25% of Physical Damage to Lightning Damage per Socketed Blue Gem +{variant:1}Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket +{variant:2}Minions convert 25% of Physical Damage to Chaos Damage per Empty Socket {variant:1}Minions convert 25% of Physical Damage to Chaos Damage per White Socket -{variant:2}Minions convert 25% of Physical Damage to Chaos Damage per Socketed White Gem Minions have (5-10)% chance to Freeze, Shock and Ignite ]],[[ Volkuur's Guidance @@ -1083,8 +1083,7 @@ Requires Level 31, 25 Dex, 25 Int {variant:2}+(25-45)% to Global Critical Strike Multiplier {variant:3}+(20-30)% to Global Critical Strike Multiplier (100-130)% increased Evasion and Energy Shield -{variant:1}0.2% of Physical Attack Damage Leeched as Mana -{variant:2}0.2% of Physical Attack Damage Leeched as Mana +{variant:1,2}0.2% of Physical Attack Damage Leeched as Mana {variant:3}0.2% of Attack Damage Leeched as Mana Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage diff --git a/src/Data/Uniques/helmet.lua b/src/Data/Uniques/helmet.lua index c94769888a..270e902880 100644 --- a/src/Data/Uniques/helmet.lua +++ b/src/Data/Uniques/helmet.lua @@ -443,7 +443,7 @@ Requires Level 69, 154 Int -30% to Fire Resistance (0.4-0.8)% of Attack Damage Leeched as Life (0.2-0.4)% of Attack Damage Leeched as Mana -Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value +Attacks have 150% Arcane Might ]],[[ Crown of Thorns Vine Circlet @@ -1111,10 +1111,10 @@ Variant: Current League: Bestiary Source: Drops from unique{Craiceann, First of the Deep} Requires Level 58, 64 Str, 64 Int -{variant:1}+(7-9)% Chance to Block Spell Damage -{variant:2}+(4-6)% Chance to Block Spell Damage (140-180)% increased Armour and Energy Shield (4-7)% increased maximum Life +{variant:1}+(7-9)% Chance to Block Spell Damage +{variant:2}+(4-6)% Chance to Block Spell Damage Cannot lose Crab Barriers if you have lost Crab Barriers Recently +3% Chance to Block Attack Damage while you have at least 5 Crab Barriers +5% Chance to Block Attack Damage while you have at least 10 Crab Barriers @@ -1193,8 +1193,8 @@ Requires Level 12, 16 Str, 16 Int {variant:1}+(10-20)% to all Elemental Resistances {variant:1}+20% to all Elemental Resistances while on Low Life {variant:2,3}(10-20)% reduced Mana Cost of Skills -{variant:4}(30-50)% increased Mana Cost Efficiency {variant:1}20% reduced Mana Cost of Skills when on Low Life +{variant:4}(30-50)% increased Mana Cost Efficiency ]],[[ Kitava's Thirst Zealot Helmet @@ -1306,8 +1306,8 @@ Implicits: 1 Minions deal (15-20)% increased Damage Grants Level 20 Death Wish Skill +(45-65) to maximum Life -{variant:1}(20-30)% reduced Mana Cost of Minion Skills {variant:2}(40-60)% increased Mana Cost Efficiency of Minion Skills +{variant:1}(20-30)% reduced Mana Cost of Minion Skills Minions are Aggressive ]],[[ Memory Vault diff --git a/src/Data/Uniques/jewel.lua b/src/Data/Uniques/jewel.lua index dd16be1aea..7e08b85ddf 100644 --- a/src/Data/Uniques/jewel.lua +++ b/src/Data/Uniques/jewel.lua @@ -622,10 +622,10 @@ Cobalt Jewel Variant: Pre 3.25.0 Variant: Current League: Heist -{variant:1}+(2-4)% Chance to Block Spell Damage -{variant:2}+(2-6)% Chance to Block Spell Damage {variant:1}+(2-4)% Chance to Block Attack Damage {variant:2}+(2-6)% Chance to Block Attack Damage +{variant:1}+(2-4)% Chance to Block Spell Damage +{variant:2}+(2-6)% Chance to Block Spell Damage +10% chance to be Frozen, Shocked and Ignited ]],[[ The Red Dream @@ -1585,10 +1585,10 @@ Variant: Pre 3.20.0 Variant: Pre 3.25.0 Variant: Current {variant:1,2,3}(2-4)% Chance to Block Attack Damage +{variant:4}+(2-6)% Chance to Block Attack Damage {variant:1}+6% Chance to Block Spell Damage {variant:2,3}+(2-4)% Chance to Block Spell Damage {variant:4}+(2-6)% Chance to Block Spell Damage -{variant:4}+(2-6)% Chance to Block Attack Damage Hits have (140-200)% increased Critical Strike Chance against you {variant:3}Corrupted ]],[[ @@ -1944,11 +1944,11 @@ Implicits: 0 {variant:3}Carved to glorify (2000-10000) new faithful converted by High Templar Venarius {variant:4}Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius {variant:8}4% increased Area Damage per 10 Devotion +{variant:20}3% increased Mana Cost Efficiency per 10 Devotion {variant:7}Channelling Skills deal 4% increased Damage per 10 Devotion {variant:9}4% increased Elemental Damage per 10 Devotion {variant:10}+2% to all Elemental Resistances per 10 Devotion {variant:17}1% reduced Mana Cost of Skills per 10 Devotion -{variant:20}3% increased Mana Cost Efficiency per 10 Devotion {variant:16}Regenerate 0.6 Mana per Second per 10 Devotion {variant:15}Minions have +60 to Accuracy Rating per 10 Devotion {variant:14}1% increased Minion Attack and Cast Speed per 10 Devotion diff --git a/src/Data/Uniques/mace.lua b/src/Data/Uniques/mace.lua index 9b9616a7b1..b008052727 100644 --- a/src/Data/Uniques/mace.lua +++ b/src/Data/Uniques/mace.lua @@ -575,10 +575,10 @@ Implicits: 2 {variant:3,4}Adds (1-10) to (150-200) Lightning Damage to Spells (14-18)% increased Cast Speed {variant:1,2,3}(6-8)% reduced Mana Cost of Skills -{variant:4}(10-20)% increased Mana Cost Efficiency Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}(60-80)% increased Damage with Hits and Ailments against Hindered Enemies {variant:3,4}100% increased Damage with Hits and Ailments against Hindered Enemies +{variant:4}(10-20)% increased Mana Cost Efficiency ]],[[ Spine of the First Claimant Iron Sceptre @@ -629,8 +629,8 @@ Implicits: 1 (80-120)% increased Damage with Vaal Skills (6-8)% reduced Soul Gain Prevention Duration Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill -Shepherd of Souls {variant:2}+(1-2) to Level of all Vaal Skill Gems +Shepherd of Souls ]],[[ Cadigan's Authority Platinum Sceptre @@ -912,11 +912,8 @@ Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun {variant:1}Adds (60-70) to (300-350) Physical Damage {variant:2,3,4}Adds (70-80) to (340-375) Physical Damage {variant:1,2,3}10% increased Physical Damage per Endurance Charge -{variant:4}50% chance to gain a Brine Charge instead of an Endurance Charge -{variant:4}Gain 4% of Physical Damage as Extra Cold Damage per Brine Charge -{variant:4}Gain 4% of Physical Damage as Extra Lightning Damage per Brine Charge -{variant:4}Maximum Brine Charges is equal to Maximum Endurance Charges (20-30)% reduced Enemy Stun Threshold with this Weapon +{variant:4}50% chance to gain a Brine Charge instead of an Endurance Charge ]],[[ Trypanon Great Mallet diff --git a/src/Data/Uniques/ring.lua b/src/Data/Uniques/ring.lua index a3206e9eba..15e750b282 100644 --- a/src/Data/Uniques/ring.lua +++ b/src/Data/Uniques/ring.lua @@ -538,7 +538,7 @@ Implicits: 1 {tags:resource}+(20-30) to maximum Mana {tags:attribute}+(20-40) to Intelligence {tags:caster,speed}Curse Skills have (8-12)% increased Cast Speed -Non-Aura Hexes expire upon reaching (180-220)% of base Effect +Non-Aura Hexes expire upon reaching 200% of base Effect Non-Aura Hexes gain 20% increased Effect per second ]],[[ Gifts from Above @@ -1166,22 +1166,14 @@ Implicits: 1 {variant:1}(20-40)% increased Rarity of Items found {variant:2,3,4,5}(10-20)% reduced Rarity of Items found {tags:elemental_damage,attack}(20-30)% increased Elemental Damage with Attack Skills -{variant:1,2}Left ring slot: 30% of Elemental Hit Damage from you and -{variant:1,2}your Minions cannot be Reflected -{variant:3}Left ring slot: 40% of Elemental Hit Damage from you and -{variant:3}your Minions cannot be Reflected -{variant:4}Left ring slot: 80% of Elemental Hit Damage from you and -{variant:4}your Minions cannot be Reflected -{variant:5}Left ring slot: 100% of Elemental Hit Damage from you and -{variant:5}your Minions cannot be Reflected -{variant:1,2}Right ring slot: 30% of Physical Hit Damage from you and -{variant:1,2}your Minions cannot be Reflected -{variant:3}Right ring slot: 40% of Physical Hit Damage from you and -{variant:3}your Minions cannot be Reflected -{variant:4}Right ring slot: 80% of Physical Hit Damage from you and -{variant:4}your Minions cannot be Reflected -{variant:5}Right ring slot: 100% of Physical Hit Damage from you and -{variant:5}your Minions cannot be Reflected +{variant:1,2}Left ring slot: you and your Minions prevent +30% of Reflected Elemental Damage +{variant:3}Left ring slot: you and your Minions prevent +40% of Reflected Elemental Damage +{variant:4}Left ring slot: you and your Minions prevent +80% of Reflected Elemental Damage +{variant:5}Left ring slot: you and your Minions prevent +100% of Reflected Elemental Damage +{variant:1,2}Right ring slot: you and your Minions prevent +30% of Reflected Physical Damage +{variant:3}Right ring slot: you and your Minions prevent +40% of Reflected Physical Damage +{variant:4}Right ring slot: you and your Minions prevent +80% of Reflected Physical Damage +{variant:5}Right ring slot: you and your Minions prevent +100% of Reflected Physical Damage ]],[[ Snakepit Sapphire Ring @@ -1303,8 +1295,8 @@ Variant: Current Implicits: 1 {tags:defences}+(15-25) to maximum Energy Shield {tags:caster}(30-40)% increased Spell Damage -{tags:resource}+(60-80) to maximum Mana {variant:2}{tags:defences}+(60-80) to maximum Energy Shield +{tags:resource}+(60-80) to maximum Mana (5-10)% chance to Freeze, Shock and Ignite {tags:defences,caster}Spells cause you to gain Energy Shield equal to their Upfront {tags:defences,caster}Cost every third time you Pay it diff --git a/src/Data/Uniques/shield.lua b/src/Data/Uniques/shield.lua index 67029e7dbe..1be909d1ed 100644 --- a/src/Data/Uniques/shield.lua +++ b/src/Data/Uniques/shield.lua @@ -372,7 +372,7 @@ Implicits: 1 (120-150)% increased Evasion Rating 10% increased Movement Speed +(10-20)% to Fire and Cold Resistances -+(8-15)% chance to Avoid Elemental Damage from Hits while Phasing ++(8-15)% chance to Avoid Damage of each Element from Hits while Phasing You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently You have Phasing if you have Blocked Recently ]],[[ @@ -721,12 +721,12 @@ Variant: 3.19.0 Variant: Pre 3.29.0 Variant: Current Implicits: 0 -{variant:1}+(12-18)% Chance to Block Spell Damage -{variant:2,3,4,5}+(10-15)% Chance to Block Spell Damage {variant:1,2}(40-60)% increased Spell Damage (120-160)% increased Energy Shield 10% increased maximum Life {variant:1,2}+25% to Lightning Resistance +{variant:1}+(12-18)% Chance to Block Spell Damage +{variant:2,3,4,5}+(10-15)% Chance to Block Spell Damage {variant:3}Sacrifice 4% of your Life when you Use or Trigger a Spell Skill {variant:4,5}Sacrifice 10% of your Life when you Use or Trigger a Spell Skill {variant:3}2% increased Spell Critical Strike Chance per 100 Player Maximum Life diff --git a/src/Data/Uniques/staff.lua b/src/Data/Uniques/staff.lua index f7d111a9f1..93188b1091 100644 --- a/src/Data/Uniques/staff.lua +++ b/src/Data/Uniques/staff.lua @@ -10,9 +10,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 66, 158 Str, 113 Int Implicits: 3 -{variant:3}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+25% Chance to Block Spell Damage 40% increased Strength Requirement +(80-120) to Intelligence (30-50)% increased Lightning Damage @@ -28,9 +28,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 66, 158 Str, 113 Int Implicits: 3 -{variant:3}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+25% Chance to Block Spell Damage 40% increased Strength Requirement +(80-120) to Intelligence (30-50)% increased Lightning Damage @@ -46,9 +46,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 66, 158 Str, 113 Int Implicits: 3 -{variant:3}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+25% Chance to Block Spell Damage 40% increased Strength Requirement +(80-120) to Intelligence (30-50)% increased Lightning Damage @@ -64,9 +64,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 66, 158 Str, 113 Int Implicits: 3 -{variant:3}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+25% Chance to Block Spell Damage 40% increased Strength Requirement +(80-120) to Intelligence (30-50)% increased Lightning Damage @@ -82,8 +82,8 @@ Variant: Current Source: Drops from unique{The Searing Exarch} (Uber) Requires Level 68, 78 Str, 78 Int Implicits: 2 -{variant:2}+22% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+22% Chance to Block Spell Damage (60-70)% reduced Elemental Resistances Deal Triple Damage with Elemental Skills ]],[[ @@ -95,14 +95,14 @@ Variant: Current Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss} Requires Level 68, 113 Str, 113 Int Implicits: 2 -{variant:1}+20% Chance to Block Spell Damage while wielding a Staff -{variant:2,3}+25% Chance to Block Attack Damage while wielding a Staff +{variant:2,3}+25% Chance to Block Attack Damage +{variant:1}+20% Chance to Block Spell Damage Grants Level 20 Queen's Demand Skill Queen's Demand can Trigger Level 20 Flames of Judgement Queen's Demand can Trigger Level 20 Storm of Judgement +{variant:3}(100-300)% increased Spell Critical Strike Chance Cannot be Stunned Damage cannot be Reflected -{variant:3}(100-300)% increased Spell Critical Strike Chance ]],[[ The Winds of Fate Foul Staff @@ -112,8 +112,8 @@ Variant: Current League: Sanctum Source: Drops from unique{Lycia, Herald of the Scourge} in normal{The Beyond} Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff -{variant:2,3}+22% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2,3}+22% Chance to Block Attack Damage (700-800)% increased Physical Damage {variant:1,2}+100% to Global Critical Strike Multiplier {variant:3}+(100-150)% to Global Critical Strike Multiplier @@ -128,9 +128,9 @@ Variant: Pre 2.6.0 Variant: Pre 3.25.0 Variant: Current Implicits: 3 -{variant:3}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Spell Damage +12% Chance to Block Attack Damage while wielding a Staff 100% increased Physical Damage (5-10)% increased Attack Speed @@ -144,10 +144,10 @@ Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Implicits: 2 -{variant:2}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+20% Chance to Block Spell Damage +12% Chance to Block Attack Damage while wielding a Staff -100% increased Fire Damage +(100-200)% increased Fire Damage (5-10)% increased Attack Speed Curse Enemies with Flammability on Block Reflects (22-44) Fire Damage to Attackers on Block @@ -161,19 +161,19 @@ Variant: Pre 3.29.0 Variant: Current Requires Level: 60, 113 Str, 113 Int Implicits: 3 -{variant:1,2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Attack Damage while wielding a Staff -{variant:4,5}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1,2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Attack Damage +{variant:4,5}+25% Chance to Block Attack Damage {variant:2,3,4,5}+(40-55)% to Chaos Damage over Time Multiplier {variant:1}(60-80)% increased Chaos Damage {variant:2,3,4}(20-30)% increased Chaos Damage ++2 to Level of all Chaos Spell Skill Gems {variant:5}+1 to Maximum Power Charges {variant:1,2,3,4}2% increased Cast Speed per Power Charge {variant:5}5% increased Cast Speed per Power Charge -+2 to Level of all Chaos Spell Skill Gems -Gain a Power Charge after Spending a total of 200 Mana {variant:1,2,3,4}Regenerate 2 Mana per Second per Power Charge {variant:5}Regenerate 5 Mana per Second per Power Charge +Gain a Power Charge after Spending a total of 200 Mana ]],[[ Disintegrator Maelstrom Staff @@ -187,8 +187,8 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 64, 113 Str, 113 Int Implicits: 2 -{variant:1,2}+20% Chance to Block Attack Damage while wielding a Staff -{variant:3,4,5}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1,2}+20% Chance to Block Attack Damage +{variant:3,4,5}+25% Chance to Block Attack Damage {variant:1}Adds (270-300) to (340-380) Physical Damage {variant:2}Adds (250-280) to (315-355) Physical Damage {variant:3,4,5}Adds (220-240) to (270-300) Physical Damage @@ -213,9 +213,9 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 64, 113 Str, 113 Int Implicits: 3 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff -{variant:2,3}+20% Chance to Block Attack Damage while wielding a Staff -{variant:4,5}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2,3}+20% Chance to Block Attack Damage +{variant:4,5}+25% Chance to Block Attack Damage {variant:1,2}+4% Chance to Block Attack Damage while wielding a Staff {variant:3,4}+10% Chance to Block Attack Damage while wielding a Staff {variant:5}+(20-30)% Chance to Block Attack Damage while wielding a Staff @@ -224,7 +224,7 @@ Gain (10-20)% of Elemental Damage as Extra Chaos Damage +1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage +60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently {variant:1,2}120% increased Spell Damage if you've dealt a Critical Strike Recently -{variant:3,4,5}(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently +{variant:3,4}(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently ]],[[ Replica Duskdawn Maelström Staff @@ -234,7 +234,7 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 64, 113 Str, 113 Int Implicits: 1 -+25% Chance to Block Attack Damage while wielding a Staff ++25% Chance to Block Attack Damage {variant:1}+10% Chance to Block Attack Damage while wielding a Staff {variant:2}+(20-30)% Chance to Block Attack Damage while wielding a Staff (40-50)% increased Critical Strike Chance @@ -250,8 +250,8 @@ Variant: Pre 2.6.0 Variant: Pre 3.25.0 Variant: Current Implicits: 2 -{variant:1,2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Attack Damage while wielding a Staff +{variant:1,2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Attack Damage 18% increased Cast Speed 18% increased maximum Mana 18% increased Area of Effect of Aura Skills @@ -271,8 +271,8 @@ Variant: Pre 3.26.0 Variant: Current Requires Level 66, 113 Str, 113 Int Implicits: 2 -{variant:3,4}+25% Chance to Block Spell Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:2}+18% Chance to Block Attack Damage +{variant:3,4}+25% Chance to Block Spell Damage {variant:1}Socketed Gems are supported by Level 10 Life Leech {variant:2,3,4}Socketed Gems are supported by Level 1 Chance to Bleed Grants Summon Harbinger of Brutality Skill @@ -292,8 +292,8 @@ League: Harvest Source: Upgraded from unique{The Enmity Divine} via currency{Haemocombustion Scroll} Requires Level 66, 113 Str, 113 Int Implicits: 2 -{variant:2,3}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2,3}+25% Chance to Block Spell Damage Socketed Gems are supported by Level 1 Chance to Bleed Grants Summon Greater Harbinger of Brutality Skill +5% Chance to Block Attack Damage while wielding a Staff @@ -311,9 +311,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 58, 99 Str, 99 Int Implicits: 3 -{variant:4}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2,3}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2,3}+18% Chance to Block Attack Damage +{variant:4}+25% Chance to Block Spell Damage +2 to Level of Socketed Minion Gems {variant:3,4}Minions deal (60-80)% increased Damage {variant:1,2}Minions Regenerate (1.5-2.5)% of Life per second @@ -331,9 +331,9 @@ Variant: Pre 2.6.0 Variant: Pre 3.25.0 Variant: Current Implicits: 3 -{variant:3}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Spell Damage Socketed Gems are Supported by Level 8 Trap (40-50)% increased Global Damage (10-20)% increased maximum Life @@ -346,8 +346,8 @@ Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Implicits: 2 -{variant:2}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+20% Chance to Block Spell Damage Socketed Gems are Supported by Level 1 Multiple Totems (40-50)% increased Global Damage (10-20)% increased maximum Life @@ -360,8 +360,8 @@ Variant: Current League: Affliction Requires Level 58, 99 Str, 99 Int Implicits: 2 -{variant:2}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+25% Chance to Block Spell Damage Socketed Gems are Supported by Level 1 Lifetap (20-30)% increased Cast Speed Lose 500 Life per second @@ -375,8 +375,8 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 60, 113 Str, 113 Int Implicits: 2 -{variant:1}+20% Chance to Block Attack Damage while wielding a Staff -{variant:2}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1}+20% Chance to Block Attack Damage +{variant:2}+25% Chance to Block Attack Damage (140-180)% increased Physical Damage (0-50)% of Physical Damage Converted to Fire Damage (0-50)% of Physical Damage Converted to Cold Damage @@ -393,8 +393,8 @@ Variant: Current Source: No longer obtainable Requires Level 32 Implicits: 2 -{variant:2}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+20% Chance to Block Spell Damage Socketed Gems are Supported by Level 16 Trap Socketed Gems are Supported by Level 16 Cluster Trap Socketed Gems are Supported by Level 16 Trap And Mine Damage @@ -410,16 +410,16 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 68, 113 Str, 113 Int Implicits: 3 -{variant:2}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3,4}+25% Chance to Block Attack Damage while wielding a Staff -{variant:4}Implicit Modifier Magnitudes are Doubled +{variant:1}+18% Chance to Block Attack Damage +{variant:3,4}+25% Chance to Block Attack Damage +{variant:2}+20% Chance to Block Spell Damage Has no Sockets {variant:1,2,3}(250-300)% increased Global Damage {variant:4}(300-400)% increased Global Damage (20-30)% increased Attack Speed {variant:1,2,3}+(1-4)% to all maximum Resistances {variant:4}+(1-5)% to all maximum Resistances +{variant:4}Implicit Modifier magnitudes are doubled ]],[[ Hegemony's Era Judgement Staff @@ -430,10 +430,10 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 68, 113 Str, 113 Int Implicits: 4 -{variant:4}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2,3}+18% Chance to Block Attack Damage while wielding a Staff -{variant:5}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2,3}+18% Chance to Block Attack Damage +{variant:5}+25% Chance to Block Attack Damage +{variant:4}+20% Chance to Block Spell Damage +6% Chance to Block Attack Damage while wielding a Staff {variant:1,2}Adds (180-190) to (190-220) Physical Damage {variant:3}Adds (165-175) to (185-205) Physical Damage @@ -451,12 +451,12 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 66, 113 Str, 113 Dex Implicits: 1 -+25% Chance to Block Spell Damage while wielding a Staff ++25% Chance to Block Spell Damage (1-7)% increased Intelligence (-17-17)% reduced maximum Life +(-1-1) to Level of all Spell Skill Gems 31% increased Cost of Skills -{variant:1}1 to (31-53) Spell Lightning Damage per 10 Intelligence +{variant:1}Adds 1 to (32-53) Lightning Damage to Spells per 10 Intelligence {variant:2}Adds 1 to (24-35) Lightning Damage to Spells per 10 Intelligence Blood Magic ]],[[ @@ -468,7 +468,7 @@ Variant: Shaper's Devastation Source: Drops from unique{Incarnation of Neglect} in normal{Moment of Loneliness} Requires Level 68, 113 Str, 113 Int Implicits: 1 -+25% Chance to Block Attack Damage while wielding a Staff ++25% Chance to Block Attack Damage {variant:1}Grants Level 20 Summon Shaper Memory {variant:1}Grants Level 20 Shaper's Despair, which will be used by Shaper Memory {variant:2}Grants Level 20 Summon Shaper Memory @@ -492,12 +492,12 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 52, 89 Str, 89 Int Implicits: 2 -{variant:4}+22% Chance to Block Spell Damage while wielding a Staff -{variant:1,2,3}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1,2,3}+18% Chance to Block Attack Damage +{variant:4}+22% Chance to Block Spell Damage {variant:1,2,3,4}+(12-16)% Chance to Block Attack Damage while wielding a Staff {variant:5}+(20-25)% Chance to Block Attack Damage while wielding a Staff {variant:1,2,3,4}100% increased Fire Damage -{variant:5}(100-200)% increased Fire Damage +{variant:5}100% increased Fire Damage {variant:1,2}Adds (350-400) to (500-600) Fire Damage {variant:3,4,5}Adds (315-360) to (450-540) Fire Damage Damage Penetrates 15% of Fire Resistance if you have Blocked Recently @@ -511,9 +511,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 13, 27 Str, 27 Int Implicits: 3 -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Attack Damage 1% increased Area of Effect per 20 Intelligence 1% increased Attack Speed per 10 Dexterity 16% increased Physical Weapon Damage per 10 Strength @@ -530,10 +530,10 @@ Variant: Pre 3.28.0 Variant: Current Requires Level 68, 113 Str, 113 Int Implicits: 4 -{variant:3,4}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:5,6}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:5,6}+25% Chance to Block Attack Damage +{variant:3,4}+20% Chance to Block Spell Damage {variant:1,2,3,4,5}Socketed Gems are Supported by Level 1 Greater Spell Echo {variant:6}Socketed Gems are Supported by Level 1 Greater Spell Echo (120-160)% increased Spell Damage @@ -549,9 +549,9 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 18, 35 Str, 35 Int Implicits: 3 -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3,4}+20% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3,4}+20% Chance to Block Attack Damage {variant:1,2,3}+1 to Level of Socketed Fire Gems {variant:4}+2 to Level of Socketed Fire Gems {variant:1,2,3}+1 to Level of Socketed Cold Gems @@ -569,11 +569,11 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 40, 35 Str, 35 Int Implicits: 3 -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Attack Damage while wielding a Staff -+1 to Level of Socketed Fire Gems -+1 to Level of Socketed Cold Gems +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Attack Damage ++2 to Level of Socketed Fire Gems ++2 to Level of Socketed Cold Gems +2 to Level of Socketed Elemental Gems Socketed Gems are Supported by Level 5 Cold to Fire Adds (10-15) to (20-25) Fire Damage @@ -591,18 +591,18 @@ Variant: Pre 3.25.0 Variant: Pre 3.29.0 Variant: Current Implicits: 3 -{variant:1,2}+12% Chance to Block Attack Damage while wielding a Staff -{variant:3,4,5}+18% Chance to Block Attack Damage while wielding a Staff -{variant:6,7}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1,2}+12% Chance to Block Attack Damage +{variant:3,4,5}+18% Chance to Block Attack Damage +{variant:6,7}+25% Chance to Block Attack Damage {variant:1,2,3}(30-50)% increased Spell Damage {variant:5,6,7}+(40-60)% to Fire Damage over Time Multiplier {variant:1,2,3}(20-40)% increased Fire Damage {variant:4,5,6,7}(70-90)% increased Fire Damage {variant:1,2,3,4,5,6}10% increased Cast Speed {variant:7}(20-40)% increased Cast Speed -{variant:7}Voracious Flame +2 to Level of all Fire Spell Skill Gems {variant:1,2,3,4}70% increased Burning Damage +{variant:7}Voracious Flame ]],[[ Sire of Shards Serpentine Staff @@ -611,9 +611,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 49, 85 Str, 85 Int Implicits: 3 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff -{variant:2}+20% Chance to Block Attack Damage while wielding a Staff -{variant:3}+22% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+20% Chance to Block Attack Damage +{variant:3}+22% Chance to Block Attack Damage Socketed Gems fire 4 additional Projectiles Socketed Gems fire Projectiles in a circle +(15-20) to all Attributes @@ -630,9 +630,9 @@ Variant: Pre 3.26.0 Variant: Current Requires Level 62, 113 Str, 113 Int Implicits: 3 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff -{variant:2}+20% Chance to Block Attack Damage while wielding a Staff -{variant:3,4}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+20% Chance to Block Attack Damage +{variant:3,4}+25% Chance to Block Attack Damage {variant:1,2,3}Trigger Level 20 Summon Phantasm Skill when you Consume a corpse {variant:4}Trigger Level 25 Summon Phantasm Skill when you Consume a corpse (100-140)% increased Spell Damage @@ -649,9 +649,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 28, 51 Str, 51 Int Implicits: 3 -{variant:3}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Spell Damage (80-100)% increased Physical Damage Adds (25-35) to (45-60) Cold Damage Adds (1-10) to (70-90) Lightning Damage @@ -667,8 +667,8 @@ Variant: Current Source: No longer obtainable Requires Level 60, 51 Str, 51 Int Implicits: 2 -{variant:2}+20% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+20% Chance to Block Spell Damage +15% Chance to Block Attack Damage while wielding a Staff Adds (242-260) to (268-285) Physical Damage (20-35)% increased Critical Strike Chance @@ -687,12 +687,11 @@ Variant: Pre 3.29.0 Variant: Current Requires Level 64, 113 Str, 113 Int Implicits: 3 -{variant:1,2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Attack Damage while wielding a Staff -{variant:4,5}+25% Chance to Block Attack Damage while wielding a Staff +{variant:1,2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Attack Damage +{variant:4,5}+25% Chance to Block Attack Damage {variant:1}(40-50)% increased Spell Damage {variant:2,3,4}(50-60)% increased Spell Damage -{variant:5}Bitter Frost {variant:1,2,3,4}(40-50)% increased Cold Damage {variant:5}(80-140)% increased Cold Damage (10-20)% increased Cast Speed @@ -702,6 +701,7 @@ Implicits: 3 {variant:1,2,3,4}8% chance to Freeze {variant:5}(25-50)% chance to Freeze Enemies Frozen by you take 20% increased Damage +{variant:5}Bitter Frost ]],[[ Tremor Rod Military Staff @@ -711,9 +711,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 45, 78 Str, 78 Int Implicits: 3 -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2,3}+18% Chance to Block Attack Damage while wielding a Staff -{variant:4}+22% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2,3}+18% Chance to Block Attack Damage +{variant:4}+22% Chance to Block Attack Damage {variant:3,4}+2 to Level of Socketed Spell Gems {variant:1,2,3,4}Socketed Gems are Supported by Level 10 Blastchain Mine {variant:1,2}35% less Mine Damage @@ -729,9 +729,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 33, 59 Str, 59 Int Implicits: 3 -{variant:1}+12% Chance to Block Attack Damage while wielding a Staff -{variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Attack Damage while wielding a Staff +{variant:1}+12% Chance to Block Attack Damage +{variant:2}+18% Chance to Block Attack Damage +{variant:3}+20% Chance to Block Attack Damage +1 to Level of Socketed Support Gems Grants Level 1 Icestorm Skill (14-18)% increased Intelligence @@ -746,8 +746,8 @@ League: Harvest Source: Drops from unique{Oshabi, Avatar of the Grove} Requires Level 68, 89 Str, 89 Int Implicits: 2 -{variant:2}+22% Chance to Block Spell Damage while wielding a Staff -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+22% Chance to Block Spell Damage Grants Level 20 Brandsurge Skill Brand Skills have (50-100)% increased Duration ]],[[ @@ -757,8 +757,8 @@ Variant: Pre 3.25.0 Variant: Current League: Crucible Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff -{variant:2}+22% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage +{variant:2}+22% Chance to Block Attack Damage Has 1 Socket (150-200)% increased Spell Damage (80-120)% increased Spell Critical Strike Chance diff --git a/src/Data/Uniques/sword.lua b/src/Data/Uniques/sword.lua index 271c2fd25b..039036fd4b 100644 --- a/src/Data/Uniques/sword.lua +++ b/src/Data/Uniques/sword.lua @@ -445,10 +445,10 @@ Adds (75-92) to (125-154) Physical Damage {variant:3}(8-12)% increased Area of Effect per Red Socket {variant:1,2}+10% to Global Critical Strike Multiplier per Green Socket {variant:3}+(10-15)% to Global Critical Strike Multiplier per Green Socket -{variant:1,2}0.3% of Physical Attack Damage Leeched as Mana per Blue Socket {variant:3}(20-30)% increased Global Critical Strike Chance per Blue Socket -{variant:1,2}8% increased Global Defences per White Socket +{variant:1,2}0.3% of Physical Attack Damage Leeched as Mana per Blue Socket {variant:3}(6-8)% increased Global Defences per Empty Socket +{variant:1,2}8% increased Global Defences per White Socket {variant:1,2}(60-80)% increased Global Critical Strike Chance when in Main Hand {variant:1,2}+8% Chance to Block Attack Damage when in Off Hand {variant:3}+(10-15)% Chance to Block Attack Damage when in Off Hand diff --git a/src/Data/Uniques/wand.lua b/src/Data/Uniques/wand.lua index 379a79b3fe..e72b656a8c 100644 --- a/src/Data/Uniques/wand.lua +++ b/src/Data/Uniques/wand.lua @@ -13,11 +13,11 @@ Implicits: 3 {variant:1}(9-12)% increased Spell Damage {variant:2}(10-14)% increased Spell Damage {variant:3,4}Adds (1-2) to (3-4) Fire Damage to Spells and Attacks +{variant:4}+(30-50)% to Damage over Time Multiplier for Ignite from Critical Strikes {variant:1,2,3}(20-30)% increased Fire Damage Adds (4-6) to (8-12) Fire Damage to Spells {variant:1,2,3}(40-60)% increased Global Critical Strike Chance {variant:4}(80-120)% increased Global Critical Strike Chance -{variant:4}+(30-50)% to Damage over Time Multiplier for Ignite from Critical Strikes Gain 10 Life per Ignited Enemy Killed 25% reduced Ignite Duration on Enemies ]],[[ @@ -102,7 +102,7 @@ Variant: Pre 3.10.0 Variant: Current LevelReq: 63 Implicits: 1 -(29-33)% increased Spell Damage +(30-34)% increased Spell Damage Triggers Level 20 Blinding Aura when Equipped {variant:1}Adds (18-22) to (36-44) Physical Damage {variant:2}Adds (30-45) to (60-80) Fire Damage @@ -343,7 +343,7 @@ Implicits: 2 {variant:1,2,3}Adds (26-35) to (95-105) Lightning Damage to Spells {variant:4}+1 to Maximum Power Charges +(6-10)% to Critical Strike Multiplier per Power Charge -+0.3% Critical Strike Chance per Power Charge ++0.3% to Critical Strike Chance per Power Charge +2% Chance to Block Spell Damage per Power Charge {variant:1,2,3}Adds 3 to 9 Lightning Damage to Spells per Power Charge {variant:4}Adds 3 to (15-25) Lightning Damage to Spells per Power Charge diff --git a/src/Export/Scripts/bases.lua b/src/Export/Scripts/bases.lua index 3a4d537c2b..cdb9a85bd8 100644 --- a/src/Export/Scripts/bases.lua +++ b/src/Export/Scripts/bases.lua @@ -173,6 +173,30 @@ directiveTable.base = function(state, args, out) local modIdLine = string.format('\timplicitIds = %s,\n', utils.stringifyInline(implicitModIds)) out:write(modIdLine) end + local enchantLines = { } + local enchantModTypes = { } + local enchantModIds = { } + for _, mod in ipairs(baseItemType.EnchantMods or { }) do + local modDesc = describeMod(mod) + for _, line in ipairs(modDesc) do + table.insert(enchantLines, line) + table.insert(enchantModTypes, modDesc.modTags) + end + if #modDesc > 0 then + table.insert(enchantModIds, mod.Id) + end + end + if #enchantLines > 0 then + out:write('\tenchant = "', table.concat(enchantLines, "\\n"), '",\n') + out:write('\tenchantModTypes = { ') + for i = 1, #enchantModTypes do + out:write('{ ', enchantModTypes[i], ' }, ') + end + out:write('},\n') + end + if baseItemType.EnchantMods and #baseItemType.EnchantMods > 0 then + out:write('\tcannotBeAnointed = true,\n') + end local itemValueSum = 0 local weaponType = dat("WeaponTypes"):GetRow("BaseItemType", baseItemType) if weaponType then diff --git a/src/Export/Scripts/skills.lua b/src/Export/Scripts/skills.lua index fecad488ee..ea65f7dfe3 100644 --- a/src/Export/Scripts/skills.lua +++ b/src/Export/Scripts/skills.lua @@ -122,7 +122,7 @@ directiveTable.skill = function(state, args, out) if granted.IsSupport then out:write('\tname = "', fullNameGems[skillGem.BaseItemType.Id] and skillGem.BaseItemType.Name or skillGem.BaseItemType.Name:gsub(" Support",""), '",\n') if #gemEffect.Description > 0 then - out:write('\tdescription = "', gemEffect.Description:gsub('"','\\"'):gsub('\r',''):gsub('\n','\\n'), '",\n') + out:write('\tdescription = "', escapeGGGString(gemEffect.Description:gsub('"','\\"'):gsub('\r',''):gsub('\n','\\n')), '",\n') end else out:write('\tname = "', secondaryEffect and granted.ActiveSkill.DisplayName or trueGemNames[gemEffect.Id] or granted.ActiveSkill.DisplayName, '",\n') @@ -212,7 +212,7 @@ directiveTable.skill = function(state, args, out) out:write('\tstatDescriptionScope = "gem_stat_descriptions",\n') else if #granted.ActiveSkill.Description > 0 then - out:write('\tdescription = "', granted.ActiveSkill.Description:gsub('"','\\"'):gsub('\r',''):gsub('\n','\\n'), '",\n') + out:write('\tdescription = "', escapeGGGString(granted.ActiveSkill.Description:gsub('"','\\"'):gsub('\r',''):gsub('\n','\\n')), '",\n') end out:write('\tskillTypes = { ') for _, type in ipairs(granted.ActiveSkill.SkillTypes) do @@ -571,6 +571,7 @@ for skillGem in dat("SkillGems"):Rows() do local tagNames = { } out:write('\t\ttags = {\n') for _, tag in ipairs(gemEffect.Tags) do + tag.Name = escapeGGGString(tag.Name) --Remove the words in brackets e.g. [DurationSkill|Duration] -> Duration out:write('\t\t\t', tag.Id, ' = true,\n') if #tag.Name > 0 then table.insert(tagNames, tag.Name) diff --git a/src/Export/Scripts/statdesc.lua b/src/Export/Scripts/statdesc.lua index c59bbf5832..1f164f360e 100644 --- a/src/Export/Scripts/statdesc.lua +++ b/src/Export/Scripts/statdesc.lua @@ -44,7 +44,7 @@ local function processStatFile(name) elseif curLang and not line:match('table_only') then local statLimits, quality, text, special = line:match('([%d%-#| !]+)%s*([%w_]*)%s*"(.-)"%s*(.*)') if statLimits then - local desc = { text = text, limit = { } } + local desc = { text = escapeGGGString(text), limit = { } } for statLimit in statLimits:gmatch("[!%d%-#|]+") do local limit = { } diff --git a/src/Export/Skills/SkillGems.txt b/src/Export/Skills/SkillGems.txt index 1c48e3409f..b418318fe9 100644 --- a/src/Export/Skills/SkillGems.txt +++ b/src/Export/Skills/SkillGems.txt @@ -22,6 +22,7 @@ Boneshatter of Carnage ---- BoneshatterAltY Boneshatter of Complex Trauma ---- BoneshatterAltX Call the Pyre ---- GraftSkillXophFlamePillars Chain Hook ---- ChainHook +Chain Hook of Angling ---- ChainHookAltX Chain Hook of Trarthus ---- ChainHookAltY Cleave ---- Cleave Cleave of Rage ---- CleaveAltX @@ -34,6 +35,7 @@ Defiance Banner ---- DefianceBanner Determination ---- Determination Devouring Totem ---- DevouringTotem Divine Blast ---- DivineBlast +Divine Blast of Radiance ---- DivineBlastAltX Dominating Blow ---- DominatingBlow Dominating Blow of Inspiring ---- DominatingBlowAltX Doryani's Touch ---- DoryanisTouch @@ -65,8 +67,10 @@ His Burning Message ---- GraftSkillXophGeyserExplosi Holy Flame Totem ---- HolyFlameTotem Holy Flame Totem of Ire ---- HolyFlameTotemAltX Holy Hammers ---- HolyHammers +Holy Hammers of Spirals ---- HolyHammersAltX Holy Strike ---- HolyStrike Holy Sweep ---- Sweep +Holy Sweep of Hammerfalls ---- SweepAltX Ice Crash ---- IceCrash Ice Crash of Cadence ---- IceCrashAltX Immortal Call ---- ImmortalCall @@ -93,6 +97,7 @@ Rage Vortex ---- RageVortex Rage Vortex of Berserking ---- RageVortexAltX Rallying Cry ---- RallyingCry Reap ---- Reap +Reap of Butchery ---- ReapAltX Rejuvenation Totem ---- RejuvenationTotem Return to Dust ---- GraftSkillUulNetolHandSlam Searing Bond ---- SearingBond @@ -183,6 +188,7 @@ Cold to Fire Support ---- SupportColdToFire Controlled Blaze Support ---- SupportControlledBlaze Corrupting Cry Support ---- SupportCorruptingCry Cruelty Support ---- SupportCruelty +Crystalfall Support ---- SupportCrystalfall TriggeredSupportCrystalfall Damage on Full Life Support ---- SupportDamageOnFullLife Divine Blessing Support ---- SupportDivineBlessing Divine Sentinel Support ---- SupportDivineSentinel @@ -563,8 +569,8 @@ Crackling Lance of Disintegration ---- CracklingLanceAltY Creeping Frost ---- CreepingFrost Creeping Frost of Floes ---- CreepingFrostAltX Damage Infusion ---- DamageInfusion -Dark Pact ---- DarkPact -Dark Pact of Trarthus ---- DarkPactAltX +Dark Bargain ---- DarkPact +Dark Bargain of Trarthus ---- DarkPactAltX Despair ---- Despair Destructive Link ---- DestructiveLink Discharge ---- Discharge @@ -659,6 +665,7 @@ Lightning Trap ---- LightningTrap Lightning Trap of Sparking ---- LightningTrapAltX Lightning Warp ---- LightningWarp Malevolence ---- Malevolence +Mana-Infused Staff ---- ManaInfusedStaff Manabond ---- Manabond Orb of Storms ---- OrbOfStorms Orb of Storms of Squalls ---- OrbOfStormsAltX @@ -794,10 +801,12 @@ Cast when Stunned Support ---- SupportCastWhenStunned Cast while Channelling Support ---- SupportCastWhileChannelling SupportCastWhileChannellingTriggered Charged Mines Support ---- SupportChargedMines Combustion Support ---- SupportCombustion +Communion Support ---- SupportMinionPact Concentrated Effect Support ---- SupportConcentratedEffect Congregation Support ---- SupportCongregation Controlled Destruction Support ---- SupportControlledDestruction Cooldown Recovery Support ---- SupportCooldownRecovery +Coursing Current Support ---- SupportCrustaceousGrasp Cursed Ground Support ---- SupportCursedGround Decay Support ---- SupportDecay Devour Support ---- SupportDevour @@ -848,7 +857,6 @@ Meat Shield Support ---- SupportMeatShield Minefield Support ---- SupportMinefield Minion Damage Support ---- SupportMinionDamage Minion Life Support ---- SupportMinionLife -Minion Pact Support ---- SupportMinionPact Minion Speed Support ---- SupportMinionSpeed Overcharge Support ---- SupportOvercharge Overloaded Intensity Support ---- SupportOverloadedIntensity @@ -879,6 +887,10 @@ Death Aura ---- DeathAura Detonate Mines ---- GemDetonateMines Gluttony of Elements ---- GluttonyOfElements Order: To me! ---- CallMercenary +Pact of Beidat ---- PactOfBeidat +Pact of Ghorr ---- PactOfGhorr TriggeredBloodrend +Pact of K'Tash ---- PactOfKtash +Pact of Lycia ---- PactOfLycia TriggeredHeavensScourge Portal ---- Portal Static Tether ---- StaticTether Vaal Breach ---- VaalBreach diff --git a/src/Export/Skills/act_int.txt b/src/Export/Skills/act_int.txt index 556c41b7e7..54eeae858d 100644 --- a/src/Export/Skills/act_int.txt +++ b/src/Export/Skills/act_int.txt @@ -3196,6 +3196,30 @@ local skills, mod, flag, skill = ... #baseMod skill("radius", 40) #mods +#skill ManaInfusedStaff +#flags spell area duration + statMap = { + ["mana_infused_staff_base_trigger_interval_ms"] = { + skill("hitTimeOverride", nil), + div = 1000, + }, + ["active_skill_always_reserves_unmodifiable_X%_of_mana"] = { + skill("ManaReservationPercentForced", nil), + }, + ["active_skill_buff_mana_cost_+%_final_to_grant"] = { + mod("ManaCost", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + }, + ["active_skill_buff_block_chance_+%_final_to_grant"] = { + mod("BlockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + mod("SpellBlockChance", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + }, + ["skill_has_added_lightning_damage_equal_to_%_of_maximum_mana"] = { + mod("LightningMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Mana", percent = 1 }), + mod("LightningMax", "BASE", nil, 0, 0, { type = "PercentStat", stat = "Mana", percent = 1 }), + }, + }, +#mods + #skill Manabond #flags spell area arcane preDamageFunc = function(activeSkill, output) diff --git a/src/Export/Skills/act_str.txt b/src/Export/Skills/act_str.txt index 04d78965eb..7d73cdae7b 100644 --- a/src/Export/Skills/act_str.txt +++ b/src/Export/Skills/act_str.txt @@ -494,6 +494,18 @@ local skills, mod, flag, skill = ... }, #mods +#skill DivineBlastAltX +#flags attack area shieldAttack + parts = { + { + name = "Beam Implosion", + }, + { + name = "Explosion", + }, + }, +#mods + #skill DominatingBlow #flags attack melee duration minion minionList = { @@ -1051,6 +1063,15 @@ local skills, mod, flag, skill = ... }, #mods +#skill HolyHammersAltX +#flags attack area melee + statMap = { + ["holy_hammers_damage_+%_final_per_power_charge_consumed"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "RemovablePowerCharge" }), + }, + }, +#mods + #skill HolyStrike #flags attack melee minion duration minionList = { @@ -1086,6 +1107,25 @@ local skills, mod, flag, skill = ... #baseMod flag("CannotBeEvaded", { type = "SkillPart", skillPart = 2 }) #mods +#skill SweepAltX +#flags attack melee area + parts = { + { + name = "Melee Hit", + }, + { + name = "Holy Hammer", + }, + }, + statMap = { + ["holy_sweep_hammerfall_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), + }, + }, +#baseMod skill("radius", 24) +#baseMod flag("CannotBeEvaded", { type = "SkillPart", skillPart = 2 }) +#mods + #skill IceCrash #flags attack melee area parts = { @@ -2111,6 +2151,28 @@ local skills, mod, flag, skill = ... #baseMod skill("debuff", true) #mods +#skill ReapAltX +#flags spell area duration + statMap = { + ["blood_scythe_damage_+%_final_per_charge"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "Multiplier", var = "BloodCharge" }), + }, + ["blood_scythe_cost_+%_final_per_charge"] = { + mod("LifeCost", "MORE", nil, 0, 0, { type = "Multiplier", var = "BloodCharge" }), + }, + ["base_physical_damage_to_deal_per_minute"] = { + skill("PhysicalDot", nil, { type = "Condition", var = "ReapDebuffIsFireDamage", neg = true }), + skill("FireDot", nil, { type = "Condition", var = "ReapDebuffIsFireDamage"}), + div = 60, + }, + ["quality_display_reap_is_gem"] = { + -- Display only + }, + }, +#baseMod skill("radius", 25) +#baseMod skill("debuff", true) +#mods + #skill VaalReap #flags spell area duration statMap = { diff --git a/src/Export/Skills/minion.txt b/src/Export/Skills/minion.txt index c5889e05ff..d2dfc19d31 100644 --- a/src/Export/Skills/minion.txt +++ b/src/Export/Skills/minion.txt @@ -441,6 +441,10 @@ skills["GuardianSentinelFireAura"] = { #flags attack melee #mods -#skill MeleeAtAnimationSpeedComboCold +#skill MeleeComboCold +#flags attack melee +#mods + +#skill MeleePartialChaos #flags attack melee #mods \ No newline at end of file diff --git a/src/Export/Skills/other.txt b/src/Export/Skills/other.txt index 484b1c228d..6e0289cc2a 100644 --- a/src/Export/Skills/other.txt +++ b/src/Export/Skills/other.txt @@ -709,6 +709,24 @@ local skills, mod, flag, skill = ... fromItem = true, #mods +#skill PactOfBeidat +#mods + +#skill PactOfGhorr +#mods + +#skill TriggeredBloodrend +#mods + +#skill PactOfKtash +#mods + +#skill PactOfLycia +#mods + +#skill TriggeredHeavensScourge +#mods + #skill Portal #flags spell #mods diff --git a/src/Export/Skills/sup_dex.txt b/src/Export/Skills/sup_dex.txt index 5a025c7878..b4f7fae51b 100644 --- a/src/Export/Skills/sup_dex.txt +++ b/src/Export/Skills/sup_dex.txt @@ -180,8 +180,8 @@ local skills, mod, flag, skill = ... #skill SupportCompanionship statMap = { - ["support_companionship_minion_maximum_life_+%_final_if_at_most_one_minion"] = { - mod("MinionModifier", "LIST", { mod = mod("Life", "MORE", nil) }, 0, 0, { type = "Condition", var = "OnlyMinion" }), + ["support_companionship_minion_damage_taken_+%_final_if_at_most_one_minion"] = { + mod("MinionModifier", "LIST", { mod = mod("DamageTaken", "MORE", nil) }, 0, 0, { type = "Condition", var = "OnlyMinion" }), }, ["damage_removed_from_minions_before_life_or_es_%_if_only_one_minion"] = { mod("takenFromMinionBeforeYou", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff", unscalable = true }, { type = "Condition", var = "OnlyMinion" }), diff --git a/src/Export/Skills/sup_int.txt b/src/Export/Skills/sup_int.txt index 9dce0c10c9..8c23944f72 100644 --- a/src/Export/Skills/sup_int.txt +++ b/src/Export/Skills/sup_int.txt @@ -193,6 +193,9 @@ local skills, mod, flag, skill = ... #skill SupportCooldownRecovery #mods +#skill SupportCrustaceousGrasp +#mods + #skill SupportCursedGround #mods @@ -664,10 +667,11 @@ local skills, mod, flag, skill = ... #skill SupportMinionPact statMap = { - ["support_minion_pact_sacrifice_nearby_damageable_minion_to_gain_permillage_of_max_life_as_physical_damage"] = { - mod("PhysicalMin", "BASE", nil, 0, 0, { type = "Multiplier", var = "MinionLife" }), - mod("PhysicalMax", "BASE", nil, 0, 0, { type = "Multiplier", var = "MinionLife" }), - div = 1000, + ["spell_minimum_added_physical_damage_per_active_permanent_minion"] = { + mod("PhysicalMin", "BASE", nil, 0, 0, { type = "Multiplier", var = "SummonedMinion" }), + }, + ["spell_maximum_added_physical_damage_per_active_permanent_minion"] = { + mod("PhysicalMax", "BASE", nil, 0, 0, { type = "Multiplier", var = "SummonedMinion" }), }, }, #mods diff --git a/src/Export/Skills/sup_str.txt b/src/Export/Skills/sup_str.txt index a3ad4887c8..5211975600 100644 --- a/src/Export/Skills/sup_str.txt +++ b/src/Export/Skills/sup_str.txt @@ -228,6 +228,17 @@ local skills, mod, flag, skill = ... #baseMod flag("Cruelty") #mods +#skill SupportCrystalfall + statMap = { + ["support_crystalfall_chance_to_trigger_crystalfall_on_hit_%"] = { + }, + }, +#mods + +#skill TriggeredSupportCrystalfall +#flags attack area melee +#mods + #skill SupportDamageOnFullLife statMap = { ["support_damage_while_on_full_life_+%_final"] = { diff --git a/src/Export/Uniques/ModTextMap.lua b/src/Export/Uniques/ModTextMap.lua index 2d6f578a91..356ac6736d 100644 --- a/src/Export/Uniques/ModTextMap.lua +++ b/src/Export/Uniques/ModTextMap.lua @@ -14,16 +14,17 @@ return { ["# lightning damage taken per second per power charge if"] = { "DamageTakenPerPowerChargeOnCritUnique__1", }, ["# maximum void charges"] = { "MaximumVoidArrowsUnique__1", }, ["# physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueAmulet8", "PhysicalAttackDamageReducedUniqueBelt3", "PhysicalAttackDamageReducedUniqueBodyDex2", }, - ["# physical damage taken from projectile attacks"] = { "RangedAttackDamageReducedUniqueShieldStr1", }, + ["# physical damage taken from projectile attacks"] = { "DivergentRangedAttackDamageReducedUniqueShieldStr1", "RangedAttackDamageReducedUniqueShieldStr1", }, ["# physical damage taken on minion death"] = { "PhysicalDamageToSelfOnMinionDeathUniqueRing33", }, ["# prefix modifier allowed"] = { "MaxPrefixMaxSuffixImplicitE1__", "MaxPrefixMaxSuffixModEffectImplicitE1", "MaxPrefixMaxSuffixModEffectImplicitE3", }, ["# prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE5", "MaxPrefixMaxSuffixImplicitE6", "MaxPrefixMaxSuffixModEffectImplicitE2", }, ["# strength per # strength on allocated passives in radius"] = { "AdditionalStrengthPerAllocatedStrengthJewelUnique__1_", }, ["# to # added cold damage per frenzy charge"] = { "AddedColdDamagePerFrenzyChargeUnique__1", }, + ["# to # added cold damage with bow attacks"] = { "DivergentAddedColdDamageUniqueBodyDex1", }, ["# to # added fire damage with bow attacks"] = { "AddedFireDamageImplicitQuiver10", "AddedFireDamageUniqueQuiver1a", }, + ["# to # added lightning damage with wand attacks"] = { "DivergentAddedLightningDamageUnique__4", }, ["# to # added physical damage with bow attacks"] = { "AddedPhysicalDamageImplicitQuiver11", "AddedPhysicalDamageImplicitQuiver6_", "AddedPhysicalDamageImplicitQuiverDescent", "AddedPhysicalDamageUniqueQuiver8", }, ["# to (#) added attack lightning damage per # accuracy rating"] = { "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_", "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_", "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3", }, - ["# to (#) spell lightning damage per # intelligence"] = { "SpellLightningDamagePerIntelligenceUnique__1", }, ["# to accuracy rating"] = { "IncreasedAccuracyUniqueTwoHandMace3", "IncreasedAccuracyUnique__9____", "ReducedAccuracyUniqueTwoHandSword5", }, ["# to level of socketed non-vaal gems"] = { "LocalIncreaseSocketedNonVaalGemLevelUnique__1", }, ["# to level of socketed skill gems per socketed gem"] = { "LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1", }, @@ -42,36 +43,40 @@ return { ["#% additional physical damage reduction per power charge"] = { "ChargeBonusPhysicalDamageReductionPerPowerCharge_", }, ["#% additional physical damage reduction while affected by herald of purity"] = { "HeraldBonusPurityPhysicalDamageReduction", }, ["#% additional physical damage reduction while moving"] = { "AdditionalPhysicalDamageReductionWhileMovingUnique__1", }, - ["#% additional physical damage reduction while stationary"] = { "PhysicalDamageReductionWhileNotMovingUnique__1", }, + ["#% additional physical damage reduction while stationary"] = { "DivergentPhysicalDamageReductionWhileNotMovingUnique__1", "PhysicalDamageReductionWhileNotMovingUnique__1", }, + ["#% chance for elemental resistances to count as being #% against enemy hits"] = { "DivergentTreatResistancesAsMaxChanceUnique__1", }, + ["#% chance for energy shield recharge to start when you kill an enemy"] = { "DivergentEnergyShieldRechargeOnKillUnique__1__", }, ["#% chance for energy shield recharge to start when you use a skill"] = { "StartEnergyShieldRechargeOnSkillUnique__1", }, - ["#% chance for impales on enemies you kill to reflect damage to surrounding enemies"] = { "EnemiesKilledApplyImpaleDamageUnique__1", }, + ["#% chance for impales on enemies you kill to reflect damage to surrounding enemies"] = { "DivergentEnemiesKilledApplyImpaleDamageUnique__1", "EnemiesKilledApplyImpaleDamageUnique__1", }, ["#% chance for poisons inflicted with this weapon to deal #% more damage"] = { "LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_", }, ["#% chance for slain monsters to drop an additional scroll of wisdom"] = { "IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14", }, ["#% chance for spell hits against you to inflict poison"] = { "ChanceToBePoisonedBySpellsUnique__1_", }, - ["#% chance that if you would gain a crab barrier, you instead gain up to"] = { "ChanceToGainMaximumCrabBarriersUnique__1_", }, + ["#% chance that if you would gain a crab barrier, you instead gain up to"] = { "ChanceToGainMaximumCrabBarriersUnique__1_", "DivergentChanceToGainMaximumCrabBarriersUnique__1_", }, ["#% chance that if you would gain endurance charges, you instead gain up to maximum endurance charges"] = { "ChargeBonusChanceToGainMaximumEnduranceCharges", }, ["#% chance that if you would gain frenzy charges, you instead gain up to your maximum number of frenzy charges"] = { "ChargeBonusChanceToGainMaximumFrenzyCharges", }, - ["#% chance that if you would gain power charges, you instead gain up to"] = { "ChanceToGainMaximumPowerChargesUnique__1_", "ChargeBonusChanceToGainMaximumPowerCharges", }, + ["#% chance that if you would gain power charges, you instead gain up to"] = { "ChanceToGainMaximumPowerChargesUnique__1_", "ChargeBonusChanceToGainMaximumPowerCharges", "DivergentChanceToGainMaximumPowerChargesUnique__1_", }, + ["#% chance that if you would gain rage on hit, you instead gain up to your maximum rage"] = { "DivergentChanceToGainMaximumRageUnique__1", }, ["#% chance to avoid being chilled"] = { "ChanceToAvoidChillUniqueDescentOneHandAxe1", "ChanceToAvoidChilledUnique__1", "ChanceToAvoidFreezeAndChillUniqueDexHelmet5", "JewelImplicitChanceToAvoidChill", }, ["#% chance to avoid being chilled during effect"] = { "AvoidChillUniqueFlask8", }, ["#% chance to avoid being chilled during onslaught"] = { "CannotBeChilledWhenOnslaughtUniqueOneHandAxe6", }, - ["#% chance to avoid being chilled or frozen if you have used a fire skill recently"] = { "AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1", }, + ["#% chance to avoid being chilled or frozen if you have used a fire skill recently"] = { "AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1", "DivergentAvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1", }, ["#% chance to avoid being frozen"] = { "JewelImplicitChanceToAvoidFreeze", }, ["#% chance to avoid being frozen during effect"] = { "AvoidFreezeUniqueFlask8", }, ["#% chance to avoid being ignited"] = { "JewelImplicitChanceToAvoidIgnite", }, - ["#% chance to avoid being ignited while on low life"] = { "AvoidIgniteOnLowLifeUniqueShieldStrInt5", }, + ["#% chance to avoid being ignited while on low life"] = { "AvoidIgniteOnLowLifeUniqueShieldStrInt5", "DivergentAvoidIgniteOnLowLifeUniqueShieldStrInt5", }, ["#% chance to avoid being ignited, chilled or frozen with her blessing"] = { "UniqueConditionOnBuff__1", }, ["#% chance to avoid being poisoned"] = { "ChanceToAvoidPoisonUnique__1", "JewelImplicitChanceToAvoidPoison", }, ["#% chance to avoid being shocked"] = { "JewelImplicitChanceToAvoidShock", }, ["#% chance to avoid being shocked while chilled"] = { "CannotBeShockedWhileChilledUnique__1", }, ["#% chance to avoid being stunned"] = { "AvoidStunUnique__1", "JewelImplicitChanceToAvoidStun", "StunAvoidanceUniqueOneHandSword13", "StunAvoidanceUnique___1", }, - ["#% chance to avoid being stunned for each herald buff affecting you"] = { "StunAvoidancePerHeraldUnique__1", }, + ["#% chance to avoid being stunned for each herald buff affecting you"] = { "DivergentStunAvoidancePerHeraldUnique__1", "StunAvoidancePerHeraldUnique__1", }, ["#% chance to avoid bleeding"] = { "ChanceToAvoidBleedingUnique__2_", }, + ["#% chance to avoid damage of each element from hits per frenzy charge"] = { "AvoidElementalDamagePerFrenzyChargeUnique__1", }, ["#% chance to avoid elemental ailments"] = { "AvoidElementalAilmentsUnique__1_", "ChanceToAvoidElementalStatusAilmentsUniqueJewel46", }, ["#% chance to avoid elemental ailments per grand spectrum"] = { "AvoidElementalAilmentsPerStackableJewelUnique__1", }, ["#% chance to avoid elemental ailments while phasing"] = { "ChanceToDodgeSpellsWhilePhasing_Unique_1", }, - ["#% chance to avoid elemental damage from hits per frenzy charge"] = { "AvoidElementalDamagePerFrenzyChargeUnique__1", }, ["#% chance to avoid fire damage from hits"] = { "ChanceToAvoidFireDamageUnique__1", }, + ["#% chance to avoid projectiles"] = { "DivergentProjectileAvoidUnique", }, ["#% chance to avoid projectiles while phasing"] = { "ChanceToAvoidProjectilesWhilePhasingUnique__1", }, ["#% chance to be inflicted with bleeding when hit by an attack"] = { "ReceiveBleedingWhenHitUnique__1_", }, ["#% chance to blind enemies on critical strike"] = { "ChanceToBlindOnCriticalStrikesUnique__1", }, @@ -83,7 +88,7 @@ return { ["#% chance to block"] = { "SubtractedBlockChanceUniqueShieldStrInt8", }, ["#% chance to block attack damage"] = { "AdditionalBlockUnique__2", "BlockPercentMarakethDaggerImplicit1", "BlockPercentMarakethDaggerImplicit2_", "BlockPercentUniqueDescentStaff1", "BlockPercentUniqueHelmetStrDex4", "BlockPercentUnique__2", }, ["#% chance to block attack damage for every # fire damage taken from hits recently"] = { "AttackBlockPerFireDamageTakenUnique__1", }, - ["#% chance to block spell damage"] = { "BlockingBlocksSpellsUniqueAmulet1", "BlockingBlocksSpellsUnique__1", "SpellBlockPercentageUniqueShieldInt4", "SpellBlockUniqueDescentShieldStr1", "SpellBlockUniqueShieldInt4", "SpellBlockUniqueTwoHandAxe6", }, + ["#% chance to block spell damage"] = { "BlockingBlocksSpellsUniqueAmulet1", "BlockingBlocksSpellsUnique__1", "DivergentSpellBlockPercentageUniqueBootsInt5", "SpellBlockPercentageUniqueShieldInt4", "SpellBlockUniqueDescentShieldStr1", "SpellBlockUniqueShieldInt4", "SpellBlockUniqueTwoHandAxe6", }, ["#% chance to block spell damage while on low life"] = { "SpellBlockOnLowLifeUniqueShieldStrDex1", }, ["#% chance to cause bleeding enemies to flee on hit"] = { "BleedingEnemiesFleeOnHitUnique__1", }, ["#% chance to cause bleeding on critical strike"] = { "BleedOnMeleeCriticalStrikeUnique__1", "CausesBleedingOnCritUniqueDagger11", "CauseseBleedingOnCritUniqueDagger9", }, @@ -105,31 +110,34 @@ return { ["#% chance to curse non-cursed enemies with enfeeble on hit"] = { "EnfeebleOnHitUniqueShieldStr3", }, ["#% chance to deal double damage"] = { "DoubleDamageChanceImplicitMace1", }, ["#% chance to deal double damage per # strength"] = { "DoubleDamagePer500StrengthUnique__1", }, - ["#% chance to deal double damage while affected by glorious madness"] = { "DoubleDamageChanceGloriousMadnessUnique_1", }, + ["#% chance to deal double damage while affected by glorious madness"] = { "DivergentDoubleDamageChanceGloriousMadnessUnique_1", "DoubleDamageChanceGloriousMadnessUnique_1", }, ["#% chance to deal double damage while you have at least # strength"] = { "DoubleDamageWith200StrengthUnique__1", }, ["#% chance to deal triple damage while you have at least # strength"] = { "TripleDamageWith400StrengthUnique__1", }, ["#% chance to double stun duration"] = { "ChanceForDoubleStunDurationImplicitMace_1", "ChanceForDoubleStunDurationUnique__1", }, - ["#% chance to freeze"] = { "ChanceToFreezeUniqueRing30", "ChanceToFreezeUniqueStaff2", "ChanceToFreezeUnique__1", "ChanceToFreezeUnique__2", "ChanceToFreezeUnique__3", "ChanceToFreezeUnique__4", "ChanceToFreezeUnique__5", }, - ["#% chance to freeze enemies for # second when they hit you"] = { "FreezeEnemiesWhenHitChanceUnique__1", }, + ["#% chance to freeze"] = { "ChanceToFreezeUniqueRing30", "ChanceToFreezeUnique__1", "ChanceToFreezeUnique__2", "ChanceToFreezeUnique__3", "ChanceToFreezeUnique__4", "ChanceToFreezeUnique__5", }, + ["#% chance to freeze enemies for # second when they hit you"] = { "DivergentFreezeEnemiesWhenHitChanceUnique__1", "FreezeEnemiesWhenHitChanceUnique__1", "TalismanEnchantFreezeEnemiesWhenHitChance", }, ["#% chance to freeze with melee weapons"] = { "TinctureChanceToFreezeImplicit1", }, - ["#% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteDescentUniqueQuiver1", "ChanceToFreezeShockIgniteUniqueDescentWand1", "ChanceToFreezeShockIgniteUniqueHelmetDexInt4", "ChanceToFreezeShockIgniteUniqueRing21", }, + ["#% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteDescentUniqueQuiver1", "ChanceToFreezeShockIgniteUniqueDescentWand1", "ChanceToFreezeShockIgniteUniqueHelmetDexInt4", "ChanceToFreezeShockIgniteUniqueRing21", "DivergentChanceToFreezeShockIgniteUnique__1", }, + ["#% chance to gain a brine charge instead of an endurance charge"] = { "GainBrineChargesUnique__1", }, ["#% chance to gain a flask charge when you deal a critical strike"] = { "FlaskChanceRechargeOnCritUnique__1", }, + ["#% chance to gain a frenzy charge on critical strike at close range"] = { "DivergentFrenzyChargeOnCritCloseRangeUnique__1", }, ["#% chance to gain a frenzy charge on hit"] = { "ChargeBonusFrenzyChargeOnHit__", }, ["#% chance to gain a frenzy charge on kill"] = { "ChargeBonusFrenzyChargeOnKill", "FrenzyChargeOnKillChanceProphecy", "FrenzyChargeOnKillChanceUniqueAmulet15", "FrenzyChargeOnKillChanceUniqueDescentOneHandSword1", "FrenzyChargeOnKillChanceUnique__1", "FrenzyChargeOnKillChanceUnique__2", "TalismanFrenzyChargeOnKill", }, ["#% chance to gain a frenzy charge on killing a frozen enemy"] = { "ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1", }, ["#% chance to gain a frenzy charge when you stun an enemy"] = { "ChanceToGainFrenzyChargeOnStunUnique__1", }, - ["#% chance to gain a frenzy charge when your trap is triggered by an enemy"] = { "GainFrenzyChargeOnTrapTriggeredUnique__1", }, + ["#% chance to gain a frenzy charge when your trap is triggered by an enemy"] = { "DivergentGainFrenzyChargeOnTrapTriggeredUnique__1", "GainFrenzyChargeOnTrapTriggeredUnique__1", }, ["#% chance to gain a power charge if you knock an enemy back with melee damage"] = { "PowerChargeOnKnockbackUniqueStaff7", }, - ["#% chance to gain a power charge on critical strike"] = { "ChargeBonusPowerChargeOnCrit", "PowerChargeOnCriticalStrikeChanceUnique__1", }, + ["#% chance to gain a power charge on critical strike"] = { "ChargeBonusPowerChargeOnCrit", "DivergentPowerChargeOnCriticalStrikeChanceUnique__1", "PowerChargeOnCriticalStrikeChanceUnique__1", }, ["#% chance to gain a power charge on hit"] = { "PowerChargeOnHitUnique__1", }, - ["#% chance to gain a power charge on hitting an enemy affected by a spider's web"] = { "PowerChargeOnHitWebbedEnemyUnique__1", }, + ["#% chance to gain a power charge on hitting an enemy affected by a spider's web"] = { "DivergentPowerChargeOnHitWebbedEnemyUnique__1", "PowerChargeOnHitWebbedEnemyUnique__1", }, ["#% chance to gain a power charge on kill"] = { "ChargeBonusPowerChargeOnKill", "PowerChargeOnKillChanceProphecy_", "PowerChargeOnKillChanceUniqueAmulet15", "PowerChargeOnKillChanceUniqueDescentDagger1", "PowerChargeOnKillChanceUniqueUniqueShieldInt3", "TalismanPowerChargeOnKill", }, ["#% chance to gain a power charge when you hit a frozen enemy"] = { "PowerChargeOnHittingFrozenEnemyUnique__1", }, ["#% chance to gain a power charge when you stun"] = { "PowerChargeOnStunUniqueSceptre10", }, ["#% chance to gain a power charge when you stun with melee damage"] = { "PowerChargeOnMeleeStunUniqueSceptre10", }, - ["#% chance to gain a power charge when you throw a trap"] = { "PowerChargeOnTrapThrowChanceUniqueShieldDexInt1", }, + ["#% chance to gain a power charge when you throw a trap"] = { "DivergentPowerChargeOnTrapThrowChanceUniqueShieldDexInt1", "PowerChargeOnTrapThrowChanceUniqueShieldDexInt1", }, + ["#% chance to gain a power, frenzy or endurance charge on kill"] = { "DivergentPowerFrenzyOrEnduranceChargeOnKillUnique__1", }, ["#% chance to gain a siphoning charge when you use a skill"] = { "SiphoningChargeOnSkillUseUnique__1", }, - ["#% chance to gain adrenaline for # seconds when leech is"] = { "AdrenalineOnFillingLifeLeechUnique__1", }, + ["#% chance to gain adrenaline for # seconds when leech is"] = { "AdrenalineOnFillingLifeLeechUnique__1", "DivergentAdrenalineOnFillingLifeLeechUnique__1", }, ["#% chance to gain an additional vaal soul on kill"] = { "VillageAdditionalVaalSoulOnKill", }, ["#% chance to gain an additional vaal soul per enemy shattered"] = { "AdditionalVaalSoulOnShatterUniqueCorruptedJewel7", }, ["#% chance to gain an endurance charge on kill"] = { "ChargeBonusEnduranceChargeOnKill", "EnduranceChargeOnKillChanceProphecy", "TalismanEnduranceChargeOnKill_", }, @@ -137,18 +145,18 @@ return { ["#% chance to gain an endurance charge when you stun an enemy"] = { "GainEnduranceChargeOnStunChanceUber1", }, ["#% chance to gain an endurance, frenzy or power charge when any"] = { "RandomChargeOnTrapTriggerUnique__1", }, ["#% chance to gain chaotic might for # seconds on kill"] = { "UnholyMightOnKillPercentChanceUnique__1", }, - ["#% chance to gain onslaught for # seconds on kill"] = { "OnslaugtOnKillPercentChanceUnique__1", }, + ["#% chance to gain onslaught for # seconds on kill"] = { "DivergentOnslaughtBuffOnKillUniqueHelmet1", "OnslaugtOnKillPercentChanceUnique__1", }, ["#% chance to gain onslaught for # seconds when leech is"] = { "OnslaughtOnFillingLifeLeechUnique__1", }, ["#% chance to gain phasing for # seconds when your trap is triggered by an enemy"] = { "PhasingOnTrapTriggeredUnique__1", }, ["#% chance to gain unholy might for # seconds on melee kill"] = { "UnholyMightOnMeleeKillUniqueJewel28", }, ["#% chance to gain unholy might on block for # seconds"] = { "UnholyMightOnBlockChanceUniqueShieldStrInt8", }, - ["#% chance to grant a frenzy charge to nearby allies on hit"] = { "GrantAlliesFrenzyChargeOnHitUnique__1", }, - ["#% chance to grant a frenzy charge to nearby allies on kill"] = { "GrantsAlliesFrenzyChargeOnKillUnique__1_", }, - ["#% chance to grant a power charge to nearby allies on kill"] = { "GrantAlliesPowerChargeOnKillUnique__1", }, - ["#% chance to grant an endurance charge to nearby allies on hit"] = { "GrantsAlliesEnduranceChargeOnHitUnique__1", }, + ["#% chance to grant a frenzy charge to nearby allies on hit"] = { "DivergentGrantAlliesFrenzyChargeOnHitUnique__1", "GrantAlliesFrenzyChargeOnHitUnique__1", }, + ["#% chance to grant a frenzy charge to nearby allies on kill"] = { "DivergentGrantsAlliesFrenzyChargeOnKillUnique__1_", "GrantsAlliesFrenzyChargeOnKillUnique__1_", }, + ["#% chance to grant a power charge to nearby allies on kill"] = { "DivergentGrantAlliesPowerChargeOnKillUnique__1", "GrantAlliesPowerChargeOnKillUnique__1", }, + ["#% chance to grant an endurance charge to nearby allies on hit"] = { "DivergentGrantsAlliesEnduranceChargeOnHitUnique__1", "GrantsAlliesEnduranceChargeOnHitUnique__1", }, ["#% chance to grant chaotic might to nearby enemies on kill"] = { "GrantEnemiesUnholyMightOnKillUnique__1", }, ["#% chance to grant onslaught to nearby enemies on kill"] = { "GrantEnemiesOnslaughtOnKillUnique__1", }, - ["#% chance to ignite"] = { "ChanceToIgniteUniqueBodyInt2", "ChanceToIgniteUniqueDescentOneHandMace1", "ChanceToIgniteUniqueOneHandSword4", "ChanceToIgniteUniqueRing38", "ChanceToIgniteUniqueTwoHandSword6", "ChanceToIgniteUnique__2", "ChanceToIgniteUnique__3", "ChanceToIgniteUnique__5", "IncreasedChanceToIgniteUniqueRing31", "IncreasedChanceToIgniteUnique__1", }, + ["#% chance to ignite"] = { "ChanceToIgniteUniqueBodyInt2", "ChanceToIgniteUniqueDescentOneHandMace1", "ChanceToIgniteUniqueOneHandSword4", "ChanceToIgniteUniqueRing38", "ChanceToIgniteUniqueTwoHandSword6", "ChanceToIgniteUnique__2", "ChanceToIgniteUnique__3", "ChanceToIgniteUnique__5", "ChanceToIgniteUnique__8", "IncreasedChanceToIgniteUniqueRing31", "IncreasedChanceToIgniteUnique__1", }, ["#% chance to ignite when in main hand"] = { "MainHandChanceToIgniteUniqueOneHandAxe2", }, ["#% chance to ignite with melee weapons"] = { "TinctureChanceToIgniteImplicit1", }, ["#% chance to impale enemies on hit with attacks"] = { "ChanceToImpaleUnique__1", }, @@ -156,8 +164,11 @@ return { ["#% chance to inflict an additional poison on the same target when you inflict poison"] = { "ApplyAdditionalPoisonUnique__1", }, ["#% chance to inflict bleeding on critical strike with attacks"] = { "BleedOnCritUnique__1_", }, ["#% chance to inflict bleeding on hit with attacks against taunted enemies"] = { "ChanceToBleedOnTauntedEnemiesUber1", }, - ["#% chance to inflict cold exposure on hit"] = { "ColdExposureOnHitUnique__1", }, - ["#% chance to inflict fire exposure on hit"] = { "FireExposureOnHitUnique__1", }, + ["#% chance to inflict brittle"] = { "DivergentAlternateColdAilmentUnique__1", }, + ["#% chance to inflict cold exposure on hit"] = { "ColdExposureOnHitUnique__1", "DivergentColdExposureOnHitUnique__1", }, + ["#% chance to inflict corrosion on hit with attacks"] = { "DivergentAttackCorrosionOnHitChanceUnique__1", }, + ["#% chance to inflict fire exposure on hit"] = { "DivergentFireExposureOnHitUnique__1", "FireExposureOnHitUnique__1", }, + ["#% chance to inflict withered for # seconds on hit"] = { "DivergentWitherOnHitChanceUnique__1", }, ["#% chance to knock enemies back on hit"] = { "KnockbackChanceUnique__1", }, ["#% chance to maim enemies on critical strike with attacks"] = { "MaimOnCritUnique__1", }, ["#% chance to maim on hit"] = { "DodgeImplicitMarakethSword1", "DodgeImplicitMarakethSword2", "LocalMaimOnHit2HImplicit_1", }, @@ -166,15 +177,22 @@ return { ["#% chance to poison on hit with attacks"] = { "ChanceToPoisonWithAttacksUnique___1", }, ["#% chance to poison with melee weapons"] = { "TinctureChanceToPoisonImplicit1", }, ["#% chance to remove # mana burn on kill"] = { "TinctureRemoveToxicityOnKillUnique__1", }, + ["#% chance to sap enemies"] = { "DivergentAlternateLightningAilmentUnique__1__", }, + ["#% chance to sap enemies in chilling areas"] = { "DivergentChanceToSapVsEnemiesInChillingAreasUnique__1", }, + ["#% chance to scorch enemies"] = { "DivergentAlternateFireAilmentUnique__1", }, ["#% chance to shock"] = { "ChanceToShockUniqueBow10", "ChanceToShockUniqueDescentTwoHandSword1", "ChanceToShockUniqueGlovesStr4", "ChanceToShockUniqueRing29", "ChanceToShockUniqueStaff8", "ChanceToShockUnique__1", "ChanceToShockUnique__2_", }, ["#% chance to shock chilled enemies"] = { "ChanceToShockChilledEnemiesUnique__1", }, ["#% chance to shock with melee weapons"] = { "TinctureChanceToShockImplicit1", }, ["#% chance to spread tar when hit"] = { "GroundTarOnHitTakenUnique__1", }, - ["#% chance to steal power, frenzy, and endurance charges on hit"] = { "StealChargesOnHitPercentUniqueGlovesStrDex6", }, + ["#% chance to steal power, frenzy, and endurance charges on hit"] = { "DivergentStealChargesOnHitPercentUniqueGlovesStrDex6", "StealChargesOnHitPercentUniqueGlovesStrDex6", }, + ["#% chance to throw up to # additional traps"] = { "DivergentChanceToThrowFourAdditionalTrapsUnique__1", }, + ["#% chance to trigger a socketed spell when you attack with a bow, with a # second cooldown"] = { "DivergentTriggerSocketedSpellOnBowAttackUnique__2", }, + ["#% chance to trigger explosive toad when you kill an enemy"] = { "TriggerExplodingToadsOnKillUnique__1", }, ["#% chance to trigger level # animate guardian's weapon when animated weapon kills an enemy"] = { "AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1", }, ["#% chance to trigger level # animate weapon on kill"] = { "TriggeredAnimateWeaponUnique__1", }, ["#% chance to trigger level # molten burst on melee hit"] = { "MoltenBurstOnMeleeHitUnique__1", }, ["#% chance to trigger level # raise spiders on kill"] = { "SummonSpidersOnKillUnique__1", }, + ["#% chance to trigger level # shade form when hit"] = { "DivergentTriggerShadeFormWhenHitUnique__1", }, ["#% chance to trigger level # shade form when you use a socketed skill"] = { "LocalDisplayGrantLevelXShadeFormUnique__1", }, ["#% chance to trigger level # summon raging spirit on kill"] = { "SummonRagingSpiritOnKillUnique__1", "VillageSummonRagingSpiritOnKill", }, ["#% chance to trigger level # summon spectral wolf on critical strike with this weapon"] = { "SummonWolfOnCritUnique__1", }, @@ -182,7 +200,7 @@ return { ["#% chance to trigger level # tentacle whip on kill"] = { "TentacleSmashOnKillUnique__1_", }, ["#% chance to trigger socketed spell on kill, with a # second cooldown"] = { "TriggerSocketedSpellOnKillUnique__1", }, ["#% chance to trigger socketed spells on killing a shocked enemy"] = { "CastSocketedSpellsOnShockedEnemyKillUnique__1", }, - ["#% chance to trigger socketed spells when you spend at least # mana on an"] = { "ChanceToCastOnManaSpentUnique__1", }, + ["#% chance to trigger socketed spells when you spend at least # mana on an"] = { "ChanceToCastOnManaSpentUnique__1", "DivergentChanceToCastOnManaSpentUnique__1", }, ["#% chance to trigger summon spirit of ahuana on kill"] = { "RamakosEmbraceOnKillUnique__1", }, ["#% chance to trigger summon spirit of akoya on kill"] = { "TukohamasEmbraceOnKillUnique__1", }, ["#% chance to trigger summon spirit of ikiaho on kill"] = { "ArohonguisEmbraceOnKillUnique__1", }, @@ -198,11 +216,12 @@ return { ["#% global chance to blind enemies on hit"] = { "GlobalChanceToBlindOnHitUniqueSceptre8", }, ["#% increased accuracy rating per frenzy charge"] = { "AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5", "ChargeBonusAccuracyRatingPerFrenzyCharge", }, ["#% increased accuracy rating when on low life"] = { "IncreasedAccuracyWhenOnLowLifeUniqueClaw4", }, + ["#% increased action speed"] = { "TalismanEnchantActionSpeedReduction", }, ["#% increased arctic armour buff effect"] = { "ArcticArmourBuffEffectUnique__1_", }, ["#% increased area damage"] = { "AreaDamageImplicitMace1", "AreaDamageUniqueDescentOneHandSword1", "AreaDamageUnique__1", }, ["#% increased area damage per # devotion"] = { "AreaDamagePerDevotion", }, ["#% increased area damage per # strength"] = { "AreaDamagePerStrengthUber1", }, - ["#% increased area of effect"] = { "AreaOfEffectImplicitMarakethTwoHandMace1", "AreaOfEffectImplicitMarakethTwoHandMace2", "AreaOfEffectImplicitTwoHandMace1__", "AreaOfEffectImplicitTwoHandMace2_", "AreaOfEffectUniqueDagger1", "AreaOfEffectUniqueDescentOneHandSword1", "AreaOfEffectUniqueDescentStaff1", "AreaOfEffectUniqueQuiver6", "AreaOfEffectUniqueShieldDex7", "AreaOfEffectUniqueShieldDexInt2", "AreaOfEffectUnique__1", "AreaOfEffectUnique__2_", "AreaOfEffectUnique__3", "AreaOfEffectUnique__4_", "AreaOfEffectUnique__5", "AreaOfEffectUnique__7_", "AreaOfEffectUnique__9", }, + ["#% increased area of effect"] = { "AreaOfEffectImplicitMarakethTwoHandMace1", "AreaOfEffectImplicitMarakethTwoHandMace2", "AreaOfEffectImplicitTwoHandMace1__", "AreaOfEffectImplicitTwoHandMace2_", "AreaOfEffectUniqueDagger1", "AreaOfEffectUniqueDescentOneHandSword1", "AreaOfEffectUniqueDescentStaff1", "AreaOfEffectUniqueQuiver6", "AreaOfEffectUniqueShieldDex7", "AreaOfEffectUniqueShieldDexInt2", "AreaOfEffectUnique__1", "AreaOfEffectUnique__3", "AreaOfEffectUnique__4_", "AreaOfEffectUnique__5", "AreaOfEffectUnique__7_", "AreaOfEffectUnique__9", "DivergentAreaOfEffectUniqueBodyDexInt1", "TalismanEnchantAreaOfEffect", }, ["#% increased area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__1_", "IncreasedAttackAreaOfEffectUnique__2_", }, ["#% increased area of effect for skills used by totems"] = { "TotemAreaOfEffectUniqueShieldStr5", }, ["#% increased area of effect if you have at least # strength"] = { "AreaOfEffectWith500StrengthUber1", }, @@ -212,7 +231,7 @@ return { ["#% increased area of effect per # intelligence"] = { "WeaponPhysicalDamagePerStrength", }, ["#% increased area of effect per # rampage kills"] = { "AreaOfEffectPer25RampageStacksUnique__1_", }, ["#% increased area of effect per endurance charge"] = { "AreaOfEffectPerEnduranceChargeUnique__1", }, - ["#% increased area of effect per enemy killed recently, up to #%"] = { "AreaOfEffectPerEnemyKilledRecentlyUnique__1", }, + ["#% increased area of effect per enemy killed recently, up to #%"] = { "AreaOfEffectPerEnemyKilledRecentlyUnique__1", "DivergentAreaOfEffectPerEnemyKilledRecentlyCapped25Unique__1", }, ["#% increased area of effect per power charge"] = { "AreaOfEffectPerPowerChargeUber1", }, ["#% increased area of effect while fortified"] = { "AreaOfEffectWhileFortifiedUber1", }, ["#% increased area of effect while you have no frenzy charges"] = { "IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_", }, @@ -220,13 +239,17 @@ return { ["#% increased armour against projectiles"] = { "ArmourPercent VsProjectilesUniqueShieldStr2", }, ["#% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__19", "LocalIncreasedArmourAndEnergyShieldUnique__22", "LocalIncreasedArmourAndEnergyShieldUnique__4", }, ["#% increased armour and evasion rating if you've killed a taunted enemy recently"] = { "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1", }, - ["#% increased armour per # reserved mana"] = { "GainArmourEqualToManaReservedUnique__1", }, + ["#% increased armour per # reserved mana"] = { "DivergentGainArmourEqualToManaReservedUnique__1", "GainArmourEqualToManaReservedUnique__1", }, ["#% increased armour per # strength when in off hand"] = { "ArmourPerStrengthInOffHandUniqueSceptre6", }, ["#% increased armour per endurance charge"] = { "ChargeBonusArmourPerEnduranceCharge", }, ["#% increased armour while chilled or frozen"] = { "IncreasedArmourWhileChilledOrFrozenUnique__1", }, ["#% increased armour while not ignited, frozen or shocked"] = { "ArmourWhileNotIgnitedFrozenShockedBelt8", }, ["#% increased armour while stationary"] = { "IncreasedArmourWhileStationaryUnique__1", }, - ["#% increased aspect of the avian buff effect"] = { "AvianAspectBuffEffectUnique__1", }, + ["#% increased armour, evasion and energy shield"] = { "DivergentLocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt", }, + ["#% increased aspect of the avian buff effect"] = { "AvianAspectBuffEffectUnique__1", "DivergentAvianAspectBuffEffectUnique__1", "TalismanEnchantAvianAspectBuffEffect", }, + ["#% increased aspect of the cat buff effect"] = { "TalismanEnchantCatAspectBuffEffect", }, + ["#% increased aspect of the crab buff effect"] = { "TalismanEnchantCrabAspectBuffEffect", }, + ["#% increased aspect of the spider debuff effect"] = { "TalismanEnchantSpiderAspectDebuffEffect", }, ["#% increased attack and cast speed"] = { "AttackAndCastSpeedJewelUniqueJewel43", }, ["#% increased attack and cast speed if you've used a movement skill recently"] = { "AttackAndCastSpeedOnUsingMovementSkillUnique__1", }, ["#% increased attack and cast speed per endurance charge"] = { "ChargeBonusAttackAndCastSpeedPerEnduranceCharge", }, @@ -240,20 +263,21 @@ return { ["#% increased attack damage per # evasion rating"] = { "EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9", }, ["#% increased attack damage per # of the lowest of armour and evasion rating"] = { "AttackDamagePerLowestArmourOrEvasionUnique__1", }, ["#% increased attack damage per level"] = { "AttackDamageIncreasedPerLevelUniqueSceptre8", }, - ["#% increased attack speed"] = { "IncreasedAttackSpeedImplicitShield1", "IncreasedAttackSpeedImplicitShield2", "IncreasedAttackSpeedImplicitShield3", "IncreasedAttackSpeedUniqueBodyDex5", "IncreasedAttackSpeedUniqueBodyDex7", "IncreasedAttackSpeedUniqueBootsDexInt1", "IncreasedAttackSpeedUniqueGlovesDex2", "IncreasedAttackSpeedUniqueGlovesDexInt3", "IncreasedAttackSpeedUniqueHelmetDex4", "IncreasedAttackSpeedUniqueHelmetDex6", "IncreasedAttackSpeedUniqueHelmetStrDex2", "IncreasedAttackSpeedUniqueQuiver1", "IncreasedAttackSpeedUniqueQuiver9", "LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1", "LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2", "LocalIncreasedAttackSpeedUniqueBow2", "LocalIncreasedAttackSpeedUniqueBow3", "LocalIncreasedAttackSpeedUniqueBow4", "LocalIncreasedAttackSpeedUniqueBow5", "LocalIncreasedAttackSpeedUniqueClaw2", "LocalIncreasedAttackSpeedUniqueClaw3", "LocalIncreasedAttackSpeedUniqueDagger12", "LocalIncreasedAttackSpeedUniqueDagger3", "LocalIncreasedAttackSpeedUniqueDescentBow1", "LocalIncreasedAttackSpeedUniqueDescentDagger1", "LocalIncreasedAttackSpeedUniqueDescentOneHandMace1", "LocalIncreasedAttackSpeedUniqueOneHandMace1", "LocalIncreasedAttackSpeedUniqueOneHandMace8", "LocalIncreasedAttackSpeedUniqueOneHandSword1", "LocalIncreasedAttackSpeedUniqueOneHandSword12", "LocalIncreasedAttackSpeedUniqueRapier1", "LocalIncreasedAttackSpeedUniqueTwoHandMace4", "LocalIncreasedAttackSpeedUniqueTwoHandSword1", "LocalIncreasedAttackSpeedUniqueTwoHandSword3", }, + ["#% increased attack speed"] = { "DivergentIncreasedAttackSpeedUniqueBootsDexInt1", "IncreasedAttackSpeedImplicitShield1", "IncreasedAttackSpeedImplicitShield2", "IncreasedAttackSpeedImplicitShield3", "IncreasedAttackSpeedUniqueBodyDex5", "IncreasedAttackSpeedUniqueBodyDex7", "IncreasedAttackSpeedUniqueBootsDexInt1", "IncreasedAttackSpeedUniqueGlovesDex2", "IncreasedAttackSpeedUniqueGlovesDexInt3", "IncreasedAttackSpeedUniqueHelmetDex4", "IncreasedAttackSpeedUniqueHelmetDex6", "IncreasedAttackSpeedUniqueHelmetStrDex2", "IncreasedAttackSpeedUniqueQuiver1", "IncreasedAttackSpeedUniqueQuiver9", "LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1", "LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2", "LocalIncreasedAttackSpeedUniqueBow2", "LocalIncreasedAttackSpeedUniqueBow3", "LocalIncreasedAttackSpeedUniqueBow4", "LocalIncreasedAttackSpeedUniqueBow5", "LocalIncreasedAttackSpeedUniqueClaw2", "LocalIncreasedAttackSpeedUniqueClaw3", "LocalIncreasedAttackSpeedUniqueDagger12", "LocalIncreasedAttackSpeedUniqueDagger3", "LocalIncreasedAttackSpeedUniqueDescentBow1", "LocalIncreasedAttackSpeedUniqueDescentDagger1", "LocalIncreasedAttackSpeedUniqueDescentOneHandMace1", "LocalIncreasedAttackSpeedUniqueOneHandMace1", "LocalIncreasedAttackSpeedUniqueOneHandMace8", "LocalIncreasedAttackSpeedUniqueOneHandSword1", "LocalIncreasedAttackSpeedUniqueOneHandSword12", "LocalIncreasedAttackSpeedUniqueRapier1", "LocalIncreasedAttackSpeedUniqueTwoHandMace4", "LocalIncreasedAttackSpeedUniqueTwoHandSword1", "LocalIncreasedAttackSpeedUniqueTwoHandSword3", }, ["#% increased attack speed if you have blocked recently"] = { "AttackSpeedIfBlockedRecentlyUber1", }, ["#% increased attack speed if you've taken a savage hit recently"] = { "AttackSpeedAfterSavageHitTakenUnique__1", }, ["#% increased attack speed per # dexterity"] = { "AttackSpeedPerDexterity", "IncreasedAttackSpeedPerDexterityUnique__1", }, ["#% increased attack speed per #% quality"] = { "LocalAugmentedQualityE1", "LocalAugmentedQualityE2", "LocalAugmentedQualityE3", }, ["#% increased attack speed per fortification"] = { "AttackSpeedPerFortificationUnique__1", }, ["#% increased attack speed per frenzy charge"] = { "AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5", }, - ["#% increased attack speed when on full life"] = { "AttackSpeedOnFullLifeUniqueDescentHelmet1", "AttackSpeedOnFullLifeUniqueGlovesStr1", }, + ["#% increased attack speed when on full life"] = { "AttackSpeedOnFullLifeUniqueDescentHelmet1", "AttackSpeedOnFullLifeUniqueGlovesStr1", "DivergentAttackSpeedOnFullLifeUniqueGlovesStr1", }, ["#% increased attack speed when on low life"] = { "IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4", "IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1", "IncreasedAttackSpeedWhenOnLowLifeUnique__1", }, ["#% increased attack speed with movement skills"] = { "AttackSpeedWithMovementSkillsUniqueClaw9", }, ["#% increased attack speed with swords"] = { "SwordPhysicalAttackSpeedUnique__1", }, ["#% increased attack, cast and movement speed during effect"] = { "DegradingMovementSpeedDuringFlaskEffectUnique__1", }, ["#% increased attack, cast and movement speed while you do not have iron reflexes"] = { "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1", }, ["#% increased attribute requirements"] = { "IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1", "IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4", "IncreasedLocalAttributeRequirementsUnique__1", }, + ["#% increased attributes"] = { "TalismanEnchantPercentageAllAttributes", }, ["#% increased attributes per allocated keystone"] = { "AllAttributesPerAssignedKeystoneUniqueJewel32", }, ["#% increased bleeding duration per # intelligence"] = { "IncreaseBleedDurationPerIntelligenceUnique__1", }, ["#% increased block recovery"] = { "BlockRecoveryImplicitShield1", "BlockRecoveryImplicitShield2", "BlockRecoveryImplicitShield3", }, @@ -261,7 +285,7 @@ return { ["#% increased brand damage per # devotion"] = { "BrandDamagePerDevotion", }, ["#% increased burning damage"] = { "BurnDamageUniqueDescentOneHandMace1", "BurnDamageUniqueStaff1", }, ["#% increased burning damage if you've ignited an enemy recently"] = { "IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1", }, - ["#% increased cast speed"] = { "IncreasedCastSpeedImplicitMarakethWand1", "IncreasedCastSpeedImplicitMarakethWand2", "IncreasedCastSpeedUniqueDescentWand1", "IncreasedCastSpeedUniqueGlovesInt4", "IncreasedCastSpeedUniqueStaff1", "IncreasedCastSpeedUniqueStaff5", "IncreasedCastSpeedUniqueWand1", "IncreasedCastSpeedUniqueWand10", }, + ["#% increased cast speed"] = { "IncreasedCastSpeedImplicitMarakethWand1", "IncreasedCastSpeedImplicitMarakethWand2", "IncreasedCastSpeedUniqueDescentWand1", "IncreasedCastSpeedUniqueGlovesInt4", "IncreasedCastSpeedUniqueStaff5", "IncreasedCastSpeedUniqueWand1", "IncreasedCastSpeedUniqueWand10", }, ["#% increased cast speed for each corpse consumed recently"] = { "CastSpeedPerCorpseConsumedRecentlyUnique__1", }, ["#% increased cast speed for each different non-instant spell you've cast recently"] = { "SpellDamagePerUniqueSpellRecentlyUnique__1", }, ["#% increased cast speed per power charge"] = { "IncreasedCastSpeedPerPowerChargeUnique__1", }, @@ -279,6 +303,7 @@ return { ["#% increased cold damage"] = { "ColdDamagePercentUnique__8", }, ["#% increased cold damage per #% chance to block attack damage"] = { "IncreasedColdDamagePerBlockChanceUnique__1", }, ["#% increased cold damage taken"] = { "ColdDamageTakenUnique__2", }, + ["#% increased cooldown recovery rate"] = { "TalismanEnchantGlobalCooldownRecovery", }, ["#% increased cost of skills"] = { "IncreasedSkillCostUnique_1", }, ["#% increased critical strike chance"] = { "LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe1", "LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe2", "LocalCriticalStrikeChanceUniqueClaw2", "LocalCriticalStrikeChanceUniqueDagger11", "LocalCriticalStrikeChanceUniqueDescentDagger1", "LocalCriticalStrikeChanceUniqueOneHandMace1", }, ["#% increased critical strike chance against bleeding enemies"] = { "CriticalStrikeChanceAgainstBleedingEnemiesUber1", }, @@ -286,7 +311,7 @@ return { ["#% increased critical strike chance against enemies that are on full life"] = { "CriticalChanceAgainstEnemiesOnFullLifeUnique__1", }, ["#% increased critical strike chance per # intelligence"] = { "CriticalStrikeChancePerIntelligenceUnique__1", }, ["#% increased critical strike chance per # strength"] = { "CritChancePercentPerStrengthUniqueOneHandSword8_", }, - ["#% increased critical strike chance per brand"] = { "CriticalStrikeChancePerBrandUnique__1___", }, + ["#% increased critical strike chance per brand"] = { "CriticalStrikeChancePerBrandUnique__1___", "DivergentCriticalStrikeChancePerBrandUnique__1___", }, ["#% increased critical strike chance per endurance charge"] = { "ChargeBonusCriticalStrikeChancePerEnduranceCharge", }, ["#% increased critical strike chance per frenzy charge"] = { "ChargeBonusCriticalStrikeChancePerFrenzyCharge", }, ["#% increased critical strike chance per grand spectrum"] = { "CriticalStrikeChancePerStackableJewelUnique__1", }, @@ -296,13 +321,14 @@ return { ["#% increased damage if you've frozen an enemy recently"] = { "IncreasedDamageIfFrozenRecentlyUnique__1", }, ["#% increased damage on burning ground"] = { "IncreasedDamageOnBurningGroundUniqueBootsInt6", }, ["#% increased damage over time"] = { "DegenerationDamageUniqueDagger8", "DegenerationDamageUnique__1", }, - ["#% increased damage per # dexterity"] = { "DamagePer15DexterityUnique__1", "DamagePer15DexterityUnique__2", }, + ["#% increased damage per # dexterity"] = { "DamagePer15DexterityUnique__1", "DamagePer15DexterityUnique__2", "DivergentDamagePer15DexterityUnique__2", }, ["#% increased damage per # of your lowest attribute"] = { "IncreasedDamagePerLowestAttributeUnique__1", }, ["#% increased damage per # strength when in main hand"] = { "DamagePerStrengthInMainHandUniqueSceptre6", }, ["#% increased damage per crab barrier"] = { "DamagePerCrabBarrierUnique__1", }, ["#% increased damage per endurance charge"] = { "ChargeBonusDamagePerEnduranceCharge", }, ["#% increased damage per frenzy charge"] = { "ChargeBonusDamagePerFrenzyCharge", }, - ["#% increased damage per power charge"] = { "ChargeBonusDamagePerPowerCharge", "IncreasedDamagePerPowerChargeUnique__1", }, + ["#% increased damage per moon rite completed"] = { "TalismanEnchantGreatwolf", }, + ["#% increased damage per power charge"] = { "ChargeBonusDamagePerPowerCharge", "DivergentIncreasedDamagePerPowerChargeUnique__1", "IncreasedDamagePerPowerChargeUnique__1", }, ["#% increased damage per power charge with hits against enemies on full life"] = { "IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6", }, ["#% increased damage per power charge with hits against enemies on low life"] = { "IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6", }, ["#% increased damage taken"] = { "DamageTakenUniqueJewel24", "IncreasedDamageTakenUnique__1", }, @@ -315,6 +341,7 @@ return { ["#% increased damage taken while phasing"] = { "DamageTakenWhilePhasingUnique__1", }, ["#% increased damage when on low life"] = { "DamageOnLowLifeUniqueHelmetStrInt5", "IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1", }, ["#% increased damage while ignited"] = { "DamageWhileIgnitedUniqueRing18", }, + ["#% increased damage while leeching"] = { "DivergentIncreasedDamageWhileLeechingUnique__2__", }, ["#% increased damage while on consecrated ground"] = { "IncreasedDamageOnConsecratedGroundUnique__1", }, ["#% increased damage while shocked"] = { "DamageIncreaseWhileShockedUniqueBelt12", }, ["#% increased damage with ailments per elder item equipped"] = { "AilmentDamagePerElderItemUnique__1__", }, @@ -325,6 +352,7 @@ return { ["#% increased damage with hits against frozen enemies"] = { "IncreasedDamageAgainstFrozenEnemiesUnique__1", }, ["#% increased damage with hits against shocked enemies"] = { "IncreasedDamageToShockedTargetsUniqueRing29", }, ["#% increased damage with hits and ailments against hindered enemies"] = { "DamageAgainstNearEnemiesUnique__1", }, + ["#% increased damage with hits and ailments against ignited enemies"] = { "DivergentIncreasedDamageToIgnitedTargetsUniqueBootsStrInt3", }, ["#% increased damage with hits and ailments against taunted enemies"] = { "IncreasedDamageAgainstTauntedEnemiesUber1", }, ["#% increased damage with ignite inflicted on chilled enemies"] = { "BurningDamageToChilledEnemiesUniqueOneHandAxe2", }, ["#% increased damage with movement skills"] = { "DamageWithMovementSkillsUniqueClaw9", }, @@ -333,31 +361,35 @@ return { ["#% increased damage with unarmed attacks against bleeding enemies"] = { "UnarmedDamageVsBleedingEnemiesUnique__1", }, ["#% increased defences from equipped shield"] = { "ShieldArmourIncreaseUnique__1", }, ["#% increased defences from equipped shield per # devotion"] = { "ShieldDefencesPerDevotion", }, - ["#% increased dexterity"] = { "PercentageDexterityUniqueBodyDex7", "PercentageDexterityUnique__5", }, - ["#% increased dexterity if strength is higher than intelligence"] = { "PercentDexterityIfStrengthHigherThanIntelligenceUnique__1", }, + ["#% increased dexterity"] = { "DivergentPercentageDexterityUniqueHelmetStrDex6", "PercentageDexterityUniqueBodyDex7", "PercentageDexterityUnique__5", }, + ["#% increased dexterity if strength is higher than intelligence"] = { "DivergentPercentDexterityIfStrengthHigherThanIntelligenceUnique__1", "PercentDexterityIfStrengthHigherThanIntelligenceUnique__1", }, ["#% increased duration"] = { "FlaskEffectDurationUnique__4", }, ["#% increased duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__1", }, ["#% increased duration of curses on you"] = { "IncreasedSelfCurseDurationUniqueShieldStrDex2", }, ["#% increased duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationDescentUniqueQuiver1", }, ["#% increased duration of lightning ailments"] = { "ShockDurationUniqueGlovesDexInt3", "ShockDurationUniqueStaff8", }, - ["#% increased duration of shrine effects on you"] = { "ShrineEffectDurationUniqueHelmetDexInt3", }, ["#% increased duration. #% to this value when used"] = { "FlaskDurationConsumedPerUse", "HarvestFlaskEnchantmentDurationLoweredOnUse1_", }, ["#% increased effect of arcane surge on you per"] = { "ArcaneSurgeEffectPerCasterAbyssJewelUnique__1", }, ["#% increased effect of buffs granted by socketed golem skills"] = { "LocalGolemBuffEffectUnique__1", }, ["#% increased effect of buffs granted by your golems"] = { "GolemBuffEffectUnique__1", }, ["#% increased effect of buffs on you"] = { "IncreasedBuffEffectivenessBodyInt12", "IncreasedBuffEffectivenessUniqueOneHandSword11", }, ["#% increased effect of curses on you"] = { "IncreasedCurseEffectUnique__1", }, - ["#% increased effect of lightning ailments"] = { "LightningAilmentEffectUnique__1", "ShockEffectUnique__3", }, - ["#% increased effect of non-curse auras from your skills"] = { "AuraEffectUniqueShieldInt2", "AuraEffectUnique__1", "AuraEffectUnique__2____", "DamageTakenUniqueStaff5", "IncreasedAuraEffectUniqueJewel45", }, + ["#% increased effect of lightning ailments"] = { "DivergentShockEffectUnique__2", "LightningAilmentEffectUnique__1", "ShockEffectUnique__3", }, + ["#% increased effect of non-curse auras from your skills"] = { "AuraEffectUniqueShieldInt2", "AuraEffectUnique__1", "AuraEffectUnique__2____", "DamageTakenUniqueStaff5", "DivergentAuraEffectUniqueShieldInt2", "IncreasedAuraEffectUniqueJewel45", }, ["#% increased effect of non-curse auras from your skills on your minions"] = { "AuraEffectOnMinionsUniqueShieldInt2", "AuraEffectOnMinionsUnique__1_", }, + ["#% increased effect of non-curse auras from your skills while you have a linked target"] = { "DivergentAuraEffectWhileLinkedUnique__1", }, ["#% increased effect of non-curse auras per # devotion"] = { "AuraEffectPerDevotion", }, ["#% increased effect of non-damaging ailments on enemies per # devotion"] = { "AilmentEffectPerDevotion", }, ["#% increased effect of non-damaging ailments per elder item equipped"] = { "AilmentEffectPerElderItemUnique__1", }, ["#% increased effect of non-keystone passive skills in radius"] = { "PassiveEffectivenessJewelUnique__1_", }, - ["#% increased effect of onslaught on you"] = { "OnslaughtEffectUnique__1", }, - ["#% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUniqueHelmetDexInt3", }, + ["#% increased effect of offerings"] = { "DivergentSelfOfferingEffectUnique__2", }, + ["#% increased effect of onslaught on you"] = { "DivergentOnslaughtEffectUnique__1", "OnslaughtEffectUnique__1", }, + ["#% increased effect of shrine buffs on you"] = { "DivergentShrineBuffEffectUniqueHelmetDexInt3", }, + ["#% increased effect of shrine buffs on you for each #% of life reserved"] = { "ShrineBuffEffectPerLifeReservationUnique__1", }, ["#% increased effect of tattoos in radius"] = { "SoulTattooEffectUnique__1", }, + ["#% increased effect of withered"] = { "TalismanEnchantWitheredEffect", }, ["#% increased effect of your curses"] = { "CurseEffectivenessUniqueJewel45", }, + ["#% increased effect of your marks"] = { "TalismanEnchantMarkEffect", }, ["#% increased effect. #% to this value when used"] = { "HarvestFlaskEnchantmentEffectLoweredOnUse2", }, ["#% increased elemental ailment duration on you"] = { "CurseEffectElementalAilmentDurationOnSelfR1", "SelfStatusAilmentDurationUnique__1", }, ["#% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptre1", "ElementalDamagePercentImplicitSceptre2", "ElementalDamagePercentImplicitSceptre3", "ElementalDamagePercentImplicitSceptreNew1", "ElementalDamagePercentImplicitSceptreNew10", "ElementalDamagePercentImplicitSceptreNew11", "ElementalDamagePercentImplicitSceptreNew12___", "ElementalDamagePercentImplicitSceptreNew13", "ElementalDamagePercentImplicitSceptreNew14", "ElementalDamagePercentImplicitSceptreNew15", "ElementalDamagePercentImplicitSceptreNew16", "ElementalDamagePercentImplicitSceptreNew17", "ElementalDamagePercentImplicitSceptreNew18", "ElementalDamagePercentImplicitSceptreNew19", "ElementalDamagePercentImplicitSceptreNew2", "ElementalDamagePercentImplicitSceptreNew20", "ElementalDamagePercentImplicitSceptreNew21__", "ElementalDamagePercentImplicitSceptreNew22", "ElementalDamagePercentImplicitSceptreNew3", "ElementalDamagePercentImplicitSceptreNew4", "ElementalDamagePercentImplicitSceptreNew5", "ElementalDamagePercentImplicitSceptreNew6", "ElementalDamagePercentImplicitSceptreNew7", "ElementalDamagePercentImplicitSceptreNew8", "ElementalDamagePercentImplicitSceptreNew9", "ElementalDamagePercentUnique__2", "ElementalDamageUniqueDescentBelt1", "ElementalDamageUniqueHelmetInt9", "ElementalDamageUniqueJewel10", "ElementalDamageUniqueSceptre1", "ElementalDamageUnique__1", }, @@ -373,23 +405,27 @@ return { ["#% increased elemental damage per power charge"] = { "ElementalDamagePerPowerChargeUber1", }, ["#% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitSword1", "WeaponElementalDamageUniqueBelt10", }, ["#% increased elemental damage with attack skills during any flask effect"] = { "IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10", }, + ["#% increased elemental resistances"] = { "DivergentIncreasedElementalResistancesUnique__1", }, + ["#% increased elusive effect"] = { "DivergentElusiveEffectUnique__1", }, ["#% increased endurance charge duration"] = { "EnduranceChargeDurationUniqueBodyStrInt4", "JewelImplicitEnduranceChargeDuration", }, + ["#% increased endurance, frenzy and power charge duration"] = { "DivergentChargeDurationUniqueBodyDexInt3", }, ["#% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1", "LocalIncreasedEnergyShieldUniqueHelmetInt4", }, - ["#% increased energy shield per # strength"] = { "EnergyShieldPerStrengthUnique__1", }, + ["#% increased energy shield per # strength"] = { "DivergentEnergyShieldPerStrengthUnique__1", "EnergyShieldPerStrengthUnique__1", }, ["#% increased energy shield per power charge"] = { "ChargeBonusEnergyShieldPerPowerCharge", }, ["#% increased energy shield recharge rate"] = { "ReducedEnergyShieldDelayUniqueBelt11", }, + ["#% increased energy shield recovery rate"] = { "DivergentEnergyShieldRecoveryRateUnique__1", }, ["#% increased evasion if you have hit an enemy recently"] = { "IncreasedEvasionRatingIfHitEnemyRecentlyUber1", }, ["#% increased evasion rating"] = { "LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1", "LocalIncreasedEvasionRatingPercentUniqueBootsDex7", "LocalIncreasedEvasionRatingPercentUniqueHelmetDex6", }, - ["#% increased evasion rating during onslaught"] = { "IncreasedEvasionWithOnslaughtUnique_1", }, - ["#% increased evasion rating if you have been hit recently"] = { "IncreasedEvasionIfHitRecentlyUnique___1", }, + ["#% increased evasion rating during onslaught"] = { "DivergentIncreasedEvasionWithOnslaughtUnique_1", "IncreasedEvasionWithOnslaughtUnique_1", }, + ["#% increased evasion rating if you have been hit recently"] = { "DivergentIncreasedEvasionIfHitRecentlyUnique___1", "IncreasedEvasionIfHitRecentlyUnique___1", }, ["#% increased evasion rating per # dexterity allocated in radius"] = { "ClawPhysDamageAndEvasionPerDexUniqueJewel47", }, - ["#% increased evasion rating per # intelligence"] = { "EvasionRatingPerIntelligenceUnique__1", }, - ["#% increased evasion rating per # maximum mana"] = { "DodgeAndSpellDodgePerMaximumManaUnique__1", }, + ["#% increased evasion rating per # intelligence"] = { "DivergentEvasionRatingPerIntelligenceUnique__1", "EvasionRatingPerIntelligenceUnique__1", }, + ["#% increased evasion rating per # maximum mana"] = { "DivergentDodgeAndSpellDodgePerMaximumManaUnique__1", "DodgeAndSpellDodgePerMaximumManaUnique__1", }, ["#% increased evasion rating per frenzy charge"] = { "ChargeBonusEvasionPerFrenzyCharge", "EvasionRatingPerFrenzyChargeUniqueBootsStrDex2", }, ["#% increased evasion rating while moving"] = { "EvasionRatingWhileMovingUnique__1", }, ["#% increased evasion rating while phasing"] = { "ChanceToDodgeAttacksWhilePhasingUnique___1", }, ["#% increased evasion while leeching"] = { "IncreasedEvasionRatingWhileLeechingUber1", }, - ["#% increased experience gain"] = { "IncreasedExperienceUniqueIntHelmet3", "IncreasedExperienceUniqueRing14", "IncreasedExperienceUniqueSceptre1", }, + ["#% increased experience gain"] = { "DivergentIncreasedExperienceUniqueIntHelmet3", "IncreasedExperienceUniqueIntHelmet3", "IncreasedExperienceUniqueRing14", "IncreasedExperienceUniqueSceptre1", }, ["#% increased experience gain for corrupted gems"] = { "IncreasedCorruptedGemExperienceUniqueCorruptedJewel9", }, ["#% increased explicit ailment modifier magnitudes"] = { "WeaponEnchantmentHeistAilmentEffect1", "WeaponEnchantmentHeistAilmentEffectAttributeRequirement1_", "WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistAilmentEffectNoBlueSockets1__", "WeaponEnchantmentHeistAilmentEffectNoGreenSockets1", "WeaponEnchantmentHeistAilmentEffectNoRedSockets1_", "WeaponEnchantmentHeistAilmentEffectOnlyBlueSockets1__", "WeaponEnchantmentHeistAilmentEffectOnlyGreenSockets1", "WeaponEnchantmentHeistAilmentEffectOnlyRedSockets1", "WeaponEnchantmentHeistAilmentEffectSocketPenalty1__", "WeaponEnchantmentHeistAilmentEffectSocketsAreLinked1", "WeaponEnchantmentHeistAilmentEffectWhiteSockets1", "WeaponEnchantmentHeistCasterDamageEffectAilmentEffect1_", "WeaponEnchantmentHeistChaosEffectAilmentEffect1_", "WeaponEnchantmentHeistColdEffectAilmentEffect1", "WeaponEnchantmentHeistFireEffectAilmentEffect1_", "WeaponEnchantmentHeistLightningEffectAilmentEffect1", "WeaponEnchantmentHeistManaEffectAilmentEffect1", "WeaponEnchantmentHeistPhysicalEffectAilmentEffect1", }, ["#% increased explicit attribute modifier magnitudes"] = { "ArmourEnchantmentHeistAttributeEffect1", "ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistAttributeEffectDefenceEffectPenalty1", "ArmourEnchantmentHeistAttributeEffectLifeEffectPenalty1_", "ArmourEnchantmentHeistAttributeEffectNoBlueSockets1", "ArmourEnchantmentHeistAttributeEffectNoGreenSockets1", "ArmourEnchantmentHeistAttributeEffectNoRedSockets1", "ArmourEnchantmentHeistAttributeEffectOnlyBlueSockets1_", "ArmourEnchantmentHeistAttributeEffectOnlyGreenSockets1", "ArmourEnchantmentHeistAttributeEffectOnlyRedSockets1", "ArmourEnchantmentHeistAttributeEffectSocketPenalty1", "ArmourEnchantmentHeistAttributeEffectSocketsAreLinked1", "ArmourEnchantmentHeistAttributeEffectWhiteSocket1_", "ArmourEnchantmentHeistDefenceEffectAttributeEffect1", "ArmourEnchantmentHeistLifeEffectAttributeEffect1_", "ArmourEnchantmentHeistManaEffectAttributeEffect1", "WeaponEnchantmentHeistAttributeEffect1", "WeaponEnchantmentHeistAttributeEffectAttributeRequirement1", "WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistAttributeEffectDamageEffectPenalty1", "WeaponEnchantmentHeistAttributeEffectNoBlueSockets1_", "WeaponEnchantmentHeistAttributeEffectNoGreenSockets1", "WeaponEnchantmentHeistAttributeEffectNoRedSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyBlueSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyGreenSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyRedSockets1_", "WeaponEnchantmentHeistAttributeEffectSocketPenalty1", "WeaponEnchantmentHeistAttributeEffectSocketsAreLinked1_", "WeaponEnchantmentHeistAttributeEffectWhiteSockets1_", "WeaponEnchantmentHeistCasterDamageEffectAttributeEffect1", "WeaponEnchantmentHeistChaosEffectAttributeEffect1", "WeaponEnchantmentHeistColdEffectAttributeEffect1", "WeaponEnchantmentHeistFireEffectAttributeEffect1", "WeaponEnchantmentHeistLightningEffectAttributeEffect1", "WeaponEnchantmentHeistManaEffectAttributeEffect1_", "WeaponEnchantmentHeistPhysicalEffectAttributeEffect1____", }, @@ -405,7 +441,7 @@ return { ["#% increased explicit physical modifier magnitudes"] = { "WeaponEnchantmentHeistPhysicalEffect1", "WeaponEnchantmentHeistPhysicalEffectAttributeRequirement1", "WeaponEnchantmentHeistPhysicalEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistPhysicalEffectNoBlueSockets1", "WeaponEnchantmentHeistPhysicalEffectNoGreenSockets1_", "WeaponEnchantmentHeistPhysicalEffectNoRedSockets1", "WeaponEnchantmentHeistPhysicalEffectOnlyBlueSockets1_", "WeaponEnchantmentHeistPhysicalEffectOnlyGreenSockets1", "WeaponEnchantmentHeistPhysicalEffectOnlyRedSockets1", "WeaponEnchantmentHeistPhysicalEffectSocketPenalty1", "WeaponEnchantmentHeistPhysicalEffectSocketsAreLinked1", "WeaponEnchantmentHeistPhysicalEffectSpeedEffect1", "WeaponEnchantmentHeistPhysicalEffectSpeedEffectPenalty1___", "WeaponEnchantmentHeistPhysicalEffectWhiteSockets1_", }, ["#% increased explicit resistance modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffect1__", "ArmourEnchantmentHeistResistanceEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistResistanceEffectNoBlueSockets1", "ArmourEnchantmentHeistResistanceEffectNoGreenSockets1", "ArmourEnchantmentHeistResistanceEffectNoRedSockets1", "ArmourEnchantmentHeistResistanceEffectOnlyBlueSockets1", "ArmourEnchantmentHeistResistanceEffectOnlyGreenSockets1", "ArmourEnchantmentHeistResistanceEffectOnlyRedSockets1", "ArmourEnchantmentHeistResistanceEffectSocketPenalty1", "ArmourEnchantmentHeistResistanceEffectSocketsAreLinked1_", "ArmourEnchantmentHeistResistanceEffectWhiteSocket1", }, ["#% increased explicit speed modifier magnitudes"] = { "WeaponEnchantmentHeistSpeedEffect1_", "WeaponEnchantmentHeistSpeedEffectAttributeRequirement1__", "WeaponEnchantmentHeistSpeedEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistSpeedEffectNoBlueSockets1", "WeaponEnchantmentHeistSpeedEffectNoGreenSockets1", "WeaponEnchantmentHeistSpeedEffectNoRedSockets1", "WeaponEnchantmentHeistSpeedEffectOnlyBlueSockets1", "WeaponEnchantmentHeistSpeedEffectOnlyGreenSockets1", "WeaponEnchantmentHeistSpeedEffectOnlyRedSockets1", "WeaponEnchantmentHeistSpeedEffectSocketPenalty1", "WeaponEnchantmentHeistSpeedEffectSocketsAreLinked1__", "WeaponEnchantmentHeistSpeedEffectWhiteSockets1_", }, - ["#% increased fire damage"] = { "FireDamagePercentUniqueHelmetInt5", "FireDamagePercentUniqueSceptre9", "FireDamagePercentUnique__12___", "FireDamagePercentUnique___7", "IncreasedFireDamgeIfHitRecentlyUnique__1", }, + ["#% increased fire damage"] = { "FireDamagePercentUniqueHelmetInt5", "FireDamagePercentUniqueSceptre9", "FireDamagePercentUnique__12___", "FireDamagePercentUnique___7", }, ["#% increased fire damage per # strength"] = { "FireDamagePerStrengthUnique__1", }, ["#% increased fire damage taken"] = { "IncreasedFireDamageTakenUniqueBodyStrDex5", "IncreasedFireDamageTakenUniqueTwoHandSword6", }, ["#% increased fishing line strength"] = { "FishingLineStrengthUnique__1", }, @@ -417,24 +453,23 @@ return { ["#% increased flask life recovery rate"] = { "BeltFlaskLifeRecoveryRateUniqueBelt4", "FlaskLifeRecoveryRateUniqueBodyStrDex1", }, ["#% increased flask mana recovery rate"] = { "FlaskManaRecoveryRateUniqueBodyStrDex1", }, ["#% increased fortification duration per # strength"] = { "FortifyDurationPerStrengthUber1", }, - ["#% increased freeze duration on enemies"] = { "FreezeDurationUniqueGlovesStrInt3", "FreezeDurationUnique__1", }, + ["#% increased freeze duration on enemies"] = { "DivergentFreezeDurationUniqueGlovesStrInt3", "FreezeDurationUniqueGlovesStrInt3", "FreezeDurationUnique__1", }, ["#% increased freeze duration on you"] = { "FreezeDurationOnSelfUnique__1", }, ["#% increased frenzy charge duration"] = { "JewelImplicitFrenzyChargeDuration__", }, ["#% increased global accuracy rating"] = { "AccuracyPercentImplicit2HSword1", "AccuracyPercentImplicit2HSword2_", "AccuracyPercentImplicitSword1", "AccuracyPercentImplicitSword2", "PercentIncreasedAccuracyJewelUnique__1", }, ["#% increased global armour while you have no energy shield"] = { "IncreasedArmourOnZeroEnergyShieldUnique__1", }, - ["#% increased global attack speed per green socket"] = { "AttackSpeedPerGreenSocketUniqueOneHandSword5", }, - ["#% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger1", "CriticalStrikeChanceImplicitDagger2", "CriticalStrikeChanceImplicitDagger3", "CriticalStrikeChanceImplicitDaggerNew1", "CriticalStrikeChanceImplicitDaggerNew2", "CriticalStrikeChanceImplicitDaggerNew3", "CriticalStrikeChanceImplicitMarakethStaff1", "CriticalStrikeChanceImplicitMarakethStaff2", "CriticalStrikeChanceUniqueBodyInt4", "CriticalStrikeChanceUniqueDagger3", "CriticalStrikeChanceUniqueGlovesDex2", "CriticalStrikeChanceUniqueHelmetDex4", "CriticalStrikeChanceUniqueOneHandSword2", "CriticalStrikeChanceUniqueRapier1", "CriticalStrikeChanceUnique__1", }, + ["#% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger1", "CriticalStrikeChanceImplicitDagger2", "CriticalStrikeChanceImplicitDagger3", "CriticalStrikeChanceImplicitMarakethStaff1", "CriticalStrikeChanceImplicitMarakethStaff2", "CriticalStrikeChanceUniqueBodyInt4", "CriticalStrikeChanceUniqueDagger3", "CriticalStrikeChanceUniqueGlovesDex2", "CriticalStrikeChanceUniqueHelmetDex4", "CriticalStrikeChanceUniqueOneHandSword2", "CriticalStrikeChanceUniqueRapier1", "CriticalStrikeChanceUnique__1", "DivergentCriticalStrikeChanceUniqueGlovesDex2", "DivergentCriticalStrikeChanceUniqueHelmetDex6", }, ["#% increased global critical strike chance per level"] = { "CriticalStrikeChancePerLevelUniqueTwoHandAxe8", }, - ["#% increased global defences"] = { "AllDefencesUnique__1", "AllDefencesUnique__2", "AllDefencesUnique__3", }, + ["#% increased global defences"] = { "AllDefencesUnique__1", "AllDefencesUnique__2", "AllDefencesUnique__3", "DivergentAllDefencesUnique__2", "DivergentAllDefencesUnique__3", "TalismanEnchantAllDefences", }, ["#% increased global defences per white socket"] = { "GlobalDefensesPerWhiteSocketUnique__1", }, - ["#% increased global evasion rating when on low life"] = { "EvasionRatingPercentOnLowLifeUniqueHelmetDex4", }, - ["#% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1", "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2", "IncreasedPhysicalDamagePercentUniqueBootsDexInt4", "IncreasedPhysicalDamagePercentUniqueDescentClaw1", "IncreasedPhysicalDamagePercentUniqueGlovesStr2", "IncreasedPhysicalDamagePercentUniqueHelmetStr1", "IncreasedPhysicalDamagePercentUniqueJewel9", "IncreasedPhysicalDamagePercentUniqueQuiver2", "IncreasedPhysicalDamagePercentUniqueRing1", "IncreasedPhysicalDamagePercentUniqueShieldStrDex1", "IncreasedPhysicalDamagePercentUniqueSwordImplicit1", "IncreasedPhysicalDamagePercentUnique__4", }, + ["#% increased global evasion rating when on low life"] = { "DivergentEvasionRatingPercentOnLowLifeUniqueHelmetDex4", "EvasionRatingPercentOnLowLifeUniqueHelmetDex4", }, + ["#% increased global physical damage"] = { "DivergentIncreasedPhysicalDamagePercentUnique__4", "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1", "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2", "IncreasedPhysicalDamagePercentUniqueBootsDexInt4", "IncreasedPhysicalDamagePercentUniqueDescentClaw1", "IncreasedPhysicalDamagePercentUniqueGlovesStr2", "IncreasedPhysicalDamagePercentUniqueHelmetStr1", "IncreasedPhysicalDamagePercentUniqueJewel9", "IncreasedPhysicalDamagePercentUniqueQuiver2", "IncreasedPhysicalDamagePercentUniqueRing1", "IncreasedPhysicalDamagePercentUniqueShieldStrDex1", "IncreasedPhysicalDamagePercentUniqueSwordImplicit1", "IncreasedPhysicalDamagePercentUnique__4", }, ["#% increased global physical damage while frozen"] = { "PhysicalDamageWhileFrozenUnique___1", }, - ["#% increased global physical damage with weapons per red socket"] = { "PhysicalDamgePerRedSocketUniqueOneHandSword5", }, ["#% increased herald of ice damage"] = { "HeraldOfIceDamageUnique__1_", }, ["#% increased ignite duration on enemies"] = { "BurnDurationUniqueDescentOneHandMace1", "BurnDurationUniqueRing31", "BurnDurationUnique__1", "BurnDurationUnique__2", }, ["#% increased ignite duration on you"] = { "IncreasedSelfBurnDurationUniqueRing28", "SelfBurnDurationUnique__1", }, ["#% increased impale effect"] = { "ImpaleEffectUnique__1", "ImpaleEffectUnique__2", }, + ["#% increased intelligence"] = { "DivergentPercentageIntelligenceUniqueHelmetStrDex6", }, ["#% increased intelligence for each unique item equipped"] = { "IncreasedIntelligencePerUniqueUniqueRing14", }, ["#% increased intelligence requirement"] = { "IncreasedIntelligenceRequirementsUniqueGlovesStrInt4", "IncreasedIntelligenceRequirementsUniqueSceptre1", }, ["#% increased item quantity per white socket"] = { "ItemQuantityPerWhiteSocketUniqueRing39_", }, @@ -443,12 +478,14 @@ return { ["#% increased life recovered"] = { "FlaskExtraLifeUnique__1", }, ["#% increased life recovery from flasks"] = { "BeltFlaskLifeRecoveryUniqueDescentBelt1", "BeltFlaskLifeRecoveryUnique__2", "FlaskLifeRecoveryRateUniqueJewel46", "FlaskLifeRecoveryUniqueAmulet25", }, ["#% increased life recovery rate per # strength on allocated passives in radius"] = { "LifeRecoveryRatePerAllocatedStrengthUnique__1_", "LifeRecoveryRatePerAllocatedStrengthUnique__2", }, - ["#% increased light radius"] = { "LightRadiusUniqueBelt6", "LightRadiusUniqueBodyInt8", "LightRadiusUniqueBodyStr4", "LightRadiusUniqueRing15", "LightRadiusUniqueRing9_", "LightRadiusUniqueSceptre2", "LightRadiusUniqueShieldDemigods", "LightRadiusUniqueStaff10_", "LightRadiusUnique__11", "LightRadiusUnique__3", "LightRadiusUnique__4", "LightRadiusUnique__8", "LightRadiusUnique__9", }, + ["#% increased light radius"] = { "DivergentLightRadiusUniqueBodyInt8", "LightRadiusUniqueBelt6", "LightRadiusUniqueBodyInt8", "LightRadiusUniqueBodyStr4", "LightRadiusUniqueRing15", "LightRadiusUniqueRing9_", "LightRadiusUniqueSceptre2", "LightRadiusUniqueShieldDemigods", "LightRadiusUniqueStaff10_", "LightRadiusUnique__11", "LightRadiusUnique__3", "LightRadiusUnique__4", "LightRadiusUnique__8", "LightRadiusUnique__9", }, ["#% increased light radius during effect"] = { "FlaskLightRadiusUniqueFlask1", }, ["#% increased lightning damage"] = { "CriticalStrikesDealIncreasedLightningDamageUnique__1", "LightningDamagePercentUniqueRing29", "LightningDamagePercentUnique__3", "LightningDamagePercentUnique__4", }, ["#% increased lightning damage per # intelligence"] = { "IncreasedLightningDamagePer10IntelligenceUnique__1", }, ["#% increased lightning damage taken"] = { "IncreasedLightningDamageTakenUnique__1", }, ["#% increased main hand critical strike chance per"] = { "MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1", }, + ["#% increased mana cost efficiency per # devotion"] = { "ManaCostEfficiencyPerDevotion", }, + ["#% increased mana cost efficiency per endurance charge"] = { "ManaCostEfficiencyPerEnduranceChargeUnique__1", }, ["#% increased mana cost of skills"] = { "ManaCostIncreaseUniqueTwoHandAxe4", "ManaCostIncreasedUniqueCorruptedJewel3", "ManaCostIncreasedUniqueHelmetStrInt6", "ManaCostIncreasedUniqueWand7", }, ["#% increased mana cost of skills during effect"] = { "FlaskBuffReducedManaCostWhileHealingUnique__1", }, ["#% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUniqueDescentBelt1", "BeltFlaskManaRecoveryUnique__2", "FlaskManaRecoveryUniqueShieldInt3", }, @@ -460,15 +497,16 @@ return { ["#% increased mana regeneration rate per raised spectre"] = { "ManaRegenerationPerSpectreUnique__1", }, ["#% increased mana regeneration rate while stationary"] = { "IncreasedManaRegenerationWhileStationaryUnique__1", }, ["#% increased mana reservation efficiency of herald skills"] = { "HeraldReservationEfficiencyUnique__1", }, - ["#% increased mana reservation efficiency of skills"] = { "IncreasedManaReservationsCostUniqueOneHandSword11", "ManaReservationEfficiencyUniqueHelmetDex5_", "ManaReservationEfficiencyUniqueJewel44_", "ManaReservationEfficiencyUniqueOneHandSword11", "ReducedManaReservationsCostUniqueHelmetDex5", "ReducedManaReservationsCostUniqueJewel44", }, - ["#% increased mana reservation efficiency of skills per # total attributes"] = { "ManaReservationEfficiencyPerAttributeUnique__1", "ManaReservationPerAttributeUnique__1", }, + ["#% increased mana reservation efficiency of skills"] = { "DivergentManaReservationEfficiencyUniqueHelmetDex5_", "IncreasedManaReservationsCostUniqueOneHandSword11", "ManaReservationEfficiencyUniqueHelmetDex5_", "ManaReservationEfficiencyUniqueJewel44_", "ManaReservationEfficiencyUniqueOneHandSword11", "ReducedManaReservationsCostUniqueHelmetDex5", "ReducedManaReservationsCostUniqueJewel44", }, + ["#% increased mana reservation efficiency of skills per # total attributes"] = { "DivergentManaReservationEfficiencyPerAttributeUnique__1", "ManaReservationEfficiencyPerAttributeUnique__1", "ManaReservationPerAttributeUnique__1", }, ["#% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUnique__1", "IncreasedEnergyShieldPercentUnique__4", "IncreasedEnergyShieldPercentUnique__6", }, ["#% increased maximum energy shield for each corrupted item equipped"] = { "MaximumEnergyShieldPercentPerCorruptedItemUnique__1_", }, - ["#% increased maximum life"] = { "MaximumLifeShieldInt1", "MaximumLifeUniqueBelt4", "MaximumLifeUniqueBodyInt3", "MaximumLifeUnique__14", "MaximumLifeUnique__2", "MaximumLifeUnique__27", "MaximumLifeUnique__3", }, + ["#% increased maximum life"] = { "DivergentMaximumLifeUniqueBodyStrDex1", "MaximumLifeShieldInt1", "MaximumLifeUniqueBelt4", "MaximumLifeUniqueBodyInt3", "MaximumLifeUnique__14", "MaximumLifeUnique__2", "MaximumLifeUnique__27", "MaximumLifeUnique__3", "TalismanEnchantMaximumLifeIncreasePercent", }, ["#% increased maximum life for each corrupted item equipped"] = { "MaximumLifePercentPerCorruptedItemUnique__1_", }, + ["#% increased maximum life if no equipped items are corrupted"] = { "DivergentIncreasedLifeWhileNoCorruptedItemsUnique__1", }, ["#% increased maximum life per abyss jewel affecting you"] = { "IncreasedLifePerAbyssalJewelUnique__1", "IncreasedLifePerAbyssalJewelUnique__2", }, ["#% increased maximum life per grand spectrum"] = { "MaximumLifePerStackableJewelUnique__1", }, - ["#% increased maximum mana"] = { "MaximumManaUniqueRing5", "MaximumManaUniqueStaff5", "MaximumManaUniqueTwoHandMace5", "MaximumManaUnique__10", }, + ["#% increased maximum mana"] = { "MaximumManaUniqueRing5", "MaximumManaUniqueStaff5", "MaximumManaUniqueTwoHandMace5", "MaximumManaUnique__10", "TalismanEnchantMaximumManaIncreasePercent", }, ["#% increased maximum mana per #% chance to block spell damage"] = { "IncreasedManaPerSpellBlockChanceUnique__1", }, ["#% increased maximum mana per abyss jewel affecting you"] = { "IncreasedManaPerAbyssalJewelUnique__1_", "IncreasedManaPerAbyssalJewelUnique__2", }, ["#% increased maximum total life recovery per second from leech"] = { "MaximumLifeLeechRateUnique__1", }, @@ -480,18 +518,18 @@ return { ["#% increased melee damage per endurance charge"] = { "IncreasedDamagePerEnduranceChargeUnique_1", }, ["#% increased melee damage when on full life"] = { "MeleeDamageOnFullLifeUniqueAmulet13", }, ["#% increased melee physical damage against ignited enemies"] = { "IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1", }, - ["#% increased melee physical damage per # dexterity"] = { "MeleePhysicalDamagePerDexterityUnique__1_", }, + ["#% increased melee physical damage per # dexterity"] = { "DivergentMeleePhysicalDamagePerDexterityUnique__1_", "MeleePhysicalDamagePerDexterityUnique__1_", }, ["#% increased melee physical damage per # strength while fortified"] = { "MeleePhysicalDamagePerStrengthWhileFortifiedUber1", }, ["#% increased minion attack and cast speed per # devotion"] = { "MinionAttackAndCastSpeedPerDevotion", }, ["#% increased minion attack and cast speed per skeleton you own"] = { "MinionAttackAndCastSpeedPerSkeleton__1", }, - ["#% increased minion attack speed per # dexterity"] = { "MinionAttackSpeedPerXDexUnique__1", }, + ["#% increased minion attack speed per # dexterity"] = { "DivergentMinionAttackSpeedPerXDexUnique__1", "MinionAttackSpeedPerXDexUnique__1", }, ["#% increased minion duration per raised zombie"] = { "MinionDurationPerZombie__1", }, ["#% increased minion movement speed per # dexterity"] = { "MinionMovementSpeedPerXDexUnique__1", }, ["#% increased movement skill mana cost"] = { "IncreasedCostOfMovementSkillsUnique_1", }, - ["#% increased movement speed"] = { "JewelImplicitMovementSpeed", "MovementSpeedUnique_42", "MovementVelocityDescent2Boots1", "MovementVelocityImplicitArmour1", "MovementVelocityImplicitShield1", "MovementVelocityImplicitShield2", "MovementVelocityImplicitShield3", "MovementVelocityMarakethBowImplicit1", "MovementVelocityMarakethBowImplicit2", "MovementVelocityUniqueAmulet5", "MovementVelocityUniqueBodyDex4", "MovementVelocityUniqueBodyDex5", "MovementVelocityUniqueBodyDex7", "MovementVelocityUniqueBodyStrDex5_", "MovementVelocityUniqueBootsA1", "MovementVelocityUniqueBootsDex1", "MovementVelocityUniqueBootsDex2", "MovementVelocityUniqueBootsDex7", "MovementVelocityUniqueBootsDex8", "MovementVelocityUniqueBootsDexInt1", "MovementVelocityUniqueBootsDexInt2", "MovementVelocityUniqueBootsDexInt4", "MovementVelocityUniqueBootsInt2", "MovementVelocityUniqueBootsInt5", "MovementVelocityUniqueBootsInt6", "MovementVelocityUniqueBootsStr1", "MovementVelocityUniqueBootsStr3", "MovementVelocityUniqueBootsStrDex1", "MovementVelocityUniqueBootsStrDex3", "MovementVelocityUniqueBootsStrDex4", "MovementVelocityUniqueBootsStrDex5", "MovementVelocityUniqueBootsStrInt2_", "MovementVelocityUniqueBootsStrInt3", "MovementVelocityUniqueBootsW1", "MovementVelocityUniqueBow7", "MovementVelocityUniqueClaw3", "MovementVelocityUniqueHelmetDex6", "MovementVelocityUniqueHelmetInt6", "MovementVelocityUniqueHelmetStrDex1", "MovementVelocityUniqueHelmetStrDex2", "MovementVelocityUniqueIntHelmet2", "MovementVelocityUniqueJewel43", "MovementVelocityUniqueOneHandAxe3", "MovementVelocityUniqueOneHandAxe7", "MovementVelocityUniqueOneHandSword9", "MovementVelocityUniqueTwoHandSword1", "MovementVelocityUniqueTwoHandSword3", "MovementVelocityUnique__1", "MovementVelocityUnique__10", "MovementVelocityUnique__11", "MovementVelocityUnique__12", "MovementVelocityUnique__13", "MovementVelocityUnique__14", "MovementVelocityUnique__15", "MovementVelocityUnique__16", "MovementVelocityUnique__17__", "MovementVelocityUnique__18", "MovementVelocityUnique__20_", "MovementVelocityUnique__22", "MovementVelocityUnique__24", "MovementVelocityUnique__25", "MovementVelocityUnique__26", "MovementVelocityUnique__27", "MovementVelocityUnique__29", "MovementVelocityUnique__3", "MovementVelocityUnique__30", "MovementVelocityUnique__31", "MovementVelocityUnique__34", "MovementVelocityUnique__35", "MovementVelocityUnique__37", "MovementVelocityUnique__4", "MovementVelocityUnique__40", "MovementVelocityUnique__42", "MovementVelocityUnique__43", "MovementVelocityUnique__45", "MovementVelocityUnique__47_", "MovementVelocityUnique__48", "MovementVelocityUnique__49", "MovementVelocityUnique__50", "MovementVelocityUnique__54", "MovementVelocityUnique__58", "MovementVelocityUnique__7", "MovementVelocityUnique__8", "MovementVelocityUnique___5", "MovementVelocityUnique___6", "MovementVeolcityUniqueBootsDemigods1", "MovementVeolcityUniqueBootsDex4", }, + ["#% increased movement speed"] = { "DivergentMovementVelocityUniqueHelmetStrDex2", "DivergentMovementVelocityUnique___6", "JewelImplicitMovementSpeed", "MovementSpeedUnique_42", "MovementVelocityDescent2Boots1", "MovementVelocityImplicitArmour1", "MovementVelocityImplicitShield1", "MovementVelocityImplicitShield2", "MovementVelocityImplicitShield3", "MovementVelocityMarakethBowImplicit1", "MovementVelocityMarakethBowImplicit2", "MovementVelocityUniqueAmulet5", "MovementVelocityUniqueBodyDex4", "MovementVelocityUniqueBodyDex5", "MovementVelocityUniqueBodyDex7", "MovementVelocityUniqueBodyStrDex5_", "MovementVelocityUniqueBootsA1", "MovementVelocityUniqueBootsDex1", "MovementVelocityUniqueBootsDex2", "MovementVelocityUniqueBootsDex7", "MovementVelocityUniqueBootsDex8", "MovementVelocityUniqueBootsDexInt1", "MovementVelocityUniqueBootsDexInt2", "MovementVelocityUniqueBootsDexInt4", "MovementVelocityUniqueBootsInt2", "MovementVelocityUniqueBootsInt5", "MovementVelocityUniqueBootsInt6", "MovementVelocityUniqueBootsStr1", "MovementVelocityUniqueBootsStr3", "MovementVelocityUniqueBootsStrDex1", "MovementVelocityUniqueBootsStrDex3", "MovementVelocityUniqueBootsStrDex4", "MovementVelocityUniqueBootsStrDex5", "MovementVelocityUniqueBootsStrInt2_", "MovementVelocityUniqueBootsStrInt3", "MovementVelocityUniqueBootsW1", "MovementVelocityUniqueBow7", "MovementVelocityUniqueClaw3", "MovementVelocityUniqueHelmetDex6", "MovementVelocityUniqueHelmetInt6", "MovementVelocityUniqueHelmetStrDex1", "MovementVelocityUniqueHelmetStrDex2", "MovementVelocityUniqueIntHelmet2", "MovementVelocityUniqueJewel43", "MovementVelocityUniqueOneHandAxe3", "MovementVelocityUniqueOneHandAxe7", "MovementVelocityUniqueOneHandSword9", "MovementVelocityUniqueTwoHandSword1", "MovementVelocityUniqueTwoHandSword3", "MovementVelocityUnique__1", "MovementVelocityUnique__10", "MovementVelocityUnique__11", "MovementVelocityUnique__12", "MovementVelocityUnique__13", "MovementVelocityUnique__14", "MovementVelocityUnique__15", "MovementVelocityUnique__16", "MovementVelocityUnique__17__", "MovementVelocityUnique__18", "MovementVelocityUnique__20_", "MovementVelocityUnique__24", "MovementVelocityUnique__25", "MovementVelocityUnique__26", "MovementVelocityUnique__27", "MovementVelocityUnique__29", "MovementVelocityUnique__3", "MovementVelocityUnique__30", "MovementVelocityUnique__31", "MovementVelocityUnique__34", "MovementVelocityUnique__35", "MovementVelocityUnique__37", "MovementVelocityUnique__4", "MovementVelocityUnique__40", "MovementVelocityUnique__42", "MovementVelocityUnique__43", "MovementVelocityUnique__45", "MovementVelocityUnique__47_", "MovementVelocityUnique__48", "MovementVelocityUnique__49", "MovementVelocityUnique__50", "MovementVelocityUnique__54", "MovementVelocityUnique__58", "MovementVelocityUnique__7", "MovementVelocityUnique__8", "MovementVelocityUnique___5", "MovementVelocityUnique___6", "MovementVeolcityUniqueBootsDemigods1", "MovementVeolcityUniqueBootsDex4", "TalismanEnchantMovementVelocity", }, ["#% increased movement speed during any flask effect"] = { "MovementSpeedDuringFlaskEffectUnique__1", }, ["#% increased movement speed for # seconds on throwing a trap"] = { "MovementSpeedOnTrapThrowUniqueBootsDex6", "MovementSpeedOnTrapThrowUnique__1", }, - ["#% increased movement speed for each poison on you up to a maximum of #%"] = { "MovementSpeedPerPoisonOnSelfUnique__1_", }, + ["#% increased movement speed for each poison on you up to a maximum of #%"] = { "DivergentMovementSpeedPerPoisonOnSelfUnique__1", "MovementSpeedPerPoisonOnSelfUnique__1_", }, ["#% increased movement speed for you and nearby allies"] = { "NearbyAlliesMovementVelocityUnique__1", }, ["#% increased movement speed if you have used a vaal skill recently"] = { "MovementVelocityIfVaalSkillUsedRecentlyUnique__1_", }, ["#% increased movement speed if you've hit an enemy recently"] = { "MovementSpeedIfHitRecentlyUnique__1_", }, @@ -499,17 +537,17 @@ return { ["#% increased movement speed if you've warcried recently"] = { "MovementSpeedIfUsedWarcryRecentlyUnique_1", "MovementSpeedIfUsedWarcryRecentlyUnique__2", }, ["#% increased movement speed on shocked ground"] = { "MovementVelocityOnShockedGroundUniqueBootsInt6_", }, ["#% increased movement speed per # dexterity on allocated passives in radius"] = { "MovementSpeedPerAllocatedDexterityJewelUnique__1", "MovementSpeedPerAllocatedDexterityUnique__1", "MovementSpeedPerAllocatedDexterityUnique__2", }, - ["#% increased movement speed per # evasion rating, up to #%"] = { "MovementVelicityPerEvasionUniqueBodyDex6", }, + ["#% increased movement speed per # evasion rating, up to #%"] = { "DivergentMovementVelocityPerEvasionLesserUnique__1", "MovementVelicityPerEvasionUniqueBodyDex6", }, ["#% increased movement speed per endurance charge"] = { "ChargeBonusMovementVelocityPerEnduranceCharge", }, - ["#% increased movement speed per frenzy charge"] = { "ChargeBonusMovementVelocityPerFrenzyCharge", "MovementVelocityPerFrenzyChargeUniqueBodyDexInt3", "MovementVelocityPerFrenzyChargeUniqueBootsDex4", "MovementVelocityPerFrenzyChargeUniqueBootsStrDex2", "MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_", "MovementVelocityPerFrenzyChargeUnique__1", "MovementVelocityPerFrenzyChargeUnique__2", }, + ["#% increased movement speed per frenzy charge"] = { "ChargeBonusMovementVelocityPerFrenzyCharge", "DivergentMovementVelocityPerFrenzyChargeUniqueBootsDex4", "DivergentMovementVelocityPerFrenzyChargeUnique__2", "MovementVelocityPerFrenzyChargeUniqueBodyDexInt3", "MovementVelocityPerFrenzyChargeUniqueBootsDex4", "MovementVelocityPerFrenzyChargeUniqueBootsStrDex2", "MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_", "MovementVelocityPerFrenzyChargeUnique__1", "MovementVelocityPerFrenzyChargeUnique__2", }, ["#% increased movement speed per power charge"] = { "ChargeBonusMovementVelocityPerPowerCharge", "MovementVelocityPerPowerChargeUnique__1__", }, - ["#% increased movement speed when on full life"] = { "MovementVelocityOnFullLifeUniqueAmulet13", "MovementVelocityOnFullLifeUniqueBootsInt3", "MovementVelocityOnFullLifeUniqueTwoHandAxe2", "MovementVelocityOnFullLifeUnique__1", }, + ["#% increased movement speed when on full life"] = { "DivergentMovementVelocityOnFullLifeUniqueBootsInt3", "MovementVelocityOnFullLifeUniqueAmulet13", "MovementVelocityOnFullLifeUniqueBootsInt3", "MovementVelocityOnFullLifeUniqueTwoHandAxe2", "MovementVelocityOnFullLifeUnique__1", }, ["#% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueBootsDex3", "MovementVelocityOnLowLifeUniqueGlovesDexInt1", "MovementVelocityOnLowLifeUniqueRapier1", "MovementVelocityOnLowLifeUniqueShieldStrInt5", }, ["#% increased movement speed while bleeding"] = { "MovementVelocityWhileBleedingUnique__1", }, ["#% increased movement speed while cursed"] = { "IncreasedMovementVelictyWhileCursedUniqueOneHandSword4", }, ["#% increased movement speed while fortified"] = { "MovementSpeedWhileFortifiedUber1", }, ["#% increased movement speed while ignited"] = { "MovementVelocityWhileIgnitedUnique__1", }, - ["#% increased movement speed while on full energy shield"] = { "MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8", }, + ["#% increased movement speed while on full energy shield"] = { "DivergentMovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8", "MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8", }, ["#% increased movement speed while phasing"] = { "MovementSpeedWhilePhasedUnique__1", "MovementSpeedWhilePhasedUnique__2", }, ["#% increased movement speed while shocked"] = { "MovementVelocityWhileShockedUniqueBelt12", }, ["#% increased movement speed while you have cat's stealth"] = { "MovementSpeedWithCatsStealthUnique__1", }, @@ -525,17 +563,18 @@ return { ["#% increased physical damage with claws"] = { "ClawBonus1", }, ["#% increased physical damage with daggers"] = { "DaggerBonus1", }, ["#% increased physical damage with maces or sceptres"] = { "MaceBonus1", }, + ["#% increased physical damage with ranged weapons"] = { "DivergentRangedWeaponPhysicalDamagePlusPercentUnique__1", }, ["#% increased physical damage with staves"] = { "StaffBonus1", }, ["#% increased physical damage with swords"] = { "SwordBonus1", }, ["#% increased physical damage with wands"] = { "WandBonus1", }, ["#% increased physical weapon damage per # strength"] = { "IncreasedAreaOfEffectPerIntelligence", }, ["#% increased poison duration per power charge"] = { "PoisonDurationPerPowerChargeUnique__1", }, ["#% increased power charge duration"] = { "IncreasedPowerChargeDurationUniqueWand3", "JewelImplicitPowerChargeDuration", }, - ["#% increased projectile attack damage per # accuracy rating"] = { "IncreaseProjectileAttackDamagePerAccuracyUnique__1", }, - ["#% increased projectile damage"] = { "IncreasedProjectileDamageUnique__5", "IncreasedProjectileDamageUnique__6", "ProjectileDamageJewelUniqueJewel41", }, + ["#% increased projectile attack damage per # accuracy rating"] = { "DivergentIncreaseProjectileAttackDamagePerAccuracyUnique__1", "IncreaseProjectileAttackDamagePerAccuracyUnique__1", }, + ["#% increased projectile damage"] = { "DivergentIncreasedProjectileDamageUniqueBootsDexInt4", "IncreasedProjectileDamageUnique__5", "IncreasedProjectileDamageUnique__6", "ProjectileDamageJewelUniqueJewel41", }, ["#% increased projectile damage per # dexterity from allocated passives in radius"] = { "ExtraArrowForSplitArrowUniqueJewel60", }, ["#% increased projectile damage per power charge"] = { "ProjectileDamagePerPowerChargeUniqueAmulet15", }, - ["#% increased projectile speed"] = { "ProjectileSpeedUniqueAmulet5", "ProjectileSpeedUnique__2", "ProjectileSpeedUnique__5__", "ProjectileSpeedUnique___1", }, + ["#% increased projectile speed"] = { "DivergentProjectileSpeedUnique__8", "DivergentProjectileSpeedUnique___1", "ProjectileSpeedUniqueAmulet5", "ProjectileSpeedUnique__2", "ProjectileSpeedUnique__5__", "ProjectileSpeedUnique___1", "TalismanEnchantProjectileSpeed", }, ["#% increased projectile speed per frenzy charge"] = { "ProjectileSpeedPerFrenzyChargeUniqueAmulet15", }, ["#% increased quantity of fish caught"] = { "FishingQuantityUnique__2", }, ["#% increased quantity of gold dropped by slain enemies"] = { "VillageIncreasedGold", }, @@ -546,26 +585,28 @@ return { ["#% increased rarity of fish caught"] = { "FishingRarityUnique__1", }, ["#% increased rarity of items dropped by frozen enemies"] = { "IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4", "IncreasedRarityWhenSlayingFrozenUnique__1", }, ["#% increased rarity of items dropped by slain shocked enemies"] = { "ItemRarityWhenShockedUniqueBow9", }, - ["#% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueAmulet6", "ItemFoundRarityIncreaseUniqueBodyStr5", "ItemFoundRarityIncreaseUniqueHelmetDex3", "ItemFoundRarityIncreaseUnique__1", "ItemFoundRarityIncreaseUnique__2", }, + ["#% increased rarity of items found"] = { "DivergentIncreasedItemRarityUniqueShieldStrDex2", "DivergentItemFoundRarityIncreaseUniqueBodyStr5", "DivergentItemFoundRarityIncreaseUniqueGlovesStrDex2", "DivergentItemFoundRarityIncreaseUnique__10", "DivergentItemFoundRarityIncreaseUnique__7", "ItemFoundRarityIncreaseUniqueAmulet6", "ItemFoundRarityIncreaseUniqueBodyStr5", "ItemFoundRarityIncreaseUniqueHelmetDex3", "ItemFoundRarityIncreaseUnique__1", "ItemFoundRarityIncreaseUnique__2", }, ["#% increased rarity of items found per # rampage kills"] = { "IncreasedRarityPerRampageStacksUnique__1", }, - ["#% increased rarity of items found when on low life"] = { "ItemRarityOnLowLifeUniqueBootsInt1", }, + ["#% increased rarity of items found when on low life"] = { "DivergentItemRarityOnLowLifeUniqueBootsInt1", "ItemRarityOnLowLifeUniqueBootsInt1", }, ["#% increased recovery rate of life and energy shield per power charge"] = { "LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1", }, ["#% increased reservation efficiency of skills"] = { "ReducedManaReservationCostUnique__1", "ReservationEfficiencyUnique__3__", }, ["#% increased scorching ray beam length"] = { "FireBeamLengthUnique__1", }, ["#% increased shock duration on enemies"] = { "ShockDurationUnique__1", "ShockDurationUnique__3", }, ["#% increased shock duration on you"] = { "SelfShockDurationUniqueBelt12_", "SelfShockDurationUnique__1", "SelfShockDurationUnique__2", }, ["#% increased skill effect duration"] = { "SkillEffectDurationUniqueJewel44", "SkillEffectDurationUniqueTwoHandMace5", "SkillEffectDurationUnique__3", }, - ["#% increased spell critical strike chance per # player maximum life"] = { "SpellCriticalStrikeChancePerLifeUnique__1", }, - ["#% increased spell damage"] = { "SpellDamageUniqueDescentWand1", "SpellDamageUniqueGlovesInt2", "SpellDamageUnique__3", }, + ["#% increased spell critical strike chance"] = { "DivergentSpellCriticalStrikeChanceUniqueBootsStrDex5", }, + ["#% increased spell critical strike chance per # player maximum life"] = { "DivergentSpellCriticalStrikeChancePerLifeUnique__1", "SpellCriticalStrikeChancePerLifeUnique__1", }, + ["#% increased spell critical strike chance per raised spectre"] = { "DivergentSpellCriticalStrikeChancePerSpectreUnique__1_", }, + ["#% increased spell damage"] = { "DivergentSpellDamageUniqueGlovesInt2", "SpellDamageUniqueDescentWand1", "SpellDamageUniqueGlovesInt2", "SpellDamageUnique__3", }, ["#% increased spell damage if you've dealt a critical strike in the past # seconds"] = { "SpellDamageIfYouHaveCritRecentlyUnique__1", }, ["#% increased spell damage per # intelligence"] = { "SpellDamagePerIntelligenceUniqueStaff12", }, ["#% increased spell damage per # player maximum life"] = { "SpellDamagePerLifeUnique__1", }, ["#% increased spell damage per #% chance to block attack damage"] = { "IncreasedSpellDamagePerBlockChanceUniqueClaw7", }, ["#% increased spell damage per level"] = { "SpellDamageIncreasedPerLevelUniqueSceptre8", }, - ["#% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueWand3", }, + ["#% increased spell damage per power charge"] = { "DivergentIncreasedSpellDamagePerPowerChargeUnique__1", }, ["#% increased spell damage taken when on low mana"] = { "SpellDamageTakenOnLowManaUniqueBodyInt4", }, ["#% increased spell damage while shocked"] = { "IncreasedSpellDamageWhileShockedUnique__1", }, - ["#% increased strength"] = { "PercentageStrengthImplicitMace1", "PercentageStrengthUnique__3", }, + ["#% increased strength"] = { "DivergentPercentageStrengthUniqueHelmetStrDex6", "PercentageStrengthImplicitMace1", "PercentageStrengthUnique__3", }, ["#% increased strength requirement"] = { "IncreasedStrengthREquirementsUniqueGlovesStrInt4", "IncreasedStrengthRequirementUniqueStaff8", "IncreasedStrengthRequirementsUniqueTwoHandSword4", }, ["#% increased stun and block recovery"] = { "IncreasedStunRecoveryReducedStunThresholdImplicitR1", "IncreasedStunRecoveryReducedStunThresholdImplicitR2", "IncreasedStunRecoveryReducedStunThresholdImplicitR3", "StunRecoveryUniqueAmulet18", "StunRecoveryUniqueBootsStrDex1", "StunRecoveryUniqueBootsStrDex3", "StunRecoveryUniqueClaw8", "StunRecoveryUniqueHelmetInt6", "StunRecoveryUniqueQuiver4", "StunRecoveryUnique__1_", "StunRecoveryUnique__5", }, ["#% increased stun duration on enemies"] = { "StunDurationImplicitMace1", "StunDurationImplicitMace2", "StunDurationUniqueGlovesDexInt3", "StunDurationUniqueGlovesInt4_", "StunDurationUniqueTwoHandSword5", }, @@ -573,21 +614,24 @@ return { ["#% increased stun duration per # strength"] = { "StunDurationPerStrengthUber1", }, ["#% increased stun threshold"] = { "IncreasedStunThresholdUnique__1_", }, ["#% increased taunt duration"] = { "IncreasedTauntDurationUniqueShieldStr4", }, - ["#% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUniqueBodyStrDex4", "IncreasedLifeLeechRateUnique__1", "JewelImplicitLifeLeechRate", }, + ["#% increased total recovery per second from life leech"] = { "DivergentIncreasedLifeLeechRateUniqueBodyStrDex4", "IncreasedLifeLeechRateUniqueBodyStrDex4", "IncreasedLifeLeechRateUnique__1", "JewelImplicitLifeLeechRate", }, ["#% increased total recovery per second from life, mana, or energy shield leech"] = { "IncreasedLifeLeechRateUniqueAmulet20", "LifeManaESLeechRateUnique__1", }, ["#% increased total recovery per second from mana leech"] = { "JewelImplicitManaLeechRate", }, ["#% increased totem damage"] = { "TotemDamageUnique__1_", }, ["#% increased totem damage per # devotion"] = { "TotemDamagePerDevotion", }, ["#% increased totem life per # strength allocated in radius"] = { "TotemLifePerStrengthUniqueJewel15", }, + ["#% increased trap throwing speed"] = { "DivergentTrapThrowSpeedUniqueBootsDex6", }, + ["#% increased valour gained"] = { "DivergentBannerResourceGainedUnique__1", }, ["#% increased warcry buff effect"] = { "WarcryEffectUnique__1", "WarcryEffectUnique__2", }, - ["#% increased warcry cooldown recovery rate"] = { "WarcryCooldownSpeedUnique__1", "WarcryCooldownSpeedUnique__2", }, + ["#% increased warcry cooldown recovery rate"] = { "DivergentWarcryCooldownSpeedUnique__1", "DivergentWarcryCooldownSpeedUnique__2", "WarcryCooldownSpeedUnique__1", "WarcryCooldownSpeedUnique__2", }, + ["#% increased warcry speed"] = { "DivergentWarcrySpeedUnique__1", }, ["#% less animate weapon duration"] = { "AnimateWeaponDurationUniqueTwoHandMace8", }, ["#% less attack speed"] = { "RingAttackSpeedUnique__1", }, ["#% less burning damage"] = { "EmberwakeLessBurningDamageUnique__1", }, ["#% less critical strike chance"] = { "LessCriticalStrikeChanceAmulet17", }, ["#% less damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow4", }, ["#% less damage taken if you have not been hit recently"] = { "ReducedDamageIfNotHitRecentlyUnique__1", }, - ["#% less damage taken per # rage, up to a maximum of #%"] = { "DamageTakenPer5RageCappedAt50PercentUnique_1", }, + ["#% less damage taken per # rage, up to a maximum of #%"] = { "DamageTakenPer5RageCappedAt50PercentUnique_1", "DivergentDamageTakenPer5RageCappedAt50PercentUnique_1", }, ["#% less duration of ignites you inflict"] = { "IgniteDurationEmberglowUnique__1", }, ["#% less effect of your curses"] = { "DoedresSkinLessCurseEffectUnique__1", }, ["#% less elemental damage taken per raised zombie"] = { "ElementalDamageTakenPerZombieUnique__1", }, @@ -602,6 +646,9 @@ return { ["#% more damage with arrow hits at close range while you have iron reflexes"] = { "ArborixMoreDamageAtCloseRangeUnique__1", }, ["#% more global accuracy rating"] = { "AccuracyRatingIsDoubledUber1", }, ["#% more life"] = { "MetamorphosisItemisedBossDifficult", }, + ["#% more physical damage with unarmed melee attacks"] = { "DivergentFacebreakerUnarmedMoreDamage", }, + ["#% of armour also applies to chaos damage taken from hits"] = { "DivergentArmourAppliesToChaosDamagePercentUnique__1", }, + ["#% of armour also applies to lightning damage taken from hits"] = { "DivergentArmourAppliesToLightningDamagePercentUnique__1", }, ["#% of attack damage leeched as life"] = { "LifeLeechAllAttackDamagePermyriadImplicitClaw2", "LifeLeechFromAttacksPermyriadUnique__1", "LifeLeechPermyriadUniqueBodyStr3", "LifeLeechPermyriadUniqueBodyStrDex3", }, ["#% of attack damage leeched as life against bleeding enemies"] = { "AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1", "LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8", }, ["#% of attack damage leeched as life against chilled enemies"] = { "LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14", "LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14", }, @@ -612,19 +659,22 @@ return { ["#% of attack damage leeched as mana"] = { "ManaLeechPermyriadStrDexHelmet1", "ManaLeechPermyriadUniqueGlovesDexInt6", }, ["#% of attack damage leeched as mana against poisoned enemies"] = { "AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1", "AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2", }, ["#% of attack damage leeched as mana per power charge"] = { "ManaLeechPermyriadPerPowerChargeUniqueBelt5_", }, + ["#% of chaos damage is taken from mana before life"] = { "DivergentChaosDamageRemovedFromManaBeforeLifeUnique__1___", }, ["#% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8", "ChaosDamageLifeLeechPermyriadUnique__1", "ChaosDamageLifeLeechPermyriadUnique__2", }, ["#% of chaos damage leeched as life during effect"] = { "ChaosDamageLifeLeechPerMyriadWhileUsingFlaskUniqueFlask5", "ChaosDamageLifeLeechPermyriadWhileUsingFlaskUniqueFlask5New", }, - ["#% of chaos damage taken does not bypass energy shield"] = { "ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1", }, + ["#% of chaos damage taken does not bypass energy shield"] = { "ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1", "DivergentChaosDamageDoesNotBypassEnergyShieldPercentUnique__2", }, + ["#% of cold and lightning damage from hits taken as fire damage"] = { "TalismanEnchantColdAndLightningDamageTakenAsFire", }, ["#% of cold damage converted to fire damage"] = { "ConvertColdToFireUniqueRing15", }, ["#% of cold damage from hits taken as fire damage"] = { "TalismanColdTakenAsFire", }, ["#% of cold damage from hits taken as lightning damage"] = { "TalismanColdTakenAsLightning", }, ["#% of cold damage leeched as life"] = { "ColdDamageLifeLeechCorrupted_", "ColdDamageLifeLeechPerMyriadUniqueBelt9b", "ColdDamageLifeLeechPermyriadUniqueBelt9bNew", }, - ["#% of cold damage taken as lightning damage"] = { "ColdHitAndDoTDamageTakenAsLightningUnique__1", }, + ["#% of cold damage taken as lightning damage"] = { "ColdHitAndDoTDamageTakenAsLightningUnique__1", "DivergentColdHitAndDoTDamageTakenAsLightningUnique__1", }, ["#% of damage against frozen enemies leeched as life"] = { "LifeLeechOnFrozenEnemiesUniqueRing19", "LifeLeechPermyriadOnFrozenEnemiesUnique__1", }, ["#% of damage against shocked enemies leeched as mana"] = { "ManaLeechOnShockedEnemiesUniqueRing19", }, - ["#% of damage dealt by your mines is leeched to you as life"] = { "MineDamageLeechedToYouUnique__1", }, - ["#% of damage dealt by your totems is leeched to you as life"] = { "TotemLeechLifeToYouUnique__1", }, - ["#% of damage from hits is taken from marked target's life before you"] = { "DamageTakenFromMarkedTargetUnique__1", }, + ["#% of damage dealt by your mines is leeched to you as life"] = { "DivergentMineDamageLeechedToYouUnique__1", "MineDamageLeechedToYouUnique__1", }, + ["#% of damage dealt by your totems is leeched to you as life"] = { "DivergentTotemLeechLifeToYouUnique__1", "TotemLeechLifeToYouUnique__1", }, + ["#% of damage from hits is taken from marked target's life before you"] = { "DamageTakenFromMarkedTargetUnique__1", "DivergentDamageTakenFromMarkedTargetUnique__1", }, + ["#% of damage from hits is taken from your nearest totem's life before you"] = { "DivergentDamageTakenFromTotemLifeBeforePlayerUnique__1", }, ["#% of damage from hits is taken from your raised spectres' life before you"] = { "DamageRemovedFromSpectresUnique__1", }, ["#% of damage is taken from mana before life"] = { "DamageRemovedFromManaBeforeLifeTestMod", }, ["#% of damage is taken from mana before life per power charge"] = { "DamageTakeFromManaBeforeLifePerPowerChargeUnique__1", }, @@ -640,17 +690,17 @@ return { ["#% of damage taken bypasses ward"] = { "DamageBypassesWardPercentUnique__1", }, ["#% of damage taken from stunning hits is recovered as energy shield"] = { "StunningHitsRecoverEnergyShieldUnique__1", }, ["#% of damage taken recouped as mana"] = { "JewelImplicitDamageTakenGainedAsMana", "PercentDamageGoesToManaUnique__1", }, - ["#% of damage you reflect to enemies when hit is leeched as life"] = { "DamageYouReflectGainedAsLifeUniqueHelmetDexInt6", "DamageYouReflectGainedAsLifeUnique__1", }, - ["#% of elemental damage from hits taken as chaos damage"] = { "ElementalDamageTakenAsChaosUniqueBodyStrInt5", }, - ["#% of elemental damage from hits taken as physical damage"] = { "ElementalDamageTakenAsPhysicalUnique__1", }, + ["#% of damage you reflect to enemies when hit is leeched as life"] = { "DamageYouReflectGainedAsLifeUniqueHelmetDexInt6", "DamageYouReflectGainedAsLifeUnique__1", "DivergentDamageYouReflectGainedAsLifeUniqueHelmetDexInt6", }, + ["#% of elemental damage from hits taken as chaos damage"] = { "DivergentElementalDamageTakenAsChaosUniqueBodyStrInt5", "ElementalDamageTakenAsChaosUniqueBodyStrInt5", }, + ["#% of elemental damage from hits taken as physical damage"] = { "DivergentElementalDamageTakenAsPhysicalUnique__1", "ElementalDamageTakenAsPhysicalUnique__1", }, ["#% of elemental damage leeched as life"] = { "ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_", "ElementalDamageLeechedAsLifeUniqueSceptre7", }, - ["#% of fire damage converted to chaos damage"] = { "ConvertFireToChaosUniqueBodyInt4", "ConvertFireToChaosUniqueBodyInt4Updated", "ConvertFireToChaosUniqueDagger10", "ConvertFireToChaosUniqueDagger10Updated", }, + ["#% of fire damage converted to chaos damage"] = { "ConvertFireToChaosUniqueBodyInt4", "ConvertFireToChaosUniqueBodyInt4Updated", "ConvertFireToChaosUniqueDagger10", "ConvertFireToChaosUniqueDagger10Updated", "DivergentConvertFireToChaosUniqueBodyInt4Updated", }, ["#% of fire damage from hits taken as cold damage"] = { "FireDamageTakenAsColdUnique___1", "FireDamageTakenAsColdUnique___2_", "TalismanFireTakenAsCold", }, ["#% of fire damage from hits taken as lightning damage"] = { "TalismanFireTakenAsLightning", }, - ["#% of fire damage from hits taken as physical damage"] = { "FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5", "FireDamageTakenConvertedToPhysicalUnique__1", }, + ["#% of fire damage from hits taken as physical damage"] = { "DivergentFireDamageTakenConvertedToPhysicalUnique__1", "FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5", "FireDamageTakenConvertedToPhysicalUnique__1", }, ["#% of fire damage leeched as life"] = { "FireDamageLifeLeechCorrupted", "FireDamageLifeLeechPerMyriadUniqueBelt9a_", "FireDamageLifeLeechPermyriadUniqueBelt9aNew", }, ["#% of fire damage leeched as life while ignited"] = { "FireDamageLeechedAsLifeWhileIgnitedUnique__1", }, - ["#% of fire damage taken as lightning damage"] = { "FireHitAndDoTDamageTakenAsLightningUnique__1", }, + ["#% of fire damage taken as lightning damage"] = { "DivergentFireHitAndDoTDamageTakenAsLightningUnique__1", "FireHitAndDoTDamageTakenAsLightningUnique__1", }, ["#% of fire damage taken causes extra physical damage"] = { "FireDamageTakenCausesExtraPhysicalDamageUniqueBodyStrDex5", }, ["#% of leech from hits with this weapon is instant per enemy power"] = { "LeechInstantMonsterPowerUnique__1", }, ["#% of life leech applies to enemies as chaos damage"] = { "EnemiesLoseLifePlayerLeechesUnique__1", }, @@ -665,22 +715,22 @@ return { ["#% of lightning damage leeched as mana"] = { "ManaLeechFromLightningDamageUniqueStaff8", "ManaLeechPermyriadFromLightningDamageUniqueStaff8", }, ["#% of lightning damage leeched as mana during effect"] = { "LightningManaLeechDuringFlaskEffect__1", }, ["#% of maximum energy shield taken as physical damage on minion death"] = { "PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_", }, - ["#% of maximum life converted to energy shield"] = { "MaximumLifeConvertedToEnergyShieldUnique__1", "MaximumLifeConvertedToEnergyShieldUnique__2", }, + ["#% of maximum life converted to energy shield"] = { "DivergentMaximumLifeConvertedToEnergyShieldUnique__2", "MaximumLifeConvertedToEnergyShieldUnique__1", "MaximumLifeConvertedToEnergyShieldUnique__2", }, ["#% of maximum life taken as chaos damage per second"] = { "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6", }, - ["#% of melee physical damage taken reflected to attacker"] = { "PhysicalDamageTakenPercentToReflectUniqueBodyStr2", }, + ["#% of melee physical damage taken reflected to attacker"] = { "DivergentPhysicalDamageTakenPercentToReflectUniqueBodyStr2", "PhysicalDamageTakenPercentToReflectUniqueBodyStr2", }, ["#% of non-chaos damage taken bypasses energy shield"] = { "NonChaosDamageBypassEnergyShieldPercentUnique__1", }, ["#% of physical attack damage leeched as life"] = { "LifeLeechImplicitClaw1", "LifeLeechImplicitClaw2", "LifeLeechLocalPermyriadUniqueOneHandMace8__", "LifeLeechLocalPermyriadUnique__1", "LifeLeechLocalUniqueOneHandMace8", "LifeLeechPermyriadImplicitClaw1", "LifeLeechPermyriadImplicitClaw2", "LifeLeechPermyriadUniqueBelt1", "LifeLeechPermyriadUniqueClaw3", "LifeLeechPermyriadUniqueClaw6", "LifeLeechPermyriadUniqueGlovesStrDex1", "LifeLeechPermyriadUniqueOneHandAxe6", "LifeLeechPermyriadUniqueRing2", "LifeLeechPermyriadUniqueShieldDex2", "LifeLeechPermyriadUniqueShieldDex5", "LifeLeechPermyriadUniqueTwoHandAxe4", "LifeLeechPermyriadUniqueTwoHandMace1", "LifeLeechPermyriadUnique__2", "LifeLeechPermyriadUnique__3", "LifeLeechPermyriadUnique__4", "LifeLeechPermyriadUnique__5", "LifeLeechPermyriad__1", "LifeLeechUniqueBelt1", "LifeLeechUniqueBodyStr3", "LifeLeechUniqueClaw3", "LifeLeechUniqueClaw6", "LifeLeechUniqueGlovesStrDex1", "LifeLeechUniqueOneHandAxe6", "LifeLeechUniqueRing2", "LifeLeechUniqueShieldDex2", "LifeLeechUniqueShieldDex5", "LifeLeechUniqueTwoHandAxe4", "LifeLeechUniqueTwoHandMace1", }, ["#% of physical attack damage leeched as life and mana"] = { "LifeAndManaLeechImplicitMarakethClaw1", }, ["#% of physical attack damage leeched as life per red socket"] = { "LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1", }, - ["#% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadLocalUnique__1", "ManaLeechPermyriadUniqueAmulet3", "ManaLeechPermyriadUniqueBelt1", "ManaLeechPermyriadUniqueBodyStr6", "ManaLeechPermyriadUniqueGlovesStrDex1", "ManaLeechPermyriadUniqueRing17", "ManaLeechPermyriadUniqueTwoHandMace4", "ManaLeechPermyriadUniqueTwoHandSword2", "ManaLeechPermyriadUnique__1", "ManaLeechPermyriadUnique__2", "ManaLeechStrDexHelmet1", "ManaLeechUniqueAmulet3", "ManaLeechUniqueBelt1", "ManaLeechUniqueBodyStr6", "ManaLeechUniqueGlovesDexInt6", "ManaLeechUniqueGlovesStrDex1", "ManaLeechUniqueRing17", "ManaLeechUniqueTwoHandMace4", "ManaLeechUniqueTwoHandSword2", }, + ["#% of physical attack damage leeched as mana"] = { "DivergentManaLeechPermyriadUniqueGlovesStrDex1", "ManaLeechPermyriadLocalUnique__1", "ManaLeechPermyriadUniqueAmulet3", "ManaLeechPermyriadUniqueBelt1", "ManaLeechPermyriadUniqueBodyStr6", "ManaLeechPermyriadUniqueGlovesStrDex1", "ManaLeechPermyriadUniqueRing17", "ManaLeechPermyriadUniqueTwoHandMace4", "ManaLeechPermyriadUniqueTwoHandSword2", "ManaLeechPermyriadUnique__1", "ManaLeechPermyriadUnique__2", "ManaLeechStrDexHelmet1", "ManaLeechUniqueAmulet3", "ManaLeechUniqueBelt1", "ManaLeechUniqueBodyStr6", "ManaLeechUniqueGlovesDexInt6", "ManaLeechUniqueGlovesStrDex1", "ManaLeechUniqueRing17", "ManaLeechUniqueTwoHandMace4", "ManaLeechUniqueTwoHandSword2", }, ["#% of physical attack damage leeched as mana during effect"] = { "FlaskBuffManaLeechWhileHealing", }, - ["#% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique", "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", }, + ["#% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique", }, ["#% of physical attack damage leeched as mana per power charge"] = { "ManaLeechPerPowerChargeUniqueBelt5", }, ["#% of physical damage converted to a random element"] = { "DamageConversionToRandomElementUnique__1", }, - ["#% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosBodyStrInt4", "PhysicalDamageConvertToChaosUniqueBow5", "PhysicalDamageConvertToChaosUnique__1", "PhysicalDamageConvertedToChaosUnique__1", "PhysicalDamageConvertedToChaosUnique__2", }, + ["#% of physical damage converted to chaos damage"] = { "DivergentPhysicalDamageConvertToChaosBodyStrInt4", "PhysicalDamageConvertToChaosBodyStrInt4", "PhysicalDamageConvertToChaosUniqueBow5", "PhysicalDamageConvertToChaosUnique__1", "PhysicalDamageConvertedToChaosUnique__1", "PhysicalDamageConvertedToChaosUnique__2", }, ["#% of physical damage converted to chaos damage per level"] = { "PhysicalDamageConvertedToChaosPerLevelUnique__1", }, - ["#% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUniqueGlovesDex1", "ConvertPhysicalToColdUniqueOneHandAxe8", "ConvertPhysicalToColdUnique__1", "ConvertPhysicalToColdUnique__2", }, - ["#% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueOneHandSword4", "ConvertPhysicalToFireUniqueQuiver1_", "ConvertPhysicalToFireUniqueShieldStr3", "ConvertPhysicalToFireUnique__1", "ConvertPhysicalToFireUnique__2_", "ConvertPhysicalToFireUnique__4", "DamageConversionFireUnique__1", }, + ["#% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUniqueGlovesDex1", "ConvertPhysicalToColdUniqueOneHandAxe8", "ConvertPhysicalToColdUnique__1", "ConvertPhysicalToColdUnique__2", "DivergentConvertPhysicalToColdUniqueGlovesDex1", }, + ["#% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueOneHandSword4", "ConvertPhysicalToFireUniqueQuiver1_", "ConvertPhysicalToFireUniqueShieldStr3", "ConvertPhysicalToFireUnique__1", "ConvertPhysicalToFireUnique__2_", "ConvertPhysicalToFireUnique__4", "DamageConversionFireUnique__1", "DivergentConvertPhysicalToFireUniqueShieldStr3", }, ["#% of physical damage converted to fire damage against ignited enemies"] = { "PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9", }, ["#% of physical damage converted to fire while you have avatar of fire"] = { "ConvertPhysicalToFireWithAvatarOfFireUnique__1", }, ["#% of physical damage converted to lightning damage"] = { "ConvertPhysicalToLightningUniqueOneHandAxe8", "ConvertPhysicaltoLightningUnique__1", "ConvertPhysicaltoLightningUnique__2", "ConvertPhysicaltoLightningUnique__3", "ConvertPhysicaltoLightningUnique__4", }, @@ -689,10 +739,10 @@ return { ["#% of physical damage from hits taken as cold damage"] = { "PhysicalDamageTakenAsColdUnique__1", }, ["#% of physical damage from hits taken as damage of a random element"] = { "PhysicalDamageTakenAsRandomElementUnique__1", }, ["#% of physical damage from hits taken as fire damage"] = { "PhysicalDamageTakenAsFirePercentUniqueBodyInt2", "PhysicalDamageTakenAsFirePercentUnique__1", }, - ["#% of physical damage from hits taken as lightning damage"] = { "PhysicalDamageTakenAsLightningDescentTwoHandSword1", "PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2", }, + ["#% of physical damage from hits taken as lightning damage"] = { "DivergentPhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2", "PhysicalDamageTakenAsLightningDescentTwoHandSword1", "PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2", }, ["#% of physical damage from hits with this weapon is converted to a random element"] = { "LocalDamageConversionToRandomElementImplicitE1", "LocalDamageConversionToRandomElementUnique__1", "LocalDamageConversionToRandomElementUnique__2_", }, ["#% of physical damage leeched as life"] = { "PhysicalDamageLifeLeechPerMyriadUniqueBelt9d", "PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew", }, - ["#% of physical damage taken as fire damage"] = { "PhysicalHitAndDoTDamageTakenAsFireUnique__2", }, + ["#% of physical damage taken as fire damage"] = { "DivergentPhysicalHitAndDoTDamageTakenAsFireUnique__2", "PhysicalHitAndDoTDamageTakenAsFireUnique__2", }, ["#% of spell damage leeched as energy shield for each curse on enemy"] = { "EnergyShieldLeechPerCurseUnique__1_", }, ["#% of spell damage leeched as life"] = { "SpellLifeLeechJewel", }, ["#% of spell damage leeched as life if equipped shield has at least #% chance to block"] = { "LifeLeechFromSpellsWith30BlockOnShieldUnique__1_", }, @@ -707,7 +757,7 @@ return { ["#% reduced bleeding duration"] = { "ReducedBleedDurationUnique__1_", }, ["#% reduced cast speed"] = { "IncreasedCastSpeedUniqueAmulet16", "ReducedCastSpeedUniqueBootsDex5", "ReducedCastSpeedUniqueHelmetInt8", "ReducedCastSpeedUniqueHelmetStrInt6", }, ["#% reduced chance to block attack and spell damage"] = { "ReducedChanceToBlockUnique__1", }, - ["#% reduced chaos damage taken over time"] = { "ChaosDamageOverTimeUnique__1", }, + ["#% reduced chaos damage taken over time"] = { "ChaosDamageOverTimeUnique__1", "DivergentChaosDamageOverTimeUnique__1", }, ["#% reduced character size"] = { "ActorSizeUniqueAmulet12", "ActorSizeUniqueHelmetDex6", }, ["#% reduced charges per use. #% to this value when used"] = { "HarvestFlaskEnchantmentChargesUsedLoweredOnUse4", }, ["#% reduced chill duration on you"] = { "ReducedChillDurationOnSelfUniqueRing30", }, @@ -719,7 +769,7 @@ return { ["#% reduced damage taken from projectile hits"] = { "ReducedProjectileDamageTakenUniqueAmulet12", }, ["#% reduced damage when on low life"] = { "ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4", }, ["#% reduced dexterity"] = { "PercentageDexterityUnique__1", }, - ["#% reduced duration"] = { "FlaskIncreasedDurationUnique__2", }, + ["#% reduced duration"] = { "FlaskEffectDurationUnique__8", "FlaskIncreasedDurationUnique__2", }, ["#% reduced duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__2", }, ["#% reduced duration of curses on you"] = { "ReducedSelfCurseDurationUniqueShieldDex3", }, ["#% reduced duration of curses on you per # devotion"] = { "CurseSelfDurationPerDevotion", }, @@ -834,7 +884,7 @@ return { ["(#)% chance to blind enemies on hit with attacks"] = { "AttacksBlindOnHitChanceUnique__2", }, ["(#)% chance to blind enemies on hit with spells"] = { "VillageSpellChanceToBlind", }, ["(#)% chance to block attack damage"] = { "BlockPercentUniqueAmulet16", "BlockPercentUniqueQuiver4", "BlockPercentUnique__1", "BlockPercentUnique__3", }, - ["(#)% chance to block spell damage"] = { "BlockingBlocksSpellsUnique__2", "SpellBlockPercentageUniqueAmulet1", "SpellBlockPercentageUniqueBootsInt5", "SpellBlockPercentageUniqueQuiver4", "SpellBlockPercentageUniqueShieldDex6", "SpellBlockPercentageUniqueShieldInt1", "SpellBlockPercentageUniqueShieldStrInt1", "SpellBlockPercentageUniqueTwoHandAxe6", "SpellBlockPercentageUnique__2", "SpellBlockPercentageUnique__3_", "SpellBlockPercentageUnique__4", "SpellBlockUniqueBootsInt5", "SpellBlockUniqueShieldInt1", "SpellBlockUniqueShieldStrInt1", }, + ["(#)% chance to block spell damage"] = { "BlockingBlocksSpellsUnique__2", "SpellBlockPercentageUniqueAmulet1", "SpellBlockPercentageUniqueBootsInt5", "SpellBlockPercentageUniqueQuiver4", "SpellBlockPercentageUniqueShieldDex6", "SpellBlockPercentageUniqueShieldInt1", "SpellBlockPercentageUniqueShieldInt18", "SpellBlockPercentageUniqueShieldStrInt1", "SpellBlockPercentageUniqueTwoHandAxe6", "SpellBlockPercentageUnique__2", "SpellBlockPercentageUnique__3_", "SpellBlockPercentageUnique__4", "SpellBlockUniqueBootsInt5", "SpellBlockUniqueShieldInt1", "SpellBlockUniqueShieldStrInt1", }, ["(#)% chance to chill attackers for # seconds on block"] = { "ChanceToChillAttackersOnBlockUnique__1", }, ["(#)% chance to cover enemies in ash on hit"] = { "VillageCoverInAshOnHit", }, ["(#)% chance to cover enemies in frost on hit"] = { "VillageCoverInFrostOnHit", }, @@ -843,9 +893,10 @@ return { ["(#)% chance to curse enemies with elemental weakness on hit"] = { "VillageCurseOnHitElementalWeakness", }, ["(#)% chance to curse you with punishment on kill"] = { "PunishmentSelfCurseOnKillUniqueCorruptedJewel13", }, ["(#)% chance to deal double damage if you've cast vulnerability in the past # seconds"] = { "VulnerabilityDoubleDamageUnique__1", }, - ["(#)% chance to freeze"] = { "ChanceToFreezeUniqueQuiver5", "VillageChanceToFreeze", "VillageChanceToFreezeTwoHand", }, + ["(#)% chance to freeze"] = { "ChanceToFreezeUniqueQuiver5", "ChanceToFreezeUniqueStaff2", "VillageChanceToFreeze", "VillageChanceToFreezeTwoHand", }, ["(#)% chance to freeze during any flask effect"] = { "FreezeChanceWhileUsingFlaskUniqueBelt9b", }, ["(#)% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUnique__1", "ChanceToFreezeShockIgniteUnique__2", "ChanceToFreezeShockIgniteUnique__3", "TalismanChanceToFreezeShockIgnite_", }, + ["(#)% chance to gain a flask charge when you deal a critical strike"] = { "FlaskChanceRechargeOnCritUnique__2", }, ["(#)% chance to gain a frenzy charge for each enemy you hit with a critical strike"] = { "FrenzyChargePerEnemyCritUnique__1", }, ["(#)% chance to gain a frenzy charge on critical strike at close range"] = { "FrenzyChargeOnCritCloseRangeUnique__1", }, ["(#)% chance to gain a frenzy charge on hit if # redeemer items are equipped"] = { "FrenzyChargeOnHitChance4RedeemerItemsUnique__1", }, @@ -897,15 +948,16 @@ return { ["(#)% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayImplicit1_", "ReducedEnergyShieldDelayUniqueDagger4", "ReducedEnergyShieldDelayUnique__1", }, ["(#)% increased amount recovered"] = { "FlaskIncreasedRecoveryAmountUniqueFlask4", "FlaskIncreasedRecoveryAmountUnique__1", "FlaskIncreasedRecoveryAmountUnique__2", }, ["(#)% increased area damage"] = { "AreaDamageUniqueBodyDexInt1", "AreaDamageUniqueOneHandMace7", }, - ["(#)% increased area of effect"] = { "AreaOfEffectUniqueBodyDexInt1", "AreaOfEffectUniqueOneHandMace7", "AreaOfEffectUnique_9", "AreaOfEffectUnique__10", "AreaOfEffectUnique__6", "AreaOfEffectUnique__8", "TalismanIncreasedAreaOfEffect", "UniqueSpecialCorruptionAreaOfEffect_", }, + ["(#)% increased area of effect"] = { "AreaOfEffectUniqueBodyDexInt1", "AreaOfEffectUniqueOneHandMace7", "AreaOfEffectUnique_9", "AreaOfEffectUnique__10", "AreaOfEffectUnique__2_", "AreaOfEffectUnique__6", "AreaOfEffectUnique__8", "TalismanIncreasedAreaOfEffect", "UniqueSpecialCorruptionAreaOfEffect_", }, ["(#)% increased area of effect during effect"] = { "FlaskIncreasedAreaOfEffectDuringEffectUnique__1_", }, ["(#)% increased area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__4", }, ["(#)% increased area of effect of aura skills"] = { "AuraIncreasedIncreasedAreaOfEffectUnique_2", "AuraIncreasedIncreasedAreaOfEffectUnique_3", "AuraIncreasedIncreasedAreaOfEffectUnique_4", "AuraIncreasedIncreasedAreaOfEffectUnique_5", "AuraIncreasedIncreasedAreaOfEffectUnique_6", "IncreasedAuraRadiusUniqueBodyDexInt4", "JewelImplicitAuraAreaOfEffect", }, + ["(#)% increased area of effect per red socket"] = { "AreaOfEffectPerRedSocketUnique__1", }, ["(#)% increased area of effect while in sand stance"] = { "AreaOfEffectSandStanceUnique__1", }, ["(#)% increased area of effect while unarmed"] = { "UnarmedAreaOfEffectUniqueJewel4", }, ["(#)% increased armour"] = { "GlobalPhysicalDamageReductionRatingPercentUnique__1", "GlobalPhysicalDamageReductionRatingPercentUnique__2", "IncreasedPhysicalDamageReductionRatingPercentUniqueJewel50", "IncreasedPhysicalDamageReductionRatingPercentUnique__1", "LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1", "LocalIncreasedArmourUniqueHelmetStrInt_2", "LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique6", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique7", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__17", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__30", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__32", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3", "LocalIncreasedPhysicalDamageReductionRatingUnique__2", }, ["(#)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1h", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt7", "LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1", "LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1", "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3", "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4", "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt5", "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt6", "LocalIncreasedArmourAndEnergyShieldUnique__1", "LocalIncreasedArmourAndEnergyShieldUnique__10_", "LocalIncreasedArmourAndEnergyShieldUnique__11", "LocalIncreasedArmourAndEnergyShieldUnique__12", "LocalIncreasedArmourAndEnergyShieldUnique__13_", "LocalIncreasedArmourAndEnergyShieldUnique__14", "LocalIncreasedArmourAndEnergyShieldUnique__15", "LocalIncreasedArmourAndEnergyShieldUnique__16", "LocalIncreasedArmourAndEnergyShieldUnique__17_", "LocalIncreasedArmourAndEnergyShieldUnique__18_", "LocalIncreasedArmourAndEnergyShieldUnique__2", "LocalIncreasedArmourAndEnergyShieldUnique__20", "LocalIncreasedArmourAndEnergyShieldUnique__21", "LocalIncreasedArmourAndEnergyShieldUnique__23_", "LocalIncreasedArmourAndEnergyShieldUnique__24", "LocalIncreasedArmourAndEnergyShieldUnique__25", "LocalIncreasedArmourAndEnergyShieldUnique__26", "LocalIncreasedArmourAndEnergyShieldUnique__27", "LocalIncreasedArmourAndEnergyShieldUnique__28", "LocalIncreasedArmourAndEnergyShieldUnique__3", "LocalIncreasedArmourAndEnergyShieldUnique__30", "LocalIncreasedArmourAndEnergyShieldUnique__5", "LocalIncreasedArmourAndEnergyShieldUnique__6", "LocalIncreasedArmourAndEnergyShieldUnique__7", "LocalIncreasedArmourAndEnergyShieldUnique__8", "LocalIncreasedArmourAndEnergyShieldUnique__9_", }, - ["(#)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3", "LocalIncreasedArmourAndEvasionRatingUnique__1", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex2", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex4", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex5", "LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b", "LocalIncreasedArmourAndEvasionUniqueBootsStrDex3", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex1", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex3", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex4", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex5", "LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1", "LocalIncreasedArmourAndEvasionUnique__1", "LocalIncreasedArmourAndEvasionUnique__10_", "LocalIncreasedArmourAndEvasionUnique__11", "LocalIncreasedArmourAndEvasionUnique__12", "LocalIncreasedArmourAndEvasionUnique__13", "LocalIncreasedArmourAndEvasionUnique__14", "LocalIncreasedArmourAndEvasionUnique__15_", "LocalIncreasedArmourAndEvasionUnique__16__", "LocalIncreasedArmourAndEvasionUnique__17_", "LocalIncreasedArmourAndEvasionUnique__18", "LocalIncreasedArmourAndEvasionUnique__19_", "LocalIncreasedArmourAndEvasionUnique__2", "LocalIncreasedArmourAndEvasionUnique__20", "LocalIncreasedArmourAndEvasionUnique__21", "LocalIncreasedArmourAndEvasionUnique__22", "LocalIncreasedArmourAndEvasionUnique__23", "LocalIncreasedArmourAndEvasionUnique__24", "LocalIncreasedArmourAndEvasionUnique__25", "LocalIncreasedArmourAndEvasionUnique__26", "LocalIncreasedArmourAndEvasionUnique__27", "LocalIncreasedArmourAndEvasionUnique__28", "LocalIncreasedArmourAndEvasionUnique__3_", "LocalIncreasedArmourAndEvasionUnique__4", "LocalIncreasedArmourAndEvasionUnique__5_", "LocalIncreasedArmourAndEvasionUnique__6", "LocalIncreasedArmourAndEvasionUnique__7", "LocalIncreasedArmourAndEvasionUnique__8_", "LocalIncreasedArmourAndEvasionUnique__9", }, + ["(#)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3", "LocalIncreasedArmourAndEvasionRatingUnique__1", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex2", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex4", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex5", "LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b", "LocalIncreasedArmourAndEvasionUniqueBootsStrDex3", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex1", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex3", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex4", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex5", "LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1", "LocalIncreasedArmourAndEvasionUnique__1", "LocalIncreasedArmourAndEvasionUnique__10_", "LocalIncreasedArmourAndEvasionUnique__11", "LocalIncreasedArmourAndEvasionUnique__12", "LocalIncreasedArmourAndEvasionUnique__13", "LocalIncreasedArmourAndEvasionUnique__14", "LocalIncreasedArmourAndEvasionUnique__15_", "LocalIncreasedArmourAndEvasionUnique__16__", "LocalIncreasedArmourAndEvasionUnique__17_", "LocalIncreasedArmourAndEvasionUnique__18", "LocalIncreasedArmourAndEvasionUnique__19_", "LocalIncreasedArmourAndEvasionUnique__2", "LocalIncreasedArmourAndEvasionUnique__20", "LocalIncreasedArmourAndEvasionUnique__21", "LocalIncreasedArmourAndEvasionUnique__22", "LocalIncreasedArmourAndEvasionUnique__23", "LocalIncreasedArmourAndEvasionUnique__24", "LocalIncreasedArmourAndEvasionUnique__25", "LocalIncreasedArmourAndEvasionUnique__26", "LocalIncreasedArmourAndEvasionUnique__27", "LocalIncreasedArmourAndEvasionUnique__28", "LocalIncreasedArmourAndEvasionUnique__29", "LocalIncreasedArmourAndEvasionUnique__3_", "LocalIncreasedArmourAndEvasionUnique__4", "LocalIncreasedArmourAndEvasionUnique__5_", "LocalIncreasedArmourAndEvasionUnique__6", "LocalIncreasedArmourAndEvasionUnique__7", "LocalIncreasedArmourAndEvasionUnique__8_", "LocalIncreasedArmourAndEvasionUnique__9", }, ["(#)% increased armour while bleeding"] = { "IncreasedArmourWhileBleedingUnique__1", }, ["(#)% increased armour, evasion and energy shield"] = { "LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i", "LocalIncreasedArmourEvasionEnergyShieldUnique__1_", }, ["(#)% increased aspect of the spider area of effect"] = { "AreaOfEffectAspectOfSpiderUnique__1", }, @@ -919,12 +971,13 @@ return { ["(#)% increased attack damage if you've been hit recently"] = { "AttackDamageIfHitRecentlyUnique", }, ["(#)% increased attack damage if your opposite ring is a shaper item"] = { "AttackDamageShaperItemUnique__1", }, ["(#)% increased attack damage while holding a shield"] = { "AttackDamageWhileHoldingShieldUnique__1", }, - ["(#)% increased attack speed"] = { "IncreasedAttackSpeedImplicitQuiver10New", "IncreasedAttackSpeedTransformedUnique__1", "IncreasedAttackSpeedUniqueAmulet20", "IncreasedAttackSpeedUniqueBodyStr3", "IncreasedAttackSpeedUniqueGlovesDemigods1", "IncreasedAttackSpeedUniqueGlovesDexInt_1", "IncreasedAttackSpeedUniqueGlovesStr1", "IncreasedAttackSpeedUniqueGlovesStrDex1", "IncreasedAttackSpeedUniqueGlovesStrDex5", "IncreasedAttackSpeedUniqueIntHelmet2", "IncreasedAttackSpeedUniqueQuiver10", "IncreasedAttackSpeedUniqueQuiver3", "IncreasedAttackSpeedUniqueQuiver5", "IncreasedAttackSpeedUniqueQuiver6", "IncreasedAttackSpeedUniqueQuiver7", "IncreasedAttackSpeedUniqueRing27", "IncreasedAttackSpeedUniqueRing37", "IncreasedAttackSpeedUniqueShieldDex6", "IncreasedAttackSpeedUniqueShieldDexInt2", "IncreasedAttackSpeedUniqueShieldInt5", "IncreasedAttackSpeedUnique_1", "IncreasedAttackSpeedUnique__2", "IncreasedAttackSpeedUnique__3_", "IncreasedAttackSpeedUnique__4_", "IncreasedAttackSpeedUnique__5", "IncreasedAttackSpeedUnique__6", "IncreasedAttackSpeedUnique__7", "IncreasedAttackSpeedUnique__8", "IncreasedAttackSpeedUnique__9", "LocalIncreasedAccuracyUnique__2", "LocalIncreasedAttackSpeedOneHandSword3", "LocalIncreasedAttackSpeedUniqueBow1", "LocalIncreasedAttackSpeedUniqueBow10", "LocalIncreasedAttackSpeedUniqueBow11", "LocalIncreasedAttackSpeedUniqueBow12", "LocalIncreasedAttackSpeedUniqueBow6", "LocalIncreasedAttackSpeedUniqueBow8", "LocalIncreasedAttackSpeedUniqueBow9", "LocalIncreasedAttackSpeedUniqueClaw1", "LocalIncreasedAttackSpeedUniqueClaw8", "LocalIncreasedAttackSpeedUniqueClaw9", "LocalIncreasedAttackSpeedUniqueOneHandAxe1", "LocalIncreasedAttackSpeedUniqueOneHandAxe2", "LocalIncreasedAttackSpeedUniqueOneHandAxe7", "LocalIncreasedAttackSpeedUniqueOneHandSword11", "LocalIncreasedAttackSpeedUniqueOneHandSword13_", "LocalIncreasedAttackSpeedUniqueOneHandSword6", "LocalIncreasedAttackSpeedUniqueOneHandSword7", "LocalIncreasedAttackSpeedUniqueOneHandSword8", "LocalIncreasedAttackSpeedUniqueOneHandSword9", "LocalIncreasedAttackSpeedUniqueSceptre1", "LocalIncreasedAttackSpeedUniqueSceptre7", "LocalIncreasedAttackSpeedUniqueSceptre9", "LocalIncreasedAttackSpeedUniqueStaff7", "LocalIncreasedAttackSpeedUniqueStaff9", "LocalIncreasedAttackSpeedUniqueTwoHandAxe7", "LocalIncreasedAttackSpeedUniqueTwoHandAxe9", "LocalIncreasedAttackSpeedUniqueTwoHandMace8_", "LocalIncreasedAttackSpeedUniqueTwoHandSword6", "LocalIncreasedAttackSpeedUniqueTwoHandSword8", "LocalIncreasedAttackSpeedUniqueWand6", "LocalIncreasedAttackSpeedUniqueWand9", "LocalIncreasedAttackSpeedUnique__1", "LocalIncreasedAttackSpeedUnique__10", "LocalIncreasedAttackSpeedUnique__11", "LocalIncreasedAttackSpeedUnique__12", "LocalIncreasedAttackSpeedUnique__13", "LocalIncreasedAttackSpeedUnique__14", "LocalIncreasedAttackSpeedUnique__15", "LocalIncreasedAttackSpeedUnique__16", "LocalIncreasedAttackSpeedUnique__17", "LocalIncreasedAttackSpeedUnique__18", "LocalIncreasedAttackSpeedUnique__19", "LocalIncreasedAttackSpeedUnique__2", "LocalIncreasedAttackSpeedUnique__20", "LocalIncreasedAttackSpeedUnique__21", "LocalIncreasedAttackSpeedUnique__22", "LocalIncreasedAttackSpeedUnique__23", "LocalIncreasedAttackSpeedUnique__24", "LocalIncreasedAttackSpeedUnique__25", "LocalIncreasedAttackSpeedUnique__26_", "LocalIncreasedAttackSpeedUnique__27", "LocalIncreasedAttackSpeedUnique__28", "LocalIncreasedAttackSpeedUnique__29", "LocalIncreasedAttackSpeedUnique__3", "LocalIncreasedAttackSpeedUnique__30", "LocalIncreasedAttackSpeedUnique__31", "LocalIncreasedAttackSpeedUnique__32", "LocalIncreasedAttackSpeedUnique__33", "LocalIncreasedAttackSpeedUnique__34", "LocalIncreasedAttackSpeedUnique__35", "LocalIncreasedAttackSpeedUnique__36", "LocalIncreasedAttackSpeedUnique__37___", "LocalIncreasedAttackSpeedUnique__39", "LocalIncreasedAttackSpeedUnique__4", "LocalIncreasedAttackSpeedUnique__40", "LocalIncreasedAttackSpeedUnique__42", "LocalIncreasedAttackSpeedUnique__43", "LocalIncreasedAttackSpeedUnique__44", "LocalIncreasedAttackSpeedUnique__45", "LocalIncreasedAttackSpeedUnique__5", "LocalIncreasedAttackSpeedUnique__6", "LocalIncreasedAttackSpeedUnique__7", "LocalIncreasedAttackSpeedUnique__8", "LocalIncreasedAttackSpeedUnique__9", "VillageLocalIncreasedAttackSpeed", }, + ["(#)% increased attack speed"] = { "IncreasedAttackSpeedImplicitQuiver10New", "IncreasedAttackSpeedTransformedUnique__1", "IncreasedAttackSpeedUniqueAmulet20", "IncreasedAttackSpeedUniqueBodyStr3", "IncreasedAttackSpeedUniqueGlovesDemigods1", "IncreasedAttackSpeedUniqueGlovesDexInt_1", "IncreasedAttackSpeedUniqueGlovesStr1", "IncreasedAttackSpeedUniqueGlovesStrDex1", "IncreasedAttackSpeedUniqueGlovesStrDex5", "IncreasedAttackSpeedUniqueIntHelmet2", "IncreasedAttackSpeedUniqueQuiver10", "IncreasedAttackSpeedUniqueQuiver3", "IncreasedAttackSpeedUniqueQuiver5", "IncreasedAttackSpeedUniqueQuiver6", "IncreasedAttackSpeedUniqueQuiver7", "IncreasedAttackSpeedUniqueRing27", "IncreasedAttackSpeedUniqueRing37", "IncreasedAttackSpeedUniqueShieldDex6", "IncreasedAttackSpeedUniqueShieldDexInt2", "IncreasedAttackSpeedUniqueShieldInt5", "IncreasedAttackSpeedUnique_1", "IncreasedAttackSpeedUnique__2", "IncreasedAttackSpeedUnique__3_", "IncreasedAttackSpeedUnique__4_", "IncreasedAttackSpeedUnique__5", "IncreasedAttackSpeedUnique__6", "IncreasedAttackSpeedUnique__7", "IncreasedAttackSpeedUnique__8", "IncreasedAttackSpeedUnique__9", "LocalIncreasedAccuracyUnique__2", "LocalIncreasedAttackSpeedOneHandSword3", "LocalIncreasedAttackSpeedUniqueBow1", "LocalIncreasedAttackSpeedUniqueBow10", "LocalIncreasedAttackSpeedUniqueBow11", "LocalIncreasedAttackSpeedUniqueBow12", "LocalIncreasedAttackSpeedUniqueBow6", "LocalIncreasedAttackSpeedUniqueBow8", "LocalIncreasedAttackSpeedUniqueBow9", "LocalIncreasedAttackSpeedUniqueClaw1", "LocalIncreasedAttackSpeedUniqueClaw8", "LocalIncreasedAttackSpeedUniqueClaw9", "LocalIncreasedAttackSpeedUniqueOneHandAxe1", "LocalIncreasedAttackSpeedUniqueOneHandAxe2", "LocalIncreasedAttackSpeedUniqueOneHandAxe7", "LocalIncreasedAttackSpeedUniqueOneHandSword11", "LocalIncreasedAttackSpeedUniqueOneHandSword13_", "LocalIncreasedAttackSpeedUniqueOneHandSword6", "LocalIncreasedAttackSpeedUniqueOneHandSword7", "LocalIncreasedAttackSpeedUniqueOneHandSword8", "LocalIncreasedAttackSpeedUniqueOneHandSword9", "LocalIncreasedAttackSpeedUniqueSceptre1", "LocalIncreasedAttackSpeedUniqueSceptre7", "LocalIncreasedAttackSpeedUniqueSceptre9", "LocalIncreasedAttackSpeedUniqueStaff7", "LocalIncreasedAttackSpeedUniqueStaff9", "LocalIncreasedAttackSpeedUniqueTwoHandAxe7", "LocalIncreasedAttackSpeedUniqueTwoHandAxe9", "LocalIncreasedAttackSpeedUniqueTwoHandMace8_", "LocalIncreasedAttackSpeedUniqueTwoHandSword6", "LocalIncreasedAttackSpeedUniqueTwoHandSword8", "LocalIncreasedAttackSpeedUniqueWand6", "LocalIncreasedAttackSpeedUniqueWand9", "LocalIncreasedAttackSpeedUnique__1", "LocalIncreasedAttackSpeedUnique__10", "LocalIncreasedAttackSpeedUnique__11", "LocalIncreasedAttackSpeedUnique__12", "LocalIncreasedAttackSpeedUnique__13", "LocalIncreasedAttackSpeedUnique__14", "LocalIncreasedAttackSpeedUnique__15", "LocalIncreasedAttackSpeedUnique__16", "LocalIncreasedAttackSpeedUnique__17", "LocalIncreasedAttackSpeedUnique__18", "LocalIncreasedAttackSpeedUnique__19", "LocalIncreasedAttackSpeedUnique__2", "LocalIncreasedAttackSpeedUnique__20", "LocalIncreasedAttackSpeedUnique__21", "LocalIncreasedAttackSpeedUnique__22", "LocalIncreasedAttackSpeedUnique__23", "LocalIncreasedAttackSpeedUnique__24", "LocalIncreasedAttackSpeedUnique__25", "LocalIncreasedAttackSpeedUnique__26_", "LocalIncreasedAttackSpeedUnique__27", "LocalIncreasedAttackSpeedUnique__28", "LocalIncreasedAttackSpeedUnique__29", "LocalIncreasedAttackSpeedUnique__3", "LocalIncreasedAttackSpeedUnique__30", "LocalIncreasedAttackSpeedUnique__31", "LocalIncreasedAttackSpeedUnique__32", "LocalIncreasedAttackSpeedUnique__33", "LocalIncreasedAttackSpeedUnique__34", "LocalIncreasedAttackSpeedUnique__35", "LocalIncreasedAttackSpeedUnique__36", "LocalIncreasedAttackSpeedUnique__37___", "LocalIncreasedAttackSpeedUnique__39", "LocalIncreasedAttackSpeedUnique__4", "LocalIncreasedAttackSpeedUnique__40", "LocalIncreasedAttackSpeedUnique__42", "LocalIncreasedAttackSpeedUnique__43", "LocalIncreasedAttackSpeedUnique__44", "LocalIncreasedAttackSpeedUnique__45", "LocalIncreasedAttackSpeedUnique__46", "LocalIncreasedAttackSpeedUnique__5", "LocalIncreasedAttackSpeedUnique__6", "LocalIncreasedAttackSpeedUnique__7", "LocalIncreasedAttackSpeedUnique__8", "LocalIncreasedAttackSpeedUnique__9", "VillageLocalIncreasedAttackSpeed", }, ["(#)% increased attack speed during effect"] = { "LocalFlaskAttackAndCastSpeedWhileHealingUnique__1", }, ["(#)% increased attack speed if you haven't cast dash recently"] = { "AttackSpeedIfHaventUsedDashRecentlyUnique__1", }, ["(#)% increased attack speed if you haven't gained a frenzy charge recently"] = { "AttackSpeedFrenzyChargeNotGainedUnique__1", }, ["(#)% increased attack speed if you've changed stance recently"] = { "AttackSpeedChangedStanceUnique__1", }, ["(#)% increased attack speed if you've dealt a critical strike recently"] = { "AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1", }, + ["(#)% increased attack speed per socketed searching eye jewel"] = { "LocalAttackSpeedPercentPerSocketedSearchingUnique__1", }, ["(#)% increased attack speed while chilled"] = { "AttackSpeedWhileChilledUnique__1", }, ["(#)% increased attack speed while ignited"] = { "IncreasedAttackSpeedWhileIgnitedUniqueJewel20", "IncreasedAttackSpeedWhileIgnitedUniqueRing24", }, ["(#)% increased attack speed with movement skills"] = { "AttackSpeedWithMovementSkillsUniqueBodyDex5", }, @@ -933,7 +986,7 @@ return { ["(#)% increased bonuses gained from equipped quiver"] = { "QuiverModifierEffectUnique__1", }, ["(#)% increased burning damage"] = { "BurnDamageUniqueCorruptedJewel1", "BurnDamageUniqueRing15", "BurnDamageUnique__1", }, ["(#)% increased burning damage for each time you have shocked a non-shocked enemy recently, up to a maximum of #%"] = { "BurningDamagePerEnemyShockedRecentlyUnique__1_", }, - ["(#)% increased cast speed"] = { "IncreasedCastSpeedFishing__Unique1", "IncreasedCastSpeedUniqueAmulet1", "IncreasedCastSpeedUniqueAmulet20", "IncreasedCastSpeedUniqueClaw7", "IncreasedCastSpeedUniqueGlovesDemigods1", "IncreasedCastSpeedUniqueGlovesStr1", "IncreasedCastSpeedUniqueIntHelmet2", "IncreasedCastSpeedUniqueRing27", "IncreasedCastSpeedUniqueRing38", "IncreasedCastSpeedUniqueSceptre6", "IncreasedCastSpeedUniqueSceptre7", "IncreasedCastSpeedUniqueStaff12", "IncreasedCastSpeedUniqueStaff2", "IncreasedCastSpeedUniqueStaff_1", "IncreasedCastSpeedUniqueTwoHandMace8", "IncreasedCastSpeedUniqueWand11", "IncreasedCastSpeedUniqueWand3", "IncreasedCastSpeedUniqueWand4", "IncreasedCastSpeedUniqueWand7", "IncreasedCastSpeedUnique__1", "IncreasedCastSpeedUnique__10", "IncreasedCastSpeedUnique__11__", "IncreasedCastSpeedUnique__12", "IncreasedCastSpeedUnique__13", "IncreasedCastSpeedUnique__14", "IncreasedCastSpeedUnique__15_", "IncreasedCastSpeedUnique__16", "IncreasedCastSpeedUnique__17", "IncreasedCastSpeedUnique__18_", "IncreasedCastSpeedUnique__19__", "IncreasedCastSpeedUnique__2", "IncreasedCastSpeedUnique__20", "IncreasedCastSpeedUnique__21", "IncreasedCastSpeedUnique__22", "IncreasedCastSpeedUnique__23", "IncreasedCastSpeedUnique__24", "IncreasedCastSpeedUnique__25", "IncreasedCastSpeedUnique__26", "IncreasedCastSpeedUnique__27", "IncreasedCastSpeedUnique__28", "IncreasedCastSpeedUnique__3", "IncreasedCastSpeedUnique__4", "IncreasedCastSpeedUnique__5", "IncreasedCastSpeedUnique__6", "IncreasedCastSpeedUnique__7", "IncreasedCastSpeedUnique__8", "IncreasedCastSpeedUnique__9", "RitualRingCastSpeed", "VillageIncreasedCastSpeed", "VillageIncreasedCastSpeedTwoHand", }, + ["(#)% increased cast speed"] = { "IncreasedCastSpeedFishing__Unique1", "IncreasedCastSpeedFishing__Unique2", "IncreasedCastSpeedImplicitRing1", "IncreasedCastSpeedUniqueAmulet1", "IncreasedCastSpeedUniqueAmulet20", "IncreasedCastSpeedUniqueClaw7", "IncreasedCastSpeedUniqueGlovesDemigods1", "IncreasedCastSpeedUniqueGlovesStr1", "IncreasedCastSpeedUniqueIntHelmet2", "IncreasedCastSpeedUniqueRing27", "IncreasedCastSpeedUniqueRing38", "IncreasedCastSpeedUniqueSceptre6", "IncreasedCastSpeedUniqueSceptre7", "IncreasedCastSpeedUniqueStaff1", "IncreasedCastSpeedUniqueStaff12", "IncreasedCastSpeedUniqueStaff2", "IncreasedCastSpeedUniqueStaff_1", "IncreasedCastSpeedUniqueTwoHandMace8", "IncreasedCastSpeedUniqueWand11", "IncreasedCastSpeedUniqueWand3", "IncreasedCastSpeedUniqueWand4", "IncreasedCastSpeedUniqueWand7", "IncreasedCastSpeedUnique__1", "IncreasedCastSpeedUnique__10", "IncreasedCastSpeedUnique__11__", "IncreasedCastSpeedUnique__12", "IncreasedCastSpeedUnique__13", "IncreasedCastSpeedUnique__14", "IncreasedCastSpeedUnique__15_", "IncreasedCastSpeedUnique__16", "IncreasedCastSpeedUnique__17", "IncreasedCastSpeedUnique__18_", "IncreasedCastSpeedUnique__19__", "IncreasedCastSpeedUnique__2", "IncreasedCastSpeedUnique__20", "IncreasedCastSpeedUnique__21", "IncreasedCastSpeedUnique__22", "IncreasedCastSpeedUnique__23", "IncreasedCastSpeedUnique__24", "IncreasedCastSpeedUnique__25", "IncreasedCastSpeedUnique__26", "IncreasedCastSpeedUnique__27", "IncreasedCastSpeedUnique__28", "IncreasedCastSpeedUnique__3", "IncreasedCastSpeedUnique__4", "IncreasedCastSpeedUnique__5", "IncreasedCastSpeedUnique__6", "IncreasedCastSpeedUnique__7", "IncreasedCastSpeedUnique__8", "IncreasedCastSpeedUnique__9", "RitualRingCastSpeed", "VillageIncreasedCastSpeed", "VillageIncreasedCastSpeedTwoHand", }, ["(#)% increased cast speed if you've dealt a critical strike recently"] = { "CastSpeedIfCriticalStrikeDealtRecentlyUnique__1", }, ["(#)% increased cast speed while chilled"] = { "CastSpeedWhileChilledUnique__1", }, ["(#)% increased cast speed while ignited"] = { "IncreasedCastSpeedWhileIgnitedUniqueJewel20_", "IncreasedCastSpeedWhileIgnitedUniqueRing24", }, @@ -964,6 +1017,7 @@ return { ["(#)% increased critical strike chance against enemies on consecrated ground during effect"] = { "FlaskConsecratedGroundEffectCriticalStrikeUnique__1", }, ["(#)% increased critical strike chance for spells if you've killed recently"] = { "SpellCriticalStrikeChanceIfKilledRecentlyUnique__1", }, ["(#)% increased critical strike chance if you haven't gained a power charge recently"] = { "CriticalStrikeChancePowerChargeNotGainedUnique__1", }, + ["(#)% increased critical strike chance per socketed hypnotic eye jewel"] = { "LocalCriticalChancePercentPerSocketedHypnoticUnique__1", }, ["(#)% increased critical strike chance while physical aegis is depleted"] = { "CriticalStrikeChanceWithoutPhysicalAegisUnique__1", }, ["(#)% increased critical strike chance while you have at least # intelligence"] = { "CriticalStrikeChanceAt200IntelligenceUnique__1", }, ["(#)% increased critical strike chance while you have avatar of fire"] = { "IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1", }, @@ -1011,6 +1065,7 @@ return { ["(#)% increased duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationUnique__1_", }, ["(#)% increased duration of lightning ailments"] = { "ShockDurationUnique__2", }, ["(#)% increased duration of poisons you inflict during effect"] = { "FlaskPoisonDurationUnique__1", }, + ["(#)% increased duration of shrine effects on you"] = { "ShrineEffectDurationUniqueHelmetDexInt3", }, ["(#)% increased effect of arcane surge on you"] = { "ArcaneSurgeEffectUnique__1", }, ["(#)% increased effect of chilled ground"] = { "ChilledGroundEffectUnique__1", }, ["(#)% increased effect of chills you inflict while leeching mana"] = { "ChillEffectLeechingManaUnique__1", }, @@ -1029,10 +1084,10 @@ return { ["(#)% increased effect of shock"] = { "ShockEffectUnique__1", }, ["(#)% increased effect of shocks you inflict during effect"] = { "ShockEffectDuringFlaskEffectUnique__1__", }, ["(#)% increased effect of shocks you inflict while leeching energy shield"] = { "ShockEffectLeechingESUnique__1", }, - ["(#)% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUnique__1", }, + ["(#)% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUniqueHelmetDexInt3", "ShrineBuffEffectUnique__1", }, ["(#)% increased effect of socketed abyss jewels"] = { "AbyssJewelEffectUnique__1", }, ["(#)% increased effect of your curses"] = { "CurseEffectivenessUnique__2_", "CurseEffectivenessUnique__3_", "CurseEffectivenessUnique__4", "UniqueSpecialCorruptionCurseEffect___", }, - ["(#)% increased elemental damage"] = { "ElementalDamagePercentImplicitAtlasRing_", "ElementalDamagePercentUnique__1", "ElementalDamageUniqueBootsStr1", "ElementalDamageUniqueIntHelmet3", "ElementalDamageUniqueJewel_1", "ElementalDamageUniqueRingVictors", "ElementalDamageUniqueSceptre7", "ElementalDamageUniqueStaff13", "ElementalDamageUnique__2_", "ElementalDamageUnique__3", "ElementalDamageUnique__4", }, + ["(#)% increased elemental damage"] = { "ElementalDamagePercentImplicitAtlasRing_", "ElementalDamagePercentUnique__1", "ElementalDamageUniqueBootsStr1", "ElementalDamageUniqueIntHelmet3", "ElementalDamageUniqueJewel_1", "ElementalDamageUniqueRingVictors", "ElementalDamageUniqueSceptre7", "ElementalDamageUniqueStaff13", "ElementalDamageUnique__2_", "ElementalDamageUnique__3", "ElementalDamageUnique__4", "ElementalDamageUnique__5", }, ["(#)% increased elemental damage if you've dealt a critical strike recently"] = { "ElementalDamageIfCritRecently", }, ["(#)% increased elemental damage per #% fire, cold, or lightning resistance above #%"] = { "ElementalDamagePerResistanceAbove75Unique_1", }, ["(#)% increased elemental damage per #% missing"] = { "ElementalDamagePerMissingResistanceUnique_1", }, @@ -1046,18 +1101,20 @@ return { ["(#)% increased elemental damage with melee weapons"] = { "TinctureElementalDamageImplicit1", }, ["(#)% increased elemental resistances"] = { "IncreasedElementalResistancesUnique__1", }, ["(#)% increased elusive effect"] = { "ElusiveEffectUnique__1", }, + ["(#)% increased enchantment modifier magnitudes"] = { "LocalEnchantStatMagnitudeUnique__1", }, ["(#)% increased endurance charge duration"] = { "ChargeBonusEnduranceChargeDuration", }, ["(#)% increased endurance, frenzy and power charge duration"] = { "ChargeDurationUniqueBodyDexInt3", }, ["(#)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3", "LocalIncreasedEnergyShieldPercentUniqueBodyInt8", "LocalIncreasedEnergyShieldPercentUniqueBody_1", "LocalIncreasedEnergyShieldPercentUniqueBootsInt5", "LocalIncreasedEnergyShieldPercentUniqueBootsInt6", "LocalIncreasedEnergyShieldPercentUniqueShieldInt1", "LocalIncreasedEnergyShieldPercentUniqueShieldInt2", "LocalIncreasedEnergyShieldPercentUnique__10", "LocalIncreasedEnergyShieldPercentUnique__11", "LocalIncreasedEnergyShieldPercentUnique__12", "LocalIncreasedEnergyShieldPercentUnique__13", "LocalIncreasedEnergyShieldPercentUnique__14", "LocalIncreasedEnergyShieldPercentUnique__15_", "LocalIncreasedEnergyShieldPercentUnique__16", "LocalIncreasedEnergyShieldPercentUnique__17", "LocalIncreasedEnergyShieldPercentUnique__18", "LocalIncreasedEnergyShieldPercentUnique__19", "LocalIncreasedEnergyShieldPercentUnique__20_", "LocalIncreasedEnergyShieldPercentUnique__21", "LocalIncreasedEnergyShieldPercentUnique__22", "LocalIncreasedEnergyShieldPercentUnique__23", "LocalIncreasedEnergyShieldPercentUnique__24", "LocalIncreasedEnergyShieldPercentUnique__25_", "LocalIncreasedEnergyShieldPercentUnique__26", "LocalIncreasedEnergyShieldPercentUnique__27", "LocalIncreasedEnergyShieldPercentUnique__28__", "LocalIncreasedEnergyShieldPercentUnique__29", "LocalIncreasedEnergyShieldPercentUnique__30___", "LocalIncreasedEnergyShieldPercentUnique__31____", "LocalIncreasedEnergyShieldPercentUnique__32", "LocalIncreasedEnergyShieldPercentUnique__33", "LocalIncreasedEnergyShieldPercentUnique__34", "LocalIncreasedEnergyShieldPercentUnique__5", "LocalIncreasedEnergyShieldPercentUnique__6", "LocalIncreasedEnergyShieldPercentUnique__7", "LocalIncreasedEnergyShieldPercentUnique__8", "LocalIncreasedEnergyShieldPercentUnique__9", "LocalIncreasedEnergyShieldPercentUnique___4_", "LocalIncreasedEnergyShieldPercent__1", "LocalIncreasedEnergyShieldPercent__2", "LocalIncreasedEnergyShieldPercent___3", "LocalIncreasedEnergyShieldUniqueBodyInt1", "LocalIncreasedEnergyShieldUniqueBodyInt3", "LocalIncreasedEnergyShieldUniqueBodyInt4", "LocalIncreasedEnergyShieldUniqueBodyInt7", "LocalIncreasedEnergyShieldUniqueBodyInt9", "LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g", "LocalIncreasedEnergyShieldUniqueBootsInt4", "LocalIncreasedEnergyShieldUniqueGlovesInt4", "LocalIncreasedEnergyShieldUniqueGlovesInt5", "LocalIncreasedEnergyShieldUniqueGlovesInt6", "LocalIncreasedEnergyShieldUniqueHelmetInt10", "LocalIncreasedEnergyShieldUniqueHelmetInt7", "LocalIncreasedEnergyShieldUniqueShieldInt3", }, ["(#)% increased energy shield recharge rate"] = { "JewelImplicitEnergyShieldRechargeRate", }, ["(#)% increased energy shield recharge rate during any flask effect"] = { "ESRechargeRateDuringFlaskEffect__1", }, ["(#)% increased energy shield recovery rate"] = { "EnergyShieldRecoveryRateUnique__1", "LifeAndEnergyShieldRecoveryRateUnique_1", }, - ["(#)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f", "LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6", "LocalIncreasedEvasionAndEnergyShieldUnique__1", "LocalIncreasedEvasionAndEnergyShieldUnique__10", "LocalIncreasedEvasionAndEnergyShieldUnique__11_", "LocalIncreasedEvasionAndEnergyShieldUnique__12", "LocalIncreasedEvasionAndEnergyShieldUnique__13", "LocalIncreasedEvasionAndEnergyShieldUnique__14", "LocalIncreasedEvasionAndEnergyShieldUnique__15", "LocalIncreasedEvasionAndEnergyShieldUnique__16", "LocalIncreasedEvasionAndEnergyShieldUnique__17", "LocalIncreasedEvasionAndEnergyShieldUnique__18", "LocalIncreasedEvasionAndEnergyShieldUnique__19___", "LocalIncreasedEvasionAndEnergyShieldUnique__2", "LocalIncreasedEvasionAndEnergyShieldUnique__20", "LocalIncreasedEvasionAndEnergyShieldUnique__21_", "LocalIncreasedEvasionAndEnergyShieldUnique__22", "LocalIncreasedEvasionAndEnergyShieldUnique__23", "LocalIncreasedEvasionAndEnergyShieldUnique__24", "LocalIncreasedEvasionAndEnergyShieldUnique__25", "LocalIncreasedEvasionAndEnergyShieldUnique__26", "LocalIncreasedEvasionAndEnergyShieldUnique__27", "LocalIncreasedEvasionAndEnergyShieldUnique__28", "LocalIncreasedEvasionAndEnergyShieldUnique__29", "LocalIncreasedEvasionAndEnergyShieldUnique__3", "LocalIncreasedEvasionAndEnergyShieldUnique__30_", "LocalIncreasedEvasionAndEnergyShieldUnique__31", "LocalIncreasedEvasionAndEnergyShieldUnique__32_", "LocalIncreasedEvasionAndEnergyShieldUnique__33", "LocalIncreasedEvasionAndEnergyShieldUnique__34", "LocalIncreasedEvasionAndEnergyShieldUnique__35", "LocalIncreasedEvasionAndEnergyShieldUnique__36", "LocalIncreasedEvasionAndEnergyShieldUnique__37", "LocalIncreasedEvasionAndEnergyShieldUnique__38", "LocalIncreasedEvasionAndEnergyShieldUnique__39", "LocalIncreasedEvasionAndEnergyShieldUnique__4", "LocalIncreasedEvasionAndEnergyShieldUnique__5", "LocalIncreasedEvasionAndEnergyShieldUnique__6_", "LocalIncreasedEvasionAndEnergyShieldUnique__7", "LocalIncreasedEvasionAndEnergyShieldUnique__8", "LocalIncreasedEvasionAndEnergyShieldUnique__9", }, + ["(#)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f", "LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt18", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6", "LocalIncreasedEvasionAndEnergyShieldUnique__1", "LocalIncreasedEvasionAndEnergyShieldUnique__10", "LocalIncreasedEvasionAndEnergyShieldUnique__11_", "LocalIncreasedEvasionAndEnergyShieldUnique__12", "LocalIncreasedEvasionAndEnergyShieldUnique__13", "LocalIncreasedEvasionAndEnergyShieldUnique__14", "LocalIncreasedEvasionAndEnergyShieldUnique__15", "LocalIncreasedEvasionAndEnergyShieldUnique__16", "LocalIncreasedEvasionAndEnergyShieldUnique__17", "LocalIncreasedEvasionAndEnergyShieldUnique__18", "LocalIncreasedEvasionAndEnergyShieldUnique__19___", "LocalIncreasedEvasionAndEnergyShieldUnique__2", "LocalIncreasedEvasionAndEnergyShieldUnique__20", "LocalIncreasedEvasionAndEnergyShieldUnique__21_", "LocalIncreasedEvasionAndEnergyShieldUnique__22", "LocalIncreasedEvasionAndEnergyShieldUnique__23", "LocalIncreasedEvasionAndEnergyShieldUnique__24", "LocalIncreasedEvasionAndEnergyShieldUnique__25", "LocalIncreasedEvasionAndEnergyShieldUnique__26", "LocalIncreasedEvasionAndEnergyShieldUnique__27", "LocalIncreasedEvasionAndEnergyShieldUnique__28", "LocalIncreasedEvasionAndEnergyShieldUnique__29", "LocalIncreasedEvasionAndEnergyShieldUnique__3", "LocalIncreasedEvasionAndEnergyShieldUnique__30_", "LocalIncreasedEvasionAndEnergyShieldUnique__31", "LocalIncreasedEvasionAndEnergyShieldUnique__32_", "LocalIncreasedEvasionAndEnergyShieldUnique__33", "LocalIncreasedEvasionAndEnergyShieldUnique__34", "LocalIncreasedEvasionAndEnergyShieldUnique__35", "LocalIncreasedEvasionAndEnergyShieldUnique__36", "LocalIncreasedEvasionAndEnergyShieldUnique__37", "LocalIncreasedEvasionAndEnergyShieldUnique__38", "LocalIncreasedEvasionAndEnergyShieldUnique__39", "LocalIncreasedEvasionAndEnergyShieldUnique__4", "LocalIncreasedEvasionAndEnergyShieldUnique__5", "LocalIncreasedEvasionAndEnergyShieldUnique__6_", "LocalIncreasedEvasionAndEnergyShieldUnique__7", "LocalIncreasedEvasionAndEnergyShieldUnique__8", "LocalIncreasedEvasionAndEnergyShieldUnique__9", }, ["(#)% increased evasion rating"] = { "GlobalEvasionRatingPercentUnique__1", "IncreasedEvasionRatingPercentUnique__1_", "IncreasedEvasionRatingPercentUnique__2", "LocalIncreasedEvasionRatingPercentUniqueBodyDex1", "LocalIncreasedEvasionRatingPercentUniqueBodyDex2", "LocalIncreasedEvasionRatingPercentUniqueBodyDex3", "LocalIncreasedEvasionRatingPercentUniqueBodyDex4", "LocalIncreasedEvasionRatingPercentUniqueBodyDex5", "LocalIncreasedEvasionRatingPercentUniqueBodyDex6", "LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5", "LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c", "LocalIncreasedEvasionRatingPercentUniqueBootsDex1", "LocalIncreasedEvasionRatingPercentUniqueBootsDex3", "LocalIncreasedEvasionRatingPercentUniqueBootsDex6", "LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1", "LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5", "LocalIncreasedEvasionRatingPercentUniqueDexHelmet2", "LocalIncreasedEvasionRatingPercentUniqueGlovesDex2", "LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5", "LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1", "LocalIncreasedEvasionRatingPercentUniqueHelmetDex5", "LocalIncreasedEvasionRatingPercentUniqueShieldDex1", "LocalIncreasedEvasionRatingPercentUniqueShieldDex3", "LocalIncreasedEvasionRatingPercentUniqueShieldDex4", "LocalIncreasedEvasionRatingPercentUniqueShieldDex5", "LocalIncreasedEvasionRatingPercentUnique__1", "LocalIncreasedEvasionRatingPercentUnique__10", "LocalIncreasedEvasionRatingPercentUnique__11", "LocalIncreasedEvasionRatingPercentUnique__12", "LocalIncreasedEvasionRatingPercentUnique__13", "LocalIncreasedEvasionRatingPercentUnique__14", "LocalIncreasedEvasionRatingPercentUnique__15_", "LocalIncreasedEvasionRatingPercentUnique__16", "LocalIncreasedEvasionRatingPercentUnique__17", "LocalIncreasedEvasionRatingPercentUnique__18", "LocalIncreasedEvasionRatingPercentUnique__19", "LocalIncreasedEvasionRatingPercentUnique__2", "LocalIncreasedEvasionRatingPercentUnique__20", "LocalIncreasedEvasionRatingPercentUnique__21", "LocalIncreasedEvasionRatingPercentUnique__3", "LocalIncreasedEvasionRatingPercentUnique__4", "LocalIncreasedEvasionRatingPercentUnique__5", "LocalIncreasedEvasionRatingPercentUnique__6", "LocalIncreasedEvasionRatingPercentUnique__7", "LocalIncreasedEvasionRatingPercentUnique__8", "LocalIncreasedEvasionRatingPercentUnique__9", "LocalIncreasedEvationRatingPercentUniqueBootsDex9", }, ["(#)% increased evasion rating and armour"] = { "GlobalEvasionRatingAndArmourPercentUnique__1_", }, ["(#)% increased evasion rating if you've cast dash recently"] = { "EvasionRatingIfUsedDashRecentlyUnique__1", }, ["(#)% increased experience gain of gems"] = { "GlobalGemExperienceGainUnique__1", }, - ["(#)% increased fire damage"] = { "FireDamagePercentUniqueBelt9a", "FireDamagePercentUniqueBodyInt4", "FireDamagePercentUniqueRing18", "FireDamagePercentUniqueRing24", "FireDamagePercentUniqueRing36", "FireDamagePercentUniqueRing38", "FireDamagePercentUniqueStaff1_", "FireDamagePercentUniqueStrHelmet2", "FireDamagePercentUniqueWand10", "FireDamagePercentUnique__1", "FireDamagePercentUnique__10", "FireDamagePercentUnique__11", "FireDamagePercentUnique__13", "FireDamagePercentUnique__14", "FireDamagePercentUnique__15", "FireDamagePercentUnique__3", "FireDamagePercentUnique__4", "FireDamagePercentUnique__6", "FireDamagePercentUnique__9", "FireDamagePercentUnique___2", "FireDamagePercentUnique___5", "FireDamagePercentUnique____8", "RunecraftingFireDamage", "SpellDamageUniqueDagger10", "TalismanIncreasedFireDamage", }, + ["(#)% increased explicit modifier magnitudes"] = { "LocalExplicitModEffectUnique__1", }, + ["(#)% increased fire damage"] = { "FireDamagePercentUniqueBelt9a", "FireDamagePercentUniqueBodyInt4", "FireDamagePercentUniqueRing18", "FireDamagePercentUniqueRing24", "FireDamagePercentUniqueRing36", "FireDamagePercentUniqueRing38", "FireDamagePercentUniqueStaff1_", "FireDamagePercentUniqueStrHelmet2", "FireDamagePercentUniqueWand10", "FireDamagePercentUnique__1", "FireDamagePercentUnique__10", "FireDamagePercentUnique__11", "FireDamagePercentUnique__13", "FireDamagePercentUnique__14", "FireDamagePercentUnique__15", "FireDamagePercentUnique__3", "FireDamagePercentUnique__4", "FireDamagePercentUnique__6", "FireDamagePercentUnique__9", "FireDamagePercentUnique___2", "FireDamagePercentUnique___5", "FireDamagePercentUnique____8", "IncreasedFireDamgeIfHitRecentlyUnique__1", "RunecraftingFireDamage", "SpellDamageUniqueDagger10", "TalismanIncreasedFireDamage", }, ["(#)% increased fire damage if you have used a cold skill recently"] = { "IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1", }, ["(#)% increased fire damage per #% fire resistance above #%"] = { "VillageFireDamagePerResistanceAbove75", }, ["(#)% increased fire damage per #% missing fire resistance, up to a maximum of #%"] = { "FireDamagePerMissingFireResistanceUnique__1", }, @@ -1065,39 +1122,46 @@ return { ["(#)% increased fire damage with hits and ailments against bleeding enemies"] = { "FireDamageVersusBleedingEnemiesUnique__1", }, ["(#)% increased fire damage with hits and ailments against blinded enemies"] = { "FireDamageToBlindEnemies__1", }, ["(#)% increased fish bite sensitivity"] = { "FishBiteSensitivityUnique__1", "TalismanFishBiteSensitivity", }, + ["(#)% increased fishing range"] = { "FishingCastDistanceUnique__2", }, ["(#)% increased flask charges gained"] = { "BeltIncreasedFlaskChargesGainedUnique__1_", }, ["(#)% increased flask charges used"] = { "BeltIncreasedFlaskChargedUsedUnique__1", }, - ["(#)% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__3___", "FlaskDurationUniqueGlovesDex_1", }, + ["(#)% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__3___", "FlaskDurationUniqueGlovesDex_1", "IncreasedFlaskDurationUnique__2", }, ["(#)% increased flask mana recovery rate"] = { "FlaskManaRecoveryRateUniqueSceptre5", }, ["(#)% increased fortification duration"] = { "FortifyDurationUnique_1", }, ["(#)% increased frenzy charge duration"] = { "ChargeBonusFrenzyChargeDuration", }, ["(#)% increased global accuracy rating"] = { "AccuracyPercentUniqueBow5", "IncreasedAccuracyPercentImplicitQuiver7", "IncreasedAccuracyPercentImplicitQuiver7New", "IncreasedAccuracyPercentUnique__1", }, - ["(#)% increased global critical strike chance"] = { "CriticalSrikeChanceUniqueSceptre7", "CriticalStrikeChanceImplicitQuiver13", "CriticalStrikeChanceImplicitRing1", "CriticalStrikeChanceUniqueAmulet17", "CriticalStrikeChanceUniqueAmulet18", "CriticalStrikeChanceUniqueGlovesDexInt6", "CriticalStrikeChanceUniqueGlovesStr3", "CriticalStrikeChanceUniqueHelmetDex6", "CriticalStrikeChanceUniqueRing11_", "CriticalStrikeChanceUniqueWand10", "CriticalStrikeChanceUniqueWand3", "CriticalStrikeChanceUnique__2", "CriticalStrikeChanceUnique__3", "CriticalStrikeChanceUnique__4_", "CriticalStrikeChanceUnique__5__", "CriticalStrikeChanceUnique__6", "TalismanIncreasedCriticalChance", }, + ["(#)% increased global attack speed per green socket"] = { "AttackSpeedPerGreenSocketUniqueOneHandSword5", }, + ["(#)% increased global critical strike chance"] = { "CriticalSrikeChanceUniqueSceptre7", "CriticalStrikeChanceImplicitDaggerNew1", "CriticalStrikeChanceImplicitDaggerNew2", "CriticalStrikeChanceImplicitDaggerNew3", "CriticalStrikeChanceImplicitQuiver13", "CriticalStrikeChanceImplicitRing1", "CriticalStrikeChanceUniqueAmulet17", "CriticalStrikeChanceUniqueAmulet18", "CriticalStrikeChanceUniqueGlovesDexInt6", "CriticalStrikeChanceUniqueGlovesStr3", "CriticalStrikeChanceUniqueHelmetDex6", "CriticalStrikeChanceUniqueRing11_", "CriticalStrikeChanceUniqueWand10", "CriticalStrikeChanceUniqueWand3", "CriticalStrikeChanceUnique__2", "CriticalStrikeChanceUnique__3", "CriticalStrikeChanceUnique__4_", "CriticalStrikeChanceUnique__5__", "CriticalStrikeChanceUnique__6", "TalismanIncreasedCriticalChance", }, + ["(#)% increased global critical strike chance per blue socket"] = { "CriticalStrikeChancePerBlueSocketUnique__1", }, ["(#)% increased global critical strike chance when in main hand"] = { "CriticalStrikeChanceInMainHandUnique_1", }, ["(#)% increased global damage"] = { "AllDamageUniqueSceptre8", "AllDamageUniqueStaff4", "AllDamageUnique__3", }, ["(#)% increased global defences"] = { "AllDefencesUniqueHelmetStrInt4_", "AllDefencesUnique__4", "AllDefencesUnique__5", "AllDefencesVictorAmulet", "AllDefensesImplicitJetRing", "FormlessBreachRingImplicit", "TalismanGlobalDefensesPercent", }, + ["(#)% increased global defences per empty socket"] = { "GlobalDefensesPerEmptySocketUnique__1", }, ["(#)% increased global maximum energy shield and reduced lightning resistance"] = { "EnergyShieldAndReducedLightningResistanceUnique__1", }, ["(#)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitBelt1", "IncreasedPhysicalDamagePercentUniqueBelt13", "IncreasedPhysicalDamagePercentUniqueBelt2", "IncreasedPhysicalDamagePercentUniqueBelt9d", "IncreasedPhysicalDamagePercentUniqueBowImplicit1", "IncreasedPhysicalDamagePercentUniqueShieldDexInt1", "IncreasedPhysicalDamagePercentUnique__1", "IncreasedPhysicalDamagePercentUnique__2", "IncreasedPhysicalDamagePercentUnique__3", "IncreasedPhysicalDamagePercentUnique__5", "IncreasedPhysicalDamagePercentUnique__6", "IncreasedPhysicalDamagePercentUnique__7", "PhysicalDamagePercentUnique___1", "TalismanIncreasedPhysicalDamage", }, + ["(#)% increased global physical damage per red socket"] = { "PhysicalDamgePerRedSocketUniqueOneHandSword5", }, ["(#)% increased golem damage for each type of golem you have summoned"] = { "IncreasedGolemDamagePerGolemUnique__1", }, ["(#)% increased ignite duration on enemies"] = { "BurnDurationUniqueBodyInt2", "IgniteDurationUnique__4", }, - ["(#)% increased implicit modifier magnitudes"] = { "ClassicNebulisImplicitModifierMagnitudeUnique_1", "ReplicaNebulisImplicitModifierMagnitudeUnique_1", }, + ["(#)% increased implicit modifier magnitudes"] = { "ClassicNebulisImplicitModifierMagnitudeUnique_1", "ImplicitModifierMagnitudeUnique_2", "ReplicaNebulisImplicitModifierMagnitudeUnique_1", }, ["(#)% increased intelligence"] = { "PercentageIntelligenceUniqueHelmetStrDex6", "PercentageIntelligenceUniqueStaff12_", "PercentageIntelligenceUnique__2", "PercentageIntelligenceUnique__3", "PercentageIntelligenceUnique__4", "PercentageIntelligenceUnique__5", "TalismanIncreasedIntelligence", }, ["(#)% increased intelligence if # crusader items are equipped"] = { "PercentageIntelligence2CrusaderItemsUnique__1", }, ["(#)% increased life recovery from flasks"] = { "BeltFlaskLifeRecoveryUnique__1", "FlaskLifeRecoveryUnique__1", }, ["(#)% increased life regeneration rate"] = { "LifeRecoveryRateUnique__1", "LifeRegenerationUnique__6", }, ["(#)% increased life reservation efficiency of skills"] = { "LIfeReservationEfficiencyUnique__1", }, - ["(#)% increased light radius"] = { "JewelImplicitLightRadius", "LightRadiusUniqueAmulet17", "LightRadiusUniqueBodyStrInt5", "LightRadiusUniqueRing11", "LightRadiusUnique__1", "LightRadiusUnique__2", "LightRadiusUnique__5", "LightRadiusUnique__7_", }, + ["(#)% increased light radius"] = { "JewelImplicitLightRadius", "LightRadiusUniqueAmulet17", "LightRadiusUniqueAmulet87", "LightRadiusUniqueBodyStrInt5", "LightRadiusUniqueRing11", "LightRadiusUnique__1", "LightRadiusUnique__2", "LightRadiusUnique__5", "LightRadiusUnique__7_", }, ["(#)% increased lightning damage"] = { "LightningDamagePercentUniqueBelt9c", "LightningDamagePercentUniqueHelmetStrInt3", "LightningDamagePercentUniqueRing20", "LightningDamagePercentUniqueRing34", "LightningDamagePercentUniqueStaff8", "LightningDamagePercentUnique__2", "LightningDamagePercentUnique__5", "LightningDamagePercentUnique__6", "LightningDamagePercentUnique__7", "LightningDamagePercentUnique__8", "LightningDamagePercentUnique___1", "LightningDamageUniqueHelmetDexInt1", "LightningDamageUniqueWand1", "RunecraftingLightningDamage", "TalismanIncreasedLightningDamage", "WeaponLightningDamageUniqueOneHandMace3", }, ["(#)% increased lightning damage per #% lightning resistance above #%"] = { "LightningDamagePerResistanceAbove75Unique__1", }, ["(#)% increased lightning damage per frenzy charge"] = { "IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6", }, ["(#)% increased lightning damage while affected by herald of thunder"] = { "HeraldBonusThunderLightningDamage", }, + ["(#)% increased mana cost efficiency"] = { "ManaCostEfficiencyUnique__1", "ManaCostEffiencyUnique__1", "ManaCostEffiencyUnique__2", }, + ["(#)% increased mana cost efficiency of minion skills"] = { "MinionSkillManaCostEfficiencyUnique__1", }, ["(#)% increased mana cost of skills"] = { "ManaCostIncreaseUniqueGlovesInt6", }, ["(#)% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUnique__1", "FlaskManaRecoveryUniqueBodyDex7", "FlaskManaRecoveryUnique__1", "FlaskManaRecoveryUnique__2", }, ["(#)% increased mana regeneration rate"] = { "ManaRegenerationImplicitAmulet1", "ManaRegenerationImplicitAmulet2", "ManaRegenerationImplicitDemigodsBelt1", "ManaRegenerationUniqueAmulet10", "ManaRegenerationUniqueAmulet21", "ManaRegenerationUniqueBodyDexInt2", "ManaRegenerationUniqueBootsDex5", "ManaRegenerationUniqueBootsInt2", "ManaRegenerationUniqueBootsStrDex4", "ManaRegenerationUniqueGlovesStrInt2", "ManaRegenerationUniqueHelmetStrInt_1", "ManaRegenerationUniqueJewel30", "ManaRegenerationUniqueOneHandMace3", "ManaRegenerationUniqueRing14", "ManaRegenerationUniqueRing26", "ManaRegenerationUniqueRing33", "ManaRegenerationUniqueRing34", "ManaRegenerationUniqueRingDemigod1", "ManaRegenerationUniqueShieldInt5", "ManaRegenerationUnique__1", "ManaRegenerationUnique__10", "ManaRegenerationUnique__11___", "ManaRegenerationUnique__12", "ManaRegenerationUnique__13", "ManaRegenerationUnique__15", "ManaRegenerationUnique__16", "ManaRegenerationUnique__2", "ManaRegenerationUnique__3", "ManaRegenerationUnique__4", "ManaRegenerationUnique__5", "ManaRegenerationUnique__6", "ManaRegenerationUnique__7", "ManaRegenerationUnique__8", "ManaRegenerationUnique__9___", }, ["(#)% increased mana regeneration rate while moving"] = { "ManaRegenerationRateWhileMovingUnique__1", }, ["(#)% increased mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUnique__2", "ManaReservationEfficiencyUnique__3", "ReducedManaReservationCostUnique__2", }, ["(#)% increased maximum energy shield"] = { "GlobalEnergyShieldPercentUnique__1", "IncreasedEnergyShieldPercentUniqueJewel51", "IncreasedEnergyShieldPercentUniqueOneHandSword2", "IncreasedEnergyShieldPercentUnique__2_", "IncreasedEnergyShieldPercentUnique__3", "IncreasedEnergyShieldPercentUnique__5", "TalismanIncreasedEnergyShield", }, - ["(#)% increased maximum life"] = { "MaximumLifeImplicitAtlasRing", "MaximumLifeUniqueBodyStrDex1", "MaximumLifeUniqueGlovesStrInt3", "MaximumLifeUniqueJewel52", "MaximumLifeUniqueShieldDexInt2", "MaximumLifeUniqueStaff4", "MaximumLifeUnique__1", "MaximumLifeUnique__10_", "MaximumLifeUnique__11", "MaximumLifeUnique__12", "MaximumLifeUnique__13", "MaximumLifeUnique__15", "MaximumLifeUnique__16", "MaximumLifeUnique__17", "MaximumLifeUnique__18", "MaximumLifeUnique__19", "MaximumLifeUnique__20___", "MaximumLifeUnique__21", "MaximumLifeUnique__22", "MaximumLifeUnique__4_", "MaximumLifeUnique__5", "MaximumLifeUnique__6", "MaximumLifeUnique__7", "MaximumLifeUnique__9", "TalismanIncreasedLife", }, + ["(#)% increased maximum life"] = { "MaximumLifeImplicitAtlasRing", "MaximumLifeUniqueBodyStrDex1", "MaximumLifeUniqueGlovesStrInt3", "MaximumLifeUniqueJewel52", "MaximumLifeUniqueShieldDexInt2", "MaximumLifeUniqueStaff4", "MaximumLifeUnique__1", "MaximumLifeUnique__10_", "MaximumLifeUnique__11", "MaximumLifeUnique__12", "MaximumLifeUnique__13", "MaximumLifeUnique__15", "MaximumLifeUnique__16", "MaximumLifeUnique__17", "MaximumLifeUnique__18", "MaximumLifeUnique__19", "MaximumLifeUnique__20___", "MaximumLifeUnique__21", "MaximumLifeUnique__22", "MaximumLifeUnique__28", "MaximumLifeUnique__4_", "MaximumLifeUnique__5", "MaximumLifeUnique__6", "MaximumLifeUnique__7", "MaximumLifeUnique__9", "TalismanIncreasedLife", }, ["(#)% increased maximum life and reduced fire resistance"] = { "LifeAndReducedFireResistanceUnique__1", }, ["(#)% increased maximum life if # elder items are equipped"] = { "MaximumLifeIncreasePercent2ElderItemsUnique__1", }, ["(#)% increased maximum life if no equipped items are corrupted"] = { "IncreasedLifeWhileNoCorruptedItemsUnique__1", }, @@ -1110,7 +1174,7 @@ return { ["(#)% increased mine throwing speed"] = { "RemoteMineLayingSpeedUniqueStaff11", }, ["(#)% increased minion damage per raised spectre"] = { "MinionDamagePerSpectre__1", }, ["(#)% increased minion duration"] = { "MinionDurationUnique__1", }, - ["(#)% increased movement speed"] = { "ChanceToDodgeUniqueRing37", "MovementVelocityUniqueAmulet20", "MovementVelocityUniqueBootsInt1", "MovementVelocityUniqueBootsInt4", "MovementVelocityUnique__19", "MovementVelocityUnique__21", "MovementVelocityUnique__28", "MovementVelocityUnique__32", "MovementVelocityUnique__33_", "MovementVelocityUnique__36_", "MovementVelocityUnique__38", "MovementVelocityUnique__39_", "MovementVelocityUnique__44", "MovementVelocityUnique__46", "MovementVelocityUnique__51", "MovementVelocityUnique__53", "MovementVelocityUnique__55", "MovementVelocityUnique__56", "MovementVelocityUnique__57", "MovementVelocityUnique__9_", "MovementVelocityVictorAmulet", "MovementVeolcityUniqueAmulet12", }, + ["(#)% increased movement speed"] = { "ChanceToDodgeUniqueRing37", "MovementVelocityUniqueAmulet20", "MovementVelocityUniqueBootsInt1", "MovementVelocityUniqueBootsInt4", "MovementVelocityUnique__19", "MovementVelocityUnique__21", "MovementVelocityUnique__22", "MovementVelocityUnique__28", "MovementVelocityUnique__32", "MovementVelocityUnique__33_", "MovementVelocityUnique__36_", "MovementVelocityUnique__38", "MovementVelocityUnique__39_", "MovementVelocityUnique__44", "MovementVelocityUnique__46", "MovementVelocityUnique__51", "MovementVelocityUnique__53", "MovementVelocityUnique__55", "MovementVelocityUnique__56", "MovementVelocityUnique__57", "MovementVelocityUnique__9_", "MovementVelocityVictorAmulet", "MovementVeolcityUniqueAmulet12", }, ["(#)% increased movement speed if # hunter items are equipped"] = { "MovementVelocity4HunterItemsUnique__1", }, ["(#)% increased movement speed if you've cast dash recently"] = { "MovementSpeedIfUsedDashRecentlyUnique__1", }, ["(#)% increased movement speed per # rage"] = { "MovementSpeedPer5RageUnique_1", }, @@ -1120,6 +1184,7 @@ return { ["(#)% increased movement speed while ignited"] = { "MovementVelocityWhileIgnitedUniqueJewel20", "MovementVelocityWhileIgnitedUnique__2", }, ["(#)% increased physical damage"] = { "LocalIncreasedPhyiscalDamagePercentUnique__3", "LocalIncreasedPhysicalDamagePercentUnique13", "LocalIncreasedPhysicalDamagePercentUniqueBow1", "LocalIncreasedPhysicalDamagePercentUniqueBow10", "LocalIncreasedPhysicalDamagePercentUniqueBow2", "LocalIncreasedPhysicalDamagePercentUniqueBow3", "LocalIncreasedPhysicalDamagePercentUniqueBow5", "LocalIncreasedPhysicalDamagePercentUniqueBow6", "LocalIncreasedPhysicalDamagePercentUniqueBow7", "LocalIncreasedPhysicalDamagePercentUniqueClaw1", "LocalIncreasedPhysicalDamagePercentUniqueClaw2", "LocalIncreasedPhysicalDamagePercentUniqueClaw3", "LocalIncreasedPhysicalDamagePercentUniqueClaw4", "LocalIncreasedPhysicalDamagePercentUniqueClaw5", "LocalIncreasedPhysicalDamagePercentUniqueClaw6", "LocalIncreasedPhysicalDamagePercentUniqueDagger11", "LocalIncreasedPhysicalDamagePercentUniqueDagger12", "LocalIncreasedPhysicalDamagePercentUniqueDagger2", "LocalIncreasedPhysicalDamagePercentUniqueDagger3", "LocalIncreasedPhysicalDamagePercentUniqueDagger9", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace6", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace7", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace8", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword12", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword8", "LocalIncreasedPhysicalDamagePercentUniqueRapier1", "LocalIncreasedPhysicalDamagePercentUniqueRapier2", "LocalIncreasedPhysicalDamagePercentUniqueSceptre1", "LocalIncreasedPhysicalDamagePercentUniqueSceptre2", "LocalIncreasedPhysicalDamagePercentUniqueSceptre5", "LocalIncreasedPhysicalDamagePercentUniqueStaff14", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe6", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword5", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword7", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8", "LocalIncreasedPhysicalDamagePercentUniqueWand1", "LocalIncreasedPhysicalDamagePercentUniqueWand9", "LocalIncreasedPhysicalDamagePercentUniqueWand9x", "LocalIncreasedPhysicalDamagePercentUnique__1", "LocalIncreasedPhysicalDamagePercentUnique__10", "LocalIncreasedPhysicalDamagePercentUnique__11_", "LocalIncreasedPhysicalDamagePercentUnique__12", "LocalIncreasedPhysicalDamagePercentUnique__13", "LocalIncreasedPhysicalDamagePercentUnique__14", "LocalIncreasedPhysicalDamagePercentUnique__15", "LocalIncreasedPhysicalDamagePercentUnique__16", "LocalIncreasedPhysicalDamagePercentUnique__17_", "LocalIncreasedPhysicalDamagePercentUnique__18", "LocalIncreasedPhysicalDamagePercentUnique__19", "LocalIncreasedPhysicalDamagePercentUnique__2", "LocalIncreasedPhysicalDamagePercentUnique__20", "LocalIncreasedPhysicalDamagePercentUnique__21", "LocalIncreasedPhysicalDamagePercentUnique__22", "LocalIncreasedPhysicalDamagePercentUnique__23", "LocalIncreasedPhysicalDamagePercentUnique__24", "LocalIncreasedPhysicalDamagePercentUnique__25", "LocalIncreasedPhysicalDamagePercentUnique__27", "LocalIncreasedPhysicalDamagePercentUnique__28__", "LocalIncreasedPhysicalDamagePercentUnique__29", "LocalIncreasedPhysicalDamagePercentUnique__30", "LocalIncreasedPhysicalDamagePercentUnique__31", "LocalIncreasedPhysicalDamagePercentUnique__33", "LocalIncreasedPhysicalDamagePercentUnique__34___", "LocalIncreasedPhysicalDamagePercentUnique__35", "LocalIncreasedPhysicalDamagePercentUnique__36_", "LocalIncreasedPhysicalDamagePercentUnique__37__", "LocalIncreasedPhysicalDamagePercentUnique__38", "LocalIncreasedPhysicalDamagePercentUnique__39", "LocalIncreasedPhysicalDamagePercentUnique__4", "LocalIncreasedPhysicalDamagePercentUnique__40", "LocalIncreasedPhysicalDamagePercentUnique__41___", "LocalIncreasedPhysicalDamagePercentUnique__42", "LocalIncreasedPhysicalDamagePercentUnique__43", "LocalIncreasedPhysicalDamagePercentUnique__44", "LocalIncreasedPhysicalDamagePercentUnique__45", "LocalIncreasedPhysicalDamagePercentUnique__46", "LocalIncreasedPhysicalDamagePercentUnique__47", "LocalIncreasedPhysicalDamagePercentUnique__48", "LocalIncreasedPhysicalDamagePercentUnique__49", "LocalIncreasedPhysicalDamagePercentUnique__5", "LocalIncreasedPhysicalDamagePercentUnique__50", "LocalIncreasedPhysicalDamagePercentUnique__51", "LocalIncreasedPhysicalDamagePercentUnique__52", "LocalIncreasedPhysicalDamagePercentUnique__53", "LocalIncreasedPhysicalDamagePercentUnique__54", "LocalIncreasedPhysicalDamagePercentUnique__55", "LocalIncreasedPhysicalDamagePercentUnique__56", "LocalIncreasedPhysicalDamagePercentUnique__57", "LocalIncreasedPhysicalDamagePercentUnique__58", "LocalIncreasedPhysicalDamagePercentUnique__6", "LocalIncreasedPhysicalDamagePercentUnique__7", "LocalIncreasedPhysicalDamagePercentUnique__8", "LocalIncreasedPhysicalDamagePercentUnique__9", "LocalIncreasedPhysicalDamageUniqueClaw8", "LocalIncreasedPhysicalDamageUniqueOneHandMace4", "LocalIncreasedPhysicalDamageUniqueOneHandMace5", "LocalIncreasedPhysicalDamageUniqueOneHandSceptre10", "LocalIncreasedPhysicalDamageUniqueOneHandSword11", "VillageLocalPhysicalDamagePercent1", "VillageLocalPhysicalDamagePercent2", "VillageLocalPhysicalDamagePercent3", }, ["(#)% increased physical damage per endurance charge"] = { "IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6", }, + ["(#)% increased physical damage per socketed murderous eye jewel"] = { "LocalPhysicalDamagePercentPerSocketedMurderousUnique__1", }, ["(#)% increased physical damage taken"] = { "IncreasedPhysicalDamageTakenUniqueHelmetStr3", }, ["(#)% increased physical damage while affected by herald of purity"] = { "HeraldBonusPurityPhysicalDamage", }, ["(#)% increased physical damage with hits and ailments against ignited enemies"] = { "PhysicalDamageVersusIgnitedEnemiesUnique__1", }, @@ -1140,8 +1205,10 @@ return { ["(#)% increased quantity of items found during effect"] = { "FlaskItemQuantityUniqueFlask1", }, ["(#)% increased quantity of items found when on low life"] = { "ItemQuantityOnLowLifeUnique__1", }, ["(#)% increased quantity of items found with a magic item equipped"] = { "ItemQuantityWhileWearingAMagicItemUnique__1", }, + ["(#)% increased rage cost efficiency"] = { "RageCostEfficiencyUnique__1", }, ["(#)% increased rage effect"] = { "VillageRageEffect", }, ["(#)% increased rarity of fish caught"] = { "FishingRarityUniqueFishingRod1", "FishingRarityUnique__2_", }, + ["(#)% increased rarity of fish caught per held dead fish"] = { "FishingDeadFish", }, ["(#)% increased rarity of items dropped by enemies killed with a critical strike"] = { "KilledMonsterItemRarityOnCritUniqueRing11", }, ["(#)% increased rarity of items dropped by slain magic enemies"] = { "MagicMonsterItemRarityUnique__1", }, ["(#)% increased rarity of items dropped by slain maimed enemies"] = { "IIRFromMaimedEnemiesUnique_1", }, @@ -1157,13 +1224,13 @@ return { ["(#)% increased skeleton duration"] = { "SkeletonDurationUniqueTwoHandSword4", }, ["(#)% increased skeleton movement speed"] = { "SkeletonMovementSpeedUniqueJewel1", }, ["(#)% increased skill effect duration"] = { "SkillEffectDurationUnique__1", "TalismanIncreasedSkillEffectDuration", "UniqueSpecialCorruptionSkillEffectDuration", }, - ["(#)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueBootsStrDex5", "SpellCriticalStrikeChanceUniqueDagger1", "SpellCriticalStrikeChanceUniqueGlovesInt5", "SpellCriticalStrikeChanceUniqueGlovesInt6", "SpellCriticalStrikeChanceUniqueHelmetInt6", "SpellCriticalStrikeChanceUniqueShieldInt3", "SpellCriticalStrikeChanceUnique__1", "SpellCriticalStrikeChanceUnique__2", "SpellCriticalStrikeChanceUnique__3", "SpellCriticalStrikeChanceUnique__4", "SpellCriticalStrikeChanceUnique__5", "VillageSpellCriticalStrikeChance", "VillageSpellCriticalStrikeChanceTwoHand", }, + ["(#)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueBootsStrDex5", "SpellCriticalStrikeChanceUniqueDagger1", "SpellCriticalStrikeChanceUniqueGlovesInt5", "SpellCriticalStrikeChanceUniqueGlovesInt6", "SpellCriticalStrikeChanceUniqueHelmetInt6", "SpellCriticalStrikeChanceUniqueShieldInt3", "SpellCriticalStrikeChanceUnique__1", "SpellCriticalStrikeChanceUnique__2", "SpellCriticalStrikeChanceUnique__3", "SpellCriticalStrikeChanceUnique__4", "SpellCriticalStrikeChanceUnique__5", "SpellCriticalStrikeChanceUnique__6", "VillageSpellCriticalStrikeChance", "VillageSpellCriticalStrikeChanceTwoHand", }, ["(#)% increased spell critical strike chance per raised spectre"] = { "SpellCriticalStrikeChancePerSpectreUnique__1_", }, - ["(#)% increased spell damage"] = { "SpellDamageImplicitArmour1", "SpellDamageImplicitGloves1", "SpellDamageImplicitShield1", "SpellDamageImplicitShield2", "SpellDamageImplicitShield3", "SpellDamageOnWeaponImplicitWand1", "SpellDamageOnWeaponImplicitWand10", "SpellDamageOnWeaponImplicitWand11", "SpellDamageOnWeaponImplicitWand12", "SpellDamageOnWeaponImplicitWand13", "SpellDamageOnWeaponImplicitWand14", "SpellDamageOnWeaponImplicitWand15", "SpellDamageOnWeaponImplicitWand16", "SpellDamageOnWeaponImplicitWand17", "SpellDamageOnWeaponImplicitWand18", "SpellDamageOnWeaponImplicitWand2", "SpellDamageOnWeaponImplicitWand3", "SpellDamageOnWeaponImplicitWand4", "SpellDamageOnWeaponImplicitWand5", "SpellDamageOnWeaponImplicitWand6", "SpellDamageOnWeaponImplicitWand7", "SpellDamageOnWeaponImplicitWand8", "SpellDamageOnWeaponImplicitWand9", "SpellDamageOnWeaponUniqueDagger1", "SpellDamageOnWeaponUniqueDagger4", "SpellDamageOnWeaponUniqueTwoHandAxe9", "SpellDamageUniqueBodyInt7", "SpellDamageUniqueCorruptedJewel3_", "SpellDamageUniqueHelmetDexInt1", "SpellDamageUniqueHelmetInt8", "SpellDamageUniqueRing35", "SpellDamageUniqueSceptre2", "SpellDamageUniqueSceptre5", "SpellDamageUniqueShieldInt1", "SpellDamageUniqueShieldStrInt1", "SpellDamageUniqueStaff11_", "SpellDamageUniqueStaff12", "SpellDamageUniqueStaff2", "SpellDamageUniqueStaff6", "SpellDamageUniqueWand1", "SpellDamageUniqueWand4", "SpellDamageUniqueWand7", "SpellDamageUnique__10", "SpellDamageUnique__11", "SpellDamageUnique__12", "SpellDamageUnique__13", "SpellDamageUnique__14", "SpellDamageUnique__15", "SpellDamageUnique__16", "SpellDamageUnique__17", "SpellDamageUnique__18", "SpellDamageUnique__2", "SpellDamageUnique__4", "SpellDamageUnique__5", "SpellDamageUnique__6", "SpellDamageUnique__7", "SpellDamageUnique__8_", "SpellDamageUnique__9", "TalismanSpellDamage", "VillageWeaponSpellDamage1", "VillageWeaponSpellDamage2", "VillageWeaponSpellDamage3", "VillageWeaponSpellDamageTwoHand1", "VillageWeaponSpellDamageTwoHand2", "VillageWeaponSpellDamageTwoHand3", }, + ["(#)% increased spell damage"] = { "SpellDamageImplicitArmour1", "SpellDamageImplicitGloves1", "SpellDamageImplicitShield1", "SpellDamageImplicitShield2", "SpellDamageImplicitShield3", "SpellDamageOnWeaponImplicitWand1", "SpellDamageOnWeaponImplicitWand10", "SpellDamageOnWeaponImplicitWand11", "SpellDamageOnWeaponImplicitWand12", "SpellDamageOnWeaponImplicitWand13", "SpellDamageOnWeaponImplicitWand14", "SpellDamageOnWeaponImplicitWand15", "SpellDamageOnWeaponImplicitWand16", "SpellDamageOnWeaponImplicitWand17", "SpellDamageOnWeaponImplicitWand18", "SpellDamageOnWeaponImplicitWand2", "SpellDamageOnWeaponImplicitWand3", "SpellDamageOnWeaponImplicitWand4", "SpellDamageOnWeaponImplicitWand5", "SpellDamageOnWeaponImplicitWand6", "SpellDamageOnWeaponImplicitWand7", "SpellDamageOnWeaponImplicitWand8", "SpellDamageOnWeaponImplicitWand9", "SpellDamageOnWeaponUniqueDagger1", "SpellDamageOnWeaponUniqueDagger4", "SpellDamageOnWeaponUniqueStaff38", "SpellDamageOnWeaponUniqueTwoHandAxe9", "SpellDamageUniqueBodyInt7", "SpellDamageUniqueCorruptedJewel3_", "SpellDamageUniqueHelmetDexInt1", "SpellDamageUniqueHelmetInt8", "SpellDamageUniqueRing35", "SpellDamageUniqueSceptre2", "SpellDamageUniqueSceptre5", "SpellDamageUniqueShieldInt1", "SpellDamageUniqueShieldStrInt1", "SpellDamageUniqueStaff11_", "SpellDamageUniqueStaff12", "SpellDamageUniqueStaff2", "SpellDamageUniqueStaff6", "SpellDamageUniqueWand1", "SpellDamageUniqueWand4", "SpellDamageUniqueWand7", "SpellDamageUnique__10", "SpellDamageUnique__11", "SpellDamageUnique__12", "SpellDamageUnique__13", "SpellDamageUnique__14", "SpellDamageUnique__15", "SpellDamageUnique__16", "SpellDamageUnique__17", "SpellDamageUnique__18", "SpellDamageUnique__19", "SpellDamageUnique__2", "SpellDamageUnique__4", "SpellDamageUnique__5", "SpellDamageUnique__6", "SpellDamageUnique__7", "SpellDamageUnique__8_", "SpellDamageUnique__9", "TalismanSpellDamage", "VillageWeaponSpellDamage1", "VillageWeaponSpellDamage2", "VillageWeaponSpellDamage3", "VillageWeaponSpellDamageTwoHand1", "VillageWeaponSpellDamageTwoHand2", "VillageWeaponSpellDamageTwoHand3", }, ["(#)% increased spell damage for each # total mana you have spent recently, up to #%"] = { "SpellDamagePer200ManaSpentRecentlyUnique__1__", }, ["(#)% increased spell damage if you've dealt a critical strike recently"] = { "SpellDamageIfYouHaveCritRecentlyUnique__2", }, ["(#)% increased spell damage if your opposite ring is an elder item"] = { "SpellDamageElderItemUnique__1_", }, - ["(#)% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6", "IncreasedSpellDamagePerPowerChargeUnique__1", }, + ["(#)% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6", "IncreasedSpellDamagePerPowerChargeUniqueWand3", "IncreasedSpellDamagePerPowerChargeUnique__1", }, ["(#)% increased spell damage while no mana is reserved"] = { "SpellDamageWithNoManaReservedUniqueJewel30", }, ["(#)% increased strength"] = { "PercentageStrengthUniqueBootsStrInt2", "PercentageStrengthUniqueHelmetStrDex6", "PercentageStrengthUniqueJewel29", "PercentageStrengthUnique__2", "PercentageStrengthUnique__5", "TalismanIncreasedStrength", }, ["(#)% increased strength if # warlord items are equipped"] = { "PercentageStrength2WarlordItemsUnique__1", }, @@ -1171,6 +1238,7 @@ return { ["(#)% increased stun duration on enemies"] = { "StunDurationImplicitBelt1", "StunDurationImplicitQuiver9", "StunDurationUniqueOneHandMace6", "StunDurationUniqueQuiver2", "StunDurationUniqueQuiver8", "StunDurationUniqueTwoHandMace1", "StunDurationUniqueTwoHandMace2", "StunDurationUniqueTwoHandMace3", "StunDurationUnique__1", "StunDurationUnique__2", }, ["(#)% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUnique__2", }, ["(#)% increased total recovery per second from mana leech"] = { "IncreasedManaLeechRateUnique__1", }, + ["(#)% increased totem duration"] = { "TotemDurationUniqueStaff38", }, ["(#)% increased totem life"] = { "TotemLifeUniqueBodyInt7", "TotemLifeUnique__1", "TotemLifeUnique__2_", }, ["(#)% increased totem placement speed"] = { "JewelImplicitTotemPlacementSpeed", "SummonTotemCastSpeedImplicit1", "SummonTotemCastSpeedUnique__1", "SummonTotemCastSpeedUnique__2", "SummonTotemCastSpeedUnique__3", }, ["(#)% increased trap and mine throwing speed"] = { "TrapAndMineThrowSpeedUnique_1", }, @@ -1217,6 +1285,7 @@ return { ["(#)% of lightning damage taken as fire damage"] = { "LightningHitAndDoTDamageTakenAsFireUnique__1", }, ["(#)% of physical attack damage leeched as life"] = { "LifeLeechJewel", "LifeLeechLocal1", "LifeLeechLocal2", "LifeLeechLocal3", "LifeLeechPermyriadUniqueAmulet9", "LifeLeechPermyriadUniqueHelmetDexInt6", "LifeLeechPermyriadUniqueRing12", "LifeLeechPermyriadUnique__7", "LifeLeechPermyriadUnique__8", "LifeLeechPermyriadUnique__9", "LifeLeechUniqueAmulet9", "LifeLeechUniqueBodyStrDex3", "LifeLeechUniqueBodyStrInt5", "LifeLeechUniqueHelmetInt7", "LifeLeechUniqueRing12", "VillageLifeLeechLocalPermyriad", }, ["(#)% of physical attack damage leeched as mana"] = { "ManaLeechJewel", "ManaLeechLocal1", "ManaLeechPermyriadUniqueOneHandSword2", "ManaLeechPermyriadUnique__3", "ManaLeechUniqueHelmetInt7", "ManaLeechUniqueOneHandSword2", "VillageManaLeechLocalPermyriad", }, + ["(#)% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", }, ["(#)% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosUniqueClaw2", }, ["(#)% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUnique__3", }, ["(#)% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUnique__3__", }, @@ -1287,7 +1356,11 @@ return { ["(-40-40)% reduced area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__3", }, ["(-40-40)% reduced rarity of items found"] = { "ItemFoundRarityIncreaseUniqueRing32_", }, ["(0-100)% increased effect of jewel socket passive skills containing corrupted magic jewels"] = { "CorruptedMagicJewelModEffectUnique__1", }, + ["(0-200)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13", }, + ["(0-200)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__13", }, + ["(0-200)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__10", }, ["(0-40)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__9", }, + ["(0-40)% increased movement speed"] = { "MovementVelocityUnique__22", }, ["(0-50)% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUnique__3", }, ["(0-50)% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUnique__3__", }, ["(0-50)% of physical damage converted to lightning damage"] = { "ConvertPhysicaltoLightningUnique__5", }, @@ -1299,6 +1372,7 @@ return { ["(0.4-0.8)% of attack damage leeched as life"] = { "LifeLeechPermyriadUniqueHelmetInt7", }, ["(0.4-0.8)% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueHelmetDexInt6", }, ["(0.6-0.8)% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueRing12", }, + ["(0.6-0.8)% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", }, ["(0.6-1)% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueOneHandSword2", }, ["(0.8-1)% of attack damage leeched as life"] = { "LifeLeechPermyriadUniqueBodyStrInt5", }, ["(1-1.5)% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUnique__3", }, @@ -1326,6 +1400,7 @@ return { ["(1.2-2)% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueAmulet9", }, ["(10-14) to (19-24) added physical damage with bow attacks"] = { "AddedPhysicalDamageUniqueQuiver3", }, ["(10-14)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueBow11", "LocalIncreasedAttackSpeedUniqueBow6", }, + ["(10-14)% increased global attack speed per green socket"] = { "AttackSpeedPerGreenSocketUniqueOneHandSword5", }, ["(10-14)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand2", }, ["(10-15)% additional physical damage reduction while bleeding"] = { "AdditionalPhysicalDamageReductionWhileBleedingUnique__1", }, ["(10-15)% chance to block attack damage"] = { "BlockPercentUniqueAmulet16", }, @@ -1377,6 +1452,7 @@ return { ["(10-15)% increased quantity of items found with a magic item equipped"] = { "ItemQuantityWhileWearingAMagicItemUnique__1", }, ["(10-15)% increased skill effect duration"] = { "SkillEffectDurationUnique__1", }, ["(10-15)% increased spell damage"] = { "SpellDamageImplicitShield2", }, + ["(10-15)% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueWand3", }, ["(10-15)% increased strength if 2 warlord items are equipped"] = { "PercentageStrength2WarlordItemsUnique__1", }, ["(10-15)% of damage taken recouped as life"] = { "DamageTakenGainedAsLifeUnique__4", }, ["(10-15)% of physical damage from hits taken as cold damage during effect"] = { "PhysicalTakenAsColdUniqueFlask8", }, @@ -1404,14 +1480,14 @@ return { ["(10-20)% chance to impale enemies on hit with attacks"] = { "AttackImpaleChanceUnique__1", "AttackImpaleChanceUnique__2", }, ["(10-20)% chance to inflict corrosion on hit with spells"] = { "VillageSpellCorrosionOnHitChance", }, ["(10-20)% increased area damage"] = { "AreaDamageUniqueOneHandMace7", }, - ["(10-20)% increased area of effect"] = { "AreaOfEffectUnique_9", }, + ["(10-20)% increased area of effect"] = { "AreaOfEffectUnique_9", "AreaOfEffectUnique__2_", }, ["(10-20)% increased area of effect during effect"] = { "FlaskIncreasedAreaOfEffectDuringEffectUnique__1_", }, ["(10-20)% increased attack and movement speed while you have a bestial minion"] = { "AttackAndMovementSpeedBeastialMinionUnique__1", }, ["(10-20)% increased attack speed"] = { "LocalIncreasedAttackSpeedOneHandSword3", "LocalIncreasedAttackSpeedUniqueBow1", "LocalIncreasedAttackSpeedUniqueSceptre1", }, ["(10-20)% increased attack speed while chilled"] = { "AttackSpeedWhileChilledUnique__1", }, ["(10-20)% increased attack speed while ignited"] = { "IncreasedAttackSpeedWhileIgnitedUniqueJewel20", }, ["(10-20)% increased attack speed with movement skills"] = { "AttackSpeedWithMovementSkillsUniqueBodyDex5", }, - ["(10-20)% increased cast speed"] = { "IncreasedCastSpeedUniqueStaff2", "IncreasedCastSpeedUniqueWand3", "IncreasedCastSpeedUnique__8", }, + ["(10-20)% increased cast speed"] = { "IncreasedCastSpeedUniqueRing38", "IncreasedCastSpeedUniqueStaff2", "IncreasedCastSpeedUniqueWand3", "IncreasedCastSpeedUnique__8", }, ["(10-20)% increased cast speed while chilled"] = { "CastSpeedWhileChilledUnique__1", }, ["(10-20)% increased cast speed while ignited"] = { "IncreasedCastSpeedWhileIgnitedUniqueJewel20_", }, ["(10-20)% increased cold damage"] = { "ColdDamagePercentUnique___10", "RunecraftingColdDamage", }, @@ -1428,13 +1504,12 @@ return { ["(10-20)% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__3___", "FlaskDurationUniqueGlovesDex_1", }, ["(10-20)% increased lightning damage"] = { "RunecraftingLightningDamage", }, ["(10-20)% increased mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUnique__3", }, - ["(10-20)% increased maximum life"] = { "MaximumLifeUniqueShieldDexInt2", "MaximumLifeUniqueStaff4", }, + ["(10-20)% increased maximum life"] = { "MaximumLifeUniqueShieldDexInt2", "MaximumLifeUniqueStaff4", "MaximumLifeUnique__28", }, ["(10-20)% increased maximum mana"] = { "MaximumManaUniqueStaff4", "MaximumManaUnique__3", }, ["(10-20)% increased movement speed"] = { "MovementVelocityUnique__19", }, ["(10-20)% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUnique__1", }, ["(10-20)% increased movement speed while chilled"] = { "MovementVelocityWhileChilledUnique__1_", }, ["(10-20)% increased movement speed while ignited"] = { "MovementVelocityWhileIgnitedUniqueJewel20", "MovementVelocityWhileIgnitedUnique__2", }, - ["(10-20)% increased projectile speed"] = { "ProjectileSpeedUnique__9", }, ["(10-20)% increased quantity of fish caught"] = { "FishingQuantityUnique__1", }, ["(10-20)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueShieldDemigods", "ItemFoundRarityIncreaseUnique__4_", "ItemFoundRarityIncreaseUnique__8", }, ["(10-20)% increased stun duration on enemies"] = { "StunDurationUniqueTwoHandMace2", }, @@ -1462,11 +1537,12 @@ return { ["(10-30)% increased elusive effect"] = { "ElusiveEffectUnique__1", }, ["(10-30)% increased light radius"] = { "LightRadiusUnique__2", }, ["(10-30)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueRing6", }, - ["(100-120)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3", }, + ["(10-50)% increased projectile speed"] = { "ProjectileSpeedUnique__9", }, + ["(100-120)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3", }, ["(100-120)% increased critical strike chance with traps"] = { "TrapCritChanceUnique__1", }, ["(100-120)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__11", "LocalIncreasedEnergyShieldUniqueBodyInt7", "LocalIncreasedEnergyShieldUniqueGlovesInt5", }, ["(100-120)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__6_", }, - ["(100-120)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5", "LocalIncreasedEvasionRatingPercentUniqueShieldDex5", "LocalIncreasedEvasionRatingPercentUnique__10", "LocalIncreasedEvasionRatingPercentUnique__3", }, + ["(100-120)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5", "LocalIncreasedEvasionRatingPercentUniqueShieldDex5", "LocalIncreasedEvasionRatingPercentUnique__3", }, ["(100-120)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueClaw6", "LocalIncreasedPhysicalDamagePercentUnique__10", }, ["(100-125)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2", "LocalIncreasedPhysicalDamagePercentUnique__2", }, ["(100-130)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__20_", }, @@ -1493,11 +1569,14 @@ return { ["(100-150)% increased spell damage"] = { "SpellDamageUnique__17", }, ["(100-160)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33", }, ["(100-160)% increased evasion rating if you've cast dash recently"] = { "EvasionRatingIfUsedDashRecentlyUnique__1", }, + ["(100-200)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__29", }, ["(100-200)% increased cold damage while your off hand is empty"] = { "IncreasedColdDamageWhileOffhandIsEmpty_", }, ["(100-200)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__24", }, ["(100-200)% increased endurance, frenzy and power charge duration"] = { "ChargeDurationUniqueBodyDexInt3", }, + ["(100-200)% increased fire damage"] = { "IncreasedFireDamgeIfHitRecentlyUnique__1", }, ["(100-200)% increased spell damage"] = { "SpellDamageOnWeaponUniqueTwoHandAxe9", }, ["(100-200)% increased stun and block recovery"] = { "StunRecoveryUnique__8", }, + ["(100-300)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUnique__6", }, ["(100-777)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__38", }, ["(105-145) to (160-200) added cold damage with bow attacks"] = { "AddedColdDamageUniqueBodyDex1", }, ["(11-15)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueSceptre7", }, @@ -1539,7 +1618,7 @@ return { ["(120-160)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__24", }, ["(120-160)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__1", }, ["(120-160)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueShieldInt1", "LocalIncreasedEnergyShieldPercent___3", "LocalIncreasedEnergyShieldUniqueBodyInt4", }, - ["(120-160)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__39", }, + ["(120-160)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt18", "LocalIncreasedEvasionAndEnergyShieldUnique__39", }, ["(120-160)% increased global critical strike chance"] = { "CriticalStrikeChanceUnique__4_", }, ["(120-160)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique13", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5", "LocalIncreasedPhysicalDamagePercentUnique__44", "LocalIncreasedPhysicalDamagePercentUnique__56", "LocalIncreasedPhysicalDamagePercentUnique__57", }, ["(120-160)% increased spell damage"] = { "SpellDamageUniqueStaff6", }, @@ -1549,6 +1628,7 @@ return { ["(120-200)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED", }, ["(120-200)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__31", }, ["(120-240)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38", }, + ["(120-240)% increased explicit modifier magnitudes"] = { "LocalExplicitModEffectUnique__1", }, ["(125-150)% increased charges per use"] = { "FlaskChargesUsedUnique__5", "FlaskChargesUsedUnique___2", }, ["(125-150)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBodyInt8", }, ["(125-150)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueGlovesInt6", }, @@ -1588,17 +1668,17 @@ return { ["(15-18)% increased cast speed"] = { "IncreasedCastSpeedUniqueSceptre6", }, ["(15-18)% increased strength"] = { "PercentageStrengthUniqueBootsStrInt2", }, ["(15-19)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand5", }, - ["(15-20)% chance to block spell damage"] = { "SpellBlockPercentageUniqueBootsInt5", }, + ["(15-20)% chance to block spell damage"] = { "SpellBlockPercentageUniqueBootsInt5", "SpellBlockPercentageUniqueShieldInt18", }, ["(15-20)% chance to maim on hit"] = { "LocalMaimOnHitChanceUnique__1", }, ["(15-20)% chance to shock"] = { "ChanceToShockUniqueOneHandSword7", }, ["(15-20)% increased area of effect"] = { "AreaOfEffectUnique__8", }, ["(15-20)% increased armour"] = { "GlobalPhysicalDamageReductionRatingPercentUnique__1", "IncreasedPhysicalDamageReductionRatingPercentUniqueJewel50", }, ["(15-20)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueSceptre9", "LocalIncreasedAttackSpeedUnique__25", "LocalIncreasedAttackSpeedUnique__33", "LocalIncreasedAttackSpeedUnique__39", }, - ["(15-20)% increased cast speed"] = { "IncreasedCastSpeedUniqueAmulet1", "IncreasedCastSpeedUniqueClaw7", "IncreasedCastSpeedUnique__11__", "IncreasedCastSpeedUnique__14", "IncreasedCastSpeedUnique__16", }, + ["(15-20)% increased cast speed"] = { "IncreasedCastSpeedUniqueAmulet1", "IncreasedCastSpeedUniqueClaw7", "IncreasedCastSpeedUnique__11__", "IncreasedCastSpeedUnique__16", }, ["(15-20)% increased chaos damage"] = { "IncreasedChaosDamageUniqueCorruptedJewel2", }, ["(15-20)% increased cold damage per 1% cold resistance above 75%"] = { "ColdDamagePerResistanceAbove75Unique__1", }, ["(15-20)% increased cold damage per 1% missing cold resistance, up to a maximum of 300%"] = { "ColdDamagePerMissingColdResistanceUnique__1", }, - ["(15-20)% increased cold damage per frenzy charge"] = { "IncreasedColdDamagePerFrenzyChargeUnique__1", "IncreasedColdDamagePerFrenzyChargeUnique__2", }, + ["(15-20)% increased cold damage per frenzy charge"] = { "IncreasedColdDamagePerFrenzyChargeUnique__1", }, ["(15-20)% increased cooldown recovery rate"] = { "GlobalCooldownRecoveryUnique__1", }, ["(15-20)% increased damage with hits against chilled enemies"] = { "IncreasedDamageToChilledEnemies1", }, ["(15-20)% increased damage with poison per power charge"] = { "PoisonDamagePerPowerChargeUnique__1", }, @@ -1627,7 +1707,7 @@ return { ["(15-25)% increased attack and cast speed while at maximum fortification"] = { "AttackAndCastSpeedFortifyUnique__1", }, ["(15-25)% increased attack speed"] = { "LocalIncreasedAccuracyUnique__2", }, ["(15-25)% increased cast speed"] = { "IncreasedCastSpeedUnique__22", }, - ["(15-25)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique14", "LocalCriticalStrikeChanceUnique__12", "LocalCriticalStrikeChanceUnique__5", }, + ["(15-25)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique14", "LocalCriticalStrikeChanceUnique__12", }, ["(15-25)% increased damage while leeching"] = { "IncreasedDamageWhileLeechingUnique__2__", }, ["(15-25)% increased damage with hits and ailments against cursed enemies"] = { "HitAndAilmentDamageCursedEnemiesUnique__1", }, ["(15-25)% increased effect of shock"] = { "ShockEffectUnique__1", }, @@ -1642,6 +1722,7 @@ return { ["(15-25)% increased life reservation efficiency of skills"] = { "LIfeReservationEfficiencyUnique__1", }, ["(15-25)% increased light radius"] = { "LightRadiusUnique__5", "LightRadiusUnique__7_", }, ["(15-25)% increased lightning damage"] = { "LightningDamagePercentUniqueRing34", }, + ["(15-25)% increased mana cost efficiency"] = { "ManaCostEffiencyUnique__1", }, ["(15-25)% increased mana regeneration rate"] = { "ManaRegenerationUnique__1", }, ["(15-25)% increased maximum energy shield"] = { "TalismanIncreasedEnergyShield", }, ["(15-25)% increased maximum life"] = { "MaximumLifeUnique__5", }, @@ -1660,6 +1741,7 @@ return { ["(15-29)% increased spell damage"] = { "VillageWeaponSpellDamageTwoHand1", }, ["(15-30)% chance to impale enemies on hit with attacks"] = { "AttackImpaleChanceUnique__3", }, ["(15-30)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__21", }, + ["(15-30)% increased flask effect duration"] = { "IncreasedFlaskDurationUnique__2", }, ["(15-30)% increased global accuracy rating"] = { "AccuracyPercentUniqueBow5", }, ["(15-30)% increased life recovery from flasks"] = { "FlaskLifeRecoveryUnique__1", }, ["(15-30)% increased mana recovery from flasks"] = { "FlaskManaRecoveryUnique__1", }, @@ -1672,7 +1754,7 @@ return { ["(150-170)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__28__", }, ["(150-180)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18", }, ["(150-180)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2", }, - ["(150-180)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__10", "LocalIncreasedEnergyShieldPercentUnique__13", "LocalIncreasedEnergyShieldPercentUnique__16", }, + ["(150-180)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__10", "LocalIncreasedEnergyShieldPercentUnique__16", }, ["(150-180)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5", }, ["(150-180)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__46", }, ["(150-190)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__11", }, @@ -1687,7 +1769,7 @@ return { ["(150-200)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__2", "LocalIncreasedEvasionRatingPercentUnique__4", }, ["(150-200)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueSceptre2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8", "LocalIncreasedPhysicalDamageUniqueOneHandMace5", }, ["(150-200)% increased skeleton duration"] = { "SkeletonDurationUniqueTwoHandSword4", }, - ["(150-200)% increased spell damage"] = { "SpellDamageOnWeaponUniqueDagger1", "SpellDamageUnique__15", }, + ["(150-200)% increased spell damage"] = { "SpellDamageOnWeaponUniqueDagger1", "SpellDamageOnWeaponUniqueStaff38", "SpellDamageUnique__15", }, ["(150-230)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35", }, ["(150-250)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25", }, ["(150-250)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__26", }, @@ -1823,6 +1905,7 @@ return { ["(20-30)% increased charge recovery"] = { "FlaskChargesAddedIncreasePercentUnique__2", }, ["(20-30)% increased cold damage"] = { "ColdDamagePercentUniqueBelt9b", "ColdDamagePercentUnique__7", "ColdDamagePercentUnique___11", "TalismanIncreasedColdDamage", }, ["(20-30)% increased cold damage if you have used a fire skill recently"] = { "IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1", }, + ["(20-30)% increased cold damage per frenzy charge"] = { "IncreasedColdDamagePerFrenzyChargeUnique__2", }, ["(20-30)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueOneHandSword8", "LocalCriticalStrikeChanceUniqueTwoHandAxe_1", "LocalCriticalStrikeChanceUniqueWand6_", "LocalCriticalStrikeChanceUnique__23", "LocalCriticalStrikeChanceUnique__27", "LocalCriticalStrikeChanceUnique__28", }, ["(20-30)% increased critical strike chance with bows"] = { "CriticalStrikeChanceImplicitQuiver8New", }, ["(20-30)% increased damage over time"] = { "DegenerationDamageUnique__2", "DegenerationDamageUnique__5", }, @@ -1837,9 +1920,11 @@ return { ["(20-30)% increased fire damage if you have used a cold skill recently"] = { "IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1", }, ["(20-30)% increased global accuracy rating"] = { "IncreasedAccuracyPercentImplicitQuiver7", "IncreasedAccuracyPercentImplicitQuiver7New", }, ["(20-30)% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitQuiver13", "CriticalStrikeChanceImplicitRing1", "CriticalStrikeChanceUniqueGlovesDexInt6", }, + ["(20-30)% increased global critical strike chance per blue socket"] = { "CriticalStrikeChancePerBlueSocketUnique__1", }, ["(20-30)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueBelt9d", "TalismanIncreasedPhysicalDamage", }, ["(20-30)% increased light radius"] = { "LightRadiusUniqueBodyStrInt5", }, ["(20-30)% increased lightning damage"] = { "LightningDamagePercentUniqueBelt9c", "LightningDamagePercentUnique__7", "LightningDamageUniqueHelmetDexInt1", "LightningDamageUniqueWand1", "TalismanIncreasedLightningDamage", }, + ["(20-30)% increased mana cost efficiency"] = { "ManaCostEfficiencyUnique__1", }, ["(20-30)% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUnique__1", }, ["(20-30)% increased mana regeneration rate"] = { "ManaRegenerationImplicitAmulet1", "ManaRegenerationUniqueBootsDex5", "ManaRegenerationUniqueJewel30", "ManaRegenerationUnique__2", "ManaRegenerationUnique__4", }, ["(20-30)% increased maximum mana"] = { "MaximumManaUnique___2", "TalismanIncreasedMana", }, @@ -1847,6 +1932,7 @@ return { ["(20-30)% increased movement speed if you've cast dash recently"] = { "MovementSpeedIfUsedDashRecentlyUnique__1", }, ["(20-30)% increased projectile speed"] = { "ProjectileSpeedImplicitQuiver4New", "ProjectileSpeedUniqueQuiver4", "ProjectileSpeedUnique__10", "ProjectileSpeedUnique__6", }, ["(20-30)% increased rarity of fish caught"] = { "FishingRarityUnique__2_", }, + ["(20-30)% increased rarity of fish caught per held dead fish"] = { "FishingDeadFish", }, ["(20-30)% increased rarity of items found"] = { "ItemFoundRarityIncreaseImplicitDemigodsBelt1", "ItemFoundRarityIncreaseUniqueBootsDemigods1", "ItemFoundRarityIncreaseUniqueBootsDexInt1", "ItemFoundRarityIncreaseUniqueHelmetWreath1", "ItemFoundRarityIncreaseUniqueStrDexHelmet1", "ItemFoundRarityIncreaseUnique__9", }, ["(20-30)% increased spell damage"] = { "SpellDamageUniqueSceptre2", "SpellDamageUniqueSceptre5", "SpellDamageUniqueShieldStrInt1", "TalismanSpellDamage", }, ["(20-30)% increased stun duration on enemies"] = { "StunDurationImplicitBelt1", "StunDurationUniqueQuiver2", "StunDurationUnique__1", "StunDurationUnique__2", }, @@ -1869,14 +1955,17 @@ return { ["(20-30)% reduced trap throwing speed"] = { "TrapThrowSpeedUnique__1_", }, ["(20-35)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueStaff14", "LocalCriticalStrikeChanceUnique__7", }, ["(20-35)% reduced reservation efficiency of skills"] = { "ReservationEfficiencyUnique__10", "ReservationEfficiencyUnique__6", "ReservationEfficiencyUnique__7", "ReservationEfficiencyUnique__8", "ReservationEfficiencyUnique__9", }, + ["(20-40)% chance to gain a flask charge when you deal a critical strike"] = { "FlaskChanceRechargeOnCritUnique__2", }, ["(20-40)% chance to gain a frenzy charge for each enemy you hit with a critical strike"] = { "FrenzyChargePerEnemyCritUnique__1", }, ["(20-40)% increased area of effect of aura skills"] = { "IncreasedAuraRadiusUniqueBodyDexInt4", }, ["(20-40)% increased attack damage if you've been hit recently"] = { "AttackDamageIfHitRecentlyUnique", }, + ["(20-40)% increased cast speed"] = { "IncreasedCastSpeedUniqueStaff1", "IncreasedCastSpeedUnique__14", }, ["(20-40)% increased chaos damage"] = { "IncreasedChaosDamageUnique__5", }, ["(20-40)% increased charge recovery"] = { "FlaskChargesAddedIncreasePercentUnique__3", }, ["(20-40)% increased cold damage"] = { "ColdDamagePercentUnique__9", }, ["(20-40)% increased cooldown recovery rate"] = { "TinctureCooldownRecoveryUnique__1", }, ["(20-40)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__20", "LocalCriticalStrikeChanceUnique__22", "LocalCriticalStrikeChanceUnique__25", "LocalCriticalStrikeChanceUnique__26", }, + ["(20-40)% increased critical strike chance per socketed hypnotic eye jewel"] = { "LocalCriticalChancePercentPerSocketedHypnoticUnique__1", }, ["(20-40)% increased damage if you have consumed a corpse recently"] = { "DamageIfConsumedCorpseUnique__1__", }, ["(20-40)% increased effect of non-curse auras from your skills while you have a linked target"] = { "AuraEffectWhileLinkedUnique__1", }, ["(20-40)% increased effect of non-damaging ailments"] = { "IncreasedAilmentEffectOnEnemiesUnique_2", }, @@ -1889,6 +1978,7 @@ return { ["(20-40)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueDagger12", }, ["(20-40)% increased power charge duration"] = { "ChargeBonusPowerChargeDuration", }, ["(20-40)% increased projectile damage"] = { "IncreasedProjectileDamageUniqueBootsDexInt4", }, + ["(20-40)% increased rage cost efficiency"] = { "RageCostEfficiencyUnique__1", }, ["(20-40)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUnique__10", }, ["(20-40)% increased spell damage"] = { "SpellDamageUniqueWand7", "SpellDamageUnique__11", }, ["(20-45)% increased spell damage"] = { "SpellDamageUnique__4", }, @@ -1956,6 +2046,7 @@ return { ["(25-35)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__15", }, ["(25-35)% increased damage"] = { "TalismanIncreasedDamage", }, ["(25-35)% increased fire damage"] = { "FireDamagePercentUniqueBodyInt4", }, + ["(25-35)% increased global physical damage per red socket"] = { "PhysicalDamgePerRedSocketUniqueOneHandSword5", }, ["(25-35)% increased projectile damage"] = { "IncreasedProjectileDamageUnique___11", }, ["(25-35)% increased quantity of gold dropped by slain enemies"] = { "IncreasedGoldFoundUnique__1", }, ["(25-35)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueShieldInt3", }, @@ -1973,20 +2064,24 @@ return { ["(25-40)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueBelt2", }, ["(25-40)% increased mana regeneration rate"] = { "ManaRegenerationUnique__12", "ManaRegenerationUnique__13", }, ["(25-40)% increased melee damage"] = { "MeleeDamageUnique__2", }, + ["(25-50)% chance to freeze"] = { "ChanceToFreezeUniqueStaff2", }, ["(25-50)% chance to inflict brittle"] = { "AlternateColdAilmentUnique__1", }, ["(25-50)% chance to sap enemies"] = { "AlternateLightningAilmentUnique__1__", }, ["(25-50)% chance to scorch enemies"] = { "AlternateFireAilmentUnique__1", }, ["(25-50)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniquSceptre10", }, ["(25-50)% increased duration"] = { "FlaskEffectDurationUnique__1", }, + ["(25-50)% increased duration of shrine effects on you"] = { "ShrineEffectDurationUniqueHelmetDexInt3", }, + ["(25-50)% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUniqueHelmetDexInt3", }, + ["(25-50)% increased physical damage per socketed murderous eye jewel"] = { "LocalPhysicalDamagePercentPerSocketedMurderousUnique__1", }, ["(25-50)% increased valour gained"] = { "BannerResourceGainedUnique__1", }, ["(25-50)% reduced area of effect of hex skills"] = { "CurseAreaOfEffectUnique__4", }, + ["(25-75)% increased light radius"] = { "LightRadiusUniqueAmulet87", }, ["(250-270)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueDagger9", }, ["(250-275)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueWand1", }, ["(250-300)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__14", }, ["(250-300)% increased charges per use"] = { "LocalFlaskChargesUsedUniqueFlask2", }, ["(250-300)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercent__1", }, ["(250-300)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__19___", }, - ["(250-300)% increased global damage"] = { "AllDamageUnique__3", }, ["(250-300)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4", "LocalIncreasedPhysicalDamagePercentUniqueRapier1", "LocalIncreasedPhysicalDamagePercentUnique__49", }, ["(250-350)% increased armour, evasion and energy shield"] = { "LocalIncreasedArmourEvasionEnergyShieldUnique__1_", }, ["(250-350)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueAmulet18", }, @@ -1999,7 +2094,6 @@ return { ["(270-340)% increased armour, evasion and energy shield"] = { "LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i", }, ["(280-320)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__24", }, ["(29-32)% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitBow3", }, - ["(29-33)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand13", }, ["(3-10)% increased spell damage"] = { "SpellDamageImplicitArmour1", }, ["(3-4) to (7-8) added fire damage per 100 of maximum life or maximum mana, whichever is lower"] = { "AddedFireDamagePer100LowestOfLifeOrManaUnique__1", }, ["(3-4)% increased defences per minion from your non-vaal skills"] = { "GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1", }, @@ -2016,6 +2110,7 @@ return { ["(3-6)% increased light radius"] = { "JewelImplicitLightRadius", }, ["(3-6)% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUniqueJewel51", }, ["(3-6)% increased movement speed"] = { "MovementVelocityVictorAmulet", }, + ["(30-34)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand13", }, ["(30-35)% increased chaos damage"] = { "IncreasedChaosDamageUnique__1", }, ["(30-35)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueRing11_", }, ["(30-35)% increased spell critical strike chance"] = { "VillageSpellCriticalStrikeChanceTwoHand", }, @@ -2066,7 +2161,7 @@ return { ["(30-50)% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayUnique__1", }, ["(30-50)% increased amount recovered"] = { "FlaskIncreasedRecoveryAmountUniqueFlask4", "FlaskIncreasedRecoveryAmountUnique__1", }, ["(30-50)% increased cold damage"] = { "ColdDamagePercentUnique__3", "ColdDamagePercentUnique__5", }, - ["(30-50)% increased critical strike chance"] = { "LocalCriticalStrikeChanceImplicitBow1", "LocalCriticalStrikeChanceUniqueOneHandAxe8_", }, + ["(30-50)% increased critical strike chance"] = { "LocalCriticalStrikeChanceImplicitBow1", "LocalCriticalStrikeChanceUniqueOneHandAxe8_", "LocalCriticalStrikeChanceUnique__5", }, ["(30-50)% increased critical strike chance against blinded enemies"] = { "CriticalChanceAgainstBlindedEnemiesUnique__2__", }, ["(30-50)% increased damage with hits and ailments against marked enemy"] = { "DamageAgainstMarkedEnemiesUnique__1", }, ["(30-50)% increased duration"] = { "FlaskEffectDurationUnique__3", }, @@ -2081,12 +2176,13 @@ return { ["(30-50)% increased fire damage with hits and ailments against blinded enemies"] = { "FireDamageToBlindEnemies__1", }, ["(30-50)% increased global critical strike chance"] = { "CriticalStrikeChanceUnique__6", }, ["(30-50)% increased lightning damage"] = { "LightningDamagePercentUniqueStaff8", }, + ["(30-50)% increased mana cost efficiency"] = { "ManaCostEffiencyUnique__2", }, ["(30-50)% increased mana regeneration rate"] = { "ManaRegenerationUniqueHelmetStrInt_1", "ManaRegenerationUniqueOneHandMace3", "ManaRegenerationUnique__15", }, ["(30-50)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8", }, ["(30-50)% increased projectile damage"] = { "IncreasedProjectileDamageUnique__1", "IncreasedProjectileDamageUnique___10_", "IncreasedProjectileDamageUnique___12", "IncreasedProjectileDamageUnique___4", }, ["(30-50)% increased projectile speed"] = { "ProjectileSpeedUnique__8", }, ["(30-50)% increased rarity of items found during effect"] = { "FlaskItemRarityUniqueFlask1", }, - ["(30-50)% increased spell damage"] = { "SpellDamageUnique__10", }, + ["(30-50)% increased spell damage"] = { "SpellDamageUnique__10", "SpellDamageUnique__19", }, ["(30-50)% increased stun duration on enemies"] = { "StunDurationUniqueOneHandMace6", }, ["(30-50)% increased totem placement speed"] = { "SummonTotemCastSpeedUnique__2", }, ["(30-50)% increased ward"] = { "LocalIncreasedWardPercentUnique__3", }, @@ -2094,6 +2190,7 @@ return { ["(30-50)% reduced rarity of items found"] = { "ItemFoundRarityDecreaseUniqueTwoHandMace4", }, ["(30-50)% reduced totem damage"] = { "ReducedTotemDamageUniqueJewel26", }, ["(30-50)% slower restoration of ward"] = { "WardDelayRecoveryUnique__2", }, + ["(30-60)% increased elemental damage"] = { "ElementalDamageUnique__5", }, ["(30-60)% increased evasion rating and armour"] = { "GlobalEvasionRatingAndArmourPercentUnique__1_", }, ["(30-60)% increased spell damage"] = { "SpellDamageUnique__14", }, ["(300-340)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__6", }, @@ -2103,12 +2200,14 @@ return { ["(300-400)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4", }, ["(300-400)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionRatingUnique__1", "LocalIncreasedArmourAndEvasionUnique__16__", }, ["(300-400)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2", "LocalIncreasedEvasionAndEnergyShieldUnique__20", }, + ["(300-400)% increased global damage"] = { "AllDamageUnique__3", }, ["(31-35)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand14", }, ["(31-43)% increased chaos damage"] = { "IncreasedChaosDamageUniqueWand_1", }, ["(33-37)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand15", }, ["(33-48)% increased ward"] = { "LocalIncreasedWardPercentUnique__1_", }, ["(34-48) life gained when you block"] = { "GainLifeOnBlockUniqueAmulet16", }, ["(35-39)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand16", }, + ["(35-40)% increased cast speed"] = { "IncreasedCastSpeedFishing__Unique2", }, ["(35-45)% increased duration"] = { "FlaskEffectIncreasedDurationReducedEffect1", }, ["(35-50)% increased chill duration on enemies"] = { "IncreasedChillDurationUnique__1", }, ["(35-50)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__14", }, @@ -2146,6 +2245,7 @@ return { ["(4-8)% increased cast speed"] = { "IncreasedCastSpeedUnique__1", }, ["(4-8)% increased maximum life"] = { "MaximumLifeUnique__4_", "MaximumLifeUnique__6", }, ["(4-8)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueShieldInt4", }, + ["(40-45)% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDaggerNew1", }, ["(40-45)% increased mana regeneration rate"] = { "ManaRegenerationUnique__8", }, ["(40-50)% additional physical damage reduction during effect"] = { "LocalFlaskPhysicalDamageReductionUnique__1", }, ["(40-50)% chance to avoid bleeding"] = { "ChanceToAvoidBleedingUnique__1", }, @@ -2155,7 +2255,6 @@ return { ["(40-50)% increased area of effect"] = { "AreaOfEffectUniqueBodyDexInt1", "AreaOfEffectUnique__10", }, ["(40-50)% increased aspect of the spider debuff duration"] = { "AspectOfSpiderDurationUnique__1", }, ["(40-50)% increased charges per use"] = { "FlaskChargesUsedUnique__9_", }, - ["(40-50)% increased cold damage"] = { "ColdDamagePercentUniqueStaff2", }, ["(40-50)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueDagger8", "LocalCriticalStrikeChanceUnique__19", "LocalCriticalStrikeChanceUnique__4", }, ["(40-50)% increased damage with hits and ailments against bleeding enemies"] = { "DamageAgainstBleedingEnemiesUnique__1", }, ["(40-50)% increased damage with hits and ailments against blinded enemies"] = { "DamageAgainstBlindedEnemiesUnique__1", }, @@ -2187,9 +2286,10 @@ return { ["(40-60)% increased energy shield"] = { "LocalIncreasedEnergyShieldUniqueBootsInt4", "LocalIncreasedEnergyShieldUniqueGlovesInt4", }, ["(40-60)% increased fire damage"] = { "SpellDamageUniqueDagger10", }, ["(40-60)% increased fire damage while affected by herald of ash"] = { "HeraldBonusAshFireDamage", }, - ["(40-60)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueGlovesStr3", "CriticalStrikeChanceUniqueWand10", }, + ["(40-60)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueGlovesStr3", }, ["(40-60)% increased global damage"] = { "AllDamageUniqueSceptre8", }, ["(40-60)% increased lightning damage while affected by herald of thunder"] = { "HeraldBonusThunderLightningDamage", }, + ["(40-60)% increased mana cost efficiency of minion skills"] = { "MinionSkillManaCostEfficiencyUnique__1", }, ["(40-60)% increased mana regeneration rate"] = { "ManaRegenerationUnique__11___", }, ["(40-60)% increased mine throwing speed"] = { "RemoteMineLayingSpeedUniqueStaff11", }, ["(40-60)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword7", "LocalIncreasedPhysicalDamagePercentUnique__6", "LocalIncreasedPhysicalDamagePercentUnique__8", }, @@ -2233,9 +2333,8 @@ return { ["(5-10)% chance to shock"] = { "ChanceToShockUnique__3", }, ["(5-10)% increased attack and cast speed"] = { "AttackAndCastSpeedUniqueRing39", "AttackAndCastSpeedUnique__2", "AttackAndCastSpeedUnique__5", }, ["(5-10)% increased attack speed"] = { "IncreasedAttackSpeedTransformedUnique__1", "IncreasedAttackSpeedUniqueGlovesStrDex1", "IncreasedAttackSpeedUniqueRing37", "IncreasedAttackSpeedUnique__2", "IncreasedAttackSpeedUnique__6", "LocalIncreasedAttackSpeedUniqueStaff9", "LocalIncreasedAttackSpeedUniqueWand9", "LocalIncreasedAttackSpeedUnique__3", "LocalIncreasedAttackSpeedUnique__36", }, - ["(5-10)% increased cast speed"] = { "IncreasedCastSpeedUniqueRing38", "IncreasedCastSpeedUnique__15_", "IncreasedCastSpeedUnique__26", "IncreasedCastSpeedUnique__6", }, + ["(5-10)% increased cast speed"] = { "IncreasedCastSpeedUnique__15_", "IncreasedCastSpeedUnique__26", "IncreasedCastSpeedUnique__6", }, ["(5-10)% increased effect of your curses"] = { "CurseEffectivenessUnique__3_", }, - ["(5-10)% increased elemental damage per 1% fire, cold, or lightning resistance above 75%"] = { "ElementalDamagePerResistanceAbove75Unique_1", }, ["(5-10)% increased experience gain of gems"] = { "GlobalGemExperienceGainUnique__1", }, ["(5-10)% increased global defences"] = { "AllDefencesVictorAmulet", "AllDefensesImplicitJetRing", }, ["(5-10)% increased maximum life"] = { "MaximumLifeUnique__21", }, @@ -2281,6 +2380,7 @@ return { ["(50-100)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8", }, ["(50-100)% increased charges gained by other flasks during effect"] = { "IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1", }, ["(50-100)% increased effect of socketed abyss jewels"] = { "AbyssJewelEffectUnique__1", }, + ["(50-100)% increased enchantment modifier magnitudes"] = { "LocalEnchantStatMagnitudeUnique__1", }, ["(50-100)% increased energy shield recovery rate"] = { "EnergyShieldRecoveryRateUnique__1", }, ["(50-100)% increased maximum mana"] = { "MaximumManaUniqueStaff6", }, ["(50-100)% increased projectile speed"] = { "ProjectileSpeedUniqueBow4_", }, @@ -2288,6 +2388,7 @@ return { ["(50-100)% more main hand attack speed"] = { "WingsOfEntropyMainHandAttackSpeedFinalUnique__1_", }, ["(50-100)% of suppressed spell damage taken bypasses energy shield"] = { "SuppressedDamageBypassEnergyShieldUnique_1", }, ["(50-100)% of suppressed spell damage taken recouped as energy shield"] = { "SuppressedDamageRecoupedAsEnergyShield_1", }, + ["(50-55)% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDaggerNew2", }, ["(50-55)% reduced cold resistance"] = { "ReducedColdResistanceUnique__1", }, ["(50-55)% reduced fire resistance"] = { "ReducedFireResistanceUnique__1", }, ["(50-55)% reduced lightning resistance"] = { "ReducedLightningResistanceUnique__1", }, @@ -2315,12 +2416,14 @@ return { ["(50-75)% increased effect of non-damaging ailments inflicted by summoned skitterbots"] = { "SkitterbotIncreasedAilmentEffectUnique__1", }, ["(50-75)% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUnique__1", }, ["(50-75)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1", "LocalIncreasedPhysicalDamagePercentUnique__15", "LocalIncreasedPhysicalDamagePercentUnique__52", }, + ["(50-75)% increased totem duration"] = { "TotemDurationUniqueStaff38", }, ["(50-75)% reduced trap duration"] = { "TrapDurationUniqueBelt6", }, ["(50-80)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1", }, ["(50-80)% increased chaos damage"] = { "IncreasedChaosDamageUniqueBodyStrDex4", }, ["(50-80)% increased cooldown recovery rate of travel skills"] = { "TravelSkillCooldownRecoveryUnique__1_", }, ["(50-80)% increased duration"] = { "FlaskEffectDurationUnique__7", }, ["(50-80)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBootsInt6", }, + ["(50-80)% increased fishing range"] = { "FishingCastDistanceUnique__2", }, ["(50-80)% increased ward"] = { "LocalIncreasedWardPercentUnique__4_", }, ["(500-1000)% increased stun and block recovery"] = { "StunRecoveryUnique__4", }, ["(500-1000)% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUnique__2", }, @@ -2351,6 +2454,8 @@ return { ["(6-7)% chance to block spell damage"] = { "SpellBlockUniqueBootsInt5", }, ["(6-8) to (12-13) added cold damage per frenzy charge"] = { "ChargeBonusAddedColdDamagePerFrenzyCharge", }, ["(6-8)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__8", }, + ["(6-8)% increased elemental damage per 1% fire, cold, or lightning resistance above 75%"] = { "ElementalDamagePerResistanceAbove75Unique_1", }, + ["(6-8)% increased global defences per empty socket"] = { "GlobalDefensesPerEmptySocketUnique__1", }, ["(6-8)% increased maximum life"] = { "MaximumLifeUniqueJewel52", "MaximumLifeUnique__15", }, ["(6-8)% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueRing9", }, ["(6-8)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueBelt3", }, @@ -2372,6 +2477,7 @@ return { ["(60-120)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__16", }, ["(60-120)% increased implicit modifier magnitudes"] = { "ClassicNebulisImplicitModifierMagnitudeUnique_1", "ReplicaNebulisImplicitModifierMagnitudeUnique_1", }, ["(60-140)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__7", }, + ["(60-65)% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDaggerNew3", }, ["(60-70)% increased spell damage"] = { "SpellDamageOnWeaponUniqueDagger4", }, ["(60-70)% reduced elemental resistances"] = { "IncreasedElementalResistancesUnique__2_", }, ["(60-75)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueHelmetDex6", }, @@ -2402,6 +2508,7 @@ return { ["(7-10)% chance to block spell damage"] = { "SpellBlockPercentageUniqueTwoHandAxe6", }, ["(7-10)% chance to freeze"] = { "ChanceToFreezeUniqueQuiver5", }, ["(7-10)% increased attack speed"] = { "IncreasedAttackSpeedUniqueQuiver6", "LocalIncreasedAttackSpeedUniqueOneHandAxe7", "LocalIncreasedAttackSpeedUniqueOneHandSword6", }, + ["(7-10)% increased cast speed"] = { "IncreasedCastSpeedImplicitRing1", }, ["(7-10)% increased cooldown recovery rate of travel skills per frenzy charge"] = { "TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1", }, ["(7-10)% increased effect of elusive on you per power charge"] = { "ElusiveBuffEffectPerPowerChargeUnique__1", }, ["(7-10)% increased elemental damage"] = { "ElementalDamageUnique__4", }, @@ -2447,6 +2554,7 @@ return { ["(8-12)% chance for traps to trigger an additional time"] = { "TrapTriggerTwiceChanceUnique__1", }, ["(8-12)% chance to block attack damage"] = { "BlockPercentUnique__1", }, ["(8-12)% chance to block spell damage"] = { "SpellBlockPercentageUniqueShieldDex6", }, + ["(8-12)% increased area of effect per red socket"] = { "AreaOfEffectPerRedSocketUnique__1", }, ["(8-12)% increased attack speed"] = { "IncreasedAttackSpeedUniqueGlovesDexInt_1", "IncreasedAttackSpeedUniqueQuiver3", "IncreasedAttackSpeedUniqueQuiver5", "IncreasedAttackSpeedUniqueQuiver7", "IncreasedAttackSpeedUniqueShieldInt5", "IncreasedAttackSpeedUnique__5", "LocalIncreasedAttackSpeedUniqueTwoHandMace8_", "LocalIncreasedAttackSpeedUnique__16", "LocalIncreasedAttackSpeedUnique__2", "LocalIncreasedAttackSpeedUnique__24", "LocalIncreasedAttackSpeedUnique__28", "LocalIncreasedAttackSpeedUnique__31", "LocalIncreasedAttackSpeedUnique__9", }, ["(8-12)% increased attack speed if you've dealt a critical strike recently"] = { "AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1", }, ["(8-12)% increased burning damage for each time you have shocked a non-shocked enemy recently, up to a maximum of 120%"] = { "BurningDamagePerEnemyShockedRecentlyUnique__1_", }, @@ -2471,16 +2579,17 @@ return { ["(8-14)% increased strength"] = { "TalismanIncreasedStrength", }, ["(8-15)% increased attack and cast speed while physical aegis is depleted"] = { "AttackAndCastSpeedWithoutPhysicalAegisUnique__1", }, ["(8-15)% increased cast speed"] = { "IncreasedCastSpeedUnique__19__", }, - ["(8-16)% increased attack speed"] = { "IncreasedAttackSpeedUnique__8", }, + ["(8-16)% increased attack speed"] = { "IncreasedAttackSpeedUnique__8", "LocalIncreasedAttackSpeedUnique__46", }, + ["(8-16)% increased attack speed per socketed searching eye jewel"] = { "LocalAttackSpeedPercentPerSocketedSearchingUnique__1", }, ["(80-100)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9", }, ["(80-100)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__10_", "LocalIncreasedArmourAndEvasionUnique__2", }, - ["(80-100)% increased chaos damage"] = { "IncreasedChaosDamageUnique__2", }, ["(80-100)% increased charges per use"] = { "FlaskChargesUsedUnique__6_", }, ["(80-100)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__14", }, ["(80-100)% increased elemental damage"] = { "ElementalDamageUniqueSceptre7", }, ["(80-100)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__6", "LocalIncreasedEnergyShieldPercentUnique___4_", "LocalIncreasedEnergyShieldUniqueShieldInt3", }, ["(80-100)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__8", }, ["(80-100)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyDex3", "LocalIncreasedEvasionRatingPercentUniqueBootsDex1", "LocalIncreasedEvasionRatingPercentUniqueDexHelmet2", "LocalIncreasedEvasionRatingPercentUniqueHelmetDex5", "LocalIncreasedEvasionRatingPercentUnique__5", "LocalIncreasedEvasionRatingPercentUnique__8", }, + ["(80-100)% increased implicit modifier magnitudes"] = { "ImplicitModifierMagnitudeUnique_2", }, ["(80-100)% increased lightning damage"] = { "WeaponLightningDamageUniqueOneHandMace3", }, ["(80-100)% increased mana regeneration rate"] = { "ManaRegenerationUniqueAmulet10", "ManaRegenerationUnique__9___", }, ["(80-100)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow2", "LocalIncreasedPhysicalDamagePercentUniqueClaw4", "LocalIncreasedPhysicalDamagePercentUniqueClaw5", "LocalIncreasedPhysicalDamagePercentUniqueDagger2", "LocalIncreasedPhysicalDamagePercentUniqueDagger3", "LocalIncreasedPhysicalDamagePercentUniqueSceptre1", "LocalIncreasedPhysicalDamagePercentUniqueStaff14", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2", "LocalIncreasedPhysicalDamagePercentUnique__12", "LocalIncreasedPhysicalDamageUniqueOneHandSceptre10", }, @@ -2492,15 +2601,18 @@ return { ["(80-120)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6", }, ["(80-120)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3", "LocalIncreasedArmourAndEnergyShieldUnique__16", "LocalIncreasedArmourAndEnergyShieldUnique__27", "LocalIncreasedArmourAndEnergyShieldUnique__5", }, ["(80-120)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueBodyStrDex5", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5", "LocalIncreasedArmourAndEvasionUnique__23", "LocalIncreasedArmourAndEvasionUnique__27", }, + ["(80-120)% increased chaos damage"] = { "IncreasedChaosDamageUnique__2", }, ["(80-120)% increased damage with vaal skills"] = { "VaalSkillDamageUnique__1", }, ["(80-120)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__27", }, ["(80-120)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__28", "LocalIncreasedEvasionAndEnergyShieldUnique__37", }, ["(80-120)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1", }, + ["(80-120)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueWand10", }, ["(80-120)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3", "LocalIncreasedPhysicalDamagePercentUniqueSceptre5", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword5", }, ["(80-120)% increased recovery rate"] = { "FlaskIncreasedRecoverySpeedUnique___1", }, ["(80-120)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUnique__5", }, ["(80-120)% increased vaal skill critical strike chance"] = { "VaalSkillCriticalStrikeChanceCorruptedJewel6", }, ["(80-130)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__29", }, + ["(80-140)% increased cold damage"] = { "ColdDamagePercentUniqueStaff2", }, ["(80-140)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueWand9", }, ["(80-90)% reduced amount recovered"] = { "FlaskLifeLeechIsInstantDuringEffect", }, ["(80-95)% increased physical damage"] = { "LocalIncreasedPhysicalDamageUniqueOneHandSword11", }, @@ -2517,7 +2629,7 @@ return { ["(90-140)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique6", }, ["(90-150)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_", }, ["+# accuracy rating per # intelligence"] = { "AccuracyPerIntelligenceUnique__1", }, - ["+# armour per summoned totem"] = { "ArmourPerTotemUnique__1", }, + ["+# armour per summoned totem"] = { "ArmourPerTotemUnique__1", "DivergentArmourPerTotemUnique__1", }, ["+# armour while stationary"] = { "AddedArmourWhileStationaryUnique__1", }, ["+# armour while you do not have avatar of fire"] = { "ArmourWithoutAvatarOfFireUnique__1", }, ["+# dexterity requirement"] = { "DexterityRequirementsUnique__1", }, @@ -2527,7 +2639,6 @@ return { ["+# mana per # strength"] = { "ManaPerStrengthUnique__1__", }, ["+# maximum energy shield per # strength"] = { "EnergyShieldPer5StrengthUnique__1", }, ["+# metres to melee strike range"] = { "IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13", "IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42", }, - ["+# metres to melee strike range per white socket"] = { "MeleeRangePerWhiteSocketUniqueOneHandSword5", }, ["+# metres to melee strike range while at maximum frenzy charges"] = { "MeleeWeaponRangeAtMaximumFrenzyChargesUber1_", }, ["+# metres to melee strike range while fortified"] = { "MeleeWeaponRangeWhileFortifiedUber1", }, ["+# metres to weapon range"] = { "LocalIncreasedMeleeWeaponRangeEssence1", "LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1", "LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5", "LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_", "LocalIncreasedMeleeWeaponRangeUnique__1", "LocalIncreasedMeleeWeaponRangeUnique___2", "VillageLocalMeleeWeaponRange", }, @@ -2544,7 +2655,7 @@ return { ["+# to accuracy rating for each empty green socket on any equipped item"] = { "IncreasedAccuracyEmptyGreenSocketUnique__1", }, ["+# to accuracy rating per # dexterity on unallocated passives in radius"] = { "AccuracyRatingPerUnallocatedDexterityUnique__1_", }, ["+# to accuracy rating per # intelligence on unallocated passives in radius"] = { "AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1", }, - ["+# to all attributes"] = { "AllAttributesTestUniqueAmulet1", "AllAttributesUnique__13_", }, + ["+# to all attributes"] = { "AllAttributesTestUniqueAmulet1", "AllAttributesUnique__13_", "DivergentAllAttributesUnique__21", "DivergentAllAttributesUnique__6", }, ["+# to armour"] = { "ArmourPerPointToClassStartUnique__1", "IncreasedPhysicalDamageReductionRatingUniqueJewel9", "LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1", }, ["+# to armour per # evasion rating on equipped shield"] = { "ArmourPerEvasionRatingOnShieldUnique__1", }, ["+# to armour per endurance charge"] = { "ArmourPerEnduranceChargeUnique__1", }, @@ -2559,34 +2670,35 @@ return { ["+# to level of all chaos skill gems if # hunter items are equipped"] = { "GlobalChaosGemLevel6HunterItemsUnique__1", }, ["+# to level of all chaos spell skill gems"] = { "GlobalChaosSpellGemsLevelUniqueWand_1", "LocalIncreaseSocketedChaosGemLevelUnique__1", "VillageGlobalIncreaseChaosSpellSkillGemLevel", }, ["+# to level of all cold skill gems if # redeemer items are equipped"] = { "GlobalColdGemLevel6RedeemerItemsUnique__1", }, - ["+# to level of all cold spell skill gems"] = { "GlobalColdSpellGemsLevelUnique__1", "LocalIncreaseSocketedColdGemLevelUniqueStaff2", "VillageGlobalIncreaseColdSpellSkillGemLevel", }, + ["+# to level of all cold spell skill gems"] = { "GlobalColdSpellGemsLevelUnique__1", "VillageGlobalIncreaseColdSpellSkillGemLevel", }, ["+# to level of all fire skill gems if # warlord items are equipped"] = { "GlobalFireGemLevel6WarlordItemsUnique__1", }, ["+# to level of all fire spell skill gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueDagger10", "LocalIncreaseSocketedFireGemLevelUniqueStaff1", "VillageGlobalIncreaseFireSpellSkillGemLevel", }, + ["+# to level of all herald skill gems"] = { "TalismanEnchantGlobalHeraldGemlevel", }, ["+# to level of all lightning skill gems if # crusader items are equipped"] = { "GlobalLightningGemLevel6CrusaderItemsUnique__1", }, ["+# to level of all lightning spell skill gems"] = { "LocalIncreaseSocketedLightningGemLevelUniqueStaff8", "VillageGlobalIncreaseLightningSpellSkillGemLevel", }, - ["+# to level of all minion skill gems"] = { "GlobalIncreaseMinionSpellSkillGemLevelUnique__3", "GlobalIncreaseMinionSpellSkillGemLevelUnique__4", "VillageGlobalIncreaseMinionSpellSkillGemLevel", }, + ["+# to level of all minion skill gems"] = { "DivergentGlobalIncreaseMinionSpellSkillGemLevelUnique__3", "DivergentGlobalIncreaseMinionSpellSkillGemLevelUnique__4", "GlobalIncreaseMinionSpellSkillGemLevelUnique__3", "GlobalIncreaseMinionSpellSkillGemLevelUnique__4", "VillageGlobalIncreaseMinionSpellSkillGemLevel", }, ["+# to level of all non-exceptional support gems if # shaper items are equipped"] = { "GlobalSupportGemLevel6ShaperItemsUnique__1", }, ["+# to level of all physical skill gems if # elder items are equipped"] = { "GlobalPhysicalGemLevel6ElderItemsUnique__1", }, ["+# to level of all physical spell skill gems"] = { "GlobalPhysicalSpellGemsLevelUnique__1", "VillageGlobalIncreasePhysicalSpellSkillGemLevel", }, - ["+# to level of all raise zombie gems"] = { "MaximumMinionCountUniqueBootsInt4", }, - ["+# to level of all skill gems"] = { "GlobalSkillGemLevelUnique__1", }, + ["+# to level of all raise zombie gems"] = { "DivergentMaximumMinionCountUniqueBootsInt4", "MaximumMinionCountUniqueBootsInt4", }, + ["+# to level of all skill gems"] = { "GlobalSkillGemLevelUnique__1", "TalismanEnchantGlobalSkillGemLevel", }, ["+# to level of all spell skill gems"] = { "GlobalSpellGemsLevelUnique__1", "LocalIncreaseSocketedGemLevelUnique___3", "VillageGlobalIncreaseSpellSkillGemLevel", }, ["+# to level of all vaal skill gems"] = { "GlobalVaalGemsLevelImplicit1_", }, - ["+# to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4", "LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5", "LocalIncreaseSocketedAuraGemLevelUnique___1", "LocalIncreaseSocketedAuraGemLevelUnique___2___", "LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2", }, + ["+# to level of socketed aura gems"] = { "DivergentLocalIncreaseSocketedAuraGemLevelUnique___3", "LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4", "LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5", "LocalIncreaseSocketedAuraGemLevelUnique___1", "LocalIncreaseSocketedAuraGemLevelUnique___2___", "LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2", }, ["+# to level of socketed bow gems"] = { "LocalIncreaseSocketedBowGemLevelUniqueBow2", }, ["+# to level of socketed cold gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueClaw5", "LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2", "LocalIncreaseSocketedColdGemLevelUniqueStaff13", "LocalIncreaseSocketedColdGemLevelUnique__1", }, ["+# to level of socketed curse gems"] = { "IncreaseSocketedCurseGemLevelUniqueHelmetInt9", "IncreaseSocketedCurseGemLevelUniqueShieldDex4", "IncreaseSocketedCurseGemLevelUnique__1", "IncreaseSocketedCurseGemLevelUnique__2", }, ["+# to level of socketed dexterity gems"] = { "LocalIncreaseSocketedDexterityGemLevelUniqueClaw8", }, - ["+# to level of socketed elemental gems"] = { "LocalIncreaseSocketedElementalGemUniqueGlovesInt6", "LocalIncreaseSocketedElementalGemUnique___1", }, + ["+# to level of socketed elemental gems"] = { "DivergentLocalIncreaseSocketedElementalGemUniqueGlovesInt6", "LocalIncreaseSocketedElementalGemUniqueGlovesInt6", "LocalIncreaseSocketedElementalGemUnique___1", }, ["+# to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueBodyInt4", "LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2", "LocalIncreaseSocketedFireGemLevelUniqueStaff13", "LocalIncreaseSocketedFireGemLevelUnique__1_", "LocalIncreaseSocketedFireGemLevelUnique__2", }, - ["+# to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5", "LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6", "LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2", "LocalIncreaseSocketedGemLevelUniqueRing23", "LocalIncreaseSocketedGemLevelUniqueRing39", "LocalIncreaseSocketedGemLevelUniqueSceptre1", "LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9", "LocalIncreaseSocketedGemLevelUniqueWand8", "LocalIncreaseSocketedGemLevelUnique__1", "LocalIncreaseSocketedGemLevelUnique__11_", "LocalIncreaseSocketedGemLevelUnique__2", "LocalIncreaseSocketedGemLevelUnique__4", "LocalIncreaseSocketedGemLevelUnique__5", "LocalIncreaseSocketedGemLevelUnique__6", "LocalIncreaseSocketedGemLevelUnique__7", "LocalIncreaseSocketedGemLevelUnique__8", "UniqueSpecialCorruptionSocketedGemLevel", }, + ["+# to level of socketed gems"] = { "DivergentLocalIncreaseSocketedGemLevelUnique__8", "LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5", "LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6", "LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2", "LocalIncreaseSocketedGemLevelUniqueRing23", "LocalIncreaseSocketedGemLevelUniqueRing39", "LocalIncreaseSocketedGemLevelUniqueSceptre1", "LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9", "LocalIncreaseSocketedGemLevelUniqueWand8", "LocalIncreaseSocketedGemLevelUnique__1", "LocalIncreaseSocketedGemLevelUnique__11_", "LocalIncreaseSocketedGemLevelUnique__2", "LocalIncreaseSocketedGemLevelUnique__4", "LocalIncreaseSocketedGemLevelUnique__5", "LocalIncreaseSocketedGemLevelUnique__6", "LocalIncreaseSocketedGemLevelUnique__7", "LocalIncreaseSocketedGemLevelUnique__8", "UniqueSpecialCorruptionSocketedGemLevel", }, ["+# to level of socketed golem gems"] = { "LocalIncreaseSocketedGolemLevelUniqueRing35", "LocalIncreaseSocketedGolemLevelUniqueRing36", "LocalIncreaseSocketedGolemLevelUniqueRing37", }, - ["+# to level of socketed herald gems"] = { "LocalIncreaseSocketedHeraldLevelUnique__1_", "LocalIncreaseSocketedHeraldLevelUnique__2", }, + ["+# to level of socketed herald gems"] = { "DivergentLocalIncreaseSocketedHeraldLevelUnique__2", "LocalIncreaseSocketedHeraldLevelUnique__1_", "LocalIncreaseSocketedHeraldLevelUnique__2", }, ["+# to level of socketed melee gems"] = { "LocalIncreaseSocketedMeleeGemLevelUniqueRapier1", "LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5", "VillageLocalIncreaseSocketedMeleeGemLevel", }, ["+# to level of socketed minion gems"] = { "LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2", "LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5", "LocalIncreaseSocketedMinionGemLevelUnique__1", "LocalIncreaseSocketedMinionGemLevelUnique__2_", "LocalIncreaseSocketedMinionGemLevelUnique__3", "LocalIncreaseSocketedMinionGemLevelUnique__4", "LocalIncreaseSocketedMinionGemLevelUnique__5____", }, - ["+# to level of socketed movement gems"] = { "LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5", }, - ["+# to level of socketed projectile gems"] = { "LocalIncreaseSocketedProjectileGemLevel1", }, - ["+# to level of socketed skill gems"] = { "LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_", "LocalIncreaseSocketedActiveSkillGemLevelUnique__1", }, + ["+# to level of socketed movement gems"] = { "DivergentLocalIncreaseSocketedMovementGemLevelUniqueBodyDex5", "LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5", }, + ["+# to level of socketed projectile gems"] = { "DivergentLocalIncreaseSocketedProjectileGemLevelUnique__1", "LocalIncreaseSocketedProjectileGemLevel1", }, + ["+# to level of socketed skill gems"] = { "DivergentLocalIncreaseSocketedActiveSkillGemLevelUnique__1", "LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_", "LocalIncreaseSocketedActiveSkillGemLevelUnique__1", }, ["+# to level of socketed skill gems per # player levels"] = { "SocketedGemLevelPer25PlayerLevelsUnique__1", }, ["+# to level of socketed spell gems"] = { "LocalIncreaseSocketedSpellGemLevel1", "LocalIncreaseSocketedSpellGemLevelUniqueWand4", "LocalIncreaseSocketedSpellGemLevelUnique__1", }, ["+# to level of socketed strength gems"] = { "LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3", }, @@ -2596,42 +2708,44 @@ return { ["+# to maximum charges"] = { "FlaskExtraChargesUnique__1", "FlaskExtraChargesUnique__4", }, ["+# to maximum charges. # to this value when used"] = { "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_", }, ["+# to maximum divine charges"] = { "DivineChargeOnHitUnique__1_", }, - ["+# to maximum endurance charges"] = { "ChargeBonusMaximumEnduranceCharges", "MaximumEnduranceChargeUniqueBodyStr3", "MaximumEnduranceChargeUniqueBodyStrDex3", "MaximumEnduranceChargeUniqueRing2", "MaximumEnduranceChargeUnique__1_", "MaximumEnduranceChargeUnique__2", }, + ["+# to maximum endurance charges"] = { "ChargeBonusMaximumEnduranceCharges", "MaximumEnduranceChargeUniqueBodyStr3", "MaximumEnduranceChargeUniqueBodyStrDex3", "MaximumEnduranceChargeUniqueRing2", "MaximumEnduranceChargeUnique__1_", "MaximumEnduranceChargeUnique__2", "TalismanEnchantMaximumEnduranceCharges", }, ["+# to maximum endurance charges if # warlord items are equipped"] = { "MaximumEnduranceCharges6WarlordItemsUnique__1", }, ["+# to maximum energy shield"] = { "EnergyShieldPerPointToClassStartUnique__1", "IncreasedEnergyShieldUniqueDagger4", "IncreasedEnergyShieldUniqueGlovesInt6", "IncreasedEnergyShieldUnique__2", "IncreasedEnergyShieldUnique__6", "LocalIncreasedEnergyShieldUniqueGlovesInt1", "LocalIncreasedEnergyShieldUniqueGlovesInt2", "LocalIncreasedEnergyShieldUnique__13_", "LocalIncreasedEnergyShieldUnique___4", }, ["+# to maximum energy shield per # armour on equipped shield"] = { "EnergyShieldPerArmourOnShieldUnique__1", }, ["+# to maximum energy shield per # reserved life"] = { "MaximumEnergyShieldPerReservedLifeUnique__1", }, - ["+# to maximum energy shield per blue socket"] = { "EnergyShieldPerBlueSocket", "EnergyShieldPerBlueSocketUniqueRing39", }, + ["+# to maximum energy shield per blue socket"] = { "EnergyShieldPerBlueSocket", }, + ["+# to maximum fortification"] = { "DivergentMaximumFortificationUnique__1", }, ["+# to maximum fortification per endurance charge"] = { "MaximumFortificationPerEnduranceChargeUnique__1", }, - ["+# to maximum fortification while affected by glorious madness"] = { "FortifyEffectSelfGloriousMadnessUnique1", }, + ["+# to maximum fortification while affected by glorious madness"] = { "DivergentFortifyEffectSelfGloriousMadnessUnique1", "FortifyEffectSelfGloriousMadnessUnique1", }, ["+# to maximum fortification while stationary"] = { "FortifyEffectWhileStationaryUber1", }, - ["+# to maximum frenzy charges"] = { "ChargeBonusMaximumFrenzyCharges", "MaximumFrenzyChargesUniqueBodyStr3", "MaximumFrenzyChargesUniqueBootsStrDex2_", "MaximumFrenzyChargesUniqueDescentOneHandSword1", "MaximumFrenzyChargesUnique__1", }, + ["+# to maximum frenzy charges"] = { "ChargeBonusMaximumFrenzyCharges", "DivergentMaximumFrenzyChargesUniqueBootsStrDex2", "MaximumFrenzyChargesUniqueBodyStr3", "MaximumFrenzyChargesUniqueBootsStrDex2_", "MaximumFrenzyChargesUniqueDescentOneHandSword1", "MaximumFrenzyChargesUnique__1", "TalismanEnchantMaximumFrenzyCharges", }, ["+# to maximum frenzy charges if # redeemer items are equipped"] = { "MaximumFrenzyCharges6RedeemerItemsUnique__1", }, - ["+# to maximum life"] = { "IncreasedLifeUniqueBodyStr1", "IncreasedLifeUniqueBootsInt4", "IncreasedLifeUniqueDescentHelmet1", "IncreasedLifeUniqueDescentShield1", "IncreasedLifeUniqueOneHandMace7", "IncreasedLifeUniqueTwoHandAxe4", "IncreasedLifeUnique__104_", "IncreasedLifeUnique__87", "LifePerPointToClassStartUnique__1_", }, + ["+# to maximum life"] = { "DivergentIncreasedLifeUniqueBodyStr1", "DivergentIncreasedLifeUnique__114", "IncreasedLifeUniqueBodyStr1", "IncreasedLifeUniqueBootsInt4", "IncreasedLifeUniqueDescentHelmet1", "IncreasedLifeUniqueDescentShield1", "IncreasedLifeUniqueOneHandMace7", "IncreasedLifeUniqueTwoHandAxe4", "IncreasedLifeUnique__104_", "IncreasedLifeUnique__87", "LifePerPointToClassStartUnique__1_", }, ["+# to maximum life for each empty red socket on any equipped item"] = { "IncreasedLifeEmptyRedSocketUnique__1", }, - ["+# to maximum life per # dexterity"] = { "MaximumLifePer10DexterityUnique__1", }, + ["+# to maximum life if there are no life modifiers on other equipped items"] = { "DivergentIncreasedLifeNoLifeModifiersUnique__1", }, + ["+# to maximum life per # dexterity"] = { "DivergentMaximumLifePer10DexterityUnique__1", "MaximumLifePer10DexterityUnique__1", }, ["+# to maximum life per # intelligence"] = { "IncreasedLifePerIntelligenceUnique__1", "LifePer10IntelligenceUnique__1", }, ["+# to maximum life per elder item equipped"] = { "IncreasedLifePerElderItemUnique__1", }, - ["+# to maximum life per red socket"] = { "LifePerRedSocket", "LifePerRedSocketUniqueRing39", }, - ["+# to maximum mana"] = { "IncreasedManaUniqueAmulet10", "IncreasedManaUniqueBootsInt4", "IncreasedManaUniqueOneHandMace7", "IncreasedManaUnique__19", "IncreasedManaUnique__2", "ManaPerPointToClassStartUnique__1", }, + ["+# to maximum life per red socket"] = { "LifePerRedSocket", }, + ["+# to maximum mana"] = { "DivergentIncreasedManaUnique__19", "IncreasedManaUniqueAmulet10", "IncreasedManaUniqueBootsInt4", "IncreasedManaUniqueOneHandMace7", "IncreasedManaUnique__19", "IncreasedManaUnique__2", "ManaPerPointToClassStartUnique__1", }, ["+# to maximum mana for each empty blue socket on any equipped item"] = { "IncreasedManaEmptyBlueSocketUnique__1", }, ["+# to maximum mana per # dexterity on unallocated passives in radius"] = { "FlatManaPerUnallocatedDexterityJewelUnique__1", }, ["+# to maximum mana per # intelligence"] = { "GainManaPer2IntelligenceUnique_1", }, - ["+# to maximum mana per green socket"] = { "ManaPerGreenSocket", "ManaPerGreenSocketUniqueRing39", }, - ["+# to maximum number of crab barriers"] = { "MaximumCrabBarriersUnique__1", }, + ["+# to maximum mana per green socket"] = { "ManaPerGreenSocket", }, + ["+# to maximum number of crab barriers"] = { "DivergentMaximumCrabBarriersUnique__1", "MaximumCrabBarriersUnique__1", }, ["+# to maximum number of raging spirits"] = { "ExtraRagingSpiritsUnique__1", }, ["+# to maximum number of raised spectres per socketed ghastly eye jewel"] = { "MaximumSpectrePerGhastlyEyeUnique__1", }, ["+# to maximum number of raised zombies"] = { "MaximumMinionCountUniqueTwoHandSword4", "MaximumMinionCountUniqueWand2", "MaximumMinionCountUniqueWand2Updated", "TalismanAdditionalZombie", }, ["+# to maximum number of raised zombies per # strength"] = { "AdditionalZombiesPerXStrengthUnique__1", }, ["+# to maximum number of sacred wisps"] = { "AdditionalSacredWispUnique__1", }, ["+# to maximum number of skeletons"] = { "MaximumMinionCountUniqueBootsStrInt2", "MaximumMinionCountUniqueBootsStrInt2Updated", }, - ["+# to maximum number of spectres"] = { "MaximumMinionCountUniqueBodyInt9", "MaximumMinionCountUniqueSceptre5", "MaximumMinionCountUnique__1__", "MaximumMinionCountUnique__2", }, + ["+# to maximum number of spectres"] = { "MaximumMinionCountUniqueBodyInt9", "MaximumMinionCountUniqueSceptre5", "MaximumMinionCountUnique__1__", "MaximumMinionCountUnique__2", "TalismanEnchantMaximumSpectreCount", }, ["+# to maximum number of summoned golems"] = { "MaximumGolemsUnique__1", "MaximumGolemsUnique__2", "MaximumGolemsUnique__3", "VillageMaximumGolems", }, ["+# to maximum number of summoned golems if you have # primordial items socketed or equipped"] = { "GolemPerPrimordialJewel", }, - ["+# to maximum number of summoned holy relics"] = { "AdditionalHolyRelicUnique__1", }, + ["+# to maximum number of summoned holy relics"] = { "AdditionalHolyRelicUnique__1", "DivergentAdditionalHolyRelicUnique__1", }, ["+# to maximum number of summoned phantasms"] = { "ExtraMaximumPhantasmsUnique__1", }, - ["+# to maximum number of summoned totems"] = { "AdditionalTotemsUnique__1", }, - ["+# to maximum power charges"] = { "ChargeBonusMaximumPowerCharges", "IncreasedMaximumPowerChargesUniqueStaff7", "IncreasedMaximumPowerChargesUniqueWand3", "IncreasedMaximumPowerChargesUnique__1", "IncreasedMaximumPowerChargesUnique__2", "IncreasedMaximumPowerChargesUnique__3", "IncreasedMaximumPowerChargesUnique__4", }, + ["+# to maximum number of summoned totems"] = { "AdditionalTotemsUniqueStaff38", "AdditionalTotemsUnique__1", }, + ["+# to maximum power charges"] = { "ChargeBonusMaximumPowerCharges", "IncreasedMaximumPowerChargesUniqueStaff7", "IncreasedMaximumPowerChargesUniqueWand3", "IncreasedMaximumPowerChargesUnique__1", "IncreasedMaximumPowerChargesUnique__2", "IncreasedMaximumPowerChargesUnique__3", "IncreasedMaximumPowerChargesUnique__4", "IncreasedMaximumPowerChargesUnique__5", "IncreasedMaximumPowerChargesUnique__6", "TalismanEnchantIncreasedMaximumPowerCharges", }, ["+# to maximum power charges and maximum endurance charges"] = { "MaximumPowerandEnduranceChargesImplicitE1", }, ["+# to maximum power charges if # crusader items are equipped"] = { "IncreasedMaximumPowerCharges6CrusaderItemsUnique__1", }, ["+# to maximum rage"] = { "MaximumRageImplicitE1", "MaximumRageImplicitE2", "MaximumRageImplicitE3", "MaximumRageUnique__1", "MaximumRageUnique__2", }, @@ -2639,10 +2753,13 @@ return { ["+# to maximum siphoning charges per elder or shaper item equipped"] = { "MaximumSiphoningChargePerElderOrShaperItemUnique__1", }, ["+# to maximum snipe stages"] = { "AdditionalMaxStackSnipeUnique", }, ["+# to maximum spirit charges per abyss jewel affecting you"] = { "MaximumSpiritChargesPerAbyssJewelEquippedUnique__1", "MaximumSpiritChargesPerAbyssJewelEquippedUnique__2", }, + ["+# to minimum endurance charges"] = { "DivergentMinimumEnduranceChargesUnique__1", }, ["+# to minimum endurance charges per grand spectrum"] = { "MinimumEnduranceChargesPerStackableJewelUnique__1", }, ["+# to minimum endurance charges while on low life"] = { "MinimumEnduranceChargeOnLowLifeUnique__1", }, - ["+# to minimum endurance, frenzy and power charges"] = { "UniqueSpecialCorruptionAllMinCharges", }, + ["+# to minimum endurance, frenzy and power charges"] = { "TalismanEnchantMinimumEndurancePowerFrenzyCharges", "UniqueSpecialCorruptionAllMinCharges", }, + ["+# to minimum frenzy charges"] = { "DivergentMinimumFrenzyChargesUnique__1", }, ["+# to minimum frenzy charges per grand spectrum"] = { "MinimumFrenzyChargesPerStackableJewelUnique__1", }, + ["+# to minimum power charges"] = { "DivergentMinimumPowerChargesUnique__1", }, ["+# to minimum power charges per grand spectrum"] = { "MinimumPowerChargesPerStackableJewelUnique__1", }, ["+# to minimum power charges while on low life"] = { "MinimumPowerChargeOnLowLifeUnique__1", }, ["+# to number of summoned arbalists"] = { "SummonArbalistNumberOfArbalistsAllowed", }, @@ -2655,38 +2772,37 @@ return { ["+#% chance to be ignited"] = { "IncreasedChanceToBeIgnitedUniqueRing24", "IncreasedChanceToBeIgnitedUnique__1", }, ["+#% chance to be poisoned"] = { "ChanceToBePoisonedUnique__1", }, ["+#% chance to be shocked"] = { "ChanceToBeShockedUnique__1", "ChanceToBeShockedUnique__2", }, - ["+#% chance to block"] = { "AdditionalBlockChanceUniqueDescentShield1_", "AdditionalBlockChanceUniqueShieldDex1", "AdditionalBlockChanceUniqueShieldDex2", "AdditionalBlockChanceUniqueShieldDex4", "AdditionalBlockChanceUniqueShieldDex5", "AdditionalBlockChanceUniqueShieldInt4", "AdditionalBlockChanceUniqueShieldStr1", "AdditionalBlockChanceUniqueShieldStr4", "AdditionalBlockChanceUniqueShieldStrDex2", "AdditionalBlockChanceUniqueShieldStrInt4", "AdditionalBlockChanceUniqueShieldStrInt6", "AdditionalBlockChanceUnique__11", "AdditionalBlockChanceUnique__2", "AdditionalBlockChanceUnique__4", "AdditionalBlockChanceUnique__5", }, - ["+#% chance to block attack damage"] = { "AdditionalBlockUniqueBodyDex2", }, - ["+#% chance to block attack damage from cursed enemies"] = { "BlockChanceVersusCursedEnemiesUnique__1", }, + ["+#% chance to block"] = { "AdditionalBlockChanceUniqueDescentShield1_", "AdditionalBlockChanceUniqueShieldDex1", "AdditionalBlockChanceUniqueShieldDex2", "AdditionalBlockChanceUniqueShieldDex4", "AdditionalBlockChanceUniqueShieldDex5", "AdditionalBlockChanceUniqueShieldInt4", "AdditionalBlockChanceUniqueShieldStr1", "AdditionalBlockChanceUniqueShieldStr4", "AdditionalBlockChanceUniqueShieldStrDex2", "AdditionalBlockChanceUniqueShieldStrInt4", "AdditionalBlockChanceUniqueShieldStrInt6", "AdditionalBlockChanceUnique__11", "AdditionalBlockChanceUnique__2", "AdditionalBlockChanceUnique__4", "AdditionalBlockChanceUnique__5", "DivergentAdditionalBlockChanceUniqueShieldDex2", }, + ["+#% chance to block attack damage"] = { "AdditionalBlockUniqueBodyDex2", "StaffBlockPercentImplicitStaff1", "StaffBlockPercentImplicitStaff2", "StaffBlockPercentImplicitStaff3", }, + ["+#% chance to block attack damage from cursed enemies"] = { "BlockChanceVersusCursedEnemiesUnique__1", "DivergentBlockChanceVersusCursedEnemiesUnique__1", }, ["+#% chance to block attack damage from taunted enemies"] = { "AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1", }, ["+#% chance to block attack damage if you have blocked spell damage recently"] = { "AttackBlockIfBlockedSpellRecentlyUnique__1_", }, ["+#% chance to block attack damage if you've dealt a critical strike recently"] = { "AdditionalBlockChanceIfCritRecentlyUber1__", }, - ["+#% chance to block attack damage per # strength"] = { "BlockChancePer50StrengthUnique__1", }, + ["+#% chance to block attack damage per # strength"] = { "BlockChancePer50StrengthUnique__1", "DivergentBlockChancePer50StrengthUnique__1", }, ["+#% chance to block attack damage per endurance charge"] = { "ChargeBonusBlockChancePerEnduranceCharge", }, ["+#% chance to block attack damage per frenzy charge"] = { "ChargeBonusBlockChancePerFrenzyCharge_", }, ["+#% chance to block attack damage per power charge"] = { "ChargeBonusBlockChancePerPowerCharge_", }, ["+#% chance to block attack damage per summoned skeleton"] = { "AttackBlockPerSkeletonUnique__1", }, - ["+#% chance to block attack damage when in off hand"] = { "AdditionalChanceToBlockInOffHandUnique_1", }, ["+#% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueDagger3", "BlockWhileDualWieldingUniqueDagger9", "BlockWhileDualWieldingUniqueOneHandSword5", "BlockWhileDualWieldingUnique__1", "BlockWhileDualWieldingUnique__2_", }, ["+#% chance to block attack damage while dual wielding claws"] = { "BlockWhileDualWieldingClawsUniqueClaw1", }, ["+#% chance to block attack damage while holding a shield"] = { "ShieldBlockChanceUniqueAmulet16", }, ["+#% chance to block attack damage while not cursed"] = { "AdditionalBlockWhileNotCursedUnique__1", }, ["+#% chance to block attack damage while on consecrated ground"] = { "BlockChanceOnConsecratedGroundUnique__1", }, - ["+#% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentImplicitStaff1", "StaffBlockPercentImplicitStaff2", "StaffBlockPercentImplicitStaff3", "StaffBlockPercentUniqueStaff7", "StaffBlockPercentUniqueStaff9", "StaffBlockPercentUnique__1", "StaffBlockPercentUnique__2_", "StaffBlockPercentUnique__4_", "StaffBlockPercentUnique__5", }, + ["+#% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUniqueStaff7", "StaffBlockPercentUniqueStaff9", "StaffBlockPercentUnique__1", "StaffBlockPercentUnique__4_", "StaffBlockPercentUnique__5", }, ["+#% chance to block attack damage while you have at least # crab barriers"] = { "AdditionalBlockChance10CrabBarriersUnique__1", "AdditionalBlockChance5CrabBarriersUnique__1", }, - ["+#% chance to block projectile attack damage"] = { "BlockVsProjectilesUniqueShieldStr2", }, + ["+#% chance to block projectile attack damage"] = { "BlockVsProjectilesUniqueShieldStr2", "DivergentBlockVsProjectilesUniqueShieldStr2", }, + ["+#% chance to block spell damage"] = { "StaffSpellBlockPercent2", "StaffSpellBlockPercent3", "StaffSpellBlockPercentImplicitStaff__1", }, ["+#% chance to block spell damage if you have blocked attack damage recently"] = { "SpellBlockIfBlockedAttackRecentlyUnique__1", }, - ["+#% chance to block spell damage per power charge"] = { "ChanceToBlockSpellsPerPowerChargeUnique__1", "ChanceToBlockSpellsPerPowerChargeUnique__2_", }, + ["+#% chance to block spell damage per power charge"] = { "ChanceToBlockSpellsPerPowerChargeUnique__1", "ChanceToBlockSpellsPerPowerChargeUnique__2_", "DivergentChanceToBlockSpellsPerPowerChargeUnique__2_", }, ["+#% chance to block spell damage while cursed"] = { "AdditionalSpellBlockWhileCursedUnique__1", }, - ["+#% chance to block spell damage while on low life"] = { "SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_", }, - ["+#% chance to block spell damage while wielding a staff"] = { "StaffSpellBlockPercent2", "StaffSpellBlockPercent3", "StaffSpellBlockPercentImplicitStaff__1", }, - ["+#% chance to suppress spell damage"] = { "ChanceToDodgeImplicitShield1", "ChanceToDodgeImplicitShield2", "ChanceToDodgeSpellsImplicitShield1", "ChanceToDodgeSpellsImplicitShield2", "ChanceToDodgeSpellsUniqueBodyDex1", "ChanceToDodgeSpellsUnique__2", "ChanceToDodgeUniqueBodyDex1", "ChanceToDodgeUniqueBootsDex7", "ChanceToDodgeUniqueJewel46", "ChanceToSuppressSpellsUniqueBodyDex1", "ChanceToSuppressSpellsUniqueJewel46", "ChanceToSuppressSpellsUnique__1", }, + ["+#% chance to block spell damage while on low life"] = { "DivergentSpellBlockPercentageOnLowLifeUniqueShieldStrDex1_", "SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_", }, + ["+#% chance to suppress spell damage"] = { "ChanceToDodgeImplicitShield1", "ChanceToDodgeImplicitShield2", "ChanceToDodgeSpellsImplicitShield1", "ChanceToDodgeSpellsImplicitShield2", "ChanceToDodgeSpellsUniqueBodyDex1", "ChanceToDodgeSpellsUnique__2", "ChanceToDodgeUniqueBodyDex1", "ChanceToDodgeUniqueBootsDex7", "ChanceToDodgeUniqueJewel46", "ChanceToSuppressSpellsUniqueBodyDex1", "ChanceToSuppressSpellsUniqueJewel46", "ChanceToSuppressSpellsUnique__1", "DivergentChanceToSuppressSpellsUnique__1_", "DivergentSpellDodgeUniqueBootsDex7New", }, ["+#% chance to suppress spell damage per endurance charge"] = { "ChargeBonusDodgeChancePerEnduranceCharge", }, ["+#% chance to suppress spell damage per frenzy charge"] = { "ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2", "ChargeBonusDodgeChancePerFrenzyCharge", }, ["+#% chance to suppress spell damage per power charge"] = { "ChargeBonusDodgeChancePerPowerCharge", }, - ["+#% critical strike chance per power charge"] = { "AdditionalCriticalStrikeChancePerPowerChargeUnique__1", }, + ["+#% chance to suppress spell damage while channelling"] = { "DivergentChanceToSuppressSpellsWhileChannellingUnique__1____", }, ["+#% global critical strike multiplier while you have no frenzy charges"] = { "GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1", }, - ["+#% to all elemental resistances"] = { "AllResistancesDescentUniqueQuiver1", "AllResistancesImplicitShield1", "AllResistancesImplicitShield2", "AllResistancesImplicitShield3", "AllResistancesUniqueAmulet2", "AllResistancesUniqueBodyStrInt2", "AllResistancesUniqueBootsInt5", "AllResistancesUniqueGlovesStrDex2", "AllResistancesUniqueIntHelmet3", "AllResistancesUniqueJewel8", "AllResistancesUniqueRing9", "AllResistancesUniqueShieldStrInt2", "AllResistancesUniqueShieldStrInt4", "AllResistancesUnique__1", "AllResistancesUnique__13", }, + ["+#% to all elemental resistances"] = { "AllResistancesDescentUniqueQuiver1", "AllResistancesImplicitShield1", "AllResistancesImplicitShield2", "AllResistancesImplicitShield3", "AllResistancesUniqueAmulet2", "AllResistancesUniqueBodyStrInt2", "AllResistancesUniqueBootsInt5", "AllResistancesUniqueGlovesStrDex2", "AllResistancesUniqueIntHelmet3", "AllResistancesUniqueJewel8", "AllResistancesUniqueRing9", "AllResistancesUniqueShieldStrInt2", "AllResistancesUniqueShieldStrInt4", "AllResistancesUnique__1", "AllResistancesUnique__13", "DivergentAllResistancesUniqueHelmetDex3", "DivergentAllResistancesUnique__23__", }, ["+#% to all elemental resistances for each empty white socket on any equipped item"] = { "AllResistEmptyWhiteSocketUnique__1", }, ["+#% to all elemental resistances per # devotion"] = { "ElementalResistancesPerDevotion", }, ["+#% to all elemental resistances per # omniscience"] = { "ElementalResistPerAscendanceUnique__1__", }, @@ -2695,58 +2811,66 @@ return { ["+#% to all elemental resistances while on low life"] = { "ElementalResistsOnLowLifeUniqueHelmetStrInt1", }, ["+#% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__3", }, ["+#% to all maximum elemental resistances during effect"] = { "FlaskMaximumElementalResistancesUniqueFlask1", }, - ["+#% to all maximum resistances"] = { "IncreasedMaximumResistsUniqueShieldStrInt1", }, - ["+#% to all maximum resistances while poisoned"] = { "MaximumResistancesWhilePoisonedUnique__1", }, - ["+#% to all maximum resistances while you have no endurance charges"] = { "MaximumResistanceWithNoEnduranceChargesUnique__1__", }, + ["+#% to all maximum resistances"] = { "DivergentIncreasedMaximumResistsUniqueShieldStrInt1", "IncreasedMaximumResistsUniqueShieldStrInt1", }, + ["+#% to all maximum resistances while poisoned"] = { "DivergentMaximumResistancesWhilePoisonedUnique__1", "MaximumResistancesWhilePoisonedUnique__1", }, + ["+#% to all maximum resistances while you have no endurance charges"] = { "DivergentMaximumResistanceWithNoEnduranceChargesUnique__1__", "MaximumResistanceWithNoEnduranceChargesUnique__1__", }, ["+#% to chaos resistance"] = { "ChaosResistUnique__1", "ChaosResistUnique__26", "ChaosResistUnique__5", }, - ["+#% to chaos resistance during any flask effect"] = { "ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3", }, + ["+#% to chaos resistance during any flask effect"] = { "ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3", "DivergentChaosResistanceWhileUsingFlaskUniqueBootsStrDex3", }, + ["+#% to chaos resistance per #% cold resistance"] = { "UniqueAmuletChaosResistancePerColdResistance", }, + ["+#% to chaos resistance per #% fire resistance"] = { "UniqueAmuletChaosResistancePerFireResistance", }, + ["+#% to chaos resistance per #% lightning resistance"] = { "UniqueAmuletChaosResistancePerLightningResistance", }, ["+#% to chaos resistance per endurance charge"] = { "ChaosResistancePerEnduranceChargeUnique__1_", "ChargeBonusChaosResistancePerEnduranceCharge_", }, ["+#% to chaos resistance per poison on you"] = { "ChaosResistancePerPoisonOnSelfUnique__1", }, - ["+#% to chaos resistance while stationary"] = { "ChaosResistanceWhileStationaryUnique__1", }, - ["+#% to cold damage over time multiplier"] = { "ColdDamageOverTimeMultiplierUnique__2", }, + ["+#% to chaos resistance while stationary"] = { "ChaosResistanceWhileStationaryUnique__1", "DivergentChaosResistanceWhileStationaryUnique__1", }, + ["+#% to cold damage over time multiplier"] = { "ColdDamageOverTimeMultiplierUnique__2", "DivergentColdDamageOverTimeMultiplierUnique__2", }, ["+#% to cold resistance"] = { "ColdResistUniqueAmulet3", "ColdResistUniqueBootsDex8", "ColdResistUniqueBootsDexInt2", "ColdResistUniqueGlovesStrDex4", "ColdResistUniqueShieldDex1", "ColdResistUniqueStrHelmet2", "ColdResistUnique__5", }, + ["+#% to critical strike chance per power charge"] = { "AdditionalCriticalStrikeChancePerPowerChargeUnique__1", }, ["+#% to critical strike chance while affected by aspect of the cat"] = { "AdditionalCriticalStrikeChanceWithCatAspectUnique__1", }, ["+#% to critical strike multiplier if you haven't dealt a critical strike recently"] = { "CriticalStrikeMultiplierIfHaventCritRecentlyUber1", }, ["+#% to critical strike multiplier if you've dealt a non-critical strike recently"] = { "CritMultiIfDealtNonCritRecentlyUnique__1", "CritMultiIfDealtNonCritRecentlyUnique__2", }, ["+#% to critical strike multiplier per # strength on unallocated passives in radius"] = { "CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_", "CriticalStrikeMultiplierPerUnallocatedStrengthUnique__1", }, - ["+#% to critical strike multiplier per #% chance to block attack damage"] = { "CriticalMultiplierPerBlockChanceUnique__1", }, + ["+#% to critical strike multiplier per #% chance to block attack damage"] = { "CriticalMultiplierPerBlockChanceUnique__1", "DivergentCriticalMultiplierPerBlockChanceUnique__1", }, ["+#% to critical strike multiplier per power charge"] = { "ChargeBonusCriticalStrikeMultiplierPerPowerCharge", }, - ["+#% to damage over time multiplier for ailments per elder item equipped"] = { "AilmentDamageOverTimeMultiplierPerElderItemUnique__1", }, + ["+#% to damage over time multiplier"] = { "TalismanEnchantGlobalDamageOverTimeMultiplier", }, + ["+#% to damage over time multiplier for ailments per elder item equipped"] = { "AilmentDamageOverTimeMultiplierPerElderItemUnique__1", "DivergentAilmentDamageOverTimeMultiplierPerElderItemUnique__1", }, ["+#% to damage over time multiplier for bleeding"] = { "BleedDotMultiplier2HImplicit1", }, ["+#% to damage over time multiplier for bleeding per frenzy charge"] = { "BleedDotMultiplierPerFrenzyChargeUnique__1_", }, - ["+#% to damage over time multiplier for poison per frenzy charge"] = { "PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5", }, + ["+#% to damage over time multiplier for poison per frenzy charge"] = { "DivergentPoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5", "PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5", }, + ["+#% to damage over time multiplier if you've dealt a critical strike in the past # seconds"] = { "DivergentDamageOverTimeMultiplierIfCrit8SecondsUnique__1_", }, ["+#% to damage over time multiplier per # intelligence on unallocated passives in radius"] = { "DamageOverTimeMultiplierPerUnallocatedIntelligenceUnique__1___", }, ["+#% to elemental resistances during effect"] = { "FlaskElementalResistancesUniqueFlask1_", }, ["+#% to fire damage over time multiplier"] = { "BurningArrowThresholdJewelUnique__1", }, ["+#% to fire resistance"] = { "FireResistUniqueAmulet7", "FireResistUniqueBelt3", }, ["+#% to fire resistance while on low life"] = { "FireResistOnLowLifeUniqueShieldStrInt5", }, - ["+#% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSword1", "CriticalMultiplierImplicitSword2", "CriticalMultiplierImplicitSword2H1", "CriticalMultiplierImplicitSword3", "CriticalMultiplierImplicitSwordM2", "CriticalMultiplierUniqueDescentDagger1", "CriticalMultiplierUniqueGlovesDexInt2", "CriticalMultiplierUniqueGlovesDexInt4", "CriticalMultiplierUniqueHelmetStr3", "LocalCriticalMultiplierUniqueBow3", "LocalCriticalMultiplierUniqueClaw2", }, - ["+#% to global critical strike multiplier per green socket"] = { "CriticalStrikeMultiplierPerGreenSocketUnique_1", }, + ["+#% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSword1", "CriticalMultiplierImplicitSword2", "CriticalMultiplierImplicitSword2H1", "CriticalMultiplierImplicitSword3", "CriticalMultiplierImplicitSwordM2", "CriticalMultiplierUniqueDescentDagger1", "CriticalMultiplierUniqueGlovesDexInt2", "CriticalMultiplierUniqueGlovesDexInt4", "CriticalMultiplierUniqueHelmetStr3", "LocalCriticalMultiplierUniqueBow3", "LocalCriticalMultiplierUniqueClaw2", "TalismanEnchantCriticalStrikeMultiplier", }, ["+#% to lightning resistance"] = { "LightningResistUniqueDescentTwoHandSword1", "LightningResistUniqueShieldDex2", "LightningResistUniqueShieldInt1", "LightningResistUniqueStrDexHelmet1", "LightningResistUnique__23_", }, ["+#% to maximum chance to block attack damage"] = { "MaximumBlockChanceUniqueAmulet16", }, ["+#% to maximum chance to block attack damage if # elder items are equipped"] = { "MaximumBlockChance4ElderItemsUnique__1", }, ["+#% to maximum chance to block spell damage if # shaper items are equipped"] = { "MaximumSpellBlockChance4ShaperItemsUnique__1", }, ["+#% to maximum chaos resistance"] = { "ChayulaBreachRingImplicit", "MaxChaosResistanceCrushedImplicitR1", "MaxChaosResistanceCrushedImplicitR2", "MaxChaosResistanceCrushedImplicitR3", }, - ["+#% to maximum cold resistance"] = { "IncreasedMaximumColdResistUniqueShieldStrInt4", "MaximumColdResistUniqueShieldDex1", "MaximumColdResistUnique__2", "TulBreachRingImplicit", }, + ["+#% to maximum cold resistance"] = { "IncreasedMaximumColdResistUniqueShieldStrInt4", "MaximumColdResistUniqueShieldDex1", "MaximumColdResistUnique__2", "MaximumColdResistUnique__3", "TalismanEnchantMaximumColdResist", "TulBreachRingImplicit", }, ["+#% to maximum cold resistance while affected by herald of ice"] = { "HeraldBonusMaxColdResist__", }, ["+#% to maximum effect of shock"] = { "MaximumShockOverrideUniqueBow10", "VillageMaximumShock", }, - ["+#% to maximum fire resistance"] = { "MaximumFireResistUniqueShieldStrInt5", "XophBreachRingImplicit", }, + ["+#% to maximum fire resistance"] = { "MaximumFireResistUniqueShieldStrInt5", "TalismanEnchantMaximumFireResist", "XophBreachRingImplicit", }, ["+#% to maximum fire resistance while affected by herald of ash"] = { "HeraldBonusAshMaxFireResist", }, - ["+#% to maximum lightning resistance"] = { "EshBreachRingImplicit", "MaximumLightningResistUniqueStaff8c", }, + ["+#% to maximum lightning resistance"] = { "EshBreachRingImplicit", "MaximumLightningResistUniqueStaff8c", "TalismanEnchantMaximumLightningResistance", }, ["+#% to maximum lightning resistance while affected by herald of thunder"] = { "HeraldBonusThunderMaxLightningResist", }, ["+#% to maximum quality"] = { "LocalMaximumQualityImplicitE1", "LocalMaximumQualityImplicitE2", "LocalMaximumQualityImplicitE3", }, + ["+#% to melee critical strike multiplier"] = { "DivergentMeleeWeaponCriticalStrikeMultiplierReplicaUniqueHelmetStr3", "DivergentMeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3", }, ["+#% to off hand critical strike chance per # maximum energy shield on shield"] = { "SpectralShieldThrowThresholdJewel1_", }, ["+#% to off hand critical strike multiplier per"] = { "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__", }, ["+#% to off hand critical strike multiplier per # maximum energy shield on shield"] = { "SpectralShieldThrowThresholdJewel2", }, - ["+#% to quality of socketed gems"] = { "SocketedGemQualityUnique__2_", }, - ["+#% to quality of socketed support gems"] = { "IncreaseSocketedSupportGemQualityUnique__2", }, - ["+#% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__1", }, + ["+#% to quality of all skill gems"] = { "TalismanEnchantGlobalSkillGemQuality", }, + ["+#% to quality of socketed gems"] = { "DivergentSocketedGemQualityUnique__1", "SocketedGemQualityUnique__2_", }, + ["+#% to quality of socketed support gems"] = { "DivergentIncreaseSocketedSupportGemQualityUnique__1___", "IncreaseSocketedSupportGemQualityUnique__2", }, + ["+#% to unarmed melee attack critical strike chance"] = { "DivergentBaseUnarmedCriticalStrikeChanceUnique__2", }, ["+(#) armour if you've blocked recently"] = { "GainArmourIfBlockedRecentlyUnique__1", }, ["+(#) energy shield gained on killing a shocked enemy"] = { "GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4", "GainEnergyShieldOnKillShockedEnemyUnique__1_", }, ["+(#) mana gained on killing a frozen enemy"] = { "GainManaOnKillingFrozenEnemyUnique__1", }, ["+(#) maximum energy shield per level"] = { "EnergyShieldPerLevelUnique__1", }, ["+(#) maximum life per level"] = { "LifePerLevelUnique__1", }, ["+(#) maximum mana per level"] = { "ManaPerLevelUnique__1", }, + ["+(#) metres to melee strike range per white socket"] = { "MeleeRangePerWhiteSocketUniqueOneHandSword5", }, ["+(#) metres to melee strike range with unarmed attacks"] = { "UnarmedStrikeRangeUniqueJewel__1_", "UnarmedStrikeRangeUnique__1", }, ["+(#) seconds to avian's flight duration"] = { "AviansFlightDurationUnique__1", }, ["+(#) seconds to avian's might duration"] = { "AviansMightDurationUnique__1", }, @@ -2754,29 +2878,34 @@ return { ["+(#) to accuracy rating"] = { "AccuracyAgainstBleedingEnemiesUnique__1", "IncreasedAccuracyUniqueAmulet17_", "IncreasedAccuracyUniqueAmulet7", "IncreasedAccuracyUniqueBow4", "IncreasedAccuracyUniqueBow7", "IncreasedAccuracyUniqueGlovesDexInt1", "IncreasedAccuracyUniqueHelmetInt7", "IncreasedAccuracyUniqueOneHandSword9", "IncreasedAccuracyUniqueRing12", "IncreasedAccuracyUniqueSceptre8", "IncreasedAccuracyUniqueTwoHandAxe1", "IncreasedAccuracyUniqueTwoHandAxe5", "IncreasedAccuracyUniqueTwoHandSword1", "IncreasedAccuracyUniqueTwoHandSword7", "IncreasedAccuracyUniqueWand6", "IncreasedAccuracyUnique__1", "IncreasedAccuracyUnique__10", "IncreasedAccuracyUnique__2", "IncreasedAccuracyUnique__3", "IncreasedAccuracyUnique__4", "IncreasedAccuracyUnique__5", "IncreasedAccuracyUnique__6", "IncreasedAccuracyUnique__7_", "IncreasedAccuracyUnique__8", "LocalIncreasedAccuracyUnique__1", "LocalIncreasedAccuracyUnique__3", "LocalIncreasedAccuracyUnique__4", "LocalIncreasedAccuracyUnique__5", }, ["+(#) to accuracy rating while at maximum frenzy charges"] = { "AccuracyRatingWithMaxFrenzyChargesUnique__1", }, ["+(#) to all attributes"] = { "AllAttributesImplicitAmulet1", "AllAttributesImplicitDemigodOneHandSword1", "AllAttributesImplicitDemigodRing1", "AllAttributesImplicitWreath1", "AllAttributesUniqueAmulet22", "AllAttributesUniqueAmulet8", "AllAttributesUniqueAmulet9", "AllAttributesUniqueBelt3", "AllAttributesUniqueBodyStr3", "AllAttributesUniqueHelmetStr3", "AllAttributesUniqueHelmetStrInt5", "AllAttributesUniqueRing26", "AllAttributesUniqueRing6", "AllAttributesUniqueStaff10", "AllAttributesUniqueTwoHandMace7", "AllAttributesUnique__1", "AllAttributesUnique__10_", "AllAttributesUnique__11", "AllAttributesUnique__12", "AllAttributesUnique__14", "AllAttributesUnique__15", "AllAttributesUnique__16_", "AllAttributesUnique__17_", "AllAttributesUnique__18", "AllAttributesUnique__19", "AllAttributesUnique__2", "AllAttributesUnique__20", "AllAttributesUnique__21", "AllAttributesUnique__22_", "AllAttributesUnique__23", "AllAttributesUnique__24", "AllAttributesUnique__25", "AllAttributesUnique__26", "AllAttributesUnique__27", "AllAttributesUnique__28", "AllAttributesUnique__29", "AllAttributesUnique__3", "AllAttributesUnique__30", "AllAttributesUnique__31", "AllAttributesUnique__4", "AllAttributesUnique__5", "AllAttributesUnique__6", "AllAttributesUnique__7", "AllAttributesUnique__8_", "AllAttributesUnique__9", }, - ["+(#) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueAmulet16", "IncreasedPhysicalDamageReductionRatingUniqueBelt9", "IncreasedPhysicalDamageReductionRatingUniqueQuiver4", "IncreasedPhysicalDamageReductionRatingUniqueRing12", "IncreasedPhysicalDamageReductionRatingUnique__1", "IncreasedPhysicalDamageReductionRatingUnique__10", "IncreasedPhysicalDamageReductionRatingUnique__11", "IncreasedPhysicalDamageReductionRatingUnique__2", "IncreasedPhysicalDamageReductionRatingUnique__3", "IncreasedPhysicalDamageReductionRatingUnique__4", "IncreasedPhysicalDamageReductionRatingUnique__5", "IncreasedPhysicalDamageReductionRatingUnique__6_", "IncreasedPhysicalDamageReductionRatingUnique__7", "IncreasedPhysicalDamageReductionRatingUnique__8", "IncreasedPhysicalDamageReductionRatingUnique__9", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2", "LocalIncreasedPhysicalDamageReductionRatingUnique__1", }, + ["+(#) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueAmulet16", "IncreasedPhysicalDamageReductionRatingUniqueBelt9", "IncreasedPhysicalDamageReductionRatingUniqueQuiver4", "IncreasedPhysicalDamageReductionRatingUniqueRing12", "IncreasedPhysicalDamageReductionRatingUnique__1", "IncreasedPhysicalDamageReductionRatingUnique__10", "IncreasedPhysicalDamageReductionRatingUnique__11", "IncreasedPhysicalDamageReductionRatingUnique__12", "IncreasedPhysicalDamageReductionRatingUnique__2", "IncreasedPhysicalDamageReductionRatingUnique__3", "IncreasedPhysicalDamageReductionRatingUnique__4", "IncreasedPhysicalDamageReductionRatingUnique__5", "IncreasedPhysicalDamageReductionRatingUnique__6_", "IncreasedPhysicalDamageReductionRatingUnique__7", "IncreasedPhysicalDamageReductionRatingUnique__8", "IncreasedPhysicalDamageReductionRatingUnique__9", "LocalBaseArmourAndEvasionRatingUnique__1", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2", "LocalIncreasedPhysicalDamageReductionRatingUnique__1", }, ["+(#) to armour and evasion rating"] = { "ArmourAndEvasionImplicitBelt1", }, - ["+(#) to dexterity"] = { "DexterityImplicitAmulet1", "DexterityImplicitQuiver1", "DexterityUniqueBelt7", "DexterityUniqueBodyDex1", "DexterityUniqueBodyDex4", "DexterityUniqueBootsDex1", "DexterityUniqueBootsDex4_", "DexterityUniqueBootsDex8", "DexterityUniqueBootsDex9", "DexterityUniqueBootsDexInt2", "DexterityUniqueBootsInt1", "DexterityUniqueBootsStrDex1", "DexterityUniqueBow4", "DexterityUniqueBow6", "DexterityUniqueBow7", "DexterityUniqueClaw9", "DexterityUniqueDagger11", "DexterityUniqueDagger3", "DexterityUniqueGlovesDex2", "DexterityUniqueGlovesDexInt4", "DexterityUniqueGlovesDex_1", "DexterityUniqueGlovesInt4__", "DexterityUniqueGlovesStrDex1", "DexterityUniqueHelmetDex4", "DexterityUniqueHelmetDexInt2", "DexterityUniqueHelmetStrDex2", "DexterityUniqueHelmetStrDex3", "DexterityUniqueJewel13", "DexterityUniqueJewel36", "DexterityUniqueQuiver6", "DexterityUniqueRing8", "DexterityUniqueShieldStrInt2", "DexterityUnique__1", "DexterityUnique__10_", "DexterityUnique__11", "DexterityUnique__12", "DexterityUnique__14", "DexterityUnique__15", "DexterityUnique__16", "DexterityUnique__17", "DexterityUnique__18", "DexterityUnique__19", "DexterityUnique__2", "DexterityUnique__20__", "DexterityUnique__21_", "DexterityUnique__22", "DexterityUnique__23", "DexterityUnique__24", "DexterityUnique__25", "DexterityUnique__26", "DexterityUnique__27", "DexterityUnique__28", "DexterityUnique__29", "DexterityUnique__3", "DexterityUnique__30", "DexterityUnique__31", "DexterityUnique__32", "DexterityUnique__33", "DexterityUnique__34", "DexterityUnique__4", "DexterityUnique__5", "DexterityUnique__6", "DexterityUnique__7", "DexterityUnique__8", }, + ["+(#) to dexterity"] = { "DexterityImplicitAmulet1", "DexterityImplicitQuiver1", "DexterityUniqueBelt7", "DexterityUniqueBodyDex1", "DexterityUniqueBodyDex4", "DexterityUniqueBootsDex1", "DexterityUniqueBootsDex4_", "DexterityUniqueBootsDex8", "DexterityUniqueBootsDex9", "DexterityUniqueBootsDexInt2", "DexterityUniqueBootsInt1", "DexterityUniqueBootsStrDex1", "DexterityUniqueBow4", "DexterityUniqueBow6", "DexterityUniqueBow7", "DexterityUniqueClaw9", "DexterityUniqueDagger11", "DexterityUniqueDagger3", "DexterityUniqueGlovesDex2", "DexterityUniqueGlovesDexInt4", "DexterityUniqueGlovesDex_1", "DexterityUniqueGlovesInt4__", "DexterityUniqueGlovesStrDex1", "DexterityUniqueHelmetDex4", "DexterityUniqueHelmetDexInt2", "DexterityUniqueHelmetStrDex2", "DexterityUniqueHelmetStrDex3", "DexterityUniqueJewel13", "DexterityUniqueJewel36", "DexterityUniqueQuiver6", "DexterityUniqueRing8", "DexterityUniqueShieldStrInt2", "DexterityUnique__1", "DexterityUnique__10_", "DexterityUnique__11", "DexterityUnique__12", "DexterityUnique__14", "DexterityUnique__15", "DexterityUnique__16", "DexterityUnique__17", "DexterityUnique__18", "DexterityUnique__19", "DexterityUnique__2", "DexterityUnique__20__", "DexterityUnique__21_", "DexterityUnique__22", "DexterityUnique__23", "DexterityUnique__24", "DexterityUnique__25", "DexterityUnique__26", "DexterityUnique__27", "DexterityUnique__28", "DexterityUnique__29", "DexterityUnique__3", "DexterityUnique__30", "DexterityUnique__31", "DexterityUnique__32", "DexterityUnique__33", "DexterityUnique__34", "DexterityUnique__35", "DexterityUnique__4", "DexterityUnique__5", "DexterityUnique__6", "DexterityUnique__7", "DexterityUnique__8", }, ["+(#) to dexterity and intelligence"] = { "DexterityAndIntelligenceUniqueQuiver_1", "DexterityAndIntelligenceUnique_2", "DexterityAndIntelligenceUnique_3", "HybridDexInt", }, ["+(#) to evasion rating"] = { "IncreasedEvasionRatingUniqueAmulet17", "IncreasedEvasionRatingUniqueAmulet7", "IncreasedEvasionRatingUniqueOneHandSword4", "IncreasedEvasionRatingUniqueOneHandSword9", "IncreasedEvasionRatingUniqueQuiver1", "IncreasedEvasionRatingUniqueRapier1", "IncreasedEvasionRatingUniqueRing30", "IncreasedEvasionRatingUnique__3", "IncreasedEvasionRatingUnique__4", "IncreasedEvasionRatingUnique__5_", "IncreasedEvasionRatingUnique__6_", "IncreasedEvasionRatingUnique__7", "LocalIncreasedEvasionRatingPercentUniqueBootsDex5", "LocalIncreasedEvasionRatingPercentUniqueBootsStrDex4", "LocalIncreasedEvasionRatingPercentUniqueGlovesDex1", "LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex3", "LocalIncreasedEvasionRatingPercentUniqueHelmetDex3", "LocalIncreasedEvasionRatingUniqueBodyDex6", "LocalIncreasedEvasionRatingUniqueBodyDex7", "LocalIncreasedEvasionRatingUniqueBodyInt5", "LocalIncreasedEvasionRatingUniqueBootsDex8", "LocalIncreasedEvasionRatingUniqueGlovesDex_1", "LocalIncreasedEvasionRatingUniqueShieldStrDex2", "LocalIncreasedEvasionRatingUnique__1", "LocalIncreasedEvasionRatingUnique__2", "LocalIncreasedEvasionRatingUnique__3", "LocalIncreasedEvasionRatingUnique__4", "LocalIncreasedEvasionRatingUnique__5", }, ["+(#) to evasion rating and energy shield"] = { "LocalFlatIncreasedEvasionAndEnergyShieldUnique__1", "LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_", }, ["+(#) to evasion rating while in sand stance"] = { "EvasionRatingSandStanceUnique__1", }, ["+(#) to evasion rating while on low life"] = { "EvasionOnLowLifeUniqueAmulet4", }, ["+(#) to intelligence"] = { "IntelligenceImplicitAmulet1", "IntelligenceUniqueBelt1", "IntelligenceUniqueBelt11", "IntelligenceUniqueBodyInt3", "IntelligenceUniqueBodyStrInt3", "IntelligenceUniqueBootsDex1", "IntelligenceUniqueBootsInt1", "IntelligenceUniqueBootsInt3", "IntelligenceUniqueDagger10_", "IntelligenceUniqueGlovesInt2", "IntelligenceUniqueGlovesInt3", "IntelligenceUniqueGlovesInt5", "IntelligenceUniqueGlovesStr3", "IntelligenceUniqueHelmetInt5", "IntelligenceUniqueHelmetInt6", "IntelligenceUniqueHelmetInt9", "IntelligenceUniqueHelmetWard1", "IntelligenceUniqueJewel11", "IntelligenceUniqueJewel35", "IntelligenceUniqueOneHandAxe1", "IntelligenceUniqueQuiver6", "IntelligenceUniqueRing13", "IntelligenceUniqueRing34", "IntelligenceUniqueRing4", "IntelligenceUniqueSceptre5", "IntelligenceUniqueShieldDex3", "IntelligenceUniqueShieldInt4", "IntelligenceUniqueStaff8", "IntelligenceUniqueWand2", "IntelligenceUniqueWand8", "IntelligenceUnique__10", "IntelligenceUnique__11", "IntelligenceUnique__12", "IntelligenceUnique__14", "IntelligenceUnique__15_", "IntelligenceUnique__16", "IntelligenceUnique__17", "IntelligenceUnique__18", "IntelligenceUnique__19", "IntelligenceUnique__20", "IntelligenceUnique__21", "IntelligenceUnique__22_", "IntelligenceUnique__23", "IntelligenceUnique__25", "IntelligenceUnique__26_", "IntelligenceUnique__27", "IntelligenceUnique__28", "IntelligenceUnique__29", "IntelligenceUnique__3", "IntelligenceUnique__30", "IntelligenceUnique__31", "IntelligenceUnique__32", "IntelligenceUnique__33", "IntelligenceUnique__34", "IntelligenceUnique__35", "IntelligenceUnique__36", "IntelligenceUnique__37", "IntelligenceUnique__38", "IntelligenceUnique__4", "IntelligenceUnique__6", "IntelligenceUnique__7", "IntelligenceUnique__8", "IntelligenceUnique__9", "Intelligence__1", }, + ["+(#) to level of all cold spell skill gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueStaff2", }, ["+(#) to level of all elemental skill gems if the stars are aligned"] = { "InfluenceElementalSkillGemLevelUnique__1", }, ["+(#) to level of all elemental support gems if the stars are aligned"] = { "InfluenceElementalSupportGemLevelUnique__1", }, ["+(#) to level of all melee skill gems"] = { "GlobalIncreaseMeleeSkillGemLevelUnique__1", }, ["+(#) to level of all minion skill gems"] = { "GlobalIncreaseMinionSpellSkillGemLevelUnique__1", "GlobalIncreaseMinionSpellSkillGemLevelUnique__2", "GlobalIncreaseMinionSpellSkillGemLevelUnique__5", }, ["+(#) to level of all spell skill gems"] = { "GlobalSpellGemsLevelUniqueStaff_1", "GlobalSpellGemsLevelUniqueStaff_2", }, + ["+(#) to level of all vaal skill gems"] = { "GlobalVaalGemsLevelUnique__1", }, ["+(#) to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUnique___3", }, ["+(#) to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUnique__10", "LocalIncreaseSocketedGemLevelUnique__9", }, ["+(#) to level of socketed lightning gems"] = { "LocalIncreaseSocketedLightningGemLevelUnique__1", }, ["+(#) to maximum charges"] = { "FlaskExtraChargesUnique__2_", "FlaskExtraChargesUnique__3", }, - ["+(#) to maximum energy shield"] = { "AddedEnergyShieldFlatUnique_1", "IncreasedEnergyShieldImplicitBelt1", "IncreasedEnergyShieldImplicitBelt2", "IncreasedEnergyShieldImplicitRing1", "IncreasedEnergyShieldUniqueAmulet14", "IncreasedEnergyShieldUniqueBelt11", "IncreasedEnergyShieldUniqueBelt5", "IncreasedEnergyShieldUniqueBodyStrDexInt1", "IncreasedEnergyShieldUniqueClaw1", "IncreasedEnergyShieldUniqueQuiver7", "IncreasedEnergyShieldUniqueRing18", "IncreasedEnergyShieldUniqueRing27", "IncreasedEnergyShieldUniqueRing35", "IncreasedEnergyShieldUnique__10", "IncreasedEnergyShieldUnique__11", "IncreasedEnergyShieldUnique__12", "IncreasedEnergyShieldUnique__13", "IncreasedEnergyShieldUnique__3", "IncreasedEnergyShieldUnique__4", "IncreasedEnergyShieldUnique__5", "IncreasedEnergyShieldUnique__7", "IncreasedEnergyShieldUnique__8", "IncreasedEnergyShieldUnique__9", "IncreasedEnergyShieldUnique___1", "LocalIncreasedEnergySheildUnique__2_", "LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2", "LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1", "LocalIncreasedEnergyShieldPercentUniqueBootsInt1", "LocalIncreasedEnergyShieldPercentUniqueIntHelmet1", "LocalIncreasedEnergyShieldUniqueBodyInt5", "LocalIncreasedEnergyShieldUniqueBootsDex1", "LocalIncreasedEnergyShieldUniqueBootsDex8", "LocalIncreasedEnergyShieldUniqueBootsDexInt4", "LocalIncreasedEnergyShieldUniqueBootsInt2", "LocalIncreasedEnergyShieldUniqueGlovesDexInt3", "LocalIncreasedEnergyShieldUniqueGlovesStr4", "LocalIncreasedEnergyShieldUniqueHelmetDexInt5", "LocalIncreasedEnergyShieldUniqueHelmetInt5_", "LocalIncreasedEnergyShieldUniqueHelmetInt6", "LocalIncreasedEnergyShieldUniqueHelmetInt_1", "LocalIncreasedEnergyShieldUniqueHelmetStrInt5_", "LocalIncreasedEnergyShieldUniqueShieldInt5", "LocalIncreasedEnergyShieldUnique__10", "LocalIncreasedEnergyShieldUnique__11", "LocalIncreasedEnergyShieldUnique__12", "LocalIncreasedEnergyShieldUnique__13", "LocalIncreasedEnergyShieldUnique__14", "LocalIncreasedEnergyShieldUnique__15", "LocalIncreasedEnergyShieldUnique__16", "LocalIncreasedEnergyShieldUnique__17__", "LocalIncreasedEnergyShieldUnique__18_", "LocalIncreasedEnergyShieldUnique__19", "LocalIncreasedEnergyShieldUnique__20", "LocalIncreasedEnergyShieldUnique__21", "LocalIncreasedEnergyShieldUnique__22", "LocalIncreasedEnergyShieldUnique__23", "LocalIncreasedEnergyShieldUnique__24_", "LocalIncreasedEnergyShieldUnique__25", "LocalIncreasedEnergyShieldUnique__26", "LocalIncreasedEnergyShieldUnique__27_", "LocalIncreasedEnergyShieldUnique__28", "LocalIncreasedEnergyShieldUnique__29", "LocalIncreasedEnergyShieldUnique__30__", "LocalIncreasedEnergyShieldUnique__31", "LocalIncreasedEnergyShieldUnique__32", "LocalIncreasedEnergyShieldUnique__33", "LocalIncreasedEnergyShieldUnique__34", "LocalIncreasedEnergyShieldUnique__35", "LocalIncreasedEnergyShieldUnique__5", "LocalIncreasedEnergyShieldUnique__6", "LocalIncreasedEnergyShieldUnique__7", "LocalIncreasedEnergyShieldUnique__8", "LocalIncreasedEnergyShieldUnique__9", "LocalIncreasedEnergyShiledUniqueBootsInt6", "RitualRingEnergyShield", }, + ["+(#) to maximum energy shield"] = { "AddedEnergyShieldFlatUnique_1", "IncreasedEnergyShieldImplicitBelt1", "IncreasedEnergyShieldImplicitBelt2", "IncreasedEnergyShieldImplicitRing1", "IncreasedEnergyShieldUniqueAmulet14", "IncreasedEnergyShieldUniqueBelt11", "IncreasedEnergyShieldUniqueBelt5", "IncreasedEnergyShieldUniqueBodyStrDexInt1", "IncreasedEnergyShieldUniqueClaw1", "IncreasedEnergyShieldUniqueQuiver7", "IncreasedEnergyShieldUniqueRing18", "IncreasedEnergyShieldUniqueRing27", "IncreasedEnergyShieldUniqueRing35", "IncreasedEnergyShieldUnique__10", "IncreasedEnergyShieldUnique__11", "IncreasedEnergyShieldUnique__12", "IncreasedEnergyShieldUnique__13", "IncreasedEnergyShieldUnique__14", "IncreasedEnergyShieldUnique__3", "IncreasedEnergyShieldUnique__4", "IncreasedEnergyShieldUnique__5", "IncreasedEnergyShieldUnique__7", "IncreasedEnergyShieldUnique__8", "IncreasedEnergyShieldUnique__9", "IncreasedEnergyShieldUnique___1", "LocalIncreasedEnergySheildUnique__2_", "LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2", "LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1", "LocalIncreasedEnergyShieldPercentUniqueBootsInt1", "LocalIncreasedEnergyShieldPercentUniqueIntHelmet1", "LocalIncreasedEnergyShieldUniqueBodyInt5", "LocalIncreasedEnergyShieldUniqueBootsDex1", "LocalIncreasedEnergyShieldUniqueBootsDex8", "LocalIncreasedEnergyShieldUniqueBootsDexInt4", "LocalIncreasedEnergyShieldUniqueBootsInt2", "LocalIncreasedEnergyShieldUniqueGlovesDexInt3", "LocalIncreasedEnergyShieldUniqueGlovesStr4", "LocalIncreasedEnergyShieldUniqueHelmetDexInt5", "LocalIncreasedEnergyShieldUniqueHelmetInt5_", "LocalIncreasedEnergyShieldUniqueHelmetInt6", "LocalIncreasedEnergyShieldUniqueHelmetInt_1", "LocalIncreasedEnergyShieldUniqueHelmetStrInt5_", "LocalIncreasedEnergyShieldUniqueShieldInt5", "LocalIncreasedEnergyShieldUnique__10", "LocalIncreasedEnergyShieldUnique__11", "LocalIncreasedEnergyShieldUnique__12", "LocalIncreasedEnergyShieldUnique__13", "LocalIncreasedEnergyShieldUnique__14", "LocalIncreasedEnergyShieldUnique__15", "LocalIncreasedEnergyShieldUnique__16", "LocalIncreasedEnergyShieldUnique__17__", "LocalIncreasedEnergyShieldUnique__18_", "LocalIncreasedEnergyShieldUnique__19", "LocalIncreasedEnergyShieldUnique__20", "LocalIncreasedEnergyShieldUnique__21", "LocalIncreasedEnergyShieldUnique__22", "LocalIncreasedEnergyShieldUnique__23", "LocalIncreasedEnergyShieldUnique__24_", "LocalIncreasedEnergyShieldUnique__25", "LocalIncreasedEnergyShieldUnique__26", "LocalIncreasedEnergyShieldUnique__27_", "LocalIncreasedEnergyShieldUnique__28", "LocalIncreasedEnergyShieldUnique__29", "LocalIncreasedEnergyShieldUnique__30__", "LocalIncreasedEnergyShieldUnique__31", "LocalIncreasedEnergyShieldUnique__32", "LocalIncreasedEnergyShieldUnique__33", "LocalIncreasedEnergyShieldUnique__34", "LocalIncreasedEnergyShieldUnique__35", "LocalIncreasedEnergyShieldUnique__5", "LocalIncreasedEnergyShieldUnique__6", "LocalIncreasedEnergyShieldUnique__7", "LocalIncreasedEnergyShieldUnique__8", "LocalIncreasedEnergyShieldUnique__9", "LocalIncreasedEnergyShiledUniqueBootsInt6", "RitualRingEnergyShield", }, + ["+(#) to maximum energy shield per blue socket"] = { "EnergyShieldPerBlueSocketUniqueRing39", }, ["+(#) to maximum fortification"] = { "MaximumFortificationUnique__1", }, - ["+(#) to maximum life"] = { "IncreasedLifeFireResistUniqueBelt14", "IncreasedLifeImplicitBelt1", "IncreasedLifeImplicitGlovesDemigods1", "IncreasedLifeImplicitRing1", "IncreasedLifeImplicitShield1", "IncreasedLifeImplicitShield2", "IncreasedLifeImplicitShield3", "IncreasedLifeUniqueAmulet14", "IncreasedLifeUniqueAmulet18", "IncreasedLifeUniqueAmulet19", "IncreasedLifeUniqueAmulet22", "IncreasedLifeUniqueAmulet25", "IncreasedLifeUniqueAmulet4", "IncreasedLifeUniqueBelt13", "IncreasedLifeUniqueBelt7", "IncreasedLifeUniqueBelt8", "IncreasedLifeUniqueBodyDex6", "IncreasedLifeUniqueBodyDexInt1", "IncreasedLifeUniqueBodyDexInt3", "IncreasedLifeUniqueBodyInt5", "IncreasedLifeUniqueBodyStr2", "IncreasedLifeUniqueBodyStr6", "IncreasedLifeUniqueBodyStrDex2", "IncreasedLifeUniqueBodyStrDex3_", "IncreasedLifeUniqueBodyStrDex4", "IncreasedLifeUniqueBodyStrDex5", "IncreasedLifeUniqueBodyStrDexInt1", "IncreasedLifeUniqueBodyStrInt5", "IncreasedLifeUniqueBodyStrInt6", "IncreasedLifeUniqueBodyStrInt7", "IncreasedLifeUniqueBootsDex6", "IncreasedLifeUniqueBootsDex7", "IncreasedLifeUniqueBootsDex9__", "IncreasedLifeUniqueBootsStr2", "IncreasedLifeUniqueBootsStr3_", "IncreasedLifeUniqueBootsStrDex3", "IncreasedLifeUniqueGlovesDexInt5", "IncreasedLifeUniqueGlovesInt3", "IncreasedLifeUniqueGlovesStr3", "IncreasedLifeUniqueGlovesStrDex4", "IncreasedLifeUniqueGlovesStrInt2", "IncreasedLifeUniqueHelmetDex4", "IncreasedLifeUniqueHelmetDex5", "IncreasedLifeUniqueHelmetDexInt2", "IncreasedLifeUniqueHelmetStr1", "IncreasedLifeUniqueHelmetStrDex4", "IncreasedLifeUniqueHelmetStrDex5", "IncreasedLifeUniqueOneHandAxe3", "IncreasedLifeUniqueOneHandSword1", "IncreasedLifeUniqueQuiver21", "IncreasedLifeUniqueQuiver3", "IncreasedLifeUniqueQuiver9", "IncreasedLifeUniqueRing1", "IncreasedLifeUniqueRing19", "IncreasedLifeUniqueRing28", "IncreasedLifeUniqueRing32", "IncreasedLifeUniqueShieldDex2", "IncreasedLifeUniqueShieldDex5", "IncreasedLifeUniqueShieldDex6", "IncreasedLifeUniqueShieldDexInt1", "IncreasedLifeUniqueShieldStr1", "IncreasedLifeUniqueShieldStr2", "IncreasedLifeUniqueShieldStr4", "IncreasedLifeUniqueShieldStr5", "IncreasedLifeUniqueShieldStrDex7", "IncreasedLifeUniqueShieldStrInt6", "IncreasedLifeUniqueTwoHandMace6", "IncreasedLifeUniqueWand4", "IncreasedLifeUnique__1", "IncreasedLifeUnique__10", "IncreasedLifeUnique__100", "IncreasedLifeUnique__101", "IncreasedLifeUnique__102", "IncreasedLifeUnique__103", "IncreasedLifeUnique__105", "IncreasedLifeUnique__106_", "IncreasedLifeUnique__107", "IncreasedLifeUnique__108", "IncreasedLifeUnique__109_", "IncreasedLifeUnique__11", "IncreasedLifeUnique__110", "IncreasedLifeUnique__111__", "IncreasedLifeUnique__112", "IncreasedLifeUnique__113", "IncreasedLifeUnique__114", "IncreasedLifeUnique__115", "IncreasedLifeUnique__116", "IncreasedLifeUnique__117", "IncreasedLifeUnique__118", "IncreasedLifeUnique__119", "IncreasedLifeUnique__120", "IncreasedLifeUnique__121", "IncreasedLifeUnique__122", "IncreasedLifeUnique__123", "IncreasedLifeUnique__124", "IncreasedLifeUnique__125", "IncreasedLifeUnique__126", "IncreasedLifeUnique__127", "IncreasedLifeUnique__12_", "IncreasedLifeUnique__13", "IncreasedLifeUnique__14", "IncreasedLifeUnique__15", "IncreasedLifeUnique__16", "IncreasedLifeUnique__18", "IncreasedLifeUnique__19", "IncreasedLifeUnique__2", "IncreasedLifeUnique__20", "IncreasedLifeUnique__21", "IncreasedLifeUnique__22", "IncreasedLifeUnique__23", "IncreasedLifeUnique__24", "IncreasedLifeUnique__25", "IncreasedLifeUnique__26", "IncreasedLifeUnique__27", "IncreasedLifeUnique__28", "IncreasedLifeUnique__29", "IncreasedLifeUnique__3", "IncreasedLifeUnique__30", "IncreasedLifeUnique__31", "IncreasedLifeUnique__32", "IncreasedLifeUnique__33", "IncreasedLifeUnique__34", "IncreasedLifeUnique__35", "IncreasedLifeUnique__36_", "IncreasedLifeUnique__37", "IncreasedLifeUnique__38", "IncreasedLifeUnique__39", "IncreasedLifeUnique__4", "IncreasedLifeUnique__40", "IncreasedLifeUnique__41", "IncreasedLifeUnique__42_", "IncreasedLifeUnique__43", "IncreasedLifeUnique__44", "IncreasedLifeUnique__45", "IncreasedLifeUnique__46", "IncreasedLifeUnique__47", "IncreasedLifeUnique__48", "IncreasedLifeUnique__49_", "IncreasedLifeUnique__5", "IncreasedLifeUnique__50", "IncreasedLifeUnique__51", "IncreasedLifeUnique__52", "IncreasedLifeUnique__53", "IncreasedLifeUnique__54", "IncreasedLifeUnique__55", "IncreasedLifeUnique__56", "IncreasedLifeUnique__57", "IncreasedLifeUnique__58", "IncreasedLifeUnique__59", "IncreasedLifeUnique__6", "IncreasedLifeUnique__60", "IncreasedLifeUnique__61", "IncreasedLifeUnique__62", "IncreasedLifeUnique__63_", "IncreasedLifeUnique__64", "IncreasedLifeUnique__65", "IncreasedLifeUnique__66", "IncreasedLifeUnique__67_", "IncreasedLifeUnique__68_", "IncreasedLifeUnique__69", "IncreasedLifeUnique__70", "IncreasedLifeUnique__71", "IncreasedLifeUnique__72_", "IncreasedLifeUnique__73", "IncreasedLifeUnique__74", "IncreasedLifeUnique__75", "IncreasedLifeUnique__76", "IncreasedLifeUnique__77", "IncreasedLifeUnique__78", "IncreasedLifeUnique__79", "IncreasedLifeUnique__8", "IncreasedLifeUnique__80_", "IncreasedLifeUnique__81", "IncreasedLifeUnique__82", "IncreasedLifeUnique__83", "IncreasedLifeUnique__84", "IncreasedLifeUnique__85_", "IncreasedLifeUnique__86_", "IncreasedLifeUnique__88", "IncreasedLifeUnique__89", "IncreasedLifeUnique__9", "IncreasedLifeUnique__90", "IncreasedLifeUnique__91", "IncreasedLifeUnique__92_", "IncreasedLifeUnique__93", "IncreasedLifeUnique__94", "IncreasedLifeUnique__95", "IncreasedLifeUnique__96__", "IncreasedLifeUnique__97", "IncreasedLifeUnique__98", "IncreasedLifeUnique__99", "IncreasedLifeUnique___7", "MaximumLifeUnique__24", "MaximumLifeUnique__25", "RitualRingLife", }, + ["+(#) to maximum life"] = { "IncreasedLifeFireResistUniqueBelt14", "IncreasedLifeImplicitBelt1", "IncreasedLifeImplicitGlovesDemigods1", "IncreasedLifeImplicitRing1", "IncreasedLifeImplicitShield1", "IncreasedLifeImplicitShield2", "IncreasedLifeImplicitShield3", "IncreasedLifeUniqueAmulet14", "IncreasedLifeUniqueAmulet18", "IncreasedLifeUniqueAmulet19", "IncreasedLifeUniqueAmulet22", "IncreasedLifeUniqueAmulet25", "IncreasedLifeUniqueAmulet4", "IncreasedLifeUniqueBelt13", "IncreasedLifeUniqueBelt7", "IncreasedLifeUniqueBelt8", "IncreasedLifeUniqueBodyDex6", "IncreasedLifeUniqueBodyDexInt1", "IncreasedLifeUniqueBodyDexInt3", "IncreasedLifeUniqueBodyInt5", "IncreasedLifeUniqueBodyStr2", "IncreasedLifeUniqueBodyStr6", "IncreasedLifeUniqueBodyStrDex2", "IncreasedLifeUniqueBodyStrDex3_", "IncreasedLifeUniqueBodyStrDex4", "IncreasedLifeUniqueBodyStrDex5", "IncreasedLifeUniqueBodyStrDexInt1", "IncreasedLifeUniqueBodyStrInt5", "IncreasedLifeUniqueBodyStrInt6", "IncreasedLifeUniqueBodyStrInt7", "IncreasedLifeUniqueBootsDex6", "IncreasedLifeUniqueBootsDex7", "IncreasedLifeUniqueBootsDex9__", "IncreasedLifeUniqueBootsStr2", "IncreasedLifeUniqueBootsStr3_", "IncreasedLifeUniqueBootsStrDex3", "IncreasedLifeUniqueGlovesDexInt5", "IncreasedLifeUniqueGlovesInt3", "IncreasedLifeUniqueGlovesStr3", "IncreasedLifeUniqueGlovesStrDex4", "IncreasedLifeUniqueGlovesStrInt2", "IncreasedLifeUniqueHelmetDex4", "IncreasedLifeUniqueHelmetDex5", "IncreasedLifeUniqueHelmetDexInt2", "IncreasedLifeUniqueHelmetStr1", "IncreasedLifeUniqueHelmetStrDex4", "IncreasedLifeUniqueHelmetStrDex5", "IncreasedLifeUniqueOneHandAxe3", "IncreasedLifeUniqueOneHandSword1", "IncreasedLifeUniqueQuiver21", "IncreasedLifeUniqueQuiver3", "IncreasedLifeUniqueQuiver9", "IncreasedLifeUniqueRing1", "IncreasedLifeUniqueRing19", "IncreasedLifeUniqueRing28", "IncreasedLifeUniqueRing32", "IncreasedLifeUniqueShieldDex2", "IncreasedLifeUniqueShieldDex5", "IncreasedLifeUniqueShieldDex6", "IncreasedLifeUniqueShieldDexInt1", "IncreasedLifeUniqueShieldStr1", "IncreasedLifeUniqueShieldStr2", "IncreasedLifeUniqueShieldStr4", "IncreasedLifeUniqueShieldStr5", "IncreasedLifeUniqueShieldStrDex7", "IncreasedLifeUniqueShieldStrInt6", "IncreasedLifeUniqueTwoHandMace6", "IncreasedLifeUniqueWand4", "IncreasedLifeUnique__1", "IncreasedLifeUnique__10", "IncreasedLifeUnique__100", "IncreasedLifeUnique__101", "IncreasedLifeUnique__102", "IncreasedLifeUnique__103", "IncreasedLifeUnique__105", "IncreasedLifeUnique__106_", "IncreasedLifeUnique__107", "IncreasedLifeUnique__108", "IncreasedLifeUnique__109_", "IncreasedLifeUnique__11", "IncreasedLifeUnique__110", "IncreasedLifeUnique__111__", "IncreasedLifeUnique__112", "IncreasedLifeUnique__113", "IncreasedLifeUnique__114", "IncreasedLifeUnique__115", "IncreasedLifeUnique__116", "IncreasedLifeUnique__117", "IncreasedLifeUnique__118", "IncreasedLifeUnique__119", "IncreasedLifeUnique__120", "IncreasedLifeUnique__121", "IncreasedLifeUnique__122", "IncreasedLifeUnique__123", "IncreasedLifeUnique__124", "IncreasedLifeUnique__125", "IncreasedLifeUnique__126", "IncreasedLifeUnique__127", "IncreasedLifeUnique__128", "IncreasedLifeUnique__129", "IncreasedLifeUnique__12_", "IncreasedLifeUnique__13", "IncreasedLifeUnique__14", "IncreasedLifeUnique__15", "IncreasedLifeUnique__16", "IncreasedLifeUnique__18", "IncreasedLifeUnique__19", "IncreasedLifeUnique__2", "IncreasedLifeUnique__20", "IncreasedLifeUnique__21", "IncreasedLifeUnique__22", "IncreasedLifeUnique__23", "IncreasedLifeUnique__24", "IncreasedLifeUnique__25", "IncreasedLifeUnique__26", "IncreasedLifeUnique__27", "IncreasedLifeUnique__28", "IncreasedLifeUnique__29", "IncreasedLifeUnique__3", "IncreasedLifeUnique__30", "IncreasedLifeUnique__31", "IncreasedLifeUnique__32", "IncreasedLifeUnique__33", "IncreasedLifeUnique__34", "IncreasedLifeUnique__35", "IncreasedLifeUnique__36_", "IncreasedLifeUnique__37", "IncreasedLifeUnique__38", "IncreasedLifeUnique__39", "IncreasedLifeUnique__4", "IncreasedLifeUnique__40", "IncreasedLifeUnique__41", "IncreasedLifeUnique__42_", "IncreasedLifeUnique__43", "IncreasedLifeUnique__44", "IncreasedLifeUnique__45", "IncreasedLifeUnique__46", "IncreasedLifeUnique__47", "IncreasedLifeUnique__48", "IncreasedLifeUnique__49_", "IncreasedLifeUnique__5", "IncreasedLifeUnique__50", "IncreasedLifeUnique__51", "IncreasedLifeUnique__52", "IncreasedLifeUnique__53", "IncreasedLifeUnique__54", "IncreasedLifeUnique__55", "IncreasedLifeUnique__56", "IncreasedLifeUnique__57", "IncreasedLifeUnique__58", "IncreasedLifeUnique__59", "IncreasedLifeUnique__6", "IncreasedLifeUnique__60", "IncreasedLifeUnique__61", "IncreasedLifeUnique__62", "IncreasedLifeUnique__63_", "IncreasedLifeUnique__64", "IncreasedLifeUnique__65", "IncreasedLifeUnique__66", "IncreasedLifeUnique__67_", "IncreasedLifeUnique__68_", "IncreasedLifeUnique__69", "IncreasedLifeUnique__70", "IncreasedLifeUnique__71", "IncreasedLifeUnique__72_", "IncreasedLifeUnique__73", "IncreasedLifeUnique__74", "IncreasedLifeUnique__75", "IncreasedLifeUnique__76", "IncreasedLifeUnique__77", "IncreasedLifeUnique__78", "IncreasedLifeUnique__79", "IncreasedLifeUnique__8", "IncreasedLifeUnique__80_", "IncreasedLifeUnique__81", "IncreasedLifeUnique__82", "IncreasedLifeUnique__83", "IncreasedLifeUnique__84", "IncreasedLifeUnique__85_", "IncreasedLifeUnique__86_", "IncreasedLifeUnique__88", "IncreasedLifeUnique__89", "IncreasedLifeUnique__9", "IncreasedLifeUnique__90", "IncreasedLifeUnique__91", "IncreasedLifeUnique__92_", "IncreasedLifeUnique__93", "IncreasedLifeUnique__94", "IncreasedLifeUnique__95", "IncreasedLifeUnique__96__", "IncreasedLifeUnique__97", "IncreasedLifeUnique__98", "IncreasedLifeUnique__99", "IncreasedLifeUnique___7", "MaximumLifeUnique__24", "MaximumLifeUnique__25", "RitualRingLife", }, ["+(#) to maximum life if there are no life modifiers on other equipped items"] = { "IncreasedLifeNoLifeModifiersUnique__1", }, + ["+(#) to maximum life per red socket"] = { "LifePerRedSocketUniqueRing39", }, ["+(#) to maximum mana"] = { "IncreasedManaImplicitArmour1", "IncreasedManaImplicitRing1", "IncreasedManaUniqueAmulet1", "IncreasedManaUniqueAmulet18", "IncreasedManaUniqueAmulet19", "IncreasedManaUniqueBelt5", "IncreasedManaUniqueBodyDexInt2", "IncreasedManaUniqueBodyInt5", "IncreasedManaUniqueBodyInt9", "IncreasedManaUniqueBodyStrInt6", "IncreasedManaUniqueBootsInt5", "IncreasedManaUniqueBootsStrDex3", "IncreasedManaUniqueBootsStrDex4", "IncreasedManaUniqueBow1", "IncreasedManaUniqueClaw7", "IncreasedManaUniqueDagger4", "IncreasedManaUniqueDexHelmet1", "IncreasedManaUniqueGlovesInt3", "IncreasedManaUniqueHelmetDexInt2", "IncreasedManaUniqueHelmetDexInt3", "IncreasedManaUniqueHelmetInt4", "IncreasedManaUniqueHelmetInt8", "IncreasedManaUniqueHelmetStrDex5_", "IncreasedManaUniqueHelmetStrInt3", "IncreasedManaUniqueHelmetStrInt_1", "IncreasedManaUniqueIntHelmet3", "IncreasedManaUniqueQuiver1", "IncreasedManaUniqueQuiver1a", "IncreasedManaUniqueRing14", "IncreasedManaUniqueRing17", "IncreasedManaUniqueRing20", "IncreasedManaUniqueRing29", "IncreasedManaUniqueSceptre6", "IncreasedManaUniqueShieldInt2", "IncreasedManaUniqueTwoHandAxe9", "IncreasedManaUniqueTwoHandSword2", "IncreasedManaUniqueWand3", "IncreasedManaUniqueWand4", "IncreasedManaUnique__1", "IncreasedManaUnique__10", "IncreasedManaUnique__12", "IncreasedManaUnique__13", "IncreasedManaUnique__14", "IncreasedManaUnique__15", "IncreasedManaUnique__16", "IncreasedManaUnique__17", "IncreasedManaUnique__18", "IncreasedManaUnique__20_", "IncreasedManaUnique__21", "IncreasedManaUnique__22__", "IncreasedManaUnique__23", "IncreasedManaUnique__24", "IncreasedManaUnique__25", "IncreasedManaUnique__26", "IncreasedManaUnique__27", "IncreasedManaUnique__28", "IncreasedManaUnique__29", "IncreasedManaUnique__3", "IncreasedManaUnique__30", "IncreasedManaUnique__31", "IncreasedManaUnique__4", "IncreasedManaUnique__5", "IncreasedManaUnique__6", "IncreasedManaUnique__7", "IncreasedManaUnique__8", "IncreasedManaUnique__9", "RitualRingMana", }, + ["+(#) to maximum mana per green socket"] = { "ManaPerGreenSocketUniqueRing39", }, ["+(#) to maximum number of eaten souls"] = { "SoulEaterStackCountUnique__1", }, ["+(#) to maximum number of raised zombies"] = { "MaximumMinionCountUniqueTwoHandSword4Updated", }, ["+(#) to maximum number of summoned totems"] = { "AdditionalTotemsUniqueScepter_1", }, @@ -2785,32 +2914,33 @@ return { ["+(#) to strength and dexterity"] = { "HybridStrDex", "HybridStrDexUnique__1", "StrengthAndDexterityUnique_1", }, ["+(#) to strength and intelligence"] = { "HybridStrInt", "StrengthIntelligenceUnique__2", }, ["+(#) to ward"] = { "LocalIncreasedWardUnique__1", }, - ["+(#)% chance to avoid elemental damage from hits while phasing"] = { "AvoidElementalDamagePhasingUnique__1", }, + ["+(#)% chance to avoid damage of each element from hits while phasing"] = { "AvoidElementalDamagePhasingUnique__1", }, ["+(#)% chance to avoid physical damage from hits while phasing"] = { "AvoidPhysicalDamageWhilePhasingUnique__1", }, ["+(#)% chance to block"] = { "AdditionalBlockChanceUniqueShieldStrDex1", "AdditionalBlockChanceUniqueShieldStrDex3__", "AdditionalBlockChanceUnique__1", "AdditionalBlockChanceUnique__10", "AdditionalBlockChanceUnique__12", "AdditionalBlockChanceUnique__13", "AdditionalBlockChanceUnique__3", "AdditionalBlockChanceUnique__6", "AdditionalBlockChanceUnique__7__", "AdditionalBlockChanceUnique__8_", "AdditionalBlockChanceUnique__9", }, ["+(#)% chance to block attack damage"] = { "AdditionalBlockUnique__1", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR1", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR2__", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR3", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR4", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR5", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR6", }, ["+(#)% chance to block attack damage during effect"] = { "BlockIncreasedDuringFlaskEffectUniqueFlask7", "BlockIncreasedDuringFlaskEffectUnique__1", }, + ["+(#)% chance to block attack damage when in off hand"] = { "AdditionalChanceToBlockInOffHandUnique_1", }, ["+(#)% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueTwoHandAxe6", "VillageBlockWhileDualWielding", }, - ["+(#)% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__3", }, + ["+(#)% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__2_", "StaffBlockPercentUnique__3", }, ["+(#)% chance to block spell damage"] = { "SpellBlockPercentageUnique__1", }, ["+(#)% chance to block spell damage during effect"] = { "SpellBlockIncreasedDuringFlaskEffectUniqueFlask7", "SpellBlockIncreasedDuringFlaskEffectUnique__1_", }, ["+(#)% chance to block spell damage while in off hand"] = { "SpellBlockWhileInOffHandUnique_1", }, - ["+(#)% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUnique__1", "ChanceToDodgeSpellsUnique__3_", "ChanceToDodgeUnique__1", "ChanceToSuppressSpellsUnique__1_", "ChanceToSuppressSpellsUnique__2", "ChanceToSuppressSpellsUnique__3", "ChanceToSuppressSpellsUnique__4", "SpellDodgeUniqueBootsDex7New", "SpellDodgeUniqueBootsDex7_", }, + ["+(#)% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUnique__1", "ChanceToDodgeSpellsUnique__3_", "ChanceToDodgeUnique__1", "ChanceToSuppressSpellsUnique__1_", "ChanceToSuppressSpellsUnique__2", "ChanceToSuppressSpellsUnique__3", "ChanceToSuppressSpellsUnique__4", "ChanceToSuppressSpellsUnique__5", "SpellDodgeUniqueBootsDex7New", "SpellDodgeUniqueBootsDex7_", }, ["+(#)% chance to suppress spell damage while channelling"] = { "ChanceToDodgeAttacksWhileChannellingUnique__1", "ChanceToDodgeSpellsWhileChannellingUnique__1", "ChanceToSuppressSpellsWhileChannellingUnique__1____", }, ["+(#)% chance to suppress spell damage while your off hand is empty"] = { "ChanceToDodgeWhileOffhandIsEmpty", "VillageSuppressChanceEmptyOffhand", }, ["+(#)% global critical strike multiplier while you have a frenzy charge"] = { "CriticalStrikeMultiplierFrenzyChargesUnique__1", }, - ["+(#)% to all elemental resistances"] = { "AllResistajcesUniqueStaff10", "AllResistancesDemigodsImplicit", "AllResistancesImplicitArmour1", "AllResistancesImplicitRing1", "AllResistancesImplicitVictorAmulet", "AllResistancesImplictBootsDemigods1", "AllResistancesImplictHelmetDemigods1", "AllResistancesUniqueAmulet14", "AllResistancesUniqueAmulet9", "AllResistancesUniqueBelt10", "AllResistancesUniqueBelt13", "AllResistancesUniqueBeltDemigods1", "AllResistancesUniqueBodyDexInt1", "AllResistancesUniqueBodyStrDex1", "AllResistancesUniqueBodyStrDexInt1", "AllResistancesUniqueBootsStr1", "AllResistancesUniqueDagger9", "AllResistancesUniqueHelmetDex3", "AllResistancesUniqueHelmetDexInt4", "AllResistancesUniqueHelmetStrInt1", "AllResistancesUniqueRapier2", "AllResistancesUniqueRing21", "AllResistancesUniqueRing4", "AllResistancesUniqueRing6", "AllResistancesUniqueRing7", "AllResistancesUniqueShieldDex3", "AllResistancesUniqueShieldStrInt1", "AllResistancesUniqueTwoHandMace6_", "AllResistancesUnique__10", "AllResistancesUnique__11__", "AllResistancesUnique__12", "AllResistancesUnique__14", "AllResistancesUnique__15", "AllResistancesUnique__16", "AllResistancesUnique__17", "AllResistancesUnique__19", "AllResistancesUnique__2", "AllResistancesUnique__20", "AllResistancesUnique__21", "AllResistancesUnique__23__", "AllResistancesUnique__26", "AllResistancesUnique__27", "AllResistancesUnique__28", "AllResistancesUnique__29", "AllResistancesUnique__3", "AllResistancesUnique__30", "AllResistancesUnique__31", "AllResistancesUnique__32", "AllResistancesUnique__33", "AllResistancesUnique__34", "AllResistancesUnique__35", "AllResistancesUnique__37", "AllResistancesUnique__38", "AllResistancesUnique__4", "AllResistancesUnique__5", "AllResistancesUnique__7", "AllResistancesUnique__8", "AllResistancesUnique__9", "ChanceToAvoidElementalStatusAilmentsUniqueAmulet22", }, + ["+(#)% to all elemental resistances"] = { "AllResistajcesUniqueStaff10", "AllResistancesDemigodsImplicit", "AllResistancesImplicitAmulet1", "AllResistancesImplicitArmour1", "AllResistancesImplicitRing1", "AllResistancesImplicitVictorAmulet", "AllResistancesImplictBootsDemigods1", "AllResistancesImplictHelmetDemigods1", "AllResistancesUniqueAmulet14", "AllResistancesUniqueAmulet87", "AllResistancesUniqueAmulet9", "AllResistancesUniqueBelt10", "AllResistancesUniqueBelt13", "AllResistancesUniqueBeltDemigods1", "AllResistancesUniqueBodyDexInt1", "AllResistancesUniqueBodyStrDex1", "AllResistancesUniqueBodyStrDexInt1", "AllResistancesUniqueBootsStr1", "AllResistancesUniqueDagger9", "AllResistancesUniqueHelmetDex3", "AllResistancesUniqueHelmetDexInt4", "AllResistancesUniqueHelmetStrInt1", "AllResistancesUniqueRapier2", "AllResistancesUniqueRing21", "AllResistancesUniqueRing4", "AllResistancesUniqueRing6", "AllResistancesUniqueRing7", "AllResistancesUniqueRing98", "AllResistancesUniqueShieldDex3", "AllResistancesUniqueShieldStrInt1", "AllResistancesUniqueTwoHandMace6_", "AllResistancesUnique__10", "AllResistancesUnique__11__", "AllResistancesUnique__12", "AllResistancesUnique__14", "AllResistancesUnique__15", "AllResistancesUnique__16", "AllResistancesUnique__17", "AllResistancesUnique__19", "AllResistancesUnique__2", "AllResistancesUnique__20", "AllResistancesUnique__21", "AllResistancesUnique__23__", "AllResistancesUnique__26", "AllResistancesUnique__27", "AllResistancesUnique__28", "AllResistancesUnique__29", "AllResistancesUnique__3", "AllResistancesUnique__30", "AllResistancesUnique__31", "AllResistancesUnique__32", "AllResistancesUnique__33", "AllResistancesUnique__34", "AllResistancesUnique__35", "AllResistancesUnique__37", "AllResistancesUnique__38", "AllResistancesUnique__4", "AllResistancesUnique__5", "AllResistancesUnique__7", "AllResistancesUnique__8", "AllResistancesUnique__9", "ChanceToAvoidElementalStatusAilmentsUniqueAmulet22", }, ["+(#)% to all elemental resistances while you have at least # strength"] = { "AllResistanceAt200StrengthUnique__1", }, ["+(#)% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__1__", "MaximumElementalResistanceUnique__4", }, ["+(#)% to all maximum elemental resistances if # shaper items are equipped"] = { "MaximumElementalResistance6ShaperItemsUnique__1", }, - ["+(#)% to all maximum resistances"] = { "IncreasedMaximumResistsUnique__1", }, + ["+(#)% to all maximum resistances"] = { "IncreasedMaximumResistsUniqueAmulet87", "IncreasedMaximumResistsUnique__1", }, ["+(#)% to chaos damage over time multiplier"] = { "ChaosNonAilmentDamageOverTimeMultiplierUnique__1", }, - ["+(#)% to chaos resistance"] = { "ChaosResistDemigodsTorchImplicit", "ChaosResistHelmetStrDex2", "ChaosResistImplicitBoots1", "ChaosResistImplicitRing1", "ChaosResistUniqueAmulet15_", "ChaosResistUniqueAmulet23", "ChaosResistUniqueBodyInt8", "ChaosResistUniqueBody_1", "ChaosResistUniqueBootsStrInt2", "ChaosResistUniqueBow12", "ChaosResistUniqueDagger8", "ChaosResistUniqueHelmetDexInt5", "ChaosResistUniqueHelmetInt__1", "ChaosResistUniqueHelmetStrInt2", "ChaosResistUniqueHelmetStrInt5", "ChaosResistUniqueQuiver9", "ChaosResistUniqueRing12", "ChaosResistUniqueRing16", "ChaosResistUniqueWand7", "ChaosResistUnique__10", "ChaosResistUnique__11", "ChaosResistUnique__12", "ChaosResistUnique__13", "ChaosResistUnique__14", "ChaosResistUnique__15", "ChaosResistUnique__16", "ChaosResistUnique__17", "ChaosResistUnique__18_", "ChaosResistUnique__19", "ChaosResistUnique__2", "ChaosResistUnique__20_", "ChaosResistUnique__21", "ChaosResistUnique__22", "ChaosResistUnique__23", "ChaosResistUnique__24", "ChaosResistUnique__25", "ChaosResistUnique__27", "ChaosResistUnique__28", "ChaosResistUnique__29", "ChaosResistUnique__3", "ChaosResistUnique__30", "ChaosResistUnique__31", "ChaosResistUnique__32", "ChaosResistUnique__33", "ChaosResistUnique__34", "ChaosResistUnique__35", "ChaosResistUnique__36", "ChaosResistUnique__37", "ChaosResistUnique__38", "ChaosResistUnique__4", "ChaosResistUnique__6", "ChaosResistUnique__7", "ChaosResistUnique__9", }, + ["+(#)% to chaos resistance"] = { "ChaosResistDemigodsTorchImplicit", "ChaosResistHelmetStrDex2", "ChaosResistImplicitBoots1", "ChaosResistImplicitRing1", "ChaosResistUniqueAmulet15_", "ChaosResistUniqueAmulet23", "ChaosResistUniqueBodyInt8", "ChaosResistUniqueBody_1", "ChaosResistUniqueBootsStrInt2", "ChaosResistUniqueBow12", "ChaosResistUniqueDagger8", "ChaosResistUniqueHelmetDexInt5", "ChaosResistUniqueHelmetInt__1", "ChaosResistUniqueHelmetStrInt2", "ChaosResistUniqueHelmetStrInt5", "ChaosResistUniqueQuiver9", "ChaosResistUniqueRing12", "ChaosResistUniqueRing16", "ChaosResistUniqueWand7", "ChaosResistUnique__10", "ChaosResistUnique__11", "ChaosResistUnique__12", "ChaosResistUnique__13", "ChaosResistUnique__14", "ChaosResistUnique__15", "ChaosResistUnique__16", "ChaosResistUnique__17", "ChaosResistUnique__18_", "ChaosResistUnique__19", "ChaosResistUnique__2", "ChaosResistUnique__20_", "ChaosResistUnique__21", "ChaosResistUnique__22", "ChaosResistUnique__23", "ChaosResistUnique__24", "ChaosResistUnique__25", "ChaosResistUnique__27", "ChaosResistUnique__28", "ChaosResistUnique__29", "ChaosResistUnique__3", "ChaosResistUnique__30", "ChaosResistUnique__31", "ChaosResistUnique__32", "ChaosResistUnique__33", "ChaosResistUnique__34", "ChaosResistUnique__35", "ChaosResistUnique__36", "ChaosResistUnique__37", "ChaosResistUnique__38", "ChaosResistUnique__39", "ChaosResistUnique__4", "ChaosResistUnique__6", "ChaosResistUnique__7", "ChaosResistUnique__9", }, ["+(#)% to chaos resistance when on low life"] = { "ChaosResistanceOnLowLifeUniqueRing9", }, ["+(#)% to chaos resistance while affected by herald of agony"] = { "HeraldBonusAgonyChaosResist_", }, ["+(#)% to cold and lightning resistances"] = { "ColdAndLightningResistImplicitBoots1", "ColdAndLightningResistImplicitRing1", "ColdAndLightningResistUnique__1", "ColdAndLightningResistUnique__2", }, ["+(#)% to cold damage over time multiplier"] = { "ColdDamageOverTimeMultiplierUnique__1", }, - ["+(#)% to cold resistance"] = { "ColdResistDexHelmet2", "ColdResistImplicitRing1", "ColdResistUniqueAmulet13", "ColdResistUniqueBelt1", "ColdResistUniqueBelt13", "ColdResistUniqueBelt14", "ColdResistUniqueBelt4", "ColdResistUniqueBelt9", "ColdResistUniqueBodyDex7", "ColdResistUniqueBodyInt5", "ColdResistUniqueBodyStr5", "ColdResistUniqueBodyStrInt3", "ColdResistUniqueBootsStrDex5", "ColdResistUniqueGlovesDex1", "ColdResistUniqueGlovesStrDex3", "ColdResistUniqueGlovesStrInt3", "ColdResistUniqueHelmetDex5", "ColdResistUniqueHelmetStrInt2", "ColdResistUniqueOneHandAxe1_", "ColdResistUniqueQuiver5", "ColdResistUniqueRing24", "ColdResistUniqueRing28", "ColdResistUniqueRing32", "ColdResistUniqueShieldDex7", "ColdResistUniqueShieldInt3", "ColdResistUniqueShieldStrDex1", "ColdResistUnique__1", "ColdResistUnique__10", "ColdResistUnique__11", "ColdResistUnique__12", "ColdResistUnique__13", "ColdResistUnique__15", "ColdResistUnique__16", "ColdResistUnique__17", "ColdResistUnique__18", "ColdResistUnique__19", "ColdResistUnique__2", "ColdResistUnique__20", "ColdResistUnique__21", "ColdResistUnique__22_", "ColdResistUnique__23", "ColdResistUnique__24", "ColdResistUnique__25", "ColdResistUnique__26", "ColdResistUnique__27", "ColdResistUnique__28", "ColdResistUnique__29", "ColdResistUnique__3", "ColdResistUnique__30", "ColdResistUnique__31_", "ColdResistUnique__32", "ColdResistUnique__33", "ColdResistUnique__34", "ColdResistUnique__35", "ColdResistUnique__36_", "ColdResistUnique__37", "ColdResistUnique__38", "ColdResistUnique__39", "ColdResistUnique__4", "ColdResistUnique__40", "ColdResistUnique__41", "ColdResistUnique__42", "ColdResistUnique__43", "ColdResistUnique__6", "ColdResistUnique__7", "ColdResistUnique__8", "ColdResistanceBodyDex6", }, + ["+(#)% to cold resistance"] = { "ColdResistDexHelmet2", "ColdResistImplicitRing1", "ColdResistUniqueAmulet13", "ColdResistUniqueBelt1", "ColdResistUniqueBelt13", "ColdResistUniqueBelt14", "ColdResistUniqueBelt4", "ColdResistUniqueBelt9", "ColdResistUniqueBodyDex7", "ColdResistUniqueBodyInt5", "ColdResistUniqueBodyStr5", "ColdResistUniqueBodyStrInt3", "ColdResistUniqueBootsStrDex5", "ColdResistUniqueGlovesDex1", "ColdResistUniqueGlovesStrDex3", "ColdResistUniqueGlovesStrInt3", "ColdResistUniqueHelmetDex5", "ColdResistUniqueHelmetStrInt2", "ColdResistUniqueOneHandAxe1_", "ColdResistUniqueQuiver5", "ColdResistUniqueRing24", "ColdResistUniqueRing28", "ColdResistUniqueRing32", "ColdResistUniqueShieldDex7", "ColdResistUniqueShieldInt3", "ColdResistUniqueShieldStrDex1", "ColdResistUnique__1", "ColdResistUnique__10", "ColdResistUnique__11", "ColdResistUnique__12", "ColdResistUnique__13", "ColdResistUnique__15", "ColdResistUnique__16", "ColdResistUnique__17", "ColdResistUnique__18", "ColdResistUnique__19", "ColdResistUnique__2", "ColdResistUnique__20", "ColdResistUnique__21", "ColdResistUnique__22_", "ColdResistUnique__23", "ColdResistUnique__24", "ColdResistUnique__25", "ColdResistUnique__26", "ColdResistUnique__27", "ColdResistUnique__28", "ColdResistUnique__29", "ColdResistUnique__3", "ColdResistUnique__30", "ColdResistUnique__31_", "ColdResistUnique__32", "ColdResistUnique__33", "ColdResistUnique__34", "ColdResistUnique__35", "ColdResistUnique__36_", "ColdResistUnique__37", "ColdResistUnique__38", "ColdResistUnique__39", "ColdResistUnique__4", "ColdResistUnique__40", "ColdResistUnique__41", "ColdResistUnique__42", "ColdResistUnique__43", "ColdResistUnique__44", "ColdResistUnique__6", "ColdResistUnique__7", "ColdResistUnique__8", "ColdResistanceBodyDex6", }, ["+(#)% to cold resistance when socketed with a green gem"] = { "ColdResistanceWhenSocketedWithGreenGemUniqueRing25", }, ["+(#)% to cold resistance while affected by herald of ice"] = { "HeraldBonusColdResist", }, ["+(#)% to critical strike chance against enemies on consecrated ground during effect"] = { "FlaskConsecratedGroundEffectUnique__1_", }, @@ -2825,6 +2955,7 @@ return { ["+(#)% to damage over time multiplier for ailments from critical strikes"] = { "VillageCriticalAilmentDamageOverTimeMultiplier", }, ["+(#)% to damage over time multiplier for bleeding from critical strikes"] = { "CriticalBleedDotMultiplierUnique__1_", }, ["+(#)% to damage over time multiplier for bleeding from hits with this weapon"] = { "LocalBleedDamageOverTimeMultiplierUnique__1", }, + ["+(#)% to damage over time multiplier for ignite from critical strikes"] = { "CriticalIgniteDotMultiplierUnique__1", }, ["+(#)% to damage over time multiplier for poison from critical strikes during effect"] = { "FlaskCriticalStrikeDoTMultiplierUnique__1", }, ["+(#)% to damage over time multiplier if you've dealt a critical strike in the past # seconds"] = { "DamageOverTimeMultiplierIfCrit8SecondsUnique__1_", }, ["+(#)% to fire and chaos resistances"] = { "FireAndChaosDamageResistanceUnique__1__", }, @@ -2835,6 +2966,8 @@ return { ["+(#)% to fire resistance when socketed with a red gem"] = { "FireResistanceWhenSocketedWithRedGemUniqueRing25", }, ["+(#)% to fire resistance while affected by herald of ash"] = { "HeraldBonusFireResist", }, ["+(#)% to global critical strike multiplier"] = { "CriticalMultiplierImplicitBow1", "CriticalMultiplierUniqueAmulet17", "CriticalMultiplierUniqueDagger8", "CriticalMultiplierUniqueGlovesDex2", "CriticalMultiplierUniqueGlovesDexInt6_", "CriticalMultiplierUniqueRing17", "CriticalMultiplierUnique__1", "CriticalMultiplierUnique__2", "CriticalMultiplierUnique__3__", "CriticalMultiplierUnique__4____", "CriticalMultiplierUnique__5", "CriticalMultiplierUnique__6", "CriticalMultiplierUnique__7", "CriticalMultiplierUnique__8", "LocalCriticalMultiplierUniqueDagger4", "LocalCriticalMultiplierUniqueOneHandSword4", "TalismanIncreasedCriticalStrikeMultiplier_", }, + ["+(#)% to global critical strike multiplier per green socket"] = { "CriticalStrikeMultiplierPerGreenSocketUnique_1", }, + ["+(#)% to lightning and chaos resistances"] = { "LightningAndChaosResistanceUnique__1", }, ["+(#)% to lightning resistance"] = { "LightningResistImplicitRing1", "LightningResistUniqueAmulet15", "LightningResistUniqueBelt11", "LightningResistUniqueBelt9", "LightningResistUniqueBodyInt1", "LightningResistUniqueBodyInt5", "LightningResistUniqueBootsDexInt4", "LightningResistUniqueBootsStrDex2", "LightningResistUniqueDexHelmet1", "LightningResistUniqueHelmetDexInt1", "LightningResistUniqueHelmetInt10", "LightningResistUniqueHelmetStrInt2", "LightningResistUniqueOneHandMace1", "LightningResistUniqueRing32", "LightningResistUniqueRing35", "LightningResistUniqueShieldInt3", "LightningResistUniqueShieldStrDex1", "LightningResistUnique__1", "LightningResistUnique__10", "LightningResistUnique__11", "LightningResistUnique__12", "LightningResistUnique__13", "LightningResistUnique__14", "LightningResistUnique__15", "LightningResistUnique__16", "LightningResistUnique__17_", "LightningResistUnique__18", "LightningResistUnique__19_", "LightningResistUnique__2", "LightningResistUnique__20", "LightningResistUnique__21", "LightningResistUnique__22", "LightningResistUnique__24", "LightningResistUnique__25", "LightningResistUnique__26", "LightningResistUnique__27", "LightningResistUnique__28", "LightningResistUnique__29", "LightningResistUnique__3", "LightningResistUnique__30", "LightningResistUnique__31", "LightningResistUnique__32", "LightningResistUnique__33", "LightningResistUnique__4", "LightningResistUnique__5", "LightningResistUnique__6", "LightningResistUnique__7", "LightningResistUnique__8", "LightningResistanceBodyDex6", }, ["+(#)% to lightning resistance when socketed with a blue gem"] = { "LightningResistanceWhenSocketedWithBlueGemUniqueRing25", }, ["+(#)% to lightning resistance while affected by herald of thunder"] = { "HeraldBonusThunderLightningResist_", }, @@ -2852,7 +2985,7 @@ return { ["+(#)% to quality of socketed gems"] = { "SocketedGemQualityUnique__1", }, ["+(#)% to quality of socketed support gems"] = { "IncreaseSocketedSupportGemQualityUnique__1___", }, ["+(#)% to spell critical strike chance if # shaper items are equipped"] = { "AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1", }, - ["+(#)% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__2", }, + ["+(#)% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__1", "BaseUnarmedCriticalStrikeChanceUnique__2", }, ["+(#)% to vaal skill critical strike multiplier"] = { "VaalSkillCriticalStrikeMultiplierCorruptedJewel6", }, ["+(-1-1) to level of all spell skill gems"] = { "GlobalSpellGemsLevelUniqueStaff_2", }, ["+(-10-10) to maximum number of eaten souls"] = { "SoulEaterStackCountUnique__1", }, @@ -2873,10 +3006,12 @@ return { ["+(-30-30)% to lightning resistance"] = { "LightningResistUnique__25", }, ["+(-40-90) to maximum charges"] = { "FlaskExtraChargesUnique__2_", }, ["+(-5-5) to maximum rage"] = { "MaximumRageUnique__3", }, + ["+(0-100) to maximum life"] = { "IncreasedLifeUnique__60", }, ["+(0-30)% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUnique__3", }, ["+(0-5)% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__4", }, ["+(0-60) to maximum life"] = { "IncreasedLifeUniqueRing32", }, ["+(0.1-0.7) metres to melee strike range with unarmed attacks"] = { "UnarmedStrikeRangeUnique__1", }, + ["+(0.2-0.3) metres to melee strike range per white socket"] = { "MeleeRangePerWhiteSocketUniqueOneHandSword5", }, ["+(0.3-0.4) metres to melee strike range with unarmed attacks"] = { "UnarmedStrikeRangeUniqueJewel__1_", }, ["+(1-1.5)% to spell critical strike chance if 4 shaper items are equipped"] = { "AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1", }, ["+(1-10) to maximum fortification"] = { "MaximumFortificationUnique__1", }, @@ -2887,6 +3022,7 @@ return { ["+(1-2) maximum life per level"] = { "LifePerLevelUnique__1", }, ["+(1-2) maximum mana per level"] = { "ManaPerLevelUnique__1", }, ["+(1-2) to level of all minion skill gems"] = { "GlobalIncreaseMinionSpellSkillGemLevelUnique__1", "GlobalIncreaseMinionSpellSkillGemLevelUnique__2", "GlobalIncreaseMinionSpellSkillGemLevelUnique__5", }, + ["+(1-2) to level of all vaal skill gems"] = { "GlobalVaalGemsLevelUnique__1", }, ["+(1-2) to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUnique__10", }, ["+(1-2) to maximum number of raised zombies"] = { "MaximumMinionCountUniqueTwoHandSword4Updated", }, ["+(1-2)% to all maximum elemental resistances if 6 shaper items are equipped"] = { "MaximumElementalResistance6ShaperItemsUnique__1", }, @@ -2895,8 +3031,9 @@ return { ["+(1-3) to level of all elemental support gems if the stars are aligned"] = { "InfluenceElementalSupportGemLevelUnique__1", }, ["+(1-3) to level of all melee skill gems"] = { "GlobalIncreaseMeleeSkillGemLevelUnique__1", }, ["+(1-3) to level of socketed lightning gems"] = { "LocalIncreaseSocketedLightningGemLevelUnique__1", }, - ["+(1-4)% to all maximum resistances"] = { "IncreasedMaximumResistsUnique__1", }, + ["+(1-3)% to all maximum resistances"] = { "IncreasedMaximumResistsUniqueAmulet87", }, ["+(1-5)% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__1__", }, + ["+(1-5)% to all maximum resistances"] = { "IncreasedMaximumResistsUnique__1", }, ["+(1-50)% to lightning resistance"] = { "LightningResistUnique__13", }, ["+(1-7)% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__2", }, ["+(1-75) to maximum mana"] = { "IncreasedManaUnique__15", }, @@ -2905,9 +3042,11 @@ return { ["+(10-15) to dexterity"] = { "DexterityUniqueClaw9", "DexterityUniqueDagger11", "DexterityUniqueGlovesDex_1", }, ["+(10-15) to maximum life"] = { "IncreasedLifeUniqueOneHandAxe3", }, ["+(10-15) to strength"] = { "StrengthUniqueClaw9", }, + ["+(10-15)% chance to block attack damage when in off hand"] = { "AdditionalChanceToBlockInOffHandUnique_1", }, ["+(10-15)% to all elemental resistances"] = { "AllResistancesUniqueBelt13", "AllResistancesUniqueBodyStrDex1", "AllResistancesUniqueBootsStr1", "AllResistancesUnique__10", "AllResistancesUnique__12", "AllResistancesUnique__14", "AllResistancesUnique__2", "AllResistancesUnique__28", "AllResistancesUnique__32", "AllResistancesUnique__4", "AllResistancesUnique__5", "AllResistancesUnique__9", }, ["+(10-15)% to cold resistance"] = { "ColdResistUniqueRing28", }, ["+(10-15)% to fire resistance"] = { "FireResistUnique__31", "FireResistanceUniqueGlovesInt_1", }, + ["+(10-15)% to global critical strike multiplier per green socket"] = { "CriticalStrikeMultiplierPerGreenSocketUnique_1", }, ["+(10-15)% to lightning resistance"] = { "LightningResistUnique__28", }, ["+(10-16) to all attributes"] = { "AllAttributesImplicitAmulet1", }, ["+(10-16)% to all elemental resistances"] = { "AllResistancesUnique__16", }, @@ -2939,23 +3078,25 @@ return { ["+(100-120) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUnique__1", }, ["+(100-120) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueQuiver7", "LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1", "LocalIncreasedEnergyShieldUnique__25", "LocalIncreasedEnergyShieldUnique__9", }, ["+(100-120) to maximum life"] = { "IncreasedLifeUnique__72_", "IncreasedLifeUnique__86_", }, - ["+(100-120) to maximum mana"] = { "IncreasedManaUniqueHelmetStrInt3", }, + ["+(100-120) to maximum mana"] = { "IncreasedManaUniqueHelmetStrInt3", "IncreasedManaUniqueWand3", }, ["+(100-125)% to melee critical strike multiplier"] = { "MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3", }, ["+(100-150) to accuracy rating"] = { "IncreasedAccuracyUniqueAmulet7", }, ["+(100-150) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1", }, ["+(100-150) to evasion rating"] = { "IncreasedEvasionRatingUniqueAmulet7", "LocalIncreasedEvasionRatingUnique__1", }, ["+(100-150) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueBootsDex1", }, ["+(100-150) to maximum life"] = { "IncreasedLifeUnique__22", }, - ["+(100-150) to maximum mana"] = { "IncreasedManaUniqueBodyDexInt2", "IncreasedManaUniqueTwoHandAxe9", }, + ["+(100-150) to maximum mana"] = { "IncreasedManaUniqueBodyDexInt2", "IncreasedManaUniqueRing29", "IncreasedManaUniqueTwoHandAxe9", }, ["+(100-150) to ward"] = { "LocalIncreasedWardUnique__1", }, ["+(100-150)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__6", }, ["+(100-200) to accuracy rating"] = { "IncreasedAccuracyUniqueGlovesDexInt1", }, ["+(100-200) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__33", }, + ["+(100-200) to maximum energy shield per blue socket"] = { "EnergyShieldPerBlueSocketUniqueRing39", }, + ["+(100-200) to maximum life per red socket"] = { "LifePerRedSocketUniqueRing39", }, + ["+(100-200) to maximum mana per green socket"] = { "ManaPerGreenSocketUniqueRing39", }, ["+(1000-1500) to evasion rating"] = { "IncreasedEvasionRatingUnique__3", }, ["+(11-19)% to chaos resistance"] = { "ChaosResistDemigodsTorchImplicit", }, ["+(11-25)% to lightning resistance"] = { "LightningResistanceBodyDex6", }, ["+(110-130) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__8", }, - ["+(12-16)% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__3", }, ["+(12-16)% to chaos resistance"] = { "ChaosResistUniqueQuiver9", }, ["+(12-16)% to cold and lightning resistances"] = { "ColdAndLightningResistImplicitRing1", }, ["+(12-16)% to fire and cold resistances"] = { "FireAndColdResistImplicitRing1", }, @@ -2980,6 +3121,7 @@ return { ["+(15-20) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__29", }, ["+(15-20) to maximum life"] = { "IncreasedLifeUniqueWand4", }, ["+(15-20) to maximum mana"] = { "IncreasedManaUniqueWand4", }, + ["+(15-20)% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUnique__5", }, ["+(15-20)% to all elemental resistances"] = { "AllResistancesUniqueAmulet14", "AllResistancesUniqueTwoHandMace6_", "AllResistancesUnique__17", }, ["+(15-20)% to chaos resistance"] = { "ChaosResistUniqueRing12", }, ["+(15-20)% to cold and lightning resistances"] = { "ColdAndLightningResistUnique__2", }, @@ -3028,7 +3170,7 @@ return { ["+(160-180) to maximum life"] = { "IncreasedLifeUniqueShieldStr1", }, ["+(160-220) to accuracy rating"] = { "IncreasedAccuracyUniqueSceptre8", }, ["+(17-23)% to chaos resistance"] = { "ChaosResistImplicitRing1", "ChaosResistUnique__10", "ChaosResistUnique__11", "ChaosResistUnique__12", "ChaosResistUnique__13", "ChaosResistUnique__14", "ChaosResistUnique__17", "ChaosResistUnique__22", "ChaosResistUnique__33", "ChaosResistUnique__9", }, - ["+(17-29)% to chaos resistance"] = { "ChaosResistUniqueAmulet23", "ChaosResistUniqueDagger8", "ChaosResistUnique__25", "ChaosResistUnique__28", "ChaosResistUnique__29", "ChaosResistUnique__4", "ChaosResistUnique__6", }, + ["+(17-29)% to chaos resistance"] = { "ChaosResistUniqueAmulet23", "ChaosResistUniqueDagger8", "ChaosResistUnique__25", "ChaosResistUnique__28", "ChaosResistUnique__29", "ChaosResistUnique__39", "ChaosResistUnique__4", "ChaosResistUnique__6", }, ["+(18-35)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__5", }, ["+(180-200) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__5", }, ["+(180-200) to evasion rating"] = { "IncreasedEvasionRatingUniqueOneHandSword9", }, @@ -3039,6 +3181,7 @@ return { ["+(2-3)% to maximum cold resistance if 4 redeemer items are equipped"] = { "MaximumColdResist4RedeemerItemsUnique__1", }, ["+(2-3)% to maximum fire resistance if 4 warlord items are equipped"] = { "MaximumFireResist4WarlordItemsUnique__1", }, ["+(2-3)% to maximum lightning resistance if 4 crusader items are equipped"] = { "MaximumLightningResistance4CrusaderItemsUnique__1", }, + ["+(2-4) to level of all cold spell skill gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueStaff2", }, ["+(2-6)% chance to block attack damage"] = { "AdditionalBlockUnique__1", }, ["+(2-6)% chance to block spell damage"] = { "SpellBlockPercentageUnique__1", }, ["+(20-24)% to all elemental resistances"] = { "AllResistancesUniqueBodyStrDexInt1", }, @@ -3046,8 +3189,9 @@ return { ["+(20-25) to all attributes"] = { "AllAttributesUniqueHelmetStr3", }, ["+(20-25) to maximum mana"] = { "IncreasedManaImplicitArmour1", "IncreasedManaUnique__29", }, ["+(20-25)% chance to block"] = { "AdditionalBlockChanceUnique__9", }, + ["+(20-25)% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__3", }, ["+(20-25)% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUnique__2", }, - ["+(20-25)% to all elemental resistances"] = { "AllResistancesUnique__26", "AllResistancesUnique__27", }, + ["+(20-25)% to all elemental resistances"] = { "AllResistancesUniqueAmulet87", "AllResistancesUnique__26", "AllResistancesUnique__27", }, ["+(20-25)% to all elemental resistances while you have at least 200 strength"] = { "AllResistanceAt200StrengthUnique__1", }, ["+(20-25)% to chaos resistance when on low life"] = { "ChaosResistanceOnLowLifeUniqueRing9", }, ["+(20-25)% to cold and lightning resistances"] = { "ColdAndLightningResistUnique__1", }, @@ -3061,10 +3205,11 @@ return { ["+(20-30) to dexterity and intelligence"] = { "DexterityAndIntelligenceUnique_2", "DexterityAndIntelligenceUnique_3", }, ["+(20-30) to evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBootsDex5", }, ["+(20-30) to intelligence"] = { "IntelligenceImplicitAmulet1", "IntelligenceUniqueBelt1", "IntelligenceUniqueBodyInt3", "IntelligenceUniqueBootsDex1", "IntelligenceUniqueBootsInt3", "IntelligenceUniqueGlovesInt3", "IntelligenceUniqueGlovesInt5", "IntelligenceUniqueHelmetInt9", "IntelligenceUniqueHelmetWard1", "IntelligenceUniqueShieldInt4", "IntelligenceUnique__12", "IntelligenceUnique__14", "IntelligenceUnique__18", "IntelligenceUnique__20", "IntelligenceUnique__23", "IntelligenceUnique__27", "IntelligenceUnique__32", "IntelligenceUnique__4", "IntelligenceUnique__7", "Intelligence__1", }, - ["+(20-30) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueAmulet14", "IncreasedEnergyShieldUniqueBelt11", "IncreasedEnergyShieldUnique___1", "LocalIncreasedEnergyShieldUnique__6", "LocalIncreasedEnergyShiledUniqueBootsInt6", }, + ["+(20-30) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueAmulet14", "IncreasedEnergyShieldUniqueBelt11", "LocalIncreasedEnergyShieldUnique__6", "LocalIncreasedEnergyShiledUniqueBootsInt6", }, ["+(20-30) to maximum life"] = { "IncreasedLifeImplicitGlovesDemigods1", "IncreasedLifeImplicitRing1", "IncreasedLifeImplicitShield2", "IncreasedLifeUniqueBootsStrDex3", "IncreasedLifeUniqueOneHandSword1", "IncreasedLifeUniqueRing1", "IncreasedLifeUnique__39", }, ["+(20-30) to maximum mana"] = { "IncreasedManaImplicitRing1", "IncreasedManaUniqueBodyInt9", "IncreasedManaUniqueIntHelmet3", "IncreasedManaUniqueSceptre6", "IncreasedManaUniqueTwoHandSword2", }, ["+(20-30) to strength"] = { "StrengthImplicitAmulet1", "StrengthUniqueAmulet5", "StrengthUniqueBelt1", "StrengthUniqueBootsDexInt2", "StrengthUniqueClaw5_", "StrengthUniqueGlovesDex1", "StrengthUniqueGlovesStrInt2", "StrengthUniqueHelmetStrDex3", "StrengthUniqueIntHelmet3", "StrengthUniqueRing8", "StrengthUnique__14", "StrengthUnique__16", "StrengthUnique__17", "StrengthUnique__23", "StrengthUnique__24", "StrengthUnique__3", "StrengthUnique__6", "StrengthUnique__7_", "StrengthUnique__8", }, + ["+(20-30)% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__2_", }, ["+(20-30)% chance to block spell damage during effect"] = { "SpellBlockIncreasedDuringFlaskEffectUnique__1_", }, ["+(20-30)% to all elemental resistances"] = { "AllResistancesUniqueRing21", "AllResistancesUniqueShieldDex3", "AllResistancesUniqueShieldStrInt1", "AllResistancesUnique__31", "AllResistancesUnique__8", }, ["+(20-30)% to chaos resistance"] = { "ChaosResistUniqueHelmetStrInt2", "ChaosResistUnique__18_", "ChaosResistUnique__32", }, @@ -3083,7 +3228,7 @@ return { ["+(20-40) to evasion rating"] = { "IncreasedEvasionRatingUniqueRapier1", "LocalIncreasedEvasionRatingUniqueShieldStrDex2", }, ["+(20-40) to intelligence"] = { "IntelligenceUniqueDagger10_", "IntelligenceUnique__25", "IntelligenceUnique__6", }, ["+(20-40) to maximum life"] = { "IncreasedLifeUniqueAmulet22", "IncreasedLifeUniqueRing28", "IncreasedLifeUnique__5", }, - ["+(20-40) to maximum mana"] = { "IncreasedManaUniqueAmulet19", "IncreasedManaUniqueBootsStrDex4", "IncreasedManaUniqueRing29", }, + ["+(20-40) to maximum mana"] = { "IncreasedManaUniqueAmulet19", "IncreasedManaUniqueBootsStrDex4", }, ["+(20-40) to strength"] = { "StrengthUnique__10", "StrengthUnique__19_", "StrengthUnique__5", "StrengthUnique__9", }, ["+(20-40)% to cold resistance"] = { "ColdResistUniqueBelt14", "ColdResistUniqueShieldDex7", "ColdResistUnique__12", "ColdResistUnique__13", "ColdResistUnique__15", "ColdResistUnique__31_", "ColdResistUnique__36_", "ColdResistUnique__8", }, ["+(20-40)% to damage over time multiplier"] = { "GlobalDamageOverTimeMultiplierUnique__1", "GlobalDamageOverTimeMultiplierUnique__2", }, @@ -3108,6 +3253,7 @@ return { ["+(23-31)% to chaos resistance"] = { "ChaosResistUnique__15", "ChaosResistUnique__20_", }, ["+(23-32) to intelligence"] = { "IntelligenceUnique__38", }, ["+(23-37)% to chaos resistance"] = { "ChaosResistUniqueBody_1", "ChaosResistUnique__36", "ChaosResistUnique__37", "ChaosResistUnique__38", }, + ["+(23-37)% to lightning and chaos resistances"] = { "LightningAndChaosResistanceUnique__1", }, ["+(24-30)% to chaos resistance"] = { "ChaosResistUniqueHelmetDexInt5", }, ["+(24-36)% to global critical strike multiplier"] = { "TalismanIncreasedCriticalStrikeMultiplier_", }, ["+(240-300) to maximum life"] = { "IncreasedLifeUnique__34", }, @@ -3147,6 +3293,7 @@ return { ["+(260-300) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueRing12", "IncreasedPhysicalDamageReductionRatingUnique__2", }, ["+(260-320) to armour and evasion rating"] = { "ArmourAndEvasionImplicitBelt1", }, ["+(27-33)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__1", }, + ["+(27-34)% to all elemental resistances"] = { "AllResistancesUniqueRing98", }, ["+(27-37)% to chaos resistance"] = { "ChaosResistUniqueHelmetInt__1", }, ["+(28-35)% to physical damage over time multiplier"] = { "PhysicalDamageOverTimeMultiplierUnique__1", }, ["+(280-300) to accuracy rating"] = { "IncreasedAccuracyUniqueOneHandSword9", }, @@ -3172,7 +3319,7 @@ return { ["+(30-40) to strength"] = { "StrengthUniqueBodyStrInt3", "StrengthUniqueRing36", "StrengthUnique__11", "StrengthUnique__25", "StrengthUnique__28", "StrengthUnique__29", "StrengthUnique__30", }, ["+(30-40)% chance to suppress spell damage while your off hand is empty"] = { "ChanceToDodgeWhileOffhandIsEmpty", }, ["+(30-40)% to all elemental resistances"] = { "AllResistancesUniqueHelmetDex3", }, - ["+(30-40)% to cold resistance"] = { "ColdResistUniqueAmulet13", "ColdResistUniqueBodyDex7", "ColdResistUniqueQuiver5", "ColdResistUnique__16", "ColdResistUnique__17", "ColdResistUnique__18", "ColdResistUnique__26", "ColdResistUnique__27", "ColdResistUnique__30", "ColdResistUnique__4", }, + ["+(30-40)% to cold resistance"] = { "ColdResistUniqueAmulet13", "ColdResistUniqueBodyDex7", "ColdResistUniqueQuiver5", "ColdResistUnique__16", "ColdResistUnique__17", "ColdResistUnique__18", "ColdResistUnique__26", "ColdResistUnique__27", "ColdResistUnique__30", "ColdResistUnique__4", "ColdResistUnique__44", }, ["+(30-40)% to critical strike multiplier if you've cast enfeeble in the past 10 seconds"] = { "EnfeebleCriticalStrikeMultiplierUnique__1", }, ["+(30-40)% to critical strike multiplier if you've gained a power charge recently"] = { "CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_", }, ["+(30-40)% to fire resistance"] = { "FireResistUniqueAmulet13", "FireResistUniqueBootsDexInt1", "FireResistUnique__12", "FireResistUnique__16", "FireResistUnique__20_", "FireResistUnique__8", }, @@ -3192,6 +3339,7 @@ return { ["+(30-50) to strength and dexterity"] = { "HybridStrDexUnique__1", }, ["+(30-50)% global critical strike multiplier while you have a frenzy charge"] = { "CriticalStrikeMultiplierFrenzyChargesUnique__1", }, ["+(30-50)% to cold resistance"] = { "ColdResistUnique__10", }, + ["+(30-50)% to damage over time multiplier for ignite from critical strikes"] = { "CriticalIgniteDotMultiplierUnique__1", }, ["+(30-50)% to fire resistance"] = { "FireResistUniqueShieldStrDex3", "FireResistUnique__6", }, ["+(30-50)% to quality of socketed gems"] = { "SocketedGemQualityUnique__1", }, ["+(30-55) to dexterity"] = { "DexterityUnique__24", }, @@ -3234,7 +3382,6 @@ return { ["+(40-50) to intelligence"] = { "IntelligenceUniqueHelmetInt6", "IntelligenceUnique__11", "IntelligenceUnique__34", "IntelligenceUnique__9", }, ["+(40-50) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__5", }, ["+(40-50) to maximum life"] = { "IncreasedLifeUniqueQuiver3", "IncreasedLifeUnique__118", "IncreasedLifeUnique__41", "IncreasedLifeUnique__47", "IncreasedLifeUnique__61", "IncreasedLifeUnique__77", }, - ["+(40-50) to maximum mana"] = { "IncreasedManaUniqueWand3", }, ["+(40-50) to strength"] = { "StrengthUniqueBelt2", "StrengthUniqueTwoHandSword5", }, ["+(40-50)% to chaos resistance"] = { "ChaosResistUniqueBodyInt8", "ChaosResistUniqueRing16", }, ["+(40-50)% to cold resistance"] = { "ColdResistUniqueGlovesStrDex3", "ColdResistUniqueGlovesStrInt3", }, @@ -3266,7 +3413,7 @@ return { ["+(400-500) to accuracy rating while at maximum frenzy charges"] = { "AccuracyRatingWithMaxFrenzyChargesUnique__1", }, ["+(400-500) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueAmulet16", "IncreasedPhysicalDamageReductionRatingUnique__3", }, ["+(400-500) to evasion rating"] = { "IncreasedEvasionRatingUniqueOneHandSword4", "LocalIncreasedEvasionRatingUnique__3", }, - ["+(400-600) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5", }, + ["+(400-600) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__12", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5", }, ["+(43-61)% to chaos resistance"] = { "ChaosResistUniqueHelmetStrInt5", }, ["+(45-55) to maximum mana"] = { "IncreasedManaUniqueBelt5", }, ["+(45-60) to maximum life"] = { "IncreasedLifeUnique__14", "MaximumLifeUnique__24", }, @@ -3279,6 +3426,7 @@ return { ["+(5-10)% to all elemental resistances"] = { "AllResistancesUnique__29", "ChanceToAvoidElementalStatusAilmentsUniqueAmulet22", }, ["+(5-10)% to chaos resistance"] = { "ChaosResistUniqueWand7", }, ["+(5-10)% to lightning resistance"] = { "LightningResistUniqueBelt11", }, + ["+(5-10)% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__1", }, ["+(5-15) to intelligence"] = { "IntelligenceUnique__31", "IntelligenceUnique__36", }, ["+(5-15)% to all elemental resistances"] = { "AllResistancesUnique__34", }, ["+(5-20) to intelligence"] = { "IntelligenceUniqueRing4", }, @@ -3294,7 +3442,9 @@ return { ["+(5-7)% to all elemental resistances"] = { "AllResistajcesUniqueStaff10", }, ["+(5-8) to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUnique__9", }, ["+(5-8)% to quality of socketed support gems"] = { "IncreaseSocketedSupportGemQualityUnique__1___", }, - ["+(50-100) to maximum energy shield"] = { "AddedEnergyShieldFlatUnique_1", "LocalIncreasedEnergyShieldUniqueHelmetInt_1", }, + ["+(50-100) to armour"] = { "LocalBaseArmourAndEvasionRatingUnique__1", }, + ["+(50-100) to dexterity"] = { "DexterityUnique__35", }, + ["+(50-100) to maximum energy shield"] = { "AddedEnergyShieldFlatUnique_1", "IncreasedEnergyShieldUnique___1", "LocalIncreasedEnergyShieldUniqueHelmetInt_1", }, ["+(50-100) to maximum life"] = { "IncreasedLifeUnique__115", }, ["+(50-175) to maximum life"] = { "IncreasedLifeUnique__88", }, ["+(50-60) to maximum life"] = { "IncreasedLifeUniqueBelt7", "IncreasedLifeUniqueShieldStr4", "IncreasedLifeUnique__67_", "IncreasedLifeUnique__68_", }, @@ -3313,6 +3463,7 @@ return { ["+(50-75)% to cold resistance"] = { "ColdResistUniqueBodyStrInt3", }, ["+(50-75)% to fire resistance"] = { "FireResistUniqueBodyInt2", }, ["+(50-75)% to lightning resistance"] = { "LightningResistUnique__26", }, + ["+(50-77) to maximum life"] = { "IncreasedLifeUnique__129", }, ["+(50-80) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__14", }, ["+(50-80) to maximum life"] = { "IncreasedLifeUnique__23", "IncreasedLifeUnique__97", }, ["+(50-80) to maximum mana"] = { "IncreasedManaUnique__9", }, @@ -3334,11 +3485,11 @@ return { ["+(60-120) to maximum mana"] = { "IncreasedManaUnique__1", }, ["+(60-120) to strength"] = { "StrengthUnique__13_", }, ["+(60-70) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueBelt5", "IncreasedEnergyShieldUnique__10", }, - ["+(60-70) to maximum life"] = { "IncreasedLifeUniqueAmulet25", "IncreasedLifeUniqueBodyDex6", "IncreasedLifeUniqueGlovesDexInt5", "IncreasedLifeUnique__55", "IncreasedLifeUnique__57", "IncreasedLifeUnique__60", "IncreasedLifeUnique__9", }, + ["+(60-70) to maximum life"] = { "IncreasedLifeUniqueAmulet25", "IncreasedLifeUniqueBodyDex6", "IncreasedLifeUniqueGlovesDexInt5", "IncreasedLifeUnique__55", "IncreasedLifeUnique__57", "IncreasedLifeUnique__9", }, ["+(60-75) to intelligence"] = { "IntelligenceUniqueRing13", }, ["+(60-75) to maximum life"] = { "IncreasedLifeUniqueGlovesStr3", }, ["+(60-80) to intelligence"] = { "IntelligenceUniqueGlovesStr3", }, - ["+(60-80) to maximum energy shield"] = { "IncreasedEnergyShieldImplicitBelt2", "LocalIncreasedEnergyShieldUnique__23", }, + ["+(60-80) to maximum energy shield"] = { "IncreasedEnergyShieldImplicitBelt2", "IncreasedEnergyShieldUnique__14", "LocalIncreasedEnergyShieldUnique__23", }, ["+(60-80) to maximum life"] = { "IncreasedLifeUniqueBodyDexInt3", "IncreasedLifeUniqueBodyStrDex2", "IncreasedLifeUniqueGlovesInt3", "IncreasedLifeUniqueShieldDex2", "IncreasedLifeUniqueShieldDexInt1", "IncreasedLifeUnique__103", "IncreasedLifeUnique__105", "IncreasedLifeUnique__120", "IncreasedLifeUnique__121", "IncreasedLifeUnique__124", "IncreasedLifeUnique__3", "IncreasedLifeUnique__38", "IncreasedLifeUnique__42_", "IncreasedLifeUnique__43", "IncreasedLifeUnique__45", "IncreasedLifeUnique__46", "IncreasedLifeUnique__52", "IncreasedLifeUnique__53", "IncreasedLifeUnique__56", "IncreasedLifeUnique__58", "IncreasedLifeUnique__59", "IncreasedLifeUnique__6", "IncreasedLifeUnique__63_", "IncreasedLifeUnique__64", "IncreasedLifeUnique__66", "IncreasedLifeUnique__78", "IncreasedLifeUnique__79", "IncreasedLifeUnique__85_", "IncreasedLifeUnique__94", }, ["+(60-80) to maximum mana"] = { "IncreasedManaUniqueGlovesInt3", "IncreasedManaUnique__27", }, ["+(60-80)% to damage over time multiplier for bleeding from critical strikes"] = { "CriticalBleedDotMultiplierUnique__1_", }, @@ -3350,6 +3501,7 @@ return { ["+(600-700) to evasion rating"] = { "IncreasedEvasionRatingUnique__5_", "LocalIncreasedEvasionRatingUnique__2", }, ["+(64-96) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__18_", }, ["+(65-80) to maximum life"] = { "IncreasedLifeUnique__31", }, + ["+(66-99) to maximum life"] = { "IncreasedLifeUnique__128", }, ["+(7-10)% chance to suppress spell damage while channelling"] = { "ChanceToDodgeAttacksWhileChannellingUnique__1", "ChanceToDodgeSpellsWhileChannellingUnique__1", }, ["+(7-11)% to chaos resistance"] = { "ChaosResistUniqueBow12", }, ["+(7-13) to all attributes"] = { "AllAttributesUnique__31", }, @@ -3369,7 +3521,7 @@ return { ["+(75-100)% to lightning resistance when socketed with a blue gem"] = { "LightningResistanceWhenSocketedWithBlueGemUniqueRing25", }, ["+(75-200) to maximum life"] = { "IncreasedLifeUniqueQuiver21", }, ["+(75-80) to maximum energy shield"] = { "IncreasedEnergyShieldUnique__4", }, - ["+(8-10)% to all elemental resistances"] = { "AllResistancesImplicitRing1", "AllResistancesUnique__30", }, + ["+(8-10)% to all elemental resistances"] = { "AllResistancesImplicitAmulet1", "AllResistancesImplicitRing1", "AllResistancesUnique__30", }, ["+(8-10)% to chaos resistance"] = { "ChaosResistUniqueAmulet15_", }, ["+(8-12) to all attributes"] = { "AllAttributesImplicitDemigodRing1", }, ["+(8-12)% chance to block"] = { "AdditionalBlockChanceUnique__7__", }, @@ -3380,7 +3532,7 @@ return { ["+(8-12)% to fire and cold resistances"] = { "FireAndColdResistImplicitBoots1_", }, ["+(8-12)% to fire and lightning resistances"] = { "FireAndLightningResistImplicitBoots1", }, ["+(8-12)% to fire damage over time multiplier"] = { "FireDamageOverTimeMultiplierUnique__3", }, - ["+(8-15)% chance to avoid elemental damage from hits while phasing"] = { "AvoidElementalDamagePhasingUnique__1", }, + ["+(8-15)% chance to avoid damage of each element from hits while phasing"] = { "AvoidElementalDamagePhasingUnique__1", }, ["+(8-15)% chance to avoid physical damage from hits while phasing"] = { "AvoidPhysicalDamageWhilePhasingUnique__1", }, ["+(8-16)% to all elemental resistances"] = { "AllResistancesImplictBootsDemigods1", "AllResistancesImplictHelmetDemigods1", }, ["+(8-16)% to chaos resistance"] = { "ChaosResistUnique__2", }, @@ -3409,11 +3561,10 @@ return { ["+(90-120) to accuracy rating"] = { "IncreasedAccuracyUniqueTwoHandSword7", }, ["+0.15% to off hand critical strike chance per 10 maximum energy shield on shield"] = { "SpectralShieldThrowThresholdJewel1_", }, ["+0.2 metres to melee strike range"] = { "IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13", "IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42", }, - ["+0.2 metres to melee strike range per white socket"] = { "MeleeRangePerWhiteSocketUniqueOneHandSword5", }, ["+0.2 metres to melee strike range while fortified"] = { "MeleeWeaponRangeWhileFortifiedUber1", }, ["+0.2 metres to weapon range"] = { "LocalIncreasedMeleeWeaponRangeEssence1", "LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1", "LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5", "LocalIncreasedMeleeWeaponRangeUnique__1", "LocalIncreasedMeleeWeaponRangeUnique___2", }, ["+0.3 metres to melee strike range while at maximum frenzy charges"] = { "MeleeWeaponRangeAtMaximumFrenzyChargesUber1_", }, - ["+0.3% critical strike chance per power charge"] = { "AdditionalCriticalStrikeChancePerPowerChargeUnique__1", }, + ["+0.3% to critical strike chance per power charge"] = { "AdditionalCriticalStrikeChancePerPowerChargeUnique__1", }, ["+1 life per 2% increased rarity of items found"] = { "MaximumLifePerItemRarityUnique__1", }, ["+1 life per 4 dexterity"] = { "LifePerDexterityUnique__1", }, ["+1 mana per 4 strength"] = { "ManaPerStrengthUnique__1__", }, @@ -3428,35 +3579,35 @@ return { ["+1 to level of all fire spell skill gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueDagger10", "VillageGlobalIncreaseFireSpellSkillGemLevel", }, ["+1 to level of all lightning skill gems if 6 crusader items are equipped"] = { "GlobalLightningGemLevel6CrusaderItemsUnique__1", }, ["+1 to level of all lightning spell skill gems"] = { "VillageGlobalIncreaseLightningSpellSkillGemLevel", }, - ["+1 to level of all minion skill gems"] = { "GlobalIncreaseMinionSpellSkillGemLevelUnique__3", "GlobalIncreaseMinionSpellSkillGemLevelUnique__4", "VillageGlobalIncreaseMinionSpellSkillGemLevel", }, + ["+1 to level of all minion skill gems"] = { "DivergentGlobalIncreaseMinionSpellSkillGemLevelUnique__3", "DivergentGlobalIncreaseMinionSpellSkillGemLevelUnique__4", "GlobalIncreaseMinionSpellSkillGemLevelUnique__3", "GlobalIncreaseMinionSpellSkillGemLevelUnique__4", "VillageGlobalIncreaseMinionSpellSkillGemLevel", }, ["+1 to level of all non-exceptional support gems if 6 shaper items are equipped"] = { "GlobalSupportGemLevel6ShaperItemsUnique__1", }, ["+1 to level of all physical skill gems if 6 elder items are equipped"] = { "GlobalPhysicalGemLevel6ElderItemsUnique__1", }, ["+1 to level of all physical spell skill gems"] = { "VillageGlobalIncreasePhysicalSpellSkillGemLevel", }, - ["+1 to level of all raise zombie gems"] = { "MaximumMinionCountUniqueBootsInt4", }, - ["+1 to level of all skill gems"] = { "GlobalSkillGemLevelUnique__1", }, + ["+1 to level of all raise zombie gems"] = { "DivergentMaximumMinionCountUniqueBootsInt4", "MaximumMinionCountUniqueBootsInt4", }, + ["+1 to level of all skill gems"] = { "GlobalSkillGemLevelUnique__1", "TalismanEnchantGlobalSkillGemLevel", }, ["+1 to level of all spell skill gems"] = { "LocalIncreaseSocketedGemLevelUnique___3", }, ["+1 to level of all vaal skill gems"] = { "GlobalVaalGemsLevelImplicit1_", }, ["+1 to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4", }, ["+1 to level of socketed bow gems"] = { "LocalIncreaseSocketedBowGemLevelUniqueBow2", }, - ["+1 to level of socketed cold gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueClaw5", "LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2", "LocalIncreaseSocketedColdGemLevelUniqueStaff13", }, + ["+1 to level of socketed cold gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueClaw5", "LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2", }, ["+1 to level of socketed dexterity gems"] = { "LocalIncreaseSocketedDexterityGemLevelUniqueClaw8", }, - ["+1 to level of socketed elemental gems"] = { "LocalIncreaseSocketedElementalGemUniqueGlovesInt6", }, - ["+1 to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2", "LocalIncreaseSocketedFireGemLevelUniqueStaff13", }, + ["+1 to level of socketed elemental gems"] = { "DivergentLocalIncreaseSocketedElementalGemUniqueGlovesInt6", "LocalIncreaseSocketedElementalGemUniqueGlovesInt6", }, + ["+1 to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2", }, ["+1 to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5", "LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6", "LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2", "LocalIncreaseSocketedGemLevelUniqueSceptre1", "LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9", "LocalIncreaseSocketedGemLevelUnique__2", "LocalIncreaseSocketedGemLevelUnique__4", "LocalIncreaseSocketedGemLevelUnique__5", "LocalIncreaseSocketedGemLevelUnique__7", }, ["+1 to level of socketed melee gems"] = { "LocalIncreaseSocketedMeleeGemLevelUniqueRapier1", "LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5", }, ["+1 to level of socketed minion gems"] = { "LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5", }, ["+1 to level of socketed projectile gems"] = { "LocalIncreaseSocketedProjectileGemLevel1", }, - ["+1 to level of socketed skill gems"] = { "LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_", }, + ["+1 to level of socketed skill gems"] = { "DivergentLocalIncreaseSocketedActiveSkillGemLevelUnique__1", "LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_", }, ["+1 to level of socketed skill gems per 25 player levels"] = { "SocketedGemLevelPer25PlayerLevelsUnique__1", }, ["+1 to level of socketed spell gems"] = { "LocalIncreaseSocketedSpellGemLevel1", "LocalIncreaseSocketedSpellGemLevelUniqueWand4", }, ["+1 to level of socketed strength gems"] = { "LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3", }, ["+1 to level of socketed support gems"] = { "LocalIncreaseSocketedSupportGemLevelUniqueStaff12", }, ["+1 to level of socketed warcry gems"] = { "LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7", "LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4", }, - ["+1 to maximum endurance charges"] = { "ChargeBonusMaximumEnduranceCharges", "MaximumEnduranceChargeUniqueBodyStr3", "MaximumEnduranceChargeUniqueRing2", "MaximumEnduranceChargeUnique__1_", "MaximumEnduranceChargeUnique__2", }, + ["+1 to maximum endurance charges"] = { "ChargeBonusMaximumEnduranceCharges", "MaximumEnduranceChargeUniqueBodyStr3", "MaximumEnduranceChargeUniqueRing2", "MaximumEnduranceChargeUnique__1_", "MaximumEnduranceChargeUnique__2", "TalismanEnchantMaximumEnduranceCharges", }, ["+1 to maximum endurance charges if 6 warlord items are equipped"] = { "MaximumEnduranceCharges6WarlordItemsUnique__1", }, ["+1 to maximum energy shield per 5 armour on equipped shield"] = { "EnergyShieldPerArmourOnShieldUnique__1", }, ["+1 to maximum fortification per endurance charge"] = { "MaximumFortificationPerEnduranceChargeUnique__1", }, - ["+1 to maximum frenzy charges"] = { "ChargeBonusMaximumFrenzyCharges", "MaximumFrenzyChargesUniqueBodyStr3", "MaximumFrenzyChargesUniqueBootsStrDex2_", "MaximumFrenzyChargesUniqueDescentOneHandSword1", "MaximumFrenzyChargesUnique__1", }, + ["+1 to maximum frenzy charges"] = { "ChargeBonusMaximumFrenzyCharges", "DivergentMaximumFrenzyChargesUniqueBootsStrDex2", "MaximumFrenzyChargesUniqueBodyStr3", "MaximumFrenzyChargesUniqueBootsStrDex2_", "MaximumFrenzyChargesUniqueDescentOneHandSword1", "MaximumFrenzyChargesUnique__1", "TalismanEnchantMaximumFrenzyCharges", }, ["+1 to maximum frenzy charges if 6 redeemer items are equipped"] = { "MaximumFrenzyCharges6RedeemerItemsUnique__1", }, ["+1 to maximum life per 2 intelligence"] = { "IncreasedLifePerIntelligenceUnique__1", }, ["+1 to maximum mana per 2 intelligence"] = { "GainManaPer2IntelligenceUnique_1", }, @@ -3465,22 +3616,22 @@ return { ["+1 to maximum number of raised zombies per 500 strength"] = { "AdditionalZombiesPerXStrengthUnique__1", }, ["+1 to maximum number of sacred wisps"] = { "AdditionalSacredWispUnique__1", }, ["+1 to maximum number of skeletons"] = { "MaximumMinionCountUniqueBootsStrInt2", "MaximumMinionCountUniqueBootsStrInt2Updated", }, - ["+1 to maximum number of spectres"] = { "MaximumMinionCountUniqueBodyInt9", "MaximumMinionCountUniqueSceptre5", }, + ["+1 to maximum number of spectres"] = { "MaximumMinionCountUniqueBodyInt9", "MaximumMinionCountUniqueSceptre5", "TalismanEnchantMaximumSpectreCount", }, ["+1 to maximum number of summoned golems"] = { "MaximumGolemsUnique__1", "MaximumGolemsUnique__2", "VillageMaximumGolems", }, ["+1 to maximum number of summoned golems if you have 3 primordial items socketed or equipped"] = { "GolemPerPrimordialJewel", }, - ["+1 to maximum number of summoned holy relics"] = { "AdditionalHolyRelicUnique__1", }, + ["+1 to maximum number of summoned holy relics"] = { "AdditionalHolyRelicUnique__1", "DivergentAdditionalHolyRelicUnique__1", }, ["+1 to maximum number of summoned totems"] = { "AdditionalTotemsUnique__1", }, - ["+1 to maximum power charges"] = { "ChargeBonusMaximumPowerCharges", "IncreasedMaximumPowerChargesUniqueStaff7", "IncreasedMaximumPowerChargesUniqueWand3", "IncreasedMaximumPowerChargesUnique__1", "IncreasedMaximumPowerChargesUnique__2", "IncreasedMaximumPowerChargesUnique__4", }, + ["+1 to maximum power charges"] = { "ChargeBonusMaximumPowerCharges", "IncreasedMaximumPowerChargesUniqueStaff7", "IncreasedMaximumPowerChargesUniqueWand3", "IncreasedMaximumPowerChargesUnique__1", "IncreasedMaximumPowerChargesUnique__2", "IncreasedMaximumPowerChargesUnique__4", "IncreasedMaximumPowerChargesUnique__5", "IncreasedMaximumPowerChargesUnique__6", "TalismanEnchantIncreasedMaximumPowerCharges", }, ["+1 to maximum power charges and maximum endurance charges"] = { "MaximumPowerandEnduranceChargesImplicitE1", }, ["+1 to maximum power charges if 6 crusader items are equipped"] = { "IncreasedMaximumPowerCharges6CrusaderItemsUnique__1", }, ["+1 to maximum siphoning charges per elder or shaper item equipped"] = { "MaximumSiphoningChargePerElderOrShaperItemUnique__1", }, ["+1 to maximum spirit charges per abyss jewel affecting you"] = { "MaximumSpiritChargesPerAbyssJewelEquippedUnique__1", "MaximumSpiritChargesPerAbyssJewelEquippedUnique__2", }, ["+1 to minimum endurance charges per grand spectrum"] = { "MinimumEnduranceChargesPerStackableJewelUnique__1", }, - ["+1 to minimum endurance, frenzy and power charges"] = { "UniqueSpecialCorruptionAllMinCharges", }, + ["+1 to minimum endurance, frenzy and power charges"] = { "TalismanEnchantMinimumEndurancePowerFrenzyCharges", "UniqueSpecialCorruptionAllMinCharges", }, ["+1 to minimum frenzy charges per grand spectrum"] = { "MinimumFrenzyChargesPerStackableJewelUnique__1", }, ["+1 to minimum power charges per grand spectrum"] = { "MinimumPowerChargesPerStackableJewelUnique__1", }, ["+1 to number of summoned arbalists"] = { "SummonArbalistNumberOfArbalistsAllowed", }, - ["+1% chance to block attack damage per 50 strength"] = { "BlockChancePer50StrengthUnique__1", }, + ["+1% chance to block attack damage per 50 strength"] = { "BlockChancePer50StrengthUnique__1", "DivergentBlockChancePer50StrengthUnique__1", }, ["+1% chance to block attack damage per endurance charge"] = { "ChargeBonusBlockChancePerEnduranceCharge", }, ["+1% chance to block attack damage per frenzy charge"] = { "ChargeBonusBlockChancePerFrenzyCharge_", }, ["+1% chance to block attack damage per power charge"] = { "ChargeBonusBlockChancePerPowerCharge_", }, @@ -3490,15 +3641,19 @@ return { ["+1% chance to suppress spell damage per power charge"] = { "ChargeBonusDodgeChancePerPowerCharge", }, ["+1% to all elemental resistances per 15 omniscience"] = { "ElementalResistPerAscendanceUnique__1__", }, ["+1% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__3", }, + ["+1% to chaos resistance per 1% cold resistance"] = { "UniqueAmuletChaosResistancePerColdResistance", }, + ["+1% to chaos resistance per 1% fire resistance"] = { "UniqueAmuletChaosResistancePerFireResistance", }, + ["+1% to chaos resistance per 1% lightning resistance"] = { "UniqueAmuletChaosResistancePerLightningResistance", }, ["+1% to chaos resistance per poison on you"] = { "ChaosResistancePerPoisonOnSelfUnique__1", }, ["+1% to critical strike chance while affected by aspect of the cat"] = { "AdditionalCriticalStrikeChanceWithCatAspectUnique__1", }, - ["+1% to critical strike multiplier per 1% chance to block attack damage"] = { "CriticalMultiplierPerBlockChanceUnique__1", }, + ["+1% to critical strike multiplier per 1% chance to block attack damage"] = { "CriticalMultiplierPerBlockChanceUnique__1", "DivergentCriticalMultiplierPerBlockChanceUnique__1", }, ["+1% to maximum cold resistance while affected by herald of ice"] = { "HeraldBonusMaxColdResist__", }, ["+1% to maximum fire resistance while affected by herald of ash"] = { "HeraldBonusAshMaxFireResist", }, ["+1% to maximum lightning resistance while affected by herald of thunder"] = { "HeraldBonusThunderMaxLightningResist", }, ["+10 to dexterity"] = { "DexterityUniqueAmulet7", "DexterityUniqueBootsInt3", "DexterityUniqueGlovesStrDex3", "DexterityUniqueRing3", }, ["+10 to intelligence"] = { "IntelligenceUniqueOneHandSword2", "IntelligenceUniqueWand1", }, ["+10 to maximum divine charges"] = { "DivineChargeOnHitUnique__1_", }, + ["+10 to maximum fortification"] = { "DivergentMaximumFortificationUnique__1", }, ["+10 to maximum life"] = { "IncreasedLifeUniqueDescentHelmet1", }, ["+10 to maximum rage"] = { "MaximumRageImplicitE1", "MaximumRageUnique__1", }, ["+10 to maximum rage while wielding a sword"] = { "MaxRagePerEquippedSwordUnique__1____", }, @@ -3508,20 +3663,15 @@ return { ["+10% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUnique__1", }, ["+10% chance to block attack damage while holding a shield"] = { "ShieldBlockChanceUniqueAmulet16", }, ["+10% chance to block attack damage while not cursed"] = { "AdditionalBlockWhileNotCursedUnique__1", }, - ["+10% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__2_", }, ["+10% to all elemental resistances"] = { "AllResistancesDescentUniqueQuiver1", "AllResistancesUniqueIntHelmet3", "AllResistancesUniqueRing9", "AllResistancesUniqueShieldStrInt4", "AllResistancesUnique__13", }, ["+10% to elemental resistances during effect"] = { "FlaskElementalResistancesUniqueFlask1_", }, ["+10% to fire damage over time multiplier"] = { "BurningArrowThresholdJewelUnique__1", }, - ["+10% to global critical strike multiplier per green socket"] = { "CriticalStrikeMultiplierPerGreenSocketUnique_1", }, ["+10% to maximum effect of shock"] = { "VillageMaximumShock", }, ["+100 strength requirement"] = { "StrengthRequirementsUnique__1", "StrengthRequirementsUnique__4", }, ["+100 to accuracy rating"] = { "IncreasedAccuracyUniqueAmulet5", }, ["+100 to maximum charges. -1 to this value when used"] = { "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_", }, - ["+100 to maximum energy shield per blue socket"] = { "EnergyShieldPerBlueSocketUniqueRing39", }, ["+100 to maximum life"] = { "IncreasedLifeUniqueTwoHandAxe4", "IncreasedLifeUnique__104_", }, - ["+100 to maximum life per red socket"] = { "LifePerRedSocketUniqueRing39", }, ["+100 to maximum mana"] = { "IncreasedManaUniqueAmulet10", }, - ["+100 to maximum mana per green socket"] = { "ManaPerGreenSocketUniqueRing39", }, ["+100% chance to block attack damage if you have blocked spell damage recently"] = { "AttackBlockIfBlockedSpellRecentlyUnique__1_", }, ["+100% chance to block spell damage if you have blocked attack damage recently"] = { "SpellBlockIfBlockedAttackRecentlyUnique__1", }, ["+1000 to evasion rating while on full life"] = { "EvasionOnFullLifeUniqueBodyDex4", }, @@ -3534,26 +3684,31 @@ return { ["+12% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUniqueStaff9", }, ["+12% chance to suppress spell damage"] = { "ChanceToDodgeUniqueBootsDex7", }, ["+12% to all elemental resistances"] = { "AllResistancesImplicitShield3", }, + ["+12% to all elemental resistances for each empty white socket on any equipped item"] = { "AllResistEmptyWhiteSocketUnique__1", }, ["+120 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit2", }, ["+125 to accuracy rating per 10 dexterity on unallocated passives in radius"] = { "AccuracyRatingPerUnallocatedDexterityUnique__1_", }, ["+125 to accuracy rating per 10 intelligence on unallocated passives in radius"] = { "AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1", }, ["+15 to dexterity"] = { "DexterityUniqueBootsDex3", }, ["+15 to intelligence"] = { "IntelligenceUniqueBootsDex3", }, ["+15 to maximum energy shield"] = { "IncreasedEnergyShieldUniqueGlovesInt6", }, + ["+15 to maximum fortification while affected by glorious madness"] = { "DivergentFortifyEffectSelfGloriousMadnessUnique1", "FortifyEffectSelfGloriousMadnessUnique1", }, ["+15 to maximum life"] = { "IncreasedLifeUniqueDescentShield1", }, ["+15 to maximum mana per 10 dexterity on unallocated passives in radius"] = { "FlatManaPerUnallocatedDexterityJewelUnique__1", }, ["+15 to maximum rage"] = { "MaximumRageImplicitE2", }, ["+15% chance to block"] = { "AdditionalBlockChanceUnique__11", }, + ["+15% chance to block attack damage from cursed enemies"] = { "DivergentBlockChanceVersusCursedEnemiesUnique__1", }, ["+15% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__1", "StaffBlockPercentUnique__5", }, - ["+15% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUniqueBodyDex1", "ChanceToDodgeUniqueBodyDex1", }, + ["+15% chance to block spell damage while on low life"] = { "DivergentSpellBlockPercentageOnLowLifeUniqueShieldStrDex1_", }, + ["+15% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUniqueBodyDex1", "ChanceToDodgeUniqueBodyDex1", "DivergentChanceToSuppressSpellsUnique__1_", }, ["+15% to all elemental resistances"] = { "AllResistancesUniqueBodyStrInt2", "AllResistancesUniqueGlovesStrDex2", "AllResistancesUnique__1", }, + ["+15% to quality of all skill gems"] = { "TalismanEnchantGlobalSkillGemQuality", }, + ["+150 to maximum mana"] = { "DivergentIncreasedManaUnique__19", }, ["+1500 armour while stationary"] = { "AddedArmourWhileStationaryUnique__1", }, ["+1500 to evasion rating while on full life"] = { "EvasionOnFullLifeUnique__1_", }, ["+160 dexterity requirement"] = { "DexterityRequirementsUnique__1", }, ["+165 to accuracy rating"] = { "IncreasedAccuracySwordImplicit2", }, ["+18 to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueGlovesInt1", }, ["+18% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUnique__2_", }, - ["+18% to all elemental resistances for each empty white socket on any equipped item"] = { "AllResistEmptyWhiteSocketUnique__1", }, ["+185 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit3", }, ["+190 to accuracy rating"] = { "IncreasedAccuracySwordImplicit3", }, ["+2 accuracy rating per 2 intelligence"] = { "AccuracyPerIntelligenceUnique__1", }, @@ -3562,16 +3717,16 @@ return { ["+2 seconds to cat's agility duration"] = { "CatsAgilityDurationUnique__1", }, ["+2 seconds to cat's stealth duration"] = { "CatsStealthDurationUnique__1_", }, ["+2 to level of all chaos spell skill gems"] = { "LocalIncreaseSocketedChaosGemLevelUnique__1", }, - ["+2 to level of all cold spell skill gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueStaff2", }, ["+2 to level of all fire spell skill gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueStaff1", }, + ["+2 to level of all herald skill gems"] = { "TalismanEnchantGlobalHeraldGemlevel", }, ["+2 to level of all lightning spell skill gems"] = { "LocalIncreaseSocketedLightningGemLevelUniqueStaff8", }, ["+2 to level of all spell skill gems"] = { "GlobalSpellGemsLevelUnique__1", "VillageGlobalIncreaseSpellSkillGemLevel", }, ["+2 to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5", "LocalIncreaseSocketedAuraGemLevelUnique___1", "LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2", }, - ["+2 to level of socketed cold gems"] = { "LocalIncreaseSocketedColdGemLevelUnique__1", }, + ["+2 to level of socketed cold gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueStaff13", "LocalIncreaseSocketedColdGemLevelUnique__1", }, ["+2 to level of socketed curse gems"] = { "IncreaseSocketedCurseGemLevelUniqueHelmetInt9", "IncreaseSocketedCurseGemLevelUnique__1", }, ["+2 to level of socketed elemental gems"] = { "LocalIncreaseSocketedElementalGemUnique___1", }, - ["+2 to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUnique__1_", "LocalIncreaseSocketedFireGemLevelUnique__2", }, - ["+2 to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUniqueRing39", "LocalIncreaseSocketedGemLevelUniqueWand8", "LocalIncreaseSocketedGemLevelUnique__1", "LocalIncreaseSocketedGemLevelUnique__11_", "LocalIncreaseSocketedGemLevelUnique__6", "LocalIncreaseSocketedGemLevelUnique__8", "UniqueSpecialCorruptionSocketedGemLevel", }, + ["+2 to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueStaff13", "LocalIncreaseSocketedFireGemLevelUnique__1_", "LocalIncreaseSocketedFireGemLevelUnique__2", }, + ["+2 to level of socketed gems"] = { "DivergentLocalIncreaseSocketedGemLevelUnique__8", "LocalIncreaseSocketedGemLevelUniqueRing39", "LocalIncreaseSocketedGemLevelUniqueWand8", "LocalIncreaseSocketedGemLevelUnique__1", "LocalIncreaseSocketedGemLevelUnique__11_", "LocalIncreaseSocketedGemLevelUnique__6", "LocalIncreaseSocketedGemLevelUnique__8", "UniqueSpecialCorruptionSocketedGemLevel", }, ["+2 to level of socketed herald gems"] = { "LocalIncreaseSocketedHeraldLevelUnique__1_", }, ["+2 to level of socketed melee gems"] = { "VillageLocalIncreaseSocketedMeleeGemLevel", }, ["+2 to level of socketed minion gems"] = { "LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2", "LocalIncreaseSocketedMinionGemLevelUnique__1", "LocalIncreaseSocketedMinionGemLevelUnique__2_", "LocalIncreaseSocketedMinionGemLevelUnique__3", "LocalIncreaseSocketedMinionGemLevelUnique__4", }, @@ -3579,20 +3734,22 @@ return { ["+2 to level of socketed support gems"] = { "LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7", "LocalIncreaseSocketedSupportGemLevelUnique__1", }, ["+2 to level of socketed vaal gems"] = { "LocalIncreaseSocketedVaalGemLevelUnique__1", }, ["+2 to maximum endurance charges"] = { "MaximumEnduranceChargeUniqueBodyStrDex3", }, - ["+2 to maximum life per 10 dexterity"] = { "MaximumLifePer10DexterityUnique__1", }, + ["+2 to maximum life per 10 dexterity"] = { "DivergentMaximumLifePer10DexterityUnique__1", "MaximumLifePer10DexterityUnique__1", }, ["+2 to maximum life per 10 intelligence"] = { "LifePer10IntelligenceUnique__1", }, ["+2 to maximum number of spectres"] = { "MaximumMinionCountUnique__1__", "MaximumMinionCountUnique__2", }, + ["+2 to maximum number of summoned totems"] = { "AdditionalTotemsUniqueStaff38", }, ["+2 to maximum power charges"] = { "IncreasedMaximumPowerChargesUnique__3", }, ["+2 to maximum snipe stages"] = { "AdditionalMaxStackSnipeUnique", }, ["+2% chance to block spell damage per power charge"] = { "ChanceToBlockSpellsPerPowerChargeUnique__1", }, ["+2% chance to suppress spell damage per frenzy charge"] = { "ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2", }, ["+2% to all elemental resistances per 10 devotion"] = { "ElementalResistancesPerDevotion", }, - ["+2% to all maximum resistances while you have no endurance charges"] = { "MaximumResistanceWithNoEnduranceChargesUnique__1__", }, + ["+2% to all maximum resistances"] = { "DivergentIncreasedMaximumResistsUniqueShieldStrInt1", }, + ["+2% to all maximum resistances while you have no endurance charges"] = { "DivergentMaximumResistanceWithNoEnduranceChargesUnique__1__", "MaximumResistanceWithNoEnduranceChargesUnique__1__", }, ["+2% to maximum chaos resistance"] = { "ChayulaBreachRingImplicit", "MaxChaosResistanceCrushedImplicitR1", }, ["+2% to maximum cold resistance"] = { "TulBreachRingImplicit", }, ["+2% to maximum fire resistance"] = { "XophBreachRingImplicit", }, ["+2% to maximum lightning resistance"] = { "EshBreachRingImplicit", }, - ["+20 to all attributes"] = { "AllAttributesUnique__13_", }, + ["+20 to all attributes"] = { "AllAttributesUnique__13_", "DivergentAllAttributesUnique__21", }, ["+20 to dexterity"] = { "DexterityUniqueDagger12", "DexterityUniqueJewel8", "DexterityUnique__13", }, ["+20 to dexterity and intelligence"] = { "DexterityIntelligenceUnique__1__", }, ["+20 to evasion rating per 5 maximum energy shield on equipped shield"] = { "EvasionRatingPerEnergyShieldOnShieldUnique__1", }, @@ -3605,25 +3762,30 @@ return { ["+20 to strength and dexterity"] = { "StrengthDexterityUnique__1", }, ["+20 to strength and intelligence"] = { "StrengthIntelligenceUnique__1", }, ["+20% chance to be shocked"] = { "ChanceToBeShockedUnique__1", }, + ["+20% chance to block attack damage"] = { "StaffBlockPercentImplicitStaff1", }, ["+20% chance to block attack damage from cursed enemies"] = { "BlockChanceVersusCursedEnemiesUnique__1", }, - ["+20% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentImplicitStaff1", }, + ["+20% chance to block spell damage"] = { "StaffSpellBlockPercentImplicitStaff__1", }, ["+20% chance to block spell damage while cursed"] = { "AdditionalSpellBlockWhileCursedUnique__1", }, - ["+20% chance to block spell damage while wielding a staff"] = { "StaffSpellBlockPercentImplicitStaff__1", }, - ["+20% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUnique__2", }, - ["+20% to all elemental resistances"] = { "AllResistancesUniqueAmulet2", "AllResistancesUniqueBootsInt5", }, + ["+20% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUnique__2", "DivergentSpellDodgeUniqueBootsDex7New", }, + ["+20% chance to suppress spell damage while channelling"] = { "DivergentChanceToSuppressSpellsWhileChannellingUnique__1____", }, + ["+20% to all elemental resistances"] = { "AllResistancesUniqueAmulet2", "AllResistancesUniqueBootsInt5", "DivergentAllResistancesUniqueHelmetDex3", "DivergentAllResistancesUnique__23__", }, ["+20% to all elemental resistances while on low life"] = { "ElementalResistsOnLowLifeUniqueHelmetStrInt1", }, ["+20% to cold resistance"] = { "ColdResistUniqueBootsDex8", "ColdResistUniqueBootsDexInt2", }, + ["+20% to damage over time multiplier"] = { "TalismanEnchantGlobalDamageOverTimeMultiplier", }, ["+20% to damage over time multiplier for bleeding"] = { "BleedDotMultiplier2HImplicit1", }, + ["+20% to damage over time multiplier if you've dealt a critical strike in the past 8 seconds"] = { "DivergentDamageOverTimeMultiplierIfCrit8SecondsUnique__1_", }, ["+20% to fire resistance"] = { "FireResistUniqueAmulet7", "FireResistUniqueBelt3", }, ["+20% to off hand critical strike multiplier per"] = { "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__", }, + ["+20% to quality of socketed gems"] = { "DivergentSocketedGemQualityUnique__1", }, ["+200 intelligence requirement"] = { "IntelligenceRequirementsUnique_1", }, ["+200 strength requirement"] = { "StrengthRequirementsUniqueOneHandMace3", "StrengthRequirementsUnique__2", }, + ["+200 to maximum life"] = { "DivergentIncreasedLifeUniqueBodyStr1", }, ["+200 to strength"] = { "StrengthUnique__12", }, ["+2000 armour while you do not have avatar of fire"] = { "ArmourWithoutAvatarOfFireUnique__1", }, ["+2000 to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1", }, ["+212 intelligence requirement"] = { "IntelligenceRequirementsUniqueBow12", }, - ["+22% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentImplicitStaff2", }, - ["+22% chance to block spell damage while wielding a staff"] = { "StaffSpellBlockPercent2", }, + ["+22% chance to block attack damage"] = { "StaffBlockPercentImplicitStaff2", }, + ["+22% chance to block spell damage"] = { "StaffSpellBlockPercent2", }, ["+225 to accuracy rating for each empty green socket on any equipped item"] = { "IncreasedAccuracyEmptyGreenSocketUnique__1", }, ["+23 to maximum life"] = { "IncreasedLifeUnique__87", }, ["+240 to accuracy rating"] = { "IncreasedAccuracySwordImplicit4", }, @@ -3632,10 +3794,11 @@ return { ["+25 to strength"] = { "StrengthUniqueBelt4", "StrengthUniqueDagger2", }, ["+25% chance to be ignited"] = { "IncreasedChanceToBeIgnitedUniqueRing24", "IncreasedChanceToBeIgnitedUnique__1", }, ["+25% chance to be poisoned"] = { "ChanceToBePoisonedUnique__1", }, - ["+25% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentImplicitStaff3", }, - ["+25% chance to block projectile attack damage"] = { "BlockVsProjectilesUniqueShieldStr2", }, - ["+25% chance to block spell damage while wielding a staff"] = { "StaffSpellBlockPercent3", }, + ["+25% chance to block attack damage"] = { "StaffBlockPercentImplicitStaff3", }, + ["+25% chance to block projectile attack damage"] = { "BlockVsProjectilesUniqueShieldStr2", "DivergentBlockVsProjectilesUniqueShieldStr2", }, + ["+25% chance to block spell damage"] = { "StaffSpellBlockPercent3", }, ["+25% to all elemental resistances"] = { "AllResistancesUniqueShieldStrInt2", }, + ["+25% to cold damage over time multiplier"] = { "DivergentColdDamageOverTimeMultiplierUnique__2", }, ["+25% to cold resistance"] = { "ColdResistUniqueAmulet3", }, ["+25% to critical strike multiplier if you've dealt a non-critical strike recently"] = { "CritMultiIfDealtNonCritRecentlyUnique__1", }, ["+25% to fire resistance while on low life"] = { "FireResistOnLowLifeUniqueShieldStrInt5", }, @@ -3644,33 +3807,40 @@ return { ["+25% to maximum quality"] = { "LocalMaximumQualityImplicitE1", "LocalMaximumQualityImplicitE2", "LocalMaximumQualityImplicitE3", }, ["+250 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit4", }, ["+250 to maximum energy shield"] = { "IncreasedEnergyShieldUnique__6", }, + ["+250 to maximum life if there are no life modifiers on other equipped items"] = { "DivergentIncreasedLifeNoLifeModifiersUnique__1", }, ["+257 intelligence requirement"] = { "AddedIntelligenceRequirementsUnique__1", }, ["+3 prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE3", }, ["+3 seconds to duration of frenzy and power charges on culling strike"] = { "ExtendFrenzyPowerChargeDurationCullUnique__1", }, - ["+3 to level of all (1-286) gems"] = { "RandomSkillUnique__1", }, + ["+3 to level of all (1-287) gems"] = { "RandomSkillUnique__1", }, ["+3 to level of all cold spell skill gems"] = { "GlobalColdSpellGemsLevelUnique__1", }, ["+3 to level of all physical spell skill gems"] = { "GlobalPhysicalSpellGemsLevelUnique__1", }, + ["+3 to level of socketed aura gems"] = { "DivergentLocalIncreaseSocketedAuraGemLevelUnique___3", }, ["+3 to level of socketed curse gems"] = { "IncreaseSocketedCurseGemLevelUniqueShieldDex4", "IncreaseSocketedCurseGemLevelUnique__2", }, ["+3 to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueBodyInt4", }, ["+3 to level of socketed golem gems"] = { "LocalIncreaseSocketedGolemLevelUniqueRing35", "LocalIncreaseSocketedGolemLevelUniqueRing36", "LocalIncreaseSocketedGolemLevelUniqueRing37", }, ["+3 to level of socketed minion gems"] = { "LocalIncreaseSocketedMinionGemLevelUnique__5____", }, + ["+3 to level of socketed movement gems"] = { "DivergentLocalIncreaseSocketedMovementGemLevelUniqueBodyDex5", }, ["+3 to level of socketed warcry gems"] = { "LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5", }, ["+3 to maximum number of summoned golems"] = { "MaximumGolemsUnique__3", }, ["+3 to maximum number of summoned phantasms"] = { "ExtraMaximumPhantasmsUnique__1", }, + ["+3 to minimum endurance charges"] = { "DivergentMinimumEnduranceChargesUnique__1", }, ["+3 to minimum endurance charges while on low life"] = { "MinimumEnduranceChargeOnLowLifeUnique__1", }, + ["+3 to minimum frenzy charges"] = { "DivergentMinimumFrenzyChargesUnique__1", }, + ["+3 to minimum power charges"] = { "DivergentMinimumPowerChargesUnique__1", }, ["+3 to minimum power charges while on low life"] = { "MinimumPowerChargeOnLowLifeUnique__1", }, ["+3% chance to block"] = { "AdditionalBlockChanceUniqueDescentShield1_", }, ["+3% chance to block attack damage while you have at least 5 crab barriers"] = { "AdditionalBlockChance5CrabBarriersUnique__1", }, + ["+3% chance to block spell damage per power charge"] = { "DivergentChanceToBlockSpellsPerPowerChargeUnique__2_", }, ["+3% chance to suppress spell damage"] = { "ChanceToDodgeImplicitShield1", "ChanceToDodgeSpellsImplicitShield1", "ChanceToDodgeUniqueJewel46", }, ["+3% to all elemental resistances per endurance charge"] = { "ElementalResistancePerEnduranceChargeDescentShield1", }, - ["+3% to all maximum resistances while poisoned"] = { "MaximumResistancesWhilePoisonedUnique__1", }, + ["+3% to all maximum resistances while poisoned"] = { "DivergentMaximumResistancesWhilePoisonedUnique__1", "MaximumResistancesWhilePoisonedUnique__1", }, ["+3% to critical strike multiplier per power charge"] = { "ChargeBonusCriticalStrikeMultiplierPerPowerCharge", }, ["+3% to damage over time multiplier per 10 intelligence on unallocated passives in radius"] = { "DamageOverTimeMultiplierPerUnallocatedIntelligenceUnique__1___", }, ["+3% to maximum chance to block attack damage"] = { "MaximumBlockChanceUniqueAmulet16", }, ["+3% to maximum chance to block attack damage if 4 elder items are equipped"] = { "MaximumBlockChance4ElderItemsUnique__1", }, ["+3% to maximum chance to block spell damage if 4 shaper items are equipped"] = { "MaximumSpellBlockChance4ShaperItemsUnique__1", }, ["+3% to maximum chaos resistance"] = { "MaxChaosResistanceCrushedImplicitR2", }, - ["+3% to maximum cold resistance"] = { "MaximumColdResistUnique__2", }, + ["+3% to maximum cold resistance"] = { "MaximumColdResistUnique__2", "MaximumColdResistUnique__3", }, ["+30 to accuracy rating"] = { "IncreasedAccuracyUniqueBow2", "IncreasedAccuracyUniqueDescentBow1", }, ["+30 to dexterity"] = { "DexterityUniqueQuiver7", }, ["+30 to maximum energy shield per 100 reserved life"] = { "MaximumEnergyShieldPerReservedLifeUnique__1", }, @@ -3681,13 +3851,13 @@ return { ["+30 to strength"] = { "StrengthUnique__1", "StrengthUnique__4", }, ["+30% chance to block spell damage while on low life"] = { "SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_", }, ["+30% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUniqueBodyDex1", }, - ["+30% to chaos resistance while stationary"] = { "ChaosResistanceWhileStationaryUnique__1", }, + ["+30% to chaos resistance during any flask effect"] = { "DivergentChaosResistanceWhileUsingFlaskUniqueBootsStrDex3", }, + ["+30% to chaos resistance while stationary"] = { "ChaosResistanceWhileStationaryUnique__1", "DivergentChaosResistanceWhileStationaryUnique__1", }, ["+30% to cold resistance"] = { "ColdResistUniqueStrHelmet2", }, ["+30% to global critical strike multiplier"] = { "CriticalMultiplierUniqueGlovesDexInt2", }, ["+30% to lightning resistance"] = { "LightningResistUniqueShieldDex2", "LightningResistUniqueStrDexHelmet1", }, ["+30% to quality of socketed gems"] = { "SocketedGemQualityUnique__2_", }, - ["+30% to quality of socketed support gems"] = { "IncreaseSocketedSupportGemQualityUnique__2", }, - ["+300 armour per summoned totem"] = { "ArmourPerTotemUnique__1", }, + ["+30% to quality of socketed support gems"] = { "DivergentIncreaseSocketedSupportGemQualityUnique__1___", "IncreaseSocketedSupportGemQualityUnique__2", }, ["+300 intelligence requirement"] = { "IntelligenceRequirementsUniqueOneHandMace3", }, ["+300 to evasion rating"] = { "IncreasedEvasionRatingUnique__2", }, ["+305 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit5", }, @@ -3699,17 +3869,23 @@ return { ["+350 to accuracy rating"] = { "IncreasedAccuracySwordImplicit6", }, ["+350 to evasion rating"] = { "IncreasedEvasionRatingUniqueQuiver3_", }, ["+360 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit6", }, - ["+4 to level of socketed herald gems"] = { "LocalIncreaseSocketedHeraldLevelUnique__2", }, + ["+4 to level of socketed herald gems"] = { "DivergentLocalIncreaseSocketedHeraldLevelUnique__2", "LocalIncreaseSocketedHeraldLevelUnique__2", }, + ["+4 to level of socketed projectile gems"] = { "DivergentLocalIncreaseSocketedProjectileGemLevelUnique__1", }, ["+4 to maximum fortification while stationary"] = { "FortifyEffectWhileStationaryUber1", }, ["+4% to all elemental resistances"] = { "AllResistancesImplicitShield1", }, ["+4% to all maximum elemental resistances during effect"] = { "FlaskMaximumElementalResistancesUniqueFlask1", }, ["+4% to all maximum resistances"] = { "IncreasedMaximumResistsUniqueShieldStrInt1", }, ["+4% to chaos resistance per endurance charge"] = { "ChaosResistancePerEnduranceChargeUnique__1_", "ChargeBonusChaosResistancePerEnduranceCharge_", }, - ["+4% to damage over time multiplier for ailments per elder item equipped"] = { "AilmentDamageOverTimeMultiplierPerElderItemUnique__1", }, + ["+4% to damage over time multiplier for ailments per elder item equipped"] = { "AilmentDamageOverTimeMultiplierPerElderItemUnique__1", "DivergentAilmentDamageOverTimeMultiplierPerElderItemUnique__1", }, ["+4% to damage over time multiplier for bleeding per frenzy charge"] = { "BleedDotMultiplierPerFrenzyChargeUnique__1_", }, ["+4% to maximum chaos resistance"] = { "MaxChaosResistanceCrushedImplicitR3", }, + ["+4% to maximum cold resistance"] = { "TalismanEnchantMaximumColdResist", }, + ["+4% to maximum fire resistance"] = { "TalismanEnchantMaximumFireResist", }, + ["+4% to maximum lightning resistance"] = { "TalismanEnchantMaximumLightningResistance", }, ["+4% to off hand critical strike multiplier per 10 maximum energy shield on shield"] = { "SpectralShieldThrowThresholdJewel2", }, + ["+4% to unarmed melee attack critical strike chance"] = { "DivergentBaseUnarmedCriticalStrikeChanceUnique__2", }, ["+40 to accuracy rating"] = { "AccuracyPerPointToClassStartUnique__1", }, + ["+40 to all attributes"] = { "DivergentAllAttributesUnique__6", }, ["+40 to armour"] = { "ArmourPerPointToClassStartUnique__1", }, ["+40 to evasion rating"] = { "EvasionPerPointToClassStartUnique__1", }, ["+40 to intelligence"] = { "IntelligenceUnique__5", }, @@ -3717,7 +3893,7 @@ return { ["+40 to maximum life for each empty red socket on any equipped item"] = { "IncreasedLifeEmptyRedSocketUnique__1", }, ["+40 to maximum mana for each empty blue socket on any equipped item"] = { "IncreasedManaEmptyBlueSocketUnique__1", }, ["+40% to cold resistance"] = { "ColdResistUniqueGlovesStrDex4", }, - ["+40% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSwordM2", "CriticalMultiplierUniqueGlovesDexInt4", "LocalCriticalMultiplierUniqueClaw2", }, + ["+40% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSwordM2", "CriticalMultiplierUniqueGlovesDexInt4", "LocalCriticalMultiplierUniqueClaw2", "TalismanEnchantCriticalStrikeMultiplier", }, ["+40% to lightning resistance"] = { "LightningResistUniqueDescentTwoHandSword1", }, ["+40% to maximum effect of shock"] = { "MaximumShockOverrideUniqueBow10", }, ["+400 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit7", "IncreasedAccuracySwordImplicit7", }, @@ -3738,10 +3914,10 @@ return { ["+5 to maximum energy shield"] = { "EnergyShieldPerPointToClassStartUnique__1", }, ["+5 to maximum life"] = { "LifePerPointToClassStartUnique__1_", }, ["+5 to maximum mana"] = { "ManaPerPointToClassStartUnique__1", }, - ["+5 to maximum number of crab barriers"] = { "MaximumCrabBarriersUnique__1", }, + ["+5 to maximum number of crab barriers"] = { "DivergentMaximumCrabBarriersUnique__1", "MaximumCrabBarriersUnique__1", }, ["+5 to maximum rage"] = { "MaximumRageUnique__2", }, ["+5 to strength"] = { "StrengthPerPointToClassStartUnique__1", }, - ["+5% chance to block"] = { "AdditionalBlockChanceUniqueShieldDex1", "AdditionalBlockChanceUniqueShieldDex2", "AdditionalBlockChanceUniqueShieldDex4", "AdditionalBlockChanceUniqueShieldInt4", "AdditionalBlockChanceUniqueShieldStr1", "AdditionalBlockChanceUniqueShieldStr4", "AdditionalBlockChanceUniqueShieldStrDex2", "AdditionalBlockChanceUniqueShieldStrInt6", "AdditionalBlockChanceUnique__5", }, + ["+5% chance to block"] = { "AdditionalBlockChanceUniqueShieldDex1", "AdditionalBlockChanceUniqueShieldDex2", "AdditionalBlockChanceUniqueShieldDex4", "AdditionalBlockChanceUniqueShieldInt4", "AdditionalBlockChanceUniqueShieldStr1", "AdditionalBlockChanceUniqueShieldStr4", "AdditionalBlockChanceUniqueShieldStrDex2", "AdditionalBlockChanceUniqueShieldStrInt6", "AdditionalBlockChanceUnique__5", "DivergentAdditionalBlockChanceUniqueShieldDex2", }, ["+5% chance to block attack damage"] = { "AdditionalBlockUniqueBodyDex2", }, ["+5% chance to block attack damage from taunted enemies"] = { "AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1", }, ["+5% chance to block attack damage if you've dealt a critical strike recently"] = { "AdditionalBlockChanceIfCritRecentlyUber1__", }, @@ -3751,7 +3927,7 @@ return { ["+5% chance to block attack damage while you have at least 10 crab barriers"] = { "AdditionalBlockChance10CrabBarriersUnique__1", }, ["+5% chance to block spell damage per power charge"] = { "ChanceToBlockSpellsPerPowerChargeUnique__2_", }, ["+5% chance to suppress spell damage"] = { "ChanceToDodgeImplicitShield2", "ChanceToDodgeSpellsImplicitShield2", "ChanceToSuppressSpellsUniqueJewel46", }, - ["+5% to damage over time multiplier for poison per frenzy charge"] = { "PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5", }, + ["+5% to damage over time multiplier for poison per frenzy charge"] = { "DivergentPoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5", "PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5", }, ["+5% to maximum cold resistance"] = { "IncreasedMaximumColdResistUniqueShieldStrInt4", "MaximumColdResistUniqueShieldDex1", }, ["+5% to maximum fire resistance"] = { "MaximumFireResistUniqueShieldStrInt5", }, ["+5% to maximum lightning resistance"] = { "MaximumLightningResistUniqueStaff8c", }, @@ -3769,6 +3945,8 @@ return { ["+50% to cold resistance"] = { "ColdResistUniqueShieldDex1", }, ["+50% to critical strike multiplier if you haven't dealt a critical strike recently"] = { "CriticalStrikeMultiplierIfHaventCritRecentlyUber1", }, ["+50% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSword3", "LocalCriticalMultiplierUniqueBow3", }, + ["+50% to melee critical strike multiplier"] = { "DivergentMeleeWeaponCriticalStrikeMultiplierReplicaUniqueHelmetStr3", "DivergentMeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3", }, + ["+500 armour per summoned totem"] = { "ArmourPerTotemUnique__1", "DivergentArmourPerTotemUnique__1", }, ["+500 to accuracy rating"] = { "IncreasedAccuracyUniqueStrDexHelmet1", }, ["+500 to all attributes"] = { "AllAttributesTestUniqueAmulet1", }, ["+500 to armour per endurance charge"] = { "ArmourPerEnduranceChargeUnique__1", }, @@ -3781,19 +3959,16 @@ return { ["+6% to all elemental resistances"] = { "AllResistancesUniqueJewel8", }, ["+60 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit1", }, ["+60 to maximum charges"] = { "FlaskExtraChargesUnique__4", }, - ["+60 to maximum fortification while affected by glorious madness"] = { "FortifyEffectSelfGloriousMadnessUnique1", }, ["+60% to chaos resistance"] = { "ChaosResistUnique__5", }, ["+60% to critical strike multiplier if you've dealt a non-critical strike recently"] = { "CritMultiIfDealtNonCritRecentlyUnique__2", }, ["+60% to global critical strike multiplier"] = { "CriticalMultiplierUniqueHelmetStr3", }, ["+600 strength and intelligence requirement"] = { "StrengthIntelligenceRequirementsUnique__1", }, ["+7% to all elemental resistances per grand spectrum"] = { "AllResistancePerStackableJewelUnique__1", }, ["+7% to critical strike multiplier per 10 strength on unallocated passives in radius"] = { "CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_", "CriticalStrikeMultiplierPerUnallocatedStrengthUnique__1", }, - ["+7% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__1", }, - ["+70 to maximum life"] = { "IncreasedLifeUniqueOneHandMace7", }, + ["+70 to maximum life"] = { "DivergentIncreasedLifeUnique__114", "IncreasedLifeUniqueOneHandMace7", }, ["+70 to maximum mana"] = { "IncreasedManaUniqueOneHandMace7", }, ["+75% to cold resistance"] = { "ColdResistUnique__5", }, ["+75% to lightning resistance"] = { "LightningResistUnique__23_", }, - ["+8% chance to block attack damage when in off hand"] = { "AdditionalChanceToBlockInOffHandUnique_1", }, ["+8% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueOneHandSword5", }, ["+8% chance to block attack damage while dual wielding claws"] = { "BlockWhileDualWieldingClawsUniqueClaw1", }, ["+8% to all elemental resistances"] = { "AllResistancesImplicitShield2", }, @@ -3848,6 +4023,7 @@ return { ["-10% to fire resistance"] = { "FireResistUniqueBodyStr5", "FireResistUnique__3", }, ["-10% to maximum chance to block attack damage"] = { "MaximumBlockChanceUnique__1", "MaximumBlockChanceUnique__2", }, ["-10% to maximum chance to block spell damage"] = { "MaximumSpellBlockChanceUnique__1", }, + ["-150 physical damage taken from projectile attacks"] = { "DivergentRangedAttackDamageReducedUniqueShieldStr1", "RangedAttackDamageReducedUniqueShieldStr1", }, ["-150 to accuracy rating"] = { "ReducedAccuracyUniqueTwoHandSword5", }, ["-2 physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueBelt3", }, ["-2 prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE6", "MaxPrefixMaxSuffixModEffectImplicitE2", }, @@ -3859,7 +4035,6 @@ return { ["-2% to all resistances per minion from your non-vaal skills"] = { "AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1", }, ["-20 to maximum life"] = { "ReducedLifeUniqueGlovesDexInt4", }, ["-20% to all elemental resistances"] = { "AllResistancesUniqueRing25", "AllResistancesUniqueRing3", }, - ["-25 physical damage taken from projectile attacks"] = { "RangedAttackDamageReducedUniqueShieldStr1", }, ["-3 physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueBodyDex2", }, ["-3 prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE5", }, ["-30% to cold resistance"] = { "ColdResistUnique__14", }, @@ -3889,13 +4064,12 @@ return { ["0.4% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8", }, ["0.4% of lightning damage leeched as mana"] = { "ManaLeechPermyriadFromLightningDamageUniqueStaff8", }, ["0.4% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueRing2", "LifeLeechPermyriadUniqueShieldDex5", "LifeLeechPermyriadUnique__3", }, - ["0.4% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueBodyStr6", "ManaLeechPermyriadUniqueGlovesStrDex1", "ManaLeechPermyriadUniqueRing17", "ManaLeechPermyriadUniqueTwoHandMace4", }, - ["0.4% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", }, + ["0.4% of physical attack damage leeched as mana"] = { "DivergentManaLeechPermyriadUniqueGlovesStrDex1", "ManaLeechPermyriadUniqueBodyStr6", "ManaLeechPermyriadUniqueGlovesStrDex1", "ManaLeechPermyriadUniqueRing17", "ManaLeechPermyriadUniqueTwoHandMace4", }, ["0.5% of attack damage leeched as life against maimed enemies"] = { "LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1", }, ["0.5% of attack damage leeched as life per frenzy charge"] = { "AttackDamageLeechPerFrenzyChargeUnique__1", }, ["0.5% of attack damage leeched as mana against poisoned enemies"] = { "AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2", }, ["0.5% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUnique__2", }, - ["0.5% of damage dealt by your totems is leeched to you as life"] = { "TotemLeechLifeToYouUnique__1", }, + ["0.5% of damage dealt by your totems is leeched to you as life"] = { "DivergentTotemLeechLifeToYouUnique__1", "TotemLeechLifeToYouUnique__1", }, ["0.5% of damage leeched as life while you have at least 5 total endurance, frenzy and power charges"] = { "DamageLeechWith5ChargesUnique__1", }, ["0.5% of spell damage leeched as life if equipped shield has at least 30% chance to block"] = { "LifeLeechFromSpellsWith30BlockOnShieldUnique__1_", }, ["0.6% of cold damage leeched as life"] = { "ColdDamageLifeLeechPermyriadUniqueBelt9bNew", }, @@ -3906,16 +4080,16 @@ return { ["0.6% of physical damage leeched as life"] = { "PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew", }, ["0.8% of physical attack damage leeched as life and mana"] = { "LifeAndManaLeechImplicitMarakethClaw1", }, ["1 added passive skill is a jewel socket"] = { "JewelExpansionJewelNodesLarge1", "JewelExpansionJewelNodesMedium", }, - ["1 to (31-53) spell lightning damage per 10 intelligence"] = { "SpellLightningDamagePerIntelligenceUnique__1", }, ["1 to (5-6) added attack lightning damage per 200 accuracy rating"] = { "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_", "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_", "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3", }, ["1 to 4 added physical damage with bow attacks"] = { "AddedPhysicalDamageImplicitQuiver6_", "AddedPhysicalDamageImplicitQuiverDescent", }, - ["1% additional physical damage reduction from hits per siphoning charge"] = { "AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1", }, ["1% additional physical damage reduction per 10 strength on allocated passives in radius"] = { "AdditionalPhysicalReductionPerAllocatedStrengthJewelUnique__1", }, ["1% additional physical damage reduction per frenzy charge"] = { "ChargeBonusPhysicalDamageReductionPerFrenzyCharge__", }, ["1% additional physical damage reduction per power charge"] = { "ChargeBonusPhysicalDamageReductionPerPowerCharge_", }, ["1% increased area damage per 12 strength"] = { "AreaDamagePerStrengthUber1", }, ["1% increased area of effect per 20 intelligence"] = { "WeaponPhysicalDamagePerStrength", }, + ["1% increased area of effect per enemy killed recently, up to 25%"] = { "DivergentAreaOfEffectPerEnemyKilledRecentlyCapped25Unique__1", }, ["1% increased area of effect per enemy killed recently, up to 50%"] = { "AreaOfEffectPerEnemyKilledRecentlyUnique__1", }, + ["1% increased armour per 100 reserved mana"] = { "DivergentGainArmourEqualToManaReservedUnique__1", }, ["1% increased armour per 16 strength when in off hand"] = { "ArmourPerStrengthInOffHandUniqueSceptre6", }, ["1% increased armour per 50 reserved mana"] = { "GainArmourEqualToManaReservedUnique__1", }, ["1% increased attack and cast speed per endurance charge"] = { "ChargeBonusAttackAndCastSpeedPerEnduranceCharge", }, @@ -3932,7 +4106,7 @@ return { ["1% increased chaos damage per level"] = { "IncreasedElementalDamagePerLevelUniqueTwoHandSword7", }, ["1% increased cold damage per 1% chance to block attack damage"] = { "IncreasedColdDamagePerBlockChanceUnique__1", }, ["1% increased critical strike chance per 8 strength"] = { "CritChancePercentPerStrengthUniqueOneHandSword8_", }, - ["1% increased damage per 15 dexterity"] = { "DamagePer15DexterityUnique__1", "DamagePer15DexterityUnique__2", }, + ["1% increased damage per 15 dexterity"] = { "DamagePer15DexterityUnique__1", "DamagePer15DexterityUnique__2", "DivergentDamagePer15DexterityUnique__2", }, ["1% increased damage per 5 of your lowest attribute"] = { "IncreasedDamagePerLowestAttributeUnique__1", }, ["1% increased damage per 8 strength when in main hand"] = { "DamagePerStrengthInMainHandUniqueSceptre6", }, ["1% increased damage taken per frenzy charge"] = { "DamageTakenPerFrenzyChargeUniqueOneHandSword6", }, @@ -3941,7 +4115,7 @@ return { ["1% increased elemental damage per 12 intelligence"] = { "ElementalDamagePer12IntelligenceUber1", }, ["1% increased elemental damage per 12 strength"] = { "ElementalDamagePer12StrengthUber1", }, ["1% increased elemental damage per level"] = { "IncreasedChaosDamagePerLevelUniqueTwoHandSword7", }, - ["1% increased energy shield per 10 strength"] = { "EnergyShieldPerStrengthUnique__1", }, + ["1% increased energy shield per 10 strength"] = { "DivergentEnergyShieldPerStrengthUnique__1", "EnergyShieldPerStrengthUnique__1", }, ["1% increased evasion rating per 3 dexterity allocated in radius"] = { "ClawPhysDamageAndEvasionPerDexUniqueJewel47", }, ["1% increased fire damage per 20 strength"] = { "FireDamagePerStrengthUnique__1", }, ["1% increased flask effect duration"] = { "JewelImplicitFlaskDuration", }, @@ -3953,15 +4127,18 @@ return { ["1% increased melee physical damage per 10 strength while fortified"] = { "MeleePhysicalDamagePerStrengthWhileFortifiedUber1", }, ["1% increased minion attack and cast speed per 10 devotion"] = { "MinionAttackAndCastSpeedPerDevotion", }, ["1% increased movement speed"] = { "JewelImplicitMovementSpeed", }, + ["1% increased movement speed per 1800 evasion rating, up to 25%"] = { "DivergentMovementVelocityPerEvasionLesserUnique__1", }, ["1% increased movement speed per 600 evasion rating, up to 75%"] = { "MovementVelicityPerEvasionUniqueBodyDex6", }, ["1% increased movement speed per endurance charge"] = { "ChargeBonusMovementVelocityPerEnduranceCharge", }, ["1% increased movement speed per frenzy charge"] = { "ChargeBonusMovementVelocityPerFrenzyCharge", }, ["1% increased movement speed per power charge"] = { "ChargeBonusMovementVelocityPerPowerCharge", }, ["1% increased projectile attack damage per 200 accuracy rating"] = { "IncreaseProjectileAttackDamagePerAccuracyUnique__1", }, + ["1% increased projectile attack damage per 400 accuracy rating"] = { "DivergentIncreaseProjectileAttackDamagePerAccuracyUnique__1", }, ["1% increased projectile damage per 5 dexterity from allocated passives in radius"] = { "ExtraArrowForSplitArrowUniqueJewel60", }, ["1% increased rarity of items found per 15 rampage kills"] = { "IncreasedRarityPerRampageStacksUnique__1", }, ["1% increased spell damage per 10 intelligence"] = { "SpellDamagePerIntelligenceUniqueStaff12", }, ["1% increased spell damage per level"] = { "SpellDamageIncreasedPerLevelUniqueSceptre8", }, + ["1% less damage taken per 5 rage, up to a maximum of 30%"] = { "DivergentDamageTakenPer5RageCappedAt50PercentUnique_1", }, ["1% less elemental damage taken per raised zombie"] = { "ElementalDamageTakenPerZombieUnique__1", }, ["1% of attack damage leeched as life"] = { "LifeLeechFromAttacksPermyriadUnique__1", "LifeLeechPermyriadUniqueBodyStr3", }, ["1% of attack damage leeched as life against bleeding enemies"] = { "AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1", }, @@ -3969,7 +4146,7 @@ return { ["1% of attack damage leeched as life on critical strike"] = { "CriticalStrikeAttackLifeLeechUnique__1", }, ["1% of attack damage leeched as mana against poisoned enemies"] = { "AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1", }, ["1% of damage against frozen enemies leeched as life"] = { "LifeLeechPermyriadOnFrozenEnemiesUnique__1", }, - ["1% of damage dealt by your mines is leeched to you as life"] = { "MineDamageLeechedToYouUnique__1", }, + ["1% of damage dealt by your mines is leeched to you as life"] = { "DivergentMineDamageLeechedToYouUnique__1", "MineDamageLeechedToYouUnique__1", }, ["1% of damage is taken from mana before life per power charge"] = { "DamageTakeFromManaBeforeLifePerPowerChargeUnique__1", }, ["1% of damage leeched as energy shield against frozen enemies"] = { "EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19", }, ["1% of damage leeched as life"] = { "LifeLeechAnyDamageUnique__1", }, @@ -3990,12 +4167,14 @@ return { ["1.2% of damage leeched as life on critical strike"] = { "LifeLeechOnCritPermyriadUniqueTwoHandAxe8", }, ["1.2% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueClaw3", }, ["1.6% of physical attack damage leeched as life"] = { "LifeLeechPermyriadImplicitClaw1", }, - ["10% additional physical damage reduction while stationary"] = { "PhysicalDamageReductionWhileNotMovingUnique__1", }, + ["10% additional physical damage reduction while stationary"] = { "DivergentPhysicalDamageReductionWhileNotMovingUnique__1", "PhysicalDamageReductionWhileNotMovingUnique__1", }, + ["10% chance for energy shield recharge to start when you kill an enemy"] = { "DivergentEnergyShieldRechargeOnKillUnique__1__", }, ["10% chance for energy shield recharge to start when you use a skill"] = { "StartEnergyShieldRechargeOnSkillUnique__1", }, - ["10% chance that if you would gain a crab barrier, you instead gain up to"] = { "ChanceToGainMaximumCrabBarriersUnique__1_", }, + ["10% chance that if you would gain a crab barrier, you instead gain up to"] = { "ChanceToGainMaximumCrabBarriersUnique__1_", "DivergentChanceToGainMaximumCrabBarriersUnique__1_", }, ["10% chance to avoid elemental ailments"] = { "ChanceToAvoidElementalStatusAilmentsUniqueJewel46", }, + ["10% chance to avoid projectiles"] = { "DivergentProjectileAvoidUnique", }, ["10% chance to blind enemies on hit"] = { "BlindingHitUniqueWand1", }, - ["10% chance to block spell damage"] = { "SpellBlockPercentageUniqueShieldInt4", }, + ["10% chance to block spell damage"] = { "DivergentSpellBlockPercentageUniqueBootsInt5", "SpellBlockPercentageUniqueShieldInt4", }, ["10% chance to cause bleeding on hit"] = { "VillageLocalChanceToBleed", }, ["10% chance to cause monsters to flee"] = { "HitsCauseMonsterFleeUniqueBootsStrInt1", "HitsCauseMonsterFleeUniqueRing1", "HitsCauseMonsterFleeUnique__1", }, ["10% chance to cover enemies in ash on hit"] = { "CoverInAshOnHitUnique__1", }, @@ -4005,23 +4184,25 @@ return { ["10% chance to gain a frenzy charge on hit"] = { "ChargeBonusFrenzyChargeOnHit__", }, ["10% chance to gain a frenzy charge on kill"] = { "ChargeBonusFrenzyChargeOnKill", "FrenzyChargeOnKillChanceUniqueAmulet15", "TalismanFrenzyChargeOnKill", }, ["10% chance to gain a power charge if you knock an enemy back with melee damage"] = { "PowerChargeOnKnockbackUniqueStaff7", }, - ["10% chance to gain a power charge on hitting an enemy affected by a spider's web"] = { "PowerChargeOnHitWebbedEnemyUnique__1", }, + ["10% chance to gain a power charge on hitting an enemy affected by a spider's web"] = { "DivergentPowerChargeOnHitWebbedEnemyUnique__1", "PowerChargeOnHitWebbedEnemyUnique__1", }, ["10% chance to gain a power charge on kill"] = { "ChargeBonusPowerChargeOnKill", "PowerChargeOnKillChanceUniqueAmulet15", "PowerChargeOnKillChanceUniqueUniqueShieldInt3", "TalismanPowerChargeOnKill", }, - ["10% chance to gain adrenaline for 2 seconds when leech is"] = { "AdrenalineOnFillingLifeLeechUnique__1", }, + ["10% chance to gain adrenaline for 2 seconds when leech is"] = { "AdrenalineOnFillingLifeLeechUnique__1", "DivergentAdrenalineOnFillingLifeLeechUnique__1", }, ["10% chance to gain an endurance charge on kill"] = { "ChargeBonusEnduranceChargeOnKill", "TalismanEnduranceChargeOnKill_", }, ["10% chance to gain an endurance, frenzy or power charge when any"] = { "RandomChargeOnTrapTriggerUnique__1", }, ["10% chance to gain chaotic might for 10 seconds on kill"] = { "UnholyMightOnKillPercentChanceUnique__1", }, ["10% chance to gain onslaught for 10 seconds on kill"] = { "OnslaugtOnKillPercentChanceUnique__1", }, ["10% chance to gain onslaught for 4 seconds when leech is"] = { "OnslaughtOnFillingLifeLeechUnique__1", }, - ["10% chance to grant a frenzy charge to nearby allies on kill"] = { "GrantsAlliesFrenzyChargeOnKillUnique__1_", }, - ["10% chance to grant a power charge to nearby allies on kill"] = { "GrantAlliesPowerChargeOnKillUnique__1", }, + ["10% chance to grant a frenzy charge to nearby allies on kill"] = { "DivergentGrantsAlliesFrenzyChargeOnKillUnique__1_", "GrantsAlliesFrenzyChargeOnKillUnique__1_", }, + ["10% chance to grant a power charge to nearby allies on kill"] = { "DivergentGrantAlliesPowerChargeOnKillUnique__1", "GrantAlliesPowerChargeOnKillUnique__1", }, ["10% chance to ignite"] = { "ChanceToIgniteUniqueBodyInt2", "ChanceToIgniteUniqueRing38", "ChanceToIgniteUnique__2", "ChanceToIgniteUnique__3", "IncreasedChanceToIgniteUniqueRing31", }, ["10% chance to impale enemies on hit with attacks"] = { "ChanceToImpaleUnique__1", }, ["10% chance to knock enemies back on hit"] = { "KnockbackChanceUnique__1", }, ["10% chance to poison on hit"] = { "VillageLocalChanceToPoisonOnHit", }, ["10% chance to remove 1 mana burn on kill"] = { "TinctureRemoveToxicityOnKillUnique__1", }, ["10% chance to shock"] = { "ChanceToShockUniqueBow10", "ChanceToShockUnique__1", }, - ["10% chance to steal power, frenzy, and endurance charges on hit"] = { "StealChargesOnHitPercentUniqueGlovesStrDex6", }, + ["10% chance to steal power, frenzy, and endurance charges on hit"] = { "DivergentStealChargesOnHitPercentUniqueGlovesStrDex6", "StealChargesOnHitPercentUniqueGlovesStrDex6", }, + ["10% chance to trigger a socketed spell when you attack with a bow, with a 0.3 second cooldown"] = { "DivergentTriggerSocketedSpellOnBowAttackUnique__2", }, + ["10% chance to trigger explosive toad when you kill an enemy"] = { "TriggerExplodingToadsOnKillUnique__1", }, ["10% chance to trigger level 18 animate guardian's weapon when animated weapon kills an enemy"] = { "AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1", }, ["10% chance to trigger summon spirit of ahuana on kill"] = { "RamakosEmbraceOnKillUnique__1", }, ["10% chance to trigger summon spirit of akoya on kill"] = { "TukohamasEmbraceOnKillUnique__1", }, @@ -4037,10 +4218,10 @@ return { ["10% global chance to blind enemies on hit"] = { "GlobalChanceToBlindOnHitUniqueSceptre8", }, ["10% increased accuracy rating per frenzy charge"] = { "ChargeBonusAccuracyRatingPerFrenzyCharge", }, ["10% increased area damage"] = { "AreaDamageUniqueDescentOneHandSword1", }, - ["10% increased area of effect"] = { "AreaOfEffectImplicitTwoHandMace1__", "AreaOfEffectUniqueQuiver6", "AreaOfEffectUniqueShieldDex7", "AreaOfEffectUniqueShieldDexInt2", "AreaOfEffectUnique__1", "AreaOfEffectUnique__2_", "AreaOfEffectUnique__3", "AreaOfEffectUnique__4_", "AreaOfEffectUnique__5", }, + ["10% increased area of effect"] = { "AreaOfEffectImplicitTwoHandMace1__", "AreaOfEffectUniqueQuiver6", "AreaOfEffectUniqueShieldDex7", "AreaOfEffectUniqueShieldDexInt2", "AreaOfEffectUnique__1", "AreaOfEffectUnique__3", "AreaOfEffectUnique__4_", "AreaOfEffectUnique__5", }, ["10% increased attack damage"] = { "AttackDamageUniqueJewel42", }, - ["10% increased attack speed"] = { "IncreasedAttackSpeedUniqueBodyDex5", "IncreasedAttackSpeedUniqueBodyDex7", "IncreasedAttackSpeedUniqueBootsDexInt1", "IncreasedAttackSpeedUniqueGlovesDexInt3", "IncreasedAttackSpeedUniqueHelmetDex4", "IncreasedAttackSpeedUniqueQuiver1", "IncreasedAttackSpeedUniqueQuiver9", "LocalIncreasedAttackSpeedUniqueBow2", "LocalIncreasedAttackSpeedUniqueBow3", "LocalIncreasedAttackSpeedUniqueDagger12", "LocalIncreasedAttackSpeedUniqueDagger3", "LocalIncreasedAttackSpeedUniqueDescentBow1", "LocalIncreasedAttackSpeedUniqueDescentDagger1", "LocalIncreasedAttackSpeedUniqueOneHandMace8", "LocalIncreasedAttackSpeedUniqueOneHandSword1", }, - ["10% increased cast speed"] = { "IncreasedCastSpeedImplicitMarakethWand1", "IncreasedCastSpeedUniqueGlovesInt4", "IncreasedCastSpeedUniqueStaff1", "IncreasedCastSpeedUniqueWand1", "IncreasedCastSpeedUniqueWand10", }, + ["10% increased attack speed"] = { "DivergentIncreasedAttackSpeedUniqueBootsDexInt1", "IncreasedAttackSpeedUniqueBodyDex5", "IncreasedAttackSpeedUniqueBodyDex7", "IncreasedAttackSpeedUniqueBootsDexInt1", "IncreasedAttackSpeedUniqueGlovesDexInt3", "IncreasedAttackSpeedUniqueHelmetDex4", "IncreasedAttackSpeedUniqueQuiver1", "IncreasedAttackSpeedUniqueQuiver9", "LocalIncreasedAttackSpeedUniqueBow2", "LocalIncreasedAttackSpeedUniqueBow3", "LocalIncreasedAttackSpeedUniqueDagger12", "LocalIncreasedAttackSpeedUniqueDagger3", "LocalIncreasedAttackSpeedUniqueDescentBow1", "LocalIncreasedAttackSpeedUniqueDescentDagger1", "LocalIncreasedAttackSpeedUniqueOneHandMace8", "LocalIncreasedAttackSpeedUniqueOneHandSword1", }, + ["10% increased cast speed"] = { "IncreasedCastSpeedImplicitMarakethWand1", "IncreasedCastSpeedUniqueGlovesInt4", "IncreasedCastSpeedUniqueWand1", "IncreasedCastSpeedUniqueWand10", }, ["10% increased cast speed for each different non-instant spell you've cast recently"] = { "SpellDamagePerUniqueSpellRecentlyUnique__1", }, ["10% increased character size"] = { "ActorSizeUniqueBeltDemigods1", "ActorSizeUnique__3", }, ["10% increased cold damage taken"] = { "ColdDamageTakenUnique__2", }, @@ -4053,10 +4234,12 @@ return { ["10% increased damage taken while on full energy shield"] = { "DamageTakenOnFullESUniqueCorruptedJewel15", }, ["10% increased damage taken while phasing"] = { "DamageTakenWhilePhasingUnique__1", }, ["10% increased damage with poison per frenzy charge"] = { "PoisonDamagePerFrenzyChargeUnique__1", }, + ["10% increased dexterity"] = { "DivergentPercentageDexterityUniqueHelmetStrDex6", }, ["10% increased effect of buffs on you"] = { "IncreasedBuffEffectivenessUniqueOneHandSword11", }, - ["10% increased effect of non-curse auras from your skills"] = { "AuraEffectUnique__2____", }, + ["10% increased effect of non-curse auras from your skills"] = { "AuraEffectUnique__2____", "DivergentAuraEffectUniqueShieldInt2", }, ["10% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew1", "ElementalDamagePercentUnique__2", "ElementalDamageUniqueDescentBelt1", "ElementalDamageUniqueJewel10", }, ["10% increased elemental damage with attack skills"] = { "WeaponElementalDamageUniqueBelt10", }, + ["10% increased elemental resistances"] = { "DivergentIncreasedElementalResistancesUnique__1", }, ["10% increased endurance charge duration"] = { "JewelImplicitEnduranceChargeDuration", }, ["10% increased evasion rating per frenzy charge"] = { "EvasionRatingPerFrenzyChargeUniqueBootsStrDex2", }, ["10% increased experience gain for corrupted gems"] = { "IncreasedCorruptedGemExperienceUniqueCorruptedJewel9", }, @@ -4077,8 +4260,10 @@ return { ["10% increased fire damage taken"] = { "IncreasedFireDamageTakenUniqueTwoHandSword6", }, ["10% increased frenzy charge duration"] = { "JewelImplicitFrenzyChargeDuration__", }, ["10% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueGlovesStr2", "IncreasedPhysicalDamagePercentUniqueJewel9", }, + ["10% increased intelligence"] = { "DivergentPercentageIntelligenceUniqueHelmetStrDex6", }, ["10% increased life recovery from flasks"] = { "FlaskLifeRecoveryRateUniqueJewel46", }, ["10% increased light radius"] = { "LightRadiusUniqueRing15", }, + ["10% increased mana cost efficiency per endurance charge"] = { "ManaCostEfficiencyPerEnduranceChargeUnique__1", }, ["10% increased mana cost of skills during effect"] = { "FlaskBuffReducedManaCostWhileHealingUnique__1", }, ["10% increased mana recovery rate"] = { "IncreasedManaRecoveryRateUnique__1", }, ["10% increased mana regeneration rate"] = { "ManaRegenerationUniqueJewel43", }, @@ -4086,7 +4271,7 @@ return { ["10% increased mana reservation efficiency of herald skills"] = { "HeraldReservationEfficiencyUnique__1", }, ["10% increased mana reservation efficiency of skills"] = { "IncreasedManaReservationsCostUniqueOneHandSword11", "ManaReservationEfficiencyUniqueOneHandSword11", }, ["10% increased maximum life"] = { "MaximumLifeShieldInt1", "MaximumLifeUniqueBelt4", "MaximumLifeUniqueBodyInt3", "MaximumLifeUnique__27", "MaximumLifeUnique__3", }, - ["10% increased movement speed"] = { "MovementVelocityDescent2Boots1", "MovementVelocityMarakethBowImplicit2", "MovementVelocityUniqueAmulet5", "MovementVelocityUniqueBodyDex4", "MovementVelocityUniqueBodyDex5", "MovementVelocityUniqueBootsDex2", "MovementVelocityUniqueBow7", "MovementVelocityUniqueHelmetDex6", "MovementVelocityUniqueHelmetInt6", "MovementVelocityUniqueHelmetStrDex1", "MovementVelocityUniqueOneHandAxe3", "MovementVelocityUniqueTwoHandSword1", "MovementVelocityUniqueTwoHandSword3", "MovementVelocityUnique__37", "MovementVelocityUnique__42", }, + ["10% increased movement speed"] = { "DivergentMovementVelocityUniqueHelmetStrDex2", "MovementVelocityDescent2Boots1", "MovementVelocityMarakethBowImplicit2", "MovementVelocityUniqueAmulet5", "MovementVelocityUniqueBodyDex4", "MovementVelocityUniqueBodyDex5", "MovementVelocityUniqueBootsDex2", "MovementVelocityUniqueBow7", "MovementVelocityUniqueHelmetDex6", "MovementVelocityUniqueHelmetInt6", "MovementVelocityUniqueHelmetStrDex1", "MovementVelocityUniqueOneHandAxe3", "MovementVelocityUniqueTwoHandSword1", "MovementVelocityUniqueTwoHandSword3", "MovementVelocityUnique__37", "MovementVelocityUnique__42", }, ["10% increased movement speed for each poison on you up to a maximum of 50%"] = { "MovementSpeedPerPoisonOnSelfUnique__1_", }, ["10% increased movement speed for you and nearby allies"] = { "NearbyAlliesMovementVelocityUnique__1", }, ["10% increased movement speed if you have used a vaal skill recently"] = { "MovementVelocityIfVaalSkillUsedRecentlyUnique__1_", }, @@ -4103,8 +4288,9 @@ return { ["10% increased projectile damage"] = { "ProjectileDamageJewelUniqueJewel41", }, ["10% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueHelmetDex3", "ItemFoundRarityIncreaseUnique__1", }, ["10% increased scorching ray beam length"] = { "FireBeamLengthUnique__1", }, - ["10% increased strength"] = { "PercentageStrengthImplicitMace1", "PercentageStrengthUnique__3", }, + ["10% increased strength"] = { "DivergentPercentageStrengthUniqueHelmetStrDex6", "PercentageStrengthImplicitMace1", "PercentageStrengthUnique__3", }, ["10% increased stun duration on enemies"] = { "StunDurationUniqueGlovesDexInt3", }, + ["10% of armour also applies to lightning damage taken from hits"] = { "DivergentArmourAppliesToLightningDamagePercentUnique__1", }, ["10% of damage from hits is taken from your raised spectres' life before you"] = { "DamageRemovedFromSpectresUnique__1", }, ["10% of damage you reflect to enemies when hit is leeched as life"] = { "DamageYouReflectGainedAsLifeUnique__1", }, ["10% of fire damage from hits taken as physical damage"] = { "FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5", }, @@ -4127,8 +4313,8 @@ return { ["10% reduced strength"] = { "PercentageStrengthUnique__4_", }, ["10% reduced trap duration"] = { "TrapDurationUnique__1", }, ["100% chance to avoid being chilled during onslaught"] = { "CannotBeChilledWhenOnslaughtUniqueOneHandAxe6", }, - ["100% chance to avoid being chilled or frozen if you have used a fire skill recently"] = { "AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1", }, - ["100% chance to avoid being ignited while on low life"] = { "AvoidIgniteOnLowLifeUniqueShieldStrInt5", }, + ["100% chance to avoid being chilled or frozen if you have used a fire skill recently"] = { "AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1", "DivergentAvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1", }, + ["100% chance to avoid being ignited while on low life"] = { "AvoidIgniteOnLowLifeUniqueShieldStrInt5", "DivergentAvoidIgniteOnLowLifeUniqueShieldStrInt5", }, ["100% chance to avoid being ignited, chilled or frozen with her blessing"] = { "UniqueConditionOnBuff__1", }, ["100% chance to avoid being shocked while chilled"] = { "CannotBeShockedWhileChilledUnique__1", }, ["100% chance to avoid bleeding"] = { "ChanceToAvoidBleedingUnique__2_", }, @@ -4140,7 +4326,10 @@ return { ["100% chance to trigger level 1 raise spiders on kill"] = { "SummonSpidersOnKillUnique__1", }, ["100% increased accuracy rating when on low life"] = { "IncreasedAccuracyWhenOnLowLifeUniqueClaw4", }, ["100% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4", }, - ["100% increased aspect of the avian buff effect"] = { "AvianAspectBuffEffectUnique__1", }, + ["100% increased aspect of the avian buff effect"] = { "AvianAspectBuffEffectUnique__1", "DivergentAvianAspectBuffEffectUnique__1", "TalismanEnchantAvianAspectBuffEffect", }, + ["100% increased aspect of the cat buff effect"] = { "TalismanEnchantCatAspectBuffEffect", }, + ["100% increased aspect of the crab buff effect"] = { "TalismanEnchantCrabAspectBuffEffect", }, + ["100% increased aspect of the spider debuff effect"] = { "TalismanEnchantSpiderAspectDebuffEffect", }, ["100% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueBow4", }, ["100% increased burning damage if you've ignited an enemy recently"] = { "IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1", }, ["100% increased charges per use"] = { "FlaskChargesUsedUnique__7", }, @@ -4158,11 +4347,12 @@ return { ["100% increased effect of lightning ailments"] = { "LightningAilmentEffectUnique__1", }, ["100% increased effect of onslaught on you"] = { "OnslaughtEffectUnique__1", }, ["100% increased effect of tattoos in radius"] = { "SoulTattooEffectUnique__1", }, - ["100% increased evasion rating during onslaught"] = { "IncreasedEvasionWithOnslaughtUnique_1", }, - ["100% increased evasion rating if you have been hit recently"] = { "IncreasedEvasionIfHitRecentlyUnique___1", }, - ["100% increased fire damage"] = { "FireDamagePercentUnique__12___", "IncreasedFireDamgeIfHitRecentlyUnique__1", }, + ["100% increased endurance, frenzy and power charge duration"] = { "DivergentChargeDurationUniqueBodyDexInt3", }, + ["100% increased evasion rating during onslaught"] = { "DivergentIncreasedEvasionWithOnslaughtUnique_1", "IncreasedEvasionWithOnslaughtUnique_1", }, + ["100% increased evasion rating if you have been hit recently"] = { "DivergentIncreasedEvasionIfHitRecentlyUnique___1", "IncreasedEvasionIfHitRecentlyUnique___1", }, + ["100% increased fire damage"] = { "FireDamagePercentUnique__12___", }, ["100% increased fishing line strength"] = { "FishingLineStrengthUnique__1", }, - ["100% increased freeze duration on enemies"] = { "FreezeDurationUniqueGlovesStrInt3", }, + ["100% increased freeze duration on enemies"] = { "DivergentFreezeDurationUniqueGlovesStrInt3", "FreezeDurationUniqueGlovesStrInt3", }, ["100% increased global armour while you have no energy shield"] = { "IncreasedArmourOnZeroEnergyShieldUnique__1", }, ["100% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitMarakethStaff2", "CriticalStrikeChanceUniqueBodyInt4", }, ["100% increased global defences"] = { "AllDefencesUnique__2", "AllDefencesUnique__3", }, @@ -4185,12 +4375,13 @@ return { ["100% increased spell damage"] = { "SpellDamageUniqueGlovesInt2", }, ["100% increased spell damage taken when on low mana"] = { "SpellDamageTakenOnLowManaUniqueBodyInt4", }, ["100% increased stun and block recovery"] = { "StunRecoveryUnique__5", }, - ["100% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUniqueBodyStrDex4", }, + ["100% increased total recovery per second from life leech"] = { "DivergentIncreasedLifeLeechRateUniqueBodyStrDex4", "IncreasedLifeLeechRateUniqueBodyStrDex4", }, + ["100% of cold and lightning damage from hits taken as fire damage"] = { "TalismanEnchantColdAndLightningDamageTakenAsFire", }, ["100% of cold damage leeched as life"] = { "ColdDamageLifeLeechCorrupted_", "ColdDamageLifeLeechPerMyriadUniqueBelt9b", }, ["100% of damage leeched as life against shocked enemies"] = { "LifeLeechVsShockedEnemiesUniqueRing29", }, - ["100% of damage you reflect to enemies when hit is leeched as life"] = { "DamageYouReflectGainedAsLifeUniqueHelmetDexInt6", }, + ["100% of damage you reflect to enemies when hit is leeched as life"] = { "DamageYouReflectGainedAsLifeUniqueHelmetDexInt6", "DivergentDamageYouReflectGainedAsLifeUniqueHelmetDexInt6", }, ["100% of elemental damage leeched as life"] = { "ElementalDamageLeechedAsLifeUniqueSceptre7", }, - ["100% of fire damage from hits taken as physical damage"] = { "FireDamageTakenConvertedToPhysicalUnique__1", }, + ["100% of fire damage from hits taken as physical damage"] = { "DivergentFireDamageTakenConvertedToPhysicalUnique__1", "FireDamageTakenConvertedToPhysicalUnique__1", }, ["100% of fire damage leeched as life"] = { "FireDamageLifeLeechCorrupted", "FireDamageLifeLeechPerMyriadUniqueBelt9a_", }, ["100% of life recovery from flasks is applied to nearby allies instead of you"] = { "FlaskLifeRecoveryAlliesUnique__1_", }, ["100% of lightning damage converted to chaos damage"] = { "ConvertLightningDamageToChaosUniqueBow10", "ConvertLightningDamageToChaosUniqueBow10Updated", }, @@ -4223,8 +4414,9 @@ return { ["12% increased explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistDefenceEffectResistanceEffectPenalty1", }, ["12% increased explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistLifeEffectResistanceEffectPenalty1", }, ["12% increased explicit mana modifier magnitudes"] = { "ArmourEnchantmentHeistManaEffectResistanceEffectPenalty1", }, - ["12% increased global attack speed per green socket"] = { "AttackSpeedPerGreenSocketUniqueOneHandSword5", }, ["12% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2", }, + ["12% increased maximum life if no equipped items are corrupted"] = { "DivergentIncreasedLifeWhileNoCorruptedItemsUnique__1", }, + ["12% increased movement speed"] = { "TalismanEnchantMovementVelocity", }, ["12% increased reservation efficiency of skills"] = { "ReducedManaReservationCostUnique__1", "ReservationEfficiencyUnique__3__", }, ["12% reduced enemy stun threshold"] = { "StunThresholdReductionImlicitMarakethOneHandSword2", }, ["120% increased block recovery"] = { "BlockRecoveryImplicitShield2", }, @@ -4233,6 +4425,7 @@ return { ["15% chance that if you would gain endurance charges, you instead gain up to maximum endurance charges"] = { "ChargeBonusChanceToGainMaximumEnduranceCharges", }, ["15% chance that if you would gain frenzy charges, you instead gain up to your maximum number of frenzy charges"] = { "ChargeBonusChanceToGainMaximumFrenzyCharges", }, ["15% chance that if you would gain power charges, you instead gain up to"] = { "ChargeBonusChanceToGainMaximumPowerCharges", }, + ["15% chance that if you would gain rage on hit, you instead gain up to your maximum rage"] = { "DivergentChanceToGainMaximumRageUnique__1", }, ["15% chance to avoid being chilled"] = { "JewelImplicitChanceToAvoidChill", }, ["15% chance to avoid being frozen"] = { "JewelImplicitChanceToAvoidFreeze", }, ["15% chance to avoid being ignited"] = { "JewelImplicitChanceToAvoidIgnite", }, @@ -4246,8 +4439,9 @@ return { ["15% chance to create chilled ground when you freeze an enemy"] = { "SpreadChilledGroundOnFreezeUnique__1", }, ["15% chance to gain a frenzy charge on kill"] = { "FrenzyChargeOnKillChanceUnique__1", }, ["15% chance to gain a frenzy charge when you stun an enemy"] = { "ChanceToGainFrenzyChargeOnStunUnique__1", }, - ["15% chance to gain a frenzy charge when your trap is triggered by an enemy"] = { "GainFrenzyChargeOnTrapTriggeredUnique__1", }, + ["15% chance to gain a frenzy charge when your trap is triggered by an enemy"] = { "DivergentGainFrenzyChargeOnTrapTriggeredUnique__1", "GainFrenzyChargeOnTrapTriggeredUnique__1", }, ["15% chance to gain a power charge on kill"] = { "PowerChargeOnKillChanceUniqueDescentDagger1", }, + ["15% chance to gain a power, frenzy or endurance charge on kill"] = { "DivergentPowerFrenzyOrEnduranceChargeOnKillUnique__1", }, ["15% chance to maim on hit"] = { "DodgeImplicitMarakethSword1", }, ["15% chance to poison on hit"] = { "LocalChanceToPoisonOnHitUnique__1", }, ["15% chance to shock"] = { "ChanceToShockUniqueStaff8", }, @@ -4259,12 +4453,13 @@ return { ["15% increased attack speed"] = { "IncreasedAttackSpeedUniqueHelmetDex6", "LocalIncreasedAttackSpeedUniqueOneHandSword12", }, ["15% increased attack speed when on full life"] = { "AttackSpeedOnFullLifeUniqueDescentHelmet1", }, ["15% increased attack speed with movement skills"] = { "AttackSpeedWithMovementSkillsUniqueClaw9", }, + ["15% increased attributes"] = { "TalismanEnchantPercentageAllAttributes", }, ["15% increased character size"] = { "ActorSizeUnique__2", }, ["15% increased damage for each poison on you up to a maximum of 75%"] = { "DamagePerPoisonOnSelfUnique__1_", }, ["15% increased damage taken while on full energy shield"] = { "DamageTakenOnFullESUnique__1", }, ["15% increased damage with ailments per elder item equipped"] = { "AilmentDamagePerElderItemUnique__1__", }, ["15% increased dexterity"] = { "PercentageDexterityUniqueBodyDex7", "PercentageDexterityUnique__5", }, - ["15% increased dexterity if strength is higher than intelligence"] = { "PercentDexterityIfStrengthHigherThanIntelligenceUnique__1", }, + ["15% increased dexterity if strength is higher than intelligence"] = { "DivergentPercentDexterityIfStrengthHigherThanIntelligenceUnique__1", "PercentDexterityIfStrengthHigherThanIntelligenceUnique__1", }, ["15% increased elemental damage per grand spectrum"] = { "IncreasedDamagePerStackableJewelUnique__1", }, ["15% increased explicit ailment modifier magnitudes"] = { "WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistAilmentEffectSocketPenalty1__", }, ["15% increased explicit attribute modifier magnitudes"] = { "ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistAttributeEffectSocketPenalty1", "WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistAttributeEffectSocketPenalty1", }, @@ -4284,6 +4479,7 @@ return { ["15% increased item quantity per white socket"] = { "ItemQuantityPerWhiteSocketUniqueRing39_", }, ["15% increased mana recovery from flasks"] = { "FlaskManaRecoveryUniqueShieldInt3", }, ["15% increased mana regeneration rate"] = { "ReducedManaRegenerationUniqueRing27", }, + ["15% increased maximum life"] = { "TalismanEnchantMaximumLifeIncreasePercent", }, ["15% increased movement speed"] = { "MovementVelocityUniqueBodyStrDex5_", "MovementVelocityUniqueBootsDexInt2", "MovementVelocityUniqueBootsStrDex4", "MovementVelocityUnique__16", "MovementVelocityUnique__17__", "MovementVelocityUnique__18", "MovementVelocityUnique__7", "MovementVelocityUnique__8", }, ["15% increased movement speed during any flask effect"] = { "MovementSpeedDuringFlaskEffectUnique__1", }, ["15% increased movement speed for 9 seconds on throwing a trap"] = { "MovementSpeedOnTrapThrowUnique__1", }, @@ -4295,8 +4491,11 @@ return { ["15% increased movement speed while shocked"] = { "MovementVelocityWhileShockedUniqueBelt12", }, ["15% increased power charge duration"] = { "IncreasedPowerChargeDurationUniqueWand3", }, ["15% increased quantity of items dropped by slain frozen enemies"] = { "ItemQuantityWhenFrozenUniqueBow9", }, + ["15% increased rarity of items found"] = { "DivergentItemFoundRarityIncreaseUnique__7", }, ["15% increased skill effect duration"] = { "SkillEffectDurationUniqueTwoHandMace5", }, - ["15% of fire damage converted to chaos damage"] = { "ConvertFireToChaosUniqueBodyInt4", "ConvertFireToChaosUniqueBodyInt4Updated", }, + ["15% increased trap throwing speed"] = { "DivergentTrapThrowSpeedUniqueBootsDex6", }, + ["15% of elemental damage from hits taken as chaos damage"] = { "DivergentElementalDamageTakenAsChaosUniqueBodyStrInt5", }, + ["15% of fire damage converted to chaos damage"] = { "ConvertFireToChaosUniqueBodyInt4", "ConvertFireToChaosUniqueBodyInt4Updated", "DivergentConvertFireToChaosUniqueBodyInt4Updated", }, ["15% of physical attack damage leeched as life"] = { "LifeLeechUniqueClaw6", }, ["15% reduced attack speed"] = { "LocalReducedAttackSpeedUnique__2", }, ["15% reduced cast speed"] = { "ReducedCastSpeedUniqueHelmetInt8", "ReducedCastSpeedUniqueHelmetStrInt6", }, @@ -4311,12 +4510,13 @@ return { ["150% increased elemental damage if you've warcried recently"] = { "IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1", }, ["150% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueHelmetDex6", }, ["150% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__4", }, - ["150% increased global evasion rating when on low life"] = { "EvasionRatingPercentOnLowLifeUniqueHelmetDex4", }, + ["150% increased global evasion rating when on low life"] = { "DivergentEvasionRatingPercentOnLowLifeUniqueHelmetDex4", "EvasionRatingPercentOnLowLifeUniqueHelmetDex4", }, ["150% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace4", }, ["16% chance to block attack damage"] = { "BlockPercentUniqueDescentStaff1", }, + ["16% increased area of effect"] = { "TalismanEnchantAreaOfEffect", }, ["16% increased attack speed"] = { "IncreasedAttackSpeedUniqueHelmetStrDex2", }, ["16% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew6", "ElementalDamagePercentImplicitSceptreNew7", }, - ["16% increased mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUniqueHelmetDex5_", "ReducedManaReservationsCostUniqueHelmetDex5", }, + ["16% increased mana reservation efficiency of skills"] = { "DivergentManaReservationEfficiencyUniqueHelmetDex5_", "ManaReservationEfficiencyUniqueHelmetDex5_", "ReducedManaReservationsCostUniqueHelmetDex5", }, ["16% increased physical weapon damage per 10 strength"] = { "IncreasedAreaOfEffectPerIntelligence", }, ["18% increased area of effect of aura skills"] = { "AuraIncreasedIncreasedAreaOfEffectUniqueStaff5", }, ["18% increased area of effect of hex skills"] = { "CurseAreaOfEffectUniqueStaff5", }, @@ -4329,7 +4529,8 @@ return { ["180% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBootsDex7", }, ["2 added passive skills are jewel sockets"] = { "JewelExpansionJewelNodesLarge2___", }, ["2 enemy writhing worms escape the flask when used"] = { "SummonsWormsOnUse", }, - ["2% chance to avoid elemental damage from hits per frenzy charge"] = { "AvoidElementalDamagePerFrenzyChargeUnique__1", }, + ["2% additional physical damage reduction from hits per siphoning charge"] = { "AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1", }, + ["2% chance to avoid damage of each element from hits per frenzy charge"] = { "AvoidElementalDamagePerFrenzyChargeUnique__1", }, ["2% chance to freeze"] = { "ChanceToFreezeUnique__2", }, ["2% chance to ignite"] = { "IncreasedChanceToIgniteUnique__1", }, ["2% increased area of effect per 25 rampage kills"] = { "AreaOfEffectPer25RampageStacksUnique__1_", }, @@ -4338,22 +4539,22 @@ return { ["2% increased attack critical strike chance per 200 accuracy rating"] = { "IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1", }, ["2% increased attack speed per 8% quality"] = { "LocalAugmentedQualityE2", "LocalAugmentedQualityE3", }, ["2% increased attack speed per frenzy charge"] = { "AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5", }, - ["2% increased cast speed per power charge"] = { "IncreasedCastSpeedPerPowerChargeUnique__1", }, ["2% increased damage per power charge with hits against enemies on full life"] = { "IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6", }, ["2% increased damage per power charge with hits against enemies on low life"] = { "IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6", }, - ["2% increased evasion rating per 10 intelligence"] = { "EvasionRatingPerIntelligenceUnique__1", }, + ["2% increased effect of shrine buffs on you for each 5% of life reserved"] = { "ShrineBuffEffectPerLifeReservationUnique__1", }, + ["2% increased evasion rating per 10 intelligence"] = { "DivergentEvasionRatingPerIntelligenceUnique__1", "EvasionRatingPerIntelligenceUnique__1", }, ["2% increased experience gain"] = { "IncreasedExperienceUniqueRing14", }, ["2% increased intelligence for each unique item equipped"] = { "IncreasedIntelligencePerUniqueUniqueRing14", }, ["2% increased life recovery rate per 10 strength on allocated passives in radius"] = { "LifeRecoveryRatePerAllocatedStrengthUnique__1_", }, ["2% increased mana recovery rate per 10 intelligence on allocated passives in radius"] = { "ManaRecoveryRatePerAllocatedIntelligenceUnique__1", }, - ["2% increased mana reservation efficiency of skills per 250 total attributes"] = { "ManaReservationEfficiencyPerAttributeUnique__1", "ManaReservationPerAttributeUnique__1", }, - ["2% increased melee physical damage per 10 dexterity"] = { "MeleePhysicalDamagePerDexterityUnique__1_", }, + ["2% increased mana reservation efficiency of skills per 250 total attributes"] = { "ManaReservationPerAttributeUnique__1", }, + ["2% increased melee physical damage per 10 dexterity"] = { "DivergentMeleePhysicalDamagePerDexterityUnique__1_", "MeleePhysicalDamagePerDexterityUnique__1_", }, ["2% increased minion attack and cast speed per skeleton you own"] = { "MinionAttackAndCastSpeedPerSkeleton__1", }, - ["2% increased minion attack speed per 50 dexterity"] = { "MinionAttackSpeedPerXDexUnique__1", }, + ["2% increased minion attack speed per 50 dexterity"] = { "DivergentMinionAttackSpeedPerXDexUnique__1", "MinionAttackSpeedPerXDexUnique__1", }, ["2% increased minion duration per raised zombie"] = { "MinionDurationPerZombie__1", }, ["2% increased minion movement speed per 50 dexterity"] = { "MinionMovementSpeedPerXDexUnique__1", }, ["2% increased movement speed per 10 dexterity on allocated passives in radius"] = { "MovementSpeedPerAllocatedDexterityJewelUnique__1", "MovementSpeedPerAllocatedDexterityUnique__1", }, - ["2% increased movement speed per frenzy charge"] = { "MovementVelocityPerFrenzyChargeUniqueBootsDex4", "MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_", }, + ["2% increased movement speed per frenzy charge"] = { "DivergentMovementVelocityPerFrenzyChargeUniqueBootsDex4", "DivergentMovementVelocityPerFrenzyChargeUnique__2", "MovementVelocityPerFrenzyChargeUniqueBootsDex4", "MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_", }, ["2% increased physical damage over time per 10 dexterity"] = { "IncreasePhysicalDegenDamagePerDexterityUnique__1", }, ["2% increased quantity of items found per chest opened recently"] = { "ItemQuantityPerChestOpenedRecentlyUnique__1", }, ["2% increased stun duration per 15 strength"] = { "StunDurationPerStrengthUber1", }, @@ -4371,6 +4572,7 @@ return { ["2% reduced movement speed per 10 dexterity on unallocated passives in radius"] = { "MovementSpeedPerUnallocatedDexterityUnique__1_", }, ["2% reduced movement speed per chest opened recently"] = { "MovementSpeedPerChestOpenedRecentlyUnique__1", }, ["20 life gained on kill per frenzy charge"] = { "LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6", }, + ["20% chance for elemental resistances to count as being 90% against enemy hits"] = { "DivergentTreatResistancesAsMaxChanceUnique__1", }, ["20% chance for poisons inflicted with this weapon to deal 300% more damage"] = { "LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_", }, ["20% chance to avoid being stunned"] = { "StunAvoidanceUniqueOneHandSword13", "StunAvoidanceUnique___1", }, ["20% chance to avoid projectiles while phasing"] = { "ChanceToAvoidProjectilesWhilePhasingUnique__1", }, @@ -4380,22 +4582,26 @@ return { ["20% chance to cause bleeding with melee weapons"] = { "TinctureChanceToBleedImplicit1", }, ["20% chance to create shocked ground when hit"] = { "ShockedGroundWhenHitUniqueHelmetInt10", }, ["20% chance to curse non-cursed enemies with a random hex on hit"] = { "RandomCurseOnHitChanceUniqueHelmetInt10", }, - ["20% chance to deal double damage while affected by glorious madness"] = { "DoubleDamageChanceGloriousMadnessUnique_1", }, + ["20% chance to deal double damage while affected by glorious madness"] = { "DivergentDoubleDamageChanceGloriousMadnessUnique_1", "DoubleDamageChanceGloriousMadnessUnique_1", }, ["20% chance to freeze"] = { "ChanceToFreezeUnique__5", }, - ["20% chance to freeze enemies for 1 second when they hit you"] = { "FreezeEnemiesWhenHitChanceUnique__1", }, + ["20% chance to freeze enemies for 1 second when they hit you"] = { "DivergentFreezeEnemiesWhenHitChanceUnique__1", "FreezeEnemiesWhenHitChanceUnique__1", "TalismanEnchantFreezeEnemiesWhenHitChance", }, + ["20% chance to gain a frenzy charge on critical strike at close range"] = { "DivergentFrenzyChargeOnCritCloseRangeUnique__1", }, ["20% chance to gain a frenzy charge on killing a frozen enemy"] = { "ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1", }, ["20% chance to gain a power charge on critical strike"] = { "ChargeBonusPowerChargeOnCrit", }, ["20% chance to gain a power charge on hit"] = { "PowerChargeOnHitUnique__1", }, ["20% chance to gain an endurance charge when you block"] = { "ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4", }, + ["20% chance to gain onslaught for 4 seconds on kill"] = { "DivergentOnslaughtBuffOnKillUniqueHelmet1", }, ["20% chance to ignite"] = { "ChanceToIgniteUniqueTwoHandSword6", }, ["20% chance to impale on spell hit"] = { "ChanceToImpaleWithSpellsUnique__1", }, ["20% chance to inflict bleeding on hit with attacks against taunted enemies"] = { "ChanceToBleedOnTauntedEnemiesUber1", }, + ["20% chance to inflict withered for 2 seconds on hit"] = { "DivergentWitherOnHitChanceUnique__1", }, ["20% chance to maim on hit"] = { "DodgeImplicitMarakethSword2", }, ["20% chance to poison on hit"] = { "LocalChanceToPoisonOnHitUnique__3", "LocalChanceToPoisonOnHitUnique__4", }, ["20% chance to poison on hit with attacks"] = { "ChanceToPoisonWithAttacksUnique___1", }, ["20% chance to poison with melee weapons"] = { "TinctureChanceToPoisonImplicit1", }, ["20% chance to spread tar when hit"] = { "GroundTarOnHitTakenUnique__1", }, ["20% chance to trigger level 16 molten burst on melee hit"] = { "MoltenBurstOnMeleeHitUnique__1", }, + ["20% chance to trigger level 20 shade form when hit"] = { "DivergentTriggerShadeFormWhenHitUnique__1", }, ["20% chance to trigger level 20 shade form when you use a socketed skill"] = { "LocalDisplayGrantLevelXShadeFormUnique__1", }, ["20% chance to trigger level 20 summon volatile anomaly on kill"] = { "SummonVoidSphereOnKillUnique__1_", }, ["20% chance to trigger level 20 tentacle whip on kill"] = { "TentacleSmashOnKillUnique__1_", }, @@ -4410,18 +4616,21 @@ return { ["20% increased attack and movement speed with her blessing"] = { "UniqueConditionOnBuff__2", }, ["20% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueBow5", "LocalIncreasedAttackSpeedUniqueClaw2", "LocalIncreasedAttackSpeedUniqueDescentOneHandMace1", "LocalIncreasedAttackSpeedUniqueRapier1", "LocalIncreasedAttackSpeedUniqueTwoHandSword1", "LocalIncreasedAttackSpeedUniqueTwoHandSword3", }, ["20% increased attack speed if you have blocked recently"] = { "AttackSpeedIfBlockedRecentlyUber1", }, + ["20% increased attack speed when on full life"] = { "DivergentAttackSpeedOnFullLifeUniqueGlovesStr1", }, ["20% increased cast speed when on low life"] = { "CastSpeedOnLowLifeUniqueDescentHelmet1", }, ["20% increased character size"] = { "ActorSizeUniqueAmulet2", }, - ["20% increased critical strike chance per brand"] = { "CriticalStrikeChancePerBrandUnique__1___", }, + ["20% increased cooldown recovery rate"] = { "TalismanEnchantGlobalCooldownRecovery", }, + ["20% increased critical strike chance per brand"] = { "DivergentCriticalStrikeChancePerBrandUnique__1___", }, ["20% increased damage when on low life"] = { "DamageOnLowLifeUniqueHelmetStrInt5", }, ["20% increased damage with hits for each level higher the enemy is than you"] = { "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1", }, ["20% increased damage with movement skills"] = { "DamageWithMovementSkillsUniqueClaw9", }, ["20% increased effect of non-curse auras from your skills"] = { "AuraEffectUniqueShieldInt2", "AuraEffectUnique__1", }, ["20% increased effect of non-curse auras from your skills on your minions"] = { "AuraEffectOnMinionsUniqueShieldInt2", "AuraEffectOnMinionsUnique__1_", }, + ["20% increased effect of non-curse auras from your skills while you have a linked target"] = { "DivergentAuraEffectWhileLinkedUnique__1", }, ["20% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptre1", "ElementalDamagePercentImplicitSceptreNew4", "ElementalDamageUniqueHelmetInt9", "ElementalDamageUniqueSceptre1", }, ["20% increased elemental damage if you've killed a cursed enemy recently"] = { "IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1", }, ["20% increased evasion if you have hit an enemy recently"] = { "IncreasedEvasionRatingIfHitEnemyRecentlyUber1", }, - ["20% increased evasion rating per 500 maximum mana"] = { "DodgeAndSpellDodgePerMaximumManaUnique__1", }, + ["20% increased evasion rating per 500 maximum mana"] = { "DivergentDodgeAndSpellDodgePerMaximumManaUnique__1", "DodgeAndSpellDodgePerMaximumManaUnique__1", }, ["20% increased evasion while leeching"] = { "IncreasedEvasionRatingWhileLeechingUber1", }, ["20% increased fire damage taken"] = { "IncreasedFireDamageTakenUniqueBodyStrDex5", }, ["20% increased fishing range"] = { "FishingCastDistanceUnique__1__", }, @@ -4433,14 +4642,15 @@ return { ["20% increased lightning damage"] = { "LightningDamagePercentUniqueRing29", }, ["20% increased mana regeneration rate"] = { "ManaRegenerationUniqueBelt6", }, ["20% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUnique__1", "IncreasedEnergyShieldPercentUnique__6", }, + ["20% increased maximum life"] = { "DivergentMaximumLifeUniqueBodyStrDex1", }, ["20% increased maximum mana"] = { "MaximumManaUniqueRing5", "MaximumManaUnique__10", }, ["20% increased melee damage"] = { "MeleeDamageIncreaseUniqueHelmetStrDex3", }, ["20% increased movement speed"] = { "MovementVelocityUniqueBootsDex8", "MovementVelocityUniqueBootsDexInt1", "MovementVelocityUniqueBootsInt2", "MovementVelocityUniqueBootsInt5", "MovementVelocityUniqueBootsStr1", "MovementVelocityUniqueBootsStrDex1", "MovementVelocityUniqueBootsStrDex3", "MovementVelocityUniqueHelmetStrDex2", "MovementVelocityUnique__13", "MovementVelocityUnique__25", "MovementVelocityUnique__27", "MovementVelocityUnique__30", "MovementVelocityUnique__47_", "MovementVeolcityUniqueBootsDemigods1", "MovementVeolcityUniqueBootsDex4", }, ["20% increased movement speed on shocked ground"] = { "MovementVelocityOnShockedGroundUniqueBootsInt6_", }, - ["20% increased movement speed when on full life"] = { "MovementVelocityOnFullLifeUniqueBootsInt3", }, + ["20% increased movement speed when on full life"] = { "DivergentMovementVelocityOnFullLifeUniqueBootsInt3", "MovementVelocityOnFullLifeUniqueBootsInt3", }, ["20% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueGlovesDexInt1", }, ["20% increased movement speed while bleeding"] = { "MovementVelocityWhileBleedingUnique__1", }, - ["20% increased movement speed while on full energy shield"] = { "MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8", }, + ["20% increased movement speed while on full energy shield"] = { "DivergentMovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8", "MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8", }, ["20% increased movement speed while you have cat's stealth"] = { "MovementSpeedWithCatsStealthUnique__1", }, ["20% increased physical damage"] = { "LocalIncreasedPhysicalDamageUniqueSceptre9", }, ["20% increased physical damage taken"] = { "IncreasedPhysicalDamageTakenUniqueBootsDex8", }, @@ -4454,13 +4664,15 @@ return { ["20% increased total recovery per second from mana leech"] = { "JewelImplicitManaLeechRate", }, ["20% less attack speed"] = { "RingAttackSpeedUnique__1", }, ["20% less effect of your curses"] = { "DoedresSkinLessCurseEffectUnique__1", }, + ["20% of armour also applies to chaos damage taken from hits"] = { "DivergentArmourAppliesToChaosDamagePercentUnique__1", }, ["20% of fire damage from hits taken as cold damage"] = { "FireDamageTakenAsColdUnique___1", }, ["20% of lightning damage leeched as life during effect"] = { "LightningLifeLeechDuringFlaskEffect__1", }, ["20% of lightning damage leeched as mana during effect"] = { "LightningManaLeechDuringFlaskEffect__1", }, - ["20% of maximum life converted to energy shield"] = { "MaximumLifeConvertedToEnergyShieldUnique__1", }, + ["20% of maximum life converted to energy shield"] = { "DivergentMaximumLifeConvertedToEnergyShieldUnique__2", "MaximumLifeConvertedToEnergyShieldUnique__1", }, ["20% of physical damage from hits taken as cold damage"] = { "PhysicalDamageTakenAsColdUnique__1", }, ["20% of physical damage from hits taken as damage of a random element"] = { "PhysicalDamageTakenAsRandomElementUnique__1", }, ["20% of physical damage from hits taken as fire damage"] = { "PhysicalDamageTakenAsFirePercentUniqueBodyInt2", }, + ["20% of physical damage taken as fire damage"] = { "DivergentPhysicalHitAndDoTDamageTakenAsFireUnique__2", }, ["20% reduced attack speed"] = { "LocalReducedAttackSpeedUniqueDagger9", "LocalReducedAttackSpeedUniqueOneHandMace6", }, ["20% reduced chill duration on you"] = { "ReducedChillDurationOnSelfUniqueRing30", }, ["20% reduced damage taken from projectile hits"] = { "ReducedProjectileDamageTakenUniqueAmulet12", }, @@ -4481,7 +4693,6 @@ return { ["20% reduced strength requirement"] = { "ReducedStrengthRequirementsUniqueTwoHandMace5", }, ["200 cold damage taken per second per frenzy charge while moving"] = { "DamageTakenPerFrenzyChargeMovingUnique__1", }, ["200 fire damage taken per second per endurance charge if you've been hit recently"] = { "DamageTakenPerEnduranceChargeWhenHitUnique__1_", }, - ["200 lightning damage taken per second per power charge if"] = { "DamageTakenPerPowerChargeOnCritUnique__1", }, ["200% increased armour against projectiles"] = { "ArmourPercent VsProjectilesUniqueShieldStr2", }, ["200% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__4", }, ["200% increased damage with claws while on low life"] = { "IncreasedClawDamageOnLowLifeUnique__1__", }, @@ -4492,7 +4703,7 @@ return { ["22% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew12___", "ElementalDamagePercentImplicitSceptreNew8", }, ["24% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew13", "ElementalDamagePercentImplicitSceptreNew14", }, ["24% reduced maximum life"] = { "MaximumLifeUnique__23", }, - ["25% chance that if you would gain power charges, you instead gain up to"] = { "ChanceToGainMaximumPowerChargesUnique__1_", }, + ["25% chance that if you would gain power charges, you instead gain up to"] = { "ChanceToGainMaximumPowerChargesUnique__1_", "DivergentChanceToGainMaximumPowerChargesUnique__1_", }, ["25% chance to avoid being chilled"] = { "ChanceToAvoidFreezeAndChillUniqueDexHelmet5", }, ["25% chance to avoid being poisoned"] = { "ChanceToAvoidPoisonUnique__1", }, ["25% chance to avoid fire damage from hits"] = { "ChanceToAvoidFireDamageUnique__1", }, @@ -4503,23 +4714,31 @@ return { ["25% chance to curse non-cursed enemies with enfeeble on hit"] = { "EnfeebleOnHitUniqueShieldStr3", }, ["25% chance to double stun duration"] = { "ChanceForDoubleStunDurationImplicitMace_1", }, ["25% chance to freeze with melee weapons"] = { "TinctureChanceToFreezeImplicit1", }, + ["25% chance to freeze, shock and ignite"] = { "DivergentChanceToFreezeShockIgniteUnique__1", }, ["25% chance to gain a frenzy charge on kill"] = { "FrenzyChargeOnKillChanceUnique__2", }, - ["25% chance to gain a power charge on critical strike"] = { "PowerChargeOnCriticalStrikeChanceUnique__1", }, - ["25% chance to gain a power charge when you throw a trap"] = { "PowerChargeOnTrapThrowChanceUniqueShieldDexInt1", }, + ["25% chance to gain a power charge on critical strike"] = { "DivergentPowerChargeOnCriticalStrikeChanceUnique__1", "PowerChargeOnCriticalStrikeChanceUnique__1", }, + ["25% chance to gain a power charge when you throw a trap"] = { "DivergentPowerChargeOnTrapThrowChanceUniqueShieldDexInt1", "PowerChargeOnTrapThrowChanceUniqueShieldDexInt1", }, ["25% chance to gain a siphoning charge when you use a skill"] = { "SiphoningChargeOnSkillUseUnique__1", }, ["25% chance to gain an endurance charge when you stun an enemy"] = { "GainEnduranceChargeOnStunChanceUber1", }, - ["25% chance to ignite"] = { "ChanceToIgniteUnique__5", }, + ["25% chance to ignite"] = { "ChanceToIgniteUnique__5", "ChanceToIgniteUnique__8", }, ["25% chance to ignite when in main hand"] = { "MainHandChanceToIgniteUniqueOneHandAxe2", }, ["25% chance to ignite with melee weapons"] = { "TinctureChanceToIgniteImplicit1", }, - ["25% chance to inflict cold exposure on hit"] = { "ColdExposureOnHitUnique__1", }, - ["25% chance to inflict fire exposure on hit"] = { "FireExposureOnHitUnique__1", }, + ["25% chance to inflict brittle"] = { "DivergentAlternateColdAilmentUnique__1", }, + ["25% chance to inflict cold exposure on hit"] = { "ColdExposureOnHitUnique__1", "DivergentColdExposureOnHitUnique__1", }, + ["25% chance to inflict corrosion on hit with attacks"] = { "DivergentAttackCorrosionOnHitChanceUnique__1", }, + ["25% chance to inflict fire exposure on hit"] = { "DivergentFireExposureOnHitUnique__1", "FireExposureOnHitUnique__1", }, ["25% chance to maim on hit"] = { "LocalMaimOnHit2HImplicit_1", }, ["25% chance to poison on hit"] = { "ChanceToPoisonUnique__1_______", }, ["25% chance to poison on hit during effect"] = { "FlaskChanceToPoisonUnique__1", }, + ["25% chance to sap enemies"] = { "DivergentAlternateLightningAilmentUnique__1__", }, + ["25% chance to sap enemies in chilling areas"] = { "DivergentChanceToSapVsEnemiesInChillingAreasUnique__1", }, + ["25% chance to scorch enemies"] = { "DivergentAlternateFireAilmentUnique__1", }, ["25% chance to shock"] = { "ChanceToShockUniqueRing29", }, ["25% chance to shock with melee weapons"] = { "TinctureChanceToShockImplicit1", }, ["25% chance to trigger level 10 summon raging spirit on kill"] = { "SummonRagingSpiritOnKillUnique__1", "VillageSummonRagingSpiritOnKill", }, ["25% chance to trigger level 20 animate weapon on kill"] = { "TriggeredAnimateWeaponUnique__1", }, + ["25% chance to trigger socketed spells when you spend at least 100 mana on an"] = { "DivergentChanceToCastOnManaSpentUnique__1", }, + ["25% increased area of effect"] = { "DivergentAreaOfEffectUniqueBodyDexInt1", }, ["25% increased area of effect while fortified"] = { "AreaOfEffectWhileFortifiedUber1", }, ["25% increased attack speed when on low life"] = { "IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4", "IncreasedAttackSpeedWhenOnLowLifeUnique__1", }, ["25% increased burning damage"] = { "BurnDamageUniqueDescentOneHandMace1", }, @@ -4532,29 +4751,30 @@ return { ["25% increased fire damage"] = { "FireDamagePercentUnique___7", }, ["25% increased flask life recovery rate"] = { "BeltFlaskLifeRecoveryRateUniqueBelt4", }, ["25% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueHelmetDex4", }, - ["25% increased global physical damage with weapons per red socket"] = { "PhysicalDamgePerRedSocketUniqueOneHandSword5", }, - ["25% increased light radius"] = { "LightRadiusUniqueBelt6", "LightRadiusUniqueBodyInt8", "LightRadiusUniqueBodyStr4", "LightRadiusUnique__9", }, + ["25% increased light radius"] = { "DivergentLightRadiusUniqueBodyInt8", "LightRadiusUniqueBelt6", "LightRadiusUniqueBodyInt8", "LightRadiusUniqueBodyStr4", "LightRadiusUnique__9", }, ["25% increased light radius during effect"] = { "FlaskLightRadiusUniqueFlask1", }, ["25% increased maximum mana"] = { "MaximumManaUniqueTwoHandMace5", }, ["25% increased movement skill mana cost"] = { "IncreasedCostOfMovementSkillsUnique_1", }, - ["25% increased movement speed"] = { "MovementVelocityUniqueBootsDexInt4", "MovementVelocityUniqueBootsStr3", "MovementVelocityUniqueBootsStrDex5", "MovementVelocityUniqueBootsStrInt2_", "MovementVelocityUniqueBootsStrInt3", "MovementVelocityUniqueBootsW1", "MovementVelocityUnique__10", "MovementVelocityUnique__11", "MovementVelocityUnique__20_", "MovementVelocityUnique__26", "MovementVelocityUnique__29", "MovementVelocityUnique__31", "MovementVelocityUnique__34", "MovementVelocityUnique__40", "MovementVelocityUnique__43", }, + ["25% increased movement speed"] = { "DivergentMovementVelocityUnique___6", "MovementVelocityUniqueBootsDexInt4", "MovementVelocityUniqueBootsStr3", "MovementVelocityUniqueBootsStrDex5", "MovementVelocityUniqueBootsStrInt2_", "MovementVelocityUniqueBootsStrInt3", "MovementVelocityUniqueBootsW1", "MovementVelocityUnique__10", "MovementVelocityUnique__11", "MovementVelocityUnique__20_", "MovementVelocityUnique__26", "MovementVelocityUnique__29", "MovementVelocityUnique__31", "MovementVelocityUnique__34", "MovementVelocityUnique__40", "MovementVelocityUnique__43", }, ["25% increased raised zombie size"] = { "ZombieSizeUniqueSceptre3_", }, ["25% increased shock duration on enemies"] = { "ShockDurationUnique__3", }, - ["25% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueWand3", }, ["25% increased strength requirement"] = { "IncreasedStrengthRequirementsUniqueTwoHandSword4", }, ["25% increased stun and block recovery"] = { "StunRecoveryUniqueClaw8", }, ["25% increased warcry buff effect"] = { "WarcryEffectUnique__1", "WarcryEffectUnique__2", }, + ["25% increased warcry speed"] = { "DivergentWarcrySpeedUnique__1", }, ["25% of elemental damage from hits taken as chaos damage"] = { "ElementalDamageTakenAsChaosUniqueBodyStrInt5", }, + ["25% of elemental damage from hits taken as physical damage"] = { "DivergentElementalDamageTakenAsPhysicalUnique__1", }, ["25% of maximum life taken as chaos damage per second"] = { "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6", }, ["25% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosUniqueBow5", "PhysicalDamageConvertToChaosUnique__1", "PhysicalDamageConvertedToChaosUnique__1", }, ["25% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUniqueOneHandAxe8", "ConvertPhysicalToColdUnique__1", }, - ["25% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueShieldStr3", }, + ["25% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueShieldStr3", "DivergentConvertPhysicalToFireUniqueShieldStr3", }, ["25% of physical damage converted to lightning damage"] = { "ConvertPhysicalToLightningUniqueOneHandAxe8", }, ["25% of physical damage from hits taken as chaos damage"] = { "PhysicalDamagePercentTakesAsChaosDamageUniqueBow5", }, + ["25% of physical damage from hits taken as lightning damage"] = { "DivergentPhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2", }, ["25% reduced attack damage with main hand"] = { "MainHandOffHandDamage1_", "MainHandOffHandDamage2", "MainHandOffHandDamage3_", }, ["25% reduced attack speed"] = { "LocalIncreasedAttackSpeedUniqueTwoHandMace3", }, ["25% reduced bleeding duration"] = { "ReducedBleedDurationUnique__1_", }, - ["25% reduced chaos damage taken over time"] = { "ChaosDamageOverTimeUnique__1", }, + ["25% reduced chaos damage taken over time"] = { "ChaosDamageOverTimeUnique__1", "DivergentChaosDamageOverTimeUnique__1", }, ["25% reduced damage"] = { "AllDamageUniqueHelmetDexInt2", }, ["25% reduced enemy stun threshold during any flask effect"] = { "ReducedStunThresholdWhileUsingFlaskUniqueBelt9d", }, ["25% reduced enemy stun threshold with this weapon"] = { "StunThresholdReductionUniqueClaw2_", "StunThresholdReductionUniqueTwoHandSword5", }, @@ -4581,12 +4801,16 @@ return { ["3% increased experience gain"] = { "IncreasedExperienceUniqueSceptre1", }, ["3% increased global critical strike chance per level"] = { "CriticalStrikeChancePerLevelUniqueTwoHandAxe8", }, ["3% increased life recovery rate per 10 strength on allocated passives in radius"] = { "LifeRecoveryRatePerAllocatedStrengthUnique__2", }, + ["3% increased mana cost efficiency per 10 devotion"] = { "ManaCostEfficiencyPerDevotion", }, ["3% increased mana recovery rate per 10 intelligence on allocated passives in radius"] = { "ManaRecoveryRatePerAllocatedIntelligenceUnique__2", }, + ["3% increased mana reservation efficiency of skills per 250 total attributes"] = { "DivergentManaReservationEfficiencyPerAttributeUnique__1", "ManaReservationEfficiencyPerAttributeUnique__1", }, ["3% increased maximum life per abyss jewel affecting you"] = { "IncreasedLifePerAbyssalJewelUnique__2", }, ["3% increased maximum mana per abyss jewel affecting you"] = { "IncreasedManaPerAbyssalJewelUnique__2", }, ["3% increased movement speed"] = { "MovementVelocityImplicitArmour1", "MovementVelocityImplicitShield1", "MovementVelocityUniqueOneHandSword9", }, ["3% increased movement speed per 10 dexterity on allocated passives in radius"] = { "MovementSpeedPerAllocatedDexterityUnique__2", }, ["3% increased poison duration per power charge"] = { "PoisonDurationPerPowerChargeUnique__1", }, + ["3% increased spell critical strike chance per 100 player maximum life"] = { "DivergentSpellCriticalStrikeChancePerLifeUnique__1", "SpellCriticalStrikeChancePerLifeUnique__1", }, + ["3% increased spell damage per 100 player maximum life"] = { "SpellDamagePerLifeUnique__1", }, ["3% increased totem life per 10 strength allocated in radius"] = { "TotemLifePerStrengthUniqueJewel15", }, ["3% of attack damage leeched as life against bleeding enemies"] = { "LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8", }, ["3% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueClaw6", "LifeLeechUniqueGlovesStrDex1", "LifeLeechUniqueOneHandAxe6", "LifeLeechUniqueShieldDex2", }, @@ -4621,41 +4845,49 @@ return { ["30% increased chaos damage"] = { "IncreasedChaosDamageImplicitUnique__1", }, ["30% increased cold damage"] = { "ColdDamagePercentUnique__8", }, ["30% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueDagger11", }, + ["30% increased critical strike chance per brand"] = { "CriticalStrikeChancePerBrandUnique__1___", }, ["30% increased damage over time"] = { "DegenerationDamageUniqueDagger8", }, ["30% increased damage while ignited"] = { "DamageWhileIgnitedUniqueRing18", }, ["30% increased effect of buffs granted by your golems"] = { "GolemBuffEffectUnique__1", }, ["30% increased effect of buffs on you"] = { "IncreasedBuffEffectivenessBodyInt12", }, ["30% increased effect of lightning ailments"] = { "ShockEffectUnique__3", }, + ["30% increased effect of offerings"] = { "DivergentSelfOfferingEffectUnique__2", }, + ["30% increased effect of your marks"] = { "TalismanEnchantMarkEffect", }, ["30% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptre2", "ElementalDamagePercentImplicitSceptreNew11", "ElementalDamagePercentImplicitSceptreNew15", "ElementalDamagePercentImplicitSceptreNew19", "ElementalDamageUnique__1", }, ["30% increased elemental damage during any flask effect"] = { "ElementalDamageDuringFlaskEffectUnique__1", }, ["30% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitSword1", }, ["30% increased elemental damage with attack skills during any flask effect"] = { "IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10", }, + ["30% increased elusive effect"] = { "DivergentElusiveEffectUnique__1", }, ["30% increased endurance charge duration"] = { "EnduranceChargeDurationUniqueBodyStrInt4", }, + ["30% increased energy shield recovery rate"] = { "DivergentEnergyShieldRecoveryRateUnique__1", }, ["30% increased evasion rating while phasing"] = { "ChanceToDodgeAttacksWhilePhasingUnique___1", }, ["30% increased fire damage"] = { "FireDamagePercentUniqueSceptre9", }, ["30% increased freeze duration on enemies"] = { "FreezeDurationUnique__1", }, ["30% increased global accuracy rating"] = { "AccuracyPercentImplicitSword2", }, - ["30% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger1", "CriticalStrikeChanceImplicitDaggerNew1", "CriticalStrikeChanceUniqueRapier1", "CriticalStrikeChanceUnique__1", }, + ["30% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger1", "CriticalStrikeChanceUniqueRapier1", "CriticalStrikeChanceUnique__1", }, + ["30% increased global defences"] = { "TalismanEnchantAllDefences", }, ["30% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueDescentClaw1", "IncreasedPhysicalDamagePercentUniqueQuiver2", "IncreasedPhysicalDamagePercentUniqueSwordImplicit1", }, ["30% increased life recovery from flasks"] = { "BeltFlaskLifeRecoveryUniqueDescentBelt1", }, ["30% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUniqueDescentBelt1", }, ["30% increased mana regeneration rate"] = { "ManaRegenerationUniqueIntHelmet2", }, ["30% increased mana regeneration rate per raised spectre"] = { "ManaRegenerationPerSpectreUnique__1", }, + ["30% increased maximum mana"] = { "TalismanEnchantMaximumManaIncreasePercent", }, ["30% increased melee damage against bleeding enemies"] = { "MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6", }, - ["30% increased movement speed"] = { "MovementSpeedUnique_42", "MovementVelocityUniqueBootsA1", "MovementVelocityUniqueBootsDex1", "MovementVelocityUniqueBootsDex7", "MovementVelocityUniqueBootsInt6", "MovementVelocityUnique__1", "MovementVelocityUnique__12", "MovementVelocityUnique__14", "MovementVelocityUnique__15", "MovementVelocityUnique__22", "MovementVelocityUnique__24", "MovementVelocityUnique__35", "MovementVelocityUnique__45", "MovementVelocityUnique__48", "MovementVelocityUnique__49", "MovementVelocityUnique__50", "MovementVelocityUnique__54", }, + ["30% increased movement speed"] = { "MovementSpeedUnique_42", "MovementVelocityUniqueBootsA1", "MovementVelocityUniqueBootsDex1", "MovementVelocityUniqueBootsDex7", "MovementVelocityUniqueBootsInt6", "MovementVelocityUnique__1", "MovementVelocityUnique__12", "MovementVelocityUnique__14", "MovementVelocityUnique__15", "MovementVelocityUnique__24", "MovementVelocityUnique__35", "MovementVelocityUnique__45", "MovementVelocityUnique__48", "MovementVelocityUnique__49", "MovementVelocityUnique__50", "MovementVelocityUnique__54", }, ["30% increased movement speed for 9 seconds on throwing a trap"] = { "MovementSpeedOnTrapThrowUniqueBootsDex6", }, ["30% increased movement speed when on full life"] = { "MovementVelocityOnFullLifeUnique__1", }, ["30% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueBootsDex3", "MovementVelocityOnLowLifeUniqueRapier1", }, ["30% increased movement speed while cursed"] = { "IncreasedMovementVelictyWhileCursedUniqueOneHandSword4", }, ["30% increased projectile damage"] = { "IncreasedProjectileDamageUnique__6", }, - ["30% increased projectile speed"] = { "ProjectileSpeedUniqueAmulet5", "ProjectileSpeedUnique__2", "ProjectileSpeedUnique__5__", "ProjectileSpeedUnique___1", }, + ["30% increased projectile speed"] = { "DivergentProjectileSpeedUnique__8", "DivergentProjectileSpeedUnique___1", "ProjectileSpeedUniqueAmulet5", "ProjectileSpeedUnique__2", "ProjectileSpeedUnique__5__", "ProjectileSpeedUnique___1", "TalismanEnchantProjectileSpeed", }, ["30% increased rarity of items dropped by frozen enemies"] = { "IncreasedRarityWhenSlayingFrozenUnique__1", }, ["30% increased rarity of items dropped by slain shocked enemies"] = { "ItemRarityWhenShockedUniqueBow9", }, - ["30% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueAmulet6", "ItemFoundRarityIncreaseUnique__2", }, + ["30% increased rarity of items found"] = { "DivergentItemFoundRarityIncreaseUnique__10", "ItemFoundRarityIncreaseUniqueAmulet6", "ItemFoundRarityIncreaseUnique__2", }, ["30% increased skill effect duration"] = { "SkillEffectDurationUnique__3", }, ["30% increased stun and block recovery"] = { "IncreasedStunRecoveryReducedStunThresholdImplicitR1", }, ["30% increased stun duration on enemies"] = { "StunDurationImplicitMace1", }, ["30% increased total recovery per second from life, mana, or energy shield leech"] = { "IncreasedLifeLeechRateUniqueAmulet20", "LifeManaESLeechRateUnique__1", }, + ["30% increased warcry cooldown recovery rate"] = { "DivergentWarcryCooldownSpeedUnique__1", "DivergentWarcryCooldownSpeedUnique__2", }, ["30% less animate weapon duration"] = { "AnimateWeaponDurationUniqueTwoHandMace8", }, ["30% less damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow4", }, ["30% more damage with arrow hits at close range while you have iron reflexes"] = { "ArborixMoreDamageAtCloseRangeUnique__1", }, @@ -4663,7 +4895,7 @@ return { ["30% of fire damage converted to chaos damage"] = { "ConvertFireToChaosUniqueDagger10", "ConvertFireToChaosUniqueDagger10Updated", }, ["30% of fire damage from hits taken as cold damage"] = { "FireDamageTakenAsColdUnique___2_", }, ["30% of lightning damage is taken from mana before life"] = { "PercentLightningDamageTakenFromManaBeforeLifeUnique__1", }, - ["30% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosBodyStrInt4", }, + ["30% of physical damage converted to chaos damage"] = { "DivergentPhysicalDamageConvertToChaosBodyStrInt4", "PhysicalDamageConvertToChaosBodyStrInt4", }, ["30% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUnique__2_", }, ["30% of physical damage converted to lightning damage"] = { "ConvertPhysicaltoLightningUnique__2", }, ["30% reduced attack speed"] = { "ReducedAttackSpeedUnique__1", }, @@ -4680,6 +4912,7 @@ return { ["30% reduced power charge duration"] = { "PowerChargeDurationUniqueAmulet14", }, ["30% reduced spell damage taken from blinded enemies"] = { "SpellDamageTakenFromBlindEnemies__1", }, ["30% reduced strength requirement"] = { "ReducedStrengthRequirementUniqueBodyStr5", }, + ["300 lightning damage taken per second per power charge if"] = { "DamageTakenPerPowerChargeOnCritUnique__1", }, ["300% increased armour while chilled or frozen"] = { "IncreasedArmourWhileChilledOrFrozenUnique__1", }, ["300% of attack damage leeched as life against chilled enemies"] = { "LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14", }, ["31% increased cost of skills"] = { "IncreasedSkillCostUnique_1", }, @@ -4692,9 +4925,12 @@ return { ["33% of non-chaos damage taken bypasses energy shield"] = { "NonChaosDamageBypassEnergyShieldPercentUnique__1", }, ["33% reduced recovery rate"] = { "FlaskIncreasedDuration1", }, ["333% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__19", }, - ["35% chance to avoid being stunned for each herald buff affecting you"] = { "StunAvoidancePerHeraldUnique__1", }, + ["35% chance to avoid being stunned for each herald buff affecting you"] = { "DivergentStunAvoidancePerHeraldUnique__1", "StunAvoidancePerHeraldUnique__1", }, ["35% increased attack speed with swords"] = { "SwordPhysicalAttackSpeedUnique__1", }, + ["35% increased effect of withered"] = { "TalismanEnchantWitheredEffect", }, ["35% increased lightning damage"] = { "LightningDamagePercentUnique__3", }, + ["35% increased rarity of items found"] = { "DivergentIncreasedItemRarityUniqueShieldStrDex2", }, + ["35% less burning damage"] = { "EmberwakeLessBurningDamageUnique__1", }, ["35% less damage taken if you have not been hit recently"] = { "ReducedDamageIfNotHitRecentlyUnique__1", }, ["35% less mine damage"] = { "LessMineDamageUniqueStaff11", }, ["350 physical damage taken on minion death"] = { "PhysicalDamageToSelfOnMinionDeathUniqueRing33", }, @@ -4728,29 +4964,33 @@ return { ["40% increased attack damage against bleeding enemies"] = { "AttackDamageAgainstBleedingUniqueDagger11", }, ["40% increased attack speed if you've taken a savage hit recently"] = { "AttackSpeedAfterSavageHitTakenUnique__1", }, ["40% increased brand damage"] = { "BrandDamageUnique__1", }, + ["40% increased damage while leeching"] = { "DivergentIncreasedDamageWhileLeechingUnique__2__", }, ["40% increased damage with hits against frozen enemies"] = { "IncreasedDamageAgainstFrozenEnemiesUnique__1", }, ["40% increased damage with hits against shocked enemies"] = { "IncreasedDamageToShockedTargetsUniqueRing29", }, + ["40% increased damage with hits and ailments against ignited enemies"] = { "DivergentIncreasedDamageToIgnitedTargetsUniqueBootsStrInt3", }, ["40% increased duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__1", }, ["40% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptre3", "ElementalDamagePercentImplicitSceptreNew18", "ElementalDamagePercentImplicitSceptreNew22", }, ["40% increased global accuracy rating"] = { "AccuracyPercentImplicitSword1", }, - ["40% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger2", "CriticalStrikeChanceImplicitDaggerNew2", }, + ["40% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger2", }, ["40% increased lightning damage taken"] = { "IncreasedLightningDamageTakenUnique__1", }, ["40% increased main hand critical strike chance per"] = { "MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1", }, ["40% increased mana cost of skills"] = { "ManaCostIncreasedUniqueWand7", }, ["40% increased maximum total life recovery per second from leech"] = { "MaximumLifeLeechRateUnique__1", }, ["40% increased physical attack damage while dual wielding"] = { "DualWieldingPhysicalDamageUnique__1", }, + ["40% increased projectile damage"] = { "DivergentIncreasedProjectileDamageUniqueBootsDexInt4", }, ["40% increased rarity of fish caught"] = { "FishingRarityUnique__1", }, ["40% increased rarity of items dropped by frozen enemies"] = { "IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4", }, + ["40% increased rarity of items found"] = { "DivergentItemFoundRarityIncreaseUniqueGlovesStrDex2", }, + ["40% increased spell critical strike chance per raised spectre"] = { "DivergentSpellCriticalStrikeChancePerSpectreUnique__1_", }, ["40% increased spell damage"] = { "SpellDamageUnique__3", }, ["40% increased strength requirement"] = { "IncreasedStrengthRequirementUniqueStaff8", }, ["40% increased stun and block recovery"] = { "IncreasedStunRecoveryReducedStunThresholdImplicitR2", "StunRecoveryUniqueAmulet18", }, ["40% increased totem damage"] = { "TotemDamageUnique__1_", }, - ["40% less burning damage"] = { "EmberwakeLessBurningDamageUnique__1", }, ["40% less critical strike chance"] = { "LessCriticalStrikeChanceAmulet17", }, ["40% of cold damage converted to fire damage"] = { "ConvertColdToFireUniqueRing15", }, - ["40% of cold damage taken as lightning damage"] = { "ColdHitAndDoTDamageTakenAsLightningUnique__1", }, + ["40% of cold damage taken as lightning damage"] = { "ColdHitAndDoTDamageTakenAsLightningUnique__1", "DivergentColdHitAndDoTDamageTakenAsLightningUnique__1", }, ["40% of elemental damage from hits taken as physical damage"] = { "ElementalDamageTakenAsPhysicalUnique__1", }, - ["40% of fire damage taken as lightning damage"] = { "FireHitAndDoTDamageTakenAsLightningUnique__1", }, + ["40% of fire damage taken as lightning damage"] = { "DivergentFireHitAndDoTDamageTakenAsLightningUnique__1", "FireHitAndDoTDamageTakenAsLightningUnique__1", }, ["40% of lightning damage converted to cold damage"] = { "ConvertLightningToColdUniqueRing34", }, ["40% of physical damage taken as fire damage"] = { "PhysicalHitAndDoTDamageTakenAsFireUnique__2", }, ["40% reduced area of effect of hex skills"] = { "CurseAreaOfEffectUniqueQuiver5", }, @@ -4764,6 +5004,7 @@ return { ["40% reduced projectile damage"] = { "ReducedProjectileDamageUniqueAmulet12", }, ["400% increased attribute requirements"] = { "IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1", }, ["400% increased stun duration on enemies"] = { "StunDurationUniqueTwoHandSword5", }, + ["44% increased damage per moon rite completed"] = { "TalismanEnchantGreatwolf", }, ["45% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueOneHandMace1", }, ["45% increased global accuracy rating"] = { "AccuracyPercentImplicit2HSword2_", }, ["45% increased stun duration on enemies"] = { "StunDurationImplicitMace2", }, @@ -4776,20 +5017,22 @@ return { ["5% chance to freeze"] = { "ChanceToFreezeUnique__1", }, ["5% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUniqueHelmetDexInt4", }, ["5% chance to gain unholy might for 4 seconds on melee kill"] = { "UnholyMightOnMeleeKillUniqueJewel28", }, - ["5% chance to grant a frenzy charge to nearby allies on hit"] = { "GrantAlliesFrenzyChargeOnHitUnique__1", }, - ["5% chance to grant an endurance charge to nearby allies on hit"] = { "GrantsAlliesEnduranceChargeOnHitUnique__1", }, + ["5% chance to grant a frenzy charge to nearby allies on hit"] = { "DivergentGrantAlliesFrenzyChargeOnHitUnique__1", "GrantAlliesFrenzyChargeOnHitUnique__1", }, + ["5% chance to grant an endurance charge to nearby allies on hit"] = { "DivergentGrantsAlliesEnduranceChargeOnHitUnique__1", "GrantsAlliesEnduranceChargeOnHitUnique__1", }, ["5% chance to grant chaotic might to nearby enemies on kill"] = { "GrantEnemiesUnholyMightOnKillUnique__1", }, ["5% chance to grant onslaught to nearby enemies on kill"] = { "GrantEnemiesOnslaughtOnKillUnique__1", }, + ["5% chance to throw up to 4 additional traps"] = { "DivergentChanceToThrowFourAdditionalTrapsUnique__1", }, ["5% increased attack speed"] = { "IncreasedAttackSpeedUniqueGlovesDex2", "LocalIncreasedAttackSpeedUniqueClaw3", }, + ["5% increased cast speed per power charge"] = { "IncreasedCastSpeedPerPowerChargeUnique__1", }, ["5% increased chaos damage per 10 intelligence from allocated passives in radius"] = { "ChaosDamageIncreasedPerIntUniqueJewel2", }, ["5% increased character size"] = { "ActorSizeUnique__4", }, ["5% increased critical strike chance per 25 intelligence"] = { "CriticalStrikeChancePerIntelligenceUnique__1", }, ["5% increased damage per endurance charge"] = { "ChargeBonusDamagePerEnduranceCharge", }, ["5% increased damage per frenzy charge"] = { "ChargeBonusDamagePerFrenzyCharge", }, - ["5% increased damage per power charge"] = { "ChargeBonusDamagePerPowerCharge", "IncreasedDamagePerPowerChargeUnique__1", }, + ["5% increased damage per power charge"] = { "ChargeBonusDamagePerPowerCharge", "DivergentIncreasedDamagePerPowerChargeUnique__1", "IncreasedDamagePerPowerChargeUnique__1", }, ["5% increased damage with bleeding per endurance charge"] = { "BleedingDamagePerEnduranceChargeUber1", }, ["5% increased elemental damage per power charge"] = { "ElementalDamagePerPowerChargeUber1", }, - ["5% increased experience gain"] = { "IncreasedExperienceUniqueIntHelmet3", }, + ["5% increased experience gain"] = { "DivergentIncreasedExperienceUniqueIntHelmet3", "IncreasedExperienceUniqueIntHelmet3", }, ["5% increased global defences"] = { "AllDefencesUnique__1", }, ["5% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueRing1", }, ["5% increased impale effect"] = { "ImpaleEffectUnique__2", }, @@ -4797,6 +5040,7 @@ return { ["5% increased maximum life"] = { "MaximumLifeUnique__14", }, ["5% increased maximum life per grand spectrum"] = { "MaximumLifePerStackableJewelUnique__1", }, ["5% increased movement speed"] = { "MovementVelocityUniqueBodyDex7", "MovementVelocityUniqueClaw3", "MovementVelocityUniqueIntHelmet2", "MovementVelocityUniqueOneHandAxe7", "MovementVelocityUnique__3", "MovementVelocityUnique__4", "MovementVelocityUnique__58", "MovementVelocityUnique___5", }, + ["5% increased movement speed for each poison on you up to a maximum of 50%"] = { "DivergentMovementSpeedPerPoisonOnSelfUnique__1", }, ["5% increased movement speed per frenzy charge"] = { "MovementVelocityPerFrenzyChargeUniqueBootsStrDex2", }, ["5% increased movement speed per power charge"] = { "MovementVelocityPerPowerChargeUnique__1__", }, ["5% increased physical damage with axes"] = { "AxeBonus1", }, @@ -4812,17 +5056,16 @@ return { ["5% increased quantity of gold dropped by slain enemies"] = { "VillageIncreasedGold", }, ["5% increased quantity of items found"] = { "ItemFoundQuantityIncreasedUnique__1", }, ["5% increased recovery rate of life and energy shield per power charge"] = { "LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1", }, - ["5% increased spell critical strike chance per 100 player maximum life"] = { "SpellCriticalStrikeChancePerLifeUnique__1", }, - ["5% increased spell damage per 100 player maximum life"] = { "SpellDamagePerLifeUnique__1", }, ["5% less damage taken per 5 rage, up to a maximum of 30%"] = { "DamageTakenPer5RageCappedAt50PercentUnique_1", }, ["5% of damage against frozen enemies leeched as life"] = { "LifeLeechOnFrozenEnemiesUniqueRing19", }, ["5% of damage against shocked enemies leeched as mana"] = { "ManaLeechOnShockedEnemiesUniqueRing19", }, + ["5% of damage from hits is taken from your nearest totem's life before you"] = { "DivergentDamageTakenFromTotemLifeBeforePlayerUnique__1", }, ["5% of leech from hits with this weapon is instant per enemy power"] = { "LeechInstantMonsterPowerUnique__1", }, ["5% of physical attack damage leeched as life"] = { "LifeLeechLocalUniqueOneHandMace8", "LifeLeechUniqueBodyStr3", "LifeLeechUniqueTwoHandAxe4", "LifeLeechUniqueTwoHandMace1", }, ["5% reduced cold damage taken"] = { "ColdDamageTakenUnique__1", }, ["5% reduced elemental damage taken while stationary"] = { "ReducedElementalDamageTakenWhileStationaryUnique__1_", }, ["5% reduced movement speed"] = { "MovementVelocityUniqueGlovesStrDex2", "MovementVelocityUniqueShieldStr1", "MovementVelocityUnique__52", "ReducedMovementVelocityUniqueOneHandMace7", }, - ["50% chance for impales on enemies you kill to reflect damage to surrounding enemies"] = { "EnemiesKilledApplyImpaleDamageUnique__1", }, + ["50% chance for impales on enemies you kill to reflect damage to surrounding enemies"] = { "DivergentEnemiesKilledApplyImpaleDamageUnique__1", "EnemiesKilledApplyImpaleDamageUnique__1", }, ["50% chance for spell hits against you to inflict poison"] = { "ChanceToBePoisonedBySpellsUnique__1_", }, ["50% chance to avoid being chilled"] = { "ChanceToAvoidChillUniqueDescentOneHandAxe1", "ChanceToAvoidChilledUnique__1", }, ["50% chance to be inflicted with bleeding when hit by an attack"] = { "ReceiveBleedingWhenHitUnique__1_", }, @@ -4830,6 +5073,7 @@ return { ["50% chance to cause bleeding on hit"] = { "CausesBleedingUniqueTwoHandAxe4", "CausesBleedingUniqueTwoHandAxe4Updated", "LocalChanceToBleedUnique__1__", }, ["50% chance to cause poison on critical strike"] = { "CausesPoisonOnCritUniqueDagger9", }, ["50% chance to double stun duration"] = { "ChanceForDoubleStunDurationUnique__1", }, + ["50% chance to gain a brine charge instead of an endurance charge"] = { "GainBrineChargesUnique__1", }, ["50% chance to gain a flask charge when you deal a critical strike"] = { "FlaskChanceRechargeOnCritUnique__1", }, ["50% chance to gain a power charge when you hit a frozen enemy"] = { "PowerChargeOnHittingFrozenEnemyUnique__1", }, ["50% chance to gain an additional vaal soul per enemy shattered"] = { "AdditionalVaalSoulOnShatterUniqueCorruptedJewel7", }, @@ -4853,10 +5097,12 @@ return { ["50% increased damage with poison inflicted on bleeding enemies"] = { "PoisonDamageAgainstBleedingEnemiesUber1", }, ["50% increased defences from equipped shield"] = { "ShieldArmourIncreaseUnique__1", }, ["50% increased duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationDescentUniqueQuiver1", }, - ["50% increased duration of shrine effects on you"] = { "ShrineEffectDurationUniqueHelmetDexInt3", }, ["50% increased duration. -1% to this value when used"] = { "FlaskDurationConsumedPerUse", }, ["50% increased effect of curses on you"] = { "IncreasedCurseEffectUnique__1", }, + ["50% increased effect of lightning ailments"] = { "DivergentShockEffectUnique__2", }, ["50% increased effect of non-keystone passive skills in radius"] = { "PassiveEffectivenessJewelUnique__1_", }, + ["50% increased effect of onslaught on you"] = { "DivergentOnslaughtEffectUnique__1", }, + ["50% increased effect of shrine buffs on you"] = { "DivergentShrineBuffEffectUniqueHelmetDexInt3", }, ["50% increased effect. -1% to this value when used"] = { "HarvestFlaskEnchantmentEffectLoweredOnUse2", }, ["50% increased elemental ailment duration on you"] = { "CurseEffectElementalAilmentDurationOnSelfR1", "SelfStatusAilmentDurationUnique__1", }, ["50% increased energy shield"] = { "LocalIncreasedEnergyShieldUniqueHelmetInt4", }, @@ -4868,7 +5114,9 @@ return { ["50% increased flask effect duration"] = { "FlaskDurationUniqueJewel_____8", }, ["50% increased flask life recovery rate"] = { "FlaskLifeRecoveryRateUniqueBodyStrDex1", }, ["50% increased flask mana recovery rate"] = { "FlaskManaRecoveryRateUniqueBodyStrDex1", }, - ["50% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger3", "CriticalStrikeChanceImplicitDaggerNew3", "CriticalStrikeChanceUniqueDagger3", "CriticalStrikeChanceUniqueGlovesDex2", "CriticalStrikeChanceUniqueOneHandSword2", }, + ["50% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger3", "CriticalStrikeChanceUniqueDagger3", "CriticalStrikeChanceUniqueGlovesDex2", "CriticalStrikeChanceUniqueOneHandSword2", "DivergentCriticalStrikeChanceUniqueGlovesDex2", }, + ["50% increased global defences"] = { "DivergentAllDefencesUnique__2", "DivergentAllDefencesUnique__3", }, + ["50% increased global physical damage"] = { "DivergentIncreasedPhysicalDamagePercentUnique__4", }, ["50% increased herald of ice damage"] = { "HeraldOfIceDamageUnique__1_", }, ["50% increased life recovered"] = { "FlaskExtraLifeUnique__1", }, ["50% increased light radius"] = { "LightRadiusUniqueSceptre2", "LightRadiusUnique__11", }, @@ -4879,12 +5127,16 @@ return { ["50% increased melee damage against bleeding enemies"] = { "MeleeDamageAgainstBleedingEnemiesUnique__1", }, ["50% increased movement speed"] = { "MovementVelocityUnique___6", }, ["50% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1", }, + ["50% increased rarity of items found"] = { "DivergentItemFoundRarityIncreaseUniqueBodyStr5", }, + ["50% increased rarity of items found when on low life"] = { "DivergentItemRarityOnLowLifeUniqueBootsInt1", }, ["50% increased shock duration on you"] = { "SelfShockDurationUnique__2", }, + ["50% increased spell damage"] = { "DivergentSpellDamageUniqueGlovesInt2", }, ["50% increased spell damage while shocked"] = { "IncreasedSpellDamageWhileShockedUnique__1", }, ["50% increased stun and block recovery"] = { "IncreasedStunRecoveryReducedStunThresholdImplicitR3", "StunRecoveryUniqueBootsStrDex3", "StunRecoveryUniqueHelmetInt6", "StunRecoveryUniqueQuiver4", "StunRecoveryUnique__1_", }, ["50% increased stun duration on enemies"] = { "StunDurationUniqueGlovesInt4_", }, ["50% increased stun duration on you"] = { "IncreasedStunDurationOnSelfUnique_1", }, ["50% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUnique__1", }, + ["50% increased valour gained"] = { "DivergentBannerResourceGainedUnique__1", }, ["50% increased warcry cooldown recovery rate"] = { "WarcryCooldownSpeedUnique__1", "WarcryCooldownSpeedUnique__2", }, ["50% less duration of ignites you inflict"] = { "IgniteDurationEmberglowUnique__1", }, ["50% less ignite duration"] = { "UniqueVolkuursGuidanceIgniteDurationFinal", }, @@ -4893,6 +5145,8 @@ return { ["50% more damage with arrow hits at close range"] = { "PhysicalBowDamageCloseRangeUniqueBow6", }, ["50% more global accuracy rating"] = { "AccuracyRatingIsDoubledUber1", }, ["50% more life"] = { "MetamorphosisItemisedBossDifficult", }, + ["50% of chaos damage is taken from mana before life"] = { "DivergentChaosDamageRemovedFromManaBeforeLifeUnique__1___", }, + ["50% of chaos damage taken does not bypass energy shield"] = { "DivergentChaosDamageDoesNotBypassEnergyShieldPercentUnique__2", }, ["50% of cold damage from hits taken as fire damage"] = { "TalismanColdTakenAsFire", }, ["50% of cold damage from hits taken as lightning damage"] = { "TalismanColdTakenAsLightning", }, ["50% of damage taken from stunning hits is recovered as energy shield"] = { "StunningHitsRecoverEnergyShieldUnique__1", }, @@ -4902,7 +5156,7 @@ return { ["50% of lightning damage from hits taken as fire damage"] = { "TalismanLightningTakenAsFire", }, ["50% of maximum life converted to energy shield"] = { "MaximumLifeConvertedToEnergyShieldUnique__2", }, ["50% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertedToChaosUnique__2", }, - ["50% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUnique__2", }, + ["50% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUnique__2", "DivergentConvertPhysicalToColdUniqueGlovesDex1", }, ["50% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueQuiver1_", "ConvertPhysicalToFireUnique__1", }, ["50% of physical damage converted to fire damage against ignited enemies"] = { "PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9", }, ["50% of physical damage converted to fire while you have avatar of fire"] = { "ConvertPhysicalToFireWithAvatarOfFireUnique__1", }, @@ -4913,6 +5167,7 @@ return { ["50% reduced attack speed"] = { "LocalReducedAttackSpeedUnique__1", }, ["50% reduced charges per use. -1% to this value when used"] = { "HarvestFlaskEnchantmentChargesUsedLoweredOnUse4", }, ["50% reduced damage when on low life"] = { "ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4", }, + ["50% reduced duration"] = { "FlaskEffectDurationUnique__8", }, ["50% reduced duration of curses on you"] = { "ReducedSelfCurseDurationUniqueShieldDex3", }, ["50% reduced effect of curses on you"] = { "ReducedCurseEffectUniqueRing7", }, ["50% reduced energy shield recharge rate"] = { "IncreasedEnergyShieldDelayUniqueHelmetInt4", }, @@ -4927,6 +5182,7 @@ return { ["50% reduced maximum recovery per energy shield leech"] = { "MaximumESLeechAmountUnique__1_", }, ["50% reduced maximum recovery per life leech"] = { "MaximumLifeLeechAmountUnique__1", }, ["50% reduced rarity of items found"] = { "ItemFoundRarityDecreaseUniqueOneHandSword4", }, + ["50% reduced spell damage"] = { "SpellDamageOnWeaponUniqueWand3", }, ["50% reduced time before lockdown"] = { "HeistContractNPCPerksDoubled", }, ["50% reduced ward during effect"] = { "FlaskBuffWardWhileHealingUnique__1", }, ["50% slower start of energy shield recharge during any flask effect"] = { "EnergyShieldDelayDuringFlaskEffect__1", }, @@ -4935,6 +5191,8 @@ return { ["500% increased ignite duration on enemies"] = { "BurnDurationUniqueDescentOneHandMace1", }, ["500% increased intelligence requirement"] = { "IncreasedIntelligenceRequirementsUniqueGlovesStrInt4", }, ["500% increased strength requirement"] = { "IncreasedStrengthREquirementsUniqueGlovesStrInt4", }, + ["500% more physical damage with unarmed melee attacks"] = { "DivergentFacebreakerUnarmedMoreDamage", }, + ["500% of melee physical damage taken reflected to attacker"] = { "DivergentPhysicalDamageTakenPercentToReflectUniqueBodyStr2", }, ["6 to 10 added physical damage with bow attacks"] = { "AddedPhysicalDamageUniqueQuiver8", }, ["6 to 12 added physical damage with bow attacks"] = { "AddedPhysicalDamageImplicitQuiver11", }, ["6% chance to block attack damage"] = { "BlockPercentMarakethDaggerImplicit2_", "BlockPercentUniqueHelmetStrDex4", }, @@ -4974,6 +5232,7 @@ return { ["60% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1", }, ["60% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__1", "BeltIncreasedFlaskDurationUnique__2", }, ["60% increased global accuracy rating"] = { "AccuracyPercentImplicit2HSword1", }, + ["60% increased global critical strike chance"] = { "DivergentCriticalStrikeChanceUniqueHelmetDex6", }, ["60% increased intelligence requirement"] = { "IncreasedIntelligenceRequirementsUniqueSceptre1", }, ["60% increased item rarity per white socket"] = { "ItemRarityPerWhiteSocketUniqueRing39", }, ["60% increased mana regeneration rate"] = { "ManaRegenerationUniqueBootsDex2", "ManaRegenerationUniqueBow11", "ManaRegenerationUniqueDexHelmet2", }, @@ -4985,17 +5244,21 @@ return { ["60% reduced mana regeneration rate"] = { "ManaRegenerationUnique__14___", }, ["600% of damage leeched as life on critical strike"] = { "LifeLeechOnCritUniqueTwoHandAxe8", }, ["7% chance to block spell damage"] = { "SpellBlockUniqueShieldInt4", "SpellBlockUniqueTwoHandAxe6", }, + ["70 to 105 added cold damage with bow attacks"] = { "DivergentAddedColdDamageUniqueBodyDex1", }, ["70% increased burning damage"] = { "BurnDamageUniqueStaff1", }, ["70% increased critical strike chance against bleeding enemies"] = { "CriticalStrikeChanceAgainstBleedingEnemiesUber1", }, ["70% increased evasion rating"] = { "LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1", }, + ["70% increased spell critical strike chance"] = { "DivergentSpellCriticalStrikeChanceUniqueBootsStrDex5", }, ["75% chance to cause enemies to flee on use"] = { "MonstersFleeOnFlaskUseUniqueFlask9", }, - ["75% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUniqueHelmetDexInt3", }, + ["75% increased armour, evasion and energy shield"] = { "DivergentLocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt", }, ["75% increased mana cost of skills"] = { "ManaCostIncreasedUniqueHelmetStrInt6", }, + ["75% increased physical damage with ranged weapons"] = { "DivergentRangedWeaponPhysicalDamagePlusPercentUnique__1", }, ["75% of damage taken bypasses ward"] = { "DamageBypassesWardPercentUnique__1", }, ["75% of physical damage converted to a random element"] = { "DamageConversionToRandomElementUnique__1", }, ["75% reduced effect of chill on you"] = { "ChillEffectivenessOnSelfUniqueRing28", }, ["75% reduced maximum number of summoned raging spirits"] = { "ReducedRagingSpiritsAllowedUnique__1", }, - ["8% chance to freeze"] = { "ChanceToFreezeUniqueStaff2", }, + ["8 to 150 added lightning damage with wand attacks"] = { "DivergentAddedLightningDamageUnique__4", }, + ["8% increased action speed"] = { "TalismanEnchantActionSpeedReduction", }, ["8% increased effect of arcane surge on you per"] = { "ArcaneSurgeEffectPerCasterAbyssJewelUnique__1", }, ["8% increased effect of non-damaging ailments per elder item equipped"] = { "AilmentEffectPerElderItemUnique__1", }, ["8% increased evasion rating per frenzy charge"] = { "ChargeBonusEvasionPerFrenzyCharge", }, @@ -5017,7 +5280,8 @@ return { ["8% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1", }, ["8% increased maximum energy shield for each corrupted item equipped"] = { "MaximumEnergyShieldPercentPerCorruptedItemUnique__1_", }, ["8% increased spell damage per 5% chance to block attack damage"] = { "IncreasedSpellDamagePerBlockChanceUniqueClaw7", }, - ["8% of damage from hits is taken from marked target's life before you"] = { "DamageTakenFromMarkedTargetUnique__1", }, + ["8% increased spell damage per power charge"] = { "DivergentIncreasedSpellDamagePerPowerChargeUnique__1", }, + ["8% of damage from hits is taken from marked target's life before you"] = { "DamageTakenFromMarkedTargetUnique__1", "DivergentDamageTakenFromMarkedTargetUnique__1", }, ["8% of damage taken recouped as mana"] = { "PercentDamageGoesToManaUnique__1", }, ["8% of maximum energy shield taken as physical damage on minion death"] = { "PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_", }, ["8% of physical attack damage leeched as life"] = { "LifeLeechImplicitClaw1", }, @@ -5033,7 +5297,6 @@ return { ["80% reduced freeze duration on you"] = { "ReducedFreezeDurationUniqueShieldStrInt3", }, ["80% reduced maximum recovery per life leech"] = { "MaximumLifeLeechAmountUnique__2", }, ["80% reduced reservation efficiency of skills"] = { "IncreasedManaReservationsCostUnique__1", "ReservationEfficiencyUnique__1_", }, - ["80% reduced spell damage"] = { "SpellDamageOnWeaponUniqueWand3", }, ["800% increased attribute requirements"] = { "IncreasedLocalAttributeRequirementsUnique__1", }, ["85% less ward during effect"] = { "FlaskMoreWardUnique1", }, ["9% chance to shock"] = { "ChanceToShockUniqueDescentTwoHandSword1", }, @@ -5042,44 +5305,8 @@ return { ["90% less power charge duration"] = { "PowerChargeDurationFinalUnique__1__", }, ["90% reduced duration"] = { "FlaskIncreasedDurationUnique__2", }, ["90% reduced ignite duration on enemies"] = { "IgniteDurationUnique__2", }, - ["[dnt] #% to all resistances per minion"] = { "AllResistancesReducedPerActiveMinionUnique_1UNUSED", }, - ["[dnt] (#)% increased area of effect per # rage"] = { "AreaOfEffectPerRageUnique__1", }, - ["[dnt] (#)% increased chance to block attack and spell damage for every # life spent recently"] = { "BlockChancePerLifeSpentRecentlyUnique__1", }, - ["[dnt] (5-10)% increased area of effect per 10 rage"] = { "AreaOfEffectPerRageUnique__1", }, - ["[dnt] (5-10)% increased chance to block attack and spell damage for every 100 life spent recently"] = { "BlockChancePerLifeSpentRecentlyUnique__1", }, - ["[dnt] +#% chance to block spell damage per minion"] = { "SpellBlockChancePerMinionUnique__1", }, - ["[dnt] +(#)% to global defenses per minion"] = { "GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED", }, - ["[dnt] +(3-5)% to global defenses per minion"] = { "GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED", }, - ["[dnt] +2% chance to block spell damage per minion"] = { "SpellBlockChancePerMinionUnique__1", }, - ["[dnt] -2% to all resistances per minion"] = { "AllResistancesReducedPerActiveMinionUnique_1UNUSED", }, - ["[dnt] bow attacks sacrifice (#)% of your life to fire an additional arrow for every # life sacrificed"] = { "SacrificeLifeToGainArrowUnique__1", }, - ["[dnt] bow attacks sacrifice (5-7)% of your life to fire an additional arrow for every 100 life sacrificed"] = { "SacrificeLifeToGainArrowUnique__1", }, - ["[dnt] energy shield recharge instead applies to mana"] = { "EnergyShieldRechargeApplyToManaUnique__1", }, - ["[dnt] grants level # unleash power"] = { "GrantUnleashPowerUnique__1", }, - ["[dnt] grants level 10 unleash power"] = { "GrantUnleashPowerUnique__1", }, - ["[dnt] hits with this weapon deal triple damage if you have spent at least # seconds on a single attack recently"] = { "TripleDamageIfSpentTimeOnAttackRecentlyUnique__1", }, - ["[dnt] hits with this weapon deal triple damage if you have spent at least 2 seconds on a single attack recently"] = { "TripleDamageIfSpentTimeOnAttackRecentlyUnique__1", }, - ["[dnt] impaled enemies cannot be impaled"] = { "YouCannotImpaleTheImpaledUnique_1UNUSED", }, - ["[dnt] impales you inflict have (#)% increased effect per impale on you"] = { "ImpaleEffectPerImpaleOnYouUnique__1", }, - ["[dnt] impales you inflict have (10-15)% increased effect per impale on you"] = { "ImpaleEffectPerImpaleOnYouUnique__1", }, - ["[dnt] inflict fire exposure on nearby enemies when you reach maximum rage"] = { "InflictFireExposureNearbyOnMaxRageUnique_1", }, - ["[dnt] link skills cost life instead of mana"] = { "LinkSkillsCostLifeUnique__1", }, - ["[dnt] minions are aggressive if you've blocked recently"] = { "AggressiveMinionIfBlockedRecentlyUnique__1", }, - ["[dnt] nearby non-player allies are shocked, taking #% increased damage"] = { "NearbyAlliesShockedGrantYouChargesOnDeathUnique__1", }, - ["[dnt] nearby non-player allies are shocked, taking 30% increased damage"] = { "NearbyAlliesShockedGrantYouChargesOnDeathUnique__1", }, - ["[dnt] triggers level # violent path when equipped"] = { "ViolentPaceUnique__1", }, - ["[dnt] triggers level 20 violent path when equipped"] = { "ViolentPaceUnique__1", }, - ["[dnt] unarmed attacks deal (#) to (#) added chaos damage for each poison on the target, up to #"] = { "UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1", }, - ["[dnt] unarmed attacks deal (7-11) to (13-17) added chaos damage for each poison on the target, up to 100"] = { "UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1", }, - ["[dnt] unarmed non-vaal strike skills target (#) additional nearby enemy"] = { "UnarmedStrikeSkillsAdditionalTargetUnique__1", }, - ["[dnt] unarmed non-vaal strike skills target (1-7) additional nearby enemy"] = { "UnarmedStrikeSkillsAdditionalTargetUnique__1", }, - ["[dnt] you have feeding frenzy if you've blocked recently"] = { "FeedingFrenzyIfBlockedRecentlyUnique__1", }, - ["[dnt] you have onslaught during effect of any life flask"] = { "GainOnslaughtDuringLifeFlaskUnique__1", }, - ["[dnt] your guard skill buffs take damage for linked targets as well as you"] = { "GuardSkillForLinkTargetUnique__1", }, - ["[dnt] your minions gain your chance to suppress spell damage"] = { "MinionGainYourSpellSuppressUnique__1", }, - ["[dnt] your minions have no armour or maximum energy shield"] = { "MinionHaveNoAmourOrEnergyShieldUnique__1", }, ["acrobatics"] = { "Acrobatics", "KeystoneAcrobaticsUnique__1", "KeystonePhaseAcrobaticsUnique__1", }, - ["action speed cannot be modified to below base value"] = { "CannotBeSlowedBelowBaseUnique__1", }, + ["action speed cannot be modified to below base value"] = { "CannotBeSlowedBelowBaseUnique__1", "DivergentCannotBeSlowedBelowBaseUnique__1", }, ["action speed cannot be modified to below base value if you've cast temporal chains in the past # seconds"] = { "TemporalChainsCannotBeSlowedUnique__1", }, ["action speed cannot be modified to below base value if you've cast temporal chains in the past 10 seconds"] = { "TemporalChainsCannotBeSlowedUnique__1", }, ["added small passive skills grant nothing"] = { "LocalAfflictionJewelDisplaySmallNodesGrantNothingUnique_1", }, @@ -5088,16 +5315,17 @@ return { ["adds # small passive skill which grants nothing"] = { "ExpansionJewelEmptyPassiveUnique__1", }, ["adds # small passive skills which grant nothing"] = { "ExpansionJewelEmptyPassiveUnique_3_", "ExpansionJewelEmptyPassiveUnique__2", "ExpansionJewelEmptyPassiveUnique__4", }, ["adds # to # chaos damage"] = { "LocalAddedChaosDamageUnique___1", }, - ["adds # to # chaos damage for each curse on the enemy"] = { "AddedChaosDamagePerCurseUnique__1", }, + ["adds # to # chaos damage for each curse on the enemy"] = { "AddedChaosDamagePerCurseUnique__1", "DivergentAddedChaosDamagePerCurseUnique__1", }, ["adds # to # chaos damage to attacks"] = { "AddedChaosDamageUniqueAmulet23", "AddedChaosDamageUniqueBootsStrInt2", "AddedChaosDamageUnique__1", }, - ["adds # to # chaos damage to attacks per # strength"] = { "AddedChaosDamageToAttacksPer50StrengthUnique__1", }, + ["adds # to # chaos damage to attacks per # strength"] = { "AddedChaosDamageToAttacksPer50StrengthUnique__1", "DivergentAddedChaosDamageToAttacksPer50StrengthUnique__1", }, ["adds # to # cold damage"] = { "LocalAddedColdDamageUniqueClaw5", "LocalAddedColdDamageUniqueDescentOneHandAxe1", "LocalAddedColdDamageUniqueTwoHandMace2", "LocalAddedColdDamageUniqueTwoHandSword2", "LocalAddedColdDamageUnique__1", }, ["adds # to # cold damage against chilled enemies"] = { "AddedColdDamageAgainstFrozenEnemiesUnique__1", "AddedColdDamageAgainstFrozenEnemiesUnique__2", }, ["adds # to # cold damage to attacks"] = { "AddedColdDamageImplicitQuiver1", "AddedColdDamageUniqueDexHelmet1", "AddedColdDamageUniqueShieldStrDex3", "AddedColdDamageUnique__1", "AddedColdDamageUnique__9", }, ["adds # to # cold damage to attacks per # dexterity"] = { "ColdDamageToAttacksPerDexterityUnique__1", }, - ["adds # to # cold damage to retaliation skills"] = { "CounterAttacksAddedColdDamageUnique__1", }, + ["adds # to # cold damage to retaliation skills"] = { "CounterAttacksAddedColdDamageUnique__1", "DivergentCounterAttacksAddedColdDamageUnique__1", }, ["adds # to # cold damage to spells"] = { "SpellAddedColdDamageUnique__1", }, ["adds # to # cold damage to spells per power charge"] = { "AddedColdDamagePerPowerChargeUnique__1", "AddedColdDamagePerPowerChargeUnique__2", }, + ["adds # to # cold damage while you have avian's might"] = { "DivergentAviansMightColdDamageUnique__1", }, ["adds # to # fire damage"] = { "LocalAddedFireDamageUniqueBow6", "LocalAddedFireDamageUniqueDescentOneHandMace1", "LocalAddedFireDamageUniqueRapier1", "LocalAddedFireDamageUnique__1", }, ["adds # to # fire damage if you've blocked recently"] = { "AddedFireDamageIfBlockedRecentlyUnique__1", }, ["adds # to # fire damage to attacks"] = { "AddedFireDamageImplicitQuiver1", "AddedFireDamageImplicitQuiver2New", "AddedFireDamageUniqueBootsStrDex1", "AddedFireDamageUniqueGlovesInt1", "AddedFireDamageUniqueShieldDemigods", "AddedFireDamageUnique__4", }, @@ -5114,10 +5342,10 @@ return { ["adds # to # lightning damage to attacks with this weapon per # intelligence"] = { "AddedLightningDamagePerIntelligenceUnique__1", "AddedLightningDamagePerIntelligenceUnique__2", }, ["adds # to # lightning damage to spells"] = { "SpellAddedLightningDamageUnique__1", }, ["adds # to # lightning damage to spells and attacks"] = { "AddedLightningDamageUniqueHelmetStrInt1", }, - ["adds # to # lightning damage to spells per power charge"] = { "AddedLightningDamagePerPowerChargeUnique__1", }, + ["adds # to # lightning damage while you have avian's might"] = { "DivergentAviansMightLightningDamageUnique__1_", }, ["adds # to # physical damage"] = { "LocalAddedPhysicalDamageOneHandAxe1", "LocalAddedPhysicalDamagePercentUniqueClaw4", "LocalAddedPhysicalDamageUniqueClaw3", "LocalAddedPhysicalDamageUniqueDagger2", "LocalAddedPhysicalDamageUniqueDescentClaw1", "LocalAddedPhysicalDamageUniqueDescentDagger1", "LocalAddedPhysicalDamageUniqueDescentOneHandAxe1", "LocalAddedPhysicalDamageUniqueDescentOneHandSword1", "LocalAddedPhysicalDamageUniqueDescentStaff1", "LocalAddedPhysicalDamageUniqueOneHandMace8", "LocalAddedPhysicalDamageUniqueOneHandSword1", "LocalAddedPhysicalDamageUniqueRapier2", "LocalAddedPhysicalDamageUniqueTwoHandAxe3", "LocalAddedPhysicalDamageUniqueTwoHandMace7", "LocalAddedPhysicalDamageUnique__3", }, ["adds # to # physical damage per endurance charge"] = { "AddedPhysicalDamagePerEnduranceChargeUnique__1", }, - ["adds # to # physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver1", "AddedPhysicalDamageImplicitQuiver1New", "AddedPhysicalDamageImplicitRing1", "AddedPhysicalDamageUniqueAmulet25", "AddedPhysicalDamageUniqueBelt4", "AddedPhysicalDamageUniqueBodyDex4", "AddedPhysicalDamageUniqueBodyStr2", "AddedPhysicalDamageUniqueHelmetStr3", "AddedPhysicalDamageUniqueHelmetStrDex4", "AddedPhysicalDamageUniqueJewel9", "AddedPhysicalDamageUniqueRing8", "AddedPhysicalDamageUniqueShieldStrDex3", "AddedPhysicalDamageUnique__3", "AddedPhysicalDamageUnique___1", }, + ["adds # to # physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver1", "AddedPhysicalDamageImplicitQuiver1New", "AddedPhysicalDamageImplicitRing1", "AddedPhysicalDamageUniqueAmulet25", "AddedPhysicalDamageUniqueBelt4", "AddedPhysicalDamageUniqueBodyDex4", "AddedPhysicalDamageUniqueBodyStr2", "AddedPhysicalDamageUniqueHelmetStr3", "AddedPhysicalDamageUniqueHelmetStrDex4", "AddedPhysicalDamageUniqueJewel9", "AddedPhysicalDamageUniqueRing8", "AddedPhysicalDamageUniqueShieldStrDex3", "AddedPhysicalDamageUnique__3", "AddedPhysicalDamageUnique___1", "DivergentAddedPhysicalDamageUniqueShieldDex6", }, ["adds # to # physical damage to attacks against frozen enemies"] = { "AddedPhysicalDamageVsFrozenEnemiesUniqueRing30", }, ["adds # to # physical damage to attacks per # dexterity"] = { "AddedDamagePerDexterityUnique__1", }, ["adds # to # physical damage to attacks per # strength"] = { "AddedDamagePerStrengthUnique__1", "AddedDamagePerStrengthUnique__2", }, @@ -5127,6 +5355,8 @@ return { ["adds # to (#) lightning damage to attacks"] = { "AddedLightningDamageUniqueBelt10", "AddedLightningDamageUniqueBelt12", "AddedLightningDamageUniqueBodyStrDex2", }, ["adds # to (#) lightning damage to spells"] = { "SpellAddedLightningDamageUnique__3", "SpellAddedLightningDamageUnique__4", "SpellAddedLightningDamageUnique__7", }, ["adds # to (#) lightning damage to spells and attacks"] = { "AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10", "AddedLightningDamageUniqueBodyInt5_", "AddedLightningDamageUniqueRing19", }, + ["adds # to (#) lightning damage to spells per # intelligence"] = { "SpellLightningDamagePerIntelligenceUnique__1", }, + ["adds # to (#) lightning damage to spells per power charge"] = { "AddedLightningDamagePerPowerChargeUnique__1", }, ["adds # to (#) physical damage to attacks"] = { "AddedPhysicalDamageUnique__4", }, ["adds # to maximum life per # intelligence allocated in radius"] = { "LifePerIntelligenceInRadusUniqueJewel52", }, ["adds #% of your maximum energy shield as cold damage to attacks with this weapon"] = { "VillageAttackColdDamageEnergyShield", }, @@ -5180,10 +5410,10 @@ return { ["adds (1-2) to (3-5) physical damage"] = { "LocalAddedPhysicalDamageUniqueDagger11", }, ["adds (1-2) to (43-56) lightning damage"] = { "GlobalAddedLightningDamageUnique__5", }, ["adds (1-2) to (9-11) lightning damage to spells and attacks"] = { "AddedLightningDamageSpellsAndAttacksImplicit1", }, + ["adds (1-3) to (125-145) lightning damage to hits against ignited enemies"] = { "AddedLightningDamageAgainstIgnitedEnemiesUnique__1", }, ["adds (1-3) to (42-47) lightning damage to spells and attacks"] = { "AddedLightningDamageUnique__1", }, ["adds (1-3) to (47-52) lightning damage"] = { "GlobalAddedLightningDamageUnique__2_", }, ["adds (1-3) to (55-62) lightning damage while you have avian's might"] = { "AviansMightLightningDamageUnique__1_", }, - ["adds (1-3) to (62-70) lightning damage to hits against ignited enemies"] = { "AddedLightningDamageAgainstIgnitedEnemiesUnique__1", }, ["adds (1-3) to (68-72) lightning damage to spells and attacks"] = { "AddedLightningDamageUnique__2_", }, ["adds (1-4) to (30-50) lightning damage to attacks"] = { "AddedLightningDamageUniqueGlovesDexInt1", }, ["adds (1-5) to (10-15) fire damage"] = { "GlobalAddedFireDamageUnique__5", }, @@ -5207,7 +5437,6 @@ return { ["adds (11-14) to (18-23) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandAxe5", }, ["adds (11-15) to (23-26) chaos damage"] = { "VillageLocalChaosDamage2", }, ["adds (11-15) to (23-26) cold damage"] = { "VillageLocalColdDamage2", }, - ["adds (12-14) to (15-16) physical damage to attacks and spells per siphoning charge"] = { "PhysicalDamageToAttacksPerSiphoningChargeUnique__1", }, ["adds (12-15) to (24-27) fire damage to attacks"] = { "AddedFireDamageImplicitQuiver9New", }, ["adds (12-15) to (24-27) physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver12New", }, ["adds (12-15) to (25-30) cold damage to attacks"] = { "AddedColdDamageUnique__6", }, @@ -5278,6 +5507,7 @@ return { ["adds (2-4) to (5-9) fire damage to spells and attacks"] = { "AddedFireDamageUniqueBodyInt5", }, ["adds (2-5) to (7-10) physical damage to attacks"] = { "AddedPhysicalDamageUniqueBootsStr3", }, ["adds (2-6) to (16-22) physical damage"] = { "LocalAddedPhysicalDamageUniqueClaw9", }, + ["adds (20-23) to (26-30) physical damage to attacks and spells per siphoning charge"] = { "PhysicalDamageToAttacksPerSiphoningChargeUnique__1", }, ["adds (20-23) to (31-35) cold damage"] = { "GlobalAddedColdDamageUnique__2_", }, ["adds (20-24) to (33-36) cold damage"] = { "GlobalAddedColdDamageUnique__1", }, ["adds (20-24) to (33-36) fire damage"] = { "GlobalAddedFireDamageUnique__1", }, @@ -5449,6 +5679,7 @@ return { ["adds 1 to (15-20) physical damage to attacks"] = { "AddedPhysicalDamageUnique__4", }, ["adds 1 to (20-30) lightning damage to attacks"] = { "AddedLightningDamageUniqueBodyStrDex2", }, ["adds 1 to (210-250) lightning damage"] = { "LocalAddedLightningDamageUniqueOneHandSword3", }, + ["adds 1 to (24-35) lightning damage to spells per 10 intelligence"] = { "SpellLightningDamagePerIntelligenceUnique__1", }, ["adds 1 to (30-50) lightning damage to attacks"] = { "AddedLightningDamageUniqueBelt12", }, ["adds 1 to (35-45) lightning damage"] = { "LocalAddedLightningDamageUnique__2", }, ["adds 1 to (4-12) lightning damage to spells and attacks"] = { "AddedLightningDamageUniqueBodyInt5_", }, @@ -5478,6 +5709,7 @@ return { ["adds 1 to 2 physical damage to attacks per level"] = { "PhysicalDamageToAttacksPerLevelUnique__1_", }, ["adds 1 to 3 physical damage to attacks per 25 dexterity"] = { "AddedDamagePerDexterityUnique__1", }, ["adds 1 to 3 physical damage to attacks per 25 strength"] = { "AddedDamagePerStrengthUnique__1", }, + ["adds 1 to 30 chaos damage to attacks per 80 strength"] = { "DivergentAddedChaosDamageToAttacksPer50StrengthUnique__1", }, ["adds 1 to 30 lightning damage to spells and attacks"] = { "AddedLightningDamageUniqueHelmetStrInt1", }, ["adds 1 to 4 physical damage"] = { "LocalAddedPhysicalDamageUniqueDescentDagger1", }, ["adds 1 to 4 physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver1", "AddedPhysicalDamageImplicitQuiver1New", "AddedPhysicalDamageImplicitRing1", }, @@ -5485,6 +5717,7 @@ return { ["adds 1 to 5 lightning damage to attacks"] = { "AddedLightningDamageImplicitQuiver1", }, ["adds 1 to 5 lightning damage to attacks with this weapon per 10 intelligence"] = { "AddedLightningDamagePerIntelligenceUnique__2", }, ["adds 1 to 59 chaos damage"] = { "LocalAddedChaosDamageUnique___1", }, + ["adds 1 to 62 lightning damage while you have avian's might"] = { "DivergentAviansMightLightningDamageUnique__1_", }, ["adds 1 to 75 lightning damage"] = { "LocalAddedLightningDamageUnique__6", }, ["adds 1 to 80 chaos damage to attacks"] = { "AddedChaosDamageUniqueBootsStrInt2", }, ["adds 1 to 80 chaos damage to attacks per 80 strength"] = { "AddedChaosDamageToAttacksPer50StrengthUnique__1", }, @@ -5494,6 +5727,7 @@ return { ["adds 10 to 130 lightning damage to attacks"] = { "AddedLightningDamageUnique__3", }, ["adds 10 to 15 physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandMace8", "LocalAddedPhysicalDamageUniqueRapier2", }, ["adds 10 to 15 physical damage to attacks against frozen enemies"] = { "AddedPhysicalDamageVsFrozenEnemiesUniqueRing30", }, + ["adds 10 to 18 physical damage to attacks"] = { "DivergentAddedPhysicalDamageUniqueShieldDex6", }, ["adds 10 to 20 cold damage to attacks"] = { "AddedColdDamageUnique__1", }, ["adds 10 to 20 cold damage to spells per power charge"] = { "AddedColdDamagePerPowerChargeUnique__1", }, ["adds 10 to 20 fire damage to attacks"] = { "AddedFireDamageUniqueShieldDemigods", }, @@ -5526,11 +5760,13 @@ return { ["adds 20 to 30 physical damage to attacks"] = { "AddedPhysicalDamageUniqueHelmetStrDex4", }, ["adds 20 to 50 physical damage"] = { "LocalAddedPhysicalDamageUnique__3", }, ["adds 25 to 30 physical damage"] = { "LocalAddedPhysicalDamageUniqueClaw3", }, + ["adds 25 to 40 cold damage while you have avian's might"] = { "DivergentAviansMightColdDamageUnique__1", }, ["adds 25 to 50 cold damage"] = { "LocalAddedColdDamageUniqueClaw5", }, ["adds 25 to 50 fire damage"] = { "LocalAddedFireDamageUniqueBow6", }, - ["adds 250 to 300 cold damage to retaliation skills"] = { "CounterAttacksAddedColdDamageUnique__1", }, + ["adds 250 to 300 cold damage to retaliation skills"] = { "CounterAttacksAddedColdDamageUnique__1", "DivergentCounterAttacksAddedColdDamageUnique__1", }, ["adds 3 jewel socket passive skills"] = { "ExpansionJewel3JewelSockets", }, ["adds 3 small passive skills which grant nothing"] = { "ExpansionJewelEmptyPassiveUnique__2", }, + ["adds 3 to (15-25) lightning damage to spells per power charge"] = { "AddedLightningDamagePerPowerChargeUnique__1", }, ["adds 3 to (46-53) lightning damage"] = { "VillageLocalLightningDamageTwoHand1", }, ["adds 3 to (57-67) lightning damage"] = { "VillageLocalLightningDamage3", }, ["adds 3 to 30 lightning damage"] = { "AddedLightningDamageUniqueDagger3", }, @@ -5539,11 +5775,10 @@ return { ["adds 3 to 6 fire damage"] = { "LocalAddedFireDamageUniqueDescentOneHandMace1", }, ["adds 3 to 7 fire damage"] = { "LocalAddedFireDamageUniqueRapier1", }, ["adds 3 to 7 physical damage to attacks"] = { "AddedPhysicalDamageUniqueJewel9", }, - ["adds 3 to 9 lightning damage to spells per power charge"] = { "AddedLightningDamagePerPowerChargeUnique__1", }, ["adds 30 to 40 physical damage"] = { "LocalAddedPhysicalDamageOneHandAxe1", }, ["adds 30 to 65 cold damage to attacks"] = { "AddedColdDamageUnique__9", }, ["adds 35 to 70 cold damage"] = { "LocalAddedColdDamageUniqueTwoHandSword2", }, - ["adds 37 to 71 chaos damage for each curse on the enemy"] = { "AddedChaosDamagePerCurseUnique__1", }, + ["adds 37 to 71 chaos damage for each curse on the enemy"] = { "AddedChaosDamagePerCurseUnique__1", "DivergentAddedChaosDamagePerCurseUnique__1", }, ["adds 4 passive skills"] = { "JewelExpansionPassiveNodesUnique__1", }, ["adds 4 to 7 fire damage to attacks with this weapon per 10 strength"] = { "AddedFireDamagePerStrengthUnique__1", }, ["adds 4 to 8 fire damage to attacks"] = { "AddedFireDamageUniqueGlovesInt1", }, @@ -5577,11 +5812,13 @@ return { ["agony crawler deals (70-100)% increased damage"] = { "HeraldBonusAgonyMinionDamage_", }, ["all attack damage chills when you stun"] = { "ChillOnAttackStunUniqueOneHandMace5", }, ["all bonuses from an equipped shield apply to your minions instead of you"] = { "NecromanticAegisUniqueHelmetStrDex5", }, - ["all damage can freeze"] = { "AllDamageCanFreezeUnique__1", }, + ["all damage can freeze"] = { "AllDamageCanFreezeUnique__1", "DivergentAllDamageCanFreezeUnique__1", }, + ["all damage from critical strikes can apply cold ailments during effect"] = { "FlaskCriticalStrikesContributeToColdAilmentsDuringEffectUnique__1", }, + ["all damage from critical strikes can apply lightning ailments during effect"] = { "FlaskCriticalStrikesContributeToLightningAilmentsDuringEffectUnique__1", }, ["all damage from hits with this weapon can poison"] = { "LocalAllDamageCanPoisonImplicitE1_", }, ["all damage inflicts poison against enemies affected by at least # grasping vines"] = { "AllDamagePoisonsGraspingVinesUnique__1", }, ["all damage inflicts poison against enemies affected by at least 3 grasping vines"] = { "AllDamagePoisonsGraspingVinesUnique__1", }, - ["all damage inflicts poison while affected by glorious madness"] = { "AllDamageCanPoisonGloriousMadnessUnique___1", }, + ["all damage inflicts poison while affected by glorious madness"] = { "AllDamageCanPoisonGloriousMadnessUnique___1", "DivergentAllDamageCanPoisonGloriousMadnessUnique___1", }, ["all damage taken from hits can chill you"] = { "AllDamageTakenCanChillUnique__1", }, ["all damage taken from hits can ignite you"] = { "AllDamageTakenCanIgniteUnique__1", }, ["all damage with hits can chill"] = { "AllDamageCanChillUnique__1", }, @@ -5590,7 +5827,7 @@ return { ["all hits with your next non-channelling attack within # seconds of taking a critical strike will be critical strikes"] = { "AttackCritAfterBeingCritUnique", }, ["all hits with your next non-channelling attack within 4 seconds of taking a critical strike will be critical strikes"] = { "AttackCritAfterBeingCritUnique", }, ["all sockets are white"] = { "AllSocketsAreWhiteUniqueRing25", "AllSocketsAreWhiteUniqueShieldStrDex7_", }, - ["all sockets linked"] = { "ArmourEnchantmentHeistSocketsAreLinked1", "WeaponEnchantmentHeistSocketsAreLinked1_", }, + ["all sockets linked"] = { "ArmourEnchantmentHeistSocketsAreLinked1", "DivergentItemHasSixLinkedWhiteSocketsUniqueBodyInt6", "WeaponEnchantmentHeistSocketsAreLinked1_", }, ["allies' aura buffs do not affect you"] = { "CannotBeBuffedByAlliedAurasUniqueOneHandSword11", }, ["allocated small passive skills in radius grant nothing"] = { "AllocatedNonNotablesGrantNothingUnique__1_", }, ["allocates # if you have the matching modifier on forbidden flame"] = { "PuzzlePieceGreatTangleUnique__1", }, @@ -5603,18 +5840,20 @@ return { ["an additional curse can be applied to you"] = { "AdditionalCurseOnSelfUniqueCorruptedJewel13", }, ["an enemy writhing worm spawns every # seconds"] = { "SummonWrithingWormEveryXMsUnique__1", }, ["an enemy writhing worm spawns every 2 seconds"] = { "SummonWrithingWormEveryXMsUnique__1", }, - ["ancestral bond"] = { "AncestorTotemBuffLingersUnique__1", "KeystoneAncestralBondUnique__1", "KeystoneAncestralBondUnique__2", }, + ["ancestral bond"] = { "AncestorTotemBuffLingersUnique__1", "DivergentKeystoneAncestralBondUnique__2", "KeystoneAncestralBondUnique__1", "KeystoneAncestralBondUnique__2", }, ["anger has no reservation"] = { "AngerNoReservationUnique__1", }, ["animated and manifested minions' melee strikes deal #% less splash damage"] = { "IncreasedAnimatedMinionSplashDamageUnique__1", }, ["animated and manifested minions' melee strikes deal 50% less splash damage"] = { "IncreasedAnimatedMinionSplashDamageUnique__1", }, - ["animated and manifested minions' melee strikes deal splash"] = { "AnimatedMinionsHaveMeleeSplashUnique__1", }, + ["animated and manifested minions' melee strikes deal splash"] = { "AnimatedMinionsHaveMeleeSplashUnique__1", "DivergentAnimatedMinionsHaveMeleeSplashUnique__1", }, ["animated guardian deals #% increased damage per animated weapon"] = { "AnimatedGuardianDamagePerAnimatedWeaponUnique__1__", }, ["animated guardian deals 5% increased damage per animated weapon"] = { "AnimatedGuardianDamagePerAnimatedWeaponUnique__1__", }, - ["arctic armour has no reservation"] = { "ArcticArmourReservationCostUnique__1", }, + ["arctic armour has no reservation"] = { "ArcticArmourReservationCostUnique__1", "DivergentArcticArmourReservationCostUnique__1", }, ["areas contain beasts to hunt"] = { "BestiaryLeague", }, ["armour also applies to chaos damage taken from hits"] = { "ArmourAppliesToChaosDamageUnique__1", }, ["armour also applies to lightning damage taken from hits"] = { "ArmourAppliesToLightningDamageUnique__1_", }, ["armour from equipped shield is doubled"] = { "ArmourFromShieldDoubledUnique__1", }, + ["armour is increased by #% of overcapped fire resistance"] = { "DivergentArmourIncreasedByUncappedFireResistanceUnique__1", }, + ["armour is increased by 50% of overcapped fire resistance"] = { "DivergentArmourIncreasedByUncappedFireResistanceUnique__1", }, ["armour is increased by overcapped fire resistance"] = { "ArmourIncreasedByUncappedFireResistanceUnique__1", }, ["arrow dancing"] = { "KeystoneArrowDodgingUnique__1", }, ["arrows deal # to # added fire damage for each time they've pierced"] = { "ArrowAddedFireDamagePerEnemyPiercedUnique__1", }, @@ -5641,8 +5880,8 @@ return { ["arrows that pierce have 50% chance to inflict bleeding"] = { "ArrowsThatPierceCauseBleedingUnique__1", }, ["arsenal of vengeance"] = { "ArsenalOfVengeance", "KeyStoneRetaliationHitsUnique_1", }, ["aspect of the avian also grants avian's might and avian's flight to nearby allies"] = { "GrantAviansAspectToAlliesUnique__1", }, - ["aspect of the cat has no reservation"] = { "CatAspectReservesNoManaUnique__1___", }, - ["aspect of the spider can inflict spider's web on enemies an additional time"] = { "IncreasedSpiderWebCountUnique__1", }, + ["aspect of the cat has no reservation"] = { "CatAspectReservesNoManaUnique__1___", "DivergentCatAspectReservesNoManaUnique__1___", }, + ["aspect of the spider can inflict spider's web on enemies an additional time"] = { "DivergentIncreasedSpiderWebCountUnique__1", "IncreasedSpiderWebCountUnique__1", }, ["aspect of the spider inflicts spider's webs and hinder every # seconds instead"] = { "AspectOfSpiderWebIntervalUnique__1", }, ["aspect of the spider inflicts spider's webs and hinder every 0.5 seconds instead"] = { "AspectOfSpiderWebIntervalUnique__1", }, ["attack critical strikes ignore enemy monster elemental resistances"] = { "AttackCriticalStrikesIgnoreElementalResistancesImplicitE1", "VillageWeaponIgnoreElementalResistance", }, @@ -5651,9 +5890,10 @@ return { ["attack skills gain 5% of physical damage as extra fire damage per socketed red gem"] = { "AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8", }, ["attack skills have +# to maximum number of summoned totems"] = { "AdditionalAttackTotemsUnique__1", }, ["attack skills have +1 to maximum number of summoned totems"] = { "AdditionalAttackTotemsUnique__1", }, - ["attack skills have added lightning damage equal to #% of maximum mana"] = { "AttackLightningDamageMaximumManaUnique__1__", }, + ["attack skills have added lightning damage equal to #% of maximum mana"] = { "AttackLightningDamageMaximumManaUnique__1__", "DivergentAttackLightningDamageMaximumManaUnique__1__", }, + ["attack skills have added lightning damage equal to 3% of maximum mana"] = { "DivergentAttackLightningDamageMaximumManaUnique__1__", }, ["attack skills have added lightning damage equal to 6% of maximum mana"] = { "AttackLightningDamageMaximumManaUnique__1__", }, - ["attacks always inflict bleeding while you have cat's stealth"] = { "AttacksBleedOnHitWithCatsStealthUnique__1_", }, + ["attacks always inflict bleeding while you have cat's stealth"] = { "AttacksBleedOnHitWithCatsStealthUnique__1_", "DivergentAttacksBleedOnHitWithCatsStealthUnique__1_", }, ["attacks chain an additional time when in main hand"] = { "AttacksChainInMainHandUnique__1", }, ["attacks cost life instead of mana"] = { "AttacksHaveBloodMagic__1", "VillageAttacksCostLife", }, ["attacks deal no physical damage"] = { "AttacksDealNoPhysicalDamage", }, @@ -5661,6 +5901,7 @@ return { ["attacks fire (1-2) additional projectile when in off hand"] = { "MainHandAdditionalProjectilesWhileInOffHandUnique__1", }, ["attacks fire an additional projectile"] = { "AttackAdditionalProjectilesUnique__1", }, ["attacks fire an additional projectile when in off hand"] = { "AttacksExtraProjectileInOffHandUnique__1", }, + ["attacks have #% arcane might"] = { "DivergentSpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7", "SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7", }, ["attacks have #% chance to cause bleeding"] = { "ChanceToBleedUnique__1_", "ChanceToBleedUnique__2__", "ChanceToBleedUnique__3_", }, ["attacks have #% chance to inflict bleeding when hitting cursed enemies"] = { "AttacksCauseBleedingOnCursedEnemyHitUnique__1", }, ["attacks have #% chance to poison while at maximum frenzy charges"] = { "AtMaximumFrenzyChargesChanceToPoisonUnique_1_", }, @@ -5668,7 +5909,9 @@ return { ["attacks have (40-60)% increased area of effect when in main hand"] = { "OffHandAreaOfEffectWhileInMainHandUnique__1", }, ["attacks have +(#)% to critical strike chance if # elder items are equipped"] = { "AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1", }, ["attacks have +(1-1.5)% to critical strike chance if 4 elder items are equipped"] = { "AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1", }, + ["attacks have 100% arcane might"] = { "DivergentSpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7", }, ["attacks have 15% chance to cause bleeding"] = { "ChanceToBleedUnique__3_", }, + ["attacks have 150% arcane might"] = { "SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7", }, ["attacks have 25% chance to cause bleeding"] = { "ChanceToBleedUnique__1_", "ChanceToBleedUnique__2__", }, ["attacks have 25% chance to inflict bleeding when hitting cursed enemies"] = { "AttacksCauseBleedingOnCursedEnemyHitUnique__1", }, ["attacks have 60% chance to poison while at maximum frenzy charges"] = { "AtMaximumFrenzyChargesChanceToPoisonUnique_1_", }, @@ -5691,7 +5934,7 @@ return { ["attacks with this weapon have 25% chance to inflict bleeding against ignited enemies"] = { "ChanceToBleedIgnitedEnemiesUnique__1", }, ["attacks with this weapon have 50% chance to inflict bleeding while you do not have avatar of fire"] = { "ChanceToBleedWithoutAvatarOfFireUnique__1", }, ["attacks with this weapon have added fire damage equal to (#)% of player's maximum life"] = { "LocalFireDamageFromLifePercentUnique_1", }, - ["attacks with this weapon have added fire damage equal to (8-12)% of player's maximum life"] = { "LocalFireDamageFromLifePercentUnique_1", }, + ["attacks with this weapon have added fire damage equal to (6-10)% of player's maximum life"] = { "LocalFireDamageFromLifePercentUnique_1", }, ["attacks with this weapon have added maximum lightning damage equal to (#)% of player's maximum energy shield"] = { "WeaponAddedLightningDamagePerEnergyShieldUnique__1", }, ["attacks with this weapon have added maximum lightning damage equal to (10-15)% of player's maximum energy shield"] = { "WeaponAddedLightningDamagePerEnergyShieldUnique__1", }, ["attacks with this weapon inflict hallowing flame on hit"] = { "LocalInflictHallowingFlameOnHitUnique__1", }, @@ -5709,17 +5952,20 @@ return { ["bathed in the blood of (#) sacrificed in the name of xibaqua"] = { "UniqueJewelAlternateTreeInRadiusVaal", }, ["bathed in the blood of (100-8000) sacrificed in the name of xibaqua"] = { "UniqueJewelAlternateTreeInRadiusVaal", }, ["battlemage"] = { "BattlemageKeystoneUnique__1", "BattlemageKeystoneUnique__2_", "BattlemageKeystoneUnique__3", "BattlemageKeystoneUnique__4", "BattlemageKeystoneUnique__5", "BattlemageKeystoneUnique__6", "SpellAddedFireDamageUnique__5", "SpellAddedPhysicalDamageUnique__1_", "VillageKeystoneBattlemage", }, - ["bleeding cannot be inflicted on you"] = { "BleedingImmunityUnique__1", "BleedingImmunityUnique__2", }, - ["bleeding enemies you kill explode, dealing #% of"] = { "BleedingEnemiesExplodeUnique__1", }, - ["bleeding enemies you kill explode, dealing 5% of"] = { "BleedingEnemiesExplodeUnique__1", }, + ["bitter frost"] = { "KeystoneColdPuristUnique__1", "KeystoneColdPuristUnique__2", }, + ["bleeding cannot be inflicted on you"] = { "BleedingImmunityUnique__1", "BleedingImmunityUnique__2", "DivergentBleedingImmunityUnique__1", }, + ["bleeding enemies you kill explode, dealing #% of"] = { "BleedingEnemiesExplodeUnique__1", "DivergentBleedingEnemiesExplodeUnique__1", }, + ["bleeding enemies you kill explode, dealing 5% of"] = { "BleedingEnemiesExplodeUnique__1", "DivergentBleedingEnemiesExplodeUnique__1", }, ["bleeding enemies you kill with hits shatter"] = { "BleedingEnemiesShatterOnKillUnique__1", }, ["bleeding on you expires #% slower while moving"] = { "BleedingExpiresSlowerWhileMovingUnique__1", }, ["bleeding on you expires 75% slower while moving"] = { "BleedingExpiresSlowerWhileMovingUnique__1", }, ["bleeding you inflict deals damage #% faster per frenzy charge"] = { "FasterBleedPerFrenzyChargeUnique__1", }, ["bleeding you inflict deals damage 4% faster per frenzy charge"] = { "FasterBleedPerFrenzyChargeUnique__1", }, ["bleeding you inflict is reflected to you"] = { "ReflectBleedingToSelfUnique__1", }, + ["blight has #% increased hinder duration"] = { "DivergentBlightSecondarySkillEffectDurationUnique__1", }, ["blight has (#)% increased hinder duration"] = { "BlightSecondarySkillEffectDurationUnique__1", }, ["blight has (20-30)% increased hinder duration"] = { "BlightSecondarySkillEffectDurationUnique__1", }, + ["blight has 30% increased hinder duration"] = { "DivergentBlightSecondarySkillEffectDurationUnique__1", }, ["blind chilled enemies on hit"] = { "OnHitBlindChilledEnemiesUnique__1_", }, ["blind does not affect your light radius"] = { "BlindDoesNotAffectLightRadiusUnique__1", }, ["blind you inflict is reflected to you"] = { "BlindReflectedToSelfUnique__1", }, @@ -5747,10 +5993,12 @@ return { ["call of steel deals reflected damage with (40-50)% increased area of effect"] = { "CallOfSteelAreaOfEffectUnique__1", "CallOfSteelAreaOfEffectUnique__2___", }, ["call of steel has (#)% increased use speed"] = { "CallOfSteelUseSpeedUnique__1", "CallOfSteelUseSpeedUnique__2", }, ["call of steel has (80-100)% increased use speed"] = { "CallOfSteelUseSpeedUnique__1", "CallOfSteelUseSpeedUnique__2", }, - ["call to arms"] = { "KeystoneCallToArmsUnique__1", "KeystoneCallToArmsUnique__2_", }, + ["call to arms"] = { "DivergentKeystoneCallToArmsUnique__2_", "KeystoneCallToArmsUnique__1", "KeystoneCallToArmsUnique__2_", }, + ["can be allflame crafted as if rare"] = { "CanBeGhostflameCraftedAsThoughRare", }, ["can be anointed"] = { "BeltEnchantImplicit", }, ["can be enchanted by a kalguuran runesmith"] = { "VillageTripleEnchant1H", }, - ["can be modified while corrupted"] = { "CorruptUntilFiveImplicits", "ModifyableWhileCorruptedUnique__1", }, + ["can be modified while corrupted"] = { "CorruptUntilFiveImplicits", "DivergentModifyableWhileCorruptedUnique__2", "ModifyableWhileCorruptedUnique__1", }, + ["can catch abyssal fish"] = { "FishingAbyssalFish", }, ["can have # additional crafted modifier"] = { "ArmourEnchantmentHeistAdditionalCraftingModifier1", "WeaponEnchantmentHeistAdditionalCraftingModifier1_", }, ["can have # additional enchantment modifiers"] = { "MultipleEnchantmentsAllowedUnique__2", }, ["can have # fewer traps placed at a time"] = { "AdditionalTrapsUnique__2__", }, @@ -5768,8 +6016,8 @@ return { ["can't use mana flasks"] = { "CannotUseManaFlaskUnique__1", }, ["can't use other rings"] = { "DisablesOtherRingSlot", }, ["cannot be blinded"] = { "BlindImmunityUniqueSceptre8", "BlindImmunityUnique__1", }, - ["cannot be chilled"] = { "CannotBeChilledUniqueBodyStrInt3", "CannotBeChilledUnique__1", "CannotBeFrozenOrChilledUnique__1", "CannotBeFrozenOrChilledUnique__2", }, - ["cannot be frozen"] = { "CannotBeFrozen", "CannotBeFrozenUnique__1", }, + ["cannot be chilled"] = { "CannotBeChilledUniqueBodyStrInt3", "CannotBeChilledUnique__1", "CannotBeFrozenOrChilledUnique__1", "CannotBeFrozenOrChilledUnique__2", "DivergentCannotBeFrozenOrChilledUnique__2", }, + ["cannot be frozen"] = { "CannotBeFrozen", "CannotBeFrozenUnique__1", "DivergentCannotBeFrozenUnique__1", "DivergentCannotBeFrozenUnique__6", }, ["cannot be frozen if # redeemer items are equipped"] = { "CannotBeFrozen6RedeemerItemsUnique__1", }, ["cannot be frozen if 6 redeemer items are equipped"] = { "CannotBeFrozen6RedeemerItemsUnique__1", }, ["cannot be frozen if dexterity is higher than intelligence"] = { "CannotBeFrozenWithDexHigherThanIntUnique__1", }, @@ -5783,7 +6031,7 @@ return { ["cannot be stunned"] = { "CannotBeStunned", "CannotBeStunnedUnique__1_", }, ["cannot be stunned by attacks if your opposite ring is an elder item"] = { "CannotBeStunnedByAttacksElderItemUnique__1", }, ["cannot be stunned by spells if your opposite ring is a shaper item"] = { "CannotBeStunnedBySpellsShaperItemUnique__1", }, - ["cannot be stunned by suppressed spell damage"] = { "CannotBeStunnedSuppressedDamageUnique__1", }, + ["cannot be stunned by suppressed spell damage"] = { "CannotBeStunnedSuppressedDamageUnique__1", "DivergentCannotBeStunnedSuppressedDamageUnique__1", }, ["cannot be stunned during effect"] = { "FlaskStunImmunityUnique__1", }, ["cannot be stunned if # elder items are equipped"] = { "CannotBeStunned6ElderItemsUnique__1", }, ["cannot be stunned if 6 elder items are equipped"] = { "CannotBeStunned6ElderItemsUnique__1", }, @@ -5804,6 +6052,7 @@ return { ["cannot gain energy shield"] = { "CannotGainEnergyShieldUnique__1", }, ["cannot gain mana during effect"] = { "NoManaRecoveryDuringFlaskEffectUnique__1_", }, ["cannot gain power charges"] = { "CannotGainPowerChargesUnique__1", "MaxPowerChargesIsZeroUniqueAmulet19", }, + ["cannot have non-abyssal sockets"] = { "LocalCannotHaveNonAbyssSocketsUnique__1", }, ["cannot ignite, chill, freeze or shock"] = { "CannotIgniteChillFreezeShockUnique__1", }, ["cannot inflict wither on targets that are not on full life"] = { "CanOnlyInflictWitherAgainstFullLifeEnemies__1", }, ["cannot knock enemies back"] = { "CannotKnockBackUniqueOneHandMace5_", }, @@ -5813,7 +6062,7 @@ return { ["cannot leech mana"] = { "CannotLeechMana", "CannotLeechManaUnique__1_", }, ["cannot leech or regenerate mana"] = { "CannotLeechOrRegenerateManaUniqueTwoHandAxe9", "CannotLeechOrRegenerateManaUnique__1_", }, ["cannot leech when on low life"] = { "CannotLeechOnLowLife", }, - ["cannot lose crab barriers if you have lost crab barriers recently"] = { "CannotLoseCrabBarriersIfLostRecentlyUnique__1", }, + ["cannot lose crab barriers if you have lost crab barriers recently"] = { "CannotLoseCrabBarriersIfLostRecentlyUnique__1", "DivergentCannotLoseCrabBarriersIfLostRecentlyUnique__1", }, ["cannot poison enemies with at least # poisons on them"] = { "CannotPoisonEnemiesWithNumPoisonsUnique__1", }, ["cannot poison enemies with at least 12 poisons on them"] = { "CannotPoisonEnemiesWithNumPoisonsUnique__1", }, ["cannot roll caster modifiers"] = { "KineticWandImplicit", }, @@ -5839,15 +6088,15 @@ return { ["chaos damage is taken from mana before life"] = { "ChaosDamageRemovedFromManaBeforeLifeUnique__1___", }, ["chaos damage taken does not bypass energy shield"] = { "ChaosTakenOnES", }, ["chaos damage taken does not bypass energy shield during effect"] = { "ChaosDamageDoesNotBypassESDuringFlaskEffectUnique__1", }, - ["chaos damage taken does not bypass energy shield while not on low life"] = { "ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1", }, + ["chaos damage taken does not bypass energy shield while not on low life"] = { "ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1", "DivergentChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1", }, ["chaos damage taken does not bypass minions' energy shield"] = { "MinionChaosDamageDoesNotBypassESUnique__1", }, ["chaos damage with hits is lucky"] = { "VillageChaosDamageLuck", }, ["chaos resistance is doubled"] = { "ChaosResistDoubledUnique__1", }, - ["chaos resistance is zero"] = { "ChaosResistanceIsZeroUnique__1", }, + ["chaos resistance is zero"] = { "ChaosResistanceIsZeroUnique__1", "DivergentChaosResistanceIsZeroUnique__1", }, ["chaos skills have #% chance to ignite"] = { "ChanceToIgniteWithChaosSkillsUnique__1", }, - ["chaos skills have #% increased skill effect duration"] = { "ChaosSkillEffectDurationUnique__1", }, + ["chaos skills have (#)% increased skill effect duration"] = { "ChaosSkillEffectDurationUnique__1", }, + ["chaos skills have (40-80)% increased skill effect duration"] = { "ChaosSkillEffectDurationUnique__1", }, ["chaos skills have 20% chance to ignite"] = { "ChanceToIgniteWithChaosSkillsUnique__1", }, - ["chaos skills have 40% increased skill effect duration"] = { "ChaosSkillEffectDurationUnique__1", }, ["chaos skills inflict up to # withered debuffs on hit for (#) seconds"] = { "ApplyMaximumWitherOnChaosSkillHitUnique__1", }, ["chaos skills inflict up to 15 withered debuffs on hit for (5-7) seconds"] = { "ApplyMaximumWitherOnChaosSkillHitUnique__1", }, ["chill attackers for # seconds on block"] = { "ChanceToChillAttackersOnBlockUnique__2__", }, @@ -5869,7 +6118,8 @@ return { ["cold exposure on hit if you've cast frostbite in the past 10 seconds"] = { "FrostbiteColdExposureOnHitUnique__1", }, ["cold exposure you inflict applies an extra #% to cold resistance"] = { "ColdExposureAdditionalResistanceUnique__1", }, ["cold exposure you inflict applies an extra -12% to cold resistance"] = { "ColdExposureAdditionalResistanceUnique__1", }, - ["cold resistance is #%"] = { "ColdResistanceOverrideUnique__1", }, + ["cold resistance is #%"] = { "ColdResistanceOverrideUnique__1", "DivergentColdResistanceOverrideUnique__1", }, + ["cold resistance is 70%"] = { "DivergentColdResistanceOverrideUnique__1", }, ["cold resistance is 75%"] = { "ColdResistanceOverrideUnique__1", }, ["cold skills have #% chance to poison on hit"] = { "ColdSkillsChanceToPoisonUnique__1", }, ["cold skills have 20% chance to poison on hit"] = { "ColdSkillsChanceToPoisonUnique__1", }, @@ -5892,7 +6142,7 @@ return { ["consumes maximum charges to use"] = { "FlaskVaalConsumeMaximumChargesUnique__1", }, ["consumes socketed uncorrupted support gems when they reach maximum level"] = { "ConsumesSupportGemsUnique", }, ["corrupted blood cannot be inflicted on you"] = { "CorruptedBloodImmunityUnique_1", }, - ["corrupted soul"] = { "KeystoneCorruptedSoulUnique_1", "KeystoneCorruptedSoulUnique__2_", }, + ["corrupted soul"] = { "DivergentKeystoneCorruptedSoulUnique__2_", "KeystoneCorruptedSoulUnique_1", "KeystoneCorruptedSoulUnique__2_", }, ["count as blocking attack damage from the first target hit with each shield attack"] = { "CountAsBlockingAttackFromShieldAttackFirstTargetUnique__1", }, ["count as having maximum number of endurance charges"] = { "CountAsHavingMaxEnduranceChargesUnique__1", "CountAsHavingMaxEnduranceFrenzyPowerCharges1", "LoseAllChargesOnMoveUnique__1", "MinimumChargesEqualToMaximumWhileStationaryUnique__1", }, ["count as having maximum number of frenzy charges"] = { "CountAsHavingMaxFrenzyChargesUnique__1", }, @@ -5902,9 +6152,9 @@ return { ["cover enemies in ash when they hit you"] = { "CoverInAshWhenHitUnique__1", }, ["cover full life enemies in ash for (#) seconds on melee weapon hit"] = { "TinctureCoverInAshOnFullLifeUnique__1", }, ["cover full life enemies in ash for (4-10) seconds on melee weapon hit"] = { "TinctureCoverInAshOnFullLifeUnique__1", }, - ["create a blighted spore when your skills or minions kill a rare monster"] = { "ReviveEnemiesOnKillUnique__1", }, + ["create a blighted spore when your skills or minions kill a rare monster"] = { "DivergentReviveEnemiesOnKillUnique__1", "ReviveEnemiesOnKillUnique__1", }, ["create consecrated ground when you shatter an enemy"] = { "SpreadConsecratedGroundOnShatterUnique__1", }, - ["create profane ground instead of consecrated ground"] = { "ProfaneGroundInsteadOfConsecratedGround__1_", }, + ["create profane ground instead of consecrated ground"] = { "DivergentProfaneGroundInsteadOfConsecratedGround__1_", "ProfaneGroundInsteadOfConsecratedGround__1_", }, ["creates a smoke cloud on rampage"] = { "GroundSmokeOnRampageUniqueGlovesDexInt6", }, ["creates a smoke cloud on use"] = { "UtilityFlaskSmokeCloud", }, ["creates chilled ground on use"] = { "UtilityFlaskChilledGround", }, @@ -5921,6 +6171,8 @@ return { ["critical strikes have (10-20)% chance to blind enemies while you have cat's stealth"] = { "CritsBlindChanceWithCatsStealthUnique__1", }, ["critical strikes have culling strike"] = { "CullingCriticalStrikes", }, ["critical strikes inflict malignant madness if the eater of worlds is dominant"] = { "MalignantMadnessCritEaterDominantUnique__1", }, + ["critical strikes with spells have #% chance to inflict impale"] = { "DivergentSpellImpaleOnCritChanceUnique__1", }, + ["critical strikes with spells have 50% chance to inflict impale"] = { "DivergentSpellImpaleOnCritChanceUnique__1", }, ["critical strikes with spells inflict impale"] = { "SpellImpaleOnCritChanceUnique__1", }, ["critical strikes with this weapon do not deal extra damage"] = { "LocalNoCriticalStrikeMultiplierUnique_1", }, ["critical strikes with this weapon have culling strike"] = { "CritsHaveCullingStrikeUber1", }, @@ -5930,18 +6182,19 @@ return { ["culling strike against frozen enemies"] = { "CullingAgainstFrozenEnemiesUnique__1", }, ["culling strike during effect"] = { "FlaskCullingStrikeUnique1", }, ["curse auras from socketed skills also affect you"] = { "CurseAurasAffectYouUnique__1", }, - ["curse enemies which hit you with a random hex, ignoring curse limit"] = { "RandomCurseWhenHitChanceUnique__1", }, - ["curse enemies with elemental weakness when you block their spell damage, ignoring curse limit"] = { "ElementalWeaknessOnSpellBlockUniqueShieldInt4", }, + ["curse enemies which hit you with a random hex, ignoring curse limit"] = { "DivergentRandomCurseWhenHitChanceUnique__1", "RandomCurseWhenHitChanceUnique__1", }, + ["curse enemies with elemental weakness when you block their spell damage, ignoring curse limit"] = { "DivergentElementalWeaknessOnSpellBlockUniqueShieldInt4", "ElementalWeaknessOnSpellBlockUniqueShieldInt4", }, ["curse enemies with enfeeble on hit"] = { "VillageEnfeebleOnHit", }, ["curse enemies with flammability on block"] = { "FlammabilityOnBlockChanceUnique__1", }, ["curse enemies with flammability on hit"] = { "FlammabilityOnHitUniqueOneHandAxe7", "FlammabilityOnHitUnique__1", }, ["curse enemies with punishment on hit"] = { "VillagePunishmentOnHit", }, - ["curse enemies with punishment when you block their melee damage, ignoring curse limit"] = { "PunishmentOnMeleeBlockUniqueShieldInt4", }, + ["curse enemies with punishment when you block their melee damage, ignoring curse limit"] = { "DivergentPunishmentOnMeleeBlockUniqueShieldInt4", "PunishmentOnMeleeBlockUniqueShieldInt4", }, ["curse enemies with socketed hex curse gem on hit"] = { "UniqueCurseWithSocketedCurseOnHit_", }, - ["curse enemies with temporal chains on hit"] = { "CurseOnHitTemporalChainsUnique__1", "TemporalChainsOnHitUniqueGlovesInt3", "VillageTemporalChainsOnHit", }, - ["curse enemies with temporal chains when you block their projectile attack damage, ignoring curse limit"] = { "TemporalChainsOnProjectileBlockUniqueShieldInt4", }, - ["curse enemies with vulnerability on block"] = { "VulnerabilityOnBlockUniqueShieldStrDex3", "VulnerabilityOnBlockUniqueStaff9", }, + ["curse enemies with temporal chains on hit"] = { "CurseOnHitTemporalChainsUnique__1", "DivergentCurseOnHitTemporalChainsUnique__1", "TemporalChainsOnHitUniqueGlovesInt3", "VillageTemporalChainsOnHit", }, + ["curse enemies with temporal chains when you block their projectile attack damage, ignoring curse limit"] = { "DivergentTemporalChainsOnProjectileBlockUniqueShieldInt4", "TemporalChainsOnProjectileBlockUniqueShieldInt4", }, + ["curse enemies with vulnerability on block"] = { "DivergentVulnerabilityOnBlockUniqueShieldStrDex3", "VulnerabilityOnBlockUniqueShieldStrDex3", "VulnerabilityOnBlockUniqueStaff9", }, ["curse enemies with vulnerability on hit"] = { "CurseLevel10VulnerabilityOnHitUnique__1", }, + ["curse skills cost life instead of mana"] = { "CurseSkillsCostAndReserveLifeUnique__1", "DivergentCurseSkillsCostAndReserveLifeUnique__1", }, ["curse skills have #% increased skill effect duration"] = { "IncreasedCurseDurationUniqueShieldDex4", "IncreasedCurseDurationUniqueShieldStrDex2", }, ["curse skills have (#)% increased cast speed"] = { "CurseCastSpeedUnique__1", "CurseCastSpeedUnique__2", }, ["curse skills have (#)% increased skill effect duration"] = { "IncreasedCurseDurationUniqueHelmetInt9", }, @@ -5952,14 +6205,15 @@ return { ["cursed enemies cannot inflict elemental ailments on you"] = { "CursedEnemiesCannotInflictElementalAilmentsUnique__1", }, ["damage cannot be reflected"] = { "DamageCannotBeReflectedUnique__1", "DamageCannotBeReflectedUnique__2", "VillageDamageCannotBeReflected", }, ["damage of enemies hitting you is unlucky while you are cursed with vulnerability"] = { "EnemiesExtraDamageRollsWhileAffectedByVulnerabilityUnique__1_", }, - ["damage of enemies hitting you is unlucky while you are on full life"] = { "EnemyExtraDamageRollsOnFullLifeUnique__1", "EnemyExtraDamageRollsOnFullLifeUnique__2", }, + ["damage of enemies hitting you is unlucky while you are on full life"] = { "DivergentEnemyExtraDamageRollsOnFullLifeUnique__2", "EnemyExtraDamageRollsOnFullLifeUnique__1", "EnemyExtraDamageRollsOnFullLifeUnique__2", }, ["damage of enemies hitting you is unlucky while you are on low life"] = { "EnemyExtraDamageRollsOnLowLifeUniqueRing9", }, - ["damage of enemies hitting you is unlucky while you have a magic ring equipped"] = { "AnyRingMagicDamageExtraRollUnique__1", }, + ["damage of enemies hitting you is unlucky while you have a magic ring equipped"] = { "AnyRingMagicDamageExtraRollUnique__1", "DivergentAnyRingMagicDamageExtraRollUnique__1", }, + ["damage penetrates #% cold resistance"] = { "TalismanEnchantColdResistancePenetration", }, ["damage penetrates #% cold resistance against chilled enemies"] = { "ColdPenetrationAgainstChilledEnemiesUnique__1", }, ["damage penetrates #% elemental resistances"] = { "ElementalPenetrationMarakethSceptreImplicit1", "ElementalPenetrationMarakethSceptreImplicit2", }, - ["damage penetrates #% fire resistance"] = { "FirePenetrationUnique__1", "IncreasedEnemyFireResistanceUniqueHelmetInt5", "PenetrateEnemyFireResistUnique__1", }, + ["damage penetrates #% fire resistance"] = { "FirePenetrationUnique__1", "IncreasedEnemyFireResistanceUniqueHelmetInt5", "PenetrateEnemyFireResistUnique__1", "TalismanEnchantFireResistancePenetration", }, ["damage penetrates #% fire resistance against blinded enemies"] = { "FirePenetrationAgainstBlindedEnemiesUnique__1", }, - ["damage penetrates #% lightning resistance"] = { "LightningPenetrationUniqueStaff8", "LightningPenetrationUnique__1", }, + ["damage penetrates #% lightning resistance"] = { "LightningPenetrationUniqueStaff8", "LightningPenetrationUnique__1", "TalismanEnchantLightningResistancePenetration", }, ["damage penetrates #% lightning resistance during effect"] = { "LightningPenetrationDuringFlaskEffect__1", }, ["damage penetrates #% of fire resistance if you have blocked recently"] = { "FirePenetrationIfBlockedRecentlyUnique__1", }, ["damage penetrates (#)% elemental resistances"] = { "ElementalPenetrationUnique__1", }, @@ -5968,6 +6222,9 @@ return { ["damage penetrates (8-10)% elemental resistances while you are chilled"] = { "ElementalPenetrationWhileChilledUnique__1___", }, ["damage penetrates 10% fire resistance"] = { "FirePenetrationUnique__1", }, ["damage penetrates 10% fire resistance against blinded enemies"] = { "FirePenetrationAgainstBlindedEnemiesUnique__1", }, + ["damage penetrates 15% cold resistance"] = { "TalismanEnchantColdResistancePenetration", }, + ["damage penetrates 15% fire resistance"] = { "TalismanEnchantFireResistancePenetration", }, + ["damage penetrates 15% lightning resistance"] = { "TalismanEnchantLightningResistancePenetration", }, ["damage penetrates 15% of fire resistance if you have blocked recently"] = { "FirePenetrationIfBlockedRecentlyUnique__1", }, ["damage penetrates 20% cold resistance against chilled enemies"] = { "ColdPenetrationAgainstChilledEnemiesUnique__1", }, ["damage penetrates 20% fire resistance"] = { "PenetrateEnemyFireResistUnique__1", }, @@ -6005,11 +6262,12 @@ return { ["debilitate enemies for 4 seconds when you suppress their spell damage"] = { "DebilitateEnemiesSuppressedDamageUnique__1", }, ["debilitate nearby enemies for # seconds when effect ends"] = { "FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1", }, ["debilitate nearby enemies for 2 seconds when effect ends"] = { "FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1", }, - ["debuffs on you expire #% faster"] = { "DebuffTimePassedUnique__3", }, + ["debuffs on you expire #% faster"] = { "DebuffTimePassedUnique__3", "DivergentDebuffTimePassedUnique__2", }, ["debuffs on you expire (#)% faster"] = { "DebuffTimePassedUnique__1", "DebuffTimePassedUnique__2", }, ["debuffs on you expire (15-20)% faster"] = { "DebuffTimePassedUnique__1", }, ["debuffs on you expire (80-100)% faster"] = { "DebuffTimePassedUnique__2", }, ["debuffs on you expire 100% faster"] = { "DebuffTimePassedUnique__3", }, + ["debuffs on you expire 50% faster"] = { "DivergentDebuffTimePassedUnique__2", }, ["defences are zero"] = { "DefencesAreZeroUnique__1_", }, ["denoted service of (#) dekhara in the akhara of balbala"] = { "UniqueJewelAlternateTreeInRadiusMaraketh", }, ["denoted service of (500-8000) dekhara in the akhara of balbala"] = { "UniqueJewelAlternateTreeInRadiusMaraketh", }, @@ -6019,13 +6277,54 @@ return { ["dexterity from passives in radius is transformed to intelligence"] = { "JewelDexToInt", "JewelDexToIntUniqueJewel11", }, ["dexterity from passives in radius is transformed to strength"] = { "JewelDexToStr", "JewelDexToStrUniqueJewel37", }, ["discipline has no reservation"] = { "DisciplineNoReservationUnique__1", }, - ["divine flesh"] = { "KeystoneDivineFleshUnique__1_", }, + ["divine flesh"] = { "DivergentKeystoneDivineFleshUnique__1_", "KeystoneDivineFleshUnique__1_", }, ["divine shield"] = { "KeystoneDivineShieldUnique_1", }, + ["dnt #% increased explicit modifier magnitudes per socketed abyss jewel"] = { "LocalIncreasedModEffectPerAbyssJewelUnique__1", }, + ["dnt #% to all resistances per minion"] = { "AllResistancesReducedPerActiveMinionUnique_1UNUSED", }, + ["dnt (#)% increased area of effect per # rage"] = { "AreaOfEffectPerRageUnique__1", }, + ["dnt (#)% increased chance to block attack and spell damage for every # life spent recently"] = { "BlockChancePerLifeSpentRecentlyUnique__1", }, + ["dnt (5-10)% increased area of effect per 10 rage"] = { "AreaOfEffectPerRageUnique__1", }, + ["dnt (5-10)% increased chance to block attack and spell damage for every 100 life spent recently"] = { "BlockChancePerLifeSpentRecentlyUnique__1", }, + ["dnt +#% chance to block spell damage per minion"] = { "SpellBlockChancePerMinionUnique__1", }, + ["dnt +(#)% to global defenses per minion"] = { "GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED", }, + ["dnt +(3-5)% to global defenses per minion"] = { "GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED", }, + ["dnt +2% chance to block spell damage per minion"] = { "SpellBlockChancePerMinionUnique__1", }, + ["dnt -2% to all resistances per minion"] = { "AllResistancesReducedPerActiveMinionUnique_1UNUSED", }, + ["dnt 50% increased explicit modifier magnitudes per socketed abyss jewel"] = { "LocalIncreasedModEffectPerAbyssJewelUnique__1", }, + ["dnt bow attacks sacrifice (#)% of your life to fire an additional arrow for every # life sacrificed"] = { "SacrificeLifeToGainArrowUnique__1", }, + ["dnt bow attacks sacrifice (5-7)% of your life to fire an additional arrow for every 100 life sacrificed"] = { "SacrificeLifeToGainArrowUnique__1", }, + ["dnt energy shield recharge instead applies to mana"] = { "EnergyShieldRechargeApplyToManaUnique__1", }, + ["dnt grants level # unleash power"] = { "GrantUnleashPowerUnique__1", }, + ["dnt grants level 10 unleash power"] = { "GrantUnleashPowerUnique__1", }, + ["dnt hits with this weapon deal triple damage if you have spent at least # seconds on a single attack recently"] = { "TripleDamageIfSpentTimeOnAttackRecentlyUnique__1", }, + ["dnt hits with this weapon deal triple damage if you have spent at least 2 seconds on a single attack recently"] = { "TripleDamageIfSpentTimeOnAttackRecentlyUnique__1", }, + ["dnt impaled enemies cannot be impaled"] = { "YouCannotImpaleTheImpaledUnique_1UNUSED", }, + ["dnt impales you inflict have (#)% increased effect per impale on you"] = { "ImpaleEffectPerImpaleOnYouUnique__1", }, + ["dnt impales you inflict have (10-15)% increased effect per impale on you"] = { "ImpaleEffectPerImpaleOnYouUnique__1", }, + ["dnt inflict fire exposure on nearby enemies when you reach maximum rage"] = { "InflictFireExposureNearbyOnMaxRageUnique_1", }, + ["dnt killing a burning enemy has a (#)% chance to create a ghostflame soul"] = { "GhostLanternSoulOnKillChance__1", }, + ["dnt killing a burning enemy has a (25-30)% chance to create a ghostflame soul"] = { "GhostLanternSoulOnKillChance__1", }, + ["dnt link skills cost life instead of mana"] = { "LinkSkillsCostLifeUnique__1", }, + ["dnt minions are aggressive if you've blocked recently"] = { "AggressiveMinionIfBlockedRecentlyUnique__1", }, + ["dnt nearby non-player allies are shocked, taking #% increased damage"] = { "NearbyAlliesShockedGrantYouChargesOnDeathUnique__1", }, + ["dnt nearby non-player allies are shocked, taking 30% increased damage"] = { "NearbyAlliesShockedGrantYouChargesOnDeathUnique__1", }, + ["dnt trigger ghost furnace when you ignite an enemy"] = { "GrantedSkillGhostFurnaceUnique__1", }, + ["dnt triggers level # violent path when equipped"] = { "ViolentPaceUnique__1", }, + ["dnt triggers level 20 violent path when equipped"] = { "ViolentPaceUnique__1", }, + ["dnt unarmed attacks deal (#) to (#) added chaos damage for each poison on the target, up to #"] = { "UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1", }, + ["dnt unarmed attacks deal (7-11) to (13-17) added chaos damage for each poison on the target, up to 100"] = { "UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1", }, + ["dnt unarmed non-vaal strike skills target (#) additional nearby enemy"] = { "UnarmedStrikeSkillsAdditionalTargetUnique__1", }, + ["dnt unarmed non-vaal strike skills target (1-7) additional nearby enemy"] = { "UnarmedStrikeSkillsAdditionalTargetUnique__1", }, + ["dnt you have feeding frenzy if you've blocked recently"] = { "FeedingFrenzyIfBlockedRecentlyUnique__1", }, + ["dnt you have onslaught during effect of any life flask"] = { "GainOnslaughtDuringLifeFlaskUnique__1", }, + ["dnt your guard skill buffs take damage for linked targets as well as you"] = { "GuardSkillForLinkTargetUnique__1", }, + ["dnt your minions gain your chance to suppress spell damage"] = { "MinionGainYourSpellSuppressUnique__1", }, + ["dnt your minions have no armour or maximum energy shield"] = { "MinionHaveNoAmourOrEnergyShieldUnique__1", }, ["does not inflict mana burn over time"] = { "TinctureToxicityOnHitUnique__1", }, ["drops scorched ground while moving, lasting # seconds"] = { "ScorchedGroundWhileMovingUnique__1", }, ["drops scorched ground while moving, lasting 4 seconds"] = { "ScorchedGroundWhileMovingUnique__1", }, - ["drops shocked ground while moving, lasting # seconds"] = { "ShockedGroundWhileMovingUnique__1_", }, - ["drops shocked ground while moving, lasting 2 seconds"] = { "ShockedGroundWhileMovingUnique__1_", }, + ["drops shocked ground while moving, lasting # seconds"] = { "DivergentShockedGroundWhileMovingUnique__1", "ShockedGroundWhileMovingUnique__1_", }, + ["drops shocked ground while moving, lasting 2 seconds"] = { "DivergentShockedGroundWhileMovingUnique__1", "ShockedGroundWhileMovingUnique__1_", }, ["during effect, #% reduced damage taken of each element for which your uncapped elemental resistance is lowest"] = { "FlaskElementalDamageTakenOfLowestResistUnique__1", }, ["during effect, 6% reduced damage taken of each element for which your uncapped elemental resistance is lowest"] = { "FlaskElementalDamageTakenOfLowestResistUnique__1", }, ["during effect, damage penetrates (#)% resistance of each element for which your uncapped elemental resistance is highest"] = { "FlaskElementalPenetrationOfHighestResistUnique__1", }, @@ -6037,8 +6336,9 @@ return { ["each summoned phantasm grants you phantasmal might"] = { "PhantasmGrantsBuffUnique__1", }, ["eat (#) souls when you kill a rare or unique enemy with this weapon"] = { "GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1", }, ["eat (2-4) souls when you kill a rare or unique enemy with this weapon"] = { "GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1", }, - ["eat a soul when you hit a rare or unique enemy, no more than once every # seconds"] = { "GainSoulEaterStackOnHitUnique__1", }, + ["eat a soul when you hit a rare or unique enemy, no more than once every # seconds"] = { "DivergentGainSoulEaterStackOnHitUnique__1", "GainSoulEaterStackOnHitUnique__1", }, ["eat a soul when you hit a rare or unique enemy, no more than once every 0.5 seconds"] = { "GainSoulEaterStackOnHitUnique__1", }, + ["eat a soul when you hit a rare or unique enemy, no more than once every 2 seconds"] = { "DivergentGainSoulEaterStackOnHitUnique__1", }, ["effect is removed when ward breaks"] = { "FlaskRemoveEffectWhenWardBreaksUnique1", }, ["effects of consecrated ground you create linger for # seconds"] = { "ConsecratedGroundLingersUnique__1", }, ["effects of consecrated ground you create linger for 4 seconds"] = { "ConsecratedGroundLingersUnique__1", }, @@ -6053,17 +6353,17 @@ return { ["elemental equilibrium"] = { "KeystoneElementalEquilibriumSceptreImplicit1", "KeystoneElementalEquilibriumUnique__1", }, ["elemental overload"] = { "KeystoneElementalOverloadSceptreImplicit1_", "KeystoneElementalOverloadUnique__1", }, ["elemental resistances are capped by your highest maximum elemental resistance instead"] = { "ElementalResistanceHighestMaxResistanceUnique__1_", }, - ["elemental resistances are zero"] = { "SetElementalResistancesUniqueHelmetStrInt4", }, + ["elemental resistances are zero"] = { "DivergentSetElementalResistancesUniqueHelmetStrInt4", "SetElementalResistancesUniqueHelmetStrInt4", }, ["elemental resistances cannot be penetrated"] = { "UniqueElementalResistancesCannotBePenetrated__1", }, ["elemental weakness has no reservation if cast as an aura"] = { "ElementalWeaknessReservationCostUnique__1", }, ["emits a golden glow"] = { "PlayerLightAlternateColourUniqueRing9", }, ["enemies affected by your spider's webs deal #% reduced damage"] = { "DamageDealtByWebbedEnemiesUnique__1", }, ["enemies affected by your spider's webs deal 10% reduced damage"] = { "DamageDealtByWebbedEnemiesUnique__1", }, - ["enemies affected by your spider's webs have #% to all resistances"] = { "ResistancesOfWebbedEnemiesUnique__1", }, - ["enemies affected by your spider's webs have -10% to all resistances"] = { "ResistancesOfWebbedEnemiesUnique__1", }, + ["enemies affected by your spider's webs have #% to all resistances"] = { "DivergentResistancesOfWebbedEnemiesUnique__1", "ResistancesOfWebbedEnemiesUnique__1", }, + ["enemies affected by your spider's webs have -10% to all resistances"] = { "DivergentResistancesOfWebbedEnemiesUnique__1", "ResistancesOfWebbedEnemiesUnique__1", }, ["enemies blinded by you cannot inflict damaging ailments"] = { "BlindedEnemiesCannotInflictAilmentsUnique_1", }, ["enemies blinded by you have malediction"] = { "MaledictionOnBlindWhileBlindedUnique__1", }, - ["enemies cannot leech life from you"] = { "EnemiesCantLifeLeech", "UniqueEnemiesCantLifeLeech__1", }, + ["enemies cannot leech life from you"] = { "DivergentEnemiesCantLifeLeechUnique__1", "EnemiesCantLifeLeech", "UniqueEnemiesCantLifeLeech__1", }, ["enemies cannot leech mana from you"] = { "EnemiesCannotLeechMana", }, ["enemies chilled by your hits can be shattered as though frozen"] = { "ChillHitsCauseShatteringUnique__1", }, ["enemies chilled by your hits have damage taken increased by chill effect"] = { "EnemiesChilledIncreasedDamageTakenUnique__1", }, @@ -6117,8 +6417,8 @@ return { ["enemies you kill during effect have a (20-30)% chance to explode, dealing a tenth of their maximum life as damage of a random element"] = { "EnemyExplosionRandomElementFlaskEffectUnique__1", }, ["enemies you kill have a #% chance to explode, dealing a quarter of their maximum life as chaos damage"] = { "ExplodeOnKillChaosUnique__1", }, ["enemies you kill have a 20% chance to explode, dealing a quarter of their maximum life as chaos damage"] = { "ExplodeOnKillChaosUnique__1", }, - ["enemies you kill while affected by glorious madness have a #% chance to explode, dealing a quarter of their life as chaos damage"] = { "EnemiesExplodeOnDeathChaosGloriousMadnessUnique1", }, - ["enemies you kill while affected by glorious madness have a 40% chance to explode, dealing a quarter of their life as chaos damage"] = { "EnemiesExplodeOnDeathChaosGloriousMadnessUnique1", }, + ["enemies you kill while affected by glorious madness have a #% chance to explode, dealing a quarter of their life as chaos damage"] = { "DivergentEnemiesExplodeOnDeathChaosGloriousMadnessUnique1", "EnemiesExplodeOnDeathChaosGloriousMadnessUnique1", }, + ["enemies you kill while affected by glorious madness have a 40% chance to explode, dealing a quarter of their life as chaos damage"] = { "DivergentEnemiesExplodeOnDeathChaosGloriousMadnessUnique1", "EnemiesExplodeOnDeathChaosGloriousMadnessUnique1", }, ["enemies you shock have #% reduced cast speed"] = { "ShockedEnemyCastSpeedUnique__1", }, ["enemies you shock have #% reduced movement speed"] = { "ShockedEnemyMovementSpeedUnique__1", }, ["enemies you shock have 20% reduced movement speed"] = { "ShockedEnemyMovementSpeedUnique__1", }, @@ -6131,9 +6431,9 @@ return { ["energy shield recharge starts when you are stunned"] = { "EnergyShieldRechargeStartsWhenStunnedUnique__1", }, ["enfeeble has no reservation if cast as an aura"] = { "EnfeebleReservationCostUnique__1", }, ["envy has no reservation"] = { "EnvyNoReservationUnique__1", }, - ["eternal youth"] = { "KeystoneEternalYouthUnique__1", "KeystoneEternalYouthUnique__2_", }, - ["evasion rating is increased by overcapped cold resistance"] = { "EvasionIncreasedByUncappedColdResistanceUnique__1", }, - ["everlasting sacrifice"] = { "KeystoneEverlastingSacrificeUnique__1", }, + ["eternal youth"] = { "DivergentKeystoneEternalYouthUnique__2_", "KeystoneEternalYouthUnique__1", "KeystoneEternalYouthUnique__2_", }, + ["evasion rating is increased by overcapped cold resistance"] = { "DivergentEvasionIncreasedByUncappedColdResistanceUnique__1", "DivergentEvasionIncreasedByUncappedColdResistanceUnique__2", "EvasionIncreasedByUncappedColdResistanceUnique__1", }, + ["everlasting sacrifice"] = { "DivergentKeystoneEverlastingSacrificeUnique__1", "KeystoneEverlastingSacrificeUnique__1", }, ["every # seconds you gain elemental overload for # seconds"] = { "GainElementalOverloadEvery16SecondsUnique__1", }, ["every # seconds you gain iron reflexes for # seconds"] = { "DisplayIronReflexesFor8SecondsUnique__1", }, ["every # seconds, consume a nearby corpse to recover (#)% of life"] = { "VillageConsumeCorpseLifeRecovery", }, @@ -6150,8 +6450,8 @@ return { ["every 8 seconds, gain avatar of fire for 4 seconds"] = { "GainAvatarOfFireEvery8SecondsUnique__1", }, ["every rage also grants #% of physical damage as extra fire damage"] = { "PhysicalAddedAsFirePerRageUnique__1", }, ["every rage also grants 1% of physical damage as extra fire damage"] = { "PhysicalAddedAsFirePerRageUnique__1", }, - ["excommunicate enemies on melee hit for # seconds"] = { "ExcommunicateOnMeleeHitUnique", }, - ["excommunicate enemies on melee hit for 3 seconds"] = { "ExcommunicateOnMeleeHitUnique", }, + ["excommunicate enemies on melee hit for # seconds"] = { "DivergentExcommunicateOnMeleeHitUnique", "ExcommunicateOnMeleeHitUnique", }, + ["excommunicate enemies on melee hit for 3 seconds"] = { "DivergentExcommunicateOnMeleeHitUnique", "ExcommunicateOnMeleeHitUnique", }, ["exerted attacks deal #% increased damage"] = { "ExertedAttackDamageUnique__1", }, ["exerted attacks deal (#)% increased damage"] = { "ExertedDamageWarcryCooldown1", "ExertedDamageWarcryCooldown2", "ExertedDamageWarcryCooldown3", "VillageExertedAttackDamage", }, ["exerted attacks deal (25-30)% increased damage"] = { "ExertedDamageWarcryCooldown1", }, @@ -6164,7 +6464,8 @@ return { ["far shot"] = { "PlayerFarShotUnique__1", "PlayerFarShotUnique__2", "PlayerFarShotUnique__3", "VillagePlayerFarShot", }, ["fire damage is increased by #% per # intelligence from allocated passives in radius"] = { "IncreasedFireballRadiusUniqueJewel57", }, ["fire damage is increased by 1% per 5 intelligence from allocated passives in radius"] = { "IncreasedFireballRadiusUniqueJewel57", }, - ["fire resistance is #%"] = { "FireResistanceOverrideUnique__1__", }, + ["fire resistance is #%"] = { "DivergentFireResistanceOverrideUnique__1__", "FireResistanceOverrideUnique__1__", }, + ["fire resistance is 70%"] = { "DivergentFireResistanceOverrideUnique__1__", }, ["fire resistance is 75%"] = { "FireResistanceOverrideUnique__1__", }, ["fire skills have #% chance to poison on hit"] = { "FireSkillsChanceToPoisonUnique__1", }, ["fire skills have 20% chance to poison on hit"] = { "FireSkillsChanceToPoisonUnique__1", }, @@ -6219,7 +6520,7 @@ return { ["gain # life per enemy hit with spells"] = { "LifeGainedOnSpellHitUniqueDescentClaw1", }, ["gain # life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueBodyStrDexInt1", "LifeGainedFromEnemyDeathUniqueDagger11", "LifeGainedFromEnemyDeathUniqueTwoHandAxe1", "LifeGainedFromEnemyDeathUniqueTwoHandAxe2", "LifeGainedFromEnemyDeathUniqueTwoHandMace7", "LifeGainedFromEnemyDeathUnique__4", "LifeGainedFromEnemyDeathUnique__5", }, ["gain # life per ignited enemy killed"] = { "LifeGainedOnKillingIgnitedEnemiesUniqueWand10_", }, - ["gain # life when you lose an endurance charge"] = { "LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6", }, + ["gain # life when you lose an endurance charge"] = { "DivergentLifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6", "LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6", }, ["gain # life when you stun an enemy"] = { "LifeGainedOnStunUnique__1_", }, ["gain # mana on kill per level"] = { "ManaGainedOnEnemyDeathPerLevelUniqueSceptre8", }, ["gain # mana per enemy hit with attacks"] = { "ManaGainPerTargetUniqueRing7", }, @@ -6235,14 +6536,17 @@ return { ["gain #% increased area of effect for # seconds after spending a total of # mana"] = { "GainAreaOfEffectPluspercentOnManaSpentUnique__1", }, ["gain #% of cold damage as extra chaos damage per frenzy charge"] = { "ChargeBonusColdDamageAddedAsChaos", }, ["gain #% of cold damage as extra fire damage against frozen enemies"] = { "ColdAddedAsFireFrozenEnemyUnique__1", }, - ["gain #% of cold damage as extra fire damage per #% chill effect on enemy"] = { "ColdAddedAsFireChilledEnemyUnique__1", }, + ["gain #% of cold damage as extra fire damage per #% chill effect on enemy"] = { "ColdAddedAsFireChilledEnemyUnique__1", "DivergentColdAddedAsFireChilledEnemyUnique__1", }, ["gain #% of fire damage as extra chaos damage per endurance charge"] = { "ChargeBonusFireDamageAddedAsChaos__", }, ["gain #% of lightning damage as extra chaos damage per power charge"] = { "ChargeBonusLightningDamageAddedAsChaos", }, - ["gain #% of lightning damage as extra cold damage per #% shock effect on enemy"] = { "LightningAddedAsColdShockedEnemyUnique__1", }, + ["gain #% of lightning damage as extra cold damage per #% shock effect on enemy"] = { "DivergentLightningAddedAsColdShockedEnemyUnique__1", "LightningAddedAsColdShockedEnemyUnique__1", }, + ["gain #% of maximum life as extra armour"] = { "TalismanEnchantMaximumLifeAddedAsArmour", }, + ["gain #% of maximum mana as extra maximum energy shield"] = { "DivergentGainManaAsExtraEnergyShieldUnique__1", }, ["gain #% of non-chaos damage as extra chaos damage per siphoning charge"] = { "NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1", }, ["gain #% of physical attack damage as extra fire damage"] = { "AttackPhysicalDamageAddedAsFireUnique__1", }, ["gain #% of physical attack damage as extra lightning damage"] = { "AttackPhysicalDamageAddedAsLightningUnique__1", }, - ["gain #% of physical damage as extra cold damage"] = { "ConvertPhysicalToColdUniqueQuiver5", "PhysicalAddedAsColdUnique__1", }, + ["gain #% of physical damage as extra chaos damage while at maximum power charges"] = { "DivergentPhysAddedAsChaosWithMaxPowerChargesUnique__1", }, + ["gain #% of physical damage as extra cold damage"] = { "ConvertPhysicalToColdUniqueQuiver5", "DivergentPhysicalAddedAsColdUnique__2", "PhysicalAddedAsColdUnique__1", }, ["gain #% of physical damage as extra damage of each element per spirit charge"] = { "PhysAddedAsEachElementPerSpiritChargeUnique__1", }, ["gain #% of physical damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__2", "PhysicalAddedAsFireUnique__3", }, ["gain #% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementDescentUniqueQuiver1", "WeaponPhysicalDamageAddedAsRandomElementUniqueBow11", "WeaponPhysicalDamageAddedAsRandomElementUnique__1__", }, @@ -6268,12 +6572,14 @@ return { ["gain (#) rage on melee hit"] = { "VillageRageOnMeleeHit", }, ["gain (#) vaal souls on use"] = { "FlaskGainVaalSoulsOnUseUnique__1", }, ["gain (#)% of cold damage as extra chaos damage"] = { "ChaosDamageAsPortionOfColdDamageUnique__1", }, + ["gain (#)% of cold damage as extra fire damage"] = { "ColdAddedAsFireUniqueTalisman3", }, ["gain (#)% of cold damage as extra fire damage against frozen enemies"] = { "VillageColdAddedAsFireFrozenEnemy", }, ["gain (#)% of elemental damage as extra chaos damage"] = { "ElementalDamagePercentAddedAsChaosUnique__1", "ElementalDamagePercentAddedAsChaosUnique__2", "ElementalDamagePercentAddedAsChaosUnique__3", "ElementalDamagePercentAddedAsChaosUnique__4", "VillageElementalDamagePercentAddedAsChaos", }, ["gain (#)% of elemental damage as extra chaos damage during effect"] = { "AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5", }, ["gain (#)% of elemental damage as extra chaos damage per shaper item equipped"] = { "ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1", }, - ["gain (#)% of fire damage as extra chaos damage"] = { "ChaosDamageAsPortionOfFireDamageUnique__1", }, + ["gain (#)% of fire damage as extra chaos damage"] = { "ChaosDamageAsPortionOfFireDamageUniqueTalisman3", "ChaosDamageAsPortionOfFireDamageUnique__1", }, ["gain (#)% of lightning damage as extra chaos damage"] = { "ChaosDamageAsPortionOfLightningDamageUnique__1", }, + ["gain (#)% of lightning damage as extra cold damage"] = { "LightningAddedAsColdUniqueTalisman3", }, ["gain (#)% of maximum life as extra maximum energy shield"] = { "MaximumEnergyShieldAsPercentageOfLifeUnique__1", "MaximumEnergyShieldAsPercentageOfLifeUnique__2", }, ["gain (#)% of maximum mana as extra maximum energy shield"] = { "GainManaAsExtraEnergyShieldUnique__1", }, ["gain (#)% of missing unreserved life before being hit by an enemy"] = { "GainMissingLifeOnHitUnique__1", }, @@ -6293,7 +6599,7 @@ return { ["gain (#)% of physical damage as extra damage of each element if"] = { "PhysAddedAsEachElement6ShaperItemsUnique__1", }, ["gain (#)% of physical damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__4", }, ["gain (#)% of physical damage as extra fire damage if you've"] = { "PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1", }, - ["gain (#)% of physical damage as extra lightning damage"] = { "PhysicalAddedAsLightningUnique__1", }, + ["gain (#)% of physical damage as extra lightning damage"] = { "LightningDamageAsPortionOfDamageUniqueTalisman3", "PhysicalAddedAsLightningUnique__1", }, ["gain (#)% of physical damage as extra lightning damage if you've"] = { "PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1", }, ["gain (#)% of sword physical damage as extra fire damage"] = { "SwordPhysicalDamageToAddAsFireUniqueOneHandSword10", }, ["gain (#)% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementUnique__2", }, @@ -6311,6 +6617,7 @@ return { ["gain (10-15)% of physical damage as extra cold damage"] = { "PhysicalAddedAsColdUnique__2", }, ["gain (10-15)% of physical damage as extra cold damage during effect"] = { "PhysicalAddedAsColdUniqueFlask8", }, ["gain (10-15)% of physical damage as extra damage of each element if"] = { "PhysAddedAsEachElement6ShaperItemsUnique__1", }, + ["gain (10-15)% of physical damage as extra lightning damage"] = { "LightningDamageAsPortionOfDamageUniqueTalisman3", }, ["gain (10-20) life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueBootsStrInt1", }, ["gain (10-20) mana on culling strike"] = { "ManaGainOnCullUnique__1_", }, ["gain (10-20)% of elemental damage as extra chaos damage"] = { "ElementalDamagePercentAddedAsChaosUnique__1", "ElementalDamagePercentAddedAsChaosUnique__2", "ElementalDamagePercentAddedAsChaosUnique__3", }, @@ -6324,12 +6631,14 @@ return { ["gain (15-20) energy shield per enemy killed"] = { "EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6", }, ["gain (15-20) life per enemy hit with spells"] = { "LifeGainedOnSpellHitUniqueClaw7", }, ["gain (15-20) life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueHelmetDexInt3", }, + ["gain (15-20)% of lightning damage as extra cold damage"] = { "LightningAddedAsColdUniqueTalisman3", }, ["gain (15-25) energy shield per enemy hit with attacks"] = { "EnergyShieldGainedFromEnemyDeathUnique__1", }, ["gain (15-25) life per enemy hit with attacks"] = { "LifeGainedFromEnemyDeathUnique__1", }, ["gain (15-25) life per enemy killed"] = { "LifeGainedFromEnemyDeathUnique__3", }, ["gain (2-3) life per enemy hit with attacks"] = { "LifeGainPerTargetUniqueQuiver6_", }, ["gain (2-4) life per enemy hit with attacks"] = { "LifeGainPerTargetUniqueRing2", }, ["gain (2-4) rage on melee hit"] = { "VillageRageOnMeleeHit", }, + ["gain (20-25)% of cold damage as extra fire damage"] = { "ColdAddedAsFireUniqueTalisman3", }, ["gain (20-28) life per cursed enemy hit with attacks"] = { "LifeGainOnHitCursedEnemyUnique__1", }, ["gain (20-30) life per enemy killed"] = { "LifeGainedFromEnemyDeathUnique__2", }, ["gain (20-40) mana per enemy killed"] = { "ManaGainedFromEnemyDeathUnique__2", }, @@ -6337,6 +6646,7 @@ return { ["gain (20-40)% of physical damage as extra fire damage if you've"] = { "PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1", }, ["gain (20-40)% of physical damage as extra lightning damage if you've"] = { "PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1", }, ["gain (200-300) life per ignited enemy killed"] = { "LifeGainedOnKillingIgnitedEnemiesUnique__1", }, + ["gain (25-30)% of fire damage as extra chaos damage"] = { "ChaosDamageAsPortionOfFireDamageUniqueTalisman3", }, ["gain (25-30)% of physical damage as extra cold damage"] = { "PhysicalAddedAsColdUniqueOneHandSword12", }, ["gain (25-35)% of physical attack damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__1", }, ["gain (3-4) life per enemy hit with attacks"] = { "LifeGainPerTargetImplicitQuiver8", }, @@ -6389,21 +6699,25 @@ return { ["gain 1 rage on critical strike with attacks"] = { "RageOnAttackCritUnique__1", }, ["gain 1 remembrance when you spend a total of 200 energy"] = { "RemembranceGainedPerEnergyShieldUnique_1", }, ["gain 1% of cold damage as extra chaos damage per frenzy charge"] = { "ChargeBonusColdDamageAddedAsChaos", }, - ["gain 1% of cold damage as extra fire damage per 1% chill effect on enemy"] = { "ColdAddedAsFireChilledEnemyUnique__1", }, + ["gain 1% of cold damage as extra fire damage per 1% chill effect on enemy"] = { "ColdAddedAsFireChilledEnemyUnique__1", "DivergentColdAddedAsFireChilledEnemyUnique__1", }, ["gain 1% of fire damage as extra chaos damage per endurance charge"] = { "ChargeBonusFireDamageAddedAsChaos__", }, ["gain 1% of lightning damage as extra chaos damage per power charge"] = { "ChargeBonusLightningDamageAddedAsChaos", }, - ["gain 1% of lightning damage as extra cold damage per 2% shock effect on enemy"] = { "LightningAddedAsColdShockedEnemyUnique__1", }, + ["gain 1% of lightning damage as extra cold damage per 2% shock effect on enemy"] = { "DivergentLightningAddedAsColdShockedEnemyUnique__1", "LightningAddedAsColdShockedEnemyUnique__1", }, ["gain 10 life per enemy hit if you have used a vaal skill recently"] = { "LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1", }, ["gain 10 life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueTwoHandAxe2", "LifeGainedFromEnemyDeathUniqueTwoHandMace7", }, ["gain 10 life per ignited enemy killed"] = { "LifeGainedOnKillingIgnitedEnemiesUniqueWand10_", }, ["gain 10 mana per enemy killed"] = { "ManaGainedFromEnemyDeathUniqueBow2", "ManaGainedFromEnemyDeathUniqueShieldInt3", "ManaGainedFromEnemyDeathUniqueTwoHandAxe5", "ManaGainedFromEnemyDeathUniqueTwoHandSword3", }, + ["gain 10% of maximum mana as extra maximum energy shield"] = { "DivergentGainManaAsExtraEnergyShieldUnique__1", }, ["gain 100 life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueBodyStrDexInt1", "LifeGainedFromEnemyDeathUnique__4", }, - ["gain 100 life when you lose an endurance charge"] = { "LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6", }, + ["gain 100 life when you lose an endurance charge"] = { "DivergentLifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6", "LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6", }, ["gain 100 mana per enemy killed"] = { "ManaGainedFromEnemyDeathUniqueBodyStrDexInt1", }, ["gain 100% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementUniqueBow11", }, ["gain 100% of weapon physical damage as extra damage of each element"] = { "LocalPhysicalDamageAddedAsEachElementTransformed", "LocalPhysicalDamageAddedAsEachElementTransformed2", "LocalPhysicalDamageAddedAsEachElementUnique__1", }, + ["gain 12% of physical damage as extra chaos damage while at maximum power charges"] = { "DivergentPhysAddedAsChaosWithMaxPowerChargesUnique__1", }, + ["gain 15% of maximum life as extra armour"] = { "TalismanEnchantMaximumLifeAddedAsArmour", }, ["gain 15% of physical attack damage as extra fire damage"] = { "AttackPhysicalDamageAddedAsFireUnique__1", }, ["gain 15% of physical attack damage as extra lightning damage"] = { "AttackPhysicalDamageAddedAsLightningUnique__1", }, + ["gain 15% of physical damage as extra cold damage"] = { "DivergentPhysicalAddedAsColdUnique__2", }, ["gain 150 life per enemy killed"] = { "LifeGainedFromEnemyDeathUnique__5", }, ["gain 2 endurance, frenzy or power charges every 6 seconds"] = { "GainRandomChargeEvery6SecondsImplicitE2", }, ["gain 2 power charges when you warcry"] = { "GainPowerChargesOnUsingWarcryUnique__1", }, @@ -6452,6 +6766,8 @@ return { ["gain a power charge on killing a frozen enemy"] = { "GainPowerChargeOnKillingFrozenEnemyUnique__1", }, ["gain a power charge on non-critical strike"] = { "PowerChargeOnNonCritUniqueRing17", }, ["gain a power charge when you use a vaal skill"] = { "GainPowerChargeOnUsingVaalSkillUnique__1", }, + ["gain a random blood shrine buff every # seconds"] = { "GainBloodShrineBuffUnique__1", }, + ["gain a random blood shrine buff every 10 seconds"] = { "GainBloodShrineBuffUnique__1", }, ["gain a random shrine buff every # seconds"] = { "VillageAlternatingShrineBuff", }, ["gain a random shrine buff every 10 seconds"] = { "VillageAlternatingShrineBuff", }, ["gain a random shrine buff for # seconds when you kill a rare or unique enemy"] = { "GainShrineOnRareOrUniqueKillUnique_1", }, @@ -6459,12 +6775,14 @@ return { ["gain a spirit charge every second"] = { "GainSpiritChargeEverySecondUnique__1", }, ["gain a spirit charge on kill"] = { "GainSpiritChargeOnKillChanceUnique__1", }, ["gain absorption charges instead of power charges"] = { "GainAbsorptionChargesInsteadOfPowerUnique__1", }, - ["gain added chaos damage equal to #% of ward"] = { "GlobalAddedChaosDamageWardUnique__", }, + ["gain added chaos damage equal to #% of ward"] = { "DivergentGlobalAddedChaosDamageWardUnique__", "GlobalAddedChaosDamageWardUnique__", }, ["gain added chaos damage equal to 10% of ward"] = { "GlobalAddedChaosDamageWardUnique__", }, + ["gain added chaos damage equal to 5% of ward"] = { "DivergentGlobalAddedChaosDamageWardUnique__", }, ["gain additional elemental damage reduction equal to half your chaos resistance"] = { "ElementalDamageReductionChaosResistUnique__1", }, - ["gain adrenaline for # seconds when ward breaks"] = { "AdrenalineOnWardBreakUnique__1", }, + ["gain adrenaline for # seconds when ward breaks"] = { "AdrenalineOnWardBreakUnique__1", "DivergentAdrenalineOnWardBreakUnique__1", }, ["gain adrenaline for (#) second on kill"] = { "AdrenalineOnKillUnique__1", }, ["gain adrenaline for (1-3) second on kill"] = { "AdrenalineOnKillUnique__1", }, + ["gain adrenaline for 2 seconds when ward breaks"] = { "DivergentAdrenalineOnWardBreakUnique__1", }, ["gain adrenaline for 3 seconds when ward breaks"] = { "AdrenalineOnWardBreakUnique__1", }, ["gain adrenaline when you become flame-touched"] = { "GainAdrenalineFireTouchedGainUnique__1", }, ["gain affliction charges instead of frenzy charges"] = { "GainAfflictionChargesInsteadOfFrenzyUnique__1", }, @@ -6480,7 +6798,7 @@ return { ["gain arcane surge after spending a total of 200 life"] = { "VillageArcaneSurgeOnLifeSpent", }, ["gain arcane surge on hit with spells while at maximum power charges"] = { "ChargeBonusArcaneSurgeOnHitPowerCharges", }, ["gain arcane surge when you deal a critical strike"] = { "GainArcaneSurgeOnCritUnique__1", }, - ["gain arcane surge when you use a movement skill"] = { "ArcaneSurgeOnMovementSkillUnique", }, + ["gain arcane surge when you use a movement skill"] = { "ArcaneSurgeOnMovementSkillUnique", "DivergentArcaneSurgeOnMovementSkillUnique", }, ["gain brutal charges instead of endurance charges"] = { "GainBrutalChargesInsteadOfEnduranceUnique__1", }, ["gain elusive on critical strike"] = { "ElusiveOnCriticalStrikeUnique__1", "VillageElusiveOnCriticalStrike", }, ["gain elusive on reaching low life"] = { "ElusiveOnLowLifeUnique__1", }, @@ -6494,7 +6812,7 @@ return { ["gain immunity to physical damage for 1.5 seconds on rampage"] = { "PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2", }, ["gain maddening presence for # seconds when you kill a rare or unique enemy"] = { "GainDebilitatingPresenceUnique__1", }, ["gain maddening presence for 10 seconds when you kill a rare or unique enemy"] = { "GainDebilitatingPresenceUnique__1", }, - ["gain maximum life instead of maximum energy shield from equipped armour items"] = { "LifeFromEnergyShieldArmourUnique__1", }, + ["gain maximum life instead of maximum energy shield from equipped armour items"] = { "DivergentLifeFromEnergyShieldArmourPercentUnique__1", "LifeFromEnergyShieldArmourUnique__1", }, ["gain no armour from equipped body armour"] = { "GainNoArmourFromBodyArmourUnique__1", }, ["gain onslaught after spending a total of # mana"] = { "VillageOnslaughtOnManaSpent", }, ["gain onslaught after spending a total of 200 mana"] = { "VillageOnslaughtOnManaSpent", }, @@ -6507,8 +6825,8 @@ return { ["gain onslaught for 4 seconds on hit while at maximum frenzy charges"] = { "ChargeBonusOnslaughtOnHitFrenzyCharges_", }, ["gain onslaught for 4 seconds when you warcry"] = { "OnslaughtOnUsingWarcryUnique__1", }, ["gain rampage while at maximum endurance charges"] = { "RampageWhileAtMaxEnduranceChargesUnique__1", }, - ["gain sacrificial zeal when you use a skill, dealing you #% of the skill's mana cost as physical damage per second"] = { "SacrificialZealOnSkillUseUnique__1_", }, - ["gain sacrificial zeal when you use a skill, dealing you 150% of the skill's mana cost as physical damage per second"] = { "SacrificialZealOnSkillUseUnique__1_", }, + ["gain sacrificial zeal when you use a skill, dealing you #% of the skill's mana cost as physical damage per second"] = { "DivergentSacrificialZealOnSkillUseUnique__1_", "SacrificialZealOnSkillUseUnique__1_", }, + ["gain sacrificial zeal when you use a skill, dealing you 150% of the skill's mana cost as physical damage per second"] = { "DivergentSacrificialZealOnSkillUseUnique__1_", "SacrificialZealOnSkillUseUnique__1_", }, ["gain shaper's presence for # seconds when you kill a rare or unique enemy"] = { "GainShapersPresenceUnique__1", }, ["gain shaper's presence for 10 seconds when you kill a rare or unique enemy"] = { "GainShapersPresenceUnique__1", }, ["gain soul eater during any flask effect"] = { "BeltSoulEaterDuringFlaskEffect__1", }, @@ -6522,25 +6840,26 @@ return { ["gain unholy might for 4 seconds on critical strike"] = { "UnholyMightOnCritUniqueSceptre10", "VillageUnholyMightOnCrit", }, ["gain unholy might on block for # seconds"] = { "UnholyMightOnBlockChanceUnique__1", }, ["gain unholy might on block for 10 seconds"] = { "UnholyMightOnBlockChanceUnique__1", }, - ["gain up to maximum endurance charges when you take a critical strike"] = { "GainMaximumEnduranceChargesWhenCritUnique__1", }, + ["gain up to maximum endurance charges when you take a critical strike"] = { "DivergentGainMaximumEnduranceChargesWhenCritUnique__1", "GainMaximumEnduranceChargesWhenCritUnique__1", }, ["gain up to maximum power charges when you use a vaal skill"] = { "GainMaximumPowerChargesOnVaalSkillUseUnique__1", }, ["gain up to your maximum number of frenzy and endurance charges when you gain cat's agility"] = { "GainMaxFrenzyAndEnduranceOnCatsAgilityUnique__1", }, ["gain up to your maximum number of frenzy and power charges when you gain cat's stealth"] = { "GainMaxFrenzyAndPowerOnCatsStealthUnique__1", }, ["gain vaal souls equal to charges consumed when used"] = { "FlaskVaalGainSoulsAsChargesUnique__1_", }, ["gain ward instead of #% of armour and evasion rating from equipped body armour"] = { "ConvertBodyArmourEvasionToWardUnique__1", }, ["gain ward instead of 50% of armour and evasion rating from equipped body armour"] = { "ConvertBodyArmourEvasionToWardUnique__1", }, + ["gains no charges during effect"] = { "FlaskCannotGainChargesDuringEffectUnique__1", }, ["gains no charges during effect of any overflowing chalice flask"] = { "CannotGainFlaskChargesDuringFlaskEffectUnique_1", }, ["gains no charges during effect of any soul ripper flask"] = { "CannotGainFlaskChargesDuringEffectUnique__1", }, - ["gems can be socketed in this item ignoring socket colour"] = { "LocalCanSocketIgnoringColourUnique__1", }, - ["gems socketed in blue sockets gain #% increased experience"] = { "SocketedGemsInBlueSocketEffectUnique__1", }, - ["gems socketed in blue sockets gain 100% increased experience"] = { "SocketedGemsInBlueSocketEffectUnique__1", }, - ["gems socketed in green sockets have +#% to quality"] = { "SocketedGemsInGreenSocketEffectUnique__1", }, - ["gems socketed in green sockets have +30% to quality"] = { "SocketedGemsInGreenSocketEffectUnique__1", }, - ["gems socketed in red sockets have +# to level"] = { "SocketedGemsInRedSocketEffectUnique__1", }, - ["gems socketed in red sockets have +2 to level"] = { "SocketedGemsInRedSocketEffectUnique__1", }, + ["gems socketed always have the quality bonus from socket colour"] = { "LocalCanSocketIgnoringColourUnique__1", }, + ["gems socketed in blue sockets gain #% increased experience"] = { "DivergentSocketedGemsInBlueSocketEffectUnique__1", "SocketedGemsInBlueSocketEffectUnique__1", }, + ["gems socketed in blue sockets gain 100% increased experience"] = { "DivergentSocketedGemsInBlueSocketEffectUnique__1", "SocketedGemsInBlueSocketEffectUnique__1", }, + ["gems socketed in green sockets have +#% to quality"] = { "DivergentSocketedGemsInGreenSocketEffectUnique__1", "SocketedGemsInGreenSocketEffectUnique__1", }, + ["gems socketed in green sockets have +20% to quality"] = { "DivergentSocketedGemsInGreenSocketEffectUnique__1", "SocketedGemsInGreenSocketEffectUnique__1", }, + ["gems socketed in red sockets have +# to level"] = { "DivergentSocketedGemsInRedSocketEffectUnique__1", "SocketedGemsInRedSocketEffectUnique__1", }, + ["gems socketed in red sockets have +2 to level"] = { "DivergentSocketedGemsInRedSocketEffectUnique__1", "SocketedGemsInRedSocketEffectUnique__1", }, ["ghost dance"] = { "KeystoneGhostDanceUnique__1", }, ["ghost reaver"] = { "KeystoneGhostReaverUnique__1", }, - ["glancing blows"] = { "KeystoneGlancingBlowsUnique__1___", }, + ["glancing blows"] = { "DivergentKeystoneGlancingBlowsUnique__1___", "KeystoneGlancingBlowsUnique__1___", }, ["glows while in an area containing a unique fish"] = { "FishDetectionUnique__1_", }, ["golden radiance"] = { "GoldenLightBeam", }, ["golem skills have (#)% increased cooldown recovery rate"] = { "GolemSkillsCooldownRecoveryUnique__1", }, @@ -6607,15 +6926,15 @@ return { ["grants last breath when you use a skill during effect, for (450-600)% of mana cost"] = { "FlaskLifeGainOnSkillUseUnique__1", }, ["grants level # affliction"] = { "RitualRingAffliction", }, ["grants level # approaching flames skill"] = { "GrantsTouchOfFireUnique__1", }, - ["grants level # aspect of the avian skill"] = { "GrantsBirdAspect1_", }, - ["grants level # aspect of the cat skill"] = { "GrantsCatAspect1", }, + ["grants level # aspect of the avian skill"] = { "DivergentGrantsBirdAspect1_", "GrantsBirdAspect1_", }, + ["grants level # aspect of the cat skill"] = { "DivergentGrantsCatAspect1", "GrantsCatAspect1", }, ["grants level # aspect of the crab skill"] = { "GrantsCrabAspect1_", }, - ["grants level # aspect of the spider skill"] = { "GrantsSpiderAspect1", }, + ["grants level # aspect of the spider skill"] = { "DivergentGrantsSpiderAspect1", "GrantsSpiderAspect1", }, ["grants level # battlemage's cry skill"] = { "DisplayGrantsVengeanceUnique__1", }, ["grants level # bear trap skill"] = { "GrantsBearTrapUniqueShieldDexInt1", }, ["grants level # blazing glare"] = { "SolartwineUniqueBelt55", }, ["grants level # blight skill"] = { "BlightSkillUnique__1", }, - ["grants level # blood offering skill"] = { "DisplayGrantsBloodOfferingUnique__1_", }, + ["grants level # blood offering skill"] = { "DisplayGrantsBloodOfferingUnique__1_", "DivergentDisplayGrantsBloodOfferingUnique__1_", }, ["grants level # blood sacrament skill"] = { "UniqueWandGrantsBloodSacrament__1", }, ["grants level # brandsurge skill"] = { "GrantsBrandDetonateUnique__1", }, ["grants level # caustic retribution"] = { "BitingBraidUniqueBelt52", }, @@ -6623,7 +6942,7 @@ return { ["grants level # dash skill"] = { "GrantsDashUnique__1_", }, ["grants level # death wish skill"] = { "GrantsDeathWishUnique__1__", }, ["grants level # despair curse aura during effect"] = { "VulnerabilityAuraDuringFlaskEffectUnique__1", }, - ["grants level # doryani's touch skill"] = { "GrantsTouchOfGodUnique__1", }, + ["grants level # doryani's touch skill"] = { "DivergentGrantsTouchOfGodUnique__1", "GrantsTouchOfGodUnique__1", }, ["grants level # embrace madness skill"] = { "GrantEmbraceMadnessSkillUnique1", }, ["grants level # enduring cry skill"] = { "EnduringCrySkillUnique__1", }, ["grants level # envy skill"] = { "GrantsEnvyUnique__1", "GrantsEnvyUnique__2", "VillageGrantsEnvy", }, @@ -6638,20 +6957,21 @@ return { ["grants level # lightning warp skill"] = { "LightningWarpSkillUniqueOneHandAxe8", }, ["grants level # pacify"] = { "RitualRingPacify", }, ["grants level # penance mark"] = { "RitualRingPenanceMark", }, - ["grants level # petrification statue skill"] = { "PetrificationStatueUnique__1", }, + ["grants level # petrification statue skill"] = { "DivergentPetrificationStatueUnique__1", "PetrificationStatueUnique__1", }, ["grants level # precision skill"] = { "GrantsAccuracyAuraSkillUnique__1", }, ["grants level # purity of elements skill"] = { "PuritySkillUniqueAmulet22", }, - ["grants level # purity of fire skill"] = { "GrantsPurityOfFireUnique__1", }, - ["grants level # purity of ice skill"] = { "GrantsPurityOfIceUnique__1", }, - ["grants level # purity of lightning skill"] = { "GrantsPurityOfLightningUnique__1", }, + ["grants level # purity of fire skill"] = { "DivergentPurityOfFireUnique__6", "GrantsPurityOfFireUnique__1", }, + ["grants level # purity of ice skill"] = { "DivergentPurityOfIceUnique__6", "GrantsPurityOfIceUnique__1", }, + ["grants level # purity of lightning skill"] = { "DivergentPurityOfLightningUnique__6", "GrantsPurityOfLightningUnique__1", }, ["grants level # queen's demand skill"] = { "UniqueStaffGrantQueensDemand___", }, - ["grants level # ravenous skill"] = { "GrantsRavenousSkillUnique__1", }, + ["grants level # ravenous skill"] = { "DivergentGrantsRavenousSkillUnique__1", "GrantsRavenousSkillUnique__1", }, + ["grants level # savage barnacle"] = { "DivergentSavageBarnacleMod_1", "GrantsCreateBarnacleSkillUnique", }, ["grants level # scorching ray skill"] = { "ScorchingRaySkillUnique__1", }, ["grants level # smite skill"] = { "GrantsLevel30SmiteUnique__1", }, ["grants level # snipe skill"] = { "GrantsHighLevelSnipeUnique__1", }, - ["grants level # summon bestial rhoa skill"] = { "GrantsSummonBeastRhoaUnique__1", }, - ["grants level # summon bestial snake skill"] = { "GrantsSummonBeastSnakeUnique__1", }, - ["grants level # summon bestial ursa skill"] = { "GrantsSummonBeastUrsaUnique__1", }, + ["grants level # summon bestial rhoa skill"] = { "DivergentGrantsSummonBeastRhoaUnique__1", "GrantsSummonBeastRhoaUnique__1", }, + ["grants level # summon bestial snake skill"] = { "DivergentGrantsSummonBeastSnakeUnique__1", "GrantsSummonBeastSnakeUnique__1", }, + ["grants level # summon bestial ursa skill"] = { "DivergentGrantsSummonBeastUrsaUnique__1", "GrantsSummonBeastUrsaUnique__1", }, ["grants level # summon doedre's effigy skill"] = { "GrantCursePillarSkillUnique", "GrantCursePillarSkillUnique__", }, ["grants level # summon shaper memory"] = { "GrantShaperSkill_1", }, ["grants level # summon stone golem skill"] = { "GrantsLevel12StoneGolem", }, @@ -6662,7 +6982,7 @@ return { ["grants level # vaal impurity of ice skill"] = { "GrantsVaalPurityOfIceUnique__1", }, ["grants level # vaal impurity of lightning skill"] = { "GrantsVaalPurityOfLightningUnique__1", }, ["grants level # vulnerability curse aura during effect"] = { "VulnerabilityAuraDuringFlaskEffectUnique__1Alt", }, - ["grants level # will of the lords skill"] = { "GraspFromBeyondTrapUnique_1", }, + ["grants level # will of the lords skill"] = { "DivergentGraspFromBeyondTrapUnique_1", "GraspFromBeyondTrapUnique_1", }, ["grants level # wintertide brand skill"] = { "GrantsWintertideBrandUnique__1", }, ["grants level 1 blood sacrament skill"] = { "UniqueWandGrantsBloodSacrament__1", }, ["grants level 1 embrace madness skill"] = { "GrantEmbraceMadnessSkillUnique1", }, @@ -6675,44 +6995,43 @@ return { ["grants level 10 purity of elements skill"] = { "PuritySkillUniqueAmulet22", }, ["grants level 12 summon stone golem skill"] = { "GrantsLevel12StoneGolem", }, ["grants level 15 battlemage's cry skill"] = { "DisplayGrantsVengeanceUnique__1", }, - ["grants level 15 blood offering skill"] = { "DisplayGrantsBloodOfferingUnique__1_", }, + ["grants level 15 blood offering skill"] = { "DisplayGrantsBloodOfferingUnique__1_", "DivergentDisplayGrantsBloodOfferingUnique__1_", }, ["grants level 15 envy skill"] = { "GrantsEnvyUnique__2", }, ["grants level 20 affliction"] = { "RitualRingAffliction", }, ["grants level 20 approaching flames skill"] = { "GrantsTouchOfFireUnique__1", }, - ["grants level 20 aspect of the avian skill"] = { "GrantsBirdAspect1_", }, - ["grants level 20 aspect of the cat skill"] = { "GrantsCatAspect1", }, + ["grants level 20 aspect of the avian skill"] = { "DivergentGrantsBirdAspect1_", "GrantsBirdAspect1_", }, + ["grants level 20 aspect of the cat skill"] = { "DivergentGrantsCatAspect1", "GrantsCatAspect1", }, ["grants level 20 aspect of the crab skill"] = { "GrantsCrabAspect1_", }, - ["grants level 20 aspect of the spider skill"] = { "GrantsSpiderAspect1", }, + ["grants level 20 aspect of the spider skill"] = { "DivergentGrantsSpiderAspect1", "GrantsSpiderAspect1", }, ["grants level 20 blazing glare"] = { "SolartwineUniqueBelt55", }, ["grants level 20 brandsurge skill"] = { "GrantsBrandDetonateUnique__1", }, ["grants level 20 caustic retribution"] = { "BitingBraidUniqueBelt52", }, ["grants level 20 death wish skill"] = { "GrantsDeathWishUnique__1__", }, - ["grants level 20 doryani's touch skill"] = { "GrantsTouchOfGodUnique__1", }, + ["grants level 20 doryani's touch skill"] = { "DivergentGrantsTouchOfGodUnique__1", "GrantsTouchOfGodUnique__1", }, ["grants level 20 hatred skill"] = { "HatredSkillUniqueDescentClaw1", }, ["grants level 20 illusory warp skill"] = { "ItemGrantsIllusoryWarpUnique__1", }, ["grants level 20 intimidating cry skill"] = { "GrantsIntimidatingCry1", }, ["grants level 20 pacify"] = { "RitualRingPacify", }, ["grants level 20 penance mark"] = { "RitualRingPenanceMark", }, - ["grants level 20 petrification statue skill"] = { "PetrificationStatueUnique__1", }, + ["grants level 20 petrification statue skill"] = { "DivergentPetrificationStatueUnique__1", "PetrificationStatueUnique__1", }, ["grants level 20 queen's demand skill"] = { "UniqueStaffGrantQueensDemand___", }, - ["grants level 20 ravenous skill"] = { "GrantsRavenousSkillUnique__1", }, - ["grants level 20 summon bestial rhoa skill"] = { "GrantsSummonBeastRhoaUnique__1", }, - ["grants level 20 summon bestial snake skill"] = { "GrantsSummonBeastSnakeUnique__1", }, - ["grants level 20 summon bestial ursa skill"] = { "GrantsSummonBeastUrsaUnique__1", }, + ["grants level 20 ravenous skill"] = { "DivergentGrantsRavenousSkillUnique__1", "GrantsRavenousSkillUnique__1", }, + ["grants level 20 savage barnacle"] = { "DivergentSavageBarnacleMod_1", "GrantsCreateBarnacleSkillUnique", }, + ["grants level 20 summon bestial rhoa skill"] = { "DivergentGrantsSummonBeastRhoaUnique__1", "GrantsSummonBeastRhoaUnique__1", }, + ["grants level 20 summon bestial snake skill"] = { "DivergentGrantsSummonBeastSnakeUnique__1", "GrantsSummonBeastSnakeUnique__1", }, + ["grants level 20 summon bestial ursa skill"] = { "DivergentGrantsSummonBeastUrsaUnique__1", "GrantsSummonBeastUrsaUnique__1", }, ["grants level 20 summon doedre's effigy skill"] = { "GrantCursePillarSkillUnique", "GrantCursePillarSkillUnique__", }, ["grants level 20 summon shaper memory"] = { "GrantShaperSkill_1", }, ["grants level 20 suspend in time"] = { "SandMirageSkillUnique__1", }, ["grants level 20 thirst for blood skill"] = { "GrantsVampiricIconSkillUnique__1", }, ["grants level 20 unhinge skill"] = { "GrantsUnhingeUnique__1", }, + ["grants level 20 will of the lords skill"] = { "DivergentGraspFromBeyondTrapUnique_1", }, ["grants level 21 despair curse aura during effect"] = { "VulnerabilityAuraDuringFlaskEffectUnique__1", }, ["grants level 21 vulnerability curse aura during effect"] = { "VulnerabilityAuraDuringFlaskEffectUnique__1Alt", }, ["grants level 22 hatred skill"] = { "GrantsHatredUnique__1__", }, ["grants level 25 bear trap skill"] = { "GrantsBearTrapUniqueShieldDexInt1", }, ["grants level 25 blight skill"] = { "BlightSkillUnique__1", }, ["grants level 25 envy skill"] = { "GrantsEnvyUnique__1", }, - ["grants level 25 purity of fire skill"] = { "GrantsPurityOfFireUnique__1", }, - ["grants level 25 purity of ice skill"] = { "GrantsPurityOfIceUnique__1", }, - ["grants level 25 purity of lightning skill"] = { "GrantsPurityOfLightningUnique__1", }, ["grants level 25 scorching ray skill"] = { "ScorchingRaySkillUnique__1", }, ["grants level 25 vaal impurity of fire skill"] = { "GrantsVaalPurityOfFireUnique__1", }, ["grants level 25 vaal impurity of ice skill"] = { "GrantsVaalPurityOfIceUnique__1", }, @@ -6722,47 +7041,50 @@ return { ["grants level 30 dash skill"] = { "GrantsDashUnique__1_", }, ["grants level 30 herald of the hive skill"] = { "HeraldOfTheBreachUnique_1", }, ["grants level 30 precision skill"] = { "GrantsAccuracyAuraSkillUnique__1", }, + ["grants level 30 purity of fire skill"] = { "DivergentPurityOfFireUnique__6", "GrantsPurityOfFireUnique__1", }, + ["grants level 30 purity of ice skill"] = { "DivergentPurityOfIceUnique__6", "GrantsPurityOfIceUnique__1", }, + ["grants level 30 purity of lightning skill"] = { "DivergentPurityOfLightningUnique__6", "GrantsPurityOfLightningUnique__1", }, ["grants level 30 smite skill"] = { "GrantsLevel30SmiteUnique__1", }, ["grants level 30 snipe skill"] = { "GrantsHighLevelSnipeUnique__1", }, ["grants level 30 will of the lords skill"] = { "GraspFromBeyondTrapUnique_1", }, ["grants level 5 frostbite skill"] = { "GrantsFrostbiteUnique__1", }, - ["grants malachai's endurance, frenzy and power for # seconds each, in sequence"] = { "GainThaumaturgyBuffRotationUnique__1_", }, - ["grants malachai's endurance, frenzy and power for 6 seconds each, in sequence"] = { "GainThaumaturgyBuffRotationUnique__1_", }, + ["grants malachai's endurance, frenzy and power for # seconds each, in sequence"] = { "DivergentGainThaumaturgyBuffRotationUnique__1_", "GainThaumaturgyBuffRotationUnique__1_", }, + ["grants malachai's endurance, frenzy and power for 6 seconds each, in sequence"] = { "DivergentGainThaumaturgyBuffRotationUnique__1_", "GainThaumaturgyBuffRotationUnique__1_", }, ["grants perfect agony during effect"] = { "FlaskGrantsPerfectAgonyUnique__1_", }, ["grants summon greater harbinger of brutality skill"] = { "HarbingerSkillOnEquipUnique2_6", }, ["grants summon greater harbinger of directions skill"] = { "HarbingerSkillOnEquipUnique2_4", }, - ["grants summon greater harbinger of focus skill"] = { "HarbingerSkillOnEquipUnique2__3", }, - ["grants summon greater harbinger of storms skill"] = { "HarbingerSkillOnEquipUnique2_5", }, + ["grants summon greater harbinger of focus skill"] = { "DivergentHarbingerSkillOnEquipUnique2__3", "HarbingerSkillOnEquipUnique2__3", }, + ["grants summon greater harbinger of storms skill"] = { "DivergentHarbingerSkillOnEquipUnique2_5", "HarbingerSkillOnEquipUnique2_5", }, ["grants summon greater harbinger of the arcane skill"] = { "HarbingerSkillOnEquipUnique2_1", }, ["grants summon greater harbinger of time skill"] = { "HarbingerSkillOnEquipUnique2_2", }, ["grants summon harbinger of brutality skill"] = { "HarbingerSkillOnEquipUnique__6", }, ["grants summon harbinger of directions skill"] = { "HarbingerSkillOnEquipUnique__4_", }, - ["grants summon harbinger of focus skill"] = { "HarbingerSkillOnEquipUnique__3", }, - ["grants summon harbinger of storms skill"] = { "HarbingerSkillOnEquipUnique__5", }, + ["grants summon harbinger of focus skill"] = { "DivergentHarbingerSkillOnEquipUnique__3", "HarbingerSkillOnEquipUnique__3", }, + ["grants summon harbinger of storms skill"] = { "DivergentHarbingerSkillOnEquipUnique__5", "HarbingerSkillOnEquipUnique__5", }, ["grants summon harbinger of the arcane skill"] = { "HarbingerSkillOnEquipUnique__1", }, ["grants summon harbinger of time skill"] = { "HarbingerSkillOnEquipUnique__2", }, - ["half of your strength is added to your minions"] = { "MinionsGainYourStrengthUnique__1", }, - ["has # abyssal socket"] = { "AbyssJewelSocketImplicit", "AbyssJewelSocketUnique__10", "AbyssJewelSocketUnique__12", "AbyssJewelSocketUnique__3", "AbyssJewelSocketUnique__5", "AbyssJewelSocketUnique__6_", "AbyssJewelSocketUnique__7", "AbyssJewelSocketUnique__8", }, - ["has # abyssal sockets"] = { "AbyssJewelSocketUnique__1", "AbyssJewelSocketUnique__11_", "AbyssJewelSocketUnique__13", "AbyssJewelSocketUnique__14", "AbyssJewelSocketUnique__15", "AbyssJewelSocketUnique__16", "AbyssJewelSocketUnique__17", "AbyssJewelSocketUnique__2", "AbyssJewelSocketUnique__4", "AbyssJewelSocketUnique__9", }, + ["half of your strength is added to your minions"] = { "DivergentMinionsGainYourStrengthUnique__1", "MinionsGainYourStrengthUnique__1", }, + ["has # abyssal socket"] = { "AbyssJewelSocketImplicit", "AbyssJewelSocketUnique__10", "AbyssJewelSocketUnique__12", "AbyssJewelSocketUnique__3", "AbyssJewelSocketUnique__5", "AbyssJewelSocketUnique__6_", "AbyssJewelSocketUnique__7", "AbyssJewelSocketUnique__8", "DivergentAbyssJewelSocketUnique__10", "DivergentAbyssJewelSocketUnique__12", "DivergentAbyssJewelSocketUnique__17", "DivergentAbyssJewelSocketUnique__18", "DivergentAbyssJewelSocketUnique__3", "DivergentAbyssJewelSocketUnique__5", "DivergentAbyssJewelSocketUnique__7", }, + ["has # abyssal sockets"] = { "AbyssJewelSocketUnique__1", "AbyssJewelSocketUnique__11_", "AbyssJewelSocketUnique__13", "AbyssJewelSocketUnique__14", "AbyssJewelSocketUnique__15", "AbyssJewelSocketUnique__16", "AbyssJewelSocketUnique__17", "AbyssJewelSocketUnique__19", "AbyssJewelSocketUnique__2", "AbyssJewelSocketUnique__4", "AbyssJewelSocketUnique__9", "ConsumeAbyssJewelUnique__1", "DivergentAbyssJewelSocketUnique__14", "DivergentAbyssJewelSocketUnique__15", }, ["has # socket"] = { "AmuletHasOneSocket", "BeltHasOneSocket", "HasOneSocketUnique__1", "HasOneSocketUnique__2", "HasOneSocketUnique__3", "QuiverHasOneSocket", "RingHasOneSocket", "TalismanHasOneSocket_", }, - ["has # sockets"] = { "HasSixSocketsUnique__1", "HasThreeSocketsUnique__1_", "HasTwoSocketsUnique__1", }, + ["has # sockets"] = { "HasSixSocketsUnique__1", "HasThreeSocketsUnique__1_", "HasTwoSocketsUnique__1", "HasTwoSocketsUnique__2", }, ["has # white sockets"] = { "ArmourEnchantmentHeistWhiteSockets1__", "WeaponEnchantmentHeistWhiteSockets1_", }, - ["has 1 abyssal socket"] = { "AbyssJewelSocketImplicit", "AbyssJewelSocketUnique__10", "AbyssJewelSocketUnique__12", "AbyssJewelSocketUnique__3", "AbyssJewelSocketUnique__5", "AbyssJewelSocketUnique__6_", "AbyssJewelSocketUnique__7", "AbyssJewelSocketUnique__8", }, + ["has 1 abyssal socket"] = { "AbyssJewelSocketImplicit", "AbyssJewelSocketUnique__10", "AbyssJewelSocketUnique__12", "AbyssJewelSocketUnique__3", "AbyssJewelSocketUnique__5", "AbyssJewelSocketUnique__6_", "AbyssJewelSocketUnique__7", "AbyssJewelSocketUnique__8", "DivergentAbyssJewelSocketUnique__10", "DivergentAbyssJewelSocketUnique__12", "DivergentAbyssJewelSocketUnique__17", "DivergentAbyssJewelSocketUnique__18", "DivergentAbyssJewelSocketUnique__3", "DivergentAbyssJewelSocketUnique__5", "DivergentAbyssJewelSocketUnique__7", }, ["has 1 socket"] = { "AmuletHasOneSocket", "BeltHasOneSocket", "HasOneSocketUnique__1", "HasOneSocketUnique__2", "HasOneSocketUnique__3", "QuiverHasOneSocket", "RingHasOneSocket", "TalismanHasOneSocket_", }, - ["has 2 abyssal sockets"] = { "AbyssJewelSocketUnique__1", "AbyssJewelSocketUnique__11_", "AbyssJewelSocketUnique__13", "AbyssJewelSocketUnique__15", "AbyssJewelSocketUnique__2", "AbyssJewelSocketUnique__4", "AbyssJewelSocketUnique__9", }, - ["has 2 sockets"] = { "HasTwoSocketsUnique__1", }, + ["has 2 abyssal sockets"] = { "AbyssJewelSocketUnique__1", "AbyssJewelSocketUnique__11_", "AbyssJewelSocketUnique__13", "AbyssJewelSocketUnique__15", "AbyssJewelSocketUnique__2", "AbyssJewelSocketUnique__4", "AbyssJewelSocketUnique__9", "DivergentAbyssJewelSocketUnique__14", "DivergentAbyssJewelSocketUnique__15", }, + ["has 2 sockets"] = { "HasTwoSocketsUnique__1", "HasTwoSocketsUnique__2", }, ["has 2 white sockets"] = { "ArmourEnchantmentHeistWhiteSockets1__", "WeaponEnchantmentHeistWhiteSockets1_", }, ["has 3 abyssal sockets"] = { "AbyssJewelSocketUnique__16", }, ["has 3 sockets"] = { "HasThreeSocketsUnique__1_", }, - ["has 4 abyssal sockets"] = { "AbyssJewelSocketUnique__17", }, - ["has 6 abyssal sockets"] = { "AbyssJewelSocketUnique__14", }, + ["has 4 abyssal sockets"] = { "AbyssJewelSocketUnique__17", "ConsumeAbyssJewelUnique__1", }, + ["has 6 abyssal sockets"] = { "AbyssJewelSocketUnique__14", "AbyssJewelSocketUnique__19", }, ["has 6 sockets"] = { "HasSixSocketsUnique__1", }, ["has a crucible passive skill tree"] = { "ItemCanHaveShieldWeaponTreeUnique1", }, ["has a crucible passive skill tree with only support passive skills"] = { "ItemCanHaveSupportGemsOnlyTreeUnique1", }, ["has a two handed sword crucible passive skill tree"] = { "ItemCanHaveTwoHandedSwordWeaponTreeUnique1", }, ["has an additional implicit mod"] = { "DisplayHasAdditionalModUnique__1", }, - ["has consumed # gem"] = { "HungryLoopSupportedByAddedChaosDamage", "HungryLoopSupportedByAddedColdDamage", "HungryLoopSupportedByAddedFireDamage", "HungryLoopSupportedByAddedLightningDamage", "HungryLoopSupportedByAdditionalAccuracy", "HungryLoopSupportedByAnnhilation", "HungryLoopSupportedByArcaneSurge", "HungryLoopSupportedByArchmage", "HungryLoopSupportedByArrowNova", "HungryLoopSupportedByAutomation", "HungryLoopSupportedByAwakenedAddedChaosDamage_", "HungryLoopSupportedByAwakenedAddedColdDamage", "HungryLoopSupportedByAwakenedAddedFireDamage", "HungryLoopSupportedByAwakenedAddedLightningDamage_", "HungryLoopSupportedByAwakenedAncestralCall", "HungryLoopSupportedByAwakenedArrowNova", "HungryLoopSupportedByAwakenedBlasphemy", "HungryLoopSupportedByAwakenedBrutality", "HungryLoopSupportedByAwakenedBurningDamage", "HungryLoopSupportedByAwakenedCastOnCrit", "HungryLoopSupportedByAwakenedCastWhileChannelling", "HungryLoopSupportedByAwakenedChain", "HungryLoopSupportedByAwakenedColdPenetration", "HungryLoopSupportedByAwakenedControlledDestruction", "HungryLoopSupportedByAwakenedCurseOnHit", "HungryLoopSupportedByAwakenedDeadlyAilments", "HungryLoopSupportedByAwakenedElementalFocus", "HungryLoopSupportedByAwakenedEmpower", "HungryLoopSupportedByAwakenedEnhance", "HungryLoopSupportedByAwakenedEnlighten", "HungryLoopSupportedByAwakenedFirePenetration", "HungryLoopSupportedByAwakenedFork", "HungryLoopSupportedByAwakenedGenerosity_", "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_", "HungryLoopSupportedByAwakenedLightningPenetration", "HungryLoopSupportedByAwakenedMeleePhysicalDamage", "HungryLoopSupportedByAwakenedMeleeSplash", "HungryLoopSupportedByAwakenedMinionDamage", "HungryLoopSupportedByAwakenedMultistrike", "HungryLoopSupportedByAwakenedSpellCascade", "HungryLoopSupportedByAwakenedSpellEcho__", "HungryLoopSupportedByAwakenedSwiftAffliction", "HungryLoopSupportedByAwakenedUnboundAilments", "HungryLoopSupportedByAwakenedUnleash", "HungryLoopSupportedByAwakenedViciousProjectiles", "HungryLoopSupportedByAwakenedVoidManipulation", "HungryLoopSupportedByAwakenedWeaponElementalDamage_", "HungryLoopSupportedByBarrage_", "HungryLoopSupportedByBehead", "HungryLoopSupportedByBlasphemy", "HungryLoopSupportedByBlessedCalling", "HungryLoopSupportedByBlind", "HungryLoopSupportedByBloodMagic", "HungryLoopSupportedByBloodlust", "HungryLoopSupportedByBloodsoakedBanner", "HungryLoopSupportedByBloodthirst_", "HungryLoopSupportedByBonechill", "HungryLoopSupportedByBonespire", "HungryLoopSupportedByBrutality", "HungryLoopSupportedByCallToArms", "HungryLoopSupportedByCastOnCrit", "HungryLoopSupportedByCastOnDamageTaken", "HungryLoopSupportedByCastOnDeath", "HungryLoopSupportedByCastOnKill", "HungryLoopSupportedByCastOnWardBreak", "HungryLoopSupportedByCastWhenStunned", "HungryLoopSupportedByCastWhileChannelling", "HungryLoopSupportedByChain", "HungryLoopSupportedByChanceToBleed", "HungryLoopSupportedByChanceToIgnite", "HungryLoopSupportedByChaosAttacks", "HungryLoopSupportedByChargedMines", "HungryLoopSupportedByCloseCombat", "HungryLoopSupportedByClusterTrap_", "HungryLoopSupportedByColdPenetration_", "HungryLoopSupportedByColdToFire_", "HungryLoopSupportedByCompanionship", "HungryLoopSupportedByConcentratedEffect", "HungryLoopSupportedByCongregation", "HungryLoopSupportedByControlledBlaze", "HungryLoopSupportedByControlledDestruction", "HungryLoopSupportedByCooldownRecovery", "HungryLoopSupportedByCorruptingCry", "HungryLoopSupportedByCullTheWeak", "HungryLoopSupportedByCullingStrike", "HungryLoopSupportedByCurseOnHit", "HungryLoopSupportedByCursedGround", "HungryLoopSupportedByDeadlyAilments", "HungryLoopSupportedByDeathmark_", "HungryLoopSupportedByDecay", "HungryLoopSupportedByDevour", "HungryLoopSupportedByDivineBlessing", "HungryLoopSupportedByDivineSentinel", "HungryLoopSupportedByEarthbreaker", "HungryLoopSupportedByEclipse", "HungryLoopSupportedByEdify", "HungryLoopSupportedByEfficacy", "HungryLoopSupportedByEldritchBlasphemy", "HungryLoopSupportedByElementalFocus", "HungryLoopSupportedByElementalPenetration", "HungryLoopSupportedByElementalProliferation", "HungryLoopSupportedByEmpower", "HungryLoopSupportedByEnduranceChargeOnStun", "HungryLoopSupportedByEnergyLeech", "HungryLoopSupportedByEnhance", "HungryLoopSupportedByEnlighten", "HungryLoopSupportedByEternalBlessing", "HungryLoopSupportedByExcommunication", "HungryLoopSupportedByExemplar", "HungryLoopSupportedByExpertRetaliation", "HungryLoopSupportedByFasterAttacks", "HungryLoopSupportedByFasterCast", "HungryLoopSupportedByFasterProjectiles", "HungryLoopSupportedByFeedingFrenzy", "HungryLoopSupportedByFirePenetration", "HungryLoopSupportedByFissure", "HungryLoopSupportedByFistOfWar", "HungryLoopSupportedByFlamewood", "HungryLoopSupportedByFlee", "HungryLoopSupportedByFocusedChannelling", "HungryLoopSupportedByFocussedBallista_", "HungryLoopSupportedByFork", "HungryLoopSupportedByFortify_", "HungryLoopSupportedByFoulgrasp", "HungryLoopSupportedByFragility_", "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", "HungryLoopSupportedByFreshMeat", "HungryLoopSupportedByFrigidBond", "HungryLoopSupportedByFrostmage", "HungryLoopSupportedByGenerosity_", "HungryLoopSupportedByGluttony", "HungryLoopSupportedByGreaterAncestralCall", "HungryLoopSupportedByGreaterChain", "HungryLoopSupportedByGreaterDevour", "HungryLoopSupportedByGreaterFork", "HungryLoopSupportedByGreaterKineticInstability", "HungryLoopSupportedByGreaterMultipleProjectiles", "HungryLoopSupportedByGreaterMultistrike", "HungryLoopSupportedByGreaterSpellCascade", "HungryLoopSupportedByGreaterSpellEcho", "HungryLoopSupportedByGreaterUnleash", "HungryLoopSupportedByGreaterVolley", "HungryLoopSupportedByGuardiansBlessing", "HungryLoopSupportedByHallow", "HungryLoopSupportedByHarrowingThrong", "HungryLoopSupportedByHexBloom", "HungryLoopSupportedByHexpass", "HungryLoopSupportedByHextoad", "HungryLoopSupportedByHiveborn", "HungryLoopSupportedByHypothermia", "HungryLoopSupportedByIceBite", "HungryLoopSupportedByIgniteProliferation__", "HungryLoopSupportedByImmolate", "HungryLoopSupportedByImpale", "HungryLoopSupportedByImpendingDoom", "HungryLoopSupportedByIncreasedArea", "HungryLoopSupportedByIncreasedBurningDamage", "HungryLoopSupportedByIncreasedCriticalDamage", "HungryLoopSupportedByIncreasedCriticalStrikes", "HungryLoopSupportedByIncreasedDuration", "HungryLoopSupportedByIncreasedMinionDamage_", "HungryLoopSupportedByIncreasedMinionLife", "HungryLoopSupportedByIncreasedMinionSpeed", "HungryLoopSupportedByInfernalLegion_", "HungryLoopSupportedByInnervate_", "HungryLoopSupportedByInvention", "HungryLoopSupportedByInvertTheRules", "HungryLoopSupportedByIronGrip", "HungryLoopSupportedByIronWill", "HungryLoopSupportedByItemQuantity", "HungryLoopSupportedByItemRarity", "HungryLoopSupportedByKineticInstability", "HungryLoopSupportedByKnockback", "HungryLoopSupportedByLesserMultipleProjectiles_", "HungryLoopSupportedByLesserPoison_", "HungryLoopSupportedByLethalDose", "HungryLoopSupportedByLifeGainOnHit", "HungryLoopSupportedByLifeLeech", "HungryLoopSupportedByLifetap", "HungryLoopSupportedByLightningPenetration", "HungryLoopSupportedByLivingLightning", "HungryLoopSupportedByLocusMine", "HungryLoopSupportedByMachinations", "HungryLoopSupportedByMagnetism", "HungryLoopSupportedByMaim", "HungryLoopSupportedByManaLeech", "HungryLoopSupportedByManaforgedArrows", "HungryLoopSupportedByMarkOnHit", "HungryLoopSupportedByMeatShield", "HungryLoopSupportedByMeleeDamageOnFullLife", "HungryLoopSupportedByMeleePhysicalDamage", "HungryLoopSupportedByMeleeSplash_", "HungryLoopSupportedByMinefield", "HungryLoopSupportedByMinionPact", "HungryLoopSupportedByMirageArcher_", "HungryLoopSupportedByMultiTotem", "HungryLoopSupportedByMultiTrap", "HungryLoopSupportedByMulticast", "HungryLoopSupportedByMultistrike", "HungryLoopSupportedByNightblade", "HungryLoopSupportedByOnslaught_", "HungryLoopSupportedByOvercharge", "HungryLoopSupportedByOverexertion", "HungryLoopSupportedByOverheat", "HungryLoopSupportedByOverloadedIntensity", "HungryLoopSupportedByPacifism", "HungryLoopSupportedByParallelProjectiles", "HungryLoopSupportedByPhysicalProjectileAttackDamage", "HungryLoopSupportedByPhysicalToLightning_", "HungryLoopSupportedByPierce_", "HungryLoopSupportedByPinpoint", "HungryLoopSupportedByPointBlank", "HungryLoopSupportedByPoison", "HungryLoopSupportedByPowerChargeOnCrit_", "HungryLoopSupportedByPrismaticBurst", "HungryLoopSupportedByPulverise", "HungryLoopSupportedByPyre", "HungryLoopSupportedByRage_", "HungryLoopSupportedByRangedAttackTotem", "HungryLoopSupportedByRapidDecay", "HungryLoopSupportedByReducedBlockChance", "HungryLoopSupportedByReducedDuration", "HungryLoopSupportedByReducedManaCost", "HungryLoopSupportedByRemoteMine", "HungryLoopSupportedByRemoteMine2_", "HungryLoopSupportedByReturningProjectiles", "HungryLoopSupportedByRupture", "HungryLoopSupportedByRuthless_", "HungryLoopSupportedBySacredWisps", "HungryLoopSupportedBySacrifice", "HungryLoopSupportedBySadism", "HungryLoopSupportedByScornfulHerald", "HungryLoopSupportedBySecondWind_", "HungryLoopSupportedByShockwave_", "HungryLoopSupportedBySlowerProjectiles", "HungryLoopSupportedBySpellCascade", "HungryLoopSupportedBySpellFocus", "HungryLoopSupportedBySpellTotem", "HungryLoopSupportedBySpellblade", "HungryLoopSupportedBySpiritStrike", "HungryLoopSupportedByStormBarrier", "HungryLoopSupportedByStun", "HungryLoopSupportedBySummonElementalResistance", "HungryLoopSupportedBySummonGhostOnKill", "HungryLoopSupportedBySwiftAssembly", "HungryLoopSupportedBySwiftBrand", "HungryLoopSupportedByTornados", "HungryLoopSupportedByTransfusion", "HungryLoopSupportedByTrap", "HungryLoopSupportedByTrapAndMineDamage", "HungryLoopSupportedByTrapCooldown", "HungryLoopSupportedByTrauma", "HungryLoopSupportedByTrinity", "HungryLoopSupportedByUnboundAilments", "HungryLoopSupportedByUnholyTrinity", "HungryLoopSupportedByUnleash", "HungryLoopSupportedByUrgentOrders", "HungryLoopSupportedByVaalSacrifice", "HungryLoopSupportedByVaalTemptation", "HungryLoopSupportedByVileToxins_", "HungryLoopSupportedByVoidManipulation", "HungryLoopSupportedByVoidShockwave", "HungryLoopSupportedByVoidstorm", "HungryLoopSupportedByVolatility", "HungryLoopSupportedByWard", "HungryLoopSupportedByWeaponElementalDamage", }, - ["has consumed 1 gem"] = { "HungryLoopSupportedByAddedChaosDamage", "HungryLoopSupportedByAddedColdDamage", "HungryLoopSupportedByAddedFireDamage", "HungryLoopSupportedByAddedLightningDamage", "HungryLoopSupportedByAdditionalAccuracy", "HungryLoopSupportedByAnnhilation", "HungryLoopSupportedByArcaneSurge", "HungryLoopSupportedByArchmage", "HungryLoopSupportedByArrowNova", "HungryLoopSupportedByAutomation", "HungryLoopSupportedByAwakenedAddedChaosDamage_", "HungryLoopSupportedByAwakenedAddedColdDamage", "HungryLoopSupportedByAwakenedAddedFireDamage", "HungryLoopSupportedByAwakenedAddedLightningDamage_", "HungryLoopSupportedByAwakenedAncestralCall", "HungryLoopSupportedByAwakenedArrowNova", "HungryLoopSupportedByAwakenedBlasphemy", "HungryLoopSupportedByAwakenedBrutality", "HungryLoopSupportedByAwakenedBurningDamage", "HungryLoopSupportedByAwakenedCastOnCrit", "HungryLoopSupportedByAwakenedCastWhileChannelling", "HungryLoopSupportedByAwakenedChain", "HungryLoopSupportedByAwakenedColdPenetration", "HungryLoopSupportedByAwakenedControlledDestruction", "HungryLoopSupportedByAwakenedCurseOnHit", "HungryLoopSupportedByAwakenedDeadlyAilments", "HungryLoopSupportedByAwakenedElementalFocus", "HungryLoopSupportedByAwakenedEmpower", "HungryLoopSupportedByAwakenedEnhance", "HungryLoopSupportedByAwakenedEnlighten", "HungryLoopSupportedByAwakenedFirePenetration", "HungryLoopSupportedByAwakenedFork", "HungryLoopSupportedByAwakenedGenerosity_", "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_", "HungryLoopSupportedByAwakenedLightningPenetration", "HungryLoopSupportedByAwakenedMeleePhysicalDamage", "HungryLoopSupportedByAwakenedMeleeSplash", "HungryLoopSupportedByAwakenedMinionDamage", "HungryLoopSupportedByAwakenedMultistrike", "HungryLoopSupportedByAwakenedSpellCascade", "HungryLoopSupportedByAwakenedSpellEcho__", "HungryLoopSupportedByAwakenedSwiftAffliction", "HungryLoopSupportedByAwakenedUnboundAilments", "HungryLoopSupportedByAwakenedUnleash", "HungryLoopSupportedByAwakenedViciousProjectiles", "HungryLoopSupportedByAwakenedVoidManipulation", "HungryLoopSupportedByAwakenedWeaponElementalDamage_", "HungryLoopSupportedByBarrage_", "HungryLoopSupportedByBehead", "HungryLoopSupportedByBlasphemy", "HungryLoopSupportedByBlessedCalling", "HungryLoopSupportedByBlind", "HungryLoopSupportedByBloodMagic", "HungryLoopSupportedByBloodlust", "HungryLoopSupportedByBloodsoakedBanner", "HungryLoopSupportedByBloodthirst_", "HungryLoopSupportedByBonechill", "HungryLoopSupportedByBonespire", "HungryLoopSupportedByBrutality", "HungryLoopSupportedByCallToArms", "HungryLoopSupportedByCastOnCrit", "HungryLoopSupportedByCastOnDamageTaken", "HungryLoopSupportedByCastOnDeath", "HungryLoopSupportedByCastOnKill", "HungryLoopSupportedByCastOnWardBreak", "HungryLoopSupportedByCastWhenStunned", "HungryLoopSupportedByCastWhileChannelling", "HungryLoopSupportedByChain", "HungryLoopSupportedByChanceToBleed", "HungryLoopSupportedByChanceToIgnite", "HungryLoopSupportedByChaosAttacks", "HungryLoopSupportedByChargedMines", "HungryLoopSupportedByCloseCombat", "HungryLoopSupportedByClusterTrap_", "HungryLoopSupportedByColdPenetration_", "HungryLoopSupportedByColdToFire_", "HungryLoopSupportedByCompanionship", "HungryLoopSupportedByConcentratedEffect", "HungryLoopSupportedByCongregation", "HungryLoopSupportedByControlledBlaze", "HungryLoopSupportedByControlledDestruction", "HungryLoopSupportedByCooldownRecovery", "HungryLoopSupportedByCorruptingCry", "HungryLoopSupportedByCullTheWeak", "HungryLoopSupportedByCullingStrike", "HungryLoopSupportedByCurseOnHit", "HungryLoopSupportedByCursedGround", "HungryLoopSupportedByDeadlyAilments", "HungryLoopSupportedByDeathmark_", "HungryLoopSupportedByDecay", "HungryLoopSupportedByDevour", "HungryLoopSupportedByDivineBlessing", "HungryLoopSupportedByDivineSentinel", "HungryLoopSupportedByEarthbreaker", "HungryLoopSupportedByEclipse", "HungryLoopSupportedByEdify", "HungryLoopSupportedByEfficacy", "HungryLoopSupportedByEldritchBlasphemy", "HungryLoopSupportedByElementalFocus", "HungryLoopSupportedByElementalPenetration", "HungryLoopSupportedByElementalProliferation", "HungryLoopSupportedByEmpower", "HungryLoopSupportedByEnduranceChargeOnStun", "HungryLoopSupportedByEnergyLeech", "HungryLoopSupportedByEnhance", "HungryLoopSupportedByEnlighten", "HungryLoopSupportedByEternalBlessing", "HungryLoopSupportedByExcommunication", "HungryLoopSupportedByExemplar", "HungryLoopSupportedByExpertRetaliation", "HungryLoopSupportedByFasterAttacks", "HungryLoopSupportedByFasterCast", "HungryLoopSupportedByFasterProjectiles", "HungryLoopSupportedByFeedingFrenzy", "HungryLoopSupportedByFirePenetration", "HungryLoopSupportedByFissure", "HungryLoopSupportedByFistOfWar", "HungryLoopSupportedByFlamewood", "HungryLoopSupportedByFlee", "HungryLoopSupportedByFocusedChannelling", "HungryLoopSupportedByFocussedBallista_", "HungryLoopSupportedByFork", "HungryLoopSupportedByFortify_", "HungryLoopSupportedByFoulgrasp", "HungryLoopSupportedByFragility_", "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", "HungryLoopSupportedByFreshMeat", "HungryLoopSupportedByFrigidBond", "HungryLoopSupportedByFrostmage", "HungryLoopSupportedByGenerosity_", "HungryLoopSupportedByGluttony", "HungryLoopSupportedByGreaterAncestralCall", "HungryLoopSupportedByGreaterChain", "HungryLoopSupportedByGreaterDevour", "HungryLoopSupportedByGreaterFork", "HungryLoopSupportedByGreaterKineticInstability", "HungryLoopSupportedByGreaterMultipleProjectiles", "HungryLoopSupportedByGreaterMultistrike", "HungryLoopSupportedByGreaterSpellCascade", "HungryLoopSupportedByGreaterSpellEcho", "HungryLoopSupportedByGreaterUnleash", "HungryLoopSupportedByGreaterVolley", "HungryLoopSupportedByGuardiansBlessing", "HungryLoopSupportedByHallow", "HungryLoopSupportedByHarrowingThrong", "HungryLoopSupportedByHexBloom", "HungryLoopSupportedByHexpass", "HungryLoopSupportedByHextoad", "HungryLoopSupportedByHiveborn", "HungryLoopSupportedByHypothermia", "HungryLoopSupportedByIceBite", "HungryLoopSupportedByIgniteProliferation__", "HungryLoopSupportedByImmolate", "HungryLoopSupportedByImpale", "HungryLoopSupportedByImpendingDoom", "HungryLoopSupportedByIncreasedArea", "HungryLoopSupportedByIncreasedBurningDamage", "HungryLoopSupportedByIncreasedCriticalDamage", "HungryLoopSupportedByIncreasedCriticalStrikes", "HungryLoopSupportedByIncreasedDuration", "HungryLoopSupportedByIncreasedMinionDamage_", "HungryLoopSupportedByIncreasedMinionLife", "HungryLoopSupportedByIncreasedMinionSpeed", "HungryLoopSupportedByInfernalLegion_", "HungryLoopSupportedByInnervate_", "HungryLoopSupportedByInvention", "HungryLoopSupportedByInvertTheRules", "HungryLoopSupportedByIronGrip", "HungryLoopSupportedByIronWill", "HungryLoopSupportedByItemQuantity", "HungryLoopSupportedByItemRarity", "HungryLoopSupportedByKineticInstability", "HungryLoopSupportedByKnockback", "HungryLoopSupportedByLesserMultipleProjectiles_", "HungryLoopSupportedByLesserPoison_", "HungryLoopSupportedByLethalDose", "HungryLoopSupportedByLifeGainOnHit", "HungryLoopSupportedByLifeLeech", "HungryLoopSupportedByLifetap", "HungryLoopSupportedByLightningPenetration", "HungryLoopSupportedByLivingLightning", "HungryLoopSupportedByLocusMine", "HungryLoopSupportedByMachinations", "HungryLoopSupportedByMagnetism", "HungryLoopSupportedByMaim", "HungryLoopSupportedByManaLeech", "HungryLoopSupportedByManaforgedArrows", "HungryLoopSupportedByMarkOnHit", "HungryLoopSupportedByMeatShield", "HungryLoopSupportedByMeleeDamageOnFullLife", "HungryLoopSupportedByMeleePhysicalDamage", "HungryLoopSupportedByMeleeSplash_", "HungryLoopSupportedByMinefield", "HungryLoopSupportedByMinionPact", "HungryLoopSupportedByMirageArcher_", "HungryLoopSupportedByMultiTotem", "HungryLoopSupportedByMultiTrap", "HungryLoopSupportedByMulticast", "HungryLoopSupportedByMultistrike", "HungryLoopSupportedByNightblade", "HungryLoopSupportedByOnslaught_", "HungryLoopSupportedByOvercharge", "HungryLoopSupportedByOverexertion", "HungryLoopSupportedByOverheat", "HungryLoopSupportedByOverloadedIntensity", "HungryLoopSupportedByPacifism", "HungryLoopSupportedByParallelProjectiles", "HungryLoopSupportedByPhysicalProjectileAttackDamage", "HungryLoopSupportedByPhysicalToLightning_", "HungryLoopSupportedByPierce_", "HungryLoopSupportedByPinpoint", "HungryLoopSupportedByPointBlank", "HungryLoopSupportedByPoison", "HungryLoopSupportedByPowerChargeOnCrit_", "HungryLoopSupportedByPrismaticBurst", "HungryLoopSupportedByPulverise", "HungryLoopSupportedByPyre", "HungryLoopSupportedByRage_", "HungryLoopSupportedByRangedAttackTotem", "HungryLoopSupportedByRapidDecay", "HungryLoopSupportedByReducedBlockChance", "HungryLoopSupportedByReducedDuration", "HungryLoopSupportedByReducedManaCost", "HungryLoopSupportedByRemoteMine", "HungryLoopSupportedByRemoteMine2_", "HungryLoopSupportedByReturningProjectiles", "HungryLoopSupportedByRupture", "HungryLoopSupportedByRuthless_", "HungryLoopSupportedBySacredWisps", "HungryLoopSupportedBySacrifice", "HungryLoopSupportedBySadism", "HungryLoopSupportedByScornfulHerald", "HungryLoopSupportedBySecondWind_", "HungryLoopSupportedByShockwave_", "HungryLoopSupportedBySlowerProjectiles", "HungryLoopSupportedBySpellCascade", "HungryLoopSupportedBySpellFocus", "HungryLoopSupportedBySpellTotem", "HungryLoopSupportedBySpellblade", "HungryLoopSupportedBySpiritStrike", "HungryLoopSupportedByStormBarrier", "HungryLoopSupportedByStun", "HungryLoopSupportedBySummonElementalResistance", "HungryLoopSupportedBySummonGhostOnKill", "HungryLoopSupportedBySwiftAssembly", "HungryLoopSupportedBySwiftBrand", "HungryLoopSupportedByTornados", "HungryLoopSupportedByTransfusion", "HungryLoopSupportedByTrap", "HungryLoopSupportedByTrapAndMineDamage", "HungryLoopSupportedByTrapCooldown", "HungryLoopSupportedByTrauma", "HungryLoopSupportedByTrinity", "HungryLoopSupportedByUnboundAilments", "HungryLoopSupportedByUnholyTrinity", "HungryLoopSupportedByUnleash", "HungryLoopSupportedByUrgentOrders", "HungryLoopSupportedByVaalSacrifice", "HungryLoopSupportedByVaalTemptation", "HungryLoopSupportedByVileToxins_", "HungryLoopSupportedByVoidManipulation", "HungryLoopSupportedByVoidShockwave", "HungryLoopSupportedByVoidstorm", "HungryLoopSupportedByVolatility", "HungryLoopSupportedByWard", "HungryLoopSupportedByWeaponElementalDamage", }, + ["has consumed # gem"] = { "HungryLoopSupportedByAddedChaosDamage", "HungryLoopSupportedByAddedColdDamage", "HungryLoopSupportedByAddedFireDamage", "HungryLoopSupportedByAddedLightningDamage", "HungryLoopSupportedByAdditionalAccuracy", "HungryLoopSupportedByAnnhilation", "HungryLoopSupportedByArcaneSurge", "HungryLoopSupportedByArchmage", "HungryLoopSupportedByArrowNova", "HungryLoopSupportedByAutomation", "HungryLoopSupportedByAwakenedAddedChaosDamage_", "HungryLoopSupportedByAwakenedAddedColdDamage", "HungryLoopSupportedByAwakenedAddedFireDamage", "HungryLoopSupportedByAwakenedAddedLightningDamage_", "HungryLoopSupportedByAwakenedAncestralCall", "HungryLoopSupportedByAwakenedArrowNova", "HungryLoopSupportedByAwakenedBlasphemy", "HungryLoopSupportedByAwakenedBrutality", "HungryLoopSupportedByAwakenedBurningDamage", "HungryLoopSupportedByAwakenedCastOnCrit", "HungryLoopSupportedByAwakenedCastWhileChannelling", "HungryLoopSupportedByAwakenedChain", "HungryLoopSupportedByAwakenedColdPenetration", "HungryLoopSupportedByAwakenedControlledDestruction", "HungryLoopSupportedByAwakenedCurseOnHit", "HungryLoopSupportedByAwakenedDeadlyAilments", "HungryLoopSupportedByAwakenedElementalFocus", "HungryLoopSupportedByAwakenedEmpower", "HungryLoopSupportedByAwakenedEnhance", "HungryLoopSupportedByAwakenedEnlighten", "HungryLoopSupportedByAwakenedFirePenetration", "HungryLoopSupportedByAwakenedFork", "HungryLoopSupportedByAwakenedGenerosity_", "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_", "HungryLoopSupportedByAwakenedLightningPenetration", "HungryLoopSupportedByAwakenedMeleePhysicalDamage", "HungryLoopSupportedByAwakenedMeleeSplash", "HungryLoopSupportedByAwakenedMinionDamage", "HungryLoopSupportedByAwakenedMultistrike", "HungryLoopSupportedByAwakenedSpellCascade", "HungryLoopSupportedByAwakenedSpellEcho__", "HungryLoopSupportedByAwakenedSwiftAffliction", "HungryLoopSupportedByAwakenedUnboundAilments", "HungryLoopSupportedByAwakenedUnleash", "HungryLoopSupportedByAwakenedViciousProjectiles", "HungryLoopSupportedByAwakenedVoidManipulation", "HungryLoopSupportedByAwakenedWeaponElementalDamage_", "HungryLoopSupportedByBarrage_", "HungryLoopSupportedByBehead", "HungryLoopSupportedByBlasphemy", "HungryLoopSupportedByBlessedCalling", "HungryLoopSupportedByBlind", "HungryLoopSupportedByBloodMagic", "HungryLoopSupportedByBloodlust", "HungryLoopSupportedByBloodsoakedBanner", "HungryLoopSupportedByBloodthirst_", "HungryLoopSupportedByBonechill", "HungryLoopSupportedByBonespire", "HungryLoopSupportedByBrutality", "HungryLoopSupportedByCallToArms", "HungryLoopSupportedByCastOnCrit", "HungryLoopSupportedByCastOnDamageTaken", "HungryLoopSupportedByCastOnDeath", "HungryLoopSupportedByCastOnKill", "HungryLoopSupportedByCastOnWardBreak", "HungryLoopSupportedByCastWhenStunned", "HungryLoopSupportedByCastWhileChannelling", "HungryLoopSupportedByChain", "HungryLoopSupportedByChanceToBleed", "HungryLoopSupportedByChanceToIgnite", "HungryLoopSupportedByChaosAttacks", "HungryLoopSupportedByChargedMines", "HungryLoopSupportedByCloseCombat", "HungryLoopSupportedByClusterTrap_", "HungryLoopSupportedByColdPenetration_", "HungryLoopSupportedByColdToFire_", "HungryLoopSupportedByCompanionship", "HungryLoopSupportedByConcentratedEffect", "HungryLoopSupportedByCongregation", "HungryLoopSupportedByControlledBlaze", "HungryLoopSupportedByControlledDestruction", "HungryLoopSupportedByCooldownRecovery", "HungryLoopSupportedByCorruptingCry", "HungryLoopSupportedByCrustaceousGrasp", "HungryLoopSupportedByCrystalfall", "HungryLoopSupportedByCullTheWeak", "HungryLoopSupportedByCullingStrike", "HungryLoopSupportedByCurseOnHit", "HungryLoopSupportedByCursedGround", "HungryLoopSupportedByDeadlyAilments", "HungryLoopSupportedByDeathmark_", "HungryLoopSupportedByDecay", "HungryLoopSupportedByDevour", "HungryLoopSupportedByDivineBlessing", "HungryLoopSupportedByDivineSentinel", "HungryLoopSupportedByEarthbreaker", "HungryLoopSupportedByEclipse", "HungryLoopSupportedByEdify", "HungryLoopSupportedByEfficacy", "HungryLoopSupportedByEldritchBlasphemy", "HungryLoopSupportedByElementalFocus", "HungryLoopSupportedByElementalPenetration", "HungryLoopSupportedByElementalProliferation", "HungryLoopSupportedByEmpower", "HungryLoopSupportedByEnduranceChargeOnStun", "HungryLoopSupportedByEnergyLeech", "HungryLoopSupportedByEnhance", "HungryLoopSupportedByEnlighten", "HungryLoopSupportedByEternalBlessing", "HungryLoopSupportedByExcommunication", "HungryLoopSupportedByExemplar", "HungryLoopSupportedByExpertRetaliation", "HungryLoopSupportedByFasterAttacks", "HungryLoopSupportedByFasterCast", "HungryLoopSupportedByFasterProjectiles", "HungryLoopSupportedByFeedingFrenzy", "HungryLoopSupportedByFirePenetration", "HungryLoopSupportedByFissure", "HungryLoopSupportedByFistOfWar", "HungryLoopSupportedByFlamewood", "HungryLoopSupportedByFlee", "HungryLoopSupportedByFocusedChannelling", "HungryLoopSupportedByFocussedBallista_", "HungryLoopSupportedByFork", "HungryLoopSupportedByFortify_", "HungryLoopSupportedByFoulgrasp", "HungryLoopSupportedByFragility_", "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", "HungryLoopSupportedByFreshMeat", "HungryLoopSupportedByFrigidBond", "HungryLoopSupportedByFrostmage", "HungryLoopSupportedByGenerosity_", "HungryLoopSupportedByGluttony", "HungryLoopSupportedByGreaterAncestralCall", "HungryLoopSupportedByGreaterChain", "HungryLoopSupportedByGreaterDevour", "HungryLoopSupportedByGreaterFork", "HungryLoopSupportedByGreaterKineticInstability", "HungryLoopSupportedByGreaterMultipleProjectiles", "HungryLoopSupportedByGreaterMultistrike", "HungryLoopSupportedByGreaterSpellCascade", "HungryLoopSupportedByGreaterSpellEcho", "HungryLoopSupportedByGreaterUnleash", "HungryLoopSupportedByGreaterVolley", "HungryLoopSupportedByGuardiansBlessing", "HungryLoopSupportedByHallow", "HungryLoopSupportedByHarrowingThrong", "HungryLoopSupportedByHexBloom", "HungryLoopSupportedByHexpass", "HungryLoopSupportedByHextoad", "HungryLoopSupportedByHiveborn", "HungryLoopSupportedByHypothermia", "HungryLoopSupportedByIceBite", "HungryLoopSupportedByIgniteProliferation__", "HungryLoopSupportedByImmolate", "HungryLoopSupportedByImpale", "HungryLoopSupportedByImpendingDoom", "HungryLoopSupportedByIncreasedArea", "HungryLoopSupportedByIncreasedBurningDamage", "HungryLoopSupportedByIncreasedCriticalDamage", "HungryLoopSupportedByIncreasedCriticalStrikes", "HungryLoopSupportedByIncreasedDuration", "HungryLoopSupportedByIncreasedMinionDamage_", "HungryLoopSupportedByIncreasedMinionLife", "HungryLoopSupportedByIncreasedMinionSpeed", "HungryLoopSupportedByInfernalLegion_", "HungryLoopSupportedByInnervate_", "HungryLoopSupportedByInvention", "HungryLoopSupportedByInvertTheRules", "HungryLoopSupportedByIronGrip", "HungryLoopSupportedByIronWill", "HungryLoopSupportedByItemQuantity", "HungryLoopSupportedByItemRarity", "HungryLoopSupportedByKineticInstability", "HungryLoopSupportedByKnockback", "HungryLoopSupportedByLesserMultipleProjectiles_", "HungryLoopSupportedByLesserPoison_", "HungryLoopSupportedByLethalDose", "HungryLoopSupportedByLifeGainOnHit", "HungryLoopSupportedByLifeLeech", "HungryLoopSupportedByLifetap", "HungryLoopSupportedByLightningPenetration", "HungryLoopSupportedByLivingLightning", "HungryLoopSupportedByLocusMine", "HungryLoopSupportedByMachinations", "HungryLoopSupportedByMagnetism", "HungryLoopSupportedByMaim", "HungryLoopSupportedByManaLeech", "HungryLoopSupportedByManaforgedArrows", "HungryLoopSupportedByMarkOnHit", "HungryLoopSupportedByMeatShield", "HungryLoopSupportedByMeleeDamageOnFullLife", "HungryLoopSupportedByMeleePhysicalDamage", "HungryLoopSupportedByMeleeSplash_", "HungryLoopSupportedByMinefield", "HungryLoopSupportedByMinionPact", "HungryLoopSupportedByMirageArcher_", "HungryLoopSupportedByMultiTotem", "HungryLoopSupportedByMultiTrap", "HungryLoopSupportedByMulticast", "HungryLoopSupportedByMultistrike", "HungryLoopSupportedByNightblade", "HungryLoopSupportedByOnslaught_", "HungryLoopSupportedByOvercharge", "HungryLoopSupportedByOverexertion", "HungryLoopSupportedByOverheat", "HungryLoopSupportedByOverloadedIntensity", "HungryLoopSupportedByPacifism", "HungryLoopSupportedByParallelProjectiles", "HungryLoopSupportedByPhysicalProjectileAttackDamage", "HungryLoopSupportedByPhysicalToLightning_", "HungryLoopSupportedByPierce_", "HungryLoopSupportedByPinpoint", "HungryLoopSupportedByPointBlank", "HungryLoopSupportedByPoison", "HungryLoopSupportedByPowerChargeOnCrit_", "HungryLoopSupportedByPrismaticBurst", "HungryLoopSupportedByPulverise", "HungryLoopSupportedByPyre", "HungryLoopSupportedByRage_", "HungryLoopSupportedByRangedAttackTotem", "HungryLoopSupportedByRapidDecay", "HungryLoopSupportedByReducedBlockChance", "HungryLoopSupportedByReducedDuration", "HungryLoopSupportedByReducedManaCost", "HungryLoopSupportedByRemoteMine", "HungryLoopSupportedByRemoteMine2_", "HungryLoopSupportedByReturningProjectiles", "HungryLoopSupportedByRupture", "HungryLoopSupportedByRuthless_", "HungryLoopSupportedBySacredWisps", "HungryLoopSupportedBySacrifice", "HungryLoopSupportedBySadism", "HungryLoopSupportedByScornfulHerald", "HungryLoopSupportedBySecondWind_", "HungryLoopSupportedByShockwave_", "HungryLoopSupportedBySlowerProjectiles", "HungryLoopSupportedBySpellCascade", "HungryLoopSupportedBySpellFocus", "HungryLoopSupportedBySpellTotem", "HungryLoopSupportedBySpellblade", "HungryLoopSupportedBySpiritStrike", "HungryLoopSupportedByStormBarrier", "HungryLoopSupportedByStun", "HungryLoopSupportedBySummonElementalResistance", "HungryLoopSupportedBySummonGhostOnKill", "HungryLoopSupportedBySwiftAssembly", "HungryLoopSupportedBySwiftBrand", "HungryLoopSupportedByTornados", "HungryLoopSupportedByTransfusion", "HungryLoopSupportedByTrap", "HungryLoopSupportedByTrapAndMineDamage", "HungryLoopSupportedByTrapCooldown", "HungryLoopSupportedByTrauma", "HungryLoopSupportedByTrinity", "HungryLoopSupportedByUnboundAilments", "HungryLoopSupportedByUnholyTrinity", "HungryLoopSupportedByUnleash", "HungryLoopSupportedByUrgentOrders", "HungryLoopSupportedByVaalSacrifice", "HungryLoopSupportedByVaalTemptation", "HungryLoopSupportedByVileToxins_", "HungryLoopSupportedByVoidManipulation", "HungryLoopSupportedByVoidShockwave", "HungryLoopSupportedByVoidstorm", "HungryLoopSupportedByVolatility", "HungryLoopSupportedByWard", "HungryLoopSupportedByWeaponElementalDamage", }, + ["has consumed 1 gem"] = { "HungryLoopSupportedByAddedChaosDamage", "HungryLoopSupportedByAddedColdDamage", "HungryLoopSupportedByAddedFireDamage", "HungryLoopSupportedByAddedLightningDamage", "HungryLoopSupportedByAdditionalAccuracy", "HungryLoopSupportedByAnnhilation", "HungryLoopSupportedByArcaneSurge", "HungryLoopSupportedByArchmage", "HungryLoopSupportedByArrowNova", "HungryLoopSupportedByAutomation", "HungryLoopSupportedByAwakenedAddedChaosDamage_", "HungryLoopSupportedByAwakenedAddedColdDamage", "HungryLoopSupportedByAwakenedAddedFireDamage", "HungryLoopSupportedByAwakenedAddedLightningDamage_", "HungryLoopSupportedByAwakenedAncestralCall", "HungryLoopSupportedByAwakenedArrowNova", "HungryLoopSupportedByAwakenedBlasphemy", "HungryLoopSupportedByAwakenedBrutality", "HungryLoopSupportedByAwakenedBurningDamage", "HungryLoopSupportedByAwakenedCastOnCrit", "HungryLoopSupportedByAwakenedCastWhileChannelling", "HungryLoopSupportedByAwakenedChain", "HungryLoopSupportedByAwakenedColdPenetration", "HungryLoopSupportedByAwakenedControlledDestruction", "HungryLoopSupportedByAwakenedCurseOnHit", "HungryLoopSupportedByAwakenedDeadlyAilments", "HungryLoopSupportedByAwakenedElementalFocus", "HungryLoopSupportedByAwakenedEmpower", "HungryLoopSupportedByAwakenedEnhance", "HungryLoopSupportedByAwakenedEnlighten", "HungryLoopSupportedByAwakenedFirePenetration", "HungryLoopSupportedByAwakenedFork", "HungryLoopSupportedByAwakenedGenerosity_", "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_", "HungryLoopSupportedByAwakenedLightningPenetration", "HungryLoopSupportedByAwakenedMeleePhysicalDamage", "HungryLoopSupportedByAwakenedMeleeSplash", "HungryLoopSupportedByAwakenedMinionDamage", "HungryLoopSupportedByAwakenedMultistrike", "HungryLoopSupportedByAwakenedSpellCascade", "HungryLoopSupportedByAwakenedSpellEcho__", "HungryLoopSupportedByAwakenedSwiftAffliction", "HungryLoopSupportedByAwakenedUnboundAilments", "HungryLoopSupportedByAwakenedUnleash", "HungryLoopSupportedByAwakenedViciousProjectiles", "HungryLoopSupportedByAwakenedVoidManipulation", "HungryLoopSupportedByAwakenedWeaponElementalDamage_", "HungryLoopSupportedByBarrage_", "HungryLoopSupportedByBehead", "HungryLoopSupportedByBlasphemy", "HungryLoopSupportedByBlessedCalling", "HungryLoopSupportedByBlind", "HungryLoopSupportedByBloodMagic", "HungryLoopSupportedByBloodlust", "HungryLoopSupportedByBloodsoakedBanner", "HungryLoopSupportedByBloodthirst_", "HungryLoopSupportedByBonechill", "HungryLoopSupportedByBonespire", "HungryLoopSupportedByBrutality", "HungryLoopSupportedByCallToArms", "HungryLoopSupportedByCastOnCrit", "HungryLoopSupportedByCastOnDamageTaken", "HungryLoopSupportedByCastOnDeath", "HungryLoopSupportedByCastOnKill", "HungryLoopSupportedByCastOnWardBreak", "HungryLoopSupportedByCastWhenStunned", "HungryLoopSupportedByCastWhileChannelling", "HungryLoopSupportedByChain", "HungryLoopSupportedByChanceToBleed", "HungryLoopSupportedByChanceToIgnite", "HungryLoopSupportedByChaosAttacks", "HungryLoopSupportedByChargedMines", "HungryLoopSupportedByCloseCombat", "HungryLoopSupportedByClusterTrap_", "HungryLoopSupportedByColdPenetration_", "HungryLoopSupportedByColdToFire_", "HungryLoopSupportedByCompanionship", "HungryLoopSupportedByConcentratedEffect", "HungryLoopSupportedByCongregation", "HungryLoopSupportedByControlledBlaze", "HungryLoopSupportedByControlledDestruction", "HungryLoopSupportedByCooldownRecovery", "HungryLoopSupportedByCorruptingCry", "HungryLoopSupportedByCrustaceousGrasp", "HungryLoopSupportedByCrystalfall", "HungryLoopSupportedByCullTheWeak", "HungryLoopSupportedByCullingStrike", "HungryLoopSupportedByCurseOnHit", "HungryLoopSupportedByCursedGround", "HungryLoopSupportedByDeadlyAilments", "HungryLoopSupportedByDeathmark_", "HungryLoopSupportedByDecay", "HungryLoopSupportedByDevour", "HungryLoopSupportedByDivineBlessing", "HungryLoopSupportedByDivineSentinel", "HungryLoopSupportedByEarthbreaker", "HungryLoopSupportedByEclipse", "HungryLoopSupportedByEdify", "HungryLoopSupportedByEfficacy", "HungryLoopSupportedByEldritchBlasphemy", "HungryLoopSupportedByElementalFocus", "HungryLoopSupportedByElementalPenetration", "HungryLoopSupportedByElementalProliferation", "HungryLoopSupportedByEmpower", "HungryLoopSupportedByEnduranceChargeOnStun", "HungryLoopSupportedByEnergyLeech", "HungryLoopSupportedByEnhance", "HungryLoopSupportedByEnlighten", "HungryLoopSupportedByEternalBlessing", "HungryLoopSupportedByExcommunication", "HungryLoopSupportedByExemplar", "HungryLoopSupportedByExpertRetaliation", "HungryLoopSupportedByFasterAttacks", "HungryLoopSupportedByFasterCast", "HungryLoopSupportedByFasterProjectiles", "HungryLoopSupportedByFeedingFrenzy", "HungryLoopSupportedByFirePenetration", "HungryLoopSupportedByFissure", "HungryLoopSupportedByFistOfWar", "HungryLoopSupportedByFlamewood", "HungryLoopSupportedByFlee", "HungryLoopSupportedByFocusedChannelling", "HungryLoopSupportedByFocussedBallista_", "HungryLoopSupportedByFork", "HungryLoopSupportedByFortify_", "HungryLoopSupportedByFoulgrasp", "HungryLoopSupportedByFragility_", "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", "HungryLoopSupportedByFreshMeat", "HungryLoopSupportedByFrigidBond", "HungryLoopSupportedByFrostmage", "HungryLoopSupportedByGenerosity_", "HungryLoopSupportedByGluttony", "HungryLoopSupportedByGreaterAncestralCall", "HungryLoopSupportedByGreaterChain", "HungryLoopSupportedByGreaterDevour", "HungryLoopSupportedByGreaterFork", "HungryLoopSupportedByGreaterKineticInstability", "HungryLoopSupportedByGreaterMultipleProjectiles", "HungryLoopSupportedByGreaterMultistrike", "HungryLoopSupportedByGreaterSpellCascade", "HungryLoopSupportedByGreaterSpellEcho", "HungryLoopSupportedByGreaterUnleash", "HungryLoopSupportedByGreaterVolley", "HungryLoopSupportedByGuardiansBlessing", "HungryLoopSupportedByHallow", "HungryLoopSupportedByHarrowingThrong", "HungryLoopSupportedByHexBloom", "HungryLoopSupportedByHexpass", "HungryLoopSupportedByHextoad", "HungryLoopSupportedByHiveborn", "HungryLoopSupportedByHypothermia", "HungryLoopSupportedByIceBite", "HungryLoopSupportedByIgniteProliferation__", "HungryLoopSupportedByImmolate", "HungryLoopSupportedByImpale", "HungryLoopSupportedByImpendingDoom", "HungryLoopSupportedByIncreasedArea", "HungryLoopSupportedByIncreasedBurningDamage", "HungryLoopSupportedByIncreasedCriticalDamage", "HungryLoopSupportedByIncreasedCriticalStrikes", "HungryLoopSupportedByIncreasedDuration", "HungryLoopSupportedByIncreasedMinionDamage_", "HungryLoopSupportedByIncreasedMinionLife", "HungryLoopSupportedByIncreasedMinionSpeed", "HungryLoopSupportedByInfernalLegion_", "HungryLoopSupportedByInnervate_", "HungryLoopSupportedByInvention", "HungryLoopSupportedByInvertTheRules", "HungryLoopSupportedByIronGrip", "HungryLoopSupportedByIronWill", "HungryLoopSupportedByItemQuantity", "HungryLoopSupportedByItemRarity", "HungryLoopSupportedByKineticInstability", "HungryLoopSupportedByKnockback", "HungryLoopSupportedByLesserMultipleProjectiles_", "HungryLoopSupportedByLesserPoison_", "HungryLoopSupportedByLethalDose", "HungryLoopSupportedByLifeGainOnHit", "HungryLoopSupportedByLifeLeech", "HungryLoopSupportedByLifetap", "HungryLoopSupportedByLightningPenetration", "HungryLoopSupportedByLivingLightning", "HungryLoopSupportedByLocusMine", "HungryLoopSupportedByMachinations", "HungryLoopSupportedByMagnetism", "HungryLoopSupportedByMaim", "HungryLoopSupportedByManaLeech", "HungryLoopSupportedByManaforgedArrows", "HungryLoopSupportedByMarkOnHit", "HungryLoopSupportedByMeatShield", "HungryLoopSupportedByMeleeDamageOnFullLife", "HungryLoopSupportedByMeleePhysicalDamage", "HungryLoopSupportedByMeleeSplash_", "HungryLoopSupportedByMinefield", "HungryLoopSupportedByMinionPact", "HungryLoopSupportedByMirageArcher_", "HungryLoopSupportedByMultiTotem", "HungryLoopSupportedByMultiTrap", "HungryLoopSupportedByMulticast", "HungryLoopSupportedByMultistrike", "HungryLoopSupportedByNightblade", "HungryLoopSupportedByOnslaught_", "HungryLoopSupportedByOvercharge", "HungryLoopSupportedByOverexertion", "HungryLoopSupportedByOverheat", "HungryLoopSupportedByOverloadedIntensity", "HungryLoopSupportedByPacifism", "HungryLoopSupportedByParallelProjectiles", "HungryLoopSupportedByPhysicalProjectileAttackDamage", "HungryLoopSupportedByPhysicalToLightning_", "HungryLoopSupportedByPierce_", "HungryLoopSupportedByPinpoint", "HungryLoopSupportedByPointBlank", "HungryLoopSupportedByPoison", "HungryLoopSupportedByPowerChargeOnCrit_", "HungryLoopSupportedByPrismaticBurst", "HungryLoopSupportedByPulverise", "HungryLoopSupportedByPyre", "HungryLoopSupportedByRage_", "HungryLoopSupportedByRangedAttackTotem", "HungryLoopSupportedByRapidDecay", "HungryLoopSupportedByReducedBlockChance", "HungryLoopSupportedByReducedDuration", "HungryLoopSupportedByReducedManaCost", "HungryLoopSupportedByRemoteMine", "HungryLoopSupportedByRemoteMine2_", "HungryLoopSupportedByReturningProjectiles", "HungryLoopSupportedByRupture", "HungryLoopSupportedByRuthless_", "HungryLoopSupportedBySacredWisps", "HungryLoopSupportedBySacrifice", "HungryLoopSupportedBySadism", "HungryLoopSupportedByScornfulHerald", "HungryLoopSupportedBySecondWind_", "HungryLoopSupportedByShockwave_", "HungryLoopSupportedBySlowerProjectiles", "HungryLoopSupportedBySpellCascade", "HungryLoopSupportedBySpellFocus", "HungryLoopSupportedBySpellTotem", "HungryLoopSupportedBySpellblade", "HungryLoopSupportedBySpiritStrike", "HungryLoopSupportedByStormBarrier", "HungryLoopSupportedByStun", "HungryLoopSupportedBySummonElementalResistance", "HungryLoopSupportedBySummonGhostOnKill", "HungryLoopSupportedBySwiftAssembly", "HungryLoopSupportedBySwiftBrand", "HungryLoopSupportedByTornados", "HungryLoopSupportedByTransfusion", "HungryLoopSupportedByTrap", "HungryLoopSupportedByTrapAndMineDamage", "HungryLoopSupportedByTrapCooldown", "HungryLoopSupportedByTrauma", "HungryLoopSupportedByTrinity", "HungryLoopSupportedByUnboundAilments", "HungryLoopSupportedByUnholyTrinity", "HungryLoopSupportedByUnleash", "HungryLoopSupportedByUrgentOrders", "HungryLoopSupportedByVaalSacrifice", "HungryLoopSupportedByVaalTemptation", "HungryLoopSupportedByVileToxins_", "HungryLoopSupportedByVoidManipulation", "HungryLoopSupportedByVoidShockwave", "HungryLoopSupportedByVoidstorm", "HungryLoopSupportedByVolatility", "HungryLoopSupportedByWard", "HungryLoopSupportedByWeaponElementalDamage", }, ["has no attribute requirements"] = { "LocalNoAttributeRequirementsUnique__1", "LocalNoAttributeRequirementsUnique__2", }, ["has no energy shield"] = { "NoEnergyShieldUnique__1", }, ["has no sockets"] = { "HasNoSockets", }, @@ -6807,7 +7129,7 @@ return { ["herald of thunder's storms hit enemies with (30-50)% increased frequency"] = { "HeraldOfThunderBoltFrequencyUnique__1", }, ["hex master"] = { "KeystoneDoomsdayUnique__1", }, ["hex reflection"] = { "ReflectCurses", }, - ["hexes applied by socketed curse skills are reflected back to you"] = { "SocketedCursesAreReflectedUniqueGlovesStrInt1", }, + ["hexes applied by socketed curse skills are reflected back to you"] = { "DivergentSocketedCursesAreReflectedUniqueGlovesStrInt1", "SocketedCursesAreReflectedUniqueGlovesStrInt1", }, ["hexes transfer to all enemies within # metres when hexed enemy dies"] = { "CurseTransferOnKillUniqueQuiver5", }, ["hexes transfer to all enemies within 3 metres when hexed enemy dies"] = { "CurseTransferOnKillUniqueQuiver5", }, ["hits against nearby enemies have #% increased critical strike chance"] = { "NearbyEnemiesHaveIncreasedChanceToBeCritUnique__1", "NearbyEnemiesHaveIncreasedChanceToBeCritUnique__2", }, @@ -6822,6 +7144,7 @@ return { ["hits ignore enemy monster chaos resistance if all equipped items are elder items"] = { "HitsIgnoreChaosResistanceAllElderItemsUnique__1", }, ["hits ignore enemy monster chaos resistance if all equipped items are shaper items"] = { "HitsIgnoreChaosResistanceAllShaperItemsUnique__1", }, ["hits ignore enemy monster fire resistance while you are ignited"] = { "IgnoreEnemyFireResistWhileIgnitedUnique__1", }, + ["hits ignore enemy physical damage reduction"] = { "TalismanEnchantIgnoreEnemyArmour", }, ["hits with prismatic skills always inflict brittle"] = { "PrismaticSkillsInflictBrittleUnique_1", }, ["hits with prismatic skills always sap"] = { "PrismaticSkillsInflictSapUnique_1", }, ["hits with prismatic skills always scorch"] = { "PrismaticSkillsInflictScorchUnique_1", }, @@ -6862,8 +7185,9 @@ return { ["ignites inflicted with this weapon deal (50-75)% more damage"] = { "LocalWeaponMoreIgniteDamageUnique__1", }, ["ignites you cause are reflected back to you"] = { "IgnitesReflectedToSelfUnique__1", }, ["ignites you inflict deal damage #% faster"] = { "FasterBurnFromAttacksUniqueOneHandSword4", }, - ["ignites you inflict deal damage (#)% faster"] = { "FasterIgniteDamageUnique__1", }, - ["ignites you inflict deal damage (35-45)% faster"] = { "FasterIgniteDamageUnique__1", }, + ["ignites you inflict deal damage (#)% faster"] = { "FasterIgniteDamageUnique__1", "FasterIgniteDamageUnique__2", }, + ["ignites you inflict deal damage (20-30)% faster"] = { "FasterIgniteDamageUnique__2", }, + ["ignites you inflict deal damage (40-60)% faster"] = { "FasterIgniteDamageUnique__1", }, ["ignites you inflict deal damage 50% faster"] = { "FasterBurnFromAttacksUniqueOneHandSword4", }, ["ignites you inflict deal no damage"] = { "IgniteDealNoDamageUnique__1", }, ["ignites you inflict spread to other enemies within # metres"] = { "GlobalIgniteProlifUnique__1", "GlobalIgniteProlifUnique__2", }, @@ -6873,16 +7197,16 @@ return { ["ignites you inflict with attacks deal damage 35% faster"] = { "FasterBurnFromAttacksEnemiesUniqueBelt14", }, ["ignites you inflict with this weapon spread to other enemies within # metres"] = { "LocalIgniteProlifEmberglowUnique__1", }, ["ignites you inflict with this weapon spread to other enemies within 2.8 metres"] = { "LocalIgniteProlifEmberglowUnique__1", }, - ["ignore stuns while casting"] = { "AvoidInterruptionWhileCastingUnique__1", }, + ["ignore stuns while casting"] = { "AvoidInterruptionWhileCastingUnique__1", "DivergentAvoidInterruptionWhileCastingUnique__1", }, ["imbalanced guard"] = { "KeystoneSacredBastionUnique__1", }, - ["immortal ambition"] = { "KeystoneSoulTetherUnique__1", "KeystoneSoulTetherUnique__2", "NoEnergyShieldRegenerationUnique__1", }, + ["immortal ambition"] = { "DivergentKeystoneSoulTetherUnique__2", "KeystoneSoulTetherUnique__1", "KeystoneSoulTetherUnique__2", "NoEnergyShieldRegenerationUnique__1", }, ["immune to burning ground, shocked ground and chilled ground"] = { "ImmuneToBurningShockedChilledGroundUnique__1", }, ["immune to chill"] = { "ImmuneToChillUnique__1", "ImmuneToChillUnique__2__", }, ["immune to curses if you've cast despair in the past # seconds"] = { "DespairImmuneToCursesUnique__1", }, ["immune to curses if you've cast despair in the past 10 seconds"] = { "DespairImmuneToCursesUnique__1", }, ["immune to curses while you have at least # rage"] = { "ImmuneToCursesWithRageUnique__1", }, ["immune to curses while you have at least 25 rage"] = { "ImmuneToCursesWithRageUnique__1", }, - ["immune to elemental ailments while affected by glorious madness"] = { "ElementalAilmentImmunityGloriousMadnessUnique1", }, + ["immune to elemental ailments while affected by glorious madness"] = { "DivergentElementalAilmentImmunityGloriousMadnessUnique1", "ElementalAilmentImmunityGloriousMadnessUnique1", }, ["immune to exposure if you've cast elemental weakness in the past # seconds"] = { "ElementalWeaknessImmuneToExposureUnique__1", }, ["immune to exposure if you've cast elemental weakness in the past 10 seconds"] = { "ElementalWeaknessImmuneToExposureUnique__1", }, ["immune to freeze and chill while ignited"] = { "ImmuneToFreezeAndChillWhileIgnitedUnique__1", }, @@ -6894,10 +7218,10 @@ return { ["impale damage dealt to enemies impaled by you overwhelms 10% physical damage reduction"] = { "ImpalePhysicalReductionPenaltyUnique__1", }, ["impales you inflict last (#) additional hits"] = { "ImpalesInflictedLastAdditionalHitsUnique_1UNUSED", }, ["impales you inflict last (3-6) additional hits"] = { "ImpalesInflictedLastAdditionalHitsUnique_1UNUSED", }, - ["implicit modifier magnitudes are doubled"] = { "LocalDoubleImplicitMods", }, + ["implicit modifier magnitudes are doubled"] = { "LocalDoubleImplicitMods", "LocalDoubleImplicitModsUnique__2", }, ["implicit modifier magnitudes are tripled"] = { "LocalTripleImplicitModsUnique__1__", }, ["implicit modifiers cannot be changed"] = { "CanHaveEveryInfluenceTypeImplicitE1", }, - ["increases and reductions to cast speed also apply to trap throwing speed"] = { "CastSpeedAppliesToTrapSpeedUnique__1", }, + ["increases and reductions to cast speed also apply to trap throwing speed"] = { "CastSpeedAppliesToTrapSpeedUnique__1", "DivergentCastSpeedAppliesToTrapSpeedUnique__1", }, ["increases and reductions to cast speed apply to attack speed"] = { "CastSpeedAppliesToAttackSpeedUnique__1", }, ["increases and reductions to chaos damage also apply to effect of"] = { "ChaosDamageModsApplyToChaosAuraEffectAtPercentUnique_1", }, ["increases and reductions to cold damage also apply to effect of"] = { "ColdDamageModsApplyToColdAuraEffectAtPercentUnique_1", }, @@ -6911,18 +7235,20 @@ return { ["increases and reductions to light radius also apply to accuracy"] = { "LightRadiusAppliesToAccuracyUnique__1_", }, ["increases and reductions to light radius also apply to area of effect at #% of their value"] = { "LightRadiusToAreaOfEffectUnique__1", }, ["increases and reductions to light radius also apply to area of effect at 50% of their value"] = { "LightRadiusToAreaOfEffectUnique__1", }, - ["increases and reductions to light radius also apply to damage"] = { "LightRadiusToDamageUnique_1", }, + ["increases and reductions to light radius also apply to damage"] = { "DivergentLightRadiusToDamageUnique_1", "LightRadiusToDamageUnique_1", }, ["increases and reductions to lightning damage also apply to effect of"] = { "LightningDamageModsApplyToLightningAuraEffectAtPercentUnique_1", }, - ["increases and reductions to maximum energy shield instead apply to ward"] = { "EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__", }, + ["increases and reductions to maximum energy shield instead apply to ward"] = { "DivergentEnergyShieldAdditiveModifiersInsteadApplyToWardUnique__", "EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__", }, ["increases and reductions to minion damage also affect you at #% of their value"] = { "MinionDamageAlsoAffectsYouUnique__1", "VillageMinionDamageAlsoAffectsYou", }, ["increases and reductions to minion damage also affect you at 150% of their value"] = { "MinionDamageAlsoAffectsYouUnique__1", "VillageMinionDamageAlsoAffectsYou", }, - ["increases and reductions to minion maximum life also apply to you at #% of their value"] = { "MinionLifeAlsoAffectsYouUnique__1", }, + ["increases and reductions to minion maximum life also apply to you at #% of their value"] = { "DivergentMinionLifeAlsoAffectsYouUnique__1", "MinionLifeAlsoAffectsYouUnique__1", }, + ["increases and reductions to minion maximum life also apply to you at 10% of their value"] = { "DivergentMinionLifeAlsoAffectsYouUnique__1", }, ["increases and reductions to minion maximum life also apply to you at 15% of their value"] = { "MinionLifeAlsoAffectsYouUnique__1", }, ["increases and reductions to other damage types in radius are transformed to apply to fire damage"] = { "AllDamageInRadiusBecomesFireUniqueJewel49", }, ["increases and reductions to physical damage also apply to effect of"] = { "PhysicalDamageModsApplyToPhysicalAuraEffectAtPercentUnique_1", }, ["increases and reductions to physical damage in radius are transformed to apply to cold damage"] = { "ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_", }, - ["increases and reductions to spell damage also apply to attacks at #% of their value"] = { "SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7", }, - ["increases and reductions to spell damage also apply to attacks at 150% of their value"] = { "SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7", }, + ["increases and reductions to your evasion rating also apply to your spell damage"] = { "EvasionModifersApplyToSpellDamageUnique__1", }, + ["increases and reductions to your evasion rating also apply to your spell damage at #% of their value"] = { "DivergentEvasionModifersApplyToSpellDamageUnique__1", }, + ["increases and reductions to your evasion rating also apply to your spell damage at 50% of their value"] = { "DivergentEvasionModifersApplyToSpellDamageUnique__1", }, ["increases to cast speed from arcane surge also applies to movement speed"] = { "ArcaneSurgeMovementSpeedUnique", }, ["inflict (#) additional poisons on the same target"] = { "LocalApplyAdditionalPoisonUnique__1", }, ["inflict (2-3) additional poisons on the same target"] = { "LocalApplyAdditionalPoisonUnique__1", }, @@ -6936,14 +7262,16 @@ return { ["inflict hallowing flame on hit while on consecrated ground"] = { "HallowOnHitVsConsecratedEnemyUnique__1", }, ["inflict lightning exposure on hit if you've cast conductivity in the past # seconds"] = { "ConductivityLightningExposureOnHitUnique__1", }, ["inflict lightning exposure on hit if you've cast conductivity in the past 10 seconds"] = { "ConductivityLightningExposureOnHitUnique__1", }, + ["inflict non-damaging ailments as though dealing #% more damage"] = { "DivergentApplyAilmentsMoreDamageUnique__1", }, ["inflict non-damaging ailments as though dealing (#)% more damage"] = { "ApplyAilmentsMoreDamageUnique__1", }, ["inflict non-damaging ailments as though dealing (100-200)% more damage"] = { "ApplyAilmentsMoreDamageUnique__1", }, + ["inflict non-damaging ailments as though dealing 100% more damage"] = { "DivergentApplyAilmentsMoreDamageUnique__1", }, ["inflict withered for # seconds on hit if you've cast despair in the past # seconds"] = { "DespairWitherOnHitUnique__1", }, ["inflict withered for # seconds on hit with this weapon"] = { "LocalWitherOnHitChanceUnique__2", }, ["inflict withered for 2 seconds on hit if you've cast despair in the past 10 seconds"] = { "DespairWitherOnHitUnique__1", }, ["inflict withered for 2 seconds on hit with this weapon"] = { "LocalWitherOnHitChanceUnique__2", }, ["inflicts a random hex on you when your totems die"] = { "RandomlyCursedWhenTotemsDieUniqueBodyInt7", }, - ["inner conviction"] = { "KeystoneInnerConvictionUnique__1", }, + ["inner conviction"] = { "DivergentKeystoneInnerConvictionUnique__1", "KeystoneInnerConvictionUnique__1", }, ["insufficient life doesn't prevent your melee attacks"] = { "VillageMeleeAttacksUsableWithoutLife", }, ["insufficient mana doesn't prevent your melee attacks"] = { "MeleeAttacksUsableWithoutManaUniqueOneHandAxe1", "MeleeAttacksUsableWithoutManaUnique__1", }, ["intelligence from passives in radius is transformed to dexterity"] = { "JewelIntToDex", "JewelIntToDexUniqueJewel36", }, @@ -6953,10 +7281,10 @@ return { ["intimidate enemies for 4 seconds on hit with attacks while at maximum endurance charges"] = { "ChargeBonusIntimidateOnHitEnduranceCharges", }, ["intimidate enemies on hit if you've cast punishment in the past # seconds"] = { "PunishmentIntimidateOnHitUnique__1", }, ["intimidate enemies on hit if you've cast punishment in the past 10 seconds"] = { "PunishmentIntimidateOnHitUnique__1", }, - ["iron grip"] = { "KeystoneIronGripUnique__1", "VillageIronGrip", }, + ["iron grip"] = { "DivergentKeystoneIronGripUnique__1", "KeystoneIronGripUnique__1", "VillageIronGrip", }, ["iron reflexes"] = { "IronReflexes", "KeystoneIronReflexesUnique__1", }, ["iron reflexes while stationary"] = { "GainIronReflexesWhileStationaryUnique__1", }, - ["iron will"] = { "IronWillUniqueGlovesStrInt4__", "KeystoneIronWillUnique_1", "VillageIronWill", }, + ["iron will"] = { "DivergentIronWillUniqueGlovesStrInt4__", "IronWillUniqueGlovesStrInt4__", "KeystoneIronWillUnique_1", "VillageIronWill", }, ["item drops on death"] = { "ItemDropsOnDeathUniqueAmulet12", }, ["items and gems have #% increased attribute requirements"] = { "GlobalItemAttributeRequirementsUniqueAmulet19", "GlobalItemAttributeRequirementsUnique__2", }, ["items and gems have #% reduced attribute requirements"] = { "GlobalItemAttributeRequirementsUniqueAmulet10", "GlobalItemAttributeRequirementsUnique__1_", }, @@ -6969,12 +7297,12 @@ return { ["kill enemies that have #% or lower life on hit if the searing exarch is dominant"] = { "KillEnemyInstantlyExarchDominantUnique__1", }, ["kill enemies that have 15% or lower life on hit if the searing exarch is dominant"] = { "KillEnemyInstantlyExarchDominantUnique__1", }, ["kills grant an additional vaal soul if you have rampaged recently"] = { "VaalSoulsOnRampageUniqueGlovesStrDex5", }, - ["knockback direction is reversed"] = { "EnemyKnockbackDirectionReversedUniqueGlovesStr5_", }, + ["knockback direction is reversed"] = { "DivergentEnemyKnockbackDirectionReversedUniqueGlovesStr5_", "EnemyKnockbackDirectionReversedUniqueGlovesStr5_", }, ["knocks back enemies in an area when you use a flask"] = { "AoEKnockBackOnFlaskUseUniqueFlask9_", }, + ["kulemak's corpsebait"] = { "FishingLureTypeUnique__2__", }, ["leech energy shield instead of life"] = { "LeechEnergyShieldInsteadofLife", }, ["left ring slot: #% increased mana regeneration rate"] = { "LeftRingSlotManaRegenUniqueRing13", }, ["left ring slot: #% of cold damage from hits taken as fire damage"] = { "ReflectedFireColdDamageTakenConversionImplicitK5a", }, - ["left ring slot: #% of elemental hit damage from you and"] = { "LeftRingSlotElementalReflectDamageTakenUniqueRing10", }, ["left ring slot: #% of fire damage from hits taken as lightning damage"] = { "ReflectedFireLightningDamageTakenConversionImplicitK5b", }, ["left ring slot: #% of lightning damage from hits taken as cold damage"] = { "ReflectedColdLightningDamageTakenConversionImplicitK5c", }, ["left ring slot: #% reduced duration of ailments on you"] = { "ReflectedAilmentDurationOnSelfImplicitK4", }, @@ -6983,7 +7311,6 @@ return { ["left ring slot: +# to maximum energy shield"] = { "LeftRingSlotMaximumEnergyShieldUnique__1", }, ["left ring slot: +250 to maximum energy shield"] = { "LeftRingSlotMaximumEnergyShieldUnique__1", }, ["left ring slot: 100% increased mana regeneration rate"] = { "LeftRingSlotManaRegenUniqueRing13", }, - ["left ring slot: 100% of elemental hit damage from you and"] = { "LeftRingSlotElementalReflectDamageTakenUniqueRing10", }, ["left ring slot: 15% reduced skill effect duration"] = { "ReflectedDurationRingImplicitK1", }, ["left ring slot: 25% of cold damage from hits taken as fire damage"] = { "ReflectedFireColdDamageTakenConversionImplicitK5a", }, ["left ring slot: 25% of fire damage from hits taken as lightning damage"] = { "ReflectedFireLightningDamageTakenConversionImplicitK5b", }, @@ -6998,6 +7325,8 @@ return { ["left ring slot: projectiles from spells fork"] = { "LeftRingSpellProjectilesForkUnique__1_", }, ["left ring slot: regenerate # mana per second"] = { "LeftRingSlotFlatManaRegenerationUnique__1", }, ["left ring slot: regenerate 40 mana per second"] = { "LeftRingSlotFlatManaRegenerationUnique__1", }, + ["left ring slot: you and your minions prevent +#% of reflected elemental damage"] = { "LeftRingSlotElementalReflectDamageTakenUniqueRing10", }, + ["left ring slot: you and your minions prevent +100% of reflected elemental damage"] = { "LeftRingSlotElementalReflectDamageTakenUniqueRing10", }, ["left ring slot: you cannot recharge or regenerate energy shield"] = { "LeftRingSlotNoEnergyShieldRegenUniqueRing13", }, ["left ring slot: your chilling skitterbot's aura applies socketed hex curse instead"] = { "SupportSkitterBotAilmentAuraReplaceWithCurse____1", }, ["leftmost (#) magic utility flasks constantly apply their flask effects to you"] = { "MagicUtilityFlasksAlwaysApplyUnique__1", }, @@ -7020,7 +7349,8 @@ return { ["lightning damage of enemies hitting you is lucky"] = { "EnemyExtraDamageRollsWithLightningDamageUnique__1", }, ["lightning damage with non-critical strikes is lucky"] = { "LightningNonCriticalStrikesLuckyUnique__1", }, ["lightning resistance does not affect lightning damage taken"] = { "LightningResistNoReductionUnique__1_", }, - ["lightning resistance is #%"] = { "LightningResistanceOverrideUnique__1_", }, + ["lightning resistance is #%"] = { "DivergentLightningResistanceOverrideUnique__1_", "LightningResistanceOverrideUnique__1_", }, + ["lightning resistance is 70%"] = { "DivergentLightningResistanceOverrideUnique__1_", }, ["lightning resistance is 75%"] = { "LightningResistanceOverrideUnique__1_", }, ["lightning skills have #% chance to poison on hit"] = { "LightningSkillsChanceToPoisonUnique__1_", }, ["lightning skills have 20% chance to poison on hit"] = { "LightningSkillsChanceToPoisonUnique__1_", }, @@ -7032,7 +7362,7 @@ return { ["linked targets always count as in range of non-curse auras from your skills"] = { "AurasOnlyApplyToLinkedTargetUnique__1", }, ["linked targets cannot die for # seconds after you die"] = { "LinkTargetCannotDieUnique__1", }, ["linked targets cannot die for 2 seconds after you die"] = { "LinkTargetCannotDieUnique__1", }, - ["lose # life per second"] = { "LifeDegenerationGracePeriodUnique__1", }, + ["lose # life per second"] = { "LifeDegenerationGracePeriodPer10SecondsUnique__1", "LifeDegenerationGracePeriodUnique__1", }, ["lose # mana when you use a skill"] = { "IncreaseGlobalFlatManaCostUnique__3_", }, ["lose #% life per second per minion"] = { "LifeDegenPerActiveMinionUniqueHelmetInt_1UNUSED", }, ["lose #% of energy shield on kill"] = { "EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14", }, @@ -7067,6 +7397,7 @@ return { ["lose 3% of mana when you use an attack skill"] = { "LoseManaOnAttackSkillUnique__1", }, ["lose 40 mana when you use a skill"] = { "IncreaseGlobalFlatManaCostUnique__3_", }, ["lose 500 life per second"] = { "LifeDegenerationGracePeriodUnique__1", }, + ["lose 500.00 life per second"] = { "LifeDegenerationGracePeriodPer10SecondsUnique__1", }, ["lose 7% of mana per second"] = { "LoseManaPercentPerSecondUnique__1", }, ["lose a frenzy charge each second"] = { "GainFrenzyChargeEverySecondUnique__1", }, ["lose a power charge each second"] = { "GainPowerChargeEverySecondUnique__1", }, @@ -7131,7 +7462,7 @@ return { ["melee hits have 10% chance to fortify"] = { "FortifyOnMeleeHitUniqueJewel22", }, ["melee hits which stun fortify"] = { "FortifyOnMeleeStunUnique__1", }, ["melee hits with strike skills always knockback"] = { "StrikeSkillKnockbackUnique__1", }, - ["melee strike skills deal splash damage to surrounding targets"] = { "MeleeSplashUnique__1", "TinctureMeleeSplashOnWeaponHitUnique__1", "VillageMeleeSplash", }, + ["melee strike skills deal splash damage to surrounding targets"] = { "DivergentMeleeSplashUnique__1", "MeleeSplashUnique__1", "TinctureMeleeSplashOnWeaponHitUnique__1", "VillageMeleeSplash", }, ["melee weapon attacks have culling strike"] = { "TinctureCullingStrikeUnique__1", }, ["melee weapon damage penetrates #% elemental resistances per mana burn, up to a maximum of #%"] = { "TincturePenetrationPerToxicityUnique__1", }, ["melee weapon damage penetrates 1% elemental resistances per mana burn, up to a maximum of 200%"] = { "TincturePenetrationPerToxicityUnique__1", }, @@ -7143,22 +7474,30 @@ return { ["mines have (#)% increased detonation speed"] = { "RemoteMineArmingSpeedUnique__1", }, ["mines have (40-50)% increased detonation speed"] = { "RemoteMineArmingSpeedUnique__1", }, ["minion instability"] = { "KeystoneMinionInstabilityUnique__1", }, - ["minion life is increased by their overcapped fire resistance"] = { "MinionLifeIncreasedByOvercappedFireResistanceUnique__1", }, - ["minions are aggressive"] = { "MinionLargerAggroRadiusUnique__1", }, + ["minion life is increased by their overcapped fire resistance"] = { "DivergentMinionLifeIncreasedByOvercappedFireResistanceUnique__1", "MinionLifeIncreasedByOvercappedFireResistanceUnique__1", }, + ["minions are aggressive"] = { "DivergentMinionLargerAggroRadiusUnique__1", "MinionLargerAggroRadiusUnique__1", }, ["minions can hear the whispers for # seconds after they deal a critical strike"] = { "MinionsCrazyOnCritUnique__1__", }, ["minions can hear the whispers for 5 seconds after they deal a critical strike"] = { "MinionsCrazyOnCritUnique__1__", }, ["minions cannot be blinded"] = { "MinionBlindImmunityUnique__1", }, + ["minions convert #% of physical damage to chaos damage per empty socket"] = { "MinionPhysicalToChaosPerEmptySocketUnique__1", }, ["minions convert #% of physical damage to chaos damage per white socket"] = { "MinionPhysicalToChaosPerWhiteSocket", }, ["minions convert #% of physical damage to cold damage"] = { "MinionPhysicalConvertToColdUnique__1", }, ["minions convert #% of physical damage to cold damage per green socket"] = { "MinionPhysicalToColdPerGreenSocket_", }, + ["minions convert #% of physical damage to cold damage per socketed green gem"] = { "MinionPhysicalToColdPerSocketedGreenGemUnique__1", }, ["minions convert #% of physical damage to fire damage per red socket"] = { "MinionPhysicalToFirePerRedSocket", }, + ["minions convert #% of physical damage to fire damage per socketed red gem"] = { "MinionPhysicalToFirePerSocketedRedGemUnique__1", }, ["minions convert #% of physical damage to lightning damage per blue socket"] = { "MinionPhysicalToLightningPerBlueSocket", }, + ["minions convert #% of physical damage to lightning damage per socketed blue gem"] = { "MinionPhysicalToLightningPerSocketedBlueGemUnique__1", }, ["minions convert #% of their maximum life to maximum energy"] = { "MinionLifeConvertedToEnergyShieldUnique__1", }, ["minions convert 2% of their maximum life to maximum energy"] = { "MinionLifeConvertedToEnergyShieldUnique__1", }, + ["minions convert 25% of physical damage to chaos damage per empty socket"] = { "MinionPhysicalToChaosPerEmptySocketUnique__1", }, ["minions convert 25% of physical damage to chaos damage per white socket"] = { "MinionPhysicalToChaosPerWhiteSocket", }, ["minions convert 25% of physical damage to cold damage per green socket"] = { "MinionPhysicalToColdPerGreenSocket_", }, + ["minions convert 25% of physical damage to cold damage per socketed green gem"] = { "MinionPhysicalToColdPerSocketedGreenGemUnique__1", }, ["minions convert 25% of physical damage to fire damage per red socket"] = { "MinionPhysicalToFirePerRedSocket", }, + ["minions convert 25% of physical damage to fire damage per socketed red gem"] = { "MinionPhysicalToFirePerSocketedRedGemUnique__1", }, ["minions convert 25% of physical damage to lightning damage per blue socket"] = { "MinionPhysicalToLightningPerBlueSocket", }, + ["minions convert 25% of physical damage to lightning damage per socketed blue gem"] = { "MinionPhysicalToLightningPerSocketedBlueGemUnique__1", }, ["minions convert 50% of physical damage to cold damage"] = { "MinionPhysicalConvertToColdUnique__1", }, ["minions deal #% increased damage"] = { "MinionDamageUniqueBodyInt9", }, ["minions deal #% increased damage if you've hit recently"] = { "IncreasedMinionDamageIfYouHitEnemyUnique__1", }, @@ -7197,36 +7536,41 @@ return { ["minions deal 2% increased damage per 5 dexterity"] = { "IncreasedMinionDamagePerDexterityUniqueBow12", }, ["minions deal 70% increased damage if you've hit recently"] = { "IncreasedMinionDamageIfYouHitEnemyUnique__1", }, ["minions deal no non-cold damage"] = { "MinionOnlyDealColdDamageUnique__1", }, - ["minions gain #% of physical damage as extra cold damage"] = { "MinionPhysicalDamageAddedAsColdUnique__1_", }, - ["minions gain #% of physical damage as extra fire damage"] = { "MinionPhysicalDamageAddedAsFireUnique__1", }, + ["minions gain #% of elemental damage as extra chaos damage"] = { "DivergentMinionElementalDamageAddedAsChaosUnique__1", }, + ["minions gain #% of physical damage as extra cold damage"] = { "DivergentMinionPhysicalDamageAddedAsColdUnique__1_", "MinionPhysicalDamageAddedAsColdUnique__1_", }, + ["minions gain #% of physical damage as extra fire damage"] = { "DivergentMinionPhysicalDamageAddedAsFireUnique__1", "MinionPhysicalDamageAddedAsFireUnique__1", }, ["minions gain (#)% of elemental damage as extra chaos damage"] = { "MinionElementalDamageAddedAsChaosUnique__1", }, ["minions gain (#)% of physical damage as extra chaos damage"] = { "MinionPhysicalDamageAsChaosUnique__1", }, ["minions gain (15-20)% of elemental damage as extra chaos damage"] = { "MinionElementalDamageAddedAsChaosUnique__1", }, ["minions gain (59-83)% of physical damage as extra chaos damage"] = { "MinionPhysicalDamageAsChaosUnique__1", }, - ["minions gain 20% of physical damage as extra cold damage"] = { "MinionPhysicalDamageAddedAsColdUnique__1_", }, - ["minions gain 20% of physical damage as extra fire damage"] = { "MinionPhysicalDamageAddedAsFireUnique__1", }, + ["minions gain 20% of elemental damage as extra chaos damage"] = { "DivergentMinionElementalDamageAddedAsChaosUnique__1", }, + ["minions gain 20% of physical damage as extra cold damage"] = { "DivergentMinionPhysicalDamageAddedAsColdUnique__1_", "MinionPhysicalDamageAddedAsColdUnique__1_", }, + ["minions gain 20% of physical damage as extra fire damage"] = { "DivergentMinionPhysicalDamageAddedAsFireUnique__1", "MinionPhysicalDamageAddedAsFireUnique__1", }, ["minions gain added resistances equal to #% of your resistances"] = { "MinionsGainPercentOfYourResistancesUnique_1", }, ["minions gain added resistances equal to 50% of your resistances"] = { "MinionsGainPercentOfYourResistancesUnique_1", }, ["minions gain unholy might for # seconds on kill"] = { "MinionUnholyMightOnKillUniqueBodyInt9", }, ["minions gain unholy might for 10 seconds on kill"] = { "MinionUnholyMightOnKillUniqueBodyInt9", }, ["minions have #% chance to blind enemies on hit"] = { "MinionChanceToBlindOnHitUnique__1", }, ["minions have #% chance to deal double damage per fortification on you"] = { "MinionDoubleDamageChancePerFortificationUnique__1", }, + ["minions have #% chance to freeze, shock and ignite"] = { "DivergentMinionChanceToFreezeShockIgnite", }, ["minions have #% chance to inflict withered on hit"] = { "MinionWitherOnHitUnique__1", }, ["minions have #% chance to maim enemies on hit with attacks"] = { "MinionChanceToMaimOnHitUnique__1_", }, ["minions have #% chance to poison enemies on hit"] = { "MinionsPoisonEnemiesOnHitUnique__1", "MinionsPoisonEnemiesOnHitUnique__2", }, ["minions have #% chance to taunt on hit with attacks"] = { "MinionAttacksTauntOnHitChanceUnique__1", }, + ["minions have #% faster start of energy shield recharge"] = { "DivergentMinionEnergyShieldRechargeDelayUnique__1", }, ["minions have #% increased area of effect"] = { "MinonAreaOfEffectUniqueRing33", }, - ["minions have #% increased critical strike chance per maximum power charge you have"] = { "MinionCriticalStrikeChanceMaximumPowerChargeUnique__1", }, + ["minions have #% increased critical strike chance per maximum power charge you have"] = { "DivergentMinionCriticalStrikeChanceMaximumPowerChargeUnique__1", "MinionCriticalStrikeChanceMaximumPowerChargeUnique__1", }, ["minions have #% increased maximum life"] = { "MinionLifeUniqueRing33", }, ["minions have #% reduced maximum life"] = { "MinionLifeUniqueBodyInt9", "MinionLifeUnique__4__", }, ["minions have #% reduced movement speed"] = { "MinionRunSpeedUnique__1", }, ["minions have (#)% chance to freeze, shock and ignite"] = { "MinionChanceToFreezeShockIgnite", }, + ["minions have (#)% chance to impale on attack hit per socketed ghastly eye jewel"] = { "MinionImpaleChancePerSocketedGhastlyUnique__1", }, ["minions have (#)% faster start of energy shield recharge"] = { "MinionEnergyShieldRechargeDelayUnique__1", }, ["minions have (#)% increased area of effect"] = { "MinionAreaOfEffectUnique__1", }, ["minions have (#)% increased attack speed"] = { "IncreasedMinionAttackSpeedUnique__1_", "MinionAttackAndCastSpeedUnique__1", "MinionAttackSpeedUnique_1", }, ["minions have (#)% increased flask effect duration"] = { "MinionFlaskDurationUnique__1", }, ["minions have (#)% increased maximum life"] = { "JewelImplicitMinionLife___", "MinionLifeUniqueAmulet3", "MinionLifeUniqueJewel18", "MinionLifeUniqueTwoHandMace5", "MinionLifeUniqueTwoHandSword4", "MinionLifeUnique__1", "MinionLifeUnique__2", "MinionLifeUnique__3_", }, - ["minions have (#)% increased movement speed"] = { "MinionMovementSpeedUnique_1", "MinionRunSpeedUniqueAmulet3", "MinionRunSpeedUniqueJewel16", "MinionRunSpeedUniqueWand2", "MinionRunSpeedUnique__2", "MinionRunSpeedUnique__3", "MinionRunSpeedUnique__4", "MinionRunSpeedUnique__5", "MinionRunSpeedUnique__6", }, + ["minions have (#)% increased movement speed"] = { "MinionMovementSpeedUnique_1", "MinionMovementSpeedUnique_2", "MinionRunSpeedUniqueAmulet3", "MinionRunSpeedUniqueJewel16", "MinionRunSpeedUniqueWand2", "MinionRunSpeedUnique__2", "MinionRunSpeedUnique__3", "MinionRunSpeedUnique__4", "MinionRunSpeedUnique__5", "MinionRunSpeedUnique__6", }, ["minions have (#)% reduced flask charges used"] = { "MinionFlaskChargesUsedUnique__1", }, ["minions have (#)% reduced maximum life"] = { "MinionLifeUnique__5_", }, ["minions have (10-15)% increased attack speed"] = { "IncreasedMinionAttackSpeedUnique__1_", }, @@ -7236,8 +7580,10 @@ return { ["minions have (10-20)% increased movement speed"] = { "MinionRunSpeedUnique__4", }, ["minions have (12-16)% increased attack speed"] = { "MinionAttackAndCastSpeedUnique__1", }, ["minions have (15-25)% increased movement speed"] = { "MinionRunSpeedUnique__6", }, + ["minions have (15-30)% increased movement speed"] = { "MinionMovementSpeedUnique_2", }, ["minions have (20-30)% increased maximum life"] = { "MinionLifeUnique__1", "MinionLifeUnique__3_", }, ["minions have (20-30)% increased movement speed"] = { "MinionMovementSpeedUnique_1", "MinionRunSpeedUniqueWand2", }, + ["minions have (20-40)% chance to impale on attack hit per socketed ghastly eye jewel"] = { "MinionImpaleChancePerSocketedGhastlyUnique__1", }, ["minions have (20-40)% increased maximum life"] = { "MinionLifeUniqueTwoHandMace5", }, ["minions have (20-40)% reduced maximum life"] = { "MinionLifeUnique__5_", }, ["minions have (25-40)% reduced flask charges used"] = { "MinionFlaskChargesUsedUnique__1", }, @@ -7254,12 +7600,13 @@ return { ["minions have (6-8)% increased area of effect"] = { "MinionAreaOfEffectUnique__1", }, ["minions have (80-100)% increased movement speed"] = { "MinionRunSpeedUnique__2", }, ["minions have +# to accuracy rating per # devotion"] = { "MinionAccuracyRatingPerDevotion_", }, - ["minions have +#% chance to block attack damage"] = { "MinionAttackBlockChanceUnique__2", "MinionBlockChanceUniqueHelmetStrDex5", }, - ["minions have +#% chance to block spell damage"] = { "MinionSpellBlockChanceUnique__2", }, + ["minions have +#% chance to block attack damage"] = { "DivergentMinionAttackBlockChanceUnique__2", "MinionAttackBlockChanceUnique__2", "MinionBlockChanceUniqueHelmetStrDex5", }, + ["minions have +#% chance to block spell damage"] = { "DivergentMinionSpellBlockChanceUnique__2", "MinionSpellBlockChanceUnique__2", }, ["minions have +#% to chaos resistance"] = { "MinionChaosResistanceUnique__2__", "MinionChaosResistanceUnique___1", }, ["minions have +#% to cold resistance"] = { "MinionColdResistUnique__1", }, ["minions have +#% to critical strike multiplier per grand spectrum"] = { "MinionCriticalStrikeMultiplierPerStackableJewelUnique__1", }, ["minions have +#% to critical strike multiplier per withered debuff on enemy"] = { "MinionCriticalStrikeMultiplierAgainstWitheredUnique__1", }, + ["minions have +#% to damage over time multiplier"] = { "TalismanEnchantMinionDotMultiplier", }, ["minions have +#% to damage over time multiplier per"] = { "MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1", }, ["minions have +#% to fire resistance"] = { "MinionFireResistUnique__1", }, ["minions have +(#) to armour"] = { "MinionArmourUniqueHelmetStrDex5", }, @@ -7280,24 +7627,27 @@ return { ["minions have +(7-10)% to all elemental resistances"] = { "MinionElementalResistancesUnique__1", }, ["minions have +10% chance to block attack damage"] = { "MinionBlockChanceUniqueHelmetStrDex5", }, ["minions have +10% to critical strike multiplier per grand spectrum"] = { "MinionCriticalStrikeMultiplierPerStackableJewelUnique__1", }, - ["minions have +25% chance to block attack damage"] = { "MinionAttackBlockChanceUnique__2", }, - ["minions have +25% chance to block spell damage"] = { "MinionSpellBlockChanceUnique__2", }, + ["minions have +25% chance to block attack damage"] = { "DivergentMinionAttackBlockChanceUnique__2", "MinionAttackBlockChanceUnique__2", }, + ["minions have +25% chance to block spell damage"] = { "DivergentMinionSpellBlockChanceUnique__2", "MinionSpellBlockChanceUnique__2", }, ["minions have +29% to chaos resistance"] = { "MinionChaosResistanceUnique__2__", "MinionChaosResistanceUnique___1", }, + ["minions have +30% to damage over time multiplier"] = { "TalismanEnchantMinionDotMultiplier", }, ["minions have +40% to cold resistance"] = { "MinionColdResistUnique__1", }, ["minions have +40% to fire resistance"] = { "MinionFireResistUnique__1", }, ["minions have +5% to critical strike multiplier per withered debuff on enemy"] = { "MinionCriticalStrikeMultiplierAgainstWitheredUnique__1", }, ["minions have +6% to damage over time multiplier per"] = { "MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1", }, ["minions have +60 to accuracy rating per 10 devotion"] = { "MinionAccuracyRatingPerDevotion_", }, ["minions have 1% chance to deal double damage per fortification on you"] = { "MinionDoubleDamageChancePerFortificationUnique__1", }, + ["minions have 10% chance to freeze, shock and ignite"] = { "DivergentMinionChanceToFreezeShockIgnite", }, ["minions have 10% increased area of effect"] = { "MinonAreaOfEffectUniqueRing33", }, ["minions have 10% reduced maximum life"] = { "MinionLifeUnique__4__", }, ["minions have 10% reduced movement speed"] = { "MinionRunSpeedUnique__1", }, + ["minions have 100% faster start of energy shield recharge"] = { "DivergentMinionEnergyShieldRechargeDelayUnique__1", }, ["minions have 15% chance to blind enemies on hit"] = { "MinionChanceToBlindOnHitUnique__1", }, ["minions have 15% increased maximum life"] = { "MinionLifeUniqueRing33", }, ["minions have 20% reduced maximum life"] = { "MinionLifeUniqueBodyInt9", }, ["minions have 5% chance to maim enemies on hit with attacks"] = { "MinionChanceToMaimOnHitUnique__1_", }, ["minions have 5% chance to taunt on hit with attacks"] = { "MinionAttacksTauntOnHitChanceUnique__1", }, - ["minions have 50% increased critical strike chance per maximum power charge you have"] = { "MinionCriticalStrikeChanceMaximumPowerChargeUnique__1", }, + ["minions have 50% increased critical strike chance per maximum power charge you have"] = { "DivergentMinionCriticalStrikeChanceMaximumPowerChargeUnique__1", "MinionCriticalStrikeChanceMaximumPowerChargeUnique__1", }, ["minions have 60% chance to inflict withered on hit"] = { "MinionWitherOnHitUnique__1", }, ["minions have 60% chance to poison enemies on hit"] = { "MinionsPoisonEnemiesOnHitUnique__1", "MinionsPoisonEnemiesOnHitUnique__2", }, ["minions have the same maximum number of endurance, frenzy and power charges as you"] = { "MinionsHaveChargesYouHaveUnique__1", }, @@ -7336,7 +7686,7 @@ return { ["movement skills cost no mana"] = { "MovementSkillsCostNoManaUnique__1", }, ["movement skills deal no physical damage"] = { "MovementSkillsDealNoPhysicalDamageUnique__1", }, ["movement speed cannot be modified to below base value"] = { "MovementCannotBeSlowedBelowBaseUnique__1", }, - ["moving while bleeding doesn't cause you to take extra damage"] = { "NoExtraBleedDamageWhileMovingUniqueAmulet25", "NoExtraBleedDamageWhileMovingUnique__1", }, + ["moving while bleeding doesn't cause you to take extra damage"] = { "DivergentNoExtraBleedDamageWhileMovingUnique__1", "NoExtraBleedDamageWhileMovingUniqueAmulet25", "NoExtraBleedDamageWhileMovingUnique__1", }, ["nearby allies gain #% increased damage"] = { "UndyingBreathDamageAuraDisplayUniqueStaff5", }, ["nearby allies gain #% increased mana regeneration rate"] = { "DisplayManaRegenerationAuaUniqueAmulet21", }, ["nearby allies gain #% of life regenerated per second"] = { "DisplayLifeRegenerationAuraUniqueAmulet21", }, @@ -7358,12 +7708,14 @@ return { ["nearby allies have 1% chance to block attack damage per 100 strength you have"] = { "BlockPer100StrengthAuraUnique__1___", }, ["nearby allies have 30% increased item rarity"] = { "DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9", }, ["nearby allies have culling strike"] = { "DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9", }, - ["nearby allies recover #% of your maximum life when you die"] = { "HealAlliesOnDeathUniqueShieldDexInt2", }, - ["nearby allies recover 1% of your maximum life when you die"] = { "HealAlliesOnDeathUniqueShieldDexInt2", }, + ["nearby allies recover #% of your maximum life when you die"] = { "DivergentHealAlliesOnDeathUniqueShieldDexInt2", "HealAlliesOnDeathUniqueShieldDexInt2", }, + ["nearby allies recover 1% of your maximum life when you die"] = { "DivergentHealAlliesOnDeathUniqueShieldDexInt2", "HealAlliesOnDeathUniqueShieldDexInt2", }, ["nearby allies' action speed cannot be modified to below base value"] = { "NearbyAlliesCannotBeSlowedUnique__1", }, ["nearby allies' damage with hits is lucky"] = { "UniqueNearbyAlliesAreLuckyDisplay", }, + ["nearby corpses explode when you warcry, dealing #% of their life as physical damage"] = { "DivergentWarcryCorpseExplosionUnique__1", }, ["nearby corpses explode when you warcry, dealing (#)% of their life as physical damage"] = { "WarcryCorpseExplosionUnique__1", }, ["nearby corpses explode when you warcry, dealing (5-10)% of their life as physical damage"] = { "WarcryCorpseExplosionUnique__1", }, + ["nearby corpses explode when you warcry, dealing 5% of their life as physical damage"] = { "DivergentWarcryCorpseExplosionUnique__1", }, ["nearby enemies are blinded"] = { "DisplayBlindAuraUnique__1", "NearbyEnemiesAreBlindedUnique__1", "UniqueSpecialCorruptionNearbyEnemiesBlinded", }, ["nearby enemies are blinded if # redeemer items are equipped"] = { "NearbyEnemiesAreBlinded2RedeemerItemsUnique__1", }, ["nearby enemies are blinded if 2 redeemer items are equipped"] = { "NearbyEnemiesAreBlinded2RedeemerItemsUnique__1", }, @@ -7378,10 +7730,10 @@ return { ["nearby enemies are intimidated"] = { "NearbyEnemiesAreIntimidatedUnique__1", }, ["nearby enemies are intimidated if # warlord items are equipped"] = { "NearbyEnemiesAreIntimidated2WarlordItemsUnique__1", }, ["nearby enemies are intimidated if 2 warlord items are equipped"] = { "NearbyEnemiesAreIntimidated2WarlordItemsUnique__1", }, - ["nearby enemies are scorched"] = { "NearbyEnemiesAreScorchedUnique__1", }, + ["nearby enemies are scorched"] = { "DivergentNearbyEnemiesAreScorchedUnique__1", "NearbyEnemiesAreScorchedUnique__1", }, ["nearby enemies are unnerved if # elder items are equipped"] = { "NearbyEnemiesAreUnnerved2ElderItemsUnique__1", }, ["nearby enemies are unnerved if 2 elder items are equipped"] = { "NearbyEnemiesAreUnnerved2ElderItemsUnique__1", }, - ["nearby enemies cannot deal critical strikes"] = { "NearbyEnemiesCannotCritUnique__1", }, + ["nearby enemies cannot deal critical strikes"] = { "DivergentNearbyEnemiesCannotCritUnique__1", "NearbyEnemiesCannotCritUnique__1", }, ["nearby enemies convert #% of their physical damage to fire"] = { "NearbyEnemyPhysicalDamageConvertedToFire__1", }, ["nearby enemies convert 25% of their physical damage to fire"] = { "NearbyEnemyPhysicalDamageConvertedToFire__1", }, ["nearby enemies grant #% increased flask charges"] = { "NearbyEnemiesGrantIncreasedFlaskChargesUnique__1", }, @@ -7389,23 +7741,23 @@ return { ["nearby enemies have #% increased effect of curses on them"] = { "UndyingBreathCurseAuraDisplayUniqueStaff5", }, ["nearby enemies have #% increased fire and cold resistances"] = { "NearbyEnemiesIncreasedFireColdResistUnique__1_", }, ["nearby enemies have #% reduced stun and block recovery"] = { "NearbyEnemiesReducedStunRecoveryUnique__1", }, - ["nearby enemies have #% to all resistances"] = { "NearbyEnemiesHaveReducedAllResistancesUnique__1", }, - ["nearby enemies have -10% to all resistances"] = { "NearbyEnemiesHaveReducedAllResistancesUnique__1", }, + ["nearby enemies have #% to all resistances"] = { "DivergentNearbyEnemiesHaveReducedAllResistancesUnique__1", "NearbyEnemiesHaveReducedAllResistancesUnique__1", }, + ["nearby enemies have -10% to all resistances"] = { "DivergentNearbyEnemiesHaveReducedAllResistancesUnique__1", "NearbyEnemiesHaveReducedAllResistancesUnique__1", }, ["nearby enemies have 10% reduced stun and block recovery"] = { "NearbyEnemiesReducedStunRecoveryUnique__1", }, ["nearby enemies have 18% increased effect of curses on them"] = { "UndyingBreathCurseAuraDisplayUniqueStaff5", }, ["nearby enemies have 50% increased fire and cold resistances"] = { "NearbyEnemiesIncreasedFireColdResistUnique__1_", }, ["nearby enemies have fire exposure while at maximum rage"] = { "NearbyEnemiesHaveFireExposureWhileAtMaxRageUnique_1", }, ["nearby enemies have lightning resistance equal to yours"] = { "NearbyEnemyLightningResistanceEqualUnique__1", }, ["nearby enemies have malediction"] = { "UniqueSpecialCorruptionNearbyEnemiesMalediction", }, - ["nearby enemies killed by anyone count as being killed by you instead"] = { "EnemiesKilledCountAsYoursUnique__1", }, + ["nearby enemies killed by anyone count as being killed by you instead"] = { "DivergentEnemiesKilledCountAsYoursUnique__1", "EnemiesKilledCountAsYoursUnique__1", }, ["nearby enemies take # lightning damage per second"] = { "LightningDegenAuraUniqueDisplay__1", }, ["nearby enemies take 50 lightning damage per second"] = { "LightningDegenAuraUniqueDisplay__1", }, ["nearby enemies' chaos resistance is #"] = { "NearbyEnemyZeroChaosDamageResistanceUnique__1", }, ["nearby enemies' chaos resistance is 0"] = { "NearbyEnemyZeroChaosDamageResistanceUnique__1", }, - ["nearby enemy monsters have at least #% of life reserved"] = { "NearbyEnemyReservesLifeUnique__1", }, - ["nearby enemy monsters have at least 8% of life reserved"] = { "NearbyEnemyReservesLifeUnique__1", }, - ["nearby stationary enemies gain a grasping vine every # seconds"] = { "NearbyStationaryEnemiesGainVinesUnique__1", }, - ["nearby stationary enemies gain a grasping vine every 0.5 seconds"] = { "NearbyStationaryEnemiesGainVinesUnique__1", }, + ["nearby enemy monsters have at least #% of life reserved"] = { "DivergentNearbyEnemyReservesLifeUnique__1", "NearbyEnemyReservesLifeUnique__1", }, + ["nearby enemy monsters have at least 8% of life reserved"] = { "DivergentNearbyEnemyReservesLifeUnique__1", "NearbyEnemyReservesLifeUnique__1", }, + ["nearby stationary enemies gain a grasping vine every # seconds"] = { "DivergentNearbyStationaryEnemiesGainVinesUnique__1", "NearbyStationaryEnemiesGainVinesUnique__1", }, + ["nearby stationary enemies gain a grasping vine every 0.5 seconds"] = { "DivergentNearbyStationaryEnemiesGainVinesUnique__1", "NearbyStationaryEnemiesGainVinesUnique__1", }, ["necrotic footprints"] = { "ItemNecroticFootprintsUnique__1s", }, ["never deal critical strikes"] = { "CannotCrit", }, ["no chance to block"] = { "LocalShieldHasNoBlockChanceUnique__1", }, @@ -7425,8 +7777,9 @@ return { ["non-critical strikes deal 80% less damage"] = { "NonCriticalStrikesLessDamageUnique__1", }, ["non-critical strikes deal no damage"] = { "NonCriticalStrikesDealNoDamageUnique__1", "NonCriticalStrikesDealNoDamageUnique__2", }, ["non-exerted attacks deal no damage"] = { "NonExertedAttacksNoDamageUnique__1", }, - ["non-instant mana recovery from flasks is also recovered as life"] = { "NonInstantManaRecoveryAlsoAffectsLifeUnique__1", }, + ["non-instant mana recovery from flasks is also recovered as life"] = { "DivergentNonInstantManaRecoveryAlsoAffectsLifeUnique__1", "NonInstantManaRecoveryAlsoAffectsLifeUnique__1", }, ["non-instant warcries ignore their cooldown when used"] = { "NoCooldownWarcriesUnique", }, + ["non-spectre minions' base attack time is equal to"] = { "MinionsUseMainHandBaseAttackDurationUnique__1", }, ["non-unique utility flasks you use apply to linked targets"] = { "LinkSkillFlaskEffectsUnique__1", }, ["notable passive skills in radius are transformed to"] = { "NotablesGrantManaCostAndSpellDamageUnique1", "NotablesGrantMinionDamageTakenUnique__1_", "NotablesGrantMinionMovementSpeedUnique__1_", }, ["nova spells cast at the targeted location instead of around you"] = { "NovaSkillsTargetLocationUnique__1__", }, @@ -7436,14 +7789,20 @@ return { ["offering skills have 50% reduced duration"] = { "OfferingDurationUnique__1", }, ["on killing a poisoned enemy, enemies within # metres are poisoned, and you and"] = { "PoisonSpreadAndHealOnPoisonedKillUniqueDagger8", }, ["on killing a poisoned enemy, enemies within 3 metres are poisoned, and you and"] = { "PoisonSpreadAndHealOnPoisonedKillUniqueDagger8", }, - ["on killing a rare monster, a random linked minion gains its modifiers for # seconds"] = { "LinkedMinionsStealRareModsUnique_1", }, + ["on killing a rare monster, a random linked minion gains its modifiers for # seconds"] = { "DivergentLinkedMinionsStealRareModsUnique_1", "LinkedMinionsStealRareModsUnique_1", }, + ["on killing a rare monster, a random linked minion gains its modifiers for 20 seconds"] = { "DivergentLinkedMinionsStealRareModsUnique_1", }, ["on killing a rare monster, a random linked minion gains its modifiers for 60 seconds"] = { "LinkedMinionsStealRareModsUnique_1", }, ["on non-channelling attack, set a life flask with greater than #% of maximum charges remaining to #%"] = { "ConsumeLifeFlaskChargesForDoTMultiOnAttackUnique__1", }, ["on non-channelling attack, set a life flask with greater than 50% of maximum charges remaining to 50%"] = { "ConsumeLifeFlaskChargesForDoTMultiOnAttackUnique__1", }, ["only affects passives in massive ring"] = { "JewelRingRadiusValuesUnique__2", }, ["only affects passives in small ring"] = { "JewelRingRadiusValuesUnique__1", }, ["onslaught"] = { "HasOnslaughtUnique__1", }, - ["pain attunement"] = { "KeystonePainAttunementUnique__1", "PainAttunement", }, + ["pact skills grant boons instead of afflictions"] = { "GainBoonsInsteadOfAfflictionsFromPactsUnique__1", }, + ["pact skills have (#)% increased cast speed"] = { "PactCastSpeedUnique__1", }, + ["pact skills have (#)% increased cooldown recovery rate"] = { "PactCooldownSpeedUnique__1", }, + ["pact skills have (30-50)% increased cast speed"] = { "PactCastSpeedUnique__1", }, + ["pact skills have (30-50)% increased cooldown recovery rate"] = { "PactCooldownSpeedUnique__1", }, + ["pain attunement"] = { "DivergentPainAttunement", "KeystonePainAttunementUnique__1", "PainAttunement", }, ["passive skills in radius also grant #% increased armour"] = { "UniqueJewelNodeArmourUnique__1", }, ["passive skills in radius also grant #% increased chaos damage"] = { "UniqueJewelNodeChaosDamageUnique__1", }, ["passive skills in radius also grant #% increased cold damage"] = { "UniqueJewelNodeColdDamageUnique__1", }, @@ -7486,10 +7845,11 @@ return { ["penetrate 1% elemental resistances per frenzy charge"] = { "ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6", }, ["penetrate 4% elemental resistances per abyss jewel affecting you"] = { "ElementalPenetrationPerAbyssalJewelUnique__1", }, ["perfect agony"] = { "KeystonePerfectAgonyUnique__1", }, - ["permanently intimidate enemies on block"] = { "EnemiesBlockedAreIntimidatedUnique__1", }, + ["permanently intimidate enemies on block"] = { "DivergentEnemiesBlockedAreIntimidatedUnique__1", "EnemiesBlockedAreIntimidatedUnique__1", }, ["petrified during effect"] = { "LocalFlaskPetrifiedUnique__1", }, ["phasing"] = { "PhasingUniqueBootsStrDex4", }, - ["physical damage of enemies hitting you is unlucky"] = { "EnemyExtraDamagerollsWithPhysicalDamageUnique_1", }, + ["physical damage of enemies hitting you is unlucky"] = { "DivergentEnemyExtraDamagerollsWithPhysicalDamageUnique_1", "EnemyExtraDamagerollsWithPhysicalDamageUnique_1", }, + ["physical damage reduction is zero"] = { "NoPhysicalDamageReductionUnique__1", }, ["physical damage taken bypasses energy shield"] = { "PhysicalDamageBypassesEnergyShieldUnique__1", }, ["point blank"] = { "KeystonePointBlankUnique__1", "KeystonePointBlankUnique__2", "VillagePointBlank", }, ["poison cursed enemies on hit"] = { "PoisonCursedEnemiesOnHitUnique__1", }, @@ -7514,8 +7874,8 @@ return { ["projectiles are fired in random directions"] = { "RandomProjectileDirectionUnique__1", }, ["projectiles cannot collide with enemies in close range"] = { "NearbyEnemiesAvoidProjectilesUnique__1", }, ["projectiles cannot continue after colliding with targets"] = { "ProjectilesExpireOnHitUniqueWand_1", }, - ["projectiles chain +# times while you have phasing"] = { "ProjectilesChainWhilePhasingUnique__1_", }, - ["projectiles chain +1 times while you have phasing"] = { "ProjectilesChainWhilePhasingUnique__1_", }, + ["projectiles chain +# times while you have phasing"] = { "DivergentProjectilesChainWhilePhasingUnique__1", "ProjectilesChainWhilePhasingUnique__1_", }, + ["projectiles chain +1 times while you have phasing"] = { "DivergentProjectilesChainWhilePhasingUnique__1", "ProjectilesChainWhilePhasingUnique__1_", }, ["projectiles from attacks can fork # additional time"] = { "AttackProjectilesForkExtraTimesUnique__1", }, ["projectiles from attacks can fork 1 additional time"] = { "AttackProjectilesForkExtraTimesUnique__1", }, ["projectiles from attacks fork"] = { "AttackProjectilesForkUnique__1", }, @@ -7533,14 +7893,15 @@ return { ["projectiles have (15-20)% chance to ignite"] = { "ProjectileIgniteChanceUniqueDagger6", }, ["projectiles have (15-20)% chance to shock"] = { "ProjectileShockChanceUniqueDagger6", }, ["projectiles have 4% chance to be able to chain when colliding with terrain per"] = { "ChainOffTerrainChancePerRangedAbyssJewelUnique__1__", }, - ["projectiles pierce # additional targets"] = { "TalismanAdditionalPierce", }, + ["projectiles pierce # additional targets"] = { "TalismanAdditionalPierce", "TalismanEnchantAdditionalPierce", }, ["projectiles pierce # additional targets if # hunter items are equipped"] = { "AdditionalPierce2HunterItemsUnique__1", }, - ["projectiles pierce # additional targets while you have phasing"] = { "AdditionalPierceWhilePhasingUnique__1", }, + ["projectiles pierce # additional targets while you have phasing"] = { "AdditionalPierceWhilePhasingUnique__1", "DivergentAdditionalPierceWhilePhasingUnique__1", }, ["projectiles pierce (#) additional targets"] = { "TalismanPierceChance", }, - ["projectiles pierce (25-35) additional targets"] = { "TalismanPierceChance", }, + ["projectiles pierce (2-3) additional targets"] = { "TalismanPierceChance", }, ["projectiles pierce 2 additional targets"] = { "TalismanAdditionalPierce", }, ["projectiles pierce 2 additional targets if 2 hunter items are equipped"] = { "AdditionalPierce2HunterItemsUnique__1", }, - ["projectiles pierce 5 additional targets while you have phasing"] = { "AdditionalPierceWhilePhasingUnique__1", }, + ["projectiles pierce 3 additional targets"] = { "TalismanEnchantAdditionalPierce", }, + ["projectiles pierce 5 additional targets while you have phasing"] = { "AdditionalPierceWhilePhasingUnique__1", "DivergentAdditionalPierceWhilePhasingUnique__1", }, ["projectiles pierce all burning enemies"] = { "AlwaysPierceBurningEnemiesUnique__1", }, ["projectiles pierce all targets while you have phasing"] = { "PrrojectilesPierceWhilePhasingUnique__1_", }, ["projectiles pierce an additional target"] = { "AdditionalPierceUniqueJewel__1", "PierceChanceUniqueJewel41", }, @@ -7559,9 +7920,11 @@ return { ["queen's demand can trigger level # storm of judgement"] = { "UniqueStaffTriggerAtziriStormCall__1____", }, ["queen's demand can trigger level 20 flames of judgement"] = { "UniqueStaffTriggerAtziriStormFlameblast__1", }, ["queen's demand can trigger level 20 storm of judgement"] = { "UniqueStaffTriggerAtziriStormCall__1____", }, - ["quicksilver flasks you use also apply to nearby allies"] = { "QuicksilverFlaskAppliesToAlliesUnique__1", }, + ["quicksilver flasks you use also apply to nearby allies"] = { "DivergentQuicksilverFlaskAppliesToAlliesUnique__1", "QuicksilverFlaskAppliesToAlliesUnique__1", }, ["rage grants spell damage instead of attack damage"] = { "RageCasterStatsUnique__1", }, - ["raise zombie does not require a corpse"] = { "ZombiesNeedNoCorpsesUnique__1", }, + ["rage grants spell damage instead of attack damage at #% of the value"] = { "DivergentRageCasterStats50PercentValueUnique__1", }, + ["rage grants spell damage instead of attack damage at 50% of the value"] = { "DivergentRageCasterStats50PercentValueUnique__1", }, + ["raise zombie does not require a corpse"] = { "DivergentZombiesNeedNoCorpsesUnique__1", "ZombiesNeedNoCorpsesUnique__1", }, ["raised spectres have (#)% increased critical strike chance"] = { "SpectreCriticalStrikeChanceUnique__1", }, ["raised spectres have (#)% increased maximum life"] = { "SpectreIncreasedLifeUnique__1", }, ["raised spectres have (50-100)% increased maximum life"] = { "SpectreIncreasedLifeUnique__1", }, @@ -7580,12 +7943,14 @@ return { ["raised zombies have avatar of fire"] = { "ZombiesHaveAvatarOfFireUnique__1", }, ["raised zombies take (#)% of their maximum life per second as fire damage"] = { "ZombiesTakeFireDamagePerSecondUnique__1_", }, ["raised zombies take (15-30)% of their maximum life per second as fire damage"] = { "ZombiesTakeFireDamagePerSecondUnique__1_", }, - ["rampage"] = { "SimulatedRampageDexInt6", "SimulatedRampageStrDex5", "SimulatedRampageStrInt2", "SimulatedRampageUnique__2", "SimulatedRampageUnique__3_", }, + ["rampage"] = { "DivergentSimulatedRampageDexInt6", "DivergentSimulatedRampageStrDex5", "DivergentSimulatedRampageStrInt2", "SimulatedRampageDexInt6", "SimulatedRampageStrDex5", "SimulatedRampageStrInt2", "SimulatedRampageUnique__2", "SimulatedRampageUnique__3_", }, ["recharges # charge when you consume an ignited corpse"] = { "GainChargeOnConsumingIgnitedCorpseUnique__1__", }, ["recharges # charges when you consume an ignited corpse"] = { "GainChargeOnConsumingIgnitedCorpseUnique__2", }, ["recharges 1 charge when you consume an ignited corpse"] = { "GainChargeOnConsumingIgnitedCorpseUnique__1__", }, ["recharges 5 charges when you consume an ignited corpse"] = { "GainChargeOnConsumingIgnitedCorpseUnique__2", }, ["recover # energy shield when your trap is triggered by an enemy"] = { "GainEnergyShieldOnTrapTriggeredUnique__1_", }, + ["recover # life when you block"] = { "DivergentGainLifeOnBlockUnique__1", }, + ["recover # life when you suppress spell damage"] = { "DivergentRecoverLifeOnSuppressUnique__1", }, ["recover # life when your trap is triggered by an enemy"] = { "GainLifeOnTrapTriggeredUnique__1", }, ["recover #% of energy shield on kill"] = { "MaximumEnergyShieldOnKillPercentUnique__2", }, ["recover #% of life on kill"] = { "MaximumLifeOnKillPercentUnique__1", "MaximumLifeOnKillPercentUnique__4_", "RecoverPercentMaxLifeOnKillUnique__1", "RecoverPercentMaxLifeOnKillUnique__2", "RecoverPercentMaxLifeOnKillUnique__3", }, @@ -7630,24 +7995,27 @@ return { ["recover 1% of life on kill"] = { "MaximumLifeOnKillPercentUnique__1", "MaximumLifeOnKillPercentUnique__4_", "RecoverPercentMaxLifeOnKillUnique__3", }, ["recover 1% of life when you ignite an enemy"] = { "RecoverLifePercentOnIgniteUnique__1", }, ["recover 1% of mana on kill"] = { "ManaGainedOnKillPercentageUniqueCorruptedJewel14", }, + ["recover 100 life when you suppress spell damage"] = { "DivergentRecoverLifeOnSuppressUnique__1", }, ["recover 100 life when your trap is triggered by an enemy"] = { "GainLifeOnTrapTriggeredUnique__1", }, + ["recover 150 life when you block"] = { "DivergentGainLifeOnBlockUnique__1", }, ["recover 2% of life when you consume a corpse"] = { "LifeOnCorpseRemovalUniqueJewel14", }, ["recover 20% of life on rampage"] = { "HealOnRampageUniqueGlovesStrDex5", }, ["recover 3% of mana when you shock an enemy"] = { "PercentManaRecoveredWhenYouShockUnique__1", }, ["recover 4% of life per endurance charge on use"] = { "FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1", }, ["recover 5% of life on kill"] = { "RecoverPercentMaxLifeOnKillUnique__1", "RecoverPercentMaxLifeOnKillUnique__2", }, ["recover 50 energy shield when your trap is triggered by an enemy"] = { "GainEnergyShieldOnTrapTriggeredUnique__1_", }, - ["recover energy shield equal to #% of armour when you block"] = { "EnergyShieldGainedOnBlockUniqueShieldStrInt4", }, + ["recover energy shield equal to #% of armour when you block"] = { "DivergentEnergyShieldGainedOnBlockUniqueShieldStrInt4", "EnergyShieldGainedOnBlockUniqueShieldStrInt4", }, + ["recover energy shield equal to 1% of armour when you block"] = { "DivergentEnergyShieldGainedOnBlockUniqueShieldStrInt4", }, ["recover energy shield equal to 2% of armour when you block"] = { "EnergyShieldGainedOnBlockUniqueShieldStrInt4", }, ["recover full life at the end of the effect"] = { "LocalFlaskLifeOnFlaskDurationEndUniqueFlask3", }, ["reflect shocks applied to you to all nearby enemies"] = { "ReflectsShockToEnemiesInRadiusUnique__1", }, ["reflects # chaos damage to melee attackers"] = { "AttackerTakesChaosDamageUniqueBodyStrInt4", }, - ["reflects # cold damage to melee attackers"] = { "AttackerTakesColdDamageGlovesDex1", "AttackerTakesColdDamageUnique__1", }, - ["reflects # fire damage to melee attackers"] = { "AttackerTakesFireDamageUniqueBodyInt2", "AttackerTakesFireDamageUnique__1", }, - ["reflects # lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUnique__1", }, + ["reflects # cold damage to melee attackers"] = { "AttackerTakesColdDamageGlovesDex1", "AttackerTakesColdDamageUnique__1", "DivergentAttackerTakesColdDamageUnique__1", }, + ["reflects # fire damage to melee attackers"] = { "AttackerTakesFireDamageUniqueBodyInt2", "AttackerTakesFireDamageUnique__1", "DivergentAttackerTakesFireDamageUnique__1", }, + ["reflects # lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUnique__1", "DivergentAttackerTakesLightningDamageUnique__1", }, ["reflects # physical damage to melee attackers"] = { "AttackerTakesDamageUniqueHelmetDex3", "AttackerTakesDamageUniqueIntHelmet1", }, ["reflects # to # lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUniqueBodyInt1", "AttackerTakesLightningDamageUnique___1", }, - ["reflects # to # physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueAmulet16", "ReflectDamageToAttackersOnBlockUniqueDescentShield1", "ReflectDamageToAttackersOnBlockUniqueDescentStaff1", "ReflectDamageToAttackersOnBlockUniqueShieldDex5", }, + ["reflects # to # physical damage to attackers on block"] = { "DivergentReflectDamageToAttackersOnBlockUniqueShieldDex5", "ReflectDamageToAttackersOnBlockUniqueAmulet16", "ReflectDamageToAttackersOnBlockUniqueDescentShield1", "ReflectDamageToAttackersOnBlockUniqueDescentStaff1", "ReflectDamageToAttackersOnBlockUniqueShieldDex5", }, ["reflects # to # physical damage to melee attackers"] = { "AttackerTakesDamageUniqueHelmetDexInt6", }, ["reflects # to (#) lightning damage to attackers on block"] = { "LightningDamageOnBlockUniqueHelmetStrInt4", }, ["reflects (#) cold damage to melee attackers"] = { "MeleeAttackerTakesColdDamageUniqueShieldDex1", }, @@ -7675,11 +8043,11 @@ return { ["reflects 1 to (180-220) lightning damage to attackers on block"] = { "LightningDamageOnBlockUniqueHelmetStrInt4", }, ["reflects 1 to 150 lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUnique___1", }, ["reflects 1 to 250 lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUniqueBodyInt1", }, - ["reflects 100 cold damage to melee attackers"] = { "AttackerTakesColdDamageGlovesDex1", "AttackerTakesColdDamageUnique__1", }, - ["reflects 100 fire damage to melee attackers"] = { "AttackerTakesFireDamageUniqueBodyInt2", "AttackerTakesFireDamageUnique__1", }, - ["reflects 100 lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUnique__1", }, + ["reflects 100 cold damage to melee attackers"] = { "AttackerTakesColdDamageGlovesDex1", "AttackerTakesColdDamageUnique__1", "DivergentAttackerTakesColdDamageUnique__1", }, + ["reflects 100 fire damage to melee attackers"] = { "AttackerTakesFireDamageUniqueBodyInt2", "AttackerTakesFireDamageUnique__1", "DivergentAttackerTakesFireDamageUnique__1", }, + ["reflects 100 lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUnique__1", "DivergentAttackerTakesLightningDamageUnique__1", }, ["reflects 100 to 150 physical damage to melee attackers"] = { "AttackerTakesDamageUniqueHelmetDexInt6", }, - ["reflects 1000 to 10000 physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueShieldDex5", }, + ["reflects 1000 to 10000 physical damage to attackers on block"] = { "DivergentReflectDamageToAttackersOnBlockUniqueShieldDex5", "ReflectDamageToAttackersOnBlockUniqueShieldDex5", }, ["reflects 240 to 300 physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueAmulet16", }, ["reflects 30 chaos damage to melee attackers"] = { "AttackerTakesChaosDamageUniqueBodyStrInt4", }, ["reflects 4 physical damage to melee attackers"] = { "AttackerTakesDamageUniqueHelmetDex3", }, @@ -7692,11 +8060,11 @@ return { ["regenerate # life per second"] = { "LifeRegenerationUniqueTwoHandAxe4", "LifeRegenerationUniqueWreath1", }, ["regenerate # life per second for each uncorrupted item equipped"] = { "LifeRegenPerUncorruptedItemUnique__1", }, ["regenerate # life per second if no equipped items are corrupted"] = { "LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1", }, - ["regenerate # life per second if you have at least # maximum energy shield"] = { "LifeRegenerationWith1000EnergyShieldUnique__1", "LifeRegenerationWith1500EnergyShieldUnique__1", "LifeRegenerationWith500EnergyShieldUnique__1", }, - ["regenerate # life per second per endurance charge"] = { "LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3", }, + ["regenerate # life per second if you have at least # maximum energy shield"] = { "DivergentLifeRegenerationWith1000EnergyShieldUnique__1", "LifeRegenerationWith1000EnergyShieldUnique__1", "LifeRegenerationWith1500EnergyShieldUnique__1", "LifeRegenerationWith500EnergyShieldUnique__1", }, + ["regenerate # life per second per endurance charge"] = { "DivergentLifeRegenPerMinutePerEnduranceChargeUnique__1", "LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3", }, ["regenerate # life per second per level"] = { "LifeRegenerationPerLevelUniqueTwoHandSword7", "LifeRegenerationPerLevelUnique__1", }, ["regenerate # life per second while moving"] = { "LifeRegenerationWhileMovingUnique__1", }, - ["regenerate # life per second while on low life"] = { "LifeRegenerationFlatOnLowLifeUnique__1", }, + ["regenerate # life per second while on low life"] = { "DivergentLifeRegenerationFlatOnLowLifeUnique__1", "LifeRegenerationFlatOnLowLifeUnique__1", }, ["regenerate # life per second while you have avian's flight"] = { "AviansFlightLifeRegenerationUnique__1", }, ["regenerate # mana per second"] = { "AddedManaRegenerationUniqueDescentWand1", "AddedManaRegenerationUniqueJewel10", }, ["regenerate # mana per second if all equipped items are corrupted"] = { "BaseManaRegenerationWhileAllCorruptedItemsUnique__1", }, @@ -7704,7 +8072,7 @@ return { ["regenerate # mana per second per power charge"] = { "ManaRegeneratedPerSecondPerPowerChargeUnique__1", }, ["regenerate # mana per second while you have avian's flight"] = { "AviansFlightManaRegenerationUnique__1_", }, ["regenerate # rage per second for every # life recovery per second from regeneration"] = { "RageRegenerationPerLifeRegenerationUnique__1", }, - ["regenerate #% life over one second when hit while sane"] = { "RegenerateLifeNotUnhingedUnique__1", }, + ["regenerate #% life over one second when hit while sane"] = { "DivergentRegenerateLifeNotUnhingedUnique__1", "RegenerateLifeNotUnhingedUnique__1", }, ["regenerate #% of energy shield per second"] = { "EnergyShieldRegenerationUnique__1", "EnergyShieldRegenerationUnique__2", "EnergyShieldRegenerationUnique__3", }, ["regenerate #% of energy shield per second for"] = { "EnergyShieldRegenPerAllocatedIntelligenceJewelUnique__1_", }, ["regenerate #% of energy shield per second if you've dealt a critical strike with this weapon recently"] = { "LocalEnergyShieldRegenerationIfCritRecentlyUnique__1", }, @@ -7716,14 +8084,14 @@ return { ["regenerate #% of life per second if you have been hit recently"] = { "LifeRegenerationIfHitRecentlyUnique__1", }, ["regenerate #% of life per second if you've taken a savage hit in the past # second"] = { "LifeRegeneratedAfterSavageHitUnique_1", }, ["regenerate #% of life per second on chilled ground"] = { "LifeRegenerationPercentOnChilledGroundUniqueBootsInt6", }, - ["regenerate #% of life per second per # maximum energy shield"] = { "LifeRegenerationPer500EnergyShieldUnique__1", }, + ["regenerate #% of life per second per # player maximum energy shield"] = { "DivergentLifeRegenerationPer500EnergyShieldUnique__1", "LifeRegenerationPer500EnergyShieldUnique__1", }, ["regenerate #% of life per second per endurance charge"] = { "ChargeBonusLifeRegenerationPerEnduranceCharge", "LifeRegenerationPercentPerEnduranceChargeUnique__1", }, ["regenerate #% of life per second per frenzy charge"] = { "ChargeBonusLifeRegenerationPerFrenzyCharge", "LifeRegenerationPerFrenzyChargeUniqueBootsDex4", }, ["regenerate #% of life per second per power charge"] = { "ChargeBonusLifeRegenerationPerPowerCharge", "LifeRegenerationPerPowerChargeUnique__1__", }, ["regenerate #% of life per second while frozen"] = { "LifeRegenerationWhileFrozenUnique__1", }, ["regenerate #% of life per second while on low life"] = { "LifeRegenerationOnLowLifeUniqueAmulet4", "LifeRegenerationOnLowLifeUniqueBodyStrInt2", "LifeRegenerationOnLowLifeUniqueShieldStrInt3_", }, ["regenerate #% of life per second with at least # strength"] = { "LifeRegenerationAt400StrengthUnique__1", }, - ["regenerate #% of mana per second"] = { "BaseManaRegenerationUniqueBodyDexInt2", }, + ["regenerate #% of mana per second"] = { "BaseManaRegenerationUniqueBodyDexInt2", "DivergentBaseManaRegenerationUniqueBodyDexInt2", }, ["regenerate #% of your armour as life over # second when you block"] = { "ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6", }, ["regenerate (#) energy shield per second"] = { "FlatEnergyShieldRegenerationUnique__1", }, ["regenerate (#) life over # second when you cast a spell"] = { "RegenerateLifeOnCastUniqueWand4", }, @@ -7759,6 +8127,7 @@ return { ["regenerate (80-100) energy shield per second"] = { "FlatEnergyShieldRegenerationUnique__1", }, ["regenerate 0.1% of life per second"] = { "JewelImplicitLifeRegeneration", }, ["regenerate 0.2 life per second per level"] = { "LifeRegenerationPerLevelUniqueTwoHandSword7", }, + ["regenerate 0.2% of life per second per 500 player maximum energy shield"] = { "DivergentLifeRegenerationPer500EnergyShieldUnique__1", }, ["regenerate 0.2% of life per second per endurance charge"] = { "LifeRegenerationPercentPerEnduranceChargeUnique__1", }, ["regenerate 0.3% of life per second per endurance charge"] = { "ChargeBonusLifeRegenerationPerEnduranceCharge", }, ["regenerate 0.3% of life per second per frenzy charge"] = { "ChargeBonusLifeRegenerationPerFrenzyCharge", }, @@ -7771,23 +8140,22 @@ return { ["regenerate 1 rage per second for every 200 life recovery per second from regeneration"] = { "RageRegenerationPerLifeRegenerationUnique__1", }, ["regenerate 1% of energy shield per second"] = { "EnergyShieldRegenerationUnique__1", "EnergyShieldRegenerationUnique__2", }, ["regenerate 1% of life per second"] = { "LifeRegenerationRatePercentUnique__3", "LifeRegenerationRatePercentUnique__4_", }, - ["regenerate 1% of life per second per 500 maximum energy shield"] = { "LifeRegenerationPer500EnergyShieldUnique__1", }, + ["regenerate 1% of life per second per 500 player maximum energy shield"] = { "LifeRegenerationPer500EnergyShieldUnique__1", }, ["regenerate 1% of life per second while on low life"] = { "LifeRegenerationOnLowLifeUniqueAmulet4", }, - ["regenerate 1% of mana per second"] = { "BaseManaRegenerationUniqueBodyDexInt2", }, + ["regenerate 1% of mana per second"] = { "BaseManaRegenerationUniqueBodyDexInt2", "DivergentBaseManaRegenerationUniqueBodyDexInt2", }, ["regenerate 10% life over one second when hit while sane"] = { "RegenerateLifeNotUnhingedUnique__1", }, ["regenerate 10% of life per second"] = { "LifeRegenerationRatePercentUnique__2", }, ["regenerate 10% of life per second if you've taken a savage hit in the past 1 second"] = { "LifeRegeneratedAfterSavageHitUnique_1", }, ["regenerate 10% of life per second while frozen"] = { "LifeRegenerationWhileFrozenUnique__1", }, - ["regenerate 100 life per second if you have at least 1000 maximum energy shield"] = { "LifeRegenerationWith1000EnergyShieldUnique__1", }, + ["regenerate 100 life per second if you have at least 1000 maximum energy shield"] = { "DivergentLifeRegenerationWith1000EnergyShieldUnique__1", "LifeRegenerationWith1000EnergyShieldUnique__1", }, ["regenerate 100 life per second while moving"] = { "LifeRegenerationWhileMovingUnique__1", }, - ["regenerate 100 life per second while on low life"] = { "LifeRegenerationFlatOnLowLifeUnique__1", }, + ["regenerate 100 life per second while on low life"] = { "DivergentLifeRegenerationFlatOnLowLifeUnique__1", "LifeRegenerationFlatOnLowLifeUnique__1", }, ["regenerate 100 life per second while you have avian's flight"] = { "AviansFlightLifeRegenerationUnique__1", }, ["regenerate 12 mana per second while you have avian's flight"] = { "AviansFlightManaRegenerationUnique__1_", }, ["regenerate 15 life per second for each uncorrupted item equipped"] = { "LifeRegenPerUncorruptedItemUnique__1", }, ["regenerate 150 life per second if you have at least 1500 maximum energy shield"] = { "LifeRegenerationWith1500EnergyShieldUnique__1", }, ["regenerate 2 life per second"] = { "LifeRegenerationUniqueWreath1", }, ["regenerate 2 mana per second"] = { "AddedManaRegenerationUniqueDescentWand1", }, - ["regenerate 2 mana per second per power charge"] = { "ManaRegeneratedPerSecondPerPowerChargeUnique__1", }, ["regenerate 2% of energy shield per second"] = { "EnergyShieldRegenerationUnique__3", }, ["regenerate 2% of energy shield per second while on low life"] = { "EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1", }, ["regenerate 2% of life per second"] = { "LifeRegenerationRatePercentUnique__1", "LifeRegenerationRatePercentageUniqueJewel24", "TalismanPercentLifeRegeneration", }, @@ -7805,8 +8173,11 @@ return { ["regenerate 3% of life per second while on low life"] = { "LifeRegenerationOnLowLifeUniqueShieldStrInt3_", }, ["regenerate 35 mana per second if all equipped items are corrupted"] = { "BaseManaRegenerationWhileAllCorruptedItemsUnique__1", }, ["regenerate 4% of life per second"] = { "LifeRegenerationRatePercentageUniqueAmulet21", }, + ["regenerate 40 life per second per endurance charge"] = { "DivergentLifeRegenPerMinutePerEnduranceChargeUnique__1", }, ["regenerate 400 energy shield per second if all equipped items are corrupted"] = { "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1", }, ["regenerate 400 life per second if no equipped items are corrupted"] = { "LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1", }, + ["regenerate 5 mana per second per power charge"] = { "ManaRegeneratedPerSecondPerPowerChargeUnique__1", }, + ["regenerate 5% life over one second when hit while sane"] = { "DivergentRegenerateLifeNotUnhingedUnique__1", }, ["regenerate 5% of energy shield per second while shocked"] = { "EnergyShieldRegenerationWhileShockedUnique__1", }, ["regenerate 50 life per second if you have at least 500 maximum energy shield"] = { "LifeRegenerationWith500EnergyShieldUnique__1", }, ["regenerate 75 life per second per endurance charge"] = { "LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3", }, @@ -7825,16 +8196,16 @@ return { ["removes elemental ailments on rampage"] = { "DispelStatusAilmentsOnRampageUniqueGlovesStrInt2", }, ["resolute technique"] = { "KeystoneResoluteTechniqueUnique__1", "ResoluteTechniqueUniqueTwoHandAxe9", }, ["restores ward on use"] = { "UtilityFlaskWard", }, + ["retaliation skills become usable for #% longer"] = { "DivergentRetaliateSkillUseWindowDuration_1", }, ["retaliation skills become usable for (#)% longer"] = { "RetaliateSkillUseWindowDuration_1", }, ["retaliation skills become usable for (50-100)% longer"] = { "RetaliateSkillUseWindowDuration_1", }, + ["retaliation skills become usable for 100% longer"] = { "DivergentRetaliateSkillUseWindowDuration_1", }, ["retaliation skills deal (#)% increased damage"] = { "RetaliationSkillDamageUnique_1", }, ["retaliation skills deal (50-100)% increased damage"] = { "RetaliationSkillDamageUnique_1", }, ["retaliation skills have #% chance to knockback"] = { "KnockbackOnCounterattackChanceUnique__1", }, ["retaliation skills have 100% chance to knockback"] = { "KnockbackOnCounterattackChanceUnique__1", }, - ["right ring slot: #% of physical hit damage from you and"] = { "RightRingSlotPhysicalReflectDamageTakenUniqueRing10", }, ["right ring slot: +# to maximum mana"] = { "RightRingSlotMaximumManaUnique__1", }, ["right ring slot: +250 to maximum mana"] = { "RightRingSlotMaximumManaUnique__1", }, - ["right ring slot: 100% of physical hit damage from you and"] = { "RightRingSlotPhysicalReflectDamageTakenUniqueRing10", }, ["right ring slot: cover enemies in frost for # seconds when you freeze them"] = { "RightRingCoveredInFrostUnique__1", }, ["right ring slot: cover enemies in frost for 5 seconds when you freeze them"] = { "RightRingCoveredInFrostUnique__1", }, ["right ring slot: projectiles from spells cannot fork"] = { "RightRingSpellProjectilesCannotForkUnique__1", }, @@ -7842,34 +8213,40 @@ return { ["right ring slot: projectiles from spells chain +1 times"] = { "RightRingSpellProjectilesChainUnique__1", }, ["right ring slot: regenerate #% of energy shield per second"] = { "RightRingSlotEnergyShieldRegenUniqueRing13", }, ["right ring slot: regenerate 6% of energy shield per second"] = { "RightRingSlotEnergyShieldRegenUniqueRing13", }, + ["right ring slot: you and your minions prevent +#% of reflected physical damage"] = { "RightRingSlotPhysicalReflectDamageTakenUniqueRing10", }, + ["right ring slot: you and your minions prevent +100% of reflected physical damage"] = { "RightRingSlotPhysicalReflectDamageTakenUniqueRing10", }, ["right ring slot: you cannot regenerate mana"] = { "RightRingSlotNoManaRegenUniqueRing13", }, ["rogue equipment cannot be found"] = { "HeistContractBetterTargetValue", }, + ["roiling tempest"] = { "KeystoneLightningPuristUnique__1", }, ["runebinder"] = { "KeystoneRunebinderUnique__1", }, + ["sacrifice #% of life to gain that much energy shield when you cast a spell"] = { "DivergentSacrificeLifeToGainESUnique__1", }, ["sacrifice #% of your life when you use or trigger a spell skill"] = { "SacrificeLifeOnSpellSkillUnique__1", }, ["sacrifice (#)% of life to gain that much energy shield when you cast a spell"] = { "SacrificeLifeToGainESUnique__1", }, ["sacrifice (5-25)% of life to gain that much energy shield when you cast a spell"] = { "SacrificeLifeToGainESUnique__1", }, ["sacrifice 10% of your life when you use or trigger a spell skill"] = { "SacrificeLifeOnSpellSkillUnique__1", }, + ["sacrifice 20% of life to gain that much energy shield when you cast a spell"] = { "DivergentSacrificeLifeToGainESUnique__1", }, ["sap enemies when you block their damage"] = { "ChanceToInflictSapOnEnemyOnBlockImplicitE1", }, - ["scorch enemies in close range when you block"] = { "ScorchOnEnemiesOnBlockUnique__1", }, + ["scorch enemies in close range when you block"] = { "DivergentScorchOnEnemiesOnBlockUnique__1", "ScorchOnEnemiesOnBlockUnique__1", }, ["scorch enemies when you block their damage"] = { "ChanceToInflictScorchOnEnemyOnBlockImplicitE1", }, ["secrets of suffering"] = { "SecretsOfSufferingKeystoneSceptreImplicit1", }, ["sentinels of purity deal (#)% increased damage"] = { "HeraldBonusPurityMinionDamage", }, ["sentinels of purity deal (70-100)% increased damage"] = { "HeraldBonusPurityMinionDamage", }, - ["share endurance charges with nearby party members"] = { "ShareEnduranceChargesWithParty", }, - ["shared suffering"] = { "SharedSufferingUnique__1", }, + ["share endurance charges with nearby party members"] = { "DivergentShareEnduranceChargesWithParty", "ShareEnduranceChargesWithParty", }, + ["shared suffering"] = { "DivergentSharedSufferingUnique__1", "SharedSufferingUnique__1", }, ["shepherd of souls"] = { "KeystoneShepherdOfSoulsUnique__1", "VillageShepherdOfSouls", }, ["shock attackers for # seconds on block"] = { "ChanceToShockAttackersOnBlockUnique__2", }, ["shock attackers for 4 seconds on block"] = { "ChanceToShockAttackersOnBlockUnique__2", }, ["shock reflection"] = { "ReflectsShocksUnique__1", }, - ["shocked enemies you kill explode, dealing #% of"] = { "ShockedEnemiesExplodeUnique__1_", }, + ["shocked enemies you kill explode, dealing #% of"] = { "DivergentShockedEnemiesExplodeUnique__1_", "ShockedEnemiesExplodeUnique__1_", }, + ["shocked enemies you kill explode, dealing 3% of"] = { "DivergentShockedEnemiesExplodeUnique__1_", }, ["shocked enemies you kill explode, dealing 5% of"] = { "ShockedEnemiesExplodeUnique__1_", }, ["shocks nearby enemies during effect, causing #% increased damage taken"] = { "ShockNearbyEnemiesDuringFlaskEffect___1", }, ["shocks nearby enemies during effect, causing 10% increased damage taken"] = { "ShockNearbyEnemiesDuringFlaskEffect___1", }, ["shocks you cause are reflected back to you"] = { "ShocksReflectToSelfUniqueBelt12", "ShocksReflectToSelfUnique__1", }, ["shocks you inflict during effect spread to other enemies within # metres"] = { "ShockProliferationDuringFlaskEffectUnique__1", }, ["shocks you inflict during effect spread to other enemies within 2 metres"] = { "ShockProliferationDuringFlaskEffectUnique__1", }, - ["shocks you inflict spread to other enemies within # metres"] = { "ShockProliferationUnique__1", "ShockProliferationUnique__2", }, - ["shocks you inflict spread to other enemies within 1.5 metres"] = { "ShockProliferationUnique__1", "ShockProliferationUnique__2", }, + ["shocks you inflict spread to other enemies within # metres"] = { "DivergentShockProliferationUnique__1", "DivergentShockProliferationUnique__2", "ShockProliferationUnique__1", "ShockProliferationUnique__2", }, + ["shocks you inflict spread to other enemies within 1.5 metres"] = { "DivergentShockProliferationUnique__1", "DivergentShockProliferationUnique__2", "ShockProliferationUnique__1", "ShockProliferationUnique__2", }, ["shocks you when you reach maximum power charges"] = { "ShockOnMaxPowerChargesUnique__1", }, ["shrapnel ballista has +# to maximum number of summoned totems per # strength"] = { "AdditionalShrapnelBallistaePerStrengthUnique__1", }, ["shrapnel ballista has +1 to maximum number of summoned totems per 200 strength"] = { "AdditionalShrapnelBallistaePerStrengthUnique__1", }, @@ -7898,13 +8275,15 @@ return { ["skills fire 2 additional projectiles if you've been hit recently"] = { "NumberOfProjectilesIfHitRecentlyUnique__1", }, ["skills fire 2 additional projectiles if you've used a movement skill recently"] = { "NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1", }, ["skills fire 3 additional projectiles for 4 seconds after"] = { "AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1", }, - ["skills fire an additional projectile"] = { "UniqueSpecialCorruptionAdditionalProjectile", "VillageAdditionalProjectiles", }, + ["skills fire an additional projectile"] = { "TalismanEnchantAdditionalProjectiles", "UniqueSpecialCorruptionAdditionalProjectile", "VillageAdditionalProjectiles", }, ["skills fire an additional projectile if # hunter items are equipped"] = { "AdditionalProjectile6HunterItemsUnique__1", }, ["skills fire an additional projectile if 6 hunter items are equipped"] = { "AdditionalProjectile6HunterItemsUnique__1", }, ["skills gain a base energy shield cost equal to #% of base mana cost"] = { "EnergyShieldCostAsManaCostUnique__1", }, ["skills gain a base energy shield cost equal to 200% of base mana cost"] = { "EnergyShieldCostAsManaCostUnique__1", }, ["skills gain a base life cost equal to #% of base mana cost"] = { "LifeCostAsManaCostUnique__1", }, ["skills gain a base life cost equal to 100% of base mana cost"] = { "LifeCostAsManaCostUnique__1", }, + ["skills socketed in your helmet are supported by level # (#)"] = { "UniquePearlSupportOne", "UniquePearlSupportTwo", }, + ["skills socketed in your helmet are supported by level 20 (1-164)"] = { "UniquePearlSupportOne", "UniquePearlSupportTwo", }, ["skills supported by unleash have (#)% increased seal gain frequency"] = { "UnleashSealGainFrequencyUnique__1", }, ["skills supported by unleash have (30-50)% increased seal gain frequency"] = { "UnleashSealGainFrequencyUnique__1", }, ["skills used by spectral totems deal (#)% less damage"] = { "GhostTotemDamageUnique__1", }, @@ -7912,45 +8291,47 @@ return { ["skills used by traps have (#)% increased area of effect"] = { "TrapAreaOfEffectUnique__1", }, ["skills used by traps have (10-20)% increased area of effect"] = { "TrapAreaOfEffectUnique__1", }, ["skills which create brands create an additional brand"] = { "SummonAdditionalBrandUnique__1", }, + ["skills which exert an attack have #% chance to not count that attack"] = { "DivergentSkillsExertAttacksDoNotCountChanceUnique__1", }, ["skills which exert an attack have (#)% chance to not count that attack"] = { "SkillsExertAttacksDoNotCountChanceUnique__1", }, ["skills which exert an attack have (20-40)% chance to not count that attack"] = { "SkillsExertAttacksDoNotCountChanceUnique__1", }, - ["skills which throw mines throw up to # additional mine if you have at least # dexterity"] = { "PlaceAdditionalMineWith600DexterityUnique__1", }, - ["skills which throw mines throw up to # additional mine if you have at least # intelligence"] = { "PlaceAdditionalMineWith600IntelligenceUnique__1", }, - ["skills which throw mines throw up to 1 additional mine if you have at least 800 dexterity"] = { "PlaceAdditionalMineWith600DexterityUnique__1", }, - ["skills which throw mines throw up to 1 additional mine if you have at least 800 intelligence"] = { "PlaceAdditionalMineWith600IntelligenceUnique__1", }, + ["skills which exert an attack have 30% chance to not count that attack"] = { "DivergentSkillsExertAttacksDoNotCountChanceUnique__1", }, + ["skills which throw mines throw up to # additional mine if you have at least # dexterity"] = { "DivergentPlaceAdditionalMineWith600DexterityUnique__1", "PlaceAdditionalMineWith600DexterityUnique__1", }, + ["skills which throw mines throw up to # additional mine if you have at least # intelligence"] = { "DivergentPlaceAdditionalMineWith600IntelligenceUnique__1", "PlaceAdditionalMineWith600IntelligenceUnique__1", }, + ["skills which throw mines throw up to 1 additional mine if you have at least 800 dexterity"] = { "DivergentPlaceAdditionalMineWith600DexterityUnique__1", "PlaceAdditionalMineWith600DexterityUnique__1", }, + ["skills which throw mines throw up to 1 additional mine if you have at least 800 intelligence"] = { "DivergentPlaceAdditionalMineWith600IntelligenceUnique__1", "PlaceAdditionalMineWith600IntelligenceUnique__1", }, ["skills which throw traps cost life instead of mana"] = { "TrapSkillsHaveBloodMagicUnique__1", }, ["skills which throw traps throw up to # additional traps"] = { "AdditionalTrapsThrownUnique__1", }, ["skills which throw traps throw up to 2 additional traps"] = { "AdditionalTrapsThrownUnique__1", }, - ["socketed curse gems have #% increased reservation efficiency"] = { "ReducedReservationForSocketedCurseGemsUnique__1", "ReducedReservationForSocketedCurseGemsUnique__2", }, - ["socketed curse gems have 30% increased reservation efficiency"] = { "ReducedReservationForSocketedCurseGemsUnique__1", }, + ["socketed curse gems have #% increased reservation efficiency"] = { "DivergentReducedReservationForSocketedCurseGemsUnique__1", "ReducedReservationForSocketedCurseGemsUnique__1", "ReducedReservationForSocketedCurseGemsUnique__2", }, + ["socketed curse gems have 30% increased reservation efficiency"] = { "DivergentReducedReservationForSocketedCurseGemsUnique__1", "ReducedReservationForSocketedCurseGemsUnique__1", }, ["socketed curse gems have 80% increased reservation efficiency"] = { "ReducedReservationForSocketedCurseGemsUnique__2", }, - ["socketed gems are supported by level # added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUniqueBodyInt3", "SocketedGemsHaveAddedChaosDamageUnique__1", "SocketedGemsHaveAddedChaosDamageUnique__2", "SocketedGemsHaveAddedChaosDamageUnique__3", }, - ["socketed gems are supported by level # added cold damage"] = { "DisplaySupportedByAddedColdDamageUnique__1", "DisplaySupportedByAddedColdDamageUnique__2", }, + ["socketed gems are supported by level # added chaos damage"] = { "DivergentSocketedGemsHaveAddedChaosDamageUnique__3", "SocketedGemsHaveAddedChaosDamageUniqueBodyInt3", "SocketedGemsHaveAddedChaosDamageUnique__1", "SocketedGemsHaveAddedChaosDamageUnique__2", "SocketedGemsHaveAddedChaosDamageUnique__3", }, + ["socketed gems are supported by level # added cold damage"] = { "DisplaySupportedByAddedColdDamageUnique__1", "DisplaySupportedByAddedColdDamageUnique__2", "DivergentDisplaySupportedByAddedColdDamageUnique__2", }, ["socketed gems are supported by level # added fire damage"] = { "ItemActsAsFireDamageSupportUniqueSceptre2", "SupportedByAddedFireDamageUnique__1_", }, - ["socketed gems are supported by level # added lightning damage"] = { "DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3", "DisplaySocketedGemGetsAddedLightningDamageUnique__1", }, + ["socketed gems are supported by level # added lightning damage"] = { "DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3", "DisplaySocketedGemGetsAddedLightningDamageUnique__1", "DivergentDisplaySocketedGemGetsAddedLightningDamageUnique__1", }, ["socketed gems are supported by level # arcane surge"] = { "SupportedByArcaneSurgeUniqueWand8", }, ["socketed gems are supported by level # arrow nova"] = { "SupportedByArrowNovaUnique__1", "SupportedByArrowNovaUnique__2", }, - ["socketed gems are supported by level # blasphemy"] = { "SocketedGemsSupportedByBlasphemyUnique__1", "SocketedGemsSupportedByBlasphemyUnique__2__", "SupportedByBlasphemyUnique", }, + ["socketed gems are supported by level # blasphemy"] = { "DivergentSocketedGemsSupportedByBlasphemyUnique__3", "SocketedGemsSupportedByBlasphemyUnique__1", "SocketedGemsSupportedByBlasphemyUnique__2__", "SupportedByBlasphemyUnique", }, ["socketed gems are supported by level # blastchain mine"] = { "SupportedByRemoteMineUniqueStaff11", }, ["socketed gems are supported by level # blind"] = { "ItemActsAsSupportBlindUniqueHelmetStrDex4", "ItemActsAsSupportBlindUniqueHelmetStrDex4b", "ItemActsAsSupportBlindUniqueWand1", "ItemActsAsSupportBlindUnique__1", }, ["socketed gems are supported by level # bonechill"] = { "DisplaySupportedByBonechillUnique__1", }, - ["socketed gems are supported by level # cast on death"] = { "SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5", }, + ["socketed gems are supported by level # cast on death"] = { "DivergentSocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5", "SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5", }, ["socketed gems are supported by level # cast when damage taken"] = { "SupportedByCastOnDamageTakenUnique__1", }, ["socketed gems are supported by level # cast when stunned"] = { "SupportedByCastOnStunUnique___1", }, ["socketed gems are supported by level # chance to bleed"] = { "SupportedByChanceToBleedUnique__1", }, ["socketed gems are supported by level # chance to flee"] = { "DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3", "DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4", }, - ["socketed gems are supported by level # chance to poison"] = { "SupportedByLesserPoisonUnique__1", }, + ["socketed gems are supported by level # chance to poison"] = { "DivergentSupportedByLesserPoisonUnique__1", "SupportedByLesserPoisonUnique__1", }, ["socketed gems are supported by level # cluster trap"] = { "SupportedByClusterTrapUnique__1", }, ["socketed gems are supported by level # cold penetration"] = { "DisplaySupportedByColdPenetrationUnique__1", }, ["socketed gems are supported by level # cold to fire"] = { "ItemActsAsColdToFireSupportUniqueSceptre2", "ItemActsAsColdToFireSupportUniqueStaff13", "ItemActsAsColdToFireSupportUnique__1", }, - ["socketed gems are supported by level # concentrated effect"] = { "ItemActsAsConcentratedAOESupportUniqueDagger5", "ItemActsAsConcentratedAOESupportUniqueHelmetInt4", "ItemActsAsConcentratedAOESupportUniqueRing35", "ItemActsAsConcentratedAOESupportUnique__1", }, + ["socketed gems are supported by level # concentrated effect"] = { "DivergentItemActsAsConcentratedAOESupportUnique__1", "ItemActsAsConcentratedAOESupportUniqueDagger5", "ItemActsAsConcentratedAOESupportUniqueHelmetInt4", "ItemActsAsConcentratedAOESupportUniqueRing35", "ItemActsAsConcentratedAOESupportUnique__1", }, ["socketed gems are supported by level # controlled destruction"] = { "ControlledDestructionSupportUniqueWand8", "ControlledDestructionSupportUnique__1", "ControlledDestructionSupportUnique__1New_", }, ["socketed gems are supported by level # divine blessing"] = { "SupportedByBlessingSupportUnique__1", }, ["socketed gems are supported by level # elemental penetration"] = { "DisplaySupportedByElementalPenetrationUnique__1", "DisplaySupportedByElementalPenetrationUnique__2", }, - ["socketed gems are supported by level # elemental proliferation"] = { "SocketedGemsGetElementalProliferationUniqueBodyInt5", "SocketedGemsGetElementalProliferationUniqueSceptre7", }, + ["socketed gems are supported by level # elemental proliferation"] = { "DivergentSocketedGemsGetElementalProliferationUniqueBodyInt5", "SocketedGemsGetElementalProliferationUniqueBodyInt5", "SocketedGemsGetElementalProliferationUniqueSceptre7", }, ["socketed gems are supported by level # endurance charge on melee stun"] = { "SocketedGemsSupportedByEnduranceChargeOnStunUnique__1", }, - ["socketed gems are supported by level # faster attacks"] = { "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4", "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b", "DisplaySocketedGemGetsFasterAttackUniqueRing37", "DisplaySocketedGemsGetsFasterAttackUnique__1", }, - ["socketed gems are supported by level # faster casting"] = { "DisplaySocketedGemsGetFasterCastUniqueDagger5", "SupportedByFasterCastUnique__1", }, + ["socketed gems are supported by level # faster attacks"] = { "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4", "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b", "DisplaySocketedGemGetsFasterAttackUniqueRing37", "DisplaySocketedGemsGetsFasterAttackUnique__1", "DivergentDisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4", }, + ["socketed gems are supported by level # faster casting"] = { "DisplaySocketedGemsGetFasterCastUniqueDagger5", "DivergentSupportedByFasterCastUnique__1", "SupportedByFasterCastUnique__1", }, ["socketed gems are supported by level # fire penetration"] = { "ItemActsAsFirePenetrationSupportUniqueSceptre2", }, ["socketed gems are supported by level # fortify"] = { "SocketedGemsSupportedByFortifyUnique____1", }, ["socketed gems are supported by level # generosity"] = { "SupportedByGenerosityUniqueBodyDexInt4_", }, @@ -7981,16 +8362,16 @@ return { ["socketed gems are supported by level # multiple projectiles"] = { "DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36", }, ["socketed gems are supported by level # multiple totems"] = { "SupportedByMultiTotemUnique__1", }, ["socketed gems are supported by level # multistrike"] = { "SupportedByMultistrikeUniqueOneHandSword13", }, - ["socketed gems are supported by level # pierce"] = { "SocketedGemsSupportedByPierceUniqueBodyStr6", }, + ["socketed gems are supported by level # pierce"] = { "DivergentSocketedGemsSupportedByPierceUniqueBodyStr6", "SocketedGemsSupportedByPierceUniqueBodyStr6", }, ["socketed gems are supported by level # pulverise"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3", }, - ["socketed gems are supported by level # rage"] = { "SupportedByRageUnique__1__", }, + ["socketed gems are supported by level # rage"] = { "DivergentSupportedByRageUnique__1__", "SupportedByRageUnique__1__", }, ["socketed gems are supported by level # spell echo"] = { "SupportedByEchoUniqueWand8", "SupportedByEchoUniqueWand8New_", }, - ["socketed gems are supported by level # spell totem"] = { "DisplaySocketedGemGetsSpellTotemBodyInt7", }, + ["socketed gems are supported by level # spell totem"] = { "DisplaySocketedGemGetsSpellTotemBodyInt7", "DivergentDisplaySocketedGemGetsSpellTotemBodyInt7", }, ["socketed gems are supported by level # trap"] = { "DisplaySupportedByTrapUniqueBootsDex6", "DisplaySupportedByTrapUniqueStaff4", "DisplaySupportedByTrapUnique__1", }, ["socketed gems are supported by level # trap and mine damage"] = { "SupportedByTrapAndMineDamageUnique__1", }, ["socketed gems are supported by level # unbound ailments"] = { "DisplaySupportedByUnboundAilmentsUnique__1__", }, - ["socketed gems are supported by level # unleash"] = { "DisplaySupportedByUnleashUnique__1", }, - ["socketed gems are supported by level # vile toxins"] = { "SupportedByVileToxinsUnique__1", }, + ["socketed gems are supported by level # unleash"] = { "DisplaySupportedByUnleashUnique__1", "DivergentDisplaySupportedByUnleashUnique__1", }, + ["socketed gems are supported by level # vile toxins"] = { "DivergentSupportedByVileToxinsUnique__1", "SupportedByVileToxinsUnique__1", }, ["socketed gems are supported by level (#) (#)"] = { "RandomSupportUnique__1", "RandomSupportUnique__2", "RandomSupportUnique__3", "RandomSupportUnique__4_", }, ["socketed gems are supported by level (1-10) (1-172)"] = { "RandomSupportUnique__1", "RandomSupportUnique__3", }, ["socketed gems are supported by level (25-35) (1-172)"] = { "RandomSupportUnique__2", "RandomSupportUnique__4_", }, @@ -8002,6 +8383,7 @@ return { ["socketed gems are supported by level 1 meat shield"] = { "SupportedByMeatShieldUnique__1", }, ["socketed gems are supported by level 1 multiple totems"] = { "SupportedByMultiTotemUnique__1", }, ["socketed gems are supported by level 1 multistrike"] = { "SupportedByMultistrikeUniqueOneHandSword13", }, + ["socketed gems are supported by level 1 spell totem"] = { "DivergentDisplaySocketedGemGetsSpellTotemBodyInt7", }, ["socketed gems are supported by level 10 added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUnique__1", }, ["socketed gems are supported by level 10 added fire damage"] = { "ItemActsAsFireDamageSupportUniqueSceptre2", "SupportedByAddedFireDamageUnique__1_", }, ["socketed gems are supported by level 10 arcane surge"] = { "SupportedByArcaneSurgeUniqueWand8", }, @@ -8009,7 +8391,7 @@ return { ["socketed gems are supported by level 10 blind"] = { "ItemActsAsSupportBlindUnique__1", }, ["socketed gems are supported by level 10 cast when stunned"] = { "SupportedByCastOnStunUnique___1", }, ["socketed gems are supported by level 10 chance to flee"] = { "DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4", }, - ["socketed gems are supported by level 10 chance to poison"] = { "SupportedByLesserPoisonUnique__1", }, + ["socketed gems are supported by level 10 chance to poison"] = { "DivergentSupportedByLesserPoisonUnique__1", "SupportedByLesserPoisonUnique__1", }, ["socketed gems are supported by level 10 cold to fire"] = { "ItemActsAsColdToFireSupportUniqueSceptre2", }, ["socketed gems are supported by level 10 concentrated effect"] = { "ItemActsAsConcentratedAOESupportUniqueDagger5", }, ["socketed gems are supported by level 10 controlled destruction"] = { "ControlledDestructionSupportUniqueWand8", "ControlledDestructionSupportUnique__1", "ControlledDestructionSupportUnique__1New_", }, @@ -8040,7 +8422,7 @@ return { ["socketed gems are supported by level 15 inspiration"] = { "DisplaySupportedByReducedManaUnique__1", "DisplaySupportedByReducedManaUnique__2", "SupportedByReducedManaUniqueBodyDexInt4", }, ["socketed gems are supported by level 15 life leech"] = { "SupportedByLifeLeechUniqueBodyStrInt5", }, ["socketed gems are supported by level 15 minion life"] = { "DisplaySocketedGemsSupportedByMinionLifeUniqueRing35", }, - ["socketed gems are supported by level 15 pierce"] = { "SocketedGemsSupportedByPierceUniqueBodyStr6", }, + ["socketed gems are supported by level 15 pierce"] = { "DivergentSocketedGemsSupportedByPierceUniqueBodyStr6", "SocketedGemsSupportedByPierceUniqueBodyStr6", }, ["socketed gems are supported by level 15 pulverise"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3", }, ["socketed gems are supported by level 15 trap"] = { "DisplaySupportedByTrapUniqueBootsDex6", }, ["socketed gems are supported by level 15 unbound ailments"] = { "DisplaySupportedByUnboundAilmentsUnique__1__", }, @@ -8049,17 +8431,19 @@ return { ["socketed gems are supported by level 16 minion speed"] = { "DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37", }, ["socketed gems are supported by level 16 trap"] = { "DisplaySupportedByTrapUnique__1", }, ["socketed gems are supported by level 16 trap and mine damage"] = { "SupportedByTrapAndMineDamageUnique__1", }, + ["socketed gems are supported by level 17 added chaos damage"] = { "DivergentSocketedGemsHaveAddedChaosDamageUnique__3", }, + ["socketed gems are supported by level 17 added cold damage"] = { "DivergentDisplaySupportedByAddedColdDamageUnique__2", }, ["socketed gems are supported by level 17 minion damage"] = { "DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36", }, ["socketed gems are supported by level 18 added lightning damage"] = { "DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3", }, - ["socketed gems are supported by level 18 faster casting"] = { "SupportedByFasterCastUnique__1", }, + ["socketed gems are supported by level 18 faster casting"] = { "DivergentSupportedByFasterCastUnique__1", "SupportedByFasterCastUnique__1", }, ["socketed gems are supported by level 18 ice bite"] = { "SupportedByIceBiteUnique__1", }, ["socketed gems are supported by level 18 innervate"] = { "SupportedByInnervateUnique__1", }, - ["socketed gems are supported by level 18 unleash"] = { "DisplaySupportedByUnleashUnique__1", }, + ["socketed gems are supported by level 18 unleash"] = { "DisplaySupportedByUnleashUnique__1", "DivergentDisplaySupportedByUnleashUnique__1", }, ["socketed gems are supported by level 2 chance to flee"] = { "DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3", }, ["socketed gems are supported by level 20 arrow nova"] = { "SupportedByArrowNovaUnique__2", }, ["socketed gems are supported by level 20 blasphemy"] = { "SocketedGemsSupportedByBlasphemyUnique__2__", "SupportedByBlasphemyUnique", }, ["socketed gems are supported by level 20 blind"] = { "ItemActsAsSupportBlindUniqueWand1", }, - ["socketed gems are supported by level 20 cast on death"] = { "SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5", }, + ["socketed gems are supported by level 20 cast on death"] = { "DivergentSocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5", "SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5", }, ["socketed gems are supported by level 20 concentrated effect"] = { "ItemActsAsConcentratedAOESupportUniqueHelmetInt4", }, ["socketed gems are supported by level 20 elemental proliferation"] = { "SocketedGemsGetElementalProliferationUniqueSceptre7", }, ["socketed gems are supported by level 20 endurance charge on melee stun"] = { "SocketedGemsSupportedByEnduranceChargeOnStunUnique__1", }, @@ -8067,26 +8451,27 @@ return { ["socketed gems are supported by level 20 ignite proliferation"] = { "SupportedByIgniteProliferationUnique1", }, ["socketed gems are supported by level 20 increased area of effect"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5", }, ["socketed gems are supported by level 20 spell totem"] = { "DisplaySocketedGemGetsSpellTotemBodyInt7", }, - ["socketed gems are supported by level 20 vile toxins"] = { "SupportedByVileToxinsUnique__1", }, + ["socketed gems are supported by level 20 vile toxins"] = { "DivergentSupportedByVileToxinsUnique__1", "SupportedByVileToxinsUnique__1", }, ["socketed gems are supported by level 22 blasphemy"] = { "SocketedGemsSupportedByBlasphemyUnique__1", }, ["socketed gems are supported by level 25 added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUnique__2", }, ["socketed gems are supported by level 25 divine blessing"] = { "SupportedByBlessingSupportUnique__1", }, ["socketed gems are supported by level 25 elemental penetration"] = { "DisplaySupportedByElementalPenetrationUnique__1", }, ["socketed gems are supported by level 29 added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUnique__3", }, ["socketed gems are supported by level 29 added cold damage"] = { "DisplaySupportedByAddedColdDamageUnique__2", }, - ["socketed gems are supported by level 30 added lightning damage"] = { "DisplaySocketedGemGetsAddedLightningDamageUnique__1", }, + ["socketed gems are supported by level 30 added lightning damage"] = { "DisplaySocketedGemGetsAddedLightningDamageUnique__1", "DivergentDisplaySocketedGemGetsAddedLightningDamageUnique__1", }, + ["socketed gems are supported by level 30 blasphemy"] = { "DivergentSocketedGemsSupportedByBlasphemyUnique__3", }, ["socketed gems are supported by level 30 blind"] = { "ItemActsAsSupportBlindUniqueHelmetStrDex4", }, ["socketed gems are supported by level 30 cold to fire"] = { "ItemActsAsColdToFireSupportUnique__1", }, - ["socketed gems are supported by level 30 faster attacks"] = { "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4", }, + ["socketed gems are supported by level 30 faster attacks"] = { "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4", "DivergentDisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4", }, ["socketed gems are supported by level 30 generosity"] = { "SupportedByGenerosityUniqueBodyDexInt4_", }, ["socketed gems are supported by level 30 infernal legion"] = { "SupportedByInfernalLegionUnique__1", }, ["socketed gems are supported by level 30 iron will"] = { "DisplaySocketedGemsSupportedByIronWillUniqueSceptre6", }, ["socketed gems are supported by level 30 melee physical damage"] = { "DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4", }, ["socketed gems are supported by level 30 melee splash"] = { "SupportedByMeleeSplashUnique__1_", }, - ["socketed gems are supported by level 30 rage"] = { "SupportedByRageUnique__1__", }, + ["socketed gems are supported by level 30 rage"] = { "DivergentSupportedByRageUnique__1__", "SupportedByRageUnique__1__", }, ["socketed gems are supported by level 5 cold to fire"] = { "ItemActsAsColdToFireSupportUniqueStaff13", }, - ["socketed gems are supported by level 5 concentrated effect"] = { "ItemActsAsConcentratedAOESupportUnique__1", }, - ["socketed gems are supported by level 5 elemental proliferation"] = { "SocketedGemsGetElementalProliferationUniqueBodyInt5", }, + ["socketed gems are supported by level 5 concentrated effect"] = { "DivergentItemActsAsConcentratedAOESupportUnique__1", "ItemActsAsConcentratedAOESupportUnique__1", }, + ["socketed gems are supported by level 5 elemental proliferation"] = { "DivergentSocketedGemsGetElementalProliferationUniqueBodyInt5", "SocketedGemsGetElementalProliferationUniqueBodyInt5", }, ["socketed gems are supported by level 5 increased area of effect"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1", }, ["socketed gems are supported by level 6 blind"] = { "ItemActsAsSupportBlindUniqueHelmetStrDex4b", }, ["socketed gems are supported by level 8 trap"] = { "DisplaySupportedByTrapUniqueStaff4", }, @@ -8100,16 +8485,16 @@ return { ["socketed gems fire an additional projectile"] = { "SocketedGemsAdditionalProjectilesUniqueWand9", }, ["socketed gems fire projectiles in a circle"] = { "SocketedGemsProjectilesNovaUniqueStaff10", }, ["socketed gems have #% chance to cause enemies to flee on hit"] = { "SocketedItemsHaveChanceToFleeUniqueClaw6", }, - ["socketed gems have #% increased reservation efficiency"] = { "SocketedItemsHaveReducedReservationUniqueBodyDexInt4", "SocketedItemsHaveReducedReservationUniqueShieldStrInt2", "SocketedItemsHaveReducedReservationUnique__1", }, - ["socketed gems have #% reduced mana cost"] = { "SocketedGemsHaveReducedManaCostUniqueDescentClaw1", "SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5", }, + ["socketed gems have #% increased reservation efficiency"] = { "DivergentSocketedItemsHaveReducedReservationUniqueBodyDexInt4", "DivergentSocketedItemsHaveReducedReservationUniqueShieldStrInt2", "SocketedItemsHaveReducedReservationUniqueBodyDexInt4", "SocketedItemsHaveReducedReservationUniqueShieldStrInt2", "SocketedItemsHaveReducedReservationUnique__1", }, + ["socketed gems have #% less mana cost"] = { "DivergentSocketedGemsHaveReducedManaCostUniqueHelmetDexInt5", "SocketedGemsHaveReducedManaCostUniqueDescentClaw1", "SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5", }, ["socketed gems have #% reduced reservation efficiency"] = { "SocketedItemsHaveIncreasedReservationUnique__1", }, ["socketed gems have #% reduced skill effect duration"] = { "SocketedGemsReducedDurationUniqueStaff10", }, ["socketed gems have 10% chance to cause enemies to flee on hit"] = { "SocketedItemsHaveChanceToFleeUniqueClaw6", }, ["socketed gems have 20% reduced reservation efficiency"] = { "SocketedItemsHaveIncreasedReservationUnique__1", }, - ["socketed gems have 25% increased reservation efficiency"] = { "SocketedItemsHaveReducedReservationUnique__1", }, - ["socketed gems have 30% increased reservation efficiency"] = { "SocketedItemsHaveReducedReservationUniqueShieldStrInt2", }, + ["socketed gems have 25% increased reservation efficiency"] = { "DivergentSocketedItemsHaveReducedReservationUniqueBodyDexInt4", "SocketedItemsHaveReducedReservationUnique__1", }, + ["socketed gems have 30% increased reservation efficiency"] = { "DivergentSocketedItemsHaveReducedReservationUniqueShieldStrInt2", "SocketedItemsHaveReducedReservationUniqueShieldStrInt2", }, ["socketed gems have 45% increased reservation efficiency"] = { "SocketedItemsHaveReducedReservationUniqueBodyDexInt4", }, - ["socketed gems have 50% reduced mana cost"] = { "SocketedGemsHaveReducedManaCostUniqueDescentClaw1", "SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5", }, + ["socketed gems have 50% less mana cost"] = { "DivergentSocketedGemsHaveReducedManaCostUniqueHelmetDexInt5", "SocketedGemsHaveReducedManaCostUniqueDescentClaw1", "SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5", }, ["socketed gems have 70% reduced skill effect duration"] = { "SocketedGemsReducedDurationUniqueStaff10", }, ["socketed gems have elemental equilibrium"] = { "SocketedGemHasElementalEquilibriumUniqueRing25", }, ["socketed gems have iron will"] = { "DisplaySocketedGemsSupportedByIronWillUniqueOneHandMace3", }, @@ -8125,8 +8510,8 @@ return { ["socketed golem skills have minions regenerate 5% of life per second"] = { "LocalGolemLifeRegenerationUnique__1", }, ["socketed melee gems have #% increased area of effect"] = { "SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8", }, ["socketed melee gems have 15% increased area of effect"] = { "SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8", }, - ["socketed minion gems are supported by level # life leech"] = { "DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1", }, - ["socketed minion gems are supported by level 16 life leech"] = { "DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1", }, + ["socketed minion gems are supported by level # life leech"] = { "DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1", "DivergentDisplaySocketedMinionGemsSupportedByLifeLeechUnique__1", }, + ["socketed minion gems are supported by level 16 life leech"] = { "DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1", "DivergentDisplaySocketedMinionGemsSupportedByLifeLeechUnique__1", }, ["socketed non-channelling bow skills are triggered by snipe"] = { "GrantsHighLevelSnipeSupportUnique__1", }, ["socketed projectile spells deal #% more damage with hits"] = { "SocketedGemsMoreDamageForSpellsCastUnique__1", }, ["socketed projectile spells deal 150% more damage with hits"] = { "SocketedGemsMoreDamageForSpellsCastUnique__1", }, @@ -8146,6 +8531,8 @@ return { ["socketed skills summon your maximum number of totems in formation"] = { "SummonMaximumNumberOfSocketedTotemsUnique_1", }, ["socketed slam gems are supported by level # earthbreaker"] = { "OneAncestorTotemBuffUnique__1", }, ["socketed slam gems are supported by level 25 earthbreaker"] = { "OneAncestorTotemBuffUnique__1", }, + ["socketed spells are supported by level # crab totem"] = { "SupportedByCrabTotemSupportUnique__1", }, + ["socketed spells are supported by level 20 crab totem"] = { "SupportedByCrabTotemSupportUnique__1", }, ["socketed support gems can also support skills from equipped body armour"] = { "SupportGemsSocketedInAmuletAlsoSupportBodySkills", }, ["socketed support gems can also support skills from your main hand"] = { "SupportGemsSocketedInOffHandAlsoSupportMainHandSkills", }, ["socketed travel skills deal #% more damage"] = { "TravelSkillMoreDamageUnique__1", }, @@ -8168,15 +8555,17 @@ return { ["socketed vaal skills have 80% increased skill effect duration"] = { "LocalVaalSkillEffectDurationUnique__1", }, ["socketed vaal skills require #% less souls per use"] = { "LocalVaalSoulRequirementUnique__1", }, ["socketed vaal skills require 30% less souls per use"] = { "LocalVaalSoulRequirementUnique__1", }, - ["socketed warcry skills have +# cooldown use"] = { "SocketedWarcryCooldownCountUnique__1", }, - ["socketed warcry skills have +1 cooldown use"] = { "SocketedWarcryCooldownCountUnique__1", }, + ["socketed warcry skills have +# cooldown use"] = { "DivergentSocketedWarcryCooldownCountUnique__1", "SocketedWarcryCooldownCountUnique__1", }, + ["socketed warcry skills have +1 cooldown use"] = { "DivergentSocketedWarcryCooldownCountUnique__1", "SocketedWarcryCooldownCountUnique__1", }, ["sockets cannot be modified"] = { "Roll6LinkedRandomColourSocketsUnique__1", }, ["solipsism"] = { "KeystoneSolipsismUnique_1", }, ["spell skills always deal critical strikes on final repeat"] = { "SpellsAlwaysCritFinalRepeatUnique__1_", }, ["spell skills cannot deal critical strikes except on final repeat"] = { "SpellsNeverCritExceptFinalRepeatUnique__1", }, ["spell skills deal no damage"] = { "CannotDealSpellDamageUnique__1", }, + ["spell skills have #% increased critical strike chance on final repeat"] = { "DivergentSpellsCriticalChanceFinalRepeatUnique__1", }, ["spell skills have +(#)% to critical strike multiplier on final repeat"] = { "SpellsCriticalMultiplierFinalRepeatUnique__1", }, ["spell skills have +(20-30)% to critical strike multiplier on final repeat"] = { "SpellsCriticalMultiplierFinalRepeatUnique__1", }, + ["spell skills have 100% increased critical strike chance on final repeat"] = { "DivergentSpellsCriticalChanceFinalRepeatUnique__1", }, ["spells cause you to gain energy shield equal to their upfront"] = { "GainSpellCostAsESUnique__1", }, ["spells deal added chaos damage equal to #% of your maximum life"] = { "VillageSpellAddedChaosDamageMaximumLife", }, ["spells deal added chaos damage equal to (#)% of your maximum life"] = { "SpellAddedChaosDamageMaximumLifeUnique__1", }, @@ -8187,7 +8576,8 @@ return { ["spells have (#)% increased critical strike chance per intensity"] = { "CriticalStrikeChancePerIntensityUnique__2", }, ["spells have (30-50)% increased critical strike chance per intensity"] = { "CriticalStrikeChancePerIntensityUnique__2", }, ["spells have 10% reduced critical strike chance per intensity"] = { "CriticalStrikeChancePerIntensityUnique__1", }, - ["spells have a #% chance to deal double damage"] = { "SpellsDoubleDamageChanceUnique__1", }, + ["spells have a #% chance to deal double damage"] = { "DivergentSpellsDoubleDamageChanceUnique__1", "SpellsDoubleDamageChanceUnique__1", }, + ["spells have a 10% chance to deal double damage"] = { "DivergentSpellsDoubleDamageChanceUnique__1", }, ["spells have a 20% chance to deal double damage"] = { "SpellsDoubleDamageChanceUnique__1", }, ["spells inflict intimidate on critical strike for # seconds"] = { "SpellCriticalStrikesIntimidateUnique__1", }, ["spells inflict intimidate on critical strike for 4 seconds"] = { "SpellCriticalStrikesIntimidateUnique__1", }, @@ -8195,6 +8585,8 @@ return { ["spells which have gained intensity recently gain 1 intensity every 0.5 seconds"] = { "SpellsGainIntensityUnique__1", }, ["spells which have gained intensity recently lose # intensity every # seconds"] = { "SpellsLoseIntensityUnique__1", }, ["spells which have gained intensity recently lose 1 intensity every 0.5 seconds"] = { "SpellsLoseIntensityUnique__1", }, + ["spells you cast have added spell damage equal to #% of the damage of your main hand weapon"] = { "DivergentSpellDamageFromMainHandWeaponDamageUnique__1", }, + ["spells you cast have added spell damage equal to 15% of the damage of your main hand weapon"] = { "DivergentSpellDamageFromMainHandWeaponDamageUnique__1", }, ["spend energy shield before mana for costs of socketed skills"] = { "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE1", "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE2", "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE3", }, ["spreads tar when you block"] = { "GroundTarOnBlockUnique__1", }, ["spreads tar when you take a critical strike"] = { "GroundTarOnCritTakenUniqueShieldInt2", }, @@ -8266,8 +8658,8 @@ return { ["summoned golems regenerate 2% of their life per second"] = { "GolemLifeRegenerationUnique__1", }, ["summoned holy relics have (#)% reduced cooldown recovery rate"] = { "HolyRelicCooldownRecoveryUnique__1", }, ["summoned holy relics have (20-25)% reduced cooldown recovery rate"] = { "HolyRelicCooldownRecoveryUnique__1", }, - ["summoned phantasms have #% chance to refresh their duration when they hit a rare or unique enemy"] = { "SpiritMinionRefreshOnUniqueHitUnique__1", }, - ["summoned phantasms have 10% chance to refresh their duration when they hit a rare or unique enemy"] = { "SpiritMinionRefreshOnUniqueHitUnique__1", }, + ["summoned phantasms have #% chance to refresh their duration when they hit a rare or unique enemy"] = { "DivergentSpiritMinionRefreshOnUniqueHitUnique__1", "SpiritMinionRefreshOnUniqueHitUnique__1", }, + ["summoned phantasms have 10% chance to refresh their duration when they hit a rare or unique enemy"] = { "DivergentSpiritMinionRefreshOnUniqueHitUnique__1", "SpiritMinionRefreshOnUniqueHitUnique__1", }, ["summoned phantasms have no duration"] = { "PermanentPhantasmUnique__1", }, ["summoned raging spirits deal (#)% increased damage"] = { "RagingSpiritDamageUnique__1_", "RagingSpiritDamageUnique__2", }, ["summoned raging spirits deal (175-250)% increased damage"] = { "RagingSpiritDamageUnique__1_", }, @@ -8278,10 +8670,10 @@ return { ["summoned raging spirits take #% of their maximum life per second as chaos damage"] = { "RagingSpiritChaosDamageTakenUnique__1", }, ["summoned raging spirits take 20% of their maximum life per second as chaos damage"] = { "RagingSpiritChaosDamageTakenUnique__1", }, ["summoned raging spirits' hits always ignite"] = { "RagingSpiritAlwaysIgniteUnique__1", }, - ["summoned raging spirits' melee strikes deal fire-only splash"] = { "RagingSpiritFireSplashDamageUnique__1", }, + ["summoned raging spirits' melee strikes deal fire-only splash"] = { "DivergentRagingSpiritFireSplashDamageUnique__1", "RagingSpiritFireSplashDamageUnique__1", }, ["summoned skeleton warriors and soldiers deal triple damage with this"] = { "SkeletonWarriorsTripleDamageUnique__1_", }, ["summoned skeleton warriors and soldiers wield this weapon while in your main hand"] = { "SummonedSkeletonWarriorsGetWeaponStatsInMainHandUnique__1", }, - ["summoned skeleton warriors are permanent and follow you"] = { "SkeletonWarriorsPermanentMinionUnique__1", }, + ["summoned skeleton warriors are permanent and follow you"] = { "DivergentSkeletonWarriorsPermanentMinionUnique__1", "SkeletonWarriorsPermanentMinionUnique__1", }, ["summoned skeletons cover enemies in ash on hit"] = { "SkeletonsCoverEnemiesInAshUnique__1", }, ["summoned skeletons have avatar of fire"] = { "SkeletonsHaveAvatarOfFireUnique__1_", }, ["summoned skeletons take (#)% of their maximum life per second as fire damage"] = { "SkeletonsTakeFireDamagrPerSecondUnique__1", }, @@ -8308,7 +8700,7 @@ return { ["take 500 cold damage on reaching maximum power charges"] = { "TakeColdDamageOnMaximumPowerChargesUnique__1____", }, ["take 6000 fire damage per second while flame-touched"] = { "FireDamageTakenFireTouchedUnique__1", }, ["take no burning damage if you've stopped taking burning damage recently"] = { "TakeNoBurningDamageIfStopBurningUnique__1", }, - ["take no extra damage from critical strikes"] = { "TakeNoExtraDamageFromCriticalStrikesUnique__1", }, + ["take no extra damage from critical strikes"] = { "DivergentTakeNoExtraDamageFromCriticalStrikesUnique__1", "TakeNoExtraDamageFromCriticalStrikesUnique__1", }, ["take no extra damage from critical strikes if you have a magic ring in left slot"] = { "LeftRingMagicNoCritDamageUnique__1", }, ["take no extra damage from critical strikes if you've cast enfeeble in the past # seconds"] = { "EnfeebleNoExtraCritDamageUnique__1", }, ["take no extra damage from critical strikes if you've cast enfeeble in the past 10 seconds"] = { "EnfeebleNoExtraCritDamageUnique__1", }, @@ -8337,15 +8729,17 @@ return { ["totems gain -10% to all elemental resistances per summoned totem"] = { "TotemElementalResistPerActiveTotemUnique_1", }, ["totems have #% increased attack speed per summoned totem"] = { "AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1", }, ["totems have #% increased cast speed per summoned totem"] = { "SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1", }, + ["totems have #% increased movement speed"] = { "TotemMovementVelocityUnique__1", }, + ["totems have 100% increased movement speed"] = { "TotemMovementVelocityUnique__1", }, ["totems have 5% increased attack speed per summoned totem"] = { "AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1", }, ["totems have 5% increased cast speed per summoned totem"] = { "SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1", }, - ["totems reflect #% of their maximum life as fire damage to nearby enemies when hit"] = { "TotemReflectFireDamageUnique__1_", }, - ["totems reflect 100% of their maximum life as fire damage to nearby enemies when hit"] = { "TotemReflectFireDamageUnique__1_", }, + ["totems reflect #% of their maximum life as fire damage to nearby enemies when hit"] = { "DivergentTotemReflectFireDamageUnique__1_", "TotemReflectFireDamageUnique__1_", }, + ["totems reflect 100% of their maximum life as fire damage to nearby enemies when hit"] = { "DivergentTotemReflectFireDamageUnique__1_", "TotemReflectFireDamageUnique__1_", }, ["totems which would be killed by enemies become spectral totems for # seconds instead"] = { "GhostTotemDurationUnique__1", }, ["totems which would be killed by enemies become spectral totems for 8 seconds instead"] = { "GhostTotemDurationUnique__1", }, - ["transfiguration of body"] = { "TransfigurationOfBodyUnique__1", }, - ["transfiguration of mind"] = { "TransfigurationOfMindUnique__1", }, - ["transfiguration of soul"] = { "TransfigurationOfSoulUnique__1_", }, + ["transfiguration of body"] = { "DivergentTransfigurationOfBodyUnique__1", "TransfigurationOfBodyUnique__1", }, + ["transfiguration of mind"] = { "DivergentTransfigurationOfMindUnique__1", "TransfigurationOfMindUnique__1", }, + ["transfiguration of soul"] = { "DivergentTransfigurationOfSoulUnique__1_", "TransfigurationOfSoulUnique__1_", }, ["traps and mines deal (#) to (#) additional physical damage"] = { "TrapAndMineAddedPhysicalDamageUnique__1", }, ["traps and mines deal (3-5) to (10-15) additional physical damage"] = { "TrapAndMineAddedPhysicalDamageUnique__1", }, ["traps and mines have a #% chance to poison on hit"] = { "TrapPoisonChanceUnique__1", }, @@ -8361,8 +8755,8 @@ return { ["trigger a socketed bow skill when you cast a spell while"] = { "TriggerBowSkillsOnCastUnique__1", }, ["trigger a socketed cold spell on melee critical strike, with a # second cooldown"] = { "CastSocketedColdSkillsOnCriticalStrikeUnique__1", }, ["trigger a socketed cold spell on melee critical strike, with a 0.25 second cooldown"] = { "CastSocketedColdSkillsOnCriticalStrikeUnique__1", }, - ["trigger a socketed elemental spell on block, with a # second cooldown"] = { "TriggerSocketedElementalSpellOnBlockUnique__1", }, - ["trigger a socketed elemental spell on block, with a 0.25 second cooldown"] = { "TriggerSocketedElementalSpellOnBlockUnique__1", }, + ["trigger a socketed elemental spell on block, with a # second cooldown"] = { "DivergentTriggerSocketedElementalSpellOnBlockUnique__1", "TriggerSocketedElementalSpellOnBlockUnique__1", }, + ["trigger a socketed elemental spell on block, with a 0.25 second cooldown"] = { "DivergentTriggerSocketedElementalSpellOnBlockUnique__1", "TriggerSocketedElementalSpellOnBlockUnique__1", }, ["trigger a socketed fire spell on hit, with a # second cooldown"] = { "VillageTriggerSocketedFireSpellOnHit", }, ["trigger a socketed fire spell on hit, with a 0.25 second cooldown"] = { "VillageTriggerSocketedFireSpellOnHit", }, ["trigger a socketed lightning spell on hit, with a # second cooldown"] = { "CastSocketedLightningSpellsOnHit", }, @@ -8378,10 +8772,10 @@ return { ["trigger a socketed spell when you block, with a 0.25 second cooldown"] = { "SupportVirulenceSpellsCastOnBlockUnique_1", }, ["trigger a socketed warcry skill on losing endurance charges, with a # second cooldown"] = { "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", }, ["trigger a socketed warcry skill on losing endurance charges, with a 0.25 second cooldown"] = { "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", }, - ["trigger commandment of inferno on critical strike"] = { "CommandmentOfInfernoOnCritUnique__1", }, + ["trigger commandment of inferno on critical strike"] = { "CommandmentOfInfernoOnCritUnique__1", "DivergentCommandmentOfInfernoOnCritUnique__1", }, ["trigger level # animate guardian's weapon when animated guardian kills an enemy"] = { "AnimateGuardianWeaponOnGuardianKillUnique__1_", }, ["trigger level # arcane wake after spending a total of # mana"] = { "TriggerArcaneWakeSkillUnique__1", }, - ["trigger level # assassin's mark when you hit a rare or unique enemy and have no mark"] = { "CurseOnHitCriticalWeaknessUniqueNewUnique__1", "CurseOnHitCriticalWeaknessUnique__1", }, + ["trigger level # assassin's mark when you hit a rare or unique enemy and have no mark"] = { "CurseOnHitCriticalWeaknessUniqueNewUnique__1", "CurseOnHitCriticalWeaknessUnique__1", "DivergentCurseOnHitCriticalWeaknessUniqueNewUnique__1", }, ["trigger level # bone nova when you hit a bleeding enemy"] = { "GrantsLevel20BoneNovaTriggerUnique__1", }, ["trigger level # bone offering, flesh offering, spirit offering every # seconds in sequence"] = { "TriggerRandomOfferingSkillUnique__1", }, ["trigger level # ceaseless flesh once every second"] = { "CeaselessFleshGrantedSkillUnique__1", }, @@ -8390,25 +8784,25 @@ return { ["trigger level # contaminate when you kill an enemy"] = { "TriggerFungalGroundOnKillUnique__1_", }, ["trigger level # create lesser shrine when you kill an enemy"] = { "TriggeredSummonLesserShrineUnique__1", }, ["trigger level # darktongue's kiss when you cast a curse spell"] = { "GrantsDarktongueKissUnique__1", }, - ["trigger level # death aura when equipped"] = { "ChaosDegenAuraUnique__1", }, + ["trigger level # death aura when equipped"] = { "ChaosDegenAuraUnique__1", "DivergentChaosDegenAuraUnique__1", }, ["trigger level # elemental warding on melee hit while cursed"] = { "OnHitWhileCursedTriggeredCurseNovaUnique__1", }, - ["trigger level # feast of flesh every # seconds"] = { "TriggerFeastOfFleshSkillUnique__1_", }, + ["trigger level # feast of flesh every # seconds"] = { "DivergentTriggerFeastOfFleshSkillUnique__1_", "TriggerFeastOfFleshSkillUnique__1_", }, ["trigger level # fiery impact on melee hit with this weapon"] = { "TriggeredFieryImpactOnHitWithWeaponImplicitE1", "TriggeredFieryImpactOnHitWithWeaponImplicitE2_", "TriggeredFieryImpactOnHitWithWeaponImplicitE3", }, ["trigger level # fire burst on kill"] = { "FireDamageToNearbyEnemiesOnKillUnique", }, ["trigger level # flame dash when you use a socketed skill"] = { "TriggerFlameDashOnSocketedSkillUseImplicitE1", "TriggerFlameDashOnSocketedSkillUseImplicitE2", "TriggerFlameDashOnSocketedSkillUseImplicitE3_", }, - ["trigger level # fog of war when your trap is triggered"] = { "CreateSmokeCloudWhenTrapTriggeredUnique__1", }, - ["trigger level # glimpse of eternity when hit"] = { "GlimpseOfEternityWhenHitUnique__1", }, + ["trigger level # fog of war when your trap is triggered"] = { "CreateSmokeCloudWhenTrapTriggeredUnique__1", "DivergentCreateSmokeCloudWhenTrapTriggeredUnique__1", }, + ["trigger level # glimpse of eternity when hit"] = { "DivergentGlimpseOfEternityWhenHitUnique__1", "GlimpseOfEternityWhenHitUnique__1", }, ["trigger level # gore shockwave on melee hit if you have at least # strength"] = { "TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_", "TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2", }, ["trigger level # icicle burst when you hit a frozen enemy"] = { "GrantsLevel20IcicleNovaTriggerUnique__1", "VillageGrantsIcicleNovaTrigger", }, ["trigger level # ignition blast when an enemy dies while ignited by you"] = { "TriggerIgnitionBlastOnIgnitedEnemyDeathUnique__1", }, ["trigger level # intimidating cry on hit"] = { "TriggeredAbyssalCryUnique__1", }, - ["trigger level # intimidating cry when you lose cat's stealth"] = { "CatsStealthTriggeredIntimidatingCry", }, + ["trigger level # intimidating cry when you lose cat's stealth"] = { "CatsStealthTriggeredIntimidatingCry", "DivergentCatsStealthTriggeredIntimidatingCry", }, ["trigger level # lightning bolt when you deal a critical strike"] = { "LightningStrikesOnCritUnique__1", "LightningStrikesOnCritUnique__2", "VillageLightningStrikesOnCrit", }, ["trigger level # lightning warp on hit with this weapon"] = { "TriggeredLightningWarpUnique__1__", }, ["trigger level # poacher's mark when you hit a rare or unique enemy and have no mark"] = { "PoachersMarkCurseOnHitHexproofUnique__1", }, - ["trigger level # rain of arrows when you attack with a bow"] = { "TriggerRainOfArrowsOnBowAttackUnique__1", }, + ["trigger level # rain of arrows when you attack with a bow"] = { "DivergentTriggerRainOfArrowsOnBowAttackUnique__1", "TriggerRainOfArrowsOnBowAttackUnique__1", }, ["trigger level # shade form when hit"] = { "TriggerShadeFormWhenHitUnique__1", }, - ["trigger level # shield shatter when you block"] = { "StrUniqueShieldTriggerShieldShatterOnBlock", }, + ["trigger level # shield shatter when you block"] = { "DivergentStrUniqueShieldTriggerShieldShatterOnBlock", "StrUniqueShieldTriggerShieldShatterOnBlock", }, ["trigger level # shock ground on hit"] = { "VillageShockedGroundOnHit", }, ["trigger level # shock ground when hit"] = { "ShockedGroundWhenHitUnique__1", }, ["trigger level # spirit burst when you use a skill while you have a spirit charge"] = { "LocalDisplayGrantLevelXSpiritBurstUnique__1", }, @@ -8418,20 +8812,20 @@ return { ["trigger level # summon phantasm skill when you consume a corpse"] = { "TriggerSummonPhantasmOnCorpseConsumeUnique__1", "VillageSummonPhantasmOnCorpseConsume", }, ["trigger level # summon spectral wolf on kill"] = { "SummonWolfOnKillUnique__1", "SummonWolfOnKillUnique__1New", "SummonWolfOnKillUnique__2_", "VillageSummonWolfOnKillOld", }, ["trigger level # summon taunting contraption when you use a flask"] = { "SummonTauntingContraptionOnFlaskUseImplicitE1", }, - ["trigger level # summon void spawn every # seconds"] = { "GrantsSummonVoidSpawnUnique__1", }, + ["trigger level # summon void spawn every # seconds"] = { "DivergentGrantsSummonVoidSpawnUnique__1", "GrantsSummonVoidSpawnUnique__1", }, ["trigger level # suspend in time on casting a spell"] = { "SandMirageOnCastUnique__1", }, ["trigger level # tawhoa's chosen when you attack with"] = { "GrantsTawhoasChosenUnique__1", }, ["trigger level # tears of rot when equipped"] = { "AnimosityPhysDegenSkillUnique__1", }, - ["trigger level # toxic rain when you attack with a bow"] = { "TriggerToxicRainOnBowAttackUnique__1", }, - ["trigger level # twister when you gain avian's might or avian's flight"] = { "GrantsAvianTornadoUnique__1__", }, + ["trigger level # toxic rain when you attack with a bow"] = { "DivergentTriggerToxicRainOnBowAttackUnique__1", "TriggerToxicRainOnBowAttackUnique__1", }, + ["trigger level # twister when you gain avian's might or avian's flight"] = { "DivergentGrantsAvianTornadoUnique__1__", "GrantsAvianTornadoUnique__1__", }, ["trigger level # unseen strike every # seconds while phasing"] = { "UniqueSecretBladeGrantHiddenBlade", }, - ["trigger level # void gaze when you use a skill"] = { "GrantsVoidGazeUnique__1", }, + ["trigger level # void gaze when you use a skill"] = { "DivergentGrantsVoidGazeUnique__1", "GrantsVoidGazeUnique__1", }, ["trigger level 1 create lesser shrine when you kill an enemy"] = { "TriggeredSummonLesserShrineUnique__1", }, ["trigger level 1 fire burst on kill"] = { "FireDamageToNearbyEnemiesOnKillUnique", }, ["trigger level 1 gore shockwave on melee hit if you have at least 150 strength"] = { "TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_", }, ["trigger level 1 intimidating cry on hit"] = { "TriggeredAbyssalCryUnique__1", }, ["trigger level 1 stalking pustule on kill"] = { "StalkingPustuleOnKillUnique__1", "VillageStalkingPustuleOnKill", }, - ["trigger level 10 assassin's mark when you hit a rare or unique enemy and have no mark"] = { "CurseOnHitCriticalWeaknessUniqueNewUnique__1", "CurseOnHitCriticalWeaknessUnique__1", }, + ["trigger level 10 assassin's mark when you hit a rare or unique enemy and have no mark"] = { "CurseOnHitCriticalWeaknessUniqueNewUnique__1", "CurseOnHitCriticalWeaknessUnique__1", "DivergentCurseOnHitCriticalWeaknessUniqueNewUnique__1", }, ["trigger level 10 consecrate when you deal a critical strike"] = { "TriggeredConsecrateUnique__1", }, ["trigger level 10 contaminate when you kill an enemy"] = { "TriggerFungalGroundOnKillUnique__1_", }, ["trigger level 10 fiery impact on melee hit with this weapon"] = { "TriggeredFieryImpactOnHitWithWeaponImplicitE1", }, @@ -8440,25 +8834,26 @@ return { ["trigger level 10 shock ground on hit"] = { "VillageShockedGroundOnHit", }, ["trigger level 10 shock ground when hit"] = { "ShockedGroundWhenHitUnique__1", }, ["trigger level 10 summon spectral wolf on kill"] = { "SummonWolfOnKillUnique__1", "SummonWolfOnKillUnique__1New", "SummonWolfOnKillUnique__2_", "VillageSummonWolfOnKillOld", }, - ["trigger level 10 void gaze when you use a skill"] = { "GrantsVoidGazeUnique__1", }, + ["trigger level 10 void gaze when you use a skill"] = { "DivergentGrantsVoidGazeUnique__1", "GrantsVoidGazeUnique__1", }, ["trigger level 12 lightning bolt when you deal a critical strike"] = { "LightningStrikesOnCritUnique__1", }, - ["trigger level 15 feast of flesh every 5 seconds"] = { "TriggerFeastOfFleshSkillUnique__1_", }, + ["trigger level 15 feast of flesh every 5 seconds"] = { "DivergentTriggerFeastOfFleshSkillUnique__1_", "TriggerFeastOfFleshSkillUnique__1_", }, ["trigger level 15 fiery impact on melee hit with this weapon"] = { "TriggeredFieryImpactOnHitWithWeaponImplicitE2_", }, ["trigger level 15 lightning warp on hit with this weapon"] = { "TriggeredLightningWarpUnique__1__", }, + ["trigger level 15 shield shatter when you block"] = { "DivergentStrUniqueShieldTriggerShieldShatterOnBlock", }, ["trigger level 20 animate guardian's weapon when animated guardian kills an enemy"] = { "AnimateGuardianWeaponOnGuardianKillUnique__1_", }, ["trigger level 20 arcane wake after spending a total of 200 mana"] = { "TriggerArcaneWakeSkillUnique__1", }, ["trigger level 20 bone nova when you hit a bleeding enemy"] = { "GrantsLevel20BoneNovaTriggerUnique__1", }, ["trigger level 20 bone offering, flesh offering, spirit offering every 5 seconds in sequence"] = { "TriggerRandomOfferingSkillUnique__1", }, ["trigger level 20 cinders when equipped"] = { "ResentmentFireDegenSkillUnique__1", }, ["trigger level 20 darktongue's kiss when you cast a curse spell"] = { "GrantsDarktongueKissUnique__1", }, - ["trigger level 20 death aura when equipped"] = { "ChaosDegenAuraUnique__1", }, + ["trigger level 20 death aura when equipped"] = { "ChaosDegenAuraUnique__1", "DivergentChaosDegenAuraUnique__1", }, ["trigger level 20 elemental warding on melee hit while cursed"] = { "OnHitWhileCursedTriggeredCurseNovaUnique__1", }, ["trigger level 20 fiery impact on melee hit with this weapon"] = { "TriggeredFieryImpactOnHitWithWeaponImplicitE3", }, ["trigger level 20 flame dash when you use a socketed skill"] = { "TriggerFlameDashOnSocketedSkillUseImplicitE2", }, - ["trigger level 20 fog of war when your trap is triggered"] = { "CreateSmokeCloudWhenTrapTriggeredUnique__1", }, - ["trigger level 20 glimpse of eternity when hit"] = { "GlimpseOfEternityWhenHitUnique__1", }, + ["trigger level 20 fog of war when your trap is triggered"] = { "CreateSmokeCloudWhenTrapTriggeredUnique__1", "DivergentCreateSmokeCloudWhenTrapTriggeredUnique__1", }, + ["trigger level 20 glimpse of eternity when hit"] = { "DivergentGlimpseOfEternityWhenHitUnique__1", "GlimpseOfEternityWhenHitUnique__1", }, ["trigger level 20 icicle burst when you hit a frozen enemy"] = { "GrantsLevel20IcicleNovaTriggerUnique__1", }, - ["trigger level 20 intimidating cry when you lose cat's stealth"] = { "CatsStealthTriggeredIntimidatingCry", }, + ["trigger level 20 intimidating cry when you lose cat's stealth"] = { "CatsStealthTriggeredIntimidatingCry", "DivergentCatsStealthTriggeredIntimidatingCry", }, ["trigger level 20 shade form when hit"] = { "TriggerShadeFormWhenHitUnique__1", }, ["trigger level 20 shield shatter when you block"] = { "StrUniqueShieldTriggerShieldShatterOnBlock", }, ["trigger level 20 spirit burst when you use a skill while you have a spirit charge"] = { "LocalDisplayGrantLevelXSpiritBurstUnique__1", }, @@ -8466,11 +8861,11 @@ return { ["trigger level 20 storm cascade when you attack"] = { "LocalGrantsStormCascadeOnAttackUnique__1", }, ["trigger level 20 summon phantasm skill when you consume a corpse"] = { "VillageSummonPhantasmOnCorpseConsume", }, ["trigger level 20 summon taunting contraption when you use a flask"] = { "SummonTauntingContraptionOnFlaskUseImplicitE1", }, - ["trigger level 20 summon void spawn every 4 seconds"] = { "GrantsSummonVoidSpawnUnique__1", }, + ["trigger level 20 summon void spawn every 4 seconds"] = { "DivergentGrantsSummonVoidSpawnUnique__1", "GrantsSummonVoidSpawnUnique__1", }, ["trigger level 20 suspend in time on casting a spell"] = { "SandMirageOnCastUnique__1", }, ["trigger level 20 tawhoa's chosen when you attack with"] = { "GrantsTawhoasChosenUnique__1", }, ["trigger level 20 tears of rot when equipped"] = { "AnimosityPhysDegenSkillUnique__1", }, - ["trigger level 20 twister when you gain avian's might or avian's flight"] = { "GrantsAvianTornadoUnique__1__", }, + ["trigger level 20 twister when you gain avian's might or avian's flight"] = { "DivergentGrantsAvianTornadoUnique__1__", "GrantsAvianTornadoUnique__1__", }, ["trigger level 20 unseen strike every 0.5 seconds while phasing"] = { "UniqueSecretBladeGrantHiddenBlade", }, ["trigger level 25 ceaseless flesh once every second"] = { "CeaselessFleshGrantedSkillUnique__1", }, ["trigger level 25 summon phantasm skill when you consume a corpse"] = { "TriggerSummonPhantasmOnCorpseConsumeUnique__1", }, @@ -8480,67 +8875,69 @@ return { ["trigger level 5 gore shockwave on melee hit if you have at least 150 strength"] = { "TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2", }, ["trigger level 5 ignition blast when an enemy dies while ignited by you"] = { "TriggerIgnitionBlastOnIgnitedEnemyDeathUnique__1", }, ["trigger level 5 lightning bolt when you deal a critical strike"] = { "VillageLightningStrikesOnCrit", }, - ["trigger level 5 rain of arrows when you attack with a bow"] = { "TriggerRainOfArrowsOnBowAttackUnique__1", }, - ["trigger level 5 toxic rain when you attack with a bow"] = { "TriggerToxicRainOnBowAttackUnique__1", }, - ["trigger socketed curse spell when you cast a curse spell, with a # second cooldown"] = { "TriggerSocketedCurseSkillsOnCurseUnique__1_", }, - ["trigger socketed curse spell when you cast a curse spell, with a 0.25 second cooldown"] = { "TriggerSocketedCurseSkillsOnCurseUnique__1_", }, + ["trigger level 5 rain of arrows when you attack with a bow"] = { "DivergentTriggerRainOfArrowsOnBowAttackUnique__1", "TriggerRainOfArrowsOnBowAttackUnique__1", }, + ["trigger level 5 toxic rain when you attack with a bow"] = { "DivergentTriggerToxicRainOnBowAttackUnique__1", "TriggerToxicRainOnBowAttackUnique__1", }, + ["trigger socketed curse spell when you cast a curse spell, with a # second cooldown"] = { "DivergentTriggerSocketedCurseSkillsOnCurseUnique__1_", "TriggerSocketedCurseSkillsOnCurseUnique__1_", }, + ["trigger socketed curse spell when you cast a curse spell, with a 0.25 second cooldown"] = { "DivergentTriggerSocketedCurseSkillsOnCurseUnique__1_", "TriggerSocketedCurseSkillsOnCurseUnique__1_", }, ["trigger socketed minion spells on kill with this weapon"] = { "CastSocketedMinionSpellsOnKillUniqueBow12", }, ["triggered spells poison on hit"] = { "TriggeredSpellsPoisonOnHitUnique_1", }, - ["triggers level # abberath's fury when equipped"] = { "RepeatingShockwave", }, + ["triggers level # abberath's fury when equipped"] = { "DivergentRepeatingShockwaveUnique__1", "RepeatingShockwave", }, ["triggers level # blinding aura when equipped"] = { "BlindingAuraSkillUnique__1", }, - ["triggers level # cold aegis when equipped"] = { "TriggeredColdAegisSkillUnique__1", }, - ["triggers level # corpse walk when equipped"] = { "CorpseWalk", }, + ["triggers level # cold aegis when equipped"] = { "DivergentTriggeredColdAegisSkillUnique__1", "TriggeredColdAegisSkillUnique__1", }, + ["triggers level # corpse walk when equipped"] = { "CorpseWalk", "DivergentCorpseWalkUnique__1", }, ["triggers level # death walk when equipped"] = { "DeathWalk", }, - ["triggers level # elemental aegis when equipped"] = { "TriggeredElementalAegisSkillUnique__1_", }, - ["triggers level # fire aegis when equipped"] = { "TriggeredFireAegisSkillUnique__1_", }, - ["triggers level # lightning aegis when equipped"] = { "TriggeredLightningAegisSkillUnique__1", }, + ["triggers level # elemental aegis when equipped"] = { "DivergentTriggeredElementalAegisSkillUnique__1_", "TriggeredElementalAegisSkillUnique__1_", }, + ["triggers level # fire aegis when equipped"] = { "DivergentTriggeredFireAegisSkillUnique__1_", "TriggeredFireAegisSkillUnique__1_", }, + ["triggers level # lightning aegis when equipped"] = { "DivergentTriggeredLightningAegisSkillUnique__1", "TriggeredLightningAegisSkillUnique__1", }, ["triggers level # manifest dancing dervishes on rampage"] = { "DisplayManifestWeaponUnique__1", }, - ["triggers level # physical aegis when equipped"] = { "TriggeredPhysicalAegisSkillUnique__1", }, + ["triggers level # physical aegis when equipped"] = { "DivergentTriggeredPhysicalAegisSkillUnique__1", "TriggeredPhysicalAegisSkillUnique__1", }, ["triggers level # reflection when equipped"] = { "SummonDoubleOnCritUnique__1", }, - ["triggers level # summon arbalists when equipped"] = { "GrantsSummonArbalistsSkillUnique__1_", }, + ["triggers level # summon arbalists when equipped"] = { "DivergentGrantsSummonArbalistsSkillUnique__1_", "GrantsSummonArbalistsSkillUnique__1_", }, ["triggers level 15 manifest dancing dervishes on rampage"] = { "DisplayManifestWeaponUnique__1", }, ["triggers level 20 blinding aura when equipped"] = { "BlindingAuraSkillUnique__1", }, - ["triggers level 20 cold aegis when equipped"] = { "TriggeredColdAegisSkillUnique__1", }, - ["triggers level 20 corpse walk when equipped"] = { "CorpseWalk", }, + ["triggers level 20 cold aegis when equipped"] = { "DivergentTriggeredColdAegisSkillUnique__1", "TriggeredColdAegisSkillUnique__1", }, + ["triggers level 20 corpse walk when equipped"] = { "CorpseWalk", "DivergentCorpseWalkUnique__1", }, ["triggers level 20 death walk when equipped"] = { "DeathWalk", }, - ["triggers level 20 elemental aegis when equipped"] = { "TriggeredElementalAegisSkillUnique__1_", }, - ["triggers level 20 fire aegis when equipped"] = { "TriggeredFireAegisSkillUnique__1_", }, - ["triggers level 20 lightning aegis when equipped"] = { "TriggeredLightningAegisSkillUnique__1", }, - ["triggers level 20 physical aegis when equipped"] = { "TriggeredPhysicalAegisSkillUnique__1", }, + ["triggers level 20 elemental aegis when equipped"] = { "DivergentTriggeredElementalAegisSkillUnique__1_", "TriggeredElementalAegisSkillUnique__1_", }, + ["triggers level 20 fire aegis when equipped"] = { "DivergentTriggeredFireAegisSkillUnique__1_", "TriggeredFireAegisSkillUnique__1_", }, + ["triggers level 20 lightning aegis when equipped"] = { "DivergentTriggeredLightningAegisSkillUnique__1", "TriggeredLightningAegisSkillUnique__1", }, + ["triggers level 20 physical aegis when equipped"] = { "DivergentTriggeredPhysicalAegisSkillUnique__1", "TriggeredPhysicalAegisSkillUnique__1", }, ["triggers level 20 reflection when equipped"] = { "SummonDoubleOnCritUnique__1", }, - ["triggers level 20 summon arbalists when equipped"] = { "GrantsSummonArbalistsSkillUnique__1_", }, - ["triggers level 7 abberath's fury when equipped"] = { "RepeatingShockwave", }, + ["triggers level 20 summon arbalists when equipped"] = { "DivergentGrantsSummonArbalistsSkillUnique__1_", "GrantsSummonArbalistsSkillUnique__1_", }, + ["triggers level 7 abberath's fury when equipped"] = { "DivergentRepeatingShockwaveUnique__1", "RepeatingShockwave", }, ["unaffected by blind"] = { "BlindDoesNotAffectHitChanceUnique__1", }, - ["unaffected by burning ground"] = { "ImmuneToBurningGroundUniqueBootsStr3", "UniqueUnaffectedByBurningGround__1", }, + ["unaffected by burning ground"] = { "DivergentImmuneToBurningGroundUniqueBootsStr3", "ImmuneToBurningGroundUniqueBootsStr3", "UniqueUnaffectedByBurningGround__1", }, ["unaffected by chill if # redeemer items are equipped"] = { "UnaffectedByChill2RedeemerItemsUnique__1", }, ["unaffected by chill if 2 redeemer items are equipped"] = { "UnaffectedByChill2RedeemerItemsUnique__1", }, - ["unaffected by chill while leeching mana"] = { "UnaffectedByChillLeechingManaUnique__1", }, + ["unaffected by chill while leeching mana"] = { "DivergentUnaffectedByChillLeechingManaUnique__1", "UnaffectedByChillLeechingManaUnique__1", }, ["unaffected by chilled ground"] = { "ImmuneToChilledGroundUniqueBootsStrDex5", "UniqueUnaffectedByChilledGround__1", }, - ["unaffected by curses"] = { "UnaffectedByCursesUnique__1", }, - ["unaffected by damaging ailments"] = { "UnaffectedByDamagingAilmentsUnique__1", }, - ["unaffected by desecrated ground"] = { "ImmuneToDesecratedGroundUniqueBootsInt6", "UniqueUnaffectedByDesecratedGround__1", }, - ["unaffected by ignite"] = { "UnaffectedByIgniteUnique__1", }, + ["unaffected by curses"] = { "DivergentUnaffectedByCursesUnique__1", "UnaffectedByCursesUnique__1", }, + ["unaffected by damaging ailments"] = { "DivergentUnaffectedByDamagingAilmentsUnique__1", "UnaffectedByDamagingAilmentsUnique__1", }, + ["unaffected by desecrated ground"] = { "DivergentImmuneToDesecratedGroundUniqueBootsInt6", "ImmuneToDesecratedGroundUniqueBootsInt6", "UniqueUnaffectedByDesecratedGround__1", }, + ["unaffected by ignite"] = { "TalismanEnchantUnaffectedByIgnite", "UnaffectedByIgniteUnique__1", }, ["unaffected by ignite if # warlord items are equipped"] = { "UnaffectedByIgnite2WarlordItemsUnique__1", }, ["unaffected by ignite if 2 warlord items are equipped"] = { "UnaffectedByIgnite2WarlordItemsUnique__1", }, - ["unaffected by ignite or shock if maximum life and maximum mana are within #"] = { "ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1", }, - ["unaffected by ignite or shock if maximum life and maximum mana are within 500"] = { "ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1", }, - ["unaffected by poison"] = { "UnaffectedByPoisonUnique__1_", }, + ["unaffected by ignite or shock if maximum life and maximum mana are within #"] = { "DivergentImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1", "ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1", }, + ["unaffected by ignite or shock if maximum life and maximum mana are within 500"] = { "DivergentImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1", "ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1", }, + ["unaffected by poison"] = { "DivergentUnaffectedByPoisonUnique__1_", "UnaffectedByPoisonUnique__1_", }, ["unaffected by poison if # hunter items are equipped"] = { "UnaffectedByPoison2HunterItemsUnique__1", }, ["unaffected by poison if 2 hunter items are equipped"] = { "UnaffectedByPoison2HunterItemsUnique__1", }, ["unaffected by shock"] = { "UnaffectedByShockUnique__1", "UnaffectedByShockUnique__2", }, ["unaffected by shock if # crusader items are equipped"] = { "UnaffectedByShock2CrusaderItemsUnique__1", }, ["unaffected by shock if 2 crusader items are equipped"] = { "UnaffectedByShock2CrusaderItemsUnique__1", }, - ["unaffected by shock while leeching energy shield"] = { "UnaffectedByShockLeechingESUnique__1", }, + ["unaffected by shock while leeching energy shield"] = { "DivergentUnaffectedByShockLeechingESUnique__1", "UnaffectedByShockLeechingESUnique__1", }, ["unaffected by shocked ground"] = { "ImmuneToShockedGroundUniqueBootsDexInt4", "ImmuneToShockedGroundUnique__1", "UniqueUnaffectedByShockedGround__1", }, ["unaffected by temporal chains"] = { "TemporalChainsEffectivenessOnSelfUnique__1", }, ["unholy might"] = { "GrantsUnholyMightUnique__1", }, ["unholy might during effect"] = { "LocalFlaskUnholyMightUnique__1", }, - ["unwavering stance"] = { "KeystoneUnwaveringStanceUnique__1", "UnwaveringStance", "UnwaveringStanceUnique_2", }, + ["unwavering stance"] = { "DivergentKeystoneUnwaveringStanceUnique__1", "DivergentUnwaveringStanceUnique_2", "KeystoneUnwaveringStanceUnique__1", "UnwaveringStance", "UnwaveringStanceUnique_2", }, ["uses both hand slots"] = { "DisableOffHandSlotUnique__1", "DisableOffhandSlot", }, + ["utility flasks gain # charges every # seconds"] = { "TalismanEnchantUtilityFlaskPassiveChargeGain", }, ["utility flasks gain (#) charges every # seconds"] = { "UtilityFlaskPassiveChargeGainUnique__1", }, ["utility flasks gain (0-3) charges every 3 seconds"] = { "UtilityFlaskPassiveChargeGainUnique__1", }, + ["utility flasks gain 2 charges every 3 seconds"] = { "TalismanEnchantUtilityFlaskPassiveChargeGain", }, ["vaal attack skills you use yourself cost rage instead of requiring souls"] = { "VaalAttacksUseRageInsteadOfSoulsUnique__1_", }, - ["vaal pact"] = { "KeystoneVaalPactUnique__1", "KeystoneVaalPactUnique__2", }, + ["vaal pact"] = { "DivergentKeystoneVaalPactUnique__2", "KeystoneVaalPactUnique__1", "KeystoneVaalPactUnique__2", }, ["vaal skills deal (#)% more damage during effect"] = { "FlaskVaalSkillDamageUnique__2", }, ["vaal skills deal (30-40)% more damage during effect"] = { "FlaskVaalSkillDamageUnique__2", }, ["vaal skills have (#)% chance to regain consumed souls when used"] = { "VaalSkillRefundChanceUniqueCorruptedJewel5", }, @@ -8552,20 +8949,23 @@ return { ["vaal skills used during effect have 10% reduced soul gain prevention duration"] = { "FlaskVaalSoulPreventionDurationUnique__1_", }, ["versatile combatant"] = { "KeystoneVersatileCombatantUnique___1", }, ["vitality has no reservation"] = { "VitalityNoReservationUnique__1", }, + ["voracious flame"] = { "KeystoneFirePuristUnique__1", "KeystoneFirePuristUnique__2", }, ["vulnerability has no reservation if cast as an aura"] = { "VulnerabilityReservationCostUnique__1_", }, ["warcries cost +#% of life"] = { "WarcryLifeCostUnique", }, ["warcries cost +15% of life"] = { "WarcryLifeCostUnique", }, - ["warcries exert # additional attack"] = { "WarcriesExertAnAdditionalAttackImplicitE1_", }, + ["warcries exert # additional attack"] = { "TalismanEnchantWarcriesExertAnAdditionalAttack", "WarcriesExertAnAdditionalAttackImplicitE1_", }, ["warcries exert # additional attacks"] = { "WarcriesExertAnAdditionalAttackImplicitE2", }, - ["warcries exert 1 additional attack"] = { "WarcriesExertAnAdditionalAttackImplicitE1_", }, + ["warcries exert 1 additional attack"] = { "TalismanEnchantWarcriesExertAnAdditionalAttack", "WarcriesExertAnAdditionalAttackImplicitE1_", }, ["warcries exert 2 additional attacks"] = { "WarcriesExertAnAdditionalAttackImplicitE2", }, - ["warcries grant arcane surge to you and allies, with #% increased effect per # power, up to #%"] = { "WarcryGrantsArcaneSurgeUnique__1", }, - ["warcries grant arcane surge to you and allies, with 10% increased effect per 5 power, up to 50%"] = { "WarcryGrantsArcaneSurgeUnique__1", }, + ["warcries grant arcane surge to you and allies, with #% increased effect per # power, up to #%"] = { "DivergentWarcryGrantsArcaneSurgeUnique__1", "WarcryGrantsArcaneSurgeUnique__1", }, + ["warcries grant arcane surge to you and allies, with 10% increased effect per 5 power, up to 50%"] = { "DivergentWarcryGrantsArcaneSurgeUnique__1", "WarcryGrantsArcaneSurgeUnique__1", }, ["warcries have infinite power"] = { "WarcryInfiniteEnemyPowerUnique__1__", }, ["warcries knock back and interrupt enemies in a smaller area"] = { "WarcryKnockbackUnique__1", }, + ["warcry skills have #% increased area of effect"] = { "DivergentWarcryAreaOfEffectUnique__2", }, ["warcry skills have (#)% increased area of effect"] = { "WarcryAreaOfEffectUnique__1", "WarcryAreaOfEffectUnique__2", }, ["warcry skills have (15-25)% increased area of effect"] = { "WarcryAreaOfEffectUnique__2", }, ["warcry skills have (25-35)% increased area of effect"] = { "WarcryAreaOfEffectUnique__1", }, + ["warcry skills have 25% increased area of effect"] = { "DivergentWarcryAreaOfEffectUnique__2", }, ["warcry skills' cooldown time is # seconds"] = { "WarcryCooldownIs2SecondsUnique__1", }, ["warcry skills' cooldown time is 4 seconds"] = { "WarcryCooldownIs2SecondsUnique__1", }, ["ward does not break during effect"] = { "FlaskWardUnbreakableDuringEffectUnique__1", }, @@ -8578,12 +8978,13 @@ return { ["when an enemy hit deals elemental damage to you, their resistance to those elements becomes zero for 4 seconds"] = { "EnemyElementalResistanceZeroWhenHitUnique__1", }, ["when hit during effect, #% of life loss from damage taken occurs over # seconds instead"] = { "LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1", }, ["when hit during effect, 25% of life loss from damage taken occurs over 4 seconds instead"] = { "LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1", }, - ["when hit, gain a random movement speed modifier from #% reduced to #% increased, until hit again"] = { "RandomMovementVelocityWhenHitUnique__1", }, + ["when hit, gain a random movement speed modifier from #% reduced to #% increased, until hit again"] = { "DivergentRandomMovementVelocityWhenHitUnique__1", "RandomMovementVelocityWhenHitUnique__1", }, + ["when hit, gain a random movement speed modifier from 20% reduced to 50% increased, until hit again"] = { "DivergentRandomMovementVelocityWhenHitUnique__1", }, ["when hit, gain a random movement speed modifier from 40% reduced to 100% increased, until hit again"] = { "RandomMovementVelocityWhenHitUnique__1", }, ["when used in the synthesiser, the new item will have an additional herald modifier"] = { "HeraldBonusExtraMod1", "HeraldBonusExtraMod2_", "HeraldBonusExtraMod3_", "HeraldBonusExtraMod4", "HeraldBonusExtraMod5", }, ["when you attack, take (#)% of life as physical damage for"] = { "TakePhysicalDamagePerWarcryExertingUnique__1", }, ["when you attack, take (15-20)% of life as physical damage for"] = { "TakePhysicalDamagePerWarcryExertingUnique__1", }, - ["when you cast a spell, sacrifice all mana to gain added maximum lightning damage"] = { "DrainAllManaLightningDamageUnique__1", }, + ["when you cast a spell, sacrifice all mana to gain added maximum lightning damage"] = { "DivergentDrainAllManaLightningDamageUnique__1", "DrainAllManaLightningDamageUnique__1", }, ["when you kill a rare monster, you gain its modifiers for # seconds"] = { "GainRareMonsterModsOnKillUniqueBelt7_", }, ["when you kill a rare monster, you gain its modifiers for 60 seconds"] = { "GainRareMonsterModsOnKillUniqueBelt7_", }, ["when you kill a shocked enemy, inflict an equivalent shock on each nearby enemy"] = { "ShockNearbyEnemyOnShockedKillUniqueDescentTwoHandSword1_", "ShockNearbyEnemyOnShockedKillUniqueRing20", "VillageShockNearbyEnemyOnShockedKill", }, @@ -8605,8 +9006,10 @@ return { ["while your passive skill tree connects to the witch's starting location, you gain:"] = { "StarterPassiveJewelUnique__12__", "StarterPassiveTreeJewelUnique__4", }, ["wicked ward"] = { "KeystoneWickedWardUnique__1", }, ["wind dancer"] = { "KeystoneWindDancerUnique__1_", }, + ["wintertide brand has #% increased chill effect"] = { "DivergentWintertideBrandChillEffectUnique__1_", }, ["wintertide brand has (#)% increased chill effect"] = { "WintertideBrandChillEffectUnique__1_", }, ["wintertide brand has (20-30)% increased chill effect"] = { "WintertideBrandChillEffectUnique__1_", }, + ["wintertide brand has 30% increased chill effect"] = { "DivergentWintertideBrandChillEffectUnique__1_", }, ["with # corrupted items equipped: #% of chaos damage taken does not bypass energy shield, and #% of physical damage taken bypasses energy shield"] = { "CorruptThresholdPhysBypassesESUniqueCorruptedJewel12", }, ["with # corrupted items equipped: gain soul eater for # seconds on vaal skill use"] = { "CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11", }, ["with # corrupted items equipped: life leech recovers based on your chaos damage instead"] = { "CorruptThresholdLifeLeechUsesChaosDamageUniqueCorruptedJewel10", }, @@ -8707,7 +9110,7 @@ return { ["with at least 40 dexterity in radius, fire trap throws up to 1 additional trap"] = { "FireTrapThresholdJewel1", }, ["with at least 40 dexterity in radius, galvanic arrow has 25% increased area of effect"] = { "ShrapnelShotThresholdJewel_1", }, ["with at least 40 dexterity in radius, ice shot has 25% increased area of effect"] = { "IceShotThresholdJewel__2", }, - ["with at least 40 dexterity in radius, ice shot pierces 50 additional targets"] = { "IceShotThresholdJewel__1", }, + ["with at least 40 dexterity in radius, ice shot pierces 5 additional targets"] = { "IceShotThresholdJewel__1", }, ["with at least 40 dexterity in radius, melee damage"] = { "FrostBladesThresholdJewel_1", }, ["with at least 40 dexterity in radius, split arrow fires projectiles in parallel"] = { "SplitArrowThresholdJewel1", }, ["with at least 40 dexterity in radius, viper strike deals 2% increased damage with hits and poison for each poison on the enemy"] = { "ViperStrikeThresholdJewel__1", }, @@ -8745,8 +9148,9 @@ return { ["withered does not expire on enemies ignited by you"] = { "EnemiesIgniteWitherNeverExpiresUnique__1", }, ["wrath has no reservation"] = { "WrathNoReservationUnique__1", }, ["you always ignite while burning"] = { "AlwaysIgniteWhileBurningUnique__1", }, - ["you and enemies in your presence count as moving while affected by elemental ailments"] = { "EnemiesCountAsMovingElementalAilmentsUnique__1", }, - ["you and nearby allies gain #% increased damage"] = { "DisplayDamageAuraUniqueHelmetDexInt2", }, + ["you and enemies in your presence count as moving while affected by elemental ailments"] = { "DivergentEnemiesCountAsMovingElementalAilmentsUnique__1", "EnemiesCountAsMovingElementalAilmentsUnique__1", }, + ["you and nearby allies gain #% increased damage"] = { "DisplayDamageAuraUniqueHelmetDexInt2", "DivergentDisplayDamageAuraUniqueHelmetDexInt2", }, + ["you and nearby allies gain 25% increased damage"] = { "DivergentDisplayDamageAuraUniqueHelmetDexInt2", }, ["you and nearby allies gain 50% increased damage"] = { "DisplayDamageAuraUniqueHelmetDexInt2", }, ["you and nearby allies have # to # added chaos damage per white socket"] = { "AuraAddedChaosDamagePerWhiteSocketUnique__1", }, ["you and nearby allies have # to # added cold damage per green socket"] = { "AuraAddedColdDamagePerGreenSocketUnique__1", }, @@ -8754,11 +9158,11 @@ return { ["you and nearby allies have # to # added lightning damage per blue socket"] = { "AuraAddedLightningDamagePerBlueSocketUnique__1", }, ["you and nearby allies have # to (#) added lightning damage per blue socket"] = { "VillageAuraAddedLightningDamagePerBlueSocket", }, ["you and nearby allies have #% increased item rarity"] = { "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1", }, - ["you and nearby allies have #% increased mana regeneration rate"] = { "ManaRegenerationAuraUnique__1", }, + ["you and nearby allies have #% increased mana regeneration rate"] = { "DivergentManaRegenerationAuraUnique__1", "ManaRegenerationAuraUnique__1", }, ["you and nearby allies have 1 to (8-12) added lightning damage per blue socket"] = { "VillageAuraAddedLightningDamagePerBlueSocket", }, ["you and nearby allies have 16 to 144 added lightning damage per blue socket"] = { "AuraAddedLightningDamagePerBlueSocketUnique__1", }, ["you and nearby allies have 30% increased item rarity"] = { "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1", }, - ["you and nearby allies have 30% increased mana regeneration rate"] = { "ManaRegenerationAuraUnique__1", }, + ["you and nearby allies have 30% increased mana regeneration rate"] = { "DivergentManaRegenerationAuraUnique__1", "ManaRegenerationAuraUnique__1", }, ["you and nearby allies have 47 to 61 added chaos damage per white socket"] = { "AuraAddedChaosDamagePerWhiteSocketUnique__1", }, ["you and nearby allies have 56 to 88 added cold damage per green socket"] = { "AuraAddedColdDamagePerGreenSocketUnique__1", }, ["you and nearby allies have 64 to 96 added fire damage per red socket"] = { "AuraAddedFireDamagePerRedSocketUnique__1", }, @@ -8781,12 +9185,12 @@ return { ["you are unaffected by ignite if you've cast flammability in the past 10 seconds"] = { "FlammabilityUnaffectedByIgniteUnique__1", }, ["you are unaffected by shock if you've cast conductivity in the past # seconds"] = { "ConductivityUnaffectedByShockUnique__1", }, ["you are unaffected by shock if you've cast conductivity in the past 10 seconds"] = { "ConductivityUnaffectedByShockUnique__1", }, - ["you can apply an additional curse"] = { "AdditionalCurseOnEnemiesUnique__1", "AdditionalCurseOnEnemiesUnique__2", "VillageAdditionalCurseOnEnemies", }, + ["you can apply an additional curse"] = { "AdditionalCurseOnEnemiesUnique__1", "AdditionalCurseOnEnemiesUnique__2", "DivergentAdditionalCurseOnEnemiesUnique__1", "VillageAdditionalCurseOnEnemies", }, ["you can apply an additional curse if # hunter items are equipped"] = { "AdditionalCurseOnEnemies6HunterItemsUnique__1", }, ["you can apply an additional curse if 6 hunter items are equipped"] = { "AdditionalCurseOnEnemies6HunterItemsUnique__1", }, ["you can apply an additional curse while at maximum power charges"] = { "ChargeBonusAdditionalCursePowerCharges", }, ["you can apply one fewer curse"] = { "AdditionalCurseOnEnemiesUnique__3", }, - ["you can be touched by tormented spirits"] = { "TouchedByTormentedSpiritsUnique__1", }, + ["you can be touched by tormented spirits"] = { "DivergentTouchedByTormentedSpiritsUnique__1", "TouchedByTormentedSpiritsUnique__1", }, ["you can cast an additional brand"] = { "AdditionalBrandUnique__1", }, ["you can catch exotic fish"] = { "FishingExoticFishUniqueFishingRod1", }, ["you can have an additional tincture active"] = { "AdditionalTinctureUnique__1", }, @@ -8806,7 +9210,7 @@ return { ["you cannot be maimed"] = { "AvoidMaimChanceUnique__1", }, ["you cannot be shocked for # seconds after being shocked"] = { "ShockImmunityWhenShockedUniqueGlovesStrInt1", }, ["you cannot be shocked for 3 seconds after being shocked"] = { "ShockImmunityWhenShockedUniqueGlovesStrInt1", }, - ["you cannot be shocked while at maximum endurance charges"] = { "CannotBeShockedWhileMaximumEnduranceChargesUnique_1", }, + ["you cannot be shocked while at maximum endurance charges"] = { "CannotBeShockedWhileMaximumEnduranceChargesUnique_1", "DivergentCannotBeShockedWhileMaximumEnduranceChargesUnique_1", }, ["you cannot be shocked while frozen"] = { "CannotBeShockedWhileFrozenUniqueStaff14", }, ["you cannot be stunned while at maximum endurance charges"] = { "ChargeBonusCannotBeStunnedEnduranceCharges__", }, ["you cannot cast socketed hex curse skills"] = { "TrapsApplySocketedCurseSkillsWhenTriggeredUnique_1", }, @@ -8832,11 +9236,11 @@ return { ["you gain onslaught for # seconds on culling strike"] = { "GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6", }, ["you gain onslaught for # seconds on kill"] = { "OnslaughtBuffOnKillUniqueDagger12", "OnslaughtBuffOnKillUniqueRing12", }, ["you gain onslaught for # seconds on killing taunted enemies"] = { "OnslaughtOnKillingTauntedEnemyUniqueShieldDex7", "OnslaughtOnKillingTauntedEnemyUnique__1", }, - ["you gain onslaught for # seconds on using a vaal skill"] = { "OnslaughtOnVaalSkillUseUniqueGlovesStrDex4", }, + ["you gain onslaught for # seconds on using a vaal skill"] = { "DivergentOnslaughtOnVaalSkillUseUniqueGlovesStrDex4", "OnslaughtOnVaalSkillUseUniqueGlovesStrDex4", }, ["you gain onslaught for # seconds per endurance charge when hit"] = { "GainOnslaughtWhenHitUniqueBodyStrDex3", }, ["you gain onslaught for 1 seconds on killing taunted enemies"] = { "OnslaughtOnKillingTauntedEnemyUnique__1", }, ["you gain onslaught for 2 seconds on killing taunted enemies"] = { "OnslaughtOnKillingTauntedEnemyUniqueShieldDex7", }, - ["you gain onslaught for 20 seconds on using a vaal skill"] = { "OnslaughtOnVaalSkillUseUniqueGlovesStrDex4", }, + ["you gain onslaught for 20 seconds on using a vaal skill"] = { "DivergentOnslaughtOnVaalSkillUseUniqueGlovesStrDex4", "OnslaughtOnVaalSkillUseUniqueGlovesStrDex4", }, ["you gain onslaught for 3 seconds on culling strike"] = { "GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6", }, ["you gain onslaught for 3 seconds on kill"] = { "OnslaughtBuffOnKillUniqueDagger12", }, ["you gain onslaught for 4 seconds on critical strike"] = { "UndyingRageOnCritUniqueTwoHandMace6", }, @@ -8857,16 +9261,16 @@ return { ["you have echoing shrine buff while affected by no flasks"] = { "SoulcordEchoingShrineUnique__1", }, ["you have elemental conflux if the stars are aligned"] = { "InfluenceElementalConfluxUnique__1", }, ["you have far shot while you do not have iron reflexes"] = { "FarShotWhileYouDoNotHaveIronReflexesUnique__1_", }, - ["you have fungal ground around you while stationary"] = { "FungalAroundWhenStationaryUnique__1_", }, + ["you have fungal ground around you while stationary"] = { "DivergentFungalAroundWhenStationaryUnique__1_", "FungalAroundWhenStationaryUnique__1_", }, ["you have gloom shrine buff while affected by no flasks"] = { "SoulcordGloomShrineUnique__1", }, ["you have greater freezing shrine buff while affected by no flasks"] = { "SoulcordChillingShrineUnique_1", }, ["you have greater shocking shrine buff while affected by no flasks"] = { "SoulcordShockingShrineUnique_1", }, ["you have greater skeletal shrine buff while affected by no flasks"] = { "SoulcordSkeletonShrineUnique_1", }, - ["you have igniting, chilling and shocking conflux while affected by glorious madness"] = { "ElementalConfluxesGloriousMadnessUnique1", }, + ["you have igniting, chilling and shocking conflux while affected by glorious madness"] = { "DivergentElementalConfluxesGloriousMadnessUnique1", "ElementalConfluxesGloriousMadnessUnique1", }, ["you have impenetrable shrine buff while affected by no flasks"] = { "SoulcordImpenetrableShrineUnique_1", }, ["you have iron reflexes while at maximum frenzy charges"] = { "ChargeBonusIronReflexesFrenzyCharges", }, - ["you have lesser brutal shrine buff"] = { "HasBrutalShrineBuffUnique__1", }, - ["you have lesser massive shrine buff"] = { "HasMassiveShrineBuffUnique__1", }, + ["you have lesser brutal shrine buff"] = { "DivergentHasBrutalShrineBuffUnique__1", "HasBrutalShrineBuffUnique__1", }, + ["you have lesser massive shrine buff"] = { "DivergentHasMassiveShrineBuffUnique__1", "HasMassiveShrineBuffUnique__1", }, ["you have massive shrine buff while affected by no flasks"] = { "SoulcordMassiveShrineUnique_1", }, ["you have mind over matter while at maximum power charges"] = { "ChargeBonusMindOverMatterPowerCharges", }, ["you have no armour or maximum energy shield"] = { "NoArmourOrEnergyShieldUnique__1_", }, @@ -8875,12 +9279,12 @@ return { ["you have no mana regeneration"] = { "NoManaRegenerationUniqueHelmetInt_1", }, ["you have onslaught while at maximum endurance charges"] = { "OnslaughtWithMaxEnduranceChargesUnique__1", }, ["you have onslaught while fortified"] = { "OnslaughtWhileFortifiedUnique__1", }, - ["you have onslaught while not on low mana"] = { "OnslaughtWhileNotOnLowManaUnique__1_", }, + ["you have onslaught while not on low mana"] = { "DivergentOnslaughtWhileNotOnLowManaUnique__1_", "OnslaughtWhileNotOnLowManaUnique__1_", }, ["you have onslaught while on low life"] = { "OnslaughtOnLowLifeUnique__1", }, - ["you have onslaught while you have cat's agility"] = { "GainOnslaughtWhileCatsAgilityUnique__1_", }, - ["you have perfect agony if you've dealt a critical strike recently"] = { "PerfectAgonyIfCritRecentlyUnique__1", }, + ["you have onslaught while you have cat's agility"] = { "DivergentGainOnslaughtWhileCatsAgilityUnique__1_", "GainOnslaughtWhileCatsAgilityUnique__1_", }, + ["you have perfect agony if you've dealt a critical strike recently"] = { "DivergentPerfectAgonyIfCritRecentlyUnique__1", "PerfectAgonyIfCritRecentlyUnique__1", }, ["you have phasing if energy shield recharge has started recently"] = { "PhasingOnBeginESRechargeUnique___1", }, - ["you have phasing if you have blocked recently"] = { "PhasingIfBlockedRecentlyUnique__1", }, + ["you have phasing if you have blocked recently"] = { "DivergentPhasingIfBlockedRecentlyReplicaUnique__1", "DivergentPhasingIfBlockedRecentlyUnique__1", "PhasingIfBlockedRecentlyUnique__1", }, ["you have phasing if you've killed recently"] = { "GainPhasingIfKilledRecentlyUnique__1", }, ["you have phasing while on low life"] = { "PhasingOnLowLifeUnique__1", }, ["you have phasing while you have cat's stealth"] = { "GainPhasingWhileCatsStealthUnique__1", }, @@ -8891,47 +9295,48 @@ return { ["you have scorching conflux, brittle conflux and sapping conflux while your two highest attributes are equal"] = { "ScorchingBrittleSappingConfluxUnique__1", }, ["you have tailwind if you've used a socketed vaal skill recently"] = { "LocalVaalTailwindIfUsedRecentlyUnique__1", }, ["you have unholy might while you have no energy shield"] = { "UnholyMightOnZeroEnergyShieldUnique__1", }, - ["you have vaal pact if you've dealt a critical strike recently"] = { "VaalPactIfCritRecentlyUnique__1", }, + ["you have vaal pact if you've dealt a critical strike recently"] = { "DivergentVaalPactIfCritRecentlyUnique__1", "VaalPactIfCritRecentlyUnique__1", }, ["you have vaal pact while all socketed gems are red"] = { "VaalPactIfAllSocketedGemsAreRedUniqueTwoHandSword8", }, ["you have vaal pact while at maximum endurance charges"] = { "ChargeBonusVaalPactEnduranceCharges", }, ["you have zealot's oath if you haven't been hit recently"] = { "ZealotsOathIfHaventBeenHitRecentlyUnique__1", }, ["you lose all endurance charges on reaching maximum endurance charges"] = { "LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_", }, ["you lose all endurance charges when hit"] = { "LoseEnduranceChargesWhenHitUniqueBodyStrDex3", }, ["you lose all spirit charges when taking a savage hit"] = { "LoseSpiritChargesOnSavageHitUnique__1_", }, + ["you only lose # crab barriers when you take physical damage from a hit"] = { "DivergentCrabBarriersLostWhenHitUnique__1_", }, ["you only lose (#) crab barriers when you take physical damage from a hit"] = { "CrabBarriersLostWhenHitUnique__1_", }, ["you only lose (5-7) crab barriers when you take physical damage from a hit"] = { "CrabBarriersLostWhenHitUnique__1_", }, + ["you only lose 5 crab barriers when you take physical damage from a hit"] = { "DivergentCrabBarriersLostWhenHitUnique__1_", }, ["you take # chaos damage per second for # seconds on kill"] = { "ChaosDegenerationOnKillUniqueBodyStr3", }, ["you take #% of damage from blocked hits"] = { "BaseBlockDamageTakenUnique__1___", }, ["you take #% of elemental damage from blocked hits"] = { "ElementalDamageFromBlockedHitsUnique__1", }, ["you take #% of your maximum life as chaos damage on use"] = { "FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2", }, - ["you take #% reduced extra damage from critical strikes"] = { "EnemyCriticalStrikeMultiplierUniqueRing8", "ReducedCriticalStrikeDamageTakenUniqueBelt13", }, + ["you take #% reduced extra damage from critical strikes"] = { "EnemyCriticalStrikeMultiplierUniqueRing8", "ReducedCriticalStrikeDamageTakenUniqueBelt13", "UniqueReducedExtraDamageFromCrits__1", }, ["you take #% reduced extra damage from critical strikes while you have no power charges"] = { "ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1", }, - ["you take (#)% reduced extra damage from critical strikes"] = { "UniqueReducedExtraDamageFromCrits__1", }, ["you take (#)% reduced extra damage from critical strikes by poisoned enemies"] = { "ReducedCriticalDamageTakenPoisonUnique__1", }, - ["you take (150-200)% reduced extra damage from critical strikes"] = { "UniqueReducedExtraDamageFromCrits__1", }, ["you take (30-50)% reduced extra damage from critical strikes by poisoned enemies"] = { "ReducedCriticalDamageTakenPoisonUnique__1", }, ["you take 100% of elemental damage from blocked hits"] = { "ElementalDamageFromBlockedHitsUnique__1", }, + ["you take 100% reduced extra damage from critical strikes"] = { "UniqueReducedExtraDamageFromCrits__1", }, ["you take 20% of damage from blocked hits"] = { "BaseBlockDamageTakenUnique__1___", }, ["you take 30% reduced extra damage from critical strikes"] = { "ReducedCriticalStrikeDamageTakenUniqueBelt13", }, ["you take 450 chaos damage per second for 3 seconds on kill"] = { "ChaosDegenerationOnKillUniqueBodyStr3", }, ["you take 50% of your maximum life as chaos damage on use"] = { "FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2", }, ["you take 50% reduced extra damage from critical strikes"] = { "EnemyCriticalStrikeMultiplierUniqueRing8", }, ["you take 50% reduced extra damage from critical strikes while you have no power charges"] = { "ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1", }, - ["you take chaos damage instead of physical damage from bleeding"] = { "BleedOnSelfDealChaosDamageUnique__1", }, + ["you take chaos damage instead of physical damage from bleeding"] = { "BleedOnSelfDealChaosDamageUnique__1", "DivergentBleedOnSelfDealChaosDamageUnique__1", }, ["your attacks deal # physical damage"] = { "AddedPhysicalDamageUniqueBodyDex2", }, ["your attacks deal -3 physical damage"] = { "AddedPhysicalDamageUniqueBodyDex2", }, ["your attacks do not cost mana"] = { "AttacksCostNoManaUniqueTwoHandAxe9", }, ["your aura buffs do not affect allies"] = { "AurasCannotBuffAlliesUniqueOneHandSword11", }, ["your chaos damage can chill"] = { "ChaosDamageCanChill", }, ["your chaos damage can freeze"] = { "ChaosDamageCanFreezeUnique_1", }, - ["your chaos damage can ignite"] = { "ChaosDamageCanIgniteUnique__1", }, + ["your chaos damage can ignite"] = { "ChaosDamageCanIgniteUnique__1", "DivergentChaosDamageCanIgniteUnique__1", }, ["your chaos damage can shock"] = { "ChaosDamageCanShockUniqueBow10", "ChaosDamageCanShockUnique__1", }, ["your chaos damage has #% chance to poison enemies"] = { "ChaosDamageChanceToPoisonUnique__1", }, ["your chaos damage has 60% chance to poison enemies"] = { "ChaosDamageChanceToPoisonUnique__1", }, ["your chaos damage poisons enemies"] = { "ChaosDamagePoisonsUniqueDagger10", }, ["your cold damage can ignite"] = { "ColdDamageIgnitesUnique__1", }, - ["your cold damage can ignite but not freeze or chill"] = { "ColdIgnitesUniqueHelmetDexInt4_", }, - ["your cold damage can poison"] = { "ColdDamageCanPoisonUnique__1_", }, + ["your cold damage can ignite but not freeze or chill"] = { "ColdIgnitesUniqueHelmetDexInt4_", "DivergentColdIgnitesUniqueHelmetDexInt4_", }, + ["your cold damage can poison"] = { "ColdDamageCanPoisonUnique__1_", "DivergentColdDamageCanPoisonAndLessDurationUnique__1", }, ["your cold damage cannot freeze"] = { "ColdDamageCannotFreeze", }, ["your critical strike chance is lucky while on low life"] = { "LuckyCriticalsOnLowLifeUnique__1___", }, ["your critical strike multiplier is #%"] = { "CriticalStrikeMultiplierIs250Unique__1", }, @@ -8943,9 +9348,9 @@ return { ["your curses have 25% increased effect if 50% of curse duration expired"] = { "Curse50PercentCurseEffectUnique__1", }, ["your elemental damage can shock"] = { "ElementalDamageCanShockUnique__1__", }, ["your energy shield starts at zero"] = { "EnergyShieldStartsAtZero", }, - ["your fire damage can poison"] = { "FireDamageCanPoisonUnique__1", }, - ["your fire damage can shock but not ignite"] = { "FireShocksUniqueHelmetDexInt4", }, - ["your hexes can affect hexproof enemies"] = { "IgnoreHexproofUnique___1", }, + ["your fire damage can poison"] = { "DivergentFireDamageCanPoisonAndLessDurationUnique__1", "FireDamageCanPoisonUnique__1", }, + ["your fire damage can shock but not ignite"] = { "DivergentFireShocksUniqueHelmetDexInt4", "FireShocksUniqueHelmetDexInt4", }, + ["your hexes can affect hexproof enemies"] = { "DivergentIgnoreHexproofUnique___1", "IgnoreHexproofUnique___1", }, ["your hits against marked enemy cannot be blocked or suppressed"] = { "VillageMarkedEnemyNoBlockSuppress", }, ["your hits can only kill frozen enemies"] = { "CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3", }, ["your hits can't be evaded"] = { "AlwaysHitsUniqueGlovesDexInt4", "AlwaysHitsUnique__2", }, @@ -8954,39 +9359,42 @@ return { ["your hits cannot inflict more than 1 impale"] = { "HitsCannotInflictMoreThanOneImpale_1UNUSED", }, ["your hits cannot penetrate or ignore elemental resistances"] = { "CannotPenetrateResistancesUnique__1", }, ["your increases and reductions to quantity of items found also apply to damage"] = { "PercentDamagePerItemQuantityUnique__1", }, - ["your lightning damage can freeze but not shock"] = { "LightningFreezesUniqueHelmetDexInt4", }, + ["your lightning damage can freeze but not shock"] = { "DivergentLightningFreezesUniqueHelmetDexInt4", "LightningFreezesUniqueHelmetDexInt4", }, ["your lightning damage can ignite"] = { "LightningDamageCanIgniteUnique__1", }, - ["your lightning damage can poison"] = { "LightningDamageCanPoisonUnique__1", }, + ["your lightning damage can poison"] = { "DivergentLightningDamageCanPoisonAndLessDurationUnique__1", "LightningDamageCanPoisonUnique__1", }, ["your linked minions take (#)% less damage"] = { "LinksGrantMinionsLessDamageTakenUnique_1", }, ["your linked minions take (65-75)% less damage"] = { "LinksGrantMinionsLessDamageTakenUnique_1", }, ["your lucky or unlucky effects use the best or"] = { "ExtremelyLuckyUnique", }, ["your mark transfers to another enemy when marked enemy dies"] = { "TransferMarkOnDeathUnique__1", }, ["your maximum endurance charges is equal to your maximum frenzy charges"] = { "MaximumEnduranceChargesEqualToMaximumFrenzyChargesUnique__1", }, ["your maximum frenzy charges is equal to your maximum power charges"] = { "MaximumFrenzyChargesEqualToMaximumPowerChargesUnique__1", }, + ["your maximum resistances are #%"] = { "DivergentMaximumResistancesOverrideUnique__1", }, ["your maximum resistances are (#)%"] = { "MaximumResistancesOverrideUnique__1", "MaximumResistancesOverrideUnique__2", }, ["your maximum resistances are (70-72)%"] = { "MaximumResistancesOverrideUnique__2", }, ["your maximum resistances are (76-78)%"] = { "MaximumResistancesOverrideUnique__1", }, + ["your maximum resistances are 78%"] = { "DivergentMaximumResistancesOverrideUnique__1", }, ["your minions spread burning ground on death, dealing #% of their maximum life as fire damage per second"] = { "MinionBurningCloudOnDeathUnique__1", "VillageMinionBurningCloudOnDeath", }, ["your minions spread burning ground on death, dealing 10% of their maximum life as fire damage per second"] = { "VillageMinionBurningCloudOnDeath", }, ["your minions spread burning ground on death, dealing 20% of their maximum life as fire damage per second"] = { "MinionBurningCloudOnDeathUnique__1", }, ["your minions spread caustic ground on death, dealing #% of their maximum life as chaos damage per second"] = { "MinionCausticCloudOnDeathUnique__1_", }, ["your minions spread caustic ground on death, dealing 20% of their maximum life as chaos damage per second"] = { "MinionCausticCloudOnDeathUnique__1_", }, ["your minions use your flasks when summoned"] = { "MinionsUseFlaskOnSummonUnique__1__", }, - ["your movement speed is #% of its base value"] = { "MovementVelocityOverrideUnique__1", }, - ["your movement speed is 150% of its base value"] = { "MovementVelocityOverrideUnique__1", }, + ["your movement speed is #% of its base value"] = { "DivergentMovementVelocityOverrideUnique__1", "DivergentMovementVelocityOverrideUnique__2", "MovementVelocityOverrideUnique__1", }, + ["your movement speed is 150% of its base value"] = { "DivergentMovementVelocityOverrideUnique__1", "DivergentMovementVelocityOverrideUnique__2", "MovementVelocityOverrideUnique__1", }, ["your nearby party members maximum endurance charges is equal to yours"] = { "ShareMaximumEnduranceChargesPartyUnique__1", }, ["your physical damage can chill"] = { "PhysicalDamageCanChillUniqueDescentOneHandAxe1", "PhysicalDamageCanChillUniqueOneHandAxe1", }, ["your physical damage can freeze"] = { "PhysicalDamageCanFreezeUnique__1_", }, ["your physical damage can shock"] = { "PhysicalDamageCanShockUnique__1", }, ["your raised spectres also gain arcane surge when you do"] = { "SpectresGainArcaneSurgeWhenYouDoUnique__1_", }, ["your raised zombies count as corpses"] = { "ZombiesCountAsCorpsesUnique__1", }, - ["your skills deal you #% of mana spent on upfront skill mana costs as physical damage"] = { "PhysicalDamageOnSkillUseUniqueHelmetInt8", }, + ["your skills deal you #% of mana spent on upfront skill mana costs as physical damage"] = { "DivergentPhysicalDamageOnSkillUseUniqueHelmetInt8", "PhysicalDamageOnSkillUseUniqueHelmetInt8", }, + ["your skills deal you 200% of mana spent on upfront skill mana costs as physical damage"] = { "DivergentPhysicalDamageOnSkillUseUniqueHelmetInt8", }, ["your skills deal you 400% of mana spent on upfront skill mana costs as physical damage"] = { "PhysicalDamageOnSkillUseUniqueHelmetInt8", }, ["your spells are disabled"] = { "SpellsAreDisabledUnique__1", }, ["your spells have #% chance to shock against frozen enemies"] = { "SpellChanceToShockFrozenEnemiesUniqueRing34", }, ["your spells have 100% chance to shock against frozen enemies"] = { "SpellChanceToShockFrozenEnemiesUniqueRing34", }, ["your spells have culling strike"] = { "SpellsHaveCullingStrikeUniqueDagger4", }, - ["zealot's oath"] = { "KeystoneZealotsOathUnique__1_", "ZealotsOathUnique__1", }, + ["zealot's oath"] = { "DivergentZealotsOathUnique__1", "KeystoneZealotsOathUnique__1_", "ZealotsOathUnique__1", }, ["zealotry has no reservation"] = { "ZealotryNoReservationUnique__1", }, } \ No newline at end of file diff --git a/src/Export/Uniques/amulet.lua b/src/Export/Uniques/amulet.lua index 7bba483895..aa572f0272 100644 --- a/src/Export/Uniques/amulet.lua +++ b/src/Export/Uniques/amulet.lua @@ -248,7 +248,8 @@ ItemFoundRarityIncreaseImplicitAmulet1 {variant:3}NormalMonsterItemQuantityUnique__1 ]],[[ Blightwell -Clutching Talisman +{variant:1,2}Clutching Talisman +{variant:3}Shield Crab Talisman Variant: Pre 3.16.0 Variant: Pre 3.29.0 Variant: Current @@ -256,17 +257,17 @@ League: Talisman Hardcore Talisman Tier: 2 Requires Level 28 Implicits: 1 -TalismanGlobalDefensesPercent +{variant:1,2}TalismanGlobalDefensesPercent {variant:1,2}IncreasedEnergyShieldUniqueAmulet14 -{variant:3}{tags:defences}+(50-100) to maximum Energy Shield +{variant:3}IncreasedEnergyShieldUnique___1 FireResistUnique__2 LightningResistUnique__1 {variant:1}EnergyShieldDelayDuringFlaskEffect__1[-30,-30] {variant:2,3}EnergyShieldDelayDuringFlaskEffect__1 {variant:1}ESRechargeRateDuringFlaskEffect__1[400,400] {variant:2,3}ESRechargeRateDuringFlaskEffect__1 -{variant:3}(10-15)% increased Flask Effect Duration -Corrupted +{variant:3}IncreasedFlaskDurationUnique__2 +{variant:1,2}Corrupted ]],[[ Blood of Corruption Amber Amulet @@ -507,7 +508,7 @@ Implicits: 33 {variant:31}TalismanDamageDealtAddedAsRandomElement {variant:32}TalismanAdditionalPierce {variant:33}TalismanGlobalDamageOverTimeMultiplier -LocalDoubleImplicitMods +LocalEnchantStatMagnitudeUnique__1 ]],[[ The Felbog Fang Citrine Amulet @@ -832,24 +833,25 @@ LightRadiusUniqueAmulet17 CullingCriticalStrikes ]],[[ Natural Hierarchy -Rotfeather Talisman +{variant:1}Rotfeather Talisman +{variant:2}Rhex Talisman Variant: Pre 3.29.0 Variant: Current League: Talisman Standard, Talisman Hardcore Talisman Tier: 3 Requires Level 44 Implicits: 1 -TalismanIncreasedDamage +{variant:1}TalismanIncreasedDamage {variant:1}IncreasedPhysicalDamagePercentUnique__3 {variant:1}FireDamagePercentUnique__4 {variant:1}ColdDamagePercentUnique__6 {variant:1}LightningDamagePercentUnique__2 {variant:1}IncreasedChaosDamageUnique__1 -{variant:2}Gain (10-15)% of Physical Damage as Extra Lightning Damage -{variant:2}Gain (15-20)% of Lightning Damage as Extra Cold Damage -{variant:2}Gain (20-25)% of Cold Damage as Extra Fire Damage -{variant:2}Gain (25-30)% of Fire Damage as Extra Chaos Damage -Corrupted +{variant:2}LightningDamageAsPortionOfDamageUniqueTalisman3 +{variant:2}LightningAddedAsColdUniqueTalisman3 +{variant:2}ColdAddedAsFireUniqueTalisman3 +{variant:2}ChaosDamageAsPortionOfFireDamageUniqueTalisman3 +{variant:1}Corrupted ]],[[ Night's Hold Black Maw Talisman @@ -925,7 +927,8 @@ BlindReflectedToSelfUnique__1 {variant:2}FrenzyChargeOnHitBlindedUnique__1 ]],[[ Rigwald's Curse -Wereclaw Talisman +{variant:1,2}Wereclaw Talisman +{variant:3} Wolf Alpha Talisman League: Talisman Standard Variant: Pre 2.2.0 Variant: Pre 3.29.0 @@ -935,12 +938,12 @@ Requires Level 28 Implicits: 2 {variant:1}TalismanIncreasedCriticalStrikeMultiplier_[16,24] {variant:2}TalismanIncreasedCriticalStrikeMultiplier_ -BaseUnarmedCriticalStrikeChanceUnique__1 -{variant:3}{tags:critical}+(5-10)% to Unarmed Melee Attack Critical Strike Chance +{variant:1,2}BaseUnarmedCriticalStrikeChanceUnique__1[700,700] +{variant:3}BaseUnarmedCriticalStrikeChanceUnique__1 ClawDamageModsAlsoAffectUnarmedUnique__1 ClawAttackSpeedModsAlsoAffectUnarmed__1 ClawCritModsAlsoAffectUnarmed__1 -Corrupted +{variant:1,2}Corrupted ]],[[ Sacrificial Heart Paua Amulet diff --git a/src/Export/Uniques/body.lua b/src/Export/Uniques/body.lua index 1f0c5580cb..0945d020b4 100644 --- a/src/Export/Uniques/body.lua +++ b/src/Export/Uniques/body.lua @@ -1344,7 +1344,7 @@ Implicits: 1 IncreasedManaImplicitArmour1 LocalIncreasedEvasionAndEnergyShieldUnique__33 {variant:1}IncreasedLifeUniqueBodyStrInt7 -{variant:2}(80-100)% increased Implicit Modifier magnitudes +{variant:2}ImplicitModifierMagnitudeUnique_2 ChronomanceReservesNoMana DamageTakenGainedAsLifeUnique__2 DebuffTimePassedUnique__2 diff --git a/src/Export/Uniques/boots.lua b/src/Export/Uniques/boots.lua index ea548b2eb9..4a4cc7f233 100644 --- a/src/Export/Uniques/boots.lua +++ b/src/Export/Uniques/boots.lua @@ -46,11 +46,11 @@ Requires Level 68, 120 Str {variant:2,5,8,11,14,17}AddedColdDamageUnique__4 {variant:3,6,9,12,15,18}AddedLightningDamageUnique__2_ {variant:1,2,3,4,5,6,7,8,9}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10[100,120] -{variant:10,11,12,13,14,15,16,17,18}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10 +{variant:10,11,12,13,14,15,16,17,18}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13 {variant:1,2,3,4,5,6,7,8,9}IncreasedLifeUnique__60[60,70] {variant:10,11,12,13,14,15,16,17,18}IncreasedLifeUnique__60 -{variant:1,2,3,4,5,6,7,8,9}MovementVelocityUniqueBootsA1[30,30] -{variant:10,11,12,13,14,15,16,17,18}MovementVelocityUniqueBootsA1 +{variant:1,2,3,4,5,6,7,8,9}MovementVelocityUniqueBootsA1 +{variant:10,11,12,13,14,15,16,17,18}MovementVelocityUnique__22 {variant:10,11,12,13,14,15,16,17,18}Corrupted ]],[[ The Infinite Pursuit @@ -319,10 +319,10 @@ Requires Level 69, 120 Dex {variant:3,6,9,12,15,18}AddedLightningDamageUnique__2_ {variant:1,2,3,4,5,6,7,8,9}LocalIncreasedEvasionRatingPercentUnique__10[100,120] {variant:10,11,12,13,14,15,16,17,18}LocalIncreasedEvasionRatingPercentUnique__10 -{variant:1,2,3,4,5,6,7,8,9}IncreasedLifeUnique__57[60,70] -{variant:10,11,12,13,14,15,16,17,18}IncreasedLifeUnique__57 -{variant:1,2,3,4,5,6,7,8,9}MovementVelocityUniqueBootsA1[30,30] -{variant:10,11,12,13,14,15,16,17,18}MovementVelocityUniqueBootsA1 +{variant:1,2,3,4,5,6,7,8,9}IncreasedLifeUnique__60[60,70] +{variant:10,11,12,13,14,15,16,17,18}IncreasedLifeUnique__60 +{variant:1,2,3,4,5,6,7,8,9}MovementVelocityUniqueBootsA1 +{variant:10,11,12,13,14,15,16,17,18}MovementVelocityUnique__22 {variant:10,11,12,13,14,15,16,17,18}Corrupted ]],[[ Farrul's Chase @@ -506,13 +506,12 @@ Requires Level 67, 120 Int {variant:2,5,8,11,14,17,20,23,26}AddedColdDamageUnique__4 {variant:3,6,9,12,15,18,21,24,27}AddedLightningDamageUnique__2_ {variant:1,2,3,4,5,6,7,8,9}LocalIncreasedEnergyShieldPercentUnique__10[180,220] -{variant:10,11,12,13,14,15,16,17,18}LocalIncreasedEnergyShieldPercentUnique__10[150,180] -{variant:19,20,21,22,23,24,25,26,27}LocalIncreasedEnergyShieldPercentUnique__10 -IncreasedLifeUnique__55 -{variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}IncreasedLifeUnique__55[60,70] -{variant:19,20,21,22,23,24,25,26,27}IncreasedLifeUnique__55 -{variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}MovementVelocityUniqueBootsA1[30,30] -{variant:19,20,21,22,23,24,25,26,27}MovementVelocityUniqueBootsA1 +{variant:10,11,12,13,14,15,16,17,18}LocalIncreasedEnergyShieldPercentUnique__10 +{variant:19,20,21,22,23,24,25,26,27}LocalIncreasedEnergyShieldPercentUnique__13 +{variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}IncreasedLifeUnique__60[60,70] +{variant:19,20,21,22,23,24,25,26,27}IncreasedLifeUnique__60 +{variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}MovementVelocityUniqueBootsA1 +{variant:19,20,21,22,23,24,25,26,27}MovementVelocityUnique__22 {variant:19,20,21,22,23,24,25,26,27}Corrupted ]],[[ Inya's Epiphany @@ -688,7 +687,7 @@ MovementVelocityUniqueBootsA1 {variant:3}EnemiesExplodeOnDeathChaosGloriousMadnessUnique1 {variant:2}ElementalConfluxesGloriousMadnessUnique1 {variant:2}ElementalAilmentImmunityGloriousMadnessUnique1 -{variant:1}FortifyEffectSelfGloriousMadnessUnique1[15,15] +{variant:1}FortifyEffectSelfGloriousMadnessUnique1 ]],[[ Darkray Vectors Dragonscale Boots diff --git a/src/Export/Uniques/dagger.lua b/src/Export/Uniques/dagger.lua index 84e66154ae..d56ec40919 100644 --- a/src/Export/Uniques/dagger.lua +++ b/src/Export/Uniques/dagger.lua @@ -267,7 +267,7 @@ DexterityUniqueDagger3 LocalIncreasedPhysicalDamagePercentUniqueDagger2 AddedLightningDamageUniqueDagger3 LocalIncreasedAttackSpeedUniqueDagger3 -CriticalStrikeChanceImplicitDaggerNew3 +CriticalStrikeChanceUniqueDagger3 ]],[[ Replica Ungil's Gauche Boot Knife diff --git a/src/Export/Uniques/gloves.lua b/src/Export/Uniques/gloves.lua index 5fc84c40c1..dc8d68b130 100644 --- a/src/Export/Uniques/gloves.lua +++ b/src/Export/Uniques/gloves.lua @@ -113,7 +113,7 @@ Requires Level 47, 68 Str SupportedByRageUnique__1__ LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23 {variant:1}ReducedRageCostUnique__1 -{variant:2}(20-40)% increased Rage Cost Efficiency +{variant:2}RageCostEfficiencyUnique__1 VaalAttacksUseRageInsteadOfSoulsUnique__1_ CannotGainRageDuringSoulGainPreventionUnique__1__ ]],[[ @@ -661,7 +661,7 @@ ItemActsAsConcentratedAOESupportUnique__1 LocalIncreasedArmourAndEvasionUnique__1 IncreasedLifeUniqueGlovesStrDex4 {variant:1}ReduceManaCostPerEnduranceChargeUnique__1 -{variant:2}10% increased Mana Cost Efficiency per Endurance Charge +{variant:2}ManaCostEfficiencyPerEnduranceChargeUnique__1 RampageWhileAtMaxEnduranceChargesUnique__1 LoseEnduranceChargesOnRampageEndUnique___1 ]],[[ @@ -829,13 +829,13 @@ Variant: Current Requires Level 32, 26 Str, 26 Int LocalIncreasedArmourAndEnergyShieldUnique__16 {variant:1}MinionPhysicalToFirePerRedSocket -{variant:2}Minions convert 25% of Physical Damage to Fire Damage per Socketed Red Gem {variant:1}MinionPhysicalToColdPerGreenSocket_ -{variant:2}Minions convert 25% of Physical Damage to Cold Damage per Socketed Green Gem {variant:1}MinionPhysicalToLightningPerBlueSocket -{variant:2}Minions convert 25% of Physical Damage to Lightning Damage per Socketed Blue Gem {variant:1}MinionPhysicalToChaosPerWhiteSocket -{variant:2}Minions convert 25% of Physical Damage to Chaos Damage per Socketed White Gem +{variant:2}MinionPhysicalToFirePerSocketedRedGemUnique__1 +{variant:2}MinionPhysicalToColdPerSocketedGreenGemUnique__1 +{variant:2}MinionPhysicalToLightningPerSocketedBlueGemUnique__1 +{variant:2}MinionPhysicalToChaosPerEmptySocketUnique__1 MinionChanceToFreezeShockIgnite ]],[[ Volkuur's Guidance @@ -1069,7 +1069,8 @@ CriticalStrikeChanceUniqueGlovesDexInt6 {variant:2}CriticalMultiplierUniqueGlovesDexInt6_[25,45] {variant:3}CriticalMultiplierUniqueGlovesDexInt6_ LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6 -ManaLeechPermyriadUnique__1 +{variant:1,2}ManaLeechPermyriadUnique__1 +{variant:3}ManaLeechPermyriadUniqueGlovesDexInt6 GroundSmokeOnRampageUniqueGlovesDexInt6 UnholyMightOnRampageUniqueGlovesDexInt6 SimulatedRampageDexInt6 diff --git a/src/Export/Uniques/helmet.lua b/src/Export/Uniques/helmet.lua index ef9763658c..55ef76fc5b 100644 --- a/src/Export/Uniques/helmet.lua +++ b/src/Export/Uniques/helmet.lua @@ -301,7 +301,7 @@ Variant: Current Requires Level 70, 150 Dex {variant:1}IncreasedAccuracyUnique__4[300,500] {variant:2}IncreasedAccuracyUnique__4 -LocalIncreasedEvasionRatingPercentUnique__10 +LocalIncreasedEvasionRatingPercentUnique__3 IncreasedLifeUnique__23 IncreaseProjectileAttackDamagePerAccuracyUnique__1 ]],[[ @@ -1160,7 +1160,7 @@ Requires Level 12, 16 Str, 16 Int {variant:1}AllResistancesUniqueHelmetStrInt1 {variant:1}ElementalResistsOnLowLifeUniqueHelmetStrInt1 {variant:2,3}ManaCostReductionUnique__2_ -{variant:4}(30-50)% increased Mana Cost Efficiency +{variant:4}ManaCostEffiencyUnique__2 {variant:1}ReducedManaCostOnLowLifeUniqueHelmetStrInt1 ]],[[ Kitava's Thirst @@ -1271,7 +1271,8 @@ Implicits: 1 MinionDamageImplicitHelmet1 GrantsDeathWishUnique__1__ IncreasedLifeUnique__109_ -MinionSkillManaCostUnique__2 +{variant:1}MinionSkillManaCostUnique__2 +{variant:2}MinionSkillManaCostEfficiencyUnique__1 MinionLargerAggroRadiusUnique__1 ]],[[ Memory Vault @@ -1281,8 +1282,7 @@ LocalIncreasedEnergyShieldUnique__15 IncreasedManaUnique__26 ManaRegenerationUnique__6 FireResistUniqueDexHelmet2 -{variant:1}IncreasedManaReservationsCostUnique__2 -{variant:2}(40-60)% increased Mana Cost Efficiency of Minion Skills +IncreasedManaReservationsCostUnique__2 GainArmourEqualToManaReservedUnique__1 ]],[[ Mindspiral @@ -1484,7 +1484,7 @@ LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3 {variant:3,4}LocalIncreasedEnergyShieldUnique__11 {variant:2,3,4}IncreasedLifeUnique__120 {variant:1}IncreasedManaUniqueHelmetDexInt3 -{variant:2,3}ColdResistUnique__16 +{variant:2,3,4}ColdResistUnique__16 {variant:1}LifeGainedFromEnemyDeathUniqueHelmetDexInt3 {variant:1}EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3 {variant:1,2,3}ShrineBuffEffectUniqueHelmetDexInt3[75,75] diff --git a/src/Export/Uniques/jewel.lua b/src/Export/Uniques/jewel.lua index dd83340146..41520953a1 100644 --- a/src/Export/Uniques/jewel.lua +++ b/src/Export/Uniques/jewel.lua @@ -1860,7 +1860,7 @@ Implicits: 0 {variant:15}MinionAccuracyRatingPerDevotion_ {variant:16}AddedManaRegenerationPerDevotion {variant:17}ReducedManaCostPerDevotion -{variant:20}3% increased Mana Cost Efficiency per 10 Devotion +{variant:20}ManaCostEfficiencyPerDevotion {variant:18}AuraEffectPerDevotion {variant:19}ShieldDefencesPerDevotion Passives in radius are Conquered by the Templars diff --git a/src/Export/Uniques/mace.lua b/src/Export/Uniques/mace.lua index 599ab6b734..4fdc1d2089 100644 --- a/src/Export/Uniques/mace.lua +++ b/src/Export/Uniques/mace.lua @@ -210,7 +210,7 @@ Requires Level 68, 104 Str, 122 Int Implicits: 1 ElementalDamagePercentImplicitSceptre3 {variant:2}ReplicaNebulisImplicitModifierMagnitudeUnique_1 -IncreasedCastSpeedUnique__14 +IncreasedCastSpeedUnique__16 {variant:1}ColdDamagePerMissingColdResistanceUnique__1 {variant:2}ElementalDamagePerMissingResistanceUnique_1 {variant:1}FireDamagePerMissingFireResistanceUnique__1 @@ -340,8 +340,8 @@ LocalIncreasedPhysicalDamagePercentUnique__16 {variant:1}IncreasedChaosDamageUnique__2[60,80] {variant:2}IncreasedChaosDamageUnique__2[80,100] {variant:3}IncreasedChaosDamageUnique__2 -{variant:1,2}AreaOfEffectImplicitTwoHandMace1__[10,10] -{variant:3}AreaOfEffectImplicitTwoHandMace1__ +{variant:1,2}AreaOfEffectUnique_9[10,10] +{variant:3}AreaOfEffectUnique_9 {variant:1,2}ChaosSkillEffectDurationUnique__1[40,40] {variant:3}ChaosSkillEffectDurationUnique__1 ]],[[ @@ -375,8 +375,8 @@ Requires Level 47, 81 Str, 81 Int Implicits: 1 ElementalDamagePercentImplicitSceptreNew13 SpellDamageUnique__9 -{variant:1}IncreasedCastSpeedUnique__11__[15,20] -{variant:2}IncreasedCastSpeedUnique__11__ +{variant:1}IncreasedCastSpeedUnique__14[15,20] +{variant:2}IncreasedCastSpeedUnique__14 LifeLeechFromSpellsWith30BlockOnShieldUnique__1_ EnergyShieldPerArmourOnShieldUnique__1 ArmourPerEvasionRatingOnShieldUnique__1 @@ -625,7 +625,7 @@ VaalSkillDamageUnique__1 VaalSoulGainPreventionUnique__1__ GainRandomChargeOnVaalSkillUseUnique__1_ KeystoneShepherdOfSoulsUnique__1 -{variant:2}+(1-2) to Level of all Vaal Skill Gems +{variant:2}GlobalVaalGemsLevelUnique__1 ]],[[ Cadigan's Authority Platinum Sceptre @@ -904,10 +904,7 @@ IntelligenceUnique__5 {variant:1}LocalAddedPhysicalDamageUnique__26[60,70][300,350] {variant:2,3,4}LocalAddedPhysicalDamageUnique__26 {variant:1,2,3}IncreasedPhysicalDamagePerEnduranceChargeUnique__1 -{variant:4}50% chance to gain a Brine Charge instead of an Endurance Charge -{variant:4}Gain 4% of Physical Damage as Extra Cold Damage per Brine Charge -{variant:4}Gain 4% of Physical Damage as Extra Lightning Damage per Brine Charge -{variant:4}Maximum Brine Charges is equal to Maximum Endurance Charges +{variant:4}GainBrineChargesUnique__1 StunThresholdReductionUnique__1___ ]],[[ Trypanon diff --git a/src/Export/Uniques/quiver.lua b/src/Export/Uniques/quiver.lua index 9f0520ec0e..a01b63e9b0 100644 --- a/src/Export/Uniques/quiver.lua +++ b/src/Export/Uniques/quiver.lua @@ -348,7 +348,7 @@ Implicits: 2 {variant:1,2}AdditionalArrowPierceImplicitQuiver12_ {variant:3}WeaponElementalDamageImplicitQuiver13New {variant:4}QuiverHasOneSocket -{variant:4}Has 2 Sockets +{variant:4}HasTwoSocketsUnique__2 VoidShotOnSkillUseUnique__1_ AddedColdDamageUnique__7 IncreasedEnergyShieldUnique__7 diff --git a/src/Export/Uniques/ring.lua b/src/Export/Uniques/ring.lua index ef719eb9da..c90ca44375 100644 --- a/src/Export/Uniques/ring.lua +++ b/src/Export/Uniques/ring.lua @@ -498,7 +498,7 @@ CanInflictMultipleIgnitesUniqueRing38 {variant:1}EmberwakeLessBurningDamageUniqueRing38[80,80] {variant:2}EmberwakeLessBurningDamageUniqueRing38[65,65] {variant:3}EmberwakeLessBurningDamageUniqueRing38[65,50] -{variant:4}EmberwakeLessBurningDamageUnique__1[40,40] +{variant:4}EmberwakeLessBurningDamageUnique__1[-40,-40] {variant:5}EmberwakeLessBurningDamageUnique__1 ]],[[ Replica Emberwake @@ -563,7 +563,7 @@ Requires Level 64 Implicits: 1 CriticalStrikeChanceImplicitRing1 IncreasedAttackSpeedUniqueRing37 -IncreasedCastSpeedUniqueRing38 +IncreasedCastSpeedUnique__15_ IncreasedEnergyShieldUnique__13 IncreasedLifeUnique__15 AttackCriticalStrikesUnnerveUnique__1 @@ -895,7 +895,7 @@ StrengthUniqueRing31__ {variant:1}AddedFireDamageUniqueRing31[8,10][12,14] {variant:2}AddedFireDamageUniqueRing31[8,10][12,14] {variant:3,4}AddedFireDamageUniqueRing31 -{variant:4}{tags:defences}+(400-600) to Armour +{variant:4}IncreasedPhysicalDamageReductionRatingUnique__12 {variant:1}LifeGainOnHitVsIgnitedEnemiesUniqueRing31 BurnDurationUniqueRing31 {variant:1}IncreasedChanceToIgniteUniqueRing31[5,5] @@ -970,7 +970,7 @@ IncreasedManaUnique__8 AddedManaRegenerationUnique__1 ReduceGlobalFlatManaCostUnique__1 PercentDamageGoesToManaUnique__1 -{variant:2}{tags:resource}(20-30)% increased Mana Cost Efficiency +{variant:2}ManaCostEfficiencyUnique__1 ]],[[ Profane Proxy Unset Ring @@ -1177,7 +1177,7 @@ Implicits: 1 ColdResistImplicitRing1 {variant:1}ColdDamagePercentUnique__9 {variant:2}SpellDamageUnique__11 -IncreasedCastSpeedUniqueRing38 +IncreasedCastSpeedUnique__15_ {variant:1}AdditionalSpellProjectilesUnique__1 {variant:2}LeftRingSpellProjectilesCannotChainUnique__1 {variant:2}LeftRingSpellProjectilesForkUnique__1_ @@ -1286,7 +1286,7 @@ Implicits: 1 IncreasedEnergyShieldImplicitRing1 SpellDamageUnique__16 IncreasedManaUnique__27 -{variant:2}{tags:defences}+(60-80) to maximum Energy Shield +{variant:2}IncreasedEnergyShieldUnique__14 ChanceToFreezeShockIgniteUnique__3 GainSpellCostAsESUnique__1 ]],[[ diff --git a/src/Export/Uniques/shield.lua b/src/Export/Uniques/shield.lua index 69686c4e17..843411928a 100644 --- a/src/Export/Uniques/shield.lua +++ b/src/Export/Uniques/shield.lua @@ -1158,7 +1158,7 @@ Implicits: 2 {variant:1}AttackerTakesDamageShieldImplicit3 {variant:2}ChanceToDodgeImplicitShield2 LocalIncreasedEvasionAndEnergyShieldUnique__1 -IncreasedEnergyShieldUnique___1 +LocalIncreasedEnergyShieldUnique__6 IncreasedLifeUniqueShieldStr2 ItemFoundRarityIncreaseUnique__1 ChanceToAvoidFireDamageUnique__1 diff --git a/src/Export/Uniques/staff.lua b/src/Export/Uniques/staff.lua index c68d79ede2..1f389d34cd 100644 --- a/src/Export/Uniques/staff.lua +++ b/src/Export/Uniques/staff.lua @@ -102,7 +102,7 @@ UniqueStaffTriggerAtziriStormFlameblast__1 UniqueStaffTriggerAtziriStormCall__1____ CannotBeStunned DamageCannotBeReflectedUnique__1 -{variant:3}(100-300)% increased Spell Critical Strike Chance +{variant:3}SpellCriticalStrikeChanceUnique__6 ]],[[ The Winds of Fate Foul Staff @@ -596,7 +596,7 @@ Implicits: 3 {variant:4,5,6,7}FireDamagePercentUniqueStaff1_ {variant:1,2,3,4,5,6}IncreasedCastSpeedUniqueStaff1[10,10] {variant:7}IncreasedCastSpeedUniqueStaff1 -{variant:7}Voracious Flame +{variant:7}KeystoneFirePuristUnique__1 LocalIncreaseSocketedFireGemLevelUniqueStaff1 {variant:1,2,3,4}BurnDamageUniqueStaff1 ]],[[ diff --git a/src/Export/Uniques/sword.lua b/src/Export/Uniques/sword.lua index 057e632b21..60c49e73cd 100644 --- a/src/Export/Uniques/sword.lua +++ b/src/Export/Uniques/sword.lua @@ -401,7 +401,7 @@ SpellDamageUnique__5 LocalIncreasedPhysicalDamagePercentUnique__27 LocalAddedLightningDamageUnique__5 SpellAddedLightningDamageUnique__4 -AreaOfEffectUnique__2_ +AreaOfEffectUnique__3 ]],[[ The Surging Thoughts Legion Sword @@ -438,16 +438,16 @@ Implicits: 2 {variant:1}AccuracyPercentImplicitSword1[18,18] {variant:2,3}AccuracyPercentImplicitSword1 LocalAddedPhysicalDamageUnique__7_ -{variant:1,2}LocalCriticalStrikeChanceUnique14[15,25] -{variant:3}LocalCriticalStrikeChanceUnique14 +{variant:1,2}LocalCriticalStrikeChanceUnique__5[15,25] +{variant:3}LocalCriticalStrikeChanceUnique__5 {variant:1,2}LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1 -{variant:3}(8-12)% increased Area of Effect per Red Socket +{variant:3}AreaOfEffectPerRedSocketUnique__1 {variant:1,2}CriticalStrikeMultiplierPerGreenSocketUnique_1[10,10] {variant:3}CriticalStrikeMultiplierPerGreenSocketUnique_1 {variant:1,2}ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique -{variant:3}(20-30)% increased Global Critical Strike Chance per Blue Socket +{variant:3}CriticalStrikeChancePerBlueSocketUnique__1 {variant:1,2}GlobalDefensesPerWhiteSocketUnique__1 -{variant:3}(6-8)% increased Global Defences per Empty Socket +{variant:3}GlobalDefensesPerEmptySocketUnique__1 {variant:1,2}CriticalStrikeChanceInMainHandUnique_1 {variant:1,2}AdditionalChanceToBlockInOffHandUnique_1[8,8] {variant:3}AdditionalChanceToBlockInOffHandUnique_1 diff --git a/src/Export/Uniques/wand.lua b/src/Export/Uniques/wand.lua index 60f959dfce..a1deea542f 100644 --- a/src/Export/Uniques/wand.lua +++ b/src/Export/Uniques/wand.lua @@ -17,7 +17,7 @@ Implicits: 3 SpellAddedFireDamageUniqueWand10 {variant:1,2,3}CriticalStrikeChanceUniqueWand10[40,60] {variant:4}CriticalStrikeChanceUniqueWand10 -{variant:4}+(30-50)% to Damage over Time Multiplier for Ignite from Critical Strikes +{variant:4}CriticalIgniteDotMultiplierUnique__1 LifeGainedOnKillingIgnitedEnemiesUniqueWand10_ BurnDurationUniqueWand10 ]],[[ @@ -336,11 +336,11 @@ Implicits: 2 {variant:3,4}AddedLightningDamageSpellsAndAttacksImplicit3 {variant:1,2,3}SpellDamageUniqueWand1 {variant:1,2,3}SpellAddedLightningDamageUnique__5 -{variant:4}+1 to Maximum Power Charges +{variant:4}IncreasedMaximumPowerChargesUnique__5 CriticalMultiplierPerPowerChargeUnique__1 AdditionalCriticalStrikeChancePerPowerChargeUnique__1 ChanceToBlockSpellsPerPowerChargeUnique__1 -{variant:1,2,3}AddedLightningDamagePerPowerChargeUnique__1[3,3,][9,9] +{variant:1,2,3}AddedLightningDamagePerPowerChargeUnique__1[3,3][9,9] {variant:4}AddedLightningDamagePerPowerChargeUnique__1 {variant:1}DamageTakenPerPowerChargeOnCritUnique__1[24000,24000] {variant:2,3}DamageTakenPerPowerChargeOnCritUnique__1[12000,12000] @@ -401,8 +401,8 @@ Implicits: 2 {variant:3}AddedColdDamagePerPowerChargeUnique__2 LosePowerChargesOnMaxPowerChargesUnique__2 WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1 -{variant:1}IncreasedColdDamagePerFrenzyChargeUnique__2[10,15] -{variant:2}IncreasedColdDamagePerFrenzyChargeUnique__2 +{variant:1}IncreasedColdDamagePerFrenzyChargeUnique__1[10,15] +{variant:2}IncreasedColdDamagePerFrenzyChargeUnique__1 ]],[[ Replica Tulfall {variant:1}Tornado Wand @@ -418,8 +418,8 @@ Implicits: 2 IncreasedCastSpeedUnique__22 LosePowerChargesOnMaxPowerChargesUnique__1 WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1 -{variant:1,2}IncreasedColdDamagePerFrenzyChargeUnique__1[15,20] -{variant:3}IncreasedColdDamagePerFrenzyChargeUnique__1 +{variant:1,2}IncreasedColdDamagePerFrenzyChargeUnique__2[15,20] +{variant:3}IncreasedColdDamagePerFrenzyChargeUnique__2 PowerChargeOnHittingFrozenEnemyUnique__1 TakeColdDamageOnMaximumPowerChargesUnique__1____ ]],[[ diff --git a/src/Export/spec.lua b/src/Export/spec.lua index e55da5f251..b1aaffea75 100644 --- a/src/Export/spec.lua +++ b/src/Export/spec.lua @@ -2005,6 +2005,34 @@ return { refTo="ShopTag", type="Key", width=150 + }, + [33]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + }, + [34]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + }, + [35]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + }, + [36]={ + list=true, + name="EnchantMods", + refTo="Mods", + type="Key", + width=300 } }, battlepasses={ diff --git a/src/Export/statdesc.lua b/src/Export/statdesc.lua index 228ed164c7..ab8512cedc 100644 --- a/src/Export/statdesc.lua +++ b/src/Export/statdesc.lua @@ -40,7 +40,7 @@ local function parseStatFile(target, order, fileName) elseif not line:match('table_only') then local statLimits, quality, text, special = line:match('([%d%-#| !]+)%s*([%w_]*)%s*"(.-)"%s*(.*)') if statLimits then - local desc = { text = text, limit = { } } + local desc = { text = escapeGGGString(text), limit = { } } for statLimit in statLimits:gmatch("[!%d%-#|]+") do local limit = { } @@ -265,6 +265,16 @@ function describeStats(stats) elseif spec.k == "divide_by_two_0dp" then val[spec.v].min = val[spec.v].min / 2 val[spec.v].max = val[spec.v].max / 2 + elseif spec.k == "divide_by_ten_0dp" then + val[spec.v].min = val[spec.v].min / 10 + val[spec.v].max = val[spec.v].max / 10 + elseif spec.k == "divide_by_fifteen_0dp" then + val[spec.v].min = val[spec.v].min / 15 + val[spec.v].max = val[spec.v].max / 15 + elseif spec.k == "divide_by_four" then + val[spec.v].min = val[spec.v].min / 4 + val[spec.v].max = val[spec.v].max / 4 + val[spec.v].fmt = "g" elseif spec.k == "divide_by_five" then val[spec.v].min = val[spec.v].min / 5 val[spec.v].max = val[spec.v].max / 5 @@ -371,7 +381,7 @@ function describeStats(stats) elseif spec.k == "plus_two_hundred" then val[spec.v].min = val[spec.v].min + 200 val[spec.v].max = val[spec.v].max + 200 - elseif spec.k == "reminderstring" or spec.k == "canonical_line" or spec.k == "_stat" then + elseif spec.k == "reminderstring" or spec.k == "canonical_line" or spec.k == "canonical_stat" or spec.k == "_stat" then elseif spec.k then ConPrintf("Unknown description function: %s", spec.k) end diff --git a/src/Modules/CalcActiveSkill.lua b/src/Modules/CalcActiveSkill.lua index de735dc5a3..cf9fa5e04f 100644 --- a/src/Modules/CalcActiveSkill.lua +++ b/src/Modules/CalcActiveSkill.lua @@ -299,12 +299,12 @@ function calcs.buildActiveSkillModList(env, activeSkill) skillFlags.melee = nil end end - elseif (skillTypes[SkillType.DualWieldOnly] or skillTypes[SkillType.MainHandOnly] or skillFlags.forceMainHand or weapon1Info) and not activeSkill.summonSkill then + elseif (skillTypes[SkillType.DualWieldOnly] or skillFlags.forceMainHand or weapon1Info) and not activeSkill.summonSkill then -- Skill requires a compatible main hand weapon skillFlags.disable = true activeSkill.disableReason = "Main Hand weapon is not usable with this skill" end - if not skillTypes[SkillType.MainHandOnly] and not skillFlags.forceMainHand then + if not skillFlags.forceMainHand then local weapon2Flags, weapon2Info = getWeaponFlags(env, activeSkill.actor.weaponData2, weaponTypes) if weapon2Flags then if skillTypes[SkillType.DualWieldRequiresDifferentTypes] and (activeSkill.actor.weaponData1.type == activeSkill.actor.weaponData2.type) and not (activeSkill.actor.weaponData2.countsAsAll1H or activeSkill.actor.weaponData1.countsAsAll1H) then diff --git a/src/Modules/CalcPerform.lua b/src/Modules/CalcPerform.lua index c6abe0c0b3..550494ffb2 100644 --- a/src/Modules/CalcPerform.lua +++ b/src/Modules/CalcPerform.lua @@ -973,7 +973,7 @@ local function doActorCharges(env, actor) output.CrabBarriersMax = m_max(modDB:Sum("BASE", nil, "CrabBarriersMax"), 0) output.BrutalChargesMin = m_max(modDB:Flag(nil, "MinimumEnduranceChargesEqualsMinimumBrutalCharges") and (modDB:Flag(nil, "MinimumEnduranceChargesIsMaximumEnduranceCharges") and output.EnduranceChargesMax or output.EnduranceChargesMin) or 0 , 0) output.BrutalChargesMax = m_max(modDB:Flag(nil, "MaximumEnduranceChargesEqualsMaximumBrutalCharges") and output.EnduranceChargesMax or 0, 0) - output.BrineChargesMax = m_max(modDB:Flag(nil, "MaximumEnduranceChargesEqualsMaximumBrineCharges") and output.EnduranceChargesMax or 0, 0) + output.BrineChargesMax = m_max(output.EnduranceChargesMax or 0, 0) output.AbsorptionChargesMin = m_max(modDB:Flag(nil, "MinimumPowerChargesEqualsMinimumAbsorptionCharges") and (modDB:Flag(nil, "MinimumPowerChargesIsMaximumPowerCharges") and output.PowerChargesMax or output.PowerChargesMin) or 0, 0) output.AbsorptionChargesMax = m_max(modDB:Flag(nil, "MaximumPowerChargesEqualsMaximumAbsorptionCharges") and output.PowerChargesMax or 0, 0) output.AfflictionChargesMin = m_max(modDB:Flag(nil, "MinimumFrenzyChargesEqualsMinimumAfflictionCharges") and (modDB:Flag(nil, "MinimumFrenzyChargesIsMaximumFrenzyCharges") and output.FrenzyChargesMax or output.FrenzyChargesMin) or 0, 0) diff --git a/src/Modules/CalcSetup.lua b/src/Modules/CalcSetup.lua index 3a490ebccd..5abada18e8 100644 --- a/src/Modules/CalcSetup.lua +++ b/src/Modules/CalcSetup.lua @@ -38,6 +38,8 @@ function calcs.initModDB(env, modDB) modDB:NewMod("CrabBarriersMax", "BASE", 0, "Base") modDB:NewMod("BrutalChargesMax", "BASE", 0, "Base") modDB:NewMod("BrineChargesMax", "BASE", 0, "Base") + modDB:NewMod("PhysicalDamageGainAsCold", "BASE", data.characterConstants["physical_damage_%_to_add_as_cold_per_brine_charge"], "Base", { type = "Multiplier", var = "BrineCharge" }) + modDB:NewMod("PhysicalDamageGainAsLightning", "BASE", data.characterConstants["physical_damage_%_to_add_as_lightning_per_brine_charge"], "Base", { type = "Multiplier", var = "BrineCharge" }) modDB:NewMod("AbsorptionChargesMax", "BASE", 0, "Base") modDB:NewMod("AfflictionChargesMax", "BASE", 0, "Base") modDB:NewMod("BloodChargesMax", "BASE", data.characterConstants["maximum_blood_scythe_charges"], "Base") diff --git a/src/Modules/CalcTriggers.lua b/src/Modules/CalcTriggers.lua index bcf1711658..f3d1e0693e 100644 --- a/src/Modules/CalcTriggers.lua +++ b/src/Modules/CalcTriggers.lua @@ -1353,6 +1353,9 @@ local configTable = { ["void shockwave"] = function(env) return {triggerSkillCond = function(env, skill) return skill.skillTypes[SkillType.Melee] and slotMatch(env, skill) end} end, + ["falling crystal"] = function(env) + return {triggerSkillCond = function(env, skill) return skill.skillTypes[SkillType.Melee] and slotMatch(env, skill) end} + end, ["call the pyre"] = function(env) if env.enemy.modDB:Flag(nil, "Condition:Ignited") then return {triggerChance = 50, -- too much of a pain to pull this from the triggering skill diff --git a/src/Modules/ConfigOptions.lua b/src/Modules/ConfigOptions.lua index b6487c8a8e..6e3868d3ef 100644 --- a/src/Modules/ConfigOptions.lua +++ b/src/Modules/ConfigOptions.lua @@ -370,9 +370,9 @@ return { { var = "channellingCycloneCheck", type = "check", label = "Are you Channelling Cyclone?", ifSkill = "Cyclone", includeTransfigured = true, apply = function(val, modList, enemyModList) modList:NewMod("Condition:ChannellingCyclone", "FLAG", true, "Config") end }, - { label = "Dark Pact:", ifSkill = "Dark Pact" }, - { var = "darkPactSkeletonLife", type = "count", label = "Skeleton ^xE05030Life:", ifSkill = "Dark Pact", tooltip = "Sets the maximum ^xE05030Life ^7of the Skeleton that is being targeted.", apply = function(val, modList, enemyModList) - modList:NewMod("SkillData", "LIST", { key = "skeletonLife", value = val }, "Config", { type = "SkillName", skillName = "Dark Pact" }) + { label = "Dark Bargain:", ifSkill = "Dark Bargain" }, + { var = "darkPactSkeletonLife", type = "count", label = "Skeleton ^xE05030Life:", ifSkill = "Dark Bargain", tooltip = "Sets the maximum ^xE05030Life ^7of the Skeleton that is being targeted.", apply = function(val, modList, enemyModList) + modList:NewMod("SkillData", "LIST", { key = "skeletonLife", value = val }, "Config", { type = "SkillName", skillName = "Dark Bargain" }) end }, { label = "Divine Sentinel Auras:", ifSkill = "Divine Sentinel" }, { var = "divineSentinelPhysAsFire", type = "check", label = "Phys as ^xB97123Fire", ifSkill = "Divine Sentinel", tooltip = "Grants your Sentinel Minion as Aura that grants\n\tGain 15% of Physical Damage as Extra ^xB97123Fire ^7Damage", apply = function(val, modList, enemyModList) @@ -515,8 +515,8 @@ return { { var = "manabondMissingUnreservedManaPercentage", type = "count", label = "Missing Unreserved ^x7070FFMana^7 %:", tooltip = "Ignores values outside the 0-100 range, defaults to 100% if not specified. \nA more realistic value would be to match your Arcane Cloak spend %.", ifSkill = "Manabond", apply = function(val, modList, enemyModList) modList:NewMod("SkillData", "LIST", { key = "ManabondMissingUnreservedManaPercentage", value = m_max(m_min(val,100), 0) }, "Config", { type = "SkillName", skillName = "Manabond" }) end }, - { label = "Minion Pact:", ifSkill = "Minion Pact" }, - { var = "minionPactLife", type = "count", label = "Damageable Minion ^xE05030Life:", ifMult = "MinionLife", tooltip = "Sets the maximum ^xE05030life ^7of the target minion for Minion Pact.", apply = function(val, modList, enemyModList) + { label = "Communion:", ifSkill = "Communion" }, + { var = "minionPactLife", type = "count", label = "Damageable Minion ^xE05030Life:", ifMult = "MinionLife", tooltip = "Sets the maximum ^xE05030life ^7of the target minion for Communion.", apply = function(val, modList, enemyModList) modList:NewMod("Multiplier:MinionLife", "BASE", val, "Config") end }, { label = "Eldritch Blasphemy:", ifSkill = "Eldritch Blasphemy" }, diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index 3d5b8b4f87..ed3ab9af5e 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -896,6 +896,11 @@ data.timelessJewelSeedMin = { [4] = 2000, [5] = 2000 / 20, [6] = 100, + [7] = 100, + [8] = 100, + [9] = 100, + [10] = 100, + [11] = 100, } data.timelessJewelSeedMax = { [1] = 8000, @@ -904,9 +909,14 @@ data.timelessJewelSeedMax = { [4] = 10000, [5] = 160000 / 20, [6] = 8000, + [7] = 8000, + [8] = 8000, + [9] = 8000, + [10] = 8000, + [11] = 8000, } data.timelessJewelTradeIDs = LoadModule("Data/TimelessJewelData/LegionTradeIds") -data.timelessJewelAdditions = 96 -- #legionAdditions +data.timelessJewelAdditions = 337 -- #legionAdditions data.nodeIDList = LoadModule("Data/TimelessJewelData/NodeIndexMapping") data.timelessJewelLUTs = { } data.readLUT, data.repairLUTs = LoadModule("Modules/DataLegionLookUpTableHelper") diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 9b311b829f..dc522c003d 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -386,6 +386,7 @@ local modNameList = { ["to avoid lightning damage from hits"] = "AvoidLightningDamageChance", ["to avoid elemental damage when hit"] = { "AvoidFireDamageChance", "AvoidColdDamageChance", "AvoidLightningDamageChance" }, ["to avoid elemental damage from hits"] = { "AvoidFireDamageChance", "AvoidColdDamageChance", "AvoidLightningDamageChance" }, + ["to avoid damage of each element from hits"] = { "AvoidFireDamageChance", "AvoidColdDamageChance", "AvoidLightningDamageChance" }, ["to avoid projectiles"] = "AvoidProjectilesChance", ["to avoid being stunned"] = "AvoidStun", ["to avoid interruption from stuns while casting"] = "AvoidInterruptStun", @@ -3339,6 +3340,7 @@ local specialModList = { ["increases and reductions to spell damage also apply to attacks"] = { flag("SpellDamageAppliesToAttacks") }, ["arcane might"] = { flag("SpellDamageAppliesToAttacks") }, ["(%d+)%% arcane might"] = function(num) return { flag("SpellDamageAppliesToAttacks"), mod("ImprovedSpellDamageAppliesToAttacks", "MAX", num) } end, + ["attacks have (%d+)%% arcane might"] = function(num) return { flag("SpellDamageAppliesToAttacks"), mod("ImprovedSpellDamageAppliesToAttacks", "MAX", num) } end, ["attacks have (%d+)%% arcane might while wielding a wand"] = function(num) return { flag("SpellDamageAppliesToAttacks", { type = "Condition", var = "UsingWand" }), mod("ImprovedSpellDamageAppliesToAttacks", "MAX", num, { type = "Condition", var = "UsingWand" }), } end, ["retaliation skills have (%d+)%% arcane might"] = function(num) return { flag("SpellDamageAppliesToAttacks", { type = "SkillType", skillType = SkillType.Retaliation }), @@ -4200,7 +4202,6 @@ local specialModList = { ["maximum brutal charges is equal to maximum endurance charges"] = { flag("MaximumEnduranceChargesEqualsMaximumBrutalCharges") }, ["maximum affliction charges is equal to maximum frenzy charges"] = { flag("MaximumFrenzyChargesEqualsMaximumAfflictionCharges") }, ["maximum absorption charges is equal to maximum power charges"] = { flag("MaximumPowerChargesEqualsMaximumAbsorptionCharges") }, - ["maximum brine charges is equal to maximum endurance charges"] = { flag("MaximumEnduranceChargesEqualsMaximumBrineCharges") }, ["(%d+)%% chance to gain a brine charge instead of an endurance charge"] = function(num) return { flag("CanGainBrineCharges"), mod("BrineChargeGainChance", "BASE", num) } end, ["gain brutal charges instead of endurance charges"] = { flag("EnduranceChargesConvertToBrutalCharges") }, ["gain affliction charges instead of frenzy charges"] = { flag("FrenzyChargesConvertToAfflictionCharges") }, @@ -5499,8 +5500,8 @@ local specialModList = { mod("ColdMax", "BASE", 1, { type = "PercentStat", stat = "ManaCost", percent = num }, { type = "SkillName", skillNameList = { "Arc", "Crackling Lance" }, includeTransfigured = true }), } end, ["forbidden rite and dark pact gains added chaos damage equal to (%d+)%% of mana cost, if mana cost is not higher than the maximum you could spend"] = function(num) return { - mod("ChaosMin", "BASE", 1, { type = "PercentStat", stat = "ManaCost", percent = num }, { type = "SkillName", skillNameList = { "Forbidden Rite", "Dark Pact" }, includeTransfigured = true }), - mod("ChaosMax", "BASE", 1, { type = "PercentStat", stat = "ManaCost", percent = num }, { type = "SkillName", skillNameList = { "Forbidden Rite", "Dark Pact" }, includeTransfigured = true }), + mod("ChaosMin", "BASE", 1, { type = "PercentStat", stat = "ManaCost", percent = num }, { type = "SkillName", skillNameList = { "Forbidden Rite", "Dark Bargain" }, includeTransfigured = true }), + mod("ChaosMax", "BASE", 1, { type = "PercentStat", stat = "ManaCost", percent = num }, { type = "SkillName", skillNameList = { "Forbidden Rite", "Dark Bargain" }, includeTransfigured = true }), } end, ["skills gain added chaos damage equal to (%d+)%% of mana cost, if mana cost is not higher than the maximum you could spend"] = function(num) return { mod("ChaosMin", "BASE", 1, { type = "PercentStat", stat = "ManaCost", percent = num }), diff --git a/src/Modules/StatDescriber.lua b/src/Modules/StatDescriber.lua index 1c61fff5aa..22bcc7237d 100644 --- a/src/Modules/StatDescriber.lua +++ b/src/Modules/StatDescriber.lua @@ -66,6 +66,10 @@ local function applySpecial(val, spec) elseif spec.k == "divide_by_fifteen_0dp" then val[spec.v].min = val[spec.v].min / 15 val[spec.v].max = val[spec.v].max / 15 + elseif spec.k == "divide_by_four" then + val[spec.v].min = val[spec.v].min / 4 + val[spec.v].max = val[spec.v].max / 4 + val[spec.v].fmt = "g" elseif spec.k == "divide_by_five" then val[spec.v].min = val[spec.v].min / 5 val[spec.v].max = val[spec.v].max / 5 @@ -187,7 +191,7 @@ local function applySpecial(val, spec) elseif spec.k == "plus_two_hundred" then val[spec.v].min = val[spec.v].min + 200 val[spec.v].max = val[spec.v].max + 200 - elseif spec.k == "reminderstring" or spec.k == "canonical_line" or spec.k == "_stat" then + elseif spec.k == "reminderstring" or spec.k == "canonical_line" or spec.k == "canonical_stat" or spec.k == "_stat" then elseif spec.k then ConPrintf("Unknown description function: %s", spec.k) end